.box-modal {
	position: relative;
	width: 500px;
	padding: 16px;
	background: #fff;
	color: #3c3c3c;
	font: 14px/18px Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
	box-shadow: 0 0 0 6px rgba(153, 153, 153, .3);
	border-radius: 6px;
}
.box-modal_close { position: absolute; right: 10px; top: 6px; font-size: 11px; line-height: 15px; color: #999; cursor: pointer; }
.box-modal_close:hover { color: #666; }

/* extended by acmanich */
.box-modal_close {
    background-color: black;
    color: white;
}
.box-modal-header {
    background-color: black;
    margin: -16px -16px 8px -16px;
    padding: 4px 16px;
    color: white;
    border-radius: 6px 6px 0 0;
    font-weight: bold;
    height: 16px;
}
.box-modal-w300 {
  width: 300px;
}
.box-modal-w1000 {
  width: 1000px;
}