/*______________ STANDARD STYLES __________________ */

h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 24px;
	font-weight: bold;
	color: #12689b; /* dark blue */	
	margin:0;
	padding:0;
}
h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: bold;
	color:#679a9b; /* dark blue green */
	margin:0;
	padding:0;

}
h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #12689b; /* dark blue */	
	margin-top:10px;
	margin-right:0;
	margin-bottom:0;
	margin-left:0;
	padding:0;
}
h4 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	font-style:italic;
	color: #12689b; /* dark blue */	
	margin-top:10px;
	margin-right:0;
	margin-bottom:0;
	margin-left:0;
	padding:0;
}
p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color:#679a9b; /* dark blue green */
	margin:0;
	padding-top:4px;
	padding-right:0;
	padding-bottom:4px;
	padding-left:0;
}
pre {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #12689b; /* dark blue */	
	margin:0;
	padding:0;
}
th,td {
	/*borders and padding to make the table readable*/
	border:0px solid #000;
	padding:.5em;
}

/* ====================================================== */


body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color:#679a9b; /* dark blue green */
	background-image: url(images/bkgrd_hwc.jpg);
	background-repeat: repeat-x;
	background-color: #99cccd;/* light aqua green */
	margin: 0px;
	padding: 0px;
	text-align:center;	
}
#wrapper {
	text-align: left;
	margin: 0px auto;
	border:0;
	width: 750px;
	background-color: #FFFFFF;	
}
#header {
	padding: 10px;
	background-color: #679a9b; /* dark blue green */
	height: 80px;
}
#header .logo {
	width: 40%;
	display: block;
	float: left;
	margin-right: 25%;
}
#flashHolder {
	padding: 6px;
}
hr {
	color: #99cccd;/* light aqua green */
	background-color: #99cccd;/* light aqua green */
	height: 1px;
	margin: 0px;
	padding: 0px;
}
#container {
	padding: 6px;
}

#side-a {
	float: left;
	width: 138px;
}

#side-b {
	margin: 0;
	float: left;
	width: 600px;
	height: 1% /* Holly hack for Peekaboo Bug */
}
.left { 
	border-left: 2px solid #FFFFFF;
	margin: 0;
	float: left;
	width: 333px;	
}
.right { 
	border-left: 1px solid #99cccd;/* light aqua green */
	margin: 0 0 0 6px;
	padding: 0 0 0 6px;	
	float: left;
	width: 250px;
}
#anchor {
	text-align: center;
	color: #FFFFFF;	
	background-color: #12689b; /* dark blue */
	margin: 0px;
	padding: 1px;
	clear: both;
}
#anchor li {
	display: inline;
	list-style-type: none;
	padding-right: 10px;
	padding-left: 10px;
}
#anchor a:link, #anchor a:visited  {
	color: #FFFFFF;
}
#anchor li a:hover  {
	color: #99cccd; /* light aqua green */	
}

#footer {
	padding: 1px;
	background-color: #679a9b; /* dark blue green */
	clear: both;	
}
#footer p {
	text-align: center;
	color: #99cccd; /* light aqua green */	
}

/* -------- MOD STYLES -------- */

.mod {
	background-image: url(images/bkgrd_mod.jpg);
	background-repeat: repeat-x;
	padding-top: 10px;
	margin-bottom: 5px;
	
}

#catHomeMod {
	color: #FFFFFF;
	background-image: url(images/pic_catalogueThumb.jpg);
	background-repeat: no-repeat;
	height: 101px;
	width: 248px;
}
#catHomeMod h1 {
	margin: 0px;
	padding: 0px;
}
#catHomeMod p {
	padding-top: 10px;
	padding-right: 40px;
	padding-bottom: 10px;	
	padding-left: 60px;
}

/* ----- NAVIGATION ------- */

/*

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 changes to show/hide menus.

If you want to extend this layout, one good resource for UL/LI formatting is:
    http://www.alistapart.com/articles/taminglists/
Alternatively, you can use any other CSS dropdown layout instead. More here:
    http://www.alvit.de/css-showcase/
Consult your favourite CSS reference for customising fonts/borders/etc.

Otherwise, you can just change the #RGB border/background colours where
suitable to customise for your site -- easy :).

*/



/* MAIN NAVIGATION */


/* All <ul> tags in the menu including the first level */
.navlist, .navlist ul {
	 position: relative;
	 text-align: left;
	 text-transform: uppercase;
	 margin: 0;
	 padding-top: 0px;
	 padding-right: 0;
	 padding-bottom: 10px;
	 padding-left: 0;
	 width: 138px;
	 list-style: none;
	 line-height:18px;
	!important; /*z-index:199;*/ z-index:9999;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.navlist ul {
	 display: none;
	 position: absolute;
	 top: 0px;
	 left: 138px;
	 width: 138px;
}


/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */
.navlist li {
	position: relative;
	margin-bottom: -1px;
	list-style: none;
	background-image: url(images/nav_bkgrd.jpg);
	background-repeat: repeat-x;	 
}

/* Links inside the menu */
.navlist li a {
	 color: #00669A; /* dark blue */
	 text-decoration: none;
	 display: block;
	 padding-left: 6px;
	 padding-top: 4px;
	 padding-bottom: 5px;
	 padding-right: 5px;
}
/* HACKS: MSIE6 doesn't support transparent borders, mimic with margins */
* html .navlist li a {
	 border-width: 0;
	 margin: 1px;
}

/*
 Lit items: hover/focus = the current item. 'highlighted' = parent items to visible menus.
 Here, active items are given a border, and a padding tweak to 'elevate' the text within.
 Feel free to use background-image:url(file.gif) instead of background-color:#nnn here...
*/
.navlist a:hover, .navlist a.highlighted:hover, .navlist a:focus {
	 color: #5f1d29;/*dark red*/
	 text-decoration: none;
}
.navlist a.highlighted {
	 color: #5f1d29;/*dark red*/
	 text-decoration: 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);
    }
*/


/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.navlist a .subind {
	 float: right;
}
.navlist a.menu2 {
	 color: #333333;/*dark grey*/
	 border: 1px solid #000000;	
	 padding-bottom: 4px;
	 margin-bottom: 0px;
     background-color: #f0eac6;/*light tan*/

}
.navlist a.menu2:hover {
	 color: #5f1d29;/*dark red*/
     background: #ffffff;
	 border: 1px solid #000000;	
	 padding-bottom: 4px;
	 margin-bottom: 0px;     
}


/*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *:first-child+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/
*:first-child+html .navlist li {
	 float: left;
	 width: 100%;
}

* html .navlist li {
	 float: left;
	 height: 1%;
}
* html .navlist a {
	 height: 1%;
}
/* End Hacks */