/* Slidorion Stylesheet */
.slidorion {
	position: relative;
	width: 574px;			/* Set to slidorion width. Is equal to .slider + .accordion width */
	height: 250px;			/* Set to slidorion height. Is equal to .slider and .accordion height */
	float: left;
}


.slider {
	width: 74%;
	height: 100%;
	position: relative;
	float: right;
	overflow: hidden;		/* Hides the animations */
}

.slider .slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.accordion {
	width: 26%;
	height: 100%;
	font-family: Verdana;
	position: absolute;
	top: 0;
	left: 0;
	z-index:999;
	overflow: hidden;
	float: left;
}

.accordion .header {
	padding: 12px 10px;/*change this for the side links */
	line-height: 14px;
	font-size: 10px;
	font-weight: bold;
	color: #FFFFFF;
	background: #4E1D0C;
	border-top: 1px solid #999999;
}

.accordion .header:first-child {
	border-top: none;
}

.accordion .header:hover, .accordion .header.active {
	background:  #000000;
	cursor: pointer;
}

.accordion .content {
	font-weight: normal;
	font-size: 10px;
	margin: 0;
	padding: 0 10px 0 10px;
	border: none;
	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:auto;
}
.accordion .content a {
	color: #891010;	
	font-weight: bold;
}
.accordion .content a:hover, .accordion .content a:active {
	color: #000000;	
}

.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;
}