/* Tijdelijk op display:none totdat de functionaliteit gemaakt */

#shopFormSelectAddress .shopSmallBox.fr {
	display:none;
}

#shopFormOverview .shopSmallBox.fr {
	display:none;
}

/*
	width calulations in the shop:
	
	#shopWrapper = max width (600px)
	
	.shopTitle (200px) = max width (600px) - .shopSteps (400px)
	
	.shopSmallBox (290px) = max width (600px) / 2 - 10px columnspace
	.shopSmallHeader (280px), .shopSmallFormRow (280px) = .shopSmallBox (290px) - 10px (5px padding both sides)
	.shopLargeBox (600px) = max width (600px)
	.shopLargeHeader (590px), .shopLargeFormRow (590px) = max width (600px) - 10px (5px padding both sides)
	
	cart table (column) widths:
	.shopCartTable (600px) = max width (600px)
	cart row is divided in:
	.shopDeleteRow (20px) + .shopArticleRow (295px) + .shopAmountRow (70px) + .shopPriceRow (70px) + .shopSubtotalRow (95px) = 550px + (5 x 10px (5px padding both sides)) = max width (600px)
	when changing width of cart, change .shopArticleRow first. The rest can remain the same
	.shopArticleOverviewRow (325px) = .shopDeleteRow (20px) + .shopArticleRow (295px) + 10px (5px padding both sides)
	when changing width of cart, change .shopArticleOverviewRow based on new width of .shopArticleRow. The rest can remain the same
	
	.shopCartTableCalculation (600px) = max width (600px)
	cart calculation row is divided in:
	.shopCalculationRow (495px) + .shopCalculationPriceRow (85px) and
	.shopCalculationTotalRow (495px) + .shopCalculationPriceTotalRow (85px) = 580px + 2 x (padding 5px  (both sides)) = max width (600px)
	when changing width of cart, change .shopCalculationRow and .shopCalculationTotalRow


	.shopOrderhistoryTable 600
	.shopLargeOrderhistoryHeader 590
	shopArticleOrderhistoryRow 325
	
	don't change:
	.shopInputLarge (250px), .shopInputMedium (180px), .shopInputSmall (100px), .shopSmallLabel (85px), .shopMediumLabel (135px)
*/

#shopWrapper a:focus {
	border: 0;
	outline: 0;
}
#shopWrapper ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
#shopWrapper .fc {
	clear: both;
}
#shopWrapper .fl {
	float:left;
}
#shopWrapper .fr {
	float: right;
}

/*	mainwrapper setting maximum width */

#shopWrapper {
	width: 565px;
	margin: 0;
	padding: 15px;
	overflow: hidden;
	background-color: #fff;
}

/*	header width is maximum width of shop */

.shopHeader {
	height: 60px;
}

/*	title width is shopHeader width - shopSteps width */

.shopTitle {
	width: 165px;
	overflow: hidden;
}
.shopTitle h1 {
	height: 25px;
	margin: 0;
	padding: 0;
	font-size: 22px;
	font-weight: bold;
	color: #666;
	line-height: 100%;
}

/*	image for every step in the shoppingproces */

.shopSteps {
	width: 400px;
}

/*	introduction text at the top */

.shopIntroBox {
	padding: 10px 5px 10px 5px;
}

/*	feedbacks / errors for forms. Colours should remain the same */

.shopFeedbackBox {
	background-color: #F7D9D9;
	padding: 10px 5px 10px 5px;
}
.shopFeedbackIntro {
	color: #CC0000;
	font-weight: bold;
}
.shopFeedbackItems{
	margin: 10px 0 0 0;
}
.shopFeedbackItems ul {
	padding: 0;
	list-style: none;
}
.shopFeedbackItems li {
	font-weight: normal;
	color: #CC0000;
	line-height: 16px;
}

/*	small boxes (two column layout) and large boxes (1 column layout)  */

.shopSmallBox {
	width: 272px;
	padding: 10px 0 10px 0;
}
.shopSmallBox.fr.billingAddress {
	display: none;
}
.shopSmallHeader {
	width: 262px;
	padding: 10px 5px 10px 5px;
	background-color: #F0F0F0;
	margin-bottom: 15px;
	clear: both;
}
.shopSmallContent {
	padding: 0 5px 20px 5px;
}
.shopSmallFormRow {
	display: block;
	padding: 4px 5px 4px 5px;
	width: 262px;
	clear: both;
	margin: 0;
	float: left;
	overflow: hidden;
}
.shopLargeBox {
	width: 565px;
	padding: 10px 0 10px 0;	
}
.shopLargeHeader {
	width: 555px;
	padding: 10px 5px 10px 5px;
	background-color: #F0F0F0;
	margin-bottom: 15px;
	clear: both;
}
.shopLargeContent {
	padding: 0 5px 20px 5px;
}
.shopLargeFormRow {
	display: block;
	padding: 4px 5px 4px 5px;
	width: 555px;
	clear: both;
	margin: 0;
	float: left;
	overflow: hidden;
}

