/* Testing link color changes */

a:link { color: #C60045; }
a:visited { color: #C60045; }
a:hover { color: #C60045; }

/* Testing entry header changes */

.entry-title, .entry-title a {
color: black;
}

.entry-title a:hover, .entry-title a:focus, .entry-title a:active {
color: #C60045;;
  
/* Changes navigation bar text/page navigation links grey */

.site-navigation a {
	color: rgb(110,110,110);
	color: rgba(110,110,110,1);
}


/* Changes navigation bar background black */

.main-navigation, .menu-toggle {
	background-color: rgb(0,0,0);
	background-image: -webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,0)),to(rgba(0,0,0,0)));
	background-image: -webkit-linear-gradient(rgba(240,240,240,0.8),rgba(210,210,210,0.8));
	background-image: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0));
}
  
/* Table hover colour */
  
table tr:hover td { background: none !important; color: #000 !important; }