/*
* Skeleton V1.2
* Copyright 2011, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 6/20/2012
*/


/* Table of Content
==================================================
	#Reset & Basics
	#Basic Styles
	#Site Styles
	#Typography
	#Links
	#Lists
	#Images
	#Buttons
	#Forms
	#Misc */
	
	
/*	font-family:'Univers N W01 320 Cd Lt';
		font-family:'UniversNW01-420CdRegula';
		font-family:'UniversNW01-520CdMedium';
		font-family:'UniversNW01-620CdBold';
	*/


/* #Reset & Basics 
================================================== */

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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,  q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/* #Basic Styles
================================================== */

body {
	background: #fff url(../images/bg.jpg) center top repeat-x;
	font-family: 'UniversNW01-420CdRegula', Arial, sans-serif;
	font-size: 15px;
	line-height: 24px;
	color: #222;
	-webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
	-webkit-text-size-adjust: 100%;
	overflow-y: scroll
}
	body.pleaseWait {
		margin: 30px;
		background: #fff;
	}
	
	.fullscreenDiv {
		width: 100%;
		height: auto;
		bottom: 0px;
		top: 0px;
		left: 0;
		position: absolute;
	}
	
	.centerAll {
	  position: fixed; /* or absolute */
	  top: 50%;
	  left: 50%;
	  transform: translate(-50%, -50%);
	}


/* #Typography
================================================== */
	
h1, h2, h3, h3 a, h4, h5, h6 {
	color: #0a4693;
	font-family: 'UniversNW01-620CdBold', 'UniversNW01-520CdMedium', Arial, sans-serif;
	text-transform: uppercase;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	font-weight: inherit;
	text-decoration: none;
}
h1 {
	font-size: 22px;
	line-height: 29px;
	margin-bottom: 20px;
}
h2 {
	font-size: 20px;
	line-height: 27px;
	margin-bottom: 20px;
	color: #333;
}
h3 {
	font-size: 20px;
	line-height: 27px;
	margin-bottom: 18px;
}
h4 {
	font-size: 14px;
	line-height: 20px;
	text-transform: uppercase;
	color: #433e39;
	margin-bottom: 15px;
}
h5 {
	font-size: 11px;
	line-height: 18px;
	text-transform: uppercase;
}
h6 {
	font-size: 11px;
	line-height: 18px;
}
.subheader {
	color: #777;
}
p {
	margin: 0 10px 25px 0;
}
p.icon {
		font-family: 'UniversNW01-620CdBold', Arial, sans-serif;
		line-height: 32px !important;
		font-size: 16px;
		text-transform: uppercase;
}

p.icon span {
		display: block;
		float: left;
		background: url('../images/sprite.png') no-repeat -180px -218px;
		background-size: 500px 500px;
		width: 32px;
		height: 32px;
		margin-right: 10px;
		-webkit-transition: all 0.2s ease-out;
		-moz-transition: all 0.2s ease-out;
		-o-transition: all 0.2s ease-out;
		transition: all 0.2s ease-out;
}
	p.icon a {
		color: #f90;
	}
	p.icon a:hover {
		color: #f60;
	}
	p.icon a:hover span {
		background: url('../images/sprite.png') no-repeat -148px -218px;
		background-size: 500px 500px;
	}
		
	#featureWrap p.icon a:hover {
		color: #fff;
	}
	
p.lead {
	font-size: 18px;
	line-height: 25px;
}

p.address {
	font-family: 'UniversNW01-620CdBold', Arial, sans-serif;
}

p.successMsg {
	font-size: 16px;
	background: #EEF295;
	color: #690;
	padding: 8px 15px 7px;
	border: 1px solid #690;
	box-sizing: border-box;
	margin-right: 0;
}

p.successMsg::before {
	content: "";
	display: block;
	float: left;
	background: url('../images/sprite.png') no-repeat -30px -478px;
	background-size: 500px 500px;
	width: 24px;
	height: 24px;
	margin-right: 8px;
}

p.errorMsg {
	font-size: 16px;
	background: #FFCCCC;
	color: #900;
	padding: 8px 15px 7px;
	border: 1px solid #c00;
	box-sizing: border-box;
	margin-right: 0;
}

