/* CSS Document */



body {
  /* use this font for everything */
    font-family:verdana,arial,'sans serif';
    font-size:9pt;
  /* makes sure the banner on top of the page goes all the way to the edge */
    margin:0px 0px 0px 0px;
  }

p {
  }



/* change default link behaviour, links no underline looks better, like kodak */
a:link {
  color:blue;
  text-decoration:none;
  }
a:visited {
  color:blue;
  text-decoration:none;
  }
a:active {
  color:red;
  text-deoration:none;
  }
a:hover {
  color:red;
  text-decoration:underline;
  }



/* decided to have no default left/right margins, change made 20070202 */
/* left/right margins for <td> */
td {
  /* table cells have a little margin left and right */
  /*  padding-right:10px; */
  /*  padding-left:10px;  */
  }
td.nopad {
  /* override default, this class has no margin left and right */
  /* padding-right:0px; */
  /* padding-left:0px;  */
  }



/* this is for the services page */
td.service_left {
  color:#ff0000;
  text-align:right;
  vertical-align:top;
  }
td.service_right {
  text-align:left;
  vertical-align:top;
  }



/* main page table */
table.pgtbl {
  }
td.pgtbl_menu {
  vertical-align:top;
  text-align:left;
  padding-left:5px;
  padding-right:10px;
  }
td.pgtbl_body {
  vertical-align:top;
  text-align:left;
  padding-left:10px;
  padding-right:10px;
  width:100%;
  }



/* internet explorer 6 requires this, so that there is no margin below each single-button-form */
form {
  margin-top:0px;
  margin-bottom:0px;
  }
/* internet explorer requires this to make sure advert pix do not stick to banner on top */
p.adpix {
  margin-top: 10px;
  }



/* firefox requires this, to make h1 stick to the top of the page */
h1 {
  margin-top:5px;
  }
