/*=================================*/
/* Horizontal */
/* remove the bullets, padding and margins from the lists */
.wisemenu_h
{
width:100%; /*改善IE7無法顯示menu的方法*/ 
}
.wisemenu_h ul{
list-style:none;
padding:0;
margin:0;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
.wisemenu_h li{
float:left; /*left:靠左|none :垂直|right:靠右(引起IE7bug的重要因素) */
position:relative;
z-index:100;
list-style:none;
}

/* use the table to position the dropdown list */
.wisemenu_h table{
position:absolute;
border-collapse:collapse;
z-index:80;
left:-1px;
top:25px;
}

/* style all the links */
.wisemenu_h a, .wisemenu_h a:visited {
text-decoration:none;
list-style:none;
display:block;
}

/* style the links hover */
.wisemenu_h li a:hover{
text-decoration:none;
list-style:none;
}

/* hide the sub level links */
.wisemenu_h ul ul {
visibility:hidden;
position: absolute;
list-style:none;
width: 100%;
background-color:transparent;
}

/* make the sub level visible on hover list or link */
.wisemenu_h ul li:hover ul,.wisemenu_h ul li.over ul,
.wisemenu_h ul a:hover ul{
visibility:visible;
list-style:none;
-width:100px; /*IE6 */
}
/*current li*/
#WiseMenuNavCurrentItem a{
font-size:smaller;
text-decoration:none;	
}
/*disable link tab*/
.wisemenu_h li a.nolink{
	color:#ECECEC;	
}
/*=================================*/
/* Vertical */

/* remove the bullets, padding and margins from the lists */
.wisemenu_v ul{
list-style:none;
padding:0;
margin:0;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
.wisemenu_v li{
float:none; /*left:靠左|none :垂直|right:靠右 */
position:relative;
z-index:100;
list-style:none;
}

/* use the table to position the dropdown list */
.wisemenu_v table{
position:absolute;
border-collapse:collapse;
z-index:80;
left:-1px;
top:25px;
}

/* style all the links */
.wisemenu_v a, .wisemenu_v :visited {
display:block;
text-decoration:none;
list-style:none;
}
/* style the links hover */
.wisemenu_v li a:hover{
text-decoration:none;
list-style:none;
}

/* hide the sub level links */
.wisemenu_v ul ul {
visibility:hidden;
position:absolute;
list-style:none;
background-color: #FFFFFF;
}
/* make the sub level visible on hover list or link */
.wisemenu_v ul li:hover ul,.wisemenu_v ul li.over ul,
.wisemenu_v ul a:hover ul{
visibility:visible;
list-style:none;
}

/*current li*/
#WiseMenuNavCurrentItem a{
font-size:smaller;
text-decoration:none;	
}
/*disable link tab*/
.wisemenu_v li a.nolink{
	color:#ECECEC;	
}



