.menuTop {
	color: #FFFFFF;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px
}
.menuTop:hover {
	color: #CCCCCC;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px
}
.menuTopOn {
	color: #FF0000;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px
}
.menuBott { 
 background-color:#5b5959;
}
.menuBott:hover {
 background-color:#53a506;
}
.menuBottON {
	background-color:#53a506;
}
.testoPie {
	color: #FFFFFF;
	text-decoration: none;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
}
.testo20 {
	color: #b0b0b0;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
}
.testo20b {
	color: #FFFFFF;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
}
.testo20c {
	color: #666666;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
}
.testo20Verde {
	color: #53a506;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
}
.testo28Verde {
	color: #53a506;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 28px;
	font-weight: bold;
}
.testoBianco14 {
	color: #FFFFFF;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
}
.testo12grigio {
	color: #b0b0b0;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}
.testo12grigio2 {
	color: #666666;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}
.linkPie12 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #686767;
	text-decoration: underline;
	font-weight: normal;
}
.linkPie12:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #999999;
	text-decoration: underline;
	font-weight: normal;
}
.testo4{
	color:#555454;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
}
.formbutton {
    border: 1px solid #c9c9c9;
    background: #f2f2f2;
	font-family: Helvetica, Arial, sans-serif;
	font-style: normal;
	font-size: 12px;	
	color: #636363;	
	width:150px;
	height:25px;
}
.formbutton:hover {
    border: 1px solid #c9c9c9;
    background: #f2f2f2;
	font-family: Helvetica, Arial, sans-serif;
	font-style: normal;
	font-size: 12px;	
	color: #000000;	
	width:150px;
	height:25px;
}
.hoverTable td:hover {
          background-color: #f7bdbe;
}
.buttON {
          background-color: #f7bdbe;
}
.linkGrigio {
	color: #3a3939;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px
}
.linkGrigio:hover {
	color: #9c9b9b;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px
}
.testonero12 {
	color: #000000;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px
}
.linkbianco11 {
	color: #ffffff;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px
}
.linkbianco11:hover {
	color: #546e7c;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px
}
.linknero11 {
	color: #000000;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px
}
.linknero11:hover {
	color: #CCCCCC;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px
}
.testonero09 {  color: #000000; text-decoration: none; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 09px}

.testonero14 {
	color: #000000;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px
}
.testobianco {
	color: #ffffff;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px
}



/* BE SURE TO INCLUDE THE CSS RESET FOUND IN THE DEMO PAGE'S CSS */

/*------------------------------------*\
    NAV
\*------------------------------------*/
#nav{
    padding:0;
    margin: 0;
    list-style:none;
    position:relative;
    z-index:999;

}
#nav li{

}
#nav a{
    display:block;
    padding:5px;
    color:#fff;
    background:#5b5959;
    text-decoration:none;
}
#nav a:hover{
    background:#53a506;
    text-decoration:underline;
}

/*--- DROPDOWN ---*/
#nav ul{
    padding:0;
    margin: 0;
    background:#5b5959; /* Adding a background makes the dropdown work properly in IE7+. Make this as close to your page's background as possible (i.e. white page == white background). */
    background:rgba(255,255,255,0); /* But! Let's make the background fully transparent where we can, we don't actually want to see it if we can help it... */
    list-style:none;
    position:absolute;
	width:168px;
    left:-9999px; /* Hide off-screen when not needed (this is more accessible than display:none;) */
}
#nav ul li{
    padding-top:1px; /* Introducing a padding between the li and the a give the illusion spaced items */
    float:none;
}
#nav ul a{
    white-space:nowrap; /* Stop text wrapping and creating multi-line dropdown items */
}
#nav li:hover ul{ /* Display the dropdown on hover */
    left:0; /* Bring back on-screen when needed */
}
#nav li:hover a{ /* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
    background:#53a506;
    text-decoration:underline;
}
#nav li:hover ul a{ /* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
    text-decoration:none;
}
#nav li:hover ul li a:hover{ /* Here we define the most explicit hover states--what happens when you hover each individual link. */
    background:#53a506;
}