.l{ float: left;}
.r{ float: right;}

/* USED FOR BRINGING PARENT ELEMENT OF FLOATING ELEMENTS TO THE CORRECT HEIGHT (DEPRECATED ORIGINAL .clr */

div.clr {display: inline-block;}
div.clr:after
{
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
* html .clr { display: inline-block;}


 /* DEFAULT COLOR USED ON AN ELEMENT TO CONVEY WARNING OR ERROR. */
.err { color: #A73952;}


/* FIX FOR IE7 RENDERING ISSUE WITH <SELECT> ELEMENTS */
select.input { height: auto;} 


/* USE FOR IMAGES THAT ARE BUTTONS TO ALIGN CORRECTLY WITH REST OF INLINE ELEMENTS */
img.btn {vertical-align: bottom; }
input.btn {vertical-align: text-bottom; }


/* USE cssclass="chk" FOR ANY CHECKBOX CONTROLS SO THAT THE LABEL WON'T BE display: block BY DEFAULT */
table.chk tr td label, span.chk label { display: inline;}
span.chk input { margin-right: 6px;}


/* BASIC SEPARATOR ELEMENT */
div.dots-sep 
{
	background: url(/images/common/dotsHz.gif) repeat-x bottom left;
	
}


/* DEFAULT BORDER COLORING */
.border { border: 1px solid #999; padding: 1px;}


/* DEFAULT INLINE IMAGE PROPERTIES */
.float-left { float: left; margin: 0 10px 10px 0;}
.float-right { float: right; margin: 0 0 10px 10px;}


/* DEFAULT FORM LAYOUT CONTROLS */
.form-area table tr td { text-align: left; padding-bottom: 8px; vertical-align: middle;}
.form-area table td.label { text-align: right;padding-right: 8px;}


/* BASIC FUNCTIONALITY FOR SCROLLING DIVS */
.scroller
{
	overflow: scroll;
	overflow-x: hidden;
}

/* DEFAULT AJAX STYLING FOR LOADER ELEMENT */
.ajax-loader 
{
	text-align: center;
	vertical-align: top;
}
.ajax-loader img { margin-top: auto;}


img.border-left, img.borderless-left, img.border-right, img.borderless-right
{
	border: 1px solid #4d4325;
    padding: 2px;
    background-color: #fff;
}
img.border-left, img.borderless-left
{
    margin-right: 18px;
    float: left;
    clear: left;
    margin-bottom: 20px;
}
img.borderless-left, img.borderless-right
{
    border: 0px none;
    padding: 0px;
}

img.border-right, img.borderless-right
{
    margin-left: 18px;
    float: right;
    clear: right;
    margin-bottom: 20px;
}