/* #######################################################################

	meanMenu
	--------
	
	To be used with jquery.meanmenu.js by Chris Wharton (http://www.meanthemes.com/plugins/meanmenu/)

####################################################################### */

/* hide the link until viewport size is reached */
a.meanmenu-reveal {
	display: none;
}

/* when under viewport size, .mean-container is added to body */
.mean-container .mean-bar {
float: left; 
        width: 100%; 
/*	position: relative;  JRS */
/*	background: #0c1923;  JRS */
/*	padding: 4px 0; JRS */
/*	z-index: 999999; JRS */
/*	min-height: 42px; JRS */

/* 22jan2014        position: fixed; */
        padding: 0 0 0 0;
        z-index: 1;
        background: #2B547E; 
        /* background: #090;  DMC green 6feb2015 */
}

.mean-container a.meanmenu-reveal {
	width: 22px;
	height: 22px;
/*	padding: 13px 13px 11px 13px; JRS */
        padding: 10px 10px 8px 10px; 
	position: absolute;
	top: 0;
	right: 0;
	cursor: pointer;
	color: #f8f8f8;
	text-decoration: none;
	font-size: 16px;
	text-indent: -9999em;
	line-height: 22px;
	font-size: 1px;
	display: block;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 700;
}

.mean-container a.meanmenu-reveal span {
	display: block;
	background: #f8f8f8;
	height: 3px;
	margin-top: 2px;
}

.mean-container .mean-nav {
	float: left;
	width: 100%;
        background: #2B547E;
        /* background: #090;  DMC green 6feb2015 */
	margin-top: 34px; /* control height of nav bar on small screen 8oct2013 was 33px */
        /* padding-bottom: 8px; */ /* JRS commented out on 8oct2013 */
}

.mean-container .mean-nav ul {
        width: 100%; /* JRS */
	padding: 0; 
	margin: 0;
	width: 100%;
	list-style-type: none;
}

.mean-container .mean-nav ul li {
        text-align: left; /* JRS */
	position: relative;
	float: left;
	width: 100%;
        line-height: 1.5em;
}

.mean-container .mean-nav ul li a {
	display: block;
	float: left;
        /* JRS
	width: 90%;
	padding: 1em 5%;
        */
        width: 96%;
/*        padding: 1em 2%; JRS control thickness of clickable dropdown menu area */
        padding: .5em 2%;
	margin: 0;
	text-align: right; /* JRS */
	color: #f8f8f8;
        border-top: 1px solid #ccc;
        border-top: 1px solid rgba(255,255,255,0.5);
        font-family: Arial, Helvetica, sans-serif;
/*
	border-bottom: 1px solid #383838;
	border-bottom: 1px solid rgba(255,255,255,0.5);
*/
	text-decoration: none;
/*	text-transform: lowercase; */
}

.mean-container .mean-nav ul li li a {
	width: 80%;
	padding: 1em 10%;
	border-bottom: 1px solid #f1f1f1;
	border-bottom: 1px solid rgba(255,255,255,0.25);
/* 8oct2013 jrs - causes errors in validator. are these lines needed?
	opacity: 0.75;
	filter: alpha(opacity=75);
*/
	text-shadow: none !important;
	visibility: visible;
}

.mean-container .mean-nav ul li.mean-last a {
	border-bottom: none;
	margin-bottom: 0;
}

.mean-container .mean-nav ul li li li a {
	width: 70%;
	padding: 1em 15%;
}

.mean-container .mean-nav ul li li li li a {
	width: 60%;
	padding: 1em 20%;
}

.mean-container .mean-nav ul li li li li li a {
	width: 50%;
	padding: 1em 25%;
}

.mean-container .mean-nav ul li a:hover {
	background: #252525;
	background: rgba(255,255,255,0.1);
}

.mean-container .mean-nav ul li a.mean-expand {
	width: 26px;
	height: 26px;
	border: none !important;
	padding: 12px !important;
	text-align: center;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 2;
	font-weight: 700;
}

.mean-container .mean-nav ul li a.mean-expand:hover {
	background: none;
}

.mean-container .mean-push {
	float: left;
	width: 100%;
	padding: 0;
	margin: 0;
	clear: both;
}

.mean-nav .wrapper {
	width: 100%;
	padding: 0;
	margin: 0;
}

/* Fix for box sizing on Foundation Framework etc. */
.mean-container .mean-bar, .mean-container .mean-bar * {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}


/********* smartphone 320-480px  **********/
/* 37.5em = 600px */
@media only screen and (max-width: 37.5em) {
 nav ul {
    display: none;
 }
 header {
    position: fixed;
 }
}