p.errorMsg::before {
	content: "";
	display: block;
	float: left;
	background: url('../images/sprite.png') no-repeat 0 -460px;
	background-size: 500px 500px;
	width: 24px;
	height: 24px;
	margin-right: 8px;
}

em {
	font-style: italic;
}
strong {
	font-family: 'UniversNW01-620CdBold', Arial, sans-serif;
}
small {
	font-size: 85%;
}
/*	Blockquotes  */
blockquote, blockquote p {
	font-family: Arial, sans-serif;
	font-style: italic;
	font-size: 21px;
	line-height: 27px;
	padding-bottom: 10px;
	margin-bottom: 0;
	color: #444;
}

blockquote {
	margin: 0 0 30px;
	padding: 9px 0 0 19px;
	border-left: 5px solid #eb1b2c;
}
blockquote .footer {
	font-size: 13px;
	font-style: normal;
	line-height: 19px;
	color: #eb1b2c;
}
blockquote .footer:before {
	content: "\2014 \0020";
}
blockquote .footer a, blockquote .footer a:visited, blockquote .footer a:visited {
	color: #cc3f0f;
}

hr {
	display: block;
	border: dashed #679cde;
	border-width: 0 0 1px;
	clear: both;
	padding-top: 25px;
	margin: 0 10px 50px;
	height: 0;
}

.column hr, .columns hr {
	margin: 0 0 50px;
}

	#searchResults hr {
		padding-top: 12px;
		margin-bottom: 30px;
	}

hr.mini {
	border: solid #679cde;
	border-width: 5px 0 0 !important;
	clear: both;
	width: 60px;
	margin: 20px auto 20px !important;
	padding: 0;
}

hr.narrow {
    padding-top: 0;
		margin: 20px 10px;
	}
	.column hr.narrow , .columns hr.narrow  {
		margin: 20px 0;
	}

.feature img {
	-webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,0.3);
	-moz-box-shadow: 0 0 5px 0 rgba(0,0,0,0.3);
	box-shadow: 0 0 5px 0 rgba(0,0,0,0.3);
}




/* #Links
================================================== */

a {
	color: #f60;
	text-decoration: none;
	outline: 0;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}
a:hover, a:focus {
	color: #333;
}
p a, p a:visited {
	line-height: inherit;
}

a[href^=tel]{
    color:inherit;
    text-decoration:none;
}


/* #Lists
================================================== */

ul, ol {
	margin-bottom: 30px;
}
ul {
	list-style: square outside;
}
ol {
	list-style: decimal;
}
ol, ul {
	margin-left: 40px;
}

ul.circle {
	list-style: circle outside;
}
ul.disc {
	list-style: disc outside;
}

ul ul, ul ol,  ol ol, ol ul {
	margin: 4px 0 5px 18px;
	/*font-size: 90%;*/
}
ul ul li, ul ol li,  ol ol li, ol ul li {
	margin-bottom: 6px;
}
li {
	line-height: 22px;
	margin-bottom: 3px;
}

/* pagination */



ul.pagination {
	margin: 0;
	list-style: none;
}

ul.pagination li {
	display: inline;
	line-height: 28px;
	margin-right: 5px;
	list-style: none;
}

ul.pagination li.nobg {
	color: #333;
	margin-right: 20px;
}

ul.pagination li.disabled, ul.pagination li.selected {
	display: inline-block;
	padding: 0 10px;
}

ul.pagination li.selected {
	background: #022c5e;
	color: #fff;
}

ul.pagination li a, ul.pagination li span.off {
	display: inline-block;
	background: #9CB1C1;
	color: #fff;
	padding: 0 10px;
	margin-bottom: 30px;
}

ul.pagination li span.off {
	font-size: 20px;
    line-height: 27px;
}

ul.pagination li a:hover {
	background: #4072b2;
}

/* linklist */

ul.linklist {
	margin: 0 0 20px;
	list-style: none;
}

