﻿/*		Repartir de zéro     		    */

/*		1.	Mettre à zero		        */
/*		2.	Éléments utiles			    */
/*		3.	Typo par défaut				*/
/*		4.	Formulaires					*/

												/** 1.	mettre à zéro les éléments de base **/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, 
*, .x {												
	margin: 0;
	padding: 0;
	color: #333;
	background: transparent;
	font-weight: normal;
	font-style: normal;
	text-decoration: none;
	border: 0;
	outline: 0;
	}
	:focus {
		outline: 0;
		}
ul, ol, dd {
	list-style-position: outside;
	list-style: none;
	line-height: 1.4em;
	}
ol {
	list-style-type: decimal;
	list-style-position: outside;
	}
	dt { font-weight: bold; }
	dd { padding: 0; }
table { 
	border-collapse: separate;
	border-spacing: 0;
	}
	table th { font-weight: bold; }
hr {
	display: block;
	width: 100%;
	height: 1px;
	color: #aaa;
	background: #aaa;
	border: none;
	}






												/** 2.	élément tutiles **/
.disparait	{ display: none;	}
.enLigne	{ display: inline;	}
.bloc	{ display: block;	}
.flottePas	{ float: none;		}
.flotteG	{ float: left;		}
.flotteD{ float: right;		}
.degageGD	{ clear: both;		}
.degageG	{ clear: left;		}
.degageD	{ clear: right;		}
.mini	{
	font-size: .8em;
}


.debug { border: 1px solid red; }


.finBloc {/* permet de bien fermer un bloc DIV dans Firefox entre autre */
	clear:both;
	margin:0px !important;
	padding:0px !important;
	height: 1px;
	font-size: 1px;
	line-height: 1px;
	width: 100%;
	display: block;
	}




												/** 3.	typo par défaut **/

code, pre, var, .monospace {
	margin: 0.80em 0;
	font-family: "Palatino Linotype", "Courier New", monospace;
	line-height: 1.4em;
	}
	code strong, pre strong, 
	var strong, .monospace strong {
		color: #c33;
		background: inherit;
		}
del {
	color: #888;
	background-color: inherit;
	text-decoration: line-through;
	}
abbr {
	font-size: 0.90em;
	text-transform: uppercase;
	border-bottom: 1px dashed #ddd;
	cursor: help;
	}
acronym {
	font-size: 0.90em;
	text-transform: uppercase;
	letter-spacing: 0.10em;
	}
strong			{ font-weight: 		bold;		}
em, i, cite		{ font-style: 		italic;		}
u, .u			{ text-decoration: 	underline;	}




s, strike 	{ text-decoration: line-through; }
sub 		{ vertical-align: sub; 			 }
sup 		{ vertical-align: sup; 			 }
u 			{ text-decoration: underline; 	 }

p {
	line-height: 1.4em;
	margin-top: 0.5em;
	margin-right: 0;
	margin-bottom: 1em;
	margin-left: 0;
	}


blockquote, q {
	margin: 0.80em 0;
	border-top: 1px solid #333;
	border-bottom: 1px solid #333;
	quotes: "" "";
	}
	blockquote p, q p {
		margin: 0;
		padding: 0.80em;
		color: #333;
		background: inherit;
		}






												/** 4.	Formulaires **/

fieldset 	{ border: 0; 	}
.input 		{ clear: left; 	}
label {
	display: block;
	float: left;
	padding: 3px;
	font-weight: bold;
	}
	label.xs 	{ width: 50px; 	}
	label.s 	{ width: 100px; }
	label.m 	{ width: 150px; }
	label.l 	{ width: 200px; }
	label.xl 	{ width: 250px; }

input.default, textarea.default,
select.default {
	border: 1px solid #FCCDB9;
	font-size: 11px;
	padding-top: 3px;
	padding-right: 8px;
	padding-bottom: 3px;
	padding-left: 8px;
	background-color: #fff;
	color: #666666;
	}
	input.xs 	{ width: 20px; 	}
	input.s 	{ width: 50px; 	}
	input.m 	{ width: 125px; }
	input.l 	{ width: 200px; }
	input.xl 	{ width: 300px; }
input.default:focus, textarea.default:focus,
select.default:focus {
	background-color: #FFFF99;
	}
button, .bouton {
	padding: 2px 5px;
	color: white;
	background-color: #60B410;
	font-weight: bold;
	text-align: center;
	border: 0;
	cursor: pointer;
	}
	button.xs 	{ width: 15px; 	}
	button.s 	{ width: 30px; 	}
	button.m 	{ width: 50px; 	}
	button.l 	{ width: 80px; 	}
	button.xl 	{ width: 120px; }






															/** Fin **/
