/*                                                                 
   Because IE MAC seems to ignore class name differences after the 
   6th letter (e.g. get confused by "module" and "moduleFilter" we 
   need to establish a naming scheme for classes:                  
                                                                   
   mdXyz: a style for a a:r module named arXyz                     
   md_xyz: a style for a function used in several modules. "xyz"   
     tells us what this style is being used for, e.g. "md_filter"  
                                                                 */

/*                                                */
/* tags                                           */
/*                                                */

BODY, TD, DIV, UL, A {
	font: normal 11px Verdana, Arial, Helvetica, sans-serif;
	color: #333;
}
BODY {
	margin: 0;
	padding: 0;
	background-color: #fff;
}
A { 
	text-decoration: none;
	color: #999;
	font-size: inherit;
}
A:hover {text-decoration: underline; }

/*                                                */
/* forms                                          */
/*                                                */
FORM { margin-top: 15px; margin-bottom: 0px; }
INPUT, SELECT, TEXTAREA {
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 11px;
	margin-bottom: 2px;
}
INPUT.radio { vertical-align: middle; }
HR {
	background: #743958;
	color: #743958;
	border: none;
	height: 1px;
}

/* standard form fields for content, real widths are "width"+ border */
.formS, .formM, .formL, .formXL
{ padding: 2px 0px; } /* IE adds padding to width, so we remove padding here */
.formS { width: 63px; }
.formM { width: 117px; }
.formL { width: 171px; }
.formXL { width: 243px; }

INPUT.submit {
	font-weight: bold;
	color: #000;
	background-color: ButtonFace;
}

/*                                                */
/* main layout classes                            */
/*                                                */

/* common box definitions         */
DIV#aboFormBox,
DIV#startTextBox,
DIV#elements {
	position: absolute;
	background-color: #fff;
	border-color: #000;
	border-style: solid;
	border-width: 1px 2px 2px 1px;
	z-index: 10; /* above bg div */
}

/* the abo form                   */
DIV#aboFormBox {
	left: 533px;
	top: 115px;
	width: 250px;
	padding: 8px 15px 11px 15px;
}
* html body DIV#aboFormBox { width: 280px; } /* IE */

/* text box common settings      */
DIV#startTextBox {
	left: 98px;
	top: 247px;
	width: 366px;
	padding: 8px 15px 11px 15px;
	font-size: 13px;
}
* html body DIV#startTextBox { width: 396px; }

/* the button (c)                                 */
div.bannerButton {
	position: absolute;
	left: 785px;
	top: 8px;
	width: 155px;
	text-align: center;
	z-index: 20; /* sits in front of abo form */
}
div.bannerButton img { behavior: url("img/pngbehavior.htc"); }

/* elements (works just as in form.de)            */
div#elements {
	left: 98px;
	top: 247px;
	width: 585px; /* 600px (normal elements width) - 15 px padding */
	padding: 8px 0 11px 15px; /* no padding-r because elements has a bigger size than needed */
}
* html body div#elements { width: 585px; }

/* the background div, not as body bg because it has to be moved a little left and down */
DIV#bgCover {
	position: absolute;
	left: 12px;
	top: 3px;
	z-index: 1; /* lowest */
}

/* language link                   */
DIV#langLink {
	position: absolute;
	left: 750px;
	top: 14px;
	z-index: 10; /* above bg div */
}
DIV#langLink A {
	color: #666;

}

/*                                                */
/* main layout context classes                    */
/*                                                */

/* aboForm form context classes                   */
FORM#aboForm DIV { margin-bottom: 10px; float: left; }
DIV#aboFormBox DIV.left { padding-right: 7px; }
DIV#aboFormBox DIV.clear { clear: left; }
DIV#aboFormBox DIV.error {
	border: 1px solid #B7B302;
	background: #FDFBAA;
	padding: 5px;
	margin: 15px 0;
}

/* text box headline                              */
DIV#startTextBox h1 {
	margin: 0 0 8px 0;
	padding: 0 0 9px 0;
	font-family: Georgia, Times, serif;
	font-size: 40px;
	font-weight: normal;
	font-style: italic;
	text-align: center;
	border-bottom: 1px solid #000;
}

/* menu                                          */

/* common menu definitions      */
DIV#menu ul { list-style: none; padding: 0; }
DIV#menu li { display: inline; }
DIV#menu li,
DIV#menu li a {
	color: #000;
	font-family: Georgia, Times, serif;
	font-size: 18px;
	font-weight: normal;
	font-style: italic;
}
DIV#menu li a strong { font-style: normal; }
DIV#menu li a.active { color: #999; }

/* menu in startTextBox                           */
DIV#startTextBox DIV#menu {
	margin-top: 20px;
	border-top: 3px solid #000;
}
DIV#startTextBox DIV#menu ul { margin: 10px 0 0 0; }

/* menu in elements                               */
DIV#elements DIV#menu {
	width: 571px;
	margin-bottom: 20px;
	border-bottom: 3px solid #000;
}
DIV#elements DIV#menu ul { margin: 0 0 10px 0; }

/* imprint (below text)                   */
.imprint { margin-top: 15px; }

/*                                                */
/* module classes used in several modules         */
/*                                                */

/* put all modules you reuse from form.de here */
/* they need less width here because in form.de*/
/* elements and all modules have 30px space on */
/* the right...just so that floating works more*/
/* easily                                      */

div.md1Col, div.md2Col, div.md3Col {
	width: 585px;
}