
/************************************************************************************************************/
/* Calander Css */
/************************************************************************************************************/

/* The main calendar widget.  DIV containing a table. */

.calendar
{
	position: relative;
	display: none;
	border-top: 2px solid #fff;
	border-right: 2px solid #000;
	border-bottom: 2px solid #000;
	border-left: 2px solid #fff;
	font-size: 12px;
	color: #000;
	cursor: default;
	background: #d4d0c8;
	font-family: tahoma,verdana,sans-serif;
}

.calendar table
{
	border-top: 1px solid #000;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	border-left: 1px solid #000;
	font-size: 12px;
	color: #000;
	cursor: default;
	background: #d4d0c8;
	font-family: tahoma,verdana,sans-serif;
}

/* Header part -- contains navigation buttons and day names. */

.calendar .button
{
	/* "<<", "<", ">", ">>" buttons have this class */
	text-align: center;
	padding: 1px;
	border-top: 1px solid #fff;
	border-right: 1px solid #000;
	border-bottom: 1px solid #000;
	border-left: 1px solid #fff;
}

.calendar .nav
{
	background: transparent url(menuarrow.gif) no-repeat 100% 100%;
}

.calendar thead .title
{
	/* This holds the current "month, year" */
	font-weight: bold;
	padding: 1px;
	border: 1px solid #000;
	background: #848078;
	color: #fff;
	text-align: center;
}

.calendar thead .headrow
{
	/* Row <TR> containing navigation buttons */
}

.calendar thead .daynames
{
	/* Row <TR> containing the day names */
}

.calendar thead .name
{
	/* Cells <TD> containing the day names */
	border-bottom: 1px solid #000;
	padding: 2px;
	text-align: center;
	background: #f4f0e8;
}

.calendar thead .weekend
{
	/* How a weekend day name shows in header */
	color: #f00;
}

.calendar thead .hilite
{
	/* How do the buttons in header appear when hover */
	border-top: 2px solid #fff;
	border-right: 2px solid #000;
	border-bottom: 2px solid #000;
	border-left: 2px solid #fff;
	padding: 0px;
	background-color: #e4e0d8;
}

.calendar thead .active
{
	/* Active (pressed) buttons in header */
	padding: 2px 0px 0px 2px;
	border-top: 1px solid #000;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	border-left: 1px solid #000;
	background-color: #c4c0b8;
}

/* The body part -- contains all the days in month. */

.calendar tbody .day
{
	/* Cells <TD> containing month days dates */
	width: 2em;
	text-align: right;
	padding: 2px 4px 2px 2px;
}
.calendar tbody .day.othermonth
{
	font-size: 80%;
	color: #aaa;
}
.calendar tbody .day.othermonth.oweekend
{
	color: #faa;
}

.calendar table .wn
{
	padding: 2px 3px 2px 2px;
	border-right: 1px solid #000;
	background: #f4f0e8;
}

.calendar tbody .rowhilite td
{
	background: #e4e0d8;
}

.calendar tbody .rowhilite td.wn
{
	background: #d4d0c8;
}

.calendar tbody td.hilite
{
	/* Hovered cells <TD> */
	padding: 1px 3px 1px 1px;
	border-top: 1px solid #fff;
	border-right: 1px solid #000;
	border-bottom: 1px solid #000;
	border-left: 1px solid #fff;
}

.calendar tbody td.active
{
	/* Active (pressed) cells <TD> */
	padding: 2px 2px 0px 2px;
	border-top: 1px solid #000;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	border-left: 1px solid #000;
}

.calendar tbody td.selected
{
	/* Cell showing selected date */
	font-weight: bold;
	border-top: 1px solid #000;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	border-left: 1px solid #000;
	padding: 2px 2px 0px 2px;
	background: #e4e0d8;
}

.calendar tbody td.weekend
{
	/* Cells showing weekend days */
	color: #f00;
}

.calendar tbody td.today
{
	/* Cell showing today date */
	font-weight: bold;
	color: #00f;
}

.calendar tbody .disabled
{
	color: #999;
}

.calendar tbody .emptycell
{
	/* Empty cells (the best is to hide them) */
	visibility: hidden;
}

.calendar tbody .emptyrow
{
	/* Empty row (some months need less than 6 rows) */
	display: none;
}

/* The footer part -- status bar and "Close" button */

.calendar tfoot .footrow
{
	/* The <TR> in footer (only one right now) */
}

.calendar tfoot .ttip
{
	/* Tooltip (status bar) cell <TD> */
	background: #f4f0e8;
	padding: 1px;
	border: 1px solid #000;
	background: #848078;
	color: #fff;
	text-align: center;
}

