/*
CSS library for the "expandmenu" ColdFusion custom tag
We prefer to avoid CSS shorthand properties, since we value readability much more than terseness
*/

/* Items */
a.tmtExpanditem, a.tmtExpanditem:visited{
	color: #C7A395;
	display: none;
	font-size: 10px;
	padding: 3px;
	margin-left: 15px;
	margin-right: 15px;
	text-decoration: none;
	font-size: 10px;
	border-left: solid 1px #C7A395;
	border-right: solid 1px #C7A395;
	border-bottom: solid 1px #C7A395;
}

a.tmtExpanditem:hover{
	color: #000000;;
	text-decoration: none;
	background-color: #999999;
}

/* Menus */
a.tmtExpandmenu, a.tmtExpandmenu:visited{
	color: #C7A395;
	display: block;
	font-weight: bold;
	padding: 3px;
	text-decoration: none;
	font-size: 10px;
	border-bottom: solid 1px #C7A395;
}

a.tmtExpandmenu:hover{
	color: #FFFFFF;
	text-decoration: none;
	background-color: #714333;
}

/* Menubar */
div.tmtExpandbar{
	font-size: 10px;
	border: solid 0px #000000;
	width: 100px;
}