@charset "utf-8";
/* CSS Document */


.sub-navi-mobile1 {display:none;}

/* SUB MENU */
#menu2 {margin-top:0px;}
.submenu {margin-top:10px;}
/*Strip the ul of padding and list styling*/
.submenu ul {
	list-style-type:none;
	margin:0;
	padding:0;
	position: absolute;
}

/*Create a horizontal list with spacing*/
.submenu li {
	display:inline-block;
	float: left;
	margin-right: 1px;
}

/*Style for menu links*/
.submenu li a {
	display:block;
	min-width:140px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #0f3458;
	background: #999999;
	text-decoration: none;
}

/*Hover state for top level links*/
.submenu li:hover a {
	background: #4585c5;
}

/*Style for dropdown links*/
.submenu li:hover ul a {
	background: #666;
	color: #0f3458;
	height: 40px;
	line-height: 40px;
}

/*Hover state for dropdown links*/
.submenu li:hover ul a:hover {
	background: #19c589;
	color: #fff;
}

/*Hide dropdown links until they are needed*/
.submenu li ul {
	display: none;
}

/*Make dropdown links vertical*/
.submenu li ul li {
	display: block;
	float: none;
}

/*Prevent text wrapping*/
.submenu li ul li a {
	width: auto;
	min-width: 100px;
	padding: 0 20px;
}

/*Display the dropdown on hover*/
.submenu ul li a:hover + .hidden, .hidden:hover {
	display: block;
}

/*Style 'show menu' label button and hide it by default*/
.show-menu-b {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-decoration: none;
	color: #fff;
	background: #676766;
	text-align: center;
	padding: 10px 0;
	display: none;

}


/*Responsive Styles*/
@media screen and (max-width : 760px){
	
	.sub-navi-mobile1 {display:block;}
	
	/* SUB MENU */
	/*Make dropdown links appear inline*/
	.submenu ul {
		position: static;
		display: none;
		
	}
	/*Create vertical spacing*/
	.submenu li {
		margin-bottom: 1px;
	}
	/*Make all menu links full width*/
	.submenu ul li, li a {
		width: 100%;
	}
	
}

