@charset "utf-8";
/* CSS Document */

body, html
	{
	text-align:center;
	background-color:#CCC;
	margin:auto;
	width:100%;
	height:100%;
	overflow:hidden;
	}

.Menu
	{
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5;
	text-align:center;
	height:100%;
	width:150px;
	background:#999;
	position:absolute;
	right:-140px;
	top:0px;
	}

.Menu:hover
	{
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5;
	right:0px;
	display: block;
	}

.Menu:before
	{
	content:"";
	width: 0;
	height: 0;
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
	border-right: 10px solid #999;
	position:absolute;
	margin-top:-20px;
	right:150px;
	top:50%;
	}

.Application
	{
	vertical-align:middle;
	text-align:center;
	}

.Application img
	{
	margin:10px;
	}

a img
	{
	margin:10px;
	filter:alpha(opacity=75);
	opacity:0.75;
	}

a img:hover
	{
	filter:alpha(opacity=10);
	opacity:1;
	}
