/*
    Document   : reset
    Created on : Feb 18, 2013, 10:39:40 PM
    Author     : Morgan
    Description: Purpose of the stylesheet follows.
*/

a, a:visited, a:active, a:focus
{
    border: 0;
    color: #000;
    outline : none;
    cursor: pointer;
    text-decoration: none;
}

a:hover, a.current
{
    color: #365C89;
    outline : none;
}

ul, p, h1, h2
{
    margin: 0;
    padding: 0;
    list-style-type: none;
}

p
{
    line-height: 20px;
}

h2
{
    color: #414042;
    padding: 10px 0;
    font-size: 20px;
    font-weight: 400;
    margin: 0 0 20px;
}

* img
{
    border: 0;
}

.clear
{
    clear: both;
}

.left
{
    float: left;
}

.right
{
    float: right;
}

.none
{
    display: none;
}

.block
{
    display: block;
}

.capitalize
{
    text-transform: capitalize;
}

.uppercase
{
    text-transform: uppercase;
}

.lowercase
{
    text-transform: lowercase;
}

.normal
{
    font-weight: normal;
}

.italic
{
    font-style: italic;
}

.bold
{
    font-weight: bold;
}

.green
{
    color: #8DC63F;
}

.red
{
    color: #c41130;
}

.underline
{
    text-decoration: underline;
}




.invalid
{
    color: red !important;
}

.error-box p
{
    margin: 0;
    padding: 0;
}

.success
{
    padding: 4px;
    color: #fff;
    font-size: 11px;
    background: #00AEEF;
}

.error
{
    color: red;
    padding: 4px;
    font-size: 11px;
    background-color: #ffeeee !important;
}

p.error
{
    margin-left: 0 !important;
}

.warn
{
    color: #00AEEF;
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 4px;
    background: #FFE6BA;
}

.required
{
    color: red;
    display: block;
    font-weight: bold;
    padding: 0 0 0 6px;
    position: absolute;
}

.no-margin
{
    margin: 0 !important;
}

.no-padding
{
    padding: 0 !important;
}

.no-padding-right
{
    padding-right: 0 !important;
}

.no-padding-left
{
    padding-left: 0 !important;
}

.no-border
{
    border: 0 none !important;
}

input[type="button"], input[type="submit"], .btn
{
    width: 85px;
    height: 25px;
    border: 0 none;
    color: #ffffff;
    cursor: pointer;
    font-size: 11px;
    text-align: center;
    background: url('../images/btn.png') no-repeat;
}

.form-err
{
    padding: 4px;
    font-size: 11px;
}

.form-err a
{
    color: #000;
}

input[type="text"], input[type="password"], textarea, select, .input
{
    width: 96%;
    height: 30px;
    padding: 0 5px;
    font-size: 11px;
    background: #f7f6f6;
    border: 1px solid #eee;
    vertical-align: middle;
    border-bottom: 1px solid #ccc;
}

.input[readonly="readonly"]
{
    background: #ccc;
}

.input:focus
{
    color: #000;
}

input[type="checkbox"], input[type="radio"], .check
{
    width: auto;
    float: left;
    display: block;
}

select, select.input
{
    width: 268px;
    padding: 6px 0;
}

select option
{
    padding: 4px 6px;
    border-bottom: 1px dotted #ddd;
}

select option:last-child
{
    border-bottom: 0;
}

textarea
{
    resize: none;
    height: 100px;
    padding: 6px;
    overflow: auto;
}

*[disabled="disabled"], *[disabled="true"], *.disabled
{
    cursor: not-allowed !important;
}

table
{
    width: 97%;
    padding: 20px;
    color: #000;
    font-size: 12px;
    background: #F7F6F6;
    border: 1px solid #ccc;
    font-family: arial,Verdana,Geneva,sans-serif;
}

table td
{
    text-align: left;
    padding: 5px 10px;
    border-bottom: 0px solid #ccc;
}