@charset "utf-8";
/* CSS Document */
/* Page styles */



/* Navigation menu styles */

#navigationMenu {
	margin:10px 0px 15px 10px;
	padding:0;
}

ul{	/* the unordered list */
	height:35px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:16px;
}

ul li{
	border:1px solid #444444;
	display:inline-block;	/* changing the display property */
	float:left;	/* floating the list items to the left */
	height:33px;
	list-style-type:none;	/* disabling the list icon */
	overflow:hidden;	/* hiding the overflowing content */
}

ul li a, ul li a:hover,
ul li a:visited{
	text-decoration:none;	/* removing the underline text-decoration */
}

/* styling the links */
.normalMenu, .normalMenu:visited,
.hoverMenu, .hoverMenu:visited,
.selectedMenu,.selectedMenu:visited {/* these properties are shared between the classes */
	outline:none;
	padding:8px 16px;
	display:block;
}

/* styles that are assigned individually */

.hoverMenu,.hoverMenu:visited,
.selectedMenu,.selectedMenu:visited {
	margin-top:-35px;
	background:url(img/grey_bg.gif) repeat-x #eeeeee;
	color:#444444;
}

.selectedMenu,.selectedMenu:visited {
	margin:0;
}

.normalMenu, .normalMenu:visited{
	color:white;
	background:url(img/dark_bg.gif) repeat-x #444444;
}

