﻿/*Chieu rong va dai cau toan MenuMH*/
.MenuMH
{
	background:url(images/MenuDT_1.png) no-repeat;
	cursor: url(images/mouse.cur), default;
	width: 180px;
	height: 30px;
}
.MenuMH ul
{
	list-style-type: none;/*None khong hien thi bieu tuong dau dong*/
	color: Blue;
	text-decoration: none;
	padding: 0px;
	margin: 0px;
}
.MenuMH ul a
{
	list-style-type: none;
	color: Blue;
	text-decoration: none;/*Chu khong gach chan*/
	padding: 0px;
	margin: 0px;
}
.MenuMH ul li
{
	display: block;
	width: 100%;
	line-height: 25px;
	position: relative;/*Vi tri tuong doi*/
}
.MenuMH ul li a
{
	display: block;
	width: 100%;
	text-align: left;
	font-weight: bold;
	font-size: 12pt;
	float:left;
}

.MenuMH ul ul
{
	visibility: hidden;/*An tat ca cac con di*/
	width:100%;
	height: 30px;
	position: absolute;
	background:url(images/MenuDT_1.png) no-repeat;
	left: 0px;
	top: 25px;
	margin-left:170px;
	margin-top:-25px;
	float:left;
	font-weight: bold;
	font-size: 13pt;
}
.MenuMH ul a:hover
{
	background:url(images/MenuDT_2.png) no-repeat;
	color: Red;
}

.MenuMH ul li:hover ul
{
	visibility: visible;/*Hien thi lai con khi hover vao cha*/
}

.MenuMH ul ul li a
{
	font-weight: bold;
	font-size: 13pt;
	width:100%;
	text-align:left;
	padding-left:6px;
	background:url(images/Menu2_1.png) no-repeat;
	color:Green;
}
.MenuMH ul ul li a:hover
{
	background:url(images/Menu2_2.png) no-repeat;
	color:Yellow;
}
