/*弹出式菜单*/
.simplemenu{
	position: absolute;
	display: none;
	left: 0;
	top: 0;
	background-image: url(menu/menuBg.jpg);
	background-repeat:repeat-y;
	background-color:white;
	border: 1px solid #3c81c4;/*菜单容器边框*/
	z-index: 9000;
	padding:2px 4px 4px 1px;
}
.simplemenu li{
	width:100%;
	height:25px;
	line-height:25px;
}
.simplemenu li a{
	text-indent:30px;
	display:block;
	width:100%;
	height:100%;
}
.simplemenu li a:hover{
	text-decoration:none;
	color:black;
	filter:alpha(opacity=60);
	background-color: #ffeec2;
	border: solid 1px #2694f1;/*菜单项边框*/
}

.iconmenu{
	position: absolute;
	display: none;
	left: 0;
	top: 0;
	background: white;
	background-image: url(menu/menuLine.jpg);
	background-repeat:repeat-y;
	background-position:25px 0;
	background-color:#f9f9f9;
	border: 1px solid #3c81c4;/*菜单容器边框*/
	z-index: 9000;
	padding:2px 4px 2px 2px;
	
}
.iconmenu li{
	width:100%;
	height:25px;
	line-height:25px;
}
.iconmenu li a{
	text-indent:12px;
	display:block;
	width:100%;
	height:100%;
}
.iconmenu li a:hover{
	text-decoration:none;
	color:black;
	filter:alpha(opacity=60);
	background-color: #ffeec2;
	border: solid 1px #2694f1;/*菜单项边框*/
}
.iconmenu li span{
	background-position:3px 40%;
}

.megamenu{
	position: absolute;
	display: none;
	left: 0;
	top: 0;
	background: white;
	border: 1px solid #3c81c4;/*菜单容器边框*/
	border-width: 5px 1px;
	padding: 10px;
	z-index: 9000;
}
.megamenu li{
	width:100%;
	height:25px;
}
.megamenu li a{
	display:block;
	height:100%;
	padding:0 0 0 5px;
}
.megamenu li a:hover{
	text-decoration:none;
	color:black;
	filter:alpha(opacity=60);
	background-color: #ffeec2;
	border: solid 1px #2694f1;/*菜单项边框*/
}
.megamenu .column{
	float: left;
	width: 120px; 
	margin-right: 5px;
}
.megamenu .column ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.megamenu .column ul li{
	padding-bottom: 5px;
}
.megamenu .column h3{
	background: #5fa9e8;/*分组标题背景色*/
	font: bold 13px Arial;
	margin: 0 0 5px 0;
	color:white;
}
.clear{
	clear:both;
	line-height:1px;
}
.icon_add{
	background-image: url(menu/add.gif);
	background-repeat: no-repeat;
	background-position: 0% 40%;
	padding: 0 5px 0 18px;
	display: block;
	float: left;
	word-break: keep-all;
	word-wrap: normal;
}
.icon_edit{
	background-image: url(menu/edit.gif);
	background-repeat: no-repeat;
	background-position: 0% 40%;
	padding: 0 5px 0 18px;
	display: block;
	float: left;
	word-break: keep-all;
	word-wrap: normal;
}
.icon_delete{
	background-image: url(menu/delete.gif);
	background-repeat: no-repeat;
	background-position: 0% 40%;
	padding: 0 5px 0 18px;
	display: block;
	float: left;
	word-break: keep-all;
	word-wrap: normal;
}
.icon_view{
	background-image: url(menu/view.gif);
	background-repeat: no-repeat;
	background-position: 0% 40%;
	padding: 0 5px 0 18px;
	display: block;
	float: left;
	word-break: keep-all;
	word-wrap: normal;
}
/*弹出式菜单*/