
/*
  Version 3.1
  Last modified 20150902
  Copyright Active Consultancy
  Variables defined by cssvariables.php
*/

/* common abbreviations - used in naming classes
  b = black
  bdr = border
  bg = background
  bm = bottom
  bt = button
  c = centre
  clr = colour
  d = down
  frm = form
  ftr = footer
  hdr = header
  img = image
  l = left
  m = main (eg mnav)
  nav = navigation
  pag = pagination
  r = right
  s = sub (eg snav)
  t = top
  tbl = table
  txt = text
  u = up
  w = white
*/

/* panel widths
  large = 979px / inside panelcontent = 944px
  medium = 649px / inside panelcontent = 614px
  small = 319px / inside panelcontent = 284px
*/

/* settings global START */

html {
  overflow-y: scroll;
}

body, table, tr, td, form, div, p, ol, ul, li, h2, h3, h4, h5, h6, a:link, a:visited, a:hover, a  {
	font-family: Arial, Helvetica, FreeSans, sans-serif;
	margin: 0;
	padding: 0;
}

body {
	text-align: center;
  background-color: #231f20;
  background-image: url(/images/background/default/body.jpg);
  background-position: top center;
  background-repeat: repeat-x;
  height: 100%;
}

.floatl {
  float: left;
}

.floatr {
  float: right;
}

.widthfull {
  width: 100%;
}

/* settings global END */

/* type styles global START */

h1 {
  font-family: Arial, Helvetica, FreeSans, sans-serif;
	color: #322f31;
	font-size: 113%; /* 18px at normal size - 18/16 = 1.125 */
  font-weight: normal;
}

h2 {
	color: #f9f9f9;
  font-size: 94%; /* 15px at normal size - 15/16 = 0.9375 */
  font-weight: normal;
}

h3 {
	color: #544e52;
  font-size: 94%; /* 15px at normal size - 15/16 = 0.9375 */
}

h4 {
	color: #88b3da;
}

h5 {
	color: #544e52;
  font-size: 81%; /* 13px at normal size - 13/16 = 0.8125 */
}

h6 {
	color: #88b3da;
  font-size: 75%; /* 12px at normal size - 12/16 = 0.75 */
}

p, label, input, select, textarea, table, ul, ol , .txtclr{
	color: #544e52;
}

a, .linkclr {
	color: #231f20;
}

a img {
	border: 0;
}

.normal {
	font-weight: normal;
}

.bold {
	font-weight: bold;
}

.italic {
	font-style: italic;
}

.error {
	color: #bf1733;
/*	font-weight: bold; */
}

.txtsmall {
/* use this in a block property - eg <p class="txtsmall"> - to change the font-size to small */
	font-size: 69% !important;
}

/* increase/decrease font sizes by specified percentage - designed to be used in a span tag */
.txtlarger225 {
	font-size: 225%;
}

.alignl {
	text-align: left;
}

.alignc {
	text-align: center;
}

.alignr {
	text-align: right;
}

.valigntop {
	vertical-align: top;
}

.valignmiddle {
	vertical-align: middle;
}

.valignbottom {
	vertical-align: bottom;
}

/* fix sup and sub
   this stops the line-height being expanded when using sup and sub */

sup,sub {
  height: 0;
  line-height: 1;
  vertical-align: baseline;
  _vertical-align: bottom;	/* IE6 only */
}

sup {
  vertical-align: top;
}

sub {
  vertical-align: bottom;
}

/* type styles global END */

/* colour classes global START */

.mclr {
	color: #c4c7e2;
}

.sclr {
	color: #88b3da;
}

.altclr {
  color: #fdd1a7;
}

.vdarkgrey {
	color: #544e52;
}

.flashclr {
	color: #bf1733;
}

.black {
	color: #1a1a1a;
}

.white {
	color: #ffffff;
}

/* background colour classes */

.vlightgreybg {
	background-color: #e3e1e2;
}

/* colour classes global END */

/* form styles global START */

.frmboxxsmall, .frmboxsmall, .frmboxsmallmedium , .frmboxmediumsmall,  .frmboxmedium, .frmboxmediumlarge, .frmboxlarge, .frmboxxlarge, .frmboxxxlarge, .frmboxxxxlarge, .frmboxcheck, .frmboxtxtarea, .frmbt {
	vertical-align: middle;
  margin: 0 15px 0 0;
  display: inline;
}

.frmboxxsmall, .frmboxsmall, .frmboxsmallmedium , .frmboxmediumsmall,  .frmboxmedium, .frmboxmediumlarge, .frmboxlarge, .frmboxxlarge, .frmboxxxlarge, .frmboxxxxlarge, .frmboxcheck, .frmbt {
  padding: 0;
}

.frmboxxsmall {
	width: 25px;
}

.frmboxsmall {
	width: 50px;
}

.frmboxsmallmedium {
	width: 75px;
}

.frmboxmediumsmall {
	width: 100px;
}

.frmboxmedium  {
	width: 125px;
}

.frmboxmediumlarge  {
	width: 150px;
}

.frmboxlarge {
	width: 180px;
}

.frmboxxlarge {
	width: 200px;
}

.frmboxxxlarge {
	width: 250px;
}

.frmboxxxxlarge {
	width: 300px;
}

.frmtxtarea {
	padding: 2px 5px 2px 5px;
}

.frmbt {
	border: 0;
}

.frmrequired {
/* use this together with the formbox type to reduce the margin-right if using required tag */
  margin-right: 5px !important;
}

.frmboxdivider {
/* use this as a span tag when putting a divider between form boxes to give some padding */
  padding-left: 3px;
  padding-right: 1px;
}

.panelcontent .frmboxdivider {
  color: #544e52 !important;
}

.loginpanel .frmboxdivider {
  color: #f9f9f9 !important;
}

.labelsmall {
  width: 80px !important;
}

.labelmedium {
  width: 110px !important;
}

