


/* 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:20px;
	-webkit-border-bottom-left-radius:20px; 
	border-bottom-left-radius:20px;
	
	-moz-border-radius-bottomright:20px;
	-webkit-border-bottom-right-radius:20px; 
	border-bottom-right-radius:20px;
	
	-moz-border-radius-topleft:20px;
	-webkit-border-top-left-radius:20px; 
	border-top-left-radius:20px; 
		
	-moz-border-radius-topright:20px;
	-webkit-border-top-right-radius:20px; 
	border-top-right-radius:20px;
	 	
	
	
	
	
	/* The width of the gallery */
	width:900px;
	overflow:hidden;
	margin-left:40;
	margin-right:40;
}

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

.slide{
	float:left;
	width:900px;
	height:400px;
	background-color:#181818;
}

#menu {
	/* This is the container for the thumbnails */
	height:80px;
background:url(img/panel.png) bottom center no-repeat; 
}

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

#menu li{
	/* Every thumbnail is a li element */
	width:140px;
	display:inline-block;
	list-style:none;
	height:80px;
	overflow:hidden;
}

li.inact:hover{
	/* The inactive state, highlighted on mouse over */
	background:url(img/pic_bg.png) repeat;
}

li.act, li.act:hover{
	/* The active state of the thumb */
	background:url(img/active_bg.png) no-repeat;
}

li.act a{
	cursor:default;
}

#menu .fbar{
	/* The left-most vertical bar, next to the first thumbnail */
	width:2px;
	background:url(img/divider.png) no-repeat right;
	/* height:70px;
	padding-top:10px; */
}

#menu li a, #menu li a:visited{
	display:block;
	background:url(img/divider.png) no-repeat right;
	height:53px;
	padding:27px 10px 10px 10px;
	text-decoration:none;
	color:#990000;
	border-bottom:#cc9900;
	text-align:center;
	font-weight:bold;
}

/*
#menu a p{color:#990000;
	font-size:12px;
	border-bottom:#cc9900;
	text-align:center;
	vertical-align:middle;
	}
*/

#main{
	/* The main container */
	margin:5px auto;
	text-align:center;
	width:900px;
}


#menu li a:hover{
	text-decoration:underline;
	color:#990000;
}

