/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

/* HTML5 display-role reset for older browsers */
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;
}

/* Default Styles 
--------------------------------------------------------------------*/

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

.clearfix {
	clear: both;
}

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

nav {
	background: -webkit-gradient(linear, center top, center bottom, from(#42ab22), to(#359917));
	background-image: linear-gradient(#42ab22, #359917);
	border-radius: 22px;
	box-shadow: 0px 0px 4px 4px rgba(0,0,0,0.3);
	position: relative;
}

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

.menu li a {
	color: #FFFFFF;
	display: block;
	font-size: 12px;
	line-height: 14px;
	padding: 6px 6px;
	margin: 6px 6px;
	vertical-align: middle;
	text-decoration: none;
}

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

/* Dropdown styles */

.menu ul {
	position: absolute;
	left: -9999px;
	list-style: none;
	opacity: 0;
	transition: opacity 0.2s 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: -webkit-gradient(linear, center top, center bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: linear-gradient(#FFFFFF, #FFFFFF);
	border-radius: 6px;
	box-shadow: 0px 0px 4px 2px rgba(0,0,0,0.4);
	left: 5px;
	opacity: 100;
	z-index: 9999;
}

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

.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(#FFFFFF), to(#FFFFFF));
	background-image: linear-gradient(#FFFFFF, #FFFFFF);
	border-radius: 12px;
	box-shadow: inset 0px 0px 4px 2px rgba(0,0,0,0.3);
}

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



