

.topsection {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: horizontal;
	-ms-flex-direction: row;
	flex-direction: row;
}

.leftAside {
	width: 70%;
	box-sizing: border-box;
	padding: 5px;
}

.rightAside {
	width: 30%;
	box-sizing: border-box;
	padding: 5px;
}

h1 {
    margin-bottom: 1.5rem;
    font-size: 36px;
	color: #0078ae;
    font-weight: normal;
}

h2, h3 {
    font-weight: bold;
    margin-bottom: .3em;
    color: #92278f;
    clear: none;
}

.rightAside h3 {
	padding: 10px;
    text-align: left;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    background-color: #0078ae;
}

.sidebar, .login {
    background-color: #D3E9FB;
    margin-bottom: 1em;
}

.sidebar > div, .login > div {
	padding: 5px;
}

label {
	display: inline-block;
	width: 40%;
}

input.btn {
    background-color: #0078ae;
    border: none;
    color: white;
    padding: 6px;
    font-size: 1em;
    transition: all 0.3s ease;
    cursor: pointer;
}

input.btn:hover {
    background-color: #f26529;
}

.beginsubmission.clearfix {
    margin-top: 1.5em;
}

@media (max-width: 760px) {
	.topsection {
	-webkit-box-orient: column;
	-webkit-box-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	}

	.leftAside, .rightAside {
		width: 90%;
		margin: 0 auto;
	}
}

/****************************************
 * Expand / Collapse Steps
 ****************************************/
#steps {
  list-style-type: none;
  margin: 0;
  padding: 0; }
#steps li {
  list-style-type: none;
  margin: 0;
  padding: 0; }
#steps li li{
  list-style-type: none;
  margin: auto;
  padding: auto; }
#steps a {
  text-decoration: none;
  display: inline-block;
  padding: 3px 5px; }
#steps .collapse a {
  display: inline; 
  padding: 0;
 }
#steps p.switch {
  padding: -1em 0 0.5em 0;
  margin: 0.3em 0;
  text-align: right; }
#steps div.collapse {
  margin: 0 0 10px 10px; }
#steps li h4 {
  width: 100%; }
#steps .expand a {
  display: block;
  background-color: #e3e3e3;
  border-color: #cccccc;
  border-width: 1px;
  border-style: solid;
  background-repeat: no-repeat; }
  #steps .expand a:link, #steps .expand a:visited {
    background-image: url(/static/img/arrow-down.gif);
    background-position: 98% 50%; }
  #steps .expand a:hover, #steps .expand a:active, #steps .expand a:focus {
    text-decoration: underline;
    outline: 0 none; }
  #steps .expand a.open:link, #steps .expand a.open:visited {
    background-image: url(/static/img/arrow-up.gif);
    background-position: 98% 50%; }
#steps p.switch a, #steps .collapse a {
	display: inline;
	background-color: transparent;
	border-color: none;
	border-width: 0; }