/* BASE STYLE SHEET */
/* Created 2020-10-16 */
/* Updated 2020-11-23 */

/* BODY & CONTENT =========================================================== */

body {
	background-color: #dddddd;
	margin: 15px;
}

.img {
	width: 1024px;
	height: 100%;
}

a {
	font-family: sans-serif;
	font-size: 14pt;
	text-decoration: none;
}


/* HEADER =================================================================== */

.top_header {
	display: flex;
	height: 100px;
	background-color: #FFFFFF;
	padding: 10px;
	border-style: solid;
	border-width: 3px;
	border-radius: 4px;
	border-color: transparent;
}

.top_header_r {
	display: flex;
	border-style: solid;
	border-width: 3px;
	border-radius: 4px;
	border-color: transparent;
	margin: 0px 0px 0px 20px;
	}

/* This is the basic container for navigation and content */
/* It makes the menu an item of the content - style with the .menu class */
.cont_and_nav {
	background-color: #efefef;
	display: flex;
	flex-direction: row;
}
	
.content {
	display: block;
	flex-grow: 1;
	padding: 10px;
	font-size: 12pt;
	font-family: sans-serif;
	text-align: justify;
	border-style: solid;
	border-width: 3px;
	border-color: transparent;
	border-radius: 4px;
}

/* MENU --------------------------------------------------------------------- */

.menu {
	display: flex;
	flex-direction: column;
	padding: 10px;
	font-family: sans-serif;
	font-size: 14pt;
	white-space: nowrap;
	border-style: solid;
	border-color: transparent;
	border-width: 3px;
	border-radius: 4px;
}

/* SUBMENU ------------------------------------------------------------------ */

#menu {
	background-color: white;
	margin: 2px;
	padding: 10px;
	border-style: solid;
	border-color: black;
	border-width: 1px;
	border-radius: 3px;
	}

#menu:hover {
	background-color: #eeeeee;
}


/* ADDITIONALS ============================================================== */

/* BREADCRUMBS ON NAV 3------------------------------------------------------ */

.breadcrumb {
	display: flex;
	flex-direction: row;
	padding: 10px;
	font-family: serif;
	font-size: 10pt;
	white-space: nowrap;
	border-style: solid;
	border-color: transparent;
	border-width: 3px;
	border-radius: 4px;
}

.breadcrumb * {
	color: blue;
	background-color: none;
	font-family: sans-serif;
	font-size: 10pt;
	text-decoration: none;
}


/* TO-TOP BUTTON  =========================================================== */

#totopBtn {
	display: none;
	height: 50px;
	width: 50px;	
	position: fixed;
	bottom: 50px;
	right: 20px;
	cursor: pointer;
	padding: 3px;
	background-color: #ffffff;
	border-style: solid;
	border-width: 1px;
	border-color: #000000;
	outline: none;
	border-radius: 5px;
	font-family: sans-serif;
	font-size: 14pt;
	text-align: center;
	
}

#totopBtn:hover {
	background-color: #cccccc;	
}





