/**
 * ----------------------------------------------------------------------------
 * toggleElements.css - Stylesheet for jQuery-Plugin toggleElements
 * ----------------------------------------------------------------------------
 */

/* Screen ------------------------------------------------------------------- */

@media projection, screen {

/* Toggler - default style */

.toggler {
	margin: 0;
	padding: 0 0 0 40px;
	cursor: pointer;
	text-decoration: none;
	display: block;
}

.toggler-closed {
	color: #33446d;
	font: 14px/17px "Trebuchet MS", Helvetica, Arial, Verdana, "Sans Serif";
	margin-top: 0px;
	margin-left: 15px;
	margin-bottom: 10px;
	padding: 3px 0 1px 34px;
	background: url(images/togglearrow2.jpg) no-repeat left 5px;
}

.toggler-closed:hover {
	color: #33446d;
	font: 14px/17px "Trebuchet MS", Helvetica, Arial, Verdana, "Sans Serif";
	margin-top: 0px;
	margin-left: 15px;
	margin-bottom: 10px;
	text-decoration: underline;
	padding: 3px 0 1px 34px;
	background: url(images/togglearrow2.jpg) no-repeat left 5px;
}

.toggler-opened {
	color: #33446d;
	font: 14px/17px "Trebuchet MS", Helvetica, Arial, Verdana, "Sans Serif";
	margin-top: 0px;
	margin-left: 15px;
	margin-bottom: 10px;
	padding: 3px 0 1px 34px;
	background: url(images/togglearrowup2.jpg) no-repeat left 5px;
}

.toggler-opened:hover {
	color: #33446d;
	font: 14px/17px "Trebuchet MS", Helvetica, Arial, Verdana, "Sans Serif";
	margin-top: 0px;
	margin-left: 15px;
	margin-bottom: 0px;
	text-decoration: underline;
	margin-bottom: 10px;
	padding: 3px 0 1px 34px;	
	background: url(images/togglearrowup2.jpg) no-repeat left 5px;
}

/* Container - default style */

.toggler-c {
	
}

.toggler-c-closed {
	background: transparent;
	margin: 0;
	padding: 0px 0px 0px 0px;
}

.toggler-c-opened {
	margin: 0;
	padding: 0;
}

}

/* Print ---------------------------------------------------------

----------- */

@media print {

.toggler-c {
	margin-bottom: 25px;
}

.toggler {
	display: none;
}

}