/* Clearfix */
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}
.clearfix:after {
    clear: both;
}
.clearfix {
    *zoom: 1;
}

/* Basic Styles */

nav {
	height: 2.5em;
	width: 100%;
	font-size: 1.1em;
	font-weight: bold;
	position: relative;
	background: #9B2583;
}

nav li {
	display: inline;
	float: left;
}
nav a {
	color: #fff;
	display: inline-block;
	width: 100%;
	text-align: center;
	text-decoration: none;
	line-height: 40px;
}
nav li a {
	
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
}
nav li:last-child a {

}
nav a:hover, nav a:active {
	/* [disabled]background-color: #8c99a4; */
}
nav a#pull {
	display: none;
}
ul#navigation {
	/* [disabled]margin-left: auto; */
	/* [disabled]margin-right: auto; */
	
}

ul#navigation li {
	display: inline;
	font-size: 1em;
	margin: 0;
	padding: 0;
	float: left;
	position: relative;
}

ul#navigation li a {
	text-decoration: none;
	display: inline-block;
	background: #9B2583; /*Dark Green*/
	width: 100%;
	padding-right: 1em;
	padding-left: 1em;
	color: #fff;
}

ul#navigation li a:hover {
	background-color: #F37722;
	color: #FFF;
}

ul#navigation li a.first {
	
}

ul#navigation li a.last {
	
	
}


ul#navigation li:visited > a {
	background: #FFF;
}
ul#navigation li:hover > a {
	background: #FFc516;
}
ul#navigation li:active > a {
	background: #FFF;
}
/* Drop-Down Navigation */
ul#navigation li:hover > ul
{
	/*these 2 styles are very important, 
being the ones which make the drop-down to appear on hover */
	visibility: visible;
	opacity: 1;
	/* [disabled]background-color: #71CAD0; */
	font-size: 1em;
}


ul#navigation ul {
	left: 0px;
		
}

ul#navigation ul li ul {
	
}

ul#navigation ul li {
	width: 100%;
	margin-left: 0;
}

ul#navigation ul li a {
	background: #0A4436;  /*Fix this color*/
	color: #fff;
	text-align: left;
}
/*Styles for screen 600px and lower*/
@media screen and (max-width: 768px) {
	nav { 
  		height: auto;
		background: none; 
  	}
  	nav ul {
  		width: 100%;
  		display: block;
  		height: auto;
  	}
  	nav li {
	width: 33.3333%;
	float: left;
	position: relative;
	background: #9B2583;
  	}
  	nav li a {
	/* [disabled]border-bottom: 1px solid #576979; */
	/* [disabled]border-right: 1px solid #576979; */
	text-align: center;
	}
  	nav a {
	text-align: left;
	width: 100%;
  	}
}

/*Styles for screen 515px and lower*/
@media only screen and (max-width : 481px) {
	nav {
		border-bottom: 0;
	}
	nav ul {
		display: none;
		height: auto;
	}
	nav li {
	display: block;
	float: none;
	width: 100%;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFc516;
	}
	nav a {
	text-align: left;
	width: 100%;
	text-indent: 25px;
  	}
	nav li a {
		text-align: left;
		border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFc516;
	}
	nav a#pull {
		display: block;
		background-color: #9B2583;
		width: 100%;
		position: relative;
		border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFc516;
	}
	nav a#pull:after {
	content: "";
	width: 30px;
	height: 30px;
	display: inline-block;
	position: absolute;
	right: 10px;
	top: 10px;
	background-image: url(../_images/nav-icon.png);
	background-repeat: no-repeat;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFc516;
	}
}

/*Smartphone*/
@media only screen and (max-width : 320px) {
	nav li {
		display: block;
		float: none;
		width: 100%;
		border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFc516;
	}
	nav li a {
border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFc516;
	}
}
