#stateSelection{
    position: absolute;
    right:8px;
    z-index: 5;
    background: #efefef;
    text-align: center;
}
#stateSelection label{
    padding:2px;
    font-weight: bold;
}
#stateInput{
    display: block;
}
#clickNotice{
	position: absolute;
	z-index: 4;
    top: 10px;
    width: 100%;
}
#clickNotice span{    
	width: 50%;
    margin: auto;
    display: block;
    background: #fff;
    font-size: 1.5em;
    text-align: center;
    border: 2px solid #9dcd6b;
    border-radius: 30px;
    cursor: pointer;
  }
  #clickNotice span:hover{    
	background: #cbd7e2;
    cursor: pointer;
  }
/*TIMESLIDER BAR MARKUP*/
/*remove defualt style from input control*/
input[type=range] {  
  -webkit-appearance: none; /* Hides the slider so that custom slider can be made */
  width: 100%; /* Specific width is required for Firefox. */
  background: transparent; /* Otherwise white in Chrome */
  vertical-align: middle;
}
input[type=range]:hover{
    cursor: pointer;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
}
input[type=range]:focus {
  
}
input[type=range]::-ms-track {
  width: 100%;
  cursor: pointer;
  /* Hides the slider so custom styles can be added */
  background: transparent; 
  border-color: transparent;
  color: transparent;
  margin-top:-12px;
}
/**/

/*track styles*/
input[type="range"]::-webkit-slider-runnable-track{
    -webkit-appearance: none; /* Hides the slider so that custom slider can be made */
    background-color: #29596f;
    height: 30px;
    border-radius: 1.3px;
    border: 1px solid #010101;
    box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}
input[type="range"]::-ms-track{
    background-color: #29596f;
    height: 30px;
    border-radius: 1.3px;
    border: 1px solid #010101;
    box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}
input[type="range"]::-moz-range-track{
    background-color: #29596f;
    height: 30px;
    border-radius: 1.3px;
    border: 1px solid #010101;
    box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}
/*thumb styles*/
input[type="range"]::-webkit-slider-thumb{
    -webkit-appearance: none; /* Hides the slider so that custom slider can be made */
    background-color: #72BF44 !important;
    width: 20px !important;
    height: 37px !important;
    margin-top:-5px;
}
input[type="range"]::-moz-range-thumb{
    background-color: #72BF44 !important;
    width: 20px !important;
    height: 37px !important;     
}
input[type="range"]::-ms-thumb {
    background-color: #72BF44 !important;
    width: 20px !important;
    height: 37px !important;     
}
/*containter div with button*/

#bottomDiv{
    z-index: 10;
    overflow: visible;
}
.bottomDivRow{
    display: inline;
    display: inline-flex;
} 
#timeSliderDiv{    
    display: inline;
    width:800px;
    margin:0px;
    padding: 0;
}
#timesliderlabel{
    top: -12px;
    position: absolute;
    font-weight: bold;
    text-shadow: 1px 1px 5px #bbb;
}
input[type=range].vHorizon {
    color:black !important;
    display:inline;
    height: 35px;              
    width:800px;    
    padding: 0;
}
#tickMarksDiv{
    top:0;        
    position:absolute;    
    width:800px;
    z-index:-1;
    padding: 0;
    display: table;
}
.fivetick{
    background: linear-gradient(to right,#686868 0%,rgba(0,0,0,0) 1%,rgba(0,0,0,0) 98%, #686868 99%);
    height: 20px;
    display: table-cell;
}
.singletick{
    background: linear-gradient(to right,#686868 2px,rgba(0,0,0,0) 3px,rgba(0,0,0,0) 96%, #686868 99%);
    height: 20px;
    display: table-cell;
    width: 24px;
}
.starttick{
    background: linear-gradient(to left,#686868 3px, rgba(0,0,0,0) 4px, rgba(0,0,0,0));
    height: 25px;
    display: table-cell;
    width:10px;
}
.endtick{
    background: linear-gradient(to right, #686868 3px, rgba(0,0,0,0) 4px, rgba(0,0,0,0));
    height: 25px;
    display: table-cell;
    width:10px;   
}
   
#iteratebutton{
        background-color: #4b812c;
		border: 1px #000 solid;
		border-radius: 20px;
		box-shadow: 1px 2px 7px #000;
        color: white;
		display: inline;
		font-weight: bold;
		line-height: 1em;       
        margin: 0 0 1rem .5rem;
        padding: .5rem;
		text-align: center;
        text-shadow: 1px 1px 1px black;
        white-space: normal;
        width: 135px;        	
}
#iteratebutton:hover{        
        background-color: #FF9800;
		border-color: #fff !important;
		font-weight: bold;
    }
#iteratebutton.active{
        background-color: #FF9800;
        transition: opacity 0.3s ease;
        background-size: 30px 30px;
        background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.1) 75%, transparent 75%, transparent);
        animation: barberpole 1s linear infinite;
        border:inset;
        color:black;
        text-shadow: 1px 1px 3px #ffffff;
        font-weight: bold;
    }
