/*
* 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 */

/* web fonts
==================================================
*/



/* #Reset & Basics (Inspired by E. Meyers)
================================================== */
	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, radio {
		margin: 0;
		padding: 0;
		border: 0;
		font-size: 100%;
		font: inherit;
		vertical-align: baseline; 
			box-sizing: border-box;	
		-webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -o-box-sizing: border-box;
        -ms-box-sizing: border-box; 
	
		}
	article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section{
		display: block; }
	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; }
	input, select, textarea, button {
		box-sizing: border-box;	
		-webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -o-box-sizing: border-box;
        -ms-box-sizing: border-box; 
	}


/* #Basic Layouts
================================================== */
body {
	background: #fff;
	color: #212121;
	-webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
	-webkit-text-size-adjust: 100%;
	font-family: "Helvetica Neue", sans-serif;
	font-size: 13px;
	line-height: 1;
 }
.FloatLeft {
	float:left;
}
.FloatRight {
	float:right;
}
.Clear {
	clear:both;
}
.BottomSpaceA {
	margin-bottom: 75px;
}
.BottomSpaceB {
	margin-bottom: 38px;
}
.BottomSpaceC {
	margin-bottom: 30px;
}
.BottomSpaceD {
	margin-bottom: 25px;
}
.BottomSpaceE {
	margin-bottom: 15px;
}
.BottomSpaceF {
	margin-bottom: 15px;
}


/* #Text formats 
================================================== */
.TextL {
	font-size: 13px;
}
.TextXL {
	font-size: 14px;
}
.TextXXL {
	font-size: 16px;
}
.TextS {
	font-size: 11px;
}
.TextXS {
	font-size: 10px;
}
.TextCenter {
	text-align:center;
}
.TextRight {
	text-align:right;
}
.TextMiddle {
	vertical-align:middle;
}
.PriceL {
	font-size: 18px;
}
.PriceM {
	font-size: 15px;
}
.PriceS {
	font-size: 14px;
}
.PriceXS {
	font-size: 11px;
}
.PriceMinus {
	color: #C00;	
}

.block {
	display: block;
}

/* #Color
================================================== */
.ColorDarkGray {
	color: #797979;
}
.ColorLightGray {
	color: #D6D6D6;
}
.ColorError {
	color: #E33F08;
}
.ColorHighlight {
	color: #D6D6D6;
}


/* #Links
================================================== */
	a, a:visited {
	color: #B7B6B8;
	text-decoration: none;
	outline: 0;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
	a:hover, a:focus {
	color: #000;
}
	p a, p a:visited { line-height: inherit; }


/* #Lists
================================================== */
	ul, ol {
}
	ul { list-style: none outside; }
	ol { list-style: decimal; }
	ol, ul.square, ul.circle, ul.disc {
}
	ul.square { list-style: square outside; }
	ul.circle { list-style: circle outside; }
	ul.disc { list-style: disc outside; }
	ul ul, ul ol,
	ol ol, ol ul {
	font-size: 90%;
}
	ul.large li { line-height: 21px; }
	li p { line-height: 21px; }

/* #Images
================================================== */

	img.scale-with-grid {
		max-width: 100%;
		height: auto; }


/* #Buttons
================================================== */

	.button,
	button,
	input[type="submit"],
	input[type="reset"],
	input[type="button"] {
	border: 1px solid #000;
	color: #FFF;
	display: inline-block;
	font-size: 12px;
	text-decoration: none;
	text-shadow: none;
	cursor: pointer;
	background-color: #000;
	height: 34px;
	width: 160px;
	letter-spacing: 1px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	line-height: normal;
}

	.button:hover,
	button:hover,
	input[type="submit"]:hover,
	input[type="reset"]:hover,
	input[type="button"]:hover {
	color: #000;
	border: 1px solid #000;
	background-color: #F8F8F8;
	  }

	.button:active,
	button:active,
	input[type="submit"]:active,
	input[type="reset"]:active,
	input[type="button"]:active {
		border: 1px solid #666;
 }

	.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; }

	/* Fix for odd Mozilla border & padding issues */
	button::-moz-focus-inner,
	input::-moz-focus-inner {
    border: 0;
    padding: 0;
	}

