@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: 780px;
	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: #79a2a2;
	text-decoration:none; 
}
a.greenlinks:visited {
	color: #79a2a2;
	text-decoration:none;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
}
a.greenlinksbig {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: #79a2a2;
	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: #79a2a2;
	text-decoration:none;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
}	
#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;
}
h1 {
	font-size: 15px;
	font-family: Arial, Helvetica, sans-serif;
	color: #808080;
	font-weight: bold;
	text-align: left;
}
h2 {
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif;
	color: #808080;
	font-weight: bold;
	text-align: left;
	margin-top: 5px;
}
h3 {
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif;
	color: #808080;
	font-weight: bold;
	text-align: left;
	margin-top: 5px;
}
.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 #691313;
	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 #691313;
	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 #691313;
	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 #691313;
	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;
}
#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: #CCCCCC;
	text-decoration:none; 
}
a.headerlinks:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #CCCCCC;
	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: #808080;
	text-decoration:none;
	font-weight: bold;
}
a.boldlinks:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #808080;
	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 #691313;
	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 #691313;
	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 #691313;
	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: #691313;
	text-decoration:none;
	font-weight: bold;
}
.subheaderredright {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #691313;
	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: #691313;
	text-decoration:none;
	font-weight: bold;
}
.promosubheaderredright {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #691313;
	text-decoration:none;
	font-weight: bold;
	text-align: right;
}
.promoheaderred {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 21px;
	color: #691313;
	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);
}
#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: 779px;
	border: 1px solid #999999;
	margin-top: 0px;
	margin-bottom: 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: left;
}
#rangecookershalfwidthnew {
	width: 325px;
	margin-left: 8px;
	margin-top: 5px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #808080;
	float: inherit;
}
#imagediv {
	width: 130px;
	margin-left: 8px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #808080;
	float: left;
	margin-top: 15px;
	height: 200px;
}
#rangecookersfullwidth {
	width: 760px;
	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;
}
#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;
}

