
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}
.clearfix:after {
    clear: both;
}
.clearfix {
    *zoom: 1;
	text-align:center;
}

/* Basic Styles */

nav {
	height: 40px;
	width: 100%;
	/*background: #455868;*/
	font-size: 12pt;
	font-family: century gothic;
	/*font-family: 'PT Sans', Arial, sans-serif;
	font-weight: bold;*/
	position: relative;
	/*border-bottom: 2px solid #283744;*/
}
nav ul {
	padding: 0;
	margin: 0 auto;
	width: 1200px; /*dimensiune prestabilita*/
	height: 40px;
}
nav li {
	display: inline;
	float: left;
}

nav a {
	color: rgb(0,0,0);/* culoare text meniu*/
	display: inline-block;
	width: 150px;
	text-align: center;
	text-decoration: none;
	line-height: 40px;
	/*border:1px solid red;*/

	/*text-shadow: 1px 1px 0px #283744;*/
}
	/*
nav li a {
border-right: 1px solid #576979;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
}*/

nav li:last-child a {
	border-right: 0;
}


nav a:hover{
	/*background-color: orange;*/
	text-decoration:none;
	color:red;
	border-bottom:1px solid red;

}

a.active{
	color:red;
	border-bottom:1px solid red;

}

nav a#pull {
	display: none;
}

/*Styles for screen 900px and lower*/
@media screen and (max-width: 1200px) {
	nav { 
  		height: auto;
  	}
  	nav ul {
  		width: 100%;
  		display: none;
  		height: auto;
  	}
	
	
  	nav li {
  		width: 100%;
  		float: left;
  		position: relative;
		border:1px solid rgb(230,230,230);
  	}

  	nav a {
	  	text-align: left;
	  	width: 100%;
	  	text-indent: 25px;
  	}
	
	
	nav a#pull {
		display: block;
		background-color: rgb(255,254,229);/*#283744 culoare caseta meniu*/
		color:black;
		border:0px solid rgb(230,230,230);
		width: 100%;
		position: relative;
	}
	nav a#pull:after {
		content:"";
		background: url('../imagini/nav-icon.png') no-repeat;
		width: 30px;
		height: 30px;
		display: inline-block;
		position: absolute;
		right: 15px;
		top: 10px;
	}
}

/*Styles for screen 480px and lower*/
@media only screen and (max-width : 480px) {
	nav {
		border-bottom: 0;
	}
	nav ul {
		display: none;
		height: auto;
	}
	

		
	nav a#pull {
		display: block;
		background-color: rgb(255,254,229);/*#283744 culoare caseta meniu*/
		color:black;
		border:1px solid rgb(230,230,230);
		width: 100%;
		position: relative;
	}
	nav a#pull:after {
		content:"";
		background: url('../imagini/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 li {
		display: block;
		float: none;
		width: 100%;
		border:1px solid rgb(230,230,230);
	}
	

		

}

