@charset "UTF-8";
/* CSS Document */

@charset "UTF-8";

/* SpryAccordion.css - version 0.4 - Spry Pre-Release 1.5 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* This is the selector for the main Accordion container. For our default style,
 * we draw borders on the left, right, and bottom. The top border of the Accordion
 * will be rendered by the first AccordionPanelTab which never moves.
 *
 * If you want to constrain the width of the Accordion widget, set a width on
 * the Accordion container. By default, our accordion expands horizontally to fill
 * up available space.
 *
 * The name of the class ("Accordion") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style the
 * Accordion container.
 */
.Accordion {
	border-left: 1px none gray;
	border-right: 1px none black;
	border-bottom: 1px none gray;
	margin-top: 10px;
}

/* This is the selector for the AccordionPanel container which houses the
 * panel tab and a panel content area. It doesn't render visually, but we
 * make sure that it has zero margin and padding.
 *
 * The name of the class ("AccordionPanel") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel container.
*/
.AccordionPanel {
	margin: 0px;
	padding: 0px;
	margin-left: auto; 
	margin-right: auto;
	width: 625px;
	color: #808080;
	background-color: #FFFFFF;
}

/* This is the selector for the AccordionPanelTab. This container houses
 * the title for the panel. This is also the container that the user clicks
 * on to open a specific panel.
 *
 * The name of the class ("AccordionPanelTab") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel tab container.
 *
 * NOTE:
 * This rule uses -moz-user-select and -khtml-user-select properties to prevent the
 * user from selecting the text in the AccordionPanelTab. These are proprietary browser
 * properties that only work in Mozilla based browsers (like FireFox) and KHTML based
 * browsers (like Safari), so they will not pass W3C validation. If you want your documents to
 * validate, and don't care if the user can select the text within an AccordionPanelTab,
 * you can safely remove those properties without affecting the functionality of the widget.
 */
.AccordionPanelTab {
	background-color: #E2E2E2;
	margin: 0px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #808080;
	text-indent: 5px;
	height: 18px;
	width: 625px;
	font-weight: normal;
	padding-top: 4px;
	border-bottom: 1px solid #ffffff;
}

/* This is the selector for a Panel's Content area. It's important to note that
 * you should never put any padding on the panel's content area if you plan to
 * use the Accordions panel animations. Placing a non-zero padding on the content
 * area can cause the accordion to abruptly grow in height while the panels animate.
 *
 * Anyone who styles an Accordion *MUST* specify a height on the Accordion Panel
 * Content container.
 *
 * The name of the class ("AccordionPanelContent") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel content container.
 */
.AccordionPanelContent {
	overflow: auto;
	margin: 0px;
	margin-left: 7px;
	padding-left: 2px;
	padding-right: 5px;
	font-size: 11px;
	font: arial;
	color: #808080;
	font-family: Arial, Helvetica, sans-serif;
	margin-bottom: 15px;
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open. The class "AccordionPanelOpen" is programatically added and removed
 * from panels as the user clicks on the tabs within the Accordion.
 */
.AccordionPanelOpen .AccordionPanelTab {
	background-color: #808080;
	color: #FFFFFF;
}
.centredlogo {
	text-align: center;
}

/* This is an example of how to change the appearance of the panel tab as the
 * mouse hovers over it. The class "AccordionPanelTabHover" is programatically added
 * and removed from panel tab containers as the mouse enters and exits the tab container.
 */
.AccordionPanelTabHover {
	color: #b3b3b3;
	background-color: #808080;
}
.AccordionPanelOpen .AccordionPanelTabHover {
	color: #FFFFFF;
}

/* This is an example of how to change the appearance of all the panel tabs when the
 * Accordion has focus. The "AccordionFocused" class is programatically added and removed
 * whenever the Accordion gains or loses keyboard focus.
 */
.AccordionFocused .AccordionPanelTab {
	background-color: #E2E2E2;
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open when the Accordion has focus.
 */
.AccordionFocused .AccordionPanelOpen .AccordionPanelTab {
	background-color: #808080;
	color: #FFFFFF;
	font-weight: normal;
}
body {
	font: 100% Arial, Helvetica, sans-serif;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #FFFFFF;
}
.acc_bold_16pt {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14pt;
	font-weight: bold;
	color: #808080;
	text-align: left;
}
.acc_bodytext_small {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 8pt;
	color: #808080;
	text-align: left;
}
.acc_bodytext {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #808080;
	text-align: left;
}
.acc_body_indented {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
	color: #808080;
	text-align: left;
	text-indent: 1cm;
}
.white_bodytext {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #FFFFFF;
	text-align: left;
}
.white_subheadertext {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #FFFFFF;
	text-align: left;
	font-weight: bold;
}

#container {
	width: 626px;
	margin: 0 auto;
	background-color: #FFFFFF;
}

div#outer {
	width: 800px;
	background-color:#FFFFFF;
	margin-top: 50px;
	margin-left: auto;
	margin-right: auto;
	border: thin solid #000000;
	margin: 0px auto;
}

