/*

Stylesheet for slidorion

 */
#slidorion {
	width: 100%;			/* Set to slidorion width. Is equal to #slider + #accordion width */
	height: 340px;			/* Set to slidorion height. Is equal to #slider and #accordion height */
	background: #FFF;

}

#slidorion a {
    color: #7a7a7a;
}
#slidorion .content a {
    color: #e70012;
}


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

.slider-image {
	position: relative;
}

#accordion {
	width: 225px;			/* Set to accordion width */
	height:320px;			/* Set to image height */
	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;
	z-index:999;
	float: left;
}

#accordion .header {
	height: 30px;
	color: #666;
	background: #e70012;
	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%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ededed', endColorstr='#dcdcdc',GradientType=0 );
	border: none;
	border-top: 1px solid #ccc;
}

#accordion .header a {
	background: none;
	padding: 5px 14px;
	text-decoration: none;
	font-weight: bold;
	font-size: 12px;
	display: block;
}

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

#accordion .header a.active {
	border-bottom: none;
	background-color: #e70012 !important;
	color: #fff;
}

#accordion .content {
	height: 80px;			/* This height needs to be changed as it depends on the accordion height and number of tabs */
	font-size: 12px;
	margin: 0;
    line-height: 20px;
	padding: 6px;
	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%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d6d6d6', endColorstr='#ffffff',GradientType=0 );
	overflow:auto;
}
#accordion .content p {
	margin: 0 0 6px;
}
