@charset "utf-8";
body {
    font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
    background-color: #D6DBDC;
    margin: 0;
    padding: 0;
    color: #000;
    background-image: url("/images/page_background.png");
    background-repeat: repeat-x;
}


/* ~~~~~ General Layout Styles ~~~~~ */
.container {
    width: 600px;
    margin: 0 auto;
}

.content {
    padding: 10px 0px;
}

h1 img {
    vertical-align: top;
    padding-right: 20px;
}

form {
    padding-bottom: 20px;
}


/* ~~~~~ Text Element Styles ~~~~~ */
h1, h2, h3, p {
    margin-top: 0;
}

a:link {
    color: #640060;
    text-decoration: underline;
}

a:visited {
    color: #640060;
    text-decoration: underline;
}

a:hover, a:active, a:focus { 
    text-decoration: none;
    color: #975494;
}

/* ~~~~~ Special Text Style Classes ~~~~~ */
.error {
    color: crimson;
}

.smallText {
    font-size: 0.8em;
}


/* ~~~~~ Generic Text Alignment Classes ~~~~~ */
.centerAligned {
    text-align: center;
}

.leftAligned {
    text-align: left;
}

.rightAligned {
    text-align: right;
}


/* ~~~~~ Generic Float/Clear Classes ~~~~~ */
/* Float an element right. Must precede the element it should be next to on the page. */
.fltrt {  
    float: right;
    margin-left: 8px;
}

/* Float an element left. Must precede the element it should be next to on the page. */
.fltlft { 
    float: left;
    margin-right: 8px;
}

/* Clear floats around this element */
.clearfloatonthis {
    clear:both;
}


/* ~~~~~ Table Styles ~~~~~ */
table {
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid #640060;
    border-collapse: collapse;
}

th {
    background-image: url("/images/table_background.png");
    background-repeat: repeat-x;
    background-color: #975494;
    border-bottom-color: #640060;
    border-bottom-style: solid;
    border-bottom-width: 2px;
    color: #FFFFFF;
    padding-bottom: 5px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 5px;
    text-align: left;
}

td {
    border-top: 1px solid #c198be;
    padding: 2px 15px;
}

.thinColumn {
    width: 50px;
}


/* ~~~~~ Login Panel Styles ~~~~~ */
.login {
    width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    padding: 0px;
    border: 1px solid #640060;
    background-image: url("/images/table_background.png");
    background-repeat: repeat-x;
    background-color: #975494;
}

.rightLoginCol {
    width: 220px;
    padding-bottom: 10px;
}

.leftLoginCol {
    width: 100px;
    padding-bottom: 10px;
}

.login input[type="text"], .login input[type="password"]{
    width: 97%; /* fits all major browsers */
    color: #000000;
}

.login .innerPadding {
    padding-bottom: 20px;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 30px;
    color: #FFFFFF;
}

.login input[type="submit"] {
    padding: 5px;
    margin: 0px;
}


/* ~~~~~ Contact Table Styles ~~~~~ */
table#contactInfo {
    background-color: #f6f6f7;
    border: 1px solid #aaaaaa;
    border-collapse: collapse;
    margin: 40px 0px 30px 0px;
    width: 100%;
}

#contactInfo th{
    background: none;
    border: none;
    color: #000000;
    padding: 10px 15px;
    text-align: left;
}

#contactInfo td {
    background: none;
    border: none;
    color: #000000;
    padding: 3px 15px 14px 15px;
    text-align: center;
}

#contactInfo .startCol {
    text-align: left;
    width: 40%;
}

#contactInfo .endCol {
    text-align: right;
    width: 60%;
}