/* Slidorion Stylesheet */
.slidorion {
	position: relative;
	width: auto;
	max-width:1100px;			/* Set to slidorion width. Is equal to .slider + .accordion width */
	height: 400px;			/* 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%;
}

.accordion {
	width:auto;
	max-width: 300px;
	height: 100%;
	font-family: Verdana;
	background: #eee;
	box-shadow: -3px 0px 3px -1px rgba(51,51,51,0.3);
	position: static;
	z-index:999;
	/*overflow: hidden;*/ /*no idea why must hidden, waikee just disabled it*/
	float: left;
}
@media only screen and (max-width: 1156px) {
	.slidorion {
	width: auto;
	height:380px;

}


.slidorion .slider .slide img {
	width:100%;
}
	.accordion {
		max-width: 100%;
		height: auto;
	}
}
@media only screen and (max-width: 720px) {
.slidorion {
	width: auto;
	height:180px;

}
	.accordion {
		max-width: 100%;
		height: auto;
	}
}
.accordion .header {
	padding: 8px 14px;
	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;
}

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

.accordion .header:hover {
	background: #EDEDED;
	cursor: pointer;
}

.accordion .header.active {
	border-bottom: none;
	background: #a40404 !important;
	color: #FFF;
}

.accordion .content {
	height: 115px;			/* This height needs to be changed as it depends on the accordion height and number of tabs */
	font-weight: normal;
	margin: 0;
	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%);
	overflow:hidden;
	padding-top: 5px;
	padding-right: 20px;
	padding-bottom: 5px;
	padding-left: 20px;
	
}

.accordion .content p {
	font-size: 14px;
	text-transform: capitalize;
	line-height:16px;
}

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

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

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