ol.common-ul,ul.common-ul {
	list-style: none;
}

a {
	text-decoration: none;
}

.nav-menu {
	margin:0 auto;
	width: 1200px;
	height: 60px;
	background: #292929;
}

ul.main-menu {
	text-align: center;
	color: #333333;
}

ul.common-ul li {
	font: 13px Verdana, 'Lucida Grande';
	cursor: pointer;
	-webkit-transition: padding .05s linear;
	-moz-transition: padding .05s linear;
	-ms-transition: padding .05s linear;
	-o-transition: padding .05s linear;
	transition: padding .05s linear;
}

ul.common-ul li.drop {
	position: relative;
}

ul.common-ul>li {
	display: inline-block;
}

ul.main-menu li {
	color: #E6E6E6;
	-webkit-transition: all .1s ease-out;
	-moz-transition: all .1s ease-out;
	-ms-transition: all .1s ease-out;
	-o-transition: all .1s ease-out;
	transition: all .1s ease-out;
}

.menu {
	display: block;
	padding: 0 10px;
	line-height: 60px;
	color: #FFE0C2;
}

.menu:hover{
	background-color:#FF6600;
    padding-bottom:1px;
    border-bottom:2px;
    border-bottom-color:#000000;
    border-bottom-style:solid;
}

ul.common-ul li a.menu:hover {
	color: #eee;
}

.dropOut .triangle {
	width: 0;
	height: 0;
	position: absolute;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 8px solid rgb(7, 180, 0);
	top: -1.1ex;
	left: 50%;
	margin-left: -8px;
	color: green;
}

.dropdownContain {
	width: 220px;
	position: absolute;
	z-index: 2;
	left: 50%;
	margin-top: 1.4ex;
	margin-left: -110px; /* half of width */
	top: -1800px;
}

.dropOut {
	width: 220px;
	background: white;
	float: left;
	position: relative;
	margin-top: 0px;
	opacity: 0;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, .15);
	-moz-box-shadow: 0 1px 6px rgba(0, 0, 0, .15);
	box-shadow: 0 1px 6px rgba(0, 0, 0, .15);
	-webkit-transition: all .1s ease-out;
	-moz-transition: all .1s ease-out;
	-ms-transition: all .1s ease-out;
	-o-transition: all .1s ease-out;
	transition: all .1s ease-out;
}

.dropOut ul.common-ul {
	float: left;
	padding: 10px 0;
	background-color: #333333;
	border-radius:5px; 
}

.dropOut ul.common-ul li {
	text-align: left;
	float: left;
	width: 200px;
/* 	padding: 8px 0 6px 15px; */ /* Have been defined in the menu.jsp Page */ 
	margin: 0px 10px;
	color: #FFF;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-transition: background .1s ease-out;
	-moz-transition: background .1s ease-out;
	-ms-transition: background .1s ease-out;
	-o-transition: background .1s ease-out;
	transition: background .1s ease-out;
}

.dropOut ul.common-ul li:hover {
	background: rgb(255, 154, 61); /* sub menu list item background color */
}

ul.common-ul li:hover a.menu {
	color: white;
}

ul.common-ul li:hover .dropdownContain {
	top: 45px;
}

ul.common-ul li:hover .underline {
	border-bottom-color: #777;
}

ul.common-ul li:hover .dropOut {
	opacity: 1;
	margin-top: 8px;
}

.sub-menu-icon {
	vertical-align: middle;
	width: 24px;
	height: 24px;
	margin-right: 4px;
}