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

/* TABS */

@import url('http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css');

/**, *:before, *:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}*/

html, body {
  height: 100%;
}

.parchment {
    /*background: #f5e0a9;*/
    max-width: 95%;
    margin: 1% auto;
    background: #f5e0a9 url(images/paper2.jpg) repeat-y scroll center 0;
    box-shadow: 3px 3px 5px #205696;
}

main {
  /*min-width: 50%; /*320px*/
  max-width: 95%; /*800px*/
  padding: 20px 50px 50px 50px;
  margin: 1% auto;
  /*background: #f5e0a9;*/
  /*background: #f5e0a9 url(images/paper2.jpg) repeat-x scroll center 0;*/
  /*box-shadow: 3px 3px 5px #205696;*/
  color: #912c1f;
}

.tabnav {
  margin: 0 auto;
  float: none;
  text-align: center;
}
section {
  display: none;
  padding: 20px 0 0 0;
  border-top: 1px solid #4d1a12;
  text-align: left;
}

main input {
  display: none;
}

label {
  display: inline-block;
  margin: 0 0 -1px;
  padding: 0.5% 1%; /*15px 25px*/
  font-weight: 600;
  font-size: 1.5em;
  text-align: center;
  color: #888;
  /*border: 1px solid transparent;*/
  min-width: 30%;
  
}
label:hover {
  color: #4d1a12;
  cursor: pointer;
}
input:checked + label {
  color: #4d1a12;
  border: 2px solid #992a20;
  /*border: 1px solid #ddd;
  border-top: 2px solid #992a20;
  border-bottom: 1px solid #ddd;*/
  
}
#tab1:checked ~ #content1,
#tab2:checked ~ #content2,
#tab3:checked ~ #content3,
#tab4:checked ~ #content4,
#tab5:checked ~ #content5,
#tab6:checked ~ #content6 {
  display: block;
}

/* ~~ RESPONSIVE ~~ */

@media only screen and (max-width: 755px) and (-webkit-min-device-pixel-ratio: 2) {
  label {
    /*font-size: .7em; /*0*/
	min-width: 100%;
  }
  
}

@media only screen and (max-width: 400px) and (-webkit-min-device-pixel-ratio: 2) {  label {
    padding: 15px;
  }
}

