



/*Strip the ul of padding and list styling*/
#Pageindex ul {
	list-style-type:none;
	margin:0;
	padding:0;
	position1: absolute;
 
}

/*Create a horizontal list with spacing*/
#Pageindex li {
	display:inline-block;

	margin-right: 1px;
margin:0;
}

/*Style for menu links*/
#Pageindex li a {
	display:block;

	padding: 0px 10px;
	height:30px;
	line-height:30px;
	text-align: center;
	
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size:20px;
	color: white;

	text-decoration: underline;
}

#Pageindex a {
	border-radius: 8px 8px 8px 8px;
	background1:grey;
}

#Pageindex a:link { COLOR: white;  TEXT-DECORATION: underline;}
#Pageindex a:visited { COLOR: white }
#Pageindex a:hover { COLOR: gray; background:silver;border1: 0px solid #000000; TEXT-DECORATION: underline;}
#Pageindex a:active  {  background:yellow; } 
#Pageindex .secondlevel {font-style: italic;}


/*Hover state for top level links*/
li:hover a {
	background: #19c589;
}


/*Style for dropdown links*/
#Pageindex li:hover ul a {
	background: #f3f3f3;
	color: #2f3036;
	height: 30px;
	line-height: 30px;

}



/*Hover state for dropdown links*/
#Pageindex li:hover ul a:hover {
	background: #19c589;
	color: #fff;
}

/*Hide dropdown links until they are needed*/
#Pageindex li ul {
	display: none;
}

/*Make dropdown links vertical*/
#Pageindex li ul li {
	display: block;
	float: none;
}

/*Prevent text wrapping*/
#Pageindex li ul li a {
	width: auto;
	min-width: 100px;
	padding: 0px 20px;
}

/*Display the dropdown on hover*/
#Pageindex ul li a:hover + .hidden, #Pageindex .hidden:hover {
	display: block;
}

/*Style 'show menu' label button and hide it by default*/
#Pageindex .show-menu {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size:20px;
	text-decoration: none;
	color: #fff;
	background: #19c589;
	text-align: center;
	padding: 5px 0px;
	display: none;
}

/*Hide checkbox*/
#Pageindex input[type=checkbox]{
    display: none;
    -webkit-appearance: none;
}

/*Show menu when invisible checkbox is checked*/
#Pageindex input[type=checkbox]:checked ~ #menu{
    display: block;
}


#Pageindex a.highlight_current_page{
	color:greenyellow;	
}
/*Responsive Styles*/

@media screen and (max-width : 610px){
	/*Make dropdown links appear inline*/
	#Pageindex ul {
		position: static;
		display: none;
	}
	/*Create vertical spacing*/
	#Pageindex li {
		margin-bottom: 1px;
	}
	/*Make all menu links full width*/
	#Pageindex ul li, li a {
		width: 90%;
		margin:auto;
		padding:0px;

	}
	/*Display 'show menu' link*/
	#Pageindex .show-menu {
		display:block;
	}


	#Pageindex {
	height:auto;
	background:grey;
	}

}

@media screen and (max-width: 1000px) {	
	
	#Pageindex li a {
	padding: 0px 10px;
	font-size:20px;}
	
}
@media screen and (max-width: 840px) {	
	
	#Pageindex li a {
	padding: 0px 6px;
	font-size:18px;}
	
}

@media screen and (max-width: 700px) {	
	
	#Pageindex li a {
	padding: 0px 4px;
	font-size:17px;}
	
}


@media screen and (max-width: 640px) {	
	
	#Pageindex li a {
	padding: 0px 4px;
	font-size:16px;}
	
}