/*menu*/

* { margin:0;
	padding:0;
}

html {height: 100%;}

body{
	position: relative;
	height: 100%;

}
div#menu {
	
}
div#menu .navbox {
	position: relative;
	float: left;
	font-size:13px;
	font-family:Verdana, Geneva, sans-serif;
}

div#menu ul.nav {
	list-style: none;
	display: block;
	width: 200px;
	position: relative;
	top: 4px;
	left: 10px;

	background: url(images/shad2.png) no-repeat;
	-webkit-background-size: 50% 100%;
	text-align:center;
}

div#menu li {
	margin: 10px 0 0 0;
	padding-bottom:4px;
	
}

div#menu ul.nav li a {
	-webkit-transition: all 0.3s ease-out;
	background: url(images/border.png) no-repeat;
	color: #000;
	padding: 0px 0px 18px 0px;
	-webkit-border-top-right-radius: 10px;
 	-webkit-border-bottom-right-radius: 10px;
	width: 200px;
	display: block;
	text-decoration: none;
	-webkit-box-shadow: 2px 2px 4px #888;
}

div#menu ul.nav li a:hover {
	color:#009;
	padding: 0px 0px 18px 8px;
}

