@charset "utf-8";
body  {
	background: #c0c0c0;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
.MainLayout #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: url(/images/_template/ContentBkgd.jpg) repeat-y; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 25px;
	margin-right: auto;
	margin-bottom: 25px;
	margin-left: auto;
}
.MainLayout #mapcontainer {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background-color: #FFFFFF;
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 25px;
	margin-right: auto;
	margin-bottom: 25px;
	margin-left: auto;
} 
.MainLayout #header { 
	background: #d4d8db;
	margin: 0;
	padding: 0; 
} 
.MainLayout #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.MainLayout #sidebar {
	float: right; /* since this element is floated, a width must be given */
	width: 220px;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 10px;
}
.twoColLiqRtHdr #navbar {
	width: 780px;
	background: #303030;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin: 0;
} 
.MainLayout #mainContent {
	margin-top: 0;
	margin-right: 250px;
	margin-bottom: 20px;
	margin-left: 10px;
	padding: 0;
} 
.MainLayout #mapContent {
	margin-top: 0;
	margin-right: 10px;
	margin-bottom: 20px;
	margin-left: 10px;
	padding: 0;
} 
.MainLayout #footer {
	text-align: center;
	padding-top: 15px;
	background-image: url(../../images/_template/FooterBkgd.jpg);
} 
.MainLayout #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: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family: Arial, Helvetica, sans-serif;
}
.MainLayout #footer a:link {
	color: #FFFFFF;
	text-decoration: underline;
}
.MainLayout #footer a:visited {
	color: #000000;
	text-decoration: underline;
}
.MainLayout #footer a:hover {
	text-decoration: none;
}
.MainLayout #mapfooter {
	text-align: center;
	padding-top: 15px;
	background-color: #c0c0c0;
} 
.MainLayout #mapfooter 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: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family: Arial, Helvetica, sans-serif;
}
.MainLayout #mapfooter a:link {
	color: #FFFFFF;
	text-decoration: underline;
}
.MainLayout #mapfooter a:visited {
	color: #000000;
	text-decoration: underline;
}
.MainLayout #mapfooter a:hover {
	text-decoration: none;
}
.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;
}

.SmallForm #FormContainer {
	width: 220px; /* the auto margins (in conjunction with a width) center the page */
	border: 2px solid #000000;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding-left: 20px;
	background-color: #666666;
}
.SmallForm #FormContent {
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
	background-color: #999999;
	border: 1px solid #000000;
	text-align: center;
}
.SmallForm #FormContent h2 {
	font-family:Arial, Helvetica, sans-serif;
	font-size:20px;
	color:#FFFFFF;
	text-align:center;
}
.SmallForm #FormContent p {
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#FFFFFF;
	text-align:center;
}
.SmallForm #FormContent input,select {
	display: block;
	width: 150px;
	margin-bottom: 7px;
	font-size:11px;
}
.SmallForm #FormContent br {
	clear: left;
}

.SmallList #ListContainer {
	width: 220px; /* the auto margins (in conjunction with a width) center the page */
	border: 2px solid #000000;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding-left: 20px;
	background-color: #666666;
}
.SmallList #ListContent {
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
	background-color: #999999;
	border: 1px solid #000000;
}
.SmallList #ListContent h2 {
	font-family:Arial, Helvetica, sans-serif;
	font-size:20px;
	color:#FFFFFF;
	text-align:center;
}
.SmallList #ListContent p {
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#FFFFFF;
}
.SmallList #ListContent br {
	clear: left;
}

.copyright { font-size: 10px}
p, ul, li {
	font-size: 11px;
}
td {
	font-size: 11px;
}
h1 {
	color: #d52d00;
	font-size: 36px;
	font-family: Arial, Helvetica, sans-serif;
}
h2 {
	color: #d52d00;
}
h3 {
	color: #d52d00;
}
.pagetitle {
	color: #d52d00;
	font-size: 36px;
	margin-bottom: 0px;
}
.pagesubtitle {
	color: #d52d00;
	font-size: 16px;
	margin-top: 1px;
}

.vehiclename {
	color: #d52d00;
	font-size: 16px;
	margin-top: 10px;
	font-weight: bold;
}

.vehicleprice {
	color: #d52d00;
	font-size: 20px;
	margin-top: 10px;
	font-weight: bold;
}

th {
	font-size: 10px;
	color: #FFFFFF;
	background-color: #d52d00;
	text-align: center;
}

.chrysnew {
	font-size: 12px;
	color: #336699;
	text-decoration: underline;
	font-weight: bold;
	text-align: center;
}

.dodgenew {
	font-size: 12px;
	color: #990000;
	text-decoration: underline;
	font-weight: bold;
	text-align: center;
	}
	
a.dodgenew:hover { text-decoration: none; }
	
.checkoutinv { font-size: 12px; font-weight: bold; color: #669999; text-decoration: underline; }
a.checkoutinv:hover { text-decoration: underline; color: #FF0000; }
a.checkoutinv:link { text-decoration: underline; }

.announce { 
	font-size: 16px;
	font-weight: bold;
	color: #990000;
	text-align: center;
	border: solid #669999;
}

.special {
	font-size: 14px;
	font-weight: bold;
	color: #0000FF;
	text-align: center;
	vertical-align: top;
}
.specialprice {
	font-size: 18px;
	font-weight: bold;
	color: #FF0000;
	text-align: center;
	vertical-align: middle;
}
.specialdesc {
	font-size: 12px;
	text-align: center;
	vertical-align: top;
	padding-right: 40px;
	padding-left: 40px;
}
.specialtd {
	font-size: 12px;
	text-align: center;
	vertical-align: top;
}
.preownednote {
	font-size: 12px;
	font-style: italic;
	color: #FF0000;
	font-weight: bold;
}
.preownedsort {
	font-size: 16px;
	color: #FFFFFF;
	text-decoration: underline;
	font-weight: bold;
}
.formlabel {
	font-weight: bold;
	text-align: right;
}
.TopbarFlex {
	background-image: url(../../images/main/topbar_flex.gif);
	background-repeat: repeat-x;
}
.InfoReqVehicle {
	font-weight: bold;
	color: #000099;
}
.formlabelRequired {
	color: #FF0000;
	font-weight: bold;
	text-align: right;
}
.AdminEnv {
	text-align: center;
	border: thin solid #838383;
	width: 475px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
	margin-left: 20px;
}
