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

/*Page Style you can use your own page layout and style.*/

/*Making page responsive.*/
/* Large desktop */

/*Form design*/
form {
	background:#fff;
	padding:20px 0;
	margin:20px 0;
	 width:90%;
	}
input[type="text"] {
	background:linear-gradient(to top, #ECECEC, #F9F9F9) repeat scroll 0 0 #F1F1F1;
    background-repeat: repeat-x;
    border: 1px solid #CDCDCD;
    height: 35px;
    margin-bottom: 10px;
    padding: 5px;
    position: relative;
    width:100%;
}
textarea {
    background-color: #EEEEEE;
    border: 1px solid #CDCDCD;
    height: 107px;
    margin-bottom: 10px;
    min-height: 110px;
    padding: 10px 5px;
    position: relative;
    width:100%;
}
input[type="text"]:focus, textarea:focus {
    border: 1px solid #afca0a;
    box-shadow: 0 0 5px #afca0a;
}
fieldset {
	 margin:0 25px;

}
label {
	display:block; 
	margin-bottom:8px;
	color:#024374;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight:400;
	font-size:1.0em;
	font-style:normal;
	line-height:170%;
}
label span {
	color:afca0a;
	font-weight:normal; 
	font-size:0.8em;
}
input[type=submit] {
		background:#afca0a;
		color:#fff;
		margin-bottom:20px;
	padding:6px 8px;
	cursor:pointer;

}
.alert-box {
	color:#fff;
	border-radius:0;
	padding:10px 16px;
	margin:10px 90px 10px 20px;
	background: rgba(175,202,11,0.9);
	border:1px solid #9fb70a;
}