﻿/*
 | Version 10.2
 | Copyright 2013 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 "Permit Status" template */
/* Use this file to perform the following: */

/* 1.  Set the body styles                      - { Style(s) to look for: html, body, fullHeightWidth, fullWidth } */
/* 2.  Set styles for splash screen             - { Style(s) to look for: divSplashScreenContainer, divSplashScreenContent, divSplashScreenDialogContent, divSplashContainer,
																		  divSplashContent, customButton, customButtonInner } */
/* 3.  Set the styles for animations            - { Style(s) to look for: showContainer, hideContainer, hideContainerHeight, showContainerHeight, opacityHideAnimation,
																		  hideContainerHeight, showContainerHeight, 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: tableHeader, imgOptions, imgApp, divLogo, trLogo, divApplicationHeader, lblAppName}*/
/* 6.  Set the styles for search container      - { Style(s) to look for: divAddressScrollContainer, divAddressScrollContent, tblHeader, divAddressPlaceHolder, txtAddress,
																		  imgLocate, divFreezeAddressContainer, divAddressList, bottomBorder, tdSearchByAddress, tdSearchByUnSelectedAddress,
																		  tdSearchByLocation, tdSearchByUnSelectedLocation, tdSearchByPermit, tdSearchByUnSelectedPermit,
																		  imgSearchLoader, tdDisplayField, tdFieldName}*/
/* 7.Set the Styles for BaseMap Container       - { Style(s) to look for: basemapThumbnail,baseMapContainerNode,basemapLabel,divLayerContentHolder}*/
/* 8.  Set the styles for info window           - { Style(s) to look for: divInfoContainer, divTriangle, dj_ie .divInfoWindowContainer,divInfoWindowContainer .container,
																		  imgInfoWindow, divInfoContainer, divDetails, divPermitScrollContent, divInfoDetailsScroll,divPermitDataScrollContainer
																		  tdInfoHeader,divInfoDetails, spanContentText, title, divInfoWindowContainer .content, divInfoWindowContainer .title,
																		  tdBreakWord, tdLabel }*/
/* 9. Set the Styles for custom scrollbar       - { Style(s) to look for: scrollbar_track, scrollbar_handle, scrollbar_container, scrollbar_content}*/
/* 10. Set the styles for loading indicator     - { Style(s) to look for: divLoadingIndicator}*/
/*11. Styles for esri slider                    - { Style(s) to look for: esriSimpleSliderHomeButton}*/

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

/* 1.Styles for body*/

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

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

.fullWidth
{
	width: 100%;
}

/*---------------------------------------------------------------------------------------------------------*/
/* 2.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: 1003;
	width: 100%;
	height: 100%;
}

.divSplashScreenContent
{
	z-index: 1003;
	background-color: black;
	text-align: left;
}

.divSplashScreenDialogContent
{
	-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");
}

.divSplashContainer
{
	overflow: hidden;
	position: relative;
	margin-top: 10px;
}

.divSplashContent
{
	padding-left: 10px;
	overflow: hidden;
	width: 90%;
}

.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;
	background: linear-gradient(#888, #454545) !important;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	overflow: hidden;
	width: 75px;
	margin-top: 7px;
}

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

/*---------------------------------------------------------------------------------------------------------*/
/* 3.Styles for animations */

.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;
}

.opacityShowAnimation
{
	visibility: visible;
	opacity: 1;
	-webkit-transition: opacity 0.5s ease-in;
	-moz-transition: opacity 0.5s ease-in;
	-o-transition: opacity 0.5s ease-in;
}

.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%;
}

.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: 1001 !important;
}

/*---------------------------------------------------------------------------------------------------------*/
/* 4.Styles for Share Container*/

.divAppContainer
{
	position: absolute;
	z-index: 1002;
	top: 60px;
	right: 15px;
	background-color: transparent;
}

.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");
}


/*---------------------------------------------------------------------------------------------------------*/
/* 5.Styles for Application Header*/

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

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

.imgApp
{
	width: 133px;
}

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

.trLogo
{
	margin-top: 0px;
}

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

