/* Step #1 - Eric Meyer's Reset */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Step #2: */



/* Step #2: Global Styles */

html 
{
  min-height: 100%;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
}

body 
{
    position: relative;
    height: 100%;
  padding: 0;
  margin: 0;
    font-family: 'Droid Sans', sans-serif;
    font-size: 15px;
    line-height: 140%;
    color: #000000;
    background: #ffffff;
    background-image: linear-gradient(left , rgb(255,158,1) 0%, rgb(255,158,1) 35%, rgb(255,255,255) 35%);
    background-image: -o-linear-gradient(left , rgb(255,158,1) 0%, rgb(255,158,1) 35%, rgb(255,255,255) 35%);
    background-image: -moz-linear-gradient(left , rgb(255,158,1) 0%, rgb(255,158,1) 35%, rgb(255,255,255) 35%);
    background-image: -webkit-linear-gradient(left , rgb(255,158,1) 0%, rgb(255,158,1) 35%, rgb(255,255,255) 35%);
    background-image: -ms-linear-gradient(left , rgb(255,158,1) 0%, rgb(255,158,1) 35%, rgb(255,255,255) 35%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, rgb(255,158,1)), color-stop(0.35, rgb(255,158,1)), color-stop(0.35, rgb(255,255,255)));
}

body.home {
    background-image:  none;
}

h1 
{
    font-size: 1em; font-size: 1.44rem;
    line-height: 2em; line-height: 2rem;
}

h2 
{
    font-size: 2.5em; font-size: 2.5rem;
    line-height: 1em; line-height: 2.6rem;
    margin-bottom: 10px;
}


h3 
{
    font-size: 1.6em; font-size: 1.5rem;
    line-height: 1.5em; line-height: 1.6rem;
    margin-bottom: 5px;
}

h4 
{
    font-size: 1.3em; font-size: 1.2rem;
    line-height: 1.4em; line-height: 1.4rem;
    margin-bottom: 5px;
  color: #666666;
}

h5 
{
    font-size: 1.1em; font-size: 1.1rem;
    line-height: 1.2em; line-height: 1.2rem;
    margin-bottom: 2px;
}

h6 
{
}

p 
{
  margin-bottom: 1em; margin-bottom: 1rem;
}

ul 
{
}

ol 
{
}

li 
{
}

strong 
{
  font-weight: bold;
}

em 
{
  font-style: italic;
}

u 
{
}

a 
{
  text-decoration: none;
  color: #ff9e01;
}

a:active
{
  outline: none;
}

a:visited 
{
  color: #ff9e01;
}

a:hover 
{
  outline: none;
  text-decoration: none;
  color: #ff9e01;
}

table 
{
}

tr 
{
}

th 
{
}

td 
{
}

img 
{
}

@media screen and (max-device-width: 480px)
{
    body  {
      width: 100%;
      background-image: none;
      padding: 0;}
   
   h2 {
    font-size: 2rem;
    line-height:2.1rem;}
}

/* Step #3: Specific Styles */
#content,
#primary,
#secondary,
.imgWrapper,
.inner,
header,
footer
{
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.vcard
{
    display: block;
}

#secondary .adr,
#secondary .street-address,
#secondary .tel
{
  display: block;
}

.tel .type
{
  display      : none;
}

.center 
{
  text-align    : center;
}

a.button,
.add-to-cart,
.update-cart,
.paypal-checkout
{
  display: inline-block;
  color: #000000;
  background: #ff9e01 url(images/bgBtn.png) repeat-x top left;
  border: 1px solid #ff7f01;
}


.ie7 .paypal-checkout
{
  margin-left: 5px;
}

a.button:hover,
.add-to-cart:hover,
.update-cart:hover,
.paypal-checkout:hover
{
  color: #ffffff;
}

/*___ DIV _________________________________________________________________*/
#container
{
    min-height: 100%;
}
header
{
    position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
    display: block;
  height: 87px;
    background: #000000 url(images/bgHeader.jpg) no-repeat top left;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .4);
  text-align: center;
}

header nav {
  display: inline-block;
  vertical-align: top;
  width: 595px;
  text-align: right;
  line-height: 200%;
  padding: 14px 24px 0 0;
  margin-left: 10%;
  background: url(images/radioSignal.png) no-repeat right 7px;
}

.ie9 header nav {
  width: 620px;
}

.ie8 header nav {
  width: 630px;
}

.ie7 header nav
{
  display: inline;
}

#content
{
    position: relative;
    display: block;
    margin: 0 auto;
  overflow: hidden;
}

.twoColumn
{
    word-spacing: -1em;
}

#primary
{
    position: relative;
    display: inline-block;
  width: 65%;
    padding: 160px 0 10px 0;
    word-spacing: normal;
    vertical-align: top;
    float: right;
}

.home #primary
{
  font-size: 22px;
  line-height: 140%;
  float: none;
  width: 77%;
}

#primary .inner
{
  width: 80%;
  margin: 0 auto;
  overflow: hidden;
}

.home #primary .inner
{
  width: 600px;
}

.ie7 #primary
{
    display: inline;
}

#banner
{
  margin-bottom: 20px;
  overflow: hidden;
}

#secondary
{
    position: relative;
    width: 35%;
    word-spacing: normal;
}

.ie #secondary,
.ie9 #secondary {
  background: #ff9e01;       
}