div#header {
	margin: 0px auto;
	text-align: center;
	background-image: url(csstest/topbanner3.jpg);
	height: 90px;
	width: 800px;
	border-width: 1;
	border-color: #FFFFFF;
}

div#nav {
    width: 25%;
    padding: 10px;
    margin-top: 1px;
    float: left;

}

div#main {
	margin-left: 30%;
	margin-top: 1px;
	padding: 10px;
	position: fixed;
}

div#footer {
	padding: 15px;
	margin: 0px;
	height: 15px;
	margin-bottom: 0px;
}

div#searchmenu {
	width: 110px;
	background-color: #CCCCCC;
	position: fixed;
	left: inherit;
	height: 200px;
	top: 110px;
}

div#rangebanner {
	margin: 0px auto;
	width: 600px;
	background-color: #CCCCCC;
	position: relative;
	top: 0px;
	left: 0px;
	background-image: url(csstest/rangepanel.jpg);
	height: 100px;
	margin-right: auto;
}

div#horizontalr {
	width: 800px;
	background-color:#e2e2e2;
	margin-top: 50px;
	margin-left: auto;
	margin-right: auto;
	border: thin solid #000000;
	margin: 0px auto;
}
.acc_bold_16pt {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14pt;
	font-weight: bold;
	color: #808080;
	text-align: left;
}
.acc_bodytext_small {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 8pt;
	color: #808080;
	text-align: left;
}
.acc_body_indented {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
	color: #808080;
	text-align: left;
	text-indent: 1cm;
}
.AccordionPanelTab2 {
	background-color: #E2E2E2;
	margin: 0pxauto;
	padding: 2px;
	cursor: pointer;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #666666;
	text-indent: 5px;
	height: 16px;
	border-top: 1px solid #FFFFFF;
	border-right: 1px none #CCCCCC;
	border-bottom: 1px groove #CCCCCC;
	border-left: 1px none;
	width: 600px;
	margin-left: auto;
	margin-right: auto;
}
tablearea {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #808080;
	text-align: left;
}
.areaheader {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	font-weight: bold;
	color: #666666;
	text-align: left;
	padding-left: 4px;
	background-color: #e6e6e6;
	border-color: #e6e6e6;
	border-style: solid;
	border-width: 1px;
}
.whitetablecell {
	background-color: #FFFFFF;
	text-align: center;
	border-color: #e6e6e6;
	border-style: solid;
	border-width: 1px;
}
.spacerpanel {
	background-color: #f2f2f2;
}
.tablebody {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #808080;
	text-align: left;
	padding-left: 3px;
	border-width: 1px;
	border-color: #e6e6e6;
	border-style: solid;
}
.tablebodytext {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #808080;
	text-align: left;
	padding-left: 3px;
}
a.greenlinks {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	color: #9bbf3c;
	text-decoration:none; 
}
a.greenlinks:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	color: #808080;
	text-decoration:underline; 
}
a.greenlinks:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	color: #9bbf3c;
	text-decoration:none; 
}
a.greenlinksbig {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: #9bbf3c;
	text-decoration:none; 
}
a.greenlinksbig:hover {
	color: #808080;
	text-decoration:underline;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
}
a.greenlinksbig:visited {
	color: #9bbf3c;
	text-decoration:none;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
}
a.showroomlinks {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #9bbf3c;
	text-decoration:none;
	font-weight: normal;
}
a.showroomlinks:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #9bbf3c;
	text-decoration:none;
	font-weight: normal;
}
a.showroomlinks:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #808080;
	text-decoration:underline;
	font-weight: normal;
}
#rangecookersbox5 {
	background-color: #FFFFFF;
	float: left;
	width: 625px;
	border: 1px solid #999999;
	margin-top: 5px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #808080;
	text-align: left;
}
#rangecookersbodytextwide {
	background-color: #FFFFFF;
	width: 600px;
	margin-top: 20px;
	margin-bottom: 15px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #808080;
	margin-left: 12px;
}
#widebodytext {
	background-color: #FFFFFF;
	width: 600px;
	margin-top: 20px;
	margin-bottom: 15px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #808080;
	margin-left: 12px;
}
.wide_bodytext {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #808080;
	text-align: left;
}
h1 {
	font-size: 15px;
	font-family: Arial, Helvetica, sans-serif;
	color: #808080;
	font-weight: bold;
	text-align: left;
}
.headertext {
	font-size: 21px;
	font-family: Arial, Helvetica, sans-serif;
	color: #808080;
	font-weight: normal;
	text-align: left;
}
#mainContent  {
	font: arial;
	text-align: left;
	width: 625px;
	margin-top: 0px;
	border: 1px solid #808080;
}
#rangecookersheadertext {
	width: 405px;
	margin-left: 5px;
	margin-top: 10px;
	color: #808080;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	margin-bottom: 18px;
}
#sparesmainContent  {
	font: arial;
	text-align: left;
	width: 625px;
	margin-top: 0px;
	background-image: url(../Media/Images/Content/spares_background_new.jpg);
	border: 1px solid #FFFFFF;
}
#deliverymainContent  {
	font: arial;
	text-align: left;
	width: 625px;
	margin-top: 0px;
	background-image: url(../Media/Images/Content/delivery_background.jpg);
	border: 1px solid #FFFFFF;
}
#offersmainContent  {
	text-align: left;
	width: 625px;
	margin-top: 0px;
	border: 1px solid #990000;
	background-image: url(../Media/Images/Content/red_promo_background.jpg);
	font-weight: lighter;
}
#removalmainContent  {
	text-align: left;
	width: 625px;
	margin-top: 0px;
	border: 1px solid #FFFFFF;
	background-image: url(../Media/Images/Content/removal_banner.jpg);
	font-weight: lighter;
}
#installationmainContent  {
	text-align: left;
	width: 625px;
	margin-top: 0px;
	border: 1px solid #FFFFFF;
	background-image: url(../Media/Images/Content/installation_banner.jpg);
	font-weight: lighter;
}
#flamefailuremainContent  {
	text-align: left;
	width: 625px;
	margin-top: 0px;
	border: 1px solid #808080;
	background-image: url(../Media/Images/Content/flamefailure_banner_new.jpg);
	font-weight: lighter;
}
#termsmainContent  {
	text-align: left;
	width: 625px;
	margin-top: 0px;
	border: 1px solid #FFFFFF;
	background-image: url(../Media/Images/Content/terms_banner.jpg);
	font-weight: lighter;
}
#paymentmainContent  {
	text-align: left;
	width: 625px;
	margin-top: 0px;
	border: 1px solid #FFFFFF;
	background-image: url(../Media/Images/Content/payment_lock.jpg);
	font-weight: lighter;
}
#brochuresmainContent  {
	text-align: left;
	width: 625px;
	margin-top: 0px;
	background-image: url(../Media/Images/Content/brochures_banner.jpg);
	font-weight: lighter;
	border: 1px solid #FFFFFF;
}
#iframebox {
	width: 400px;
	border: 3px solid #ffffff;
}
#promoboxblank {
	width: 625px;
	border: 1px solid #990000;
	margin-top: 5px;
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #808080;
	background-repeat: no-repeat;
}
#promobox1 {
	width: 625px;
	border: 1px solid #990000;
	margin-top: 5px;
	background-image: url(../Media/Images/Content/stoves_promo_background.jpg);
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #808080;
	background-repeat: no-repeat;
}
#promobox2 {
	width: 625px;
	border: 1px solid #990000;
	margin-top: 5px;
	background-image: url(../Media/Images/Content/britannia_promo_background.jpg);
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #808080;
	background-repeat: no-repeat;
}
#promoboxrangemaster {
	width: 625px;
	border: 1px solid #990000;
	margin-top: 5px;
	background-image: url(../Media/Images/Content/rangemaster_promo_background.jpg);
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #808080;
	background-repeat: no-repeat;
	padding-bottom:15px;
}
#promoboxcannon {
	width: 625px;
	border: 1px solid #990000;
	margin-top: 5px;
	background-image: url(../Media/Images/Content/cannon_promo_background.jpg);
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #808080;
	background-repeat: no-repeat;
	padding-bottom:15px;
}
#promoboxbelling {
	width: 625px;
	border: 1px solid #990000;
	margin-top: 5px;
	background-image: url(../Media/Images/Content/belling_promo_background.jpg);
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #808080;
	background-repeat: no-repeat;
	padding-bottom:15px;
}
#promoboxfalcon {
	width: 625px;
	border: 1px solid #990000;
	margin-top: 5px;
	background-image: url(../Media/Images/Content/falcon_promo_background.jpg);
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #808080;
	background-repeat: no-repeat;
	padding-bottom:15px;
}
#promoboxfratelli {
	width: 625px;
	border: 1px solid #990000;
	margin-top: 5px;
	background-image: url(../Media/Images/Content/fratelli_promo_background.jpg);
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #808080;
	background-repeat: no-repeat;
	padding-bottom:15px;
}
#promoboxlofra {
	width: 625px;
	border: 1px solid #990000;
	margin-top: 5px;
	background-image: url(../Media/Images/Content/lofra_promo_background.jpg);
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #808080;
	background-repeat: no-repeat;
	padding-bottom:15px;
}
#promoboxlacanche {
	width: 625px;
	border: 1px solid #990000;
	margin-top: 5px;
	background-image: url(../Media/Images/Content/lacanche_promo_background.jpg);
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #808080;
	background-repeat: no-repeat;
	padding-bottom:15px;
}
#promoboxlacanche a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: #9bbf3c;
	text-decoration:none; 
	}
