/* 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 */

/* STYLES HOME PAGE ONLY */

/* STYLES FOR CONTENT PAGES ONLY */

/* TYPOGRAPHY AND LINKS in specific divs that differ from the base.css styles */

/* CSS NAVIGATION STYLES using DaveyJJ's method of moving background images */

/* ----- end template ----- */

body {
	background-color: #ffffff;
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #333333;
}

#uberhome {

	margin: auto;
	width: 750px;
	padding: 0px;
}

#top {
	position:relative;
	z-index: 1;	
}
#above {
	position:relative;
	z-index: 2;	
}
#uber {
	margin: auto;
	width: 790px;
	padding: 0px;
}
#slogan {
	position:absolute;
	padding: 0px;
	width: 228px;
	height:344px;
	left: 560px;
	top: 0px;
	z-index: -1;
}

#content {
	float:left;
	width: 747px;
	padding-top: 20px;
	padding-bottom: 20px;
}

#content .header {font-size: 15px; font-weight:bold;}

#leftcolumn {
	float:left;
	width: 412px;
	padding-top: 20px;
	padding-bottom: 20px;
}

#rightcolumn {
	float:left;
	width: 310px;
	padding-top: 20px;
	padding-left: 25px;
	padding-bottom: 20px;
}
#footer {
	width: 790px;
	clear:left;
}
input, select, textarea {
	border-color: #999;
	color: #666;
	font-size: 12px;
}
.button {
	border: 1px solid #666;
	width: 60px;
}
.textbox {
	border: 1px solid #999;
	width: 239px;
}
.dropdown {
	border: 1px solid #999;
	width: 254px;
}
.radiobutton input {
	vertical-align: middle;
}
.validationSummary {
	color: Red;
	margin: 5px 0;
}
.validationSummary ul {
	color: Red;
	list-style-type: disc;
	margin: 5px 0px;
}
.validationSummary li {
	color: Red;
}
.validation {
	color: #990000;
}