.calendar tfoot .hilite
{
	/* Hover style for buttons in footer */
	border-top: 1px solid #fff;
	border-right: 1px solid #000;
	border-bottom: 1px solid #000;
	border-left: 1px solid #fff;
	padding: 1px;
	background: #e4e0d8;
}

.calendar tfoot .active
{
	/* Active (pressed) style for buttons in footer */
	padding: 2px 0px 0px 2px;
	border-top: 1px solid #000;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	border-left: 1px solid #000;
}

/* Combo boxes (menus that display months/years for direct selection) */

.calendar .combo
{
	position: absolute;
	display: none;
	width: 4em;
	top: 0px;
	left: 0px;
	cursor: default;
	border-top: 1px solid #fff;
	border-right: 1px solid #000;
	border-bottom: 1px solid #000;
	border-left: 1px solid #fff;
	background: #e4e0d8;
	font-size: 90%;
	padding: 1px;
}

.calendar .combo .label, .calendar .combo .label-IEfix
{
	text-align: center;
	padding: 1px;
}

.calendar .combo .label-IEfix
{
	width: 4em;
}

.calendar .combo .active
{
	background: #c4c0b8;
	padding: 0px;
	border-top: 1px solid #000;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	border-left: 1px solid #000;
}

.calendar .combo .hilite
{
	background: #048;
	color: #fea;
}

.calendar td.time
{
	border-top: 1px solid #000;
	padding: 1px 0px;
	text-align: center;
	background-color: #f4f0e8;
}

.calendar td.time .hour, .calendar td.time .minute, .calendar td.time .ampm
{
	padding: 0px 3px 0px 4px;
	border: 1px solid #889;
	font-weight: bold;
	background-color: #fff;
}

.calendar td.time .ampm
{
	text-align: center;
}

.calendar td.time .colon
{
	padding: 0px 2px 0px 3px;
	font-weight: bold;
}

.calendar td.time span.hilite
{
	border-color: #000;
	background-color: #766;
	color: #fff;
}

.calendar td.time span.active
{
	border-color: #f00;
	background-color: #000;
	color: #0f0;
}
/************************************************************************************************************/