.home #secondary
{
  position: fixed;
  right: -20px;
  top: 86px;
  bottom: 0;
  width: 24.5%;
  box-shadow: inset 5px 3px 7px rgba(0, 0, 0, .25);
  font-size: .9em; font-size: .818rem;
  line-height: 1.4em; line-height: 1.2rem;
    min-height: 0;
    padding-bottom: 0;
  background: #ff9e01;    
}

#secondary .inner
{
  height: 100%;
  padding: 190px 0 50px;
  width: 320px;
  margin: 0 auto;
}

.home #secondary .inner
{
  position: relative;
  width: auto;
  height: 97%;
  padding: 5%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

footer
{
    position: relative;
    display: block;
  color: #969696;
    /*height: 100px;
    margin-top: -100px;*/
  overflow: hidden;
  width: 100%;
  float: right;
  font-size: .8em; font-size: .8rem;
    height: auto;
}

.home footer
{
  width: 77%;
  float: none;
}

 footer .stripe {
    width: 35%;
    position:  absolute;
    left: 0;
    top: 0;
    height: 100%;
  background: #ff9e01;
}

.home footer .stripe {
     display:  none;
 }

footer .inner
{
  margin: 20px 0 0 42%;
  width: 52%;
  padding: 0 0 0 0%;
}

.home footer .inner
{
  width: 600px;
    margin: 0 auto;
    float: none;
}

.imgWrapper
{
  width: 100%;
  border: 1px solid #bbbbbb;
  margin-bottom: 30px;
}

.total
{
  border-top: 1px solid #000000;
  padding: 5px 0 0;
  margin: 5px 0 0;
}

#gmap
{
  width: 100%;
  height: 450px;
}

@media screen and (max-width: 1024px)
{
  #primary .inner,
  footer .inner  {
    width: 600px;
  }
}

@media screen and (max-width: 959px)
{
  header nav {
    margin-left: 0;
    padding-right: 0;
    background: none;
    font-size: .5em; font-size: .5rem;
    width: 80%;
    line-height: 300%;
  }  
  #primary .inner, .home #primary .inner, .home footer .inner {
    width: 96%;
  }
  .home #primary {
    margin-left: 0;
    width: 590px;
  }  
  #secondary .inner {
    width: 90%;
  }
  .home #secondary {
    width: 200px;
  }
  footer {
    margin-left: 0;
  }
  footer .inner {
    margin-left: 37%;
    width: 63%;
  }
}

@media screen and (max-device-width: 480px)
{

    header
  {
        padding: 0;
    position: relative;
    width: 100%;
    height: auto;
    }
  header nav {
    width: 100%;
    position: relative;
    line-height: 140%;
    padding: 0;
    display: block;
  }
  
    #content
  {
        width: 100%;
        padding: 0;
        margin: 0;
        font-size: 1.03rem;
        line-height: 1.3rem;
    }
  
    #primary,
  .home #primary,
  #primary .inner ,
  .home #primary .inner {
        padding: 10px 1%;
        margin: 0;
        display: block;
    float: none;
        width: 100%; }

    #secondary,
  .home #secondary {
        padding: 0;
        margin: 0;
    padding: 0;
        display: block;
        width: 100%;
    position: relative;
    top: auto;
    right: auto;
    box-shadow: none;
    background: #ff9e01; }
    
  #secondary .inner {
    padding: 15px 0;}
    
  footer, footer .inner, .home footer, .home footer .inner {
        margin: 10px 0 0;
    padding: 0 1% 10px;
    font-size: .7rem;
    line-height: 140%;
        width: 100%;}
}

