/* Slidorion Stylesheet */
.slidorion {
	position: relative;
	width:100%;			/* Set to slidorion width. Is equal to .slider + .accordion width */
	height: 500px;			/* Set to slidorion height. Is equal to .slider and .accordion height */
	float:left;
	margin-bottom: 7px;
	background:#CCCCCC;
}

.slider {
	width: 68%;
	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: 32%;
	height: 100%;
	font-family: Verdana;
	background: #eee;
	position: relative;
	z-index:999;
	overflow: hidden;
	float: left;
}

@media screen and (max-width: 768px) {
	.accordion {
		width: 100%;
	}
}

.accordion .header {
	padding: 8px 14px;
	font-size:1em;
	font-family: 'Open Sans', sans-serif;
	color: #FFFFFF;
	background: url(../images/gridtwo_bottom_right_text.png);
	border-top: 1px solid #ccc;
}

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

.accordion .header:hover {
	cursor: pointer;
}

.accordion .header.active {
	border-bottom: none;
	background: url(../images/overlay1.png) !important;
	color: #FFF;
}

.accordion .content {
	height: 343px;			/* This height needs to be changed as it depends on the accordion height and number of tabs */
	font-weight: normal;
	font-size: 12px;
	line-height: 20px;
	margin: 0;
	padding: 16px;
	border: none;
	overflow:auto;
}

.accordion .content p {
	margin-bottom: 10px;
}

.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;
}