/*


body {
	margin: 0px;
	padding: 0px;
	background-image: url(../images/watermark.jpg);
	background-position: left top;
	text-align: center;
}
.text {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #6f6c2b;
	list-style-image: url(../images/bullet.gif);
	text-align: left;
}
.product-qty {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #565653;
}
.copyrights {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #fa5a03;
}


.navispace {
	width: 2px;
}
.searchbag {
	background-image: url(../images/search-bg.gif);
	background-repeat: no-repeat;
	height: 60px;
	width: 908px;
}
.search-left-tab {
	background-image: url(../images/search-left-tab.gif);
	background-repeat: no-repeat;
	background-position: left top;
	margin: 0px;
	padding: 0px;
	height: 25px;
	width: 5px;
}
.search-right-tab {
	background-image: url(../images/search-right-tab.gif);
	background-repeat: no-repeat;
	background-position: right top;
	margin: 0px;
	padding: 0px;
	height: 25px;
	width: 5px;
}
.search-bg {
	background-image: url(../images/search-bg1.gif);
	background-repeat: repeat-x;
	margin: 0px;
	padding: 0px;
	height: 25px;
	width: 100%;
}
.searchtext {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #6a6968;
	font-weight: normal;
}
.inputtextbox {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #333333;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-style: solid;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-left-color: #000000;
	border-top-color: #000000;
	width: 230px;
}
.inputtextbox-normal {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #333333;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-style: solid;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-left-color: #000000;
	border-top-color: #000000;
	height: 23px;
	width: 230px;
}
.spacer {
	width: 10px;
}
.left {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #333333;
	width: 190px;
	border: 1px solid #DBE0E3;
}
.categoryby-header {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	background-image: url(../images/categorybybg.gif);
	background-repeat: repeat-x;
	background-position: left top;
	height: 23px;
	padding-left: 5px;
	font-weight: normal;
}
.left-nav-bg {
	background-color: #FFFFFF;
}

.welocome {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #009ba8;
	height: 30px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

.featuredproduct-border {
	border: 1px solid #e1d3a9;
	padding: 3px;
}
.gift-categories-bg1 {
	background-color: #f7f1e2;
	padding-left: 10px;
}

.product-name {
	font-family: Arial, Helvetica, sans-serif;
	color: #727272;
	font-size: 12px;
	font-weight: normal;
	height: 22px;
	vertical-align: middle;
}
a:link {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #873535;
	text-decoration: none;
}
a:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #873535;
	text-decoration: none;
}
a:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #6f6c2b;
	text-decoration: underline;
}
.wave {
	background-image: url(../images/wave.gif);
	background-repeat: no-repeat;
	height: 22px;
	width: 64px;
	background-position: right;
}

.searchbox {
	font-family: Arial, Helvetica, sans-serif;;
	font-size: 12px;
	color: #5b5c5c;
	text-decoration: none;
	height: 18px;
	width: 152px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	text-indent: 5px;
	border-top-color: #FFFFFF;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #FFFFFF;
	line-height: 23px;
	margin: 0px;
	padding: 0px;
}.searchboxsmall {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #5b5c5c;
	text-decoration: none;
	height: 18px;
	width: 48px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #FFFFFF;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #FFFFFF;
	line-height: 23px;
	margin: 0px;
	padding: 0px;
	text-align: center;
}
.border2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #3c3c3c;
	border: 1px solid #e7e7e7;
}
.arrowbg {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #333333;
	background-image: url(../images/watermark.gif);
	background-repeat: no-repeat;
	background-position: center center;
}
.bestbuyheader {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #009ba8;
	font-weight: normal;
	height: 21px;
	text-indent: 7px;
}
.bestbuysubheader {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #873535;
	font-weight: normal;
	height: 21px;
}
a.underlinelink:link {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #6f6c2b;
	text-decoration: underline;
}
a.underlinelink:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #6f6c2b;
	text-decoration: underline;
}
a.underlinelink:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #873535;
	text-decoration: none;
}
a.underlinelinkproduct:link {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #2676e6;
	text-decoration: underline;
}
a.underlinelinkproduct:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #2676e6;
	text-decoration: underline;
}
a.underlinelinkproduct:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #fb5959;
	text-decoration: none;
}

a.leftnav:link {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #5b593d;
	text-decoration: none;
}
a.leftnav:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #5b593d;
	text-decoration: none;
}
a.leftnav:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #873535;
	text-decoration: none;
}
.grid {
	border: 1px solid #F3CAB4;
}
.griditemheader {
	font-family: Arial, Helvetica, sans-serif;
	color: #DD6626;
	background-color: #FFFFFF;
	font-weight: bold;
	font-size: 13px;
	background-image: url(../images/product-tital-bg.gif);
}
.griditemnormal {
	font-family: Arial, Helvetica, sans-serif;
	color: #333333;
	background-color: #FDF7F2;
	font-size: 12px;
}
.griditemalternative {
	font-family: Arial, Helvetica, sans-serif;
	color: #333333;
	background-color: #FAE9DA;
	font-size: 12px;
}
.griditemredtext {
	font-family: Arial, Helvetica, sans-serif;
	color: #FA6D05;
	font-size: 12px;
}
.griditembluetext {
	font-family: Arial, Helvetica, sans-serif;
	color: #0099CC;
	font-size: 12px;
}
.griditemblacktext {
	font-family: Arial, Helvetica, sans-serif;
	color: #333333;
	font-size: 12px;
}
.product-title {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FD6816;
	height: 32px;
	padding-left: 5px;
	background-image: url(../images/product-tital-bg.gif);
	border: 1px solid #ECB193;
	line-height: 32px;
	font-weight: bold;
	vertical-align: middle;
}
.title {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	color: #FFFFFF;
	height: 25px;
	padding-left: 5px;
	background-color: #FF9018;
	font-weight: bold;
}
.line {
	border-bottom-width: 1px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-bottom-color: #FE6714;
}
a.sublink:link {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FF6711;
	text-decoration: none;
	font-weight: bold;
}
a.sublink:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FE6714;
	text-decoration: none;
	font-weight: bold;
}
a.sublink:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #333333;
	text-decoration: underline;
	font-weight: bold;
}
.top-box {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: normal;
	padding: 0px;
	color: #f27b24;
}
.border-page {
	font-family: Arial, Helvetica, sans-serif;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #DBE0E3;
	border-left-color: #DBE0E3;
}
.left-top-corner {
	background-image: url(../images/left-top-corner.gif);
	height: 6px;
	width: 6px;
	background-repeat: no-repeat;
}
.right-top-corner {
	background-image: url(../images/right-top-corner.gif);
	height: 6px;
	width: 6px;
	background-repeat: no-repeat;
}
.right-bottom-corner {
	background-image: url(../images/right-bottom-corner.gif);
	height: 6px;
	width: 6px;
	background-repeat: no-repeat;
}
.left-bottom-corner {
	background-image: url(../images/left-bottom-corner.gif);
	height: 6px;
	width: 6px;
	background-repeat: no-repeat;
}
.lineleft {
	background-image: url(../images/left-line.gif);
	background-repeat: repeat-y;
	width: 6px;
}
.linetop {
	background-image: url(../images/top-line.gif);
	background-repeat: repeat-x;
	height: 6px;
}
.new-catalouge-bg {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #6f6c2b;
	background-color: #f6eed7;
}

.lineright {
	background-image: url(../images/right-line.gif);
	background-repeat: repeat-y;
	width: 6px;
}
.linebottom {
	background-image: url(../images/bottom-line.gif);
	background-repeat: repeat-x;
	height: 6px;
}
.bestbuysubheader2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #fa5a03;
	font-weight: normal;
	height: 21px;
}
.bestbuysubheader3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #6f6c2b;
	font-weight: normal;
	height: 21px;
}
.product-price {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #fb5959;
}
.gift-categories-bg2 {
	background-color: #f2e9d1;
	padding-left: 10px;
}
.menu-left-tb {
	background-image: url(../images/left-tb.jpg);
	background-repeat: no-repeat;
	height: 22px;
	width: 5px;
}
.menu-right-tb {
	background-image: url(../images/right-tb.jpg);
	background-repeat: no-repeat;
	height: 22px;
	width: 5px;
}
.menu-bg {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #6a6968;
	text-align: center;
	vertical-align: middle;
	background-image: url(../images/tab-bg.jpg);
	background-repeat: repeat-x;
	height: 22px;
}
.menu-left-tb-over {
	background-image: url(../images/left-tb-over.jpg);
	background-repeat: no-repeat;
	height: 22px;
	width: 5px;
}
.menu-right-tb-over {
	background-image: url(../images/right-tb-over.jpg);
	background-repeat: no-repeat;
	height: 22px;
	width: 5px;
}
.menu-bg-over {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #FFFFFF;
	text-align: center;
	vertical-align: middle;
	background-image: url(../images/tab-bg-over.jpg);
	background-repeat: repeat-x;
	height: 22px;
}
a.Header:link
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	text-align: center;
	vertical-align: middle;
	color: #6a6968;
	font-weight: bold;
}
a.Header:hover
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	text-align: center;
	color: #FFFFFF;
	vertical-align: middle;
	font-weight: bold;
}
a.Header:visited
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	text-align: center;
	color: #6a6968;
	vertical-align: middle;
	font-weight: bold;
}
a.Header:visited:hover
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	text-align: center;
	color: #FFFFFF;
	vertical-align: middle;
	font-weight: bold;
}
Header1
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	text-align: center;
	color: #FFFFFF;
	vertical-align: middle;
	font-weight: bold;
}

*/

