/* $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 {
	background: transparent url(../images/page_bg.jpg) repeat scroll 0 0;
	width: 1200px; /* edit to change the width of the page */
	margin: 0 auto; /* 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: 300px;     /* LEFT value */
}
#sidebar-left {
  padding:0 0 200px;
  width: 300px;           /* LEFT value */
	margin-right: -300px;    /* negative LEFT value */
}
.two-sidebars .center,
.sidebar-right .center {
  padding:0 20px;
  margin-right: 300px;    /* RIGHT value */
}
#sidebar-right {
  padding:142px 0 200px;
  width: 300px;           /* RIGHT value */
}

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

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

.privatemsg-box-fb .left-column {
	display:none;
}

.privatemsg-box-fb .right-column {
	margin:0 0 0 150px;
}

.privatemsg-box-fb .bottom-border {
	margin:0 0 10px 150px;
}

.message-participants {
	margin:0 0 0 150px;
}

#edit-search-theme-form-1 {
	width:135px;
}

.breadcrumb {
	color:darkgreen;
}

.node {
	margin-bottom:15px;
	padding-bottom:15px;
}

.panel-2col-stacked {
	overflow:hidden;
}

.panel-2col-stacked .panel-col-top, .panel-2col-stacked .panel-col-bottom {
	width:100%;
}

.block-poll .poll {
	margin:0.5em;
}

.poll .bar .foreground {
	background-color:#4D3617;
}

.poll .bar {
	padding:2px;
}

.sidebar {                          
	float: left;                       
}                                   
#sidebar-right {
  float: right;
}

#navigation {                        
  float: right;
  width:770px;
}

#navigation ul.primary-links {
  margin: 0;
  padding: 0;
  float: right; /* LTR */
  position: relative;
  z-index: 4;
}

#navigation ul.primary-links li {
  margin: 0;
  padding: 0;
  float: left; /* LTR */
  background-image: none;
}

/* header */

#main {
	margin:0 10px;
	background: url(../images/papper_bg1.jpg);
}

.view-header img {
	margin:0.3em 0 0.6em;
}

.alpha-pager {
	text-align: center;
}

.alpha-pager a {
	padding:0.5em;
}

.pager-current {
	background-color:#777777;
	padding:0.5em;
}

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

#header {
	margin:0 10px;
	height:190px;
}

#logo-title {
	float:left;
	height:190px;
	width:160px;
}

#logo {
	display:block;
	font-size:0;
	height:190px;
	line-height:1px;
	margin:0;
	padding:0;
	text-decoration:none;
	text-indent:-5000px;
	width:160px;
}

/* footer */

#footer {
	margin:0 10px;
      font-size:1.1em;
	float: none;
	clear: both;
	background: url(../images/footer_bg1.jpg) no-repeat;
}

#footer table {
	border-collapse: separate;
}

/* Layout Helpers */

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