/* 
This cascading style sheet (CSS) conforms to the CSS specifications and was 
designed based on examples at http://www.w3schools.com/css/ .  
Microsoft Visual Studio 2003 editor was used to compose this style sheet.
*/

/* Main body styles for all pages linked to this CSS */
body
{
	color: black;
	font-family: "arial";
	font-size: 12px;
	background-color: #AA9890;	
}
/*==========================================================*/
/* LINKS													*/
/*==========================================================*/
/* Format for top leve link on the top-right of every page #3C2B0F*/
a.headlink
{
	color: #BDA493;
	font-family: "arial";
	font-size: 12px;
	text-decoration: none;
}
/* Format for active navigation area*/
a.headlink_active
{
	color: #4C3614;
	font-family: "arial";
	font-size: 12px;
	text-decoration: none;
}
/* Format for center link on top right navigation.  It has bars on the sides */
a.headlink_center
{
	color: #BDA493;
	font-family: "arial";
	font-size: 12px;
	text-decoration: none;
	border-left: solid thin;
	border-right: solid thin;
	padding-left: 5;
	padding-right: 5;
}
/* Format for center link on top right navigation when the center element is selected.  
It has bars on the sides */
a.headlink_center_active
{
	color: #4C3614;
	font-family: "arial";
	font-size: 12px;
	text-decoration: none;
	border-left: solid thin;
	border-right: solid thin;
	padding-left: 5;
	padding-right: 5;
}


/* Format of small navigation links on top right for mural, ill, portrait*/
a.portfolio_category_navlink
{
	color: #BDA493;
	font-family: "arial";
	text-decoration: none;
	font-size: 11px;
}
a.portfolio_category_navlink_active
{
	color: #4C3614;
	font-family: "arial";
	text-decoration: none;
	font-size: 11px;
}
/* Format for links to portfolio categories*/
a.portfolio_category_link
{
	color: #4C3614;
	font-family: "arial";
	text-decoration: none;
	font-size: 14px;
}

/*==========================================================*/
/* TABLES AND TD CELLS										*/
/*==========================================================*/

/* Page layout for all pages*/
table.mainlayout
{
	background-color: #FFFFFF;
	/*choices for border-style are none, hidden, dotted, dashed, solid, double, groove, ridge, inset, outset*/
	border-style: none;
	border-color: #000000;
	border-width: thin;
	padding: 0;
	/* Redundant total table width definition.  Firefox is ok with using the sum of column widths for the table width.  
	IExplorer stretches the table to fit the window (!), so define a width here*/
	width: 1030;
}

/* Style for thumbnail organizer table.  Mostly useful to define table outer border */
table.thumbnails
{
	border-style: none; 
}

/* Style for cell that contains thumbnail and label*/
td.thumbnail
{
	padding: 7px;
	color: #BDA493;
	font-family: "arial";
	font-size: 12px;
	text-align: center;
	vertical-align: top;
	border-style: none;
}

/* Style for cell that contains thumbnail and label*/
td.detail_header
{
	padding: 7px;
	color: #4C3614;
	font-family: "arial";
	font-size: 12px;
	text-align: center;
	vertical-align: top;
	border-style: none;
}

/* Format of cells that contain images and links to each category 
of the portolio: murals, portraits, illustrations, drawings */
td.portfolio_category
{
	color: #000000;
	font-family: "arial";
	font-size: 18px;
	font-weight: 500;
	text-decoration: none;
	vertical-align: middle;
	text-align: center;
}

/* Format of the image viewer table cell for all pages*/
td.imageviewer
{
	text-align: center;
	vertical-align: top;
	border-style: none;
	padding: 7 0 0 0;
}

/* Format for thumbnail image captions */
td.caption
{
	color: #4C3614;
	border-style: none;
	border-width: thin;
	font-family: "arial";
	font-size: 12px;
	text-align: left;
	vertical-align: top;
	padding-left: 10px;
	padding-right: 10px;
}

/* Format of the biography*/
td.biography
{
	text-align: left;
	vertical-align: top;
	border-style: none;
	font-family: "arial";
	font-size: 14px;
	padding: 6px;
}
/* Format for the fine print */
td.copyright
{
	height: 20;
	color: #4C3614;
	font-family: "arial";
	font-size: 10px;
	text-align: center;
	vertical-align: center;
}

/* Table cell styles of dummy cells to define dimension of table*/
td.col1_row1
{
	width: 20;
	height: 1;
}
td.col2
{
	width: 240;
}
td.col3
{
	width: 480;
}
td.col4
{
	width: 120;
}
td.col5
{
	width: 120;
}
td.col6
{
	width: 20;
}
td.row2
{
	height: 100;
}
td.row3
{
	/* Set this height to include the 460px high image and the caption text*/
	height: 530;
}
