/* Gallery styles */

#gallery{
	/* CSS3 Box Shadow */
	-moz-box-shadow:0 0 3px #AAAAAA;
	-webkit-box-shadow:0 0 3px #AAAAAA;
	box-shadow:0 0 3px #AAAAAA;
	
	/* CSS3 Rounded Corners */
	
	-moz-border-radius-bottomleft:4px;
	-webkit-border-bottom-left-radius:4px;
	border-bottom-left-radius:4px;
	
	-moz-border-radius-bottomright:4px;
	-webkit-border-bottom-right-radius:4px;
	border-bottom-right-radius:4px;
	
	border:1px solid white;
	
	background:url(img/panel.jpg) repeat-x bottom center #ffffff;
	
	/* The width of the gallery */
	width:1000px;
	overflow:hidden;
}

#slides{
	/* This is the slide area */
	height:305px;
	
	/* jQuery changes the width later on to the sum of the widths of all the slides. */
	width:1000px;
	overflow:hidden;
}

.slide{
	float:left;
}

#menu{
	/* This is the container for the thumbnails */
	height:105px;
}

ul{
	margin:0px;
	padding:0px;
}

li.menuItem{
	/* Every thumbnail is a li element */
    display: block;
    float: left;
    height: 105px;
    text-align: left;
    list-style: none outside none;
    overflow: hidden;
    width: 332px;
    background:url(../img/BLT-tabs.jpg);
}

li#adventureItem{
background-position:0 -105px;
}

li#adventureItem inact:hover{
background-position:0 -105px;
}

li#adventureItem:hover{
background-position:0 0;
}

li#adventureItem.act{
background-position:0 0;
}


li#leisureItem{
background-position:-333px -105px;
}

li#leisureItem inact:hover{
background-position:-333px -105px;
}

li#leisureItem:hover{
background-position:-333px 0;
}

li#leisureItem.act{
background-position:-333px 0;
}


li#corporateItem{
background-position:-665px -105px;
}

li#corporateItem inact:hover{
background-position:-665px -105px;
}

li#corporateItem:hover{
background-position:-665px 0;
}

li#corporateItem.act{
background-position:-665px 0;
}


li.act a{
	cursor:default;
}

.fbar{
	/* The left-most vertical bar, next to the first thumbnail */
	width:2px;
}

li.menuItem a{
	display:block;
	height: 30px;
    	padding: 75px 0 0 25px;
    	text-decoration: none;
}

a img{
	border:none;
}


/* The styles below are only necessary for the demo page */



#main{
	/* The main container */
	text-align:center;
	width:1000px;
	position:relative;
}

