/* apply a normal and hover state to all links */

a {
	text-decoration:none
}

a:hover {
	text-decoration:underline;
	color: #CC0000;
}

a:Link { 
	color: Blue; 
}

a:Visited { 
color: Blue; }

/* uniformly format all text that appears within the following tags */

body {
	font-family:arial;
	font-size:10pt
}

td {
	font-family:arial;
	font-size:10pt
}

/* uniformly format all form elements */

input {
	font-family:arial;
	font-size:10pt;
}

select {
	font-family:arial;
	font-size:10pt;
}

textarea {
	font-family:arial;
	font-size:10pt;
}

/* create several classes and psuedo classes that can be used throughout the
 * site in order to apply standard site colors and font sizes */

.DefaultText {
	font-family:Arial, Helvetica;
	font-size:10pt
}

.BlueText {
	color:#0E085E
}

.BrownText {
	color:#F0E6BD
}

.BrownText:Link {
	color:#F0E6BD
}

.BrownText:Hover {
	color:#F0E6BD
}

.BrownText:Active {
	color:#F0E6BD
}

/* create a layer for the background of the dHTML Tree which has to be
 * repositioned dynamically according to the tree's height in any given state */

#TreeBackground {
	position:absolute;
	visibility:hidden
}

