/* Presentational style rules only
 * Not required
 */

html, body, .container {
  height: 100%;
}

/* Reset */
html, body, h1, p, a, div, section {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font: inherit;
}

/* Basic */
body { 
  font: 18px/23px "Cantarell", sans-serif;
  color: #ffffff;
}

h1 {
  color: #001851; /* #efecec; */
  text-transform: uppercase;
  font-size: 40px;
  line-height: 50px;
  font-weight: 400;
  margin-top: 20px;
  background-color: #ffffff;
}

a {
  color: #b99765;
}

p {
  margin: 0 0 15px 0;
}

strong {
  font-weight: 700;
}

blockquote {
  display: block;
  max-width: 480px;
  margin: 15px auto;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.3);  
  color: #e1e1e1;
  font-family: "Kotta One", serif;
  font-size: 22px;
  line-height: 28px;
}

blockquote cite {
  display: block;
  font: 18px/23px "Cantarell", sans-serif;
  font-size: 16px;
  margin-top: 16px;
  color: #cccccc;
  text-transform: uppercase;
}

/* Layout */

.navbar {
  width: 100%;
  background-color: rgba(19, 21, 43, 0.2);
  height: 40px;
  z-index: 9999;
  position: fixed;
}

  .inner {
    position: relative;
    margin: 0 auto;
    text-align: center;
  }

.navbar a {
  display: inline-block;
  border: 1px solid #b99765;
  font-size: 14px;
  line-height: 24px;
  border-radius: 3px;
  padding: 2px 15px;
  text-decoration: none;
  background-color: #001851;
  margin-top: 5px;
}

.roster { /* for the roster "a" links onClick() action */
	text-decoration: none;
	color: 001815;
}

.container {
  display: table;
  padding-top: 80px;
  /* width: 100%; */
  /*horizontal-align: center; */
  width: 60%;
}

.schedule {
	color: 001851;
}

.contents {
  display: table-cell;
  /* vertical-align: middle; */
  /*horizontal-align: center; */
  text-align: center;
}


/* Special */
.sub-title {
  /*margin: 50px auto;*/
  color: #001851;
  margin-bottom: 0;
  padding-left: 5px;
  padding-right: 5px;
  font-size: 18px;
  background-color: #b99655;
  line-height: 23px;
  /* text-transform: uppercase; */
  align: center;
}

.sub-title2 {
  /* margin: 50px auto; */
  margin-top: 0;
  padding-left: 5px;
  padding-right: 5px;
  background-color: rgba(255,255,255,0.8);
  font-size: 18px;
  text-align: left;
  line-height: 23px;
  color: #001851;
}

.button {
  display: inline-block;
  padding: 6px 10px;
  color: #cafaea;
  border: 1px solid #cafaea;
  border-radius: 3px;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
}

#more-content {
  display: none;
}

/* Collapsible content controls */
.collapsible {
  background-color: #b99655;
  color: #001851;
  cursor: pointer;
  padding-left: 5px;
  padding-right: 5px;
  width: 100%;
  border: none;
  /* text-align: left; */
  outline: none;
  font-size: 18px;
}

.active, .collapsible:hover {
  background-color: #001851;
  color: #b99655;
}

.collapsible:after {
  content: '\002B';
  color: white;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

 .active:after {
  content: "\2212";
}

.content {
  padding-left: 5px;
  padding-right: 5px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: rgba(255,255,255,0.8);
  font-size: 18px;
  text-align: left;
  color: #001851;
}

table, tr, td {
	color: #001851;
}

/* for popup videos: lightbox style from: https://codepen.io/gschier/pen/HCoqh */
.lightbox {
	/** Default lightbox to hidden */
	display: none;

	/** Position and style */
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100%;
	text-align: center;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.3);
}

.lightbox img {
	/** Pad the lightbox image */
	max-width: 90%;
	max-height: 80%;
	margin-top: 2%;
}

.lightbox:target {
	/** Remove default browser outline */
	outline: none;

	/** Unhide lightbox **/
	display: block;
}

/* other floating options, per http://www.mygreatname.com/css-div-tutorials/how-to-overlapping-div-layers.html */
#outerWrap {
position: relative;
z-index: 0;
/*background-color: #00CCFF;
height: 400px;
width: 650px; */
}

#layer2 {
position: absolute;
z-index: 2;
background-color: rgba(126,126,126,0.5);
top: 200px;
left: 100px;
border-style: ridge;
/* background-color: #FC0;
height: 250px;
width: 350px; */
}
	
/* close box: */
#close {
    float:right;
    display:inline-block;
    padding:2px 5px;
    background:#ccc;
}

/* Media Queries */
@media only screen and (max-width: 340px) {
  
  .container {
    position: relative;
    display: block;
    float: left;
    vertical-align: baseline;
    margin: 0 auto;
    padding: 80px 0 0 0;
  }
  
  #more-content {
    float: left;
    margin-right: 10px;
    
  }
  
  body h1 {
    font-size: 18px;
    line-height: 23px;
	  color: #b99765;
  } 
  
  .content, blockquote {  
    display: inline;
    margin: 0 auto;
    padding-top: 80px;
    vertical-align: baseline;
  }

  blockquote {
    width: 150px;
    margin: 15px auto;
    font-size: 16px;
    line-height: 21px;
    background-color: transparent;
  }

  blockquote cite {
    font-size: 14px;
    line-height: 19px;
  }

  .sub-title {
    font-size: 14px;
    line-height: 21px;
  }

  .button, p {
    max-width: 150px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 20px;
  }

  html, body, .container {
    height: auto;
  }
}