
/** Glidejs styles **/
.slider {
	position: relative;
	width: 100%;
	height: 200px;
	overflow: hidden; border:none;
}
.slider ul{ margin:0px;}
.slider h2{font-size: 1.2em;
	color: #7F0000;
	font-weight: bold;
	text-align:center;	
	line-height: 20px;
	padding:0px 0px; margin:0px; word-wrap:break-word; width:400px;}
.slides {
  height: 200px;
  width:90%;
  overflow: hidden;
  /**	
   * Prevent blinking issue
   * Not tested. Experimental.
   */
  /*-webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;

   -webkit-transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000); 
   -moz-transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000); 
   -ms-transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000); 
   -o-transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000); */
   transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000); border:none;
}

.slider ul li{ list-style-type:none;}
.slide ul li{ list-style-type:circle; margin:0;}
.slide {
	width:100%;
  float: left;
   border:none;
}
.slide ul {margin:0px;}
.slide ul li{list-style-image:url('../images/arrow2_PY.png'); margin:0px;}
.slide div{ width:400px; margin-left:-20px;}

.slider-arrows {}

.slider-arrow {
  position: absolute;
  display: block;
  margin-bottom: -20px;
  padding: 5px;
  text-decoration: none;
  font-size: 1.0em; font-weight:bold;
  color: #000000;
  border: 1px solid #999999; background:#cccccc;
  border-radius: 8px;
  /* -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear; */
  transition: all 0.2s linear;
}
.slider-arrow:hover {
  background: #333333;
  color: #aaa;
}
.slider-arrow--right { bottom: 60%; right: 0px; }
.slider-arrow--left { bottom: 60%; left: 0px; }