/*___ SPAN _________________________________________________________________*/

.home #primary h1 span
{
  display: block;
  color: #ff9e01;
  font-size: 3em; font-size: 4.31rem;
  line-height: 1.2em; line-height: 5.25rem;
  margin-top: -12px;
}

.ie8 .home #primary h1 span
{
  margin-top: -25px;
}

.home #secondary .tel
{
  font-size: 1.75em; font-size: 1.15rem;
  display: block;
  margin-bottom: 5px;
}

#product-list label span,
#product-list .label
{
  font-weight: bold;
  display: inline-block;
  width: 100px;
  vertical-align: middle;
}

.price
{
  margin-bottom: 5px;
  display: block;
}

#cart .price
{
  display: inline-block;
  width: 30%;
  text-align: right;
}

.total span
{
  display: inline-block;
  font-weight: bold;
}

.total-label
{
  width: 68%;
  text-align: right;
}

.total-value
{
  width: 30%;
  text-align: right;
}

#cart .title
{
  display: inline-block;
  vertical-align: middle;
  width: 49%;
  margin: 0 15px 0 0;
  font-size: .9em; font-size: .9rem;
  font-style: italic;
}

.admissions li span
{
  margin-right: 5%;
}

@media screen and (max-width:959px)
{
  .home #primary h1 span {
    font-size: 1.9em; font-size: 3.9rem;
  }
}

@media screen and (max-device-width: 480px)
{
    .home #primary h1 span {
      font-size: 3.2rem;}
}
/*___ H1 _________________________________________________________________*/
header h1
{
    margin: 0;
    padding: 0;
  display: inline-block;
  vertical-align: top;
}

.ie7 header h1
{
  display: inline;
}

.home #primary h1
{
  background: url(images/homeLineArt.png) no-repeat center right;  
}

.home #secondary h1
{
  font-size: .9em; font-size: .82rem;
  text-transform: uppercase;
  line-height: 1.5em; line-height: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
}

@media screen and (max-device-width: 480px)
{
  header h1  {
    display: block;}
  
  .home #primary h1 {
    background: none; }
}

/*___ H2 _________________________________________________________________*/

.home #secondary h2
{
  font-size: 1.35em; font-size: 1.15rem;
  line-height: 1.5em; line-height: 1.2rem;
  margin-bottom: 0;
}

#primary h2
{
  color: #ff9e01;
}

#secondary h2
{
  margin-bottom: 0px;
}

.Visit #secondary h2,
.contact #secondary h2
{
  margin: 25px 0 5px;
}

.Visit #secondary h2:first-of-type,
.contact #secondary h2:first-of-type
{
  margin-top: 0;
}

@media screen and (max-width:959px)
{
  #secondary h2
  {
    font-size: 2em; font-size: 2rem;
  }
}

/*___ H3 _________________________________________________________________*/

.visitors h3
{
  height: 50px;
  margin-bottom: 10px;
}

@media screen and (max-device-width: 480px)
{
  .visitors h3 {
    font-size: .9rem;
    line-height: 1rem;
    height: 30px;}
}

/*___ H4 _________________________________________________________________*/

#primary h3 + h4
{
  margin-top: 10px;
}

/*___ H5 _________________________________________________________________*/

/*___ H6 _________________________________________________________________*/

/*___ P _________________________________________________________________*/

.events p
{
  margin-bottom : 0;
}

.events + p
{
  margin-bottom: 40px;
  text-align: center;
  font-size: 1.5em; font-size: 1rem;
}

.ie8 .events + p
{
  padding-bottom: 90px;
}

.copyright
{
    margin-bottom: 0;
}

@media screen and (max-device-width: 480px)
{
  .copyright {
    font-size: .5rem;}
}

/*___ UL/OL _________________________________________________________________*/
#main
{
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.TextPage #primary ul,
.Support #primary ul
{
    margin: 15px 0 15px 30px;
    list-style-type: disc;
}

.TextPage #primary ol
{
    margin: 15px 0 15px 30px;
    list-style-type: decimal;
}

.rotator
{
  line-height: 0;
  position: relative;
  overflow: hidden; 
  height: 300px;
  width: auto;
}

.controls
{
  background: #000000;
  text-align: right;
  padding-right: 2%;
}

.home .links
{
  overflow: hidden;
  margin: 15px 0 25px;
}

#product-list ul
{
  margin: 30px 0;
}

#secondary h2 + nav
{
  margin-top: 15px;
}

#secondary .social
{
  float: right;
  padding-right: 2%;
  margin-top: -14px
}

.hours
{    
  margin-bottom: 20px;
}

.home .hours
{
  border-bottom: 1px solid #000000;
  padding-bottom: 20px;
}

footer .social
{
  overflow: hidden;
  list-style-type: none;
  margin: 0;
}

.workshops,
.visitors
{
  display: block;
  overflow: hidden;
  margin: 40px 0;
}


@media screen and (max-width: 959px)
{
  .rotator {
    height: 283px;
  }
  #secondary .social{
    float: none;
    margin-top: 0;}
}

