/**
 * ----------------------------------------------------------------------------
 * toggleElements.css - Stylesheet for jQuery-Plugin toggleElements
 * ----------------------------------------------------------------------------
 */

/* Screen ------------------------------------------------------------------- */

@media projection, screen {

	/* Toggler - default style */
	.toggler {
	   margin:2px 0 2px 0px;
		cursor:pointer;
		text-decoration: none;
		font-weight:bold;
		line-height:16px;
		display: block;
	}
	.toggler-closed {
		padding:2px 2px 2px 20px ;
		height:16px;
		background: #fff url('../images/tog_close.gif') 3px 3px no-repeat;
border-top:#CCCCCC 1px dotted;
	}
	.toggler-closed:hover {
		padding:2px 2px 2px 20px ;
		height:16px;
		background: #fff url('../images/tog_close_h.gif') 3px 3px no-repeat;
border-top:#CCCCCC 1px dotted;
		color:#ff0000;
		text-decoration:none;
	}
	.toggler-opened {
		padding:2px 2px 2px 20px ;
		height:16px;
		background:#fff url('../images/tog_open.gif') 3px 3px no-repeat;
		color:#cc0000;
border-top:#CCCCCC 1px dotted;
}
	.toggler-opened:hover {
		padding:2px 2px 2px 20px ;
		height:16px;
		background: #fff url('../images/tog_open_h.gif') 3px 3px no-repeat;
		color:#ff0000;
		text-decoration:none;
border-top:#CCCCCC 1px dotted;
}

	/* Container - default style */
.toggler-c{
}
	.toggler-c-closed {
	background:transparent;
	margin:-2px 0px 2px 0px;
	padding:5px 0px 5px 0px ;
			color:#cc0000;
}
	.toggler-c-opened {
	margin:-2px 0px 2px 0px;
	padding:5px 0px 5px 0px ;
			color:#cc0000;
}
}


/* Print -------------------------------------------------------------------- */
@media print {

	.toggler-c { margin-bottom:25px; }
	.toggler { display: none; }

}

