/*
    This style (html, body, form) is used to implement 100% height in mozilla browser currently tested in Firefox only.
    Essentially an element ie. table or div will only force 100% of its parent, the other issue is that XHTML 1.0 Transitional
    adds further strict form. Anyway it looks like the "form" element will allow the 100% height to be used in VS 2005 projects.
*/
html, body, form{
    height: 100%;   
    margin: 0;   
    padding: 0;   
    width: 100%; 
}

body{
	background-color: #9c9a9c; 
    margin: 0;
    padding: 0;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 8pt;
	color: #ffffff;
}

input, INPUT{
	color: #000000;
	background-color: #dcdcdc;
    font-size: 8pt;
}

/* Heading styles */
H1, .Title1{
	font-weight: bold;
	font-size: 11pt;
	color: #ffffff;
}
H2 {
	font-weight: bold;
	font-size: 8pt;
	color: #ffffff;
}

.Medium{
    color: #999999;
}


/* Text styles*/
.ErrorText
{
    color: #ff0000;
}
td.Small{
    font-size: 10px;
}
td.SmallGray{
    font-size: 10px;
    color: #6e6e6e;
}

/* Link styles */
a, a:visited
{
    color: #ffffff;
    text-decoration: none;
}
a:hover
{
    color: #0000ff;
    text-decoration: underline;
}

a.small, a.small:visited
{
    color: #660000;
    text-decoration: none;
    font-size:10px
}
a.small:hover
{
    color: #669966;
    text-decoration: underline;
    font-size:10px
}
a.SmallGray, a.SmallGray:visited, a.SmallGray:hover
{
    color: #6e6e6e;
    text-decoration: none;
    font-size:10px;
    font-weight: bold;
}

/* List items */
.Bullet
{
    margin-top:4px;
    border: solid 0px #ffffff;
}