/* css only for the pop up window */

#popupcontainer { 
position: absolute; 
left: 50%; 
top: 50%; 
width: 400px; 
height: 200px; 
margin: -100px 0 0 -200px; 
background-color: black;
text-align: center;
}

#popupbg{
	position: fixed;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image:url('graypix.png');
	display: none;
}

#popupcontainer ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: inherit;
}
#popupcontainer li{
	background-color: black;
	border-color: white;
	border-style: solid;
	border-width: 1px;
	color: white;
	display: inline;
	padding: 10px;
	margin-right: 20px;
}

#popupcontainer p{
	padding: 0;
	padding-left: 30px;
	padding-right: 30px;
	color: white;
}

#popupcontainer li:hover{
	color: black;
	background-color: white;
}

#popupcontainer li:hover a{
	color: black;
	background-color: white;
}

#popupcontainer a:link {color: white; text-decoration: none; }
#popupcontainer a:visited {color: white; text-decoration: none; }
#popupcontainer a:hover {color: white; text-decoration: underline; }
#popupcontainer a:active {color: white; text-decoration: underline; }


