/*
    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: #000000;
    margin: 0;
    padding: 0;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 11px;
    color: #000000;
    
    background-position: left top;
	background-attachment: fixed;
	background-image: url(Images/background_whole.gif);
	background-repeat: no-repeat;
}

/* Heading styles */
H1{
    font-size: 11pt;
    font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #660099;
}
H2{
    font-size: 13px;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    color: #000000;
}

.Medium{
    color: #999999;
}


/* Text styles*/
.ErrorText
{
    font-size: 7pt;
    color: #ff0000;
}
td.Small{
    font-size: 10px;
}
td.SmallGray{
    font-size: 10px;
    color: #6e6e6e;
}

/* Link styles */
a, a:visited
{
    color: #999999;
    text-decoration: none;
}
a:hover
{
    color: #6e6e6e;
    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;
}


/*
.Title_2
{
	font-weight: normal;
	font-size: 10pt;
	color: #3300cc;
	font-family: Verdana, Arial, Helvetic;
}

.Title_2White
{
	font-weight: normal;
	font-size: 10pt;
	color: #999999;
	font-family: Verdana, Arial, Helvetic;
}

.Row_10pt
{
	font-weight: normal;
	font-size: 10pt;
	color: #000000;
	font-family: Verdana, Arial, Helvetic;
}

.Row_8pt
{
	font-weight: normal;
	font-size: 8pt;
	color: #000000;
	font-family: Verdana, Arial, Helvetic;
}
.Row_8pt_Gray
{
	font-weight: normal;
	font-size: 8pt;
	color: #999999;
	font-family: Verdana, Arial, Helvetic;
}


*/