/*
	css for application framework

	(c) jlx@seznam.cz 2007
*/

@IMPORT url("app_wysiwyg.css");

#modalBox {
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 2000;
}

#transparentBox {
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 1000;
	filter: alpha(opacity=70);
	opacity: 0.7;
	background-color: #000000;
}

/* -------------------------------------------------------------------------- */

#app_message {
	border: 2px solid brown;
	width: 70%;
	padding: 20px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	background-color: #CFD0D2;
}

#app_message .app_main_message {
	font-size: 20px;
}

#app_message img {
	float: left;
}

/* -------------------------------------------------------------------------- */

.app_center {
	text-align: center;
}

/* ---------------------------- okynka -------------------------------------- */

#messageBox {
	font-size: 14px;
	position: absolute;
	border: 2px solid #000000;
	background-color: #FFFFFF;
	border-radius: 5px;
	box-shadow: 8px 8px 5px #444444;
}

#messageBox .header {
	font-weight: normal;
	margin: 0;
	background-color: #25252D;
	color: #FFFFFF;
	border-bottom: 1px solid #000;
	padding: 8px 0 8px 10px;
	cursor: default;
}

#messageBox p {
	font-weight: bold;
	width: 100%;
	padding: 10px 0px 10px 0px;
	text-align: center;
}

#btnContainer {
	text-align: center;
	margin-bottom: 10px;
}

#messageBox #btn {
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 12px;
	text-align:center;
	color: #000000;
	padding: 2px 10px 2px 10px;
	margin-right: 5px;
	border: 1px dashed #000000;
	background: url(../images/button.png);
}

#messageBox #btn:active {
	background: url(../images/button_active.png);
}

#messageBox p form input[type=text] {
	width: 350px;
	float: none;
	margin: 0px auto 0px auto;
}

/* =========================== error report ================================= */

#fw_content {
	width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.app_error {
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 12px;
}

.app_error h1 {
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 18px;
}

.app_error div {
	border: 1px solid black;
	background-color: #EEEEEE;
	padding: 10px;
}

/* -------------------------------------------------------------------------- */

.invisible {
	visibility: hidden;
}

.hidden {
	display: none;
}

/* ----------------------- redirect & input error --------------------------- */

#redirect_container {
	background-color: #CFD0D2;
	border: 1px solid #D0CFD2;
	text-align: center;
	padding: 20px;
	margin: 150px auto 50px auto;
	width: 850px;
	border: 1px solid #FDC056;
}

#redirect_content {
	padding: 10px;
}

#redirect_content button {
	padding: 2px 10px 2px 10px;
}

#redirect_content button:active {
}

.redirect_message {
	padding: 10px;
	height: 100px;
}

.main_message {
	border: 2px solid #2A2A2A;
	padding: 10px;
	width: 500px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/* ================================ parser ================================== */

.app_link {
	color: #0000FF;
	text-decoration: underline;
}

.app_img {
	border: 1px solid #c8c8c8;
	padding: 5px;
	margin: 5px;
	background-color: #FFFFFF;
}

.app_cleaner {
	clear: both;
}

/* ======================= templater exception ===============================*/

.debug pre {
	margin: 0px;
}

.debug pre.highlight {
	background-color: #DD0000;
	font-weight: bold;
	color: #FFFFFF;
}

.debug pre span {
	color: #000000;
	background-color: #E6E6E6;
}