body {
	background: #f1f1f1;
}

#sidebarContainer {
	width: 628px;
	position: fixed;
	z-index: 1;
	height: 100%;
	max-height: 100%;
	top: 0px;
	right: -608px; 
	/*right: 0px;*/ /* Opened by default - useful for testing */
	float: left;
	overflow: hidden;
}

#sidebar {
	margin: auto;
	width: min(100%, 800px);
	height: 100%;
	background-color: #FFF;
	border-radius: 0px;
}

#sidebar { 
  position: relative;
  height: 100%;
  box-shadow: 0px 2px 2px #CCC;
}


#openSidebar {
	box-shadow: rgba(0, 0, 0, 0.298039) 0px 1px 4px -1px;
	border-bottom-left-radius: 0px;
	border-top-left-radius: 0px;
}

#openSidebar, #closeSidebar {
	margin-top: 10px;
	background: #FFF;
	float: left;
	width: 20px;
	text-align: center;
	line-height: 46px;
	height: 46px;
	border-radius: 1px;
	color: #AAA;
}

#closeSidebar {
	box-shadow: rgba(0, 0, 0, 0.298039) 0px 1px 4px -1px;
	border-bottom-left-radius: 0px;
	border-top-left-radius: 0px;
	display: none;
}

#sidebarContent {
	padding: 20px;
	overflow: hidden;
	height: 100%;
}

#sidebarMessage {
	background: #63C27E;	
	color: #FFF;
	text-shadow: 2px 2px #000;
	padding: 30px 0 30px 0;
	font-size: 80px;
	width: 100%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	text-align: center;
	display: none;
}

#sidebarContent h1 {
	padding: 0px;
	padding-left: 20px;
	margin: 0px;
	padding-bottom: 40px;
	padding-top: 40px;
	margin-left: -20px;
	margin-right: -20px;
	margin-top: -20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #F0F0F0; 
	background: #019267;
	color: #FFF;
}

#openSidebar:hover, #closeSidebar:hover {
	cursor: pointer;
}