/* Logo colors: grey=#5F6062 blue=#556292*/

/* ############################################ */
/*                     HTML                     */
/* ############################################ */
body
{
	color:#333;
	font-family:Trebuchet MS, Tahoma;
	font-size:13px;
  margin: 0px; 
	padding: 0px;
	text-align: center;
}

td, th, input
{
  margin: 0px;
  text-align: center;
	color:#333;
	font-family:Trebuchet MS, Tahoma;
	font-size:13px;
}

th
{
  border-bottom: solid 1px #333;
  vertical-align: bottom;
}

td
{
  white-space: nowrap;
}

.table-header
{
  border-bottom: solid 1px #333;
}

tr.even-row
{
  background-color: #EEE;
}

h1
{
  margin: 0px 0px 0px 0px;
  font-size: 20px;
  display: block;
  color: #333;
}

h1 span
{
  margin-right: 20px;
}

h2
{
  margin: 0px 0px 0px 0px;
  font-size: 13px;
  font-weight: bold;
  display: inline;
}

h3
{
  margin: 0px 0px 0px 0px;
  font-size: 11px;
  font-weight: bold;
  color: #5F6062;
  display: inline;
}

p
{
  text-align: justify;
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 10px 0px;
}

a 
{
	color:#556292;
	text-decoration: none;
}

a:hover 
{
  color: #556292;
  text-decoration: underline;
}

img
{
  border-style: none;
}

ul
{
  list-style-type:circle;
  margin-top: 0px;
}

ol
{
  margin-top: 0px;
}

a img
{
  vertical-align: middle;
  margin-right: 5px;
  margin-bottom: 3px;
}

hr
{
  margin: 0px 15px 5px 15px;  
}

/* ############################################ */
/*                     TEMPLATE                 */
/* ############################################ */

#container 
{ 
  background-color: #FFF;
  width: 700;
	margin-left: auto;
	margin-right: auto;
	padding-top: 0px;
	text-align: left;
	position: relative;
} 

#header
{
  background-color: #FFF;
  height: 150px;
  background-image: url(/images/header.jpg);
  background-position: top right;
  background-repeat: no-repeat;
  border-bottom: solid 2px #999;
}

#headerlogo
{
  margin: 15px 0px 0px 10px;
  float: left;
}

/* header */

#nav 
{
  background-color: #FFF;
  padding: 4px 0px 4px 0px;
}

#nav span
{
  width: 750px;
}

#nav a
{
  text-align: center;
  padding: 0px 20px 0px 20px;
  width: 120px;
	border: 1px solid #AAA;
  color: #666;
  margin-right: 15px;
}

#nav a:hover
{
  border: solid 1px #666;
  background-color: #A2A2A2;
  color:White;
  text-decoration: none;
}

#subnav a
{
  margin: 0px 15px 0px 15px;
  height: 20px;
}


#search
{
  position: absolute;
  z-index: 10;
  width: 100%;
  text-align: right;
}

#search input
{
  color: #556292;
  height: 17px;
  line-height: 17px;
  vertical-align: top;
  margin: 1px 3px 0px 0px;
}

#footer
{
  background-color: #FFF;
  clear: both;
	text-align: right;
	color: #999;
	border-top: dashed 1px #CCC;
	font-size: 10px;
	height: 12px;
	line-height: 14px;
	
}

.hr
{
  clear: left;
  border-bottom: solid 1px #CCC;
  margin-bottom: 10px;
}

/* ############################################ */
/*                     PAGES                    */
/* ############################################ */


#body
{    
}

#body-prop 
{
  height:450px;
  float:right;
  width:1px;
}

#trail
{
  text-align: left;
  padding-top: 3px;
  font-size: 10px;
  line-height: 11px;
  margin-bottom: 20px;
}

#column1
{
  padding-top: 5px;
}

#column2
{
  padding-top: 5px;
  margin: 0px 8px 0px 8px;
  float: right;
}

.min400px 
{
  height: 400px;
}

/* ############################################ */
/*                     FAQs                     */
/* ############################################ */

#faqs
{
  margin-top: 0px;
}

.answer
{
  display:none;
}

#selected-faq
{
  float: right;
  width: 350px;
  height: 400px;
  margin: 0px 0px 0px 10px;
}

#selected-question
{
  font-weight: bolder;
  font-size: 13px;
  background: url( /images/horizontal-line.gif ) no-repeat bottom;
}


/* ############################################ */
/*                     FAQs                     */
/* ############################################ */

a.tooltip
{
    position:relative; /*this is the key*/
    z-index:24; 
    color:Green;
    text-decoration:none
}

a.tooltip:hover
{
  z-index:25; background-color:#FFF;cursor: help;
}

a.tooltip span
{
  display: none
  }

a.tooltip:hover span
{ 
    display:block;
    position:absolute;
    top:2em; 
    left:2em; 
    width:15em;
    border:1px solid #000000;
    background-color:lightyellow; 
    color:black;
    padding: 2px;
    text-align: left;
    text-decoration: none;
 }  