﻿/* TASKBAR ELEMENTS
----------------------------------------------------------*/

#taskbar
{
	position: fixed;
	position: expression('absolute');
	display: block;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	min-width: 1050px;
	height: 30px;
	background-color: #73182C; /* maroon */

	font-size: 12px;
	font-family: "Helvetica Neue", "Lucida Grande", "Segoe UI", "Arial", "Helvetica", "Verdana", "sans-serif";
	-moz-box-shadow: 2px 2px 10px #C0C0C0; /* silver */
	-webkit-box-shadow: 2px 2px 10px #C0C0C0; /* silver */
	box-shadow: 2px 2px 10px #C0C0C0; /* silver */
	z-index: 999;
}

#taskbar_logo
{
	position: absolute;
	display: block;
	width: 224px;
	height: 30px;
	top: 0;
	left: 5px;
	background-image: url('/taskbar/img/wslogo.png');
	background-repeat: no-repeat;
	background-position: 0 0;
}

#taskbar_holder
{
	position: relative;
	width: 100%;
	height: 30px;
	padding-left: 250px;
}

.right_item
{
	position: relative;
	float: right;
	display: inline-block;
	height: 100%;
	padding: 0;
}

.left_item
{
	position: relative;
	float: left;
	display: inline-block;
	height: 100%;
	padding: 0;
}

.item_container
{
	position: relative;
	margin: 0;
	padding: 0;
	width: auto;
	height: 100%;
	/* overflow: hidden; */
}

.item_container a
{
	position: relative;
	text-decoration: none;
	margin: 0;
	padding: 0 10px 0 10px;
	color: white;
	font-family: "Helvetica Neue", "Lucida Grande", "Segoe UI", "Arial", "Helvetica", "Verdana", "sans-serif";
	font-weight: bold;
	height: 30px;
	vertical-align: middle;
	display: block;
	background: transparent;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	font-size: 14px;
	z-index: 3;
}

.item_container a .linkText
{
	display: inline-block;
	line-height: 30px;
	vertical-align: middle;
}

.item_container a:hover
{
	color: #FCD116; /* gold */
}

#selected_menu
{
	color: #FCD116; /* gold */
}

/* MENU  
----------------------------------------------------------*/

.menu_item
{
	display: block;
	width: 100%;
	height: 100%;
}

.menu_item ul.menu_subitem
{
	display: none;
}

.menu_item:hover ul.menu_subitem
{
	display: block;
}

.product_arrow
{
	display: inline-block;
	width: 9px;
	height: 5px;
	background-image: url('/taskbar/img/down_arrow.gif');
	background-repeat: no-repeat;
	background-position: 0 -5px;
	line-height: 30px;
	vertical-align: middle;
}

#selected_menu .product_arrow, #selected_menu:hover .product_arrow
{
	background-position: 0 0;
}

.item_container a:hover .product_arrow
{
	background-position: 0 0;
}

ul.menu_subitem
{
	position: absolute;
	top: 30px;
	left: 0;
	width: 180px;
	background-color: #73182C; /* maroon */
	padding: 0;
	margin-left: 0;
	cursor: default;
	-moz-box-shadow: 1px 1px 1px #C0C0C0; /* silver */
	-webkit-box-shadow: 1px 1px 1px #C0C0C0; /* silver */
	box-shadow: 1px 1px 1px #C0C0C0; /* silver */
	z-index: 2;
}

ul.menu_subitem li
{
	list-style: none;
	position: relative;
	padding: 0;
	margin: 0;
	text-align: left;
}

ul.menu_subitem li a
{
	text-decoration: none;
	display: block;
	margin: 5px 0 5px 0;
	padding: 5px 5px 5px 10px;
	width: auto;
	height: auto;
	background: transparent;
	color: white;
	font-family: "Helvetica Neue", "Lucida Grande", "Segoe UI", "Arial", "Helvetica", "Verdana", "sans-serif";
	font-weight: bold;
	font-size: 12px;
	line-height: 12px;
}

ul.menu_subitem li a:hover
{
	margin: 5px 0 5px 0;
	padding: 5px 5px 5px 10px;
	color: #FCD116; /* gold */
}

/* SEARCH  
----------------------------------------------------------*/

#frmSearch
{
	height: 30px;
	border: 0 none;
	padding: 0;
	margin: 0;
}

#frmSearch table
{
	height: 22px;
	border: 0 none;
	margin: 4px 0 4px 0;
	border-collapse: collapse;
	background: white;
}

#frmSearch table td
{
	padding: 0 2px 0 2px;
}

#frmSearch input.text 
{
	border: 0 none;
	margin: 0;
	width: 120px;
	height: 22px;
	font-size: 12px;
	vertical-align: middle;
}

#frmSearch input.submit
{
	background-color: transparent;
	background-image: url('/taskbar/img/search.png');
	background-repeat: no-repeat;
	background-position: 0 1px;
	border-style: none;
	margin: 0;	
	padding: 0;
	width: 20px;
	height: 20px;
}

#frmSearch input.submit:hover
{
	cursor: pointer;
	clear: both;
}

/* SHOPPING CART
----------------------------------------------------------*/

a#cart
{
	text-decoration: none;
	border-style: none;
	width: auto;
	height: 22px;
	display: block;
	margin: 4px 5px 4px 5px;
	padding: 0 5px 0 37px;
	background-color: #FCD116; /* gold */
	background-image: url('/taskbar/img/cart-empty.png');
	background-repeat: no-repeat;
	background-position: 5px 1px;
	font-size: 12px;
	line-height: 22px;
	font-weight: bold;
	vertical-align: middle;
	color: #73182C; /* maroon */
}

a#cart .cart_value
{
	display: none;
}

a#cart:hover .cart_value
{
	text-decoration: underline;
}