
*{ margin: 0; padding: 0; }*
body { margin: 0px 0 0; background: #ddd url(../images/bg.gif) repeat-x; font: .74em "Trebuchet MS", Arial, Sans-Serif; color: #444; }
	h1 { font: 2.5em Helvetica, Sans-Serif; font-weight: bold;   }
	h1 a { text-decoration: none; }
	h2 { font-size: 2em; color: #FFF2B3; color:#444; font-weight: normal; margin: 0 0 .8em; }
	h3 { font-size: 1.5em; border-bottom: 1px solid #eee; margin: 0 0 .8em; }
	h4 { font-size: 1em; color: #444; margin:0; padding-top:4px; padding-bottom:4px; font-weight:normal }
	p  { margin: 0 0 1.5em 0; line-height: 1.4em; }
	em { border-bottom: 1px dotted #fff; cursor: pointer; }
	a { color: #9D2900; }
	a:hover { color: #A0000E; text-decoration: none; }
	img { border: 0; }
	.red { color: #9D2900; }
	
.wrap { width: 780px; margin: 0 auto; }
.bq { font-size:150%; font-weight:bold; padding-left:2px; padding-right:2px  }

#container { background-color:white; margin:0 auto; width:610px; border-left:1px solid black; border-right:1px solid black; border-bottom:1px solid black }

#header { padding-top: 15px; width: 580px; height: 125px; margin: 0 auto; padding-bottom:35px }
	#menu  { float: right; padding: 6px 0 0 0; list-style: none; }
		#menu li { display: inline; }
		#menu a { display: block; float: left; margin-left: 30px; padding: 7px; text-decoration: none; font-size: 13px; color: #000000; }
		#menu a:hover { color: #000; border-bottom: 2px solid #ccc; }
		#menu .active a { border-bottom: 2px solid #C70012; color: #9D2900;}

#header-left { float:left; padding-top:6px; padding-left:20px; text-align:left }
#header-right { float:left; padding-left:70px; width:100px; padding-top:20px; text-align:left }

#header-left2 { float:left; padding-top:10px; padding-left:20px; text-align:left }
#header-center { float:left; width:170px; padding-left:85px; padding-top:5px; text-align:left }
#header-right2 { float:left; width:170px; padding-left:10px; text-align:center }

#helpareas { padding-bottom:8px }
#helpareas p { margin-top:7px;margin-bottom:7px;padding:0 }

#teaser { clear: both; height: 259px; background: #fff url(../images/teaserbg.jpg) repeat-x; }
	.box { float: left; padding: 66px 0 0; width: 480px; color: #C7E3EE; }
	#image { float: right; width: 388px; position: relative; top: 16px; background: url(../images/logotype2.jpg) no-repeat top right; height: 258px; }
	
#bar { clear:both; height: 40px; margin: 0 0 15px; padding: 8px 0 0 12px; background: url(../images/bar.gif) repeat-x; }
	.step { cursor: pointer; color: #FFF; padding: 5px 0 0 10px; margin: 0 25px 0 0; font-size: 1.4em; float: left; text-align: center; background: url(../images/step.gif) no-repeat; height: 30px; }
	.step a { color: #FAFDDD; margin: 0 5px 0 10px; }
	
.center { float: left; width: 339px; margin: 0 30px 16px 0; }
	.last { float: right; margin: 0; }
	.info { border: 1px solid #e0e0e0; background: #f4f4f4; padding: 7px; }

.center2 { float: left; width: 514px; margin: 0 30px 16px 0; }
	.last { float: right; margin: 0; }
	.info { border: 1px solid #e0e0e0; background: #f4f4f4; padding: 7px; }

.left { float: left; width: 195px; margin: 0 30px 16px 15px; }
	.last { float: right; margin: 0; }
	.info { border: 1px solid #e0e0e0; background: #f4f4f4; padding: 7px; }

.right { float: left; width: 175px; margin: 5px 30px 16px 0; }
	.last { float: right; margin: 0; }
	.info { border: 1px solid #e0e0e0; background: #f4f4f4; padding: 7px; }

#footer { clear: both; width: 780px;  }	
	#footer .right { float: right; margin: 0 55px 0 0; }
	#footer a { color: #808080; font-weight: bold; }

div.cont {
    position: relative;
    /* we need relative positioning of the containing element, 
    so IE knows what to do with the "absolute" below */
    margin-bottom: 0; /* a bit of space below, irrelevant */
}
div.sometext,
form div.cont input,
form div.cont select,
form div.cont a,
form div.cont p,
form div.cont textarea {
    margin-left: 118px;
    position:relative;
    margin-bottom:1px;
    /* we make some space to the left, so our label has a place to be */
}
form div label {
    position: absolute;
    /*left: 50px;*/
    width:110px;
    text-align:right;
    top: 1px;
    /* we are moving the label to the left/upper corner 
    of the surrounding element, this even works for multiline-labels, 
    as long as the label isn't higher than the
    element it "labels", otherwise we may get overlap */
    /* optional:
    if we are afraid that our labels will exceed the space allocated
    by the margin-left above, we can give it a 
    width: 110px;
    together with that we may even do a
    text-align: right;
    */
}
div.sometext p {
    margin-top: 0px;
    /* this is just so that the vertical alignment 
    to the top of the label comes right */
}