@charset "utf-8";
/* CSS Document */
#jsddm {
    margin:0; 
    padding:0; 
    list-style:none;
	font-size:20px;
	font-family:FontText;
}   
     
    /* make the LI display inline */
    /* it's position relative so that position absolute */
    /* can be used in submenu */
    #jsddm li {
        float:left; 
        display:block; 
        position:relative;
        z-index:3;
		width:auto;
		padding-right:4px;
    }
         
    /* this is the parent menu */
    #jsddm li a {
        display:block; 
        padding:10px; 
		margin-left:0;
        text-decoration:none;
		color:#000;
        text-align:center; 
		width:110px;
		background:url(../img/sfondo_menu.png) repeat-x;
    }
 
    #jsddm li a:hover {
		/*background-color:rgb(228,212,193);  IE < 9 
        background-color: rgba(228,212,193,.5)*/
		background:url(../img/sfondo_menu_roll.png) repeat-x;
    }
     
    /* you can make a different style for default selected value */
    #jsddm a.selected {
		color:#FFF;
    }
     
        /* submenu, it's hidden by default */
        #jsddm ul {
            position:absolute; 
            left:0; 
            display:none; 
            list-style:none;
			/*background-color:rgb(0,0,0);  IE < 9 
			background-color:rgba(0,0,0,.8);*/
			width: inherit;
        }
         
        #jsddm ul li {
			padding:0;
       		margin:0;
			font-size:13px;
			color:#FFF;
			width:100%;       
		}
         
        /* display block will make the link fill the whole area of LI */
        #jsddm ul li a {
			padding:12px 3px 0 3px;
			margin:o;
			border-top: #FFF solid 1px;
			color:#FFF;
			height:30px;
			width:124px;
			text-align: center;
			background-color:rgb(0,0,0);  /*IE < 9 */
			background-color:rgba(0,0,0,.8);
        }
         
        #jsddm ul a:hover {
			/*background-color:rgb(204,204,204); /* IE < 9 
			background-color:rgba(204,204,204,.3);*/
			background-color:rgb(0,0,0);  /*IE < 9 */
			background-color:rgba(0,0,0,.6);
        }
 
/* fix ie6 small issue */
/* we should always avoid using hack like this */
/* should put it into separate file : ) 
*html #jsddm ul {
    margin:0 0 0 -2px;
}*/