@charset "utf-8";

#menu, #menu ul {
        margin: 0;
        padding: 0;
        list-style: none;
}

#menu {
	width: 960px;
}

#menu:before,
#menu:after {
        content: "";
        display: table;
}

#menu:after {
        clear: both;
}

#menu {
	zoom: 1;
}

#menu li {
	float: left;
	position: relative;
}

#menu a {
	float: right;
	color: #069;
	text-transform: uppercase;
	text-decoration: none;
	text-shadow: 0 1px 1px #fff;
	height: 20px;
	padding-top: 18px;
	padding-right: 40px;
	padding-bottom: 12px;
	padding-left: 40px;
	font-family: Arial, Helvetica;
	font-size: 16px;
	font-weight: bold;
}

#menu li:hover > a {
	color: #FF6600;
}

*html #menu li a:hover { /* IE6 only */
	color: #FF6600;
}

#menu ul {
	_margin: 0; /*IE6 only*/
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 38px;
	left: 0px;
	z-index: 1;
	background-color: rgba(255,255,255,0.8);
	background-clip: padding-box;
	box-shadow: 0px 0px 3px #555;
	border-radius: 10px;
	-moz-transition: all .2s ease-in-out;
	margin-top: 30px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0px;
}

#menu li:hover > ul {
	opacity: 1;
	visibility: visible;
	width: 220px;
	padding: 0px;
	margin-top: 5px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
	border: 1px solid #fff;
}

#menu ul ul {
	top: 0;
	left: 150px;
	margin: 0 0 0 20px;
	_margin: 0;
}

#menu ul li {
	float: none;
	display: block;
	border: 0;
	_line-height: 0;
}

#menu ul li:last-child {   
        box-shadow: none;    
}

#menu ul a {
	padding: 10px;
	_height: 10px; /*IE6 only*/
	display: block;
	white-space: nowrap;
	float: none;
	text-transform: none;
	width: 200px;
}

#menu ul a:hover {
	background-color: #FF6600;
	color: #FFF;
	text-shadow: 0px 1px 1px #444;
}

#menu ul li:first-child > a {
	border-radius: 10px 10px 0 0;
}

#menu ul li:first-child > a:after {
        content: '';
        position: absolute;
        left: 40px;
        top: -6px;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-bottom: 6px solid #444;
}

#menu ul ul li:first-child a:after {
        left: -6px;
        top: 50%;
        margin-top: -6px;
        border-left: 0; 
        border-bottom: 6px solid transparent;
        border-top: 6px solid transparent;
        border-right: 6px solid #3b3b3b;
}

#menu ul li:last-child > a {
	border-radius: 0 0 10px 10px;
}


#menu ul li:first-child a:hover:after {
        border-bottom-color: #04acec; 
}

#menu ul ul li:first-child a:hover:after {
        border-right-color: #0299d3; 
        border-bottom-color: transparent;       
}
