@charset "utf-8";
/* CSS Document */
body,td,th {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #000000;
}
body {
	background-color: #FFFFFF;
}
a {
	font-size: 16px;
	color: #0099FF;
}
a:link {
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #0099FF;
}
a:hover {
	text-decoration: none;
	color: #66CCFF;
}
a:active {
	text-decoration: none;
	color: #0099FF;
}
h1 {
	font-size: 18px;
	color: #333333;
    margin-bottom:5px; 
	margin-top:5px;

}
h2 {
	font-size: 14px;
	color:#666666;
	text-decoration:underline;
	margin-bottom:2px;

}
.style1 {
	font-size: 14px;
	font-weight: bold;
}
/* -------------------- What the entire dropdown backround will look like and its positioning  ---------------------- */
ul {
    margin:0;
    padding:0;
}
.dc{
    display:inline;
    position: relative;
    z-index: 0;
    margin:0;
    padding:0;
}
.dc:hover{
    background-color: transparent;
    z-index: 50;
}
.dc ul{ 
    position: absolute;
    width:120px;
    background-color:#333333;
    left: -1000px;
    list-style-type:none;
    visibility: hidden;
}
.dc:hover ul{ 
    visibility: visible;
    top: 15px;
    left:0px;
}
/* -------------------- What the list items will look like inside the dropdown  ---------------------- */
.dc ul li{
    margin:0;
    padding:0;
    background-color: #333333;
    margin:1px;
}
.dc ul li:hover {
    background-color:#999999;
    margin:1px;
}
/* -------------------- What the links look like inside the dropdown  ---------------------- */
.dc ul li a {
    display:block;
    padding:4px;
    font-size:12px;
}
.dc ul li a:link {
    color: #00CCFF;
    text-decoration: none;
}
.dc ul li a:visited {
    text-decoration: none;
    color: #00CCFF;
}
.dc ul li a:hover {
    text-decoration: none;
    color: #FFFFFF;
}
.dc ul li a:active {
    text-decoration: none;
    color: #00CCFF;
}