/**
 * ----------------------------------------------------------------------------
 * toggleElements.css - Stylesheet for jQuery-Plugin toggleElements
 * ----------------------------------------------------------------------------
 */

/* Screen ------------------------------------------------------------------- */

@media projection, screen {

	/* Toggler - default style */
	.toggler {
	   /*margin:25px 0 25px 0;*/
		cursor:pointer;
		font-size: 11px;
		/*font-weight:bold;*/
		line-height:14px;
		/*display: block;*/
	}
	.toggler-closed {
		font-family: Verdana, Arial, Helvetica, sans-serif;
		font-size: 11px;
		font-style: normal;
		line-height: 14px;
		font-variant: normal;
		color: #2A3743;
		text-decoration: underline;
						
	}
	.toggler-closed:hover {
		color: #5D3D54;
		font-family: Verdana, Arial, Helvetica, sans-serif;
		font-size: 11px;
		font-style: normal;
		line-height: 14px;
		font-variant: normal;
		
	}
	.toggler-opened {
		font-family: Verdana, Arial, Helvetica, sans-serif;
		font-size: 11px;
		font-style: normal;
		line-height: 14px;
		font-variant: normal;
		color: #2A3743;
		text-decoration: underline;
		
		
	}
	.toggler-opened:hover {
		color: #5D3D54;
		font-family: Verdana, Arial, Helvetica, sans-serif;
		font-size: 11px;
		font-style: normal;
		line-height: 14px;
		font-variant: normal;
		/*background: #fff url('toggleroh.gif') center right no-repeat;
		border: solid 1px #e3e3e3;*/
	}

	/* Container - default style */
	.toggler-c {
		
	}
	.toggler-c-closed {
	   	background:transparent;
	   	margin:5px 10px 5px 20px;
	   	padding:7px;
	   	width: 400px;
	   	border: 1px solid #BDC0C9;
	   	
	}
	.toggler-c-opened {
		margin:5px 10px 5px 20px;
	   	padding:7px;
	   	width: 400px;
	   	border: 1px solid #BDC0C9;
	   		  
	}

}

/* Print -------------------------------------------------------------------- */
@media print {

	.toggler-c { margin-bottom:25px; }
	.toggler { display: none; }

}

