/* Layout styles */


/* Main Layout */

body { 
  display: grid;
  grid-template-areas: 
    "header header header"
    "nav article ads"
    "footer footer footer";
  grid-template-rows: 100px 1fr 50px;  
  grid-template-columns: 250px 1fr 300px;
  grid-row-gap: 0px;
  grid-column-gap: 0px;
  margin: 0;
  padding: 0;
  font-family: Sans-serif;
  font-weight: lighter;
  font-size: 1em;
  letter-spacing: normal;
  background: #ffffff;
  }  
  
#pageHeader {
  grid-area: header;
  border-bottom: 1px #DC3E2A solid;
  padding: 30px 0 10px 20px;
  margin: 0;
  }
  
#pageFooter {
  grid-area: footer;
  padding: 10px 0 0 20px;
  border-top: 1px #DC3E2A solid; 
  }
  
#mainArticle { 
  grid-area: article;  
  padding: 0px 40px 20px 20px;
  border: 0px solid #000000;    
  }
  
#mainNav { 
  grid-area: nav; 
  padding: 20px;
  border: 0px solid #000000; 
  }
  
#siteAds { 
  grid-area: ads; 
  padding: 0; 
  margin: 0;
  line-height: 0em;
  border: 0px solid #DC3E2A;
  } 
  
  
/* Stack the layout on small devices/viewports. */

@media all and (max-width: 575px) {
  body { 
    grid-template-areas: 
      "header"
      "nav"
      "article"
      "ads"
      "footer";
    grid-template-rows: 100px auto 1fr auto 50px;  
    grid-template-columns: 1fr;
 }
}


/* Gallery Styles */


img {
  border: none;
  max-width: 100%;
}

/* gallery  2 pics in one row */

.gallery1 { 
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 5px;
  align-items: start;
  justify-items: center;
  margin: 0;
  padding: 20px 0 20px 0;
  line-height: 0;
  }


.gallery1 h2 { 
	border-top: 1px solid #000;
	width: 100%;
	padding: 15px 0 0px 0;
	font-weight: lighter;
}

/* gallery  1 pic in one row */

.gallery2 { 
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  grid-gap: 10px;
  align-items: start;
  justify-items: center;
  margin: 0;
  padding: 20px 0 20px 0;
  line-height: 0;
  }

.gallery2 h2 { 
	border-top: 1px solid #000;
	width: 100%;
	padding: 15px 0 0px 0;
	font-weight: lighter;
}

/* gallery  1st pic over 2 rows */

.gallery3 { 
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 5px;
  align-items: start;
  justify-items: center;
  margin: 0;
  padding: 20px 0 20px 0;
  line-height: 0;
  }

.gallery3 img:nth-child(1) {
  grid-row: span 2;
  }


/* gallery  3 pics in one row */

.gallery4 { 
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-gap: 5px;
  align-items: start;
  justify-items: center;
  margin: 0;
  padding: 20px 0 20px 0;
  line-height: 0;
  }




footer, article, nav, div, p, h1, h2, h3, ul, figure, figcaption, address {
  margin: 0;
  }
  


/* Navigation styles */

a
{
	text-decoration: none;
	color: #DC3E2A;
}

nav ul
{
	width: 200px;
	height: auto;
	margin: 0;
	padding: 0;
	font-size: 1.1em;
	line-height: 25px;
	vertical-align: baseline;
	list-style-type: none;
	list-style-position: inside;
}

nav li
{
	padding: 0 0 0 5px;
	margin: 0;
	border-top: 1px solid #000;
}

nav a
{
	font-weight: lighter;
	color: #DC3E2A;
	text-decoration: none;
	border: none;
	padding: 0;
	margin: 0;
}

nav ul#submenu
{
	list-style-type: none;
	list-style-position: inside;
	font-size: 0.9em;
	padding: 0;
	margin: 0;
}

nav ul#submenu li
{
	margin: 0;
	padding: 0;
	border: none;
}

nav ul#submenu a
{
	color: #000000;
}

nav ul#submenu a::before
{
	content: '▿ ';
}

ul#overview
{
	list-style-type: none;
	list-style-position: inside;
	padding: 0 0 20px 0;
	margin: 0;
}

ul#overview li
{
	border: none;
	margin: 0;
	padding: 0 10px 0 0;
}


a.down::before
{
	content: '▿';
	color: #000;
	letter-spacing: 5px;
}

a.intern::before
{
	content: '▹' ;
	color: #000;
	letter-spacing: 5px;
}

a.extern::before
{
	content: '▸';
	color: #000;
	letter-spacing: 5px;
}

a.top
{
	font-size: 0.8em;
	margin: 50px 0 0 0;
}

a.top::before
{
	content: '▵';
	color: #000;
	letter-spacing: 5px;
}


a:visited { color: #DC3E2A; }
a:hover { text-decoration: underline; }
header a:hover { text-decoration: none; }


/* Picture Overlay Effect Styles */


figure.overlay {	
	display: inline-block;
	position: relative;
	overflow: hidden;
	line-height: 0;
	margin: 0;
	padding: 0;	
			
}

figure.overlay figcaption{
	position: absolute;
	padding: 10px;
	margin: 0;
	top: 30%;
	left: 0;	
	width: 95%;
	font-size: 1.3em;
 	font-weight: bold;
 	text-align: center;
 	line-height: 1.8em;
	color: #fff;
	opacity: 0;
	z-index: 1;
}

figure.overlay::after {
	display: inline-block;
	position: absolute;
	margin: 0;
	padding: 0;
	content: "";
	width: 100%;
  	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	background: rgba(0, 0, 0, 0.6);
}
figure.overlay:hover::after {
	opacity: 1;
}
figure.overlay:hover figcaption {
	opacity: 1;
}


/* Content Styles */

.freefiller
{
	min-height: 100px;
	padding: 30px 0 0 10px;
}

.announcer
{
	min-height: 50px;
	padding: 30px 0 0 10px;
	margin-top: 20px;
	border: 2px solid #DC3E2A;
	font-size: 1.1em;
	
}

header  { 
color: #DC3E2A; 
font-size: 1.8em;
font-weight: lighter;
letter-spacing: .03em;

}

section
{
	padding: 10px 0 10px 0;
}

h1
{
	font-weight: normal;
	font-size: 1.5em;
	line-height: 20px;
	letter-spacing: .03em;
	padding: 20px 0 10px 0;
	min-height: 50px;
}


h2
{
	font-weight: normal;
	font-size: 1.2em;
	line-height: 20px;
	padding: 10px 0 20px 0;
}

h3
{
	font-weight: normal;
	font-size: 1em;
	line-height: 20px;
	padding: 5px 0 10px 0;
}

article dl
{
	font-size: 1em;
	line-height: 1.5em;
	margin: 0;
	padding: 0 0 20px 0;
	border: 0px solid #000000;
}

article dt
{
	padding: 10px 0 5px 3px;
	margin: 0;
	border-top: 1px solid #000;
}

article dd
{
	padding: 0 0 15px 3px;
	margin: 0;
	
}

article ul
{
	list-style-type: circle;
	list-style-position: outside;
	font-size: 1em;
	line-height: 1.5em;
	padding: 0 0 0 10px;
	margin: 0;
}

article li
{
	padding: 0 0 10px 0;
	margin: 0;
	border: none;
}

p, address
{
	font-size: 1em;
	font-style: normal;
	line-height: 20px;
	padding: 5px 0 10px 0;
}

p img
{
margin: 10px 0 10px 0;
}

div#siteAds p
{
padding: 5px;
}


audio {height:30px; width:200px; background:black;}