/* Extra div to handle some IE scenarios with absolute positioning. */
#sliding-panel-container {
	position: absolute;
	display: table;
	z-index: 999;
	width: auto;
	}

/* Sliding panel. */
#sliding-panel {
	float: left;
	position: absolute;
	bottom: auto;
	z-index: 999;
	width: auto;
	text-align: center;
	margin-left: 30px;
	}

/* The part of the panel that actually slides. */
#sliding-panel .panel {
	overflow: hidden;
	float: left;
	display: none;
	position: relative;
	z-index: 10;
	width: 220px;
	height: auto;
	background: #000;
	opacity: 0.80;
	filter: alpha(opacity=80); zoom: 1; /* IE fix */
	}

/* Widget container. */
#sliding-panel .panel-content {
	overflow: hidden;
	width: auto;
	height: auto;
	margin: 10px auto;
	padding: 0;
	text-align: left;
	}

/* Sliding panel widgets. */
#sliding-panel .widget {
	overflow: hidden;
	float: left;
	width: 220px;
	height: auto;
	margin: 0;
	padding: 0 15px;
	font: bolder 14px/21px Arial, Helvetica, sans-serif !important;
	color: #888;
	background: transparent;
	border: none;
	border-right: 1px solid #333;
	}
#sliding-panel .widget-inside {
	margin: 0;
	padding: 0;
	background: transparent;
	border: none;
	}

/* Sliding panel widget titles. */
#sliding-panel .widget-title {
	margin: 0 0 5px 0;
	padding: 0;
	font: normal normal bold 18px/21px Arial, Verdana, sans-serif !important;
	color: #CCC;
	text-transform: none;
	background: transparent;
	border: none;
	}

/* Sliding panel widget lists. */
#sliding-panel .widget ul {
	margin: 0 0 10px 20px;
	list-style: square;
	}
#sliding-panel .widget ul li {
	padding: 0;
	background: transparent;
	border: none;
	}

/* Sliding panel widget links. */
#sliding-panel .widget a {
	font-style: italic;
	color: #eee;
	text-decoration: none;
	}
#sliding-panel .widget a:hover {
	color: #8A8A8A;
	}

/* Toggle div wrapper. */
#sliding-panel .tab {
	position: relative;
	top: 0;
	z-index: 9999;
	height: 37px;
	}

/* Wrapper for the open/close button. */
#sliding-panel .tab .toggle {
  	clear: both;
	display: block;
	position: relative;
	width: 960px;
	height: 35px;
	line-height: 35px;
	margin: 0 auto;
	}

/* Open/close link. */
#sliding-panel .tab a {
	display: block;
	float: left;
	position: relative;
	width: 80px;
	height: 35px;
	top: -1px;
	margin: 0;
	padding: 0;
	font: normal normal bold 26px/33px "Arial Black", Gadget, sans-serif;
	color: #fff;
 	text-align: center;
	}

/* Open link. */
#sliding-panel .tab a.open {
	opacity: 0.2;
	filter: alpha(opacity=20); zoom: 1; /* IE fix */
	}

/* Close link. */
#sliding-panel .tab a.close {
	background: #666;
	opacity: 0.8;
	filter: alpha(opacity=80); zoom: 1; /* IE fix */
	border: none;
	margin-top: 0;
	padding: 0;
	font-size: 1.0em;
	font-weight: normal;
	width: 60px;
	height: 30px;
	}

/* Open/close link hover. */
#sliding-panel .tab a:hover {
	cursor: pointer;
	text-decoration: none;
	color: #fff;
	opacity: 1;
	filter: alpha(opacity=100); zoom: 1; /* IE fix */
	}

/* Open/close link array (&urarr;). */
#sliding-panel .tab a .arrow {
	font-style: normal;
	}