	/* Custom Button Styles */
	
	.btn-dark {
	    border-radius: 0;
	    color: #fff;
	    background-color: rgba(0,0,0,0.4);
	}
	
	.btn-dark:hover,
	.btn-dark:focus,
	.btn-dark:active {
	    color: #fff;
	    background-color: rgba(0,0,0,0.7);
	}
	
	.btn-light {
	    border-radius: 0;
	    color: #333;
	    background-color: rgb(255,255,255);
	}
	
	.btn-light:hover,
	.btn-light:focus,
	.btn-light:active {
	    color: #333;
	    background-color: rgba(255,255,255,0.8);
	}

	.btn-magenta {
	    border-radius: 0;
	    color: #fff;
	    background-color: rgba(255,0,255,0.4);
	}
	
	.btn-magenta:hover,
	.btn-magenta:focus,
	.btn-magenta:active {
	    color: #fff;
	    background-color: rgba(255,0,255,0.7);
	}
	
	