#promoboxelectrolux {
	width: 625px;
	border: 1px solid #990000;
	margin-top: 5px;
	background-image: url(../Media/Images/Content/electrolux_promo_background.jpg);
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #808080;
	background-repeat: no-repeat;
	padding-bottom:15px;
}
#xmasdelivery  {
	font: arial;
	text-align: left;
	width: 625px;
	margin-top: 5px;
	background-image: url(../Media/Images/Content/xmas_delivery_background2.jpg);
	border: 1px solid #e2e2e2;
	padding-top:5px;
	padding-bottom:0px;
}
.semitrasparenttable {
	background-image:url(../Media/Images/Content/25whitebackground.png);
	border: 1px solid #e2e2e2;
}
#promoboxcaple {
	width: 625px;
	border: 1px solid #990000;
	margin-top: 5px;
	background-image: url(../Media/Images/Content/caple_promo_background.jpg);
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #808080;
	background-repeat: no-repeat;
	padding-bottom:15px;
}
#rangecookerspromotext {
	width: 430px;
	margin-left: 140px;
	margin-top: 20px;
	margin-bottom: 25px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #808080;
}
a.headerlinks {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color:#9bbf3c;
	text-decoration:none; 
}
a.headerlinks:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #9bbf3c;
	text-decoration:none;
}
a.headerlinks:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #CCCCCC;
	text-decoration:underline;
}
a.boldlinks {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #9bbf3c;
	text-decoration:none;
	font-weight: bold;
}
a.boldlinks:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #9bbf3c;
	text-decoration:none;
	font-weight: bold;
}
a.boldlinks:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #808080;
	text-decoration:underline;
	font-weight: bold;
}
a.whitelinks {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #ffffff;
	text-decoration:none;
	font-weight: normal;
}
a.whitelinks:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #ffffff;
	text-decoration:none;
	font-weight: normal;
}
a.whitelinks:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #ffffff;
	text-decoration:underline;
	font-weight: normal;
}
.smallbodytext {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 8px;
	color: #808080;
}
#promobox3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: normal;
	color: #808080;
	height: 200px;
	width: 309px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	border: 1px solid #990000;
	float: left;
	background-image: url(../Media/Images/Content/cannon_promo_background_small2.jpg);
	text-align: left;
	background-repeat: no-repeat;
}
#promobox4 {
	height: 200px;
	width: 309px;
	border: 1px solid #990000;
	float: right;
	margin-top: 5px;
	background-image: url(../Media/Images/Content/belling_promo_background_small.jpg);
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #808080;
	background-repeat: no-repeat;
}
#promobox5 {
	width: 625px;
	border: 1px solid #990000;
	float: left;
	margin-top: 5px;
	background-image: url(../Media/Images/Content/red_promo_background.jpg);
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #808080;
	background-repeat: no-repeat;
	margin-bottom: 30px;
}
#rangecookersbodytext {
	width: 160px;
	margin-left: 138px;
	margin-top: 20px;
	margin-bottom: 15px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #808080;
}
.subheader {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #808080;
	text-decoration:none;
	font-weight: bold;
}
.subheaderred {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #990000;
	text-decoration:none;
	font-weight: bold;
}
.subheaderredright {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #990000;
	text-decoration:none;
	font-weight: bold;
	text-align: right;
}
.promosubheader {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	color: #808080;
	text-decoration:none;
	font-weight: bold;
}
.promosubheaderred {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #990000;
	text-decoration:none;
	font-weight: bold;
}
.promosubheaderredright {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #990000;
	text-decoration:none;
	font-weight: bold;
	text-align: right;
}
.promoheaderred {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 21px;
	color: #990000;
	text-decoration:none;
	font-weight: bold;
}
#locationintrobox {
	font: arial;
	text-align: left;
	width: 625px;
	margin-top: 0px;
	border: 1px solid #808080;
	background-image: url(../Media/Images/Content/location_panel_background2.jpg);
}
#showroombox {
	width: 625px;
	border: 1px solid #999999;
	margin-top: 5px;
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #FFFFFF;
	padding-top: 8px;
	padding-bottom: 8px;
	background-image: url(../Media/Images/Content/grey_light_box.jpg);
}
#locationpagebox1 {
	width: 625px;
	border: 1px solid #999999;
	margin-top: 0px;
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #FFFFFF;
	padding-top: 8px;
	padding-bottom: 8px;
	background-image: url(../Media/Images/Content/location_page/staff_background.jpg);
}
#locationpagebox2 {
	width: 625px;
	border: 1px solid #999999;
	margin-top: 5px;
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #FFFFFF;
	padding-top: 8px;
	padding-bottom: 8px;
	background-image: url(../Media/Images/Content/location_page/canal_background.jpg);
}
#locationpagebox2 a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	color: #9bbf3c;
	text-decoration:none; 
}
#locationpagebox2 a:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	color: #808080;
	text-decoration:underline; 
}
#locationpagebox2 a:visited {
	color: #9bbf3c;
	text-decoration:none;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
}
#locationpagebox3 {
	width: 625px;
	border: 1px solid #999999;
	margin-top: 5px;
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #FFFFFF;
	padding-top: 8px;
	padding-bottom: 8px;
	background-image: url(../Media/Images/Content/location_page/display_background.jpg);
}
#locationpageflashbox {
	width: 625px;
	border: 1px solid #999999;
	margin-top: 5px;
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #FFFFFF;
	padding-top: 8px;
	padding-bottom: 8px;
}
#showroombox2 {
	width: 625px;
	border: 1px solid #999999;
	margin-top: 5px;
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #FFFFFF;
	padding-top: 8px;
	padding-bottom: 8px;
	background-image: url(../Media/Images/Content/contact_panel.jpg);
}
#fullwidthblank {
	width: 625px;
	border: 1px solid #999999;
	margin-top: 5px;
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #808080;
}
#rangecookershalfwidth {
	width: 325px;
	margin-left: 8px;
	margin-top: 5px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #808080;
	float: inherit;
}
#rangecookersfullpanel {
	width: 400px;
	margin-left: 8px;
	margin-top: 5px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #808080;
	float: inherit;
}
#rangecookersfullwidth {
	width: 605px;
	margin-top: 20px;
	margin-bottom: 25px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #808080;
	margin-left: 10px;
}
#locationheadertext {
	width: 310px;
	margin-left: 5px;
	margin-top: 10px;
	color: #808080;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	margin-bottom: 10px;
}
#locationbox {
	width: 625px;
	border: 1px solid #999999;
	margin-top: 5px;
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #808080;
	padding-top: 8px;
	padding-bottom: 8px;
	background-image: url(../Media/Images/Content/canalside.jpg);
	background-repeat: no-repeat;
}
#mapbox {
	width: 625px;
	border: 1px solid #999999;
	margin-top: 5px;
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #808080;
	padding-top: 8px;
	padding-bottom: 8px;
}
h2 {
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif;
	color: #808080;
	font-weight: normal;
	text-align: left;
	margin-top: 5px;
	text-indent: 1px;
}
#current_promotions_headertext {
	width: 605px;
	margin-left: 8px;
	margin-top: 5px;
	color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	margin-bottom: 15px;
}
#premium_packs_text {
	width: 605px;
	margin-left: 8px;
	margin-top: 5px;
	color: #808080;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	margin-bottom: 15px;
}
#current_promotions_footertext {
	width: 605px;
	margin-left: 8px;
	margin-top: 5px;
	color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	margin-bottom: 5px;
}
.current_offers_title {
	font-size: 48px;
	font-family: Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	font-weight: inherit;
	text-align: left;
}
.subheader_bold {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #808080;
	text-align: left;
	font-weight: bold;
}
.subheader_bold_12 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #808080;
	text-align: left;
	font-weight: bold;
}
.subheader_bold_white {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #FFFFFF;
	text-align: left;
	font-weight: bold;
}
#380box {
	width: 380px;
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #808080;
	float: left;
}
#textboxright {
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #808080;
	margin: 0 0 0 390px;
	padding: 0 20px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:1px;
    font-size: 1px;
    line-height: 0px;
}
#rangemasterdirectdeliverymainContent  {
	font: arial;
	text-align: left;
	width: 625px;
	margin-top: 0px;
	border: 1px solid #808080;
	background-image: url(../Media/Images/Content/rangemasterdirect_delivery_bannerimage.jpg);
}
#delivery_table_box {
	font: arial;
	text-align: left;
	font-size:11px;
	color:#808080;
	width: 585px;
	margin-top: 0px;
	border: 1px solid #808080;
	padding:20px;
}
.delivery_table_small_grey {
	font: arial;
	text-align: left;
	font-size:9px;
	color:#808080;
}
.delivery_table_small_lightgrey {
	font: arial;
	text-align: left;
	font-size:9px;
	color:#b2b2b2;
}
a.greenlinkssmall {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	font-weight: normal;
	color: #9bbf3c;
	text-decoration:none; 
}
a.greenlinkssmall:hover {
	color: #808080;
	text-decoration:underline;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	font-weight: normal;
}
a.greenlinkssmall:visited {
	color: #9bbf3c;
	text-decoration:none;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	font-weight: normal;
}

