/* Color palette */
:root {
	--dk-blue: #0066cc;
	--med-blue: #0275d8;	/* breadcrumb link, photo border */
	--lt-blue: #D9E6FA;	/* memorial photo, .obit class, responsive .header */
	--pale-aqua: rgb(207,232,220);
	--dk-yellow: #FFEC96;
}

/* body-tag variations*/
body {
	font-size: 14pt;
	font-family: "Trebuchet MS", Helvetica, Geneva, sans-serif;
	background-color: #F9EFF0;
	text-align: left;
	margin-left: 12pt;
	margin-right: 12pt;
	background-repeat: repeat-y;
	tabindex: 0;
}


/* general paragraph tag variations*/
p { font-size: 15pt;  font-family: "Times New Roman", Garamond, serif; clear:both}  
/* clear property solves float problem after photoblocks */

li { font-size: 16pt; font-family: "Times New Roman", Garamond, serif; margin-bottom: 6pt; border-bottom-width: 6pt; }

/* Heading-tag variations*/
h1 { font-size: 28pt; font-weight: normal; }
h2 { font-size: 22pt; font-weight: bold; clear: both; }
h3 { font-size: 18pt; font-weight: bold; clear: both; }
h4 { font-size: 15pt; font-weight: bold; clear: both; }
h5 { font-size: 12pt; font-weight: normal; }


body#landingpage { margin-left: 12pt;}

body#landingpage h2 { 
	color: white; 
	font-size: 22pt; 
	font-weight: bold; 
}

select { font-size: 17px; }

cite { font-size: 11pt; }
address { font-size: 12pt; }
dfn { 
	font-size: 9pt; 
	font-family: "Trebuchet MS", Helvetica, Geneva, sans-serif; 
	font-weight: bold;
}


/* Specialty span tags*/
.footer { 
	font-size: 11pt; 
	margin-top: 12pt;
	background-color: white; 
	text-align: left; 
	width: 100%; 
	align: left; 
	padding: 5pt 5pt 5pt 5pt; 

}

.flush { margin-left: 0px; }
.indent { text-align: left; margin-left: 20px; }
.offset { text-align: left; margin-left: 60pt; }
.center { text-align: center; margin-left: 15pt; }
  /* clear property solves float problem after photoblocks */
.clear { clear:both; }

.newpage { page-break-before: always; }


.msg {
	font-size: 12pt;
	font-family: "Trebuchet MS", Helvetica, Geneva, sans-serif;
	background-color: #EAE0E0;
	text-align: left;
	padding: 2pt;
}

.msg p {
	font-size: 12pt;
	font-family: "Trebuchet MS", Helvetica, Geneva, sans-serif;
}


.msghead { color: white; font-size: 12pt; font-weight: bold; font-stretch: wider; background-color: maroon; text-align: center; word-spacing: 2pt; letter-spacing: 1.5pt; margin: 0; padding: 2pt; }



/*-- ======  Responsive Columns  ====== --*/

* {
  box-sizing: border-box;
}

  /* For mobile phones: */
[class*="col-"] {
    width: 100%;
  }


@media only screen and (min-width: 760px) {
  /* For desktop: */

.col-1 {width: 160px; margin-top: 10px;}
.col-2 {width: 80%;}
.col-3 {width: 400px;}
.col-4 {width: 200px;}
.col-5 {width: 100%; }
.col-6 {width: 50%; }

}
/*  
@media only screen and (max-width: 620px) {
  /* For tablets: /*
  .col-2 {width: 100%;}
  .col-4 {width: 100%; margin-right: 5px;}
  .col-6 {width: 100%; }
}/*  */

.row::after {
  content: "";
  clear: both;
  display: block;
}


[class*="col-"] {
  float: left;
  padding-left: 5px;
}

.col-1 > img {
	max-width: 150px;

}

.header {
	background-color: #BFA0A0;
	color: white;
	text-align: center;
	padding: 5px;
}


.sidebar {
  background-color: #f0f0f0;
  padding: 5px;
  color: black;
  text-align: center;
  font-size: 14px;
}




/* ------------------ */
/* bread crumb (navigation) styles */

.breadcrumb {
	display:inline-block;
	clear: both;
	margin-left: 0px;
}

 /* horz. rule */
.breadcrumb hr {  
  margin-left: 0px;
}

.breadcrumb ul {
  padding: 5px 5px;
  list-style: none;
  background-color: #eee;
  margin-left: 10px;
}

/* Display list items side by side */
.breadcrumb ul li {
  display: inline;
  font-size: 18px;
  margin-bottom: 3px;
}

/* Add a ">" and "nbsp" between each list item */
.breadcrumb ul li+li:before {
  padding: 8px;
  color: black;
  content: ">\00a0";
}

/* Add a color to all links inside the list */
.breadcrumb ul li a {
  color: #0275d8;
  text-decoration: none;
}

/* Add a color on mouse-over */
.breadcrumb ul li a:hover {
  color: #01447e;
  text-decoration: underline;
}

/* End of bread crumb styles */


/* ------------------ */
/* Drop down menu button */

/* Style The Dropdown Button */
.dropbtn {
  display: inline-block;
  font-size:18px;
  color: white;
  text-align: left;
  font-family:"Trebuchet MS", Helvetica, Geneva, sans-serif;
  padding: 2px 0px;
}

/* The container <div> - needed to position the dropdown content (offset to left) */
.dropdown {
  position: fixed;
  display: inline-block;
  margin-left: -42px;
}

/* The container <div> - position on the mobile page */
body#mobilepage .dropdown {
	position: static;
	margin-left: 5px;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 180px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/*  Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 1px 1px;
  text-decoration: none;
  display: block;
  text-align: left;
  font-family: "Trebuchet MS", Helvetica, Geneva, sans-serif;
  font-size:14px;
}


/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
  background-color: black;
}

/* End of Drop down Menu styles */



/* DL list used as menu / list of links */

dl { 
	width: 130px;   
	padding: 5px 5px;
	left: 2px;
	right: 5px;
}
dt, dd {
	font-size: 11pt;
	text-align: left;
	color: white;
	font-family: "Trebuchet MS", Helvetica, Geneva, sans-serif;
	background-color: rgb(61,94,135);
	text-indent: 4px;
	margin-top: 0;
	margin-bottom: 6px;
}
dt a:link, dt a:visited, dt a:hover, dt a:active {
	text-decoration: none;
	color: white;
}

/* Change vertical menu to horizontal on phones*/
@media only screen and (max-width: 620px) {
dl {
  list-style: none;
  margin-right: 5px;
  width: 400px; 
}

/* Display list items side by side */
dl dt {
  display: inline;
  margin-right: 5px;
}

/* Display HR side by side */
dl hr {
	display: inline;
	width: 2px;
}
 }

