@charset "UTF-8";
body  {
	font: 75% Verdana, Arial, Helvetica, sans-serif;
	background: #FFFFFF url(../images/bg.png) repeat-x 0px 1px;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}
.twoColFixLtHdr #container { 
	width: 973px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: none;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixLtHdr #header { 
	background: #FFFFFF; 
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	margin: 0;
} 
.twoColFixLtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 230px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0;
	margin: 0;
	border-bottom: solid 3px #666666;	
	
}
.twoColFixLtHdr #mainContent { 
	margin: 10px 0 0 250px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 0 0 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.twoColFixLtHdr #footer { 
	padding: 10px 5px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFFFFF;
	border-top: solid 1px #666666;
	text-align: center; 
	font-size: 80%;
} 
.twoColFixLtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

a {

	text-decoration: none;

}

a:hover {

	text-decoration: underline;
}

label {

	font-weight: bold;
	line-height: normal;
	text-align: right;
	margin-right: 10px;
	margin-top: 2px;
	margin-bottom: 2px;
	position: relative;
	display: block;
	float: left;
	width: 250px;
}



input.formtextbox {

	border: solid 1px #666666;
	background-color:#FFFFFF;
	margin: 2px;
}

input.formtextbox:focus {

	background-color:#FCFFD0;
}

select.formselect {

	border: solid 1px #666666;
	background-color:#FFFFFF;
	margin: 2px;
}

input.formsubmitbutton {

	border: solid 1px #666666;
	background-color:#999999;
	color: #000000;	
	font-size: 90%;
	
}

input.formsubmitbutton:hover {

	border: solid 1px #666666;
	background-color: #1919EE;
	cursor: pointer;
	color: #FFFFFF;
	font-size: 90%;
	
}


.leftBox {
	width: 230px;
	padding: 0;
	margin: 0;
}

.leftBox .section {
	padding: 0.5em 0.5em;
	border-right: solid 3px #666666;
	border-left: solid 3px #666666;
	margin: 0;
}

.smalltext {

	font-size: 0.75em;
}

.boldtext {

	font-weight: bold;
}

.section {

	margin: 5px 0px;
}

.listProduct {

	display: block;
	margin: 0px 0px 10px 0px;
	padding: 0px;
	width: 720px;
	background-color: #CCCCCC;
}

.listProduct .thumbnailsection {
	float: left;
	width: 190px;
	height: 100px;
	margin: 0;
	text-align:center;
	
}

.listProduct .thumbnail {
	height: 68px;
	margin-right: 14px;
	margin-bottom: 0px;
	margin-left: 15px;
	margin-top: 15px;
	
}

.listProduct .thumbnail:hover {
	cursor: pointer;
	
}

.listProduct .textSection {

	padding-top: 15px;
}

.listProduct .productName {
	font-size: 16px;
	color: #1919EE;
	font-weight: bold;
}

.listProduct .productName a {
	font-size: 16px;
	color: #1919EE;
	font-weight: bold;
	text-decoration: none;
}

.listProduct .productDesc {

	font-size: 11px;
	color: #000000;
}

.listProduct .productInfo {
	margin-top: 24px;
}

.listProduct .productQty {

	float: left;
	font-size: 12px;
	color: #990000;
}

.listProduct .productButton {

	float: right;
	margin-right: 20px;
}

/* More Button */

.morebutton a {

	padding: .2em .2em;
	background-color:#CCCCCC;
	border: solid 1px #666666;
	font-size: 10px;
	font-weight: bold;
	color: #000000;
	text-decoration: none;
}

.morebutton a:hover {

	background-color:#1919EE;
	color: #FFFFFF;
	text-decoration: none;
}

.roundedTop {

	background-color: #CCCCCC;
	background-image:url(../images/roundedltgry/topleft.jpg);
	background-repeat: no-repeat;
	height: 9px;
	padding: 0;
	margin: 0;
	
}

.roundedBottom {

	background-color: #CCCCCC;
	background-image:url(../images/roundedltgry/bottomleft.jpg);
	height: 9px;
	background-repeat: no-repeat;
	padding: 0;
	margin: 0;
}

.roundedBox {

	padding: 0px;
	margin: 0px 0px 10px 0px;
	background-color: #999999;
	
}

.roundedBox h1 {

	padding: 0px 10px;
}

.roundedBox .roundedTop, .roundedBox .roundedBottom {

	width: inherit;
	margin: 0px;
	padding: 0px;
}

.roundedBox .roundedTop {

	background-color: #999999;
	background-image:url(../images/rounded/topleft.jpg);
	background-repeat: no-repeat;
	height: 9px;
	padding: 0;
	margin: 0;
	
}

.roundedBox .roundedBottom {

	background-color: #999999;
	background-image:url(../images/rounded/bottomleft.jpg);
	height: 9px;
	background-repeat: no-repeat;
	padding: 0;
	margin: 0;
}

.roundedBoxSm {

	padding: 0px;
	margin: 0px 0px 10px 0px;
	background-color: #999999;
	
}

.roundedBoxSm .roundedTop, .roundedBoxSm .roundedBottom {

	width: inherit;
	margin: 0px;
	padding: 0px;
}

.roundedBoxSm .roundedTop {

	background-color: #999999;
	background-image:url(../images/rounded/topleft.jpg);
	background-repeat: no-repeat;
	height: 9px;
	padding: 0;
	margin: 0;
	
}

.roundedBoxSm .roundedBottom {

	background-color: #999999;
	background-image:url(../images/rounded/bottomleft.jpg);
	height: 9px;
	background-repeat: no-repeat;
	padding: 0;
	margin: 0;
}

.roundedBoxSm a, .roundedBoxSm a:hover, .roundedBoxSm a:visited {

	font-size: 10px;
	font-weight: bold;
	text-decoration: none;
	color: #FFFFFF;
}

.roundedBoxSm a:hover {

	curser:pointer;
}


.productQty, .productPrice {

	font-size: 12px;
	color: #000000;
	font-weight: bold;
}

.subtitle {

	font-size: 10px;
	font-weight: bold;
	color: #666666;
	display: block;
}

/* Table Class */

.basicTable th {

	background-color: #666666;
	color: #FFFFFF;
	font-weight: bold;
	text-align: center;
}

.basicTable tr.oddRow {

	background-color: #E9E9E9;
}

.basicTable td {

	border-bottom: 1px solid #333333;
	padding: 3px;
}

h1 {
	font-weight: bold;
	font-size: 150%;
	display: block;
}

h2 {

	font-weight: bold;
	font-size: 120%;
	display: block;
	color: #1919EE;
}

.messageStyle {

	text-align: center;
	border: solid 1px #FFCC00;
	background-color: #FFFFCC;
	font-weight: bold;
	padding: 15px 5px;
	margin: 5px 0px;

}

.rightSection {

	float: right;
	width: 150px;
	margin: 30px 0px 15px 15px;
	padding: 0px;
	text-align:center;
}

.thumbImageBox {

	width: 100px;
	padding: 5px;
	background-color: #FFFFFF;
	border: 2px solid #666666;
	margin: 5px;
}

.thumbImageBoxLg {

	width: 130px;
	padding: 5px;
	background-color: #FFFFFF;
	border: 2px solid #666666;
	margin: 5px;
}

.formTbl th, .formTbl td {

	padding: 3px;
	
}

.formTbl th {

	width: 30%;
	font-weight: bold;
	text-align: right;
	vertical-align: top;
}

.formTbl td {

	vertical-align: top;
	text-align: left;
}