﻿@charset "utf-8";
/* CSS Document */

body {
	font: 100% Arial, Helvetica, sans-serif;
	background: white;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #333;
	background-image:url(images/body-back.jpg);
	background-position:center 120px;
	background-repeat:no-repeat;
}

#container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header {
	height:120px;
	background-image:url(images/header_back.jpg);
	background-position:center top;
	background-repeat:no-repeat;
}
#logo{
	padding: 0px 0 0 20px;
	width:210px;
	height:115px;
	float:left;
}

#content {
	/* padding: 0 20px 0px 35px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	padding: 0 35px 0px 35px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin-top:115px;
	background-image:url(images/maincontent-back.jpg);
	background-position:center top;
	background-repeat:no-repeat;
}

#content h1{
	font-size:23px;
	color:#0057A6;
	font-weight:normal;
	margin:0 0 15px 0px;
	padding-top:18px;
}
#content h2{
	font-size:15px;
	background-image:url(images/h2_back.jpg);
	background-position:left 0px;
	background-repeat:no-repeat;
	height:27px;
	color:white;
	padding:4px 0 0px 8px;
	margin:15px 0 15px 0px;
}

p.bodytext{
	font-size:13px;
	text-align:justify;
	margin:5px 0px 5px 0px;
}


#content li {font-size:13px;}
#content a {color:#018643;}
.almerus{font-weight:bold; color:#018643;}
.floatRight{float:right; margin:0 20px 10px 20px; border:1px solid #333;}
.floatLeft{float:left; margin:0 20px 10px 20px; border:1px solid #333;}
.floatLeft_logo{float:left; margin:0 20px 45px 20px;}

/* Navigation*/
div#links{float:right; width:400px;}
div#topLinks{right:auto; text-align:right; margin:50px 30px 0 0; width:380px;}
div#menu{right:auto; text-align:right; margin:25px 30px 0 0; width:380px;}

/* Format for top menu (normal) */
td.menu-no { 
	height:17px;
	padding-left:8px;
	float: left;
	text-align:right;
	display: inline;
}

a.menu-no {
	padding-left:8px;
	color: #04833A; 
	text-decoration:none;
	font-weight:bold; 
	font-size: 14px;
}

/* Menu roll-over definition */
a.menu-no:hover{
	color: #00439E; 
	text-decoration:none;
	font-weight:bold; 
	font-size: 14px;
}

/* Bold shown as MMC green */
b {
	color: 	#04833A;
}

.info-msg{border:1px solid #387CF8; color:#387CF8; font-size:12px; margin-bottom:2%; padding:2%}
.err-msg{border:1px solid #ED2E2E; color:#ED2E2E; font-size:12px; margin-bottom:2%; padding:2%}
.submit-btn{background-image:url('../images/send_btn.gif'); border:none; cursor:pointer; height:19px; width:56px;}
.reset-btn{background-image:url('../images/reset_btn.gif'); border:none; cursor:pointer; height:19px; width:56px;}

/* TYPO3 specific layout */

div.csc-textpic {
	font-size:10px;
	margin-left: 5px;
	margin-right: 5px;
}

p.csc-linkToTop {
	font-size:12px;
	margin: 20px 5px 20px 5px;
}

img {
	border-width:0px;
}
DIV.csc-textpic-border DIV.csc-textpic-imagewrap .csc-textpic-image IMG {
	border-width:1px;
}

/* TYPO3 & powermail specific layout */

fieldset.tx-powermail-pi1_fieldset {
	/* Disable border */
	border: none;
}

/* Hide heading of the fieldset */
fieldset.tx-powermail-pi1_fieldset legend {
	display: none;
}

/* Format of the lables (the text left to input fields) */
fieldset.tx-powermail-pi1_fieldset label {
	display: block;
	margin-left: 5px;
	width: 120px;
	float: left;
	clear: both;
}

/* Format of the input fields */
fieldset.tx-powermail-pi1_fieldset input {
	width: 300px;
	border: 1px solid silver;
}

/* Format of the textarea fields */
fieldset.tx-powermail-pi1_fieldset textarea {
	width: 500px;
	border: 1px solid silver;
}

/* common format for label and input fields */
div.tx_powermail_pi1_fieldwrap_html {
	/* Increase vertical margin between every field */
	margin-top: 2px;
	/* Align font to standard for MMC */
	font-size:13px;
}

.powermail_submit_uid6 {
	/* Style submit field */
	/* width: 100px; */
	/* border: 1px solid silver; */
}

div.tx_powermail_pi1_fieldwrap_html_submitgraphic input {
	/* position submit left-aligned to input fields */
	margin-left: 128px;
	width: 56px;
	border: 0;
}

/* Red star for mandatory fields */
span.powermail_mandatory{
	color:red; 
	font-weight:bold;
}


