﻿/*
  | Version 10.2
 | Copyright 2012 Esri
 |
 | Licensed under the Apache License, Version 2.0 (the "License");
 | you may not use this file except in compliance with the License.
 | You may obtain a copy of the License at
 |
 |    http://www.apache.org/licenses/LICENSE-2.0
 |
 | Unless required by applicable law or agreed to in writing, software
 | distributed under the License is distributed on an "AS IS" BASIS,
 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | See the License for the specific language governing permissions and
 | limitations under the License.
 */
/* This file contains the common style settings for "My Government Services" template */
/* Use this file to perform the following: */

/* 1.  Set the body styles                      - { Style(s) to look for: html, body } */
/* 2.  Set styles for splash screen             - { Style(s) to look for: divSplashScreenContainer,divSplashScreenContent,divSplashScreenContainer,divSplashContent,
                                                                          customButton,customButtonInner } */
/* 3.  Set the styles for animations            - { Style(s) to look for: slideTransition,hideBottomContainer,showBottomContainer,hideContainer,showContainer,
                                                                          hideContainerHeight,showContainerHeight,opacityHideAnimation,esriLogo}*/
/* 4.  Set the styles for share container       - { Style(s) to look for: divAppContainer,divAppHolder}*/
/* 5.  Set the styles for application header    - { Style(s) to look for: lblAppName,imgOptions,tableHeader,imgApplication,divApplicationHeader,divLogo}*/
/* 6.  Set the styles for search container      - { Style(s) to look for: divAddressScrollContainer,divAddressScrollContent,tblHeader,divAddressPlaceHolder,txtAddress,
                                                                          imgLocate,divAddressList,bottom border}*/
/* 7.  Set the styles for info window           - { Style(s) to look for: divInfoWindowContainer,divTriangle,dj_ie .divInfoWindowContainer,
                                                                          divInfoWindowContainer .container,imgInfoWindow,divInfoWindowContainer .content,
                                                                          divInfoWindowContainer .title,imgArrow}*/
/* 8.  Set the styles for bottom panel          - { Style(s) to look for: divCarouselContent,divImageBackground,divDetailsHeader,divContentStyle,divCarouselDataContent,
                                                                          .divCarouselDataContainer}*/
/* 9. Set the styles for loading indicator     - { Style(s) to look for: divLoadingIndicator}*/



/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

/* Styles for body*/

body, html
{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Verdana !important;
    overflow: hidden;
    color: White;
    visibility: visible !important;
}

/*---------------------------------------------------------------------------------------------------------*/
/* Styles for splash screen*/

.divSplashScreenContainer
{
    top: 0px;
    left: 0px;
    background: rgba(0,0,0,0.65);
    -pie-background: rgba(0,0,0,0.65);
    behavior: url("styles/PIE.htc");
    position: absolute;
    z-index: 100000;
    width: 100%;
    height: 100%;
}



.divSplashScreenContent
{
    z-index: 1000;
	background-color: rgb(0,123,190);
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 10px #fff;
    -moz-box-shadow: 0 0 10px #fff;
    -o-box-shadow: 0 0 10px #fff;
    box-shadow: 0 0 10px #fff;
    behavior: url("styles/PIE.htc");
    text-align: left;
	width: 470px;
	height: 400px;
}

.divSplashContainer
{
    overflow: hidden;
    position: relative;
}

.divSplashContent
{
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;	
    padding-left: 10px;
    overflow: hidden;
    width: 90%;
}

.divSplashContent > p
{
    text-align: justify;
    -moz-text-align-last: center;
    text-align-last: center;
}

.divSplashContent a
{
 color: white;
}

