/* Extra div to handle some IE scenarios with absolute positioning. */
#sliding-panel-container {
	position: relative;
	/*display: table;*/
	z-index: 999;
	width: 100%;
	height: 5px;
	}

/* Sliding panel. */
#sliding-panel {
	position: absolute;
	top: 0;
	z-index: 999;
	width: 100%;
	margin: 0 auto;
	text-align: center;
	}

/* The part of the panel that actually slides. */
#sliding-panel .panel {
	overflow: hidden;
	display: none;
	position: relative;
	z-index: 10;
	width: 100%;
	height: 180px;
	background: #444444;
	}

/* Widget container. */
#sliding-panel .panel-content {
	overflow: hidden;
	width: 960px;
	height: 150px;
	margin: 15px auto;
	padding: 0;
	text-align: left;
	border-left: 1px solid #333;
	}

/* Sliding panel widgets. */
#sliding-panel .widget {
	overflow: hidden;
	float: left;
	width: 286px;
	height: 150px;
	margin: 0;
	padding: 0 15px;
	font: normal normal normal 14px/21px Georgia, Times, 'Times New Roman', serif !important;
	color: #dfdfdf;
	background: transparent;
	border: none;
	border-right: 1px solid #333;
	}
	
#sliding-panel .widget h3 {	
	color: #efefef;
}


#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: #999;
	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 {
	margin: 0;
	padding: 0;
	background: transparent;
	border: none;
	}

/* Sliding panel widget links. */
#sliding-panel .widget a {
	color: #eee;
	text-decoration: none;
	}
#sliding-panel .widget a:hover {
	text-decoration: underline;
	}

/* Toggle div wrapper. */
#sliding-panel .tab {
	position: relative;
	top: 0;
	z-index: 9999;
	height: 37px;
	border-top: 4px solid #500b37;
	}

/* Wrapper for the open/close button. */
#sliding-panel .tab .toggle {
  	clear: both;
	display: block;
	position: relative;
	width: 960px;
	height: 35px;
	line-height: 28px;
	margin: 0 auto;
	}

/* Open/close link. */
#sliding-panel .tab a {
	display: block;
	float: right;
	position: relative;
	width: auto;
	height: 34px;
	margin: 0;
	padding: 0 15px;
	color: #fff;
	text-align: center;
background: rgb(80,11,55); /* Old browsers */
background: -moz-linear-gradient(top, rgba(80,11,55,1) 0%, rgba(132,0,81,1) 80%, rgba(133,15,89,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(80,11,55,1)), color-stop(80%,rgba(132,0,81,1)), color-stop(100%,rgba(133,15,89,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(80,11,55,1) 0%,rgba(132,0,81,1) 80%,rgba(133,15,89,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(80,11,55,1) 0%,rgba(132,0,81,1) 80%,rgba(133,15,89,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(80,11,55,1) 0%,rgba(132,0,81,1) 80%,rgba(133,15,89,1) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(80,11,55,1) 0%,rgba(132,0,81,1) 80%,rgba(133,15,89,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#500b37', endColorstr='#850f59',GradientType=0 ); /* IE6-9 */
-webkit-border-bottom-right-radius: 4px;
-webkit-border-bottom-left-radius: 4px;
-moz-border-radius-bottomright: 4px;
-moz-border-radius-bottomleft: 4px;
border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px;
	/*background-image: url(/wp-content/themes/ILH/images/top-tab.png);*/
	}

/* Open link. */
#sliding-panel .tab a.open {
	min-width:194px;
	}

/* Close link. */
#sliding-panel .tab a.close {
	}

/* Open/close link hover. */
#sliding-panel .tab a:hover {
	cursor: pointer;
	text-decoration: underline;
	}

/* Open/close link array (&urarr;). */
#sliding-panel .tab a .arrow {
	font-style: normal;
	}