/* 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 (via jqModal.js). */
	
.jqmWindow {
    display: none;
    
    position: fixed;
    top: 17%;
    left: 50%;
    
    margin-left: -200px;
    width: 400px;
    
    background-color: #e4e3db;
    color: #333;
    border: 1px solid black;
    padding: 20px 30px;
}

.jqmWindow iframe{
	margin: 0 auto;
	width: 100%;
	height: 450px;
}

.jqmOverlay { background-color: #000; }

/* Background iframe styling for IE6. Prevents ActiveX bleed-through (<select> form elements, etc.) */
* iframe.jqm {position:absolute;top:0;left:0;z-index:-1;
	width: expression(this.parentNode.offsetWidth+'px');
	height: expression(this.parentNode.offsetHeight+'px');
}

/* 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');
}

.modalcloser {
	float:right;
	margin-top: 5px;
	opacity: 0.6;
}

.modalcloser:hover, .modalcloser:focus {
	background:none;
	opacity: 1;
}


/*drag n resizer */
.jqHandle {
   background: red;
   height:15px;
}

.jqDrag {
  width: 100%;
  cursor: move;
}

.jqResize {
   width: 15px;
   position: absolute;
   bottom: 0;
   right: 0;
   cursor: se-resize;
}

.jqDnR {
    z-index: 3;
    position: relative;
    
    width: 180px;
    font-size: 0.77em;
    color: #618d5e;
    margin: 5px 10px 10px 10px;
    padding: 8px;
    background-color: #EEE;
    border: 1px solid #CCC;
}

/* FORMS INSIDE MAILER MODAL WINDOW */
#mailer input[type=text],
#mailer textarea{
	border: 1px solid #aaa;
	background:#FFF;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	line-height: 21px;
	margin-bottom: 0.7em;
	color:#666;
	padding: 4px;
}

#mailer textarea {
	font-size: 12px;
	line-height: 18px;
}

#mailer input[type=text]:focus,
#mailer textarea:focus{
	border:1px solid #000;
	color:#000;
	}

#mailer .email {
	width: 80%;
}

#mailer .betreff,
#mailer .message {
	width: 390px;
}

#mailer label {
	font-weight: bold;
}

.right {
	text-align:right;
}