/* ******* DRAWER ******** */
.drawer {
	display: block;
	position: absolute;
	/*top: 150px;*/
	top: 140px;
	left: -380px;
	-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, .5);
	-moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, .5);
	box-shadow: 0px 0px 10px rgba(0, 0, 0, .5);
	-webkit-border-radius: 0px 5px 5px 0px;
	-moz-border-radius: 0px 5px 5px 0px;
	border-radius: 0px 5px 5px 0px;
	font-family: Tahoma, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 16px;
	background: white;
	width: 420px;
	min-height: 90px;
	-webkit-transition: left .5s;
	-moz-transition: left .5s;
	transition: left .5s;
}			
.drawer.out {
	left: 0px;
}
	.drawer .drawer-button {
		display: block;
		position: absolute;
		top: 0px;
		right: 0px;
		height: 100%;
		width: 40px;
		background-color: #7faee4;
/*		background: -webkit-linear-gradient(left, #7faee4, #f2f2f2);
		background: -moz-linear-gradient(left, #dadada, #f2f2f2);
		background: linear-gradient(left, #dadada, #f2f2f2);*/
		-webkit-border-radius: 0px 5px 5px 0px;
		-moz-border-radius: 0px 5px 5px 0px;
		border-radius: 0px 5px 5px 0px;
		text-indent: -10000px;
	}
	.drawer .drawer-button.show {
		display: block;
	}
	.drawer .drawer-button.hide {
		display: none;
	}
	.drawer.out .drawer-button.show {
		display: none;
	}
	.drawer.out .drawer-button.hide {
		display: block;
	}
	.drawer .drawer-button .drawer-icon {
		content: "";
		display: block;
		position: absolute;
		top: 30px;
		left: 10px;
		width: 20px;
		height: 70px;
		background-position: 0px 0px;
		background-repeat: no-repeat;
	}
	.drawer .drawer-button:hover .drawer-icon,
	.drawer .drawer-button:active .drawer-icon {
		background-position: 0px -70px;
	}
	.drawer .drawer-button.show .drawer-icon {
		background-image: url('../images/btn_show.png');
	}	
	.drawer .drawer-button.hide .drawer-icon {
		background-image: url('../images/btn_hide.png');
	}	
	.drawer .drawer-content {
		padding: 20px;
		margin-right: 41px;
	}		
	.drawer .drawer-content:after {
		content: "";
		display: block;
		clear: right;
	}
		.drawer .drawer-image {
			display: block;
			float: right;
		}
		.drawer .drawer-title {
			margin: 0px 120px 10px 0px;
			padding: 0px 0px 9px;
			font-size: 18px;
			line-height: 18px;
			font-weight: normal;
			color: #48649f;
			border-bottom: 1px solid #d9d9d9;
			font-family: 'Source Sans Pro', sans-serif;
			font-weight: 700;
		}
		.drawer .drawer-text {
			display: block;
			font-weight: normal;
			color: #48649f;
			margin-right: 120px;
		}
		.drawer .drawer-text:hover,
		.drawer .drawer-text:active {
			color: #a12828;
			font-weight: 400;
		}		