/* CSS Document */

.Menu, .SubMenu{
	list-style-type:none;							/* Removes bullets */
	margin:0;										/* Removes indention */
	padding:0;										/* Removes indention */
}

.Menu{}

.SubMenu{}

.Menu a:active,.Menu a:focus{
	outline:none;									/* Prevents clickable menu items (a) to become bordered upon user selection */
}

.Menu > .MenuItem{
	float:left;										/* Creates a horizontal menu of the direct child .MenuItem */
}

.MenuItem a{
	font:menu;										/* Uses menu font */
	font-weight:bold;								/* Makes font bold */
	color:#FFFFFF;									/* Menu font colors */
	background:										/* Background of .MenuItem links (Mozilla/Gecko engine only) */
		-moz-linear-gradient(top, #024770, #011622);
	background:										/* Background of .MenuItem links (Apple/Webkit engine only) */
		-webkit-linear-gradient(top, #024770, #011622);
	background:										/* Background of .MenuItem links (Microsoft/Trident engine only // IE10+) */
		-ms-linear-gradient(top, #024770, #011622);
	background:										/* Background of .MenuItem links (Opera/Presto engine only) */
		-o-linear-gradient(top, #024770, #011622);		
	background-color:#011622;						/* Background of .MenuItem links (Default) */
	display:block;									/* Turns .MenuItem links into a block */
	width:8.7em;										/* Fixed width of the link */
	padding:13px 12px;								/* Padding of the link (Originally 33px 12px )*/
	text-decoration:none;							/* Removes underline for the links */
}

.MenuItem a:hover{
	color:#FFFFFF;									/* Menu font colors upon hover */
	text-shadow:0px 0px 3px #FFF; 					/* Adds glow to font (Only supported in browsers: Opera 9.5+, Chrome/Safari 1.1+, Mozilla/Firefox 3.1+, Konqueror 3.4+ and iCab 3.0.3+) */	
	background:										/* Background of .MenuItem links on hover (Mozilla/Gecko engine only) */
		-moz-radial-gradient(center 80px, circle cover, #17adff, #094D72);
	background:										/* Background of .MenuItem links on hover (Apple/Webkit engine only) */
		-webkit-radial-gradient(center 80px, circle cover, #17adff, #094D72);
	background:										/* Background of .MenuItem links on hover (Microsoft/Trident engine only // IE10+) */
		-ms-radial-gradient(center 80px, circle cover, #17adff, #094D72);
	background:										/* Background of .MenuItem links on hover (Opera/Presto engine only) */
		-o-radial-gradient(center 80px, circle cover, #17adff, #094D72);				
	background-color:#094D72;						/* Background of .MenuItem links on hover (Default) */
}

.Menu .SubMenu{
	position:absolute;								/* Positioned relative to its parent element */
    display:none;									/* Hide the .SubMenu */
	z-index:999;									/* Always keep the .SubMenu on top */
}

.Menu .MenuItem:hover .SubMenu{						/* IMPORTANT: Disable content if Javascript/jQuery is to be used */
/*	display:block;									/* Unhides .SubMenu and shows it as a block. */
}

.SubMenu a{
	padding:10px 12px;								/* Adds additional dimentions to .SubMenu links (Originally 20px 12px ) */
	width:15em;										/* Sets a fixed width for .SubMenu links */
}