/* CSS Document */
<style type="text/css">
body {
     background: #000000;
}
 
/*This is where the magic happens!*/
div.tabs {
     position: relative;
	 top:32px; 
	 left:18px;
     width: 420px;
	 height: 20px;
}
div.box {
     /*Any properties you'd want the box to have.*/
     /*Would probably be position, dimension type stuff.*/
     /*Though personally I would have a div outside this
       to control the dimensions.*/
     border: 1px solid #000000;
     position: relative;
	 top:42px; 
	 left:35px;
     width: 320px;
	 height: 200px;
}
div.box_contents {
     background-color:transparent;
     height: 100%;
     position: relative;
     width: 100%;
     z-index: 101;
}
div.box_background {
     background-color: white;
     height: 100%;
     filter:alpha(opacity=80); /* IE's opacity*/
     left: 0px;
     opacity: 0.80;
     position: absolute;
     top: 0px;
     width: 100%;
     z-index: 99;
}
div.tourbox {
     border: 1px solid #000000;
     position: relative;
	 top:42px; 
	 left:35px;
     width: 400px;
	 height: 450px;
}
div.aboutbox {
     border: 1px solid #000000;
     position: relative;
	 top:42px; 
	 left:35px;
     width: 320px;
	 height: 452px;
}
div.photobox {
     border: 1px solid #000000;
     position: relative;
	 top:32px; 
	 left:25px;
     width: 642px;
	 height: 482px;
}

.hiddenPic {display:none;}
.style1 {
	color: #FF0000;
	font-weight: bold;
}
</style>