ul.linklist li {
	line-height: 32px;
	margin-bottom: 15px;
	font-weight: bold;
}
	ul.linklist li span {
		display: block;
		float: left;
		margin-right: 10px;
	}

	ul.linklist li.fax span {
		background: url('../images/sprite.png') no-repeat -95px -219px;
		background-size: 500px 500px;
		width: 32px;
		height: 32px;
	}
	ul.linklist li.pdf span {
		background: url('../images/sprite.png') no-repeat 0 -219px;
		background-size: 500px 500px;
		width: 32px;
		height: 32px;
	}
	ul.linklist li.tel span {
		background: url('../images/sprite.png') no-repeat -46px -219px;
		background-size: 500px 500px;
		width: 32px;
		height: 32px;
	}
    ul.linklist li.video span {
		background: url('../images/sprite.png') no-repeat -290px -219px;
		background-size: 500px 500px;
		width: 32px;
		height: 32px;
	}


/* tab navigation */

ul.tabNavigation {
  list-style: none;
  margin: 0 0 22px 0;
  padding: 0;
  border-bottom: 1px solid #b3aba6;
}

ul.tabNavigation li {
  float: left;
  margin: 0 5px -1px 0;
  padding: 0;
	list-style: none;
}

ul.tabNavigation li a {
	display: block;
	padding: 10px 14px 9px;
	background-color: #b3aba6;
	color: #fff;
	border: 1px solid #b3aba6;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 13px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
}

ul.tabNavigation li a:hover {
  background-color: #efeeed;
  border: 1px solid #b3aba6;
  border-bottom: 1px solid #efeeed;
  color: #000;
}

ul.tabNavigation li a.selected {
  background-color: #ec1c2c;
  border: 1px solid #ec1c2c;
  border-bottom: 1px solid #ec1c2c;
  color: #fff;
}

ul.tabNavigation li a:focus {
  outline: 0;
}

/* Benefits list
-------------------------- */

dl.tickList {
    margin-bottom: 20px;
}

dl.tickList dt {
	font-family: 'UniversNW01-620CdBold', Arial, sans-serif;
    font-size: 16px;
}
    dl.tickList dt::before {
	    content: "";
	    display: block;
	    float: left;
	    background: url('../images/sprite.png') no-repeat -30px -478px;
	    background-size: 500px 500px;
	    width: 24px;
	    height: 24px;
	    margin-right: 12px;
    }
dl.tickList dd {
	margin-bottom: 10px;
    padding-left: 36px;
}


/* accordion
-------------------------- */

dl.aList {
	margin-bottom: 20px;
}