/* current promotions */

#promotions_container {
	width: 626px;
	margin: 0 auto;
	border:1px solid #818180;
	background-color: #FFFFFF;
}

#promo_double_box {
	border: 1px solid #990000;
	width: 412px;
	height: 250px;
	margin-top:10px;
	margin-left:10px;
	float:left;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#808080;
	text-align:center;
	background-image: url(../Media/Images/Content/current_promotions/double_block_background.png);
	}
#promo_double_box a{
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color: #9bbf3c;
	text-align:center;
	text-decoration:none;
	}
#promo_double_box a:hover{
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color: #808080;
	text-align:center;
	}
	
#promo_left_box {
	border: 1px solid #990000;
	width: 200px;
	height: 250px;
	margin-top:10px;
	float:left;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#808080;
	text-align:center;
	}
#promo_left_box a{
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color: #9bbf3c;
	text-align:center;
	text-decoration:none;
	}
#promo_left_box a:hover{
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color: #808080;
	text-align:center;
	}
#promo_centre_box {
	border: 1px solid #990000;
	width: 200px;
	height: 250px;
	margin-top:10px;
	margin-left:10px;
	margin-right:10px;
	float:left;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#808080;
	text-align:center;
	}
#promo_centre_box a{
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color: #9bbf3c;
	text-align:center;
	text-decoration:none;
	}
