/**
 * ----------------------------------------------------------------------------
 * toggleElements.css - Stylesheet for jQuery-Plugin toggleElements
 * ----------------------------------------------------------------------------
 */

/* Screen ------------------------------------------------------------------- */

@media projection, screen {

	/* Toggler - default style */
	a.toggler {
		text-decoration:none;
		color:#005399;
		font: bold 9pt  Arial;
		padding: 2px 0 0 40px;
		width:auto;
		background-position: 0 0 !important; 
		float: left; 
		clear: both;
		position: relative;		
	}
	a.toggler img {
		position: absolute; 
		left: 150px; top: -34px;
	}
	.toggler {
	   	margin:0;
	   	padding:0;
		cursor:pointer;
		text-decoration: none;
		font-size: 9pt;
		font-weight:bold;
		line-height:21px;
		display: block;
	}
	.toggler-closed {
		color:#333;
		margin: 10px 0 0 0;
		padding: 0 0 0 40px;
		height:21px;
		background: url('/img/accordion-more.gif') 10px center no-repeat;
	}
	.toggler-closed:hover {
		color:#333;
		padding: 2px 0 0 40px;
		height:21px;
		background: url('/img/accordion-more.gif') 10px center no-repeat;
		text-decoration:underline;
	}
	.toggler-opened {
		color:#333;
		margin: 10px 0 0 0;
		padding: 2px 0 0 40px;
		height:21px;
		background: url('/img/accordion-less.gif') 10px center no-repeat;
	}
	.toggler-opened:hover {
		color:#333;
		padding: 2px 0 0 40px;
		height:21px;
		background:  url('/img/accordion-less.gif') 10px center no-repeat;
	}

	/* Container - default style */
	
	.toggler-c {
		float: left;
	}
	
	.toggler-c p {
		margin:0 0 15px 0;
		padding:0 20px 0 30px;
		font: normal 10pt Arial;
		line-height: 13pt !important;
	}
	.toggler-c-closed {
	   background:none;
	   margin:0;
	   padding: 0 10px;
	   width:650px;
	}
	.toggler-c-opened {
	   margin:0;
	   padding: 0 10px;
	   background:none;
	   width:650px;	
	}

}

/* Print -------------------------------------------------------------------- */
@media print {

	.toggler-c { margin-bottom:25px; }
	.toggler { display: none; }

}

