/* 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;
}

ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

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

.clearfix {
	clear: both;
}

nav {
	background: -webkit-gradient(linear, center top, center bottom, from(#fff), to(#ccc));
	background-image: linear-gradient(#000, #888);
	border-radius: 3px;
	box-shadow: 0px 0px 4px 2px rgba(0,0,0,0.4);
	padding: 5px 10px 5px 10px;
	position: relative;
}

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

.menu li a {
	color: #fff;
	display: block;
	font-size: 13px;
	line-height: 10px;
	padding: 6px 9px;
	margin: 2px 2px;
	vertical-align: middle;
	text-decoration: none;
}

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

/* 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,0,0,0.9);
	border-radius: 0 0 3px 3px;
	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(#999), to(#000));
	background-image: linear-gradient(#999, #000);
	border-radius: 3px;
	box-shadow: inset 0px 0px 1px 1px rgba(0,0,0,0.1);
	color: #fff;
}

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


