
div#footer_div {
	position: absolute; /* https://stackoverflow.com/questions/8824831/make-div-stay-at-bottom-of-pages-content-all-the-time-even-when-there-are-scrol */
	bottom: 0;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin-top: 100px;
	min-height: 50px;
	padding-left: 5px;
	width: 100vw;
	font-family: Helvetica,Arial,Open-sans,Verdana,sans-serif;
	background-color: #005983;
	box-shadow: 0px 0px 10px 1px #888;	
	padding-left: 5px;
}

div#footer_div div#footer_content {		
	width: 1200px;
	display: flex;
	flex-direction: row;
	justify-content: center;		
	align-items: center;
}

div#footer_div div#footer_logo {
	
}
div#footer_div div#footer_logo img#tu_footer_logo {
	position: relative;
	top: 20px;
	height: 40px;	
}
div#footer_div div#footer_logo img#int_footer_logo {
	height: 90px;	
}

div#footer_div div#footer_text {
	font-family: Helvetica,Arial,Open-sans,Verdana,sans-serif;
	color: #DEF2F1;
	font-size: 0.5rem;
	margin-left: 20px;
}

div#footer_div a {
	font-weight: bold;
	color: #88D6DF;
	font-size: 0.5rem;
	
}

@media screen and (min-width: 1024px) {

	div#footer_div {
		position: absolute;
		bottom: 0;
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		margin-top: 100px;
		min-height: 100px;
		width: 100vw;
		font-family: Helvetica,Arial,Open-sans,Verdana,sans-serif;
		background-color: #005983;
		box-shadow: 0px 0px 10px 1px #888;	
	}
	
	div#footer_div div#footer_content {		
		width: 1200px;
		display: flex;
		flex-direction: row;
		justify-content: flex-start;		
		align-items: center;
		position: relative;
		left: -5px; /* better lineup with over divs above */
	}

	div#footer_div div#footer_logo img#tu_footer_logo {
		position: relative;
		top: 20px;
		height: 40px;	
	}
	div#footer_div div#footer_logo img#int_footer_logo {
		height: 90px;	
	}

	div#footer_div div#footer_text {
		font-family: Helvetica,Arial,Open-sans,Verdana,sans-serif;
		color: #DEF2F1;
		font-size: 1rem;
		margin-left: 20px;
	}

	div#footer_div a {
		font-weight: bold;
		color: #88D6DF;
		font-size: 1rem;
		
	}

}