/*------------------------------------------------------------------------
# JA Zibal 1.0 - Feb, 2008
# ------------------------------------------------------------------------
# Copyright (C) 2004-2008 J.O.O.M Solutions Co., Ltd. All Rights Reserved.
# @license - Copyrighted Commercial Software
# Author: J.O.O.M Solutions Co., Ltd
# Websites:  http://www.joomlart.com
-------------------------------------------------------------------------*/

/* this is the clipping region for the menu. it's width and height get set by script, depending on the size of the items table */
/* */
#TransMenu20.transMenu { /*position:relative; left:-8px !important; top:0 !important; z-index:999 !important;*/ }
#TransMenu21.transMenu .content table.items, #TransMenu22.transMenu .content table.items, #TransMenu23.transMenu .content table.items { width:138px !important; }
#TransMenu21.transMenu {
	position:absolute;
	margin-left:-90px;
}
#TransMenu23.transMenu .content table.items,
#TransMenu24.transMenu .content table.items { width:138px !important; }
#TransMenu22.transMenu,
#TransMenu23.transMenu,
#TransMenu24.transMenu {
   position:absolute;
   margin-left:-445px;
   
}
/*#TransMenu22.transMenu { top:22px !important; }
#TransMenu23.transMenu { top:44px !important; }*/
/* */

.transMenu {
	position: absolute;
	overflow: hidden;
	left: -1000px;
	top: -1000px;
}

/* this is the main container for the menu itself. it's width and height get set by script, depending on the size of the items table */
.transMenu .content {
	position: absolute;
}

/* this table comprises all menu items. each TR is one item. It is relatively positioned so that the shadow and background transparent divs can be positioned underneath it */
.transMenu .items {
	position: relative;
	left: 0px;
	top: 0px;
	z-index: 2;
}

.transMenu.top .items {
}

/* this DIV is the semi-transparent white background of each menu. the -moz-opacity is a proprietary way to get transparency in mozilla, the filter is for IE/windows 5.0+. */
/* we set the background color in script because ie mac does not use it; that browser only uses a semi-transparent white PNG that the spacer gif inside this DIV is replaced by */
.transMenu .background {
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 1;
	-moz-opacity: .8;
	filter: alpha(opacity=80);
}

/* same concept as .background, but this is the sliver of shadow on the right of the menu. It's left, height, and background are set by script. In IE5/mac, it uses a PNG */
.transMenu .shadowRight {
	width: 2px;
	position: absolute;
	z-index: 3;
	top: 3px;
	-moz-opacity: .4;
	filter: alpha(opacity=40);
}

/* same concept as .background, but this is the sliver of shadow on the bottom of the menu. It's top, width, and background are set by script. In IE5/mac, it uses a PNG */
.transMenu .shadowBottom {
	position: absolute;
	z-index: 1;
	left: 3px;
	height: 2px;
	-moz-opacity: .4;
	filter: alpha(opacity=40);
}

/* each TR.item is one menu item */
.transMenu .item {
	color: #FFFFFF;
   text-decoration: none;
	text-transform: none;
	/* this is a hack for mac/ie5, whom incorrectly cascades the border properties of the parent table to each row */
	border: none;
	cursor: pointer;
	font-size: 11px;
	font-family: Tahoma, Arial, sans-serif;
}

/* this is the class that is used when the mouse is over an item. script sets the row to this class when required. */
.transMenu .item.hover {
	color: #FFFFFF;
	background: #3F6D8A;
}

/* this is either the dingbat that indicates there is a submenu, or a spacer gif in it's place. We give it extra margin to create some space between the text and the dingbat */
.transMenu .item img {
	margin-left: 10px;
}

/* ----------------------------------------------------------------
- Added classes by Khanh - 050629
- Style and mark-up improved by Hieu Nguyen & Ha Le Viet - 060718
-------------------------------------------------------------------*/
.transMenu .item#active {
	background: #4D84A7;
	color: #FFFFFF!important;
	font-weight: bold;
	/* -moz-opacity: .6;
	filter: alpha(opacity=60); */
}

.transMenu .item#active:hover {
	color: #FFFFFF;
	background: #3F6D8A;
}

/* For first level menu.*/
#ja-transmenu {
	margin: 0;
	padding: 0;
	height: 30px;
	line-height: 30px;
	background-color:#F1A856;
	color:#404040;
	font-size:12px;
}

#ja-transmenu li {
	margin: 0;
	padding: 0;
	background: none;
	display: inline;
}

#ja-transmenu li a { /* common styles for 1st level menu */
	padding: 0 30px;
	float: left;
	text-decoration: none;
	display: block;
	text-align: center;
	border-right: 1px solid #FEE3B2;
}

#ja-transmenu li a:hover { /* common styles for 1st level menu */
	color: #FFFFFF;
	text-decoration: none;
}

a.havechild-mainlevel-trans,
a.havechild-mainlevel-trans-first,
a.havechild-mainlevel-trans-last {
/*	background: url(img/arrowchild-off.gif) 90% 45% no-repeat;*/
	background: url(img/arrowchild-off.gif)  100% 45% no-repeat;
	border-right: 1px solid #FEE3B2!important;
	/*color: #FFFFFF!important;*/
}

a.mainlevel-trans:active {
	color: #FFFFFF;
	background: url(img/havechild-on-bg.gif) no-repeat bottom right #333333;
}

a.havechild-mainlevel-active-trans,
a.havechild-mainlevel-active-trans:active,
a.havechild-mainlevel-active-trans-first,
a.havechild-mainlevel-active-trans-first:active,
a.havechild-mainlevel-active-trans-last,
a.havechild-mainlevel-active-trans-last:active {
/*	color: #FFFFFF!important;
	background: url(img/arrowchild-off.gif)no-repeat right #4D84A7;*/
color: #FFFFFF!important;
background: url(img/arrowchild-on.gif) no-repeat bottom right #4D84A7;	
}

