@charset "UTF-8";
/* CSS Document */
a.btn {
     text-decoration:none;
	 color:#FFFFFF;
}

a.btn:hover {
     text-decoration:none;
}

p#btn {
    font-family: Arial,sans-serif;
    font-size: 16px;
    width: 120px;
    height: 25px;
    padding-top: 3px; /*permet le centrage vertical*/
    text-align: center;
    color: #000;
    background: #444;
    background: -webkit-linear-gradient( #CCCCCC, #999999);
    background:    -moz-linear-gradient( #CCCCCC, #999999);
    background:     -ms-linear-gradient( #CCCCCC, #999999);
    background:      -o-linear-gradient( #CCCCCC, #999999);
    background:         linear-gradient( #CCCCCC, #999999);
	border-radius: 8px;
    text-shadow: 0px 1px 0px rgba( 255, 255, 255, 0.2); /* ombre du texte */
	/*box-shadow: 0 0 5px rgba( 0, 0, 0, 0.5),0 -1px 0 rgba( 255, 255, 255, 0.4);  ombre du bouton */
}

p#btn:hover{
    color: #222;
    background: #555;
    background: -webkit-linear-gradient( #999999, #666666);
    background:    -moz-linear-gradient( #999999, #666666);
    background:     -ms-linear-gradient( #999999, #666666);
    background:      -o-linear-gradient( #999999, #666666);
    background:         linear-gradient( #999999, #666666);
}

p#btnorange {
    font-family: Arial,sans-serif;
    font-size: 16px;
    width: 120px;
    height: 25px;
    padding-top: 3px; /*permet le centrage vertical*/
    text-align: center;
    color: #000;
    background: #444;
    background: -webkit-linear-gradient( #F93, #F63);
    background:    -moz-linear-gradient( #F93, #F63);
    background:     -ms-linear-gradient( #F93, #F63);
    background:      -o-linear-gradient( #F93, #F63);
    background:         linear-gradient( #F93, #F63);
	border-radius: 8px;
    text-shadow: 0px 1px 0px rgba( 255, 255, 255, 0.2); /* ombre du texte */
	/*box-shadow: 0 0 5px rgba( 0, 0, 0, 0.5),0 -1px 0 rgba( 255, 255, 255, 0.4);  ombre du bouton */
}

p#btnorange:hover{
    color: #222;
    background: #555;
    background: -webkit-linear-gradient( #F63, #930);
    background:    -moz-linear-gradient( #F63, #930);
    background:     -ms-linear-gradient( #F63, #930);
    background:      -o-linear-gradient( #F63, #930);
    background:         linear-gradient( #F63, #930);
}