/******************************************************************************************************************/

body
{
	margin: 0px;
	padding: 0px;
	background-image: url(../images/watermark.jpg);
	background-position: left top;
	text-align: center;
}
.text
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #5b593d;
	list-style-image: url(../images/bullet.gif);
	text-align: left;
}
.product-qty
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #565653;
}
/*.copyrights {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #fa5a03;
}*/
.copyrights
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #52890A;
}

.navispace
{
	width: 2px;
}
.searchbag
{
	background-image: url(../images/search-bg.gif);
	background-repeat: no-repeat;
	height: 34px;
	width: 929px;
}
.searchtext
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #6a6968;
	font-weight: normal;
}
.inputtextbox
{
	font-family: "Trebuchet MS";
	font-size: 11px;
	color: #333333;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: none;
	border-right-color: #000000;
	border-bottom-color: #000000;
	height: 23px;
	width: 140px;
}
/*.inputtextbox-normal {
	font-family: "Trebuchet MS";
	font-size: 11px;
	color: #333333;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: none;
	border-right-color: #000000;
	border-bottom-color: #000000;
}*/
.inputtextbox-normal
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #333333;
	border: 1px solid #CCCCCC;
}

.spacer
{
	width: 10px;
}
.left
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #333333;
	width: 190px;
}
/*.categoryby-header {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #EA4620;
	background-image: url(../images/categorybybg.gif);
	background-repeat: repeat-x;
	background-position: left top;
	height: 25px;
	padding-left: 5px;
	font-weight: 500;
	text-decoration: none;
	text-align: left;
	border-top-width: 1px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-left-style: solid;
	border-top-color: #DBE0E3;
	border-right-color: #DBE0E3;
	border-left-color: #DBE0E3;
}*/
.categoryby-header
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #52890a;
	background-image: url(../images/categorybybg.gif);
	background-repeat: repeat-x;
	background-position: left top;
	height: 25px;
	padding-left: 5px;
	font-weight: normal;
	text-decoration: none;
	text-align: left;
	border-top-width: 1px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-left-style: solid;
	border-top-color: #DBE0E3;
	border-right-color: #DBE0E3;
	border-left-color: #DBE0E3;
}
.left-nav-bg
{
	background-color: #FFFFFF;
}
.left-right-border
{
	height: 21px;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #DBE0E3;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #DBE0E3;
	line-height: 18px;
	vertical-align: middle;
	background-color: #FFFFFF;
}
.bottom-border
{
	height: 21px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #DBE0E3;
	line-height: 18px;
	vertical-align: middle;
}
.bottom-border2
{
	height: 21px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #DBE0E3;
	line-height: 18px;
	vertical-align: middle;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #DBE0E3;
	border-left-color: #DBE0E3;
}

