/**
 * ----------------------------------------------------------------------------
 * toggleElements.css - Stylesheet for jQuery-Plugin toggleElements
 * ----------------------------------------------------------------------------
 */

/* Screen ------------------------------------------------------------------- */

@media projection, screen {

	/* Toggler - default style */
	.toggler {
	   /*margin:25px 0 25px 0;*/
		cursor:pointer;
		text-decoration: none;
		font-size: 14px;
		font-weight:bold;
		/*line-height:30px;*/
		display: block;
		border-bottom: 1px solid #3667a1;
		width:257px;
		margin-left:10px;
		height:16px;
		padding:8px 0 2px 15px;
	}
	.toggler-closed {
		color:#244368;
		/*height:30px;*/
		background: url(../images/arrowclosed.gif) 0px 12px no-repeat;		
	}
	.toggler-closed:hover {
		color: #000;
		/*height:30px;*/		
	}
	.toggler-opened {
		color:#333;
		/*height:30px;*/
		background:  url(../images/arrowopen.gif) 0px 12px no-repeat;
		
	}
	.toggler-opened:hover {
		color: #000;
		/*height:30px;*/		
	}

	/* Container - default style */
	.toggler-c {
		
		
	}
	.toggler-c-closed {
	   background:transparent;
	   /*border:solid 1px #e3e3e3;*/
		margin:0px 0px 0px 0px;
	   padding:5px 20px;
	}
	.toggler-c-opened {
		margin:0px 0px 0 0px;
	   padding:5px 20px;
	   /*background:#efefef;
	   border:solid 1px #fff;*/
	}

}

/* Print -------------------------------------------------------------------- */
@media print {

	.toggler-c { margin-bottom:25px; }
	.toggler { display: none; }

}

