/* -

	Vineland Estates

	shopping cart & checkout process
	- CHDS 2007

	toc
	---
	1 - general
	2 - shopping cart
	3 - checkout steps
--------------------- */


/* 1 - general
--------------------- */

body.checkout #cart_steps {
	margin-bottom: 0px;
	float: right;
	width: 250px;
	}
body.checkout #cart_steps p {	/* steps 1-4 process funnel */
	margin-top: 0;
	text-align: right; float: right;
	width: 250px;
	font-size: 11px;
	}
body.checkout #cart_steps em.checkout_steps {
	background: none;
	margin-right: 8px;
	width: 100px;
	}
body.checkout #cart_steps p em,
body.checkout #cart_steps p strong {
	margin: 0 5px 0 5px; padding-top: 3px;
	width: 35px; height: 17px;
	background: #000;
	display: block;
	float: left;
	font-style: normal; font-weight: normal;
	}
	body.checkout #cart_steps p em span,
	body.checkout #cart_steps p strong span {
	display: none;
	}
body.checkout #cart_steps p em.step_one { background: transparent url("/modules/store/images/step_1.png") no-repeat top left; }
body.checkout #cart_steps p em.step_two { background: transparent url("/modules/store/images/step_2.png") no-repeat top left; }
body.checkout #cart_steps p em.step_three { background: transparent url("/modules/store/images/step_3.png") no-repeat top left; }
body.checkout #cart_steps p em.step_four { background: transparent url("/modules/store/images/step_4.png") no-repeat top left; }
body.checkout #cart_steps p strong.step_one { background: transparent url("/modules/store/images/step_1_on.png") no-repeat top left; }
body.checkout #cart_steps p strong.step_two { background: transparent url("/modules/store/images/step_2_on.png") no-repeat top left; }
body.checkout #cart_steps p strong.step_three { background: transparent url("/modules/store/images/step_3_on.png") no-repeat top left; }
body.checkout #cart_steps p strong.step_four { background: transparent url("/modules/store/images/step_4_on.png") no-repeat top left; }

body.checkout #container #main_content {
	width: 720px;
	padding: 20px 0 0 0;
	}
	body.checkout #container #main_content h1 {
		margin: 0; padding: 0;
		width: auto;
		display: inline;
		}
body.checkout #container #step_content form fieldset a.button {
	margin-left: 5px; padding: 7px 10px 5px 10px;
	
	background: #8ccfec url("/images/drop_down_bg.jpg") repeat-x top left;
	color: #ead7a4;
	font-size: 11px;
	font-style: normal;
	text-transform: uppercase;
	float: left;
	border: 1px solid #e7cea0;
	text-decoration: none;
	}
body.checkout #container #step_content form fieldset input.button,
body.checkout #container #step_content form fieldset input.submit_button {
	padding: 6px 10px 5px 10px;
	background: #8ccfec url("/images/drop_down_bg.jpg") repeat-x top left;
	color: #ead7a4;
	font-size: 11px;
	font-style: normal;
	text-transform: uppercase;
	float: left;
	
	border: 1px solid #e7cea0;
	}
	body.checkout #container #step_content form fieldset input.submit_button { float: right; }

	body.checkout #container #step_content form fieldset a.button:hover {
		background: #8ccfec url("/images/form_gradient_dark.jpg") repeat-x top left;
		color: #111;
		border-width: 1px;
		}
	body.checkout #container #step_content form fieldset input.button:hover,
	body.checkout #container #step_content form fieldset input.submit_button:hover {
		background: #8ccfec url("/images/form_gradient_dark.jpg") repeat-x top left;
		color: #111;
		border-width: 1px;
		}
	body.checkout #container #step_content form fieldset #tb_view_cart tbody tr .tb_remove a.button { /* remove item button */
		color: #f0f0f0;
		background: #660000;
		padding: 4px 10px 3px 10px;
		border-width: 1px;
		}
		body.checkout #container #step_content form fieldset #tb_view_cart tbody tr .tb_remove a.button:hover {
			color: #111;
			background: #8ccfec url("/images/form_gradient_dark.jpg") repeat-x top left;
			}
			
	/* div.article layout adjustments */
	body.checkout #container #step_content div.article {
		padding-left: 35px;
		width: 675px;
		}

/* 2 - shopping cart /
	 checkout process
--------------------- */

/* step 1: shopping cart display */
body.checkout #container #step_content {
	width: 720px;
	margin: 0 auto;
	text-align: left;
	position: relative;
	padding: 0;
	border: none;
	}
