:root {
    --primary: #002856;
    --secondary: #99D3D6;
    --bglight: rgb(238, 238, 238);
    --bgdark: #CCC;
    --bgpage: #fafafa;
    --accent: #F15A29;
}

.defense_color {
    fill: var(--primary);
}

.civilian_color {
    fill: var(--secondary);
}

.civilian_color {
    fill: var(--accent);
}

.total_color {
    fill: var(--bgdark);
}

body {
    /*font-family: 'Open Sans', verdana, arial, sans-serif;*/
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    font-size: 1.1rem;
    line-height: 1.3;
    background-color: var(--bgpage);

}

.grid {
    display: grid;
    grid-template-columns: .5fr 3fr .5fr;
    grid-template-areas: 
        ". topspace ."
        ". content .";
    grid-template-rows: 100px auto;
    align-items: start;
}

.content {
    grid-area: content;
    align-items: center;
    background-color: var(--bglight);
    
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 200px auto;
    grid-template-areas: 
        "title"
        "overview"
        "fig1"
        "fig2"
        "fig3"
        "fig4"
        "fig5"
        "footer"
        "osm";
    text-align: center;
    
}

/******   Title Block   **********/

.title {
    grid-area: title;
    height: 100%;
    width: 100%;
    background-color: var(--primary);
    color: white;
    
}

.interactive {
    height: 20px;
    width: 20px;
    display: inline-block;
}

.dl_button {
    margin-top: 100px;
    margin-left: 60%;
    width: 40%;
    /* height: 35px; */
    border: 1px;
    border-style: solid;
    font-size: 12px;
    line-height: 35px;
    text-align: center;
}

.tooltip {	
    		
    text-align: center;			
    /* width: 100px;	 */
    min-width: 60px;
    max-width: 200px;	
    min-height: 30px;
    max-height: 60px;			
    /* height: 45px;					 */
    padding-top: 6px;				
    font: 12px sans-serif;		
    background: white;
    color: var(--primary);	
    border: 0px;		
    border-radius: 8px;			
    position: absolute;
    z-index: 20;
    pointer-events: none;
    			
}



h2 {
    font-size: 2rem;
    font-weight: bold;
}

.overview {
    grid-area: overview;
    
}

/*****************    Figure 1  *****************/

.fig {
    margin-left: 5%;
    margin-right: 5%;
    width: 90%;
    margin-bottom: 30px;
}

.fig1 {   
    grid-area: fig1;
}


.fig1_rect {
    stroke: white;
    stroke-width: 1px;
}





.fig4 {
    grid-area: fig4;
    
}

.fig5 {
    grid-area: fig5;
    
}

.gheader {
    font-size: 37px;
    
    font-weight: 300;
    border-top: 3mm solid black;
    text-align: left;
    /* margin-left: 5%;
    margin-right: 5%;
    width: 90%; */
    width: 100%;
    justify-self: flex-start;
    
    
}



.gtext {
    margin-left: 50px;
    margin-right: 50px;
    margin-top: 25px;
    margin-bottom: 25px;
    font-size: 21px;
    font-weight: bold;
    line-height: 1.3;
}

.textblurb {
    margin-left: 25px;
    margin-right: 25px;
    
    margin-top: 25px;
    margin-bottom: 25px;
    font-size: 21px;
    font-weight: bold;
    line-height: 1.3;
    text-align: center;
}

.intro {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
}


.plot {
    margin: 50px;
    background-color: var(--bglight);
}

.plot1 {
    width: 600px;
    height: 350px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    
}

.fig2 li {
    font-size: .8em;
    text-indent: 5px;
    text-align: left;
}

.footer {
    width: 100%;
    background-color: var(--primary);
    color: white;
    height: 120px;
    text-align: left;
    font-size: 28px;
    grid-area: footer;
    margin-bottom: 30px;
}

.footer p {
    margin-left: 5%;
    margin-bottom: 0;
}

.footer a {
    color: var(--secondary);
    font-size: 20px;
    margin-left: 5%;
    
}

.osm {
    grid-area: osm;
    display: grid;
    width: 90%;

    text-align: left;
    font-size: 12px;
    margin-left: 5%;
    margin-bottom: 60px;
    

}

.grayedout {
    opacity: 25%;
}