﻿body {
    padding-top: 50px;
    padding-bottom: 20px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}
.search-form {
    padding-left: 15px;
    padding-right: 15px;
}
/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

/* styles for validation helpers */
.field-validation-error {
    color: #b94a48;
}

.field-validation-valid {
    display: none;
}

input.input-validation-error {
    border: 1px solid #b94a48;
}

input[type="checkbox"].input-validation-error {
    border: 0 none;
}

.validation-summary-errors {
    color: #b94a48;
}

.validation-summary-valid {
    display: none;
}

/* Styles From Josh */

/*clear away browser's default margins and padding to provide consistency*/
*{
	padding: 0;
	margin: 0;
}

/* for the form title bar at the top*/
header {
	width: 100%;
	max-width: 1000px;
	display: inline-block;
	background: -webkit-linear-gradient(#D9F1F7, #88CADA); /* For Safari 5.1 to 6.0 */
	background: -o-linear-gradient(#D9F1F7, #88CADA); /* For Opera 11.1 to 12.0 */
	background: -moz-linear-gradient(#D9F1F7, #88CADA); /* For Firefox 3.6 to 15 */
	background: linear-gradient(#D9F1F7, #88CADA);
	margin: 15px 0px;
}
header>h1 {
	margin: 10px;
	display: block;
	color: rgb(0, 0, 0);
	font-family: 'Verdana Bold', Verdana;
	font-size: 1em;
	font-style: normal;
	font-weight: bold;
}

/* aligns and positions each form item, including the name and the input box */
.form {
	height: auto;
	position: relative;
}

.formitem {
	margin: 15px;
	position: relative;
	display: block;
	height: auto;
	clear: both;
}

.formitem>h3 {
	font-family: 'Verdana Bold', Verdana;
	font-size: 12px;
	font-style: normal;
	font-weight: bold;
	vertical-align: top;
	width: 200px;
}
.formitem>h3, .formitem>select, .formitem>input {
	display: inline-block;
    margin: 0px;
}
.formitem>select, .formitem>input {
	width: 250px;
	box-sizing: border-box;
	position: relative;
}
.formitem>textarea {
	position: relative;
	height: 65px;
	width: 450px;
	resize: none;
}

.formbutton {
	display: inline-block;
	position: relative;
	left: 100px;
	margin: 0px 15px;
}
.formbutton>button {
	border-top: 2px solid #b3deea;
	border-left: 2px solid #b3deea;
	border-right: 2px solid #4f6267;
	border-bottom: 2px solid #4f6267;
	padding: 10px 20px;
	font-family: 'Verdana Bold', Verdana;
	font-style: normal;
	font-weight: bold;
	font-size: 12px;
	background-color: #88CADA;
	font-weight: bold;
	cursor: pointer;
}

/*making some table-looking things out of tiny blocks*/
.tablewrap {
	display: inline-block;
	position: relative;
}
.table {
	display: table;
}
.header-cell, .table-cell{
	display: table-cell;
	box-shadow: 1px 0 0 0 #888, 0 1px 0 0 #888, 1px 1px 0 0 #888, 1px 0 0 0 #888 inset, 0 1px 0 0 #888 inset;
	font-family: 'Verdana Bold', Verdana;
	font-size: 12px;
	font-style: normal;
}

.header-cell1 {
	text-align: left;
	font-weight: bold;
	padding: 5px 5px;
	background-color: #FFF;
	color: #000;
    border-top: none;
    border-left: none;
    font-size: 18px;
}

.header-cell {
	text-align: left;
	font-weight: bold;
	padding: 5px 5px;
	background-color: #88CADA;
	color: #fff;
}

.table-cell {
	text-align: center;
	vertical-align: middle;
	padding: 5px 5px;
}

.header-row, .table-row {
	display: table-row;
	border: 1px solid black;
}

.table-cell>img {
	vertical-align: middle;
	margin: 0px 2px;
	width: 20px;
	height: 20px;
	cursor: pointer;
}