/*
-------------------------------
$.fn.modalbox()
@author: Alexander Guinness
-------------------------------
*/

.modalbox, .modalbox_wrap, .modalbox_content {
	overflow: hidden;
	position: relative;
}

.modalbox {
	background: url('./modalbox_bg.png') 0px 0px repeat;
	display: none;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: 1000000;
}

.modalbox_wrap {
	background: #F7F7F5;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	clear: both;
	min-height: 24px;
	padding: 13px 17px;
	width: auto;
}

.modalbox_content {
	clear: both;
	margin-top: 10px;
}

.modalbox_title {
	color: #5B5B5B;
	font: bold 15px/16px arial, helvetica, verdana, tahoma, serif;
	margin-top: 1px;
	padding-right: 18px;
}

.modalbox_close {
	background: url('./modalbox_close.gif') 0px 0px no-repeat;
	cursor: pointer;
	display: block;
	position: absolute;
	top: 11px;
	right: 10px;
	width: 15px;
	height: 15px;
}
