/**
 * ----------------------------------------------------------------------------
 * toggleElements.css - Stylesheet for jQuery-Plugin toggleElements
 * ----------------------------------------------------------------------------
 */

/* Screen ------------------------------------------------------------------- */

@media projection, screen {

	/* Toggler - default style 
	
	 margin:25px 0 25px 0;
	line-height:30px;padding-left:20px;
	*/
	.toggler {
	  	margin:0;
		cursor:pointer;
		text-decoration: none;
		font-size: 1em;
		font-weight:bold;
		line-height:20px;
		display: block;
	}
	.toggler-closed {
		color:#333;
		
		height:30px;
		background: #cccccc url('images/togglerc.gif') center right no-repeat;
		border: solid 1px #000;
	}
	.toggler-closed:hover {
		color: #000;
		
		height:30px;
		background: #cccccc url('images/togglerch.gif') center right no-repeat;
		border: solid 1px #000;
	}
	.toggler-opened {
		color:#333;
		
		height:30px;
		background: #ccccccc url('images/togglero.gif') center right no-repeat;
		border: solid 1px #000;
	}
	.toggler-opened:hover {
		color: #000;
	
		height:30px;
		background: #cccccc url('images/toggleroh.gif') center right no-repeat;
		border: solid 1px #000;
	}

	/* Container - default style
	
	margin:-25px 0px 25px 0px;
	 */
	.toggler-c {
	}
	.toggler-c-closed {
	   background:transparent;
	   border:solid 1px #cdc1ab;
		margin:0;
	   padding:10px;
	}
	.toggler-c-opened {
		margin:0;
	   padding:10px;
	   background:#cccccc;
	   border:solid 1px #000;
	}

}

/* Print -------------------------------------------------------------------- */
@media print {

	.toggler-c { margin-bottom:25px; }
	.toggler { display: none; }

}
