/*
This file contains styles specific to Faculty Directory pages
*/

.fd_directory .inner-content {
	max-width: 735px;
}
.fd_subnavwrapper {
	width: 100%;
	background-color: rgba(219, 219, 217, 1);
	text-align: center;
	margin: 0;
	padding: 0;
	height: 65px;
	overflow: hidden;
}

.fd_subnav {
	display: inline-block;
	width: 735px;
	margin: 0 auto;
	padding: 0;
	text-align:left;
	}

.fd_subnav:after {
	content: '';
	display: block;
	height: 0;
	clear: both;

}

.fd_subnavitem {
	display: inline-block;
	float: left;
	border-left: 3px solid white;
	color: #2d637f;
	background-color: white;
	text-transform: uppercase;
	padding: 10px 25px;
	font-size: 15px;
	font-weight: bold;
	height: 20px;
	margin-top: 25px;
	margin-right: 1px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	border-radius: 5px;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	opacity: .75;
}
.fd_subnavitem:last-of-type {
	margin-right: 0;
}
.fd_subnavitem:hover {
	opacity: 1;
	color:#2d637f;
}

.fd_subnavitem.activenav {
	color: #2d637f;
	background-color: white;
	opacity: 1;
}
@media screen and (max-width: 809px) {
	.fd_subnav {
		width: 100%;
	}
	.fd_subnavitem {
		width: 25%;
		font-size: 10px;
		padding: 13px 10px;
		text-align: center;
		vertical-align: middle;
		height: 23px;
		margin-top: 16px;
		display: table-cell;
	}
}