body.checkout #container #step_content form fieldset {
	border: none;
	background: transparent;
	}

	/* shopping cart table */
	body.checkout #container #step_content #tb_view_cart {
		width: 720px;
		margin: 0 auto 20px auto;
		border: 1px solid #e7cea0;
		}
	body.checkout #container #step_content #tb_view_cart thead tr td {	/* shopping cart header */
		padding: 5px;
		text-align: center;
		background: transparent url("/images/form_gradient.jpg") repeat-x top left;
		border-bottom: 1px solid #e7cea0;
		font-size: 11px;
		}
		body.checkout #container #step_content #tb_view_cart thead tr .th_product { text-align: left; }
		body.checkout #container #step_content #tb_view_cart thead tr .th_note { width: 80px; }
		body.checkout #container #step_content #tb_view_cart thead tr .th_quantity { width: 50px; }
		body.checkout #container #step_content #tb_view_cart thead tr .th_uprice { width: 35px; }
		body.checkout #container #step_content #tb_view_cart thead tr .th_cprice { width: 40px; }
		body.checkout #container #step_content #tb_view_cart thead tr .th_remove { width: 50px; }

	body.checkout #container #step_content #tb_view_cart tbody tr td {	/* shopping cart body */
		padding: 10px 5px 10px 5px;
		background: #fcf9f4;
		border-bottom: 1px solid #e7cea0;
		font-size: 11px;
		}
		body.checkout #container #step_content #tb_view_cart tbody tr .tb_product { text-align: left; }
		body.checkout #container #step_content #tb_view_cart tbody tr .tb_note { text-align: center; font-style: italic; color: #aaa; }
		body.checkout #container #step_content #tb_view_cart tbody tr .tb_quantity { text-align: center; }
		body.checkout #container #step_content #tb_view_cart tbody tr .tb_uprice { text-align: right; padding-right: 15px; }
		body.checkout #container #step_content #tb_view_cart tbody tr .tb_cprice { text-align: right; padding-right: 15px; }
		body.checkout #container #step_content #tb_view_cart tbody tr .tb_remove { text-align: center; }

	body.checkout #container #step_content #tb_view_cart tfoot tr td {	/* shopping cart footer */
		padding: 5px 5px 5px 5px;
		text-align: right;
		background: transparent url("/images/form_gradient.jpg") repeat-x top left;
		font-size: 11px;
		}
		body.checkout #container #step_content #tb_view_cart tfoot tr .tf_total { text-align: right; padding-right: 15px; }
		body.checkout #container #step_content #tb_view_cart tfoot tr .tf_cprice { text-align: right; padding-right: 15px; }


/* 2 - checkout steps
--------------------- */

/* step 2 - billing & shipping info */
body.checkout #container #step_content #form_block {
	width: auto;
	border-top: 1px solid #e7cea0;
	border-bottom: 1px solid #e7cea0;
	margin-bottom: 10px;
	background: #fcf9f4;
	}
body.checkout #container #step_content #form_block fieldset {
	width: 50%;
	float: left;
	background: #fcf9f4;
	margin: 0 0 10px 0;
	display: inline; padding: 0;
	border: none;
	}
	body.checkout #container #step_content #form_block fieldset.form_shipping {
		}
	body.checkout #container #step_content #form_block fieldset legend {
	padding: 10px 10px 0 10px;
	font-size: 12px; letter-spacing: 0.1em;
	color: #3f3617;
	font-variant: small-caps;
	display: block;
	
	}
	body.checkout #container #step_content #form_block p {
		float: none; 
		width: 600px; 
		margin: 0 10px 10px 10px; 
		padding-bottom: 10px; 
		padding-left: 0; 
		font-size: 11px;
		display: inline;
		}

