﻿/** GENERAL HOMEPAGE STYLES **/
a img
{
    border: 0px;   
}

hr
{
    margin-left: auto;
    margin-right: auto;
    background: #595959;
    height: 1px;
    width: 80%;   
}

h3
{
    font: Helvetica;
    color: #444444;
}

/* Styles for Homepage Announcement */
#homepage-announce
{
    width: 720px;
    background: #fffccc;
    margin-left: 15px;
    padding: 10px;
}
#homepage-announce p
{
    margin: 0;
}
#homepage-announce h1, #homepage-announce h2, #homepage-announce h3, #homepage-announce h4, #homepage-announce h5, #homepage-announce h6
{
    margin: 0 0 5px 0;
    color: #0000A0;
}
#homepage-announce td
{
    padding: 6px;
}

/* Style for promo video */
#promo-container
{
    text-align: center;
}
/* Styles for blurb */
.blurb
{
    width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
}

.blurb h2
{
    font: Helvetica;
    color: #222222;
}

.blurb p
{
    line-height: 20px;
    font: Georgia, Cambria, Helvetica;
    color: #272727;
    display: block;
}

/* Styles for homepage grid */
.gridContainer
{
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
    margin-bottom: 30px;
}

.gridRow
{
    width: 784px;
    height: 135px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5px;
}

/* Defines a "feature" - TestHub, Resources, Events, etc. (LH side) */
.featuresPane
{
    float: left;
    width: 225px;
    height: 100%;
    position: relative;
    overflow: hidden;
    margin-right: 1px;
}

.featuresPane .featuresShader
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(105, 105, 105, 0.15);
}

/* Hover over pane will remove shader */
.featuresPane:hover .featuresShader
{
    visibility: hidden;   
}

/* Defines an "arrow" - separates features and news */
.arrowPane
{
    float: left;
    width: 14px;
    overflow: hidden;
    height: 100%;
    position: relative;    
}

/* Defines a "news" item that corresponds to a specific feature (RH side) 
   Width and margins built for 1 feature + 3 news = 1 row*/
.newsPane
{
    float: left;
    width: 180px;
    height: 100%;
    position: relative;
    overflow: hidden;
    margin-left: 1px;
} 

/* Defines a div that "shades" out the panes when not hovered over*/
.newsPane .newsShader
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(105, 105, 105, 0.3);
}

/* Hover over pane will remove shader */
.newsPane:hover .newsShader
{
    visibility: hidden;   
}

/* Hover over feature column will remove shaders in row */
.featuresPane:hover ~ .newsPane .newsShader
{
    visibility:hidden;
}

.newsText
{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    /*height: 30%;*/
    background: rgb(105, 105, 105); /* EJS: dim grey (this is a solid color fallback for older browsers) */
    background: rgba(0, 0, 0, 0.8);
    padding: 6px;
    padding-right: 20px; /* TODO (EJS): strange issue.. overflows even with this value ... requires extra "padding-right" in .newsText a */
    z-index: 1;
    
    /* FONT STYLES */
    font-size: 14px;
    line-height: 16px;
    font-family: Georgia, Cambria, Helvetica;
    color: #FFFFFF;
    text-decoration: none;
}

.newsText a
{
    font-size: 14px;
    line-height: 16px;
    font-family: Georgia, Cambria, Helvetica;
    color: #FFFFFF;
    display: block;
    text-decoration: none;
    padding-right: 6px;
}

.newsPane:hover .newsText a
{
    color: #4ED34E; /* Dark Pastel Green */
}t