
/*  this page controls how all of the secondary pages look and is slightly different than the body.css look at the top of each page where it is linked to a style sheet to see which one controls the page*/


/*  d2b192 is main tan font   5c514a gray color 7d7166 lighter gray 655d55 med gray 534730 darker gray  table background 1c0505 green a6b595 000000 is black */


/* tags that are simply p, h4, a, etc. are  main tags example  <p><h4>  that control the look of the website they stand alone or can be temporarily altered by class tags*/
/* tags that start with a period are "class" tags .small, the the code on each page secondary tags to the main ones and are identified by the word "class"  i.e., <p class="small"> */
/* p is the main tag and small is the class tag in the above example */
/* class tags are used to change the look of the main tag in specific places on the page without altering the entire site.  You use class tags to control the look of one word, paragraph or area of the site */
/* without changing the entire site.  So <p class="small"> will give you a normal paragraph (p) but with a smaller font and will have any other attributes of the small class (font color, weight, etc.) */
/* but only where you specify the small class  */

/*border-bottom: dashed 1px;  way to give an a hover a dashed line but works on all  use on other tags give a line across the page*/


div.c1 {
	margin-left : 2em;
}
li.c2 {
	list-style : none;
}

body {
	background-color : #000000;
}

/* class tags */

.big {
	font-family : Verdana, Arial, Helvetica, sans-serif;
	font-size : 16px;
	font-weight : bolder;
	font-style: normal;
	line-height: normal;
	font-variant: normal;
}

.bigger {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #c2b192;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	word-spacing : .5pt;
	letter-spacing : .5pt;
	
}


.black {
	background-color : #000000;
	text-align : center;
}

.bold {
	font-family :   Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.85em;
	font-weight : bold;
	color : #d2b192;
	word-spacing : .0pt;
	letter-spacing : .0pt;
	font-style: normal;
	line-height: normal;
	font-variant: normal;
}



.green {
	font-family : Verdana, Arial, Helvetica, sans-serif;
	font-size : 0.85em;
	font-weight : lighter;
	color : #a6b595;
	word-spacing : .05px;
	letter-spacing : .05px;
}




.justify {
	text-align : justify;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

.indent {
		text-indent: 35px
}

.italic {
	font-family : Verdana, Arial, Helvetica, sans-serif;
	font-style: italic;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;

}

.light {
	font-family : Verdana, Arial, Helvetica, sans-serif;
	font-size : 10pt;
	font-weight : normal;
	color : #d2b192;
	word-spacing : .0pt;
	letter-spacing : .0pt;
text-align: left;
}


.small {
	font-size : 10px;
	font-family : Verdana, Arial, Helvetica, sans-serif;
	color : #5c514a;
}


.smaller {
	font-size : 10px;
	font-family : Verdana, Arial, Helvetica, sans-serif;
	color : #AA8867;
text-indent:15px;
}
 p.c2 {text-decoration: underline}





.strong {
	font-family :   Verdana, Arial, Helvetica, sans-serif;
	font-size: 10pt;
	color : #d2b192;
	font-style: normal;
	line-height: normal;
	font-weight: bolder;
	background-color: #000000;
}






img { border:none;}




/* main tags */
	
table {
	background-color : #1c0505;
}

td {
	background-color : #1c0505;
}

tr {
	background-color : #1c0505;
}

A:link {
	font-family : Verdana, Arial, Helvetica, sans-serif;
	text-decoration : none;
	color : #d2b192;
}

A:visited {
	font-family : Verdana, Arial, Helvetica, sans-serif;
	text-decoration: none;
	color : #d2b192;

}

A:active {
	font-family : Verdana, Arial, Helvetica, sans-serif;
	text-decoration : none;
	color : #5c514a;

}


A:hover {
	font-family : Verdana, Arial, Helvetica, sans-serif;
	text-decoration : none;
	color : #534730;
}

a {
	font-family : Verdana, Arial, Helvetica, sans-serif;
	font-size : 10pt;
	color : #d2b192;
	font-weight : normal;
	word-spacing : .0pt;
	letter-spacing : .0pt;
}

/* p tag is the main font size, color and appearance of the entire any words encased in a p tag are controlled by this*/




p {
	font-family : Verdana, Arial, Helvetica, sans-serif;
	font-size : 10pt;
	font-weight : normal;
	color : #d2b192;
	word-spacing : .0pt;
	letter-spacing : .0pt;
text-align: left;
}



/* these tags control the lists that have the square in front of them*/



ul {
font-family : Verdana, Arial, Helvetica, sans-serif;
list-style-type: disc;
font-size : 0.85em;
font-weight : normal;
color : #d2b192;
word-spacing : .05px;
letter-spacing : .05px;
}

li {
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size : 0.85em;
font-weight : normal;
color : #d2b192;
word-spacing : .05px;
letter-spacing : .05px;
}

.lightfont {font-family : Verdana, Arial, Helvetica, sans-serif;
	font-size : 10pt;
	font-weight : normal;
	color : #ffffff;
	word-spacing : .0pt;
	letter-spacing : .0pt;
text-align: left; }


	