@keyframes barberpole {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 60px 30px;
  }
}
#chart{
    height: 140px;
    width: 800px;    
    position: relative;    
    z-index: 4;
    background: #ecf0f3;
}
#chartTitle.CenterTitle{
    color:rgb(41, 89, 111);
    display:block;
    font-family:Verdana;
    font-size:18px;
    font-stretch:100%;
    font-style:normal;
    font-weight:700;
    height:auto;
    line-height:25.2px;
    text-align:center;
    text-shadow:rgb(255, 255, 255) 1px 1px 0px, rgb(169, 169, 169) 1px -1px 1px;
    white-space:nowrap;
    width: 800px;
    background-color: #ecf0f3;
    }
#chartTitle.LeftTitle{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    margin-left: 5px;
    color:rgb(41, 89, 111);
    display:block;
    line-height: 15px;
    font-family:Verdana;
    font-size:14px;
    font-stretch:100%;
    font-style:normal;
    font-weight:700;
    text-align:left;
    text-shadow:rgb(255, 255, 255) 1px 1px 0px, rgb(169, 169, 169) 1px -1px 1px;
    width: 250px;
}
#chartRow{
    position: relative;
}

.amcharts-chart-div svg g:nth-of-type(14) g.amcharts-category-axis {transform: translateX(3px);}

/*MAP CONTROLS AND LAYOUT*/
#HomeButton {
      position: absolute;
      top: 95px;
      left: 25px;
      z-index: 50;
    }
.HomeButton .home{
        background-color: #28596E;
        border: #BFCDD3 2px solid;
    }
/*PAGE STRUCTURE  AND LAYOUT*/
html, body{
        color:#376075;
    }
    #root {
        min-height:875px;
        width:100%;
        background-color: white;
    }     
    #topDiv{
        border-bottom: #376075 1px solid !important;
        overflow: hidden;       
    }
    #topDivTab{
        background-color: #9DCD6B;
        border-top-right-radius: 2em;
        border-top-left-radius: 2em;
        position: absolute;
        right:0;
        bottom:0;
        height:40px;
        width: 200px;
        text-align: center;

        background-color: #4b812c;

    }
    #topDivTab h2 {
        height:40px;
        line-height: 40px;
        color: white;
        text-shadow: 1px 1px 2px black;
    }
    #sidePanel{
        width:190px;
        visibility: hidden;     
    }    
    #mapdiv:hover{
        cursor:grab;
    }
    #timeInfo{      
        background-color: #fff;
        display: block;
        position: relative;
        text-align: center;
        width: 100%;
        z-index: 99;
        overflow: hidden;
    }
    /*map tips popup style*/   
    .esriPopup.dark .contentPane{
        background-color: rgba(41,89,111,.95);
    }
    .esriPopup.dark .titlePane{
        background-color: rgba(41,89,111,.90);
    }
    .esriPopup.dark .actionsPane{
        background-color: rgba(41,89,111,.90);
    }
    h3{
        color: #D4D4D4;
        line-height: 1.7em;
    }
     .contentPane img{
            background-color: #A4CE67;
            padding-top: 5px;
            padding-bottom: 5px;
            border: #28596F 2px solid;
        }
    .contentPane h3{
            text-shadow: 1px 1px 2px #000000, 1px 1px 2px #000000 !important;
        }
    /* Change color of icons to match bar chart and selection symbol */
      .esriPopup.dark div.titleButton, 
      .esriPopup.dark div.titlePane .title,
      .esriPopup.dark div.actionsPane .action {
        color: #ECF0F3;
        text-shadow: 1px 1px 2px #000000, 1px 1px 2px #000000 !important;
      }
      /* Additional customizations */
      .esriPopup.dark .esriPopupWrapper {
        border: 2px #9dcd6b solid;
        font-size:1.3em;
      }
      .esriPopup .contentPane {
        text-align: center;
      }
      .esriViewPopup .gallery {
        margin: 0 auto;
      }
      .esriPopup .sizer {
        padding: 0;
        width: 350px !important;
      }    
      .esriPopup.light .actionsPane .zoomTo, .esriPopup.dark .actionsPane .zoomTo{
        display: inline;
      }
      .esriPopup.light .actionsPane .zoomTo span, .esriPopup.dark .actionsPane .zoomTo span {
        display: inline;
      }
      .loader{
        border: 30px solid rgb(48, 132, 171);
        border: 30px solid rgba(48, 132, 171,.75);       
        border-bottom: 30px solid #f4f4f4;
        border-radius: 50%;
        width: 120px;
        height: 120px;
    
        position: absolute;
        z-index: 100;
        left: 50%;    
        margin-left: -120px;
        top: 50%;
        margin-top: -120px;
        animation: spin 1s ease-in-out infinite;
      }
      .loader.hide{
        display: none;
      }
      @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
        }
        .notCovered{
        	background: #7e0000;
        	box-shadow: 2px 2px 1px #00000096;
			padding: .5rem;
        }
        .isCovered{
        	background: #005900;
        	box-shadow: 2px 2px 1px #00000096;
			padding: .5rem;
        }
        .compCovered{
        	background: #FFEB3B;
    		color: black;
    		font-weight: bold;
    		box-shadow: 2px 2px 1px #00000096;
			padding: .5rem;
        }
        .thisyear{        
        	font-size: 1.6em;
        }