/* ============== Dropdown menu styles ================= */
/* block definitions - define the dropdown behavior */
 
.catlist  {
	list-style: none;
	position: absolute;
	position: relative; 
	width: auto;
	z-index: 1;

}

.catitem,
.catitem_over
{
	position: relative;
	width: 150px;
	white-space: nowrap;

	background-image: url(./images/expand.gif);
	background-repeat: no-repeat;
	background-position: right;
	/*border: solid blue 1px; */
	z-index: 100;
}

.catlink {
	width: auto;
}
.catitem {
	background-color: transparent;
}
.catlink {
	background-color: transparent;
}

.projectlist {
	list-style: none;
	display: none;
	margin: 0;
	padding: 4px;
	padding-left: 20px;
	width: auto;
	position: absolute;
	top: 5px;
	left: 125px;
	z-index: 1999;
	border-left: 0;
	border-top: solid #eee 1px;
	border-right: solid #eee 1px;
	border-bottom: solid #eee 1px;
	border: solid #eee 1px;
	text-align: left;
	border-collapse: collapse;
	background-color: #99cccc;
	background-color: #99cccc;
	
}

.projectitem {
	border-collapse: collapse;
	position: relative;
	z-index: 1000;
/*	
	top: -5px;
	left: 15px;
*/
	padding-left: 30px;
	background-color: white;
	background-color: #99cccc;
	background-color: transparent;
	
}

.projectlink {
	position: relative;
	z-index: 1000;
	/* background-color: white; */
	color: #336666;
	background-color: #99cccc;
		
}

.projectlink:link, a.projectlink, .projectitem a.projectlink {
	color: #336666;
}

.projectlink:hover, a.projectlink:hover {
	color: white;
}

	
/* ***this rule controls the visibility (behavior of the dropdown list*** */
.catlist li:hover .projectlist,
.catitem:hover .projectlist,
.catitem_over .projectlist
{
	background-color: #99cccc;
	visibility: visible;
	display: block;
	z-index: 1000;
	

}	


