@charset "UTF-8";

/* Text  */
.left { text-align: left; }
.right { text-align: right; }
.center { text-align: center; }
.justify { text-align: justify; }

.f1 { font-size: .70em; }
.f2 { font-size: .80em; }
.f3 { font-size: .90em; }
.f4 { font-size: 1em; }
.f5 { font-size: 1.1em; }
.f6 { font-size: 1.2em; }
.f7 { font-size: 1.3em; }

.uc { text-transform: uppercase }
.lc { text-transform: lowercase }

.normal { font-weight: normal; }
.bold { font-weight: bolder; }

.nowrap { white-space: nowrap; }

.info { color: green; }
.error { color: red; }
.warning { color: orange; }
.message { color: black; }

/* Table pozition */
td.top, th.top { vertical-align: top; }
td.middle, th.middle { vertical-align: middle; }
td.bottom, th.bottom { vertical-align: bottom; }

/* Flouting, clearing, displaying */
.floatLeft { float: left; }
.floatRight { float: right; }
.clear { clear: both;}
.clearLeft { clear: left; }
.clearRight { clear: right; }
.none, .hide { display: none; }
.inline { display: inline; }
.block { display: block; }

/* Border */
.border { border: 1px solid black; }
.noBorder { border: 0 !important; }

/* List */
.squareList { list-style-type: square; }
.discList { list-style-type: disc; }
.circleList { list-style-type: circle; }
.numericList { list-style-type: decimal; }
.alphaList, .lowerAlphaList { list-style-type: lower-alpha; }
.upperAlphaList { list-style-type: upper-alpha; }
.noList { list-style-type: none; }

/* Images */
img.left {
	float: left;
}
img.right {
	float: right;
}
img.center {
	margin: auto;
	display: block;
}
