

<script>
	
em {
	font-style: italic;
	}

code {
	font-family: "Courier","monospace";
	font-weight: 800;
	color: navy;
	}

code.BibleVerse {	
	font-family: "Arial","sans-serif";
	font-style: italic;
	color: #dd0000;
	}

code.Quote {
	font-family: "Arial","sans-serif";
	font-style: italic;
	font-weight: 500;
	color: black;
	}
	
small {
	font-size: 60%;
	}

hr {
	color: navy;
	height: 1px;
	width: 100%;
	align: center;
	}
	
blockquote {
	font-size: 120%;
	font-style: italic; 
	}

.Big {
	font-size: 110%;
	font-weight: 900;
	text-decoration: none;	
	}

.Big2 {
	font-size: 150%;
	font-weight: 900;
	text-decoration: none;
	background-color: rgba(100,200,100,0.5);
	}
	
.Big3 {
	font-size: 120%;
	font-weight: 900;
	text-decoration: none;
	background-color: rgba(200,100,100,0.5);
	}
	
.Category {
	font-size: 100%;
	font-weight: 700;
	text-align: left;
	color: navy;
	background-color: gold;
	}

.Red {
	color: red;
	font-weight: 900;
	}

.Normal {
	font-size: 100%;
	font-weight: 400;
	text-align: left;
	}

.Fancy {
	font-family: "Dauphin-Normal","cursive";
	font-weight: 800;
	}

.Title {	
	text-align: center;
	}

.Title1 {	
	text-align: center;
	font-weight: 800;
	font-size: 200%;
	}
	
.Title2 {	
	text-align: center;
	font-weight: 800;
	font-size: 130%;
	}

.Note2 {
	font-style: italic;
	font-weight: 400;
	text-align: left;
	}

.Note3 {
	font-style: italic;
	font-size: 90%;
	font-weight: 200;
	text-align: right;
	}

.Note4 {
	font-style: italic;
	font-size: 80%;
	font-weight: 200;
	text-align: right;
	}
	
.Note5 {
	font-style: italic;
	font-size: 60%;
	font-weight: 800;
	text-align: right;
	color: white;
	}

p.Attention {
	color: #bb0000;
	font-size: medium;
	font-style: italic;
	font-weight: 800;
	margin-bottom: -1em;
	}

p.Block {	/* Text Block */
	color: yellow;
	text-align: center;
	background: #008800;
	font-size: 100%;
	font-weight: 800;
	margin-left: 10%;
	margin-right: 10%;
	}

p.Tab {		/* Tab first line */
	text-indent: 5%;
	}

p.Footer {
	font-size: 80%;
	text-align: center;
	}

p.DropCap {	
	font-family: "BrushScript BT","Comic Sans MS","Cursive";
	float: left;
	font-size: 180%;
	font-weight: 900;
	text-indent: 0;
	padding-right: 5px;
	}
	

.Indent3pct {
	margin-left: 3%;
	}


.Indent5pct {
	margin-left: 5%;
	}


.Indent10pct {
	margin-left: 10%;
	}

.Indent15pct {
	margin-left: 15%;
	}



.listemph {
	font-weight: 800;
}

.Left {
	float: left
	}

.Right {
	float: right
	}

.transparent {
  zoom: 1; /* gives the object layout */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
  filter: alpha(opacity=20);
  -moz-opacity: 0.2;
  -khtml-opacity: 0.2;
  opacity: 0.1;
} 




/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: none; /* 1px dotted black;  If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    width: 180px;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;

    /* Position the tooltip text */
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;

    /* Fade in tooltip */
    opacity: 0;
    transition: opacity .5s;
	}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
	}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: .9;
	}
	
#rcorners1 {
    border-radius: 8px;
    border: none;
    padding: 1px; 
    width: ;
    height: ;    
}

#rcorners2 {
    border-radius: 25px;
    border: 2px solid #73AD21;
    padding: 20px; 
    width: 200px;
    height: 150px;    
}




/* Style the header */
header {
	background-color: none;
	padding: 20px;
	text-align: center;
	font-size: 35px;
	color: white;
	}

/* Container for flexboxes */
section {
	display: -webkit-flex;
	display: flex;
	}

/* Style the navigation menu */
nav {
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding: 40px;
	}

/* Style the list inside the menu */
nav ul {
	list-style-type: none;
	padding: 0;
	}

/* Style the content */
article {
	-webkit-flex: 3;
	-ms-flex: 3;
	flex: 3;
	background-color: none;
	padding: 10px;
	}

/* Style the footer */
footer {
	background-color: #777;
	padding: 10px;
	text-align: center;
	color: white;
	}

/* Responsive layout - makes menu & the content (inside section) sit vertically */
@media (max-width: 500px) {
  section {
	-webkit-flex-direction: column;
	flex-direction: column;
  		}
	}
	
</script>


