 /*
	--------------------------------------------------
	STRUCTURE STYLES
	--------------------------------------------------
	Client:	CreativeDSG
	Author:	Darren Gould
	Date:	November, 2009
		
*/

/* structure.css are the styles for the DIVs in a website and should not contain
any typographic or content-related styles for a site. The styles within are strictly
used to create the layout/structure of the website and, as such, this style sheet 
will (almost) never need to be altered by the client or back-end programmers. */

/* ----- comment styles well for better reference later! ----- */
/* ----- try to lay this out in the following sections and from top to bottom on pages ----- */



/* ===================================================================================== STYLES FOR ALL PAGES */

#uber {
	margin: 0 auto 20px auto;
	padding: 0;
	width: 872px;
}


/* ===================================================================================== STYLES HOME PAGE */

#home_bg {
	position: relative;
	margin: 125px 0 0 48px;
	height: 560px;
	background: url(../images/structure/home_monitor.jpg) 0 0 no-repeat;
}

#home_bg .left {
	float: left;
	margin: 0;
	padding: 0;
	width: 470px;
}

#home_bg .right {
	position: relative;
	float: left;
	margin: 0;
	padding: 0;
}

#home_bg #logo {
	position: absolute;
	margin: 0;
	padding: 0;
	top: 62px;
	left: 492px;
}

#home_bg #tagline {
	position: absolute;
	margin: 0;
	padding: 0;
	top: 95px;
	left: 492px;
	font-size: 13px;
}

#home_bg .right .divide {
	position: absolute;
	top: 142px;
	left: 22px;
	width: 256px;
	height: 2px;
	background: url(../images/structure/divide_horiz.gif) 0 0 repeat-x;
}


/* ===================================================================================== STYLES FOR CONTENT PAGES */

#header {
	margin: 0;
	padding: 0 10px;
	width: 852px;
	height: 115px;
	background: transparent;
}

#logo {
	float: left;
	padding: 17px 10px 0 30px;
}

#logo a {
	border: none;
}

#tagline {
	float: left;
	padding: 33px 0 0 0;
	color: #898989;
	font: italic 14px/18px Arial, Helvetica, sans-serif;
}

#contentContainer_wrapperOuter,
#additionalContentContainer_wrapperOuter {
	margin: 0;
	width: 872px;
	min-height: 500px;
	background: transparent url(../images/structure/content_middle.jpg) 0 0 repeat-y;
}

#additionalContentContainer_wrapperOuter {
	min-height: 265px;
	background: transparent url(../images/structure/additionalcontent_middle.jpg) 0 0 repeat-y;
}

#contentContainer_wrapperInner1,
#additionalContentContainer_wrapperInner1 {
	padding: 5px 10px 0;
	width: 852px;
	background: transparent url(../images/structure/content_top.jpg) 0 0 no-repeat;
}

#additionalContentContainer_wrapperInner1 {
	background: transparent url(../images/structure/additionalcontent_top.jpg) 0 0 no-repeat;
}

#contentContainer_wrapperInner2,
#additionalContentContainer_wrapperInner2 {
	padding: 0 10px;
	width: 852px;
	height: 20px;
	background: transparent url(../images/structure/content_bottom.jpg) 0 0 no-repeat;
}

#additionalContentContainer_wrapperInner2 {
	background: transparent url(../images/structure/additionalcontent_bottom.jpg) 0 0 no-repeat;
}

/* -- -- Columns -- -- */

.container_fullWidth {
	float: left;
	padding-left: 30px;
	background: transparent;
}

.container_2col {
	float: left;
	padding-left: 30px;
	background: transparent;
}

.container_2col .column {
	float: left;
	padding: 0 30px 0 0;
	width: 381px;
}

.container_2col .column .last {
	padding-right: 0;
}

.container_3col {
	float: left;
	padding-left: 30px;
	background: transparent;
}

.container_3col .column {
	float: left;
	padding: 0 30px 0 0;
	width: 244px;
	background: transparent;
}

.container_3col .last {
	padding-right: 0;
}

.container_3col .column_2wide {
	float: left;
	padding: 0 30px 0 0;
	width: 518px;
	background: transparent;
}


/* ----- END OF TEMPLATE ----- */