/*<style>

	Here's a demo stylesheet used to format a menu and its content.
	Feel free to alter the menu layout however you want. All you have to do is ensure the script
	has the correct CSS property name (like 'visibility' or 'display') that you want it to change.

		One good resource for UL/LI formatting: http://www.alistapart.com/articles/taminglists/
	Consult your favourite CSS reference for editing fonts/borders/etc.

	Otherwise, even if you're not very experienced at CSS, you can just go through and change
	the #RGB border/background colours where suitable to customise for your site!

	*/



	/* HORIZONTAL FREESTYLE MENU LAYOUT */


	/* All <ul> tags in the menu including the first level */
	.menulist, .footerlist, .menulist  ul, .footerlist ul, .topmenu, .topmenu ul {
		margin: 0;
		padding: 0;
		list-style: none;
	}

	/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
	.menulist ul {
		visibility: hidden;
		position: absolute;
		/*top: 2.5em; /* I'm using ems rather than px to allow people to zoom their font */
		left: 103px;
		width: 170px;
		height:25px;
		top: 3px;
		background-image: none;

	}

	.footerlist ul {
		visibility: hidden;
		position: absolute;
		/*top: 2.5em; /* I'm using ems rather than px to allow people to zoom their font */
		left: -5px;
		width: 150px;
		top: -59px;
	}
	.topmenu ul {
		visibility: hidden;
		position: absolute;
		/*top: 2.5em; /* I'm using ems rather than px to allow people to zoom their font */
		left: -5px;
		width: 150px;
		top: 24px;
	}

	/* Second and third etc. level submenus - position across from parent instead */
	.menulist ul ul{
		top: 0px;
		left: 150px;
	}

	/* Second and third etc. level submenus - position across from parent instead */
	.footerlist ul ul {
		top: 0px;
		left: 175px;
	}
	.topmenu ul ul {
		top: 0px;
		left: 150px;
		border-width: 1px;
		border-style: solid;
		border-color: #663333;

	}

	/*
		All menu items (<li> tags). 'float: left' lines them up horizontally, and they are
	positioned relatively to correctly offset submenus. Also, they have overlapping borders.
	*/
	.menulist li {
		float: left;
		position: relative;
		font-weight: normal;
		font-size: 9px;
		color: #000066;
		font-family : Arial, Verdana, Geneva, Arial, Helvetica, sans-serif;
		margin-bottom:5px;
		margin-top: -3px;
		margin-left: 3px;
		padding: 0px;
		width: 101px;
		height: 16px;
		/*font-family: "Times New Roman", Times, serif;
		#FED;
		Carlson Antique, Roman,border: 1px solid #330;
		*/
		margin-right: 3px;
		background-image: url(/images/lefthovernavbg.gif);
	}
	.footerlist li {
		float: left;
		position: relative;
		font-size:14px;
		font-weight:bold;

		font-family: "Times New Roman", Times, serif;
	/*#FED;
		border: 1px solid #330;
	*/

		margin-right: 15px;

	}
	.topmenu li {
		float: left;
		position: relative;
		padding: 0px;

		height: 16px;
		top: 0px;
		left:0px;
		font-size: 16px;
		color: #663333;
		font-family: Roman;
	/*#FED;
		Carlson Antique, Roman,border: 1px solid #330;
	*/
		margin-right: 10px;
	}

	/* Items in submenus - override float/border/margin from above, restoring default vertical style */
	.menulist ul li, .footerlist ul li{
		float: none;
width:175px;
height:25px;
border-width: 1px;
		margin-bottom: -1px;
		background-image: none;
		text-indent : 0px;
		background: #FFFFFF;
	}
	.topmenu ul li {
		float: none;
		top:0px;
		left:5px;
		width:150px;
		margin-bottom: -1px;
		background-image: none;
		text-indent : 0px;
		background: #CC9966;
	}
	.menulist ul>li:last-child, .footerlist ul>li:last-child, .topmenu ul>li:last-child {
		margin-bottom: 1px;
	}

	/* Links inside the menu */
	.menulist a, .footerlist a, .topmenu a {
		display: block;
		padding: 3px;
		color: #FBF6CD;
		text-decoration:  none;
	}


		/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
	.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
		color: #FFF;
		background-color: #A64;
	}
	.footerlist a:hover, .footerlist a.highlighted:hover, .footerlist a:focus {
		color: #FFF;
		background-color: #A64;
	}
	.topmenu a:hover, .topmenu a.highlighted:hover, .topmenu a:focus {
		color: #FFF;
		background-color: #A64;
	}
	.menulist  a.highlighted {
		color: #FFF;
		background-color: #C86;
	}
	.footerlist  a.highlighted {
		color: #FFF;
		background-color: #C86;
	}
	.topmenu  a.highlighted {
		color: #FFF;
		background-color: #C86;
	}

	.menulist ul{
		background-image: none;
	}
	/*
	If you want per-item background images in your menu items, here's how to do it.
		1) Assign a unique ID tag to each link in your menu, like so: <a id="xyz" href="#">
		2) Copy and paste these next lines for each link you want to have an image:
	.menulist a#xyz {
		background-image: url(out.gif);
	}
	.menulist a#xyz:hover, .menulist a.highlighted#xyz, .menulist a:focus {
		background-image: url(over.gif);
	}
	*/

	/* Only style submenu indicators within submenus. */
	.menulist a .subind ,.footerlist a .subind ,.topmenu a .subind {
		display:  none;
	}
	.menulist ul a .subind,.footerlist ul a .subind, .topmenu ul a .subind {
		display:  block;
		float: right;
	}

	/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
	.menulist a,.footerlist a,.topmenu a {
		float: left;
	}
	.menulist ul a,.footerlist ul a , .topmenu ul a {
		float: none;
	}
	/* \*/
	.menulist a,.footerlist a, .topmenu ul a  {
		float: none;
	}
	/* */


	/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
	* html .menulist  ul li,.footerlist  ul li ,.topmenu  ul li {
		float: left;
		height: 1%;
	}
	* html .menulist  ul a,.footerlist  ul a, .topmenu ul a {
		height: 1%;
	}
	
	
	
		.arial6 {
		font-size:6px;
		font-family: Arial, Helvetica, sans-serif;
	}
	.arial9 {
		font-size:9px;
		font-weight:bold;
		color: 330000;
		font-family: Arial, Helvetica, sans-serif;
	}
	.arial10 {
		font-size:10px;
		font-weight:bold;
		color: 330000;
		font-family: Arial, Helvetica, sans-serif;
	}
	.arial12 {
		font-size:12px;
		font-weight:normal;
		color: 330000;
		font-family: Arial, Helvetica, sans-serif;
	}
	.arial14 {
		font-size:12px;
		font-weight:normal;
		color: 330000;
		font-family: Arial, Helvetica, sans-serif;
	}
	.breadcrumbs {
		font-size:12px;
		font-weight:bold;
		color: 330000;
		font-family: Arial, Helvetica, sans-serif;
		text-indent: 0px;
	}
	.headerbar {
		font-size:14px;
		font-weight:bold;
		color: #FDF2D6;
		font-family: Arial, Helvetica, sans-serif;
	}
	.headerbar:link {
		font-size:14px;
		font-weight:bold;
		color: #FDF2D6;
		font-family: Arial, Helvetica, sans-serif;
	}
	.headerbar:visited {
		font-size:14px;
		font-weight:bold;
		color: #FDF2D6;
		font-family: Arial, Helvetica, sans-serif;
	}
	.headerbar:hover {
		font-size:14px;
		font-weight:bold;
		color: #EFE1C4;
		font-family: Arial, Helvetica, sans-serif;
	}
	.bodycontent {
	padding-left : 10px;
	padding-top : 10px;	
}
	.searchbox {
		background-position : bottom;
		background-image : url(navstitch.gif);
		height : 40;
		background-repeat : no-repeat;
		width : 100%;
		font-color:000000;
		font-size: 12px;
		font-weight: bold;
	}
	.navmenu {
		border-top: 1.5px solid #CC9966;
		border-bottom: 1.5px solid #CC9966;
		width: 180;
		height: 30;
		display : inline;
	}

	.button {
		font-size:14px;
		font-weight:bold;
		color: 663333;
		font-family: Arial, Helvetica, sans-serif;
		background-image: url(images/maincategorybutton.jpg);
		width: 180;
		height: 30;
		padding-top : 7px;
		padding-left : 7px;
		text-align: left;
		border-top: 1.5px solid #CC9966;
		border-bottom: 1.5px solid #CC9966;
		border-left: 3px solid #CC9966;
		border-right: 3px solid #CC9966;
	}
	.buttonhover {
		font-size:14px;
		font-weight:bold;
		color: 663333;
		font-family: Arial, Helvetica, sans-serif;
		background-image: none;
		background-color: #FDF2D6;
		width: 180;
		height: 30;
		padding-top : 7px;
		padding-left : 7px;
		text-align: left;
		border-top: 1.5px solid #CC9966;
		border-bottom: 1.5px solid #CC9966;
		border-left: 3px solid #CC9966;
		border-right: 3px solid #CC9966;
	}
	.buttonsubcat {
		font-size:11px;
		font-weight:bold;
		color: 000099;
		font-family: Arial, Helvetica, sans-serif;
		background-image: url(images/maincategorybutton.jpg);
		width: 180;
		height: 30;
		padding-top : 7px;
		padding-left : 7px;
		text-align: left;
		text-indent: 10px;
		border-top: 1.5px solid #CC9966;
		border-bottom: 1.5px solid #CC9966;
		border-left: 3px solid #CC9966;
		border-right: 3px solid #CC9966;
	}
	.buttonsubcathover {
		font-size:11px;
		font-weight:bold;
		color: 000099;
		font-family: Arial, Helvetica, sans-serif;
		background-image: none;
		background-color: #FDF2D6;
		width: 180;
		height: 30;
		padding-top : 7px;
		padding-left : 7px;
		text-align: left;
		text-indent: 10px;
		border-top: 1.5px solid #CC9966;
		border-bottom: 1.5px solid #CC9966;
		border-left: 3px solid #CC9966;
		border-right: 3px solid #CC9966;
	}
	.categorydesc {
		font-size:14px;
		font-weight:bold;
		color: 660000;
		font-family: Arial, Helvetica, sans-serif;
	}
	.loginheader {
		font-size:14px;
		font-weight:bold;
		color: 3333CC;
		font-family: Arial, Helvetica, sans-serif;
		padding-left : 5px;
	}
	.loginbody {
		font-size:11px;
		font-weight:bold;
		color: 000000;
		font-family: Arial, Helvetica, sans-serif;
		padding-left : 5px;
	}
	TD{
		font-size:11px;
		font-weight:normal;
		color: 333300;
		font-family: Arial, Helvetica, sans-serif;
	}
	.cartsummaryhead{
		background-color: EEE1C5;
		font-size:11px; 
		font-weight:bolder;
		color: 663333;
		font-family: Arial, Helvetica, sans-serif;
		padding-top : 1px;
		padding-left : 5px;
		text-align: left;
	}
	.cartsummarybody{
		background-color: FFFFFF;
		font-size:9px; 
		font-weight:bolder;
		color: 660000;
		font-family: Arial, Helvetica, sans-serif;
		padding-top : 3px;
		padding-left : 5px;
	}
	A.cartsummarylink{
		background-color: FFFFFF;
		font-size:11px; 
		text-decoration: underline;
		font-weight:bold;
		color: 660000;
		font-family: Arial, Helvetica, sans-serif;
		padding-top : 3px;
		padding-left : 5px;
	}

