/*
	--------------------------------------------------
	STRUCTURE STYLES
	--------------------------------------------------
	Client:	RBCM Archives
	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 */


/* ===== Main Wrapper For Site ===== */

#uber {
	position: relative;
	margin: 0 auto;
	padding: 0;
	width: 952px;
	background: blue;
	background: transparent;
}


/* ===== Header ===== */

#header {
	position: relative;
	float: left;
	margin: 0;
	padding: 0 0 0 20px;
	width: 912px;
	height: 155px;
	background: lime;
	background: transparent;
}


/* ===== Top Navigation ===== */

#topNav {
/*	float: right; */
	float: left; 
	margin: 0;
	padding: 65px 0;
/*	width: 710px;*/
	width: 295px;
	text-align: right;
	letter-spacing: 1px;
	color: #808284;
}


/* ===== Logo ===== */

#logo {
	position: absolute;
	top: 0;
	left: 50px;
	margin: 0;
	padding: 0;
	z-index: 1;
}


/* ===== Main Navigation ===== */

#mainNav {
	position: absolute;
	top: 115px;
	right: 0px;
	margin: 0;
	padding: 0;
	width: 663px;
	z-index: 1000;
}


/* ===== Main Content Container ===== */

#main {
	position: relative;
	float: left;
	margin: 0;
	padding: 0 0 0 20px;
	width: 912px;
	background: transparent url(../images/structure/background_main_rightdots.gif) right 20px no-repeat;
}


/* ===== Interior Layout ===== */

.mainInterior {
}


/* ===== Left Content ===== */

#contentLeft {
	float: left;
	margin: 0;
	padding: 0 0 0 30px;
	width: 219px;
	font-size: 11px;
}
	
	#subNavWrap {
		float: left; /* Contain floated list items */
		margin: 0;
		padding: 10px 0 15px 12px;
		width: 207px;
		background: #F8F4EC url(../images/structure/subnav_endDivide.gif) left bottom no-repeat;
	}
	
	#relatedLinksWrap {
		float: left;
		margin: 0 0 15px 12px;
		width: 207px;
	}


/* ===== Right Content ===== */

#contentInt 
{
	float: left;
	margin: 0;
	padding: 23px 0 0 24px;
	padding: 5px 0 0 24px;
	width: 612px;
	overflow: hidden;		
}

/* ===== Footer ===== */

#footerUber {
	float: left;
	position: relative;
	margin: 0;
	padding: 10px 0;
	width: 100%;
	background: #FFF url(../images/structure/background_footerdots.gif) top center no-repeat;
}
	
	#footer {
		position: relative;
		margin: 0 auto;
		width: 912px;
	}
		
		#footerText {
			float: right;
			padding: 1px 0 0 0;
			color: #8B8B8B;
			text-align: right;
			line-height: 1;
			overflow: hidden;
		}
		
		#footerNav {
			float: right;
			margin: 0;
			padding: 0;
			color: #8B8B8B;
			text-align: left;
			overflow: hidden;
		}



/* ----- END OF TEMPLATE ----- */