@charset "utf-8";
/* CSS Document */
body {
	padding: 0px;
	margin: 0px;
	background-image: url(images/300sd_bg.gif);
	background-repeat: repeat;
	background-attachment: fixed;
}
#ms_header {
	width: 100%;
	background-image: url(header/bar_back.gif);
	background-repeat: repeat-x;
	background-color: #FFFFFF;
	position: relative;
	height: 60px;
	z-index: 100;
}
/* Fix for full width header & footer
	width: expression(  (document.documentElement.clientWidth < 1000) ? "1000px" : "auto");
 */
#ms_header, #footer {
	min-width: 800px;
}
#ms_header_image_menu {
	width: 843px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
	z-index: 90;
}
#ms_header_image {
	width: 321px;
	height: 60px;
	background-image: url(header/msheader2.gif);
	background-repeat: no-repeat;
	float: left;
	cursor: pointer;
}

a {
	-moz-user-select: none;
	-khtml-user-select: none;
}	

/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.MenuBarHorizontal
{
	margin: 0;
	list-style-type: none;
	cursor: default;
	padding-top: 13px;
	width: auto;
	float: right;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
ul.MenuBarActive
{
	z-index: 1000;
}
/* Menu item containers, position children relative to this container and are a fixed width */
ul.MenuBarHorizontal li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: 125px;
	float: left;
}
/* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul.MenuBarHorizontal ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	z-index: 1020;
	cursor: default;
	width: 125px;
	position: absolute;
	left: -1000em;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
{
	left: auto;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
{
	width: 100%;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	text-transform: none;
	height: 30px;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul
{
	position: absolute;
	margin: -5% 0 0 95%;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
{
	left: auto;
	top: 0;
}
/* Menu items are a light blue block, white text with padding and no text decoration */
ul.MenuBarHorizontal a, ul.MenuBarHorizontal a:visited
{
	display: block;
	cursor: pointer;
	background-color: #4D6FA6;
	color: #FFFFFF;
	text-decoration: none;
	height: 30px;
}
/* Submenu items are padded */
ul.MenuBarHorizontal ul li a
{
	padding-left: 5px;
}
/* Top Level Menu items have a background image and no text decoration */
ul.MenuBarHorizontal a span
{
	display: block;
	cursor: pointer;
	color: #FFFFFF;
	text-decoration: none;
	background-image: url(header/black1.png);
	background-repeat: repeat-x;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: normal;
	text-transform: none;
	font-size: 14px;
	text-align: center;
	border: 1px solid #333333;
	padding-top: 8px;
	padding-bottom: 8px;
	height: 14px;
}
/* Top Level Menu items that have mouse over have a background image and white text */
ul.MenuBarHorizontal li:hover span, ul.MenuBarHorizontal a:hover span
{
	color: #FFF;
	background-image: url(header/blue4.png);
	background-repeat: repeat-x;
		text-decoration: none;
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
	background-color: #0000A0;
	color: #FFF;
		text-decoration: none;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
	background-color: #0000A0;
	color: #FFF;
}

/*******************************************************************************

 SUBMENU INDICATION: styles if there is a submenu under a given menu item

 *******************************************************************************/

