@charset "UTF-8";
/* CSS Document */

body {
	margin: 0;
	padding: 0;
	text-align: center;
	color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #CCC;
}
#container {
	width: 950px;  /* 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: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	padding:4px;
}
#header {
	background: #FFF;
	min-height: 150px;
	padding:10px;
}

#header_nav{
	/*float: right;
	width: 200px;
	margin: 10px;*/
	text-align:  right;
}

a img {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	clear: both;
	margin-top: 10px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 0px;
}

#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: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

#header_nav h4 {
	font-size: 24px;
	color: #ED1C24;
	padding: 0px;
	margin: 0px;
}

#header_nav a {
	color: #000;
	text-decoration: none;
}

#header_nav a:hover {
	text-decoration:underline;
	font-weight: bold;
}

#mainContent {
	padding: 0 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
}

#search {
	width: 450px;
	background-color:#CCC;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-color: #333;
	border-right-color: #333;
	border-bottom-color: #333;
	border-left-color: #333;
	border: solid;
	padding: 0px 8px 8px 8px;
}

.search_btn {
	background:#F00;
	height: 26px;
	color: FFF;
	font-size: 18px;
	border: thin #000;
}

.search_box {	
	font-size: 18px;
	font-weight: bold;
}

.easynumber {
	font-size: 36px;
	color: #930;
	font-weight: bold;
}

#aboutparts {
	width:420px;
	float:right;
	clear:left;
}

#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
	color:#666;
	clear: both;
	margin:-4px;
	margin-top:10px;
}
#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 */
	text-align:center;
	text-size: 10px;
}

#footer a {
	color: #666;
	text-decoration:none
}

#cart {
	background:#9CF;
	width: 200px;
	height: 200px;
	float: right;
}

/* ADMIN */

.admin_forms {
	float: left;
	vertical-align: top;
}

#admin_panel {
	padding: 10px;
	background:#9CF
}

.part_qty {
	width:50px;
}