.labellarge {
  width: 180px !important;
}

/* form styles global END */

/* define icon images START */

.iconimg, .iconbutton {
  height: 16px;
  width: 16px;
}

.iconblockitem, .iconinlineitem {
  background-position: top left;
  background-repeat: no-repeat;
  min-height: 15px;
  padding-top: 1px !important;
  padding-left: 25px !important;
}

a.iconblockitem, a.iconinlineitem {
  max-height: 31px;
}

a.iconblockitem:hover, a.iconinlineitem:hover {
  background-position: 0 -32px;
}

.iconblockitem {
  display: block;
}

.iconinlineitem {
  float: left;
  display: inline;
}

.iconbutton {
  vertical-align: middle;
  display: inline-block;
}

.iconbutton span {
  position: absolute;
  top: -999em;
}

/* iconp - positive */

.iconpcart {
	background-image: url(/images/icon/default/iconp_cart.gif);
}

.iconpemail {
	background-image: url(/images/icon/default/iconp_email.gif);
}

.iconpgraph {
	background-image: url(/images/icon/default/iconp_graph.gif);
}

.iconplogin {
	background-image: url(/images/icon/default/iconp_login.gif);
}

.iconplogout {
	background-image: url(/images/icon/default/iconp_logout.gif);
}

.iconptelephone {
	background-image: url(/images/icon/default/iconp_telephone.gif);
}

.iconpuser {
	background-image: url(/images/icon/default/iconp_user.gif);
}

/* iconn - negative */

.iconnbin {
	background-image: url(/images/icon/default/iconn_bin.gif);
}

.iconnbulletl {
	background-image: url(/images/icon/default/iconn_bullet_l.gif);
}

.iconnbulletr {
	background-image: url(/images/icon/default/iconn_bullet_r.gif);
}

/* iconb - with background */

.iconbarrowu {
	background-image: url(/images/icon/default/iconb_arrow_u.gif);
}

.iconbbin {
	background-image: url(/images/icon/default/iconb_bin.gif);
}

.iconbbulletl {
	background-image: url(/images/icon/default/iconb_bullet_l.gif);
}

.iconbbulletr {
	background-image: url(/images/icon/default/iconb_bullet_r.gif);
}

.iconbcalendar {
	background-image: url(/images/icon/default/iconb_calendar.gif);
}

.iconbcart {
	background-image: url(/images/icon/default/iconb_cart.gif);
}

.iconbclipboard {
	background-image: url(/images/icon/default/iconb_clipboard.gif);
}

.iconbdocpdf {
	background-image: url(/images/icon/default/iconb_doc_pdf.gif);
}
.iconbgraph {
	background-image: url(/images/icon/default/iconb_graph.gif);
}

.iconbknifefork {
	background-image: url(/images/icon/default/iconb_knifefork.gif);
}

.iconbman {
	background-image: url(/images/icon/default/iconb_man.gif);
}

.iconbmen {
	background-image: url(/images/icon/default/iconb_men.gif);
}

.iconbminus {
	background-image: url(/images/icon/default/iconb_minus.gif);
}

.iconbnight {
	background-image: url(/images/icon/default/iconb_night.gif);
}

.iconbparcel {
	background-image: url(/images/icon/default/iconb_parcel.gif);
}

.iconbplus {
	background-image: url(/images/icon/default/iconb_plus.gif);
}

.iconbpin {
	background-image: url(/images/icon/default/iconb_pin.gif);
}

.iconbstar {
	background-image: url(/images/icon/default/iconb_star.gif);
}

.iconbtag {
	background-image: url(/images/icon/default/iconb_tag.gif);
}

.iconbuser {
	background-image: url(/images/icon/default/iconb_user.gif);
}

.iconbwishlistadd {
	background-image: url(/images/icon/default/iconb_wishlistadd.gif);
}

.iconbwishlistinc {
	background-image: url(/images/icon/default/iconb_wishlistinc.gif);
}

/* iconh - hover images */

a.iconbbin {
	background-image: url(/images/icon/default/iconh_bin.gif);
}

a.iconbcart {
	background-image: url(/images/icon/default/iconh_cart.gif);
}

a.iconbbulletl{
	background-image: url(/images/icon/default/iconh_bullet_l.gif);
}

a.iconbbulletr {
	background-image: url(/images/icon/default/iconh_bullet_r.gif);
}

.iconbdocpdf {
	background-image: url(/images/icon/default/iconh_doc_pdf.gif);
}

a.iconbgraph{
	background-image: url(/images/icon/default/iconh_graph.gif);
}

a.iconbparcel {
	background-image: url(/images/icon/default/iconh_parcel.gif);
}

a.iconbplus {
	background-image: url(/images/icon/default/iconh_plus.gif);
}

a.iconbstar {
	background-image: url(/images/icon/default/iconh_star.gif);
}

a.iconbuser {
	background-image: url(/images/icon/default/iconh_user.gif);
}

a.iconbwishlistadd {
	background-image: url(/images/icon/default/iconh_wishlistadd.gif);
}

a.iconbwishlistinc {
	background-image: url(/images/icon/default/iconh_wishlistinc.gif);
}

/* define icon images END */

/* login page START */

#loginpage {
  text-align: left;
  width: 761px; /* actual width should be 760px but 1px buffer added to prevent wrapping on browser zoom */
  margin-top: 0;
  margin-bottom: 0;
  margin-left: auto;
	margin-right: auto;
}

#loginimg {
  background-image: url(/images/background/default/loginimg.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  width: 760px;
  height: 365px;
  margin: 0px 0 0 0;
  padding: 0;
  float: left;
  display: block;
}

#loginpanelswrapper {
/* use this when left and right panels are used but not within loginpanelfull */
  background-image: url(/images/background/default/loginpanelswrapper.gif);
  background-position: top left;
  background-repeat: repeat-y;
  width: 100%;
  margin: 5px 0 0 0;
  padding: 0;
  float: left;
  display: block;
}

