/* Main menu */

#menu {
	width: 800px;
	margin: 0 auto 20px auto;
	padding: 2px 0px 5px 0;
	list-style: none;
	border-bottom: 2px solid #F00;
	height:  30px;
}
#menu li {
	float: left;
	padding: 5px 0;
	position: relative;
	line-height: 0;
}
#menu a {
	float: left;
	height: 25px;
	padding: 0 10px;
	color: #000;
	text-transform: uppercase;
	font: 12px/25px 'OpenSansSemiBold';
	text-decoration: none;
}
#menu li:hover > a {
	color: #F00;
	border-top: 2px solid #F00;
	margin-top: -2px;
}
*html #menu li a:hover /* IE6 */ {
	color: #000;
}
#menu li:hover > ul {
	display: block;
}


/* SUB MENU LAYOUT */
#menu ul {
	list-style: none;
	margin: 0 0 0 0;
	padding: 0;
	display: none;
	position: absolute;
	top: 30px;
	left: 0;
	z-index: 99999;
	background: #fff;	
	border: 1px solid #ddd;
}
#menu ul ul {
	top: 0;
	left: 150px;
}
#menu ul li {
	float: none;
	margin: 0;
	padding: 0;
	display: block;
}
#menu ul a {
	padding: 10px;
	height: 10px;
	width: 130px;
	height: auto;
	line-height: 1;
	display: block;
	white-space: nowrap;
	float: none;
	text-transform: none;
	font-size: 12px;
}
#menu li ul li a:hover {
	border-top: 2px solid #ff6262;
}
*html #menu ul a /* IE6 */ {
	height: 10px;
}
*:first-child+html #menu ul a /* IE7 */ {
	height: 10px;
}
#menu ul a:hover {
	background: #FF6262;
	color: #FFF;
}
#menu ul li:first-child > a { 
}

#menu ul li:first-child > a:after {
	content: '';
	position: absolute;
	left: 30px;
	top: -8px;
	width: 0;
	height: 0;
}
#menu ul ul li:first-child a:after {
	left: -8px;
	top: 12px;
	width: 0;
	height: 0;
}
#menu ul li:first-child a:hover:after {
	border-bottom-color: #FF0000;
}
#menu ul ul li:first-child a:hover:after {
	border-right-color: #FF0000;
}
#menu ul li:last-child > a {
}
/* Clear floated elements */
#menu:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}
* html #menu {
	zoom: 1;
} /* IE6 */
*:first-child+html #menu {
	zoom: 1;
} /* IE7 */

#menu li ul li a strong {
	font-family: 'OpenSansRegular';
}

