/*
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: #D5DCE7;
	border-bottom: 1px solid #666666;
	border-left: 1px solid #666666;
	border-right: 1px solid #666666;
	color: #00008B !important;
	display: none;
	font-weight: bold;
	padding: 3px;
	padding-left: 10px;
	text-decoration: none;
}

a.tmtExpanditem:hover {
	background: #FCE9AF; }

/* Menus */
a.tmtExpandmenu {
	background-image: url('/resources/images/menu/bg_menu_blue.jpg');
	/*background-color: #6094F0;
	background-position: 3px 50%;*/
	background-repeat: repeat-x;
	border-bottom: 1px solid #666666;
	border-left: 1px solid #666666;
	border-right: 1px solid #666666;
	color: #00008B !important;
	display: block;
	font-weight: bold;
	padding: 3px 3px 3px 5px;
	text-decoration: none;
	font-size: 11px; }

a.tmtExpandmenu:hover{
	background-image: url('/resources/images/menu/bg_menu_yellow.jpg');
	/*color: #E1E1E1;*/
	text-decoration: none; }

/* Menubar */
div.tmtExpandbar{
	width: 225px;
	text-align: left;
	font-size: 10px; }
