/*
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: #FFFFE8;
	color: #000000;
	display: none;
	padding-bottom: 3px;
	padding-left: 12px;
	padding-right: 0px;
	padding-top: 3px;
}

a.tmtExpanditem:hover {
	background: #FCE9AF;
}

/* Menus */
a.tmtExpandmenu {
	background: url(../images/bg_menu_blue.jpg);
	background-repeat: repeat-x;
	display: block;
	font-weight: bold;
	height: 15px;
	padding-bottom: 3px;
	padding-left: 5px;
	padding-right: 0px;
	padding-top: 4px;
	text-decoration: none;
}
a.tmtExpandmenu, a.tmtExpanditem {
	border-bottom-color: #354353;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	text-decoration: none;
}
a.tmtExpandmenu:hover {
	background-image: url(../images/bg_menu_yellow.jpg);
}
/*special*/
a.tmtExpandmenu_s {
	background: url(../images/bg_menu_red.jpg);
	background-repeat: repeat-x;
	display: block; 
	color:#FF0000;
	font-weight: bold;
	font-size:12px;
	height: 30px;
	padding-bottom: 3px;
	padding-left: 5px;
	padding-right: 0px;
	padding-top: 4px;
	/*text-decoration: none;*/
}
a.tmtExpandmenu_s, a.tmtExpanditem_s {
	border-bottom-color: #354353;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	text-decoration: none;
}
a.tmtExpandmenu_s:hover {
	background-image: url(../images/bg_menu_red.jpg);
}


/* Menubar */
div.tmtExpandbar{
	border: 1px;
	border-bottom: 0px;
	border-color: #354353;
	border-style: solid;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 11px;
	width: 150px;
}
/*special*/
div.tmtExpandbar_s{
	border: 1px;
	border-bottom: 0px;
	border-color: #354353;
	border-style: solid;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 11px;
	width: 150px;
}


div.tmtExpandbar a, div.tmtExpandbar a:hover, div.tmtExpandbar a:visited {
	color: #000179;
}

/*special*/
div.tmtExpandbar_s a , div.tmtExpandbar_s a:visited{color: #FFFFFF;}

div.tmtExpandbar_s a:hover {color: #FFFF00;}
