@charset "utf-8";

html {
	background-image:url(../images/htmlBckgrnd.jpg);
}

body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 0;
	color: #000;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
	font-family: Arial, Helvetica, sans-serif;
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #42413C;
	text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #42413C;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

/* ~~ this fixed width container surrounds the other divs ~~ */
#container {
	width: 1266px;
	background: #FFF; /* the auto value on the sides, coupled with the width, centers the layout */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}

/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
#header {
	height: 130px;
	background-image: url("../images/2013 Layout/header-new.jpg");
	position: relative;
}


/* ~~ This is the layout information. ~~ 

1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

*/

#content {
	height: 770px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	background-image: url(../images/contentBckgrnd-new.jpg);
	position: relative;
	background-repeat: repeat-y;
}
.images {
	background-image: url(../images/imageHoldersBckgrndBIG.png);
	background-repeat: no-repeat;
}
.imagesFranchise {
	background-image: url(../images/imagesBckgrndFranchise.png);
	background-repeat: no-repeat;
}

#content #images {
	height: 255px;
	width: 1050px;
	margin-left: 50px;
	position: relative;
}
#images #pageTitle {
	position: absolute;
	bottom: 10px;
	left: 60px;
	width: auto;
	height: auto;
}
#images #pageTitle h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.4em;
}
#images .imageLeft {
	height: 135px;
	width: 180px;
	position: absolute;
	left: 50px;
	top: 18px;
	background-color: #FFC;
}
#images .imageMiddle {
	height: 135px;
	width: 180px;
	position: absolute;
	left: 280px;
	top: 18px;
}
#images .imageMiddleFranchise {
	height: auto;
	width: 460px;
	position: absolute;
	left: 255px;
	background-color: #FFF;
}
#images .imageRight {
	height: 135px;
	width: 180px;
	position: absolute;
	left: 510px;
	top: 18px;
}
#images #videoBox {
	height: 215px;
	width: 285px;
	position: absolute;
	top: 18px;
	right: 25px;
}
#franchiseDetailsUpper {
	text-align: center;
	background-image: url(../images/imagesBckgrndFranchise-Top.png);
	background-repeat: no-repeat;
	height: 25px;
	width: 460px;
}
#franchiseDetailsMiddle {
	text-align: center;
	background-image: url(../images/imagesBckgrndFranchise-Middle.png);
	background-repeat: repeat-y;
}

#franchiseDetailsContent {
	background-color: #FFF;
	width: 412px;
	margin-left: 25px;
}

#franchiseDetailsLower {
	text-align: center;
	background-image: url(../images/imagesBckgrndFranchise-Bottom.png);
	background-repeat: no-repeat;
	height: 25px;
	width: 460px;
}
#franchiseDetailsMiddle #franchiseDetailsContent h1 {
	text-align: center;
	margin: 0px;
	font-family: Arial, Helvetica, sans-serif;
	color: #000;
	font-size: 2.0em;
}
#franchiseDetailsMiddle #franchiseDetailsContent h2 {
	text-align: center;
	margin: 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.2em;
}
#franchiseDetailsMiddle #franchiseDetailsContent h3    {
	text-align: center;
	margin: 0px;
  font-size:1em
}



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

#navigation  {
	position: absolute;
	width: 300px;
	right: 45px;
	top: 255px;
}
#navigation ul {
}
#navigation ul li {
	height: 42px;
	width: 200px;
	display: block;
	list-style-type: none;
}
#navigation ul li a {
	background-image: url(../images/NavButtonUp.png);
	height: 42px;
	width: 200px;
	display: block;
	text-align: center;
	line-height: 2em;
	text-decoration: none;
	background-repeat: no-repeat;
}
#container #content #navigation #postCodeNav {
	height: 70px;
	width: 200px;
	background-image: url(../images/psbutton.png);
	line-height: 1em;
	padding-top: 8px;
	background-repeat: no-repeat;
	text-decoration: none;
}
#container #content #navigation #postCodeNav:hover {
	height: 70px;
	width: 200px;
	background-image: url(../images/psbuttonHover.png);
	line-height: 1em;
	padding-top: 8px;
	background-repeat: no-repeat;
}

#container #content #navigation #postCodeNav h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	padding: 0px;
	line-height: 1.2em;
	text-align: center;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 20px;
}

