/*Menu*/

ul {
	list-style:none;
	height:100%;
	}
ul li {
	width: 99px;
	overflow:hidden;
	height: 35px;
	background: #ccc;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #aaa;
	border-left: 1px solid #ddd;
	border-right: 1px solid #aaa;
	}
ul li:hover {
	overflow: visible;
	background: #999;
	}

ul ul {
	margin: -36px 0 0 100px;
	width: 100px;
	}
ul ul li {
	height: 35px;
	float: right;
	width: 98px;
	}
ul li a {
	}
a {
	text-decoration:none;
	color: #444;
	display:block;
	padding: 5px;
	height: 25px;
	}
a:hover {
	color: #ccc;
	}

/*Layout*/
	#wrapper {
		width: auto;
		margin: 0 auto;
		color: #fff;
	}
	#wrapper #header {
		width: auto;
		background: #990374;
		position: relative;
	}

	#wrapper #main {
		width: auto;
		color: #990374;
		padding: 40px;
	}

	#footer {
		background: #2A4694;
		width: auto;
		clear: both;
		position: relative;
	}
	
	
/*Globals*/

	* {
		padding: 0px;
		margin: 0px;
		border: 0;
		font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
		font-size: 12px;
	}
	html,
	body	{
		font-size: 100.01%;
		}
