/* styling for the main div surrounding everything */
.commonOuterBox {
	display: flex;
    flex-direction: column;
	padding:20px;
	min-width: 830px;
	width: 100%;
}

.contentAndSidebarBox {
	display: flex;
	justify-content: center;
}

/* styling for the top-level of the nav bar column on the left */
.commonSidebar {
	background-color:white;
	margin-right:20px;
	border: 1px solid #efefef;
	max-width:250px;
}

/* styling for the div containing presentation material */
.commonInnerBox {
	width: 90%;
	max-width: 1100px;
}
	
.presentationBase {
	width: 100% !important;
}

/* top-left main logo */
.logoDiv {
	margin-top:20px;
	text-align:center;
}

/* override styling for the contact page title */
.commonInnerBox .contactWrapperPresentation p img { 
	width: 100%;
}

/* override for "modern/v2" presentations of the original style in CommonUtils/Presentation/master.css */
.presentationBase, .contactWrapperPresentation, .messageBoardWrapper {
	border: 1px solid #efefef;
    background-color: white;
	margin-top:0px !important; /* override value from master.css */
}

/* addition for "modern/v2" presentations */
.presentationElementLine {
	margin-left: 25px;
	margin-right: 25px;
}

.messageBoardWrapper {
	margin-right: 20px;
}

.contactWrapper {
	margin: 0 !important;
}
	
/* style for the top-level body tag of the whole page */
.commonBodyStyle
{
	height:100%;
    margin-top:10px;

    text-align:inherit !important; /* all other browsers than IE6 will use this text-align */
    /* text-align: center; is to get around an IE6 bug where margin: 0 auto doesn't work. */
	text-align:center;
	
	background-color: #fafafa;
}



/* latest version that is contained within main table, rather than a separate table at end */
.commonFooterTableStyle3
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-align:center;
	padding:3px;
	margin-top:15px;
}

/* footer styling for the html in footer.jsp */
.footerStyling {
	margin:0 auto;
	width:100%;
	font-size:smaller;
	font:Arial, Helvetica, sans-serif;
	text-align:center;
	margin-bottom:20px;
	padding:25px;
}

.customMessageBoardInFooter {
	margin-top:15px;
}

@media only screen and (max-width: 930px) {
	/* kill the margin at the bottom at narrow widths, since the sides have no effective margin at that point and it doesn't look good anymore */
	.footerStyling {
		margin-bottom: 0px;
	}
}

.footerSocialMediaIcons {
	margin-top: 25px;
	padding-top: 25px;
	height: 103px;
	border-top: 1px solid #e9ebee;
	border-bottom: 1px solid #e9ebee;
	text-align: left;
}

.footerFacebookCommentsNote {
	margin-top:40px;
}

.facebook_comments_jal {
	margin-top:10px !important;
}


/* ------------ START GENERIC NO-JAVASCRIPT TOOLTIP CSS (BOTTOM VERSION) --------*/

/* Tooltip container */
.generic-tooltip {
	position: relative;
	display: inline-block;
	z-index: 2;
}

/* Tooltip text */
.generic-tooltip .generic-tooltiptext {
	visibility: hidden;
	width: 120px;
	top: 100%;
	left: 50%;
	margin-left: -60px;
	background-color: black;
	color: #fff;
	text-align: center;
	padding: 5px 5px;
	border-radius: 6px;
	font-size: 0.7em;
	opacity: 0.5;

	/* Position the tooltip text - see examples below! */
	position: absolute;
	z-index: 1;
}

/* tooltip up arrow */
.generic-tooltip .generic-tooltiptext::after {
	content: " ";
	position: absolute;
	bottom: 100%;  /* At the top of the tooltip */
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: transparent transparent black transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.generic-tooltip:hover .generic-tooltiptext {
	visibility: visible;
}

/* ------------ START GENERIC NO-JAVASCRIPT TOOLTIP CSS (ON-TOP VERSION) --------*/

.top-generic-tooltip {
	position: relative;
	display: inline-block;
}

.top-generic-tooltip .top-generic-tooltiptext {
	visibility: hidden;
	width: 120px;
	background-color: black;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 5px 0;
	position: absolute;
	z-index: 1;
	bottom: 150%;
	left: 50%;
	margin-left: -60px;
	font-size: 0.7em;
	font-style: normal;
	opacity: 0.5;
}

.top-generic-tooltip .top-generic-tooltiptext::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: black transparent transparent transparent;
}

.top-generic-tooltip:hover .top-generic-tooltiptext {
	visibility: visible;
}

/* ------------ END GENERIC NO-JAVASCRIPT TOOLTIP CSS --------*/