.selectedanchor{ /*CSS class that gets added to the currently selected anchor link (assuming it's a text link)*/
	/* background-image: url('/web/javax.faces.resource/images/navHover.jpg.xhtml'); */
	background-color: #00225a;
}


/* ######### Default class for drop down menus ######### */

.anylinkcss{
	position: absolute;
	left: 0;
	top: 0;
	visibility: hidden;
	
	font-size: 12px;
	font-family: arial, sans-serif;
	font-weight: bold;
	background-color: #f0f0f0;
	z-index: 100;
	padding-right: 15px;
	
	border-top: 1px solid #cccccc;
	border-radius: 0px 0px 4px 4px;
	
	/* IE10 Consumer Preview */ 
	background-image: -ms-linear-gradient(top, #f0f0f0 80%, #C8C8C8 100%);

	background-image: -webkit-gradient(linear,left bottom,left 15px,from(#c8c8c8),to(#f0f0f0));
	background-image: -o-linear-gradient(bottom,#c8c8c8 0,#f0f0f0 15px);
	background-image: -moz-linear-gradient(bottom,#c8c8c8 0,#f0f0f0 15px);
	background-image: -webkit-linear-gradient(bottom,#c8c8c8 0,#f0f0f0 15px);
	background-image: linear-gradient(bottom,#c8c8c8 0,#f0f0f0 15px);
	
	-o-box-shadow: 0 0 5px #646464;
	-moz-box-shadow: 0 0 5px #646464;
	-webkit-box-shadow: 0 0 5px #646464;
	box-shadow: 0 0 5px #646464;
}


.anylinkcss ul{
	list-style-type: disc;
	padding-left:25px; /*works for firefox*/
	margin-left: 25; /*works for id*/
	margin-top: 5;
}

.anylinkcss li{
	padding-bottom: 8px;
}

.anylinkcss ul li a{
	color: #333333;
	text-decoration: none;
}

.anylinkcss a:hover{ /*hover background color*/
	color: #6A87AA;
	text-decoration: underline;
}

/* ######### Alternate multi-column class for drop down menus ######### */

.anylinkcsscols{
	position: absolute;
	left: 0;
	top: 0;
	visibility: hidden;
	border-top: 1px solid #cccccc;
	font-size: 12px;
	font-family: arial, sans-serif;
	font-weight: bold;
	background-color: #f0f0f0;
	z-index: 100;
	padding: 15px 15px 15px 0;
	
	border-radius: 0px 0px 4px 4px;
	
	/* IE10 Consumer Preview */ 
	background-image: -ms-linear-gradient(top, #f0f0f0 80%, #C8C8C8 100%);
	
	background-image: -webkit-gradient(linear,left bottom,left 15px,from(#c8c8c8),to(#f0f0f0));
	background-image: -o-linear-gradient(bottom,#c8c8c8 0,#f0f0f0 15px);
	background-image: -moz-linear-gradient(bottom,#c8c8c8 0,#f0f0f0 15px);
	background-image: -webkit-linear-gradient(bottom,#c8c8c8 0,#f0f0f0 15px);
	background-image: linear-gradient(bottom,#c8c8c8 0,#f0f0f0 15px);
	
	-o-box-shadow: 0 0 5px #646464;
	-moz-box-shadow: 0 0 5px #646464;
	-webkit-box-shadow: 0 0 5px #646464;
	box-shadow: 0 0 5px #646464;
}

.anylinkcsscols .column{
	padding-left: 10px;
	width: 180px;
	float: left;
}

.anylinkcsscols .columnMenu{
	padding-left: 15px;
	padding-right: 5px;
    vertical-align: top;
	width: 180px;
	float: left;
	border-left: 1pt dotted #ccc;
}
.anylinkcsscols .columnMenu:first-child{
	border-left: none;
}
.anylinkcsscols	.columnMenu .subhead{
	font-size: 13px;
	color: #6A87AA;
}

.anylinkcsscols .column ul, .anylinkcsscols .columnMenu ul{
	color: #333333;
	list-style-type: disc;
	padding-left:15px; /*works for firefox*/
	margin-left: 15; /*works for id*/
	margin-bottom: 0;
}

.anylinkcsscols .column ul{
	margin-top: 0;
}

.anylinkcsscols .column li, .anylinkcsscols .columnMenu li{
	padding-bottom: 8px;
}

.anylinkcsscols .column li:LAST-CHILD, .anylinkcsscols .columnMenu li:LAST-CHILD{
	padding-bottom: 0;
}

.anylinkcsscols .column ul li a, .anylinkcsscols .columnMenu ul li a{
	color: #333333;
	text-decoration: none;
}

.anylinkcsscols .column  ul li a:hover, .anylinkcsscols .columnMenu ul li a:hover{ /*hover background color*/
	color: #6A87AA;
	text-decoration: underline;
}
/* ######### class for shadow DIV ######### */


.anylinkshadow{ /*CSS for shadow. Keep this as is */
	position: absolute;
	left: 0;
	top: 0;
	z-index: 99; /*zIndex for shadow*/
	background: black;
	visibility: hidden;
	border-radius: 0px 0px 4px 4px;
}