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

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

@media projection, screen {

	/* Toggler - default style */
#integration 	.toggler {
		cursor:pointer;
		letter-spacing:2px;
		font-weight:bold;
		text-transform:uppercase;
		font-size:11px;
		color:#7d4d25;
		line-height:20px;
		display: block;
	}
#integration 	.toggler-closed {
		letter-spacing:2px;
		font-weight:bold;
		text-transform:uppercase;
		font-size:11px;
		color:#7d4d25;
		height:20px;
	}
#integration 	.toggler-closed:hover {
		letter-spacing:2px;
		font-weight:bold;
		text-transform:uppercase;
		font-size:11px;
		color:#7d4d25;
	}
#integration 	.toggler-opened {
		color:#7d4d25;
		height:20px;
	}
#integration 	.toggler-opened:hover {
		color: #7d4d25;
		height:20px;
	}

	/* Container - default style *//* div contenant les informations*/
#integration 	.toggler-c {
		/*border-right:1px dashed #44543a;*/
		border-bottom:1px dashed #44543a;
		color:#44543a;
		padding:5px 20px 5px 20px;
		margin:0px 0px 0px 0px;
	}
#integration 	.toggler-c-closed {
		background:transparent;
	}
#integration 	.toggler-c-opened {
	}

}

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

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

}

