.menu_SAS {
	width: 100%;
}
.menu_SAS li {
	margin: 0 5px 0 0;
	padding: 0;
	float: left;
	position: relative;
	list-style: none;
}
/* main level link */
.menu_SAS a {
	font-weight: bold;
	color: #FFF;
	text-decoration: none;
	display: block;
	padding:14px 10px 12px 10px ;
	margin: 0;
	border-top-left-radius: 5px;
	border-top-right-radius:5px;
	
}
/* main level link hover */
.menu_SAS .current a, .menu_SAS li:hover > a {
	background: #2aa;
	color: #FFF;
	border-bottom:7px solid #077;
	
}
/* sub levels link hover */
.menu_SAS ul li:hover a, .menu_SAS li:hover li a {
	background: none;
	border: none;
	color: #FFF;
}
.menu_SAS ul a:hover {
	background: #2aa !important;
	color: #FFF !important;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;

}
/* level 2 list */
.menu_SAS ul {
	background: #2aa;
	z-index:2;

	display: none;
	margin: 0;
	padding: 0;
	width: 185px;
	position: absolute;
	top: 40px;
	left: 0;
	-webkit-border-radius: 0 0 4px 4px;
	-moz-border-radius: 0 0 4px 4px;
	border-radius: 0 0 4px 4px;
	
}
/* dropdown */
.menu_SAS li:hover > ul {
	display: block;
}
.menu_SAS ul li {
	float: none;
	margin: 0;
	padding: 0;
}
.menu_SAS ul a {
	font-weight: normal;
}
/* level 3+ list */
.menu_SAS ul ul {
	left: 181px;
	top: 1px;
}
/* rounded corners for first and last child */
.menu_SAS ul li:first-child > a {
	-webkit-border-top-left-radius: 4px;
	-moz-border-radius-topleft: 4px;
	-webkit-border-top-right-radius: 4px;
	-moz-border-radius-topright: 4px;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
}
.menu_SAS ul li:last-child > a {
	-webkit-border-bottom-left-radius: 4px;
	-moz-border-radius-bottomleft: 4px;
	-webkit-border-bottom-right-radius: 4px;
	-moz-border-radius-bottomright: 4px;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
}
/* clearfix */
.menu_SAS:after {
	content: " ";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
.menu_SAS {
	display: inline-block;
}
html[xmlns] .menu_SAS {
	display: block;
}
* html .menu_SAS {
	height: 1%;
}


@media screen and (max-width: 320px) {

.menu_SAS {height:auto;}
.menu_SAS li { margin: 0; width:50%;}
.menu_SAS a { text-align:center;padding:15px;}

}
