/*
 * Generic pop-up panel styles
 */

/* Fade-in/fade-out grey background mask */
.bgMask
{
	position: absolute;
	background-color: #222222;
	filter: alpha(opacity=0);
	opacity: 0;
	z-index: 1;
}

/* Pop-up panel properties */
.popUp
{
	position: absolute;
	background-color: #ffffff;
	border: 2px solid #000000;
	padding: 8px 8px 8px 8px;
	z-index: 2;
	cursor: pointer;
}

.popUp:focus
{
	outline: none;
}


