/* demo page styles */
body {
	
	margin:0;
	padding:0;
}
.example {
	position:relative;
	background:#fff url(../images/background.html);
	width:670px;
	height:470px;
	border:1px #000 solid;
	margin:20px auto;
	padding:15px;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
}
/* main menu styles */
.menuholder {
	float:left;
	font:normal bold 11px/35px verdana, sans-serif;
	overflow:hidden;
	position:relative;
}
.menuholder .shadow {
	-moz-box-shadow:0 0 20px rgba(0, 0, 0, 1);
	-o-box-shadow:0 0 20px rgba(0, 0, 0, 1);
	-webkit-box-shadow:0 0 20px rgba(0, 0, 0, 1);
	background:#888;
	box-shadow:0 0 20px rgba(0, 0, 0, 1);
	height:10px;
	left:5%;
	position:absolute;
	top:-9px;
	width:90%;
	z-index:100;
}
.menuholder .back {
 -moz-transition-duration:.4s;
 -o-transition-duration:.4s;
 -webkit-transition-duration:.4s;
	background-color:rgba(0, 0, 0, 0.5);
	height:0;
	width:100%;
}
.menuholder:hover div.back {
	height:250px;
}
ul.menu {
	display:block;
	float:left;
	list-style:none;
	margin:0;
	padding:0 35px;
	position:relative;
}
ul.menu li {
	float:left;
	margin:0 5px 0 0;
}

ul.menu li > a {
	-moz-border-radius:0 0 10px 10px;
	-moz-box-shadow:2px 2px 4px rgba(0, 0, 0, 0.9);
	-moz-transition:all 0.2s ease-in-out;
	-o-border-radius:0 0 10px 10px;
	-o-box-shadow:2px 2px 4px rgba(0, 0, 0, 0.9);
	-o-transition:all 0.2s ease-in-out;
	-webkit-border-bottom-left-radius:10px;
	-webkit-border-bottom-right-radius:10px;
	-webkit-box-shadow:2px 2px 4px rgba(0, 0, 0, 0.9);
	-webkit-transition:all 0.2s ease-in-out;
	border-radius:0 0 10px 10px;
	box-shadow:2px 2px 4px rgba(0, 0, 0, 0.9);
	color:#eee;
	display:block;
	padding:0 10px;
	text-decoration:none;
	transition:all 0.2s ease-in-out;
}

ul.menu li a.yellow {
	background:#aa0;
}

.menu li div.subs {

	margin:auto;
	background: rgba(12, 93, 198, 0.9);
	z-index:9999;
	border-bottom:#fed001 3px solid;
	position:absolute;
	width:0;

}

.menu li div.subs dl {
	 -moz-transition-duration:.2s;
 	-o-transition-duration:.2s;
 	-webkit-transition-duration:.2s;
	float:left;
	margin:0 30px 0 0;
	overflow:hidden;
	padding:17px 0 1% 2%;
	width:0;
}
.menu dt {
	color:#fc0;
	font-family:arial, sans-serif;
	font-size:12px;
	font-weight:700;
	height:20px;
	line-height:20px;
	margin:0;
	padding:0 0 0 10px;
	white-space:nowrap;
	
}
.menu dd {
	margin:0;
	padding:5px 0px;
	text-align:left;
	
}
.menu dd a {
	background:transparent;
	color:#fff;
	font-size:14px;
	height:20px;
	line-height:20px;
	padding:0 0 0 10px;
	text-align:left;
	white-space:nowrap;
	width:150px;
}
.menu dd a:hover {
	color:#000;
}
.menu li:hover div.subs dl {
	-moz-transition-delay:0.2s;
	-o-transition-delay:0.2s;
	-webkit-transition-delay:0.2s;
	margin-right:2%;
	width:21%;
}
ul.menu li:hover > a, ul.menu li > a:hover {
	background:#aaa;
	color:#fff;
	padding:10px 10px 0;
}


ul.menu li a.yellow:hover, ul.menu li:hover a.yellow {
	background:#cc0;
	width:250px;
}

.menu li:hover div.subs, .menu li a:hover div.subs {
	width:60%;
	margin:0px;
	padding:0px;
	color:#000;
}