#loginpanelsend {
/* use this together with loginpanelswrapper after the wrapper div to give the bottom border and spacing */
  background-image: url(/images/background/default/loginpanelsend.gif);
  background-position: top left;
  background-repeat: no-repeat;
  width: 760px;
  height: 1px;
  margin: 0 0 6px 0;
  padding: 0;
  float: left;
  display: block;
}

.loginpanel {
  background-color: #322f31;
  border-right: 1px solid #1a1a1a;
  padding: 15px 10px 15px 10px;
  float: left;
  display: inline;
}

.loginpanel p, .loginpanel label, .loginpanel input, .loginpanel select, .loginpanel textarea, .loginpanel ul, .loginpanel ol {
  font-size: 75%;
  line-height: 1.4;
}

.loginpanel h1 {
  margin: 0;
  padding: 0 0 10px 0;
}

.loginpanel h1 img {
  height: 24px;
  width: 354px;
}

.loginpanel p {
  margin: 0;
  padding: 0 0 5px 0;
}

.loginpanel p, .loginpanel a, .loginpaneltxtclr {
  color: #f9f9f9 !important;
}

.loginpanell, .loginpanelr {
  width: 354px;
  float: left;
  display: inline;
}

.loginpanell {
  margin-left: 0;
  margin-right: 10px;
}

.loginpanelr {
  margin-left: 0;
  margin-right: 0;
}

.loginpanelfull {
  border-bottom: 1px solid #1a1a1a;
  width: 739px;
  margin: 5px 0 5px 0;
  float: left;
  display: inline;
}

.logincontentrow {
	width: 100%;
	margin: 0;
	padding: 5px 0 5px 0;
	float: left;
	clear: left;
	display: block;
}

/* loginpanel form START */

.loginpanel form {
  margin: 0;
  padding: 5px 0 5px 0;
  float: left;
  display: block;
}

.loginfrmrow {
	margin: 0;
	width: 100%;
	padding: 5px 0 5px 0;
	float: left;
	clear: left;
	display: block;
}

.loginfrmrow label {
  color: #f9f9f9;
  text-align: left;
	vertical-align: middle;
	width: 110px;
	margin: 2px 15px 0 0;
	float: left;
}

.loginfrmrow input {
	text-align: left;
}

.loginfrmbts {
	height: 24px;
  padding-left/**/: 125px; /* hide from IE6 */
	float: left;
  display: inline;
}

/* login infobar START */

#loginstatusbar {
  font-size: 69%;
  text-align: right;
  width: 760px;
  margin: 5px 0 5px 0;
  padding: 5px 0 5px 0;
  float: left;
  display: block;
}

#loginstatusbar, #loginstatusbar a {
  color: #f9f9f9;
}

/* login page END */

/* standard page header END */

/* status bar START */

#statusbar {
  color: #322f31;
  font-size: 69%;
  background-color: #d6d0d6; /* browsers that don't support alpha transparency */
  border-bottom: 1px solid #f9f9f9;
  width: 100%;
  min-height: 16px;
  padding: 4px 0 4px 0;
}

*>/**/#statusbar {
/* hide from IE7 and below */
  background-color: rgba(214,208,214,0.90); /* for browsers that support alpha transparency - fixed for ie8 and below in cssie8 */
  position: fixed; /* fixes the status bar in place as the page is scrolled */
  top: 0;
  z-index: 1500;
}

#statusbar a {
  color: #322f31;
}

#statusbar a:hover {
  color: #231f20;
}

#statusbarcontent {
  padding-right: 10px;
  float: right;
  display: inline;
}

.statusbarsection {
  margin: 0 0 0 25px;
  padding: 0;
  float: left;
  display: inline;
}

.statusbaritem {
  background-position: top left;
  background-repeat: no-repeat;
  height: 15px;
  margin: 0 0 0 15px;
  padding: 1px 0 0 20px;
  float: left;
  display: inline;
}

/* status bar END */

/* main banner START */

#mbanner {
	background-image: url(/images/background/default/mbanner.jpg);
	background-position: top center;
	background-repeat: no-repeat;
	background-color: #231f20;
	float: left;
	clear: both;
	width: 100%;
	height: 100px;
	display: block;
}

*>/**/#mbanner {
/* hide from IE7 and below */
/* allows for fixed statusbar */
  margin-top: 25px;
}

/* main banner END */

/* standard page header END */

/* standard page START */

#page {
  text-align: left;
  width: 991px; /* actual width should be 990px but 1px buffer added to prevent wrapping on browser zoom */
  margin-top: 0;
  margin-bottom: 0;
  margin-left: auto;
	margin-right: auto;
}

#pagewrapper {
/* used to enable background-color option for page area */
  background-color: none;
  width: 100%;
  min-height: 400px;
  padding-bottom: 5px;
  float: left;
  display: inline;
}

/* mainnav START */

#mnav {
	background-image: url(/images/background/default/mnavmenu.jpg);
	background-position: top left;
	background-repeat: repeat-x;
	background-color: #322f31;
	font-size: 69%;
	height: 24px;
	border-right: 1px solid #544e52;
  width: 979px;
	margin: 5px 5px 0 5px;
	padding: 0;
	float: left;
	display: block;
}

#mnavmenu, #mnavmenu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#mnavmenu li {
  background-image: url(/images/background/default/mnavmenu.jpg);
	background-position: top left;
	background-repeat: repeat-x;
  background-color: #322f31;
	font-weight: normal;
	border-left: 1px solid #544e52;
	border-right: 1px solid #7a7779;
  height: 14px;
  padding: 5px 15px 5px 15px;
  float: left;
	display: inline;
}

#mnavmenu li:hover {
  background-image: url(/images/background/default/mnavmenuhover.jpg);
	background-position: top left;
	background-repeat: repeat-x;
  background-color: #a3a0a2;
}

