.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; }

.in-danger
 { border: 1px solid #E65853; }
.in-success
 { border: 1px solid #54A954; }

#spinnerWnd
 {
 background: transparent;
 color: #00384d;
 left: 40%;
 top: 25%;
 width: 200px;
 height: 200px;
 position: fixed;
 margin: 0 20px 20px 0;
 -webkit-border-radius: 10px;
 -moz-border-radius: 10px;
 border-radius: 10px;
 z-index: 101;
 display: none;
 }
#overlayWnd
 {
 position: fixed;
 z-index: 100;
 top: 0px;
 left: 0px;
 height: 100%;
 width: 100%;
 background: black;
 opacity: 0.6;
 display: none;
 }

.bk-warning
 { background-color: #F89406; }
.bk-default
 { background-color: #202020; }

.microtext
 {
 color: silver;
 font-size: 11px;
 font-style: italic;
 }

.form-group .form-control-feedback
 { padding-left:  20px }
.form-group .form-control-static
 { color: blue }

.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 }
