/* 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:4px;
	-webkit-border--radius:4px;
	border-radius:4px;
	text-align:center;
	font:12px "Trebuchet MS", Arial, Helvetica, sans-serif;
	background:url(img/panel.jpg) repeat-x bottom center #fff;
	/* The width of the gallery */
	width:300px;
	overflow:hidden!important;
	margin:0 auto 15px auto;
	color:#9f9f9f;
}

#slides{
	/* This is the slide area */
	height:210px!important;
	/* jQuery changes the width later on to the sum of the widths of all the slides. */
	overflow:hidden;
background:#efefef;
border-bottom:1px solid #fff;
}

.slide{
	float:left;
	display:block;
	height:193px!important;
	width:300px!important;
	overflow:hidden!important;
	margin:0 auto;
	/*background:url(img/entry.jpg) repeat-x top #ffffff;*/
background:#efefef;
}

.slide div.slide_content {
	height:393px!important;
	width:270px!important;
	margin:12px auto 0 auto;
	text-align:left;
color:#5c5c5c;
	overflow:hidden;
background:#efefef;
}

div.slide_content p {
	padding:0 0 5px 0;
}

div.slide_content a {
	color:#1c1c1c;
	text-decoration:underline;
}

div.slide_content a:hover {
	text-decoration:none;
}

div.slide_content strong {
	color:#1c1c1c;
}

div.slide_content img.left {
	float:right;
	display: block!important;
	-moz-border-radius: 3px!important;
	-khtml-border-radius: 3px!important;
	-webkit-border-radius: 3px!important;
	border-radius: 3px!important;
	border:1px solid #f0f0f0!important;
	padding:3px;
	margin:0 0 2px 10px;
}

#slides_menu{
	/* This is the container for the thumbnails */
	height:45px;
	width:280px;	
}

#slides_menu ul{
	list-style-type:none
}

#slides_menu li{
	/* Every thumbnail is a li element */
	width:60px;
	display:block;
	float:left;
	list-style:none;
	height:45px;
	overflow:hidden;
}

#slides_menu li.inact:hover{
	/* The inactive state, highlighted on mouse over */
	background:url(img/pic_bg.png) repeat;
}

#slides_menu li.act,li.act:hover{
	/* The active state of the thumb */
	background:url(img/active_bg.png) no-repeat;
}

#slides_menu li.act a{
	cursor:default;
}

#slides_menu .fbar{
	/* The left-most vertical bar, next to the first thumbnail */
	width:2px;
	background:url(img/divider.png) no-repeat right;
}

#slides_menu li a{
	display:block;
	background:url(img/divider.png) no-repeat right;
	height:35px;
	padding-top:10px;
}

#slides_menu a img{
	border:none;
}

