/* 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:5px solid #FFFFFF;
	height:360px;
	background:#20130B;
	

	
	/* The width of the gallery */
	width:740px; /* 700px */
	overflow:hidden;
}

#slides{
	/* This is the slide area */
	height:270px;
	
	/* jQuery changes the width later on to the sum of the widths of all the slides. */
	width:700px;
	overflow:hidden;
}
.slide{
	float:left;
	margin:10px 15px 0px 15px;
	cursor:pointer;
	border-left:solid 1px #FFFFFF;
	border-right:solid 4px #FFFFFF;
	border-bottom:solid 4px #FFFFFF;
	border-top:solid 1px #FFFFFF;
	width:250px;
	height:250px;
}
.slide:hover{
	border-left:solid 1px #FFFF00;
	border-right:solid 4px #FFFF00;
	border-bottom:solid 4px #FFFF00;
	border-top:solid 1px #FFFF00;
}
#menu{
	/* This is the container for the thumbnails */
	height:55px;
	border:solid 1px #F7C913;
	margin:15px 90px 0 70px;
	font-family:"Century Gothic";
	font-size:20px;
	font-weight:bold;
	color:#FF0000;
	cursor:pointer;
}

#menu ul{
	padding:5px;
}

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

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

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

li.act a{
	cursor:default;
}

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

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

a img{
border:none;
border:#FF0000 solid 1px,
}


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

#main{
	/* The main container */
	margin:15px 10px 40px 10px;
	text-align:center;
	float:left;
}

a, a:visited {
	color:#0196e3;
	text-decoration:none;
	outline:none;
}

a:hover{
	text-decoration:underline;
}

p{
	padding:30px;
	text-align:center;
}
