@charset "UTF-8";

/* CSS Document */

body {
background-image:image("subtle_white_mini_waves.png");   
}

#nav {
width: 1200px;
margin: auto;
display:block;
font-family: Verdana, Arial, sans-serif;
font-size: 1.5rem;
padding: 10px 0px 10px 0px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
background: -moz-linear-gradient(
        0deg, lightgreen, forestgreen);
    background: -webkit-gradient(
        0deg, green, forestgreen);
    background: linear-gradient(0deg, lightgreen, forestgreen);
text-align: center;
background-position: center;
top: -75px;
}    

/* Nav Menu Styling */

nav ul {
    margin: 0;
    padding: 0;   
}

nav li {
    list-style-type:none;
    display:inline;
}

nav a {
    padding: 10px 30px 10px 30px;
    border-radius: 15px;
    text-shadow: 1px 1px 1px #d69305;
}

nav a:link {
    text-decoration: none;
    color: #0738b5;   
}

nav a:visited {
    color:#0738b5;
}

nav a:hover {
    color:black;
}

h1 {
font-family: Futura Italic, Arial, sans-serif;
color:#0632a0;
text-align:center;
font-size: 3rem;  
}

h2 {
font-family: Arial, Skia, sans-serif;
color:forestgreen;
text-align:justify;
font-size: 2.25rem; 
}

h3 {
color:#0632a0;
font-size: 1.5rem;
}

#content {
width: 1000px; 
margin: auto;
color: #888888;
padding: 10px 0px 40px 0px;    
}

p {
font-family: Arial, Arial, sans-serif;
text-align: justify;
font-size: 1.25rem;
padding-left:0px;
padding-right:20px;
}

#footer {
font-family: Verdana, Arial, sans-serif;
font-size: 1.25rem;
line-height:1.2;
text-align: center;
padding: 20px 0px 40px 0px;
margin:auto;
height:auto;
}

#footer p {
    color: #888888;
}

/* Custom Classes */

h1.place {
position: relative;
text-align: left;
top: 20px;
left:300px;
}

h3.colorgreen {
    color:forestgreen;
}

.center {
    margin: auto;
    width: 50%;    
}

.floatleft {
    float:left;
    padding-right: 100px;
}

.floatright {
    float:right;
}

img.floatleft {
max-width: 100%;
height: auto;
float: left; 
margin: 0px 20px 20px 0px;
}  

img.floatright {
max-width: 100%;
height: auto;
float: right; 
margin: 0px 0px 20px 20px;
}  

.marg1 {
    margin: 200px, 0px, 0px;
}

ul.style {
    font-size: 1.25rem;
}

.caption {
    font-family: Helvetica Neue Medium, Arial, sans-serif;
}

.copyright {
    text-align: center;
    font-size: .95rem;
    color: black;   
}

form {
    margin: auto;
    width:75%;
    background-image: url("images/abstract_orange_background.jpg");
    padding: 30px;
    border-radius: 30px;
    color: #ffffff;
}

fieldset {
    border-radius: 10px;
}

/* CSS Styled Button
*/
button.css3button {
    margin-left: 280px;
	font-family: Verdana, Skia, sans-serif;
	font-size: 1rem;
	color:#0632a0;
	padding: 10px 20px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	
}

button[type="reset"] {
    margin-left: 10px;
    padding: 10px 28px;

}

/* footer Styled Links */

footer ul {
    margin: 0;
    padding: 0;   
}

footer li {
    list-style-type:none;
    display:inline;
}

footer a {
    padding: 5px 5px;
}

footer a:link  {
    text-decoration: none;
    color:forestgreen;
}

footer a:visited {
    color:forestgreen;
}

footer a:hover {
    color:#000000;
}

#mobileMenu {
    display: none;
    width: 100%;
    background-color: #7f7;
}

/* this does the toggling of the menu */
.menu-show {
    display: block !important;
}

/* forces the hamburger menu to be invisible for desktop */
.mobileMenuToggle {
    display: none;
}

#mobileMenu ul {
    list-style-type: none; 
    padding: 20px;
    z-index: 1;
} 

#mobileMenu li { display: block;
    padding: 8px 16px;
}

#mobileMenu li a {
    padding: 8px 16px;
    width: 100px;
    text-decoration: none;
}

#mobileMenu li a:hover {
    background-color: #cfc;
}

/* Media Query for Mobile version */
@media only screen and (max-width: 768px) {
/* all my overrides for mobile go in here */

body {
    width: 99%;
    }

nav {display: none;}

nav li { 
    display: none;
    }

#content {
    width:100%;
    line-height: 1.2;
}

.floatright {
    float:left;
}

img {
    max-width: 100%;
    height: auto;
    }
 
.mobileImg {
    height:auto;
    max-width:100%;
    float:none;
}

.center {
    max-width: 100%;
    height: auto;
}

.mobile {
    display:block;
}

.mobileMenuToggle {
position: absolute;
display: block;
top: 0.8rem;
right: 0.8rem;
border: 0;
text-indent: 200%;
font-size: 1em;
overflow: hidden;
}

.mobileMenuToggle button {
font-size: 1.5em;
width: 2.5rem;
height: 2.5rem;
padding: 0px;
margin: 0px;
border: 1px solid black;
color: black;
background-color: transparent;
}

/* Martin added the following to fix the embedded video on the home page */ 
.videoWrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
}
.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



















































