@charset "utf-8";
/* CSS Document */

/*  COLORS
	put info here as clipboard
		Bright blue   #2f3188
		Navy #231d1f

		Purple from band pic #ad005a
		Green from band pic #1f3004
		Brown from band pic #46272c
		Blue from band pic #0010be
		Red from band pic #c8191e
 		Wine color for MUSIC pages #491723
*/

/* FONTS
  font-family: "Open Sans", serif;
  font-family: "Libre Baskerville", serif;
*/



/* Basic resets etc.*/
* {
	margin: 0;
	padding: 0;
}

html {
	font-size: 16px;
	font-family: "Open Sans", serif;
  	box-sizing: border-box;
	font-weight: 400;
	line-height: 1.7;
	scroll-behavior: smooth;
}


body {
		font-family: "Open Sans", serif;
	    background-color: #000;
	    position: relative;  
		color: #000; 
	}

/* IF USING A FIXED BG IMAGE */
body::after {
    content: "";
	background-image: url("../img/bgimg4.jpg");
    background-position: top;
    position: fixed; 
	background-repeat: no-repeat;
	background-attachment: scroll;
    top: 0;
    left: 0;
    bottom: 0;
    right:0;
    z-index: -1;
}



header {
	color: #000;
	margin: 0;
	padding: 0 0 0 0;
}

.headerbanner {
	margin-top: 15px;
	border-bottom: 2px solid #491723;
	width: 100%;
	
}


h1, h2, h3, h4, h5, h6 {
	font-family: "Libre Baskerville", serif;
	font-weight: 300;
	margin: 20px 0;
	color: inherit;
}


h1 {
	text-align: center;
}

h4, h5 {

}




a:link, a:visited  {
	color: #fff;
	background: #333;
	text-decoration: none;
	padding: 0 3px;
	margin: 0 3px;
}

a:hover, a:active {
	background: #999;
	color: #491723;
	text-decoration: none;
	padding: 0 3px;
}



a img {
	margin: 1px;
	padding: 2px;
}




ol, ul {
padding-left: 20px !important;
  	margin-left: 12px;
}

.boxshadow {
	box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.4), 0 8px 20px 0 rgba(0, 0, 0, 0.4);
}


.photo {
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	padding: 3px;
	margin: 5px;
	border: 1px solid #333;
}

.sectionStyle0 {
	background: none;
	color: #fff;
	margin: 0;
}

.sectionStyle1 {
	background-color: rgba(255,255,255,.2)	;
	color: #fff;
	margin: 0;
	padding: 20px 0;
}
.sectionStyle2 {
	background-color: rgba(255,255,255,.4);	
	color: #fff;	
	margin: 0;
	padding: 20px 0;
}
.sectionStyle3 {
	background-color: rgba(255,255,255,.8);	
	color: #000;	
	margin: 0;
	padding: 20px 0;
}
.sectionStyle4 {
	background-color: rgba(0,0,0,.3);
	color: #fff;
	margin: 0;
	padding: 20px 0;
}

.sectionStyle5 {
	background-color: rgba(0,0,0,.8);
	color: #fff;
	margin: 0;
	padding: 20px 0;
}

.callout {
	background-color: rgba(255,255,255,0.60);
	padding: 10px;
	border-radius: 2px;
	box-shadow: 1px 1px 2px 1px  #333;
	color: #000;
}

footer {
	color: #fff;
	padding: 25px 0;
	text-align: center;
	font-size: .8rem;
	
}

a.nobg {
		background: none !important;
}

a.nobg:hover, a.nobg:active, a.nobg:focus {
	background: none !important;
}


.videoListing {
	width: auto;
	height: 300px;
	overflow-y: scroll;
	border: 1px solid #FFF;
	padding: 10px;
	margin: 0;
}


.tablegeneral td {
	vertical-align: top !important;
	color: #fff;
}


.ParagraphsWithLines p:after {
    content: ""; /* This is necessary for the pseudo element to work. */ 
    display: block; /* This will put the pseudo element on its own line. */
    margin: 0 auto; /* This will center the border. */
    width: 70%; /* Change this to whatever width you want. */
    padding: 20px 0; /* This creates some space between the element and the border. */
    border-bottom: 1px solid #CCC; /* This creates the border. Replace black with whatever color you want. */
}


/* ++++REDEFINE BOOTSTRAP STYLES ++++++++   */
a.nav-link:hover, a.nav-link:active, a.nav-link:focus {
	background-color: #3d2527 !important;
	color: #FFF !important;
}

a.carousel-control-next:hover, a.carousel-control-next:active, a.carousel-control-next:focus {
	background: none !important;
}
a.carousel-control-prev:hover, a.carousel-control-prev:active, a.carousel-control-prev:focus {
	background: none !important;
}

.carousel-item a:hover, .carousel-item a:active, .carousel-item a:focus {
	background: none !important;
}

.bg-dark {
	background-color: #000 !important;
}
a.bg-dark {
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.4), 0 4px 10px 0 rgba(0, 0, 0, 0.4);
}


.bg-danger {
	background-color: #491723 !important;
}
a.bg-danger {
		box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.4), 0 4px 10px 0 rgba(0, 0, 0, 0.4);
}
a.bg-danger:hover, a.bg-danger:active, a.bg-danger:focus {
	background-color: #333 !important;
}


.bg-secondary {
	background-color: #666 !important;
}
a.bg-secondary {
		box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.4), 0 4px 10px 0 rgba(0, 0, 0, 0.4);
}
a.bg-secondary:hover, a.bg-secondary:active, a.bg-secondary:focus {
	background-color: #333 !important;
}

