/*
Table of contents

============================
Basic styling
Covers typography and generic styling for key elements
============================

last-updated: 2 March 2012
updated by Matt Addison

=1.universal reset
=2.accessibility features
=3.html and body
=4.typography
=5.layout
=6.main navigation
=7.form
=8.tables
=9.links

============================
*/

/*
=1.universal reset
============================

*/
/* First we establish a baseline for the whole document with a standard font size */
/* and consistent margin and padding values. This gets around any default browser */
/* behaviour which might affect page rendering */
*       {
font-size: 100%;
margin: 0;
padding: 0;
}

/*
=2. accessibility features
============================
*/
/* Here we hide elements by moving them off screen and setting their width to 0 */
/* This ensures they continue to exist. */
/* If we used display: none; the elements would not appear so they couldn't be brought */
/* into use as required - for example to aid accessibility. */
hr,
td h5,
#skipnav,
#header h1 span,
#header h2 em,
#reminder a span,
.hide,
.cell1 h2,
center img,
.nitax em,
.submit-wrap h3 {
width: 0px;
height: 0px;
position: absolute;
left: -9999px;
overflow: hidden;
}

img.hide,
#DataLayer img,
#VIEWPD1 br,
#EPA_NO_NOM1 br,
#EPA_BENSTAT_INT br {
display: none;
}

acronym,
abbr    {
cursor: help;
}

/*
=3. html and body
============================
*/

/* Here we start to establish some typographic consistency. */
/* We set the font-size of the whole document to 62.5% which equates to about 10px on most browsers. */
/* We then set the line height of the whole document to 1.8 which equates to about 18px on most browsers. */
/* So we end up with line spacing approximately half the height of the text. */

html    {
        font-family: Verdana, Arial, Helvetica, sans-serif;
        font-size: 100%;
        line-height: 1;
        back ground-color: #EEF5FB;
        }

body    {
        position: relative;
        color: #333;
        padding: 0;
        font-size: 0.625em;
        line-height: 1.8;
        background-color: #fff;
        padding-top: 63px;
}

/*
=4. typography
============================
*/


/* Here we define heading sizes. Note the variation in line-height for each size.*/
/* This is to ensure the text and headings together remain consistently spaced on a grid.*/
/* With this approach, if the font-size increases, the line-height reduces. It is */
/* calculated on the basis of base line-height in pixels (19px) divided by the desired font-size */
/* in pixels. The result is used as the line-height value. It is also used as a bottom margin */
/* to provide a regular vertical rhythmn down the page */

h1, h2, h3, h4, h5, h6, caption, .pageHeading, legend, dt       {
        font-family: Arial, Helvetica, sans-serif;
        color: #003399;
        font-weight: normal;
        }

h1,
h2,
.pageHeading    {
        font-size: 2.4em;
        line-height: 1;
        margin-bottom: 0.75em;
        }

.pageHeading    {
        margin-bottom: 0;
        padding-bottom: 0.8em;
        }

h3      {
        font-size: 1.4em;
        line-height: 1.286;
        margin-bottom: 1.286em;
        }

h4      {
        font-size: 1.4em;
        line-height: 1.286;
        margin-bottom: 1.286em;
        }

h5      {
        font-size: 1.2em;
        line-height: 1.5;
        margin-bottom: 1.5em;
        }

h6      {
        font-size: 1em;
        line-height: 1.8;
        margin-bottom: 1.8em;
        }

p, li, dd, caption, address     {
        font-size: 1.2em;
        line-height: 1.5;
        margin-bottom: 1.5em;
        }

ul, ol, dl      {
        font-size: 1em;
        line-height: 1.8;
        margin-bottom: 1.8em;
        }

ul, ol  {
        padding: 0 24px;
        }
        
dl      {
        padding: 0;
        }
        
dl dl   {
        padding: 0 22px;
        }
        
dt      {
        font-size: 1.4em;
        line-height: 1.286;
        margin-bottom: 1.286em;
        }
        
li, dd  {
        padding: 0;
        margin: 0 0 1.5em 0;
        }

dd ul li        {
        font-size: 1em;
        }

dd      {
        padding: 0 1.5em 0 0;
        }
        
ul li   {
        list-style-image: none;
        }

ol ol   {
        list-style-type: lower-roman;
        }
        
li ul,
li ol,
li dl,
dd ul,
dd ol,
dd dl,
td ul,
td ol,
td dl   {
        font-size: 0.834em;
        margin: 1.8em 0 0 0;
}

td ul,
td ol,
td dl   {
margin: 0;
}

blockquote      {
        font-style: italic;
        line-height: 1.8;
        margin: 0 0 1.8em 0;
        padding: 1.8em 1.385em 0 1.385em;
        border: 1px solid #cfcec9;
        border-width: 1px 0;
        background-color: #f4f2ec;
        }

code    {
        font-family: "Courier New", Courier, monospace;
        font-size: inherit;
        color: #3399cc;
        }

em      {
        color: #333333;
        }
        
h1 em,
h2 em,
h3 em   {
        font-style: normal;
        font-weight: normal;
        }

