/* /style_www.css Dec 2024  This the style sheet used for www.NesterenkoSoftware.com web pages.  The Web-Applications (TimetableAssistantWeb/TimetableAssistant.php etc. use a different style sheet - style.css - separtae file for each app)*/

/* 
An id must be unique in the whole page.
A class may apply to many elements.
Sometimes, it's a good idea to use ids.
In a page, you usually have one footer, one header...
Then the footer may be into a div with an id
<div id="footer" class="...">
and still have a class
*/

	body {
		margin: 0;
		font-family: "Verdana", Georgia, Serif;
		/* font-size: 90%; */ /* 100%; was 90%;   */
	}

	.footer {
        background: SandyBrown; /* was #acb3b9; gray   */            
        text-align: center;
        padding: 5px;
    }
	
	p {
		/* font-size: .875em;  */
		margin-top:4px;
		margin-bottom:4px;
	}

	.container { /* #  -  id   */
		width: 70%; /* was was 1100px; 960px */
		margin: auto;
	}

	.navbar1 {
		overflow: hidden;  
		/* overflow: auto; */
		background-color: SandyBrown; /* Dec 2024 was:  #f2f2f2;  tried SandyBrown  deaN#53Fortye  Gray95 */
		/*  font-family: Arial;  */
		font-weight: 600;
	}

	.navbar2 {
		overflow: hidden;  
		/* overflow: auto; */
		background-color: #fce4cf; /* Dec 2024 90% of SandyBrown */
		/*  font-family: Arial;  */
		font-weight: 600;
	}

	
	a:hover {
		background-color: white;
		/* font-size: 18px; */
		font-size: 102%;
	}

	hr {
		color:brown;
		border-style: solid;
	}

	h1 {
		color:brown;
		/* font-size:1.8em; */
	}
	h2 {
		color:brown;
		/* font-size:1.6em; */
	}
	h3 {
		color:brown;
		/* font-size:1.4em; */
	}
	h4 {
		color:brown;
		/* font-size:1.2em; */
	}
	
	.MainDiv { /* .  -  class   */
		margin : 0px 1px 0px 1px;
	}
	
	/* Table with Border: */	
	table.Main { 
		border-width: 1px;
		border-spacing: 2px;
		border-style: inset;
		border-color: black;
		border-collapse: collapse;
		/* background-color: white; */
	}
	
	table.Main th {
		border-width: 1px;
		padding: 1px;
		border-style: inset;
		border-color: black;
		/* background-color: white; */
	}
	table.Main td {
		border-width: 1px;
		padding: 1px;
		border-style: inset;
		border-color: black;
		/* background-color: white; */
	}	
	


