﻿/*
	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

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

Sections:
- CatNav.asp
	A. Expanding Navigation Menu (vertical)
	B. Breadcrumb Trail (horizontal)
	C. Level 1 Tabs (horizontal)
- CatIndexGet.asp
	D. Index Page
- Stacked Pages
	E. Index Page
- CatItemGet.asp, Stacked Pages
	F. Item Page 

Customer EnduranceGB - Standard Colour values used:
	Blue		#003399
	Red			#FF002A
	Light Blue	#465F9F

Customer Copy History for EnduranceGB:
	1.0 12/05/08 First issue
	1.1 13/05/08 Upgrade for Feature issue 1.1
    1.2 10/12/08 text align left for index table
	1.3 05/01/10 Upgrade for feature issue 1.4: eCommerce CN119
	1.4 2/2/10 class dropdown font size
	1.5 25/03/10 D.Kent Template V1.5 fix
*/

/* A. Expanding Navigation Menu (verical) - CatNav.asp */
div.NavList {
	/* Typically for a background or border */
}
ul.NavList li {
	list-style-type: none;
	list-style-image: none;
	padding-left: 20px;
}
ul.NavList a, ul.NavList a:link, ul.NavList a:visited {
	text-decoration: none;
	color: #AB228D;
}
ul.NavList a:hover, ul.NavList a:active {
	text-decoration: underline;
	color: #E30B0B;
}
ul.NavList {
	border-bottom: 1px rgb(204,153,255) dotted;
	margin: 0px;
	padding: 0px;
}
li.Level1 {
	margin-left: 2px;
	padding-top: 5px;
	padding-bottom: 5px;
	border-top: 1px rgb(204,153,255) dotted;
}
li.Level2 {
	margin-left: 8px;
}
li.Level3 {
	margin-left: 14px;
}
li.NavExpanded {
	font-weight:bold;
	background-image: url('../assets/images/TreeBulletExpanded.gif');
	background-position: left center;
	background-repeat: no-repeat;
}
li.NavContracted {
	background-image: url('../assets/images/TreeBulletContracted.gif');
	background-position: left center;
	background-repeat: no-repeat;
}
li.NavEnd, li.NavSelected {
	background-image: url('../assets/images/TreeBulletEnd.gif');
	background-position: left center;
	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: 20px;
	/* 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 {
	padding: 0px 0px; 
	background-image: url(../assets/images/TabBG.gif);
	background-repeat: repeat; 
}

ul.NavTab {
	margin: 0px;
}

ul.NavTab li {
	display: inline-block; /* Rule 1 - do not change */
}
ul.NavTab li {
	display: inline; /* Rule 2 - do not change. Needed to get IE to do Rule 1! */
}

ul.NavTab li {
	margin: 0;
	padding: 0 0 5px 18px; 
	height: 30px;
	background-image: url(../assets/images/TabL.gif);
	background-repeat: no-repeat; 
	background-position: left top;
	list-style-type: none;
}

ul.NavTab li.tab1Class {
	/* Use if the first Tab needs special properties */
}

ul.NavTab li div {
	padding: 0 20px 0 0;
	margin-left: 0;
	background-image: url('../assets/images/TabR.gif'); 
	background-repeat: no-repeat; 
	background-position: right top;
}

ul.NavTab li a {
	line-height: 30px;

}
ul.NavTab li a:link, ul.NavTab li a:visited, ul.NavTab li a:active{
	font-weight: bold;
	text-decoration: none;
	color: #E30B0B;
}

ul.NavTab li a:hover {
	font-weight: bold;
	text-decoration: none;
	color: #FFFFFF;
}

ul.NavTab li.tabSelected {
	font-weight: bold;
	color: #E30B0B;
	background-image: url('../assets/images/TabSelectedL.gif'); 
	background-repeat: no-repeat; 
	background-position: left top;
}

ul.NavTab li.tabSelected a, ul.NavTab li.tabSelected a:link, ul.NavTab li.tabSelected a:visited, ul.NavTab li.tabSelected a:active {
	text-decoration: none;
	color: #FFFFFF;
}
ul.NavTab li.tabSelected a:hover {
	text-decoration: none;
	color: #E30B0B;
}


ul.NavTab li.tabSelected div {
	background-image: url('../assets/images/TabSelectedR.gif'); 
}


/* D. Index Page - CatIndexGet.asp */

/* E. Index Page - CatIndexGet.asp, Stacked Pages (CatIndex.js) */
table.CatIndexTable {
	border: 1px #003399 solid; 
	width: 100%; 	
}
table.CatIndexTable p {
	text-align: left;
}

.FlashIndex {
	font-size: 120%;
	color: rgb(255,0,0);
	font-weight: bold;
}

/* F. Item Page - CatItemGet.asp, Stacked Pages */
p#CartSubmit {
	display: none;
}
.dropdown {
	font-size: 11px;
	background-color: rgb(170,191,255);
}

.FlashUnderlay {
	z-index: -2;
	position: absolute;
	opacity: 0.5;
	filter: alpha(opacity=50);
	height: 34px;
	left: 0;
	top: 0;
}

.FlashOverlay {
	font-size: 28px;
	color: rgb(0,255,0);
	font-weight: bold;
	text-align: center;
	z-index: -1;
	position: absolute;
	left: 0;
	top: 5px;
}
