/*
 * LAYOUT STYLES
 *
 * Define CSS classes to create a table-free, 3-column, 2-column, or single
 * column layout depending on whether blocks are enabled in the left or right
 * columns.
 *
 * This layout is based on the Border Politics Layout Method.
 *   http://drupal.org/node/201428
 *
 * Only CSS that affects the layout (positioning) of major elements should be
 * listed here.  Such as:
 *   display, position, float, clear, width, height, min-width, min-height
 *   margin, border, padding, overflow
 */

/*
=body
=header
=navbar
=primary
=secondary
=main
=content
=footer
*/

/*
=body
---------------------------------------------- */
body {
	margin 				: 0;
    padding 			: 0;
}

#page,
#closure-blocks {
   /*
   * If you want to make the page a fixed width and centered in the viewport,
   * this is the standards-compliant way to do that. See also the ie.css file
   * for the necessary IE5 hack to center a div.
   */
  	margin-left 		: auto;
	margin-right 		: auto;
	width 				: 100%;
}

#page-inner {}

#navigation-top,
#navigation {
	position 			: absolute; /* Take the named anchors out of the doc flow    */
	left 				: -10000px; /* and prevent any anchor styles from appearing. */
}

#skip-to-nav {
	float 				: right;
	margin 				: 0 !important;
}

/*
=header
---------------------------------------------- */
#header {
	width 				: 100%;
}

#header-inner {
	margin 				: 0 auto;
	padding 			: 14px 0;   
	width 				: 924px;
}

#logo-title {}

#site-name {}

#logo {
	float 				: left;

	
}

#site-slogan {
	margin-top 			: 20px;
	float 				: left;
	clear 				: left;
    width 				: 835px;
}

#header-blocks {
	clear 				: both; 
}

/*
=navbar
---------------------------------------------- */
#navbar {
	float 				: left;
	width 				: 100%;
	margin-left 		: 0;
	padding 			: 0; /* DO NOT CHANGE. Add padding or margin to #navbar-inner. */   
}

#navbar-inner {
	overflow 			: hidden;
	width 				: 100%;
}

/*
=primary
---------------------------------------------- */
#primary {
	width 				: 100%;
}

#primary ul.links {
	width 				: 924px;
	overflow 			: hidden;
	margin 				: 0 auto;     
	position 			: relative;
	left 				: -9px;
} 

/*
=secondary
---------------------------------------------- */
#secondary {
	width 				: 100%;
   	padding 			: 5px 0; 
}

#secondary ul.links {
	width 				: 924px;
	overflow 			: hidden;
	margin 				: 0 auto;
	clear 				: both;
}

/*
=main
---------------------------------------------- */
#main {
	width 				: 100%;
  	clear 				: both;
}

#main-inner {
	width 				: 100%;
}

/*
=content
---------------------------------------------- */
#content,
.no-sidebars #content {
	width 				: 924px;
	min-height 			: 500px;
	padding 			: 0;
	margin 				: auto !important;     
}

.sidebar-left #content {
	width 				: 1124px;
	margin 				: auto !important;
}

.sidebar-right #content {
	width 				: 924px;
}

.two-sidebars #content {
	width 				: 1124px;
}

#content-inner {
	margin 				: 0;
	padding 			: 0;
	width 				: 924px;
	float 				: left;
}

.sidebar-left  #content-inner {
	float 				: left;
}

#content-wrap {
	padding-bottom 		: 20px;
}
 
.sidebar-right #content-wrap,
.two-sidebars #content-wrap {
	float 				: left;
	width 				: 600px;
	margin-right 		: 44px;   
}

.with-navbar #content,
.with-navbar #sidebar-left,
.with-navbar #sidebar-right {}

#search-box {
	float 				: left;
}

/*
=sidebar-left
---------------------------------------------- */
#sidebar-left {
	width 				: 200px;
	float 				: left;
	margin 				: 10px 0 0 -100px;
	padding 			: 0;             
}

#sidebar-left-inner {
	margin 				: 0 20px 0 0;
	padding 			: 0;
}

/*
=sidebar-right
---------------------------------------------- */
#sidebar-right {
	margin-top 			: 44px;
  	float 				: right;
  	width 				: 280px;
  	padding 			: 0;
}

#sidebar-right-inner {
	margin 				: 0;
	padding 			: 0;
}

/*
=footer
---------------------------------------------- */
#footer {
	width 				: 100%;
	clear 				: both;
}

#footer-inner {
	width 				: 924px;
	margin 				: 0 auto;
	padding-bottom 		: 10px;
	min-height 			: 140px;   
}

/*
=misc
---------------------------------------------- */
#closure-blocks {}

/** Prevent overflowing content **/
#header,
#content,
#navbar,
#sidebar-left,
#sidebar-right,
#footer,
#closure-blocks {
	overflow 			: visible;
	word-wrap 			: break-word; /* CSS3 property */
}

#navbar {
	overflow 			: hidden; /* May need to be removed if using a dynamic drop-down menu */
}

/*
If a div.clear-block doesn't have any content after it, Firefox and Safari
will mistakenly place several pixels worth of space between the bottom of
the div and the bottom of the viewport. This fixes it.
*/

#page {
	overflow-y 			: hidden; /* CSS3 property */  
}                                      