/*
Light Blue: #90AFC5;  Monochromatics: http://www.colorhexa.com/90afc5;  #5e8bab, #c2d3df
	#324C5F
Dark Blue: #336B87;
Blackish: #2A3132;
Reddish: #763626;
*/
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700);
@import url(https://fonts.googleapis.com/css?family=Lora:400,700);
@import url(https://fonts.googleapis.com/css?family=Bitter:400,700);

html, body, div, h1, h2, h3, p, form, fieldset, legend { margin:0px; padding:0px; }
body {
	font:14px 'Open Sans', sans-serif;
	color: #2a3132;
	background: #90afc5;
	background: #90afc5 linear-gradient(to bottom, #b2d1e7 85px, #90afc5 200px) repeat-x;
}
img { display: block; border:none; }
h1, h2, h3 { font-family: 'Lora', sans-serif; }
h1 {
	margin-bottom: 10px;
	font-size: 26px;
	color: #324C5F;
}
p { margin-bottom:1.2em; }
a { color:#763626; text-decoration:underline; }
	a:hover { color:#336b87; text-decoration:underline; }
ul { margin-top:0px; margin-bottom:5px; }
td, th { vertical-align:top; }

ul { padding: 0px; margin: 0px 0px 1.2em 2em; }
	li { padding: 0px; margin: 0px; }

input[type=text], input[type=password], textarea {
	padding: 5px 8px;
	min-width: 200px;
	border:1px solid #333;
	border-radius: 6px;
	font:14px 'Open Sans', sans-serif;
}
select {
	padding: 5px 0px 5px 8px;
	min-width: 218px;
	border: 1px solid #333;
	border-radius: 6px;
	font:14px 'Open Sans', sans-serif;
}
input.button {
	padding: 0px 15px;
	min-width: 100px;
	min-height: 30px;
	margin:0px 5px 5px 0px;
	background:#ccc;
	border:1px solid #2a3132;
	border-radius: 6px;
	font:16px 'Open Sans', sans-serif;
	color: #000;
	cursor: pointer;
	box-shadow: 1px 1px 2px #999;
}
	input.button[type=submit] {
		background-color:#336b87;
		color: #f0f0f0;
		/*font-weight: bold;*/
	}
	input.button:hover { box-shadow: 1px 1px 5px #666; }


.bounds {
	position: relative;
	width: 950px;
	margin: 0px auto;
}

#header {
	position: relative;
	height: 80px;
	margin-bottom: 15px;
	background: #ccc; /* Old browsers */
	background: -webkit-linear-gradient(top,  #f0f0f0,#cccccc); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  #f0f0f0,#cccccc); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0f0f0', endColorstr='#cccccc',GradientType=0 ); /* IE6-9 */
	border-top: 2px solid #7f7f7f;
	border-bottom: 2px solid #7f7f7f;
}
	#logo {
		display: block;
		position: absolute;
		left:3px;
		top:5px;
	}
	#header h1 { padding-top: 10px; text-align: right; }
	#header #user_info {
		float: right;
		margin: -5px 0px 0px 0px;
		line-height: 1.3em;
		text-align: right;
	}
	#header #links {
		float: left;
		margin: -5px 0px 0px 200px;
	}


#footer {
	clear: both;
	padding: 10px 0px 50px 0px;
	text-align: center;
}


.fa { padding: 0px 4px; }
.row {
	display:block;
	clear:left;
	min-height: 35px;
	margin-bottom: 10px;
}
	.row label {
		display:block;
		float:left;
		width:120px;
		padding: 8px 3px 0px 0px;
		text-align:right;
		font-family: 'Bitter', serif;
	}
		.row label.radio {
			float: none;
			width: auto;
			padding: 0px;
			text-align: inherit;
			cursor: pointer;
		}
		.row label.plain, .plain label {
			display:inline;
			float:none;
			width:auto;
			padding:0px;
			margin:0px;
			text-align:inherit;
		}

.panel {
	position: relative;
	padding: 15px 30px;
	width: 450px;
	margin: 20px auto;
	border:2px solid #336b87;
	border-radius: 15px;
	box-shadow: 2px 2px 8px #000;
	background: #f0f0f0;
}
	.panel div.error {
		padding: 3px 5px;
		margin-bottom: 15px;
		background: #fcc;
		color: #a00;
		border-radius: 10px;
		text-align: center;
	}



table.nice {
	border: 2px solid #336B87;
}
table.nice th {
	padding: 4px 2px;
	font: 16px 'Lora', serif;
	color: #fff;
	background: #336B87;
	text-align: left;
}
	table.nice td { background: #f0f0f0; padding: 2px; }
	table.nice tr.altRow td { background: #ccc; }
	table.nice th:first-child, table.nice td:first-child { padding-left: 6px; }




.clear { clear:both; height:0px; }
.center, table.nice th.center { text-align: center; }
.right, table.nice th.right { text-align: right; }
.offscreen { display: block; position: absolute; top: -2000px; left: -1000px; width: 1px; height: 1px; font-size: 1px; }

.delete {
	color:#f00;
	padding:2px;
}
	.delete:hover {
		color:#fff;
		background-color:#f00;
	}

a.button {
	display: inline-block;
	padding: 3px 15px;
	min-width: 100px;
	margin:0px 5px 5px 0px;
	background:#ccc;
	border:1px solid #2a3132;
	border-radius: 6px;
	font:16px 'Open Sans', sans-serif;
	color: #000;
	cursor: pointer;
	box-shadow: 1px 1px 2px #999;
	text-decoration: none;
	text-align: center;
}
	a.button.blue { background-color:#336b87; color: #f0f0f0; }
	a.button.red  { background-color:#a00; color: #f0f0f0; } /*763626*/
	a.button.green{ background-color:#269944; color: #f0f0f0; }
	a.button.gold { background-color:#fc3; color: #2a3132; }
	a.button:hover { box-shadow: 1px 1px 5px #666; }


.paginator { clear: both; padding: 3px 6px; }
	.paginator .page_links { float: right; text-align: right; }

.error {
	color:#a00;
	}

span.link { cursor:pointer; color:#763626; text-decoration:none; }
span.link:hover { color:#336b87; text-decoration:underline; }
.pagination { float:none; margin-top:2px; }
.pagination .link { padding:0px 4px; margin:1px; border:1px solid #ddd; font-weight:normal; }
.pagination span.selected { border:1px solid #1B4676; font-weight:bold; }