/*
	Copyright (c) 2007-2008 JB Interactive Pty. Ltd.
	All Rights Reserved
	http://www.jbinteractive.com.au/
*/


.dialog {
	color: #333;
	text-shadow: #fff 0 1px 1px;
}

.dialog h1 {
	font-size: 16px;
	margin-bottom: 16px;
	text-align: center;
	font-weight: lighter;
}

#dialog_container {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.6) 0 5px 16px;
	-moz-box-shadow: rgba(0, 0, 0, 0.6) 0 5px 16px;
	background: url(/img/dialog/dialog.png) repeat-x #D8D8D8;
}

#overlay {
	min-width: 800px;
	min-height: 600px;
}

.dialog {
	position: absolute;
	left: 18px;
	right: 18px;
	top: 18px;
	bottom: 18px;
}


.dialog input[type="text"], input[type="password"], label.hover {
	display: block;
	font-size: 14px;
	width: 248px;
	padding: 4px;
}

.dialog input[type="text"], input[type="password"], .input, textarea {
	border: 1px solid #a7a7a7;
	border-top-color: #7a7a7a;
	border-bottom-color: #bababa;
	-webkit-box-shadow: #fff 0 1px 1px;
	-moz-box-shadow: #fff 0 1px 1px;
	background: url(/img/layout/controls.png) repeat-x 0 -520px #fff;
}

.dialog input[type="text"][disabled], input[type="password"][disabled] {
	border-color: #d6d6d6;
	border-top-color: #b8b8b8;
	border-bottom-color: #e9e9e9;
	background-image: none;
}

.dialog input[type="checkbox"] {
	margin-right: 4px;
}

.dialog label {
	border: 1px solid transparent;
}

.dialog label.checkbox_label {
	font-size: 12px;
	line-height: 120%;
}

.dialog label.hover {
	position: absolute;
	top: 0;
	left: 0;
	color: #777;
	text-shadow: #fff 0 1px 1px;
	padding-left: 8px;
	width: 247px;
}

.dialog label[disabled] {
	opacity: 0.4;
}

.dialog .form_field {
	margin-bottom: 16px;
	position: relative;
}

#overlay_backdrop {
	background: url(/img/dialog/overlay_backdrop.png);
}

.dialog_buttons {t
	overflow: hidden;
}

.divider {
	height: 0;
	border-top: 1px solid #bababa;
	border-bottom: 1px solid #fff;
	margin-bottom: 16px;
	clear: both;
}

.dialog_content {
	position: absolute;
	left: 18px;
	right: 18px;
	top: 18px;
	bottom: 18px;
}

.dialog_content.buttons {
	bottom: 64px;
}

.dialog img {
	display: block;
	margin: 0 auto 18px;
}

.dialog p {
	font-size: 12px;
	line-height: 18px;
	margin-bottom: 1em;
	text-align: center;
}

.dialog_close {
	width: 30px;
	height: 0;
	padding-top: 30px;
	overflow: hidden;
	position: absolute;
	top: -15px;
	left: -15px;
	background: url(/img/dialog/close.png) no-repeat;
	cursor: pointer;
	outline: none;
}

#forgotten_link {
	color: #777777;
	display: block;
	float: left;
	font-size: 12px;
	line-height: 32px;
}

.dialog .button, .dialog .button_inner, .dialog .button .label {
	display: block;
	float: left;
	background: url(/img/layout/controls.png) no-repeat;
	cursor: pointer;
}

.dialog .button {
	position: relative;
}

.dialog .button .label {
	background-repeat: repeat-x;
}

.dialog a.button.left, .dialog a.button.center {
	float: left;
	margin-right: 16px;
}

.dialog a.button.right {
	float: right;
	margin-left: 16px;
}


/* -- default buttons -- */

.dialog .button, .dialog .button_inner, .dialog .button .label {
	height: 32px;
}

.dialog .button {
	background-position: left -232px;
	padding-left: 16px;
	color: #333;
}

.dialog .button_inner {
	background-position: right -296px;
	padding-right: 16px;
}

.dialog .button .label {
	background-position: left -264px;
	line-height: 22px;
	padding: 1px 4px;
	font-size: 14px;
	height: 30px;
	line-height: 30px;
	text-shadow: #fff 0 1px 1px;
}

.dialog .button:active {
	background-position: left -328px;
}

.dialog .button:active .button_inner {
	background-position: right -392px;
}

.dialog .button:active .label {
	background-position: left -360px;
}

/* -- disabled button -- */

.dialog a.button.disabled {
	opacity: 0.7;
	color: #777;
	cursor: default;
}

