h3 {
	color: rgb(210,26,76);	
}

a img {
	border:				0;
}
#banner {
	z-index:		-1;	
}
#banner img {
	display: 		block;
	margin: 		0;
	padding: 		0;
	width: 			888px;
	margin-left: 	auto;
	margin-right: 	auto;
}
form {  						/* set width in form, not fieldset (still takes up more room w/ fieldset width */
	font-size:		10.5pt;
	font-family:	verdana,arial,sans-serif;
	padding-left:	5px;
	padding: 		0;
	width: 			890px;
	margin-top:		5px;
	margin-left: 	auto;
	margin-right: 	auto;
}

form fieldset {
  clear: 			right; 		/* note that this clear causes inputs to break to left in ie5.x mac, commented out */
  border-color: 	#000;
  border-width: 	1px;
  border-style: 	solid;
  padding: 			10px;       /* padding in fieldset support spotty in IE */
  margin: 			0;
  height: 			300px;
}

.leftcolumn, .rightcolumn {
	height: 		100%;
	top: 			0;
}
.leftcolumn {
	float: 			left;
	width:			400px;
}
.rightcolumn {
	float: 			right; 
	width: 			450px;
}

form fieldset legend {
	font-size:		11pt;		/* bump up legend font size, not too large or it'll overwrite border on left */
        						/* be careful with padding, it'll shift the nice offset on top of border  */
}

form label, .labelfiller { 
	display: 		block;  	/* block float the labels to left column, set a width */
	float: 			left; 
	width: 			200px; 
	padding: 		0; 
	padding-right:	5px;
	margin: 		5px 0 0; /* set top margin same as form input - textarea etc. elements */
	text-align: 	right; 
	font-weight: 	bold;
}
form .leftcolumn label, form .rightcolumn label {
	width: 			150px;		/* in case of columns, give labels less space */
}

#mainProductImg {
	margin-left: 200px;
}

#productdescription {
	border: 1px blue;
}
form fieldset {
	border:		1px solid #777;	
}
form legend {
	color: 			rgb(0,125,191);
	font-size:		10.5pt;
	font-weight: 	bold;
}

form fieldset label:first-letter { /* use first-letter pseudo-class to underline accesskey, note that */
	text-decoration:underline;    /* Firefox 1.07 WIN and Explorer 5.2 Mac don't support first-letter */
                                    /* pseudo-class on legend elements, but do support it on label elements */
                                    /* we instead underline first letter on each label element and accesskey */
                                    /* each input. doing only legends would  lessens cognitive load */
                                   /* opera breaks after first letter underlined legends but not labels */
	 
}

form input, form textarea, form select {
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	width:auto;      /* set width of form elements to auto-size, otherwise watch for wrap on resize */
	margin:5px 0 0 10px; /* set margin on left of form elements rather than right of
                              label aligns textarea better in IE */
	border: 1px solid #ddd;
}

form input#reset {
	margin-left:0px; /* set margin-left back to zero on reset button (set above) */
	
}

textarea { overflow: auto; }

form small {
	display: block;
	margin: 0 0 5px 160px; /* instructions/comments left margin set to align w/ right column inputs */
	padding: 1px 3px;
	font-size: 88%;
}

form .required{font-weight:bold;} /* uses class instead of div, more efficient */

form br {
	clear:left; /* setting clear on inputs didn't work consistently, so brs added for degrade */
}

.error {
	color:	red;		
}
.success {
	color:	green;		
}

.infoblock {
	margin-top: 		15px;
	width: 				200px;
	float:				right; 
	background-color:	#FAFAD2;
	border:				1px solid #DAA520;
}

.productsummary {
	background-color:	#eee;
	padding:			5px;
	font-size:			8pt;
}
.productsummary caption {
	font-weight:		bold;
	color: 				#666;
	text-decoration:	underline;
}
.productsummary th {
	font-size:			8pt;
	color: 				#666;
}

.productsummary td {
	font-size:			8pt;
	border-top:			1px solid #ccc;
}
.productsummary .totalCell {
	border-top:			2px solid #ccc;
	text-align:			right;
}

.productsummary .priceCell {
	text-align:			right;
	width:				70px;
}
.productsummary .countCell {
	text-align:			right;
	width:				20px;
	padding-right:		10px;
}
.productsummary .nameCell {
	width:				300px;
}
.invoiceComments {
	/*font-family: 		Courier, monospace;*/
	font-size:			8pt;
}

.productcell {
	width: 				150px;
	height:				105px;
	float: 				left;
	margin-left:		10px;
	margin-top:			10px;
	padding: 			5px;
	font-size:			8pt;
	border: 			1px solid white;
}
.productcell:hover {
	border: 			1px solid rgb(0,125,191);
}
.productcell .productimg, .productcell input {
	float: 				left;
}
.productcell .productimg {
	width:				100px;
	height:				75px;	
}
#productcatalog > div > div {
	padding-left:0;	
}
productcatalog h3 a {
	font-weight:		bold;
	color:				#555;
}
h3 .ui-state-active a {
	color:				rgb(9,122,190); 
}
input.error {
	border:				1px solid red;
}
input.noerror {
	border: 			1px solid #ddd;
}