/*
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 {
	background: #e5e5e5;
	border-bottom: 1px dashed #cccccc;
	border-left: 1px solid #cccccc;
	border-right: 1px solid #cccccc;
	color: #666666;
	display: none;
	font-weight: bold;
	padding: 5px;
	padding-left: 5px;
	text-decoration: none;
}
a.tmtExpanditem:link{color:#666666;}
a.tmtExpanditem:active{color:#666666;}
a.tmtExpanditem:visited{color:#666666;}
a.tmtExpanditem:hover{
	color: #006699;
	text-decoration: underline;
}

/* Menus */
a.tmtExpandmenu {
	background-color: #666666;
	background-image: url(../images/expand_gray_down.gif);
	background-position: 3px 50%;
	background-repeat: no-repeat;
	border-bottom: 1px solid #cccccc;
	border-left: 1px solid #cccccc;
	border-right: 1px solid #cccccc;
	color: #FFFFFF;
	display: block;
	font-weight: bold;
	padding: 5px 5px 5px 25px;
	text-decoration: none;
}
a.tmtExpandmenu:link{color:#FFFFFF;}
a.tmtExpandmenu:active{color:#FFFFFF;}
a.tmtExpandmenu:visited{color:#FFFFFF;}
a.tmtExpandmenu:hover{
	background-image: url(../images/expand_gray.gif);
	color: #E1E1E1;
	text-decoration: none;
}

/* Menubar */
div.tmtExpandbar{
	width: 150px;
}

