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

/* Begin CSS */

* {
	padding: 0;
	margin:0;
}

html {
	background: none !important; }
	
body {
	color: #fff;
	font-size: 15px;
	background: none !important;
	/*background: #F1F2F7;*/
}


:focus {
	outline: none;
}


/******************************************/
/*										  */
/*	Homepage - contact					  */
/*										  */
/******************************************/
@-webkit-keyframes pulseBlue {
  0% {
	-webkit-box-shadow: 0 0 10px rgba(0,200,255,0.2);
  }
  50% {
	-webkit-box-shadow: 0 0 10px rgba(0,200,255,0.8);
  }
  100% {
	-webkit-box-shadow: 0 0 10px rgba(0,200,255,0.2);
  }
}
@-webkit-keyframes pulseRed {
  0% {
	-webkit-box-shadow: 0 0px 10px rgba(255,0,0,0.2);
  }
  50% {
	-webkit-box-shadow: 0 0px 10px rgba(255,0,0,0.8);
  }
  100% {
	-webkit-box-shadow: 0 0px 10px rgba(255,0,0,0.2);
  }
}
@-webkit-keyframes bgSwing {
  0% {
	background: url(contactgr.png) no-repeat 70px 40px;
  }
  50% {
	background: url(contactgr.png) no-repeat 60px 40px;
  }
  100% {
	background: url(contactgr.png) no-repeat 70px 40px;
  }
}
#contact {
	/*width: 598px;
	margin-top: 20px;*/
}

#contact-form {
	border: none;
	/*width: 400px;*/
}

#contact-form dl {
    float: left;
	margin: 0px 0px 10px 0px;
    }
	
#contact-form dl dt {
	padding: 0px; }
	
#contact-form dl dt label {
	font-weight: normal; } 

#contact-form label {
    font-size: 15px;
    color: #fff; }

#contact-form label span {
    letter-spacing: 0;
    text-transform: none;
    font-style: italic;
    color: #999; }

#contactname, #email, #number, #subject, #message {
	color:#666;
	font-size: 13px;
    /*width: 360px;*/
    display: block;
    margin: 0px 0 0px 0;
    padding: 8px;
    border: 1px solid #ddd;
	background: rgba(255,255,255,1);
	
	/*border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;*/
	
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s; }
	
#contactname:focus, #email:focus, #number:focus, #subject:focus, #message:focus {
	border: #E32F37 solid 1px; }    
    
#contact-form blockquote {
	font-style: italic;
}    
#contact-form blockquote span {
	color:#999;
}
#contact-form label.error {
	color:#f00;
	font-weight: normal;
	font-size: 10px;
}
#contact-form input.error,
#contact-form textarea.error {
	background: #fee;
	border: 1px solid #f00;
}

.contact-form-box {
	width:100%;
	padding-top:50px;
	text-align: center; }
	
.contact-form-box h5 {
	color: #E42F37;
	font-size: 28px; }
	
	
	
	
	
	
	
/* Button */
.btn {
	font-family: "Raleway", sans-serif;
	color: #3C5DA2;
	padding: 6px 25px;
	border: 1px solid #3C5DA2;
	font-size: 13px;
	background: none;
	border-radius: 0px;
	
	
	position: relative;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.btn:hover {
	opacity: 0.85;
	color: #fff;
	background: #3C5DA2;
}
	
	
	
	
	
	
	
	
	
	
	
	