/**
 * ----------------------------------------------------------------------------
 * toggleElements.css - Stylesheet for jQuery-Plugin toggleElements
 * ----------------------------------------------------------------------------
 */

/* Screen ------------------------------------------------------------------- */

@media projection, screen {

	/* Toggler - default style */
	.toggler {
		cursor:pointer;
		text-decoration:		none;
		border-bottom:			1px solid #3b3124;
		text-align: left;
		line-height:			15px;
		font:				13px Arial,sans-serif;
		color:					#3b3124;
		font-weight:bold;
		padding-top:			3px;
		padding-bottom:			5px;
		display: block;
	}
	.toggler-closed {
		color: #3b3124;
		text-decoration:		underline;
		padding-left:20px;
		height:15px;
		background: url('http://garptest2.com/cms400min/images/expand_0.gif') center left no-repeat;
	}
	.toggler-closed:hover {
		text-decoration:		underline;
		color: #009cd1;
		padding-left:20px;
		height:15px;
		background:  url('http://garptest2.com/cms400min/images/expand_0.gif') center left no-repeat;
	}
	.toggler-opened {
		color:#009cd1;
		text-decoration:		underline;
		padding-left:20px;
		border-bottom:				0px solid #c9e2ec;
		height:15px;
		background:  url('http://garptest2.com/cms400min/images/expand_1.gif') center left no-repeat;
	}
	.toggler-opened:hover {
		color: #009cd1;
		text-decoration:		underline;
		padding-left:20px;
		height:15px;
		background:  url('http://garptest2.com/cms400min/images/expand_1.gif') center left no-repeat;
	}

	/* Container - default style */
	.toggler-c {
	}
	.toggler-c-closed {
	   background:transparent;
		text-decoration:		none;
		text-align: left;
		line-height:			15px;
		font:				13px Arial,sans-serif;
		color:					#3b3124;
	   border-bottom:			solid 1px #3b3124;
	   background:;
	   padding:20px;
	}
	.toggler-c-opened {
		text-align: left;
		text-decoration:		none;
		line-height:			15px;
		font:				13px Arial,sans-serif;
		color:					#3b3124;
	   padding:20px;
	   background:;
	   border-bottom:			solid 1px #3b3124;
	}

}

/* Print -------------------------------------------------------------------- */
@media print {

	.toggler-c { margin-bottom:25px; }
	.toggler { display: none; }

}

