@charset "UTF-8";
/*** CSS Default ***/
/* COLOR */

.colorType1{
	color:#B87;
}

.colorType2{
	color:#7B8;
}

.colorType3{
	color:#87B;
}

/* TEXT */

.textBold {
	font-weight:bolder;
}

.textItalic {
	font-style:italic;
}

.textLeft {
	text-align:left;
}

.textRight {
	text-align:right;
}

.textCenter {
	text-align:center;
}

.textJustify {
	text-align:justify;
}

/* PADDING / MARGIN */

.padding5 {
	padding:5px;
}

.padding10 {
	padding:10px;
}

.padding15 {
	padding:15px;
}

.padding20 {
	padding:20px;
}

.margin5 {
	margin:5px;
}

.margin10 {
	margin:10px;
}

.margin15 {
	margin:15px;
}

.margin20 {
	margin:20px;
}

/* FLOAT / CLEAR */

.floatLeft {
	float:left;
}

.floatRight {
	float:right;
}

.clearLeft {
	clear:left;
}

.clearRight {
	clear:right;
}	

.clearBoth {
	clear:both;
}

/*** CSS editeur ***/

/* TEXT */

.textbold, .textBold { font-weight:bolder;}
.textitalic, .textItalic { font-style:italic;}

.alignleft, .textleft, .textLeft{ text-align:left;}
.alignright, .textright, .textRight{ text-align:right;}
.aligncenter, .textcenter, .textCenter { text-align:center;}
.alignjustify, .textjustify, .textJustify { text-align:justify;}

/* PADDING / MARGIN */

.padding5 { padding:5px;}
.padding10 { padding:10px;}
.padding15 { padding:15px;}
.padding20 { padding:20px;}

.margin5 { margin:5px;}
.margin10 { margin:10px;}
.margin15 { margin:15px;}
.margin20 { margin:20px;}

/* FLOAT / CLEAR /OVERFLOW */

.clear, .clearleft, .clearLeft { clear:left; }
.clear, .clearright, .clearRight { clear:right; }
.clearboth , .clearBoth { clear:both; }
.floatleft, .floatLeft { float:left; }
.floatright , .floatRight { float:right; }

.hidden, .Hidden{ display:none; }
.overflowhidden, .overflowHidden{ overflow:hidden; }
.overflowvisible, .overflowVisible{ overflow:visible; }

/* ALIGNEMENT */

table.table, .Table { display:table; }
.cell, .Cell { display:table-cell; }
.cellMiddle, .CellMiddle { display:table-cell; vertical-align:middle; }
.cellBottom, .CellBottom { display:table-cell; vertical-align:bottom; }
* html .cellMiddle { display:inline; zoom:1; vertical-align:middle; padding-top:5px; }
* html .cellMiddle .cellContent { display:inline-block; zoom:1; vertical-align:middle; }