#navigation ul li a:hover {
	background-image: url(../images/NavButtonOver.png);
	height: 42px;
	width: 200px;
	display: block;
	text-align: center;
	line-height: 2em;
	text-decoration: none;
	background-repeat: no-repeat;
}
#navigation ul li .button2 {
	margin-left: 17px;
	background-repeat: no-repeat;
}
#navigation ul li .button3 {
	margin-left: 30px;
	background-repeat: no-repeat;
}
#navigation ul li .button4 {
	margin-left: 44px;
	background-repeat: no-repeat;
}


#navigation ul li .button5 {
	margin-left: 56px;
	background-repeat: no-repeat;
}
#navigation ul li .button6 {
	margin-left: 64px;
	background-repeat: no-repeat;
}
#navigation ul li .button7 {
	margin-left: 70px;
	background-repeat: no-repeat;
}

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

#container #content #lowerContent {
	margin-left: 90px;
	width: 825px;
	height: 520px;
	margin-top: 5px;
	background-image: url(../images/Van.png);
	background-repeat: no-repeat;
	background-position: 100px;
}
#lowerContent p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	margin-bottom: 5px;
}
#postCodeSearch {
	height: 110px;
	width: 1010px;
	position: absolute;
	bottom: 0px;
	background-image: url(../images/postCodeBox.png);
	background-repeat: no-repeat;
	left: 105px;
	line-height: 105px;
	font-family: Arial, Helvetica, sans-serif;
	display: inline-block;
}
#postCodeSearch #posearch {
	border: 1px solid #000;
	margin-right: 10px;
	margin-left: 10px;
}
#postCodeSearch h2 {
	float: left;
	margin-left: 20px;
}
#content #lowerContent ul.questionList {
	list-style-type: none;
	margin-left: 250px;
	margin-top: 10px;
	margin-bottom: 10px;
	font-family: Arial, Helvetica, sans-serif;
}
#content #lowerContent ul.questionList li {
	background-image:url(../images/question.jpg);
	background-position: 0px;
	background-repeat:no-repeat;
	padding-left: 2em;
	margin:5px;
	line-height:1.5em;
	font-size: 0.9em;
	font-weight: bold;
}
#content #lowerContent ul.tickList {
	list-style-type: none;
	margin-left: 150px;
	margin-top: 10px;
	margin-bottom: 10px;
	font-family: Arial, Helvetica, sans-serif;
}

#content #lowerContent ul.tickList li{
	background-image:url(../images/tick.png);
	background-position: 0px;
	background-repeat:no-repeat;
	padding-left: 2em;
	margin:5px;
	line-height:1.5em;
	font-size: 0.9em;
	font-weight: bold;
			
}







#header #logo {
	margin-left: 0px;
}






/* ~~ The footer ~~ */


#videoBox #rollerOverHolder {
	background-color: #FFF;
	height: 175px;
	width: 285px;
	text-align: center;
	padding-top: 40px;
}

/* ------ GALLERY STYLES START --------- */
#lowerContent #gallery {

}
#container #content #lowerContent #gallery div table tr td span img {
	display: none;
	position: absolute;
	height: 215px;
	width: 285px;
	left: 790px;
	bottom: 537px;
}

#container #content #lowerContent #gallery div table tr td:hover span img {
	display: inline;
	position: absolute;
	height: 215px;
	width: 285px;
}


#lowerContent #gallery div table td {
	text-align: center;
	padding: 6px;
	height: 95px;
        
        
        
}
#lowerContent #gallery div table td:hover {
	text-align: center;
	padding: 5px;
        border: 1px solid #000;
background-color: #ccc;
}

#lowerContent #gallery div table td p {
	text-align: center;
	margin: 0px;
	font-size: 0.6em;
}


.galleryRow1  {
	float: right;
	margin-right: 125px;

}
.galleryRow2 {
	float: right;
	margin-right: 85px;
	margin-bottom: 0px;
}
.galleryRow3 {
	float: right;
	margin-right: 50px;
}
.galleryRow4 {
	float: right;
	margin-right: 25px;
}


/* --------- GALLERY END --------------------- */




/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
.para1 {
	margin-left: 20px;
}
.para2 {
	margin-left: 30px;
}
.para3 {
	margin-left: 40px;
}
.para4 {
	margin-left: 50px;
}
.para5 {
	margin-left: 80px;
}
.para6 {
	margin-left: 110px;
}
.para7 {
	margin-left: 125px;
}
.para8 {
	margin-left: 140px;
}


