 
/*DOM objects*/
body {
    background: gray 10%; 
    /*em's a scalable unit (2em = 2* font size)*/
    font-size: 12pt;
    font: 1em tahoma, sans-serif;
    font-weight: normal;
    /*font-family: Georgia, Times New Roman;*/
    /*font-size: 10pt;*/
    /*padding-top: 10px;*/
    margin: 0;
    color: #000;
	}

highlight {
	background-color: white;
	}

abbr, acronym {
	border-bottom: 1px dotted #ddd;
	cursor: help;
	}

/* class linkDisplay */

@media all and (max-width: 600px) { /*apply to all viewports with widths smaller then 600px*/

#flexBody{
    position: absolute;
    /*width: 90%;*/
}
#flexHeader{
    display: flex;
    display: -webkit-flex;
    display: -ms-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
}
    #Logo {
        /*position: absolute;*/
        left: 10px;
        top: 25px;
        width: 125px;
        height: 48px;
        background: #99ff00; /* bright green */
        z-index: 2;
        /*flex-order: 1;*/
        order: 1;
        -webkit-order: 1;
    }
    #Logo img {
        position: relative;
        top: 2px;
        left: 2px;
    }   
 /*Awidget holds the right side top */
#Awidget {
    display: block;/*added 3/31*/
    background: lightgray;
    left: 15%;
    width: auto;
    height: auto;
    border: #000 1px solid;
    margin: 10px;
    padding: 10px;
    z-index: 1;
    font-style: normal;
    /*flex-order: 2;*/
    order: 2;
    -webkit-order: 2;
    }
#Awidget h3{
    border: 1px solid ;
    border-color: green;
}
    /* DIV container */
.flexContainer{
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
#flexSupport{
    display: flex;
    display: -webkit-flex;
    display: -ms-flex;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    direction: column;
    border: #000 1px solid;
    margin: 10px;
    padding: 10px;
    background: transparent url(./thumb/paper__ppbk078b.jpg) repeat;
}
#container {
    display: block; /*added 3/31*/
    background: transparent url(./thumb/paper__ppbk078b.jpg) repeat;
    top: 50px;
    left: 10%;
    width: auto;
    height: auto;
    border: #000 1px solid;
    margin: 10px;
    padding: 10px;
    z-index: 2;
    /*font-style: normal;*/
    }
#container h3 {
    font: 14pt tahoma, sans-serif;
    font-weight: lighter;
    text-align: left;
    margin: 0;
    }
#supportPages {
    display: block;/*added 3/31*/
    width: 150px;
    height: auto;
    }
    /* ul */
.pageList {
    margin: 0 0 0 0px;
    padding: 0;
    width: 147px;
    list-style-type: none;
    list-style-image: none;
    }
    /*LinkDisplay*/
.linkDisplay {
    width: 147px;
    height: auto;
    position: relative;
    left: 15px;
    background-image: url(./thumb/SignBoardBrown.JPG);
    cursor: pointer;
    text-align: center;
    border-bottom-style: outset;
    border-right-style: outset;
    }
a.linkDisplay {
    color: black;
    text-decoration: none;
    display: block;
    }
a:hover.linkDisplay {
    background-image: url(./thumb/SignBoardWhite.jpg);
    text-decoration: none;
    color: white;
    cursor: pointer;
    position: relative;
    text-align: center;
    display: block;
    border-bottom-style: outset;
    border-right-style: outset;
    }
a.infoText {
    /*position: relative; this is the key*/
    z-index: 24;
    background-color: gray;
    color: white;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    }
a.infoText:hover {
    z-index: 1;
    }
a.infoText span {
    display: none;
    }
 a.infoText:hover span { /*the span will display just on :hover state*/
    display: block;
    position: relative;/*edited 3/31*/
    /*removed top: auto; 3/31*/
    right: auto;
    width: 90%; /*changed from 125px to 90% 3/31*/
    height: auto;
    /*left:-15em; width:24em;*/
    border: 10px solid lightgray; /*#99ff00;*/
    background-color: lightgray;
    color: black;
    /*background-color:#cff; color:#000;*/
    text-align: left;
    text-decoration: none;
    }
}


