﻿@charset "utf-8";
/* The line above (@charset "utf-8";) is important 
for Firefox & Chrome to read the CSS.  Otherwise, 
these browsers will act like there is no CSS at all
and formatting will be all messed up.  THIS LINE OF 
CODE MUST BE ON LINE 1 OF THE CSS!!!*/




/* DCNR, Bureau of Forestry - CSS Document */
/* Author:  Nathan Dewar / Joe Petroski */
/* Created:  December 2020 */




/* 
 PA Design Standards (Color Pallette) -  https://www.pa.gov/design-standards/styles#color-palette
 PA Design Standards (Tables) - https://www.pa.gov/design-standards/components#tables
*/


html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: Montserrat; /* Arial */
    color: #464646; /* PA standard dark gray */ /* default text color */
    background-color: #EBEBEB; /* PA standard light gray */
}

#mainWindow {
    width: 100%;
    height: 100%;
}

#mapDiv {
    margin: 0;
    padding: 0;
    z-index: 1;
}

#leftDiv {
    margin: 0;
    padding-left: 10pt;
    width: 300px;
    z-index: 2;
}

#topDiv {
    overflow: hidden;
    margin: 0;
    padding: 2px 0px 0px 10px;
    width: 100%;
    z-index: 3;
}

#homeButton {
    position: absolute;
    top: 95px;
    left: 20px;
    z-index: 50;
}

#basemapToggle {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 50;
}

.claro .dijitButton .dijitButtonNode {
    background-image: none;  /*Important!*/
    background-color: #464646;
    color: #FFFFFF;
    border: 0px;
}

