﻿/*jefz added 9.12.12 - these are the styles for the treeview powered by CSS3*/
/*These styles are applied if the browser being used can handle CSS3 as determined by the master page*/

li.legislationlist-topofpage { display:none; }                         /* unless it is an early version of IE */

div.legislationlist-navigation { display:none; }                      /* unless it is an early version of IE */

/*styles for the css3 treeview here*/
    
    .css-treeview ul,
		.css-treeview li
		{
			padding: 0;
			margin-top: .5em;
            margin-bottom: .5em;
			list-style: none;
		}

		.css-treeview input
		{
			position: absolute;
			opacity: 0;
			filter: alpha(opacity=0); /* IE6+ */
			-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=0)";
		}

		.css-treeview
		{
			

			user-select: none;
		}

/*
		.css-treeview a
		{
			color: #615e88;
			text-decoration: none;
		}
*/
		.css-treeview a:hover
		{
			text-decoration: underline;
		}

		.css-treeview input + label + ul
		{
			margin: 0 0 0 22px;
		}

		.css-treeview input ~ ul
		{
			display: none;
		}

		.css-treeview label,
		.css-treeview label::before
		{
			cursor: pointer;
		}

		.css-treeview input:disabled + label
		{
			cursor: default;
			opacity: .6;
			filter: alpha(opacity=.6); /* IE6+ */
			-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=0)";
		}

		.css-treeview input:checked:not(:disabled) ~ ul
		{
			display: block;
		}

		
		.css-treeview label::before
		{
			background: url('../images/icons/plusMinusButtons.png') no-repeat;
		}

		.css-treeview label,
		.css-treeview a,
		.css-treeview label::before
		{
			display: inline-block;
			height: 16px;
			line-height: 16px;
			vertical-align: middle;
		}
                
		.css-treeview label
		{
			background-position: 18px 0;
		}

		.css-treeview label::before
		{
			content: "";
			width: 16px;
			margin: 0 5px 0 0;
			vertical-align: middle;
			background-position: 0 -32px;
		}

		.css-treeview input:checked + label::before
		{
			background-position: 0 -16px;
		}

        .css-treeview tr
        {   
            text-align:center;
        }

		/* webkit adjacent element selector bugfix */
		@media screen and (-webkit-min-device-pixel-ratio:0)
		{
			.css-treeview 
			{
				-webkit-animation: webkit-adjacent-element-selector-bugfix infinite 1s;
			}
			
			@-webkit-keyframes webkit-adjacent-element-selector-bugfix 
			{
				from 
				{ 
					padding: 0;
				} 
				to 
				{ 
					padding: 0;
				}
			}
		}