/* Button Style Properties */
.button {
  background-color: #FFFFFF;
  height: 32px;
  width: 32px;
  border: 1px solid #FFFFFF;
  border-radius: 6px;
  color: #25363d;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 10pt;
  font-weight: bold;
  cursor: pointer;
}

@media only screen and (max-width: 700px) {
  .button {
    background-color: #FFFFFF;
    height: 32px;
    width: 32px;
    border: 1px solid #FFFFFF;
    border-radius: 6px;
    color: #25363d;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 10pt;
    font-weight: bold;
    cursor: pointer;
  }
}


/* Application - Info Button */
#appInfoBtn{
  position: absolute;
  top: 11px;
  right: 10px;
  background-image: url("https://gis.edmondok.gov/ApplicationModulesJS4X/Icons/CalciteIcons/information-16.svg");
  background-size: 16px 16px;
  background-position: center;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 700px) {
  #appInfoBtn{
    position: absolute;
    top: 50px;
    right: 10px;
	background-image: url("https://gis.edmondok.gov/ApplicationModulesJS4X/Icons/CalciteIcons/information-16.svg");
    background-size: 16px 16px;
    background-position: center;
    background-repeat: no-repeat;
  }
}

/* Application - Print Button */
#appPrintBtn{
  position: absolute;
  top: 11px;
  right: 52px;
  background-image: url("https://gis.edmondok.gov/ApplicationModulesJS4X/Icons/CalciteIcons/print-16.svg");
  background-size: 16px 16px;
  background-position: center;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 700px) {
  #appPrintBtn{
    position: absolute;
    top: 50px;
    right: 52px;
	background-image: url("https://gis.edmondok.gov/ApplicationModulesJS4X/Icons/CalciteIcons/print-16.svg");
    background-size: 16px 16px;
    background-position: center;
    background-repeat: no-repeat;
  }
}

/* Application - Bookmark Button */
#appBookmarksBtn{
  position: absolute;
  top: 11px;
  right: 94px;
  background-image: url("https://gis.edmondok.gov/ApplicationModulesJS4X/Icons/CalciteIcons/bookmark-16.svg");
  background-size: 16px 16px;
  background-position: center;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 700px) {
  #appBookmarksBtn{
    position: absolute;
    top: 50px;
    right: 94px;
	background-image: url("https://gis.edmondok.gov/ApplicationModulesJS4X/Icons/CalciteIcons/bookmark-16.svg");
    background-size: 16px 16px;
    background-position: center;
    background-repeat: no-repeat;
  }
}

/* Application - Layers Button */
#appLayersBtn{
  position: absolute;
  top: 11px;
  right: 136px;
  background-image: url("https://gis.edmondok.gov/ApplicationModulesJS4X/Icons/CalciteIcons/layers-16.svg");
  background-size: 16px 16px;
  background-position: center;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 700px) {
  #appLayersBtn{
    position: absolute;
    top: 50px;
    right: 136px;
	background-image: url("https://gis.edmondok.gov/ApplicationModulesJS4X/Icons/CalciteIcons/layers-16.svg");
    background-size: 16px 16px;
    background-position: center;
    background-repeat: no-repeat;
  }
}


/* Application - Legend Button */
#appLegendBtn{
  position: absolute;
  top: 11px;
  right: 178px;
  background-image: url("https://gis.edmondok.gov/ApplicationModulesJS4X/Icons/CalciteIcons/legend-16.svg");
  background-size: 16px 16px;
  background-position: center;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 700px) {
  #appLegendBtn{
    position: absolute;
    top: 50px;
    right: 178px;
    background-image: url("https://gis.edmondok.gov/ApplicationModulesJS4X/Icons/CalciteIcons/legend-16.svg");
    background-size: 16px 16px;
    background-position: center;
    background-repeat: no-repeat;
  }
}


/* Info */
#infoDIV{
  z-index: 3;
  position: absolute;
  right: 10px;	
  top: 10px;
  height: 440px;
  width: 300px;
  border: 1px solid #25363d;
  border-radius: 4px;
  background-color: white;
  overflow-x: hidden !important;
}

/* Mobile @ 700px */
@media only screen and (max-width: 700px) {
  #infoDIV{	
    z-index: 3;
    position: absolute;
	left: 0px;
    right: 0px;	
    top: auto;
	bottom: 0px;
    height: 360px;
    width: auto;
    border: 1px solid #25363d;
    border-radius: 4px;
    background-color: white;
    overflow-x: hidden !important;
	overflow-y: hidden !important;
  }	
}

#infoHeaderDIV{
  position: absolute;
  height: 24px;
  width: 100%;
  background-color: #25363d;
  font-weight: bold;
  text-indent: 5px;
  color: white;
  display: inline-block;
  line-height: 24px;
}

