/* $Id: layout.css,v 1.1.4.3 2009/03/19 23:49:02 couzinhub Exp $
*/

/** Layout
---------------------------------
*  Using a negative margin technique, adapted from ZEN. The page is loaded by this order:
*  
*  1. Header
*  2. Content
*  3. Navigation menus
*  4. Sidebar Left
*  5. Sideabr Right
*	
*/

#page {
	width: 1005px; /* edit to change the width of the page */
	margin-left: auto; /* remove 'auto' and the width to switch to a fluid width */
	margin-right: auto;
	padding-top: 20px;
	position:relative;
	z-index:5;
}

/** Sidebars width
---------------------------------
*  Changing the width of the sidebars is dead easy, just change the
*  values below corresponding to the sidebar you want to modify.
*  Make sure you keep negative values as negative values.
*  For example, if I want to increase the width of the left sidebar
*  to 300px, I would have to change each '190' to '300'.
*/

.two-sidebars .center,
.sidebar-left .center {
  margin-left: 300px;     /* LEFT value */
}
#sidebar-left {
	width: 226px;           /* LEFT value */
	margin-right: -283px;    /* negative LEFT value */
	margin-left: 52px;
	margin-top:-22px;
	z-index:5;
	border: medium solid #7accc8;
	
}
.two-sidebars .center,
.sidebar-right .center {
  margin-right: 220px;    /* RIGHT value */
}
#sidebar-right {
  width: 200px;           /* RIGHT value */
  margin-right: 15px;
}

/** Columns inner
---------------------------------
*  You can change the padding inside the columns without changing the
*  width of them by just usinbg the INNER div of each column
*/

.inner {                             
	padding-left: 16px;
	padding-right: 16px;
	padding-top:4px;
	padding-bottom: 16px;
	                   
}                                   

/** Navigation styles
---------------------------------
*  The navigation is loaded after the content, so we need to make space
*  for it, equal to its height, so if you change the height of the navigation,
*  remember to adapt the margin top of the content and sidebars.
*/

#content,
.sidebar {
	margin-top: 5px;        /* Navigation Height */
}
#navigation {
  height: 20px;            /* Navigation Height */
  
}

#dotty {	
	background-color:#EA4498;
	background-repeat:repeat-x;
	margin-top:112px;
	width:100%;
	height:36px;
	position:fixed;
	z-index:2;
}


/** LAYOUT RULES
---------------------------------
*  do not change if you're not sure you know what you're doing
*/

#content {
	float: left;
	width: 100%;
	margin-right: -100%;
	padding: 0;
}                                   
.sidebar {                          
	float: left;                       
}                                   
#sidebar-right {
  float: right;
}
#navigation {                        
  float: right;                       
  margin-right: 0;
 /* margin-left: -100%;*/
  padding-left: 6px;
  padding-right: 6px;
  padding-top: 6px;
  padding-bottom:6px;
  width: auto;
  margin-top:-36px;
}

/* header */

#header #header-region {
	overflow: hidden;
}

/* footer */

#footer {
	float: none;
	clear: both;
}

/* Layout Helpers */

#header,
#footer,
#main #content .mission,
#main #content .breadcrumb,
#main #content .node {
	clear: both;
}