/* Gallery styles */

#gallery{

	/* The width of the gallery */
	width:960px;
	overflow:hidden;
}

#slides{
	/* This is the slide area */
	height:320px;
  background-color: #FFF;

  -webkit-box-shadow:  0px 4px 5px 3px rgba(0, 0, 0, 0.35);
  box-shadow:  0px 4px 5px 3px rgba(0, 0, 0, 0.35);     
	
	/* jQuery changes the width later on to the sum of the widths of all the slides. */
	width:960px;
	overflow:hidden;
}

.slide{
	float:left;
  width: 960px;
  height: 320px;
}
.slide h1{
  font-family:"Ubuntu","Helvetica Neue",Helvetica,Arial,Sans-Serif;
  width: 400px;
  padding-left: 30px;
  font-size:2.2em;
	font-weight:normal;
  text-shadow: none;
	color: #000;
}
.slide p{
  width: 400px;
  padding: 30px;
  padding-top: 10px;
  line-height:1.25em;
	padding-bottom:1em;
  text-decoration: none;
  text-shadow: none;
	color: #000;
}
.slide img{
  float: right;
  top: 0px;
  padding: 0px;
  margin: 0px;
  margin-top: -50px;
}
#menu{
	/* This is the container for the thumbnails */
	height:50px;
  top: 0px;
  width: 600px;
}

#function_ul{
	margin:0px;
	padding:0px;
}

li{
	/* Every thumbnail is a li element */
	width:60px;
	display:inline-block;
	list-style:none;
	height:45px;
	overflow:hidden;
}

li.act,li.act:hover{
	/* The active state of the thumb */
	background:url(../img/active_bg.png) no-repeat;
}

li.act a{
	cursor:default;
}


a img{
	border:none;
}
