@charset "UTF-8";
/* CSS Document */
.menu {
	float: left;
    font-size: 20px;
	letter-spacing: 2px;
	z-index: 2000;
	width: 120px;
	height: 100%;
	min-height: 100%;
    margin-left: 20px;
	position: fixed;
    float: left;
}
.menu ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	font-family: "Courier New", Courier, monospace;
	
}
.menu li {
	display: block;
	float: none;
}
.menu a {
	display: block;
	width: 120px;
	height: 40px;
	line-height: 40px;
	border-radius: 0%;
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	margin: 2px;
	background-color: rgba(255,255,255,0.15);
	-ms-transform: scale(0.8, 0.8); /* IE 9 */
	-webkit-transform: scale(0.8, 0.8); /* Safari */
	transform: scale(0.8, 0.8); /* Standard syntax */
	color: #292929;
}

.menu li a:hover {
	-ms-transform: scale(0.85, 0.85); /* IE 9 */
	-webkit-transform: scale(0.85, 0.85); /* Safari */
	transform: scale(0.85, 0.85); 
	color: #000;
}
.selected {
	color: rgba(255,255,255,0.9) !important;
	display: block;
	width: 120px;
	height: 40px;
	border-radius: 0%;
	line-height: 40px;
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	margin: 2px;
	background-color: rgba(202,181,250,1);
	-ms-transform: scale(0.8, 0.8); /* IE 9 */
	-webkit-transform: scale(0.8, 0.8); /* Safari */
	transform: scale(0.8, 0.8); /* Standard syntax */
}

@media screen and (max-width: 1023px) {
.menu {
    font-size: 36px;
	letter-spacing: 2px;
	z-index: 2000;
	width: 200px;
	height: 100%;
	min-height: 100%;
    margin-left: -10px;
	position: fixed;
    float: left;
}
.menu ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	font-family: "Courier New", Courier, monospace;
	
}
.menu li {
	display: block;
	float: none;
}
.menu a {
	display: block;
	width: 100%;
	height: 40px;
	line-height: 40px;
	border-radius: 0%;
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	margin: 2px;
	background-color: rgba(255,255,255,0.5);
	-ms-transform: scale(0.8, 0.8); /* IE 9 */
	-webkit-transform: scale(0.8, 0.8); /* Safari */
	transform: scale(0.8, 0.8); /* Standard syntax */
	color: #292929;
}

.menu li a:hover {
	-ms-transform: scale(0.85, 0.85); /* IE 9 */
	-webkit-transform: scale(0.85, 0.85); /* Safari */
	transform: scale(0.85, 0.85); 
	color: #000;
}
.selected {
	color: rgba(255,255,255,0.9) !important;
	display: block;
	width: 100%;
	height: 40px;
	border-radius: 0%;
	line-height: 40px;
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	margin: 2px;
	background-color: rgba(202,181,250,1);
	-ms-transform: scale(0.8, 0.8); /* IE 9 */
	-webkit-transform: scale(0.8, 0.8); /* Safari */
	transform: scale(0.8, 0.8); /* Standard syntax */
}

}