/* override browser default */
html,
body {
	overflow-y: scroll;    font-size: calc(18px + 0.390625vw); line-height: 1.30em;
	font-family: sans-serif; background: #000; color: #fff;
  margin: 0;
  padding: 0;
}

/* use viewport-relative units to cover page fully */


a:link
	{text-decoration: none; color: #ffffff}

a:visited
	{text-decoration: none; color: #ffffff}

a:active
	{text-decoration: none; color: #ffffff}


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


/* container
------------------------- */

.container {
  padding-left: 10px;
  padding-right: 10px;
  max-width: 100%;
}

.container--wide {
  max-width: 1370px;
}

.container .duo.example {
  max-width: none;
}

/* optional desktop adjustment */
@media screen and (orientation: landscape) {
  .container {
    padding-left: 75px;
    padding-right: 75px;
  }
}




/* image-grid
------------------------- */

.image-grid {
  max-width: 100%;
}

.image-grid__item,
.image-grid__col-sizer {
  width: 100%;
}


@media screen and (orientation: landscape) {
	/* 2 columns for landscape */
	.image-grid__item, .image-grid__col-sizer {width: 48%; }
	.image-grid__gutter-sizer { width: 2%; }
}



.image-grid__item {
  margin-bottom: 20px;
  float: left;
}

/* hide by default */
.image-grid.are-images-unloaded .image-grid__item {
  opacity: 0;
}


.image-grid__image {
  padding: 2px;
  background: #FDFAF8;
  border-radius: 2px;
  display: block;
  max-width: 100%;
}

/* landscape image */
@media screen and (orientation: landscape) {
  .image-grid__image {
  padding: 5px;
  background: #FDFAF8;
  border-radius: 5px;
  display: block;
  max-width: 100%;
  }
}


/* site nav
------------------------- */

.menu {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;

  list-style: none;
  margin: 0;
  padding: 0;
  color: white;
        font-family: "Open Sans", sans-serif;
		font-style: italic;
		font-size: 1.5em;
		line-height: 2em;
		padding-left: 10px;
		padding-right: 10px;
}


/* optional desktop adjustment */
@media screen and (orientation: landscape) {
  .menu {
    padding-left: 75px;
    padding-right: 75px;
  }
}


	  
	  
/* bottom nav */
.main ~ .menu {
  position: relative;
  margin-top: 80px;
  z-index: 2; /* on top of page-nav */
}

.menu__item a {
  display: block;
  padding: 10px 20px;
  color: white;
}

.menu__item--homepage {
  font-weight: bold;
}

.menu__item a:hover {
  background: #C25;
  color: white;
}

.menu__item a:active {
  background: white;
  color: #8C8;
}


/* loader-ellips
------------------------- */

.loader-ellips {
  font-size: 20px;
  position: relative;
  width: 4em;
  height: 1em;
  margin: 10px auto;
}

.loader-ellips__dot {
  display: block;
  width: 1em;
  height: 1em;
  border-radius: 0.5em;
  background: #555;
  position: absolute;
  animation-duration: 0.5s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
}

.loader-ellips__dot:nth-child(1),
.loader-ellips__dot:nth-child(2) {
  left: 0;
}
.loader-ellips__dot:nth-child(3) { left: 1.5em; }
.loader-ellips__dot:nth-child(4) { left: 3em; }

@keyframes reveal {
  from { transform: scale(0.001); }
  to { transform: scale(1); }
}

@keyframes slide {
  to { transform: translateX(1.5em); }
}

.loader-ellips__dot:nth-child(1) {
  animation-name: reveal;
}

.loader-ellips__dot:nth-child(2),
.loader-ellips__dot:nth-child(3) {
  animation-name: slide;
}

/* stylelint-disable-next-line no-duplicate-selectors */
.loader-ellips__dot:nth-child(4) {
  animation-name: reveal;
  animation-direction: reverse;
}


/* scroller
------------------------- */

.scroller {
  height: 400px;
  padding: 10px 10px 100px;
  overflow-y: scroll;
  border: 1px solid #DDD;
  border-radius: 5px;
}

/* ---- scroller-item ---- */

.scroller-item {
  height: 200px;
  margin-bottom: 10px;
  padding: 20px;
  background: #19F;
  border-radius: 5px;
  color: white;
  font-size: 3rem;
  line-height: 1;
}

.scroller-item--height2 { height: 250px; }
.scroller-item--height3 { height: 300px; }

.scroller-item--magenta { background: #C25; }
.scroller-item--red { background: #E21; }
.scroller-item--gold { background: #EA0; }
.scroller-item--green { background: #6C6; }

/* ---- prefill ---- */

.scroller--prefill { height: 500px; }

.scroller--prefill .scroller-item,
.scroller--prefill .scroller-item--height2,
.scroller--prefill .scroller-item--height3 { height: 80px; }

/* scroller-status
------------------------- */

.scroller-status {
  display: none;
  padding: 20px 0;
}

.scroller-status__message {
  text-align: center;
  color: #777;
}



/* footer???- */

.full-page-demo-footer {
  height: 400px;
}






/* ---- grid ---- */
	
.grid {
  background: #000;
  padding: 2px;


position: relative;

}


/* clear fix */
.grid:after {
  content: '';
  display: block;
  clear: both;
}




/* ---- .grid-item ---- */

.grid-sizer,
.grid-item
{
	width: 400px;

}


.grid-item {

  float: left;
  margin-bottom: 2px;

}



.grid-item img {

  padding: 5px;
  background: #FDFAF8;
  border-radius: 5px;
  display: block;
  width: 100%;

}


//* ---- main ---- */

.main {
  position: relative; /* for page-nav */
}

.main__page {
  padding-bottom: 40px;
  border-bottom: 20px solid #19F;
  margin-bottom: 40px;
}

/* ---- page-title ---- */

.page-title {
  font-size: 2.2rem;
  margin: 40px 0 40px;
}

/* ---- main ---- */

.main h2 {
  font-size: 1.6rem;
  font-weight: normal;
  border-top: 4px solid #19F;
  padding-top: 1rem;
  margin-top: 3rem;
}

.main h3 {
  font-size: 1.4rem;
  border-top: 1px solid #DDD;
  padding-top: 1rem;
  margin-top: 2.5rem;
}

.main a {
  text-decoration: underline;
}

.main .call-out h2:first-child {
  margin-top: 0.5rem;
  padding-top: 0;
  border-top: none;
}

.main li {
  margin: 4px 0;
}





/* ---- art ---- */


.art {

  width: 98vw;

}



/* portrait */
@media screen and (orientation: portrait) {

.art {
  margin-bottom: 1vh;
}

.art img {

  padding: 5px;
  background: #FDFAF8;
  border-radius: 5px;
  display: block;
  max-width: 98%;
  margin: auto;
  text-align: center;

}

}




/* landscape */
@media screen and (orientation: landscape) {
    
    .art {
  margin-bottom: 2vh;
}

  .art img {
  padding: 5px;
  background: #FDFAF8;
  border-radius: 5px;
  display: block;
  max-width: 75%;
  margin: auto;
  text-align: center;

}

  
}




/* ---- .main-item ---- */

.main-item
{



}



.main-item img {

	  padding: 5px;
  background: #FDFAF8;
  border-radius: 5px;




	display: block;
	max-width: 98%;
	max-height: 86vh;
	margin: auto;
}





/* ---- .gallery-item ---- */


.gallery-item
{
	height: 100%;
}


.gallery-item img {

  padding: 5px;
  background: #FDFAF8;
  border-radius: 5px;
  display: block;
  max-width: 100%;
  max-height: 98vh;
  margin: auto;
}




.main-menu {
        display: table;
	/*	flex-wrap: stretch;
		align-items: stretch;
		list-style: none; */
		margin: 0;
		padding: 0;
        color: white;
        font-family: "Open Sans", sans-serif;
		font-style: italic;
		font-size: 1.5em;
		margin: auto;
		line-height: 2em;
      }




.footer {
       
		display: table;
        color: white;
        font-family: "Open Sans", sans-serif;
		line-height: 2em;
		margin: auto;
      }
	  
	  
	  



.horizontal-divider

{
    
    border-bottom: 1px solid gray;
    clear: both;
    margin: 10px 10px 0px 0px;
}



.info
	{
	    color: #000000;
				text-align: left;
		font-family: "Open Sans", sans-serif;
		
		font-style: italic;

font-size: 1.50em;

font-weight: 550;
	
  
line-height: 2em;
padding-top: 0px;
padding-left: 20px;
    width: 880px;
  height: 100%;
  margin: 0px 0px 0px 0px;
  background-color: #ffffff;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
overflow: hidden;  
border: 10px solid #fff;
   -webkit-box-shadow: 1px 1px 1px 1px #888;
     -moz-box-shadow: 1px 1px 1px 1px #888;
          box-shadow: 1px 1px 1px 1px #888;  }
		  
	

.info h3

{
color: #000000;
font-size: 2em;
line-height: 1em;
font-weight: 600;
}
	


.titles
	{
	    color: #000000;
				text-align: left;
		font-family: "Open Sans", sans-serif;
font-size: 2em;
    font-weight: 550;
  
line-height: 2.25em;

padding-top: 0px;
padding-left: 20px;
    width: 880px;
  height: 100%;
  margin: 0px 0px 0px 0px;
  background-color: #ffffff;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
overflow: hidden;  
border: 10px solid #fff;
   -webkit-box-shadow: 1px 1px 1px 1px #888;
     -moz-box-shadow: 1px 1px 1px 1px #888;
          box-shadow: 1px 1px 1px 1px #888;  }
		  
		  
		  

        
/* line 21, /Users/Rose/Sites/audio_player/source/stylesheets/style.sass */
.audio-player-wrapper {
	
	  width: 900px;
height: 1150px;
overflow: hidden;
  margin: 0px 0px 0px 0px;
  background-color: #ddddda;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border: 10px solid #fff;
  -webkit-box-shadow: 1px 1px 1px 1px #888;
     -moz-box-shadow: 1px 1px 1px 1px #888;
          box-shadow: 1px 1px 1px 1px #888; }
  /* line 28, /Users/Rose/Sites/audio_player/source/stylesheets/style.sass */
  .audio-player-wrapper.error .audio-player-image {
    background: #f78471; }
    /* line 30, /Users/Rose/Sites/audio_player/source/stylesheets/style.sass */
    .audio-player-wrapper.error .audio-player-image:before {
      position: absolute;
      top: 0;
      bottom: 0;
      height: 10px;
      width: 100%;
      text-align: center;
      margin: auto;
      color: white;
      content: "Error loading";
      font-family: "Open Sans", sans-serif;
      font-weight: 600;
      font-size: 13px; }
    /* line 43, /Users/Rose/Sites/audio_player/source/stylesheets/style.sass */
    .audio-player-wrapper.error .audio-player-image > * {
      display: none; }

/* line 46, /Users/Rose/Sites/audio_player/source/stylesheets/style.sass */
.audio-player-image {
  position: relative;
  height: 900px;
  -webkit-backface-visibility: hidden; }
  /* line 50, /Users/Rose/Sites/audio_player/source/stylesheets/style.sass */
  .audio-player-image > img {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: auto; }
    /* line 56, /Users/Rose/Sites/audio_player/source/stylesheets/style.sass */
    .audio-player-image > img.fading {
      -webkit-transition: opacity 200ms linear;
      -moz-transition: opacity 200ms linear;
      -o-transition: opacity 200ms linear;
      transition: opacity 200ms linear;
      z-index: 1;
      opacity: 0; }

/* line 61, /Users/Rose/Sites/audio_player/source/stylesheets/style.sass */
.audio-player-song-name {
text-align: right;
  position: absolute;
  line-height: 1.5em;
  z-index: 2;
  top: 2%;
  right: 2%;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  
  /*   font-size: 300%; */
  
  font-size: calc(48px + 0.390625vw);
  
  font-style: italic;
  color: white;
  text-shadow: 0 6px 6px rgba(0, 0, 0, 0.9);
  text-transform: uppercase; }

/* line 73, /Users/Rose/Sites/audio_player/source/stylesheets/style.sass */
.audio-player-controls {
  padding: 15px; }

@-moz-keyframes loadingStripes {
  /* line 77, /Users/Rose/Sites/audio_player/source/stylesheets/style.sass */
  0% {
    background-position: -20px; }

  /* line 79, /Users/Rose/Sites/audio_player/source/stylesheets/style.sass */
  100% {
    background-position: 0px; } }

@-webkit-keyframes loadingStripes {
  /* line 77, /Users/Rose/Sites/audio_player/source/stylesheets/style.sass */
  0% {
    background-position: -20px; }

  /* line 79, /Users/Rose/Sites/audio_player/source/stylesheets/style.sass */
  100% {
    background-position: 0px; } }

@-o-keyframes loadingStripes {
  /* line 77, /Users/Rose/Sites/audio_player/source/stylesheets/style.sass */
  0% {
    background-position: -20px; }

  /* line 79, /Users/Rose/Sites/audio_player/source/stylesheets/style.sass */
  100% {
    background-position: 0px; } }

@-ms-keyframes loadingStripes {
  /* line 77, /Users/Rose/Sites/audio_player/source/stylesheets/style.sass */
  0% {
    background-position: -20px; }

  /* line 79, /Users/Rose/Sites/audio_player/source/stylesheets/style.sass */
  100% {
    background-position: 0px; } }

@keyframes loadingStripes {
  /* line 77, /Users/Rose/Sites/audio_player/source/stylesheets/style.sass */
  0% {
    background-position: -20px; }

  /* line 79, /Users/Rose/Sites/audio_player/source/stylesheets/style.sass */
  100% {
    background-position: 0px; } }

/* line 82, /Users/Rose/Sites/audio_player/source/stylesheets/style.sass */
.audio-player-progress {
  display: block;
  width: 100%;
  height: 15px;
  border-radius: 25px;
  background-color: #a0a7af;
  overflow: hidden; }
  /* line 89, /Users/Rose/Sites/audio_player/source/stylesheets/style.sass */
  .audio-player-progress.loading {
    background-image: -webkit-linear-gradient(-45deg, #808e97 25%, transparent 25%, transparent 50%, #808e97 50%, #808e97 75%, transparent 75%, transparent);
    background-image: -moz-linear-gradient(-45deg, #808e97 25%, transparent 25%, transparent 50%, #808e97 50%, #808e97 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(-45deg, #808e97 25%, transparent 25%, transparent 50%, #808e97 50%, #808e97 75%, transparent 75%, transparent);
    background-image: linear-gradient(-45deg, #808e97 25%, transparent 25%, transparent 50%, #808e97 50%, #808e97 75%, transparent 75%, transparent);
    background-size: 20px 20px;
    -webkit-animation: loadingStripes 700ms linear infinite;
    -moz-animation: loadingStripes 700ms linear infinite;
    -ms-animation: loadingStripes 700ms linear infinite;
    -o-animation: loadingStripes 700ms linear infinite;
    animation: loadingStripes 700ms linear infinite; }

/* line 94, /Users/Rose/Sites/audio_player/source/stylesheets/style.sass */
.audio-player-progress-bar {
	position: relative;
	float: left;
  -webkit-transition: width 200ms linear;
  -moz-transition: width 200ms linear;
  -o-transition: width 200ms linear;
  transition: width 200ms linear;
  display: block;
  height: 100%;
  width: 0;
  max-width: 100%;
  background-color: #808e97;
  border-radius: 25px; }

/* line 103, /Users/Rose/Sites/audio_player/source/stylesheets/style.sass */

/* This is the Play Button */
.audio-player-button {
  display: block;
  position: relative;
  float: left;
  width: 150px;
  height: 150px;
  margin: 0 5px;
  border-radius: 100%;
  border: 10px solid #808e97;
  opacity: 0.8;
  cursor: pointer; }
  /* line 114, /Users/Rose/Sites/audio_player/source/stylesheets/style.sass */
  .audio-player-button:hover {
    opacity: 1; }
  /* line 116, /Users/Rose/Sites/audio_player/source/stylesheets/style.sass */
  
  /* This is the size and position of the Play Arrow */
    .audio-player-button::before {
    position: absolute;
    top: -1px;
    bottom: 0;
    left: -40px;
    right: 0;
    width: 0px;
    height: 0px;
    margin: auto;
    line-height: 1px;
    font-size: 60px;
    color: #808e97; }
  /* line 128, /Users/Rose/Sites/audio_player/source/stylesheets/style.sass */
  
  /* This is the size and position of the pause graphic */
  .audio-player-button.icon-pause::before {
    font-size: 60px;
    top: 1px;
    left: -50px; }
  /* line 132, /Users/Rose/Sites/audio_player/source/stylesheets/style.sass */


  /* */
  /* This is the position of the Back Arrow */
  
  .audio-player-button.icon-backward::before {
    left: -55px; }
  /* line 134, /Users/Rose/Sites/audio_player/source/stylesheets/style.sass */
  .audio-player-button.small {
    width: 125px;
    height: 125px;
    margin-top: 5px; }
    /* line 138, /Users/Rose/Sites/audio_player/source/stylesheets/style.sass */
    .audio-player-button.small::before {
      font-size: 45px; }

/* line 141, /Users/Rose/Sites/audio_player/source/stylesheets/style.sass */
.audio-player-button-wrappers {
position: center;
  overflow: hidden;
  *zoom: 1;
  display: block;
  width: 500px;
  margin: 25px auto 0 auto; }