@media screen and (max-device-width: 480px)
{
    .menu  {
        position: relative;
        width: 100%;
        padding: 0;}
    
  .rotator {
    width: 100%;
    height: 150px;
  }
  
  .controls {
    width: 100%;
  }
    
  #secondary .social {
    float: right;}
}
/*___ LI _________________________________________________________________*/
.menu li
{
    position: relative;
    display: inline-block;
    z-index: 7;
}

.ie7 .menu li
{
    display: inline;
}

.menu li:first-child
{
    margin-left: 0;
}

#secondary .menu li
{
    display: block;
    width: 100%;
    margin: 0 0 7px;
}

.rotator li
{
  position: absolute;
  top: 0;
  left: 0;
}

.controls li
{
  background: url(images/square.png) no-repeat top left;
  width: 15px;
  height: 15px;
  display: inline-block;
}

.ie7 .controls li 
{
  display: inline;
  padding: 10px 5px 0px 0;
}

.controls li.current
{
  background-image: url(images/squareCurrent.png);
}

.home .links li
{
  width: 24.2%;
  margin-left: 1%;
  float: left;
  text-align: center;
  text-transform: uppercase;
  font-size: .65em; font-size: .9rem;
  line-height: 110%;
}

.home .links li:first-child
{
  margin-left: 0;
}


.events li,
.admissions li
{
  margin-bottom: 20px;
  overflow: hidden;
}

footer .social li
{
  float: left;
}

.levels li
{
  width: 23.9%;
  float: left;
  height: 150px;
  overflow: hidden;
  border: 1px solid #bbbbbb;
  margin: 0 0 5px 1%;
}

.levels li:nth-child(4n + 1)
{
  margin-left: 0;
}

.levels li:hover
{
  border: 1px solid #FF9E01;
}

#product-list li
{
  display: block;
  overflow: hidden;
  margin-bottom: 70px;
}

.paypal-cart li
{
  margin-bottom: 15px;
}

.workshops > li
{
  position: relative;
  width: 73%;
  padding-left: 27%;
  margin-bottom: 50px;
}
.workshops li li
{
  line-height: 1.5em; line-height: 1.5rem;
}

.visitors > li
{
  width: 32%;
  float: left;
  text-align: center;
  margin-left: 2%;
}

.visitors > li:first-child
{
  margin-left: 0;
}

.visitors li li
{
  font-size: 1.3em; font-size: 1.3rem;
  line-height: 140%;
}

.TextPage #primary li
{
  padding-bottom: 7px;
  line-height: 130%;
}

@media screen and (max-width:959px)
{
  .visitors li li {
    font-size: 1em; font-size: 1rem;
  }
  #secondary .social li {
    display: inline-block;
    vertical-align: middle;}
  
  .ie7 #secondary .social li {
    display: inline; }
}

@media screen and (max-device-width: 480px)
{
    .menu li  {
        width: 49.9%;
    padding: 5px 0;
        vertical-align: middle;
        border-bottom: solid 1px #aaa;}
  
  #main li {
    min-height: 50px;}

    .menu li:first-child,
    .menu li:nth-child(2)  {
        border-top: solid 1px #aaa; }

    .menu li:nth-child(even)   {
        margin-left: -5px;}

    .menu li:nth-child(odd) {
        border-right: solid 1px #aaa;}

    #secondary .menu li  {
        margin-right: 0;
        margin-left: 0;
        width: 100%;
        border-bottom: none;}

    #secondary .menu li:first-child,
    #secondary .menu li:nth-child(2)  {
        border-top: none;}

    #secondary .menu li:nth-child(even) {
        margin-left: 0;}

    #secondary .menu li:nth-child(odd)  {
        border-right: none;}
    
  #banner .rotator li {
    width: 100%; }
    
  .home .links li {
    text-transform: none;
    font-size: .7rem;}
    
  #secondary .social li {
    display: block;
    vertical-align: middle;}
  
  .visitors li li {
    font-size: .9rem;
    line-height: 130%;}
}
/*___ STRONG/B _________________________________________________________________*/

