/* styles needed for dialog box */

/* dialog box */
#dialog{
	display: none;
	z-index: 999;
	position: absolute;
	background-color: #EEEEEE;
	padding: 0px;
	border-width: 2px 2px;
	border-color: #D2AE06;
	border-style: solid;
	text-align: center;
	overflow: hidden;
}

/* dialog buttons */
#dialog input{
	color: white;
	background-color: #6A93D4;
	border: 1px #ccc solid;
	width: 65px;
	height: 20px;
	font-size: 10px;
}

/* shaded div */
#shade{
	z-index: 998;
	display: none;
	position: absolute;
	background-color: black;
	width: 100%;
	height: 100%;
}
