/*
	Todd Motto Labs
	URL: www.toddmotto.com
*/

/*------------------------------------*\
    Flaunt JS Navigation
\*------------------------------------*/

.nav a, .nav a:hover {
	text-decoration: none;
}
.nav ul, .nav ol {
	list-style: none;
}
.nav *, .nav *:after, .nav *:before {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
.nav {
	position: relative;
	display: inline-block;
	font-size: 13px;
	font-weight: normal;
	border-bottom: 1px solid #6B6B6B;
	border-left: 1px solid #6B6B6B;
	border-right: 1px solid #6B6B6B;
	width: 100%;
	background: #003468;
	z-index: 999999;
}
.nav-list {
	text-align: left;
}
.nav-item {
	float: left;
 *display:inline;
	zoom: 1;
	position: relative;
}



.nav-item a, .support_div {
	display: block;
	color: #fffffE;
	padding: 13px 6px;
	background: #003468;
	border-top: 1px solid #6B6B6B;
	border-right: 1px solid #6B6B6B;
}
.nav-item a:link {
	color: #fffffE;
	text-decoration: none;
}
.nav-item a:visited {
	color: #fffffE;
	text-decoration: none;
}
.nav-item a:hover {
	color: #fffffE;
	text-decoration: none;
	background: #515151;
}
.nav-item a:active {
	color: #fffffE;
	text-decoration: none;
}



.nav-item:hover .nav-submenu {
	display: block;
}
/* Navigation submenu */
.nav-submenu {
	display: none;
	position: absolute;
	left: 0;
	width: 180px;
}
.nav-submenu-item a {
	background: #003468;
	border-bottom: 1px solid #6B6B6B;
	display: block;
	padding: 15px;
}
.nav-submenu-item a:hover {
	background: #515151;
}
/* Mobile navigation */
.nav-mobile {
	display: none; /* Hide from browsers that don't support media queries */
	cursor: pointer;
	position: absolute;
	top: 0;
	right: 0;
	background: #3D3D3B url(../img/nav.svg) no-repeat center center;
	background-size: 18px;
	height: 50px;
	width: 50px;
}
/* Mobile navigation, clickable area for revealing <ul> */
.nav-click {
	position: absolute;
	top: 1px;
	right: 0;
	margin-right: 2px;
	display: none;
	border-left: 1px solid #8B2870;
	height: 53px;
	width: 50px;
	cursor: pointer;
}
.nav-click i {
	display: block;
	height: 48px;
	width: 48px;
	background: url(../img/drop.svg) no-repeat center center;
	background-size: 20px;
}
.nav-click:hover {
	background-color: #003468;
}
.nav-rotate {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

/*------------------------------------*\
    Media Queries
\*------------------------------------*/

@media only screen and (max-width: 635px) {
.nav-mobile {
	display: block;
}
.nav {
	width: 100%;
	padding: 50px 0 0;
	background-image: url(../img/menu_text.png);
	background-repeat: no-repeat;
	background-position: right top;
}
.nav-list {
	display: none;
}
.nav-item {
	width: 100%;
	float: none;
}

.nav-item > a {
	padding: 15px;
}
.nav-click {
	display: block;
}
.nav-mobile-open {
	border-radius: 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0;
	-moz-border-radius: 5px 5px 0 0;
}
.nav-item:hover .nav-submenu {
	display: none;
}
.nav-submenu {
	position: static;
	width: 100%;
}
}






