/* BLUE: #001f61 */

html {
	margin:0;
	padding:0;
	width:100%;
	height:100%;
	overflow-y: scroll;
	overflow-x: hidden;
	background-color: #000;
}
body {
	margin:0;
	padding:0;
	width:100%;
	height:100%;
	font-family: Verdana, Geneva, Helvetica, sans-serif;
	background-color: #000;
	background: -webkit-gradient(linear, left top, left bottom, from(#001f61)) 0 300px no-repeat;
	background: -moz-linear-gradient(-90deg, #001f61, #001f61) 0 300px no-repeat;
}
.centered {
	position: relative;
	left: 50%;
	margin-left: -250px;
}

/* ---------- HEADER ---------- */
#header {
	position: relative;
	height: 48px;
	padding: 7px 0;
	background-color: #999;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#ddd), to(#999));
	background-image: -moz-linear-gradient(-90deg, #ddd, #999);
	border-bottom: 2px solid #ddd;
}
#grayCorner {
	position: absolute;
	width: 1000px;
	height: 27px;
	border-bottom: 2px solid #ccc;
	bottom: -29px;
	right: 50%;
	background-color: #999;
	margin-right: 530px;
}
#grayCorner img {
	position: absolute;
	top: 0;
	right: -40px;
}

/* ---------- NAVIGATION ---------- */
#navigation {
	position: relative;
	left: 50%;
	margin-left: -350px;
	color: #fff;
	background: #000 url("../imgs/circuitbg.png") no-repeat top center;
	height: 40px;
	width: 800px;
	overflow: hidden;
	padding-left: 100px;
}
#navigation a{
	color: #fff;
}
.menu {
	float: left;
	margin: 0 10px 0 3px;
	height: 300px;
	width: 180px;
}
.menuTitle {
	color: #fff;
	font-weight: bold;
	display: block;
	margin: 11px 0;
}
.menu ul {
	border-left: 1px solid #ddd;
	list-style: none;
	margin: 0;
	padding: 0 0 0 10px;
	height: 100%;
}
.menu li{
	font-size: 90%;
	margin: 5px 0;
	padding: 0;
}

/* ---------- MAIN BODY ---------- */
#mainBody {
	position: relative;
	width: 100%;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#000), to(#001f61));
	background-image: -moz-linear-gradient(-90deg, #000, #001f61);
}
#whiteBox {
	position: relative;
	top: 0;
	left: 50%;
	width: 51%;
	background-color: #fff;
}
#contentBox {
	position: relative;
	top:0;
	left: -379px;
	width: 867px;
	background-color: #fff;
	min-height: 600px;
	padding: 20px 0;
}
#byuLogo {
	position: absolute;
	left: -113px;
	top: -80px;
}
#whiteCorner {
	width: 1000px;
	height: 30px;
	background-color: #fff;
	position: absolute;
	top: -29px;
	left: 907px;
}
#whiteCorner img {
	position:absolute;
	top:0;
	left: -39px;
}
#content {
	border: 1px solid #ccc;
	position: relative;
	margin: 0 0 0 130px;
	width: 705px;
	padding: 15px;
	min-height: 300px;
	overflow: auto;
}
#content img {
	float: left;
	margin-right: 15px;
}
.infoBox {
	position: relative;
	border-top: 1px dotted #999;
	padding: 15px 0;
	overflow: auto;
	margin: 0;
}

/* ---------- BASIC ELEMENTS ---------- */
a {
	text-decoration:none;
	color: #009;
}
a:hover {
	text-decoration:underline;
}
h1 {
	margin: 0;
	padding: 0;
}
h2 {
	margin: 0;
	padding: 0;
}
p {
	margin: 10px 0 0 0;
}
table {
	text-align: center;
	margin: 15px auto 0 auto;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}
caption {
	text-align: left;
	font-weight: bold;
}
th {
	color: #fff;
	background-color: #001f61;
	padding: 3px 10px;
}
th:first-child {
	-moz-border-radius: 7px 0 0 0;
	-webkit-border-radius: 7px 0 0 0;
	border-radius: 7px 0 0 0;
}
th:last-child {
	-moz-border-radius: 0 7px 0 0;
	-webkit-border-radius: 0 7px 0 0;
	border-radius: 0 7px 0 0;
}
td {
	background-color:#d6d6d6;
	padding: 3px 10px;
}
.orangeButton {
	padding: 1px 10px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	background-color: #f60;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fc0), color-stop(0.5, #f90), color-stop(0.51, #f60), to(#f80));
	background-image: -moz-linear-gradient(-90deg, #fc0, #f90 50%, #f60 50.1%, #f80);
	border: 1px solid #F60;
	color: #000;
	font-weight: bold;
	float: right;
	font-size: 70%;
}
.orangeButton:hover {
	text-decoration: none;
	color: #fff;
}
#tagline{
	margin-left: 145px;
	font-size: 80%;
	line-height: 20pt;
}