@charset "utf-8";
/* CSS Document */

html,body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
	overflow-x: hidden;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    font-weight: 300;
    color: #2F4F4F;
    line-height: 30px;
    text-align: left;
}

/* Highlighted by user */
::selection {
    background: #ca8bdc;
    color: #fff;
    text-shadow: none;
}
/* Default for all elements */
* {
    box-sizing: border-box;
	padding: 0;
    margin: 0;
}
a {
	text-decoration: none;
	color: #019299;
	overflow-wrap: anywhere;
}

h1 {
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: bold;
    color: #555;
    line-height: 40px;
}
h2 {
    font-size: 1.5em;
	line-height: 40px;
}
p ~ ul { margin-top: -15px; }
.banner img {
	width: 100%;
	height: 150px;
}

/* Nav Hamburger */
.toggle { width:20px; }
.toggle a { 
	color: white;
	font-size: 20px;
}
/* Active toggled menu state */
.item.active {
    display: block;
}