/*
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: #009BD1;
	border-bottom: 1px dashed #cccccc;
	border-left: 1px solid #cccccc;
	border-right: 1px solid #cccccc;
	color: #666666;
	display: none;
	font-weight: bold;
	font-family: arial;
	font-size: 11px;
	padding: 5px;
	padding-left: 5px;
	text-decoration: none;
}
a.tmtExpanditem:link{color:#ffffff;}
a.tmtExpanditem:active{color:#ffffff;}
a.tmtExpanditem:visited{color:#ffffff;}
a.tmtExpanditem:hover{
	color: #FFBD21;
	text-decoration: underline;
}

/* Menus */
a.tmtExpandmenu {
	background-color: #000000;
	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;
	font-family: arial;
	font-size: 10px;
	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: 140px;
}
