﻿/*
  | 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: black;
    -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;
}

.divSplashContainer {
    overflow: hidden;
    position: relative;
}

.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;
    -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%;
}

/*---------------------------------------------------------------------------------------------------------*/
/*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;
}

.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%;
}

.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%;
}

.iconBtn {
    height: 30px;
    line-height: 3;
    text-align: center;
    width: 30px;
    cursor: pointer;
    padding: 0px;
}

.imgOptions {
    height: 30px;
    width: auto;
    white-space: nowrap;
    color: #213F99;
    margin-right: 12px;
}

    .imgOptions:hover {
        color: #1980ad;
    }

    .imgOptions span.textLink {
        font-size: 12px !important;
        letter-spacing: 2px;
        word-spacing: -8px;
        position: relative;
        bottom: 6px;
        padding: 0 6px 0 4px;
    }
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-width : 768px) and (max-width : 1024px) {
    /* Styles */
    .imgOptions {
        margin-right: 6px;
        font-size: smaller;
    }

        .imgOptions span.textLink {
            padding: 0 4px 0 2px;
            font-size: 9px;
            bottom: 3px;
        }
}

@media only screen and (max-width : 950px) {
    /* Styles */
    .imgOptions {
        font-size: 1em;
    }

        .imgOptions span.textLink {
            display: none;
        }
}


.imgApp {
    width: 64px;
    height: 64px;
}

.divLogo {
    position: absolute !important;
    top: 0px;
    left: 0px;
    width: 374px;
    height: 55px;
    z-index: 1006;
    display: none;
    background: #fff url(../images/general-assembly.png) no-repeat center center;
}

.divApplicationHeader {
    vertical-align: middle;
    background: #fff;
    top: 0px;
    height: 55px;
    width: 100%;
    position: absolute;
    z-index: 1005;
    overflow: hidden;
    font-size: 24px;
    box-shadow: -1px 1px 5px #888888;
}

.lblAppName {
    padding-left: 100px;
}

/*---------------------------------------------------------------------------------------------------------*/
/*AddressContainer Styles*/

.divAddressScrollContainer {
    overflow: hidden;
    position: relative;
}

.divAddressScrollContent {
    overflow: hidden;
    /*width: 93%;*/
    color: White;
}

.tblHeader {
    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;
    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;
}

.searchInput {
    position: absolute;
    top: 65px;
    right: 22px;
    z-index: 99;
}

.txtAddress {
    background-color: #f1f1f1;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #696969;
    width: 360px;
    outline: none;
    vertical-align: middle;
    font-family: Verdana !important;
    font-size: 15px !important;
    color: #727272;
    padding: 0px 36px 0 4px !important;
}

    .txtAddress:focus {
        color: #242424;
    }

.imgLocate {
    position: absolute;
    cursor: pointer;
    right: 4px;
    top: 10px;
    color: #646464;
}

.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;
    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: #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;
}

.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: #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-top-left-radius: 7px;
    border-top-right-radius: 7px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom: gray 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");
}

.divDetailsHeader {
    height: 30px;
    position: relative;
    -moz-border-radius-topleft: 10px;
    -webkit-border-top-left-radius: 10px;
    -moz-border-radius-topright: 10px;
    -webkit-border-top-right-radius: 10px;
    border-radius: 10px 10px 0px 0px;
    background-color: #303030;
    behavior: url("styles/PIE.htc");
}

.divContentStyle {
    background-color: #626262;
    height: 150px;
    position: relative;
    width: 100%;
    -moz-border-radius-bottomleft: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-bottomright: 10px;
    -webkit-border-bottom-right-radius: 10px;
    border-radius: 0px 0px 10px 10px;
    behavior: url("styles/PIE.htc");
    overflow: hidden;
}

.divCarouselDataContent {
    float: left;
    height: 100%;
    position: absolute;
    left: 0px;
    vertical-align: middle;
}

.divServiceContainer {
    height: 20px;
    width: 100%;
    background-color: transparent;
    position: relative;
    overflow: hidden;
    z-index: 100;
    float: left;
}

.divServiceContent {
    height: 20px;
}

.tablePickUp {
    background-color: Black;
    border-color: white;
    margin-top: 10px;
}

.tdBreakWord {
    display: inline-block;
    word-break: break-all;
    word-wrap: break-word;
}

.divCarouselDataContainer {
    height: 200px;
    width: 100%;
    background-color: transparent;
    position: relative;
    overflow: hidden;
    float: left;
}