.welocome
{
	font-family: Rockwell;
	font-size: 18px;
	color: #009ba8;
	height: 30px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

.featuredproduct-border
{
	border: 1px solid #DBE0E3;
	padding: 3px;
}
.gift-categories-bg1
{
	background-color: #FEFDFA;
	padding-left: 10px;
}

.product-name
{
	font-family: Arial, Helvetica, sans-serif;
	color: #727272;
	font-size: 12px;
	font-weight: bold;
	height: 15px;
	line-height: 15px;
	vertical-align: middle;
}
.product-namehpl
{
	font-family: Arial, Helvetica, sans-serif;
	color: #727272;
	font-size: 14px;
	font-weight: bold;
	height: 22px;
	vertical-align: middle;
}
.titel-white
{
	font-family: "Trebuchet MS";
	font-size: 18px;
	color: #FFFFFF;
	text-decoration: none;
	vertical-align: middle;
	text-indent: 5px;
}

a:link
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #873535;
	text-decoration: none;
}
a:visited
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #873535;
	text-decoration: none;
}
a:hover
{
	font-family: Arial, Helvetica, sans-serif;
	color: #6f6c2b;
	text-decoration: underline;
}
.wave
{
	background-image: url(../images/wave.gif);
	background-repeat: no-repeat;
	height: 22px;
	width: 64px;
	background-position: right;
}
.enterbox
{
	font-family: "Trebuchet MS";
	font-size: 11px;
	color: #5b5c5c;
	text-decoration: none;
	height: 21px;
	width: 150px;
	text-indent: 5px;
	margin: 0px;
	padding: 0px;
	line-height: 18px;
}
.selectbox
{
	font-family: "Trebuchet MS";
	font-size: 11px;
	color: #5b5c5c;
	text-decoration: none;
	height: 21px;
	width: 120px;
	text-indent: 5px;
	margin: 0px;
	padding: 0px;
	line-height: 18px;
}
.searchbox
{
	font-family: "Trebuchet MS";
	font-size: 11px;
	color: #5b5c5c;
	text-decoration: none;
	height: 21px;
	width: 180px;
	text-indent: 5px;
	margin: 0px;
	padding: 0px;
	line-height: 18px;
}
.searchboxsmall
{
	font-family: "Trebuchet MS";
	font-size: 11px;
	color: #5b5c5c;
	text-decoration: none;
	height: 18px;
	width: 48px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #FFFFFF;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #FFFFFF;
	line-height: 23px;
	margin: 0px;
	padding: 0px;
	text-align: center;
}
.border2
{
	font-family: "Trebuchet MS";
	font-size: 12px;
	color: #3c3c3c;
	border: 1px solid #e7e7e7;
}
.arrowbg
{
	font-family: "Trebuchet MS";
	font-size: 11px;
	color: #333333;
	background-image: url(../images/watermark.gif);
	background-repeat: no-repeat;
	background-position: center center;
}
/*.bestbuyheader {
	font-family: "Trebuchet MS";
	font-size: 18px;
	color: #009ba8;
	font-weight: normal;
	height: 21px;
	text-indent: 7px;
	
}
.bestbuysubheader {
	font-family: "Trebuchet MS";
	font-size: 18px;
	color: #873535;
	font-weight: normal;
	height: 21px;
	
}*/
.bestbuysubheader
{
	font-family: "Trebuchet MS";
	font-size: 16px;
	color: #21201F;
	font-weight: normal;
	height: 21px;
}

/*a.underlinelink:link {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #4E4B34;
	text-decoration: underline;
}
a.underlinelink:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #4E4B34;
	text-decoration: underline;
}
a.underlinelink:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #873535;
	text-decoration: none;
}
a.underlinelinkproduct:link {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #2676e6;
	text-decoration: underline;
}
a.underlinelinkproduct:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #2676e6;
	text-decoration: underline;
}
a.underlinelinkproduct:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #fb5959;
	text-decoration: none;
}*/
a.underlinelink:link
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #636466;
	text-decoration: underline;
}
a.underlinelink:visited
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #636466;
	text-decoration: underline;
}
a.underlinelink:hover
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #77894E;
	text-decoration: none;
}
a.underlinelinkproduct:link
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #2676e6;
	text-decoration: underline;
}
a.underlinelinkproduct:visited
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #2676e6;
	text-decoration: underline;
}
a.underlinelinkproduct:hover
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #fb5959;
	text-decoration: none;
}


