/*PCFmenu CSS*/

@charset "UTF-8";

#dropmenu{
	left: 0px;
	list-style-type: none;
	width: 960px;
	height: 32px;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 5px 0px;
	background: linear-gradient(white,#f8f8f8, #eee);
	border-right: 1px solid #fff;
	/*border-bottom: 0px solid #ffca00;*/
	/*border-radius: 0px 0px 0 0;*/
	position:relative;
	z-index:3;
}
#dropmenu li{
	position: relative;
	width: 160px;
	float: left;
	margin: 0;
	padding: 0;
	text-align: center;
}
#dropmenu li a{
	display: block;
	margin: 0 3px 0 0;
	padding: 11px 0px 9px;
	color: #333;
	font-size: 14px;
	font-weight: bold;
	line-height:100%;
	text-decoration: none;
	border-bottom: 0px solid #000;
	border-left: 0px solid #ccc;
	border: 1px solid #aaa;
}
#dropmenu li ul{
	list-style: none;
	position: absolute;
	top: 100%;
	left: 0;
	margin: 0;
	padding: 0;
	border-radius: 0 0 0px 0px;
}
#dropmenu li:last-child ul{
/*	left: -100%;*/
	width: 100%
}
#dropmenu li ul li{
	overflow: hidden;
	width: 240px;
	height: 0;
	color: #fff;
	-moz-transition: .2s;
	-webkit-transition: .2s;
	-o-transition: .2s;
	-ms-transition: .2s;
	transition: .2s;
}
#dropmenu li ul li a{
	margin: 0px 0px;
	padding: 11px 12px 9px;
	background: #ccc;
	text-align: left;
	font-size: 13px;
	font-weight: normal;
	color: #111;
	background: linear-gradient(white,#eee, #ddd);
}
#dropmenu li:hover > a{
	background: linear-gradient(white,#f8f8f8, #eee);
	color: #d12;
}
#dropmenu > li:hover > a{
	border-radius: 0px 0px 0 0;
}
#dropmenu li:hover ul li{
	overflow: visible;
	height: 32px;
	border-top: 1px solid #eee;
	border-bottom: 0px solid #800;
}
#dropmenu li:hover ul li:first-child{
	border-top: 0;
}
#dropmenu li:hover ul li:last-child{
	border-bottom: 0;
}
#dropmenu li:hover ul li:last-child a{
	border-radius: 0 0 3px 3px;
}
