/* Clearfix */

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

#menu {
	position:fixed;
	overflow: hidden;
	width:100%;
	min-height:30px;
	background-color: #fff;
	z-index:99;
}

.logo {
	float: left;
    position: relative;
    margin: 5px 15px ;
	height:30px;
	width:240px
}

.logo img { 
	float:left; 
}

nav {
	font-size: 11pt;
	font-family: 'PT Sans', Arial, sans-serif;
	font-weight: bold;
	position: relative;
}

nav ul {
	padding: 0;
	margin: 15px auto;
	width: 1200px;
	height: 30px;
}

nav li {
	display: inline;
	margin:0 10px 0 0;
}

nav li:last-child {
	display: inline-block;
}

nav a {
	color: #1799a1;
	display: inline-block;
	text-align: center;
	text-decoration: none;
	line-height: 30px;
	font-family: 'Roboto', sans-serif;
	letter-spacing: 2px;
	font-size:12px;
	padding: 0 25px;
}

nav a:hover, 
nav a:active {
	background-color: #c60c0c;
	text-decoration: none;
	color:#fff;
}

nav a:focus{
	background-color: #1799a1;
	text-decoration: none;
	color:#fff;
}
@media only screen and (max-width : 1400px) {
	.logo {width:210px}
	nav li {margin:0 5px 0 0}
}
@media only screen and (max-width : 1200px) {
	nav ul {width: 1100px}
	nav li {margin:0 0 0 0}
	nav li a{padding:0 20px}
}

@media only screen and (max-width : 1100px) {
	nav ul {width: 1000px}
	nav li {margin:0 0 0 0}
	nav li a{padding:0 12px}
}

@media only screen and (max-width : 1023px) {

	nav {
		border-bottom: 0;
	}

	nav ul {
		display: none;
		height: auto;
		margin:0;
		padding:0;
		margin-top:60px;
		width:100%;
	}

	nav a#pull {
		display: block;
		/*background-color: rgba(0,0,0,0.0);*/
		width: 25%;
		position: relative;
		min-height:60px;
		float:right;
	} 
	
	nav a#pull:hover, 
	nav a#pull:focus {
		background-color: rgba(0,0,0,0.0);
	}

	/*nav a#pull:after {
		content:"";
		background: url('../img/nav_icon.png') no-repeat;
		width: 30px;
		height: 30px;
		display: inline-block;
		position: absolute;
		right: 15px;
		top: 20px;
	}*/

	nav li {
		display: block;
		float: none;
		width: 100%;
	}

	nav a {
		width:300px;
		margin: 0 auto;
		display:block;
	}

	#nav-icon {
		width: 20px;
		height: 18px;
		position: relative;
		float: right;
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
		-webkit-transition: .5s ease-in-out;
		-moz-transition: .5s ease-in-out;
		-o-transition: .5s ease-in-out;
		transition: .5s ease-in-out;
		cursor: pointer;
		margin:20px 0 0 0;
	}
	
	#nav-icon span {
		display: block;
		position: absolute;
		height: 4px;
		width: 100%;
		background: #58D6DD;
		border-radius: 0;
		opacity: 1;
		left: 0;
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
		-webkit-transition: .25s ease-in-out;
		-moz-transition: .25s ease-in-out;
		-o-transition: .25s ease-in-out;
		transition: .25s ease-in-out;
	}
	
	#nav-icon span:nth-child(1) {
		top: 0px;
	}
	
	#nav-icon span:nth-child(2) {
		top: 7px;
	}
	
	#nav-icon span:nth-child(3) {
		top: 14px;
	}
	
	#nav-icon.open span:nth-child(1) {
		top: 12px;
		-webkit-transform: rotate(135deg);
		-moz-transform: rotate(135deg);
		-o-transform: rotate(135deg);
		transform: rotate(135deg);
	}
	
	#nav-icon.open span:nth-child(2) {
		opacity: 0;
		left: -60px;
	}
	
	#nav-icon.open span:nth-child(3) {
		top: 12px;
		-webkit-transform: rotate(-135deg);
		-moz-transform: rotate(-135deg);
		-o-transform: rotate(-135deg);
		transform: rotate(-135deg);
	}
}