/*--------------------------------------------------------------
File:			main.css
Description:	Stylesheet for both the WEBstaurant Store template
				and its global elements.
Contents:		1. Global Styles
				2. Page Header
				3. Main Menu
				4. Lower Menu
				5. Content Container
					- left column / navigation
					- right column / main content area
						- page specific styles defined in their
						  appropriate stylesheets.
				6. Page Footer

1.	Global Styles
----------------------------------------------------------------*/
* {
	margin: 0;
	padding: 0;
}

.clear {
	clear: both;
	visibility: hidden;
	height: 0;
	padding: 0;
	margin: 0;
}

.left {	float: left; }

.right { float: right; }

body { background-color: #f7f7f7; }

#page_container {
	background: transparent url("/company_templates/clarkit/images/page_bg.jpg") repeat-y;
	color: #000;
	margin: 0px auto;
	width: 804px;
}

h1 {
	font: normal 24px Arial, sans-serif;
	padding: 5px 0;
	text-align: left;
}

h1.newh1 {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 10px;
}

h2 {
	font: normal 20px Arial, sans-serif;
	padding: 5px 0;
	text-align: left;
}

h3 {
	font: bold 16px Arial, sans-serif;
	padding: 5px 0;
	text-align: left;
}

h4 {
	font: bold 14px Arial, sans-serif;
	margin-bottom: -5px;
	padding: 5px 0 0 0;
	text-align: left;
}

h5 {
	color: #000;
	font: bold 14px Arial, sans-serif;
	padding: 5px 0 0 0;
	text-align: left;
}

h6 {
	color: #000;
	font: bold 12px Arial, sans-serif;
	padding: 5px 0 0 0;
	text-align: left;
}

p {
	font: normal 12px Arial, sans-serif;
	padding: 5px 0;
	text-align: left;
}

ul, ol {
	margin-left: 25px;
	padding: 5px;
	text-align: left;
}

	ul li, ol li { padding-left: 5px; font: normal 12px Arial, sans-serif; }

blockquote {
	background-color: #eee;
	color: #000;
	font: italic 12px Arial, sans-serif;
	margin: 5px 0 10px 10px;
	padding: 10px;
}

table { font: normal 12px Arial, sans-serif; color: #000; }

a { color: #1d4fc0; }

	a:hover { color: #174801; }

	a.viewmore {
		background: transparent url("/company_templates/clarkit/images/bullet_lg.jpg") no-repeat right;
		display: block;
		font: bold 11px Arial, sans-serif;
		padding-right: 8px;
		margin-right: 5px;
		text-align: right;
		text-decoration: none;
	}

		a.viewmore:hover { text-decoration: underline; }

img { border: none; }

.last_element { border: none; }

.fixer { clear: both; line-height: 1px; }

.kw_img {	
	color: #fff;
	height: 160px;
	padding: 3px 0 0 3px;
	width: 618px;
}

	.kw_img h1 { 
		color: #dedede; 
		font: bold 13px Arial, sans-serif; 
		line-height: 20px;
		padding-left: 5px;
	}

	.kw_img p {
		color: #dedede;
		font: normal 11px Arial, sans-serif;
		line-height: 11px;
		margin-bottom: 0;
		padding: 0;
	}

	.kw_img strong { color: #fff; font: bold 16px Arial, sans-serif; }

	.kw_img a { color: #fff; margin-bottom: 0; }

		.kw_img a:hover { color: #fff; text-decoration: none; }

	/*	Keyword Image for the Homepage	*/
	.kw_img#kw_img_home { background: transparent url("site_images/home/kw_img.jpg") no-repeat;	}
	.kw_img#kw_img_home h1 { color: #fff; font-size: 16px; padding: 0; }
	.kw_img#kw_img_home a { font: bold 12px Arial, sans-serif; }
	.kw_img#kw_img_home strong { font-size: 11px; }

	/*	Keyword Image for the Consumables subpage	*/
	.kw_img#kw_img_consumables { background: transparent url("/site_images/consumables/kw_img_consumables.jpg") no-repeat; }
	.kw_img#kw_img_consumables h1 { font-size: 12px; }

	/*	Keyword Image for the Equipment subpage	*/
	.kw_img#kw_img_equipment { background: transparent url("/site_images/equipment/kw_img_equipment.jpg") no-repeat; }
	.kw_img#kw_img_equipment h1 { font-size: 11px; line-height: 21px; }
	.kw_img#kw_img_equipment strong { font-size: 12px; }

	/*	Keyword Image for the Smallwares subpage	*/
	.kw_img#kw_img_smallwares { background: transparent url("/site_images/smallwares/kw_img_smallwares.jpg") no-repeat; }

	/*	Keyword Image for the Storage/Transport subpage	*/
	.kw_img#kw_img_storagetransport { background: transparent url("/site_images/storagetransport/kw_img_storagetransport.jpg") no-repeat; }

	/*	Keyword Image for the Tabletop subpage	*/
	.kw_img#kw_img_tabletop { background: transparent url("/site_images/tabletop/kw_img_tabletop.jpg") no-repeat; }

	/*	Keyword Image for the Disposables subpage	*/
	.kw_img#kw_img_disposables { background: transparent url("/site_images/disposables/kw_img_disposables.jpg") no-repeat; }

	/*	Keyword Image for the Janitorial subpage	*/
	.kw_img#kw_img_janitorial { background: transparent url("/site_images/janitorial/kw_img_janitorial.jpg") no-repeat; }

	/*	Keyword Image for the Warewashing/Laundry subpage	*/
	.kw_img#kw_img_warewashing { background: transparent url("/site_images/warewashing/kw_img_warewashing.jpg") no-repeat; }

	/* Global error message style */
	div#userinfo_forms p.error_message,
	.error_message,
	p.error_message {
	    padding: 1px 0 0 20px;
	    background: transparent url("/site_images/userinfo_forms/alert_icon.gif") left top no-repeat;
	    color: #b50912 !important;
	    margin: 0 0 15px 0;
		font-size: 14px;
	}

/*----------------------------------------
2.	Page Header
------------------------------------------*/
#header {
	background-color: #fff;
	margin-left: 2px;
	width: 800px;
}

	#header tr td#logo { padding: 5px 0 5px 12px; width: 515px; }

	#header tr td #top_menu {	
		list-style: none;
		margin: 0;
		padding: 0;
		width: 275px;
	}

		#header tr td #top_menu li {
			border-right: 1px solid #000;
			float: left;
			line-height: 10px;
			margin-top: 5px;
			padding: 0 3px 0 3px;
		}

			#header tr td #top_menu li#tm_last { border: none; }

			#header tr td #top_menu li a {
				color: #000;
				font: bold 11px Arial, sans-serif;
				text-decoration: none;
			}

				#header tr td #top_menu li a:hover { text-decoration: underline; }

				#header tr td #top_menu li a#tm_green { color: #0D510E; }

				#header tr td #top_menu li a#tm_gold { color: #AA7818; }

	#header tr td p {
		font: normal 10px Arial, sans-serif;
		padding: 0 3px 0 0;
		text-align: right;
	}

		#header tr td p#live_chat {
			clear: both;
			padding-top: 5px;
		}

			#header tr td p#live_chat a {
				color: #123E06;
				font: bold 16px Arial, sans-serif;
				text-decoration: none;
				padding-left: 25px;
			}

	#header tr td a { font: normal 10px Arial, sans-serif; }


