/* ========================================================================

	Il reset del css grazie a Meyer, seguono credits e note di versione
	
	http://meyerweb.com/eric/tools/css/reset/
	v2.0 | 20110126
	License: none (public domain)
	
======================================================================== */

* {
	outline: none;
}
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;
}
ins {
	background-color: #ff9;
	color: #000; text-decoration: none;
}
mark {
	background-color: #ff9;
	color: #000;
	font-style: italic;
	font-weight: bold;
}
del {
	text-decoration: line-through;
}
abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}
hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #ccc;
	margin: 1em 0;
	padding: 0;
}
input, select {
	vertical-align: middle;
}


/* =======================================================

	DEFINISCO GLI ELEMENTI DI LAYOUT
	che mi servono a strutturare la pagina

======================================================= */
html{
     background:#182028; 
}

#contenitore_principale {
	margin: 20px auto;
	background: #182028;
	width: 920px;
    /*width:920px; */	
	padding: 10px;	
/*	background-color:red;   questo colore è impostato per capire le dimensioni del contenitore */
}
#banner_principale{
      top:30px;              /* definisco la posizione del banner principale */
      left:250px;
	  position:absolute;
}

/*definisco certe informazioni delle barre di navigazione */

a:link{text-decoration:none;
       color:yellow;
		}
		
a:visited{text-decoration:none; color:yellow}
a:hover{color:red}


#barra_navigazione a {
	display: block;
	text-decoration: none;
    background: #3d4286;     /* questo sarebbe il css normale d'aspetto */
	width:120px;
	color: #FFF; 
	font-weight: bold;
	padding: 7px;
}

#barra_navigazione a:hover {
	/*background: #B20000; */
	background:#A0AFAE;      /* quando ci passi con il mouse  */
}