/*****************
browsers interpret margin and padding a little differently,
we'll remove all default padding and margins and
set them later on
******************/
* {
margin:0;
padding:0;
}


/*
Set initial font styles
*/
body {
   text-align: left;
   font-family: Arial, Helvetica, Geneva, sans-serif;
   font-size: 75.01%;
   line-height: 1em;
}

/*
set font size for all divs,
this overrides some body rules
*/
div {
   font-size: 1em;
}

/*
if img is inside "a" it would have
borders, we don't want that
*/
img {
   border: 0;
}

/*
default link styles
*/
/* set all links to have underline and bluish color */
a,
a:link
a:active {
   text-decoration: underline;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
  /* background-color: inherit; */
   color: #000;
}

a:visited {
   text-decoration: underline;
   /* background-color: inherit; */
  color: #000;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
  /* background-color: inherit;
   color: #385C72; */
}

/*****************
basic layout
*****************/
body {
   background-color: #fff;
   color: #000;
}

input, textarea, select, label {
   float: left;
   text-align: left;
   font-family: Arial, Helvetica, Geneva, sans-serif;
   font-size: 12px;
   line-height: 1.2em;
   border: 1px solid #aaa;
   padding: 2px;
   width: 300px;
   margin: 3px;
}

label {
    padding: 2px 0;
    margin: 3px 0;
    width: 150px;
    border: none;
}

input.inputtyp2{
 width: auto;
 border: none
}

form br {
    clear: left;
}
div#preview br {
   clear: left;
}

div#preview label {
    padding: 0;
    margin: 0;
    line-height: 1.7em;
}

div#preview {
line-height: 1.7em;
}

textarea {
 height: 6em;
overflow: auto;
}


/* center wrapper, min max width */
div#pagewrapper {
   margin: 0px auto 0 15px;
   width: 960px;
   min-height: 800px;
   /* background: #fff url(../../images/orange_45_160px.gif) repeat-y; */
}



/*** header ***
we will hide text and replace it with a image
we need to assign a height for it
*/
div#kopfzeile {
   height: 20px;
   margin: 0;
   padding: 0;

}

div#header {
   /*height: 321px;    */
   /*height: 160px;*/
   /*background: url(../../images/BASFc_wh30or_3c.jpg) no-repeat;*/
   padding-left: 160px;

}

div#header img {

}

div#header h1 {
   text-decoration: none; /* old firefox would have shown underline for the link, this explicitly hides it */
   color: #fff;
   letter-spacing: 0.1em

}

div#search {
   float: right;
   width: 23em;     /* enough width for the search input box */
   text-align: right;
   padding: 0.6em 0 0.2em 0;
   margin: 0 1em;
}


 ndiv#content {
   margin: 1.5em auto 2em 0; /* some air above and under menu and content */
}


div#main {
float: right;
width: 750px;
   /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
   margin-right: 15px; /* and some air on the left*/
   padding-left: 10px;

}

div#banderole {

    float: left;
    width: 145px;
    padding: 5px 7px;
}

div#banderole a {

text-decoration: none;
}

div#banderole a:hover {

text-decoration: underline;
}



div#footer {
   clear:both;       /* keep footer below content and menu */
}

div#footer p {
   font-size: 0.8em;
   padding: 1.5em;      /* some air for footer */
   text-align: center; /* centered text */
   margin:0;
}

div#footer p a {
    /* needed becouse footer link would be same color as background otherwise */
}

/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   margin: 1em;
   border-bottom: 1px dotted black;
}

/* relational links under content */
div.left49 {
  float: left;
  width: 47%;  /* 50% for both left and right might lead to rounding error on some browser */
  padding: 1%;
}

div.right49 {
  float: right;
  width: 47%;
  text-align: left;
  padding: 1%;
}

div.left79 {
  float: left;
  width: 70%;  /* 50% for both left and right might lead to rounding error on some browser */
  padding: 1%;
}

