/***
 * A NOTE ON COLOUR SCHEMES for Cottle Hill Winery
 *
 * Peach: #F0D591 rgb(240,213,145)
 * Blue : #00164B rgb(  0, 22, 75)
 * Red  : #660000 rgb(102,  0,  0)
 *
 * ... and of course ...
 * White: #FFFFFF rgb(255,255,255)
 * Black: #000000 rgb(  0,  0,  0)
 *
 **/



/*
 These styles affect the way hyperlinks are displayed.
 a:link is the colour of the link before clicking
 a:visited is the colour of the link after visiting
 I set them the same because the site is small enough.

 a:hover is the effect that occurs when the mouse is sitting
 on a hyperlink.  In this case, the background colour glows
 red and the text turns white.
*/

a:link,a:visited {
	color: rgb(0, 22, 75);
/*	text-decoration: none;
*/
}
a:hover { 
	background-color: rgb(102, 0, 0);
	color: rgb(255, 255, 255);
}


/*
 These styles affect all of the text on the page.  <p> is
 a paragraph tag, and <td> is a table descriptor.  All text
 on the website is contained within one of these two tags
 somewhere.
*/
p, td { 
	font-family: Arial,Helvetica,sans-serif;
	font-size: 10pt;
}

/*
 Turn of text-wrapping in all table cells except for those
 that we will turn on later.
}
td {
	white-space: nowrap;
}

.maintable {
	text-align: left;
	width: 551px;
}


/*
 These are the styles that affect the text of the top menu bar
*/
.menuitem { 
	font-family: Arial,Helvetica,sans-serif;
	font-size: 10pt;
	color: rgb(0, 22, 75);
	text-align: center;
}


/*
 This style is for the text at the bottom of the page describing
 the contact details for the winery.
*/
.contactBottom { font-size: 8pt; }


/*
 In the Cottle Hill Food menu, any items that are marked
 as vegetarian option items are marked with the 'vegmark'
 style.
*/
.vegmark { color: rgb(255,0,0); }


/* 
 Any reserve wines have this style applied to the 'reserve'
 mark.
*/
.reserve { font-size: 8pt; color: rgb(128,128,128); }

/*
 This style affects the wines that are on special on the order form.
*/
.on_special { color: rgb(255,0,0); font-weight: bold; }
