/* Start of CMSMS style sheet 'ticket' */
*****************
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: Verdana, Geneva, Arial, Helvetica, 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: #ffffff; 
}

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


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

/*****************
basic layout
*****************/
body {
   background-color: #555555;
   color: #333;
   height: 100%;
   padding: 0;
   margin: 0;
}

div#background{
   margin-left:auto;
   margin-right:auto;
   width: 100%;
   height: 100%;
}

div#alles {
   margin-left:auto;
   margin-right:auto;
   width: 1000px;
   height: 100%;
   background-color: #ffffff;
   padding: 0;
   border: 0;
}

div#oben {
   height: 164px;
   width: 1000px;
   padding: 0;
   margin: 0;
   border: 0;
}

div#topNavi{
   background-color: #ffffff;
   width: 100%;
   height: 27px;
   padding: 0;
   margin: 0;
}

div#topNavi img {
   border: 0;
}


div#botNavi{
   background-color: #ffffff;
   width: 100%;
   height: 25px;
   padding: 0;
   margin: 0;
}

div#botNavi img {
   border: 0;
}

div#links {
   height: 100%;
   background-color: #f04e00;
   font-family: Arial, Helvetica, sans-serif;
   margin: 0;
   border: 0;
}

div#links img {
   border: 0;
}

div#bund img {
   border: 0;
}

div#content {
   height: 100%;
   width: 100%;
   background-color: #f04e00;
   font-family: Arial, Helvetica, sans-serif;
   font-size: 75.01%;
   line-height: 1,5em;
}

div#content img {
   border: 0;
}

div#rechts {
   height: 100%;
   width: 100%;
   font-family: Arial, Helvetica, sans-serif;
   background-color: #ffffff;
}

div#guestbook {
   align: left;
   width: 500px;
   height: 100%;
   font-family: Arial, Helvetica, sans-serif;
   background-color: #f04e00;
}

div#newsletter {
   align: center;
   width: 300px;
   text-align: right;
   font-family: Arial, Helvetica, sans-serif;
   color: #ffffff;
   background-color: #f04e00;
}
/* End of 'ticket' */

