/* 
    Document   : StyleSheet
    Created on : December 25, 2005, 7:14 PM
    Moved and re-worked 20100910  b0
    Author     : b0
    Description:
        Purpose of the stylesheet follows.
*/

/* 
   TODO customize this sample style
    Syntax recommendation http://www.w3.org/TR/REC-CSS2/

    Reworked on 20070529  by b0
*/

root { 
    display: block;

    }
 @CHARSET "UTF-8";

BODY
{
   background-color: Black;
   color: #333366;
   font-family: 'Courier New',Courier,monospace;
   font-size: 12pt
}
P
{
   color: #00ff00;
   font-size: 12pt;
   font-family: 'Courier New',Courier,monospace
}
H1
{
   color: #ffffff;
   font-family: 'Courier New',Courier,monospace;
   font-size: 24pt;
   font-style: normal;
   font-weight: bold
}
H2
{
   color: #00ff00;
   font-family: 'Courier New',Courier,monospace;
   font-size: 18pt;
   font-style: normal;
   font-weight: bold
}
H3
{
   color: #cc3333;
   font-family: 'Courier New',Courier,monospace;
   font-size: 14pt;
   font-style: normal;
   font-weight: bold
}

H4
{
   color: #00ff00;
   font-family: 'Courier New',Courier,monospace;
   font-size: 12pt;
   font-style: normal
}

H5
{
   color: #ffffff;
   font-family: 'Courier New',Courier,monospace;
   font-size: 12pt;
   font-style: normal;
   font-weight: bold
}
H6
{
   color: #ffffff;
   font-family: 'Courier New',Courier,monospace;
   font-size: 10pt;
   font-style: normal;
   font-weight: bold
}
TH {
   color: Yellow;
   font-family: 'Courier New',Courier,monospace;
   font-style: normal;
   font-weight: normal
}

TABLE 
{
    color: #ffffff;
	font-family: sans-serif;
	margin: 0px;
    border-color: #333366;
	border-style: none;
	border-width: 1px;
	padding: 0px;

}
TR
{
color: #ffffff;
	font-family: sans-serif
	margin: 1px;
    border-color: #333366;
	border-style:none;
	border-width:2px;
	padding: 10px;

}
TD
{
color: #ffffff;
	font-family: sans-serif
	margin: 0px;
    border-color: #333366;
	border-style: none;
	border-width: 2px;
	padding: 10px

}




LI {
	color: #ffffff;
	font-family: sans-serif
}

A:link {color: red;}
	A:link:hover {color: #e6ff00;}   /* specificity = 2,1 */
	A:visited {color: #e6ff00;}
	A:visited:hover {color: #ffffff;} /* specificity = 2,1 */
   	A:hover:active {color: #ff3366;}    /* specificity = 2,1 */

    /* Style rules for message severity levels */

.infoMessage {
  color: white;
}

.warnMessage {
  color: orange;
  font-weight: bold;
}

.errorMessage {
  color: red;
  font-weight: bold;
}

.fatalMessage {
  color: red;
  font-style: italic;
  font-weight: bold;
}