/*
    these are just the default styles used in the Cycle2 demo pages.  
    you can use these styles or any others that you wish.
*/

/* set border-box so that percents can be used for width, padding, etc (personal preference) */
.cycle-slideshow,
.cycle-slideshow * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.cycle-slideshow {
  width: 100%;
  max-width: 100%;
  min-width: 1050px;
  height: 500px;
  margin: 0;
  padding: 0;
}

.cycle-slideshow > span {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  height: 500px;
}

/* slideshow images (for most of the demos, these are the actual "slides") */
.cycle-slideshow img {
  /* 
    some of these styles will be set by the plugin (by default) but setting them here
    helps avoid flash-of-unstyled-content
    */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
  display: block;
}

/* in case script does not load */
.cycle-slideshow img:first-child {
  position: static;
  z-index: 100;
}
/* pager */
.cycle-pager {
  text-align: center;
  width: 100%;
  z-index: 500000;
  position: absolute;
  bottom: 10px;
  overflow: hidden;
}
.cycle-pager span {
  font-size: 80px;
  width: 30px;
  height: 30px;
  margin-right: 3px;
  margin-left: 3px;
  line-height: 30px;
  display: inline-block;
  color: #fff;
  cursor: pointer;
}
.cycle-pager span.cycle-pager-active {
  color: #f79331;
}
.cycle-pager > * {
  cursor: pointer;
}

/* caption */
.cycle-caption {
  position: absolute;
  color: white;
  bottom: 15px;
  right: 15px;
  z-index: 700;
}

/* overlay */
.cycle-overlay {
  font-family: tahoma, arial;
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 600;
  background: black;
  color: white;
  padding: 15px;
  opacity: 0.5;
}

#progress {
  position: absolute;
  top: 0;
  height: 2px;
  width: 0px;
  background: #ef4036;
  z-index: 110;
}

/* prev / next links */
.cycle-prev,
.cycle-next {
  position: absolute;
  top: 0;
  width: 30%;
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: 800;
  height: 100%;
  cursor: pointer;
}
.cycle-prev {
  left: 0;
  background: url(http://malsup.github.com/images/left.png) 50% 50% no-repeat;
}
.cycle-next {
  right: 0;
  background: url(http://malsup.github.com/images/right.png) 50% 50% no-repeat;
}
.cycle-prev:hover,
.cycle-next:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}

.disabled {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

/* display paused text on top of paused slideshow */
.cycle-paused:after {
  content: "Paused";
  color: white;
  background: black;
  padding: 10px;
  z-index: 500;
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 10px;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

/* 
    media queries 
    some style overrides to make things more pleasant on mobile devices
*/

@media only screen and (max-width: 480px),
  only screen and (max-device-width: 480px) {
  .cycle-slideshow {
    width: 200px;
  }
  .cycle-overlay {
    padding: 4px;
  }
  .cycle-caption {
    bottom: 4px;
    right: 4px;
  }
}

body,
table li {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 12px;
  color: #333;
}
/* marketing */

#featured-promo {
  width: 100%;
  height: 500px;
}
#featured0 {
  width: 1050px;
  margin: 0 auto;
  height: 500px;
  position: relative;
  padding-top: 75px;
}
#featured0-back {
  width: 100%;
  height: 500px;
  background-image: url(../images/ma2016/auto.jpg);
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.appbutton {
  width: 167px;
  height: 49px;
  display: inline-block;
  margin: 0 auto;
}
#featured1 {
  width: 1050px;
  margin: 0 auto;
  height: 500px;
  position: relative;
  padding-top: 75px;
}
#featured1-back {
  width: 100%;
  height: 500px;
  background-image: url(../images/ma2016/estate.jpg);
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
}
#featured2 {
  width: 1050px;
  margin: 0 auto;
  height: 500px;
  position: relative;
  padding-top: 75px;
}
#featured2-back {
  width: 100%;
  height: 500px;
  background-image: url(../images/ma2016/billpay.jpg);
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
}
#featured3 {
  width: 1050px;
  margin: 0 auto;
  height: 500px;
  position: relative;
  padding-top: 75px;
}
#featured3-back {
  width: 100%;
  height: 500px;
  background-image: url(../images/ma2016/piggy.jpg);
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
}

