/* ### Global Styling ### */

/* ---------- Core Formatting ----------*/

body {
	background: #669BFF;
	margin: 0;
}

body.faculty {
	background-color: LightGray;

	background-image: url("/core/media/tile_background_stone.jpg");
	background-size: auto;
	background-repeat: repeat;
}

body.student {
	background-color: LightGray;

	background-image: url("/core/media/tile_background_wood.jpg");
	background-size: auto;
	background-repeat: repeat;
}

body.report {
	background-color: White;
	margin: 0;
}

/* ---------- Page Styling/Elements ----------*/

#header {
	position: fixed;

	width: 100%;
	height: 50px;

	background-color: DimGray;

	text-align: center;

	font-family: "Roboto Slab", serif;
	font-size: 26px;
	color: White;
	line-height: 50px;

	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.4);

	z-index: 1;
}

#sidebar {
	position: absolute;
	top: 50px;
	left: 0;
	bottom: 0;

	width: 350px;

	font-family: "Roboto", sans-serif;
	font-weight: 300;

	background-color: white;

	padding-top: 30px;
	padding-right: 30px;

	z-index: -1;

	overflow: hidden;
}

#nav {
	padding-bottom: 5px;
	padding-left: 30px;
}

#content-box {
	position: absolute;
	top: 50px;
	right: 0;
	bottom: 0;
	left: 380px;

	overflow: auto;
}

#content {
	background-color: white;

	border-radius: 2px;

	box-shadow: 0 2px 0 0 #e5e5e5;

	margin: 20px;
	padding: 20px;

	font-family: "Roboto", sans-serif;
	font-weight: 300;

    width: auto;
    height: auto;
	min-height: 300px;
	z-index: -1;
}

.notification {
	position: fixed;
	bottom: -80px;
	left: 20px;

	background: Gray;
	color: white;

	font-family: "Roboto";
	font-weight: 300;

	padding: 10px;

	border: 1px solid Gray;
	border-radius: 2px;

	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

.note {
	font-family: "Maven Pro", sans-serif;
	font-style: italic;
	font-size: 14px;
	color: gray;
}

.warning {
	font-family: "Maven Pro", sans-serif;
	font-style: italic;
	font-size: 16px;
	color: #FF6666;
}

.warning_box {
	background-color: #E17367;
	color: white;

	padding: 8px 8px 8px 10px;
	border-radius: 3px;
}

/* ---------- Headers ---------- */

h1 {
	font-family: "Roboto Slab", serif;
	font-weight: 400;
	margin-top: 0;
}

h2 {
	font-family: "Roboto Slab", serif;
	font-weight: 400;

	border-bottom: solid 1px LightGray;
}

h3 {
	font-family: "Roboto Slab", serif;
	font-weight: 400;
}

/* ---------- Page Footer ---------- */

#footer {
	text-align: center;

	margin: 20px;

	width: auto;
}

#disclaimer {
	font-size: 10px;
	font-family: "Open Sans", sans-serif;
	color: #EDF2F7;
}

/* ---------- Links ---------- */

/* Normal Links */

a:link {
	color: #1E90FF;
	border-bottom: 1px solid rgba(30, 144, 255, 0);

	-webkit-transition: border 300ms ease, color 300ms ease;
	-moz-transition: border 300ms ease, color 300ms ease;
	-ms-transition: border 300ms ease, color 300ms ease;
	-o-transition: border 300ms ease, color 300ms ease;
	transition: border 300ms ease, color 300ms ease;

	text-decoration: none;
}

a:visited {
	color: #1E90FF;
	border-bottom: 1px solid rgba(30, 144, 255, 0);

	-webkit-transition: border 300ms ease, color 300ms ease;
	-moz-transition: border 300ms ease, color 300ms ease;
	-ms-transition: border 300ms ease, color 300ms ease;
	-o-transition: border 300ms ease, color 300ms ease;
	transition: border 300ms ease, color 300ms ease;

	text-decoration: none;
}

a:hover {
	color: #00BFFF;
	border-bottom: 1px solid rgba(0, 191, 255, 1);
	text-decoration: none;
}

a:active {
	color: #FFD700;
	border-bottom: 1px solid rgba(255, 215, 0, 1);
	text-decoration: none;
}