/*------------------------------------------------------------------------
#  Sri Mata Amritanandamayi Devi...AMMA
# ------------------------------------------------------------------------
# © Copyright Reserved 2009 Amrita Technology Business Incubator 
# Author: deepakvasudevan
# Websites:  http://www.amritatbi.com/services.html
-------------------------------------------------------------------------*/

/* TransMenu
-------------------------------------------------



/* 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 */
.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: relative;
	
}

/* 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;
}

/* 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: .90;
	filter: alpha(opacity=90);
}

/* 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: 1px;
	position: absolute;
	z-index: 3;
	top: 1px;
	-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: 1px;
	height: 0px;
	-moz-opacity: .4;
	filter: alpha(opacity=40);
}

/* each TR.item is one menu item */
.transMenu .item {
	color:#554433;
	font-weight:bold;
   	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:13px;
	font-family:Tahoma;
	line-height:22px;
	background:url(img/menu_line.gif) repeat-x left bottom;
}

/* 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: #edf4fa;
	background-color:#666666;
	
}

/* ----------------------------------------------------------------
- Added classes by Khanh - 050629
- Style and mark-up improved by Hieu Nguyen & Ha Le Viet - 060718
-------------------------------------------------------------------*/
.transMenu .item#active {
	background: #aaa8a8;
	color: #554433;
	/* -moz-opacity: .6;
	filter: alpha(opacity=60); */
}

.transMenu .item#active:hover {
	color: #DFDFDF;
	background: #b7b7b7;
}

#ja-mainnav div.transmenu-inner {
	float: left;
	width: 100%;
}

/* For first level menu.*/
#ja-transmenu {
	margin: 0;
	padding: 0;
	background-color:#b7b7b7;
}

#ja-transmenu a { /* common styles for 1st level menu */
	border-top: none!important;
	padding-top: 2px!important;
	padding-right: 25px!important;
	padding-left: 24px!important;
	/*width: 70px;
	_width: 115px;*/
}


#ja-transmenu a { /* common styles for 1st level menu */
	border-top: 5px solid #222222; 
	/*padding: 0px 15px;*/
	float: left;
	text-decoration: none;
	display: block;
	text-align: center;
	color: #554433;
	background-color: #b7b7b7;
	border-bottom: 1px solid #ffffff;
	border-right: 1px solid #ffffff;
}

#ja-transmenu a span { /* common styles for 1st level menu */
	font-weight: bold;
}

#ja-transmenu a:hover { 
	color: #000000;
	text-decoration: none;
}

a.havechild-mainlevel-trans {
	background: url(img/arrow-off.gif) center right no-repeat;
}

a.havechild-mainlevel-trans:hover {
	background: #e7e7e7;
}

a.mainlevel-trans:active {
	border-top: 5px solid #222222; 
	padding: 7px 15px;
	float: left;
	text-decoration: none;
	display: block;
	text-align: center;
	color: #FFFFFF;
}

a.havechild-mainlevel-active-trans,
a.havechild-mainlevel-active-trans:active
a.havechild-mainlevel-active-trans:focus {
/*	border-top: 5px solid #181818!important; */
	color: #000000;
	background: #b7b7b7;
	padding: 5px;
}

a.jahover {
	color: #00FF00;
}

a.jahover-active {
	background:url(img/nav_hover.gif) repeat-x left top;
	color:#00FF00;
	text-decoration:none;
	margin:0px 5px;
}

a.mainlevel-trans {
	color: #FFFFFF;
	background: #b7b7b7;
}

a.mainlevel-trans:hover,
a.mainlevel-trans:active,
a.mainlevel-trans:focus {
	color: #00FF00;
	background: #00FF00;
}