@font-face {
	font-family: Liberation;
	src: url(LiberationSans-Regular.ttf);
}
@font-face {
	font-family: Lato;
	src: url(Lato-Regular.ttf);
}
body {
	background-color: #eff3f6;
	font-family: Lato, Liberation, sans-serif;
	font-weight: 300;
	font-size: 15px;
	overflow-y: scroll;
}
/* font family standin for now because I couldn't stand staring at the times new roman */
/* consider streamlining some class and id names because I am fucking disorganized */
a {
	color: #1f3d7a;
	text-decoration: none;
}
a:hover {
	color: #555555;
}
a:active {
	color: #ffffff;
}
a:visited {
	color: #333333;
}
.main {
	display: table;
	width: 80%;
	max-width: 1300px;
	min-width: 550px;
	background-color: #ffffff;
	margin: 0 auto;
	border-top-left-radius: 50px;
	border-bottom-right-radius: 50px;
	overflow: hidden;
}
#header {
	position: relative;
	background-image: url("header2.png");
	background-color: lightblue;
	width: 100%;
	height: 188px;
	overflow: hidden;
}
.logo {
	float: left;
	position: relative;
	top: 50%;
	transform: translate(0,-50%);
	-ms-transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
}
.title {
	float: left;
	position: relative;
	top: 50%;
	transform: translate(0,-50%);
	-ms-transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
	margin-left: 40px;
}
 .glacio_logo {
	float: right;
	position: relative;
	top: 50%;
	transform: translate(0,-50%);
	-ms-transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
	margin-right: 20px;
} 
@media screen and (max-width: 950px) {
	.glacio_logo {
		display: none;
	}
}
/* need to re-code the entire header section with percentages for cleaner layout */
.primary_menu {
	display: table;
	width: 100%;
	background-color: #6B7E94;
	clear: both;
	margin: 0px;
	padding: 10px 0px 10px 0px;
	vertical-align: middle;
}
/* make sure border size = padding size so that it takes on the same colour or else padding will take on the same colour as the background */
.primary_menu  a {
	border: 10px solid transparent;
	font-variant: small-caps;
	color: #222222
}
.primary_menu a:hover {
	background-color: #6C87A5;
	border: 10px solid #transparent;
	color: #333333
}
/* should probably rename body and header so it's not confused with body and header html; make future editing easier */
.frame {
	display: table;
	width: 100%;
}
/* have secondary menu increase left-padding with mouseover to simulate >> selection; continue with 'active'; then use this same process for 'active link' id when on that page */
/* maybe only have submenu visible on landing page, have it disappear for daughter pages, or just have a link back to the landing page? To make it easier to edit in the future */
.secondary_menu {
	float: left;
	width: 20%;
	background-color: #A3B3C2;
	border-bottom-right-radius: 10px;
}
.secondary_menu h4 {
	margin: 5px;
	padding-right: 5px;
}
.s_m {
	display: inline-block;
	border: 0px solid transparent;
	margin: 5px;
	padding: 0px;
	list-style: none;
	width: 100%;
}
.s_m ul, .s_m li {
	margin: 5px;
	padding: 0px;
}
.s_m a {
	display: inline-block;
	margin: 0px;
	border: 0px solid transparent;
	padding: 0px;
	width: 100%;
}
.s_m a:hover {
	/* background-color: #333333; */
	border: 0px solid transparent;
	padding-left: 10px;
}
/*.s_m a:active {
}*/
.content {
	float: left;
	width: 80%;
	background-color: #ffffff;
}
.content p {
	margin: 0.5em;
	/*margin-bottom: 0.5em;
	margin-left: 0.5em;
	margin-right: 0.5em;
	margin-top: 0.5em;*/
}
.content img {
	float: left;
	padding-top: 5px;
	padding-left: 5px;
	padding-right: 10px;
	padding-bottom: 10px;
	/*border-radius: 1em; idk yet; just looks off*/
}
.content ul {
	overflow: hidden;
	padding-left: 30px;
	margin-top: 0px;
	margin-bottom: 0px;
}
.content li {
	margin: 1em 0;
}
/* Remove; using proper lists now */
.content SPAN.li  {
	display: list-item;	list-style-position: inside;
}
.content h4 {
	margin-left: 30px;
	margin-top: 15px;
	margin-bottom: 15px;
}
.content b {
    font-weight: bold;
}
.content em {
	font-weight: bold;
}
.bubble {
	display: block;
	background-color: #D2DEE7;
	margin: 10px;
	border-radius: 0.5em;
	padding: 10px;
	overflow: auto;
}
.bubble a {
	color: #4080bf;
}
.bubble a:hover {
	color: inherit;	
}
/* Originally scripted for use on the Research page to make galleries/collections of images; remove if no galleries end up being used (if we stick with the one-picture-plus-a-description setup) */
.gallery {
margin: 10px;
height: 200px;
}
.footer {
	display: table;
	width: 100%;
	background-color: #6B7E94;
	padding: 10px 0px 10px 0px;
	vertical-align: middle;
	text-align: center;
}
/* submenu javascript css */
.show {display:auto;}
.hide {display:none;}