/* Product Finder Drop Down List */

/* Below is for non-javascript users */
ul#Dropdownlist
{
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width: 185px;
	height: 135px;
	overflow:auto;
}
ul#Dropdownlist a 
{
	text-decoration:none;
	}

#Dropdownlist li li a {
	display: block;
	color: #000;
	padding-left: 2px;
}

#Dropdownlist li li a:hover {
	text-decoration: underline;
	background-color: #eee;
}
#Dropdownlist li {
	float: left;
	position: relative;
	width: 165px;
	text-align: left;
	cursor: default;
	background-color: white;
	border: 1px solid #ccc;
}

#Dropdownlist li ul {
	top: 100%;
	left: 0;
	border-top: 1px #ccc solid;
	border-bottom:1px #ccc solid;
	width: 165px;
	padding: 0;
}

#Dropdownlist li>ul {
	top: auto;
	left: auto;
}

#Dropdownlist li li {
	display: block;
	float: none;
	background-color: white;
	border: 0;
}
* html #Dropdownlist li li  {  /* IE 6 hack to fit list in module*/
	line-height: 1.2em;
}
*:first-child+html #Dropdownlist li li  {  /* IE 7 hack to fit list in module*/
	line-height: 1.2em;
}
#Dropdownlist li:hover ul, li.over ul {
	display: block;
}
/* below is for the small drop down list*/

ul#Dropdownlist_small
{
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width: 185px;
	height: 74px;
	overflow:auto;
	margin:0;
}
ul#Dropdownlist_small a 
{
	text-decoration:none;
	}

#Dropdownlist_small li li a {
	display: block;
	color: #000;
	padding-left: 2px;
}

#Dropdownlist_small li li a:hover {
	text-decoration: underline;
	background-color: #eee;
}
#Dropdownlist_small li {
	width: 165px;
	text-align: left;
	cursor: default;
	background-color: white;
	border: 1px solid #ccc;
}

#Dropdownlist_small li ul {
	top: 100%;
	left: 0;
	border-top: 1px #ccc solid;
	border-bottom:1px #ccc solid;
	width: 165px;
	padding: 0;
}

#Dropdownlist_small li>ul {
	top: auto;
	left: auto;
}

#Dropdownlist_small li li {
	display: block;
	float: none;
	background-color: white;
	border: 0;
}
* html #Dropdownlist_small li li  {  /* IE 6 hack to fit list in module*/
	line-height: 1.2em;
}
*:first-child+html #Dropdownlist_small li li  {  /* IE 7 hack to fit list in module*/
	line-height: 1.2em;
}
#Dropdownlist_small li:hover ul, li.over ul {
	display: block;
}

