/* Add your CSS code here.

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

.hover_raise {
	position: relative; /* Or absolute, fixed, sticky */
    z-index: 1; /* Default z-index */
}

.hover_raise:hover {
    z-index: 999;
}




