/*******************************
 *
 *		   first.css
 *			Authors: 
 * 	  Tom Knowles/Paul Lewis
 *		 The Roundhouse
 *
 *	This CSS resets all the padding
 *	and margin of the different tags.
 *	This should mean that the browsers 
 *	don't render the same tags
 *	differently
 *
 *  Balantly taken from: www.chromazone-imaging.co.uk
 */
 
html, body, p, blockquote, q,
h1, h2, h3, h4, h5, h6, fieldset,
form, label, a, div, img, dd, dt, dl, input, ul {
	margin: 0;
	padding: 0;
	border: 0;
}
/* A ETE ENLEVE INTENTIONNELLEMENT DE LA LISTE DU HAUT "ol, li," */

html, body {
	height: 100%;
}

/* Some other useful classes
 * we can apply to any tag
 */
.flashOnly{
	display: none;
}
 
.highlight{
	background-color: #FFFF00;
} 
 
.clear{
/*	font-size: 0; */
	clear: both;
	height: 0px;
	line-height: 0%;
}

.hidden, .separator{
	display: none;
}

.right{
	text-align: right;
	position: relative;
}

.left{
	text-align: left;
	position: relative;
}

.floatright{
	float: right;
}

.floatleft{
	float: left;	
}

.center{
	text-align: center;
	position: relative;
}

.noborder{
	border: 0;
}

.indent, ul, ol{
	padding-left: 15px;
}

li {
	list-style-type:square;
}

.spacer{
	margin-top:15px;
}