*
{
	padding: 0;
	margin: 0;
}
body
{
	background: rgba(0,0,0,0.2);
	padding: 0;
	margin: 0;
	overflow: hidden;
	height: 100%;
	width: 100%;
}
.menuview 
{
	background: -moz-linear-gradient(left, rgba(0,0,0,1) 0%, rgba(97,97,97,1) 38%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, rgba(0,0,0,1) 0%,rgba(97,97,97,1) 38%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, rgba(0,0,0,1) 0%,rgba(97,97,97,1) 38%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 */
	height: 100%;
	width: 10%;
	padding: 5px;
}

.menuitem
{
	display: inline-block;
	background: rgba(255,255,255,0.2);
	margin-bottom: 5px;
	overflow: hidden;
	cursor: default;
	user-select: none;
	-webkit-user-select: none;
	padding: 1px;
	transition: all .5s ease-in-out;
	background: rgba(255,255,255,0);
	background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.65) 10%, rgba(255,255,255,1) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255,255,255,0)), color-stop(10%, rgba(255,255,255,0.65)), color-stop(100%, rgba(255,255,255,1)));
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.65) 10%, rgba(255,255,255,1) 100%);
	background: -o-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.65) 10%, rgba(255,255,255,1) 100%);
	background: -ms-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.65) 10%, rgba(255,255,255,1) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.65) 10%, rgba(255,255,255,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff', GradientType=1 );
	font-size: 150%;
	color: black;
}

.menuboxed
{
	max-width: 200px;
	max-height: 300px;
	min-width: 100px;
	min-height: 50px;
	word-wrap: break-word;
	text-align: center;
	border-radius: 5px;
}

.menuitem:hover
{
	padding-left: 20px;	
}

.menuitem_clickable
{
	cursor: pointer;
}