#infoTextBoxDIV{
  position: absolute;
  top: 30px;
  height: 200px;
  left: 5px;
  right: 5px;
  font-weight: normal;
  font-size: 10pt;
  line-height: 18px;
}

/* Mobile @ 700px */
@media only screen and (max-width: 700px) {
  #infoTextBoxDIV{
    position: absolute;
    top: 30px;
    height: 145px;
    left: 5px;
    right: 5px;
    font-weight: normal;
    font-size: 10pt;
    line-height: 18px;
  }
}

#infoContactDIV{
  position: absolute;
  top: 250px;
  height: 170px;
  left: 5px;
  right: 5px;
  font-weight: normal;
  font-size: 10pt;
  display: inline-block;
  line-height: 18px;
}

/* Mobile @ 700px */
@media only screen and (max-width: 700px) {
  #infoContactDIV{
    position: absolute;
    top: 185px;
    height: 160px;
    left: 5px;
    right: 5px;
    font-weight: normal;
    font-size: 10pt;
    display: inline-block;
    line-height: 18px;
  }
}


/* Print */
#printDIV{
  z-index: 3;
  position: absolute;
  right: 10px;	
  top: 10px;
  height: 520px;
  width: 300px;
  border: 1px solid #25363d;
  border-radius: 4px;
  background-color: white;
  overflow-x: hidden !important;
}

/* Mobile @ 700px */
@media only screen and (max-width: 700px) {
  #printDIV{	
    z-index: 3;
    position: absolute;
	left: 0px;
    right: 0px;	
    top: auto;
	bottom: 0px;
    height: 360px;
    width: auto;
    border: 1px solid #25363d;
    border-radius: 4px;
    background-color: white;
    overflow-x: hidden !important;
	overflow-y: hidden !important;
  }	
}

#printHeaderDIV{
  position: absolute;
  height: 24px;
  width: 100%;
  background-color: #25363d;
  font-weight: bold;
  text-indent: 5px;
  color: white;
  display: inline-block;
  line-height: 24px;
}

#toolsPrintWidgetContainer{
  position: absolute;
  top: 30px;
  left: 10px;
  right: 10px;
  height: 465px;
  /* Make Text Unselectable */
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
}

@media only screen and (max-width: 700px) {
  #toolsPrintWidgetContainer{
    position: absolute;
    top: 30px;
    left: 10px;
    right: 10px;
    height: 300px;
    /* Make Text Unselectable */
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
  }
}


/* Bookmarks */
#bookmarksDIV{
  z-index: 3;
  position: absolute;
  right: 10px;	
  top: 10px;
  height: 440px;
  width: 300px;
  border: 1px solid #25363d;
  border-radius: 4px;
  background-color: white;
  overflow-x: hidden !important;
}

/* Mobile @ 700px */
@media only screen and (max-width: 700px) {
  #bookmarksDIV{	
    z-index: 3;
    position: absolute;
	left: 0px;
    right: 0px;	
    top: auto;
	bottom: 0px;
    height: 360px;
    width: auto;
    border: 1px solid #25363d;
    border-radius: 4px;
    background-color: white;
    overflow-x: hidden !important;
	overflow-y: hidden !important;
  }	
}

#bookmarksHeaderDIV{
  position: absolute;
  height: 24px;
  width: 100%;
  background-color: #25363d;
  font-weight: bold;
  text-indent: 5px;
  color: white;
  display: inline-block;
  line-height: 24px;
}


#bookmarkWidgetDIV{
  position: absolute;
  top: 30px;
  left: 5px;
  right: 5px;
  height: 390px;
}

/* Mobile @ 700px */
@media only screen and (max-width: 700px) {
  #bookmarkWidgetDIV{
    position: absolute;
    top: 30px;
    left: 5px;
    right: 5px;
    height: 310px;
  }
}


/* legend */
#legendDIV{
  z-index: 3;
  position: absolute;
  right: 10px;	
  top: 10px;
  height: 500px;
  width: 300px;
  border: 1px solid #25363d;
  border-radius: 4px;
  background-color: white;
}

/* Legend Mobile - 700px Pixel Width */
@media only screen and (max-width: 700px) {
  #legendDIV{
    z-index: 3;
    position: absolute;
	left: 0px;
    right: 0px;	
    top: auto;
	bottom: 0px;
    height: 360px;
    width: auto;
    border: 1px solid #25363d;
    border-radius: 4px;
    background-color: white;
  }
}

#legendHeaderDIV{
  position: absolute;
  height: 24px;
  width: 100%;
  background-color: #25363d;
  font-weight: bold;
  text-indent: 5px;
  color: white;
  display: inline-block;
  line-height: 24px;
}


