/**
 * ----------------------------------------------------------------------------
 * 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: 17px;
		padding-left:15px;
		border-top-left-radius: 7px;
   border-top-right-radius: 7px;
   -webkit-border-top-left-radius: 7px;
   -webkit-border-top-right-radius: 7px;
   -moz-border-radius-topleft: 7px;  
   -moz-border-radius-topright: 7px; 
    behavior: url(border-radius.htc);
		font-weight:bold;
		line-height:35px;
		display: block;
	}
	.toggler-closed {
		color:#3E83C1;
		text-decoration:none;
		-moz-border-radius: 7px;
    -webkit-border-radius: 7px;
    border-radius: 7px;
    behavior: url(border-radius.htc);
		height:30px;
		background: #dae8f3 url('togglerc.gif') center right no-repeat;
		border: solid medium #3E83C1;
	}
	.toggler-closed:hover {
		color: #8BB7DA;
		text-decoration:none;	
		height:30px;
		background: #dae8f3 url('togglerch.gif') center right no-repeat;
		border: solid medium #3E83C1;
	}
	.toggler-opened {
		color:#3E83C1;
		
		text-decoration:none;
		height:30px;
		background: #dae8f3 url('togglero.gif') center right no-repeat;
		border: solid medium #3E83C1;
	}
	.toggler-opened:hover {
		color: #8BB7DA;
		
		text-decoration:none;	
		height:30px;
		background:  #dae8f3 url('toggleroh.gif') center right no-repeat;
		border: solid medium #3E83C1;
	}

	/* Container - default style */
	.toggler-c {
		border-bottom-left-radius: 7px;
   border-bottom-right-radius: 7px;
   -webkit-border-bottom-left-radius: 7px;
   -webkit-border-bottom-right-radius: 7px;
   -moz-border-radius-bottomleft: 7px;  
   -moz-border-radius-bottomright: 7px; 
    behavior: url(border-radius.htc);
	}
	.toggler-c-closed {
	   background:transparent;

		margin:-20px 0px 25px 0px;
	   padding:0px 5px 5px 5px;
	      background:#fff;
	   border: solid medium #3E83C1;
	}
	.toggler-c-opened {
		margin:-20px 0px 25px 0px;
	   padding:0px 5px 5px 5px;
	   background:#fff;
	 border: solid medium #3E83C1;
	}

}

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

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

}
