@charset "utf-8";
/* CSS Document */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
*,
*:after,
*:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

/* Clearfix Solo IE8 e superiori */
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/* Basic */
body {
	background: #fff;
}
nav {
	background: #3B3B3B;
	font-size: 0; /* Hackfix per rimuovere spazio tra elementi inline-block */
	font-family: Arial, sans-serif;
	font-weight: bold;
	border-bottom: 2px solid #EF580D;
}
nav ul {
	margin: 0 auto;
	width: 100%;
	text-align:center;
}
nav li {
	display:inline-block;
}
nav a {
	font-size: 10px;
	padding:20px 30px;
	display:block;
	float:left;
	color: #fff;
	text-align: center;
	text-decoration: none;
	text-shadow: 1px 1px 0px #222;
	text-transform:uppercase;
}
nav li a {
	border-right: 1px solid #555;
}
nav li:last-child a {
	border-right: 0;
}
nav a:hover, nav a:active {
	background-color: #888;
}
nav a#pull {
	display: none;
}

/* Per schermi inferiori a 600px */
@media screen and (max-width: 600px) {
  	nav ul {
  		width: 100%;
  	}
  	nav li {
		display:block;
  		width: 50%;
  		float: left;
  		position: relative;
  	}
  	nav li a {
		text-align: center;
	  border-bottom: 1px solid #555;
		border-right: 1px solid #555;
	}
  	nav a {
	  	text-align: left;
	  	width: 100%;
	  	text-indent: 25px;
  	}
}

/* Per schermi inferiori a 480px */
@media only screen and (max-width : 480px) {
	nav {
		border-bottom: 0;
	}
	nav ul {
		/* display: none; */
	}
	nav a#pull {
		display: block;
		background-color: #3B3B3B;
		width: 100%;
		position: relative;
		border-bottom: 2px solid #EF580D;
	}
	nav li {
		display: block;
		float: none;
		width: 100%;
		line-height:0.5em;		
	}

}

/* Per schermi inferiori a 320px */
@media only screen and (max-width : 320px) {
	nav li {
		display: block;
		float: none;
		width: 100%;
		line-height:0.7em;
	}
	nav li a {
		border-bottom: 1px solid #555;
	}
}