/*
	********************************************************************************
	BOUTON version 1.0

	Description des options : 
	
	<button class="bouton-reset">mon bouton propre</button>
	
	<button class="bouton">mon bouton</button>
	<button class="bouton vert">mon bouton vert</button>

	<button class="bouton block">mon bouton width 100%</button>
	********************************************************************************
*/


/*
	BOUTON RESET
*/
button.bouton-reset
{
	/* reset button */
	border: 0px solid #000000;
	display: inline-block;
	vertical-align: middle;
	background-color: transparent;
	margin: 0;
	outline: medium none;
	overflow: hidden;
	padding: 0;
	/* reset button */
}


/*
	BOUTON INIT
*/
button.bouton
{
	background-color: #f4f5f6;
	color: #34495e;
	
	border: 1px solid #b5bcbd;
	border-radius: 2px 2px 2px 2px;
	cursor: pointer;
	font-family: inherit;
	font-size: 13px;
	font-weight: normal;
	height: 29px;
	line-height: 18px;
	margin-top: 5px;
	margin-bottom: 5px;
	margin-right: 10px;
	margin-left: 0px;
	min-width: 95px;
	padding: 0 8px;
	text-align: center;
	text-align-last: center;
	
	transition: all 0.3s ease-in-out;
}
button.bouton:hover
{
	background-color: #f1f1f1;
	color: #2c3e50;

	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
	text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
}
button.bouton:disabled
{
	opacity: 0.3;
	box-shadow: none;
	text-shadow: none;
	cursor: auto;
}
button.bouton.bouton-marge-0
{
	margin-top: 0px;
	margin-bottom: 0px;
	margin-right: 0px;
	margin-left: 0px;
}

/*
	BOUTON COLOR = clair -> fonce
	
	background-color: #FONCE;
	color: #ecf0f1;
	background-image: -webkit-linear-gradient(center top , #CLAIR, #FONCE);
*/

/*
	BOUTON COLOR - ROUGE
*/
button.bouton.rouge
{
	background-color: #c0392b;
	color: #ecf0f1;
	
	background-image: -webkit-linear-gradient(center top , #e74c3c, #c0392b);
	background-image: -moz-linear-gradient(center top , #e74c3c, #c0392b);
	background-image: -o-linear-gradient(center top , #e74c3c, #c0392b);
	background-image: -ms-linear-gradient(center top , #e74c3c, #c0392b);
	background-image: linear-gradient(center top , #e74c3c, #c0392b);
}
button.bouton.rouge:hover
{
	color: #ffffff;
}

	
/*
	BOUTON COLOR - BLEU
*/
button.bouton.bleu
{
	background-color: #2980b9;
	color: #ecf0f1;
	
	background-image: -webkit-linear-gradient(center top , #3498db, #2980b9);
	background-image: -moz-linear-gradient(center top , #3498db, #2980b9);
	background-image: -o-linear-gradient(center top , #3498db, #2980b9);
	background-image: -ms-linear-gradient(center top , #3498db, #2980b9);
	background-image: linear-gradient(center top , #3498db, #2980b9);
}
button.bouton.bleu:hover
{
	color: #ffffff;	
}

/*
	BOUTON COLOR - VERT
*/
button.bouton.vert
{
	background-color: #27ae60;
	color: #ecf0f1;
	
	background-image: -webkit-linear-gradient(center top , #2ecc71, #27ae60);
	background-image: -moz-linear-gradient(center top , #2ecc71, #27ae60);
	background-image: -o-linear-gradient(center top , #2ecc71, #27ae60);
	background-image: -ms-linear-gradient(center top , #2ecc71, #27ae60);
	background-image: linear-gradient(center top , #2ecc71, #27ae60);
}
button.bouton.vert:hover
{
	color: #ffffff;
}

/*
	BOUTON COLOR - ORANGE
*/
button.bouton.orange
{
	background-color: #d35400;
	color: #ecf0f1;
	
	background-image: -webkit-linear-gradient(center top , #e67e22, #d35400);
	background-image: -moz-linear-gradient(center top , #e67e22, #d35400);
	background-image: -o-linear-gradient(center top , #e67e22, #d35400);
	background-image: -ms-linear-gradient(center top , #e67e22, #d35400);
	background-image: linear-gradient(center top , #e67e22, #d35400);
}
button.bouton.orange:hover
{
	color: #ffffff;
}

/*
	BOUTON COLOR - VIOLET
*/
button.bouton.violet
{
	background-color: #8e44ad;
	color: #ecf0f1;
	
	background-image: -webkit-linear-gradient(center top , #9b59b6, #8e44ad);
	background-image: -moz-linear-gradient(center top , #9b59b6, #8e44ad);
	background-image: -o-linear-gradient(center top , #9b59b6, #8e44ad);
	background-image: -ms-linear-gradient(center top , #9b59b6, #8e44ad);
	background-image: linear-gradient(center top , #9b59b6, #8e44ad);
}
button.bouton.violet:hover
{
	color: #ffffff;
}

/*
	BOUTON COLOR - JAUNE
*/
button.bouton.jaune
{
	background-color: #f39c12;
	color: #ecf0f1;
	
	background-image: -webkit-linear-gradient(center top , #f1c40f, #f39c12);
	background-image: -moz-linear-gradient(center top , #f1c40f, #f39c12);
	background-image: -o-linear-gradient(center top , #f1c40f, #f39c12);
	background-image: -ms-linear-gradient(center top , #f1c40f, #f39c12);
	background-image: linear-gradient(center top , #f1c40f, #f39c12);
}
button.bouton.jaune:hover
{
	color: #ffffff;
}


/*
	BOUTON BLOCK
*/
button.bouton.block
{
	box-sizing: border-box;
	padding-top: 5px;
	padding-bottom: 5px;
	height: auto;
	display: block;
	width: 99%;
	margin-left: auto;
	margin-right: auto;
}



