
/* Gallery styles */

#gallery{
	
	/* The width of the gallery */
	width:1120px;
	overflow:hidden;
}

#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:1024px;
	overflow:hidden;
}

.slide{
	float:left;
}

#menu {
margin-top: -70px;
margin-left: 755px;
}

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

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


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

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

#menu li.act a{
	cursor:default;
}

.fbar{
	/* The left-most vertical bar, next to the first thumbnail */
	width:2px;
	background:url(img/divider.html) no-repeat right;
}

#menu li a{
	display:block;
	background:url(img/divider.html) no-repeat right;
	height:35px;
	padding-top:10px;
}

#menu a img{
	border:none;
}


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

h1{
	font-family:"Myriad Pro",Arial,Helvetica,sans-serif;
	font-size:36px;
	font-weight:normal;
	margin-bottom:15px;
}

h2{
	font-family:"Myriad Pro",Arial,Helvetica,sans-serif;
	font-size:12px;
	font-weight:normal;
	position:absolute;
	right:0;
	text-transform:uppercase;
	top:15px;
}

#main{
	/* The main container */
	margin:15px auto;
	text-align:center;
	width:1120px;
	position:relative;
}


