.clr { clear: both; }

.redborder { border: 1px solid red; }
.blueborder { border: 1px solid blue; }
.greenborder { border: 1px solid green; }
.blackborder { border: 1px solid black; }

.redcolor { color: red; }
.bluecolor { color: blue; }
.greencolor { color: green; }
.marooncolor { color: maroon; }

.font10 { font-size: 10px; }
.font11 { font-size: 11px; }
.font12 { font-size: 12px; }
.font14 { font-size: 14px; }

.alignright { text-align: right; }
.aligncenter { text-align: center; }
.alignleft { text-align: left; }

.height100 { height: 100px; }
.height50 { height: 50px; }
.height40 { height: 40px; }
.height30 { height: 30px; }
.height20 { height: 20px; }
.height10 { height: 10px; }

.colorwhite { color: white; }
.colorblue { color: blue; }
.colorblack { color: black; }

.microtext
 {
 color: silver;
 font-size: 11px;
 font-style: italic;
 }

.normaltext
 { font-weight: normal }
.boldtext
 { font-weight: bold }

.round
{
 -moz-border-radius: 100px; /* Firefox */
 -webkit-border-radius: 100px; /* Safari, Chrome */
 -khtml-border-radius: 100px; /* KHTML */
 border-radius: 100px; /* CSS3 */
 behavior: url(border-radius.htc); /*IE */
}

.inlineblock
 { display: inline-block }

.uppercase
 { text-transform:uppercase; }