#mnavmenu li a, #mnavmenu li:hover li a {
  color: #f9f9f9;
	text-decoration: none;
}

#mnavmenu li a {
	display: block;
}

*>/**/#mnavmenu li a {
/* hide from IE6 and IE7 */
  height: 14px;
}

#mnavmenu li:hover a, #mnavmenu li li a:hover {
  text-decoration: underline;
}

#mnavmenu li:hover a {
  color: #322f31;
}

#mnavmenu li ul {
	background-color: #e3e1e2;
	border-right: 1px solid #322f31;
	border-bottom: 1px solid #322f31;
	width: 200px;
	margin: 5px 0 0 -15px;
	padding: 0;
	_left: -999em; /* IE6 only */
	position: absolute;
	display: none;
	_display: inline; /* IE6 only */
  z-index: 1000; /* ensure drop-down menu is always on top of other elements */
}

#mnavmenu li:hover > ul {
/* hide from IE6 */
	display: block;
}

#mnavmenu li li  {
  background: none;
	font-weight: normal;
	border-left: 1px solid #e3e1e2;
	border-right: none;
	width: 165px;
  height: auto;
	margin: 0;
	padding: 0px 25px 0 10px;
	float: left;
	display: inline;
}

#mnavmenu li li:hover{
  background: none;
}

.mnavaddlevel:hover  {
/*  background-image: url(/images/background/default/mnav_bullet_r.gif) !important; */
  background-image: url(/images/icon/default/iconn_bullet_r.gif) !important;
  background-position: center right !important;
  background-repeat: no-repeat !important;
}

*>/**/#mnavmenu li li a, *>/**/#mnavmenu li li a:hover {
/* hide from IE6 and IE7 */
  height: auto;
}

#mnavmenu li li a {
  border-bottom: 1px solid #d6d0d6;
  background: none;
  color: #322f31 !important;
  padding: 10px 0 10px 0;
}

#mnavmenu li li a:hover {
  background: none;
	color: #231f20;
	padding: 10px 0 10px 0;
}

#mnavmenu li li ul {
  margin-top: -34px;
  margin-left: 190px !important;
}

/* mainnav END */

/* panels START */

.panelwrapper {
/* used to wrap member panels into the same column */
  margin: 0;
  padding: 0;
  float: left; /* must be floated left so that overall page width lines up correctly */
  display: inline;
}

.panellarge, .panelmedium, .panelsmall {
  background-color: #f9f9f9;
  border-right: 1px solid #544e52;
  border-bottom: 1px solid #544e52;
  min-height: 40px;
  margin: 15px 5px 0 5px;
  _margin: 15px 0 0 5px; /* IE6 only */
  float: left;
  clear: both;
  display: block;
}

.panellarge {
  width: 979px;
}

.panelmedium {
  width: 649px;
}

.panelsmall {
  width: 319px;
}

.panellarge h1, .panelmedium h1, .panelsmall h1, #lightbox h1, #popbox h1 {
/* designed to be used at the top of a panel */
  background-image: url(/images/background/default/panelheading.jpg);
  background-position: top left;
  background-repeat: repeat-x;
  background-color: #d6d0d6;
  min-height: 20px;
  margin: 0;
  padding: 10px 20px 10px 15px;
  float: left;
  display: block;
}

.panellarge h1, .panellarge .panelcontent {
  width: 944px;
}

.panelmedium h1, .panelmedium .panelcontent {
  width: 614px;
}

.panelsmall h1, .panelsmall .panelcontent {
  width: 284px;
}

.panelcontainer {
/* only required to include content in the panel without margins and padding */
	margin: 0;
	padding: 0;
	width: 100%;
	clear: both;
  display: block;
}

.panelcontent {
  margin: 0;
  padding: 15px 19px 10px 15px; /* actual padding-right should be 20px but 1px buffer added to prevent wrapping on browser zoom */
  float: left;
  display: block;
}

.panelcontentlarge {
  width: 944px;
}

.panelcontentmedium {
  width: 614px;
}

.panelcontentsmall {
  width: 284px;
}

.panelcontent p, .panelcontent label, .panelcontent input, .panelcontent select, .panelcontent ul, .panelcontent ol {
  font-size: 75%;
  line-height: 1.4;
}

.panelcontent p {
  padding: 0 0 10px 0;
}

.panelcontent h2 {
/* designed to be used in conjunction with a h2 container */
  background-color: #544e52;
  padding: 5px 5px 5px 5px;
  margin: 5px 0 5px 0;
  float: left;
  display: block;
}

.panelcontentlarge h2 {
  width: 934px
}

.panelcontentmedium h2 {
  width: 604px
}

.panelcontentsmall h2 {
  width: 274px
}

.h2container {
	border: 1px solid #d6d0d6;
  margin: 0 0 10px 0;
  padding: 5px 10px 5px 10px;
	float: left;
  clear: both;
  display: block;
}

.panelcontentlarge div.h2container {
  width: 922px
}

.panelcontentmedium div.h2container {
  width: 592px
}

.panelcontentsmall div.h2container {
  width: 262px
}

/*
.panelcontentlarge div.h2container.paddingnone {
  width: 942px
}

.panelcontentmedium div.h2container.paddingnone {
  width: 612px
}

.panelcontentsmall div.h2container.paddingnone {
  width: 282px
}
*/

.panelcontent h3 {
  padding: 0 0 10px 0;
}

.panelcontentrow {
  width: 100%;
  margin: 0;
  padding: 5px 0 5px 0;
  float: left;
  clear: both;
  display: block;
}

.panellinks {
  float: left;
  display: block;
}

.panellinks a {
  padding-right: 15px;
}

/* panel list styles START */

.panelcontent ul, .panelcontent ol {
	margin: 0;
	padding: 0 0 10px 0;
}

.panelcontent ul {
	list-style: none;
}

