

/*****************
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 {
  
   font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
   font-size: 75.01%;
   line-height: 1em;
}
p {
line-height: 16px;
margin-bottom: 12px;

}
/*
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: none;
/* 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: #006600; 
}

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


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

/*****************
basic layout 
*****************/
body {
   background-color: #E4EFF7;
   background-image:url(img/bg.jpg);
   background-attachment:fixed;
   background-position:top;
   background-repeat: repeat-x;
   color: #333;
   margin:1em;    /* gives some air for the pagewrapper */
}
div#pagewrapper {
width: 952px; 
   margin: 0 auto;       /* this centers wrapper */

    background:url(img/header.png) #FFFFFF;
	background-repeat:no-repeat;
  }
  div#footer_bg {
width: 952px; 
   margin: 0 auto;       /* this centers wrapper */
    background:url(img/footer.png);
	background-position:bottom;
	background-repeat:no-repeat;
padding-bottom:14px;
  }
  

h1 {
margin-top: 12px;
	margin-bottom: 12px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	color: #006600;
	font-size: 18px;
font-weight: bold;
}
h2{
margin-top: 12px;
	margin-bottom: 12px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	color: #006600;
	font-size: 18px;
font-weight: bold;
}
h3 {
margin-top: 12px;
	margin-bottom: 12px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	color: #006600;
	font-size: 16px;
font-weight: bold;
}

div.breadcrumbs {
	padding-top: 3px;
  padding-bottom: 6px;
  margin-right:12px;
   font-size: 90%;        /* its good to set fontsizes to be relative, this way viewer can change his/her fontsize */
   
  
}

div.breadcrumbs span.lastitem { 
   font-weight:bold; 
}
div#footer {
   clear: both;       /* keep footer below content and menu */
   color: #CCC;

}

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

div#footer p a {
   color: #333; /* 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;
   padding: 1em;
   border-bottom: 1px dotted black;
   margin: 1em;
}
div#contentbox ul{
   margin-left: 40px;
}

.GreenHeader{
	margin-top: 12px;
	margin-bottom: 12px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	color: #006600;
	font-size: 14px;
font-weight: bold;

}
div#paradise a{

color: #006600;
line-height:16px;

}
div#paradise td{
vertical-align:top;

}