/*American Legion Dept of Texas Post 26 Stylesheet*/

body {
	margin: 0;
	font-family: Arial;
	background-color: sand;
}

*  {
		box-sizing: border-box;
}
.header { 
	border: 3px solid blue;
	padding: 15px;
	background-color: AliceBlue;
}
/* The Navbar container */
.topnav {
	overflow: hidden;
	background-color: blue;
}
/* Navbar links */
.topnav a {
	float: left;
	display: block;
	color: #f2f2f2;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
}
/* Links - change color on hover */
.topnav a:hover {
	background-color: #ddd;
	color: blue;
}
.topnav a:active {
	background-color: #4CAF50;
	color: white;
}
.column{
    float: left; 
	width: 350px;
	margin: 8px;
	padding-bottom: 4em;
	}

	
/* Clear floats after the columns */
.row:after {
	content: "";
	display: table;
	clear: all;
}
/* Responsive layout - makes the three columns stack on top of each 
other instead of next to each other */
@media screen and (max-width: 600px){
	.column.side, .column.middle {
		width: 100%;
	}
}

table, th, td {
		border: 2px solid black;
}
th, td {
	padding: 10px;
}
table {
	border-spacing: 5px;
}
/* Footer at bottom of page, giving information about who 
has written the content on this page. */
.footer {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	background-color: lightblue;
	color: black;
	text-align: center;
}
/* Added below by DFedak */
.nb td, th {
        margin:  0em 1em 0em 8px;
        padding: 0em 1em 0em 0px;

        cell-padding:    0em;
        cell-spacing:    0em;

        border:          0em none #f2f2f2;
        border-spacing:  0 0em;
        border-padding:  0 0em;
        border-collapse: collapse;
}

.nb table {
        padding: 0em 1em 0em 0em;
        margin:  0em 1em 0em 0em;

        cell-padding:    0em;
        cell-spacing:    0em;

        border:          0em none #f2f2f2;
        border-spacing:  0 0em;
        border-padding:  0 0em;
        border-collapse: collapse;
}
.p.red {
	background-color:red;
}