/*----------------------------------------
2.	Main Menu
------------------------------------------*/
#mm_container {
	background: #164700 url("/company_templates/clarkit/images/mm_bg.jpg") repeat-x 0px -32px;
	height: 32px;
	margin-left: 2px;
	padding: 0;
	width: 801px;
}

	#mm_container tr td #main_menu {
		list-style: none; 
		margin: 0;
		padding: 0;
	}

		#mm_container tr td #main_menu li {
			border-right: 1px solid #286C00;
			border-left: 1px solid #123900;
			float: left;
			padding: 0;
		}

			#mm_container tr td #main_menu li#mm_first { border-left: none; }

			#mm_container tr td #main_menu li a {
				color: #ececec;
				display: block;
				font: bold 13px Arial, sans-serif;
				line-height: 31px;
				padding: 0 15px 0 15px;
				text-decoration: none;
				text-transform: uppercase;
			}

				#mm_container tr td #main_menu li a:hover {
					background: #babcba url("/company_templates/clarkit/images/mm_bg_over.jpg") repeat-x 0px 0px;
					color: #155F01;
					line-height: 32px;
				}

				#mm_container tr td #main_menu li a#active {
					background: #babcba url("/company_templates/clarkit/images/mm_bg_over.jpg") repeat-x 0px 0px;
					color: #155F01;
					line-height: 32px;
				}


/*----------------------------------------
2.	Lower Menu
------------------------------------------*/
#lm_container {
	background: #bebfbf url("/company_templates/clarkit/images/lm_bg.jpg") repeat-x bottom;
	height: 19px;
	margin-left: 2px;
	width: 801px;
}

	#lm_container tr td #lower_menu {
		display: inline;
		height: 16px;
		list-style: none;
		margin: 0;
		padding: 0;
		width: 785px;
	}

		#lm_container tr td #lower_menu li {
			float: left;
			height: 16px;
			padding: 0 0 0 7px;
		}

			#lm_container tr td #lower_menu li a {
			background: transparent url("/company_templates/clarkit/images/bullet_lg.jpg") no-repeat right;
				color: #383838;
				font: bold 10px Arial, sans-serif;
				line-height: 16px;
				padding-right: 10px;
				text-decoration: none;
			}

				#lm_container tr td #lower_menu li a:hover { color: #000; }


