/**
 * ----------------------------------------------------------------------------
 * toggleElements.css - Stylesheet for jQuery-Plugin toggleElements
 * ----------------------------------------------------------------------------
 */

/* Screen ------------------------------------------------------------------- */

@media projection, screen {

	/* Toggler - default style */
	#content .toggler {
	  margin: 2px 0 2px 0;
		cursor: pointer;
		text-decoration: none;
		line-height: 18px;
		display: block;
		font-weight: bold;
	}
	#content .toggler-closed {
		padding-left: 20px;
		height: 18px;
		color: #222222;
		background: #eeeeee url('togglerc.gif') center left no-repeat;
	}
	#content .toggler-closed:hover {
		color: #222222;
		padding-left: 20px;
		height: 18px;
		background: #eeeeee url('togglerch.gif') center left no-repeat;
	}
	#content .toggler-opened {
		color: #222222;
		padding-left: 20px;
		height: 18px;
		background: #dddddd url('togglero.gif') center left no-repeat;
	}
	#content .toggler-opened:hover {
		color: #222222;
		padding-left: 20px;
		height: 18px;
		background: #dddddd url('toggleroh.gif') center left no-repeat;
	}

	/* Container - default style */
	#content .toggler-c {
	}
	#content .toggler-c-closed {
	  background: transparent;
	  /* border: solid 1px #e3e3e3; */
		/* margin: -5px 0px 5px 0px; */
	  /* padding: 20px; */
		margin-top: -3px;
	}
	#content .toggler-c-opened {
		/* margin: -5px 0px 5px 0px; */
	  /* padding: 20px; */
	  /* background: #efefef; */
	  /* border: solid 1px #fff; */
		margin-top: -3px
	}

}

/* Print -------------------------------------------------------------------- */
@media print {

	.toggler-c { margin-bottom:25px; }
	.toggler { display: none; }

}

