.floatLeft
{
    float: left;
}
.floatRight
{
    float: right;
}

.clear
{
    clear: both;
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}
.clearBoth
{
    clear: both;
}

.alignRight
{
    text-align: right;
}
.alignCentered
{
    text-align: center;
}

.block
{
    display: block;
}
.inline 
{
    display: inline;
}

.hdn, .hidden
{
    display: none;
}

.alignVertically, .alignVertically *
{
    vertical-align: middle;
}


.cursorMove
{
    cursor: move;
}
.cursorPointer
{
    cursor: pointer;
}