.customButton
{
    border: none;
    color: #fff;
    cursor: pointer;
    background: -webkit-gradient(linear, left top, left bottom, from(#888), to(#454545)) !important;
    background: -moz-linear-gradient(top, #888, #454545) !important;
    background: -o-linear-gradient(#888, #454545) !important;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
}

.customButtonInner
{
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#888888', endColorstr='#454545');
    width: 100%;
    height: 100%;
	background: rgb(0,153,190);
}

/*---------------------------------------------------------------------------------------------------------*/
/*animations */

.divtoggle
{
    color: #ffffff;
    position: absolute;
    z-index: 1005;
    overflow: hidden;
    -webkit-transition: bottom 0.5s ease-in;
    -moz-transition: bottom 0.5s ease-in;
    -o-transition: bottom 0.5s ease-in;
    transition: bottom 0.5s ease-in;

	display: none;
}

.showContainer
{
    -webkit-transition: All 0.5s ease-in;
    -moz-transition: All 0.5s ease-in;
    -o-transition: All 0.5s ease-in;
    transition: All 0.5s ease-in;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.hideContainer
{
    -webkit-transition: All 0.5s ease-in;
    -moz-transition: All 0.5s ease-in;
    -o-transition: All 0.5s ease-in;
    transition: All 0.5s ease-in;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

.opacityHideAnimation
{
    visibility: hidden;
    opacity: 0;
    -webkit-transition: visibility 0s linear 0.5s, opacity 0.5s ease-in;
    -moz-transition: visibility 0s linear 0.5s, opacity 0.5s ease-in;
    -o-transition: visibility 0s linear 0.5s, opacity 0.5s ease-in;
    transition: visibility 0s linear 0.5s, opacity 0.5s ease-in;
}

.fadeIn
{
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    -webkit-transition: opacity 0.5s ease-in-out;
}

.fadeOut
{
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    -webkit-transition: opacity 0.5s ease-in-out;
}

.hideContainerHeight
{
    overflow: hidden;
    -webkit-transition: height 0.5s ease-in;
    -moz-transition: height 0.5s ease-in;
    -o-transition: height 0.5s ease-in;
    transition: height 0.5s ease-in;
    height: 0px;
}

.showContainerHeight
{
    overflow: hidden;
    -webkit-transition: height 0.5s ease-in;
    -moz-transition: height 0.5s ease-in;
    -o-transition: height 0.5s ease-in;
    transition: height 0.5s ease-in;
    height: 100%;
}

.linkdiv2 
{
  position: absolute;
 	bottom: 5px;
 	text-align: left;
 	vertical-align: middle;
 	padding: 0px;
 	float: none;
 	margin: 0 auto;
 	width: 90%;
}

.hideBottomContainerHeight
{
    overflow: hidden;
    -webkit-transition: height 0.5s ease-in;
    -moz-transition: height 0.5s ease-in;
    -o-transition: height 0.5s ease-in;
    transition: height 0.5s ease-in;
    height: 0px;
}

.showBottomContainerHeight
{
    overflow: hidden;
    -webkit-transition: height 0.5s ease-in;
    -moz-transition: height 0.5s ease-in;
    -o-transition: height 0.5s ease-in;
    transition: height 0.5s ease-in;
    height: 200px;
}

.slideBottomContainerHeight
{
    -webkit-transition: height 0.5s ease-in;
    -moz-transition: height 0.5s ease-in;
    -o-transition: height 0.5s ease-in;
    transition: height 0.5s ease-in;
}

.esriLogo
{
    bottom: 10px;
    -webkit-transition: bottom 0.5s ease-in;
    -moz-transition: bottom 0.5s ease-in;
    -o-transition: bottom 0.5s ease-in;
    transition: bottom 0.5s ease-in;
    z-index: 1006 !important;
    position: relative;
}

.slidePanel
{
    -webkit-transition: left 0.5s ease-in;
    -moz-transition: left 0.5s ease-in;
    -o-transition: left 0.5s ease-in;
    transition: left 0.5s ease-in;
}

/*---------------------------------------------------------------------------------------------------------*/
/*Share Container Styles*/

.divAppContainer
{
    position: absolute;
    z-index: 1000;
    top: 60px;
    right: 15px;
}

.divAppHolder
{
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background: rgba(0,0,0,0.9);
    -pie-background: rgba(0,0,0,0.9);
    behavior: url("styles/PIE.htc");
}

/*---------------------------------------------------------------------------------------------------------*/
/* Header Styles*/

.tableHeader
{
    width: 100%;
    height: 100%;
}

.imgOptions
{
    height: 30px;
    width: 30px;
}

.imgApp
{
    width: 100%;
    height: 45px;
	background-color: transparent;

}

.divLogo
{
    position: absolute !important;
    top: 0px;
    left: 0px;
    width: 75px;
    height: 55px;
    z-index: 1006;
    display: none;
}

.divApplicationHeader
{
    vertical-align: middle;
	background: rgb(0,123,190);
    -pie-background: rgba(0,0,0,1);
    behavior: url("styles/PIE.htc");
    top: 0px;
    height: 55px;
    width: 100%;
    position: absolute;
    z-index: 1005;
    overflow: hidden;
    font-size: 24px;
}

.lblAppName
{
    padding-left: 100px;
	font-size: 20px;
}

/*---------------------------------------------------------------------------------------------------------*/
/*AddressContainer Styles*/

.divAddressScrollContainer
{
    overflow: hidden;
    position: relative;
}

.divAddressScrollContent
{
    overflow: hidden;
    width: 93%;
    color: black;
	background-color: rgb(0,123,190);
}

.tblHeader
{
	background-color: rgb(0,123,190);
    -moz-border-radius-topleft: 0px;
    -moz-border-radius-topright: 0px;
    -moz-border-radius-bottomleft: 0px;
    -moz-border-radius-bottomright: 0px;
    -webkit-border-top-left-radius: 0px;
    -webkit-border-top-right-radius: 0px;
    -webkit-border-bottom-left-radius: 0px;
    -webkit-border-bottom-right-radius: 0px;
    border-radius: 0px 0px 0px 0px;
    border-bottom: white 1px solid;
    behavior: url("styles/PIE.htc");
}

.infotblHeader
{
     background-color: #303030;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-topright: 10px;
    -moz-border-radius-bottomleft: 0px;
    -moz-border-radius-bottomright: 0px;
    -webkit-border-top-left-radius: 10px;
    -webkit-border-top-right-radius: 10px;
    -webkit-border-bottom-left-radius: 0px;
    -webkit-border-bottom-right-radius: 0px;
     border-radius: 10px 10px 0px 0px;
    border-bottom:gray 1px solid;
}


.divAddressPlaceHolder
{
    border: 1px solid #242424;
    background-color: #333333;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    position: relative;
}

.txtAddress
{
    background-color: #333333;
    color: #fff;
    width: 260px;
    border: none !important;
    outline: none;
    padding: 0px 0px 0px 5px !important;
    vertical-align: middle;
    font-family: Verdana !important;
    font-size: 15px !important;
}

.imgLocate
{
    position: absolute;
    cursor: pointer;
    right: 0px;
	background-color: white;
	border-radius: 3px;
}

.divAddressList
{
    margin-top: 5px;
    color: #fff;
    z-index: 101;
    background-color: transparent;
    border: none;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    behavior: url("styles/PIE.htc");
}

.bottomborder
{
    border-bottom: 1px solid white;
}

/*---------------------------------------------------------------------------------------------------------*/
/*Basemap Container Styles*/

.basemapThumbnail
{
    -moz-box-shadow: 0 0 7px #000000;
    -webkit-box-shadow: 0 0 7px #000000;
    box-shadow: 0 0 7px #000000;
    behavior: url("styles/PIE.htc");
    border: 1px solid #fff;
    height: 67px;
    margin: 1px;
    width: 102px;
    cursor: pointer;
}

.baseMapContainerNode
{
    float: left;
    margin: 10px 10px 0px 10px;
    width: 100px;
}

.basemapLabel
{
    background-color: transparent;
    color: #fff;
    text-align: center;
    width: 100%;
    overflow: hidden;
    display: block;
    margin-bottom: 10px;
}

.divLayerContentHolder
{
    overflow: auto;
    padding: 7px;
}

.selectedBaseMap
{
    -webkit-box-shadow: 0 0 15px #63BA65;
    -moz-box-shadow: 0 0 15px #63BA65;
    box-shadow: 0 0 15px #63BA65;
    behavior: url("styles/PIE.htc");
}

/*---------------------------------------------------------------------------------------------------------*/
/*styles for headers */

.spanHeader
{
    font-weight: bolder;
	font-size: 14px;
    margin-left: 2px;
}


/*---------------------------------------------------------------------------------------------------------*/
/*InfoWindow Styles*/

.divInfoContainer
{
    top: 0px;
    left: 0px;
    background: rgba(0,0,0,0.9);
    -pie-background: rgba(0,0,0,0.9);
    position: absolute;
    z-index: 1001;
    width: 100%;
    height: 100%;
    behavior: url("styles/PIE.htc");
}

.divDetails
{
    position: relative;
    display: none;
}

.divCommentsContainer, .divInfoDetails, .divInfoDirections
{
    overflow: hidden;
    position: relative;
}

.divCommentsContent, .divInfoDetailsScroll, .divInfoDirectionsScroll
{
    overflow: hidden;
    width: 95%;
    color: White;
}

.tdInfoHeader
{
    font-weight: bolder;
}

.divInfoDetails, .divInfoComments, .divInfoDirections
{
    margin-left: 5px !important;
}

.divInfoWindowContainer
{
    z-index: 1002;
    position: absolute;
	background-color: rgba(0,123,190,0.5);
    color: #fff;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.divTriangle
{
    border: solid 20px transparent;
	border-top-color: rgba(0,123,190,0.5);
    border-bottom: 0;
    width: 0;
    height: 0;
    overflow: hidden;
    display: block;
    position: relative;
    margin: auto;
    bottom: 0px;
}

.spanContentText
{
    margin-left: 5px;
    margin-top: 5px;
}

.title
{
    font-weight: bolder;
}

.dj_ie .divInfoWindowContainer
{
    border: none;
}

.divInfoWindowContainer .container
{
    position: absolute !important;
    top: 0;
    left: 0;
}

.imgInfoWindow
{
    position: relative;
}

.divInfoWindowContainer .content
{
    color: #fff;
}

.divInfoWindowContainer .title
{
    font-weight: bolder;
    height: 21px;
    padding: 7px 2px 2px 7px !important;
    color: #fff;
	background-color: rgba(0,123,190,0.2);
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-topright: 10px;
    -moz-border-radius-bottomleft: 0px;
    -moz-border-radius-bottomright: 0px;
    -webkit-border-top-left-radius: 10px;
    -webkit-border-top-right-radius: 10px;
    -webkit-border-bottom-left-radius: 0px;
    -webkit-border-bottom-right-radius: 0px;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
	border-bottom: white 1px solid;
    behavior: url("styles/PIE.htc");
}

.imgArrow
{
    z-index: 1000;
    position: absolute;
    cursor: pointer;
    right: 5px;
    top: 7px;
    height: 44px;
    width: 44px;
}

.txtArea
{
    border: 1px solid #242424;
    padding: 1px;
    background-color: #333333;
    color: #fff;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    resize: none;
    height: 100px;
    overflow: auto;
}

.tdBreak
{
    word-wrap: break-word;
}

/*---------------------------------------------------------------------------------------------------------*/
/* bottom panel css*/

.divCarouselContent
{
    bottom: 0px;
    height: 0px;
    width: 100%;
    position: absolute;
    z-index: 1005;
    text-align: middle;
}

.divImageBackground
{
    -moz-border-top-left-radius: 10px 10px;
    -webkit-border-top-left-radius: 10px 10px;
    border-top-left-radius: 10px 10px;
    -moz-border-top-right-radius: 10px 10px;
    -webkit-border-top-right-radius: 10px 10px;
    border-top-right-radius: 10px 10px;
    overflow: hidden;
    height: 36px;
    width: 40px;
    z-index: 1005;
    text-align: center;
    background-image: url("../images/toggleGradient.png");
    behavior: url("styles/PIE.htc");
	background: rgb(0,123,190);
}

.divDetailsHeader
{
    height: 30px;
    position: relative;
    -moz-border-radius-topleft: 5px;
    -webkit-border-top-left-radius: 5px;
    -moz-border-radius-topright: 5px;
    -webkit-border-top-right-radius: 5px;

	border-top-left-radius: 5px;
	border-top-right-radius: 5px;

	background-color: rgb(0,123,190);
	border: solid rgb(0,153,190) 3px;
    behavior: url("styles/PIE.htc");
}

.divContentStyle
{
	background-color: rgb(0,153,190);
    height: 150px;
    position: relative;
    width: 100%;
    -moz-border-radius-bottomleft: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-bottomright: 5px;
    -webkit-border-bottom-right-radius: 5px;

	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;

    behavior: url("styles/PIE.htc");
    overflow: hidden;

	text-align: center;
}

.divCarouselDataContent
{
    float: left;
    height: 100%;
    position: absolute;
    left: 0px;
    vertical-align: middle;
}

.divServiceContainer
{
    height: 20px;
    width: 100%;
    background-color: rgb(0,123,190);
    position: relative;
    overflow: hidden;
    z-index: 100;
    float: left;
}

.divServiceContent
{
    height: 20px;
}

.tablePickUp
{
    background-color: rgb(0,153,190);
    margin-top: 0px;
	font-size: 18px;
	table-layout: fixed;
}

.tdBreakWord
{
    display: inline-block;
    word-break: break-all;
    word-wrap: break-word;
}

.divCarouselDataContainer
{
    height: 200px;
    width: 100%;
    position: relative;
    overflow: hidden;
    float: left;
	background-color: rgb(0,123,190);
}


/*---------------------------------------------------------------------------------------------------------*/
/* Styles for custom scrollbar*/

.scrollbar_track
{
    position: absolute;
    right: 0;
    top: 2px;
    background-color: transparent;
    cursor: default;
    display: block;
}

.scrollbar_handle
{
    position: relative;
    width: 10px;
    background-color: #C0C0C0;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    opacity: 0.9;
    -moz-opacity: 0.9;
    cursor: default;
    behavior: url("styles/PIE.htc");
}

/*---------------------------------------------------------------------------------------------------------*/
/*Styles for Loading indicator container*/

.divLoadingIndicator
{
    height: 100%;
    width: 100%;
    display: none;
    font-family: Verdana;
    z-index: 2000;
    position: absolute;
    bottom: 0px;
    filter: alpha(opacity = 55);
    -moz-opacity: 0.55;
    -khtml-opacity: 0.55;
    opacity: 0.55;
    top: 0px;
    left: 0px;
    background: rgba(0,0,0,0.65);
    -pie-background: rgba(0,0,0,0.65);
    behavior: url("styles/PIE.htc");
}

 input:-moz-placeholder {
      color: gray;
 }
textarea:-moz-placeholder {
      color: gray;
 }

.imgSearchLoader
{
    vertical-align: middle;
    display: none;
    cursor: default;
}

/*---------------------------------------------------------------------------------------------------------*/
/*Styles for added carousel buttons and links*/

.serviceButton {
	border-radius: 5px;
	font-size: 14px;
	font-family: Verdana;
	font-weight: bolder;
	color: white;
	padding: 7px;
	display: inline;
	float: none;
	margin: 0 auto;
	width: 90%;
}

.divStreetSweepingStyle {
    height: 150px;
    position: relative;
    width: 100%;
    -moz-border-radius-bottomleft: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-bottomright: 5px;
    -webkit-border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
    behavior: url("styles/PIE.htc");
    overflow: hidden;
	text-align: center;
	margin: 0px 0 0 0;

}

.linkDiv {
	position: absolute;
	bottom: 10px;
	text-align: center;
	vertical-align: middle;
	padding: 7px;
	float: none;
	margin: 0 auto;
	width: 90%;
}

.linkDiv2 {
    position: absolute;
    bottom: 28px;
	text-align: center;
	vertical-align: bottom;
	padding: 7px;
	float: bottom;
	margin: 0 auto;
	width: 90%;
}

.linkDiv3 > a{

	color: #fff;

}

.linkDiv3 {
	position: relative;
	text-align: left;
	padding: 6px 16px;
	font-size: 10px !important;

}

.divDetails td tr {
	font-size: 14px !important;
	font-weight: 900;
	text-shadow: 1px 0 0 #6d6d6d, 0 -1px 0 #6d6d6d, 0 1px 0 #6d6d6d, -1px 0 0 #6d6d6d;
}

#mblDomButtonCheck {
	visibility: none;
}

.parkingDistrictButton {
	font-size: 10px;
}


@media screen and (min-width: 420px) and (max-width: 1000px)
{
	
.linkDiv2 {
    position: absolute;
    bottom: 35px;
	text-align: center;
	vertical-align: bottom;
	padding: 7px;
	float: bottom;
	margin: 0 auto;
	width: 90%;
}	
	
.divDetails td tr {
	font-size: 12px !important;
	font-weight: 900;
	text-shadow: 1px 0 0 #6d6d6d, 0 -1px 0 #6d6d6d, 0 1px 0 #6d6d6d, -1px 0 0 #6d6d6d;
}

.linkDiv3 {
	position: relative;
	text-align: left;
	padding: 5px 16px;
	position: relative;
	font-size: 8px !important;
}
}