/* Start of CMSMS style sheet 'Layout: General Jetico' */
/*****************
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: Tahoma,Geneva,Kalimati,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;
}

/*****************
basic layout 
*****************/
body {
   background-color: #c1c1c1;
   color: #000;
   margin:0em; /* gives some air for the pagewrapper */
   background-image: url(/uploads/images/jet-tausta.gif);
}

/* center wrapper, min max width */
div#pagewrapper {
   border: 0px solid black;
   margin: 0 auto;     /* this centers wrapper */
   max-width: 947px; /* IE wont understand these, so we will use javascript magick */
   min-width: 947px;
   background-color: #fff;;
   color: black;
   width: 947px;
}


/*** header ***
we will hide text and replace it with a image
we need to assign a height for it
*/

div#header {
   height: 80px; /* adjust according your image size */
   background: #fff;      
 background: #fff url(uploads/images/logo2.gif) no-repeat 0 12px;     
  width: 947px;
  float:left;
}

div#header h1 {
  padding: 0;
  margin: 0;
}

div#header h1 a {
/* you can set your own image here */
  
   display: block; 
   height: 80px;             /* adjust according your image size */
  width: 180px;
   text-indent: -999em;  /* this hides the text */
   text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */

}



/* End of 'Layout: General Jetico' */

