* {
margin:0;
padding:0;
}

/*
Set initial font styles
*/

body {
   background-color:#fff;
   text-align: left;
   font-family: Times new roman, Verdana, Geneva, Arial, Helvetica, sans-serif;

   line-height: 20px;
}

/*
set font size for all divs,
this overrides some body rules 
*/
div {
   font-size: 10pt;
}

/*
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: #000;
}

/*****************
basic layout 
*****************/
body {
   color: #000;
   margin:0em;    /* gives some air for the pagewrapper */
   margin-top:0px;
   padding-top:0px;
}

/* center wrapper, min max width */
div#pagewrapper {
   border: 0px solid black;
   margin: 0 auto;     /* this centers wrapper */
   max-width: 1000px; /* IE wont understand these, so we will use javascript magick */
   min-width: 1000px;
   color: black;
}

/*** header ***
we will hide text and replace it with a image
we need to assign a height for it
*/

div.header {
   background-color: #fff;
   padding:0px;
   margin:0px;
}

div#head_1{
	background:url(../images/home.jpg) no-repeat;
	height: 759px; /* adjust according your image size */
	}
div#head_2{
	background:url(../images/carte.jpg) no-repeat;
	height: 467px; /* adjust according your image size */
	}
div#head_3{
	background:url(../images/special.jpg) no-repeat;
	height: 417px; /* adjust according your image size */
	}
div#head_4{
	background:url(../images/client.jpg) no-repeat;
	height: 417px; /* adjust according your image size */
	}
div#head_5{
	background:url(../images/last.jpg) no-repeat;
	height: 293px; /* adjust according your image size */
	}
div#head_32{
	background:url(../images/tab_6.jpg) no-repeat;
	height: 293px; /* adjust according your image size */
	}

fieldset{
  border:0px;
}

#menu_vert{
  display:block;
  float:left;
  position:absolute;
  top:222px;
  margin-left:40px;
  font-size:13px;
}
#menu_vert a{
  text-decoration:none;
  color:#000;
  font-weight:normal;
  font-size:15px;
  letter-spacing:1px;
}

div#content {
   margin: 0 auto 0em 0; /* some air above and under menu and content */
}
div#center_1 {
   padding: 0em 2em 1em 40px; /* some air above and under menu and content */
   font-size:11pt;
}

div#center_2{
   padding: 0em 2em 1em 40px; /* some air above and under menu and content */
   font-size:11pt;
   margin-top:-110px;
}
div#center_3 {
   padding: 0em 2em 1em 40px; /* some air above and under menu and content */
   font-size:11pt;
   margin-top:-30px;
   background:url(../images/Kurkentrekker.jpg) no-repeat;
   background-position: 400px 150px;
}
div#center_4 {
	margin-top:-30px;
   padding: 0em 2em 1em 40px; /* some air above and under menu and content */
   font-size:11pt;
   background:url(../images/Bessen.jpg) no-repeat;
   background-position: 400px 150px;
   height:700px;
}
div#center_5 {
margin-top:-55px;
   padding: 20px 2em 1em 40px; /* some air above and under menu and content */
   font-size:11pt;
}

span#route{
  color:#fff;
  font-weight:bold;
  
}
span#route a{
 color:#fff;
 text-decoration:none;
}

/* 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;
}

hr {
   height: 1px;
   margin-top: 1em;
   border-bottom: 1px solid #444;
}

/********************
CONTENT STYLING
*********************/
div#content {
	color:#000;
	/*color:#9093c4;*/
}

/* HEADINGS */
div#content h1 {
   color: #000; 
   font-size: 18px; 
   text-align: left; 
/* some air around the text */
   padding-bottom: 1px;
   margin:0 0 0.5em 0;
   line-height: 18px;
/* and some air under the border */
}
div#content h2 {
   color: #000;
   text-decoration:none;
   font-size: 14px; 
   text-align: left; 
/* some air around the text */
   padding-bottom: 1px;
   margin:0 0 0.5em 0;
   line-height: 1.5em;
/* and some air under the border */
}
div#content h2#noline{
	text-decoration:none;
}
div#content h2#noline a{
	text-decoration:none;
	}

div#content h3 {
   color: #000; 
   margin:0 0 0.5em 0;
   font-size: 14px;
   line-height: 14px;
}
div#content h4 {
   color: #000; 
   font-size: 13px;
   margin:0 0 0.25em 0;
   line-height: 14px;
}
div#content h5 {
   font-size: 13px;
   line-height: 14px;
}
h6 {
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
/* END HEADINGS */

/* TEXT */
p {
   font-size: 11pt;
   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;
}
/* 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 */

li.notes{
    font-size: 10pt;
}
.note{
  font-size:9px;
  font-style:italic;
}


div#bg_pasta{
  position:absolute;
  margin-left:-593px;
  margin-top:-242px;
  z-index:-1;
  background:url(../images/bg_pasta.jpg) no-repeat;
  width:1000px;
  height:260px;
}

div#bg_kaas{
  position:absolute;
  margin-left:-593px;
  margin-top:-242px;
  z-index:-1;
  background:url(../images/bg_kaas.jpg) no-repeat;
  width:1000px;
  height:260px;
}

input,textarea{
  font-family:times new roman;
  font-size:13px;
  border:1px solid #887fb6;
  width:600px;
}
input#send{
  width:130px;
}

#client a{
  text-decoration:none;
}