.lblAppName
{
	padding-left: 145px;
    vertical-align:bottom;
}

/*---------------------------------------------------------------------------------------------------------*/
/*6.Styles for Address Container */

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

.divAddressScrollContent
{
	overflow: hidden;
	width: 93%;
	color: White;
}

.tblHeader
{
	background-color: #303030;
	-moz-border-radius-topleft: 7px;
	-moz-border-radius-topright: 7px;
	-moz-border-radius-bottomleft: 0px;
	-moz-border-radius-bottomright: 0px;
	-webkit-border-top-left-radius: 7px;
	-webkit-border-top-right-radius: 7px;
	-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: gray 1px solid;
	width: 100%;
}

.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: 282px;
	border: none !important;
	outline: none;
	font-family: Verdana !important;
	padding: 0px !important;
	vertical-align: middle;
	line-height: 30px;
}

.imgLocate
{
	position: absolute;
	cursor: pointer;
}
.imgExportToExcel
{
	position: absolute;
	cursor: pointer;
}
.divFreezeAddressContainer
{
	z-index: 1004;
	position: absolute;
	-pie-background: rgba(0,0,0,0.01);
	behavior: url("styles/PIE.htc");
	background-color: rgba(0,0,0,0.01);
}

.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;
}

.divAddressResultContainer
{
	margin: 0px 0px 0px 8px;
}

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

.tdSearchByAddress
{
	margin-left: 10px;
	margin-right: 10px;
	height: 25px;
	-moz-border-top-left-radius: 5px;
	-webkit-border-top-left-radius: 5px;
	border-top-left-radius: 5px;
	-moz-border-bottom-left-radius: 5px;
	-webkit-bottom-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	text-align: center;
	cursor: default;
	background-color: #AAAAAA;
}

.tdSearchByUnSelectedAddress
{
	margin-left: 10px;
	margin-right: 10px;
	height: 25px;
	text-align: center;
	background: #202020;
	-moz-border-top-left-radius: 5px;
	-webkit-border-top-left-radius: 5px;
	border-top-left-radius: 5px;
	-moz-border-bottom-left-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	border-bottom-left-radius: 5px;
	cursor: pointer;
}

.tdSearchByLocation
{
	margin-left: 10px;
	margin-right: 10px;
	height: 25px;
	text-align: center;
	cursor: default;
	background-color: #AAAAAA;
}

.tdSearchByUnSelectedLocation
{
	margin-left: 10px;
	margin-right: 10px;
	height: 25px;
	text-align: center;
	background: #202020;
	cursor: pointer;
}

.tdSearchByPermit
{
	margin-left: 10px;
	margin-right: 10px;
	height: 25px;
	-moz-border-top-right-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	border-top-right-radius: 5px;
	-moz-border-bottom-right-radius: 5px;
	-webkit-bottom-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	text-align: center;
	cursor: default;
	background-color: #AAAAAA;
}

.tdSearchByUnSelectedPermit
{
	margin-left: 10px;
	margin-right: 10px;
	height: 25px;
	text-align: center;
	background: #202020;
	-moz-border-top-right-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	border-top-right-radius: 5px;
	-moz-border-bottom-right-radius: 5px;
	-webkit-border-bottom-right-radius: 5px;
	border-bottom-right-radius: 5px;
	cursor: pointer;
}

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

.tdDisplayField
{
	width: 40%;
	height: 18px;
	vertical-align: top !important;
	padding-top: 5px;
}

.tdFieldName
{
	width: 60%;
	vertical-align: top;
	padding-top: 5px;
	padding-left: 3px;
}

.tdHeaderIcons
{
	width: 30px;
}

.tblInfoDetails
{
	width: 100%;
	padding-top: 5px;
	padding-left: 5px;
}

.tdClose
{
	width: 10%;
}

.tblAddressResultContainer
{
	width: 100%;
	margin: 8px 5px 8px -2px;
}

.divBreadCrumbs
{
	display: none;
	padding: 2px 2px 5px 0px;
}

.trContentHeader
{
	vertical-align: top;
	height: 30px;
}

