@charset "utf-8";
/* CSS Document */
body {
	padding: 0px;
	margin: 0px;
}
#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 < 800) ? "800px" : "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;	
}
#footer_text_box {
	width: 780px;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	background-color: #FFFFFF;
	position: relative;
	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;
}
	