
/* font styles */

.b {
	font-weight: bold;
}
.i {
	font-style: italic;
}

/* image / div styles */

.l {
	float: left;
	clear: left;
}
.r {
	float: right;
	clear: right;
}

/* div width in percents styles */

.w100 {
	width: 100%;
}
.w50 {
	width: 50%;
}
.w33 {
	width: 33%;
}
.w25 {
	width: 25%;
}

/* div display styles */

.inline {
	display: inline;
}
.block {
	display: block;
}
