/*
 * @version		$Id: accordion.css 1 2013-03-21 styleware $
 * @package		SW Tabs Pro for K2
 * @author		JStyleWare http://styleware.eu
 * @copyright	Copyright (c) 2010 - 2013 StyleWare  All rights reserved.
 * @license		GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

.accordion {
	margin: 0px;
	position:relative;
}
.accordion dd,
.accordion dt {
	border: 1px solid #dfddde;
	border-bottom:0;
	overflow: hidden;
}
.accordion dd:last-of-type,
.accordion dt:last-of-type {
	border-bottom: 1px solid #dfddde;
}
.accordion dt {
	background: #fcfcfc; /* Old browsers */
	background: -moz-linear-gradient(top,  #fcfcfc 0%, #e8e8e8 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fcfcfc), color-stop(100%,#e8e8e8)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #fcfcfc 0%,#e8e8e8 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #fcfcfc 0%,#e8e8e8 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #fcfcfc 0%,#e8e8e8 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #fcfcfc 0%,#e8e8e8 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfcfc', endColorstr='#e8e8e8',GradientType=0 ); /* IE6-9 */
}
.accordion dt a {
	display: block;
	font-weight: bold;
	color: #214C7F;
	text-shadow: 1px 1px 1px #fff;	
	padding: 8px 10px;
	background: url(../images/arrows.png) no-repeat 98% -26px;
	border: solid 1px #fff;
}
.accordion dt a.selected {
	background-position: 98% 14px;
}
.accordion dd {
	border-top: 0;
	font-size: 12px;
	padding: 10px 6px;
}
.accordion dd:last-of-type {
	border-top: 1px solid #fff;
	position: relative;
	top: -1px;
}
.accordion div.itemExtraFields,
.accordion div.itemAttachmentsBlock {
	border-top: none;
	border-bottom: none;
	margin: 0;
	padding: 0;
}
.accordion div.itemRelated, 
.accordion div.itemAuthorLatest {
	margin: 0;
	width: 100%;
}
.column .accordion dd {
	margin-left: 0;
}
  