﻿/* TOC

ELEMENTS
CONTENT BY HTML STRUCTURE
    - Home Page Specific
    - L2/L3 Pages
    - Main Navigation
    - navMain L3 Links
    - Content Holders
    - Footer
GENERAL CLASSES
STYLES FOR DATA TABLES / FORMS
    - Tables
    - Form Elements

*/

* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}

body {
    font-family: Arial, Verdana, "HelveticaNeueLT Std" , Sans-Serif;
    font-size: 9pt;
    color: #2a423f;
}

/* ELEMENTS */
a {
    color: #738a54;
    text-decoration: none;
}

h3 {
    font-size: 11pt;
    font-weight: bold;
    margin-bottom: 20px;
}

h4 {
    font-size: 10pt;
    font-weight: bold;
}

p {
    margin-bottom: 1em;
}

ul {
    margin-left: 20px;
    list-style: square;
}

/* CONTENT BY HTML STRUCTURE */
#wrapperMain {
    float: left;
    width: 100%;
}

/* Home Page Specific */
#wrapperMain_home {
    float: left;
    width: 100%;
}

table.homeLayoutTable {
    width: 100%;
}

table.homeLayoutTable td {
    border: none;
    padding: 0;
}

#logoHolderHome {
    width: 210px;
    height: 150px;
    margin-bottom: 100px;
}

/* L2/L3 Pages */
#wrapperCenter {
    width: 100%;
}

#insideCenter_background {
    width: 100%;
    float: left;
}

#insideCenter {
    float: left;
    width: 100%;
    padding: 0 1px;
}

#logoHolder {
    width: 184px;
    height: 153px;
}

#wrapperContent {
    float: left;
    width: 100%;
    padding: 40px 0px 10px 0px;
}

/* Main Navigation */
#navMain {
    display: none;
}

/* Content Holders */
.contentHolder {
    float: left;
    width: 95%;
    padding-top: 10px;
}

.content {
    height: auto !important;
    min-height: 250px;
    height: 250px;
    padding-left: 1px;
}

.column {
    float: left;
    width: 250px;
    padding-right: 25px;
}

.siteMapColumn h4 {
    margin-bottom: 8px;
}

/* Footer */
#footer {
    width: 100%;
    clear: both;
    margin-top: 1em;
    border-top: 1px solid #ccc;
}

#footer p {
    float: left;
    padding-top: 1em;
}

#footer ul {
    display: none;
}

/* GENERAL CLASSES */
.clear {
    clear: both;
    font-size: 0px;
}

.hiddenContent {
    display: none;
}


/* STYLES FOR DATA TABLES / FORMS */

/* Tables */
table.alternating {
    background-color: #f6f8f5;
    margin-bottom: 20px;
}

table.formHolderTable td {
    padding: 0px 7px 20px 0px;
}

tr.oddRow td {
    background-color: #eaefe8;
}

td.oddColumn {
    background-color: #eaefe8;
}

th, td {
    text-align: left;
    vertical-align: top;
    padding: 5px 7px;
    border-bottom: 1px solid #fff;
}

.negative, .required {
    color: #e93c3c;
}

.positive {
    color: #8eb45a;
}

.price {
    font-weight: bold;
    color: #738a54;
}

.tableFooter {
    font-size: 8pt;
    color: #878d8d;
}

/* Form Elements */
.checkBoxHolder {
    padding-bottom: 5px;
}

.checkBoxHolder input.checkBox1 {
    float: left;
}

.checkBox1 {
    width: 13px;
    height: 13px;
    margin-right: 4px;
}

.label {
    font-weight: bold;
}

.listBox1, .listBox2 {
    height: 18px;
    padding: 1px;
    margin-top: 5px;
    font-size: 9pt;
    color: #2a423f;
    border: 1px solid #bfc6c5;
}

.listBox1 {
    width: 205px;
}

.listBox2 {
    width: 105px;
}

.textArea1 {
    width: 458px;
    height: 100px;
    padding: 1px;
    margin-top: 5px;
    font-size: 9pt;
    color: #2a423f;
    border: 1px solid #bfc6c5;
    background-color: #f6f8f5;
}

.textBox1 {
    width: 200px;
    height: 15px;
    padding: 1px;
    margin-top: 5px;
    font-size: 9pt;
    color: #2a423f;
    border: 1px solid #bfc6c5;
}


