/* form style */
#myform {
        background:#f7f7f7;    
        padding:15px 20px; 
	color:#eee;
	width:400px;
	margin:0 auto;
        border: 1px solid #557650;
	position:relative;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;	
} 

/* nested fieldset */
#myform fieldset {
	border:0;
	margin:0;
	padding:0;
        background:#f7f7f7 scroll 215px 40px;    
}

/* typography */
#myform h3 	{ color:#eee; margin-top:0px; }
#myform p 	{ font-size:11px; }


/* input field */
#myform input {
	border:1px solid #444;
	background-color:#f1f1f1;
	padding:5px;
	color:#444;
	font-size:12px;
	
	/* CSS3 spicing */
	/*text-shadow:1px 1px 1px #000;*/
	-moz-border-radius:4px;
	-webkit-border-radius:4px;	
}

#myform input:focus 		{ color:#fff; background-color:#777; }
#myform input:active 	{ background-color:#888; }

#myform textarea {
	border:1px solid #444;
	background-color:#f1f1f1;
	padding:5px;
	color:#444;
	font-size:12px;
	
	/* CSS3 spicing */
	/*text-shadow:1px 1px 1px #000;*/
	-moz-border-radius:4px;
	-webkit-border-radius:4px;	
}

#myform textarea:focus 		{ color:#fff; background-color:#777; }
#myform textarea:active 	{ background-color:#888; }


#myform select {
	border:1px solid #444;
	background-color:#f1f1f1;
	padding:5px;
	color:#444;
	font-size:12px;
	
	/* CSS3 spicing */
	/*text-shadow:1px 1px 1px #000;*/
	-moz-border-radius:4px;
	-webkit-border-radius:4px;	
}

#myform select:focus 		{ color:#fff; background-color:#777; }
#myform select:active 	{ background-color:#888; }



/* button */
#myform button {
	outline:0;
	border:1px solid #666;	
        cursor: pointer;
}


/* error message */
.error {
	height:15px;
	background-color:#FFFE36;
	font-size:11px;
	border:1px solid #E1E16D;
	padding:4px 10px;
	color:#000;
	display:none;	
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px; 
	-moz-border-radius-bottomleft:0;
	-moz-border-radius-topleft:0;	
	-webkit-border-bottom-left-radius:0; 
	-webkit-border-top-left-radius:0;
	
	-moz-box-shadow:0 0 6px #ddd;
	-webkit-box-shadow:0 0 6px #ddd;	
}

.error p {
	margin:0;		
}

/* field label */
label {
	display:block;
	font-size:11px;
	color:#444;
        height: 45px;
}

#terms label {
	float:left;
}

#terms input {
	margin:0 5px;
}

/* columns style */
#myform {
width:500px;
}
#myform fieldset {
background-image:none;
float:left;
width:250px;
}
#myform label {
display:block;
font-size:11px;
margin-top:20px;
}
#myform label input {
display:block;
width: 200px;
}
.clear {
clear:both;
height:15px;
}
.error {
-moz-border-radius:4px 4px 4px 4px;
margin:0 0 2px;
padding:2px 6px;
}

.error em {
	display:block;
	width:0;
	height:0;
	border:10px solid;
	border-color:#FFFE36 transparent transparent;

	/* positioning */
	position:absolute;
	bottom:-17px;
	left:60px;
}




/*-------------------------------------------------------------------------------------------*/
/* Overlay Fenster für Edit Funktion */
/*-------------------------------------------------------------------------------------------*/
#overlay {
	background-image:url(common/transparent.png);
	color:#efefef;
	height:450px;
}

/* container for external content. uses vertical scrollbar, if needed */
div.contentWrap {
	height:441px;
	overflow-y:auto;
}