/*
Table of contents
============================
Basic styling for Allianz FLex
Covers typography and generic styling for key elements
============================
        last-updated: 22 Sept 2011
        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 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;
        }
#header h2      {
        position: relative;
        height: 0px;
        margin: 0;      
        }
#reminder       {
        }
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 76% which equates to about 12.16px on most browsers. */
/* We then set the line height of the whole document to 1.5 which equates to about 18.24px on most browsers. */
/* So we end up with line spacing approximately half the height of the text. */
html    {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 100%;
        line-height: 1;
        }
body    {
        position: relative;
        color: #414141;
        width: 100%;
        padding: 0;
        font-size: 0.625em;
        line-height: 1.8;
        background-color: #fff;
        }
/*
=4. typography
============================
*/
/* EOT file for IE */
 /* TTF file for CSS3 browsers */

/*@font-face {
 font-family: "Eaton-Regular";
 src: url('../images/Eaton-Regular.eot');
 filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=../images/hIEfix.png,sizingMethod=crop);
 zoom:1;
}

@font-face {
 font-family: "Eaton-Regular";
 src: url("../images/Eaton-Regular.ttf");
}
*/
/* 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: #4B4B4B;
        font-weight: bold;
        }
h1,
h2,
.pageHeading    {
        color: #4B4B4B;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 1.8em;
        line-height: 1;
        margin-bottom: 1em;
        }
                
.pageHeading    {
        padding-bottom: 1em;
        }
                
h3      {
        font-size: 1.6em;
        line-height: 1.125;
        margin-bottom: 1.125em;
        }
                
h4      {
        font-size: 1.4em;
        line-height: 1.286;
        margin-bottom: 1.286em;
        }
                
h5      {
        font-size: 1.4em;
        line-height: 1.286;
        margin-bottom: 1.286em;
        }
                
h6      {
        font-size: 1.2em;
        line-height: 1.5;
        margin-bottom: 1.5em;
        }
                
p, li, dd, address     {
        font-size: 1.4em;
        line-height: 1.286;
        margin-bottom: 1.286em;
        }

ul, ol  {
        padding: 0 24px;
        }

dl      {
        padding: 0;
        }

dl dl   {
        padding: 0 22px;
        }

dt      {
        font-size: 1.6em;
        line-height: 1.125;
        margin-bottom: 1.125em;
        }

dd      {
        padding: 0 1.5em 0 0;
        }
                
/*ul li   {
        list-style-image: none;
        }
                
*/ol ol   {
        list-style-type: lower-roman;
        }
                
ul ul,
ul ol,
ol ol,
ol ul,
dl dl,
dl ul,
dl ol   {
        font-size: 0.72em;
        line-height: 1.8;
        margin: 1.8em 0 0 0;
        }
                
/*ul ul li,
ol ol li,
dl dl li,
dl dl dd   {
        font-size: 1em;
        line-height: inherit;
        margin: 1.5em 0 0 0;
        }
*/              
blockquote      {
        font-style: italic;
        margin: 0 0 1.8em 0;
        padding: 1.8em 12px 0 12px;
        border: 1px solid #ccc;
        border-width: 1px 0;
        color: #414141;
        background-color: #f5f6f6;
        }

code    {
        font-family: "Courier New", Courier, monospace;
        font-size: inherit;
        color: #3399cc;
        }

em      {
        color: #333;
        font-style: normal;
        }
h1 em,
h2 em,
h3 em   {
        font-style: normal;
        color: #4B4B4B;
        }
                
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.8em;
        line-height: 1;
        padding-bottom: 1em;
        text-align: left;
        }

fieldset        {
        border: 0px solid;
        }

form p  {
        float: none;
        clear: both;
        }

label   {
        }

select,
input,
textarea   {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 1em;
        line-height: 1;
        color: #4b4b4b;
        }
                
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 #ccc;
        }
                
button  {
        border: 0px solid #ccc;
        padding: 0;
        background-color: #4b4b4b;
        color: #fff;
        font-family: Arial, Helvetica, sans-serif;
        }
                
button span     {
        position: relative;
        padding: 0 5px;
        }
/*
=8. tables
============================
*/
table   {
        width: 100%;
        font-size: 1em;
        line-height: 1.8;
        margin: 0 auto 0 auto;
        border: 0px solid #ccc;
        border-collapse: collapse;
        }
                
table table,
table table table       {
        width: 100%;
        font-size: 0.72em;
        margin: 0;
        }
                
caption {
        font-size: 1.8em;
        line-height: 1;
        margin-bottom: 1em;
        text-align: left;
        }
                
th, td  {
        text-align: left;
        padding: 0;
        border-collapse: collapse;
        border: 0px solid #fff;
        vertical-align: top;
        height: auto !important;
                font-size: 1.4em;
                line-height: 1.286;
        }
                
th      {
        text-align: left;
        background-color: #f5f6f6;
        }
                
tfoot td        {
        background-color: #f5f6f6;
        }
                
tr.ruled td     {
        background-color: #bad7e0;
        }
                
.td25 tr.ruled td     {
        background-color: transparent;
        }
                
/*
=9. links
============================
*/
a:link,
a:visited       {
        font-size: inherit;
        font-weight: normal;
        color: #17549C;
        text-decoration: none;
        }
                
a:focus,
a:hover,
a:active        {
        text-decoration: none;
        color: #1882C1;
        }
                
a.sideBar:link,
a.sideBar:visited   {
        display: block;
        width: 100%;
                padding: 4px 0 5px 0;
        }
                
a.sideBar:hover,
a.sideBar:active,
a.sideBar:focus     {
        }
                
#idPrintLogoff a.sideBar:link,
#idPrintLogoff a.sideBar:visited,
#switchLink a:link,
#switchLink a:visited   {
        display: block;
        width: 100%;
                padding: 0;
                padding-left: 4px;
        }
                
#idPrintLogoff a.sideBar:hover,
#idPrintLogoff a.sideBar:active,
#idPrintLogoff a.sideBar:focus,
#switchLink a:hover,
#switchLink a:active,
#switchLink a:focus     {
        }
                
.showhidewrap a:link,
.showhidewrap a:visited {
        }
                
.showhidewrap a:hover,
.showhidewrap a:active,
.showhidewrap a:focus   {
        }
                
tfoot .showhidewrap a:link,
tfoot .showhidewrap a:visited   {
        }
                
tfoot .showhidewrap a:hover,
tfoot .showhidewrap a:active,
tfoot .showhidewrap a:focus   {
        }
                
#IF_popup_concurrency   {
   position: absolute;
   z-index: 998;
   width: 700px;
   height: 430px;
   background-color: #fafafa;
   border: 6px solid #ee3023;
   display: none;
   top: 100px;
   left: 50px;
   }
   
#IF_popup_alert {
   position: absolute;
   z-index: 999;
   width: 700px;
   height: 430px;
   background-color: #fafafa;
   border: 6px solid #ee3023;
   display: none;
   top: 100px;
   left: 50px;
   }