/*RESET*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {margin:0; padding:0; border:0; outline:0; font-size:100%; vertical-align:baseline; background:transparent;} body {line-height: 1;}ol, ul{list-style:none;} blockquote, q{quotes:none;} blockquote:before, blockquote:after, q:before, q:after{content:'';content:none;} :focus{outline:0;} ins{text-decoration:none;} del{text-decoration:line-through;} table{border-collapse:collapse; border-spacing:0;}

/*MAIN CODE FOR BODY*/
body {
font-size: 1.25em; /*20px*/
line-height: 1.25em; /*line spacing*/
font-family: arial;
background: #48D1CC	;
color: Black;/*font color*/
}

/*controls for top area of page-header*/
header {
background: #79CDCD; /*background color of header*/
width: 100%; /*100% of screen area*/
height: 76px;
position: fixed; /*stays in place*/
top: 0; /*top margin*/
left: 0; /*left margin*/
border-bottom: 4px solid #4C9CF1; /*border on bottom of link area*/
z-index: 100;
}

.img_banner{
margin-top:20px;
width: 100%;
border:2px solid pink;
}


/*Link area settings*/
nav {
float: right;
padding:20px;
}


/*Main link controls*/
a {
color: #104E8B;
text-decoration: none;
font-weight: bold;
}
/*Link HOVER*/
a:hover {
color: #444;
text-decoration:none;
}

/***Mobile menu icon controls***/
#menu-icon {
display: hidden; /*hidden until @media activates*/
width: 40px;
height: 40px;
background: blue url(../images/menu-icon.png) center;
}

/*when person touches or mouse goes over mobile icon on smaller screen*/
a:hover#menu-icon {
background-color: red;
border-radius: 4px 4px 0 0;
}

ul {
list-style: none;
}

li {
display: inline-block;
float: left;
padding: 10px
}



/***Setup of SECTION area where items show on page***/
section {
margin: 80px auto 40px;
max-width: 1000px; /*width of display area*/
position: relative;
padding: 20px
}




/*****MEDIA QUERY-changes website for mobile or smaller screens*****/
@media only screen and (max-width : 700px) {

/*Main page @ media controls*/
header {
position: fixed;
}

#menu-icon {
display:inline-block;
}

nav ul, nav:active ul {
display: none;
position: fixed; /*was moving-absolute*/
padding: 20px;
background: #fff;
border: 5px solid #444;
right: 20px;
top: 60px;
width: 35%;
border-radius: 4px 0 4px 4px;
}

nav li {
text-align: center;
width: 100%;
padding: 10px 0;
margin: 0;
}

nav:hover ul {
display: block;
}

/***Place other @media controls below here***/



}/*closes @media section*/