a.leftnav:link
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #5b593d;
	text-decoration: none;
}
a.leftnav:visited
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #5b593d;
	text-decoration: none;
}
a.leftnav:hover
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #873535;
	text-decoration: underline;
}
/*.grid
{
	border: 0px solid #F3CAB4;
}*/
.grid {
	border: 1px solid #C8E2C7;
}

/*.griditemheader
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #EA4620;
	height: 18px;
	padding-left: 5px;
	font-weight: 500;
	text-decoration: none;
	text-align: left;
	background-color: #FDFDFD;
}*/
.griditemheader {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #52890a;
	height: 18px;
	padding-left: 5px;
	font-weight: 500;
	text-decoration: none;
	text-align: left;
	background-color: #FDFDFD;
}
/*
.griditemnormal
{
	font-family: Arial, Helvetica, sans-serif;
	color: #333333;
	background-color: #FDF7F2;
	font-size: 11px;
}*/
.griditemnormal {
	font-family: Arial, Helvetica, sans-serif;
	color: #333333;
	background-color: #F7FCED;
	font-size: 11px;
}
/*
.griditemalternative
{
	font-family: Arial, Helvetica, sans-serif;
	color: #333333;
	background-color: #F6F6F6;
	font-size: 11px;
}*/
.griditemalternative {
	font-family: Arial, Helvetica, sans-serif;
	color: #333333;
	background-color: #F6F6F6;
	font-size: 11px;
}
/*
.griditemredtext
{
	font-family: Arial, Helvetica, sans-serif;
	color: #FA6D05;
	font-size: 11px;
}
.griditembluetext
{
	font-family: Arial, Helvetica, sans-serif;
	color: #0099CC;
	font-size: 11px;
}
.griditemblacktext
{
	font-family: Arial, Helvetica, sans-serif;
	color: #333333;
	font-size: 11px;
}*/
.griditemredtext {
	font-family: Arial, Helvetica, sans-serif;
	color: #FA6D05;
	font-size: 11px;
}
.griditembluetext {
	font-family: Arial, Helvetica, sans-serif;
	color: #0099CC;
	font-size: 11px;
}
.griditemblacktext {
	font-family: Arial, Helvetica, sans-serif;
	color: #333333;
	font-size: 11px;
}

/*.product-title
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #EA4620;
	height: 25px;
	padding-left: 5px;
	font-weight: 500;
	text-decoration: none;
	text-align: left;
	background-color: #FDFDFD;
	vertical-align: middle;
}*/
.product-title {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #52890a;
	height: 25px;
	padding-left: 5px;
	font-weight: 500;
	text-decoration: none;
	text-align: left;
	background-color: #FDFDFD;
	vertical-align: middle;
}

/*.title {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	color: #FFFFFF;
	height: 25px;
	padding-left: 5px;
	background-color: #FF9018;
	font-weight: bold;
}*/
.title
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	color: #FFFFFF;
	height: 25px;
	padding-left: 5px;
	background-color: #8EC742;
	font-weight: bold;
}


/*.line {
	border-bottom-width: 1px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-bottom-color: #FE6714;
}*/
.line
{
	border-bottom-width: 1px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-bottom-color: #8DC442;
}

/*a.sublink:link {
	font-family: "Trebuchet MS";
	font-size: 12px;
	color: #FF6711;
	text-decoration: none;
	font-weight: bold;
}
a.sublink:visited {
	font-family: "Trebuchet MS";
	font-size: 12px;
	color: #FE6714;
	text-decoration: none;
	font-weight: bold;
}
a.sublink:hover {
	font-family: "Trebuchet MS";
	font-size: 12px;
	color: #333333;
	text-decoration: underline;
	font-weight: bold;
}*/
a.sublink:link
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #5BAA2D;
	text-decoration: none;
	font-weight: bold;
}
a.sublink:visited
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #5BAA2D;
	text-decoration: none;
	font-weight: bold;
}
a.sublink:hover
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #262324;
	text-decoration: underline;
	font-weight: bold;
}

