@charset "utf-8";
/* CSS Document */

/*
source: http://www.youtube.com/watch?v=SzvWB0vNj3Q
*/
#menuBar {
	width: 100%;
	background-color: #036;
	margin-left: 0;
}
#menuBar ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}
#menuBar ul li {
	float: left;
	position: relative;
}
#menuBar ul li a {
	height: 30px;
	width: 150px;
	display: block;
	background-color: #036;
	color: #FF0;
	font-size: 16px;
	text-decoration: none;
	line-height: 30px;
	text-align: center;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #555;
	border-bottom-color: #555;
	border-left-color: #999;
}
#menuBar ul li a:hover {
	background-color: #FFF;
	color: #000;
	font-weight: bolder;
}
#menuBar ul li ul {
	position: absolute;
	top: 31px;
	visibility: hidden;
}
#menuBar ul li:hover ul {
	visibility: visible;
}
#menuBar ul li ul li a {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #999;
	border-bottom-color: #555;
}