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

/* COLORS
	fce1ff = background magenta
	b8a8ff = background bottom lavender
	000000 = black
	ffffff = white
	fcf4d7 = off-white
	e4041f = highlight text red
	0107ee = link
	501483 = link visited
	E8B726 = gold
*/

html {
	height: 100%;
	margin: 0px;
}

body {
	background-color: #b8a8ff;	/* This code controls the background color of my website */
	background-image: url("../images/bg_gradient.jpg");
	background-repeat: repeat-x;
	height: 100%;
	margin: 0px;
	overflow-y:scroll;
}


/* TABLE STYLES */

.table_footer{
	background-image: url("../images/footer.jpg")
}

.table_main {
	width: 1000px; 
	background-color: #fcf4d7;
	height: 100%;
	margin-top: 0px;
	margin-bottom: 0px;
	border-color: #000000;
	border-style: solid;
	border-width: 1px 1px 1px 1px;
}

/* TEXT STYLES */

.text_footer {
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	color: #000000;
	font-size: 14px;
	text-align: center;
	font-weight: normal; 
	font-style: normal;
	text-decoration: none;
	
}
	.text_highlight {
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	color: #000000;
	font-size: 18px;
	text-align: center;
	font-weight: normal; 
	font-style: normal;
	text-decoration: none;
}
	
	.text_page_content {
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	color: #000000;
	font-size: 24px;
	text-align: justify;
	font-weight: normal; 
	font-style: normal;
	text-decoration: none;
	margin: 36px;
}
	
	.text_page_title {
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	color: #000000;
	font-size: 30px;
	text-align: center;
	font-weight: bold; 
	font-style: normal;
	text-decoration:underline;
}

/* LINK STYLES */
	
a:link {
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	color: #0107ee;
	font-size: 18px;
	text-align: justify;
	font-weight: normal; 
	font-style: normal;
	text-decoration: normal;
}

a:hover {
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	color: #e4041f;
	font-size: 18px;
	text-align: justify;
	font-weight: normal; 
	font-style: normal;
	text-decoration: normal;
}

a:visited {
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	color: #501483;
	font-size: 18px;
	text-align: justify;
	font-weight: normal; 
	font-style: normal;
	text-decoration: normal;
}

/* FOOTER LINKS */
	
a.footer_link:link {
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	color: #0107ee;
	font-size: 14px;
	text-align: justify;
	font-weight: normal; 
	font-style: normal;
	text-decoration: normal;
}

a.footer_link:hover {
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	color: #e4041f;
	font-size: 14px;
	text-align: justify;
	font-weight: normal; 
	font-style: normal;
	text-decoration: normal;
}

a.footer_link:visited {
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	color: #501483;
	font-size: 14px;
	text-align: justify;
	font-weight: normal; 
	font-style: normal;
	text-decoration: normal;
}

/* IMAGE STYLES */

.image_gallery {
	border:1px solid #E8B726;
	border-width: 5px 5px 5px 5px; /* TOP RIGHT, BOTTOM LEFT IN ORDER */
}

/* HORIZONTAL LINE STYLES (<hr />)  */

.horizontal_lines_footer {
	width: 85%;
	color: #b8a8ff;
	height: 2px;
	background-color: #b8a8ff;
}