/* Map - Legend */
#mapLegendDIV{
  position: absolute;
  z-index: 3;
  top: 30px;
  left: 10px;
  right: 10px;
  height: 450px;
}

/* Legend Mobile - 700px Pixel Width */
@media only screen and (max-width: 700px) {
  #mapLegendDIV{
    position: absolute;
    z-index: 3;
    bottom: 0px;
    left: 10px;
    right: 10px;
    height: 310px;
   }
}

/* Layers */
#layersDIV{
  z-index: 3;
  position: absolute;
  right: 10px;	
  top: 10px;
  height: 280px;
  width: 300px;
  border: 1px solid #25363d;
  border-radius: 4px;
  background-color: white;
  overflow-x: hidden !important;
}

/* Mobile @ 700px */
@media only screen and (max-width: 700px) {
  #layersDIV{	
    z-index: 3;
    position: absolute;
	left: 0px;
    right: 0px;	
    top: auto;
	bottom: 0px;
    height: 280px;
    width: auto;
    border: 1px solid #25363d;
    border-radius: 4px;
    background-color: white;
    overflow-x: hidden !important;
	overflow-y: hidden !important;
  }	
}

#layersHeaderDIV{
  position: absolute;
  height: 24px;
  width: 100%;
  background-color: #25363d;
  font-weight: bold;
  text-indent: 5px;
  color: white;
  display: inline-block;
  line-height: 24px;
}

/* Abandoned Sewer Assets Toggle Check Box */
#abndSewerAssetsCheckBox{
  position: absolute;
  z-index: 2;
  top: 40px;
  left: 10px;
  height: 25px;
  width: 25px;
}

/* Abandoned Sewer Assets Toggle Check Box Title */
#abndSewerAssetsCheckBoxTitle{
  position: absolute;
  z-index: 2;
  top: 43px;
  left: 45px;
  right: 10px;
  height: 23px;
  font-weight: bold;
  text-indent: 5px;
  display: inline-block;
  line-height: 23px;
}

/* Abandoned Water Assets Toggle Check Box */
#abndWaterAssetsCheckBox{
  position: absolute;
  z-index: 2;
  top: 80px;
  left: 10px;
  height: 25px;
  width: 25px;
}

/* Abandoned Water Assets Toggle Check Box Title */
#abndWaterAssetsCheckBoxTitle{
  position: absolute;
  z-index: 2;
  top: 83px;
  left: 45px;
  right: 10px;
  height: 23px;
  font-weight: bold;
  text-indent: 5px;
  display: inline-block;
  line-height: 23px;
}

/* Sewer Assets Toggle Check Box */
#sewerAssetsCheckBox{
  position: absolute;
  z-index: 2;
  top: 120px;
  left: 10px;
  height: 25px;
  width: 25px;
}

/* Sewer Assets Toggle Check Box Title */
#sewerAssetsCheckBoxTitle{
  position: absolute;
  z-index: 2;
  top: 123px;
  left: 45px;
  right: 10px;
  height: 23px;
  font-weight: bold;
  text-indent: 5px;
  display: inline-block;
  line-height: 23px;
}

/* Water Assets Toggle Check Box */
#waterAssetsCheckBox{
  position: absolute;
  z-index: 2;
  top: 160px;
  left: 10px;
  height: 25px;
  width: 25px;
}

/* Water Assets Toggle Check Box Title */
#waterAssetsCheckBoxTitle{
  position: absolute;
  z-index: 2;
  top: 163px;
  left: 45px;
  right: 10px;
  height: 23px;
  font-weight: bold;
  text-indent: 5px;
  display: inline-block;
  line-height: 23px;
}


/* Air Photo Toggle Check Box */
#airPhotoCheckBox{
  position: absolute;
  z-index: 2;
  top: 200px;
  left: 10px;
  height: 25px;
  width: 25px;
}

/* Air Photo Toggle Check Box Title */
#airPhotoCheckBoxTitle{
  position: absolute;
  z-index: 2;
  top: 203px;
  left: 45px;
  right: 10px;
  height: 23px;
  font-weight: bold;
  text-indent: 5px;
  display: inline-block;
  line-height: 23px;
}

/* Air Photo Toggle Check Box Title */
#airPhotoNotes{
  position: absolute;
  z-index: 2;
  top: 230px;
  left: 10px;
  right: 10px;
  height: 23px;
  font-weight: normal;
  font-size: 9pt;
  text-indent: 5px;
  display: inline-block;
  line-height: 23px;
}

/* Use for Span of Text for Highlighting */
#highlightText{
  background-color: #FFFF00;
}