/*@import url('http://fonts.googleapis.com/css?family=Open+Sans:400,600,700');
@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;
  -moz-box-sizing: border-box;
}*/
/*
html, body {
  height: 100%;
}

body {
  font: 14px/1 'Open Sans', sans-serif;
  color: #555;
  background: #eee;
}

h1 {
  padding: 50px 0;
  font-weight: 400;
  text-align: center;
}

p {
  margin: 0 0 20px;
  line-height: 1.5;
}
*/
/*main {
  min-width: 320px;
  max-width: 800px;
  padding: 50px;
  margin: 0 auto;
  background: #fff;
}*/

section {
    margin: 0 auto;
    display: none;
    padding: 20px;
    background: linear-gradient(#ffcc66,white,white,white,white, white, #666);  
	border-radius: 0 .50em .50em .50em;
	position:relative;
	z-index: 6;
	-webkit-animation: fadeEffect 1s;
    animation: fadeEffect 1s;
    /*border-top: 1px solid #ddd;*/
}

input {
    height: 2.5em;
	visibility: hidden;
    /*display: none;*/
}

label {
    background: #f9f9f9;  
    border-radius: .25em .25em 0 0;
	color: #888;  
	cursor: pointer;
	display: inline-block;
	float: left;
	font-size: 1em;  
	height: 2.5em;
	line-height: 2em;
	margin-right: .25em;
	padding: 2 2em;
	text-align: center;

   /*
  display: inline-block;
  margin: 0 0 -1px;
  padding: 15px 25px;
  font-weight: 600;
  text-align: center;
  color: #bbb;
  border: 1px solid transparent;*/
}

label:before {
  font-family: Arial, sans;
  font-weight: normal;
  margin-right: 10px;
}
/*
label[for*='1']:before { content: '\f1cb'; }
label[for*='2']:before { content: '\f17d'; }
label[for*='3']:before { content: '\f16b'; }
label[for*='4']:before { content: '\f1a9'; }
*/
label:hover {
 background: #ddd;  
 color: #666; 
 cursor: pointer;
}

input:checked + label {
 background: #ffcc66;  
 color: #444; 
 position: relative;
 z-index: 6;
/*  color: #555;
  border: 1px solid #ddd;
  border-top: 2px solid orange;
  border-bottom: 1px solid #fff;*/
}

#tab1:checked ~ #content1,
#tab2:checked ~ #content2,
#tab3:checked ~ #content3,
#tab4:checked ~ #content4,
#tab5:checked ~ #content5, 
#tab6:checked ~ #content6 {
  display: block;
}

@-webkit-keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}
/*
@media screen and (max-width: 650px) {
  label {
    font-size: 0;
  }
  label:before {
    margin: 0;
    font-size: 18px;
  }
}

@media screen and (max-width: 400px) {
  label {
    padding: 15px;
  }
}*/