/* -----------------------------------------------------------------------
// base.css - Style sheet for the iframe content
//
// 2007.04.26 J.Hanson - Page Created
// --------------------------------------------------------------------- */

* {
	margin: 0px;	/*  All elements get margin and padding defaulted to 0 */
	padding: 0px;
}

p {	/* all paragraph tags by default should have a lower margin */
 margin-bottom: 10px;
}

img { /* All images should not have a border by default */
	border: 0px; 
}

option {
	padding-right: .5em;
}

body {
	font-size: 100%;
	line-height: 1.125em;
	background-color: #EEE;	/* Overall page canvas color */
	font-family: Arial, Helvetica, sans-serif; /* default font */
}

.button {	/* generic class for user buttons */
	font-size: 0.75em;
	padding: 0px 12px; 
	background: #AAA; 
	border: solid 1px black;
	cursor: pointer;
}
.button_add_to_cart {
	color:#FFFFFF;
	background-color:#5396b0;
	font-weight:bold;
	border:outset 1px black;
	padding:0px 0px 0px 0px;
	font-size:1.0em;
}

.hidden {	/* General purpose class for any items that need to be hidden from view */
	display: none;
	visibility: hidden;
}

li {
	list-style-type: none; /* All lists should drop their bullet indicators */
}

h1, h2, h3, h4, h5, h6 { /* Headings are all the same, by default */
	font-size: 0.875em;
	color: black;
}

div.editor_content li {
	list-style-type: disc;
}

div.editor_content ul {
	margin: 1em 2em;
}

#page_wrapper {
	position: relative;
	width: 760px;
}

	/* Menu of product categories */
	#product_categories {
		font-weight: bold;
		font-size: 0.75em;
		padding: 0px 15px;
		text-align: left;
	}

		#product_categories a:link, #product_categories a:visited, #product_categories a:active {
			color: black;
		}
	
		#product_categories a:hover {
			color: red;
		}
		
		#product_categories .cat_header {
			margin-bottom: 5px;
			font-size: 0.9em;
			border-bottom: 1px solid #256789;
		}
	
		#product_categories li {
			padding-right: 10px;
			padding-left: 10px;
			margin-bottom: 2px;
			text-indent: -10px;
			border-bottom: 1px solid #256789;
		}
	
		#product_categories li a {
			color: blue;
			text-decoration: none;
		}
	
		#product_categories .sub_menu_item {
			border: 1px solid gray;
			padding: 5px;
			background-color: #E2E2E2;
			white-space: nowrap;
			visibility: hidden; /* Will be handled later by javascript, but for now default to hidden */
			position: absolute; /* Will be positioned by JS later */
			z-index: 100;
		}
	
		#product_categories .parent_menu {
			background: url(../images/menu_right.png) no-repeat right;
		}

	
	/* Login status and login form */
	#login_status {
		display: none;
		visibility: hidden;
	}
	
	
	/* Content pane */
	#content_window {
		margin: 5px;
		min-height: 200px; height:auto !important; height: 200px; 	/* crazy internet-explorer workaround. */
	}
	
	.replaced_price {
		text-decoration: line-through; 
		color: gray;
		font-weight:normal;
	}
	
	
	/* Menus on the secure customer template */	
	#navbar, #navbar li, #options, #options li {
		display: inline;
	}
	
	#navbar li, #options li {
		font-size: 0.875em;
		list-style-type: none;
		padding: 0.15em 0.6em;
		margin: 0em 0.3em 0em 0em;
		white-space: nowrap;
	}
	
	#navbar a, #options a {
		color: black;
	}

	#navbar li.main_menu_selected, #navbar li.main_menu_selected a, #options li.main_menu_selected, #options li.main_menu_selected a {	/* Selected sub menu items */
		font-weight: bold;
	}
	
	
	#product_search_field {
		position: absolute;
		top: 35px;
		left: 140px;
		vertical-align: baseline; 
	}
	
	#product_search_field img {
		position: relative;
		top: 5px;
		left: 5px;
	}
	
	#product_search_field input {
		width: 160px;
		border: 1px solid gray;
	}
