@charset "utf-8";
body {
	font: 100% Arial, Helvetica, sans-serif;
	background: #000;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #FFF;
}
#container {
	width: 998px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #000;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	position: relative;
}
/* removing the list bullets and indentation */

#header {
	background: #000 url(images/T4%20Design%20Logo.gif) no-repeat center top;
	padding: 0 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
}
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#mainContent {
	background: #000;
	padding: 0 20px 0px;
}
#container #mainContent p strong  {
	color: #999;
}

#footer {
	padding: 0 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#000 url(images/Ftr_Bkrgd.jpg) repeat-x left bottom;
	text-align: center;
	font-size: 0.7em;
}
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
a img {
	border: none;
}


A {
	
}
A:visited {
	
}
A:hover {
	
}
A:active {
	
}
#gallery {
	POSITION: relative;
	WIDTH: 950px
}
#gallery .default {
	BORDER-BOTTOM: #888 1px solid;
	POSITION: absolute;
	BORDER-LEFT: #888 1px solid;
	BORDER-TOP: #888 1px solid;
	TOP: 5px;
	BORDER-RIGHT: #888 1px solid;
	LEFT: 10px
}
#gallery UL {
	PADDING-BOTTOM: 0px; LIST-STYLE-TYPE: none; MARGIN: 0px; PADDING-LEFT: 0px; WIDTH: 350px; PADDING-RIGHT: 0px; FLOAT: right; LIST-STYLE-IMAGE: none; PADDING-TOP: 0px
}
#gallery UL LI {
	WIDTH: 80px; DISPLAY: inline; FLOAT: left; HEIGHT: 80px
}
#gallery UL LI A {
	BORDER-BOTTOM: #000 1px solid; BORDER-LEFT: #000 1px solid; PADDING-BOTTOM: 4px; PADDING-LEFT: 4px; WIDTH: 70px; PADDING-RIGHT: 4px; DISPLAY: block; HEIGHT: 70px; BORDER-TOP: #000 1px solid; BORDER-RIGHT: #000 1px solid; TEXT-DECORATION: none; PADDING-TOP: 4px
}
#gallery UL LI A IMG {
	BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; WIDTH: 70px; HEIGHT: 70px; BORDER-TOP: 0px; BORDER-RIGHT: 0px
}
#gallery UL LI A B {
	POSITION: absolute;
	WIDTH: 15px;
	DISPLAY: block;
	BACKGROUND: #000;
	HEIGHT: 1px;
	LEFT: -9999px
}
#gallery UL LI A:hover {
	BORDER-BOTTOM-COLOR: #F00; BORDER-TOP-COLOR: #000; WHITE-SPACE: normal; BORDER-RIGHT-COLOR: #000; BORDER-LEFT-COLOR: #000
}
#gallery UL LI A:active {
	BORDER-BOTTOM-COLOR: #000; BORDER-TOP-COLOR: #000; WHITE-SPACE: normal; BORDER-RIGHT-COLOR: #000; BORDER-LEFT-COLOR: #000
}
#gallery UL LI A:focus {
	BORDER-BOTTOM-COLOR: #000; BORDER-TOP-COLOR: #000; WHITE-SPACE: normal; BORDER-RIGHT-COLOR: #000; BORDER-LEFT-COLOR: #000
}
#gallery UL LI A:hover B {
	Z-INDEX: 100; POSITION: absolute; TOP: 5px; LEFT: 0px
}
#gallery UL LI A:active B {
	POSITION: absolute; TOP: 5px; LEFT: 0px
}
#gallery UL LI A:focus B {
	POSITION: absolute; TOP: 5px; LEFT: 0px
}
#gallery UL LI A B I {
	TEXT-ALIGN: center; WIDTH: 600px; DISPLAY: table-cell; HEIGHT: 400px; VERTICAL-ALIGN: middle
}
#gallery UL LI A B I IMG {
	BORDER-BOTTOM: #888 1px solid; BORDER-LEFT: #888 1px solid; WIDTH: auto; HEIGHT: auto; BORDER-TOP: #888 1px solid; BORDER-RIGHT: #888 1px solid
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;