/* Layout template styles

Many styles do not inherit to a table and its contents from its parent object.
Among these are: font-size; font-weight; line-height; text-align; font-style; font-variant
The !DOCTYPE used turns on Table inheritance
*/
body
{
    margin: 0px;
    color: white;
    background-color: black;
    background-image: url(../images/bkgnd.gif);
    background-repeat: repeat-x;
    background-position: 0px 80px;
    font-family: Arial;
    font-size: 10pt;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    scrollbar-base-color: #333333;
    scrollbar-arrow-color: white;
}
.bdyFrame
{
  background-image: none;
  text-align: left;
}

table, div
{
	border:0px;
	padding:0px;
	margin:0px;
	border-collapse: collapse;
}

/*
	Table 
Margins do not apply to table cells
Have to use depreciated 'cellspacing' of table element
 */
td
{
	text-align: center;
	vertical-align: top;
	border: 0px;
	padding: 0px;
}

h1, h2, h3
{
	text-align:center;
	padding:0px;
	margin:5px;
}

hr
{
	color: White;
	height: 1px;
}

a:link
{
	color: White
}
a:visited
{
	color: #a9a9a9
}
a:hover
{
	color: #f0e68c
}

table.AlignLeft td
{
	text-align:left;
}

div.Thumbnails
{
  text-align: center;
  height: 752px;
  overflow: auto;
  width:130px;
}
div.MainImage
{
	text-align: center;
	height: 630px;
	background-color: Aqua;
}
div.LinkBox
{
	width: 340px;
	border: white thin solid;
	background-color: #3c5050;
	padding: 5px;
}
div.LinkBox td
{
	text-align: left;
	padding-left: 10px;
}
input
{
	color: White;
	background-color: dimgray;
}

.ThumbBorder
{
  vertical-align: bottom;
  border: solid 2px white;
  margin-bottom: 20px;
}
.ThumbNoBorder
{
  vertical-align: bottom;
  border: solid 2px black;
  margin-bottom: 20px;
}
.NavButton
{
  border: 0px;
}
div.Boxed
{
	border: solid 1px white;
	background-color: #202020;
	padding: 10px;
}

div.LeftAlign td
{
	text-align: left;
	padding: 5px;
}