/* styling for error and message boxes: */

#msg_holder {
	position:absolute;
	top:25%;
 	left:50%;
	z-index:1000;
	margin-left:-200px;
}

button {
	font: 10pt verdana;
	cursor: pointer;
}

.msg_box {
	margin: 0px;
	padding: 0px;
	background-color: #FFF;
	width: 400px;
	text-align:left;
	position:relative;
	-height:170px;
}

#errors {
	border: 1px solid #B00;
}

#messages {
	border: 1px solid #23650B;
}


.msg_box h1 {
	font-size: 16px;
	line-height:20px;
	height:20px;
	font-weight: bold;
	margin: 0px;
	padding: 5px;
	color: #FFF;
}

#errors h1 { background-color: #F55; }
#messages h1 { background-color: #2E840E; }

.msg_box div {
	margin: 0px;
	padding: 5px;
	background-color: #FFF;
	color: #333;
}


.dropshadow {
	position:absolute;
	width:100%;
	height:100%;
	z-index:-1;
	margin:10px 0px 0px 9px;
	
	/* thanks, IE6: */
	-height:170px;
	-width:400px;
}

.dropshadow div {
	position:absolute;
	width:50%; height:50%;
	background-repeat:no-repeat;
}

div {
	behavior: url('/iepngfix_gif.htc');
}

.dropshadow div.n { top:0px; }
.dropshadow div.s { bottom:0px; }
.dropshadow div.e { right:0px; }
.dropshadow div.w { left:0px; }
