/*Sets line-height of all menuitems*/
#Menu div {
	line-height: 1.3;
}

/*Second level menuitem divs and lower. Cascades to lower levels*/
/*Sets left margin to establish a fluid cascading indent*/
#Menu div div {
	margin: 					0 0 0 1em;
}

/*The link and visited styles combined for top-level menuitems*/
#Menu div a, #Menu div a:visited {
	color: 						#0066FF;
	font-size: 				12px;
	font-weight: 			bold;
	text-decoration: 	none;
	padding: 					0 0 0 20px;
}

#Menu div a:hover, #Menu div a:active {
	color: 						#0099FF;
	text-decoration:	underline;
}

/*The link and visited styles combined for second-level menuitems*/
#Menu div div a, #Menu div div a:visited {
	color: 						#0066FF;
	font-size: 				12px;
	font-weight: 			normal;
	text-decoration: 	none;
}

#Menu div div a:hover, #Menu div div a:active {
	color: 						#FF9900;
	text-decoration:	underline;
}

/*The link and visited styles combined for third-level menuitems and lower*/
#Menu div div div a, #Menu div div div a:visited {
	font-size: 				11px;
}

/*Rules programmatically assigned to parent links for folder images.*/
.closedfolder {
	background-repeat:		no-repeat;
	background-image: 		url(images/tmm_fclosed.gif);
}
.openfolder {
	background-repeat:		no-repeat;
	background-image: 		url(images/tmm_fopen.gif);
}

/*Rule programmatically assigned to child links for document image.*/
.document {
	background-repeat:		no-repeat;
	background-image: 		url(images/tmm_page.gif);
}