.help
{
	z-index: 2500;
	
	width: 50px;
	height: 50px;
	
	background-color: rgba(239, 108, 0, 0.85) /*#EF6C00*/;
	
	background-color: #EF6C00;
	
	border-top-left-radius: 50px;
	
	box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.75);
	
	position: fixed;
	bottom: 0px;
	right: 0px;
	
	transition: all 0.4s ease-in-out;
}

.help:hover
{
	width: 75%;
	/*height: 65px;*/
	
	/*border-top-left-radius: 0px;*/
}

.help > .helpIcon
{
	z-index: 100;
	
	cursor: pointer;
	
	width: 100%;
	height: 100%;
	
	max-width: 50px;
	
	background-color: transparent;
	background-image: url(../images/body/help.png);
	background-size: 80% 80%;
	background-repeat: no-repeat;
	background-position: bottom right;
	
	position: absolute;
	
	top: 0px;
	left: 0px;
}

.help > .helpContent
{
	z-index: 50;
	
	width: 100%;
	height: 100%;
	
	background-color: transparent;
	
	box-sizing: border-box;
	
	padding-left: 50px;
	
	position: absolute;
	
	top: 0px;
	left: 0px;
}

.help > .helpContent > .realContent
{
	width: 100%;
	height: 100%;
	
	background-color: #E65100;
	
	box-sizing: border-box;
}