a.jahover {
color: #FFFFFF!important;
background: url(img/arrowchild-on.gif) no-repeat bottom right #4D84A7;
	
}

a.jahover-active {
	color: #FFFFFF!important;
	background: url(img/arrowchild-on.gif) no-repeat bottom right #4D84A7;
}

a.mainlevel-trans {
}

a.mainlevel-trans:hover,
a.mainlevel-trans:active,
a.mainlevel-trans-first:hover,
a.mainlevel-trans-first:active,
a.mainlevel-trans-last:hover,
a.mainlevel-trans-last:active {
	color: #FFFFFF;
	background: url(../../images/topnav-on-bg.gif) no-repeat bottom right #333333;
	
}

a.mainlevel-active-trans,
a.mainlevel-active-trans-first,
a.mainlevel-active-trans-last {
	color: #FFFFFF!important;
	background: #4D84A7;
}

a.mainlevel-active-trans:hover,
a.mainlevel-active-trans:active {
	background: #4D84A7;
	color: #FFFFFF;
}
/* SUB NAVIGATION FOR JA SLPIT MENU
--------------------------------------------------------- */
#ja-home {
	padding-bottom: 10px;
	width: auto;
	margin-top:0px;
	
}
#ja-home h3 {
	font-size: 1.0em;
	margin: 0 0 1px;
	padding: 0px 10px 0 30px;
	color: #FFFFFF;
/*	background: url(../../images/h3-bg.gif) no-repeat top #E1E1E1;*/
    background:url(../../images/blue_background.png) no-repeat top;
	height: 32px;
	line-height: 32px;
	text-transform: UPPERCASE;
}

#ja-home ul {
	margin: 0;
	padding: 0;
	
}

#ja-home li {
	margin: 0;
	padding: 0;
	background: none;

}

#ja-home li a:first-parent{
background-color:#3399FF;

}

#ja-home li a:first-parent:visited,#ja-home li a:first-parent:hover,#ja-home li a:first-parent:active,#ja-home li a:first-parent:focus{
background-color:#3399FF;
color:#FFFFFF;
}

#ja-home a {
	padding-left: 24px;
	display: block;
/*	background: url(img/submenu-bg.gif) no-repeat top left;*/
	background:url(../../images/sub_menu.jpg)  no-repeat top left;
	line-height:23px;
	color: #666666;
	text-decoration: none;
	margin-left:5px;
}

#ja-subnav {
	padding-bottom: 10px;
	width: auto;
	margin-top:15px;
}

.ja-subnav h3{
font-family: Arial, Helvetica, sans-serif;
    font-size:16px;
	/*font-size: 1.4em;*/
	margin: 0 0 1px;
	padding: 15px 10px 0 20px;
	color: #FFFFFF;
	height: 42px;
	line-height:16px;
	text-transform: UPPERCASE;
	background:url(../../images/rounded_menu.jpg) no-repeat bottom left;
	
}
.ja-subnav_test{
font-family: Arial, Helvetica, sans-serif;
    font-size:16px;
	/*font-size: 1.4em;*/
	margin: 0 0 1px;
	padding:0px 10px 0 20px;
	color: #FFFFFF;
	height: 42px;
	line-height:16px;
	background:url(../../images/white_menu.jpg);
	
	
}


#ja-subnav ul {
	margin: 0;
	padding: 0;
}

#ja-subnav li {
	margin: 0;
	padding: 0;
	background: none;
}

#ja-subnav a {
	padding-left: 24px;
	display: block;
	background:url(../ja_splitmenu/img/submenu-bg.gif) no-repeat top left;
	line-height: 22px;
	color: #666666;
	text-decoration: none;
}


#ja-subnav ul li li a{
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #cccccc;
height:20%;
background-color: transparent;
background:url(../../images/bullet1.jpg) no-repeat  left;
background-position:7% 25%;
margin-left:10px;
background-repeat: no-repeat;
width:160px;
line-height:1.4em; 
color:#3C3C3C;     
}


#ja-subnav ul li a:hover, #ja-subnav ul li a:active, #ja-subnav ul li.active a, #ja-subnav ul li.active a:hover{
color:#2780D2;
}



/*For 5th level Navigation*/



#ja-subnav li li .active a
{
color: #1c64a5;
}

#ja-subnav li li .active a
{
color: #666666;


}
#ja-subnav li li li li .active a
{
color: #4D5862;


}

#ja-subnav li li li li.active a 
{
color: #1c64a5;

}

/*For 4th level Navigation*/

#ja-subnav li ul .active a {
	color:#545454;

}

#ja-subnav li ul li .active a {
	color:#3F3F3F;
}


#ja-subnav li ul .active a{
	color:#4D84A7;
}

/*For 3rd level Navigation*/

#ja-subnav li ul.active a {
	color:#18568A;

}

#ja-subnav li ul.active a {
	color:#0A6EAE;
}


#ja-subnav li ul .active a{
	color:#002880;
}

#ja-subnav ul li li li a{
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #cccccc;
height:20%;
background-color: transparent;
background:url(../../images/bullet1.jpg) no-repeat  left;
background-position:7% 25%;
margin-left:20px;
background-repeat: no-repeat;
width:160px;
line-height:1.4em; 
color:#3C3C3C;     
}

#ja-subnav ul li li li li a{
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #cccccc;
height:20%;
/*background-color: transparent;
background:url(../../images/bullet1.jpg) no-repeat  left;*/
background-position:7% 25%;
margin-left:30px;
background-repeat: no-repeat;
background-color:#F0F0F0;
width:140px;
line-height:1.4em; 
color:#3C3C3C;     
background-image:none;
}





