/*
FILENAME: CSS_Pop-ups.css
WEBSITE: 
CONTAINS:
			1.) BODY background color
			2.) TABLE 
			3.) PARAGRAPH alignment; indentation, ALL 4 margins

This File dictates the appearance for the Pop-up screens only-- all the Activities, Themes, and Day-Off pop-ups.


*/




body
	{
		background-color: #BDEBC7;
		margin-top: 5px;
		margin-bottom: 5px;
		scrollbar-face-color: #228B22; /* Forest-Green */
		scrollbar-shadow-color: #00FF00;
		scrollbar-highlight-color: lime;
		scrollbar-track-color: #90EE90; /* Light Green */
		scrollbar-arrow-color: #00FF00; /* Lime Green */ 
	}

h1
	{
		text-align: center;
		font-family: Verdana, Arial, Times, Courier;
		font-size: 14px;
		font-style: bold;

	}

h2
	{
		text-align: center;
		font-family: Verdana, Arial, Times, Courier;
		font-size: 16px;
		font-style: bold;

	}
	
p
	{
		text-align: justify;
		font-family: Verdana, Arial, Times, Courier;
		font-size: 12px;
	}

ul
	{
		text-align: left;
		font-family: Verdana, Arial, Times, Courier;
		font-size: 11px;
		list-style-type: disc;
	}

ol
	{
		text-align: left;
		font-family: Verdana, Arial, Times, Courier;
		font-size: 11px;
	}


a:link
	{
		font-family: Verdana, Arial, Times, Courier;
		color: blue;
		font-weight: bold;
		text-decoration: underline;
		clear: both;
	}


a:visited
	{
		font-family: Verdana, Arial, Times, Courier;
		color: blue;
		font-weight: bold;
		text-decoration: underline;
		clear: both;
	}


a:hover	
	{
		font-family: Verdana, Arial, Times, Courier;
		color: navy;
		background-color: lime;
		font-style: none;
		font-weight: bold;
		clear: both;
		text-decoration: overline underline;
	}