/*----------------------------------------
2.	Content Container
------------------------------------------*/
#content_container { margin-left: 2px; width: 800px; }

	/*	Left column / side navigation */
	#content_container #left_col { width: 164px; }

		#content_container #left_col p { padding: 5px; text-align: center; }

			#content_container #left_col p#cart_header {
				background: transparent url("/company_templates/clarkit/images/shopping_cart.jpg") no-repeat 0px 3px;
				color: #174801;
				font: bold 11px Arial, sans-serif;
				margin-left: 15px;
				padding-left: 9px;
			}

			#content_container #left_col p#cart_contents {
				border-bottom: 1px dashed #000;
				color: #000;
				font: bold 11px Arial, sans-serif;
				margin: -8px 4px 8px 4px;
				padding-bottom: 10px;
			}

			#content_container #left_col p#prod_search { height: 25px; padding: 5px 0 5px 0; }

				#content_container #left_col p#prod_search #search_input {
					border: 1px solid #7F9DB9;
					color: #000;
					font: normal 11px Arial, sans-serif;
					height: 22px;
					padding: 3px;
				}

				#content_container #left_col p#prod_search #search_btn { height: 25px; margin-bottom: -2px; }

			#content_container #left_col p#green_text {
				color: #23570F;
				font: bold 11px Arial, sans-serif;
				margin: -3px 0 -3px 0;
			}

		#content_container #left_col .side_menu {
			list-style: none;
			margin: 5px 0 10px 3px;
			padding: 0 3px 0 5px;
			width: 153px;
		}

			#content_container #left_col .side_menu li { padding-left: 0; }

				#content_container #left_col .side_menu li a {
					background: transparent url("/company_templates/clarkit/images/bullet_lg.jpg") no-repeat 0px 2px;
					color: #393939;
					font: normal 12px Arial, sans-serif;
					line-height: 16px;
					padding-left: 10px;
					text-decoration: underline;
				}

					#content_container #left_col .side_menu li a:hover { color: #4C80AF; }

			#content_container #left_col .side_menu.bolded li a { font-weight: bold; }

		#content_container #left_col p.side_header {
			background-color: #174801;
			color: #fff;
			font: bold 12px Arial, sans-serif;
			margin: 5px 0;
			padding-left: 5px;
			text-align: left;
		}

		* html #content_container #left_col p.side_header { width: 163px; }
		
		/*	Product Search autosuggest */
		#content_container #left_col #product_search {
			background: #fff;
			border: 1px solid #000;
			display: none;
			margin: -5px 0 0 12px;
			_margin: -11px 0 0 16px;
			position: absolute;
			z-index: 2;
			width: 325px;
		}
		
			#content_container #left_col #product_search span#show_loading {
				margin-right: 10px;
				height: 20px;
			}
		
			#content_container #left_col #product_search em {
				color: #808080;
				height: 20px;
			}
		
		#content_container #left_col #product_search table#product_search_results td.search_result {
			font: Arial, Helvetica, sans-serif;
			font-size: 9pt;
			padding: 8px 3px 8px 3px;
		}
			
			#content_container #left_col #product_search table#product_search_results td.search_result:hover, td.search_result_hover {
				background-color: #316AC5;
				color: #fff;
				cursor: pointer;
			}
			
			#content_container #left_col #product_search table#product_search_results td.search_result img {
				margin-right: 4px;	
			}

		#content_container #left_col img { margin-bottom: -3px; }

	/*	Right column / main content area */
	#content_container #right_col { padding: 5px 9px; width: 618px; }

    /*	Container box for pages requiring user input */
	div#userinfo_forms {
		width: 612px;
		padding: 0 0 0 5px;
		margin: 0;
	}

/*----------------------------------------
6.	Page Footer
------------------------------------------*/
#footer {
	background: transparent url("/company_templates/clarkit/images/footer_bg.jpg") no-repeat top;
	margin: 0px auto;
	width: 804px;
}

	#footer tr td #footer_menu {	
		list-style: none;
		margin-top: 5px;
		width: 595px;
	}

		#footer tr td #footer_menu li {
			border-right: 1px solid #626262;
			float: left;
			line-height: 8px;
			margin-top: 5px;
			padding: 0 3px;
		}

			#footer tr td #footer_menu li#fm_last { border: none; }

			#footer tr td #footer_menu li a {
				color: #4F4FFE;
				font: normal 10px Arial, sans-serif;
				text-decoration: none;
			}

				#footer tr td #footer_menu li a:hover { color: #626262; }

	#footer tr td #feedback_form { margin: 5px auto; width: 590px; }

		#footer tr td #feedback_form p { font: normal 10px Arial, sans-serif; }

			#footer tr td #feedback_form p.feedback_heading { font-weight: bold; padding: 5px 5px 0 0; }

		#footer tr td #feedback_form .feedback_input {
			border: 1px solid #2E4E0F;
			color: #000;
			font: normal 11px Arial, sans-serif;
			margin-top: 5px;
			padding: 2px;
		}
