/* Slidorion Stylesheet */
#slidorion {
	width: 500px;			/* Set to slidorion width. Is equal to #slider + #accordion width */
	height: 400px;			/* Set to slidorion height. Is equal to #slider and #accordion height */
	position: relative;
	left: 0px;
	top:0px;
	margin:auto;
	/*margin-left: -384px;*/
	padding: 5px;
	background:  #000000;
	border: 1px solid #8B1A1A;
	border-radius:10px 10px 10px 10px;
	-moz-border-radius:10px 10px 10px 10px;
	-webkit-border-radius:10px 10px 10px 10px;
	-webkit-box-shadow: 0 0 34px #bbb;
	-moz-box-shadow: 0 0 34px #bbb;
	box-shadow: 0 0 34px #bbb;
}

#slider {
	width: 300px;			/* Set to slider width */
	height: 300px;			/* Set to slider height */
	position: relative;
	float: left;
	top:50px;
	overflow: hidden;		/* Hides the animations */
}

#slider > div {
	position:absolute;
	width:100%;
	height:100%;
}

#accordion {
	width: 190px;			/* Set to accordion width */
	height: 400px;			/* Set to image height */
	font-family: Verdana;
	background: #000;
	-webkit-box-shadow: -3px 0px 3px -1px rgba(51,51,51,0.3);
	-moz-box-shadow: -3px 0px 3px -1px rgba(51,51,51,0.3);
	box-shadow: -3px 0px 3px -1px rgba(51,51,51,0.3);
	position: relative;
	left:10px;
	z-index:999;
	overflow: hidden;
	float: left;
}

#accordion > .link-header {
	padding: 1px 5px;
	font-size: 12px;
	font-weight: bold;
	color: #ffff00;
	background: #8B1A1A;
	border-radius:5px 5px 5px 5px;
	-moz-border-radius:5px 5px 5px 5px;
	-webkit-border-radius:5px 5px 5px 5px;
	margin-bottom:3px;
}

#accordion > .link-header:first-child {
	border-top:none;
}

#accordion > .link-header:hover {
	background: #008000;
	cursor: pointer;
}

#accordion > .link-header.active {
	border-bottom: none;
	background:  #8B1A1A !important;
	filter: none;
	color: #00ff00;
	border-radius:5px 5px 0px 0px;
	-moz-border-radius:5px 5px 0px 0px;
	-webkit-border-radius:5px 5px 0px 0px;
}

#accordion > .link-content {
	height: 205px;			/* This height needs to be changed as it depends on the accordion height and number of tabs */
	font-weight: normal;
	font-size: 12px;
	line-height:13px;
	margin-bottom: 2px;
	padding: 0px;
	border: none;
	background: #000000;
	overflow:auto;
	color:#00ffff;
	border: 1px solid #8B1A1A;
	border-radius:0px 0px 5px 5px;
	-moz-border-radius:0px 0px 5px 5px;
	-webkit-border-radius:0px 0px 5px 5px;
}
