@charset "UTF-8";

body  {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	background: #5d6465;
	margin: 0;
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #959590;
}

h1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #7e9aa2;
}

h2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #7e9aa2;
}

#container { 
	width: 934px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: none;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

#header { 
	width: 934px;
	height: 10px;
	background: #5d6465; 
	padding: 0 0px 0 0px;
} 

* html #header { margin-top: -10px; } /* IE kludge */

#wrapper {
	height: 650px;
	position: relative;
	background: #1e2025 url("images/dgorrcar_bgcomp2.jpg") no-repeat;
} 

#sidebar1 {
	float: right;
	width: 320px;
	margin-top: 140px;
	padding-left: 20px;
	background: #1e2025;
}

#dgorrLink {
	width: 137px;
	height: 48px;
	position: absolute;
	margin-left: 110px;
	margin-top: 550px;
}

* html #dgorrLink { margin-top: 15px; } /* IE kludge */

#mainContent { 
	margin: 0 0px 0 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 0 80px 0;
} 

#footer { 
	width: 936px;
	padding: 0;
	background: #5d6465; 
} 

#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

.bodyText {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #959590;
}

.footerText {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #959590;
}

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}

.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}

.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

a:link {
	color: #959590;
	text-decoration: none;
}
a:visited {
	color: #606c75;
	text-decoration: none;
}
a:hover {
	color: #b3b390;
	text-decoration: none;
}
a:active {
	text-decoration: none;
}



