/**
 * ----------------------------------------------------------------------------
 * toggleElements.css - Stylesheet for jQuery-Plugin toggleElements
 * ----------------------------------------------------------------------------
 */

/* Screen ------------------------------------------------------------------- */

@media projection, screen {

	/* Toggler - default style */
	.toggler {
	cursor:pointer;
	text-decoration: none;
	font-size: 12px;
	font-weight:bold;
	line-height:20px;
	display: block;
	margin-top: 0px;
	margin-right: 0;
	margin-bottom: 10px;
	margin-left: 0;

	}
	.toggler-closed {
		color:#5B690D;
		font-size:14px;
		padding-left:20px;
		height:20px;
		background:  url(/images/plus.gif) center left no-repeat;
		 
	}
	.toggler-closed:hover {
				color:#5B690D;

		
		height:20px;
		background: url(/images/plus.gif) center left no-repeat;
		 
	}
	.toggler-opened {
				color:#5B690D;
				padding-left:20px;
		font-size:14px;
		height:20px;
		background:  url(/images/minus.gif) center left no-repeat;
		 
	}
	.toggler-opened:hover {
		color:#5B690D;
		
		height:20px;
		background:  url(/images/minus.gif) center left no-repeat;
		 
	}

	/* Container - default style */
	.toggler-c {
	
	}
	.toggler-c-closed {
	   background:transparent;
	 
		margin:-10px 0px 3px 20px;
	   padding:0px;
	  
	}
	.toggler-c-opened {
		margin:-10px 0px 10px 20px;
	   padding:0px;
	   
	  
	   
	}

}

/* Print -------------------------------------------------------------------- */
@media print {

	.toggler-c { margin-bottom:25px; }
	.toggler { display: none; }

}
