div.overdiv { 
	filter: alpha(opacity=70);
    -moz-opacity: .70;
    opacity: .70;
    background-color: #000;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%; height: 100%; 
}

div.square { 
	position: absolute;
    top: 200px;
    left: 200px;
    background-color:#fff;
    border:2px solid #999;
    height:auto;
	min-height:100px;
	_height:100px;
    width: 450px; 
	padding:0 0 15px 0
}

div.square strong {
	color:#000;
}
        
div.square div.msg { 
	color: #000;
    font-size: 1em;
    padding: 15px; 
}

div.square button.agree {
	background-color:#229a36;
	color:#fff;
	font-weight:bold;
	border:1px solid #229a36;
	margin:0 0 0 15px;
	cursor:pointer;
	display:inline-block;
	padding:0;
	width:208px;
}

div.square button.disagree {
	background-color:red;
	color:#fff;
	font-weight:bold;
	border:1px solid red;
	margin:0 0 0 10px;
	cursor:pointer;
	display:inline-block;
	padding:0;
	width:202px;
}
                             
div.square button.agree:hover {
	border:1px solid #229a36;
	background-color:#fff;
	color:#229a36;
} 

div.square button.disagree:hover {
	border:1px solid red;
	background-color:#fff;
	color:red;
}                    
                             
