/* For just setting the background colour of a target; found on StackOverFlow */
/*:target { 
	background-color: #ffbf00; 
	transition: background-color ease-in 0.8; 
	-webkit-transition: background-color ease-in 0.s; 
} */

/* For animating the target's highlighting and easing
Adapted from https://css-tricks.com/examples/Target/ */
:target { 
	border-radius: 10px;
	animation: highlight 3s ease;
	-webkit-animation: highlight 3s ease;
	/* The timings and 50% below are to work with jQuery scrollTo below */
}

@keyframes highlight {
	0% { background-color: #ffbf00; }
	50% { background-color: #ffbf00; }
	100% { background-color: #fff;}
}

@-webkit-keyframes highlight {
	0% { background-color: #ffbf00; }
	50% { background-color: #ffbf00; }
	100% { background-color: #fff;}
}

