.m-nav {
	background-color: #1199d6;
	font-family: 'Lucida Grande';
	font-size: 14px;
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: left;
	/* text-transform: uppercase; */
	width: 100%;
}

.m-nav a,
.m-nav a:link,
.m-nav a:visited,
.m-nav a:hover,
.m-nav a:active {
	text-decoration: none;
	font-weight: normal;
	color: #fff;
}

.m-nav-item {
	background: transparent;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	line-height: 18px;
	margin-right: -4px;
	position: relative;
	padding: 15px 20px;
	
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}

.m-nav-item:hover {
	background: #555;
	color: #fff;
}

ul.m-navSub {
	font-size: 14px;
	display: none;
	opacity: 0; */
	padding: 0;
	position: absolute;
		top: 48px;
		left: 0;
	visibility: hidden;
	width: auto;
	
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	-webkit-transiton: opacity 0.2s;
	-moz-transition: opacity 0.2s;
	-ms-transition: opacity 0.2s;
	-o-transition: opacity 0.2s;
	-transition: opacity 0.2s;
	
	z-index: 99;
}

.m-navSub-item { 
	background: #555;
	color: #fff; 
	display: block; 
	height: 36px;
	line-height: 36px;
	padding: 0 14px;
	text-shadow: 0 -1px 0 #000;
	white-space: nowrap;
}

.m-navSub-item:hover { background: #666; }

.m-nav-item:hover .m-navSub {
	display: block;
	opacity: 1;
	visibility: visible;
}