/****** Pseudo Classes ******/

a:link {
	text-decoration:none;
	font-weight:normal;
}

a.navbarlink:link {
	color:black;
	text-decoration:none;
	font-weight:normal;
}

/******Visited******/

a:visited {
	color:gray;
}

a.navbarlink:visited {
	color:red;
	text-decoration:none;
}

/******Hover******/

a:hover {
	color:#34889c;
}

a.navbarlink:hover {
	color:#456789;
	text-decoration:none;
	font-weight:normal;
}

/******Active******/

a:active {
	color:gray;
}

a.navbarlink:active {
	color:gray;
	text-decoration:none;
	font-weight:bold;
}