﻿.clear
{
    display:block;
    float:left;
    width:100%;
    min-height:1px;
    clear:both;
    margin-bottom:5px;
}
.clearNoMargin
{
    display:block;
    float:left;
    width:100%;
    height:1px;
    clear:both;
    margin-bottom:0px; 
}
.floatLeft
{
    display:inline-block;
    float:left;
}
.floatRight
{
    display:inline-block;
    float:right !important;
}
.marginRight-5
{
    margin-right:5px;
}
.marginleft-5
{
    margin-left:5px;
}
.marginRight-10
{
    margin-right:10px;
}
.marginleft-10
{
    margin-left:10px;
}
.clearBoth
{
    clear:both;
}
.hideElement
{
    display:none;
}

/* 
    IE Seven fix
*/
.ieSevenDiv
{
    display:inline-block;
    float:left;
    width:100%;
    min-height:1px;
}
.ieSevenClear
{
    display:block;
    float:left;
    width:100%;
    min-height:1px;
    clear:both;
    margin-bottom:0px;
}


/* Can be usfull for Wrapping around buttons so they don't stack on top of one another..
   See UCtrlMaintPage.ascx for an example.
*/
.buttonWrapperLeft
{
    display:inline-block;
    float:left;
    margin:0px 5px;
}
.buttonWrapperRight
{
    display:inline-block;
    float:right;
    margin:0px 5px;
}