.glidecontentwrapper{
position: relative; /* Do not change this value */
width: 100%; 
height:1200px; /* Set height to be able to contain height of largest content shown*/
border: 0;
margin:0 auto;
padding:0;
overflow: hidden;
}
@media (max-width: 450px) {
  .glidecontentwrapper {
      height: 200px;
  }
}

.glidecontent{ /*style for each glide content DIV within wrapper.*/
position: absolute; /* Do not change this value */
background: #fff;
padding-top: 0;
border: 2px solid #FFF;
margin:0;
visibility: hidden;
width: 100%;
}
/*
 Total glidecontent width: 330px+10px+10px=350px
    Or width of wrapper div itself (not counting wrapper border/padding)
*/

.glidecontent img {
    margin:0; padding:0; border:0;
}

.glidecontenttoggler{ /*style for DIV used to contain toggler links. */
width: 100%;
text-align: center; /*How to align pagination links: "left", "center", or "right"
background: white; /*always declare an explicit background color for fade effect to properly render in IE*/
}
/*
 Total contenttoggler width: 350px+5px+5px=360px
    Or total width of wrapper div (counting wrapper border/padding)
*/

.glidecontenttoggler a{ /*style for every navigational link within toggler */
display: -moz-inline-box;
display: inline-block;
border: 0px solid #ccc;
background: #ccc;
color: #666666;
padding: 2px 5px;
margin-right: 4px;
font-weight: normal;
text-decoration: none;
}

.glidecontenttoggler a.selected{ /*style for selected page's toggler link. ".selected" class auto generated! */
background: #DD3333;
color: white;
}

.glidecontenttoggler a:hover{
background: rgb(128, 128, 128);
color: white;
}

.glidecontenttoggler a.toc{ border-top-right-radius: 3px;
    -moz-border-top-right-radius: 3px;
    -webkit-border-top-right-radius: 3px;
        border-top-left-radius: 3px;
    -moz-border-top-left-radius: 3px;
    -webkit-border-top-left-radius: 3px;/*style for individual toggler links (page 1, page 2, etc). ".toc" class auto generated! */
}

.glidecontenttoggler a.prev, .glidecontenttoggler a.next{ border-top-right-radius: 3px;
    -moz-border-top-right-radius: 3px;
    -webkit-border-top-right-radius: 3px;
        border-top-left-radius: 3px;
    -moz-border-top-left-radius: 3px;
    -webkit-border-top-left-radius: 3px;/*style for "prev" and "next" toggler links. ".prev" and ".next" classes auto generated! */
}

.glidecontenttoggler a.prev:hover, .glidecontenttoggler a.next:hover{border-top-right-radius: 3px;
    -moz-border-top-right-radius: 3px;
    -webkit-border-top-right-radius: 3px;
        border-top-left-radius: 3px;
    -moz-border-top-left-radius: 3px;
    -webkit-border-top-left-radius: 3px;
background: #1A48A4;
color: white;
}
