@media only screen and (max-width: 1024px) {
.mobile-hide {display: block !important;}
}

/* CSS FOR INTERATIVE MENU DESIGN */
/* The below CSS hides the Children UL Classes until hovered */

nav ul ul {
	display: none;

}

	nav ul li:hover > ul {
		display: block;

	}

/* The below CSS is the aesthetics of the main buttons */
/* Starts */
nav ul {

	padding: 0px 0px 0px 0px;
	list-style: none;
	position: absolute;
	display: inline-table;
	margin-top: 0px;
	z-index: 999;

}
/* Ends */	

/* The :after function effects all classes after the nav UL class */
/* The content query is a pseudo that instructs the class function */

	nav ul:after {
		content: ""; clear: both; display: block;
	}

/* The below is the styling for the LI Primary classes within the Primary UL class */
/* Starts */
nav ul li {
	float: left; list-style: none; width: 150px; height: 40px; text-align: left !important; font-family: 'open_sansbold', Helvetica, sans-serif;
}
	nav ul li:hover {
		background: #000;
		color: #FFF !important;
		text-decoration: none !important;

	}
		nav ul li:hover a {
			color: #fff;
		}
	
	nav ul li a {
		display: block; padding: 0px 0px;
		color: #FFF; text-decoration: none;
	}
	
/* Ends */	
/* The below is the styling for the LI Secondary classes within the Secondary UL class */
/* Starts */

nav ul ul {

	background: rgba(0, 0, 0, .7);
	border-radius: 0px; padding: 0px 0px;
	position: absolute; top: 100%;

}

	nav ul ul li {
		float: none; 
		border-top: 1px solid #FFF;
		border-bottom: 0px solid #FFF;
		border-right: 0px solid #FFF;
		border-left: 0px solid #FFF;
		position: relative;
		width: 150px;
		
	}
		nav ul ul li a {
			padding: 0px 0px;
			color: #fff;
		}	
			nav ul ul li a:hover {
				
					background: #000;
					text-decoration: none;
					height: 36px;
			}
/* Ends */
/* The below is the styling for the 3rd UL classes */

nav ul ul ul {
	position: absolute; left: 100%; top: 0px; background-color: #FFF;
}

nav ul ul ul li a:hover{
	background: #FFF;
}

/* IE 8 Hacks */
/* This is required to display the upper navigation correctly - effectively adding the overflow and then the IF statement in the HTML to fix pre > IE8 */

.ie8 #top {
	
	background: linear-gradient(top, #348DDD 20%, #063481 100%);  
	background: -moz-linear-gradient(top, #348DDD 20%, #063481 100%); 
	background: -webkit-linear-gradient(top, #348DDD 20%, #063481 100%);
	background-image: url(images/Header-Repeat.png);
	background-repeat: repeat-x;
	background-color: #165693;
	position: relative;
	margin-left: 0px;
	margin-right: 0px;
	min-width: 1024px;
	max-width: 1024px;
	margin-top: 0px;
	margin-bottom: 0px;
	text-align: left;
	z-index: 100;
	border-style: solid;
	border-color: #165693;
	border-top-width: 1px;
	border-bottom-width: 2px;
	border-left-width: 0px;
	border-right-width: 0px;
	min-height: 31px;
	max-height: 31px;
	color: #FFF;
	font-family: 'open_sansregular', Helvetica, Arial, sans-serif; 
	text-decoration: none;
	font-size: 12px;
	font-weight: bold;
	overflow: hidden;
	
}