@charset "utf-8";
/* CSS Document */

div#container
{
   width: 1062px;
   position: relative;
   margin-top: 0px;
   margin-left: auto;
   margin-right: auto;
   text-align: left;
}

body
{
   text-align: center;
   margin: 0;
   background-image:url(sfondo_01.jpg);
   background-position:center;
   background-color:#000;
   color:#000000;
   link:#FF0000;
   vlink:#FF0000;
}

a.link_home:link {color: #666666;}
a.link_home:visited {color: #666666;text-decoration: underline;}
a.link_home:active {color: #666666;text-decoration: underline;}
a.link_home:hover {color: #FF0000;text-decoration: underline;}

a.link_home2:link {color: #000;}
a.link_home2:visited {color: #000;text-decoration: none;}
a.link_home2:active {color: #000;text-decoration: none;}
a.link_home2:hover {color: #FF0000;text-decoration: none;}

a.link_menu:link {color: #404042; text-decoration:none;}
a.link_menu:visited {color: #404042; text-decoration: none;}
a.link_menu:active {color: #404042; text-decoration: none;}
a.link_menu:hover {color: #FF0000; text-decoration: none;}

a.link_home_w:link {color: #FFFFFF;}
a.link_home_w:visited {color: #FFFFFF;text-decoration: underline;}
a.link_home_w:active {color: #FFFFFF;text-decoration: underline;}
a.link_home_w:hover {color: #C40013;text-decoration: underline;}

ul#topnav {
	margin: 0; padding: 0;
	float: left;
	width: 777px;
	list-style: none;
	position: relative; /*--Set relative positioning on the unordered list itself - not on the list item--*/
	font-size: 11px;
	color:#C40013;
	font-family:Arial, Helvetica, sans-serif;
}
ul#topnav li {
	float: left;
	margin: 0; padding: 0;
}
ul#topnav li a {
	padding: 12px 2px;
	display: block;
	color: #404042;
	font-weight:bold;
	text-decoration: none;
}

/*--Notice the hover color is on the list item itself, not on the link. This is so it can stay highlighted even when hovering over the subnav--*/

ul#topnav li span {
	float: left;
	padding: 0px 0;
	position: absolute;
	left: 0; top:40px;
	display: none; /*--Hide by default--*/
	width: 777px;
	color: #404042;
	/*--Bottom right rounded corner--*/
	-moz-border-radius-bottomright: 5px;
	-khtml-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	/*--Bottom left rounded corner--*/
	-moz-border-radius-bottomleft: 5px;
	-khtml-border-radius-bottomleft: 5px;
	-webkit-border-bottom-left-radius: 5px;
}
ul#topnav li:hover span { display: block; color:#404042;} /*--Show subnav on hover--*/
ul#topnav li span a { display: inline; } /*--Since we declared a link style on the parent list link, we will correct it back to its original state--*/
ul#topnav li span a:hover {text-decoration: none; color:#c40013}
