/* this file is suppose to have all the classes and ids that are common to all the pages */
/* REMEMBER JUST THE COMMON ONES */
/*
THESE ARE REUSABLE ELEMENTS
*/

.clearLeft
{
    clear:left;
    height:0px;
    line-height:0px;
}

.clearRight
{
    clear:right;
    height:0px;
    line-height:0px;
}

.clearBoth
{
    clear:both; 
    height:0px;
    line-height:0px; 
}

.floatLeft
{
    float:left;
    display:inline; 
}

.floatRight
{
    float:right;
    display:inline; 
}

.border{
	border:1px solid black;
}



/* fudge:- the parent div expands to the nested/floating div */
.grow { display:inline; }
.grow:after {
    visibility: hidden;
    height: 0; 
    display: block; 
    clear: both; 
    content: "."; 
}
* html.grow { height: 1%; }
.grow { display: block; }