/* ============== Dropdown menu styles ================= */
/* appearance definition - defines the appearnce of dropdown elements */

/* outer containers  (UL) */
.sectionlist {
	height: 30px;
	margin: 0 0 0 25px;
	padding-left: 0;
	background-color: transparent;
}

.pagelist {
	background: #fff;
	border-right: 1px solid #999;
	border-bottom: 1px solid #999;
	border-left: 8px solid #60C2F0; /* bright blue */
	width: auto; 
	text-align: left;
	margin: 3px 0 0 0;
	padding: 5px;
	width: auto;
}

/*section items and links  (item = LI, link = A) */
.sectionitem,
.sectionitem_over
{
/*	margin-top: 3px; */
	margin-left: 15px;
	padding: 3px;
/*	padding-top: 0px; */
	width: auto;
	white-space: nowrap;
	color: white;
	font-size: 1em;
	text-align: center;
	text-transform: uppercase;

}

#sectionitem_selected {
/*	border: solid white 1px; */
color: white;

}

.sectionlink {
	white-space: nowrap;
	width: auto;
	text-decoration: none;
	margin: 0;
	padding: 0;
	border: 0;
	font-weight: bold;
}

a.sectionlink:link, 
a.sectionlink:visited 
{
	color: #fff;
}

a.sectionlink:hover {
	color: #60C2F0; /* bright blue */
}

/* appearance of selected sections */
a#sectionlink_selected:link,
a#sectionlink_selected:visited
 {
	color: #afdffc; /* light blue */
	/*color: #51b5e4;*/ /* medium blue */
	font-weight: bold;
}

a#sectionlink_selected:hover {
	color: #60C2F0; /* bright blue */
	}

/* page items and links */
.pageitem {
	background: transparent;
	color: #444;
	width: auto;
	text-align: left;
/*	border: solid #869cbf;
	border-width: 1px 1px 0 1px; 
	padding: 1px; */
	margin: 0;
}

#pageitem_selected {
	/*border: solid gray 1px;*/
}

.pagelink { 
	display: block;
	background: transparent;
	color: black;
	width: auto;
	padding: 0;
	margin: 0;
	font-size: .9em;
	border: 0;
	text-transform: none;
}

#pagelink_selected {
	background: #afdffc; /* light blue */
	color: #031746;
	padding: 2px 2px 2px 5px;
	text-transform: none;
}

.pagelink:link,
.pagelink:active,
.pagelink:visited
{ 
	color: black;
	text-decoration: none;
}	
		
.pagelink:hover {
	color: #1940A0; /* medium blue */
}
	

	
