/* -------------------------------- 

Primary style

-------------------------------- */
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-size: 100%;
  font-family: "Roboto", sans-serif;
  color: #3d3536;
  background-color: white; 
}

body, html {
  /* important */
  height: 100%;
  min-width:1100px;
}

a {
  color:#FC0;
  text-decoration: none;
}
a:hover {
	color:#C36;
  text-decoration:underline;
}

/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.cd-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width:auto;
  margin: 0 auto;
}
.cd-container::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}


/* -------------------------------- 

Main components 

-------------------------------- */
.cd-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 65px;
  background:url(../img/panel_bg0.jpg) no-repeat;
  background-position:center 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.cd-header:after {
  content: "";
  display: table;
  clear: both;
}
.cd-header #cd-logo {
  float: left;
  width:200px;
  margin: 13px 0 10px 0;
}
.cd-header #cd-logo img {
  display: block;
}


.cd-main-nav {
  float: right;
  width:900px;
  margin:25px 0 0 0;
}
.cd-main-nav p {
	float:right;
	}
.cd-main-nav ul {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.cd-main-nav ul.is-visible {
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
}
.cd-main-nav a {
  display: block;
  line-height: 1em;
  padding:10px 0 10px 0;
  margin:0 0 0 25px;
}

.cd-main-content {
  /* you need to assign a min-height to the main content so that the children can inherit it*/
  height: 100%;
  position: relative;
  z-index: 1;
}

.cd-fixed-bg {
  position: relative;
  min-height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
}
.cd-fixed-bg.cd-bg-1 {
  background-image: url("../img/panel_top_image.jpg");
  background-size: auto;
  background-position:center 57px;
}
.cd-fixed-bg.cd-bg-2 {
  background-image: url("../img/panel_prologue_bg.jpg");
}
.cd-fixed-bg.cd-bg-3 {
  background-image: url("../img/panel_staff_bg.jpg");
  background-repeat:repeat-x;
}
.cd-fixed-bg.cd-bg-4 {
  background-image: url("../img/panel_ticket_bg.jpg");
}
@media only screen and (min-width: 768px) {
  .cd-fixed-bg h1, .cd-fixed-bg h2 {
    font-size: 36px;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-fixed-bg {
    background-attachment: fixed;
  }
  .cd-fixed-bg h1, .cd-fixed-bg h2 {
    font-size: 48px;
    font-weight: 300;
  }
}

.cd-scrolling-bg {
  position: relative;
  min-height: 100%;
  padding:0;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.cd-scrolling-bg.cd-color-1 {
  background-color: #3d3536;
  color: #a6989a;
}
.cd-scrolling-bg.cd-color-2 {
  background-color: #333;
  color: #fff;
}
.cd-scrolling-bg.cd-color-3 {
	background:#842241;
}
.cd-scrolling-bg.cd-color-4 {
	background:#456d93;
}
@media only screen and (min-width: 768px) {
  .cd-scrolling-bg {
    padding: 130px 70px;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 2;
    font-weight: 300;
  }
}
