/*
# ------------------------------------------------------------------------
# JA Urani for Joomla 1.5.x - Version 1.0 - Licence Owner JA107673
# ------------------------------------------------------------------------
# Copyright (C) 2004-2009 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 -  http://www.joomlancers.com
# This file may not be redistributed in whole or significant part.
# ------------------------------------------------------------------------
*/


/* Son of Suckerfish Dropdowns
---------------------------------------------------------
Originally developed by Patrick Griffiths and Dan Webb
http://www.htmldog.com/articles/suckerfish/dropdowns/
---------------------------------------------------------
NOTE: After a deep research, we decide to divide this
CSS into 2 parts. The first part will define the layout.
The second part will define the visual look for this menu.
---------------------------------------------------------*/

#ja-cssmenu {
	margin: 0; /* all lists */
	padding: 0;
	border-right: 1px solid #050505;
	float: left;
}

#ja-cssmenu ul {
	margin: 0; /* all lists */
	padding: 0;
}

#ja-cssmenu li {
	margin: 0; /* all list items */
	padding: 0;
	float: left;
	display: block;
	background: none;
	cursor: pointer;
	text-align:center;
}

#ja-cssmenu li ul {
	width: 16.4em;
	position: absolute; /* second-level lists */
	z-index: 99;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	height: auto;
	w\idth: 15.9em;
}

#ja-cssmenu li ul ul {
	margin: -2em 0 0 14em; /* third-and-above-level lists */
}

#ja-cssmenu li li {
	padding: 0 1em 0 0;
	margin: 0;
	width: 14.9em;
}

#ja-cssmenu ul a {
	width: 14.8em;
	w\idth: 11.8em;
}





/* STYLING THE MENU
-----------------------------------*/
/* 1st level */
#ja-cssmenu li a {
	border-left: 1px solid #050505;
	color: #ccc;
	display: block;
	font-weight: bold;
	line-height: normal;
	margin: 0;
	text-decoration: none;
}

#ja-cssmenu li.havechild a span.menu-title,
#ja-cssmenu li.havechildsfhover a span.menu-title{
	padding-left: 12px;
	background: url(../../images/arrow3.png) no-repeat scroll left center;
}

#ja-cssmenu li.havechild li a span.menu-title,
#ja-cssmenu li.havechildsfhover li a span.menu-title {
	background: none;
	padding-left: 0;
}

#ja-cssmenu li.havechild a span.menu-desc,
#ja-cssmenu li.havechildsfhover a span.menu-desc{
	padding-left: 12px;
}





#ja-cssmenu li a:hover, #ja-cssmenu li a.active{
	background: url(../../images/nav-btn-hv.png) no-repeat;
	color: #fff;
}
#ja-cssmenu li a{
	background: url(../../images/nav-btn.png) no-repeat;
	color: #fff;
	width:100px;
	height:41px;
	padding-top:7px;
	font-family:tahoma;
}

/* 2nd level and above */
#ja-cssmenu li ul {
	border: 1px solid #050505;
	border-top: 0;
	background: #202020;
}

#ja-cssmenu li ul ul {
	border-top: 1px solid #050505;
}

#ja-cssmenu li ul li {
	border-top: 1px dotted #353535;
	background: none;
}

#ja-cssmenu li ul li.first-item {
	border: none;
}

#ja-cssmenu li ul a {
	border-right: 0;
	border-left: 0;
	margin: 0;
	padding: 7px 15px;
	background: none;
	color: #ccc;
	font-weight: normal;
	line-height: normal;
	background: none !important;
}

#ja-cssmenu li.havesubchild,
#ja-cssmenu li.havesubchild-active {
	background: url(../../images/bullet2.gif) no-repeat 94% 50%;
}

#ja-cssmenu li ul a:hover,
#ja-cssmenu li ul a:active,
#ja-cssmenu li ul a:focus,
#ja-cssmenu ul li:hover,
#ja-cssmenu ul li.sfhover,
#ja-cssmenu ul li.havesubchildsfhover,
#ja-cssmenu ul li.havesubchild-activesfhover,
#ja-cssmenu ul ul li:hover,
#ja-cssmenu ul ul li.sfhover,
#ja-cssmenu ul ul li.havesubchildsfhover,
#ja-cssmenu ul ul li.havesubchild-activesfhover {
	background: #151515 !important;
	color: #fff;
}

#ja-cssmenu ul li a.active,
#ja-cssmenu ul li a.active:hover,
#ja-cssmenu ul li a.active:active,
#ja-cssmenu ul li a.active:focus {
	background: none !important;
	color: #fff;
	font-weight: bold;
}


