﻿/* Miscellaneous classes for reuse */

.fltrt
{
    /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
    float: right;
}
.fltlft
{
    /* this class can be used to float an element left in your page */
    float: left;
}
.clearfloat
{
    /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
    clear: both;
    height: 0;
    font-size: 1px;
    line-height: 0px;
}
.textBox
{
    border: solid 1px #333333;
    font-size: 12px;
    color: #000000;
}
.buttonSilver
{
    border: 1px solid #D5D5D5;
    border-bottom: 1px solid #C2C2C2;
    border-right: 1px solid #C2C2C2;
    font-size: 11px;
    font-weight: bold;
    color: #000000;
    background-image: url(../../Images/Bk/button.gif);
    background-position: top;
    background-color: white;
    height: 21px;
    vertical-align: middle;
}
.buttonGreen
{
    border: 1px solid #86B317;
    border-bottom: 1px solid #C2D96E;
    border-right: 1px solid #C2D96E;
    font-size: 11px;
    font-weight: bold;
    color: #FFFFFF;
    background-image: url(../../Images/ContentOne/btn_Green.gif);
    background-position: top;
    background-color: white;
    height: 21px;
    vertical-align: middle;
}
.buttonRed
{
    border: 1px solid #C45E13;
    border-bottom: 1px solid #DDBA74;
    border-right: 1px solid #DDBA74;
    font-size: 11px;
    font-weight: bold;
    color: #FFFFFF;
    background-image: url(../../Images/ContentOne/btn_Red.gif);
    background-position: top;
    background-color: white;
    height: 21px;
    vertical-align: middle;
}
