/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Jun 20, 2014, 11:58:18 AM
    Author     : richd
*/

/* apply a natural box layout model to all elements */
/* remember: margins are still outside */
*, *:before, *:after {
  -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}

* { margin: 0; padding: 0}
html {
    background-color: #333;    
    font-family: sans-serif;
    font-size: 13px;
}
h1 { font-size: 26px; text-transform: uppercase;}
h2 { font-size: 16px; text-transform: uppercase; padding-left: 25px;}
h3 { font-size: 14px; text-transform: uppercase; padding-left: 25px; color: #82BC00; padding-top: 25px; }
h4 { font-size: 19px; text-transform: uppercase; text-align: center; }
button { min-width: 75px;}
p { padding-left: 25px; padding-right: 75px; text-align: justify; padding-top: 25px;  } /* if you change pad-left, change .pL25 too */
input { padding: 6px; color: #333;
        border: solid 1px #e0e0e0;
        margin-bottom: 1px;
}
select { padding: 6px; color: #333; }
option { color: #333;  }
option:hover {
    background-color:yellow;
}
textarea { padding: 6px; color: #333; 
        border: solid 1px #e0e0e0;
        margin-bottom: 1px;
}
fieldset { border: solid 0px red;}
ul{list-style-position:inside;}
a {text-decoration: none; }

table {
    width: 100%;
    border: solid 1px #ccc;
    border-collapse: collapse;
}

thead {border-bottom: solid 1px #ccc; }

tr:nth-child(even) {
    background-color: #f8f8f8;
}
th { 
    vertical-align: bottom;
    padding: 4px;
}
td { 
    vertical-align: top;
    border: solid 1px #ccc;
    padding: 5px;
}
td a, td a:hover, td a:visited  {
    font-weight: bold;
    color: #82BC00;
}
::-webkit-input-placeholder { color:#ccc; }
::-moz-placeholder { color:#ccc; } /* firefox 19+ */
:-ms-input-placeholder { color:#ccc; } /* ie */
input:-moz-placeholder { color:#ccc; }

/*
Primary Containers - nav and color bands
*/
.section-nav {
  clear: both;
  background-color: #FFF;    
}
.section-nav-inside {
  background-color: #FFF;    
  width: 80%;
  margin: auto;   
  height: 54px;
  min-width: 820px;
  text-transform: uppercase;
}


.section-nav-gray {
  clear: both;
  background-color: #F1F1F1;    
  border-bottom: solid 1px #E0E0E0;
}
.section-nav-gray-inside {
  background-color: #F1F1F1;    
  color: #333;    
  width: 80%;
  margin: auto;   
  height: 54px;
  min-width: 820px;
  text-transform: uppercase;
}
.section-nav-gray-inside a, .nav-gray-0 { 
    float: left;
    padding: 18px 26px 21px 26px; 
    font-size: 12px;
    border-right: solid 2px #E0E0E0;
    text-decoration: none;
    font-weight: bold;
    color: #999;
}
.section-nav-gray-inside a:hover, .nav-gray-1 {
    background-color: #E0E0E0;
}
.vert1px {  border-left: solid 1px #E0E0E0; height: 54px; width: 2px; }

.section-black {
  clear: both;
  background-color: #000;    
}
.section-black-inside {
  background-color: #000;    
  color: #fff;
  width: 80%;
  margin: auto;   
  min-width: 820px;
  text-transform: uppercase;  
}
.section-black-inside a{
  margin: 10px 0px 10px 50px;
    color: #A5A5A5;   
    float: right;
}
.section-black-inside a:hover{
    color: #4D4D4D;  
}


.section-dark {
  clear: both;
  background-color: #333;    
}
.section-dark-inside {
  background-color: #333;    
  color: #fff;
  width: 80%;
  margin: auto;   
  min-width: 820px;
}

.section-gray {
  clear: both;
  background-color: #f1f1f1;    
  color: #333;
}
.section-gray-inside {
  background-color: #f1f1f1;    
  color: #333;
  width: 80%;
  margin: auto;   
  min-width: 820px;
}
.section-gray a, .section-gray a:hover, .section-gray a:visited{
    color: #999;
    font-weight: bold;
}


.section-light {
  clear: both;
  background-color: #fff;    
  color: #333;
}
.section-light-inside {
  background-color: #fff;    
  color: #333;
  width: 80%;
  margin: auto;   
  min-width: 820px;
}
.section-light a, .section-light a:hover, .section-light a:visited{
    color: #999;
    font-weight: bold;
}


/* TOP NAV BAR */
.top-nav, .top-nav-0 {
    float: left;
    background-color: #fff;
    padding: 18px 26px 21px 26px; 
    font-size: 12px;
    border-right: solid 2px #f1f1f1;
    text-decoration: none;
    font-weight: bold;
    color: #999;
}
.top-nav-icon {
    border-right: solid 2px #f1f1f1;
    float: left;
    padding-right: 22px;
    padding-top: 6px;
    height: 53px;       
    min-width: 196px;
}


.top-nav-doc {
    float: right;
    background-color: #fff;
    color: #82BC00;
    font-size: 12px;
    text-decoration: none;
    font-weight: bold;
}
.top-nav-icon {
    border-right: solid 2px #f1f1f1;
    float: left;
    padding-right: 22px;
    height: 53px;       
    min-width: 196px;
}
#login-link{
    padding: 3px; 
    margin-top:12px    
}
/*
--------------- Footer Bits ---------------
*/
#footer-logo  {  padding-top: 6px }
/*
--------------- Left Sidebar  ---------------
*/
#left-sidebar {
    float: left;
    width: 15%;
    min-width: 225px;
    border-right: solid 2px #e8e8e8;
    min-height: 425px;
    height: 100%;
    background-color: #fff;
}
#left-sidebar ul {
    list-style-type: none;    
}
.left-sidebar-0 {
    min-height: 78px;   
    height: 78px;
    display: block;
    vertical-align: middle;
    padding: 25px;
    color: #999;
    text-transform: uppercase;
}

.left-sidebar-1  {
    min-height: 78px;   
    height: 78px;
    background-color: #82BC00;
    display: block;
    padding: 25px;
    color: #fff;
    text-transform: uppercase;
}
/* Main content areas */
/* Portal */
#central-content{
    float: left;
    min-width: 760px;
    background-color: #f1f1f1;
    min-height: 425px;
    height: 100%;
    padding: 20px;
}
#one-column-content  a, #one-column-content  a:hover, #one-column-content  a:visited {
    color: #999999;
    font-weight: bold;
}

/* main revelar web page */
#two-column-content{
    float: left;
    min-width: 760px;
    background-color: #f1f1f1;
    min-height: 425px;
    height: 100%;
    position: relative;
}
#one-column-content-100pct{
    min-width: 900px;
    background-color: #f1f1f1;
    min-height: 425px;
    height: 100%;
    width: 100%;
    position: relative;
}
#one-column-content{
    min-width: 900px;
    background-color: #f1f1f1;
    min-height: 425px;
    width: 80%;
    margin: auto;
    position: relative;
}

.one-column-content-dark{
    min-width: 900px;
    background-color: #333;
    color: #fff;
    width: 80%;
    margin: auto;
    position: relative;
}
#image-content img {
    float: left;
    width: 100%;
}
.invisible-bottom{
  background-color:  transparent; position: absolute; bottom: 0px; height: 60px; width: 100%; opacity:0.1;   
}

