.Hide{display:none}
.Show{
	z-index:10;

	
	position: relative;

  /* make things invisible upon start */
  
	-webkit-animation:fade-in ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
	-moz-animation:fade-in ease-in 1;
	animation:fade-in ease-in 1;
	
	-webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
	-moz-animation-fill-mode:forwards;
	animation-fill-mode:forwards;
	
	-webkit-animation-duration:.2s;
	-moz-animation-duration:.2s;
	animation-duration:.2s;
	background-color:#333;
  
  




	
	}
	
	/* Content */
	.paper ol{margin-left:25px;}
	
	
	/*   MNG     */
.cd-panel-container {
	z-index:10;
	  position:fixed;
	  width: 99%;
	  height: 99%;
	  top: 0;
	  box-shadow: 1px 1px 35px #111;
	  overflow:visible;

}

#manage iframe{
	background:none;

	border: 0px;
	width:100%;
	height:99%;
	
	
	}
	
	.m-head{
	  padding:5px;
	  padding-top:15px;
	  background-color: #333;
	  height:30px;
	  vertical-align:middle;
	  position:relative;
	
}









.m-head span{
float:right;
background-color:#E00; 
margin:0; 
padding:1px 6px;
color:#FFF; 
margin-top:-10px; 
text-align:center; 
cursor:pointer;
border-radius:10px;

}
	
	
.admin-tool-btn	{width:200px;  clear:both; padding:10px;  display:block; background-color:#444; color:#FFF; border:solid 1px #888;margin-right:2px; }