/*commented by pooja 
  modified on :-6/12/2008		
*/
/*.top-box {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: normal;
	padding: 0px;
	color: #f27b24;
}*/
.top-box
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: normal;
	padding: 0px;
	color: #7AAD34;
}
/*.border-page {
	font-family: Arial, Helvetica, sans-serif;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #DBE0E3;
	border-left-color: #DBE0E3;
}*/
.border-page
{
	font-family: Arial, Helvetica, sans-serif;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #DBE0E3;
	border-left-color: #DBE0E3;
}
.left-top-corner
{
	background-image: url(../images/left-top-corner.gif);
	height: 6px;
	width: 6px;
	background-repeat: no-repeat;
}
.right-top-corner
{
	background-image: url(../images/right-top-corner.gif);
	height: 6px;
	width: 6px;
	background-repeat: no-repeat;
}
.right-bottom-corner
{
	background-image: url(../images/right-bottom-corner.gif);
	height: 6px;
	width: 6px;
	background-repeat: no-repeat;
}
.left-bottom-corner
{
	background-image: url(../images/left-bottom-corner.gif);
	height: 6px;
	width: 6px;
	background-repeat: no-repeat;
}
.lineleft
{
	background-image: url(../images/left-line.gif);
	background-repeat: repeat-y;
	width: 6px;
}
.linetop
{
	background-image: url(../images/top-line.gif);
	background-repeat: repeat-x;
	height: 6px;
}
a.smallbtn:link
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #6a6968;
	background-image: url(../images/small-tab-btn.jpg);
	background-repeat: no-repeat;
	text-align: center;
	vertical-align: middle;
	height: 22px;
	width: 50px;
	text-decoration: none;
}

/*.new-catalouge-bg {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #6f6c2b;
	background-color: #f6eed7;
}*/
.new-catalouge-bg
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #6f6c2b;
	background-color: #f6fced;
}

.lineright
{
	background-image: url(../images/right-line.gif);
	background-repeat: repeat-y;
	width: 6px;
}
.linebottom
{
	background-image: url(../images/bottom-line.gif);
	background-repeat: repeat-x;
	height: 6px;
}
/*.bestbuysubheader2 {
	font-family: "Trebuchet MS";
	font-size: 18px;
	color: #fa5a03;
	font-weight: normal;
	height: 21px;
	;
}*/
.bestbuysubheader2
{
	font-family: "Trebuchet MS";
	font-size: 16px;
	color: #88C335;
	font-weight: normal;
	height: 21px;
}

.bestbuysubheader3
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #6f6c2b;
	font-weight: normal;
	height: 21px;
}
.bestbuysubheader4
{
	font-family: "Trebuchet MS";
	font-size: 18px;
	color: #ffffff;
	font-weight: normal;
	height: 21px;
}
.product-price
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #fb5959;
}
.gift-categories-bg2
{
	background-color: #FCFBF5;
	padding-left: 10px;
}
.menu-left-tb
{
	background-image: url(../images/left-tb.jpg);
	background-repeat: no-repeat;
	height: 22px;
	width: 5px;
}
.menu-right-tb
{
	background-image: url(../images/right-tb.jpg);
	background-repeat: no-repeat;
	height: 22px;
	width: 5px;
}
.menu-bg
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #6a6968;
	text-align: center;
	vertical-align: middle;
	background-image: url(../images/tab-bg.jpg);
	background-repeat: repeat-x;
	height: 22px;
}
.menu-left-tb-over
{
	background-image: url(../images/left-tb-over.jpg);
	background-repeat: no-repeat;
	height: 22px;
	width: 5px;
}
.menu-right-tb-over
{
	background-image: url(../images/right-tb-over.jpg);
	background-repeat: no-repeat;
	height: 22px;
	width: 5px;
}
.menu-bg-over
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #FFFFFF;
	text-align: center;
	vertical-align: middle;
	background-image: url(../images/tab-bg-over.jpg);
	background-repeat: repeat-x;
	height: 22px;
}
/*.categoryby-header2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #EA4620;
	background-image: url(../images/categorybybg2.gif);
	background-repeat: repeat-x;
	background-position: left top;
	height: 25px;
	padding-left: 5px;
	font-weight: 500;
	text-decoration: none;
	text-align: left;
}*/
.categoryby-header2
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #636466;
	background-image: url(../images/categorybybg2.gif);
	background-repeat: repeat-x;
	background-position: left top;
	height: 25px;
	padding-left: 5px;
	font-weight: 500;
	text-decoration: none;
	text-align: left;
}

/*.categoryby-list
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #EA4620;
	background-image: url(../images/categorybybg.gif);
	background-repeat: repeat-x;
	background-position: left top;
	height: 25px;
	padding-left: 5px;
	font-weight: 500;
	text-decoration: none;
	text-align: left;
	border-top-width: 1px;
	border-right-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-top-color: #DBE0E3;
	border-right-color: #DBE0E3;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #DBE0E3;
	width: 145px;
}*/
.categoryby-list {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #52890a;
	background-image: url(../images/categorybybg.gif);
	background-repeat: repeat-x;
	background-position: left top;
	height: 25px;
	padding-left: 5px;
	font-weight: 500;
	text-decoration: none;
	text-align: left;
	border-top-width: 1px;
	border-right-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-top-color: #DBE0E3;
	border-right-color: #DBE0E3;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #DBE0E3;
	width: 160px;
}

