body{
	font-family:Verdana;
}

.rouge{
	color:red;
	font-weight:bold;
	font-size:20px;
}

.menu{
	background-color: rgb(255, 255, 255);
	width: 400px;
	padding:5px;
	position: absolute;
	/*position:relative;*/
}

.cacher{
	visibility: hidden;
	display: none; 
}

.afficher{
	visibility: visible;
	display: block; 
}

/* Boutons */

.bouton {

    width:auto; /* 260 px*/    
    padding:8px ;
    text-align:center;
    display: inline-block;
    float:left;
    margin:8px 8px 8px 8px;
    border-radius:7px;
    font-size: 0.85em;

    /*color:#000; */ /* noir*/
    /*color: #3D722E;*/ /* Vert*/`
    /*color:#E67E39;*/ /*Orange*/
    color:#FFF!important; /*Blanc*/
    /*font-family: Arial,sans-serif;*/
}

/* Enjolive CSS 3 */
.bouton, .bouton:active {
    background: #444;
    /*
    Noir
    background: -webkit-linear-gradient( #555, #2C2C2C);
    background: -moz-linear-gradient( #555, #2C2C2C);
    background: -ms-linear-gradient( #555, #2C2C2C);
    background: -o-linear-gradient( #555, #2C2C2C);
    background: linear-gradient( #555, #2C2C2C);
    */
    /* Vert */
    /*
    background: -webkit-linear-gradient(#91BD09, #4E9939) repeat scroll 0 0 transparent;
    background: -o-linear-gradient(#91BD09, #4E9939) repeat scroll 0 0 transparent;
    background: linear-gradient(#91BD09, #4E9939) repeat scroll 0 0 transparent;
    */
    background: linear-gradient(#F2C645, #D53D28) repeat scroll 0 0 transparent;


}
/* Ombres et reliefs */
.bouton {
	box-shadow: 0 0 1px rgba( 0, 0, 0, 0.2), 0 -1px 0 rgba( 255, 255, 255, 0.1);
	/* text-shadow: 0px 1px 0px rgba( 255, 255, 255, 0.3);*/ /*Noir*/
	text-shadow: 0 1px 0 rgba(226, 200, 200, 0.4); /* Vert*/
}

/* Comportement au survol */

.bouton:hover {
	/*
	Noir
	color:#FFF;
    background: #555;
    background: -webkit-linear-gradient( #777, #333);
    background: -moz-linear-gradient( #777, #333);
    background: -ms-linear-gradient( #777, #333);
    background: -o-linear-gradient( #777, #333);
    background: linear-gradient( #777, #333);
    */
    /* Vert*/
    color:#FFF!important;
    background: #3D722E; /*#41B75A;*/
    background: -webkit-linear-gradient(#91BD09, #4E9939) repeat scroll 0 0 transparent;
    background: -o-linear-gradient(#91BD09, #4E9939) repeat scroll 0 0 transparent;
    background: linear-gradient(#91BD09, #4E9939) repeat scroll 0 0 transparent;
}

/* Comportement active*/
.bouton:active{box-shadow: 1px 1px 10px #000 inset, 0 1px 0 rgba( 255, 255, 255, 0.4);}