/* COLOR SCHEME
#4086AA - STEEL BLUE
#91C3DC - LIGHT BLUE
#87907D - ....BROWN GRAY?
#AAB6A2 - ...CREAM GRAY?
#555555 - DARK GRAY
#666666 - LIGHTER GRAY
*/
body
{
	font-family: Arial;
	background-color: steelblue;
}

h1
{
	font-weight: bold;
	font-size: 32px;
	color: #555555;
	padding: 0px;
	margin: 0px;
}

h2
{
	font-weight: bold;
	text-decoration: underline;
	font-size: 24px;
	color: #555555;
	padding: 5px;
	margin: 0px;
}

h3
{
	font-weight: normal;
	font-size: 14px;
	color: #555555;
	padding: 5px;
	margin: 0px;
}

h4
{
	font-weight: normal;
	font-size: 16px;
	color: #555555;
	padding: 5px;	
	margin: 0px;
}

h5
{
	font-weight: normal;
	font-size: 12px;
	color: #666666;
	font-style: italic;
	text-align: center;
	padding: 0px;
	margin: 0px;
}

header, footer
{	
	background-color: whitesmoke;
	padding: 5px;
	margin: 5px;
	border-radius: 10px;
}

header .row .button
{
	float: right;
}

header .col-2
{
	padding-left: 0px;
	padding-right: 0px;
}

section
{
	border-radius: 10px;
	background-color: whitesmoke;	
}

#textbox
{
	border: 1px solid #555555;
	background-color: #91C3DC;
	border-radius: 10px;
	padding: 5px;
	margin: 0px;
	align-items: top;
	overflow: hidden;
	
	-webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

#imagebox
{
	border: 1px solid #555555;
	background-color: #87907D;
	border-radius: 10px;
	padding: 10px;
	margin: 5px;
	align-items: top;
	overflow: hidden;
	
	-webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.button a
{
	cursor: pointer;
	text-decoration: none;
	padding: 5px 5px;
	font-style: bold;
	font-size: 24px;
	color: white;
	border: solid;
	border-color: steelblue;
	background-color: steelblue;
	border-radius: 10px;
}

.button a:active
{
	top: 2px;
	position: relative;
}

.tab
{	
	text-align: center;
	font-size: 18px;
	padding: 5px;
}

.tab a
{
	text-decoration: none;
	background-color: whitesmoke;
	border-color: steelblue;
	border-radius: 5px;
	display:block;
	color: steelblue;
	cursor: pointer;
}

.tab a:hover
{
	background-color: steelblue;
	color: whitesmoke;
}
.tab a:active
{
	top: 2px;
	position: relative;
	border-color: steelblue;
	background-color: steelblue;
	color: whitesmoke;
}

#selected
{
	background-color: steelblue;
	color: whitesmoke;
}

table
{
		text-align: center;
		width: 95%;
		margin: 0 auto;
		color: #555555;	
}

th, td
{
	border: 1px solid #555555;
	width: 25%
}

th
{
	font-weight: bold;
	font-size: 16px;
}

td
{
	font-weight: normal;
	font-size: 14px;
}