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

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

@media projection, screen {

	/* Toggler - default style */
	.toggler {  
	  margin:2px 0 25px 0 !important;
	   margin:2px 0 10px -10px;
		cursor:pointer;
		text-decoration: none;
		font-size: 12px;
		line-height:30px;
		display: block;
		font-weight:bold;
		
	}
	.toggler-closed {
		color:#333;
		padding-left:15px;
		height:20px;
		background:  url('../images/togglerc.gif')  left 8px no-repeat;
		text-decoration:none;
		
		
	}
	.toggler-closed:hover {
		color: #000;
		padding-left:15px;
		height:20px;
		background: url('../images/togglerch.gif') left 8px no-repeat;
		text-decoration:none;
		
	}
	.toggler-opened {
		color:#333;
		padding-left:15px;
		height:20px;
		background:  url('../images/togglero.gif') left 8px no-repeat;
		
		text-decoration:none;
	}
	.toggler-opened:hover {
		color: #000;
		padding-left:15px;
		height:20px;
		background: url('../images/toggleroh.gif') left 8px no-repeat;
		text-decoration:none;

	}

	/* Container - default style */
	.toggler-c {
	}
	.toggler-c-closed {
     margin:-30px 0px 5px 0px !important;
	 margin:-40px 0px 5px -5px;
	 padding:10px;
	 background:none;
	}
	.toggler-c-opened {
	 margin:-30px 0px 5px 0px !important;
	 margin:-40px 0px 5px -5px;
	 padding:10px;
	  background:none;
	 
	
	}
  ul.toggler-2  li{ background:url(../images/bullett_green2.gif) left 7px no-repeat;}
  ul.toggler-2 li.dot{ background:none; margin:0; padding:0}
}

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

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

}

