/* Author: Jingjin Han */
/* CSS Reset */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* Layout Style */
body {
  position: relative;
  font-size: 62.5%;
  font-family: Lato;
  margin-bottom:30px;
}
#wrap {
  position: relative;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#content {
  position: relative;
  width: 780px;
  height: 680px;
  margin: 100px auto auto auto;
  text-align: center;
}
#logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 2s linear;
  -moz-transition: all 2s linear;
  transition: all 2s linear;
}
#logo:hover {
  -webkit-transform: rotateY(360deg);
  -moz-transform: rotateY(360deg);
  transform: rotateY(360deg);
}
#intro {
  margin-top: 60px;
  color: #fff;
  font-family: 'Cabin', sans-serif;
  font-size: 3.200em;
  line-height: 1.25;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.4);
}
#contact {
  display: block;
  width: 300px;
  height: 260px;
  padding-top: 25px;
  padding-bottom: 25px;
  margin: 100px auto auto auto;
  border: 5px solid #C60;
  background-color: #fff;
  font-size: 1.400em;
  line-height: 1.429;
}
#contact .entry {
  padding-top: 15px;
  margin-top: 15px;
  background: transparent url('../img/divider.png') no-repeat center top;
  color: #222;
}
#contact .entry a {
  text-decoration: none;
  color: #C60;
}
#contact .entry.even {
  color: #C60;
}
#contact .entry:first-child {
  padding-top: 0;
  margin-top: 0;
  background: none;
}
#contact .entry .title {
  font-style: italic;
}
#bg {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 1358px;
}
/* Class for javascript resizing */
.bgwidth {
  width: 100%;
}
.bgheight {
  height: 100%;
}
/* Class for javascript centering */
.center-bg {
  left: 50% !important;
  margin-left: -679px;
  /* 50% image width */

}
/* Hide only visually, but have it available for screenreaders: h5bp.com/v */
.visuallyhidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}


.text {
	background: rgba(255, 255, 255, 0.25);
	border: 1px solid rgba(255, 255, 255, 0.3);
	box-shadow: inset 0 0 5px 0 rgba(0,0,0, 0.15);
	-webkit-box-shadow: inset 0 0 5px 0 rgba(0,0,0, 0.15);
	height: 27px;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	font-size: 14px;
	padding-left: 20px;
 	padding-right: 20px;
	color: #000;
	font-family:Lato;
}
.submit {
	display: inline-block;
	background: url('../img/submit.png') no-repeat;
	background-position: top;
	width: 45px;
	height: 32px;
	cursor: pointer;
	text-indent: -9999px;
	border: 0;
	margin-left: 20px;
}
.submit:hover {
	background-position: bottom;
}
