﻿/* content.css */
/* Content styles for the EEI website. Used by both the front end and back end. */

/*****************************/
/* Heanders and Text */
/*****************************/

body {
    font-size: 16px;
    font-family: 'Open Sans', 'Myriad Pro', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.4;
    color: #1A1A1A;
}

#content,
#tinymce {
    /*line-height: 150%;*/
}

h1 {
    font-size: 146%;
    font-weight: 600;
    margin: 8px 0px;
}

h2 {
    font-size: 121%;
    font-weight: 600;
    margin: 8px 0px;
}

h3 {
    font-size: 100%;
    font-weight: 600;
    margin: 8px 0px;
}

h4 {
    font-size: 100%;
    font-weight: bold;
    margin: 8px 0px;
}

h5 {
    margin: 8px 0px;
}

h6 {
    margin: 8px 0px;
}

/*****************************/
/* Tables */
/*****************************/

table.table_4cellColored {
    width: 100%;
    margin-right: 25px;
    border-collapse: collapse;
    border: 1px solid #000000;
}

table.table_4cellColored td {
    border-collapse: collapse;
    border: 1px solid #000000;
    padding: 5px 25px 10px 25px;
    vertical-align: top;
}

table.table_4cellColored tr:nth-child(1)>td:nth-child(1) {
    background-color: #D0BCDB;
}

table.table_4cellColored tr:nth-child(1)>td:nth-child(2) {
    background-color: #FFCC00;
}

table.table_4cellColored tr:nth-child(2)>td:nth-child(1) {
    background-color: #FFFFCC;
}

table.table_4cellColored tr:nth-child(2)>td:nth-child(2) {
    background-color: #CCFFFF;
}

/*****************************/
/* Lists */
/*****************************/

#content ul {
    padding: 0px;
    margin-left: 40px;
}

ul.insideBullets {
    list-style-position: inside;
}

ul.horizontalList {
    margin: 0px 0px 15px 10px !important;
    padding: 0px;
}

ul.horizontalList li {
    margin: 0px 10px 0px 0px;
    list-style-type: none;
    display: inline-block;

    /*Hack to make inline-block work in IE7*/
    zoom: 1; 
    *display: inline;
}

/*****************************/
/* Columns */
/*****************************/

.columnsContainer {
    overflow: auto; /*Clear floats*/
}

.column_1-2 {
    float: left;
    width: 48.5%;
    margin-right: 1.5%;
}

.column_1-3 {
    float: left;
    width: 32%;
    margin-right: 1.5%;
}

.column_2-3 {
    float: left;
    width: 63%;
}

.column_1-2_left {
    float: left;
    margin-right: 1.5%;
}

.column_1-2_right {
    float: right;
    margin-left: 1.5%;
}

/*****************************/
/* Misc. */
/*****************************/

.floatLeft {
    float: left;
    margin-right: 5px;
}

.floatRight {
    float: right;
    margin-left: 5px;
}

.clear {
    clear: both;
}

.hidden {
    display: none;
}

a {
    color: #1269A1;
    text-decoration: none;
}

a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

a.linkButton {
    display: block;
    margin: 10px 0px 5px 0px;
    padding: 12px 15px;
    overflow: hidden;
    max-width: 500px;
    
    background-color: #FAA41C;
    box-shadow: 0px 3px 3px #C1C1C1;
    color: #FFFFFF;
    
    font-size: 105%;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

a.themeButton {
    display: inline-block;
    margin: 10px 0px 5px 0px;
    padding: 6px 20px;
    overflow: hidden;
    max-width: 500px;
    
    background-color: #00857C; /* Temp color that gets overridden */
    box-shadow: 0px 3px 3px #C1C1C1;
    color: #FFFFFF;
    
    font-size: 110%;
    font-weight: 600;
    text-align: center;
    vertical-align: top;
    text-decoration: none;
    cursor: pointer;
}

/* Can't reuse linkButton styles due to the way TinyMCE Formats work.*/
a.linkButtonShort {
    display: inline-block;
    margin: 10px 0px 5px 0px;
    padding: 6px 40px;
    
    background-color: #FAA41C;
    box-shadow: 0px 3px 3px #C1C1C1;
    color: #FFFFFF;
    
    font-size: 105%;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.collapseButtonTitle {
    
}

.collapseButtonBody {
    padding-left: 15px;
    display: none;
}

.collapseButtonBody.open {
    display: inherit;
}

.thinBorder {
    border: 1px solid #000000;
}

span.alert {
    color: #a94442;
}

.alertMessage {
    display: block;
    margin: 10px 0px 5px 0px;
    padding: 12px 15px;
    overflow: hidden;
    
    background-color: #ED7D31;
    border: 1px solid #B85D1F;
    border-radius: 12px 12px 12px 12px;
    color: #FFFFFF;
    
    font-size: 90%;
}

hr {
    border: 0px;
    border-top: 1px solid  #2487B5;
    margin: 8px 0;
}