/* ----------

Tesco Real Food
- Base CSS

---------- */

/* ---------- Reset */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	}

ol, ul {
	list-style: none;
	}
	
/* -- HTML5 Display Roles */
 
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
	}
	
blockquote, 
q {
	quotes: none;
	}
	
blockquote:before, 
blockquote:after,
q:before, 
q:after {
	content: '';
	content: none;
	}

table, 
.table  {
	height: 100%;
	width: 100%;
	border-spacing: 0;
	}
	
/* -- Emulate Table */

.table {
	display: table;
	float: none;
	}
	
.table > div {
	display: table-row;
	float: none;
	}
	
.table > div > div {	
	display: table-cell;
	vertical-align: middle;
	float: none;
	}
	
@media screen and (max-width: 640px) {

	.table,
	.table > div,
	.table > div > div {
		float: none;
		width: 100%;
		display: block;
		}

}

/* ---------- // ---------- */
	
/* ---------- Links */	

a {
	color: inherit;
	text-decoration: none;
	cursor: pointer;
	font-weight: bold;
	}

a * {
    cursor: pointer;
    }
	
/* ---------- // ---------- */
	
/* --------- Images */

img,
iframe {
	display: block;
	}

.img-full {
    width: 100%;
	height: auto;
    }
	
/* ---------- // ---------- */	
	
/* ---------- Text */

em {
	font-style: italic;
	}

small {
	font-size: 80%;
	}
	
strong {
	font-weight: bold;
	}
	
.text-left {
	text-align: left;
	}
	
.text-right {
	text-align: right;
	}
	
.text-center {
	text-align: center;
	}
	
/* -- Font Embedding */

@font-face {
    font-family: 'Tesco';
    src: url('../fonts/hinted/tesco-webfont-hinted.eot');
    src: url('../fonts/hinted/tesco-webfont-hinted.eot?#iefix') format('embedded-opentype'),
         url('../fonts/hinted/tesco-webfont-hinted.woff') format('woff'),
         url('../fonts/hinted/tesco-webfont-hinted.ttf') format('truetype'),
         url('../fonts/tesco-webfont.svg') format('svg');
    font-weight: normal;
    font-style: normal;
	}
	
@font-face {
	font-family: 'Tesco';
	src: url('../fonts/hinted/tescob-webfont-hinted.eot');
	src: url('../fonts/hinted/tescob-webfont-hinted.eot?#iefix') format('embedded-opentype'),
		 url('../fonts/hinted/tescob-webfont-hinted.woff') format('woff'),
		 url('../fonts/hinted/tescob-webfont-hinted.ttf') format('truetype');
		 url('../fonts/tescob-webfont.svg') format('svg');
	font-style: normal;
	font-weight: bold;
	}
	
@font-face {
	font-family: 'Tesco';
	src: url('../fonts/hinted/tescoi-webfont-hinted.eot');
	src: url('../fonts/hinted/tescoi-webfont-hinted.eot?#iefix') format('embedded-opentype'),
		 url('../fonts/hinted/tescoi-webfont-hinted.woff') format('woff'),
		 url('../fonts/hinted/tescoi-webfont-hinted.ttf') format('truetype');
		 url('../fonts/tescoi-webfont.svg') format('svg');
	font-style: italic;
	font-weight: normal;
	}
	
/* ---------- // ---------- */

/* ---------- Body */

html.js {
	opacity: 0;
	}
	
html.js.loaded {
	opacity: 1;
	transition: 0.75s;
	-moz-transition: 0.75s;
	-webkit-transition: 0.75s;
	-ms-transition: 0.75s;
	}

body {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	line-height: 1;
	font-family: 'Tesco', Arial, sans-serif;
	color: #312F2E;
	background: #DFDDD8; 
	}
	
/* ---------- // ---------- */
	
/* ---------- Helpers */

.hidden {
	display: none !important;
	}
	
.pull-left {
	float: left;
	}
	
.pull-right {
	float: right;
	}
	
.middot:before {
	content: '';
	display: inline-block;
	font-family: Arial, sans-serif;
	width: 4px;
	height: 4px;
	background: #53504E;
	position: relative;
	top: -2px;
	border-radius: 100%;
	margin: 0 10px;
	}
	
.inline-list {
	padding-bottom: 0;
	line-height: 1;
	}
	
.inline-list li {
	display: inline-block;
    *zoom: 1;
	}
	
/* ---------- // ---------- */
	
/* ---------- Mobile */
	
@media screen and (max-width: 640px) {

	.visible-mobile {
		display: block !important;
		opacity: 1 !important;
		}
		
	.hidden-mobile {
		display: none !important;
		}
		
}

/* ---------- // ---------- */

/* ---------- Icons */

.icon-inset {
    padding-left: 5%;
    }

.icon-inset i {
    margin-left: -5%;
    padding-left: 0;
    padding-right: 0;
    }

/* ---------- // ---------- */

/* ---------- IE 7 */
	
.ie7 li {
	zoom: 1;
	*display: inline;
	}