/* Toggle CSS */
.toggle-container {
	width: 100%;
	height: auto;
	margin:0 auto;
	background: transparent;
}

/* Main toggle */
.toggle { 
	font-size: 12px;
	line-height:18px;
	font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
	background-color: #ffffff;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff),to(#eef1f1));
	background-image: -webkit-linear-gradient(top, #ffffff, #eef1f1);
	background-image: -moz-linear-gradient(top, #ffffff, #eef1f1);
	background-image: -o-linear-gradient(top, #ffffff, #eef1f1);
	background-image: -ms-linear-gradient(top, #ffffff, #eef1f1);
	background-image: linear-gradient(top, #ffffff, #eef1f1);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#ffffff', EndColorStr='#eef1f1');
	margin-bottom: 10px;
	border: 1px solid #e5e5e5;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
	        border-radius: 5px;	
	width: auto;
}


/* Toggle Link text */
.toggle a.toggle-trigger {
	display:block;
	padding: 10px 20px 10px 20px;
	position:relative;
	text-decoration: none;
	color: #0586C9;
	width: auto;
	cursor: pointer;
}


/* Toggle Link hover state */
.toggle a.toggle-trigger:hover {
	opacity: .8;
	text-decoration: none;
	background:/*#0586C9*/darkgreen;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;	
	color: #ffffff;
}

/* Toggle link when clicked */
.toggle a.active {
	text-decoration: none;
	border-bottom: 1px solid #e5e5e5;
	-webkit-box-shadow: 0 8px 6px -6px #ccc;
	   -moz-box-shadow: 0 8px 6px -6px #ccc;
	        box-shadow: 0 8px 6px -6px #ccc;
	color: #000;
}

/* Lets add a "+" before the link */
.toggle a.toggle-trigger:before {
	content: url(../images/dok_down.png);
	margin-right: 10px;
	font-size: 12px;	
}


/* When the toggle is active, change the "+" to a "-" */
.toggle a.active.toggle-trigger:before {
	content: url(../images/dok_up.png);
	color:orange;
	font-size: 12px;
	font-weight: 900;
}

/* The content of the toggle */
.toggle .toggle-content {
	padding: 10px 20px 15px 20px;
	font-size: 12px;
	background:transparent;
	color:#0586C9;
}