#ovenTypes table tr td {
	text-align: center;
}
#ovenTypes table tr td img {
	text-align: center;
	border: 4px solid #000;
}
#ovenTypes table tr td img:hover {
	text-align: center;
	border: 4px solid #FF6;
}


#ovenTypes table {
	margin-left: 60px;
	margin-top: 10px;
}
.beforeAndAfter {
	text-align: center;
	margin-top: 20px;
	padding-left: 60px;
}
.beforeAndAfter img {
	text-align: center;
	margin-right: 50px;
	margin-left: 50px;
}
#lowerContent #panels {
	text-align: center;
	width: 1000px;
	padding-left: 100px;
	margin-top: 25px;
	height: auto;
}
#lowerContent #panels #contactPanel {
	width: 275px;
	float: left;
	margin-right: 10px;
}
#lowerContent #panels #priceGuidePanel {
	width: 275px;
	float: left;
	margin-right: 10px;
}
#lowerContent #panels #feedbackPanel {
	width: 275px;
	float: left;
}
.priceTable {
	font-family: Arial;
	text-align: center;
        width: 100%;
        padding-right: 10px;
	}

.priceTableHeader {
	font-family: Arial;
        color: #000;
        font-size: 1em;
        font-weight:bold;

	}
                    
.priceTableRow {
	font-family: Arial;
    color: #000;
    font-size: 0.9em;
	}
#videoBox #mapHolder {
	height: 215px;
	width: 280px;
	background-image: url(../images/mapBackgrndGradient.jpg);
	background-repeat: repeat-y;
}
#container #content #lowerContent #franchiseImage {
	float: right;
	margin: 5px 5px 5px 5px;
}
#navigation #franchiseCheckUpper {
	background-image:url(../images/franchiseSearchUpper.png);
	height:16px;
	background-repeat: no-repeat;
	margin-left: 70px;
	/* DD - overflow hidden to preven gaps between divs on IE7 or below*/
	overflow:hidden;
}
#navigation #franchiseCheckMiddle {
	text-align: center;
	margin-right: 30px;
	margin-left: 70px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	background-image: url(../images/franchiseSearchMiddle.png);
	background-repeat: repeat-y;
	margin-top: 0px;
	margin-bottom: 0px;
	/* DD - overflow hidden to preven gaps between divs on IE7 or below*/
	overflow:hidden;
}
#navigation #franchiseCheckBottom {
	margin-left: 70px;
	background-image: url(../images/franchiseSearchLower.png);
	height: 22px;
	background-repeat: no-repeat;
	/* DD - overflow hidden to preven gaps between divs on IE7 or below*/
	overflow:hidden;
}
#postcode #smallPCsearch {
	background-image: url(../images/smallPostcodeSearch.png);
	background-repeat: no-repeat;
	height: 80px;
	width: 440px;
	text-align: center;
	padding-top: 15px;
}
#postcode #smallPCsearch h1 {
	font-size: 1.2em;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0.3em;
	margin-left: 0px;
}
#postcode #smallPCsearch p {
	font-size: 0.7em;
	margin: 0px;
}


#lowerContent #contactForm {
	width: 650px;
	float: right;
	background-color: #99F;
}

#contactForm #contactMessage {
	width: 300px;
	margin-right: 50px;
}
#contactForm #contactMessage table tr td {
	text-align:center;	
}
#lowerContent #contactForm table tr td {
	font-family:Arial, Helvetica, sans-serif;
	font-size:0.8em;
	padding: 2px;
}
#lowerContent #franchiseNav {
	background-color: #FFC;
	margin-left: 25px;
	margin-bottom: 15px;
	width: 650px;
	text-align: center;
	height: 25px;

}
#container #content #lowerContent #franchiseNav ul.franchiseNav {
	
}
#container #content #lowerContent #franchiseNav ul.franchiseNav li {
	display: inline;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	padding: 0px;
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 0px;
	margin-left: 10px;
}
#container #content #lowerContent #franchiseNav ul.franchiseNav li a {
	display: inline;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	padding: 5px;
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 0px;
	margin-left: 10px;
}
#container #content #lowerContent #franchiseNav ul.franchiseNav li a:hover {
	display: inline;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	padding: 5px;
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 0px;
	margin-left: 10px;
	color: #FFC;
	background-color: #9594BE;
}
#finacialInfoTable {
	text-align: center;
	background-color: #FFC;
	margin-left: 100px;
	margin-top: 15px;
	font-family: Arial, Helvetica, sans-serif;
	margin-right: 15px;
	margin-bottom: 15px;
}

