/*
 *	Styling for Menus
 *	Copyright (c) 2009 Daniel Phillimore - Roger Clark Motorsport
 *	
 *	Notes: RCM Website's dynamic menus system
 */

#divMenuRow {
	position: relative;
	height: 22px;
	background-color: #EE1C25;
	overflow: visible;
	z-index: 2;
}

.clsMenuItem {
	padding-top: 3px;
	padding-bottom: 4px;
	padding-left: 0px;
	padding-right: 0px;
	float: left;
	color: #FFFFFF;
	font-size: 12px; 
	cursor: pointer;
	display: block;
	text-align: center;
	width: 90px;
	height: 15px;
	/* proprietary Safari rule - allows exclusive targeting 
	-webkit-min-device-pixel-ratio:1;*/
}

/* Safari only 
@media screen and (-webkit-min-device-pixel-ratio:1) {
	.clsMenuItem {
		height: 16px;
		padding-bottom: 3px;
	}
}*/

.clsSubmenu {
	position: absolute;
	left: 0px;
	top: 22px;
	width: 200px;
	height: auto;
	z-index: 200;
	background-color: #EE1C25;
	border: none;
	white-space: nowrap;
	overflow: hidden;
	visibility: hidden;
}

.clsSubmenu .clsMenuItem {
	padding-left: 6px;
	float: left;
	clear: left;
	width: 100%;
	text-align: left;
}

.clsMenuRoot {
	/* Turn off bullet points */
	list-style: none;
}

.clsMenuLink {
	padding: 2px;
	
	color: white;
	background-color: #888888;
	cursor: pointer;
	border-bottom: solid #000000 1px;
	font-size: 14px;
	font-weight: bold;
	
	width: 100%;
}

.clsMenuLinkCurrent, .clsMenuLinkHover {
	border-bottom: solid #000000 1px;
	
	padding: 2px;
	
	width: 100%;
	
	color: white;
	background-color: red;
	cursor: pointer;
	
	font-size: 14px;
	font-weight: bold;
}

.clsPageSection_Body_HorizBoxMenu {
	margin: 10px 0px 20px 0px;

	border-left: solid #999999 1px;
	height: 20px;
}

.clsPageSection_Body_HorizBoxMenu_Item {
	padding: 2px;
	background-color: transparent;
	border-top: solid #999999 1px;
	border-right: solid #999999 1px;
	display: block;
	float: left;
	width: 100px;
	color: #444444;
	font-size: 12px;
	text-align: center;
	text-decoration: none;
}

a.clsPageSection_Body_HorizBoxMenu_Item:hover, a.clsSelectedMenuItem {
	background-color: #000000;
	color: #FFFFFF;
	text-decoration: none;
}

a.clsPageSection_Body_HorizBoxMenu_Item:hover {
	background-color: #666666;
}

/* No hover effect on selected menu item */
a.clsSelectedMenuItem:hover {
	background-color: #000000;
}

a.clsPageNavigation_Item {
	padding: 2px;
	background-color: transparent;
	color: #444444;
	font-size: 12px;
	text-decoration: none;
	display: block;
	float: left;
	width: 14px;
	text-align: center;
	height: 14px;
}

a.clsPageNavigation_Item:hover, a.clsPageNavigation_SelectedItem {
	background-color: #000000;
	color: #FFFFFF;
	text-decoration: none;
}

a.clsPageNavigation_Item:hover {
	background-color: #666666;
}

a.clsMenuItem:hover, a.clsMenuItem_Hover {
	background-color: #000000;
	color: #FFFFFF;
}