/*---------------------------------------------------------------------------------------------------------*/
/* 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;
}


#tblAddressResults ul {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}

#tblAddressResults li.searchresult-item {
    width: 100%;
    margin: 0.12em 0;
    padding: 0.4em;
    background-color: transparent;
    border-bottom: solid 1px #1b1b1b;
    cursor: pointer;
}

    #tblAddressResults li.searchresult-item:hover {
        background-color: #696969;
    }

.animate {
    transition: transform 0.3s ease-out;
}

#MyLegSlideContainer {
    position: absolute;
    width: 100%;
    height: 300px;
    bottom: 0px;
}

#mylegDatails {
    background: none repeat scroll center center rgba(255, 255, 255, 0.5);
    bottom: 0;
    height: 312px;
    position: absolute;
    width: 100%;
    z-index: 40;
    border-top: rgba(128, 128, 128, 0.50) solid 1px;
    color: #333333;
    overflow-x: scroll;
    overflow-y: hidden;
    -ms-scroll-chaining: none; /**/
    /* Prevents Metro from swiping to the next tab or app. */
    -ms-scroll-snap-type: mandatory;
    /* Forces a snap scroll behavior on your images.*/
    -ms-scroll-snap-points-x: snapInterval(0%, 100%);
    /* Defines the y and x intervals to snap to when scrolling. */
    -ms-scrollbar-face-color: White;
    scrollbar-face-color: White;
    -ms-scrollbar-highlight-color: #000000;
    scrollbar-highlight-color: #000000;
    -ms-scrollbar-3dlight-color: #939393;
    scrollbar-3dlight-color: #939393;
    -ms-scrollbar-darkshadow-color: #000000;
    scrollbar-darkshadow-color: #000000;
    -ms-scrollbar-shadow-color: #213F99;
    scrollbar-shadow-color: #213F99;
    -ms-scrollbar-arrow-color: #585858;
    scrollbar-arrow-color: #585858;
    -ms-scrollbar-track-color: #303030;
    scrollbar-track-color: #303030;
}


#slideToggler {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 12px;
    bottom: 300px;
}

    #slideToggler .btn {
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
        border-top: none !important;
        position: relative;
        z-index: 50;
        width: 68px;
    }

#MyLegSlideContainer.wml-hidden > div#slideToggler {
    bottom: 322px;
}

    #MyLegSlideContainer.wml-hidden > div#slideToggler .glyphicon.glyphicon-chevron-down, #MyLegSlideContainer.wml-visible > div#slideToggler .glyphicon.glyphicon-chevron-up {
        display: none;
    }

    #MyLegSlideContainer.wml-hidden > div#slideToggler .glyphicon.glyphicon-chevron-up, #MyLegSlideContainer.wml-visible > div#slideToggler .glyphicon.glyphicon-chevron-down {
        display: block;
    }



#mylegDatails div#mylegNodes {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    /*width:100%;*/
    height: 300px;
    white-space: nowrap;
}


    #mylegDatails div#mylegNodes section {
        width: 29.5em;
        height: 280px;
        /*float: left;*/
        border: #7AC9EC solid 1px;
        -moz-background-clip: content-box;
        -webkit-background-clip: content-box;
        background-clip: content-box;
        margin: 0.4em;
        padding: 0.6em;
        display: inline-block;
        background: transparent url(../images/transparent.png) repeat;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
        position: relative;
        opacity: 0;
        float: left;
        -moz-transition: display 2s ease 0.5s,opacity 0.5s linear;
        -o-transition: display 2s ease 0.5s,opacity 0.5s linear;
        -webkit-transition: display 2s ease 0.5s,opacity 0.5s linear;
        transition: display ease 2s,opacity 0.5s linear;
    }

        #mylegDatails div#mylegNodes section:hover {
            border-color: #213f99;
            background-color: #fff;
        }

        #mylegDatails div#mylegNodes section.selected {
            border-color: transparent;
            background-color: #7AC9EC;
        }

        #mylegDatails div#mylegNodes section.hideNode {
            display: none;
            opacity: 0;
        }

        #mylegDatails div#mylegNodes section.showNode {
            display: inline-block;
            opacity: 1;
        }

div#mylegNodes section .member-info {
}

div#mylegNodes section h2 {
    font-size: 1.6em;
    font-weight: bold;
}

div#mylegNodes section h3 {
    font-size: 1.5em;
}

div#mylegNodes section .member-info label {
    margin-left: 4px;
    padding-right: 12px;
}

div#mylegNodes section .member-header {
    height: 14px;
    background-color: #213F99;
}

div#mylegNodes section div.district-boundaries {
    background-color: #213F99;
    bottom: 0;
    color: #fff;
    height: 33px;
    left: 0;
    line-height: 33px;
    position: absolute;
    right: 0;
    text-align: center;
    -webkit-bottom-left-radius: 3px;
    -moz-bottom-left-radius: 3px;
    border-bottom-left-radius: 3px;
    -webkit-border-bottom-right-radius: 3px;
    -moz-border-bottom-right-radius: 3px;
    border-bottom-right-radius: 3px;
    cursor: pointer;
}

div#mylegNodes section.selected div.district-boundaries {
    background-color: #fff;
    color: #9ca1b0;
}

#mylegNodes #noresults {
    display: none;
}
#mylegNodes #noresults > div {
    width: 29.5em;
    height: 280px;
    /*float: left;*/
    border: #7AC9EC solid 1px;
    -moz-background-clip: content-box;
    -webkit-background-clip: content-box;
    background-clip: content-box;
    margin: 0.4em;
    padding: 0.6em;
    display: inline-block;
    background: transparent url(../images/transparent.png) repeat;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    position: relative;
    float: left;
    -moz-transition: display 2s ease 0.5s,opacity 0.5s linear;
    -o-transition: display 2s ease 0.5s,opacity 0.5s linear;
    -webkit-transition: display 2s ease 0.5s,opacity 0.5s linear;
    transition: display ease 2s,opacity 0.5s linear;
    white-space:normal;
}