/*___ EM/I _________________________________________________________________*/

/*___ U _________________________________________________________________*/

/*___ A _________________________________________________________________*/
#main a
{
    position: relative;
    display: block;
    padding: 0 7px;
  color: #d9d9d9;
  font-size: 1.1em; font-size: 1.03rem;
}

#main a:before
{
    content: url(images/menuBullet.png);
    position: absolute;
    top: -3px;
    left: -4px;
}

#main a:hover
{
  color: #ffffff;
}

#main li.current a
{
  color: #ff9e01;
}

#main li:first-child a:before,
#main li:nth-child(7) a:before
{
    content: none;
}

.logo
{
    display: inline-block;
    width: 176px;
    height: 146px;
    background: transparent url(images/logo.png) no-repeat top left;
    text-indent: -9999em;
}

.ie7 .logo
{
  display: inline;
  text-indent: 0;
  font-size: 0;
}

.home .links a
{
  display: block;
  padding: 15px 12.2%;
  min-height: 30px;
}

.links li:nth-child(3) a
{
  background: url("images/bgBtn.png") repeat-x left top, url(images/radioSignalLg.png) no-repeat center right;
  background-color: #FF9E01;
}

#secondary a
{
  color: #000000;
  background: #ffb641;
  background: rgba(255, 255, 255, 0.25);
  display: inline-block;
  padding: 1px 4px;
}

#secondary .menu a
{
  display: block;
  font-size: 1.4em; font-size: 1.25rem;
  padding: 3%;
}

#secondary a:hover,
#secondary .menu li.current a
{
  color: #ffffff;
  background: none;
}
.more
{
  margin-top: 3px;
}

.home #secondary .more
{
  float: right;
}

.back
{
  display: block;
  text-align: right;
}

#secondary .social a
{
  display: block;
  height: 39px;
  width: 39px;
  text-indent: -9999em;
}

#secondary .social .facebook a
{
  background: transparent url(images/iconFacebookHome.png) no-repeat top left;
}

#secondary .social .facebook a:hover
{
  background: transparent url(images/iconFacebookHome.png) no-repeat bottom left;
}

#secondary .social .youtube a
{
  background: transparent url(images/iconYouTubeHome.png) no-repeat top left;
}

#secondary .social .youtube a:hover
{
  background: transparent url(images/iconYouTubeHome.png) no-repeat bottom left;
}

footer .social a
{
  display: block;
  text-indent: -9999em;
  height: 39px;
  width: 39px;
}

footer .social .facebook a
{
  background: url(images/iconFacebook.png) no-repeat top left;
}

footer .social .facebook a:hover
{
  background: url(images/iconFacebook.png) no-repeat bottom left;
}

footer .social .youtube a
{
  background: url(images/iconYouTube.png) no-repeat top left;
}

footer .social .youtube a:hover
{
  background: url(images/iconYouTube.png) no-repeat bottom left;
}

button.scroll {
    position: fixed;
    bottom: 36px;
    right: calc(24.5% - 32px);
    right: -webkit-calc(24.5% - 32px);
    background:  transparent url(images/scroll-button-bg.png) no-repeat left top;
    border:  none;
    text-indent:  -9999em;
    width: 21px;
    height:  21px;
    cursor: pointer;
    padding: 0;
    display: block;
    z-index:999;
}

button.scroll.down {
    background-position: -21px top;
    bottom: 10px;
}

button.scroll:hover {
    background-position: left -21px;
}

button.scroll.down:hover {
    background-position: -21px -21px;
}

@media screen and (max-width:959px)
{
  .logo {
  background-size: 100%;
  width: 130px;}
  
  .home .links a {
    padding: 15px 11px;
  }
  
  button.scroll {
  right: calc(24.5% - 21px)}
}

@media screen and (max-device-width: 480px)
{
    .logo  {
        position: relative;
        top: auto;
        left: auto;
        max-width: 90%;
        margin: 0;
        text-indent: -9999em;
        background-size: 100%; }

    .menu a   {
        width: 90%;
        padding: 5px 5%;
        font-size: 1.03rem;
        line-height: 1.5rem; }

    #main a:before  {
        content: none;}
  
  .home .links a {
    min-height: 50px;}

}

