/**This is a CSS file and it’s called the switch. What does it do? It’s a switch for the front page announcements for future events with the Limerick Radio Club. Instructions to turn it on are changing the values display: block; and to turn it off is display: none;**/

/*******************
DESKTOP SWITCH
*******************/
#switch {
	display: none /** Change the values to block or none **/;

/** DO NOT EDIT BEYOND THIS LINE OR ELSE!**/
	width: 940px;
	float: left;
	margin: 16px 10px 0 10px;
	box-shadow: 3px 3px 3px #454545;
}
#switch a {
	display: block;
	padding: 10px;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
	text-decoration: none;
	color: #FFF;
	background-color: #000E6D;
}
#switch a:hover{
	color: #FFF;
	text-decoration: none;
	background-color: #0070DF;
}
#switch a:active {
	background-color: #F00;
}
/*******************
MOBILE SWITCH
*******************/
@media only screen and (min-width : 150px) and (max-width : 768px)
{
#switch {
	width: 96%;
	margin: 2% 2% 0 2%;
}
/*******************
MOBILE END
*******************/
}