/* CSS Document */


a.busBtn{
	position:relative;
	text-decoration:none;
	color:#333;
	transition:         all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
a.busBtn:hover{
	background:rgba(133,177,223,0.1);
	
	box-shadow:inset 0 0 0 1px #85b1df, 0 0 1px transparent;
	
}
a.busBtn:after{
	content:"";
	width:100%;
	height:7px;
	position:absolute;
	background: #85b1df;
	bottom:0;
	display:block;
			
}

a.busBtnC{
	position:relative;
	text-decoration:none;
	color:#333;
	transition:         all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
a.busBtnC:hover{
	background:rgba(188,193,0,0.1);
	
	box-shadow:inset 0 0 0 1px #bcc100, 0 0 1px transparent;
	
}
a.busBtnC:after{
	content:"";
	width:100%;
	height:7px;
	position:absolute;
	background: #bcc100;
	bottom:0;
	display:block;
			
}