.panelcontent ul li {
	background-image: url(/images/background/default/icon_bullet_r.gif);
	background-position: 5px 4px;
	*background-position: 5px 8px; /* IE7 and below only */
	background-repeat: no-repeat;
	padding: 0 0 2px 30px;
}

.panelcontent ol {
	list-style-type: decimal;
	list-style-position: outside;
}

.panelcontent ol li {
	margin: 0 0 5px 27px;
	*margin: 0 0 5px 30px; /* IE7 and below only */
	padding: 0 0 0 3px;
	*padding: 0; /* IE7 and below only */
}

.panelcontent li ol {
  font-size: 100%; /* prevent child list items from shrinking in size */
  padding: 0;
}

.panelcontent li ol  {
  list-style-type: lower-latin;
}

.panelcontent li li ol  {
  list-style-type: lower-roman;
}

.panelcontent li li li ol  {
  list-style-type: decimal;
}

/* panel list styles END */

/* toggle styles START */

/* toggle is closed by default */
.panellarge h1.toggletriggerclosed a, .panelmedium h1.toggletriggerclosed a, .panelsmall h1.toggletriggerclosed a {
	background-image: url(/images/background/default/icon_toggle_plus.gif);
  background-position: top right;
  background-repeat: no-repeat;
  text-decoration: none;
	padding-right: 20px;
  display: block;
}

/* opposite state for toggle is closed by default */
.panellarge h1.toggleclosedactive a, .panelmedium h1.toggleclosedactive a, .panelsmall h1.toggleclosedactive a {
  background-image: url(/images/background/default/icon_toggle_minus.gif);
}

/* toggle is open by default */
.panellarge h1.toggletriggeropen a, .panelmedium h1.toggletriggeropen a, .panelsmall h1.toggletriggeropen a {
	background-image: url(/images/background/default/icon_toggle_minus.gif);
  background-position: top right;
  background-repeat: no-repeat;
  text-decoration: none;
	padding-right: 20px;
  display: block;
}

/* opposite state for toggle is open by default */
.panellarge h1.toggleopenactive a, .panelmedium h1.toggleopenactive a, .panelsmall h1.toggleopenactive a {
  background-image: url(/images/background/default/icon_toggle_plus.gif);
}

/* hover text clr for h1 a to open/close panels */
.panellarge h1.toggletriggerclosed a:hover, .panelmedium h1.toggletriggerclosed a:hover, .panelsmall h1.toggletriggerclosed a:hover,
.panellarge h1.toggletriggeropen a:hover, .panelmedium h1.toggletriggeropen a:hover, .panelsmall h1.toggletriggeropen a:hover {
  color: #322f31;
}

.togglecontaineropen, .togglecontainerclosed {
	margin: 0;
	padding: 0;
	overflow: hidden;
	width: 100%;
	clear: both;
}

.panellarge h1 a:focus, .panelmedium h1 a:focus, .panelsmall h1 a:focus {
  outline: none; /* remove focus outline from a tags used in toggle */
}

/* toggle styles END */

/* accordion styles START */

.panelcontent h2.accordtrigger a {
  color: #f9f9f9;
  background-image: url(/images/background/default/icon_accord_r.gif);
  background-position: top right;
  background-repeat: no-repeat;
  text-decoration: none;
  padding-right: 20px;
  display: block;
}

.panelcontent h2.accordtrigger a:hover {
  color: #231f20;
}

.panelcontent h2.accordtrigger a:focus {
  outline: none; /* remove focus outline from a tags used in accordion */
}

.panelcontent h2.accordtrigger.active a {
  background-image: url(/images/background/default/icon_accord_d.gif);
}

.panelcontent h2.accordtrigger.active a:hover {
  color: #f9f9f9;
}

.accordcontainer {
	border: 1px solid #d6d0d6;
  margin: 0 0 10px 0;
  padding: 0;
	overflow: hidden;
	clear: both;
  float: left;
  display: block;
}

.panelcontentlarge div.accordcontainer {
  width: 942px
}

.panelcontentmedium div.accordcontainer {
  width: 612px
}

.panelcontentsmall div.accordcontainer {
  width: 282px
}

.accordcontent {
  padding: 5px 10px 5px 10px;
  float: left;
  display: block;
}

/* accordion styles END */

/* panel tab START */

.paneltab {
  background-image: url(/images/background/default/panelheading.jpg);
  background-position: top left;
  background-repeat: repeat-x;
  background-color: #d6d0d6;
  width: 979px;
  height: 40px;
  margin: 10px 0 10px 0;
  padding: 0;
  float: left;
  display: block;
}

.paneltab, .paneltab ul {
	background-color: #231f20;
  list-style: none;
	margin: 0;
	padding: 0;
  float: left;
  display: block;
}

.paneltab li {
  border-radius: 5px 5px 0 0; /* not supported in all browsers */
	font-weight: normal;
	font-size: 113%; /* 18px at normal size - 18/16 = 1.125 */
  height: 20px;
  margin-right: 1px;
  padding: 10px 20px 10px 15px;
  float: left;
	display: inline;
}

.paneltab li.paneltablink {
  background-image: url(/images/background/default/panelheading.jpg);
	background-position: top left;
	background-repeat: repeat-x;
  background-color: #d6d0d6;
}

.paneltab li.paneltablink:hover {
  background-image: url(/images/background/default/panelheadinghover.jpg);
	background-position: top left;
	background-repeat: repeat-x;
  background-color: #efedf0;
}

.paneltab li a {
	text-decoration: none;
}

.paneltab li.paneltabselected a {
  color: #322f31;
  cursor: default;
}

.paneltab li.paneltablink a {
  color: #efedf0;
}

.paneltab li a {
	display: block;
}

*>/**/.paneltab li a {
/* hide from IE6 and IE7 */
  height: 20px;
}

.paneltab li.paneltablink:hover a {
  text-decoration: underline;
  color: #231f20;
}

