
/* Principal */
.frameMD{

	position: absolute; overflow: hidden;

	top: 12%;
	bottom: 0px;
	left: 0px;
	right: 0px;
	
	
	/*
	height: expression(document.body.clientHeight - 100 + "px");  Correction IE, encore 
	width: expression(document.body.clientWidth - 120 + "px");  Correction IE, suite 
	*/
	
	margin: 0px;
	padding: 0px;
	overflow: auto;
	text-align: center;
	

/*
font-family: "Bookman Old Style", serif;
	font-size: 100%;
	
	color: #b9f2f2;
	*/
	color: #ffffff;
	}
* html .frameMD {
		width: 100%; /* Dimensions pour IE : rendu de la page en mode "quirks" si déclaration XML avant le DOCTYPE.. */
		 /* Source du pb de déclaration XML -> http://www.w3.org/International/articles/serving-xhtml/Overview.fr.html */
		
	}


#menuD{
		
        width: 20%;
        margin: 0;
		/* position du mot menu */
        padding: 30px 0 0 0;
        list-style: none;
        background: #041612;
        background: -moz-linear-gradient(#041612, #041612);
        background: -webkit-gradient(linear,left bottom,left top,color-stop(0, #041612),color-stop(1, #041612));
        background: -webkit-linear-gradient(#041612, #041612);
        background: -o-linear-gradient(#041612, #041612);
        background: -ms-linear-gradient(#041612, #041612);
        background: linear-gradient(#041612, #041612);
        -moz-border-radius: 50px;
        border-radius: 0px;
        -moz-box-shadow: 0 2px 1px #041612;
        -webkit-box-shadow: 0 2px 1px #041612;
        box-shadow: 0 2px 1px #041612;
}

#menuD li{
        float: left;
        padding: 0 0 10px 0;
        position: relative;
}

#menuD a{
        float: left;
		/* hauteur du support de menu */
        height: 50px;
		/* décalage par rapport à la gauche du mot menu */
        padding: 0 10px;
        color: #eee;
        text-transform: uppercase;
      
        text-decoration: none;
        text-shadow: 0 1px 0 #000;
}

#menuD li:hover > a{
        color: #fafafa;
}

*html #menuD li a:hover{ /* IE6 */
        color: #fafafa;
}

#menuD li:hover > ul{
        display: block;
}

/* Sous-menuD */

#menuD ul{
    list-style: none;
    margin: 0;
    padding: 10px 0 0 0;
    display: none;
    position: absolute;
	/* distance entre menu et le déroulé */
    top: 20px;
    left: 0;
    z-index: 99999;
    background: #041612;
    background: -moz-linear-gradient(#041612, #041612);
    background: -webkit-gradient(linear,left bottom,left top,color-stop(0, #041612),color-stop(1, #041612));
    background: -webkit-linear-gradient(#041612, #041612);
    background: -o-linear-gradient(#041612, #041612);
    background: -ms-linear-gradient(#041612, #041612);
    background: linear-gradient(#041612, #041612);
    -moz-border-radius: 5px;
    border-radius: 5px;
}

#menuD ul li{
    float: none;
    margin: 0;
    padding: 0;
    display: block;
    -moz-box-shadow: 0 1px 0 #041612, 0 2px 0 #777777;
    -webkit-box-shadow: 0 1px 0 #041612, 0 2px 0 #777777;
    box-shadow: 0 1px 0 #041612, 0 2px 0 #777777;
}

#menuD ul li:last-child{
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;

}

#menuD ul a{
	/* position des textes de menu - décalages haut droite bas gauche */
    padding: 5px 0px 5px 5px;
    height: auto;
    line-height: 1;
    display: block;
    white-space: nowrap;
    float: none;
    text-transform: none;

}

*html #menuD ul a{ /* IE6 */
        height: 10px;
        width: 150px;
}

*:first-child+html #menuD ul a{ /* IE7 */
        height: 10px;
        width: 150px;
}

#menuD ul a:hover{
        background: #6fa6a2;
        background: -moz-linear-gradient(#6fa6a2,  #6fa6a2);
        background: -webkit-gradient(linear, left top, left bottom, from(#6fa6a2), to(#6fa6a2));
        background: -webkit-linear-gradient(#6fa6a2,  #6fa6a2);
        background: -o-linear-gradient(#6fa6a2,  #6fa6a2);
        background: -ms-linear-gradient(#6fa6a2,  #6fa6a2);
        background: linear-gradient(#6fa6a2,  #6fa6a2);

}

#menuD ul li:first-child a{
    -moz-border-radius: 5px 5px 0 0;
    -webkit-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
}

#menuD ul li:first-child a:after{
    content: '';
    position: absolute;
    left: 30px;
    top: -8px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 8px solid #041612;
}

#menuD ul li:first-child a:hover:after{
    border-bottom-color: #6fa6a2;
}

#menuD ul li:last-child a{
    -moz-border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
}

/* Rétablissement du flottement */
#menuD:after{
        visibility: hidden;
        display: block;
        font-size: 0;
        content: " ";
        clear: both;
        height: 0;
}

* html #menuD             { zoom: 1; } /* IE6 */
*:first-child+html #menuD { zoom: 1; } /* IE7 */