header

	{background:#BA1C21;
	color:#FFFFFF;
	font-family:Georgia;
	grid-row:1/2;
	grid-column:2/8;}

body
	{
	color:#666666;
	font-family:Arial;
	background-attachment: fixed;
	background-image: linear-gradient(to bottom, #eeeeee, #ffffff);
	background-attachment: fixed;
	}


header h1
	{line-height:240%;
	padding-left: .5rem;
	text-align: center;
	height: 72px;
	background-image: none;
	background-repeat: no-repeat;
	background-position: right;
	margin:0; }

h1 {padding-left : 0.5em;}

header a {color: #FFFFFF;
	text-decoration: none;
	}

main {padding: 1px 2em 1px 2em;
	display:block;
	background-color:#FFFFFF;
	grid-area:4/2/5/8;
	}

section {
	float: none;
	width:100%;
	padding-right:0px;}

nav
	{
	font-weight:bold;
	background-color:#424242;
	grid-area:2/2/3/8;
	padding:0;
	position: sticky ;
	top:0;}

nav ul {list-style-type: none;
	margin:0;
	padding:0;
	display:flex;
	flex-flow:row nowrap;
	}
nav ul li {width:100%;}

nav a{
	text-decoration: none;
	color:#ffffff;
	padding:1rem 0rem;
	display:block;
	text-align: center;
	transition:background-color 0.5s ease-out;
}
video{
	float:right;
	margin-left: 2em;
}
nav a:hover {

	background-color:#BA1C21;
}
h2 {color:#424242;
	font-family: Georgia}

h2:first-child{
	flex:2;
}


h3
	{color: #BA1C21;
	font-weight:bold;}
.dsu
	{color: #BA1C21;
	font-size: 1.2em;}


h3
	{color: #BA1C21; }




.clear
	{clear:both;}

* { box-sizing:border-box; }
#redbar {background-color:#BA1C21;
grid-row:1/2
gird-column:1/9;
}

#greybar {
	background-color:#424242;
	grid-row:2/3;
	grid-column:1/9;
}
#wrapper {
	display: grid;
	grid-auto-rows: minmax(0, auto);
	grid-template-columns:minmax(0px, 1fr) repeat(6, minmax(0, 175px)) minmax(0px, 1fr); }

#homehero {

	background-image: url(images/homehero.jpg);
	height: 300px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	grid-area:3/1/4/9;}

#studenthero {

	background-image: url(images/homehero.jpg);
	height: 300px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	grid-area:3/1/4/9;}

#facultyhero {
	background-image: url(images/facultyhero.jpg);
	height: 300px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	grid-area:3/1/4/9;}

#alumnihero {
	background-image: url(images/alumnihero.jpg);
	height: 300px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	grid-area:3/1/4/9;}

#shophero {
	background-image: url(images/shophero.jpg);
	height: 300px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	grid-area:3/1/4/9;}


footer
	{font-size:.70em;
		font-family:italic;
		text-align:center;
		padding:1em;
		grid-area:5/2/6/8;
		}
@media only screen and (max-width: 1100px){
	#wrapper {
		grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0,150px)) minmax(0px,1fr);}}


@media only screen and (max-width: 900px){
	nav {
		font-weight:bold;
		background-color:#424242;
		grid-area: 2/1/3/5;
		padding:0;
		position: sticky;
		top:0;}
		video{
			margin:0px;
			width:100%;
			float:none;
			height:auto;
		}
			nav ul{flex-flow:column nowrap;}
		#homehero{
			background-image: url(images/homehero.jpg);
			height: auto;
			background-position: center;
			background-size: cover;
			background-repeat: no-repeat;
			grid-area:2/5/3/8;}
		#facultyhero{
			background-image: url(images/facultyhero.jpg);
			height: 300px;
			background-position: center;
			background-size: cover;
			background-repeat: no-repeat;
			grid-area:2/5/3/8;}
		section {
			float:none;
			width:100%;
			padding-right:0px;}
}

@media only screen and (max-width: 600px){
	header h1{
		background-image: none;
		text-align: center;
	}
	nav {grid-area:2/1/3/9;}
	#homehero{display:none;}
	#studenthero{display: none;}
	#facultyhero{display: none;}
	#alumnihero{display: none;}
}
table {
	margin:0 auto;
	border: 1px solid #424242;
	width:100%;
	border-collapse:collapse;
}
tr:nth-of-type(2n+3) {
	background-color: #f3f3f3;
}
tr{
	padding: 5px;
	border: 1px solid #424242;
	text-align:center;
}

td {
	padding: 5px;
	border: 1px solid #424242;
	text-align: center;
}

th {
	padding: 5px;
	border: 1px solid #424242;
}
.text{
	text-align:left;
}

form {
	display: grid;
	grid-template-rows: auto;
	grid-template-columns: 200px 1fr;
	grid-gap: 0.75rem;
	width:100%;
}

input,textarea {
	font-size: 1rem;
	padding:10px;
	color:#666666;
	background-color:#fafafa;
	border:none;
}
input:focus, textarea:focus{
	outline:none;
	background-color: #f0f0f0
}