/* $Id: layout-fixed.css,v 1.5.2.3 2009/02/13 19:20:19 johnalbin Exp $ */

/*
 * LAYOUT STYLES
 *
 * 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 is based on the Zen Columns layout method.
 *   http://drupal.org/node/201428
 *
 * Only CSS that affects the layout (positioning) of major elements should be
 * listed here.  Such as:
 *   display, position, float, clear, width, height, min-width, min-height
 *   margin, border, padding, overflow
 */


/** body **/
  body
  {
	height:100%;
	width:100%;
	margin:0px auto;
  }

  #container
  {
    /*
     * If you want to make the page a fixed width and centered in the viewport,
     * this is the standards-compliant way to do that. See also the ie.css file
     * for the necessary IE5 hack to center a div.
     */
    margin-left: auto;
    margin-right: auto;
    width: 975px;
  }


/** header **/
  #header
  {
  	position:relative;
	height:100px;
	width:975px;
	margin:0px auto;
	padding-top:45px;
  }

  #logo
  {
	height:100px;
	width:150px;
	position:absolute;
	left:auto;
	right:0px;
	top:40px;
  }

/** content **/
  #breadcrumbs
  {
	width:100%;
	height:40px;
	position:relative;
  }
  #content
  {
	width:450px;
	height:auto;
	float:left;
	position:relative;
	display:block;
	margin:0px 0px 0px 180px;
	padding:20px 0px 20px 0px;
  }
  #store-content{
	width:560px;
	height:auto;
	float:left;
	position:relative;
	display:block;
	margin:0px 0px 0px 140px;
	padding:20px 0px 20px 0px;
  }
  #content-bg{
	width:780px;
	height:auto;
	padding:145px 0 50px 0;
	margin-top:-145px;
	background:#FFF url(css_img/site_bg.gif) no-repeat bottom center;
	float:left;
	z-index:-60;
  }
  body.page-about-us{
  	background:#85260d;
  }
  .page-about-us h2{
  	width:320px;
  }
  .page-about-us #content-bg{
  	background:#fefbf1 url(css_img/about.jpg) no-repeat bottom center;
  	padding:145px 0 340px 0;
  }
  .page-about-us .node-inner .content{
	width:560px;
  }

  #press-content-bg,#events-content-bg,#store-content-bg{
	width:780px;
	height:auto;
	padding:145px 0 50px 0;
	margin-top:-145px;
	float:left;
	z-index:-60;
  }
  #press-content-bg{
	background:#FFF url(css_img/bg_press.jpg) no-repeat bottom center;
	height:1550px;
  }
  #events-content-bg{
	background:#FFF url(css_img/bg_events.jpg) no-repeat bottom center;
	height:1200px;
  }
  #store-content-bg{
	background:#FFF url(css_img/bg_store.gif) no-repeat bottom center;
	height:auto;
	padding:145px 0 100px 0;
  }
  body.node-type-news #content-bg{
	background:#FFF url(css_img/bg_pressnode.gif) no-repeat bottom center;
  }
  #content-top,
  #content-header,
  #content-area,
  #content-bottom
  {
	clear:both;	
  }

/** navbar **/
  #navbar-swf
  {
	text-align:right;
	height:50px;
	width:790px;
	position:relative;
	float:left;
  }
  
  #navbar
  {
	height:auto;
	width:760px;
	padding:50px 0px 0px 30px;
	position:relative;
	float:left;
	background:url(css_img/navbar.png) no-repeat top center;
  }
 
  #navbar ul /* Primary and secondary links */
  {
    margin: 0;
    padding: 0;
    text-align: left;
  }

  #navbar li /* A simple method to get navbar links to appear in one line. */
  {
    float: left;
    padding: 0;
	list-style-image:none;
	list-style-type:none;
	list-style-position:inside;
	display:block;
	width:75px;
	text-align:center;
	font-style:italic;
	float:left;
	margin:0px 0px 0px -4px;
	font-size:1.1em;
  }
  
  #navbar .first
  {
	margin:-5px 0px 0px -4px;
  
  }
  
  #navbar .last
  {
	margin:-10px 0px 0px -4px;
  
  }

  /* There are many methods to get navbar links to appear in one line.
   * Here's an alternate method: */
  /*
  #navbar li
  {
    display: inline;
    padding: 0 10px 0 0;
  }
  */

/** sidebar **/
  #sidebar-wrapper
  {
    width:160px;
	height:auto;
	position:relative;
	float:right;
  }
  #right, #left
  {
	float:left;
	margin:0px 0px 0px 0px;
	width:160px;
  }
/** footer **/
  #footer
  {
  	width:770px;
	height:40px;
	padding:20px 0px 0px 0px;
	clear:both;
	position:relative;
	margin:0px 0px 0px 20px;
	z-index:0;
  }

/** contact form **/
#contact-mail-page #edit-name,
#contact-mail-page #edit-mail,
#contact-mail-page #edit-subject,
#contact-mail-page #edit-message
{
	width:428px;
}


/** Prevent overflowing content **/
  #header,
  #content,
  #navbar,
  #footer
  {
    overflow: visible;
    word-wrap: break-word; /* A very nice CSS3 property */
  }

  /* If a div.clear-block doesn't have any content after it and its bottom edge
     touches the bottom of the viewport, Firefox and Safari will mistakenly
     place several pixels worth of space between the bottom of the div and the
     bottom of the viewport. Uncomment this CSS property to fix this.
     Note: with some over-large content, this property might cause scrollbars
     to appear on the #page div.
  */
  /*
  #page
  {
    overflow-y: hidden;
  }
  */