i.fadir {
	color: #7dc545;
	width: 28px;
}

#mainDirContent label {
	position: relative;
	z-index:20;
	display: block;
	font-size: 1.375em;
	font-weight: 600;
	
}

#mainDirContent input {
	display: none;
}

.main .row
{
	margin-bottom: 30px;
	max-width: 100%;
}

#mainDirContent
{
	display: flex;
	overflow: hidden;
	width: 100%;
}

#mainDirContent input[type="checkbox"] + label {
	margin-left: 0;
	margin-right: 0;
}

/* Removed for accessibility compliance
a.dept-head,
a.dept-head:hover
{
  text-decoration: none;
}
*/
		
#search_field
{
	margin: 0 auto 50px auto;
	width: 65%;
}

#search_field:focus, #search_field:hover {
	border: 1px solid #5ba6e6;
    box-shadow: 0 0px 3px #5ba6e6; 
}

::-webkit-input-placeholder { color: rgba( 0, 0, 0, 0.75 ) !important; opacity: 0.75 !important; font-family: inherit; }
:-moz-placeholder { color: rgba( 0, 0, 0, 0.75 ) !important; font-family: inherit; }
::-moz-placeholder { color: rgba( 0, 0, 0, 0.75 ) !important; font-family: inherit; }
:-ms-input-placeholder { color: rgba( 0, 0, 0, 0.75 ) !important; font-family: inherit; }

.col
{
	align-items: stretch;
	border-right: 1px solid #CCC;
	float: left;
	overflow: hidden;
	padding-right: 1%;
	width: 24%;
}

.col:last-child
{
	border-right: none;
	padding-right: 0;
}

.col .inner
{
	margin: 0 auto;
	width: 90%;
}

.col h4
{
	font-size: 1.375em;
	font-weight: 600;
}

.sectionContainer
{
	overflow: hidden;
	width: 100%;
}

.sectionContainer.open
{
	margin-bottom: 20px;
}

.sectionContainer .deptTitle
{
	margin-bottom: 15px;
}

.sectionContainer.open .deptTitle
{
	margin-bottom: 20px;
}

.sectionContainer .dept-head 
{
	color: #000;
	display: block;
	padding: 5px;
	/*text-decoration: none;*/
	width: 100%;
}

.sectionContainer .dept-head:hover,
.open .dept-head
{
	background-image: 
		linear-gradient( 
			rgb( 169, 3, 41 ) 0%,
			rgb( 143, 2, 23 ) 44%,
			rgb( 109, 0, 25 ) 100%
		)
	;
	color: #FFF;
	padding-left: 15px;
}


.hiddenSub
{
  border-left: 2px solid #999;
  display: none;
  list-style: none;
  margin: 0 0 0 10px;
  opacity: 0;
  padding-left: 10px;
}

.hiddenSub li
{
	margin-bottom: 5px;
}

/*
 * STYLES FOR ALL SUB-MENU ITEMS
 */
.itemHeading
{
  font-size: 1.125em;
  font-weight: 600;
}

.staticMap .mapHover img
{
  box-shadow: inset 10px 10px 100px rgba( 255, 0, 0, 1 );
}

.viewFullMap
{
  display: block;
  font-size: .750em;
  text-align: right;
  width: 100%;
}

.framedMapImage
{

  background-color: transparent;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% auto;
  display: block;
  max-width: none;
  padding-bottom: 55%;
  transition: box-shadow 375ms;
  width: auto;
}

.framedMapImage:hover
{
  box-shadow: inset 0px 0px 8px 0px rgba( 0, 0, 0, 1 );
}

.highlighted {
  background-color: yellow;
  font-family: inherit;
}

.keywords-hide {
	display: none;
}



@media screen and ( max-width: 1000px )
{
	.top-bar {
		display: none;	
	}
	
	#search_field
	{
		margin: 0 auto 28px auto;
		width: 90%;
	}
	
	#mainDirContent
	{
		display: flex;
		flex-direction: column;
		margin: 0 auto;
	}
	
	/* Ordering of accordion folds */
	.academic {
		order: 1;
	}
	
	.services {
		order: 2;
	}
	
	.buildings {
		order: 3;
	}
	
	.people {
		order: 0;
	}
	
	.col {
		width: 100%;
		overflow: visible;
		padding-right: 0;
		border-right: none;
	}
	
	.col .inner {
		width: 100%;
	}
	
	#mainDirContent label {
		
		/*replicate accordion styling below*/
		border-radius: 3px;
		box-shadow: 0 1px 2px rgba(0,0,0,0.1);
		background-color: rgba(235,235,235,0.5);
		padding: 1em;
		font-size: 1.125em;
	}

	#mainDirContent label:before {
		content: "\f0da";
		font-family: 'Font Awesome 5 Pro';
		color: #7dc545;
		font-size: 1.125em;
		margin-right: 9px;
		top: 0;
		left: 0;
	}

	#mainDirContent label:hover {
	transition: background-color 1s ease;
	background-color: rgba(125, 197, 69, 0.3);
	font-family: inherit;
	}

	#mainDirContent article {
		overflow: hidden;
		height: 0px;
		position: relative;
		z-index: 10;
	}
	
	#mainDirContent input:checked ~ article.colcontent {
		height: auto;
		box-shadow: 0 2px 3px rgba(0,0,0,0.2);
		background-color: rgba(255, 255, 255, 0.9);
		border-radius:3px;
		margin-top: -18px;
		margin-bottom: 16px;
		padding: 16px;
	}
	
	#mainDirContent input:checked + label:before {
		content: "\f0d7";
		margin-right: 5px;
		color: #3470b7;
	}
	
	#mainDirContent input:checked + label {
		border-bottom: 1px solid rgba(0,0,0,0.05);
		background-color: rgba(52,112,183, 0.3);
	}
	
	#mainDirContent input[type="checkbox"] + label {
		margin-left: 0;
		margin-right: 0;
		margin-bottom: 10px;
		
	}
	
}