#contact-us input, #contact-us select, #contact-us textarea {
    width: 90%;
    float: left;
}
/*

*/
#downloads-section{
     padding: 25px 0 25px 0;
}
.download-article{
    width: 50%; 
    /* margin: 0 5% 25px 0 ;  */
    position: relative;    
    margin-bottom: 25px;
}
.downloads-article-block{
    padding-top: 20px;
}
.downloads-article-link {
 color: #82BC00 !important;
}
.downloads-image{
     width: 100%;
}
.download-article:nth-child(odd){
 border-right: solid 1px #CCC;
    padding-right: 5%; 
}
.download-article:nth-child(even){
    padding-left: 5%; 
}
.download-article-icon{
    float: left;
    height: 54px;
    padding-right: 10px;
}
.download-article-size-blurb{
  color: #AAA;   
}
.download-article-title{
  font-size: larger;   
}


#lit {
    padding: 25px;
}
.hidden { 
    display: none;
}

.lit-header {
background-color: #f8f8f8;
clear: both;
height: 80px;
padding: 10px 25px 10px 25px;
border: solid 1px #e0e0e0;
}
.lit-head-title{
    float: left;
    width: 80%; 
    padding-left: 10px;    
} 
.lit-head-view-buttons{
    float: right;
    width: 10%;
}
.lit-item{
    background-color: #f8f8f8;
    color: #900;
}

