/* Slidorion Stylesheet */
#slidorion {
	width: 700px;			/* Set to slidorion width. Is equal to #slider + #accordion width */
	height: 250px;			/* Set to slidorion height. Is equal to #slider and #accordion height */
	position: absolute;
	margin-left: 55px;
	margin-top: 55px;
	margin-bottom:20px;
	padding: 10px;
	background: #d6d6d6;
	-webkit-box-shadow: 0 0 34px #000;
	-moz-box-shadow: 0 0 34px #000;
	box-shadow: 0 0 34px #000;
}

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

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

#accordion {
	width: 300px;			/* Set to accordion width */
	height: 250px;			/* Set to image height */
	font-family: 'PT Sans Narrow', sans-serif;
	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;
	overflow: hidden;
	float: left;
}

#accordion > .link-header {
	padding: 8px 14px;
	font-family: 'Contrail One', sans-serif;
	font-size: 14px;
	color: #111;
	background: #d6d6d6;
	border-top: 1px solid #000;
}

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

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

#accordion > .link-header.active {
	border-bottom: none;
	background: #151515 !important;
	filter: none;
	color: #fff;
}

#accordion > .link-content {
	height: 85px;			/* 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;
	text-align:justify;
	margin: 0;
	padding: 15px;
	border: none;
	background: #FFFFFF;
	overflow-Y: hidden;
}

#slidorion .nav {
    position: absolute;
    top: 200px;
    width: 16px;
    height: 27px;
    z-index: 9999;
    background: url url(../img/arrows.png) 0 0 no-repeat;
    cursor: pointer;
}

#slidorion .nav-left {
	left: 30px;
}

#slidorion .nav-right {
	right: 310px;
	background-position: -16px 0;
}
