/* generic.css is a stylesheet that I, Ingbert <ifloyd2@gmail.com>, have made for my own reference. Feel free to use it if you want, but you are not free to sell it to anyone. 

This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 License

*/

body {
	color: black;
	background: white; 
	/* background: #99FF99; */
	font-family: helvetical, sans-serif;
	margin: 0em 0em 0em 0em;
	padding: 0em 0em 0em 0em;
	}

p {
	margin: 0.8em 0em 0.8em 0em;
	padding: 0em;
	}

h1 {
	text-align: center;
	}

a {
	text-decoration: none; 
	}

a:link {
/*	text-decoration: underline; */
	color: blue;
	}

a:visited {
/*	text-decoration: underline; */
	color: purple;
	}

a:hover, a:focus {
	text-decoration: underline;
	color: #0066FF;
	}

a:active {
	text-decoration: underline;
	color: red;
	}

/* Header Styles */

.header {
	margin: 0em 0em 0em 0em;
	padding: 1em 1em 1em 1em;
	background: blue;
	color: white;
	border: 1px solid black;
	}


/* Body Styles */

.col-left {
	margin: 0em 0em 0em 0em;
	padding: 1em 1em 1em 1em;
	background: red;
	border: 1px solid black; 
	display: table-cell;
	width: 15%;
	}
	
.col-center {
	margin: 0em 0em 0em 0em;
	padding: 1em 1em 1em 1em;
	border: 1px solid black;
	background-color: yellow;
	display: table-cell;
	width: 70%;
	}

.col-right {
	margin: 0em 0em 0em 0em;
	padding: 1em 1em 1em 1em;
	border: 1px solid black;
	background-color: green;
	color: white;	
	display: table-cell;
	width: 15%;
	}

.row {
	display: table-row;
	}

.table {
	display: table;
	width: 100%;
	}

/* Footer Styles */

.footer {
	font-style: italic;
	font-size: 80%;
	border-top: 2px solid black;
	margin: 0em 0em 0em 0em;
	padding: 1em 1em 1em 1em;
	background-color: cyan;	
	clear: both;
	}

.cluster {
	margin: 1em 0em 1em 0em;
	}


