

main.containerwrapper {
	max-width: 1170px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}


.leftAside {
	box-sizing: border-box;
	width: 70%;
	padding: 10px;
}

.rightAside {
	box-sizing: border-box;
	width: 30%;
	padding: 10px;
}

.btn {
	background-color: #f5943a;
    background: -moz-linear-gradient(top,#f5943a 0,#d6751a 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#f5943a),color-stop(100%,#d6751a));
    background: -webkit-linear-gradient(top,#f5943a 0,#d6751a 100%);
    background: -o-linear-gradient(top,#f5943a 0,#d6751a 100%);
    background: -ms-linear-gradient(top,#f5943a 0,#d6751a 100%);
    background: linear-gradient(to bottom,#f5943a 0,#d6751a 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    border: 0;
    border-radius: 3px;
    color: #fff;
    font-size: .8em;
    padding: 8px 2.5em 6px;
    text-transform: uppercase;
    white-space: normal;
    vertical-align: top;
    cursor: pointer;
}

.btn:hover {
    background: #D47500;
    background: -moz-linear-gradient(top,#D47500 0,#b35400 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#D47500),color-stop(100%,#b35400));
    background: -webkit-linear-gradient(top,#D47500 0,#b35400 100%);
    background: -o-linear-gradient(top,#D47500 0,#b35400 100%);
    background: -ms-linear-gradient(top,#D47500 0,#b35400 100%);
    background: linear-gradient(to bottom,#D47500 0,#b35400 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.bannerImage img {
	width: 100%;
}

span.programTitle {
    display: inline-block;
    width: 65%;
}


section.beginsubmission {
    padding: 6px 5px;
}

section.beginsubmission:nth-child(even) {
	background-color: #dbdbdb;
}

label {
    width: 40%;
    display: inline-block;
}

h2 {
    margin-bottom: 35px;
}

@media (max-width: 740px) {
	main.containerwrapper {
		flex-direction: column;
	}

	.leftAside, .rightAside {
		width: 95%;
		margin: 0 auto;
	}
}