.itemlistbody {
		font-size:11px;
		font-weight:bold;
		color: 660000;
		font-family: Arial, Helvetica, sans-serif;
		text-align:left;
	}
	
A{
		text-decoration: none;
		color: 660000;
}

	.itemdetailhead{
		background-color: EEE1C5;
		background-image: url(images/maincategorybutton.jpg);
		font-size:19px;
		font-weight:normal;
		color: 663333;
		font-family: Arial, Helvetica, sans-serif;
		padding-top : 5px;
		padding-left : 5px;
		text-align: left;
		height: 32;
	}
	.addtocart{
		color: 006699;
		font-size:14px;
		font-weight:normal;
		font-family: Arial Black, Arial, Helvetica, sans-serif;
	}
	.itemdeschead{
		background-color: EEE1C5;
		font-size:12px;
		font-weight:bolder;
		color: 663333;
		font-family: Arial, Helvetica, sans-serif;
		padding-top : 1px;
		padding-left : 5px;
		text-align: left;
	}
	.itemdescbody{
		background-color: FFFFFF;
		font-size:11px;
		font-weight:normal;
		color: 660000;
		font-family: Arial, Helvetica, sans-serif;
		padding-top : 3px;
		padding-left : 5px;
	}
	.crosssell{
		background-color: BCD4D2;
		font-size:12px;
		font-weight:bold;
		color: #330099;
		font-family: Arial, Helvetica, sans-serif;
		padding-top : 2px;
		padding-left : 5px;
		text-align: left;
		height: 22;
		width: 550;
	}
	.crossselltip{
		padding-top: 5px;
		padding-left: 15px;
		text-align: left;
		color: #CC3333;
		width: 90px;
	}
	.maroon{
		color: #663333;
	}
	.gray {
		color: ##d3d3d3
	}
	.bold{
		font-weight: bold;
	}
	.red{
		color: #CC3333;
	}
	.blue{
		color: #330099;
	}
  
