/* CSS Document */

/*************************************************/
/* HTML tag styles                              */
/***********************************************/
body{
	background-color:#DFDFDF;
	color: #000000; /* #333333 */
	font-family: Arial,sans-serif;
	font-size:11pt;
	margin: 0px;
	padding: 0px;
}

/************** header tag styles **************/

h1{
 font: 20pt Arial,sans-serif;
 font-weight:bold;
 color: #0066CC;
 margin: 0px;
 padding: 0px;
}

h2{
 font: 18pt  Arial,sans-serif;
 font-weight:bold;
 color: #003399;
 margin: 0px;
 padding: 0px;
}

h3{
 font: 14pt  Arial,sans-serif;
 font-weight:bold;
 color: #334d55;
 margin: 0px;
 padding: 0px;
}

h4 , h5 , h6{
 font: 12pt Arial,sans-serif;
 font-weight:bold;
 color: #334d55;
 margin: 0px;
 padding: 0px;
}

/*************** list tag styles ***************/

ul{
 list-style-type: disc;
}

ul ul{
 list-style-type: circle;
}

ul ul ul{
 list-style-type: square;
}


/******* hyperlink and anchor tag styles *******/

a:link, a:visited{
	color: #005FA9;   /* #003399 -  #0066CC */
	font-weight:bold;  
	text-decoration: none;
}

a:hover{
	background:#0066CC;
	color:#FFFFFF;
    text-decoration:underline;
}