@media all and (min-width: 600px) { /*this will be applied to any viewport that is greater then 600px*/
#flexBody{
    position: absolute;
    width: 90%;
    left: 10%;
}
#flexHeader{
    display: flex;
    display: -webkit-flex;
    display: -ms-flex;
    width: 60%;
    margin-left: 15%;
    flex-direction: row;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
    -ms-justify-content: flex-end;
    z-index: 5;
}
    #Logo {
        position: absolute;
        left: 10px;
        top: 25px;
        width: 125px;
        height: 48px;
        background: #99ff00; /* bright green */
        z-index: 3;
        /*flex-order: 1;*/
        order: 1;
    }
    #Logo img {
        position: relative;
        top: 2px;
        left: 2px;
    }   
 /*Awidget holds the right side top */
#Awidget {
    display: block;/*added 3/31*/
    background: lightgray;
    /*left: 15%; removed 4/20/16*/
    width: auto;
    height: auto;
    border: #000 1px solid;
    margin: 10px;
    padding: 10px;
    z-index: 1;
    font-style: normal;
    /*flex-order: 2;*/
    order: 2;
    -webkit-order: 2;
    }
#Awidget h3{
    border: 1px solid ;
    border-color: green;
    }
#flexSupport{
    display: flex;
    display: -webkit-flex;
    display: -ms-flex;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    direction: column;
    left: 10%;
    width: 70%;
    padding: 10px;
    margin: 10px;
    background: transparent url(./thumb/paper__ppbk078b.jpg) repeat;
    border: #000 1px solid;
}
/* DIV container */
#container
{
    background: transparent url(./thumb/paper__ppbk078b.jpg) repeat;
    display: block; /*added 3/31*/
    /*position: absolute;*/
    /*top: 50px;*/
    left: 10%;
    width: 70%;
    height: auto;
    border: #000 1px solid;
    margin: 10px;
    padding: 10px;
    z-index: 2;
    font-style: normal;
}
#container h3 {
    font: 14pt tahoma, sans-serif;
    font-weight: lighter;
    text-align: left;
    margin: 0;
    }
#supportPages {
    display: block;/*added 3/31*/
	/*position: absolute;
	top: 50px;
	right: 20px;*/
	width: 150px;
	height: auto;
	}
/* ul */
.pageList {
	margin: 0 0 0 0px;
	padding: 0;
	width: 147px;
    list-style-type: none;
    list-style-image: none;
	}
.linkDisplay {
    width: 147px;
    height: auto;
    position: relative;
    background-image: url(./thumb/SignBoardBrown.JPG);
    cursor: pointer;
    text-align: center;
    border-bottom-style: outset;
    border-right-style: outset;
    }
a.linkDisplay {
    color: black;
    text-decoration: none;
    display: block;
    }
a:hover.linkDisplay {
    background-image: url(./thumb/SignBoardWhite.jpg);
    text-decoration: none;
    color: white;
    cursor: pointer;
    position: relative;
    text-align: center;
    display: block;
    border-bottom-style: outset;
    border-right-style: outset;
    }
a.infoText{
    position:relative; /*this is the key*/
    /*z-index:24; removed 3/31*/
    background-color:gray;
    color:white;
	text-align: center;
    text-decoration:none;
    cursor: pointer;
}
a.infoText:hover{z-index:1;}
a.infoText span{display: none;}
a.infoText:hover span{ /*the span will display just on :hover state*/
    display: block;
    position: absolute;
	top: auto; 
    right: 10%;/*change from auto 3/31*/
    width: 200px; /*changed from 120 to 200 3/31*/
    height: auto;
    /*left:-15em; width:24em;*/
    border:10px solid lightgray; /*#99ff00;*/
	background-color:lightgray; color:black;
    /*background-color:#cff; color:#000;*/
    text-align: left;
	text-decoration:none;
		}
}


#imgBoxTop {
	left: 0px;
	top: 50px;
	width: 70%;
	/*height: 375px;*/
	}
	
#imgTop {
	position: relative;
	left: 0px;
	top: 0px;
	}
#imgBoxBottom {
	position: relative;
	width: 100%;
	height: 375px;
	bottom: 0px;
	}
	
#imgBottom {
	position: absolute;
	bottom: 0px;
	right: 0px;
	}

.imgBorder {
	border-left-color: #ffffcc;
	border-left-style: double;
	border-left-width: thick;
	border-top-color: #ffffcc;
	border-top-style: double;
	border-top-width: thick;
	border-right-color: #ffffcc;
	border-right-style: outset;
	border-bottom-color: #ffffcc;
	border-bottom-style: outset;
    max-width: 100%; 
    max-height: 100%;
	}

