/* Slidorion Stylesheet */
.slidorion {
	position: relative;
	width: auto;
	height: 380px;			/* Set to slidorion height. Is equal to .slider and .accordion height */
	background: #CBCBCB;
	padding: 10px;
	border: 1px solid #BBB;
	box-shadow: 0 0 34px #bbb;
	margin: auto;
}

.slider {
	width:100%;
	max-width: 778px;
	height: 100%;
	position: relative;
	float: left;
	overflow: hidden;		/* Hides the animations */
}
.slider .slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.slider .slide img {
	width:100%;
}



.accordion {
	width: 300px;
	background: #eee;
	box-shadow: -3px 0px 3px -1px rgba(51,51,51,0.3);
	position: static;
	z-index:999;
	float: left;
}


.accordion .header {
	padding: 5px 30px;
	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%);
	border-top: 1px solid #ccc;
	font-size: 18px;
	cursor: pointer;
}

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

.accordion .header:hover, .accordion .header.active {
	background: #90c800 !important;
	color: #FFF;
}

.accordion .content {
	height: 272px;			/* This height needs to be changed as it depends on the accordion height and number of tabs */
	font-weight: normal;
	border: none;
	background: #FFF;
	overflow:auto;
	padding: 5px 30px;
}

.accordion .content p {
	font-size: 20px;
	line-height: 20px;
	color: #666;
}



@media only screen and (max-width: 800px) {
.slidorion {
	height: auto;
	overflow:auto;
}

.accordion {
	width:auto;
	}
.accordion .content {
	height: auto;	
	
}