@charset "UTF-8";
/* CSS Document - drop down menus */

.jquerycssmenu {
	font: bold 12px Verdana;
	/* position: absolute; top: 137px; left: 10px; */
	/* Changed the lh margin to 0 from 10px to line up with the left of the screen */
	position: absolute; top: 137px; left: 0px;
	/* Width and height of the top level menu */
	width: 984px; height: 45px;
	
}

.jquerycssmenu ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	position: relative; 
}

/*Top level list items*/
.jquerycssmenu ul li {
	position: relative;
	display: inline;
	float: left;
	width: 164px; height: 45px;
	/* width: 148px; height: 45px; */
	/* The above gives the width and position of the top menu boxes - changed width to 164px  ie. 984/6 with no left or right margin */
	vertical-align: middle; line-height: 45px;
	/* vertical-align: middle; line-height: 45px; */
	/* The above changes the line spacing of the dropdown box */
	margin-right: 0px;
	/* margin-right: 15px; */
	/* Changed the rh margin to 15px from 0px to line up with the right of the screen */
	text-align: center;
}

.jquerycssmenu ul li a:hover { background-position: 0px -45px; color: #fff; }

/*Top level menu link items style*/
.jquerycssmenu ul li a {
	display: block;
	background: url(http://www.pursuit-performance.com.au/images/nav_bg_lg.jpg) top left no-repeat; /*background of top level menu tabs (default state)*/
	padding: 0px; color: #b3b3b3; font-size: 14px;
	text-decoration: none;
	width: 148px; height: 45px;	
}
	
/*1st sub level menu*/
.jquerycssmenu ul li ul {
	position: absolute;
	left: 0;
	display: block;
	visibility: hidden;
	/* background: url(images/dd_bg_repeat-x.gif) top left repeat-x;  1st sub level menu background */
	background:  url(http://www.pursuit-performance.com.au/images/dd_bg_repeat-black.gif) top left repeat-x;
	padding-bottom: 7px; /* bottom padding of dropdown box */
	padding-top: 4px; /* top padding of dropdown box */
	line-height: 25px; /* controls line spacing of first dropdown box */
}

/*Sub level menu list items (undo style from Top level List Items)*/
.jquerycssmenu ul li ul li {
	display: list-item;
	float: none;
	width: 200px;
	line-height: normal;
	width: auto; height: auto;
	margin-right: 0;
}

/* Added this to highlight dropdown selections */
.jquerycssmenu ul li ul li a:hover { color: #fff; background: url(http://www.pursuit-performance.com.au/images/nav_bg_drop.gif) top left repeat; }

.jquerycssmenu ul li ul li a {
	display: block; color: #b3b3b3; width: 190px; height: auto;
	 /* changes the width of the drop down box */
	 /* was width: 200px; height: auto;  */
	margin: 0px; 
	padding: 0px 0px 0px 10px; /* padding of the margins of the dropdown box  */
	font-family: Verdana, Arial, Helvetica, sans-serif; font-weight: normal; font-size: 12px; line-height: 2; text-align: left;
	z-index: 999;
}


#nav ul li ul li a:hover { color: #fff; }

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.jquerycssmenu ul li ul li ul {
	background: url(http://www.pursuit-performance.com.au/images/dd_bg_repeat-black.gif) top left repeat-x; /* 2nd sub level menu background */
	top: 0px; 
}

/* Sub level menu links style */
.jquerycssmenu ul li ul li a{
	background: none;
}

.jquerycssmenu ul li ul li a.top { padding-top: 0px; } /* changes the top margin of the dropdown box */