div.right19 {
  float: right;
  width: 25%;
  text-align: left;
  padding: 0;
}

td.w30 {
width: 30%;
}

td.w70 {
width: 70%;
}



/********************
CONTENT STYLING
*********************/
div#content {
    line-height: 1.3em;
    padding-top: 30px;
}

/* Tabellenlayout */
div#content td {
    padding: 6px 6px;
}

.hotelbeschreibung {
    position: relative;
    top: -5px;
    left: 0px;
    width: 680px;
    border: 1px solid #ccc;
    padding: 5px;
}

*html .hotelbeschreibung {
    top: -28px;
}

*+html .hotelbeschreibung {
    top: -28px;
}

.button_registration {
	border: 1px solid #1c2d73;
	padding: 5px;
	background-color: #ffd900;
	font-weight: bolder;
	text-align: center;
}

.rechtebox {
	border: 1px solid #1c2d73;
	background-color: #fdf7d8;
	padding: 5px;
	font-weight: bolder;
}

.rechtebox_rahmen {
	border: 1px solid #1c2d73;
	border-top: 0px;
	padding: 5px;
	margin-bottom: 5px;
}

.kommentar {
	border: 1px solid #1c2d73;
	padding: 5px;
	margin-bottom: 5px;
}

.performlogo {
	width: 180px;
	height: 101px;
}

/* HEADINGS */
div#content h1 {
   font-size: 2em;  /* font size for h1 */
   line-height: 1em;
   margin: 0;
}
div#content h2 {
   color: #1c2d73;
   font-size: 1.4em;
   text-align: left;
/* some air around the text */
/* set borders around header */
   line-height: 1.5em;
/* and some air under the border */
   margin: 0 0 0.5em 0;
}
div#content h3 {
   color: #000;
   font-size: 1.3em;
   line-height: 1.3em;
   margin: 0 0 0.5em 0;
}
div#content h4 {
   color: #000;
   font-size: 1.2em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
div#content h5 {
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
h6 {
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
/* END HEADINGS */

/* TEXT */
p {
   font-size: 1em;
   margin: 0 0 1.5em 0;  /* some air around p elements */
   line-height:1.4em;
   padding: 0;
}
blockquote {
   border-left: 10px solid #ddd;
   margin-left: 10px;
}
pre {
   font-family: monospace;
   font-size: 1.0em;
}
strong, b {
/* explicit setting for these */
   font-weight: bold;
}
em, i {
/* explicit setting for these */
   font-style:italic;
}

/* Button */
.submitbutton {
border: 1px solid #004A96;
padding: 3px 5px;
cursor: pointer;
background-color: #21A0D2;
color: #fff;

}

.submitbutton2{
width: 140px;
text-align: center;
}

/* Form */

.pflichtfeld {
border: 2px solid red;
}


/* Wrapping text in <code> tags. Makes CSS not validate */
code, pre {
 white-space: pre-wrap;       /* css-3 */
 white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
 white-space: -pre-wrap;      /* Opera 4-6 */
 white-space: -o-pre-wrap;    /* Opera 7 */
 word-wrap: break-word;       /* Internet Explorer 5.5+ */
 font-family: "Courier New", Courier, monospace;
 font-size: 1em;
}

pre {
   border: 1px solid #000;  /* black border for pre blocks */
   background-color: #ddd;
   margin: 0 1em 1em 1em;
   padding: 0.5em;
   line-height: 1.5em;
   font-size: 90%;   /* smaller font size, as these are usually not so important data */
}

/* END TEXT */

/* LISTS */
div#main ul,
div#main ol,
div#main dl {
  font-size: 1.0em;
   line-height:1.4em;
   margin: 0 0 1.5em 0;
}
div#main ul li,
div#main ol li {
   margin: 0 0 0.25em 3em;
}

div#dl dt {
   font-weight: bold;
   margin: 0 0 0.25em 3em;
}
div#dl dd {
   margin: 0 0 0 3em;
}
/* END LISTS */

