﻿body
{
    margin: 0;
    padding: 0; /* font-size: 71%, line-height: 1.5em, font-family: Verdana ... */
    font: 71%/1.5em Verdana, 'Trebuchet MS' , Arial, Sans-serif;
    background-color: white;
    /*color: #666666;*/
    color: navy;
}

body.eula
{
    margin-top: 20px;
    margin-left: 30px;
    background-color: white;
    color: navy;
    font-family: Verdana,Arial,Helvetica;
    font-size: 10pt;
    font-weight: normal;
}

div.html_page, div.privacy
{
    margin-top: 20px;
    margin-left: 30px;
    background-color: white;
    color: navy;
    font-family: Verdana,Arial,Helvetica;
    font-size: 10pt;
    font-weight: normal;
}

div.privacy
{
    width: 590px;
}

div.privacy h1
{
    text-transform: none;
    margin-left: 30px;
    color: navy;
}

div.html_page h1
{
    text-transform: none;
    margin-left: 30px;
    color: navy;
}

div.privacy ul
{
    list-style: upper-alpha;
}

div.privacy ol
{
    list-style: decimal;
}

h1, h2, h3
{
    font-weight: bold;
    font-size: 1em;
    text-transform: uppercase;
    /* color: #555555; */
    color: navy;
}

h1 { font-size: 1.5em; }

h1.pagetitle
{
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
}

h3.toptitle
{
    margin-top: 0px;
    padding-top: 1em;
}

h2 
{ 
    font-size: 1.3em; 
}
h3 
{ 
    font-size: 1.2em; 
    text-transform: none;
    margin-bottom: 0.4em;
}

/* Rule for the whole page container div */
/* This fixes the page width at 800 pixels */
/* The page is indented on the left by 20px,
   using "margin: 0 auto" to auto-center the page
   does not work on IE and on FireFox causes the page
   to shift slightly when walking the navigation */
#maincontainer
{
    width: 800px; /*Width of main container*/
    margin-left: 20px;
    border: 1px solid #A9A9A9;
}

/* Rule for the top of page container for graphic containing: color bar, logo, and slogan */
div#topsection
{
    background-image: url('images/back_0.gif');
    height: 84px;
    margin: 0;
    width: 800px;
}

#topsection p#company
{
    color:white;
    font: bolder 3.7em 'Trebuchet MS' , Arial, Sans-serif;
    letter-spacing: -2px;
    margin:0px;
    padding:0px;
    margin-left:117px;
}

#topsection p#slogan
{
    color:white;
    font: bold 1em 'Trebuchet MS', Arial, Sans-serif;
    margin:0px;
    padding:0px;
    margin-left:160px;
    margin-top:-5px;
}

.bluetheme  
{
    color: #3791D7; 
}

#contentwrapper 
{ /* container for everything between the topmenu and the footer */
    float: left;
    width: 100%;
}

/* Multiple <div class="contentwindow"> containers can be used within
   a single <div id="contentwrapper" to separate blocks of page content */
.contentwindow
{
    margin-left: 209px; /*Set left margin to LeftColumnWidth*/
    border-left: 1px solid #5F9EA0;
    /* background: #FFCCFF; */
    margin-bottom: 0px;
    margin-top: 0px;
    /* padding-bottom: 1em; */
    padding-bottom: 0px;
    padding-top: 0px;
}

#leftcolumn
{
    float: left;
    width: 209px; /*Width of left column*/
    margin-left: -800px; /*Set left margin to -(MainContainerWidth)*/
    /* margin-top: 10px; */
    margin-top: 0px;
}

/* Rules for controlling each page footer section */
/* These are used in footer.jsp */

#footer
{
    clear: left;
    width: 100%;
    font-size: 8pt;
    font-family: Verdana,Arial,Helvetica;
    line-height: 95%;
    text-align: center;
    padding: 12px 0 4px 0;
}

#footer p
{
    padding: 0;
    margin: 0;
    color: navy;
}

#footer p#copyright
{
    color: navy;
    font-style: italic;
    padding: 0;
    margin: 0;
}

.annotatedlist 
{
    margin-left: 5em;
    margin-right: 5em;
}

ul.feature-list 
{ 
    list-style-image: url('images/bullet-blue.gif');
}

ul.sub-feature-list
{
    list-style-image: url('images/bullet-grey.gif'); 
}

li.new-feature 
{ 
    color: #3791D7; 
}

span.small_red 
{ 
    font-size: 0.8em;
    color: #FF0000; 
}

.annotatedlist ul
{
    list-style-type: disc;
    margin: 0;
    padding: 0;
    margin-left: 5px;
    margin-bottom: 8px; /*bottom spacing between each UL and rest of content*/
}

.annotatedlist li em
{
    font: bold 1em 'Trebuchet MS', Arial, Sans-serif;
    display: block;
}

.topicwindow
{
    margin-left: 209px; /*Set left margin to LeftColumnWidth*/
    border-left: 1px solid #5F9EA0;
    /* background: #FFCCFF; */
    margin-bottom: 0px;
    padding-bottom: 1em;
    height: 90px;
}

.contentwindow .topicicon a:hover
{
    background-color: #F3F3F3;
    /*border: 1px solid red;*/
}

a.info
{
    position:relative; /*this is the key*/
    z-index:24; 
    background-color:#ccc;
    color:#000;
    text-decoration:none;
}

a.info:hover
{
    z-index:25; 
    background-color:#ff0;
}

a.info span
{
    display: none;
}

a.info:hover span
{ /*the span will display just on :hover state*/
    display:block;
    position:absolute;
    top:3em; 
    left:3em; 
    width:40em;
    border:1px solid #0cf;
    background-color:#cff; 
    color:#000;
    text-align: center;
}

