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

applet, object,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
 u,
dl, dt, dd, ol, ul, li,
fieldset, label, legend,
 caption, 
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* 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;
}

.wrap {
	/*width: 617px;*/
	margin: 0px auto;
}

nav {
	/*background: -webkit-gradient(linear, center top, center bottom, from(#fff), to(#ccc));
	background-image: linear-gradient(#fff, #ccc);
	border-radius: 6px;
	box-shadow: 0px 0px 4px 2px rgba(0,0,0,0.4);*/
	padding: 0 10px;
	position: relative;
	z-index:1000;
}

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

.menu li a {
	color: #B92E4B;
	display: block;
	font-size:18px;
	font-family:"alba", "Trebuchet MS", Arial, Helvetica, sans-serif;
	line-height: 20px;
	padding: 6px 8px;
	margin: 8px 8px;
	vertical-align: baseline;
	text-decoration: none;
}

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

/* Dropdown styles */

.menu ul {
	position: absolute;
	left: -9999px;
	list-style: none;
	opacity: 1;
	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(255,255,255,0.7);
	border-radius: 0 0 6px 6px;
	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(#F2F2F2), to(#FFFFFF));
	background-image: linear-gradient(#F2F2F2, #FFFFFF);
	border-radius: 10px;
	box-shadow: inset 0px 0px 1px 1px rgba(0,0,0,0.1);
	color:#B92E4B;
}

.menu li:hover ul a {
	background: none;
	border-radius: 0;
	box-shadow: none;
	font-size:17px;
	font-style:italic;
	color:#EC7736;
}

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


