﻿body 
{
	color:Black;
	font-family:Arial;
	font-size:10pt;
	background-image:url(images/backgd.jpg);
	background-repeat:repeat;
	background-color: #8E9193;
	position:static;
	margin: 0px 0px 0px 0px;
}

.blueBanner1
{
	background:url(images/bluebanner_01.jpg); width:261px; height:108px;
	background-image:url(images/bluebanner_01.jpg)
}

.blueBanner2
{
	background:url(images/bluebanner_02.jpg); background-repeat:repeat-x; height:108px;
	background-image:url(images/bluebanner_02.jpg)
}

.blueBanner3
{
	background:url(images/bluebanner_03.jpg); background-repeat:no-repeat; width:375px; height:108px;
	background-image:url(images/bluebanner_03.jpg)
}

.blueTitle 
{
	font-family:Arial;
	font-size:x-large;
	text-align:right;
	font-weight:bold;
}

.title 
{
	color:#0099ff;
	font-family:Arial;
	font-size:x-large;
	font-weight:bold;
}

.contentText
{
	color:Black;
	font-family:Arial;
	font-size:14pt;
}

A, A:visited, A:link, A:active {
    COLOR: black;
    FONT-FAMILY: Arial;
    text-decoration:none;
}

A:hover
{
    COLOR:#C00000;
    text-decoration:underline;
}

.menulinks a, .menulinks a:link, .menulinks a:visited, .menulinks a:active {  
	color: white;
	font-family:Arial;
	font-weight: bold;
	font-size:10pt;
	text-decoration:none;
}

.menulinks a:hover 
{
	font-family:Arial;
	text-decoration:underline;
}

.oddFile
{
	background-color:#BFE3FF;
}

.evenFile
{
	background-color:White;
}

/* the tabbing system */
ol#toc 
{
	list-style:disc;
	margin:0;
	padding:0;
	float:left
}

ol#toc li
{
	float:left;
	margin: 0 1px 0 0;
	padding-left:10px;
	list-style-type:none; 
}

ol#toc li:hover
{
	text-decoration:underline;
	color:Black;
	list-style-type:none; 
	cursor:pointer; /* cross-browser compatibility */
	cursor:hand;
}

ol#toc a 
{
	display:block;
	float:left;
	padding-right:10px;
	text-decoration:none;
}

ol#toc li.current
{
	background-position:0 -60px;
}

ol#toc li.current a
{
	font-weight:bold;
}

div.toccontent 
{
	clear:left;
}



/* 
  -- Even more rounded corners with CSS: Base stylesheet --
*/

.dialog {
 position:relative;
 margin:0px auto;
 min-width:8em;
 max-width:950px; /* based on image dimensions - not quite consistent with drip styles yet */
 color:#000000;
 z-index:1;
 margin-left:30px; /* default, width of left corner */
 margin-bottom:0.5em; /* spacing under dialog */
}

.dialog .content,
.dialog .t,
.dialog .b,
.dialog .b div {
 background:transparent url(images/biggerwhitebox.png) no-repeat top right;
 _background-image:url(images/biggerwhitebox.gif);
}

.dialog .content {
 position:relative;
 zoom:1; /* please leave in for IE6 compatibility */
 _overflow-y:hidden;
 padding:0px 40px 0px 0px;
}

.dialog .t {
 /* top+left vertical slice */
 position:absolute;
 left:0px;
 top:0px;
 width:35px; /* top slice width */
 margin-left:-35px;
 height:100%;
 _height:1900px; /* arbitrary long height, IE 6 */
 background-position:top left;
 z-index:-1;
}

.dialog .b {
 /* bottom */
 position:relative;
 width:100%;
}

.dialog .b,
.dialog .b div {
 height:60px; /* height of bottom cap/shade */
 font-size:1px;
}

.dialog .b {
 background-position:bottom right;
}

.dialog .b div {
 position:relative;
 width:35px; /* bottom corner width */
 margin-left:-35px;
 background-position:bottom left;
}

.dialog .hd,
.dialog .bd,
.dialog .ft {
 position:relative;
}

.dialog .wrapper {
 /* extra content protector - preventing vertical overflow (past background) */
 position:static;
 max-height:1000px;
 overflow:auto; /* note that overflow:auto causes a rather annoying redraw "lag" in Firefox 2, and may degrade performance. Might be worth trying without if you aren't worried about height/overflow issues. */
}

.dialog h1,
.dialog p {
 margin:0px; /* margins will blow out backgrounds, leaving whitespace. */
 padding:0.5em 0px 0.5em 0px;
}

.dialog h1 {
 padding-bottom:0px;
}





/* 
  -- Even more rounded corners with CSS: Base stylesheet --
*/

.smallDialog {
 position:relative;
 margin:0px auto;
 min-width:8em;
 max-width:760px; /* based on image dimensions - not quite consistent with drip styles yet */
 color:#fff;
 z-index:1;
 margin-left:0px; /* default, width of left corner */
 margin-bottom:0.5em; /* spacing under smallDialog */
}

.smallDialog .content,
.smallDialog .t,
.smallDialog .b,
.smallDialog .b div {
 background:transparent url(images/smallwhitebox2.png) no-repeat top right;
 _background-image:url(images/smallwhitebox2.gif);
}

.smallDialog .content {
 position:relative;
 zoom:1;
 _overflow-y:hidden;
 padding:0px 30px 0px 5px;
}

.smallDialog .t {
 /* top+left vertical slice */
 position:absolute;
 left:0px;
 top:0px;
 width:12px; /* top slice width */
 margin-left:-12px;
 height:100%;
 _height:1600px; /* arbitrary long height, IE 6 */
 background-position:top left;
}

.smallDialog .b {
 /* bottom */
 position:relative;
 width:100%;
}

.smallDialog .b,
.smallDialog .b div {
 height:40px; /* height of bottom cap/shade */
 font-size:1px;
}

.smallDialog .b {
 background-position:bottom right;
}

.smallDialog .b div {
 position:relative;
 width:12px; /* bottom corner width */
 margin-left:-12px;
 background-position:bottom left;
}

.smallDialog .hd,
.smallDialog .bd,
.smallDialog .ft {
 position:relative;
}

.smallDialog .wrapper {
 /* extra content protector - preventing vertical overflow (past background) */
 position:static;
 max-height:1000px;
 overflow:auto; /* note that overflow:auto causes a rather annoying redraw "lag" in Firefox 2, and may degrade performance. Might be worth trying without if you aren't worried about height/overflow issues. */
}

.smallDialog h1,
.smallDialog p {
 margin:0px; /* margins will blow out backgrounds, leaving whitespace. */
 padding:0.5em 0px 0.5em 0px;
}

.smallDialog h1 {
 padding-bottom:0px;
}

.linkbutton:hover{
    text-decoration:underline;
}