#featured6 {
  width: 1050px;
  margin: 0 auto;
  height: 500px;
  position: relative;
  padding-top: 75px;
}
#featured6-back {
  width: 100%;
  height: 500px;
  background-image: url(../images/OMC_Slider.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0;
}
.fc {
  position: absolute;
  top: 50px;
  left: 50px;
  background: rgba(255, 255, 255, 0.9);
  padding: 25px;
  display: inline-block;
  text-align: left;
  border: 1px solid #ffffff;
  font-family: "Maven Pro", sans-serif;
  font-weight: 400;
  font-size: 20px;
  max-width: 600px;
}
.fc p {
  line-height: 30px;
  margin-top: 1px;
  margin-bottom: 15px;
  font-size: 24px;
}
.fc-small {
  font-size: 12px;
  line-height: 15px;
}
h5 {
  font-family: "Maven Pro", sans-serif;
  font-weight: 700;
  font-size: 30px;
  margin: 0px;
  line-height: 35px;
  text-transform: uppercase;
}
.featured-btn {
  color: #ffffff;
  text-decoration: none;
  font-family: "Maven Pro", sans-serif;
  font-weight: 400;
  font-size: 20px;
  padding: 15px;
  display: inline-block;
  text-transform: uppercase;
  text-align: center;
  margin: 0 auto;
  background-color: #89c74b;
  float: right;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  margin-top: 20px;
}
.featured-btn:hover {
  color: #ffffff;
  background-color: #6eb43f;
}

/* featured tiles */
#ft-wrapper {
  width: 100%;
  overflow: auto;
  padding-top: 25px;
  padding-bottom: 25px;
}
#ft-main {
  width: 1050px;
  min-width: 1050px;
  min-height: 100px;
  margin: 0 auto;
}
.ft-tile {
  width: 330px;
  height: 250px;
  float: left;
  margin-left: 10px;
  margin-right: 10px;
}

/* featured rates */
#fr-wrapper {
  width: 100%;
  height: 150px;
  background-color: #313a90;
}
#fr-main {
  width: 1050px;
  height: 130px;
  margin: 0 auto;
}
.fr-div {
  width: 15px;
  height: 100px;
  float: left;
  margin-top: 15px;
}
.fr-container {
  width: 198px;
  margin-top: 15px;
  float: left;
  text-align: center;
  line-height: 40px;
}
.frbold {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
}
.frsmall {
  font-family: Helvetica, sans-serif, Arial;
  font-size: 10px;
  color: #fff;
}
.frtext {
  font-size: 40px;
  color: #ffffff;
  font-weight: 400;
}
#fr-apr {
  float: left;
  width: 1050px;
  text-align: center;
  font-size: 12px;
  color: #5969ff;
  padding: 10px;
}

/* banners */
#bnnr-wrapper {
  width: 100%;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #eee;
  border-bottom: 1px solid #fff;
  border-top: 1px solid #fff;
  -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.5);
}
#bnnr-container {
  width: 1050px;
  margin: 0 auto;
  overflow: auto;
  text-align: center;
}
#bnnr-container img {
  margin-left: 25px;
  margin-right: 25px;
}

/* featured links */
#fl-wrapper {
  width: 100%;
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: #eeeeee;
}
#fl-container {
  width: 1050px;
  min-height: 275px;
  margin: 0 auto;
}
.fl-links {
  width: 260px;
  height: 235px;
  margin-left: 2px;
  float: left;
  text-align: center;
}
a.fl-links {
  font-family: "Maven Pro", sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: #00adef;
  line-height: 40px;
  text-decoration: none;
}
.fl-links:hover {
  color: #f7941e;
}

/* featured banners */
#fb-wrapper {
  width: 100%;
  height: 100px;
  background-color: #fff;
}
#fb-container {
  width: 1050px;
  height: 80px;
  padding-top: 20px;
  margin: 0 auto;
  text-align: center;
}