.paneltab li.paneltabselected {
  color: #322f31;
  background-color: #efedf0;
  border-top: 1px solid #d6d0d6;
  border-left: 1px solid #d6d0d6;
  border-right: 1px solid #d6d0d6;
  padding-top: 9px;
}

/* panel tab END */

/* panels END */

/* home styles START */
/* final home styles to be used is still TBC */

#homeimg {
  background-image: url(/images/background/default/homeimg.jpg);
  background-position: top left;
  background-repeat: no-repeat;
  width: 979px;
  height: 320px;
  margin: 0;
  padding: 0;
  float: left;
  display: block;
}

#homeimgoverlay {
  position: relative;
  width: 100%;
  height: 100%;
  float: left;
  display: block;
}

#homeimgoverlay p {
  background-color: #231f20; /* browsers that don't support alpha transparency */
  color: #f9f9f9;
  font-size: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 869px;
  padding: 15px 55px 15px 55px;
}

*>/**/#homeimgoverlay p {
/* hide from IE7 and below */
  background-color: rgba(35,31,32,0.50); /* for browsers that support alpha transparency - fixed for ie8 and below in cssie8 */
}

#homeimgoverlay a {
  color: #f9f9f9;
}

#homeimgoverlay a:hover {
  color: #231f20;
}

/* home styles END */

/* form styles START */

.blockform {
  width: 100%;
  padding: 10px 0 10px 0;
}

.panelcontent form {
  margin: 0;
  float: left;
  display: block;
}

.frmrow {
	margin: 0;
	width: 100%;
	padding: 5px 0 5px 0;
	float: left;
	clear: left;
	display: block;
}

.frmrow label {
  text-align: left;
	vertical-align: middle;
	width: 180px;
	margin: 2px 15px 0 0;
	float: left;
  display: inline;
}

.inlinelabel {
	width: none !important;
	margin: 2px 5px 0 0 !important;
	float: none !important;
}

.blocklabel {
	width: 100% !important;
	margin: 2px 0 5px 0 !important;
  clear: both;
  display: block !important;
}

.frmrow input, .frmrow select, .frmrow textarea {
	text-align: left;
}

.frmradio, .frmcheckblock {
	float: left;
	display: inline;
}

.frmradioitem, .frmcheckblockitem {
	width: 100%;
	margin: 0;
	padding: 0 0 5px 0;
	float: left;
  clear: both;
	display: block;
}

.frmradio input {
	vertical-align: middle;
	margin: 0 15px 0 0;
	padding: 0;
}

.frmresult {
  color: #544e52;
  font-size: 75%;
	text-align: left;
	vertical-align: middle;
	margin: 2px 0 0 0;
	float: left;
  display: inline;
}

.frmbts {
	height: 24px;
	float: left;
  display: inline;
}

.frmbts form {
	display: inline;
}

.frmindentsmall {
  margin-left: 95px !important;
}

.frmindentmedium {
  margin-left: 125px !important;
}

.frmindentlarge {
  margin-left: 195px !important;
}

.frmvalidate {
  font-size: 75%;
}

.frmvalidate .error {
  width: 100%;
  float: left;
  clear: left;
  display: block;
}

.frmvalidate .checked {
  display: none !important;
}

/* form styles END */

/* table styles START */

/* styles general table START */

.generaltbl {
/*	margin: 0 5px 0 5px; */
  margin: 0;
	padding: 5px 0 10px 0;
	float: left;
	display: inline;
}

.generaltbl table {
	border: none;
	border-spacing: 0;
	border-collapse: collapse;
	width: 100%;
}

.generaltbl th, .generaltbl td {
	vertical-align: top;
	color: #544e52;
	padding: 5px 0 5px 0;
}

.clmsmall {
	width: 50px;
}

.clmmedium {
	width: 80px;
}

.clmlarge {
	width: 120px;
}

/* define table font sizes - use one of these classes in the div containing the table */
/* not used by resultstbl - it has its own font-size property */

.tbltextstandard table {
  font-size: 75%;
}

.tbltextsmall table {
  font-size: 69%;
}

/* styles general table END */

/* list table START */

.listtbl {
  padding: 5px 0 10px 0;
  float: left;
  display: block;
}

.listtbl table {
  color: #544e52;
	border: none;
	border-spacing: 0;
	border-collapse: collapse;
  width: 100%;
}

.listtbl td {
	border-bottom: solid 1px #7a7779;
	padding: 5px 2px 2px 2px;
}

/* list table END */

/* results table START */

.resultstbl {
	width: 100%;
	margin: 0;
	padding: 10px 0 10px 0;
	float: left;
  clear: both;
	display: block;
}

.resultstbl table {
	color: #322f31;
  font-size: 69%;
	border: none;
	border-spacing: 0;
	border-collapse: collapse;
	width: 100%;
}

.resultstbl th {
	padding: 5px 5px 5px 5px;
}

.resultstbl td {
	vertical-align: top;
	padding: 3px 5px 3px 5px;
}

.resultstbl input {
	font-size: 90%;
	margin: 0px;
}


.resultstbl label {
  color: #322f31 !important;
}

.resultstblhdr, .resultstblftr {
	background-color: #c4c7e2;
	color: #ffffff;
}

.resultstblhdr th {
	border-bottom: solid 3px #f9f9f9;
}

.resultstblodd {
	background-color: #f9f9f9;
}

.resultstbleven{
	background-color: #e3e1e2;
}

.resultstblhighlight {
	background-color: #fdd1a7;
}

.resultstblodd  td, .resultstbleven td {
	border-bottom: solid 1px #f9f9f9;
}

.resultstblftr td {
		border-top: solid 3px #f9f9f9;
}

.resultstblftr a, .resultstblftr a:visited, .resultstblftr a:active, .resultstblftr a:hover {
	color: #ffffff;
	padding-left: 10px;
	padding-right: 10px;
}

.resultstblftr a.disabled, .resultstblftr a.disabled:hover {
	color: #a3a0a2;
	text-decoration: none;
}

