﻿/*
	Copyright 2008 eShopHost Ltd
	Style Sheet for eCommerce eCatalogue Dynamic Index & Item pages, and eCatalogue Navigation menu

Feature History
	1.0 03/05/08 First issue
	1.1 13/05/08 Revisions from first deployment (ESOP); no need to re-reference assets in CSS
	1.2 19/08/08 D.Kent CN102: class CatLinksTable
	1.3 09/11/08 D.Kent BR105 Level 1 Tab did not render correctly in FireFox - change from div + display: inline-block to float: left

Instructions:
	1. Locate in folder cat
	2. Reference as ..cat/Cat.css in link elements (drop the leading dot on the home page)
	3. Configure CSS to required presentation

Customer ClassicUpholsteryfoam  - Standard Colour values used:
	dark green  #3C746B
	Lightgreen	#CEDEE7
	aqua        #B5E7E7

Customer Copy History for www.ClassicUpholsteryfoam.co.uk:
	1.0 12/11/2008 First draft
	1.1 25/03/10 D.Kent Template V1.5 fix
	1.2 04/07/11 D.Kent Template V1.6 CN: Multi-Photo Support
		li.NavExpanded, etc. - change background-position y to top.
*/


/* A. Expanding Navigation Menu (vertical) - CatNav.asp */
div.NavList {
	/* Typically for a background or border */
}
ul.NavList li {
	list-style-type: none;
	list-style-image: none;
	padding-left: 20px;
	font-size: 12px;
}
ul.NavList a, ul.NavList a:link, ul.NavList a:visited {
	text-decoration: none;
	color: #3C746B;
}
ul.NavList a:hover, ul.NavList a:active {
	text-decoration: underline;
	color: #333333;
}
ul.NavList {
	border-bottom: 1px #3C746B solid;
	margin: 0 1px;
	padding: 0px;
}
li.Level1 {
	margin-left: 6px;
	padding-top: 5px;
	padding-bottom: 5px;
	border-top: 1px #3C746B solid;
}
li.Level2 {
	margin-left: 10px;
}
li.Level3 {
	margin-left: 14px;
}
li.NavExpanded {
	font-weight:bold;
	background-image: url('../assets/images/TreeBulletExpanded.gif');
	background-position:left top;
	background-repeat: no-repeat;
}
li.NavContracted {
	background-image: url('../assets/images/TreeBulletContracted.gif');
	background-position:left top;
	background-repeat: no-repeat;
}
li.NavEnd, li.NavSelected {
	background-image: url('../assets/images/TreeBulletEnd.gif');
	background-position:left top;
	background-repeat: no-repeat;
}
li.NavSelected a {
	font-weight: bold;
}


/* B. Breadcrumb Trail (horizontal) - CatNav.asp */
div.NavBreadcrumb {
	/* Typically for a background or border */
}

ul.NavBreadcrumb li {
	display: inline;
	padding-right: 5px;
	/* Note: bullets do not work when display is inline */
}
ul.NavBreadcrumb li.NavHome {
	background-image: none;
}


/* C. Level 1 Tabs (horizontal) - CatNav.asp */
div.NavTab {
	float: left;
	padding: 0px 20px; 
	background-image: url(../assets/images/TabBG.gif);
	background-repeat: repeat-x; 
}
ul.NavTab {
	list-style-type: none;
	list-style-image: none;
	margin: 0px;
	padding: 0px;
}
ul.NavTab li {
	list-style-type: none;
	list-style-image: none;
	float: left;
	margin: 0px;
	padding: 0 0 5px 18px; 
	height: 30px;
	background-image: url(../assets/images/TabL.gif);
	background-repeat: no-repeat; 
	background-position: left top;
}

ul.NavTab li.tab1Class {
	/* Use if the first Tab needs special properties */
}

ul.NavTab li a {
	display: block;
	line-height: 30px;
	padding: 0 20px 0 0;
	background-image: url('../assets/images/TabR.gif'); 
	background-repeat: no-repeat; 
	background-position: right top;
}

ul.NavTab li.tabSelected {
	font-weight: bold;
	color: #E30B0B;
	background-image: url('../assets/images/TabSelectedL.gif'); 
}

ul.NavTab li.tabSelected a {
	background-image: url('../assets/images/TabSelectedR.gif'); 
}


/* D. Index Page - CatIndexGet.asp */
table.CatIndexTable {
	border: 1px #CEDEE7 solid;
}

table.CatLinksTable td {
	vertical-align: top;
	padding: 3px;
}

img#PhotoCatIndexB {
	float: right;
}


/* F. Item Page - CatItemGet.asp, Stacked Pages */
p#CartSubmit {
	display: none;
}
/* Item Page - CatItemGet.asp */
#MailOrderForm textarea.dropdown {
    width: 200px;
    height: 50px; 
}
/* - see NOF CSS */

/* MultiPhoto feature - any number of variant product images are supported */
#MailOrderForm .MultiPhotoMain {
	/* The main product photo */
	float: left;
}

#MailOrderForm .MultiPhoto {
	/* Each thumbnail photo */
	float: left;
	border: 2px #CEDEE7 solid;
	margin: 0 0 10px 10px;
}

#MailOrderForm .MultiPhotoHover {
	/* When thumbnail is hovered over (mouse over) */
	cursor: pointer;
	border-color: red;	
}

#MailOrderForm .MultiPhotoSelected {
	/* When thumbnail is the one selected for the main photo */
	border-color: #3C746B;	
}

form#MailOrderForm h4 { /* product title */
	/* Often need to override web's general heading styles just for the catalogue item */
}

form#MailOrderForm h6 { /* option headings */
	/* Often need to override web's general heading styles just for the catalogue item */
}

