/*



IMPORTANT: Make sure to turn "Use the custom.css stylesheet?" option on in your Child 

Theme settings page (under the top level Genesis menu item in your Wordpress dashboard). 



You can use the "custom" class to override *any* CSS declarations contained in the 

style.css file.



For example, if you wish to change the default link color to green, you would add the 

following declarations to this file:



	.custom a, .custom a:visited { color: #090; }	<--- This makes links green

	.custom a:hover { color: #00f; }	<--- This makes links blue when you mouse over them



*/

.custom #header { width: 273px; float: left;}
.custom .flexslider {clear: both;}
.custom #inner {clear: both;}

.custom input[type=text], .custom input[type=email], textarea, select{
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
    -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

    box-sizing : border-box;
}

.custom textarea {
	height: 200px;
}

.custom .wpcf7-submit {
	margin-top: 10px;
}