@charset "UTF-8";
/*Simplify width and height calculations*/
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
	margin: 0;
	color: #4b4b4b;
	font-family: source-sans-pro;
	font-style: normal;
	font-weight: 400;
	background-color: #eff5f8;
}
#wrapper {
	width: 100%;
	margin: 0 auto;
	max-width: 1000px;
	background-color: #FFFFFF;
	padding: 15px;
}
/*#hero p {
	font-family:source-sans-pro;
	font-weight: 600;
}*/
h1 { color: #6A35CA; }
h2 { color: #E32E31; }
a {
	font-weight: bold;
	text-decoration: none;
}
a:link { color: #F68979; }
a:visited { color: #FF944C; }
a:hover, a:active, a:focus {
	color: #7F3300;
	text-decoration: underline;
}
/* Update the background color */
.navbar-default { background-color: #EFF5F8; }
#menulink {
/*	font-family: source-sans-pro; */		
	text-transform: uppercase;
	margin: 0;
}
#menulink button { background-color: #FF944C; }
#navlinks {
	padding-left: 30px;
	text-align: center;
}
#navlinks a {
	padding-top: 15px;
	font-weight: 400;
	text-transform: uppercase;
}
#navlinks a:hover, #navlinks a:active, #navlinks a:focus { 
	color: #F68979; 
	text-decoration: underline;
}
@media (max-width: 764px) {
	#navlinks {
		width: 100%;
		background-color: #000000;
		background-color: rgba(0, 0, 0, 0.65);
		position: absolute;
		-webkit-transition: all ease-out 0.5s;
		transition: all ease-out 0.5s;
	}
	#navlinks a {
		width: 100%;
		color: #FFF;
	}
	header { overflow: hidden; }
}
/*@media (min-width: 700px) {
	#menulink { display: none; }
	#navlinks {
		max-width: 1000px;
		position: static;
		background-color: transparent;
	}
	#navlinks a {
		width: 20%;
		margin-bottom: 20px;
		padding-top: 15px;
		padding-bottom: 15px;
		float: left;
		color: #1E1E1E;
	}
}*/