strong  {
        font-weight: bold;
        font-size: inherit;
        }
        
.superstrong {
        font-weight: bold;
        font-style: italic;
}
        

.warning {
 color: #ff0000;
}

/*
=5. layout
============================
*/

/*
=6. main navigation
============================
*/

/*
=7. form
============================
*/

legend  {
        font-size: 1.4em;
        line-height: 1.286;
        padding-bottom: 1.286em;
        font-weight: bold;
        text-align: left;
        }
        
fieldset        {
        border: 0px solid;
        }
        
form p  {
        float: none;
        clear: both;
        }

label   {
        }

select,
input,
textarea   {
        font-family: Verdana, Arial, Helvetica, sans-serif;
        color: #757572;
        }
                
button, input, select, textarea { font-size: 100%; margin: 0; vertical-align: baseline; *vertical-align: middle; }
button, input { line-height: normal; }
button, input[type="button"], input[type="reset"], input[type="submit"] { cursor: pointer; -webkit-appearance: button; *overflow: visible; }
button[disabled], input[disabled] { cursor: default; }
input[type="checkbox"], input[type="radio"] { box-sizing: border-box; padding: 0; *width: 13px; *height: 13px; }
input[type="search"] { -webkit-appearance: textfield; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; }
input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button { -webkit-appearance: none; }
button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }
textarea { overflow: auto; vertical-align: top; resize: vertical; }
input:valid, textarea:valid {  }
input:invalid, textarea:invalid { background-color: #f4f2ec; }

p.labelWrap     {
        float: left;
        width: 100%;
        clear: both;
        text-align: left;
        }

p.labelWrap label       {
        float: left;
        width: 33%;
        padding-right: 2%;
        }

p.labelWrap input,
p.labelWrap textarea    {
        float: left;
        width: 60%;
        }

input, textarea {
        border: 1px solid #cfcec9;
        }
        
button  {
        border: 0px solid #ebebeb;
        border-width: 0;
        padding: 0;
        height: 22px;
        background-color: #FF9600;
        color: #fff;
        font-family: Arial, Helvetica, sans-serif;
        }

button span     {
        position: relative;
        padding: 5px 25px 5px 5px;
        background: transparent url('../images/button-background.gif') top right no-repeat;
        }

/*
=8. tables
============================
*/

table   {
        width: 100%;
        font-size: 1em;
        line-height: 1.8;
        margin: 0 auto 0 auto;
        border: 0px solid #fff;
        border-collapse: collapse;
        }
        
table table,
table table table       {
        font-size: 1em;
        }
        
caption {
        font-size: 1.4em;
        line-height: 1.286;
        margin: 0;
        margin-bottom: 1.286em;
        text-align: left;
        }

th, td  {
        font-size: 1.2em;
        line-height: 1.5;
        text-align: left;
        padding: 0;
        border-collapse: collapse;
        border: 0px solid #fff;
        vertical-align: top;
        height: auto !important;
        }
        
th      {
        text-align: left;
        background-color: #EEF5FB;
        }
        
th p,
td p {
font-size: 1em;
        line-height: 1.8;
        margin-bottom: 1.8em;
}

th h3,
td h3,
#INVD01 td h2 {
font-size: 1.077em;
        line-height: 1.286;
        margin-bottom: 1.286em;
}

th h4,
td h4 {
font-size: 1em;
        line-height: 1.8;
        margin-bottom: 1.8em;
}

tfoot td        {
        background-color: #99a494;
        }

tr.ruled td     {
        background-color: #f4f2ec;
        }
        
/*
=9. links
============================
*/

a:link,
a:visited       {
        color: #003399;
        text-decoration: underline;
        }

a:focus,
a:hover,
a:active        {
        text-decoration: none;
        }

a.sideBar:link,
a.sideBar:visited,
#switchLink a:link,
#switchLink a:visited   {
        text-decoration: none;
        display: block;
        width: 100%;
        }

a.sideBar:hover,
a.sideBar:active,
a.sideBar:focus,
#switchLink a:hover,
#switchLink a:active,
#switchLink a:focus     {
        text-decoration: underline;
        }
        
#DataLayer a.sideBar:link,
#DataLayer a.sideBar:visited    {
        padding: 5px 0 4px 0;
        font-size: 11px;
        border-bottom: 1px solid #dfdfdf;
        }

.panelinner3 a  {
display: block;
}

#IF_popup_concurrency   {
   position: absolute;
   z-index: 998;
   width: 700px;
   height: 430px;
   background-color: #fafafa;
   border: 6px solid #003399;
   display: none;
   top: 100px;
   left: 50px;
   }

#IF_popup_alert {
   position: absolute;
   z-index: 999;
   width: 700px;
   height: 430px;
   background-color: #fafafa;
   border: 6px solid #003399;
   display: none;
   top: 100px;
   left: 50px;
   }

address {
font-style: normal;
}

address span{
display: block;
}

address em,
address em span {
display: inline;
}

li address {
font-size: 1em;
}

.right_aligned {
text-align: right;
}

.right_aligned em {
font-style: italic;
}

