/*** Overall MovingBoxes Slider ***/
.slider {
	width: 1000px;
	margin: 0 auto;
	position: relative;
	left: 0;
	top: 0; /* changed */
	background-color:#fff;
	padding-top:20px;

}

.scrollContainer, .scroll {
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0 auto;
  padding: 0;
  position: relative;
  	background-color:#fff;

}

/* active slider border highlight */
.active-slider {
 
}

/*** Slider panel ***/
.slider div.panel {
  width: 300px;  /* default, this is overridden by script settings */
  margin: 5px 20px;
  padding: 5px;
  cursor: pointer;
  float: left;
}
.slider div.panel.current {
 cursor: auto;
}


.slider div.panel p {
 /* changed height: 120px;*/
}

/*** Inside the panel ***/
.inside {
  padding: 0 10px;
  border: 0px solid #999; /* changed to 0px */
}

.inside img {
  display: block;
  border: 0;
  margin: 0 0 10px 0;
  width: 100%;
}


.inside p {
 	font-size: 15px;
 	color: #444;
 	margin: 5px 0 0 0;
	padding:3px 0 0 0;
	text-align:center;
	line-height:1.2em;
}

.inside a {
  color: #333;
  text-decoration: none;
  border-bottom: 1px dotted #ccc;
}

.inside a:hover {
  border-bottom: 0px solid #999;
}

/*** Left & Right Navigation Arrows ***/
a.scrollButtons {
  display: block;
  width: 45px;
  height: 58px;
  background: transparent no-repeat;
  position: absolute;
  top: 40%; /* if you change the arrow images, you may have to adjust this (distance from top) */
  cursor: pointer;
  text-decoration: none;
  outline: 0;
  border: 0;
}
a.scrollButtons.left {
  background-position: left top;
  left: -45px;
}
a.scrollButtons.right {
  background-position: right top;
  right: -45px;
}
a.scrollButtons.left:hover {
  background-position: left bottom;
}
a.scrollButtons.right:hover {
  background-position: right bottom;
}

/*** Controls added below the panels ***/
.controls {
  margin: 0 auto;
  text-align: center;
  background: #ccc;
}
.controls a {
	color: #3f3234;
	display: inline-block;
	text-decoration: none;
	padding: 2px;
	height: 100px;
	margin: 5px 5px 0 0;
	text-align: center;
	outline: 0;
	font-size: 12px;
	text-transform: uppercase;
}
.controls a.current, .controls a:hover {
  color: #fff;
}
.active-slider .controls {
  background: #ccc;
}