.ButtonHighlight {
	background-color: #FF9300;
	border: 1px solid #DE6A10;
}


/* #Forms
================================================== */

	form {
}
	fieldset {
}
	input[type="text"],
	input[type="password"],
	input[type="email"],
	input[type="tel"],
	input[type="number"],
	textarea {
		
	border: 1px solid #ccc;
	height: 34px;
	outline: none;
	color: #5F5F5F;
	max-width: 100%;
	display: block;
	margin-bottom: 2px;
	background: #fff;
	text-transform: uppercase;
	margin-top: 0;
	margin-right: 0;
	margin-left: 0;
	padding-left: 6px;
	padding-right: 6px;
	border-radius: 0px 0px 0px 0px;
    -moz-border-radius: 0px 0px 0px 0px;
    -webkit-border-radius: 0px 0px 0px 0px;
	}
select {
	border: 1px solid #ccc;
	padding-left: 6px;
	outline: none;
	color: #5F5F5F;
	max-width: 100%;
	display: block;
	margin-bottom: 2px;
	background: #fff;
	text-transform: uppercase;
	font-size: 11px;
	margin-top: 0;
	margin-right: 0;
	margin-left: 0;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	border-radius: 0px 0px 0px 0px;
	-moz-border-radius: 0px 0px 0px 0px;
	-webkit-border-radius: 0px 0px 0px 0px;
	height: 34px;
	}
