/*================================================================
LAYOUT stylesheet for the website.

Define layout and backgrounds for:
  - Body
  - Wrapper
  - Header
  - Sidebar
  - Content
  - Footer
  ( Navigation is defined in nav.css )
  
  ***  NO TYPOGRAPHY STYLES HERE PLEASE  ***
  
================================================================*/
@import url(global/base.css);
@import url(global/style.css);
@import url(nav/nav_horiz.css);


/* BODY 
----------------------------------------------------------------*/

body {
	/*background: #fff url(/images/back_body.png) repeat-x center top;*/
	margin: 0 auto;
	text-align: center;
}
body.default {
	/*background-image: url(/images/back_body-home.png);*/
}
/* WRAPPER
----------------------------------------------------------------*/
#wrapper {
	background: transparent url(/images/back_wrapper.png) repeat-x center bottom;
	width: 100%;
	text-align: center;
	clear: both;
}
/* HEADER
----------------------------------------------------------------*/
#branding {
	height: 60px;
	padding: 77px 0 0 30px;
	text-indent: -9000px;
	clear: both;
}
.default #branding {
	height: 60px;
	padding: 90px 0 0 30px;
	text-indent: -9000px;
	clear: both;
}

/* CONTENT
----------------------------------------------------------------*/
#content {
	background: #fff url(/images/back_content.png) repeat-y center top;
	text-align: left;
	clear: both;
	width: 802px;
	margin: 0 auto;
}

/* MAIN
----------------------------------------------------------------*/
#main {
  float: left; /* Creates a left sidebar */
  width: 500px;
  margin: 20px 30px 0 50px;
  padding: 0;
  text-align: left;
  display: inline; /* hack for IE double margin */
}
#main.wide {
	  width: 720px;
}

/* SECONDARY CONTENT
----------------------------------------------------------------*/
#secondary {

  float: right; /* Creates a right sidebar */
  width: 180px;
  margin: 20px 30px 0 0;
  display: inline;
  overflow: hidden;
}

/* FOOTER
----------------------------------------------------------------*/
#footer {
	background: transparent url(/images/back_footer.png) no-repeat center bottom;
	width: 802px; height: 108px;
	margin: 0 auto;
	text-align: center;
}
#copy {
	width: 100%;
	margin: 0 auto;
	padding-top: 4em;
	clear: both;
}