/* This sets what the links look like when they're just sitting there and haven't been visited yet. */
a
{
    color: #996559;
	font-style: italic;
    text-decoration: underline;
}

/* This sets what links look like when they have been visited (i.e. identical to "not-visited"). */
a:visited
{
    color: #996559;
}

/* This sets what links look like when the mouse cursor is over them, the only difference being the color. */
a:hover
{
    color: #ff0014;
}

/* This has overall settings, most importantly the light-grey background color. */
Body 
{
	background: #f5f3f4;
    color: #444444;
    font-family: 'HelveticaNeue-Bold', 'Helvetica Neue', 'Arial', 'sans-serif';
    line-height: 20px;
	text-align: center;
}

/* This sets the standard width for all the layers (divs) and centers them. */
div
{
	margin: 0px auto;
	width: 700px;
}

/* This sets standard size and color for the "Footer" class. */
font.Footer
{
	font-size: 10px;
}

/* This sets standard size and color for the "Subtitle" class. */
font.Subtitle
{
	color:#006600;
	font-size:16px;
	font-weight:bold;
}

/* This sets standard size and color for the "Title" class. */
font.Title
{
	color:#006600;
	font-size:24px;
}

/* This tells images to have no borders. */
img
{
    border: none;
}
 
/* This sets the properties for the "Crossfade" class of pictures on the home page. */
img.Crossfade
{
	filter:'alpha(opacity = 0)';
	opacity:0;
	position:absolute;
	z-index:20;
}

/* This sets the default width for all the tables. */
table
{
	width: 700px;
}

/* Since all the text is contained in tables, this is where the standard font size is set. */
td
{
	font-size: 14px;
}