.lit-detail{
    background-color: #f8f8f8; 
    border: solid 1px #E0E0E0; 
    padding: 20px;
}
.lit-detail a {
    font-weight: bold;
    color: #96C94B  !important;
}
.lit-detail-item{
    float: left; 
    width: 50%; 
    padding-left: 25px; 
    height: 60px; 
    border-left: solid 1px #e0e0e0;
    
}
.lit-detail-item img {
     height: 45px;
     padding-right: 10px;
}

#related-articles-section-outer{
    position: relative;
}
#related-articles-section-inner{
    padding: 0 5% 0 5%
}
#related-articles-section-button-prev{
    position: absolute; 
    top: 90px;
    left: 0;
}
#related-articles-section-button-next{
    position: absolute; 
    top: 90px;
    right: 0;
}


.related-article{
    float: left;
    padding: 15px;
    position: relative;
    width: 200px; 
    height: 200px; 
    margin: 10px 0px 10px 0; 
    background-color: #fff;
}
.related-article h4 {
    font-size: 10px;
    color: #999;
    text-align: left;
}
.related-article h3 {
    font-size: 14px;
    font-weight: bold;
    color: #82BC00;     
    text-align: left;
    padding: 10px 0 5px 0 ;
}
.related-article p {
    font-size: 9px;
    text-align: justify;
    color: #999;
    padding: 0;
    max-height: 100px;
    overflow: hidden;
        
}
.related-article-foot{
    padding-top: 10px;
    font-size: 10px;
    color: #82BC00;     
    bottom: 0;
}
.related-article-foot img{
    height: 17px;
}



.btn-arrow{
    height: 16px; 
    margin-left: 10px;
}

.fine-print {
    font-size: smaller;
}
.d { border: solid 1px red; } /* debug - put a border on its */

.clear { clear: both;}
.clear0px { clear: both; font-size: 0px; }
.clear1px { clear: both; font-size: 1px; }

.left { float: left}
.right {float: right}


.w60 { width: 60%; float: left}
.w50 { width: 50%; float: left}
.w40 { width: 40%; float: left}
.w30 { width: 30%; float: left}
.w20 { width: 20%; float: left}

.w10px { width: 10px; max-width: 10px;}

.noindent{ padding-left: 0px; padding-right: 0px;}
.p25 { padding: 25px; }
.p5 { padding: 5px}
.m5 { margin: 5px}

.dd-select { font-size: smaller;}

.mtop4px { margin-top: 4px;}
.mtop5px { margin-top: 5px;}
.mtop6px { margin-top: 6px;}
.mtop8px { margin-top: 8px;}
.mtop10px { margin-top: 10px;}

.ptop5px { padding-top: 5px;}
.ptop10px { padding-top: 10px;}
.ptop25px { padding-top: 25px;}

.pbot5px { padding-bottom: 5px;}

.pright10 { padding-right: 10px; }

.pL25{ padding-left: 25px; } /* standard indent see<p> */
.pleft10{ padding-left: 10px; } /* standard indent see<p> */


/* required field star */
.star {
    float: left;
    width: 10px;
    margin-top: 9px;
    vertical-align: middle;
}
 
 .bgwhite0 { background-color: #fff; }
 .bgwhite1 { background-color: #f1f1f1; }

 /* vertical center children inside fixed height parents */
.vctr {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  vertical-align: middle;
}
