/* Start of CMSMS style sheet '2 Wayo: Home page layout' */
/*** header ***
we will hide text and replace it with a image
we need to assign a height for it
*/

div#header {
  height: 250px; /* adjust according your image size */  
  background: #3D432D;          
}

div#rotate a#x {
/* you can set your own image here */
   background: #3D432D url(uploads/images/base/Canoeing-on-Manyara-with-Elephants.jpg) no-repeat; 
   display: block; 
   height: 250px;             /* adjust according your image size */
   width:960px;
   text-indent: -999em;  /* this hides the text */
   text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
}

div#rotate  a#y {
/* you can set your own image here */
   background: #3D432D url(uploads/images/base/Walking-in-Tarangire.jpg) no-repeat; 
   display: block; 
   height: 250px;             /* adjust according your image size */
   width:960px;
   text-indent: -999em;  /* this hides the text */
   text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
}

div#rotate  a#z {
/* you can set your own image here */
   background: #3D432D url(uploads/images/base/Hadzabe-bushman.jpg) no-repeat; 
   display: block; 
   height: 250px;             /* adjust according your image size */
   width:960px;
   text-indent: -999em;  /* this hides the text */
   text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
}

div#rotate a#za {
/* you can set your own image here */
   background: #3D432D url(uploads/images/base/Private-lightweight-camp.jpg) no-repeat; 
repeat; 
   display: block; 
   height: 250px;             /* adjust according your image size */
   width:960px;
   text-indent: -999em;  /* this hides the text */
   text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
}

div#rotate  a#zb {
/* you can set your own image here */
   background: #3D432D url(uploads/images/base/Wildebeest-crossing-the-Mara.jpg) no-repeat; 
   display: block; 
   height: 250px;             /* adjust according your image size */
   width:960px;
   text-indent: -999em;  /* this hides the text */
   text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
}

div#contactus {
   float:none;
   position:relative;
   top:-128px;
   left: 770px;
   height:30px;
   width:120px;
   padding: 6px;
   background: #97a278;
  z-index:99;
}

div#contactus h1 a {
   color: #efdfc6;
   font-size: 80%;
   padding-bottom:10px;
   text-decoration:none;
}

div#contactus  h1 a hover {
   color: #efdfc6;
   font-size: 80%;
   text-decoration:none;
}

div#contactus  h2 {
   color: #000;
   font-size: 94%;
   margin-top:5px;
}

div#floatinglogo{
   float:none;
   position:relative;
   top:-240px;
   left: 10px;
   height:67px;
   width:164px;
   padding: 0px;
  z-index:99;
}


/*****************
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;
}

a:visited {
   text-decoration: underline;
}


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

/*****************
basic layout 
*****************/
body {
   margin:1em; /* gives some air for the pagewrapper */
}

/* center wrapper, min max width */
div#pagewrapper {
   margin: 0 auto;     /* this centers wrapper */
   max-width: 80em; /* IE wont understand these, so we will use javascript magick */
   min-width: 60em;
   color: black;
}




div#search {
   float: right;
   width: 27em;     /* enough width for the search input box */
   text-align: right;
   padding: 0.6em 0 0.2em 0;
   margin: 0 1em;
}

div.breadcrumbs {
   padding: 1em 0 1.2em 0; /* CSS short hand rule first value is top then right, bottom and left */
   font-size: 90%;             /* its good to set fontsizes to be relative, this way viewer can change his/her fontsize */
   margin: 0 1em;              /* css shorthand rule will be opened to be "0 1em 0 1em" */
   border-bottom: 1px dotted #000;
}

 div.breadcrumbs span.lastitem { 
   font-weight:bold; 
 }


div#content {
    margin: 1.5em auto 2em 0; /* some air above and under menu and content */
  padding: 3px;
}


div#sidebar {
   float: left;  /* set sidebar on the left side. Change to right to float it right instead. */
   width: 24%;    /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX ie doublemargin bug */
   margin-left: 0;
}

/* if sidebar doesnt include menu but content add class="hascontent" */
div#sidebar.hascontent {
   padding: 0 1%;
   width: 24%;  /* make width smaller if there's padding, or it will get too wide for the floated divs in IE */
}


div#main {
   float: left;
  width: 98%; 
   margin-left: 8px;
   margin-right: 3px;
   padding: 2px;
}

div.linkblock {
 float: left;
 width: 98%;
 height:80px;
 margin-left: 8px;
   margin-right: 3px;
   padding: 2px;
 text-align:center;
}

div.linkblock a {
 font-size:90%;
 color:#444;
}

div#footer {
   clear:both;       /* keep footer below content and menu */
   }

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


/* 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;
}

/* relational links under content */
div.left49 {
  float: left;
  width: 49%;  /* 50% for both left and right might lead to rounding error on some browser */
}

div.right49 {
  float: right;
  width: 49%;
  text-align: right;
}



/* 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 */


/* Rotating testimonials */
div#TestimonialsRotate {
   margin-top:5px;
   padding:0px;
   align:center;
   float:none;
   display:block;
   //top:10px;
   //left:15px;
   width:75%;
  height:150px;
}

div#TestimonialsRotate blockquote{
   font-size:115%;
  font-weight:bold;
}

div#Testimonial {
 padding:1px;
 margin: 1px;
}

div.image {
  float:left;
  margin-left: 8px;
  margin-right: 8px;
  padding:5px;
  padding-bottom:3px;
  border: 1px solid #000; 
  width:95px;
  align:center;
  valign:top;
 }

div.image img { align:center;}


div.image p {
   font-size:90%;
   font-weight:bold;
   line-height: 1em;
   margin-left:5px;
   }







/* End of '2 Wayo: Home page layout' */

