.tool_sidebar {
	z-index: 9999;
	position: fixed;
	top: 0;
	text-align: left;
	font-family: Arial, sans-serif;
	font-size: 12px;
	border-right: 1px solid #888;
	-moz-box-shadow:    0px 0px 10px rgba(0, 0, 0, .5);
	-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, .5);
	box-shadow:         0px 0px 10px rgba(0, 0, 0, .5);
	right: 0;
	border-right-width: 0;
	border-left: 1px solid #888;
	margin-right: -250px;
	display: block;
	width: 250px;
	height: 100%;
}
.tool_sidebar-inner {
	position: relative;
	background-color: #ccc;
	background-image: -webkit-radial-gradient(
		rgba(0, 0, 0, 0.0) 20%,
		rgba(0, 0, 0, 0.2) 80%,
		rgba(0, 0, 0, 0.3) 100%
	);
	background-image: -moz-radial-gradient(
		rgba(0, 0, 0, 0.0) 20%,
		rgba(0, 0, 0, 0.2) 80%,
		rgba(0, 0, 0, 0.3) 100%
	);
	height: 100%;
}
.tool_sidebar-handle {
	position: absolute;
	top: 24px;
	width: 60px;
	height: 42px;
	overflow: hidden;
	background-color: #303539;
	background-image: -webkit-gradient(
		linear,
		center top,
		center bottom,
		color-stop(0.00, #6c6f74),
		color-stop(0.05, #4c4f54),
		color-stop(0.10, #3f4448),
		color-stop(0.45, #383d41),
		color-stop(0.50, #303539),
		color-stop(0.95, #33363b)
	);
	background-image: -moz-linear-gradient(
		center top,
		#6c6f74 0%,
		#4c4f54 5%,
		#3f4448 10%,
		#383d41 45%,
		#303539 50%,
		#33363b 95%
	);
	cursor: pointer;

	-moz-box-shadow:    0px 0px 10px rgba(0, 0, 0, .5);
	-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, .5);
	box-shadow:         0px 0px 10px rgba(0, 0, 0, .5);

	left: -47px;
	border-top-right-radius:            0px;
	border-bottom-right-radius:         0px;
	-moz-border-radius-topright:        0px;
	-moz-border-radius-bottomright:     0px;
	-webkit-border-top-right-radius:    0px;
	-webkit-border-bottom-right-radius: 0px;

	border-top-left-radius:             5px;
	border-bottom-left-radius:          5px;
	-moz-border-radius-topleft:         5px;
	-moz-border-radius-bottomleft:      5px;
	-webkit-border-top-left-radius:     5px;
	-webkit-border-bottom-left-radius:  5px;
}
.tool_sidebar-handle-icon {
	display: block;
	position: absolute;
	top: 5px;
	background: url(images/addictive-32.png) no-repeat center center;
	width: 32px;
	height: 32px;
	opacity: 1;
	margin-left: 5px;
}
.tool_sidebar-toggled .tool_sidebar-handle-icon {
	background-image: url(images/arrow.png);
}
