@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 soluseo ***/
/* CSS COMMON */
.textBold { font-weight:bold; }
.textItalic { font-style:italic; }
.textLeft { text-align:left; }
.textRight { text-align:right; }
.textCenter { text-align:center; }
.textJustify { text-align:justify; }
.floatLeft { float:left; }
.floatRight { float:right; }
.clearLeft { clear:left; }
.clearRight { clear:right; }	
.clearBoth { clear:both; display:block; }
.imgLeft { float:left; margin:0 20px 12px 0; display:block; }
.imgRight { float:right; margin:0 0 12px 20px; display:block; }
