/* @author		JOOFORGE.com
 * @copyright	Copyright(C) 2010 Jooforge
 * @licence		GNU/GPL http://www.gnu.org/copyleft/gpl.html */

.icon-32-update {
	background: url(images/update.png);
}

.icon-32-report {
	background: url(images/report.png);
}

.icon-32-configuration {
	background: url(images/config.png);
}

/* Update */
#update {
	opacity: 0;
	filter: alpha(opacity=0);
	overflow: hidden;
	height: 0;
}

div.updated,
div.outdated,
div.error,
div.checking {
	padding-left: 30px;
	height: 24px;
	line-height: 24px;
	font-size: 13px;
}

div.updated {
	background: url(images/updated.png) no-repeat 0 50%;
}

div.outdated {
	background: url(images/outdated.png) no-repeat 0 50%;
}

div.error {
	background: url(images/error.png) no-repeat 0 50%;
}

div.checking {
	font-weight: bold;
	background: url(images/checking.gif) no-repeat 0 50%;
}

/* Form Elements */
input.cube_textfield,
textarea.cube_textfield {
	background: #fff url(images/textfield.png) repeat-x 0 0;
	border: 1px solid #bcbdbe;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	color: #555;
}

input.cube_textfield {
	padding: 2px 3px 1px;
	height: 15px;
}

textarea.cube_textfield {
	padding: 3px;
}

input.cube_textfield:focus,
textarea.cube_textfield:focus {
	border-color: #4B90CF;
	background-color: #fff;
	color: #222;
}

/* Modalbox */
#mb_overlay {
	position: fixed;
	margin: auto;
	top: 0;	left: 0;
	width: 100%; height: 100%;
	z-index: 9999;
	background: #000;
}

#mb_window {
	width: 100%;
	position: fixed;
	z-index: 10000;
	top: 0; left: 0;
	font-size: 13px;
}

#mb_frame {
	background: #efefef;
	color: #000;
	margin: 0 auto;
	-moz-box-shadow: 0 0 64px #000;
	padding-bottom: 4px;
	overflow: hidden;
	-webkit-box-shadow: 0px 0px 64px  #000000;
	-moz-box-shadow: 0px 0px 64px #000000;
	box-shadow: 0px 0px 64px #000000; 
	-webkit-border-bottom-right-radius: 4px;
	-webkit-border-bottom-left-radius: 4px;
	-moz-border-radius-bottomright: 4px;
	-moz-border-radius-bottomleft: 4px;
	border-bottom-right-radius: 4px;
	border-bottom-left-radius: 4px; 
}

#mb_header {
	background: #ddd;
	border-bottom: 1px solid #ccc;	
	position: relative;
	font-family: "Lucida Grande", Arial, sans-serif;
	font-weight: bold;
	text-shadow: #fff 0 1px 0;
	padding: 6px 9px;
	margin: 0;
	text-align: left;
	color: #000;
}

#mb_close {
	float: right;
	text-decoration: none;
	color: #777;
}

#mb_close:hover {
	background: none;
	color: #000;
}

#mb_content {
	border-top: 1px solid #f9f9f9;
	padding: 6px 9px;
	overflow: hidden;
}

#mb_content iframe {
	border: 0;
	width: 100%;
}

#mb_content iframe body {
	background: none;
	margin: 0;
}