@import url(http://fonts.googleapis.com/css?family=Ropa+Sans&subset=latin,latin-ext);
* {
  box-sizing: border-box;
}
/* Clearfix hack by Nicolas Gallagher: http://nicolasgallagher.com/micro-clearfix-hack/ */
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

body {
	margin:0;padding:0;border:0;
   font-family: 'Ropa Sans', sans-serif;
	width:100%;
    background: #f9f9f9;
    font-weight: 300;
    font-size: 15px;
    color: #fff;
   overflow: scroll;
    overflow-x: hidden;
}
a {
	color: #555;
	text-decoration: none;
}
a:hover{
	color: #000;
	font-weight: bold;
}
.navbar {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  height: 40px;
  z-index: 9999;
  position: fixed;
  top:0px;
}

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

.navbar a {
  display: inline-block;
  font-size: 18px;
  line-height: 24px;
 padding: 2px 15px;
  text-decoration: none;
  margin-top: 5px;
  color: #fff;
}

.navbar a:hover {
	 color: #fff;
	 font-weight:normal;
}

.heading-primary {
  font-size: 2em;
  padding: 2em;
  text-align: center;
}


.container {
  max-width: 50%;
  margin: 0 auto;
  padding: 2em 0 2em 0;
}


.container > header {
	width: 90%;
	max-width: 1240px;
	margin: 0 auto;
	position: relative;
	padding: 0 30px 50px 30px;
}

.container > header {
	padding: 60px 30px 50px;
	text-align: center;
}

.container > header h1 {
	font-size: 34px;
	line-height: 38px;
	margin: 0 auto;
	font-weight: 700;
	color: #333;
}

.container > header h1 span {
	display: block;
	font-size: 20px;
	font-weight: 300;
}

.accordion dl,
.accordion-list {
  border: 1px solid #ddd;
}
.accordion dl:after,
.accordion-list:after {
  content: "";
  display: block;
  height: 1em;
  width: 100%;
  background-color: #D2D2D2;
}

.accordion dd,
.accordion__panel {
  background-color: #000;
  font-size: 1em;
  line-height: 1.5em;
}

.accordion p {
  padding: 1em 2em 1em 2em;
}
.accordion p a {
  color:#FFF;
}
.accordion {
  position: relative;
  background-color: #000;
}


.accordionTitle,
.accordion__Heading {
  background-color:#EBEBEB;
  text-align: center;
  font-weight: 100;
  padding: 0.8em;
  display: block;
  text-decoration: none;
  color:#404040;
  -webkit-transition: background-color 0.5s ease-in-out;
  transition: background-color 0.5s ease-in-out;
  border-bottom: 1px solid #fff;
}
.accordionTitle:before,
.accordion__Heading:before {
  content: "+";
  font-size: 1.5em;
  line-height: 0.5em;
  float: left;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.accordionTitle:hover,
.accordion__Heading:hover {
  background-color:#A8A8A8;
}

.accordionTitleActive,
.accordionTitle.is-expanded {
  background-color: #A8A8A8;
}
.accordionTitleActive:before,
.accordionTitle.is-expanded:before {
  -webkit-transform: rotate(-225deg);
          transform: rotate(-225deg);
}

.accordionItem {
  height:auto;
  overflow:hidden;
  max-height: 50em;
  -webkit-transition: max-height 1s;
  transition: max-height 1s;
}
@media screen and (max-width: 400px){
	.container {
  max-width: 96%;
  margin: 0 auto;
  padding: 2em 0 2em 0;
}

.accordion dd,
.accordion__panel {
  background-color: #000;
  font-size: 0.9em;
  line-height: 1.5em;
}
.accordion p {
  padding: 1em 0.2em 1em 0.01em;
}
}

@media screen and (min-width: 48em) {


.accordionItem {
    max-height: 30em;/*==================================*/
    -webkit-transition: max-height 0.5s;
    transition: max-height 0.5s;
  }
}

.accordionItem.is-collapsed {
  max-height: 0;
}

.no-js .accordionItem.is-collapsed {
  max-height: auto;
}

.animateIn {
  -webkit-animation: accordionIn 0.45s normal ease-in-out both 1;
          animation: accordionIn 0.45s normal ease-in-out both 1;
}

.animateOut {
  -webkit-animation: accordionOut 0.45s alternate ease-in-out both 1;
          animation: accordionOut 0.45s alternate ease-in-out both 1;
}

@-webkit-keyframes accordionIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.9) rotateX(-60deg);
            transform: scale(0.9) rotateX(-60deg);
    -webkit-transform-origin: 50% 0;
            transform-origin: 50% 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes accordionIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.9) rotateX(-60deg);
            transform: scale(0.9) rotateX(-60deg);
    -webkit-transform-origin: 50% 0;
            transform-origin: 50% 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes accordionOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.9) rotateX(-60deg);
            transform: scale(0.9) rotateX(-60deg);
  }
}
@keyframes accordionOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.9) rotateX(-60deg);
            transform: scale(0.9) rotateX(-60deg);
  }
}
