/* Public Web Map CSS definitions*/
/* Author: Andrew Stickney
    GIS Technician
    Forest Preserve District of Will County
    17540 W. Laraway Road 
    Joliet, IL 60433 
    815.722.9391 
    astickney@fpdwc.org */


/* This provide default formatting for text
    within the web page's body that do not inherit other style settings
    Note: all styles below the body style inherit the font-family setting */



body
{
    text-align: left;
    font-family: Verdana;
    color: #000000;
    font-size: 12px;
    font-weight: normal;
    /*width: 950px; OLD version*/
    width:100%;
    max-height: 20000px;
    position:absolute; /*this means that all elements contained within are positioned relative to the body structural element*/
    padding: 5px;
}

 /*default color and line settings for links that have not been clicked*/
a:link
{
    color: black;
    text-decoration:none;
}
/* color and line settings for links that have been clicked */
a:visited 
{
    color: #000000;
    text-decoration: none;
}

/* color and line settings for links when the mouse hovers over them*/
a:hover 
{
    color: #7B7F81;
    text-decoration: none;
}

/*this provides formatting for the floating "back to top" link */
a.backtotop
{
background-color:Gray;
border-color:Gray;
border-width:thin;
border-style:solid;
position:fixed;
bottom:10px;
left:500px;
z-index:+2;
text-align:center;
color:White;
width:100px;
margin:0px, 0px,10px, 0px;
}


/*This provides formatting for the introductory (title) header*/
.introduction
{
    line-height: 55px;
    color: rgb(93,135,60);
    font-size: 24px;
    font-weight: normal;
}

/* these settings provide spacing/padding for div containers*/

.heading { /* this is for question divs*/
/*margin: 1px;*/
padding: 0px;
cursor: pointer;
}
.content { /* this is for answer divs*/
padding: 0px;

}
.FAQWrapper { /*this is for the FAQ wrapper div*/
padding-bottom: 30px;
}
.LinkWrapper { /*this is for the "Back to Top" div*/
padding-top: 30px;
}

/* This provides formatting for question text*/
.question
{
    color: black;
    font-size: 14px;
    font-weight: bold;
    width:80%
}
/* This provides formatting for answer text*/
.answer
{
    color: black;
    font-size: 12px;
    font-weight: normal;
    max-width: 90%
   /* background-color:#ECE7F2;*/
}

/* This provides formatting for section header (e.g. Map Navigation)*/
h1
{
    color: rgb(93,135,60);
    font-size: 16px;
    font-weight: bold;
}


/* This provides formatting for table cells*/
td
{
    margin:1px; /*this formats the spacing between cells themselves;*/
    padding: 1px; /* this formats the spacing between cell walls and contents*/
    vertical-align: middle; /* this determines text alignment within cells*/ 
}

/*provides a border for images*/
img
{
border-style:solid;
border-width:1px;
max-width: 100%;
height: auto;

}

/*provides default formatting for paragraphs that contain text*/
p
{
position:relative;
width:80%; /*standardize width for text*/
padding:5px;
}

/*provides special formatting for introductory text that needs longer width*/
p.intro
{
width:80%;
}

