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

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

@media projection, screen {

	/* Toggler - default style */
	.toggler-f {
	   margin:0px 0 25px 0;
		cursor:pointer;
		text-decoration: none;
		font-size: 13px;
		font-weight:normal;
		line-height:12 px;
		display: block;
	}
	.toggler-f-closed {
		color: #db7507;
		padding-left:0px;
		height:16px;
		background: #fff url('/theme/ofsb/images/togglerc.gif') center right no-repeat;
		border: solid 1px white;
	}
	.toggler-f-closed:hover {
		color: #db7507;
		text-decoration: underline;
		padding-left:0px;
		height:16px;
		background: #f0f0f0 url('/theme/ofsb/images/togglerch.gif') center right no-repeat;
		border: solid 1px #f0f0f0;
	}
	.toggler-f-opened {
		color: #db7507 ! important;
		padding-left:0px;
		height:16px;
		background: #f5f5f5 url('/theme/ofsb/images/togglero.gif') center right no-repeat;
		border: solid 1px #f5f5f5;
	}
	.toggler-f-opened:hover {
		color: #db7507;
		text-decoration: underline;
		padding-left:0px;
		height:16px;
		background: #f0f0f0 url('/theme/ofsb/images/toggleroh.gif') center right no-repeat;
		border: solid 1px #f0f0f0;
	}

	/* Container - default style */
	.toggler-f-c {
	}
	.toggler-f-c-closed {
	   background:transparent;
	   border:solid 1px #f9f9f9;
		margin:-25px 0px 25px 0px;
	   padding:20px;
	}
	.toggler-f-c-opened {
		margin:-25px 0px 25px 0px;
	   padding:20px;
	   background: #f9f9f9;
	   border:solid 1px #f5f5f5;
	}

}

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

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

}

