/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 17 2018 | 19:20:33 */
/* Slides */
.mySlidesExpert {
  display: none;
  padding: 0px;
  text-align: left;
} 
/* Next & previous buttons */
.prevE, .nextE {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -240px;
  padding: 16px;
  color: #e2e2e2 !important;
  font-weight: bold;
  font-size: 42px;
  border-radius: 0 3px 3px 0;
  user-select: none;
} 
/* Position the "next button" to the right */
.nextE {
  position: absolute;
  right: 0;
  border-radius: 3px 0 0 3px;
} 
/* On hover, add a black background color with a little bit see-through */
.prevE:hover, .nextE:hover {
  background-color: rgba(248,248,248,0.2);
  color: white;
} 
/* The dot/bullet/indicator container */
.dotE-container {
    text-align: center;
    padding: 20px;
    background: #fff;
} 
/* The dots/bullets/indicators */
.dotE {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
} 
/* Add a background color to the active dot/circle */
.active, .dotE:hover {
  background-color: #235adb;
} 
/* Add an italic font style to all quotes */
q {font-style: italic;}
/* Fading animation */
.fadeE {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 2.5s;
  animation-name: fade;
  animation-duration: 2.5s;
}

@-webkit-keyframes fadeE {
  from {opacity: .1}
  to {opacity: 1}
}

@keyframes fadeE {
  from {opacity: .1}
  to {opacity: 1}
}
