/* W3C */
.right { text-align: right; }
.left {	text-align: left; }
.center { text-align: center; }
.justify { text-align: justify; }
.nowrap { white-space: nowrap; }
.vtop { vertical-align: top; }
.vmiddle { vertical-align: middle; }
.spacer { clear: both; font-size: 0; }
.noborder { border: none; }
.inline { display: inline; }
.block { display: block; }
.invisible { display: none; }
.large { width: 100%; }
.underline { text-decoration:underline; }
.bold { font-weight:bold; }

/* 2 colonnes */
.content-2cols {
	clear: both;
}
.content-xleft {
	float: left;
}
.content-xright {
	float: right;
}
/* 2 colonnes egales */
.content-left {
	float: left;	
	width: 49%;
} 
.content-right {	
	float: right;	
	width: 49%;
}