.shopLargeOrderhistoryHeader {
	width: 590px;
	padding: 10px 5px 10px 5px;
	background-color: #F0F0F0;
	margin-bottom: 0;
	clear: both;
}
.shopFormSubmit {
	display: block;
	padding: 10px 0 10px 0;
	margin: 0;
	overflow: hidden;
	clear: both;
}
.shopFormSubmitNoPadding {
	display: block;
	padding: 0 0 10px 0;
	margin: 0;
	overflow: hidden;
	clear: both;
}
.shopFormCartSubmit {
	display: block;
	padding: 10px 0 10px 0;
	margin: 0;
	float: right;
}
.shopFormCartBack{
	display: block;
	padding: 15px 0 5px 0;
	margin: 0;
	float: left;
}
.shopOrderNumber {
	font-size: 18px;
	margin-top: 5px;
}
.shopRuler {
	border-bottom: 1px solid #DCDCDC;
	height: 10px;
	display: block;
	margin: 0 0 5px 0;
}
.shopTextBold {
	font-weight: bold;
}
.shopInputLarge {
	width: 250px;
}
.shopInputMedium {
	width: 180px;
}
.shopInputSmall {
	width: 100px;
}
#shopWrapper form {
	padding: 0;
	margin: 0;
}
#shopWrapper fieldset {
	border: 0;
	padding: 0;
	margin: 0;	
}
#shopWrapper input {
	font-size: 12px;
}
#shopWrapper .submit {
	margin: 5px 0 5px 0;
}
#shopWrapper .checkbox, #shopWrapper .radio {
	margin: 0.4em 0 0 0;
	width: 13px;
}
.shopRadioLabel {
	display: block;
	margin: 3px 0 0 10px;
	overflow: hidden;
	float: left;
}
.shopRadioLabelInline {
	display: block;
	margin: 4px 10px 0 5px;
	overflow: hidden;
	float: left;
}
.shopRadioLabelMultiline {
	display: block;
	line-height: 1.3em;
	margin: 3px 0 0 10px;
	overflow: hidden;
	float: left;
}
.shopSmallLabel {
	width: 85px;
	float: left;
	margin: 2px 5px 0 0;
	overflow: hidden;
	display: block;
}
.shopMediumLabel {
	width: 135px;
	float: left;
	margin: 2px 5px 0 0;
	overflow: hidden;
	display: block;
}
.shopFormFieldRequired {
	background: url('../gfx/icon_required.png') no-repeat 0 0;
	margin: 5px 0 0 5px;
	width: 7px;
	height: 7px;
	display: inline-block;
}
.shopFormFieldExplain {
	font-style: italic;
	margin-left: 5px;
}
.shopCartTable {
	border-collapse: collapse;
	border-spacing: 0;
	margin: 20px 0 0 0;
	padding: 0;
	width: 565px;
	table-layout: fixed;	
}
.shopCartTable th {
	background-color: #F0F0F0;
	font-weight: bold;
	vertical-align: top;
	overflow: hidden;
	padding: 10px 5px 10px 5px;
}
.shopCartTable td {
	border-bottom: 1px solid #DCDCDC;
	padding: 10px 5px 10px 5px;
	vertical-align: top;
}
.shopDeleteRow {
	width: 20px;
	text-align: left;
}
.shopArticleRow {
	width: 260px;
	text-align: left;
}
.shopArticleOverviewRow {
	width: 290px;
	text-align: left;
}

.shopArticleOrderhistoryRow {
	width: 290px;
	text-align: left;
}
.shopPriceRow {
	width: 70px;
	text-align: right;
}
.shopAmountRow {
	width: 70px;
	text-align: left;
}
.shopSubtotalRow {
	width: 95px;
	text-align: right;
	font-weight: bold;
}

.shopOrderhistoryTable {
	border-collapse: collapse;
	border-spacing: 0;
	margin: 0 0 20px 0;
	padding: 0;
	width: 565px;
	table-layout: fixed;	
}
.shopOrderhistoryTable th {
	background-color: #F6F6F6;
	font-weight: normal;
	vertical-align: top;
	overflow: hidden;
	padding: 10px 5px 10px 5px;
}
.shopOrderhistoryTable td {
	border-bottom: 1px solid #DCDCDC;
	padding: 10px 5px 10px 5px;
	vertical-align: top;
}
.shopOrderhistoryDetails {
	color: #999;
}
.shopCartTableCalculation {
	border-collapse: collapse;
	border-spacing: 0;
	margin: 15px 0 0 0;
	padding: 0;
	width: 565px;
	table-layout: fixed;	
}
.shopCartTableCalculation td {
	vertical-align: top;
}
.shopCalculationRow {
	width: 460px;
	padding: 1px 5px 10px 5px;
	text-align: right;
}
.shopCalculationPriceRow {
	width: 85px;
	padding: 1px 5px 10px 5px;
	text-align: right;
	font-weight: bold;
}
.shopCalculationRow img {
	margin-bottom: -3px;
}
.shopCalculationTotalRow {
	width: 460px;
	text-align: right;
	padding: 10px 5px 10px 5px;
	border-top: 1px solid #DCDCDC;
}
.shopCalculationPriceTotalRow {
	width: 85px;
	text-align: right;
	font-weight: bold;
	font-size: 14px;
	padding: 10px 5px 10px 5px;
	border-top: 1px solid #DCDCDC;
}
.shopEditPaymentlink {
	padding-left: 20px;
}
.shopEditAddress{
	margin: 5px 0 10px 28px;
}
.shopAddressNewlink{
	margin: 30px 0 5px 0;
	display: none;
}