/*___ TABLE _________________________________________________________________*/
#content table
{
    margin-bottom: 1em; margin-bottom: 1rem;
}

@media screen and (max-device-width: 480px)
{
    #content table
    {
        font-size: .8rem;
    }
  
  #banner li a {
    display:block;
    height: auto;
    width: 100%;
  }
}


/*___ TR _________________________________________________________________*/

/*___ TH/TD _________________________________________________________________*/
#content th,
#content td
{
    padding: 5px;
}

/*___ IMG _________________________________________________________________*/

.levels img
{
  max-height: 90%;
  width: auto;
  margin: 0 auto;
  display: block;
}

.imgWrapper img
{
  display: block;
  margin: 0 auto;
  width: auto;
  height: auto; 
}

#product-list img
{
  float: left;
  margin-right: 3%;
  width: 150px;
  height: auto;
}

.workshops li img
{
  position: absolute;
  top: 0;
  left: 0;
}

.donate input[type="image"]
{
  display: block;
}

img[style*="left"]
{
    margin: 0 10px 10px 0;
  float: left;
}

img[style*="right"]
{
    margin: 0 0 10px 10px;
  float: right;
}

@media screen and (max-width: 959px)
{
  #banner img {
    width: 100%;
  }
  
  .workshops li img {
    width: 24%;
  }
  
  .visitors img {
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 480px)
{
  #banner img, #banner a img {
    width: 100%;
    height: 100%;
    display: block;
    }
  
  .visitors .imgWrapper {
    margin-bottom: 10px;}
}
/*___ FORM _________________________________________________________________*/

/*___ INPUT/TEXTAREA/SELECT __________________________________________*/
input[type="text"],
input[type="password"]
{
    display: inline-block;
    padding: 5px;
    width: 234px;
}

.ie7 input[type="text"],
.ie7 input[type="password"]
{
    display: inline;
}

textarea
{
    display: block;
    padding: 5px;
    width: 400px;
    min-height: 200px;
}

.add-to-cart
{
  padding: 6px 10px;
  font-size: 1.1em; font-size: 1rem;
  margin-top: 6px;
  background-position: left -20px;
}

.update-cart,
.paypal-checkout
{
  width: 49%;
  margin: 20px 0;
  padding: 6px 10px;
  font-size: 1.1em; font-size: 1rem;
  background: #FFB641; background: rgba(255, 255, 255, 0.25);
  border: none;
}

input[type="text"].quantity
{
  width: 30px;
  display: inline-block;
  padding: 5px;
  line-height: 1.1em; line-height: 1rem;
}

.donate input[type="radio"]
{
  margin: 0 0 15px 25px;
}

.donate input[type="radio"]:nth-child(6n + 1)
{
  margin-left: 0;
}

@media screen and (max-device-width: 480px)
{
    input[type="text"],
    input[type="password"]
    {
        display: block;
        padding: 5px;
        width: 90%;
    }

    textarea
    {
        display: block;
        padding: 5px;
        width: 90%;
        min-height: 200px;
    }
}

/*___ LABEL _________________________________________________________________*/
label
{
    display: block;
    margin-bottom: 10px;
}

/*___ CITE _________________________________________________________________*/
.mindfly
{
    display: block;
    font-size: 11px;
}

/*___Group/Section/Class_________________________________________________________________*/

.home #secondary iframe
{
  margin-bottom: 20px;
  width: 100% !important;
  height: auto !important;
}

.CollectionItem iframe
{
  margin: 30px auto;
  display: block;
}

@media screen and (max-width:959px)
{
  .home #secondary iframe
  {
    width: 165px;
    height: auto;
  }
}

@media screen and (max-device-width: 480px)
{
  .CollectionItem iframe {
    width: 100% !important;
    height: auto !important;}
}

/* flyeye.css v1.2 | created by Kyle Weems of mindfly.com | http://js.mindfly.net/license */
.silkmoth-wrapper{position:relative;overflow:hidden}
.silkmoth-slide{position:absolute;z-index:1;left:100% !important}
.silkmoth-slide.current{z-index:2;left:0 !important}
.silkmoth-slide.next{z-index:3;left:0 !important;-webkit-transition:left .3s linear;-khtml-transition:left .3s linear;-moz-transition:left .3s linear;-ms-transition:left .3s linear;-o-transition:left .3s linear;transition:left 0.3 linear}






/* EDITOR PROPERTIES - PLEASE DON'T DELETE THIS LINE TO AVOID DUPLICATE PROPERTIES */