#promo_centre_box a:hover{
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color: #808080;
	text-align:center;
	}
#promo_right_box {
	border: 1px solid #990000;
	width: 200px;
	height: 250px;
	margin-top:10px;
	float:right;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#808080;
	text-align:center;
	}
#promo_right_box a{
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color: #9bbf3c;
	text-align:center;
	text-decoration:none;
	}
#promo_centre_box a:hover{
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color: #808080;
	text-align:center;
	}
#promo_inner_box {
	margin:10px;
	color:#808080;
	}
#promo_double_inner_box {
	margin:10px;
	margin-left:80px;
	color:#808080;
	}
#promo_inner_box_right {
	margin:20px;
	margin-left:0px;
	color:#808080;
	float:right;
	width:290px;
	}
#promo_inner_box_right a{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #9bbf3c;
	text-decoration:none; 
	}
#promo_inner_box_right a.hover{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #808080;
	text-decoration:none; 
	}
.current_offers_title_red {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #990000;
	text-decoration:none;
	font-weight: bold;
}
#current_offers_footer {
	text-align:center;
	width:606px;
	background-color:#990000;
	margin-top:10px;
	margin-bottom:10px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #ffffff;
	padding:10px;
}
#promo_brand_container {
	margin: 0px auto;
	border: 1px solid #990000;
	width: 605px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#808080;
	}
