nav#mobile a {
	text-decoration: none;
	color: #FFF;
	font-size: 14px;
}

/*
Entire Menu System
*/

nav#mobile {
	background-color: #E4E4E4;
	display: block;
	clear: both;
	float: left;
	margin-top: 0px;	/*
	Add the lines below to force the menu bar stay fixed at the top of the page while scrolling.
	position:fixed;
	width:100%;
	*/
	width: 100%;
}

/*
Top black bar that holds the toggle button
*/

nav#mobile #toggle-bar {
	line-height: 26px;
	border-top-width: 1px;
	border-top-style: none;
	border-top-color: #FFFFFF;
	padding-top: 2px;
}
/*
Toggle button #1 ("Menu")
*/

nav#mobile strong  {
	margin-left: 8px;
	padding: 6px;
	font-size: 18px;
	font-weight: bold;
	float: right;
	color: #0084BC;
	margin-right: 4px;
}

/*
Toggle button #2 ("Navicon")
*/

nav#mobile .navicon {
	float: left;
	height: 3px;
	width: 26px;
	font-size: 0;
	border-top-width: 9px;
	border-bottom-width: 3px;
	border-top-style: double;
	border-bottom-style: solid;
	border-top-color: #0084BC;
	border-bottom-color: #0084BC;
	margin-top: 13px;
	margin-right: 5px;
	margin-bottom: 0px;
	margin-left: 14px;
}

/*
The dropdown menu
*/

nav#mobile ul li {
	clear: both;
	list-style: none;
	margin-left: 4px;
}

nav#mobile ul li a {
	display: block;
	background-color: #E4E4E4;
	font-weight: normal;
	margin-top: 2px;
	margin-right: 0;
	margin-bottom: 2px;
	margin-left: 2;
	padding-top: 6px;
	padding-right: 0;
	padding-bottom: 6px;
	padding-left: 10px;
	text-transform: uppercase;
	font-size: 14px;
	color: #0084BC;
}
nav#mobile ul li a:hover {
	background-color: #0084BC;
	color: #FFFFFF;
}


nav#mobile ul ul {
	font-size:small;
}

nav#mobile ul ul li {
	margin-left: 10px;
}

nav#mobile ul ul a {
	background-color: #E4E4E4;
	padding-left: 8px;
}

nav#mobile ul ul a:before {
	content: "\2192";
	padding-right:8px;
}