.left2
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #333333;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #DBE0E3;
	border-bottom-color: #DBE0E3;
	border-left-color: #DBE0E3;
}

/**********************************/

/*a.categoryby:link
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #EA4620;
	background-repeat: repeat-x;
	background-position: left top;
	height: 25px;
	padding-left: 5px;
	font-weight: 500;
	text-decoration: none;
	text-align: left;
}
a.categoryby:visited
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #EA4620;
	background-repeat: repeat-x;
	background-position: left top;
	height: 25px;
	padding-left: 5px;
	font-weight: 500;
	text-decoration: none;
	text-align: left;
}
a.categoryby:hover
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #EA4620;
	background-repeat: repeat-x;
	background-position: left top;
	height: 25px;
	padding-left: 5px;
	font-weight: 500;
	text-decoration: underline;
	text-align: left;
}*/
a.categoryby:link {
                font-family: Verdana, Arial, Helvetica, sans-serif;
                font-size: 14px;
                color: #52890a;
                background-repeat: repeat-x;
                background-position: left top;
                height: 25px;
                padding-left: 5px;
                font-weight: 500;
                text-decoration: none;
                text-align: left;
}

a.categoryby:visited {
                font-family: Verdana, Arial, Helvetica, sans-serif;
                font-size: 14px;
                color: #52890a;
                background-repeat: repeat-x;
                background-position: left top;
                height: 25px;
                padding-left: 5px;
                font-weight: 500;
                text-decoration: none;
                text-align: left;
}

a.categoryby:hover {
                font-family: Verdana, Arial, Helvetica, sans-serif;
                font-size: 14px;
                color: #52890a;
                background-repeat: repeat-x;
                background-position: left top;
                height: 25px;
                padding-left: 5px;
                font-weight: 500;
                text-decoration: underline;
                text-align: left;
}



a.leftnav:link
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #5b593d;
	text-decoration: none;
}
a.leftnav:visited
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #5b593d;
	text-decoration: none;
}
a.leftnav:hover
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #873535;
	text-decoration: underline;
}
.redtext
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #FF0000;
	background-image: url(../images/arrow-left.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 13px;
}

a.Header:link
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	text-align: center;
	vertical-align: middle;
	color: #6a6968;
	font-weight: bold;
}
a.Header:hover
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	text-align: center;
	color: #FFFFFF;
	vertical-align: middle;
	font-weight: bold;
}
a.Header:visited
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	text-align: center;
	color: #6a6968;
	vertical-align: middle;
	font-weight: bold;
}
a.Header:visited:hover
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	text-align: center;
	color: #FFFFFF;
	vertical-align: middle;
	font-weight: bold;
}
.categoryby-header3
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #EA4620;
	background-image: url(../images/categorybybg3.gif);
	background-repeat: repeat-x;
	background-position: left top;
	height: 25px;
	padding-left: 5px;
	font-weight: 500;
	text-decoration: none;
	text-align: left;
	border-top-width: 1px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-left-style: solid;
	border-top-color: #DBE0E3;
	border-right-color: #DBE0E3;
	border-left-color: #DBE0E3;
}
.Gift-Categories-titel
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #FFFFFF;
	text-align: left;
	vertical-align: middle;
	background-image: url(../images/tab-bg-over.jpg);
	background-repeat: repeat-x;
	height: 22px;
	line-height: 22px;
	font-weight: bold;
}
.menu-left-tb-overgreen
{
	background-image: url(../images/left-tb-over-green.jpg);
	background-repeat: no-repeat;
	height: 22px;
	width: 5px;
}
.menu-right-tb-overgreen
{
	background-image: url(../images/right-tb-over-green.jpg);
	background-repeat: no-repeat;
	height: 22px;
	width: 5px;
}
.menu-bg-overgreen
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #FFFFFF;
	text-align: center;
	vertical-align: middle;
	background-image: url(../images/tab-bg-over-green.jpg);
	background-repeat: repeat-x;
	height: 22px;
}
.menu-left-tb-overred
{
	background-image: url(../images/left-tb-over-red.jpg);
	background-repeat: no-repeat;
	height: 22px;
	width: 5px;
}
.menu-right-tb-overred
{
	background-image: url(../images/right-tb-over-red.jpg);
	background-repeat: no-repeat;
	height: 22px;
	width: 5px;
}
.menu-bg-overred
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #FFFFFF;
	text-align: center;
	vertical-align: middle;
	background-image: url(../images/tab-bg-over-red.jpg);
	background-repeat: repeat-x;
	height: 22px;
}