body.checkout #container #step_content fieldset ol { /* styling of ol */
	margin: 5px 15px 5px 25px;
	padding: 0;
	list-style-type: none;
	text-align: left;
	}
	body.checkout #container #step_content fieldset ol li {
		width: auto;
		text-align: left;
		padding: 5px 0 2px 0;
		margin-bottom: 3px;
		color: #555;
		}
	body.checkout #container #step_content fieldset ol li label {
		width: 90px;
		float: left;
		margin: 0; padding: 0;
		font-size: 11px;
		color: #000;
		}
		body.checkout #container #step_content fieldset ol li label span {
		color: #990000;
		}

	body.checkout #container #step_content fieldset ol.checkbox li {	/* styling of top ol for each side */
		width: 235px; height: 13px;
		text-align: left;
		padding: 5px 0 5px 10px;
		margin: 10px 0 10px 0;
		color: #555;
		display: block;
		background: #fff;
		border-top: 1px solid #e7cea0;
		border-bottom: 1px solid #e7cea0;
		}
	body.checkout #container #step_content fieldset ol.checkbox li label {
		width: 200px;
		float: none;
		}
		body.checkout #container #step_content fieldset ol.checkbox li label span { float: left; color: #73412a; }
		body.checkout #container #step_content fieldset ol.checkbox li label input {
			width: 15px; margin: 0 10px 0 0; float: right; border: none;
			}

	body.checkout #container #step_content fieldset ol li input,
	body.checkout #container #step_content fieldset ol li select,
	body.checkout #container #step_content fieldset ol li textarea {
		width: 150px;
		border: 1px solid #e7cea0;
		padding: 2px 0 2px 5px;
		margin: 0;
		font-size: 11px; color: #222;
		}
	body.checkout #container #step_content fieldset ol li select {
		margin-top: 0; width: 157px;
		}
	body.checkout #container #step_content fieldset ol li input:hover,
	body.checkout #container #step_content fieldset ol li select:hover,
	body.checkout #container #step_content fieldset ol li textarea:hover {
		}




/* step 3 - payment info */

body.checkout #container #step_content #form_block fieldset.form_cc {
	width: 100%;
	}
	body.checkout #container #step_content #form_block fieldset.form_cc li label {
		width: 120px;
		}
	body.checkout #container #step_content fieldset.form_cc ol li input,
	body.checkout #container #step_content fieldset.form_cc ol li select,
	body.checkout #container #step_content fieldset.form_cc ol li textarea {
		width: auto;
		border: 1px solid #e0e0e0;
		padding: 2px 0 2px 5px;
		margin: 0 5px 0 10px;
		}
	body.checkout #container #step_content fieldset.form_cc ol li input:hover,
	body.checkout #container #step_content fieldset.form_cc ol li select:hover,
	body.checkout #container #step_content fieldset.form_cc ol li textarea:hover {
		border: 1px solid #909090;
		}
	body.checkout #container #step_content .text_right_justified {
		clear: both;
		text-align: right;
		font-size: 11px;
		padding-top: 10px;
		}

/* step 4 - review order */
body.checkout #container #step_content #tb_view_cart tfoot tr.tf_total_row td {
	border-top: none;
	background: #f4edda ;
	}
	body.checkout #container #step_content #tb_view_cart tfoot tr.tf_total_row td.tf_total {
		/*background: #7e7901;
		color: #fff;*/
		}
	body.checkout #container #step_content #tb_view_cart tfoot tr.tf_total_row td.tf_cprice {
		background: #73412a;
		color: #fff;
		}
	/* hiding the "remove" button from the review table */
	body.checkout #container #step_content #tb_view_cart tbody.checkout_step_4 tr .tb_remove {
		display: none;
		width: 1px;
		}

body.checkout #container #step_content fieldset.form_comment {
	width: 100%;
	background: #fcf9f4;
	border: 1px solid #e7cea0;
	margin: 5px 0 10px 0; padding: 10px 0 10px 0;
	display: block;
	}
	body.checkout #container #step_content fieldset.form_comment legend {
		display: none;
		}
	body.checkout #container #step_content fieldset.form_comment label {
		width: 95%;
		margin: 0 auto 10px auto;
		display: block;
		font-size: 11px;
		}
	body.checkout #container #step_content fieldset.form_comment textarea {
		width: 95%;
		border: 1px solid #e0e0e0;
		padding: 2px 0 2px 5px;
		margin: 0 auto;
		font-size: 11px; color: #222;
		display: block;
		}
	body.checkout #container #step_content fieldset.form_comment textarea:hover {
		border: 1px solid #909090;
		}

/* highlighting and error colouring */

body.checkout #container #step_content form fieldset ol li label em {		/* emphasis denoting required fields */
	color: #900;
	font-size: 110%;
	}
body.checkout #container #step_content form fieldset ol li.error {		/* emphasis of li if required field was left blank */
	background: transparent url("/images/error-arrow.png") no-repeat top right;
	color: #900;
	}
body.checkout #container #step_content form fieldset ol li.error input,
body.checkout #container #step_content form fieldset ol li.error select,
body.checkout #container #step_content form fieldset ol li.error textarea {
	color: #900;
	}



