/* Slidorion Stylesheet */
#slidorion {
	width: 937px;			/* Set to slidorion width. Is equal to #slider + #accordion width */
	height: 548px;			/* Set to slidorion height. Is equal to #slider and #accordion height */
	float: left;
	margin-bottom:8px;
	-webkit-box-shadow: 0 0 34px #bbb;
	-moz-box-shadow: 0 0 34px #bbb;
	box-shadow: 0 0 34px #bbb;
}

#slider {
	width: 937px;			/* Set to slider width */
	height: 548px;			/* Set to slider height */
	position: relative;
	float: left;
	overflow: hidden;		/* Hides the animations */
	cursor:pointer;
}

#slider > div {
	position:absolute;
	width:100%;
	height:100%;
}

#accordion {
	width: 300px;			/* Set to accordion width */
	height: auto;			/* Set to image height */
	font-family: Verdana;
	position: absolute;
	z-index:99;
	overflow: hidden;
	float: left;
	margin-left:644px;
	*margin-left:-293px;
	margin-top:43px;
}

#accordion > .link-header {
	font-size: 20px;
	padding-top:20px;
	padding-left:15px;
	font-weight: bold;
	color: #0a78ba;
	background-color:#ffffff;
	border-top: 1px solid #ccc;
	height:71px;
	width:276px;
	margin:0;
	border:#aad5ea solid 1px;
	opacity:0.9;
	filter:alpha(opacity=90); /* For IE8 and earlier */
}

#accordion > .link-header p{
	font-size:14px;
	margin-top:10px;
	}


#accordion > .link-header:first-child {
	border-top:none;
}

#accordion > .link-header:hover {
	background: #2283bd;
	cursor: pointer;
	color:#FFFFFF;
}

#accordion > .link-header.active {
	background: #2283bd !important;
	color: #fff;
	text-decoration:none;
}

#accordion > .link-content {
	display:none!important;
	height: 257px;			/* This height needs to be changed as it depends on the accordion height and number of tabs */
	font-weight: normal;
	font-size: 13px;
	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;
}