article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
	font-family: 'Droid Sans', sans-serif;;
}

.clearfix {
	clear: both;
}

.wrap {
	margin: 2em auto;
	width: 700px;
}

nav {
	background: -webkit-gradient(linear, center top, center bottom, from(#fff), to(#9bcdff));
	background-image: linear-gradient(#fff, #ded3a3);
	border-radius: 5px;
	box-shadow: 0px 0px 4px 2px rgba(0,0,0,0.4);
	padding: 0 8px;
	position: relative;
}

.menu li {
	float: left;
	position: relative;
}

.menu li a {
	color: #444;
	display: block;
	font-size: 15px;
	line-height: 15px;
	padding: 3px 8px;
	margin: 3px 3px;
	vertical-align: middle;
	text-decoration: none;
}

.menu li a:hover {
	background: -webkit-gradient(linear, center top, center bottom, from(#d9d9ff), to(#fff));
	background-image: linear-gradient(#d9d9ff, #fff);
	border-radius: 15px;
	box-shadow: inset 0px 0px 1px 1px rgba(0,0,0,0.1);
	color: #222;
}

/* Dropdown styles */

.menu ul {
	position: absolute;
	left: -9999px;
	list-style: none;
	opacity: 0;
	transition: opacity 1s ease;
}

.menu ul li {
	float: none;
}

.menu ul a {
	white-space: nowrap;
}

/* Displays the dropdown on hover and moves back into position */
.menu li:hover ul {
	background: rgba(0,130,180,0.9);
	border-color: white;
	border-width: 2px;
	border-style: solid;
	border-radius: 0 0 10px 10px;
	box-shadow: inset 0px 2px 4px rgba(0,0,0,0.4);
	left: 5px;
	opacity: 1;
}

/* Persistant Hover State */
.menu li:hover a {
	background: -webkit-gradient(linear, center top, center bottom, from(#c5b35c), to(#d9d9ff));
	background-image: linear-gradient(#c5b35c, #d9d9ff);
	border-radius: 15px;
	box-shadow: inset 0px 0px 1px 1px rgba(0,0,0,0.1);
	color: #222;
}

.menu li:hover ul a {
	background: none;
	border-radius: 0;
	box-shadow: none;
}

.menu li:hover ul li a:hover {
	background: -webkit-gradient(linear, center top, center bottom, from(#eee), to(#fff));
	background-image: linear-gradient(#ded3a3, #fff);
	border-radius: 15px;
	box-shadow: inset 0px 0px 4px 2px rgba(0,0,0,0.3);
}

.ivert {
	font-size: 13px;
}