/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenu
{
	background-image: url(header/SpryMenuBarDown.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
{
	background-image: url(header/SpryMenuBarRight.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
{
	background-image: url(header/SpryMenuBarDownHover.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
{
	background-image: url(header/SpryMenuBarRightHover.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}

/*******************************************************************************

 BROWSER HACKS: the hacks below should not be changed unless you are an expert

 *******************************************************************************/

/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
ul.MenuBarHorizontal iframe
{
	position: absolute;
	z-index: 1010;
	filter:alpha(opacity:0.1);
}
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
	ul.MenuBarHorizontal li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
		background: #FFF;
	}
}
/*******************************************************************************

 MercedesShop Footer

 *******************************************************************************/
#footer {
	width: 100%;
	background-image: url(header/bar_back.gif);
	background-repeat: repeat-x;
	margin-bottom: 0px;
	height: 60px;
	background-color: #FFFFFF;
	bottom: 0px;
	position: relative;
}
#footer_text_box {
	width: 780px;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	background-color: #FFFFFF;
	position: static;
	height: 100%;
}
#footer_left {
	background-image: url(header/left_end.gif);
	float: left;
	height: 60px;
	width: 20px;
}
#footer_right {
	background-image: url(header/right_end.gif);
	float: right;
	height: 60px;
	width: 20px;
}
#footer_text {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #000000;
	font-size: 9px;
	text-align: center;
	position: relative;
	top: 20%;
	width: 740px;
}
/* wrapper around sidebar and main content */
.catpeach #wrapper {
	width: 990px;
	overflow: hidden;
	position: relative;
	padding-top: 30px;
	height: auto;
	padding-bottom: 30px;
	padding-left: 10px;
}
/* sidebar  */
.catpeach #sidebar {
	float: left;
	width: 240px; /* top and bottom padding create visual space within this div  */
	height: auto;
}
.catpeach #sidebar1 {
	float: left;
	width: 240px; /* top and bottom padding create visual space within this div  */
	background-image: url(images/carbon.gif);
	color: #FFFFFF;
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 20px;
	padding-left: 0;
	height: auto;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	background-repeat: repeat;
	position: relative;
	display: inline;
	font-size: small;
}
.catpeach #welcome_fastlane {
	background-image: url(images/welcome_fastlane.png);
	background-repeat: no-repeat;
	height: 60px;
	width: 240px;
}
.catpeach #sidebar_gradient2 {
	background-image: url(images/gradient_2f.png);
	background-repeat: repeat;
	height: 16px;
	width: 100%;
}
.catpeach #contact_info, .catpeach #contact_info a, .catpeach #contact_info a:active, .catpeach #contact_info a:visited {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	font-size: small;
	text-decoration: none;
	padding-left: 10px;
}
.catpeach #contact_info a:hover {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #F5AB80;
	font-size: small;
	text-decoration: none;
	padding-left: 10px;
	font-weight: bold;
}
.catpeach #text_over_flags {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: small;
	color: #E4E4E4;
}

.catpeach #sidebar1 h3, .catpeach #sidebar1 p {
	text-align: center;
	color: #F5AB80;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bolder;
	position: relative;
	font-size: large;
}
.catpeach #sidebar1 form {
	text-decoration: none;
	list-style-type: none;
	font-size: small;
	margin-left: 10px;
	color: #FFFFFF;
	position: relative;
}
.catpeach #sidebar1 ul {
	text-decoration: none;
	list-style-type: none;
	font-size: small;
}
.catpeach #sidebar1 li, .catpeach #sidebar1 a, .catpeach #sidebar1 a:visited, .catpeach #sidebar1 a:active {
	color: #FFFFFF;
	text-decoration: none;
	list-style-type: none;
	float: none;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: small;
}
.catpeach #sidebar1 a:hover {
	color: #F5AB80;
	text-decoration: none;
	list-style-type: none;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: small;
}
#call_phil {
	background-image: url(images/callphil.gif);
	background-repeat: no-repeat;
	height: 70px;
	width: 130px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
	cursor: pointer;
}
#bongo {
	background-color:#ffffff;
	background-image: url(images/bongo_01v.png);
	background-repeat: no-repeat;
	height: 74px;
	width: 136px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
	cursor: pointer;
}
/* Tips for mainContent:
1. the space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
2. to avoid float drop at a supported minimum 800 x 600 resolution, elements within the mainContent div should be 430px or smaller (this includes images).
3. in the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs.
*/
.catpeach #mainContent {
	position: relative;
	width: 750px;
	height: auto;
	float: right;
} 
#peach_logo {
	background-image: url(images/peach_logo.gif);
	background-repeat: no-repeat;
	cursor: pointer;
	height: 180px;
	width: 160px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
	margin-top: 20px;
}
.catpeach #mainContent #flags {
	padding-left: 5px;
}

.catpeach #mainContent form {
	text-decoration: none;
	list-style-type: none;
	font-size: small;
	margin-left: 10px;
	color: #FFFFFF;
	position: relative;
}
#nav_makes a, #nav_makes a:active, #nav_makes a:visited {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: small;
	color: #FFFFFF;
	text-decoration: none;
	text-align: center;
}
#nav_makes a:hover {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: small;
	color: #F5AB80;
	text-decoration: none;
	text-align: center;
	font-weight: bold;
}
/* Miscellaneous classes for reuse */
.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;
}
.catpeach #rma_notice {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: x-small;
	color: #333333;
	margin-top: 30px;
	text-align: center;
	position: relative;
}
.catpeach #rma_notice #rma_head {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: medium;
	font-weight: bold;
	color: #FF0000;
}

