/* ******* DRAWER ******** */
.drawer {
	display: block;
	position: absolute;
	top: 150px;
	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: #dadada;
		background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2RhZGFkYSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmMmYyZjIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
		background: -webkit-linear-gradient(left, #dadada, #f2f2f2);
		background: -moz-linear-gradient(left, #dadada, #f2f2f2);
		background: linear-gradient(left, #dadada, #f2f2f2);
		border-left: 1px solid #8e8e8e;
		-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: 20px;
		left: 10px;
		width: 20px;
		height: 69px;
		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/drawer/btn_show.png');
	}	
	.drawer .drawer-button.hide .drawer-icon {
		background-image: url('../images/drawer/btn_hide.png');
	}	
	.drawer .drawer-content {
		padding: 20px;
		margin-right: 41px;
	}		
		.drawer .drawer-title {
			margin: 0px 0px 10px;
			padding: 0px 0px 9px;
			font-size: 18px;
			line-height: 18px;
			font-weight: normal;
			color: #a9b52b;
			border-bottom: 1px dashed #d9d9d9;
			font-family: Tahoma, helvetica, sans-serif;
		}
		.drawer .drawer-text {
			font-weight: normal;
			color: #5b5f65;
		}
		.drawer .drawer-text:hover,
		.drawer .drawer-text:active {
			color: #a12828;
			text-decoration: none;
		}

.drawer.bottom-right{
	position: fixed;
	left: auto;
	right: -380px;
	top: auto;
	bottom: 5px;
	border-radius: 0px 0px 0px 0px;
}
	.drawer.bottom-right .drawer-button{
		left: 0px;
		right: auto;
		border-radius: 0px 0px 0px 0px;
		background-color: transparent;
	}
	.drawer.bottom-right .drawer-content{
		margin-right: 0px;
		margin-left: 41px;
	}
	.drawer.bottom-right.out{
		left: auto;
		right: 0px;
	}