﻿/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6
{
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
}

/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body
{
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	line-height: 18px;
	margin: 0;
	padding: 0;
	text-align: left;
	background-color: #fff;
}

/* Commonly used to style page titles. */
h1
{
	color: #003399;
	font-size: 26px;
	font-weight: bold;
	line-height: 1em;
	padding: 24px 0px 6px 0px;
}

h2
{
	color: #003399;
	font-size: 16px;
	font-weight: bold;
	padding: 12px 0px 0px 0px;
}

h3
{
	color: #003399;
	font-size: 13px;
	font-weight: bold;
	padding: 12px 0px 0px 0px;
}

p
{
	padding: 6px 12px 9px 0px;
	margin: 0;
}

/* Common styles */
#contentbody 
{
	padding: 0px 18px;
}

.DropPanel
{
	padding: 8px 10px 8px 10px;
	margin-top: 5px;
	color: #003399;
	background-color: #ebebeb;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 14px;
	cursor: pointer;
}

.DropPanel:hover
{
	background-color: #DADADA;
	cursor: pointer;
}

.DropPanelSelected
{
	padding: 8px 0 8px 0px;
	margin-top: 5px;
	color: #ebebeb;
	background-color: #003399;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 14px;
}

.DropPanelHighlight
{
	padding: 8px 10px 8px 10px;
	margin-top: 5px;
	color: #ebebeb;
	background-color: #003399;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 14px;
	cursor: pointer;
}

.DCO_Window_Modal_Popup
{
	border-top-color: #E5E5E5;
	border-right-color: Gray;
	border-bottom-color:  Gray;
	border-left-color: #E5E5E5;
	background-color: #F8F8F8;
	border-width: 3px;
	border-style: solid;
	padding: 6px 8px;
	cursor: auto;
}

#faqtable .normal
{
  font-size: 12px;
  font-weight: normal;
}

#faqtable ul li
{
  list-style-image: url('../../Images/expand.gif');
  cursor: pointer;
  line-height: 20px;
}

#faqtable ul li h2
{
  cursor: pointer;
}

#faqtable ul li div.DCO_Window_Modal_Popup ul li
{
  list-style-image: url("../../images/bullet_star_circle.jpg");
  line-height: 20px;
}

#faqtable div.DCO_Window_Modal_Popup ul li
{
  list-style-image: url("../../images/bullet_star_circle.jpg");
  line-height: 20px;
}

#faqtable div.DCO_Window_Modal_Popup ul li ul li
{
  list-style-image: url("../../images/bullet_star.jpg");
  line-height: 20px;
}