.tdAddressContentHeader
{
	vertical-align: middle;
	padding-left: 8px;
}

.tdExportContentHeader
{
	vertical-align: middle;
	padding-left: 8px;
}

/*---------------------------------------------------------------------------------------------------------*/
/*7.Styles for BaseMap Container*/

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

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

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

.divLayerContentHolder
{
	overflow: auto;
	padding: 7px;
	position: absolute;
	overflow: hidden;
}

/*---------------------------------------------------------------------------------------------------------*/
/* 8.Styles for InfoWindow*/

.divInfoWindowContainer
{
	z-index: 1000;
	position: absolute;
	background-color: #585858;
	color: #fff;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.divTriangle
{
	border: solid 20px transparent;
	border-top-color: #585858;
	border-bottom: 0;
	width: 0;
	height: 0;
	overflow: hidden;
	display: block;
	position: relative;
	margin: auto;
	bottom: 0px;
}

.dj_ie .divInfoWindowContainer
{
	border: none;
}

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

.imgInfoWindow
{
	position: relative;
}

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

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

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

.divPermitDataScrollContainer
{
	position: relative;
}

.tdInfoHeader
{
	font-weight: bolder;
}

.divInfoDetails
{
	margin-left: 5px !important;
	position: relative;
}

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

.title
{
	font-weight: bolder;
}

.divInfoWindowContainer .content
{
	position: relative;
	color: #fff;
	overflow: auto;
}

.divInfoWindowContainer .title
{
	font-weight: bolder;
	height: 21px;
	padding: 7px 3px 2px 7px !important;
	color: #fff;
	background-color: #303030;
	-moz-border-radius-topleft: 7px;
	-moz-border-radius-topright: 7px;
	-moz-border-radius-bottomleft: 0px;
	-moz-border-radius-bottomright: 0px;
	-webkit-border-top-left-radius: 7px;
	-webkit-border-top-right-radius: 7px;
	-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: gray 1px solid;
}

.tdLabel
{
	vertical-align: middle;
	padding-left: 7px;
	width: 98%;
}

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

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

/*---------------------------------------------------------------------------------------------------------*/
/* 9.Styles for custom scrollbar*/

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

.scrollbar_handle
{
	position: relative;
	width: 8px;
	background-color: gray;
	-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");
}

.scrollbar_container
{
	height: 128px;
	position: relative;
}

.scrollbar_content
{
	overflow: hidden;
	height: 124px;
}

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

.divLoadingIndicator
{
	height: 100%;
	width: 100%;
	display: none;
	z-index: 1004;
	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");
}

/*---------------------------------------------------------------------------------------------------------*/
/*11. Styles for esri slider*/

.esriSimpleSliderHomeButton
{
	border-bottom: 2px solid #666666;
	background-image: url('../images/home.png');
	background-repeat: no-repeat;
	background-position: center;
}

/*---------------------------------------------------------------------------------------------------------*/
/*11. Styles for checkbox and radio box*/

label {
	display: inline-block;
	cursor: pointer;
	position: relative;
	padding-left: 25px;
	margin-right: 15px;
	font-size: 13px;
}

input[type=radio],
input[type=checkbox] {
	display: none;
}

label:before {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-right: 10px;
	position: absolute;
	left: 0;
	bottom: 1px;
	background-color: #aaa;
	box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, .3), 0px 1px 0px 0px rgba(255, 255, 255, .8);
}
.radio label {
	margin-bottom: 10px;
}

.radio label:before {
	border-radius: 8px;
}

.checkbox label {
	margin-bottom: 10px;
}

.checkbox label:before {
	border-radius: 3px;
}

input[type=radio]:checked + label:before {
	content: "\2022";
	color: #f3f3f3;
	font-size: 30px;
	text-align: center;
	line-height: 13px;
 
}

input[type=checkbox]:checked + label:before {
	content: "\2713";
	text-shadow: 1px 1px 1px rgba(0, 0, 0, .2);
	font-size: 15px;
	color: #f3f3f3;
	text-align: center;
	line-height: 15px;
}