.SelectHalf {
	width: 275px;
}
.SelectFull {
	width: 100%;
}
	
	input[type="text"]:focus,
	input[type="password"]:focus,
	input[type="email"]:focus,
	input[type="tel"]:focus,
	input[type="number"]:focus,		
	textarea:focus {
	border: 1px solid #aaa;
	color: #000000;
	border-color: #000000;
	text-transform: uppercase;
}
	textarea {
		min-height: 60px; }
	label,
	legend {
		display: block;
		font-weight: bold;
		font-size: 13px;  }

	input[type="checkbox"] {
		display: inline; }
	label span,
	legend span {
		font-weight: normal;
		font-size: 13px;
		color: #444; }

/* #Misc
================================================== */
	.remove-bottom { margin-bottom: 0 !important; }
	.half-bottom { margin-bottom: 10px !important; }
	.add-bottom { margin-bottom: 20px !important; }


/* #Site Layout for 960width
================================================== */
.Outer {
	width: 960px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 25px;
	margin-left: auto;
	padding-right: 10px;
	padding-left: 10px;
}
.LeftBar {
	width: 565px;
	float: left;
}
.RightBar {
	float: right;
	width: 270px;
}
.FooterCheckout {
	margin-top: 50px;
	margin-bottom: 50px;
	width: 960px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 10px;
	padding-left: 10px;
	line-height: 1.5em;
	font-size: 12px;
}
.FooterCheckout a {
	color: #000;
}
.FooterCheckout a:hover {
	color: #797979;
}
.ColumnsX3 {
	width: 33%;
}
.ColumnsX2 {
	width: 50%;
}
.HeaderLeft {

	padding-top: 50px;
}
.HeaderRight {

	padding-top: 50px;
}
.HeaderOrderDetail {
	padding-top: 50px;
}
.HeaderLogo {
	padding-top: 12px;
	background-image: url(img/0-arrow-black-thick.png);
	background-repeat: no-repeat;
	display: block;
	height: 34px;
	width: 65px;
	background-size: 100%;
	margin-top: 8px;
}
.HeaderCheckout{
	margin-top: 50px;
}
nav {
	margin-top: 7px;
}
nav a  {
	color: #A6AAA9;
	height: 34px;
	font-size: 12px;
	display: inline-block;
	text-align: center;
	font-weight: bold;
	padding-top: 10px;
	padding-right: 12px;
	padding-left: 12px;
	margin-left: 10px;
}
nav a:visited    {
	color: #A6AAA9;
}
nav a:hover    {
	color: #A6AAA9;
}
.NavActive {
	color: #fff;
	display: inline-block;
	text-align: center;
	font-weight: bold;
	background-color: #000;
}
.NavActive:hover {
	color: #fff;
}
.NavActive:visited {
	color: #fff;
}
.NavPassed {
	color: #000;
	font-size: 12px;
	display: inline-block;
	text-align: center;
	font-weight: bold;
}
.NavPassed:visited {
	color: #000;
}

/* Form area
================================================== */
.InputHalf {
	float: left;
}
.InputHalf input {
	width: 275px;
}
.InputFull input {
	width: 100%;
}
input.InputLogin {
	width: 39%;
	margin-right: 1%;
}
button.LoginFormButton{
	width: 20%;
}
.InputHalfRight {
	float: left;
	padding-left: 15px;
}
.InputHalfRight input {
	width: 275px;
}
.InputBottomNote {
	display: block;
	font-size: 11px;
	margin-bottom: 10px;
	padding-left: 4px;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #CCC;
	margin-left: 1px;
	margin-top: 3px;
}
input.InputError {
	color: #FF0000;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-right-width: 5px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #CCCCCC;
	border-left-color: #CCCCCC;
	border-bottom-color: #CCCCCC;
	border-right-color: #FB6162;
}
input.InputOkay {
	
	color: #1AB2BB;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-right-width: 5px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #CCCCCC;
	border-left-color: #CCCCCC;
	border-bottom-color: #CCCCCC;
	border-right-color: #000000;
}
input.InputData {	
	color: #1AB2BB;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-right-width: 5px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #CCCCCC;
	border-left-color: #CCCCCC;
	border-bottom-color: #CCCCCC;
	border-right-color: #1AB2BB;
}
.ButtonTopMargin10 {
	margin-top: 10px;
}
.ButtonTopMargin20 {
	margin-top: 20px;
}
.ButtonTopMargin30 {
	margin-top: 30px;
}

/* Radio Button and Check box
================================================== */
.PaySelector input{
	margin: 0;
	padding: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.PaymentType{
	cursor: pointer;
	background-size: 100%;
	background-repeat: no-repeat;
	display: inline-block;
	width: 225px;
	height: 36px;
	-webkit-transition: all 100ms ease-in;
	-moz-transition: all 100ms ease-in;
	transition: all 100ms ease-in;
	-webkit-filter: brightness(1.8) grayscale(1) opacity(.7);
	-moz-filter: brightness(1.8) grayscale(1) opacity(.7);
	filter: brightness(1.8) grayscale(1) opacity(.7);
	margin-right: 51px;
	margin-left: -5px;
}
.PaymentType:hover{
    -webkit-filter: brightness(1.2) grayscale(.5) opacity(.9);
       -moz-filter: brightness(1.2) grayscale(.5) opacity(.9);
            filter: brightness(1.2) grayscale(.5) opacity(.9);
}
.creditcard{
	background-image: url(img_shop/credit_cards_1.png);
}
.paypal{
	background-image: url(img_shop/Paypal_1.png);
}
.RegularRadioBox input{
	margin: 0;
	padding: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.RegularradioBox input:checked{
	-webkit-filter: brightness(1.2) grayscale(.5) opacity(.9);
    -moz-filter: brightness(1.2) grayscale(.5) opacity(.9);
    filter: brightness(1.2) grayscale(.5) opacity(.9);
}
.LoginType{
	cursor: pointer;
	background-size: 45%;
	background-repeat: no-repeat;
	display: inline-block;
	-webkit-transition: all 100ms ease-in;
	-moz-transition: all 100ms ease-in;
	transition: all 100ms ease-in;
	-webkit-filter: brightness(1.8) grayscale(1) opacity(.7);
	-moz-filter: brightness(1.8) grayscale(1) opacity(.7);
	filter: brightness(1.8) grayscale(1) opacity(.7);
	margin-right: 60px;
	padding-left: 25px;
	font-size: 15px;
	font-weight: bold;
	padding-top: -3px;
	height: 38px;
	width: 38px;
	background-position: 1px 0px;
	margin-left: -5px;
}

.guest{
	background-image: url(img_shop/RadioButton.png);
}
.member{
	background-image: url(img_shop/RadioButton.png);
}
.register{
	background-image: url(img_shop/RadioButton.png);
}

.CheckBox {
	margin: 0px;
	padding: 0px;
}
.CheckBox input{
	margin: 0;
	padding: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.CheckBox label{
	cursor: pointer;
	background-size: 100%;
	background-repeat: no-repeat;
	display: inline-block;
	width: 100%;
	-webkit-transition: all 100ms ease-in;
	-moz-transition: all 100ms ease-in;
	transition: all 100ms ease-in;
	-webkit-filter: brightness(1.8) grayscale(1) opacity(.7);
	-moz-filter: brightness(1.8) grayscale(1) opacity(.7);
	filter: brightness(1.8) grayscale(1) opacity(.7);
	margin-right: 51px;
	margin-left: -1px;
	background-image: url(img_shop/RadioButton.png);
	background-size: 3%;
	height: 40px;
	padding-left: 25px;
	margin-top: 10px;
}



/* Right Bar item box
================================================== */
.RightBar section {
	background-color: #f8f8f8;
	width: 100%;
	padding-top: 30px;
	padding-bottom: 30px;
	padding-right: 15px;
	padding-left: 15px;
}
.SideItemBox  {
	padding-bottom: 10px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #999;
	padding-top: 15px;
}
.SideItemBoxLast  {
	padding-top: 15px;
}
.SideItemLeft {
	float: left;
	width: 55px;
	text-align: center;
	line-height: 1.2em;
}
.SideItemRight {
	float: left;
	margin-left: 20px;
}
.SideItemImg  {
	width: 55px;
	margin-right: 10px;
	margin-bottom: 0px;
	margin-top: 3px;
	border: 1px solid #CCCCCC;
	height: 55px;
	background-color: #FFF;
	background-image: url(img_samples/black_olli.png);
	background-size: 90%;
	display: block;
	background-repeat: no-repeat;
	background-position: center center;
}
.SideItemTotal {
	text-align: right;
	font-size: 12px;
}
.SideItemTotal div {
	float: right;
	margin-bottom: 5px;
}
.SideQTYTotal {
	margin-right: 25px;
}
.SideTotalBox {
	margin-top: 20px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #000;
	padding-bottom: 30px;
}
.SideTotalL {
	float: left;
	margin-bottom: 12px;
}
.SideTotalR {
	float: right;
	margin-bottom: 12px;
}
.SideTotalBox h6 {
	margin-top: 4px;
}
.SideGrandTotal {
	text-align: right;
}


/* #Delivery Method
================================================== */
.DeliverNote {
	margin-bottom: 25px;
}
.DeliverBrandBox h2 {
	font-weight: 700;
	margin-bottom: 15px;
}
.DeliverNote p {
	margin-left: 18px;
	line-height: 1.2em;
}
.DeliverBrandBox {
}
.DeliverBrandBox img {
	height: 25px;
	width: auto;
	margin-bottom: 15px;
}
.DeliverBrandBox ul {
	margin-bottom: 15px;
	margin-left: 15px;
}
.DeliverBrandBox li {
	list-style-type: disc;
	line-height: 1.2em;
	margin-bottom: 7px;
}
.DeliveryAddress {
	margin-left: 25px;
	line-height: 1.2em;
}
.DeliveryAddress div {
	margin-top: 15px;
	font-size: 12px;
	margin-right: 10px;
}
.DeliverBrandBox textarea{
	width: 100%;
}


/* Billing pagd
================================================== */
.CreditCardFields label{
	margin-bottom: 3px;
	font-size: 12px;
}

/* Thank you page
================================================== */
.TYBottomLeft {
	width: 470px;
}
.ThankYouBottomLeft img {
	height:18px;
	width:auto;
}
.TYBottomRight {
	width: 360px;
}
.TYBottomRight h3 {
	margin-bottom: 7px;
	font-weight: 600;
}
.TYBottomRight p {
	font-size: 11px;
	line-height: 14px;
}
.TYLeftBox {
	padding-right: 100px;
}
.TYRightBox input{
	width: 275px;
	margin-bottom: 10px;
}
.TYRightBox ul {
}
.TYRightBox li {
	line-height: 20px;
	padding-left: 30px;
	background-image: url(img/icon_checked.png);
	background-repeat: no-repeat;
	background-size: contain;
	margin-top: 8px;
	margin-bottom: 8px;
}
.TYItemLeft img{
	float: left;
}
.TYItemRight div{
	float: right;
	margin-bottom: 10px;
}
.PrintOrderDetail {
	font-size: 15px;
	font-weight: normal;
	padding-left: 75px;
}

/* #Cart View
================================================== */
.TopLoginBox {
	text-align: right;
	margin-top: 25px;
}
.CartItemBox {
	padding-bottom: 25px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #CCC;
	margin-bottom: 25px;
	margin-top: 25px;
}
.CartItemImgBox{
	height: 110px;
	width: 110px;
	margin-right: 15px;
	border: 1px solid #666;
	float: left;
	
}
#ProductImg {
	background-image: url(img_samples/black_olli.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 90%;
}
#ProductImg-koala {
	background-image: url(img_samples/koala_manymals.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 90%;
}
.CartTotalBox {
	width: 300px;
}
.CartQTYBox {
}
.CartQTYBox div {
	width: 125px;
	line-height: 1.3em;
}
.CartQTYBox select{
	font-size: 19px;
	color: #333;
	width: 120px;
	height: 40px;
	text-align: center;
	border-radius: 0px;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	font-weight: bold;
}
.TopLoginBox a {
	color: #000;
}
.TopLoginBox a:hover {
	color: #000;
}
.CartCheckoutButton {
	margin-top: 25px;
	margin-bottom: 100px;
}
.CartErrorMessage {
	padding-bottom: 30px;
	text-align: center;
	font-size: 16px;
	font-weight: 300;
	color: #F00;
}
/* #Promo Code Form
================================================== */
.CartPromoBox {
	border: 1px solid #000;
	padding: 5px;
	font-size: 19px;
	font-weight: bold;
	color: #666;
	margin-bottom: 15px;
}
.CartPromoBox input {
	width: 68%;
}
.CartPromoBox button {
	width: 30%;
}
.CartPromoSubmitBox input {
	width: 100%;
	margin-right: 10px;
}
.SidePromoBox {
	font-size: 19px;
	font-weight: bold;
	color: #666;
	margin-bottom: 12px;
}
.SidePromoBox input {
	width: 68%;
}
.SidePromoBox button {
	width: 30%;
}
.SidePromoSubmitBox input {
	width: 100%;
	margin-right: 10px;
}

/* Thank you page
================================================== */

.ThankYouBottom {
}
.ThankYouBottomLeft {
	width: 50%;
	margin-right: 9%;
}
.ThankYouBottom h1{
	display: block;
	float: left;
}
.PrintReceipt {
	display: block;
	float: left;
	margin-left: 50px;
	padding-left: 45px;
	font-size: 18px;
	font-weight: 300;
	padding-top: 8px;
	background-image: url(img_shop/Printer.png);
	background-repeat: no-repeat;
	background-position: 0px 3px;
	background-size: auto 90%;
	height: 33px;
}
.ThankYouBottom h3{
	font-size: 15px;
	font-weight: bold;
	margin-bottom: 5px;
}
.ThankYouBottom p{
	margin-bottom: 20px;
	font-size: 11px;
	line-height: 1.3em;
}


/* #Modal - Login, Register, Password Recovery
================================================== */
#Modal {
	background-color: #000;
}
.ModalBox {
	background-color: #FFF;
	width: 735px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 50px;
	padding-left: 50px;
	padding-top: 30px;
	padding-bottom: 30px;
}
.ModalBox h1 {
}
.ModalBox p {
	margin-bottom: 25px;
}
.ModalBox img{
	height: 34px;
	width: 65px;
	margin-bottom: 50px;
	text-align: center;
}
.ModealLeftBar {
	padding-right: 30px;
}
.ModealLeftBar section {
	height: 150px;
}
.ModealRightBar {
	padding-left: 25px;
}
.ModealRightBar section {
	height: 150px;
}
.ModalHalfInput input{
	width: 310px;
}
.ModalHalfInputRight input{
	float: left;
	width: 310px;
	margin-left: 15px;
}
.SideInfo {
	font-size: 11px;
	line-height: 1.2em;
	border-top-width: 1px;
	border-top-style: dotted;
	border-top-color: #999;
	margin-top: 20px;
	padding-top: 20px;
}
.SideInfo h3 {
	font-size: 15px;
	font-weight: bold;
	margin-bottom: 5px;
}