/* BUTTON STYLES */
#contentInside p .button {
	font: 1em/150% Georgia, "Times New Roman", Times, serif;
	color: #667;
	background: ButtonFace; 
	padding: 1px 12px; 
	border: 1px solid; 
	border-color: ButtonHighlight ButtonShadow ButtonShadow ButtonHighlight; 
	cursor: default; 
	text-decoration: none; 
	text-align: center;
	margin-left: 10px;
}
	#contentInside p .button:hover {
		color: #111;
		text-decoration: none;
	}
	#contentInside p .button:active {
		border-color: ButtonShadow ButtonHighlight ButtonHighlight ButtonShadow;
	}
	
/* STORE ITEMS */
.storeItemDiv {
	width: 30%;
	padding: 10px;
	float: left;
}

/* CART STYLES */
.cartTable {
	margin: 0px 20px 12px 20px;
}
	.cartTable thead td {
		font-weight: bold;
		border-bottom: 1px solid #474747;
		padding-top: 10px;
	}
	.cartTable tbody {
		
	}
	.cartTable tfoot td {
		padding-top: 7px;
		border-top: 1px solid #474747;
	}
		.cartTable tfoot td .button {
			font: 1em/150% Georgia, "Times New Roman", Times, serif;
			color: #667;
			background: ButtonFace; 
			padding: 1px 12px; 
			border: 1px solid; 
			border-color: ButtonHighlight ButtonShadow ButtonShadow ButtonHighlight; 
			cursor: default; 
			text-decoration: none; 
			text-align: center;
			margin: 0px;
		}
		.cartTable tfoot td .button:hover {
			color: #111;
			text-decoration: none;
		}
		.cartTable tfoot td .button:active {
			border-color: ButtonShadow ButtonHighlight ButtonHighlight ButtonShadow;
		}

/* FORM STYLES */
input, select, textarea {
	font: 1em/150% Georgia, "Times New Roman", Times, serif;
	color: #555;
}

/* MISC */
.smallText {
	font-size: 11px;
}