<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Slidorion Stylesheet */
#slidorion {
	width: 758px;			/* Set to slidorion width. Is equal to #slider + #accordion width */
	height: 383px;			/* Set to slidorion height. Is equal to #slider and #accordion height */
	position:absolute;
	left: 50%;
	margin-left: -390px;
	padding: 10px;
	background: #cbcbcb;
	border: 1px solid #bbb;
	-webkit-box-shadow: 0 0 34px #bbb;
	-moz-box-shadow: 0 0 34px #bbb;
	box-shadow: 0 0 34px #bbb;
	z-index:2;
}

#slider {
	width: 488px;			/* Set to slider width */
	height: 383px;			/* Set to slider height */
	position: relative;
	float: right;
	overflow: hidden;		/* Hides the animations */
}

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

#accordion {
	width: 260px;			/* Set to accordion width */
	height: 403px;			/* Set to image height */
	font-family: Verdana;
	background: #eee;
	-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;
	z-index:999;
	overflow: hidden;
	float: left;
	margin-top:-10px;
	margin-left:-10px;
}

#accordion &gt; .link-header {
	padding: 8px 8px;
	font-size: 15px;
	font-weight: bold;
	color: #333;
	background: #ededed;
	background: -moz-linear-gradient(top, #ededed 59%, #dcdcdc 100%);
	background: -webkit-linear-gradient(top, #ededed 59%,#dcdcdc 100%);
	background: -o-linear-gradient(top, #ededed 59%,#dcdcdc 100%);
	background: -ms-linear-gradient(top, #ededed 59%,#dcdcdc 100%);
	background: linear-gradient(top, #ededed 59%,#dcdcdc 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ededed', endColorstr='#dcdcdc',GradientType=0 );
	border-top: 1px solid #ccc;
	direction:rtl;
	font-family:Arial;
	height:15px;
}

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

#accordion &gt; .link-header:hover {
	background: #ededed;
	cursor: pointer;
}

#accordion &gt; .link-header.active {
	border-bottom: none;
	background: #990404 !important; /*#676767 !important; */
	filter: none;
	color: #fff;
}

#accordion &gt; .link-content {
	/* height: 257px;			*/ /* This height needs to be changed as it depends on the accordion height and number of tabs */
	height:180px;
	font-weight: normal;
	font-size: 14px;
	font-family:Arial;
	line-height:20px;
	margin: 0;
	padding: 16px;
	border: none;
	background: #d6d6d6;
	background: -moz-linear-gradient(top, #d6d6d6 0%, #ffffff 10%);
	background: -webkit-linear-gradient(top, #d6d6d6 0%,#ffffff 10%);
	background: -o-linear-gradient(top, #d6d6d6 0%,#ffffff 10%);
	background: -ms-linear-gradient(top, #d6d6d6 0%,#ffffff 10%);
	background: linear-gradient(top, #d6d6d6 0%,#ffffff 10%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d6d6d6', endColorstr='#ffffff',GradientType=0 );
	overflow:auto;
	direction:rtl;
	text-align:justify;
}

#slidorion .nav {
    position: absolute;
    top: 130px;
    width: 128px;
    height: 67px;
    z-index: 9999;
	background: url('../img/arrow_both2.png') 0 0 no-repeat;
    cursor: pointer;
}

#slidorion .nav-left {
	left: 270px;
	background-position: 65px;
	opacity:0.2;
	filter:alpha(opacity=60); /* For IE8 and earlier */
}

#slidorion .nav-left:hover{
	border:2px solid transparent;
	opacity:0.9;
	filter:alpha(opacity=60); /* For IE8 and earlier */
}

#slidorion .nav-right {
	right: 0px;
	background-position: -65px;
	opacity:0.2;
	filter:alpha(opacity=60); /* For IE8 and earlier */
}

#slidorion .nav-right:hover{
	border:2px solid transparent;
	opacity:0.9;
	filter:alpha(opacity=60); /* For IE8 and earlier */
}</pre></body></html>