#image_div {
	width:250px;
	float:left;
	margin:20px;
	}
.promo_text_red {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #990000;
	text-decoration:none;
	font-weight: bold;
}



/* directory page styles */
#directory_brand_box {
	width:606px;
	margin: 0px auto;
	border:1px solid #e2e2e2;
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
	color:#808080;
	background-color: #FFFFFF;
	padding:10px;
	margin-top:10px;
	margin-bottom:20px;
}
#directory_left_box {
	width: 186px;
	margin-top:10px;
	float:left;
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
	color:#808080;
	text-align:left;
	padding:4px;
	}
#directory_centre_box {
	width: 186px;
	margin-top:10px;
	margin-left:10px;
	margin-right:10px;
	float:left;
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
	color:#808080;
	text-align:left;
	padding:4px;
	}
#directory_right_box {
	width: 186px;
	margin-top:10px;
	float:left;
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
	color:#808080;
	text-align:left;
	padding:4px;
	}
#directory_brand_box a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	text-align:left;
	color:#808080;
	line-height:18px;
	text-decoration:none;
}
#directory_brand_box a:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	text-align:left;
	color:#9bbf3c;
	text-decoration:underline;
}
#directory_brand_title_box {
	background-color: #e2e2e2;
	padding:2px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#808080;
}
#directory_brand_title_box a {
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#808080;
}
#directory_brand_title_box a:hover {
	color:#9bbf3c;
	font-size:12px;
}
#small_rangemaster_div {
	text-align: left;
	width: 340px;
	margin: 0px auto;
	border: 0px solid #808080;
	padding:10px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #808080;
}