/* results table END */

/* styles results list START - this is a version of results table but using divs instead of a table */

.resultslist {
	font-size: 69%;
	margin: 0;
	padding: 10px 0 10px 0;
	float: left;
	clear: both;
	display: block;
}

.resultstxt {
	margin: 0 20px 0 5px;
	padding: 0;
	float: left;
	display: inline;
}

.resultstxt input, .resultstxt select {
	font-size: 100%;
}

.resultslisthdr, .resultslistftr, .resultslistend {
	background-color: #c4c7e2;
	font-weight: bold;
	color: #ffffff;
	width: 100%;
	float: left;
	clear: both;
	display: block;
}

.resultslisthdr, .resultslistftr {
	padding: 5px 0 5px 0;
}

.resultslisthdr {
	border-bottom: 3px solid #f9f9f9;
}

.resultslistftr, .resultslistend {
	border-top: 3px solid #f9f9f9;
}

.resultslistend {
  height: 5px;
}

.resultshdrlink {
	cursor: pointer;
}

.resultshdrtitlesort {
	float: left;
	display: inline;
	text-decoration: underline;
}

.resultshdrpointer {
	padding-left: 10px;
	float: left;
	display: inline;
}

.resultshdrpointer img {
	width: 11px;
	height: 11px;
}

.resultslistrow {
	color: #322f31;
	width: 100%;
	margin: 0 0 1px 0;
	padding: 3px 0 3px 0;
	float: left;
	clear: both;
	display: block;
}

.resultslistrowodd {
	background-color: #e3e1e2;
}

.resultslistroweven {
	background-color: #d6d0d6;
}

.resultslistrowhighlight {
  background-color: #fdd1a7;
}

/* styles results list END */

/* table styles END */

/* pagination styles START */

.pag {
  margin: 0;
  padding: 0;
  float: left;
  clear: both;
  display: block;
}

.pagbar {
	width: 60%;
	margin: 0 5% 0 0;
	padding: 10px 0 10px 0;
	float: left;
	display: inline;
}

.pagbar ul {
	font-size: 69%;
	margin: 0;
	padding: 0;
}

.pagbar ul li {
	border-right: 1px solid #a3a0a2;
	list-style-type: none;
	margin: 0;
	padding: 1px 8px 1px 8px;
	display: inline;
	background-image: none;
}

.pagbar ul li.first {
	padding-left: 4px;
}

.pagbar ul li.last {
	border-right: 0;
	padding-right: 4px;
}

.pagbar a, .pagbar a:visited, .pagbar a:active, .pagbar a:hover {
	color: #231f20;
}

.pagbar a.disabled, .pagbar a.disabled:hover {
	color: #a3a0a2;
	text-decoration: none;
}

.pagbar a.current, .pagbar a.current:hover {
	font-weight: bold;
	color: #231f20;
	text-decoration: none;
}

.resultsbar {
	text-align: right;
	width: 34%;
  margin: 0 1% 0 0;
	padding: 10px 0 10px 0;
	float: right;
	display: inline;
}

.resultsbar p {
	font-size: 69%;
	margin: 0;
	padding: 0;
}

/* pagination styles END */

/* catalogue styles START */

.cattitle {
  color: #544e52;
}

/* catalogue image styles */

.catimgresult, .catimgdetail {
	border: solid 1px #d6d0d6;
	margin: 0 15px 5px 5px;
	padding: 0;
	float: left;
	display: inline;
}

.panelmedium .catimgresult {
	height: 53px;
	width: 53px;
}

.panelsmall .catimgresult {
	height: 43px;
	width: 43px;
}

.catimgdetail {
	height: 178px;
	width: 178px;
}

/* catalogue item styles */

.catitem {
	float: left;
	display: inline;
}

.catitem  h5 {
  padding: 0 0 5px 0;
}

.catitem p {
  padding: 0 5px 5px 0;
}

/* catalogue results - used by search results and wishlist */
/* search results are best used in a panelmedium and wishlist in a panelsmall*/

.catresult, .wishlistresult {
  border-bottom: solid 1px #d6d0d6;
	width: 100%;
	margin: 5px 0 10px 0;
	float: left;
	display: block;
}

.catresult a {
	text-decoration: none;
  cursor: pointer;
  width: 100%;
  height: 100%;
	padding: 5px 0 5px 0;
  float: left;
  display: block;
}

.catresult a:hover {
  background-color: #efedf0;
  _padding: 5px 0 5px 0; /* IE6 only */
}

.catresult a:focus {
  outline: none; /* remove focus outline from a tags used in catresult hover */
}

.linkstyle, .catresult a:hover .linkstylehover {
  color: #231f20;
  text-decoration: underline;
}

/* catresultcontent and catresultvalue are designed to be used together in a panelmedium */

.panelmedium .catresultcontent {
  width: 419px;
  margin: 0;
  padding: 0 15px 0 0;
}

.panelmedium .catvalue {
  width: 100px;
  margin: 0 4px 0 0; /* actual margin-right should be 5px but 1px buffer added to prevent wrapping on browser zoom */
  padding: 0;
}

/* catresultcontent is used on its own in a panelsmall */

.panelsmall .catresultcontent {
  width: 218px;  /* actual width should be 218px but 1px buffer added to prevent wrapping on browser zoom */
}

.catvalue h5 {
  text-align: right;
}

.progressbar {
	height: 10px;
	width: 164px;
	padding: 2px 0 2px 0;
	float: left;
	display: inline;
}

/* catalogue detail - designed to be used in a panelmedium */

.catdetail {
  border-bottom: solid 1px #d6d0d6;
	width: 100%;
	margin: 5px 0 10px 0;
	padding: 0 0 5px 0;
	float: left;
	display: block;
}

.catdetailheader {
  width: 394px;
  margin: 0 0 0 20px;
  padding: 0;
  float: left;
  display: inline;
}

