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

#main {
}

/** 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: 190px;     /* LEFT value */
}
#sidebar-left {
  width: 190px;           /* LEFT value */
	margin-right: -190px;    /* negative LEFT value */
}
.two-sidebars .center,
.sidebar-right .center {
  margin-right: 220px;    /* RIGHT value */
}
#sidebar-right {
  width: 220px;           /* RIGHT value */
  margin-right: 10px;
  padding-bottom: 20px;
  display: block;
}

/** 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: 0px;                     
}                                   

.block-inner {
	margin-bottom: 40px;
}

.page-blog .node-inner {
	padding-bottom: 15px !important;
	padding-top: 5px;
	border-bottom: 1px solid #cccccc;
	margin-bottom: 50px;
}

.node-inner img{
	margin-top: 1px;
	border-top: 10px #cccccc solid;
	border-bottom: 10px #cccccc solid;
	border-left: 0px #000000 solid;
	border-right: 0px #000000 solid;
}
	
.node-inner p{
	margin: 20px auto;
}

/** 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{
	width: 100%;
}

.sidebar {
	 margin-top: 35px;     /* Navigation Height */
	/* padding-top: 20px;  */
}

#navigation {
  height: 35px;            /* Navigation Height */
}

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

#content {
	float: left;
	margin-right: -100%;
	text-align: justify;
}                                   
.sidebar {                          
	float: left;                       
}                                   
#sidebar-right {
  float: right;
}

#navigation {                        
  float: right;                       
  margin-right: 0;
  margin-left: -100%;
  padding: 0;
  width: 100%;
  text-align: right;
}

/* header */

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

#header {
	height: 150px;
	width: 100%;
}

#logo {
	float: left;
	margin-left: 0px;
    }

/* footer */

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

/* Layout Helpers */

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