/* Vertical Nav Snippet */

/* Main Container for Vertical Nav */

.verticalnav {
	display: block;
	position: relative;
	margin-top: 23px;
	margin-bottom: 15px;
	margin-left: 15px;
}

/* The individual nav blocks  */
/* You can edit everything but the first two. Leave as "block" and "relative" */

.extranav {
	display: block;
	position: relative;
	width: 170px;
	height: 20px;
	margin-top: -23px;
	margin-bottom: 5px;
	padding-left: 0px;
	padding-bottom: 0px;
	padding-top: 0px;
	text-align: left; /* text align can be left or right */
	font-size: 12px;
}

/* The style when the text is linked */
/* You can edit everything but the first two. Leave as "block" and "relative" */

.extranav a { 
	display: block;
	postition: relative;
	width: 162px;
	height: 20px;
	padding-left: 8px;
	padding-bottom: 3px;
	text-decoration: none;
	background: #d2cfe7;
	border-bottom: 1px solid #888;
}

/* The style when a link is hovered over with the mouse cursor */
/* You can edit everything */

.extranav a:hover {
	background: #E7E7F3;
	color: darkred;
	text-shadow: #666 2px 2px 3px; 
/* what this means from left to right: shadow color, horizontal offset of shadow, vertical offset of shadow, blur amount of shadow */
}

/* Title above Nav Block - you can remove this if you remove the reference for a title (first line of HTML code) */
.verttitle {
	font-size: 16px;
}

/* End Vertical Nav Snippet */