ul li.active{ /*IE6 hack- hide gooey effect from that browser*/
	_visibility: hidden; /*IE6 rule*/}

/* ######### Solid Block Menu CSS ######### */
ul.solidblockmenu{
	margin-top: -1px;
	margin-bottom:1em;
	padding: 0;
	list-style: none;
	position:relative;
	text-align: center; //set value to "left", "center", or "right"*/}

ul.solidblockmenu li{
	display: inline;}

ul.solidblockmenu li a{
	font: bold 14px Arial, Verdana, sans-serif;
	color:#000;
	padding: 4px 10px 2px 19px; /* top right bottom left - button padding*/
	margin-right: 20px; /*spacing between each menu link*/
	text-decoration: none;}

ul.solidblockmenu li.active{ /*style of LI that gets dynamically added to menu to create background effect*/
	position:absolute;
	width:0;
	border:3px solid;
	border-color:#006;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius:3px;
	-moz-box-shadow: 2px 2px 4px rgba(120,120,120,0.7);
	-webkit-box-shadow: 2px 2px 4px rgba(120,120,120,0.7);
	box-shadow: 2px 2px 4px rgba(120,120,120,0.7);
	background:#09f;
	background: -moz-linear-gradient(top, #09f, #fff);
	background: -webkit-gradient(linear, center top, center bottom, from(#09f), to(#fff));
	background: linear-gradient(top, #09f, #fff);}
