body {
    font-size: 16px;
    background: #f9f9f9;
    font-family: sans-serif;
}
h2 {
    text-align: center;
	color: #4F81BD
}
h3 {
	text-align: center;
	font-style: italic;
    font-size: 16px;
	color: #8d8d8d
}
h4.suspended {
	text-align: center;
	color: red;
}
form {
    width: 600px;
    background: #fff;
    padding: 15px 40px 40px;
    border: 1px solid #ccc;
    margin: 50px auto 0;
    border-radius: 5px;
}
.br {
    display: block;
    margin-bottom: -.2em;
}
.boxed {
    width: 400px;
    background: #fff;
    padding: 15px 40px 40px;
    border: 1px solid #ccc;
    margin: 50px auto 0;
    border-radius: 5px;
}
label {
	margin-left: 30px;
    display: block;
    margin-bottom: 5px
}
label i {
    color: #999;
    font-size: 80%;
}
input, select {
    border: 1px solid #ccc;
	margin-left: 30px;
    padding: 10px;
    display: block;
    width: 80%;
    box-sizing: border-box;
    border-radius: 2px;
}
input, radio {
    border: 1px solid #ccc;
    padding: 10px;
    display: block;
    width: 80%;
    box-sizing: border-box;
    border-radius: 2px;
}
.row {
    padding-bottom: 10px;
}
.form-inline {
	margin-left: 30px;
    border: 1px solid #ccc;
    padding: 8px 10px 4px;
    border-radius: 2px;
	width: 78%;
}
.form-inline label, .form-inline input {
    display: inline-block;
    width: auto;
    padding-right: 15px;
}
.error {
    color: red;
    font-size: 90%;
    margin-left: 5%;
}
input[type="submit"] {
    font-size: 110%;
    font-weight: 100;
    background: #4F81BD;
    border-color: #016BC1;
    box-shadow: 0 3px 0 #4F81BD;
    color: white;
    margin-top: 10px;
    cursor: pointer;
}
input[type="submit"]:hover {
    background: #0165b6;
}
input[type="button"] {
    font-size: 110%;
    font-weight: 100;
    background: #4F81BD;
    border-color: #016BC1;
    box-shadow: 0 3px 0 #4F81BD;
    color: white;
    margin-top: 10px;
    cursor: pointer;
}
input[type="button"]:hover {
    background: #0165b6;
}
.collapsible {
  background-color: white;
  color: black;
  cursor: pointer;
  padding: 10px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 16px;
}
.active, .collapsible:hover {
  background-color: #D3D3D3;
}
.content {
  color:  black;
  padding: 0 10px;
  display: none;
  overflow: hidden;
  background-color: white;
}
.column {
  float: left;
}
.left {
  width: 45%;
}
.right {
  width: 45%;
}
