﻿/* Reset */
.menu,
.menu ul,
.menu li,
.menu a {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
}

/* Menu */
.menu {
	background: url('images/bg-red.png') repeat-x;
	height: 34px;
	width: 550px;
	padding-left: 20px;
	padding-top: 3px;
	text-transform: uppercase;
	border-bottom-right-radius: 5px;
	-moz-border-bottom-right-radius: 5px;
	-webkit-border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
	-moz-border-bottom-left-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	box-shadow: 3px 3px 4px #1F3F5F;
	-webkit-box-shadow: 3px 3px 4px #1F3F5F;
	-moz-box-shadow: 3px 3px 4px #1F3F5F;
}
.menu li {
	position: relative;
	list-style: none;
	float: left;
	display: block;
	height: 37px;
}

/* Links */
.menu li a {
	display: block;
	padding: 0px;
	padding-left: 15px; 
	padding-right: 15px;
	line-height: 37px;
	text-decoration: none;
	font-size: 12px;
	color: #fff;
	font-weight: bold;
	-webkit-transition: color .2s ease-in-out;
	-moz-transition: color .2s ease-in-out;
	-o-transition: color .2s ease-in-out;
	-ms-transition: color .2s ease-in-out;
	transition: color .2s ease-in-out;
}

.menu li:hover > a {
	text-decoration: none;
	color: #555; 
	}
	
	
.menu li:first-child a { }
.menu li:last-child a{ }

/* Sub Menu */

.menu ul {
	position: absolute;
	line-height: 19px;
	top: 56px;
	left: 0;
	text-decoration: none;
	color: #333;
	font-weight: bold;
	color: #f8f8f8;
	font-weight: bold;
	border-radius: 7px;
	-moz-border-radius: 7px;
	-webkit-border-radius: 7px;

}

.menu li:hover > ul { opacity: 1; }

.menu ul li {
	padding: 0px;
	margin: 0px;
	line-height: 19px;
	display: block;
	height: 0;
	overflow: hidden;
	padding: 0;
	-webkit-transition: height .25s ease .1s;
	-moz-transition: height .25s ease .1s;
	-o-transition: height .25s ease .1s;
	-ms-transition: height .25s ease .1s;
	transition: height .25s ease .1s;
}

.menu li:hover > ul li {
	line-height: 19px;
	padding: 0px;
	margin: 0px;
	display: block;
	text-decoration: none;
	min-height: 100px;
	overflow: visible;
	padding: 0;
	color: #fff;
}

.menu ul li a {
	display: block;
	color: #555;
	text-decoration: none;
	width: 200px;
	padding: 10px;
	height: 15px;
	font-size: 11px;
	margin: 0;
	border: none;
}
.menu ul li a:hover {
	text-decoration: none;
	color: #555;
	
}

.menu ul li:last-child a { border: none; }

.menu li.selected  > a { 
	text-decoration: none;
	color: #fff;
	font-weight: bold;
	}