.catdetailtitle {
  width: 294px;
  margin: 0;
  padding: 0 15px 0 0;
}

.catdetail h5 {
  padding: 0 0 10px 0;
}

/* catalogue select categories START */

#catselect {
/*
  background-image: url(/images/background/default/catselect_bg.jpg);
  background-position: bottom right;
  background-repeat: no-repeat;
*/
  margin: 0;
  padding: 5px 14px 5px 10px; /* padding-right should be 15px but 1px buffer allowed for to prevent wrapping on browser zoom */
  float: left;
  display: block;
}

.catimgselect {
	border-right: solid 1px #d6d0d6;
  border-bottom: solid 1px #d6d0d6;
	width: 197px;
/*  height: 132px; */
  margin: 8px 5px 8px 5px;
	padding: 0;
	float: left;
	display: inline;
}

/* catalogue select categories END */

/* catalogue styles END */

/* styles optionslist START */

.optionslist {
  border-bottom: solid 1px #d6d0d6;
	width: 100%;
	margin: 5px 0 10px 0;
	float: left;
	display: block;
}

/* styles optionslist END */

/* standard page END */

/* standard page footer START */

/* sub banner START */

#sbanner {
	/* background-image: url(/images/background/default/sbanner.jpg);  */
	background-position: top center;
	background-repeat: no-repeat;
	background-color: #231f20;
	float: left;
	clear: both;
	width: 100%;
	height: 0px;
	display: block;
}

/* sub banner END */

#ftr {
  text-align: left;
  width: 991px; /* actual width should be 990px but 1px buffer added to prevent wrapping on browser zoom */
  margin-top: 0;
  margin-bottom: 0;
  margin-left: auto;
	margin-right: auto;
}

#ftrwrapper {
/* used to enable background-color option for footer area */
  background-color: none;
  width: 980px;
  margin: 0 5px 0 5px;
  padding-bottom: 5px;
  float: left;
  display: inline;
}

#snav {
  margin: 15px 10px 0 10px;
  float: left;
  clear: both;
  display: block;
}

#snav p {
	margin: 0 0 5px 0;
	font-size: 69%;
}

#snav a {
	padding-right: 15px;
}

#snav p, #snav a {
  color: #e3e1e2;
}

#snav a:hover {
  color: #f9f9f9;
}

#notice {
  margin: 15px 10px 0 10px;
  float: left;
  clear: both;
  display: block;
}

#notice p {
	margin: 0 0 5px 0;
	font-size: 69%;
}

#notice p, #notice a {
  color: #a3a0a2;
}

/* standard page footer END */

/* lightbox and popbox START */

#popbox {
  text-align: left;
  width: 500px;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: auto;
	margin-right: auto;
}

#popboxwrapper {
	background: #ffffff;
  margin: 5px 0 0 0;
  padding: 10px;
  float: left;
  display: block;
}

#lightbox {
  border-radius: 5px; /* not supported in all browsers */
  border: 1px solid #d6d0d6;
	position: absolute;
	top: 0;
	width: 738px;
  left: 50%;
  margin-left: -380px;
  padding: 10px;
	background: #ffffff;
	z-index: 2001;
	display: none;
}

#lightbox-shadow {
	position: fixed;
	top: 0;
	left: 0;
  _position: absolute; /* ie6 only */
  _left: 0px; /* ie6 only */
  _top: 0px; /* ie6 only */
	width: 100%;
	height: 100%;
  background: #1a1a1a; /* for browsers that don't support alpha transparency */
  z-index: 2000;
	display: none;
}

*>/**/#lightbox-shadow {
/* hide from IE7 and below */
	background: rgba(26,26,26,0.7); /* for browsers that support alpha transparency - fixed for ie8 and below in cssie8 */
}

#lightbox h1, #popbox h1 {
  text-align: left;
}

#lightbox h1 {
  width: 703px;
}

#popbox h1 {
  width: 465px;
}

#lightbox .panelcontent, #popbox .panelcontent {
  background-color: #ffffff;
  border-left: 1px solid #d6d0d6;
  border-right: 1px solid #d6d0d6;
  border-bottom: 1px solid #d6d0d6;
  margin: 0;
  padding: 10px 20px 10px 15px;
  text-align: left;
  float: left;
  display: block;
}

#lightbox .panelcontent {
  width: 701px;
}

#popbox .panelcontent {
  width: 463px;
}

#lightbox .panelcontent {
  width: 701px;
}

#lightbox p, #popbox p {
  font-size: 75%;
  line-height: 1.4;
}

.lightboxbt {
  width: 100%;
  *width: 738px; /* IE7 and below only */
  text-align: center;
  float: left;
  display: block;
}

/* lightbox END */

/* nivoslider START */

.nivoSlider {
  position:relative;
  width:979px; /* Change this to your images width */
  height:320px; /* Change this to your images height */
  background:url(/styles/slider/themes/default/loading.gif) no-repeat 50% 50%;
}
.nivoSlider img {
  position:absolute;
  top:0px;
  left:0px;
  display:none;
}
.nivoSlider a {
  border:0;
  display:block;
}

/* nivoslider END */

/* misc styles START */

.vouchersampleimg {
  border: 1px solid #e3e1e2;
  width: 698px;
}

/* misc styles END */

/* overrides global START - these should be last in the css and tagged as !important to override previous style settings*/

.widthauto {
  width: auto !important;
}

.marginrzero {
  margin-right: 0 !important;
}

.bdrnone {
  border: none !important;
}

.marginnone {
  margin: 0 !important;
}

.marginnolr {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.marginnotbm {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.marginnot {
  margin-top: 0 !important;
}

.marginnobm {
  margin-bottom: 0 !important;
}

.paddingnone {
  padding: 0 !important;
}

.paddingnolr {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.paddingnotbm {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.paddingnot {
  padding-top: 0 !important;
}

.paddingnobm {
  padding-bottom: 0 !important;
}

/* overrides global END */
