/**
 * @file
 * Positioning for a fixed-width, desktop-centric layout.
 *
 * 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 uses the Zen Grids plugin for Compass: http://zengrids.com
 */

/**
 * Center the page.
 *
 * If you want to make the page a fixed width and centered in the viewport,
 * this is the standards-compliant way to do that.
 */
 
body,
html{
	background-color: #f2f2f2;
}
 
#page_wrapper{
	min-width: 1000px;
	max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
	/*background-color: red;*/

	position: relative;
}
.width_holder{
	width: 100%;
	min-width: 1000px;
	background-color: #f2f2f2;
	position: relative;
}
.width_holder_inner {
	width: 990px;
	/*padding-right: 10px;	??? what was this for !!! */
  margin-left: auto;
  margin-right: auto;
}
#footer_wrapper{
	background-color: #f6f7f9;
	margin-top: 30px;
}
#main_wrapper{
	
}
#header_wrapper{
	background-color: #FFF;
}

 
#page,
.region-bottom {
  margin-left: 0;
  margin-right: 0px;
  min-width: 990px;
	width: 100%;
	overflow: hidden;
	/*background-color: green;*/
}

/* Apply the shared properties of grid items in a single, efficient ruleset. */
#header,
#content,
#navigation,
.region-sidebar-first,
.region-sidebar-second,
#footer {
 /*
  padding-left: 10px;
  padding-right: 10px;
	*/
  padding-left: 0px;
  padding-right: 0px;

	border-left: 0 !important;
  border-right: 0 !important;
  word-wrap: break-word;
  *behavior: url("/path/to/boxsizing.htc");
  _display: inline;
  _overflow: hidden;
  _overflow-y: visible;
}

/* Containers for grid items and flow items. */
#header,
#main,
#footer {
  *position: relative;
  *zoom: 1;
}
#header:before,
#header:after,
#main:before,
#main:after,
#footer:before,
#footer:after {
  content: "";
  display: table;
}
#header:after,
#main:after,
#footer:after {
  clear: both;
}

/* Navigation bar */
#main {
  /* Move all the children of #main down to make room. */
  /*padding-top: 3em;*/
  position: relative;
}
#navigation {
  /* Move the navbar up inside #main's padding. */
  /*position: absolute;
  top: 0;
  height: 3em;
  width: 960px;*/
	position: relative;
	width: 100%;
}

#main_wrapper{
 border-top: 11px solid #FDC500; 
}
#main_wrapper.header_image_none{
 border-top: none; 
}


/**
 * The layout when there is only one sidebar, the left one.
 */

/* Span 4 columns, starting in 2nd column from left. */
.sidebar-first #content {
  float: left;
  width: 785px;
  margin-left: 205px;
  margin-right: -990px;
}

/* Span 1 column, starting in 1st column from left.
.sidebar-first .region-sidebar-first {
  float: left;
  width: 210px;
  margin-left: 0px;
  margin-right: -210px;
}
 */

/**
 * The layout when there is only one sidebar, the right one.
 */

/* Span 4 columns, starting in 1st column from left. */
.sidebar-second #content {
  float: left;
  width: 780px;
  margin-left: 0px;
  margin-right: -780px;
}

/* Span 1 column, starting in 5th column from left. */
.sidebar-second .region-sidebar-second {
  float: left;
  width: 210px;
  margin-left: 780px;
  margin-right: -990px;
}

/**
 * The layout when there are two sidebars.
 */

/* Span 3 columns, starting in 2nd column from left. */
.two-sidebars #content {
  float: left;
  width: 575px;
  margin-left: 205px;
  margin-right: -780px;
}

/* Span 1 column, starting in 1st column from left. */
.region-sidebar-first {
  float: left;
  width: 205px;
  margin-left: 0px;
  margin-right: -205px;
}
.region-sidebar-first .block{
	margin: 37px 20px 0 10px;
}

/* Span 1 column, starting in 5th column from left. */
.region-sidebar-second {
  float: left;
  width: 210px;
  margin-left: 780px;
  margin-right: -990px;
}
.region-sidebar-second .block{
	margin: 0 0px 15px 15px;
	background-color: #FFF;
	
	border-radius: 10px;
	-moz-border-radius: 10px;
	padding: 10px;
	
}
.region-sidebar-second .block.first{
	
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	-moz-border-top-left-radius: 0;
	-moz-border-top-right-radius: 0;
  
	padding: 10px;	
}

#content_follow_inner,
#content_inner,
#disclaimer{
	display: block;
	clear: both;
	background-color: #FFF;
	border-radius: 10px;
	padding: 28px;		
}
#disclaimer{
 margin-top: 20px; 
}
#disclaimer p{
 margin: 0; 
 color: #808182;
}


#content_inner{
	border-top-left-radius: 0;
	border-top-right-radius: 0;  
}

#content_follow{
 margin-top: 28px; 
}
#content_follow .block{
 margin-bottom: 0px; 
}
