/* jqModal base Styling courtesy of;
  Brice Burgess <bhb@iceburg.net> */

/* The Window's CSS z-index value is respected (takes priority). If none is supplied,
  the Window's z-index value will be set to 3000 by default (in jqModal.js). You
  can change this value by either;
    a) supplying one via CSS
    b) passing the "zIndex" parameter. E.g.  (window).jqm({zIndex: 500}); */
  
.jqmWindow {
	display: none;

	position: fixed;
	top: 35%;
	left: 50%;

	margin-left: -205px;
	width: 410px;

	background-color: #FFFFFF;
	color: #000000;
	border: 0px;
	padding: 0px;

	-webkit-border-radius: 10px;
	border-radius: 10px; 
}

.jqmWindow div.header {
	background: url('jqmodal/jqmodal_header_bg.png') 0 0 repeat-x;
	height: 55px;	
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 20px;
	padding-bottom: 5px;
	-webkit-border-radius: 10px 10px 0px 0px;
	border-radius: 10px 10px 0px 0px; 
	color: #ffffff;
}


.jqmWindow div.header div.content,
.jqmWindow div.body div.content,
.jqmWindow div.footer div.content{
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}

.jqmWindow div.body div.content {
	padding-top: 10px;
}

.jqmWindow div.header div.logo {
	float: right;
	width: 82px;
	height: 20px;
	margin-top: -3px;
	margin-right: 20px;
	background: no-repeat url('jqmodal/jqmodal_teszvesz_logo.png');
}

.jqmWindow div.header div.title {
	font-size: 22px;
	font-weight: bold;
}

.jqmWindow div.body {
	background-color: #ffffff;
	padding: 5px;
	-webkit-border-radius: 0px 0px 10px 10px;
	border-radius: 0px 0px 10px 10px; 
}

.jqmWindow div.body a,
.jqmWindow div.footer a{
	color: #156394;
}

.jqmWindow a.jqmClose {
	position: absolute;
	width: 19px;
	height: 19px;
	right: 5px;
	top: 5px;
	background: no-repeat url('jqmodal/jqmodal_close.png');
}

.jqmWindow div.footer {
	background-color: #d9e9ff;
	padding: 5px;
	border-top: 1px solid #BBC9D4
}
.jqmWindow div.footer-end {
	height: 10px;
	background-color: #d9e9ff;
	-webkit-border-radius: 0px 0px 10px 10px;
	border-radius: 0px 0px 10px 10px; 
}

.jqmWindow input.fullwidth-text {
	-webkit-border-radius: 10px;
	border-radius: 10px; 
	border: 1px solid #B1B1B1;
	width: 100%;
	height: 25px;
	margin-bottom: 10px;
	padding-left: 5px;
	padding-right: 5px;
}

.jqmWindow input.default-text {
	color: #B1B1B1;
}

.jqmWindow .larger-text{
	font-size: 16px;
}

.jqmWindow div.float-left{
	float: left;
}

.jqmWindow div.float-right{
	float: right;
}

.jqmWindow div.clear{
	clear: both;
}

.jqmWindow input.submit-login,
.jqmWindow input.unregistered-upload,
.jqmWindow input.register {
	padding: 0px;
	margin: 0px;
	border: 0px;
	cursor: pointer;
}

.jqmWindow input.submit-login {
	width: 121px;
	height: 31px;
	background: url('jqmodal/jqmodal_login.png');
}

.jqmWindow input.unregistered-upload {
	width: 242px;
	height: 51px;
	background: url('jqmodal/jqmodal_unregistered_upload.png');
}

.jqmWindow input.register {
	width: 121px;
	height: 31px;
	background: url('jqmodal/jqmodal_register.png');
}

.jqmWindow .error-message {
	color: red;
}

.jqmWindow .align-center {
	text-align: center;
}

.jqmWindow .hidden {
	display: none;
}

.jqmOverlay { 
	background-color: #000000; 
}

/* Fixed posistioning emulation for IE6
     Star selector used to hide definition from browsers other than IE6
     For valid CSS, use a conditional include instead */
* html .jqmWindow {
     position: absolute;
     top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
}

.jqmWindow div.conditions {
	font-size: 10px;
}

.jqmWindow div.register-title {
	font-size: 14px;
	margin-bottom: 10px;
}
