﻿a		{font-family: Arial, Helvetica, ms sans serif, sans serif;
		font-weight: normal;
		color:yellow;
		text-decoration:none}

	
a:hover {font-family: Arial, Helvetica, ms sans serif, sans serif;
		font-weight: normal;
		color:#483D8B;
		background-color:#87CEFA;
		text-decoration:none}
		

/* The Overlay (background) */
.overlay {
    /* Height & width depends on how you want to reveal the overlay (see JS below) */    
    height: 90px;
    width: 100%;
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    background-color: rgb(0,0,0); /* Black fallback color */
    background-color: rgba(0,0,0, 0.5); /* Black w/opacity */
    overflow-x: hidden; /* Disable horizontal scroll */
}

.overlay2 {
    /* Height & width depends on how you want to reveal the overlay (see JS below) */    
    height: 500px;
    width: 50%;
    position: relative; 
    z-index: 1; /* Sit on top */
    left: 0;
    top: 100;
    background-color: rgb(255,255,255); /* Black fallback color */
    background-color: rgba(255,255,255, 0.5); /* Black w/opacity */
	text-align:left; width:50%; 
	padding: 8px; 
	font-family:'Segoe UI'
}

.overlay3 {
    /* Height & width depends on how you want to reveal the overlay (see JS below) */    
    height: 500px;
    width: 50%;
    position: relative; 
    z-index: 1; /* Sit on top */
    left: 0;
    top: 100;
    background-color: rgb(0,0,0); /* Black fallback color */
    background-color: rgba(0,0,0, 0.5); /* Black w/opacity */
    color: white;
	text-align:left; width:50%; 
	padding: 8px; 
	font-family:'Segoe UI'
}


.title {
    font-size: 30px;
    color: #003400;
    font-family: 'Segoe UI';
    margin-bottom:10px;
}


/* Position the content inside the overlay */
.overlay-content {
    position: relative;
    top: 10%; /* 25% from the top */
    width: 100%;  /*100% width */
    text-align: center; /* Centered text/links */
    /*margin-top: 10px;  30px top margin to avoid conflict with the close button on smaller screens */
}

/* The navigation links inside the overlay */
.overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 15px;
    color: #818181;
    /*display: block;  Display block instead of inline */
    transition: 0.3s; /* Transition effects on hover (color) */
}

/* When you mouse over the navigation links, change their color */
.overlay a:hover, .overlay a:focus {
    color: #f1f1f1;
}

