/*
    Generic style sheet modelled on MyLoanBiz constructs.
    Much Thanks to Anthony Ina of Smarticle.com for ideas and guidance!
*/
@import url("pagefloats.css");
@import url("menu.css");

/* Base redefinitions */
body {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 12px;
    font-weight: normal;
    color: #000000;
    background-color: #23005C;
    text-align: center;
    min-width: 714px;
    margin-top: 0px;
    margin-bottom: 0px;
}

img {
    border: 0px;
    padding: 0px;
}

h4 {
    font-size: 14px;
    color: #900A0A;
}

h3 {
    font-size: 18px;
    color: #900A0A;
    display: inline;
}


h5 {
    font-size: 12px;
    margin: 2px;
    /*font-weight: normal;*/
    /*display: inline;*/
}

/* Hyperlink setup. */
a {
    color: #900A0A;
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    color: #900A0A;
    text-decoration: underline;
}

.errorFont {
    color: #FF0600;
    font-size: 10px;
}

/* Used to pad text in divs that have 'ems */
.text-in {
    margin-left: 10px;
}

.text-in a {
    color: #900A0A;
    text-decoration: none;
    cursor: pointer;
}

.text-in a:hover {
    color: #900A0A;
    text-decoration: underline;
}

.small {
    font-size: 10px;
}

/* Pipeline page table */
table.accountView {
    width: 98%;
    border-left: 1px solid black;
    border-right: 1px solid black;
}

th {
    border-bottom: 1px solid black;
    border-top: 1px solid black;
    padding: 2px;
    background-color: #CCCCCC;
}

td.accountView {
    border-bottom: 1px solid black;
    padding: 2px;
}

tr.evenrow {
    cursor: pointer;
    background-color: #FFFFFF;
    border: 1px solid;
}

tr.evenrow:hover {
    text-decoration: underline;
    background-color: #FFFFCC;
}

tr.oddrow {
    cursor: pointer;
    background-color: #CCCCFF;
}

tr.oddrow:hover {
    text-decoration: underline;
    background-color: #FFFFCC;
}


/* Trial Form Tables */
table.trialForm {
    width: 100%;
}

/* used for the setup message */
td.trialFormLabel {
    width: 34%;
    height: 30px;
    text-align: right;
}

td.trialFormItem {
    width: 66%;
    text-align: left;
    padding-left: 10px;
}

/* These are for the trialform alerts... */
.alertTextArea {
    color: #990000;
}

.asteriskRed {
    color: red;
    font-size: 20px;
    font-weight: bold;
    /*padding-right: 5px;*/
}

.createButton {
    border: 1px solid black;
    padding: 2px;
    background-color: #CCCCCC;
}




