@charset "UTF-8";
/* CSS Document */

html,body,#hero { height: 100% }
#hero { margin: 0; overflow: hidden }

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

.cycle-slideshow img { 
    /* forced big images */
    width: 2000px; height: 1500px;

    /* height drives width */
    width: auto; height: 100%;

    /* width drives height */
    width: 100%; height: auto;

    /* fill screen and maintain aspect ratio */
    width: auto; height: auto;
    min-width: 100%; min-height: 100%;
}

header { background-color: transparent;}
#logo { background-image: url(/i/logo-w.svg);}
nav ul li, nav ul li a { color: #FFF;}

@media (max-width: 736px) {	
  #nav > a { color: #FFF; border: 1px solid #FFF;}
}