@charset "utf-8";
/* CSS Document */
@import url(http://fonts.googleapis.com/earlyaccess/cwtexhei.css);

body{
  background: #68b8c4;
  font-family: 'cwTeXHei', sans-serif;
}

/**
 * Form & Checkbox Styles
 */
br {
	color: #FFF7D1;
}
h4{
  font-weight: 700;
  margin-bottom: .5em;
}
 
label{
  font-weight: 300;
}
 
button{
  display: inline-block;
  vertical-align: top;
  padding: .4em .8em;
  margin: 0;
  background: #68b8c4;
  border: 0;
  color: #333;
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
}
 
button:focus{
  outline: 0 none;
}
 
.controls{
  /*background: #333;*/
  padding: 50px 80px;
  color:#ffffff;
}
 
.fieldset{
  display: inline-block;
  vertical-align: top;
  margin: 0 40px 0 0;
  border-radius: 3px;
}

.checkbox{
  display: block;
  position: relative;
  cursor: pointer;
  margin-bottom: 0px;
}

.reset {
	margin-top:250px;
	margin-right:50px;
	float:right;
}

.checkbox input[type="checkbox"]{
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  margin: 0;
  opacity: 0;
  z-index: 1;
}

.checkbox label{
  display: inline-block;
  vertical-align: top;
  text-align: left;
  padding-left: 1.5em;
}

.checkbox label:before,
.checkbox label:after{
  content: '';
  display: block;
  position: absolute;
}

.checkbox label:before{
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  background: #ddd;
  border-radius: 3px;
}

.checkbox label:after{
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: #68b8c4;
  opacity: 0;
  pointer-events: none;
}

.checkbox input:checked ~ label:after{
  opacity: 1;
}

.checkbox input:focus ~ label:before{
  background: #eee;
}

/**
 * Container/Target Styles
 */

.container{
  width:940px;
  position: relative;
}

.container .mix{
  width: 100%;
  /*background: white;*/
  display: none;
}

/**
 * Fail message styles
 */

.fail-message{
  position:relative;
  text-align: center;
  display:none;
  -webkit-transition: 150ms;
  -moz-transition: 150ms;
  transition: 150ms;
  width:940px;
  height:100px;
  background-image: url('../images/pta_paper_bottom.png');
  background-repeat:repeat-y;
  vertical-align:middle;
}


.fail-message span{
  display: inline-block;
  font-size: 14px;
  margin-top:20px;
}

.fail .fail-message{
  display:block;
  height:100px;  
}
