
/* Default font and background for the site */
BODY
{
	font-family: "Trebuchet MS", Verdana, sans-serif;
	font-size: 12.0pt;
	color: black;
	background-color: white;
	text-align: justify;
}
P { text-align: justify }

/* Make all links black (including images that are links) */
:link { color: black; }
:visited { color: black; }
:active { color: black; }
:hover { color: black; }
IMG { border-color:black; }

TABLE { width:720; } /* Force a page width of 720 as most elements are in tables (others are centered) */

/* The navigation bar */
.navigation 
{
	font-size: 12.0pt;
	background-color:white;
	text-align:center;
	color:blue; /* Only the current page (not a link) will be this colour */ 
}

/* H1 used for main title of website (on all pages) NB font-family as BODY text at present */
H1 { text-align: center; }
/* H2 used for titles of galleries */
H2
{
	font-size: 14.0pt;
	color:black;
	font-weight:bold;
	text-align: center;
}
/* H3 used for titles of paintings and galleries underneath thumbnails */
H3
{
	font-size: 12.0pt; 
	color: black;
	font-weight: bold;
	margin-top: 10px; /* Gap between bottom of thumbnail and title */
	margin-bottom: 0px; /* Avoids newline after text */
	padding: 0px 0px 0px 0px; /* Avoids newline after text */
}
/* H4 used for details about paintings (size etc.) */
H4
{
	font-size: 10.0pt;
	color: black;
	font-weight: normal;
	margin-top: 5px; /* Gap between title and details */
	margin-bottom: 0px; /* Avoids newline after text */
	padding: 0px 0px 0px 0px; /* Avoids newline after text */
}
H4.sold
{
	color: red;
	margin-top: 0px;
}
/* H5 used for last update and copyright at the bottom of the page */
H5 
{
	font-size: 8.0pt;
	font-weight: normal;
	text-align: center;
	margin: 0px 0px 0px 0px; /* Avoids newline after text */
	padding: 0px 0px 0px 0px; /* Avoids newline after text */
}
/* H6 not currently used */
