@charset "utf-8";
/* CSS Document */

/*colors
	DF1515 = logo red
*/
html {
	height: 100%;				/* this is required so my main table fills the vertical height of my webpage */
	margin: 0px;				/* this is required to remove the extra space around my table at the top of my page */
}
body {
	background-color: #DF1515;	/* this code controls the background color of my website */
	height: 100%; 				/* this is required so my main table fills the vertical height of my webpage */
	margin: 0px;				/* this is required to remove the extra space around my table at the top of my page */
	overflow-y: scroll; /* do not remove this turns off the visibilty of the vertical scroll bar keeps main table from shifting */
	
}


/* table styles */

.table_main {
	width: 975px;				/* this sets the width of my main table */
	background-color:#000000;	/* this sets the background of my main table */
	height: 100%;				/* this is required so my main table fills the vertical height of my webpage */
	margin-top: 0px;			/* this is required to remove the extra space around my table at the top of my page */
	margin-bottom: 0px;			/* this is required to remove the extra space around my table at the bottom of*/
	border-color: #C4C4C4;		/* border color light gray */
	border-style: solid;
	border-width: 0px 3px 0px 3px; /* this sets the border thickness top right bottom left in that order */
}

	
/* text styles */

.text_footer { 
	font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif"; /* this sets the font */
	color: #FFFFFF;  		/* this sets the font color */
	font-size: 14px;  		/* this sets the font size in pixels */
	text-align: center;  	/* this sets the font justification */
	font-weight: normal; 	/* this sets the text to bold or not. use bold or normal */
	font-style: normal;		/* this sets the font to italic or not */
	text-decoration: none;  /* this sets the text to underline or not */
}

.text_highlight { 
	font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif"; /* this sets the font */
	color: #FFFFFF;  		/* this sets the font color */
	font-size: 18px;  		/* this sets the font size in pixels */
	text-align: center;  	/* this sets the font justification */
	font-weight: normal; 	/* this sets the text to bold or not. use bold or normal */
	font-style: italic;		/* this sets the font to italic or not */
	text-decoration: none; /* this sets the text to underline or not */
	margin: 18px;           /* this sets additional spacing around the text */
}

.text_page_content { 
	font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif"; /* this sets the font */
	color: #FFFFFF;  		/* this sets the font color */
	font-size: 18px;  		/* this sets the font size in pixels */
	text-align: center;  	/* this sets the font justification */
	font-weight: normal; 	/* this sets the text to bold or not. use bold or normal */
	font-style: normal;		/* this sets the font to italic or not */
	text-decoration: none;  /* this sets the text to underline or not */
}

.text_page_title { 
	font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif"; /* this sets the font */
	color: #FFFFFF;  		/* this sets the font color */
	font-size: 22px;  		/* this sets the font size in pixels */
	text-align: center;  	/* this sets the font justification */
	font-weight: normal; 	/* this sets the text to bold or not. use bold or normal */
	font-style: normal;		/* this sets the font to italic or not */
	text-decoration: none;  /* this sets the text to underline or not */
}

/* link styles */

a:link { 
	font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif"; /* this sets the font */
	color: #FFFFFF;  		/* this sets the font color */
	font-size: 18px;  		/* this sets the font size in pixels */
	text-align: center;  	/* this sets the font justification */
	font-weight: normal; 	/* this sets the text to bold or not. use bold or normal */
	font-style: normal;		/* this sets the font to italic or not */
	text-decoration: underline;  /* this sets the text to underline or not */
}

a:hover { 
	font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif"; /* this sets the font */
	color: #FFFFFF;  		/* this sets the font color */
	font-size: 18px;  		/* this sets the font size in pixels */
	text-align: center;  	/* this sets the font justification */
	font-weight: normal; 	/* this sets the text to bold or not. use bold or normal */
	font-style: normal;		/* this sets the font to italic or not */
	text-decoration: normal;  /* this sets the text to underline or not */
}

a:visited { 
	font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif"; /* this sets the font */
	color: #FFFFFF;  		/* this sets the font color */
	font-size: 18px;  		/* this sets the font size in pixels */
	text-align: center;  	/* this sets the font justification */
	font-weight: normal; 	/* this sets the text to bold or not. use bold or normal */
	font-style: normal;		/* this sets the font to italic or not */
	text-decoration: underline;  /* this sets the text to underline or not */
}

/* footer links */

a.footer_link:link { 
	font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif"; /* this sets the font */
	color: #FFFFFF;  		/* this sets the font color */
	font-size: 14px;  		/* this sets the font size in pixels */
	text-align: center;  	/* this sets the font justification */
	font-weight: normal; 	/* this sets the text to bold or not. use bold or normal */
	font-style: normal;		/* this sets the font to italic or not */
	text-decoration: underline;  /* this sets the text to underline or not */
}

a.footer_link:hover { 
	font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif"; /* this sets the font */
	color: #FFFFFF;  		/* this sets the font color */
	font-size: 14px;  		/* this sets the font size in pixels */
	text-align: center;  	/* this sets the font justification */
	font-weight: normal; 	/* this sets the text to bold or not. use bold or normal */
	font-style: normal;		/* this sets the font to italic or not */
	text-decoration: normal;  /* this sets the text to underline or not */
}

a.footer_link:visited { 
	font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif"; /* this sets the font */
	color: #FFFFFF;  		/* this sets the font color */
	font-size: 14px;  		/* this sets the font size in pixels */
	text-align: center;  	/* this sets the font justification */
	font-weight: normal; 	/* this sets the text to bold or not. use bold or normal */
	font-style: normal;		/* this sets the font to italic or not */
	text-decoration: underline;  /* this sets the text to underline or not */
}

/* image styles */

.image-gallery { 
	 
	border: 1px solid #DF1515; /* this sets the color */
	border-width: 3px 3px 3px 3px; /* this sets the border width - top right bottom left in that order */
	
}

/* horizontal line styles ( <hr /> ) */

.horizontal_lines_footer {
	width: 85%;				/* sets the width */
	color: #FFFFFF;			/* sets the color */
	height: 1px;			/* sets the height */
	background-color: #FFFFFF;	/* sets the background color */
	
}