#finacialInfoTable table {
	font-size: 0.8em;
	text-align: center;
}

/* My FBox Styles */

.fbox {
	display: none;
	width: 440px;
}

.fbox ul li {
 font-family:Arial, Helvetica, sans-serif;
 font-size:0.8em;
 margin:0em 0em 0.6em 2em;
  list-style:decimal;
 }
.fbox p {
	font-size:0.9em;
}
.fbox h2 {
  font-size:1.1em;
}

.centre {
	text-align: center;
}


/* FOOTER CONTENTS */ 

#footer {
	height: 100px;
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
	position: relative;
	background-image: url(../images/footerBckGrnd.png);
	background-repeat: no-repeat;
}

#footer #lowerNav  {
	text-align: center;
	font-size: 0.8em;
	position: absolute;
	bottom: 10px;
  left: 370px;
}
#footer #lowerNav li {
	display: inline;
}
#footer #companyAddress p {
	font-size: 0.6em;
	line-height: 1em;
	margin: 0px;
	right: 0px;
	bottom: 0px;
	color: #006;
}
#footer #companyAddress {
	position: absolute;
	bottom: 30px;
	left: 105px;
}
#d3wey {
	position: absolute;
	right: 240px;
	bottom: 0px;
}

#footer #franchiseLogin {
	position:absolute;
    right:0px;
    top:60px;
    font-size: 0.8em;
	color: #FFF;
	margin-top: 10px;
	margin-right: 100px;
}
#footer #franchiseLogin a{
  color:#FFF;
}
#container #content #franchiseAvailable {
	width: 600px;
	margin-left:100px;
	background-color:#CCC;
	padding:10px;
	margin-bottom: 1em;
	margin-top: 1em;
}
#lowerContent #sendMessageTop {
	height: 30px;
	background-image: url(../images/sendMessageUp-top.png);
	background-repeat: no-repeat;
	width: 680px;
	margin-left: 130px;
}
#lowerContent #sendMessageMiddle {
	background-image: url(../images/sendMessageUp-middle.png);
	background-repeat:repeat-y;
	width: 680px;
	margin-left: 130px;
	text-align: center;
}
#lowerContent #sendMessageMiddle h3{
	margin:0px;
}
#lowerContent #sendMessageMiddle img{
	margin-left:20px;
	margin-top:5px;
}

#lowerContent #sendMessageMiddle h3:hover{
	color:#006;
}

#lowerContent #sendMessageBottom {
	height: 30px;
	background-image: url(../images/sendMessageUp-bottom.png);
	background-repeat: no-repeat;
	width: 680px;
	margin-left: 130px;
}
.messageBox {
	margin-top: 5px;
	margin-bottom: 5px;
	text-align: center;
}


/*franchiseinfo contact form*/

#contactDetails {
	width:100%;
	font-size:0.8em;
	background-color:#CCC;
}

#contactDetails table {
	padding: 5px;
}

.sendButton {
	text-align: center;
	margin-top: 5px;
	margin-bottom: 5px;
}


#francContact p{
	font-size: 0.7em;
}
#francContact h3 {
	margin-bottom:0.5em;	
}
#testDb {
	background-color: #F00;
}
#lowerContent #franchiseMessages p{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
}
#lowerContent #franchiseMessages h4{
  text-align:center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	margin-bottom:0.9em;
	text-decoration: underline;
}#lowerContent #testimonialImage {
	height: 42px;
	width: 200px;
	text-align: center;
	background-image: url(../images/NavButtonOver.png);
	background-repeat: no-repeat;
	padding-top: 5px;
	margin-top:5px;
	margin-left: 390px;
}
#lowerContent #francOfferImage {
	height: 80px;
	width: 200px;
	text-align: center;
	background-image: url(../images/francOfferButton.png);
	background-repeat: no-repeat;
	padding-top: 10px;
	margin-top:5px;
}

#lowerContent #francLogo {
	margin-left: 5px;
	float: right;
	margin-right: 5px;
}
#counter    {
	text-align: center;
	 padding-top:20px;
}


#counter p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.2em;
	color: #006;
	margin: 0px;
	display: inline;
}
