﻿@charset "utf-8";
/*************meniu*****************/

#meniu ul {
	margin: 0 0;
	padding:0 0;
}
#meniu li a {
	display:table;
	width:103px;
	height:35px;
	float:left;
	text-decoration: none;
	color:#fff;
	font-size: 12px;
	font-weight: bold;
	margin: 0 1px;
	text-align: center;
}
#meniu li a:hover {
	text-decoration:none;
	background-image: url(../images/menu_hover.jpg);
	background-repeat: no-repeat;
}
#meniu li a span {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
#cssdropdown, #cssdropdown ul {
padding: 0;
margin: 0;
}
#cssdropdown li {
float: left;
position: relative;
}
.subuls {
	display: none;
	width: 102px;
	height: auto;
	position: absolute;
	top: 35px;
	margin: 0;
	z-index: 9998;
}
#meniu li .subuls li{
	width: 102px;
	float: left;
	height: 30px;
	border: 1px solid #EEE;
	background-color: #F6F8F7;
}
#meniu li .subuls li a{
	display: table;
	width: 102px;
	float: left;
	height: 30px;
	color: #000;
	font-size: 11px;
	text-decoration: none;
}
#meniu li .subuls li a:hover{
	background-color: #095a98;
	color: #FFF;
	text-decoration: none;
}
#meniu li .subuls li a span {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
#cssdropdown li>.subuls { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: 35px;
	left: 0;
}
#cssdropdown li:hover ul, li.over ul { /* lists nested under hovered list items */
display: block;
}

