@charset "UTF-8";

/** 
 * Default CSS Drop-Down Menu Theme
 *
 * @file		default.css
 * @name		Default
 * @version		0.1.1
 * @type		transitional
 * @browsers	Windows: IE5+, Opera7+, Firefox1+
 *				Mac OS: Safari2+, Firefox2+
 *
 * @link		http://www.lwis.net/
 * @copyright	2008 Live Web Institute. All Rights Reserved.
 *
 * Module Classes: *.dir {} *.on {} *.open {} li.hover {} li.first {} li.last {}
 * Expected directory tag - li
 *
 */


/*-------------------------------------------------/
 * @section		Base Drop-Down Styling
 * @structure	ul (unordered list)
 *				ul li (list item)
 *				ul li a (links)
 *				/*\.class|(li|a):hover/
 * @level sep	ul
 */


ul.dropdown {
 font-weight: bold;
 width: 760px;
 background-color: #CF508C;
}

	ul.dropdown li {
	 padding: 7px 10px;
	 border-style: solid; /*need to keep this border in otherwise dd doens't work properly!*/
	 border-width: 1px 1px 1px 0;
	 border-color: #CF508C #CF508C #CF508C;
	 background-color: #CF508C;
	 color: #fff;
	 text-transform:uppercase;
	}

	ul.dropdown li.hover,
	ul.dropdown li:hover {
	 background-color: #A42360;
	 color: #fff;
	}

	ul.dropdown a:link {	
	color:#fff;
	font-weight : bold;
	text-decoration: none;
	background-color: transparent;
	}
	ul.dropdown a:visited	{color:#fff;
font-weight : bold;
	text-decoration: none;
	background-color: transparent;}
	ul.dropdown a:hover		{  color:#fff; font-weight : bold;text-decoration: none; background-color: transparent; }
	ul.dropdown a:active	{  color:#fff; font-weight : bold;text-decoration: none; background-color: transparent;  }


	/* -- level mark -- */

	ul.dropdown ul {
	 width: 150px;
	 margin-top: 1px;
	 
	 
	 	 border-top: 1px solid #fff; /*added in to make a level marker*/
	}

		ul.dropdown ul li {
		 font-weight: normal;
		 text-transform:none;
		
		 border: none;
		}



/*-------------------------------------------------/
 * @section		Support Class `dir`
 * @level sep	ul, .class
 */


ul.dropdown *.dir {
	padding-right: 13px;
	background-image: url(/images/arrow_down.gif);
	background-position: 97% 50%;
	background-repeat: no-repeat;
}

ul.dropdown  li.last {/*change this so last item fits well*/
	padding-right: 16px;
	background-image: url(/images/arrow_down.gif);
	background-position: 95% 50%;
	background-repeat: no-repeat;
}


/* HIGHLIGHTED SECTIONS*/

body.entertainment ul.dropdown li.entertainment { background-color: #A42360; }
body.portfolio ul.dropdown li.portfolio { background-color: #A42360; }
body.organisations ul.dropdown li.organisations { background-color: #A42360; }
body.mapping ul.dropdown li.mapping { background-color: #A42360; }
body.education ul.dropdown li.education { background-color: #A42360; }
body.visualisation ul.dropdown li.visualisation { background-color: #A42360; }
body.ar ul.dropdown li.ar { background-color: #A42360; }

/* -- Components override -- */

/*ul.dropdown-horizontal ul *.dir {
 padding-right: 15px;
 background-image: url(themes/default/images/nav-arrow-right.png);
 background-position: 100% 50%;
 background-repeat: no-repeat;
}

ul.dropdown-upward *.dir {
 background-image: url(themes/default/images/nav-arrow-top.png);
}

ul.dropdown-vertical *.dir,
ul.dropdown-upward ul *.dir {
 background-image: url(themes/default/images/nav-arrow-right.png);
}

ul.dropdown-vertical-rtl *.dir {
 padding-right: 10px;
 padding-left: 15px;
 background-image: url(themes/default/images/nav-arrow-left.png);
 background-position: 0 50%;
}*/