dl.aList dt {
	font-family: 'UniversNW01-620CdBold', Arial, sans-serif;
	line-height: 22px;
	background: #2868b7;
	color: #fff;
	cursor: pointer;
	border-bottom: 1px solid #fff;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
      border-radius: 4px; 
     -moz-border-radius: 4px; 
     -webkit-border-radius: 4px;
	padding: 8px 10px 8px 2px;
}
	dl.aList dt span {
		display: block;
		float: left;
		background: url('../images/sprite.png') no-repeat -217px -218px;
		background-size: 500px 500px;
		width: 28px;
		height: 28px;
		padding: 0 6px 0 0;
		cursor: pointer;`
	}
	dl.aList dt:hover {
		background: #f90;
	}
	dl.aList dt.active {
		background: #05180e;
		background-size: 500px 500px;
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
		-moz-border-radius-bottomleft: 0;
		-moz-border-radius-bottomright: 0;
		-webkit-border-bottom-left-radius: 0;
		-webkit-border-bottom-right-radius: 0;
	}
		dl.aList dt.active span {
			background: url('../images/sprite.png') no-repeat -217px -242px;
			background-size: 500px 500px;
			width: 28px;
			height: 28px;
		}

dl.aList dd {
	padding: 25px 20px 15px 25px;
	margin-bottom: 20px;
	border: 1px solid #ded3c5;
	border-top: none;
	background: #f8f6f3;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	-moz-border-radius-bottomleft: 4px;
	-moz-border-radius-bottomright: 4px;
	-webkit-border-bottom-left-radius: 4px;
	-webkit-border-bottom-right-radius: 4px;
}

dl.aList dd img {
	max-width: 50%;
	float: left;
	margin: 0 20px 15px 0;
}




/* #Images
================================================== */

img.scale {
	max-width: 100%;
	height: auto;
	margin-bottom: 10px;
}

.imgHolder {
	/*line-height: 1px;
	background: #fff;
	padding: 20px;
	-webkit-box-shadow: 0px 0px 5px 2px rgba(182, 208, 240, .5);
	-moz-box-shadow: 0px 0px 5px 2px rgba(182, 208, 240, .5);
	box-shadow: 0px 0px 5px 2px rgba(182, 208, 240, .5);
	margin-bottom: 30px;*/

       background: #fff none repeat scroll 0 0;
    box-shadow: 0 0 5px 2px rgba(182, 208, 240, 0.5);
    line-height: 1px;
    margin-bottom: 30px;
    padding: 20px;
    table-layout: fixed;
    text-align: center;


}

img.insetL {
	float: left;
	margin: 0 30px 20px 0;
}

img.insetR {
	float: right;
	margin: 0 0 20px 30px;
}


/* #Buttons
================================================== */

.button,  button,  input[type="submit"],  input[type="reset"],  input[type="button"], .button:visited {
	font-family: 'UniversNW01-520CdMedium', Arial, sans-serif;
	font-size: 14px;
	text-transform: uppercase;
	background: #f60;
	border: none;
	color: #fff;
	display: inline-block;
	text-decoration: none;
	cursor: pointer;
	margin-bottom: 20px;
	line-height: 17px !important;
	min-height: 15px;
	padding: 8px 15px 9px;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
 	border-radius: 2px; 
 	-moz-border-radius: 2px; 
  	-webkit-border-radius: 2px;
	-webkit-appearance: none;
}

.button.ltBlue, button, input[type="submit"].ltBlue, input[type="reset"].ltBlue, input[type="button"].ltBlue, .button.ltBlue:visited {
	background: #2868b7;
}

.button.dkBlue, button, input[type="submit"].dkBlue, input[type="reset"].dkBlue, input[type="button"].dkBlue, .button.dkBlue:visited {
	background: #022c5e;
}

.button:hover,  button:hover,  input[type="submit"]:hover,  input[type="reset"]:hover,  input[type="button"]:hover {
	background: #000 !important;
	color: #fff !important; 
}
.button:active,  button:active,  input[type="submit"]:active,  input[type="reset"]:active,  input[type="button"]:active {
	background: #e50004; 
}
.button.full-width,  button.full-width,  input[type="submit"].full-width,  input[type="reset"].full-width,  input[type="button"].full-width {
	width: 100%;
	padding-left: 0 !important;
	padding-right: 0 !important;
	text-align: center;
}

button,  input[type="submit"],  input[type="reset"],  input[type="button"] {
	height: 32px;
	line-height: normal !important;
}

button.matchLabel,  input[type="submit"].matchLabel,  input[type="reset"].matchLabel,  input[type="button"].matchLabel {
	margin-left: 150px;
}

	/* Fix for odd Mozilla border & padding issues */
	button::-moz-focus-inner,  input::-moz-focus-inner {
		border: 0;
		padding: 0;
	}


/* #Forms
================================================== */

form {
	margin-bottom: 20px;
}
form.panel {
	padding: 19px;
	border: 1px solid #cce1f4;
	background: #ecf4fb;
}
.errorBox {
	padding: 10px;
	border: 1px solid #e50004;
	background: #ffe6e6;
	color: #e50004;
	margin: 0 0 20px 0 !important;
}

/* start eBook upload dashboard */
.infoBox {
	padding: 10px;
	border: 1px solid #022c5e;
	background: #C4DDF3;
	color: #022c5e;
	margin: 0 0 20px 0 !important;
    width: 630px;
}
.successBox {
	padding: 10px;
	border: 1px solid #004700;
	background: #ccefcc;
	color: #004700;
	margin: 0 0 20px 0 !important;
    width: 630px;
}
.importErrorBox {
	padding: 10px;
	border: 1px solid #e50004;
	background: #ffe6e6;
	color: #e50004;
	margin: 0 0 20px 0 !important;
    width: 630px;
}
/* end eBook upload dashboard */

.greenBox {
	padding: 10px;
	border: 1px solid #3d4f06 ;
	background: #edefe7;
	color: #5b800c;
	margin: 0 0 20px 0 !important;
}
fieldset {
	margin-bottom: 20px;
}

 



input[type="text"],  input[type="password"],  input[type="email"],  textarea,  select {
	font-family: 'UniversNW01-420CdRegula', Arial, sans-serif;
	font-size: 16px;
	border: 1px solid #ccc;
	padding: 0 8px;
	outline: none;
	color: #777;
	margin: 0 0 10px;
	width: 254px;
	max-width: 100%;
	display: block;
	background: #fff;
	height: 32px;
	line-height: normal;
	text-overflow: ellipsis !important;
	border-radius: 2px; 
 	-moz-border-radius: 2px; 
  -webkit-border-radius: 2px;
	-webkit-appearance: none;
	box-sizing: border-box;
}

input.input-validation-error, textarea.input-validation-error,  select.input-validation-error {
	border: 1px solid #c00;
}

input[type="text"].full-width, input[type="password"].full-width, input[type="email"].full-width, textarea.full-width, select.full-width {
	width: 100%;
}

input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, textarea:focus {
	color: #444;
	-moz-box-shadow: inset 0 0 5px rgba(4,72,125,0.7);
	-webkit-box-shadow: inset 0 0 5px rgba(4,72,125,0.7);
	box-shadow: inset 0 0 5px rgba(4,72,125,0.7);
}

#Postcode {
    text-transform: uppercase;
}

textarea {
	min-height: 123px;
}
label, legend {
	font-family: 'UniversNW01-420CdRegula', Arial, sans-serif;
	font-size: 16px;
	width: 150px;
	display: block;
	margin: 8px 0;
	color: #0a4693;
	float: left;
}
#searchWrap label, label.mainSearch {
	font-family: Arial, sans-serif;
	text-transform: uppercase;
	font-size: 18px;
}

select {
	-webkit-appearance: listbox;
	width: 254px;
	background: #fff url('../images/select-arrow.gif') center right no-repeat;
	padding: 0 5px 0;
	height: 32px;
	line-height: normal;
}
select.full-width {
	width: 100% !important;
}
input[type="checkbox"] {
	display: inline;
}
.ctrlPanel input[type="radio"]  {
	float: left;
    margin-top: 12px;
    margin-right: 10px;
}
label span,  legend span {
	font-size: 13px;
	color: #444;
}

input.error, select.error {
	-webkit-box-shadow: inset 0px 0px 1px 0px rgba(229, 0, 4, 1);
	-moz-box-shadow:    inset 0px 0px 1px 0px rgba(229, 0, 4, 1);
	box-shadow:         inset 0px 0px 1px 0px rgba(229, 0, 4, 1);
	background-color: #ffe6e6
}

input.disabled, select.disabled {
	-webkit-box-shadow: inset 0px 0px 1px 0px rgba(0, 0, 0, 0.5);
	-moz-box-shadow:    inset 0px 0px 1px 0px rgba(0, 0, 0, 0.5);
	box-shadow:         inset 0px 0px 1px 0px rgba(0, 0, 0, 0.5);
	background-color: #ddd
}

label.checkLabel {
    display: block;
    padding-left: 20px;
    text-indent: -20px;
		width: 200px;
}
label.checkLabel.fullWidth {
		width: 100%;
}

p .price, p .trade {
	font-family: 'UniversNW01-620CdBold', 'UniversNW01-520CdMedium', Arial, sans-serif;
	font-size: 24px;
	line-height: 24px;
}
p .price.small, p .trade.small {
	font-family: 'UniversNW01-620CdBold', 'UniversNW01-520CdMedium', Arial, sans-serif;
	font-size: 18px;
	line-height: 18px;
}

input.pricebox {
	display: inline !important;
	font-size: 24px;
	font-family: 'UniversNW01-620CdBold', 'UniversNW01-520CdMedium', Arial, sans-serif;
	line-height: normal;
	color: #ff3300;
	background: transparent;
	border: none;
	width: 70px !important;
	margin: 0;
	padding: 0;
	height: 24px;
}

input.pricebox.small {
	font-size: 18px;
	height: 18px;
}

input.priceboxvat {
	display: inline !important;
	font-size: 16px;
	line-height: normal;
	color: #999999;
	background: transparent;
	border: none;
	width: 200px !important;
	padding: 0;
	height: 24px;
}

input.input-validation-error, select.input-validation-error {
	-webkit-box-shadow: inset 0px 0px 1px 0px rgba(229, 0, 4, 1);
	-moz-box-shadow:    inset 0px 0px 1px 0px rgba(229, 0, 4, 1);
	box-shadow:         inset 0px 0px 1px 0px rgba(229, 0, 4, 1);
	background-color: #ffe6e6
}


/* #Tables
================================================== */

/* info grid */

table.infogrid {
	margin-bottom: 30px;
	border-left: 1px solid #537db3;
}

.infogrid th, .infogrid td {
	padding: 5px 8px;
	border-right: 1px solid #537db3;
}

.infogrid tr {
	border-bottom: 1px solid #537db3;
	background: #fff;
}
	/*.infogrid tr:hover {
		background: #f90;
		color: #fff;
	}*/
	.infogrid tr:nth-child(even) {
		background-color: #d8e9f9;
	}
	
	.infogrid tr.subhead {
		border-bottom: 1px solid #537db3;
		background: #eee;
	}

.infogrid th {
	background: #537db3;
	color: #fff;
	text-align: left;
}
	.infogrid th.right {
		text-align: right;
	}

.infogrid td {
	border-bottom: 1px solid #537db3;
}

.infogrid input {
	margin: 0;
}

/* image table*/

table.imgGrid {
	background: #fff;
}

table.imgGrid td {
	padding: 10px 20px
}



/* #Misc
================================================== */

.mb-0 {
	margin-bottom: 0 !important;
}
.mb-5 {
	margin-bottom: 5px !important;
}
.mb-10 {
	margin-bottom: 10px !important;
}
.mb-20 {
	margin-bottom: 20px !important;
}
.mb-30 {
	margin-bottom: 30px !important;
}
.mb-40 {
	margin-bottom: 40px !important;
}

.mt-0 {
	margin-top: 0 !important;
}
.mt-10 {
	margin-top: 10px !important;
}
.mt-15 {
	margin-top: 15px !important;
}
.mt-20 {
	margin-top: 20px !important;
}
.mt-40 {
	margin-top: 40px !important;
}

.mr-10 {
	margin-right: 10px !important;
}
.mr-20 {
	margin-right: 20px !important;
}

.ml-10 {
	margin-left: 10px !important;
}
.ml-20 {
	margin-left: 20px !important;
}

.m-0 {
	margin: 0 !important;
}

.flo-l {
	float: left !important;
}
.flo-r {
	float: right !important;
}

.center {
	text-align: center !important;
}
.left {
	text-align: left !important;
}
.right {
	text-align: right !important;
}

.mob-only, .mob-only-p, .mob-only-all, .hidden {
	display: none;
}

.loader {
	display: none;
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: rgba(255,255,255, 0.5) url('/images/preload.gif') 50% 50% no-repeat;
}

.divider {
	margin: 0 10px;
	color: #999;
}

::selection {
	background: #b3aba6; /* Safari */
	color: #fff;
}
::-moz-selection {
	background: #b3aba6; /* Firefox */
	color: #fff;
}

.hilight {
	color: #ac1420 !important;
}
.lolight {
	color: #746a65;
	font-size: 13px;
}
.price, .trade {
	color: #f30; 
}
.callOut .price, .price.small {
    margin-right: 15px;
}

.callOut .trade, .trade.small {
    margin-right: 10px;
}
.discounted {
    color: #333;
    text-decoration: line-through;
}
.discountText {
    text-align: center;
    border-top: 1px solid #cee3f6;
    border-bottom: 1px solid #cee3f6;
	font-size: 13px;
    text-transform: uppercase;
	line-height: 30px;
    margin-bottom: 15px;
	color: #0a4693;
    max-width: 480px;
}
.discountText.boxed {
    border: 1px solid #cee3f6;
    background: #fff;
    margin-bottom: 15px;
    max-width: 200px;
}
.date {
	font-size: 12px;
	line-height: 19px;
	color: #999;
}

/*  Cookie law  */

#cookie-law {
    max-width: 1180px;
    background: #ec1c2c; 
    margin: 20px auto;
		position: relative;
		z-index: 100;
}
 
#cookie-law p { 
    padding: 10px 20px; 
    font-size: 14px; 
    color: #fff; 
    margin: 0;
}

#cookie-law a { 
    color: #fff;
	text-decoration: underline; 
}

#cookie-law a.close-cookie-banner { 
    position: absolute;
		right: 10px;
		top: 20px;
		margin-top: -10px;
}
