/**
 * ----------------------------------------------------------------------------
 * toggleElements.css - Stylesheet for jQuery-Plugin toggleElements
 * ----------------------------------------------------------------------------
 */

/* Screen ------------------------------------------------------------------- */

@media projection, screen {

	/* Toggler - default style */
	.toggler {
	  width: 530px;
		margin-top: 10px;
	  margin-bottom: 10px;
		cursor:pointer;
		text-decoration: none;
		font-size: 10pt;
		font-weight:bold;
		line-height:20px;
		display: block;
	}
	.toggler-closed {
		color:#fff;
		padding-left:20px;
		height:20px;
		background: #7d0000;
		border: solid 1px #7d0000;
		background-image: url(../gx/left.gif);
		background-position: 530px 3px;
		background-repeat: no-repeat;
	}
	.toggler-closed:hover {
		color: #fff;
		padding-left:20px;
		height:20px;
		background: #7d0000;
		border: solid 1px #7d0000;
		background-image: url(../gx/left.gif);
		background-position: 530px 3px;
		background-repeat: no-repeat;
	}
	.toggler-opened {
		color:#7d0000;
		padding-left:20px;
		height:20px;
		background: #fff;
		border: solid 1px #5f5d5e;
		background-image: url(../gx/down.gif);
		background-position: 530px 3px;
		background-repeat: no-repeat;
	}
	.toggler-opened:hover {
		color: #7d0000;
		padding-left:20px;
		height:20px;
		background: #fff;
		border: solid 1px #5f5d5e;
		background-image: url(../gx/down.gif);
		background-position: 530px 3px;
		background-repeat: no-repeat;
	}

	/* Container - default style */
	.toggler-c {
	}
	.toggler-c-closed {
	  width: 510px;
	  background: transparent;
	  border:solid 1px #5f5d5e;
		margin-top: -11px;
		margin-bottom: 10px;
	  padding:20px;
	}
	.toggler-c-opened {
	  width: 510px;
		margin-top: -11px;
		margin-bottom: 10px;
	  padding:20px;
	  background:#ffffff;
	  border:solid 1px #5f5d5e;
	}

}

/* Print -------------------------------------------------------------------- */
@media print {

	.toggler-c { margin-bottom:25px; }
	.toggler { display: none; }

}

