/*** MAIN MENU ***/
.menu, .menu * {
	font-family: 'Droid Serif', serif;
	font-size: 21px;
    margin: 0;
    padding: 0;
    list-style: none;
    position: fixed;
    top: 0px;
	z-index: 20;
}
.menu {
    line-height: 1.0;
    width: 100%; /* !!!!!!!!!!!!!!!!!!!!!!!! trying to get 100% width */
    	height: 105px !important;
		
		min-width: 1024px;
}
.menu ul {
    position: absolute;
    top: -999em;
    
    width: 10em; /* left offset of submenus need to match (see below) */
    display: table-row; /* !!!!!!!!!!!!!!!!!!!!!!!! trying to get 100% width */
}
.menu ul li {
    width: 100%;
    display: table-cell;/*  !!!!!!!!!!!!!!!!!!!!!!!! trying to get 100% width */
}
.menu li:hover {
    visibility: inherit; /* fixes IE7 'sticky bug' */
}
.menu{
    text-align:center;
    background-color:#ffffff;
}
.menu li {
    /*float: left;*/
    position: relative;
    display:inline-block;
    margin:0 -2px;
}
.menu a {
    display: block;
    position: relative;
}
.menu li:hover ul,
.menu li.sfHover ul {
    left: 0;
    top: 2.5em; /* match top ul list item height */
    z-index: 99;
}
ul.menu li:hover li ul,
ul.menu li.sfHover li ul {
    top: -999em;
}
ul.menu li li:hover ul,
ul.menu li li.sfHover ul {
    left: 10em; /* match ul width */
    top: 0;
}
ul.menu li li:hover li ul,
ul.menu li li.sfHover li ul {
    top: -999em;
}
ul.menu li li li:hover ul,
ul.menu li li li.sfHover ul {
    left: 10em; /* match ul width */
    top: 0;
}
.menu {
    float: left;
    margin-bottom:    1em;
}
.menu a {
    padding-top:  42px;
	padding-bottom:  42px;
    text-decoration:none;
}
.menu a, .menu a:visited  { /* visited pseudo selector so IE6 applies text colour*/
    color: #afafaf;
}
.menu a:link  { /* visited pseudo selector so IE6 applies text colour*/
    color: #afafaf;
}
.menu li {
    color: #474747;
}
.menu li:hover, .menu li.sfHover,
.menu a:focus, .menu a:hover, .menu a:active {
    outline: 0;
    color: #474747;
}

	header {
width: 100%;

top: 0px;
font-weight: 100;
z-index: 10;
min-width: 1024px;
}		
				
/* Nav
*****************************************************************/

nav#primary {
	z-index: 5;
	position: fixed;
	top: 50%;
	right: 16px;
	margin-top: -40px;
}
nav#primary li {
	position: relative;
	height: 20px;
}
nav#primary a {
	display: block;
	width: 20px;
	height: 20px;
	text-indent: -9999px;
	background: transparent url('../img/nav-dot.png') 4px 4px no-repeat;
}
nav#primary a:hover, nav#primary a.active {
	background: transparent url('../img/nav-dot.png') 4px -16px no-repeat;
}
nav#primary h1 {
	position: absolute;
	right: 22px;
	top: -7px;
	display: none;
	padding: 4px 20px 4px 7px;;
	color: #fff;
	white-space: nowrap;
	background: transparent url('../img/nav-arrow.png') 100% 50% no-repeat;
	}
nav.next-prev {
	margin: 20px 0 0 0;
	}
	a.prev,
	a.next {
		display: block;
		width: 15px;
		height: 11px;
		text-indent: -9999px;
		}
	a.prev {
		margin: 0 auto 5px auto;
		background: transparent url('../img/scroll-arrow-up.png') 0 0 no-repeat;
		}
		a.prev:hover {
			background: transparent url('../img/scroll-arrow-up.png') 0 -11px no-repeat;
			}
	a.next {
		margin: 5px auto 0 auto;
		background: transparent url('../img/scroll-arrow-down.png') -1px 0 no-repeat;
		}
		a.next:hover {
			background: transparent url('../img/scroll-arrow-down.png') -1px -11px no-repeat;
			} 