/* Clearfix */
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}
.clearfix:after {
    clear: both;
}
.clearfix {
    *zoom: 1;
}

/* Basic Styles */
nav#res_menu {
	display:none;/*pratheeja*/
	height: 40px;
	width: 100%;
	background: #000000;
	font-size: 12px;
	position: relative;
	/*border-bottom: 2px solid #283744;*/
}
nav#res_menu ul {
	padding: 0;
	margin: 0 auto;
	width: 600px;
	height: 40px;
	text-transform:uppercase;
}
nav#res_menu li {
	display: inline;
	float: left;
}
nav#res_menu a {
	color: #5D5C5C;
	display: inline-block;
	width: 100px;
	text-align: center;
	text-decoration: none;
	line-height: 40px;
}
nav#res_menu li a {
	border-right: 1px solid #576979;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
}
/*nav#res_menu li:last-child a {
	border-right: 0;
}*/
nav#res_menu a:hover, nav a:active {
	background-color: #D97407;
	color:#FFFFFF;
}
nav#res_menu a#pull {
	display: none;
}

/*Styles for screen 600px and lower*/
@media screen and (max-width: 980px) {
	header {
		display:none !important;}
	nav#res_menu { 
  		height: auto;
		display:block;/*pratheeja*/
  	}
  	nav#res_menu ul {
  		width: 100%;
  		display: block;
  		height: auto;
  	}
  	nav#res_menu li {
  		width: 50%;
  		float: left;
  		position: relative;
  	}
  	nav#res_menu li a {
		border-bottom: 1px solid #1C1C1C;
		border-right: 1px solid #1C1C1C;
	}
  	nav#res_menu a {
	  	text-align: left;
	  	width: 100%;
	  	text-indent: 25px;
  	}
}

/*Styles for screen 515px and lower*/
@media only screen and (max-width : 480px) {
	nav#res_menu {
		border-bottom: 0;
	}
	nav#res_menu ul {
		display: none;
		height: auto;
	}
	nav#res_menu a#pull {
		display: block;
		background-color: #1B1B1B;
		width: 100%;
		text-transform:uppercase;
		position: relative;
	}
	nav#res_menu a#pull:after {
		content:"";
		background: url('nav-icon.png') no-repeat;
		width: 30px;
		height: 30px;
		display: inline-block;
		position: absolute;
		right: 15px;
		top: 10px;
	}
}

/*Smartphone*/
@media only screen and (max-width : 320px) {
	nav#res_menu li {
		display: block;
		float: none;
		width: 100%;
	}
	nav#res_menu li a {
		border-bottom: 1px solid #1C1C1C;
	}
}
/*responsive sub menu*/
.nav {
	margin: 0 0 5px 0;
	display:none;
}
.nav ul {
	margin: 0;
	padding: 0;
}
.nav li {
	margin: 0 5px 10px 0;
	padding: 0;
	list-style: none;
	display: inline-block;
	*display:inline; /* ie7 */
}
.nav a {
	padding: 3px 12px;
	text-decoration: none;
	color: #999;
	line-height: 100%;
}
.nav a:hover {
	color: #FFF;
}

@media screen and (max-width: 720px) {
	.nav {
		display:block;
		position: relative;
		min-height: 40px;
	}	
	.training_center_links { display:none;}
	.nav ul {
		width: 180px;
		padding: 5px 0;
		position: absolute;
		top: 0;
		left: 0;
		border: solid 1px #353535;
		background: #1B1B1B;
		border-radius: 5px;
		box-shadow: 0 1px 2px rgba(0,0,0,.3);
	}
	.nav li {
		display: none; /* hide all <li> items */
		margin: 0;
	}
	.nav .current {
		display: block; /* show only current <li> item */
	}
	.nav a {
		display: block;
		padding: 5px 5px 5px 5px;
		text-align: left;
	}
	/* on nav hover */
	.nav ul:hover {
		background-image: none;
	}
	.nav ul:hover li {
		display: block;
		margin: 0 0 5px;
	}
}