/* BEGIN CSS RULES */

*
{
    font-family: Segoe UI, Tahoma, Verdana, Helvetica, Sans-Serif;
    outline:thick;
}

[disabled], [readonly]
{
    background-color: #fcfcfa !important; /*#ebebe4  #f1f2fa*/
}

input[type=text]:focus,
input[type=password]:focus,
textarea:focus
{
    background-color: #e1edfc;
}

input[type='radio'][disabled], input[type='radio'][readonly],
input[type='checkbox'][disabled], input[type='checkbox'][readonly]
{
    background-color: transparent !important;
}

/* END CSS RULES */

/****************************************************/

/* BEGIN CSS GLOBAL PSEUDOS */

::selection{ /* Safari and Opera */
    background: #3399ff; /*#ebeff3;*/
    color: #fff; /*#000;*/
}

::-moz-selection{ /* Firefox */
    background: #3399ff; /*#ebeff3;*/
    color: #fff; /*#000;*/
}

/* END CSS GLOBAL PSEUDOS */

/****************************************************/

/* BEGIN CSS ELEMENT SELECTORS */

html
{
    padding:0px;
    margin:0px;
    height:100%;
}

body
{
    background-color:#fff;

    font-size:12px;

    margin:0px;
    padding:0px;
}

table, th, tr, td, div, label, span, input, select, textarea, img, hr
{
    border: 1px #c2cedb;
}

table
{
    padding: 0px;

    border-spacing: 0;
    border-collapse: collapse;
}

table, tr, td
{
    vertical-align:top;
}

table, div, span, img
{
    border-style:none;
}

img, input[type='image'], a {
    outline:none;
}
a
{
    cursor: pointer;
}

h1, h2, h3, h4
{
    margin:0;
    white-space:nowrap;
    color: navy;
}

h1
{
    font-size:18px;
    font-weight:bold;
}

h2
{
    font-size:16px;
    font-weight:bold;
}

h3
{
    font-size:14px;
    font-weight:bold;
}

h4
{
    font-size:12px;
    font-weight:bold;
}

ul
{
    font-size:1em;
    list-style-type:circle;
    list-style-position:outside
}

li
{
    text-align: left !important;
}

em
{
     color: #f00;
     padding-right: 3px;
}

strong
{
    font-weight: bold;
}

caption
{
    font-weight: bold;
    text-align: left;
}

label
{
    white-space: nowrap;
}

label input, label span
{
    vertical-align: middle;
}

cite
{
     text-align: left;
     text-indent: 10px;

     color: #00baf2;
}

select
{
    border-style: solid;

    float: none;
    overflow-x: hidden;
    overflow-y: auto;
    resize: none;
}

/* TODO: sharunakel */

table thead tr td
{
    height: 40px;

    text-indent: 5px;
    text-align: left;
    vertical-align: top;
    margin-bottom: 10px;

    font-weight: bold;
}

table thead tr th
{
    height: 25px;

    text-align: left;

    background-color: #f1f5fb;
    color: navy;
    font-weight: bold;
}

tfoot tr td
{
    background-color: #f2f2f2;
    border-top: 1px solid #c2cedb;

    line-height: 30px;
    text-indent: 5px;

    color: #1e46c8;
    font-style: oblique;
}

input[type='checkbox']
{
    font-size:11px;
}

input[type=text], input[type=password]
{
    height:16px;
    border:1px solid #abadb3;
    padding:2px 3px 3px 3px;
    font-weight:normal !important;
    vertical-align: middle;
}

input[type='radio']
{
    cursor:pointer;
    margin:0px 3px 0px 0px;
}

input[disabled]
{
    cursor:default;
}

textarea
{
    height: 70px;
    width: 250px;

    border:1px solid #abadb3;

    /*TODO: FF BUG*/
    font-size: 12px;

    float: none;
    overflow-x: hidden;
    overflow-y: auto;
    resize: none;

    padding:3px;
}