/* Gallery styles */

#carousel{
	/* 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 */
	width:620px;
	overflow:hidden;
	float: right;
	margin-right: 14px;
	background-color: #F1F0F0;
	background-image: url(../images/carousel/panel.jpg);
	background-repeat: no-repeat;
	background-position: center bottom;
}
#carousel h1 {
	/* Page reset */
	margin:0px;
	padding:0px;
}
#carousel h2 {
	/* Page reset */
	margin:0px;
	padding:0px;
}
#carousel h3 {
	/* Page reset */
	margin:0px;
	padding:0px;
}
#carousel p {
	/* Page reset */
	margin:0px;
	padding:0px;
}
#carousel quote {
	/* Page reset */
	margin:0px;
	padding:0px;
}
#carousel small {
	/* Page reset */
	margin:0px;
	padding:0px;
}
#carousel form {
	/* Page reset */
	margin:0px;
	padding:0px;
}
#carousel input {
	/* Page reset */
	margin:0px;
	padding:0px;
}
#carousel ul {
	/* Page reset */
	margin:0px;
	padding:0px;
}
#carousel li {
	/* Page reset */
	margin:0px;
	padding:0px;
}
#carousel ol {
	/* Page reset */
	margin:0px;
	padding:0px;
}
#carousel label {
	/* Page reset */
	margin:0px;
	padding:0px;
}
#carousel #slides{
	/* This is the slide area */
	height:350px;
	/* jQuery changes the width later on to the sum of the widths of all the slides. */
	width:640px;
	overflow:hidden;
}

.slide{
	float:left;
}

#carousel #menu{
	/* This is the container for the thumbnails */
	height:45px;
	padding-right: 8px;
	padding-left: 8px;
	text-align: center;
}

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

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

#carousel li.inact:hover{
	background-image: url(../images/carousel/pic_bg.png);
	background-repeat: repeat;
}

#carousel li.act,li.act:hover{
	background-image: url(../images/carousel/active_bg.png);
	background-repeat: no-repeat;
}

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

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

#carousel li a{
	display:block;
	height:35px;
	padding-top:10px;
	background-image: url(../images/carousel/divider.jpg);
	background-repeat: no-repeat;
	background-position: right;
}

#carousel a img{
	border:none;
}
