body{
	margin:0;
	padding:0;
	font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
	background-color:#fff;
	font-size:14px;
	color:#333;
}
.nav{
	box-sizing: border-box;
}
.nav-option{
	text-decoration:none;
	padding: 10px 15px;
	color: #fff;
	display: inline-block;
	-webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
	position:relative;
}
.nav-option::after{
	height: 3px;
    background-color: #ccc;
    width: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    content: ' ';
    -webkit-transition: width 250ms ease-out;
    -moz-transition: width 250ms ease-out;
    -o-transition: width 250ms ease-out;
}
.nav-option:hover{
	color:#ba0c2f;
	background-color:#F5F5F5;
}
.nav-option:hover .sub-nav{
	display:inline-block;
	background-color:#fff;
}
.sub-nav{
	text-decoration:none;
	color: #fff;
	-webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
	display:none;
	border:1px solid #000;
	position: absolute;
	z-index:10;
	margin-left:-15px;
	margin-top:10px;
}
.sub-nav-option{
	text-decoration:none;
	padding: 10px 15px;
	color: #fff;
	display: block;
	-webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
	position:relative;
	background-color:#333;
}
.sub-nav-option:hover{
	background-color:#F5F5F5;
	color:#ba0c2f;
}
.a-button:hover{
	background-color: #72071d;
}
.nav-option:hover::after{
	width:100%;
}

a{
	color: #ba0c2f;
}
a:hover{
	color: #72071d;
}
.content-width{
	position:relative; 
	width:1000px;
	margin:auto;
}
h1{
	color:#ba0c2f;
	font-weight:bold;
	padding-bottom:4px;
	border-bottom:1px solid #777;
	margin-bottom:8px;
	font-size:36px;
}
h2{
	color:#616161;
}
.footer{
	background:#ba0c2f url(https://webcore.unm.edu/v2/images/mesa-mountain-red.png) bottom right no-repeat;
	color:#fff;
	margin-top:32px;
}
.footer a{
	color: #fff;
}
.footer .left{
	float:left;
}
.footer .right{
	float:right;
}