/**
 * Common styles
 */
* {
	margin: 0; padding: 0;
}

input, select, textarea, label {
	vertical-align: middle;
}

img {
	border: 0;
}


.clear {
	clear: both;
}

.clearLeft {
	clear: left;
}

.clearRight {
	clear: right;
}

.floatLeft {
	float: left;
}

.floatRight {
	float: right;
}

.hidden {
	display: none;
}

.left {
	text-align: left;
}

.right {
	text-align: right;
}

.center {
	text-align: center;
}

.nowrap {
	white-space: nowrap;
}

.top {
	vertical-align: top;
}

.bottom {
	vertical-align: bottom;
}

.middle {
	vertical-align: middle;
}

.normal {
	font-weight: normal;
}

.bold {
	font-weight: bold;
}

.underline {
 text-decoration: underline;
}

.red {
 color: #B22222;
}