/* $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: 992px; /* edit to change the width of the page */
	margin: auto ; /* remove 'auto' and the width to switch to a fluid width */
/*	margin: 0 auto 0 200px;  remove 'auto' and the width to switch to a fluid width */
}

/** 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: 240px;     /* LEFT value */
}
#sidebar-left {
  width: 220px;           /* LEFT value */
	margin-right: -220px;    /* negative LEFT value */
}
.two-sidebars .center,
.sidebar-right .center {
  margin-right: 220px;    /* RIGHT value */
}
#sidebar-right {
  width: 220px;           /* RIGHT value */
}

.center {
margin-right:auto;
}

/** 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: 25px 15px 20px 5px;                    
}                                   

/** 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: 20px;        /* Navigation Height */
}
#navigation {
  height: 20px;            /* Navigation Height */
}

/** 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 {                          
	margin-top:40px;
	float: left;                       
}                                   
#sidebar-right {
  float: right;
	margin-top:40px;
}
#navigation { 
border: none;
background-color:#fff;                       
  float: left;                       
  margin-left: 0;
  margin-right: -100%;
  padding: 14px 0 5px 0;
/*  font-family: Helvetica, Tahoma, sans-serif; */
  font-family: Lucida Grande, Tahoma, sans-serif;
  width: 100%;
}

/* header */

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

#header {
/*  background:url(images/picture-pack.png) right top no-repeat; */
  height:290px;
  margin:0 0 0 0;
}

#logo-title { 
padding:0 0 0 0;
}

/* User Login Block */

#user-login-form .item-list ul li {
margin:0;
list-style:none;
list-style-image:none;
list-style-position:inside;
}

/* footer */

#footer {
	float: none;
	clear:both;
	padding-left:210px;
	font-size:10px;
	margin-bottom:0px;
	display:block;
	font-style:normal;
	font-weight:normal;
	color:#8d7533;
	background-color:#efebe1;
/*	background-image:url(images/footer.png) top left repeat-y; */
	width:100%;
	height: 200px;
}
#footer a {
	text-decoration:none;
	color:#8D7533;
}

.copyright {
padding-left:640px;
}

.footer ul, .footer li {
display: inline;
padding: 0px 10px 0px 10px;
list-style: none;
}

#footer-navigation {
float: none;
	clear:both;
	border-top:1px solid #ebe2c9;
	padding-left:186px;
	padding-top:20px;
	font-size:10px;
	margin-bottom:0px;
	margin-top:20px;
	display:block;
	font-style:normal;
	font-weight:normal;
	color:#8d7533;
	background-color:#efebe1;
	background-image:url(images/footer.png) top left repeat-y;
	width:100%;
	height: 30px;
	
	}
	
#footer-navigation .primary-links {
text-transform:lowercase;
letter-spacing:1px;
border-bottom:1px dotted #72643c;
padding-bottom:8px;
}

#footer-navigation #primary {
width:992px;

}

.footer-menu {
}

ul.links li {
display:inline;
font-style: normal;
list-style-type:none;
padding:0 0.3em;
border-right: 1px solid #ebe2c9;
}




/* Layout Helpers */

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