
nav#mobile a {
	text-decoration: none;
	color: #FFF;
}

/*
Entire Menu System
*/

#mobile {
	display:block;
	/*
	Add the lines below to force the menu bar stay fixed at the top of the page while scrolling.
	position:fixed;
	width:100%;
	*/
}

/*
Top black bar that holds the toggle button
*/

#mobile #toggle-bar {
}

/*
Toggle button #1 ("Menu")
*/

#mobile strong a {
}

/*
The dropdown menu
*/

#mobile ul li {
	clear:both;
	list-style:none;
}

#mobile ul li a {
	display:block;
	background-color:#300;
	text-transform:uppercase;
	letter-spacing:.2em;
	color:#fff;
	margin:2px 0;
	padding:6px 0 6px 8px;
}

#mobile ul ul {
	font-size:small;
}

#mobile ul ul li {
	margin-left:30px;
}

#mobile ul ul a {
	background-color:#333;
	padding-left:8px;
}

#mobile ul ul a:before {
	content: "\2192";
	padding-right:8px;
}