/* Start of CMSMS style sheet 'YesTour Homepage CSS' */
body {
}

/*
default link styles
*/
/* set all links to have underline and blueish 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: transparent; 
   color: #220000;
}

a:visited {
   text-decoration: underline;
   background-color: transparent;
   color: #110000;              /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   background-color: transparent;
   color: #440000;
}


/* center wrapper, min max width */
div#pagewrapper {
   margin: 0 auto;     /* this centers wrapper */
   max-width: 800px; /* IE wont understand these, so we will use javascript magick */
   min-width: 800px;
   color: black;
   position: relative;
}

#maincontent {
   position: absolute;
   display: block;
   top: 237px;
   left: 400px;
   width: 450px;
   height: 300px;
  border: 2px solid #71C9E4; 
   background-color: #FFFFFF;
padding: 10px;
   color: #c02300;
}

#middle {

}

#news_scroller {
position: absolute;
top: 250px;
left: 150px;
width: 200px;
border: 2px solid #71C9E4;
font-size: 85%;
background-color: #FFFFFF;

}

#homeheader h1 a {
display: block;
text-indent: -999em;
position: absolute;
left: 134px;
top: 71px;
width: 200px;
height: 100px;
}

#expeditionlink {
position: absolute;
left: 170px;
top: 189px;
}

#Carousel {
position: absolute;
top: 138px;
left: 125px;
width: 550px;
height: 70px;
padding: 0px;
border: 2px solid #FFFFFF;
background-color: white;
}

#quotebox {
position: absolute;
top: 475px;
left: 136px;
font-size: 80%;
width: 240px;
}

#paypal {
position: absolute;
top: 68px;
right: 145px;
}

#footer {
   font-size: 80%;
}
/* End of 'YesTour Homepage CSS' */

