﻿/* Default Theme */

/* Alignment classes */
.top
{
    vertical-align: top;
}
.left
{
    text-align: left;
}
.center
{
    text-align: center;
}
.center
{
    text-align: -moz-center;
}
.right
{
    text-align: right;
}
.bottom
{
    vertical-align: bottom;
}
.middle
{
    vertical-align: middle;
}
.floatLeft
{
    float: left;
}
.floatRight
{
    float: right;
}



/* Borders */
.border
{
    border: Solid 1px Black;
}
.topBorder
{
    border-top: Solid 1px Black;
}
.leftBorder
{
    border-left: Solid 1px Black;
}
.rightBorder
{
    border-right: Solid 1px Black;
}
.bottomBorder
{
    border-bottom: Solid 1px Black;
}
.noBorder
{
    border: none 0px Black;
}
.collapse
{
    border-collapse: collapse;
}

/* Mouse Cursors*/
.pointer
{
    cursor: pointer;
}

/* Spacing */
.topPadding
{
    padding-top: 5px;
}
.leftPadding
{
    padding-left: 5px;
}
.rightPadding
{
    padding-right: 5px;
}
.bottomPadding
{
    padding-bottom: 5px;
}
.noWrap
{
    white-space: nowrap;
}

.noMarginTop
{
	margin-top: 0px;	
}

/* Text Transforms */
.bold
{
    font-weight: bold;
}
.italicize
{
    font-style: italic;
}
.capitalize
{
    text-transform: capitalize;
}
.uppercase
{
    text-transform: uppercase;
}
.underline
{
    text-decoration: underline;
}

/* Widths */
.fullWidth
{
    width: 100%;
}
.threeQuartersWidth
{
    width: 75%;
}
.halfWidth
{
    width: 50%;
}
.oneThirdWidth
{
    width: 33%;
}
.quarterWidth
{
    width: 25%;
}

.fullHeight
{
    height: 100%;
}


/* Visibility */
.hide
{
    display: none;
    visibility: hidden;
}
