/*************************************************************************************
 * 
 * Reset CSS d'Eric Meyer
 *
 * @author	Eric Meyer
 * @see		http://meyerweb.com/eric/tools/css/reset/
 *
 *************************************************************************************/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
    background: transparent;
    border:0;
	/********************************************
	By setting your base font size at 62.5%, you end up with a font size of 10 pixels. 
	This makes 1 em equal to 10 pixels. 1.2 em is then equal to 12 pixels. 
    font-size:62.5%;
	**********************************************/
	font-size:100.01%;
	margin:0;
	outline:0;
	padding:0;
	vertical-align:baseline;
}

ol, ul { list-style:none }

q:before, q:after { content:'' }

/* remember to define focus styles! */
:focus { outline:0 }

/* remember to highlight inserts somehow! */
ins{ text-decoration:none }

del { text-decoration:line-through }

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse:collapse;
  border-spacing:0;
}

textarea { overflow:auto }

/*************************************************************************************
 *
 * Quelques Règles par défaut
 *
 * A propos de la bordure pointillée autour des liens qui ont le focus
 * @see http://www.w3.org/TR/REC-CSS2/ui.html#dynamic-outlines
 *
 *************************************************************************************/

/*************************************************************************************
 *
 * Corriger l'espace supplémentaire sous les images
 * @see http://forum.alsacreations.com/faq/faq-58-Espaces-indesirables-sous-les-images.html
 *
 *************************************************************************************/
img { vertical-align:middle }

a img { border:none }

hr {
	border:none;
	height:1px;
}

.floatLeft { float:left }

.floatRight { float:right }

.clearLeft { clear:left }

.clearRight { clear:right }

.clearBoth { clear:both }

/*Une astuce pour nettoyer les flottants quand le overflow hidden n'est pas envisageable*/
.clearfix:after { 
	clear:both;
	content:'.'; 
	display:block; 
	height:0; 
	visibility:hidden;
}

.valignMiddle { vertical-align:middle }

.valignTop { vertical-align:top }

.valignBottom { vertical-align:bottom }

.invisible { visibility:hidden }