

/* 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;


	
	/* The width of the gallery */
	overflow:hidden;
    width:690px;
    height:300px;
    background: url(../img/bg.png) no-repeat;
    font-family:Tahoma,Arial, Helvetica, sans-serif;
    font-size:13px;
}

#slides{
	/* This is the slide area */
	height:260px;
	
	/* jQuery changes the width later on to the sum of the widths of all the slides. */
	width:690px;
	overflow:hidden;
}

.slide{
	float:left;
    width:690px;
    margin-top: 10px;
}




#gallery #menu{
	/* This is the container for the thumbnails */
	height:30px;
    float: left;
    margin:9px 0px 0px 10px;
}

#gallery ul{
	padding:0px;
    width: 670px;
    float: left;
    margin:0px
}

#gallery li{
	/* Every thumbnail is a li element */
	width:150px;
	display:inline-block;
	list-style:none;
	height:30px;
	overflow:hidden;
    float: left;
    background:url(../img/bnt_bg.png) no-repeat;
}

#gallery li.inact:hover{
	/* The inactive state, highlighted on mouse over */
	background:url(../img/pic_bg.png) repeat;
    color: #493e29;
}

#gallery li.act,li.act:hover{
	/* The active state of the thumb */
	background:url(../img/active_bg.png) no-repeat;

}

#gallery li.act a{
	cursor: default;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
	background:url(../img/active_bg.png) no-repeat;
}

.fbar{
	/* The left-most vertical bar, next to the first thumbnail */
	width:2px;

}

#gallery li a{
	display:block;
	height:35px;
	padding-top:10px;

}

#gallery a img{
	border:none;
}


/* The styles below are only necessary for the demo page */

#gallery h1{
	font-family:"Myriad Pro",Arial,Helvetica,sans-serif;
	font-size:36px;
	font-weight:normal;
	margin-bottom:15px;
}

#gallery 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:920px;
	position:relative;
	border:1px solid red;*/

	width:690px;
	float:right;
	margin-right:11px;
	margin-top:0;
	margin-bottom:32px;
	text-align:center;
	
}

#gallery	a:link{
	color: #493e29;
	text-decoration:none;
	outline:none;
    font-weight: bold;
}

#gallery a:visited {
	color: #493e29;
	text-decoration:none;
	outline:none;
	font-weight: bold;
}
#gallery a:hover{
	text-decoration:none;
}

#gallery p{
	padding:10px;
	text-align:center;
}