.titleBarText {
	font-size: 11px;
  padding-left: 10px;
  color:#FDF2D6;
  background-color:#663333;
}

.stdButton {
	font-family: tahoma;
	font-size: 10px;
	border:1px solid #000000;
  background-color:#663333;
  color: #FDF2D6;
  cursor: pointer;
}

.linkTextReverse {
  color: #FFF1D9;
  text-decoration: none;
}
.linkTextReverse:link {
  color: #FFF1D9;
  text-decoration: none;
}
.linkTextReverse:visited {
  color: #FFF1D9;
  text-decoration: none;
}
.linkTextReverse:hover {
  color: #FFF1D9;
  text-decoration: underline;
}

.linkText {
  color: #333300;
  text-decoration: none;
}
.linkText:link {
  color: #333300;
  text-decoration: none;
}
.linkText:visited {
  color: #333300;
  text-decoration: none;
}
.linkText:hover {
  color: #333300;
  text-decoration: underline;
}

.stdFormField {
  font-family: Arial, Helvetica, sans-serif;
  font-size:10px;
  border-style:solid;
  border-width:1px;
  border-color:#CBCBCB;
  background-color:#ffffff;
  color:#663333;
  margin-left:0px;
  margin-right:0px;
}

.attention {
  color: #ff0000;
  font-weight: bold;
}

DIV	{
		font-size:11px;
		font-weight:normal;
		color: 333300;
		font-family: Arial, Helvetica, sans-serif;
	}
	
	
	
	
	
	
	
	
	
	
	/* End Hack */
	/*
</style>*/

