
 .clickable { cursor: pointer; }
	div.dropdown
	{
		float: left;
		position: relative;
		width: 98px;
		min-height: 27px;
		background: url("images/dropdown-bottom.png") bottom left no-repeat;
		overflow: hidden;
  z-index: 50;
	}
	
	div.dropdown div.contents
	{
		position: absolute;
		width: 85px;
		margin: 0 5px 0 8px;
		height: 90px;
		overflow-y: scroll;
		bottom: 15px;
	}
		
		div.dropdown div.contents ul
		{
			position: relative;
			list-style-type: none;
   margin: 0;
   padding: 0;
		}
		
			div.dropdown div.contents ul li a
			{
				display: block;
				color: #707070;
				text-decoration: none;
				padding: 2px 1px;
				margin: 1px 0;
				font-size: 0.9em;
			}
			
			div.dropdown div.contents ul li a:hover
			{
				background: #E8E8EA;
			}
			
			div.dropdown div.contents ul li a.active
			{
				background: #C8C8C8;
			}
	
	
	div.dropdown div.controls
	{
		position: absolute;
		top: 0;
		left: 0;
		background: url("images/dropdown-top.png") bottom left;
		width: 98px;
		min-height: 14px;
	}
	
	div.dropdown label.switch
	{
		display: block;
		top: 7px;
		position: absolute;
		height: 13px;
		width: 78px;
		padding: 0 10px;
  color: #000;
		background: url("images/dropdown-arrow-down.png") no-repeat 78px 0px;
	}
	
	div.dropdown label.switch.open
	{
		background: url("images/dropdown-arrow-up.png") no-repeat 78px 0px;
	}