/**
 * ----------------------------------------------------------------------------
 * toggleElements.css - Stylesheet for jQuery-Plugin toggleElements
 * ----------------------------------------------------------------------------
 */

/* Screen ------------------------------------------------------------------- */

@media projection, screen {

	/* Toggler - default style */
	.toggler {
		cursor:pointer;
		text-decoration: none;
		font-size: 10px; 
		font-family: Verdana, Tahoma, sans-serif; 
		font-weight: normal;   
		color: #BE5E6A; 
		line-height:17px;
		text-align:left;
		text-decoration:none;
		display: block;
	}
	.toggler-closed {
		color:#BE5E6A;
		padding-left:12px;
		height:20px;
		
	}
	.toggler-closed:hover {
		color: #BE5E6A;
		padding-left:12px;
		height:20px;
		
	}
	.toggler-opened {
		color:#BE5E6A;
		padding-left:12px;
		height:20px;
	
	}
	.toggler-opened:hover {
		color: #BE5E6A;
		padding-left:12px;
		height:20px;
		
	}

	/* Container - default style */
	.toggler-c {
		width: 270px;
		height:20px;
	}
	.toggler-c-closed {
	   background:transparent;
		width: 270px;
		height:20px;
	   padding-top:10px;
	   padding-left:7px;
	}
	.toggler-c-opened {
		width: 270px;
		height:20px;
	   padding-top:10px;
	   padding-left:7px;
	}

}

/* Print -------------------------------------------------------------------- */
@media print {

	.toggler-c { margin-bottom:25px; }
	.toggler { display: none; }

}

