/* Makeshift CSS Reset */  
{  
	margin: 0;  
	padding: 0;  
}  

/* Tell the browser to render HTML 5 elements as block */  
header, footer, aside, nav, article {  
	display: block;  
}  

html {
	height: 100%;
	margin: 0;
	padding: 0;
}

body {  
	margin: 0 auto;
	padding: 0;
	/*width: 940px;*/
	height: 90%;
	font: 13px/22px Arial, sans-serif;  
	background: #000000;  
}  

h2 {  
	font-size: 28px;  
	line-height: 44px;  
	padding: 22px 0;  
}  

h3 {  
	font-size: 18px;  
	line-height: 22px;  
	padding: 11px 0;  
}  

p {  
	padding-bottom: 22px;  
}

#content{
	display: table;
	height: 100%;
	width: 100%;
}

#mainContent {
	height: 100%;
	display: table-cell;
	width: 100%;
	padding-right: 22px;
}

aside {
	height: 100%;
	background: #CCCCCC;
	display: table-cell;
	width: 300px;
}

aside section {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	padding: 15px;
	width: 250px;
	background: #CCCCCC;
	
}

#desktop {
	/*display: table;*/
	margin-left: 15px;
	margin-top: 15px;
	margin-right: 300px;
	margin-bottom: 15px;
	padding: 44px;
	background: #CCCCCC;
	height: inherit;
	width: 900;
	height: 100%;
	border-radius: 15px;  
} 

#service {
	position: fixed;
	margin: 10px;
	padding: 10px;
	width: 800px;
	height: 600px;
	border-radius: 15px;
	background: #FFFF99;
	box-shadow: -15px 15px 20px #222222;
	-webkit-transform: scale(0.25);
	-moz-transform: scale(0.25);
	-o-transform: scale(0.25);
	-ms-transform: scale(0.25);
	-webkit-transition: all 2s ease;  
	-moz-transition: all 2s ease;  
	-o-transition: all 2s ease;   
    	-ms-transition: all 2s ease; 
	transition: all 2s ease; 
}

#service:hover {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
}