  /*GENERAL*/
	#department {
		text-align: center;
		margin-bottom: 30px;
	}
			
	#gradient {
		background: #66002b; /* Old browsers */
		background: -moz-linear-gradient(left, #66002b 0%, #cc0055 100%); /* Firefox */
		background: -webkit-linear-gradient(left, #66002b 0%,#cc0055 100%); /*Chrome, Safari */
		background: linear-gradient(to right, #66002b 0%,#cc0055 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#66002b', endColorstr='#cc0055',GradientType=1 ); /* Internet Explorer */
	}
	
/*CONTACT INFO*/
	#location {
		display: inline-block; 
		float: left;
		width: 500px;
		margin-bottom: 30px;
	} 
			
	#contact {
		display: inline-block;
		float: right;
		width: 350px;
		margin-bottom: 30px;
	} 
			
	#clear {
		clear: both;
	}
		
/*TABLE*/
	table {
		border-collapse: collapse;
		margin: 0;
		padding: 0;
		width: 100%;
		table-layout: fixed;
	}
			
	th {
		color: white;
		font-size: 18px;
		text-align: left;
	}
		
	td {
		text-align: left;
		font-size: 18px;
	}
		
	tr:hover td {
		background-color:#ffff99;
	}

/*RESPONSIVE TABLE*/
	@media screen and (max-width: 768px) {
		table {
		border: 0;
	}

	table thead {
		border: none;
		clip: rect(0 0 0 0);
		height: 1px;
		margin: -1px;
		overflow: hidden;
		padding: 0;
		position: absolute;
		width: 1px;
	}
		
	table tr {
		border-bottom: 3px solid #ddd;
		display: block;
		margin-bottom: .625em;
	}
  
	table td {
		border-bottom: 1px solid #ddd;
		display: block;
		font-size: .8em;
		text-align: right;
	}
  
	table td::before {
		content: attr(data-label);
		float: left;
		font-weight: bold;
		text-transform: uppercase;
	}
			
	table td:last-child {
		border-bottom: 0;
		}
	}
			
/*FOR CONTACT INFO*/
	@media screen and (max-width: 675px) {
		#location {
			width: 100%;
			text-align:center;
			margin-top: 20px;
			margin-bottom: 20px;
		}
			
	#contact {
		text-align:center;
		width: 100%;
		}
	}