﻿/*-------------------------------------------*/
/* General properties shared by all screens. */
/*-------------------------------------------*/

.AllScreens
{
	margin-bottom: 0px;
	margin-left: 0px;
	margin-right: 0px;
	margin-top: 0px;
	background-image: URL(Graphics/Background.jpg);
}

/*--------------*/
/* Text styles. */
/*--------------*/

/* Page headings only. */
.HeaderText
{
	color: #000000;
	font-family: Arial, sans-serif;
	font-size: xx-large;
	font-weight: bold;
	text-align: left;
	vertical-align: middle;
}

/* Sub-headings only. */
.SubheaderText
{
	color: #000000;
	font-family:"arial", "sans-serif";
	font-size: x-large;
	font-weight: bold;
	text-align: left;
	vertical-align: middle;
}

/* Sub-headings only. */
.SubsubheaderText
{
	color: #000000;
	font-family:"arial", "sans-serif";
	font-size: large;
	font-weight: bold;
	text-align: left;
	vertical-align: middle;
}

/* Main text used in product listings, descriptions etc. */
.MainText
{
	color: #000000;
	font-family: "arial", "sans-serif";
	font-size: medium;
	font-weight: bold;
}

/* Notes for products and general instructions. */
.MainTextNonBold
{
	color: #000000;
	font-family: "arial", "sans-serif";
	font-size: medium;
	font-weight: normal;
}

/* Used for 'wanted' notice on front page. */
.WantedText
{
	color: #FFFF00;
	font-family: "arial", "sans-serif";
	font-size: medium;
	font-weight: bold;
}

/* Used for footnotes on listing page. */
.SmallText
{
	font-family: "arial", "sans-serif";
	font-size: small;
	font-weight: bold;
	color: #000000;
}

/* Used for the 'click on an item' message on listing page. */
.ClickOnItemText
{
	font-family: "arial", "sans-serif";
	font-size: x-small;
	font-weight: normal;
	color: #000000;
}

/* Standard error message format. */
.ErrorMessage
{
	font-family: "arial", "sans-serif";
	font-size: small;
	font-weight: bold;
	color: #FF0000;
}

/*--------------------*/
/* Table cell styles. */
/*--------------------*/

/* Used for label boxes on product page (light text on dark background). */
.ProductLabelText
{
	background-color: #34592B;
	color: #F1F1DD;
	font-family: "arial", "sans-serif";
	font-size: medium;
	font-weight: bold;
	text-align: right;
	vertical-align: top;
	width: 110px;
}

/* Definition of the cell that contains product details on product page. */
.ProductDetailsCell
{
	text-align: left;
	vertical-align: top;
	width: 400px;
}

/*--------------------------*/
/* Standard command button. */
/*--------------------------*/

.StandardButton
{
	background-color: #34592B;
	color: #FFFFFF;
	font-family: Arial, sans-serif;
	font-size: small;
	font-weight: bold;
	width: 80px;
}

/*--------------------*/
/* Standard datagrid. */
/*--------------------*/
.StandardDataGrid
{
	border-width: 3px;
}

.StandardDataGridHeader
{
	background-color: #93B993;
}

.StandardDataGridAlternate
{
	background-color: #CCCCCC;
}

/*---------------------------------------*/
/* Properties for a table with a border. */
/*---------------------------------------*/
.BorderedTable
{
	border-width: 2px;
	border-color: #333333;
	border-style: solid;
	margin-left: 30px;
}

/*-----------------*/
/* Standard links. */
/*-----------------*/
A:link
{	
	color: #000000;
	font-family: "arial", "sans-serif";
}	
		
A:visited
{	
	color:	#000088;
	font-family: "arial", "sans-serif";
}	
		
A:active
{	
	color:	#FFFF00;
	font-family: "arial", "sans-serif";
}