@charset "UTF-8";

/****************GLOBAL****************/
*	{
	padding: 0;
	margin: 0;
}


/****************BODY****************/
body  {
	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;
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 100%;
	background-repeat: repeat-x;
}


/****************WRAPPER****************/
.mfd #wrapper {
	position: relative;
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left;
}


/****************FLOAT****************/
.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;
}

/****************LINKS****************/
a:link {
	text-decoration: none;
}
a:visited {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
a:active {
	text-decoration: none;
}


/****************HEADER****************/
.mfd #header {
	width: 760px;
	height: 200px;
	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-top: 0px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 20px;
}


/****************NAVIGATION****************/
navigation {
	margin: 0px;
	padding: 0px;
}

.main_nav {
	float: left;
	width: 770px;
	overflow: hidden;
	margin-bottom: 20px;
	background-color: #0054a6;
	background-repeat: repeat-x;
	background-position: center center;
	text-align: center;
	margin-top: 0;
	margin-right: 0;
	margin-left: 0;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 10px;
	height: 33px;
}

.main_nav li {
	display: inline;
}

.main_nav li a {
	float: left;
	color: white;
	text-decoration: none;
	border-right: 1px solid white;
	padding-top: 9px;
	padding-right: 12px;
	padding-bottom: 9px;
	padding-left: 12px;
	font-size: .85em;
}

.main_nav li a.first {
	margin-left: 20px;
}

.main_nav li a:visited {
color: white;
}

.main_nav li a:hover, .main_nav li .current {
	color: white;
	background-color: transparent;
	background-image: url(../images/nav_black.png);
	background-repeat: repeat-x;
	background-position: center center;
}


/****************SIDEBAR1****************/
.mfd #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 20px;
	border-right-width: 1px;
	border-right-style: dotted;
	border-right-color: #CCCCCC;
}


/****************PRODUCT IMAGE****************/
#product_image {
	width: 275px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 20px;
}

img	{
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}


/****************TABLE****************/
.mfd #table_container {
	width: 500px;
	float: right;/* since this element is floated, a width must be given */
	text-decoration: none;
}

.mfd #table_container table td {
	font-size: small;	
}

table#category	{
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 20px;
	text-decoration: none;
} 

table#product	{
	margin-bottom: 20px;
}

table#paypal	{
	padding: 0px;
	margin-top: 20px;
}

table#buy	{
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 20px;
	padding-left: 0px;
}


/****************FOOTER****************/
.mfd #footer {
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 20px;
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #0054a6;
} 

.mfd #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0px;
	font-size: small;
	color: #999999;
}

.mfd #footer p a {
	color: #000000;
	text-decoration: none;
}


