/* 
	jquery javascript dropdown adapted from
	http://javascript-array.com/scripts/jquery_simple_drop_down_menu
	
	this file pairs with jquery.ddmenu.js
*/
#jsddm
{	margin: 0;
	padding: 0;
	width: 100%;
	position: relative;
}
	
	#jsddm li
	{	
		float: left;
		list-style: none;
		width:auto;
		font: 11px Tahoma, Arial;
		position: relative;
	}

	#jsddm li a
	{
		text-decoration: none;
		white-space: nowrap;
		position:relative;
	}

	#jsddm li a:hover
	{}
	
	#jsddm li img
	{	border: 0; }
		
		#jsddm li ul
		{	
			margin: 0;
			margin-top: 5px; /* use to adjust spacing of drop down from bottom of image */
			padding: 0;
			position: absolute;
			visibility: hidden;
			left:0;
			width: 175px;
			z-index: 10000;
		}
		
		#jsddm li ul li
		{	
			float: left;
			clear: left;
			display: inline;
			background-color: #ccddff;
			position: relative;
			z-index: 10000;
		}
		
		#jsddm li ul li a
		{	
			float:left;
			padding: 3px 14px 4px 14px;
			text-decoration: none;
			color: #000;
			white-space: nowrap;
			background-color: #ccddff;
			width: 175px;
		}
		
		#jsddm li ul li a:hover
		{	
			background: #6ecff6;
		}
/*
	end jquery dropdown
*/
