/*This is a comment for CSS. Comments help developers remember what they're doing. Below is the CSS for the menu on the top of the page */
#lp_container ul
{
padding-left: 0;
margin-left: 0;
background-color: #142e2e;
color: White;
float: left;
width: 100%;
font-family: Georgia, "Times New Roman", Times, serif;
}

#lp_container ul li { display: inline; }

#lp_container ul li a
{
padding: 0.2em 1em;
background-color: #142e2e;
color: White;
text-decoration: none;
float: left;
border-right: 1px solid #fff;
}
/*I like to randomly comment my name into the CSS--Dr. LP--so if people are just stealing it without looking, it's obvious */
#lp_container ul li a:hover

{
background-color: #369;
color: #b4c1b4;
}
/*This ends the CSS for the top navigation */
h1 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 36px;
	font-style: normal;
	color: #a4b141;
}
body {
	background-color: #793e3e;
}
p {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #b4c1b4;
}
h2 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 22px;
	font-style: italic;
	line-height: 42px;
	font-weight: bold;
	color: #a4b141;
}
li {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #b4c1b4;
	list-style-position: outside;
	list-style-type: square;
}

/* Palette color codes */
/* Feel free to copy&paste color codes to your application. I felt very free...I pasted happily. */

.primary-1 { background-color: #4D2222 }
.primary-2 { background-color: #432222 }
.primary-3 { background-color: #3F1515 }
.primary-4 { background-color: #793E3E }
.primary-5 { background-color: #794545 }

.secondary-a-1 { background-color: #142E2E }
.secondary-a-2 { background-color: #142828 }
.secondary-a-3 { background-color: #0C2626 }
.secondary-a-4 { background-color: #326262 }
.secondary-a-5 { background-color: #386262 }

.secondary-b-1 { background-color: #3A471F }
.secondary-b-2 { background-color: #343E20 }
.secondary-b-3 { background-color: #2E3B13 }
.secondary-b-4 { background-color: #62753C }
.secondary-b-5 { background-color: #647542 }

/* end */

