@charset "utf-8";
.errorBox { font-family : Verdana, Arial, sans-serif; font-size : 11px; background: #ffb3b5; font-weight: bold; }
.stockWarning { font-family : Verdana, Arial, sans-serif; font-size : 11px; color: #cc0033; }
.productsNotifications { background: #f2fff7; }
.orderEdit { font-family : Verdana, Arial, sans-serif; font-size : 11px; color: #70d250; text-decoration: underline; }

/*變更預設的Tag styles-----------------------------------------start*/

BODY {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	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:left; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #1C3F95;
/*	line-height:14PX; */
	line-height:16px;
}

a { color:#1C3F95;}
a:link, a:visited, a:active { color:#1C3F95; text-decoration: none; }
a:hover { color:#1C3F95;  text-decoration: underline; }

ul, ol, li {
list-style-image:none;
list-style-position:outside;
list-style-type:none;
}

FORM { display: inline; }

H1 {
	font-family: SimHei, Arial, Garamond;
	font-weight: bold;
	font-size: 28px;
	color: #003D74;
	font-weight:bolder;
	background:url(images/h1.gif) no-repeat;
	padding-left:50px;
}
H2 {
	font-size:24px;
	color:#1C3F95;
	font-family:Arial, Verdana, sans-serif;
}
H3 {
	font-size:20px;
	color:#FFFFFF;
	font-family:Arial, Verdana, sans-serif;
	background:url(images/h3.jpg) repeat-x;
	height:30px;
	width:120px;
	padding:2px 0 0 10px;
}
H4 {
	color: #333333;
	font-family:Arial, Verdana, sans-serif;
	font-size:18px;
	height:25px;
	padding-left:10px;
	border-bottom:#99CC00 2px solid;
	width:165px;
}
H5{
	font-size:16px;
	font-family: SimHei, Arial, Garamond;
	color:#EA9E00;
	line-height:13px;
	font-style: italic;
	background:url(images/h5.gif) no-repeat;
	padding-left:30px;
	height:40px;
}
H6{
	font-family:Geneva, Arial, Helvetica, sans-serif;
	font-size:14px;
	color:#533C33;
	font-style: italic;
}
H7{
	font-size:12px;
	color:#666666;
	line-height:13px;
}

/*變更預設的Tag styles-----------------------------------------end*/

/*網站版面配置設定---------------------------------------------start*/

#container { 
	width: 910px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin:0 0 0 10px;
} 

/* Tips for absolutely positioned sidebars with header and footer:
1. Absolutely positioned (AP) elements must be given a top and side value, either right or left. (As a default, if no top value is given, the AP element will begin directly after the last element in the source order of the page. This means, if the sidebars are first element in the #container in the document's source order, they will appear at the top of the #container even without being given a top value. However, if they are moved later in the source order for any reason, they'll need a top value to appear where you desire.
2. Absolutely positioned (AP) elements are taken out of the flow of the document. This means the elements around them don't know they exist and don't account for them when taking up their proper space on the page. Thus, an AP div should only be used as a side column if you are sure the middle #mainContent div will always contain the most content. If either sidebar were to contain more content, that sidebar would run over the bottom of the parent div, and in this case the footer as well, and the sidebar would not appear to be contained.
3. If the above mentioned requirements are met, absolutely positioned sidebars can be an easy way to control the source order of the document.
4. If the source order is changed, the top value should be equal to the height of the header since this will cause the columns to visually meet the header.
*/
#header { 
	width:910px; 
	height:255px; 
	position:relative;
} 
#header h1 {
	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: 20px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#logo {
	width:390px;
	height:109px;
	position:absolute;
	left:0;
	top:15px;
	background-image: url(images/logo.gif);
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width:186px; 
	padding:0 0 40px;
}
#sidebar2 {
	float:right; /* this element must precede in the source order any element you would like it be positioned next to */
}
#mainContent { 
	float: left;
	/*width:680px;*/
	width:680px;
}
#footer {
	text-align:center;
	width:890px;
	background-repeat: no-repeat;
	float: left;
	background-color:#FFF;
	position:relative;
	border-top:4px solid #1C3F95;
	padding-top:14px;
	margin:20px 0;
	color:#1C3F95;
}
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.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 its child floats */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

/*網站版面配置設定---------------------------------------------end*/

.goBack { /*回上頁*/
	background-image:url(images/goBack.gif);
	background-repeat:no-repeat; 	
	padding-left:20px;
	margin:5px 0 5px 0;
	float:right;
}

#navigation { 	
	font-size:12px;
	color:#666666; 
	height:30px;
	display:none;
}

#navigation a:link, #navigation a:visited, #navigation a:active {
	color:#666666;
}

#newsMarquee {
	background-image:url(images/icon_news.gif);
	background-position:left;
	background-repeat:no-repeat;
	padding-left:40px;
	font-size:12px;
	color:#666666;
	position:absolute;
	left: 218px;
	top: 14px;
	width: 476px;
	display:none;
}

#boxLanguage {
	margin-top:15px; 
	float:right;
	margin-right:10px;
	display:none;
}

#quickFind {position:absolute; left:705px;	top: 225px; }
#quickFind .search_input{ width:137px;border:1px solid #CCCCCC;color:#333132;float:left;font-family:Lucida Sans Unicode,Trebuchet MS,sans-serif;font-size: 12px;font-size-adjust:none;font-stretch:normal;font-style:normal;font-variant:normal;font-weight:normal;height:18px;}


#advancedSearchLink {position:absolute; left: 830px; top: 100px;display:none;}

/*網站主要功能項目-------------------------------start-*/
#shopFunction {
	color:#FFFFFF;
	position:absolute;
	left:400px;
	top: 58px;
	width: 600px;
	display:none;
}

#shopFunction a:link, #shopFunction a:visited, #shopFunction a:active { font-size:15px; color:#FFF;}

#shopFunction .articles { margin-left:30px;}

#shopFunction .login { margin-left:30px;}

#shopFunction .myAccount { margin-left:30px;}

#shopFunction .cart { margin-left:30px;}

#shopFunction .checkout { margin-left:30px;}

/*網站主要功能項目-------------------------------end-*/

#top_Function{font-family:"Lucida Sans Unicode","Trebuchet MS",sans-serif;position:absolute;left:666;margin:-2px 0 0 0;*margin:9px 4px 0 0;_margin:9px 4px 0 0;width:221px; text-align:left;}
#top_Function li{float:left;height:23px;}
#top_Function li a{text-indent:-999em;display:block;height:23px;}
#top_Function #header_account{margin-left:-40px;}
#top_Function #header_account a{width:66px;background: url(images/small-nav.gif) 0 0 no-repeat;}
#top_Function #header_account a:hover{background:url(images/small-nav.gif) 0 -23px no-repeat;}
#top_Function #header_account a.selected{background:url(images/small-nav.gif) 0 -46px no-repeat;}
#top_Function #shopping{}
#top_Function #shopping a{width:55px;background:url(images/small-nav.gif) -66px 0 no-repeat;}
#top_Function #shopping a:hover{background:url(images/small-nav.gif) -66px -23px no-repeat;}
#top_Function #shopping a.selected{background:url(images/small-nav.gif) -66px -46px no-repeat;}
#top_Function #policy{}
#top_Function #policy a{width:64px;background:url(images/small-nav.gif) -121px 0 no-repeat;}
#top_Function #policy a:hover{background:url(images/small-nav.gif) -121px -23px no-repeat;}
#top_Function #policy a.selected{background:url(images/small-nav.gif) -121px -46px no-repeat;}
#top_Function #Vedio{}
#top_Function #Vedio a{width:36px;background:url(images/small-nav.gif) -237px 0 no-repeat;}
#top_Function #Vedio a:hover{background:url(images/small-nav.gif) -237px -23px no-repeat;}
#top_Function #Vedio a.selected{background:url(images/small-nav.gif) -237px -46px no-repeat;}
#top_Function .member{ font:12px Lucida Sans Unicode, Lucida Grande, sans-serif ;color:#1C3F95; line-height:18px;}
#top_Function .member a{ color:#1C3F95; text-decoration:underline;}
#top_Function .member_input{border:1px solid #CCCCCC;color:#1C3F95;float:right;font-family:Lucida Sans Unicode,Trebuchet MS,sans-serif;font-size: 12px;height:18px;line-height:normal;padding:0 0 0 5px;width:217px;}
#top_Function .but_order{margin:3px 0 3px 163px;}
#top_Function .cart{ background:url(images/ico-bag.gif) no-repeat center left;color:#1C3F95;font-family:Lucida Sans Unicode,Trebuchet MS,sans-serif;font-size: 12px;height:18px;line-height:normal; padding:3px 0 0 20px;}
#top_Function .cart a{color:#1C3F95; text-decoration:underline; padding-left:5px;}

#top_mainmenu{ position:absolute;top:165px;width:889px;background-image: url(images/nav.gif);height:27px; padding:0;}
#top_mainmenu li{float:left;height:27px;margin-top:-12px;*margin-top:0;_margin-top:0;}
#top_mainmenu li a{text-indent:-999em;display:block;height:27px;}
#top_mainmenu #face{margin-left:-40px;}
#top_mainmenu #face a{width:60px;}
#top_mainmenu #face a:hover{background:url(images/nav.gif) 0 -27px no-repeat;}
#top_mainmenu #face a.selecteda{background:url(images/nav.gif) 0 -54px no-repeat;}
#top_mainmenu #body a{width:90px;}
#top_mainmenu #body a:hover{background:url(images/nav.gif) -60px -27px no-repeat;}
#top_mainmenu #body a.selected{background:url(images/nav.gif) -60px -54px no-repeat;}
#top_mainmenu #hair a{width:83px;}
#top_mainmenu #hair a:hover{background:url(images/nav.gif) -150px -27px no-repeat;}
#top_mainmenu #hair a.selected{background:url(images/nav.gif) -150px -54px no-repeat;}
#top_mainmenu #perfumery a{width:83px;}
#top_mainmenu #perfumery a:hover{background:url(images/nav.gif) -233px -27px no-repeat;}
#top_mainmenu #perfumery a.selected{background:url(images/nav.gif) -233px -54px no-repeat;}
#top_mainmenu #best_sellers a{width:110px;}
#top_mainmenu #best_sellers a:hover{background:url(images/nav.gif) -316px -27px no-repeat;}
#top_mainmenu #best_sellers a.selected{background:url(images/nav.gif) -316px -54px no-repeat;}
#top_mainmenu #gift a{width:75px;}
#top_mainmenu #gift a:hover{background:url(images/nav.gif) -426px -27px no-repeat;}
#top_mainmenu #gift a.selected{background:url(images/nav.gif) -426px -54px no-repeat;}
#top_mainmenu #spa a{width:120px;}
#top_mainmenu #spa a:hover{background:url(images/nav.gif) -501px -27px no-repeat;}
#top_mainmenu #spa a.selected{background:url(images/nav.gif) -501px -54px no-repeat;}
#top_mainmenu #travel a{width:85px;}
#top_mainmenu #travel a:hover{background:url(images/nav.gif) -621px -27px no-repeat;}
#top_mainmenu #travel a.selected{background:url(images/nav.gif) -621px -54px no-repeat;}
#top_mainmenu #apothecary a{width:70px;}
#top_mainmenu #apothecary a:hover{background:url(images/nav.gif) -706px -27px no-repeat;}
#top_mainmenu #apothecary a.selected{background:url(images/nav.gif) -706px -54px no-repeat;}
#top_mainmenu #press a{width:113px;}
#top_mainmenu #press a:hover{background:url(images/nav.gif) -776px -27px no-repeat;}
#top_mainmenu #press a.selected{background:url(images/nav.gif) -776px -54px no-repeat;}

#top_introduce{position:absolute; top:192px; width:889px;}
#top_introduce li{float:left;height:14px;}
#top_introduce li a{text-indent:-999em;display:block;height:14px;}
#top_introduce #regimens{width:69px;margin-left:-40px;background:url(images/subnav.gif) 0 0 no-repeat;}
#top_introduce #regimens a{width:69px;background:url(images/subnav.gif) 0 0 no-repeat;}
#top_introduce #regimens a:hover{background:url(images/subnav.gif) 0 -15px no-repeat;}
#top_introduce #regimens a.selected{background:url(images/subnav.gif) 0 -30px no-repeat;}
#top_introduce #shopping a{width:73px;background:url(images/subnav.gif) -156px 0 no-repeat;}
#top_introduce #shopping a:hover{background:url(images/subnav.gif) -156px -15px no-repeat;}
#top_introduce #shopping a.selected{background:url(images/subnav.gif) -156px -30px no-repeat;}
#top_introduce #policy a{width:57px;background:url(images/subnav.gif) -229px 0 no-repeat;}
#top_introduce #policy a:hover{background:url(images/subnav.gif) -229px -15px no-repeat;}
#top_introduce #policy a.selected{background:url(images/subnav.gif) -229px -30px no-repeat;}

#top_introduce #samples a{width:65px;background:url(images/subnav.gif) -334px 0 no-repeat;}
#top_introduce #samples a:hover{background:url(images/subnav.gif) -334px -15px no-repeat;}
#top_introduce #samples a.selected{background:url(images/subnav.gif) -334px -30px no-repeat;}

#top_introduce #fb a { width:57px; padding-left:10px; padding-right:10px; background:url(images/subnav.gif) -400px 0 no-repeat;}
#top_introduce #fb a:hover {
	background-position: -400px -15px;
}
#top_introduce #fb a:selected { background-position: -400px -30px;}

#top_introduce #wretch a { width:46px; padding-left:10px; padding-right:10px; background:url(images/subnav.gif) -480px 0 no-repeat;}
#top_introduce #wretch a:hover {
	background-position: -480px -15px;
}
#top_introduce #wretch a:selected { background-position: -480px -30px;}


#top_introduce { padding:0; height:15px;margin-top:-5px;*margin-top:7px;_margin-top:7px;}
#top_introduce .section{ background:url(images/ico-box.gif) center left  no-repeat ;float:right; width:160px;*width:185px;_width:185px; height:19px; padding:3px 0 0 25px;color:#1C3F95;font-family:Lucida Sans Unicode,Trebuchet MS,sans-serif;font-size: 12px;height:18px;line-height:normal;*margin-top:3px;_margin-top:3px;}



#footerNav_l{
	line-height:19px;
	height:21px; 
	font-size:12px; 
	color:#1C3F95;
	font-family:Lucida Sans Unicode,Trebuchet MS,sans-serif;
	font-size: 12px;
	font-size-adjust:none;
	font-style:normal;
	font-variant:normal;
	font-weight:normal;
	text-align:left;
}

#footerNav_r{
	width:12px; 
	height:21px; 
	float:right;
	display:none;
}

#footerContent { 	
color:#1C3F95;
font-family:"Lucida Sans Unicode","Trebuchet MS",sans-serif;
font-size: 12px;
font-size-adjust:none;
font-stretch:normal;
font-style:normal;
font-variant:normal;
font-weight:normal;
line-height:19px;
margin:0 0 5px;
text-align:left;
}

#counter { font-size: 12px; margin:5px; display:none;}

TR.headerError {
  background: #ff0000;
}

TD.headerError {
  font-family: Tahoma, Verdana, Arial, sans-serif;
  font-size: 12px;
  background: #ff0000;
  color: #ffffff;
  font-weight : bold;
  text-align : center;
}

TR.headerInfo {
  background: #00ff00;
}

TD.headerInfo {
  font-family: Tahoma, Verdana, Arial, sans-serif;
  font-size: 12px;
  background: #00ff00;
  color: #FFFFFF;
  font-weight: bold;
  text-align: center;
}

.infoBoxNotice {
  background: #FF8E90;
}

.infoBoxNoticeContents {
  background: #FFE6E6;
  font-family: Verdana, Arial, sans-serif;
  font-size: 12px;
}

/* categories-----------------------------------------------------Start */
li.topMenuClass {
	font-size:13px;
	margin-bottom:5px;
	display:block;	
}

.topMenuClass:link, .topMenuClass:visited{

 }

.subMenuClass {
	font-size:13px;
	padding-left:15px;		
	margin-bottom:5px;
	display:block;	
}

.subMenuClass:link, .subMenuClass:visited{

 }

/* categories-----------------------------------------------------end */

TD.contentBoxHeading {
	font-family: "Verdana", "Arial", "sans-serif";
	font-size: 13px;	
	color: #FFFFFF;
	background: #666666;
	font-weight : bold;
	height: 32px;
	padding-left: 10px;
}

TD.contentHeadingLeft {
	background: #666666;
	height: 32px;
}

TD.contentHeadingRight {
	background: #666666;
	height: 32px;
}

.infoBox {
	font-family: Verdana, Arial, sans-serif;
	font-size: 12px;
	margin:5px 0 5px 0;
	padding:5px;
	border:#AAA 1px solid;
}

TR.accountHistory-odd, TR.addressBook-odd, TR.alsoPurchased-odd, TR.payment-odd, TR.productListing-odd, TR.productReviews-odd, TR.upcomingProducts-odd, TR.shippingOptions-odd {background: #f8f8f9;}

TR.accountHistory-even, TR.addressBook-even, TR.alsoPurchased-even, TR.payment-even, TR.productListing-even, TR.productReviews-even, TR.upcomingProducts-even, TR.shippingOptions-even {background: #f8f8f9;}

/* C~C-----------------------------------------start-*/
.productListing {}

.productListing-heading, a.productListing-heading:link, a.productListing-heading:visited {
	font-family:Arial,Helvetica,sans-serif;
	font-size: 11px;
	background:#1C3F95;
	color:#FFFFFF;
	padding:5px;
	text-align:center;
	font-weight:bold;
	line-height:32px;
}

.productListing-data {
	font-family: Verdana, Arial, sans-serif;
	font-size: 13px;
}


/* ϶~C-----------------------------------------start-*/
.productListBox { 
	width:226px; 
	float:left; 
	margin:0 0 25px; 
	text-align:center;
	height:280px;
}

.sampleListBox{
	width:226px; 
	float:left; 
	margin:25px 0; 
	text-align:center;
	height:60px;}

.productListBox input{
	font-size: 12px;
	padding:5px 5px 0 0;

}

.productListImage{
	text-align:center;
	vertical-align:middle;
}

.productListImageBox{height:185px;text-align:center;width:226px;}

.productListName {margin:3px;font:12px Arial,Verdana,sans-serif bold;color:#1C3F95;line-height:12px;text-align:center; font-weight:bold;}
.productListName a:hover{ text-decoration:underline;}


.productListBuyNow {
	margin:3px; display:none;
}

.total_cash{border-top: 1px solid #1c3f95; margin-right:60px;}



/*϶~C-----------------------------------------end-*/

.productListingSlogan {margin:3px;font-size: 12px;color:#1C3F95;line-height:12px;text-align:center;font-weight:bold; font-family:Arial,Verdana,sans-serif}

a.pageResults:link, a.pageResults:visited{
	color: #000;
	line-height:25px;
	padding:1px 5px 1px 5px;
	margin:0 0px 0 0px;
	
}

a.pageResults:link u, a.pageResults:visited u{text-decoration:none;}

a.pageResults:hover{ font-weight:bold;}

a.pageResults:hover u{}

a.pagePrevious, a.pagePrevious u{
	background-image:url(images/backward.gif);
	background-position:bottom;
	background-repeat:no-repeat;
	width:10px;
	height:16px;
	text-decoration:none;
	cursor:pointer;
}

a.pageNext, a.pageNext u{
	background-image:url(images/forward.gif);
	background-position:bottom;
	background-repeat:no-repeat;
	width:10px;
	height:16px;
	text-decoration:none;	
	cursor:pointer;
}
.pageHeading {
	height:30px;
	font-size:15px;
	color:#333333;
	padding:5px 10px 5px 40px !important;
	padding:7px 10px 5px 40px;
	margin:10px 0 10px 0;
	line-height:30px;
	background:url(images/burn.gif) no-repeat left;
	border-bottom:#999999 3px solid;
	display:none;
}

TR.subBar {background: #f4f7fd;}

TD.subBar {
	font-family: Verdana, Arial, sans-serif;
	font-size: 12px;
	color: #000000;
}

TD.main, P.main {
	font-family: Verdana, Arial, sans-serif;
	font-size: 12px;
	line-height: 1.5;
}

TD.smallText, SPAN.smallText, P.smallText {
	font-family: Verdana, Arial, sans-serif;
	font-size: 12px;
	color:#666666;
}

TD.accountCategory {
	font-family: Verdana, Arial, sans-serif;
	font-size: 13px;
	color: #aabbdd;
}

.fieldKey {
	font-family: Verdana, Arial, sans-serif;
	font-size: 12px;
	font-weight: bold;
	width:100px;
	float:left;
	margin-bottom:5px;
}

.fieldValue {
	font-family: Verdana, Arial, sans-serif;
	font-size: 12px;
	float:left;
	margin-bottom:5px;  
}

TD.tableHeading {
	font-family: Verdana, Arial, sans-serif;
	font-size: 12px;
	font-weight: bold;
}

SPAN.newItemInCart {
	font-family: Verdana, Arial, sans-serif;
	font-size: 12px;
	color: #ff0000;
}

CHECKBOX, INPUT, RADIO, SELECT {
	font-family: Verdana, Arial, sans-serif;
	font-size: 12px;
}

TEXTAREA {
	width: 100%;
	font-family: Verdana, Arial, sans-serif;
	font-size: 12px;
}

SPAN.greetUser {
	font-family: Verdana, Arial, sans-serif;
	font-size: 12px;
	color: #f0a480;
	font-weight: bold;
}

TABLE.formArea {
	background: #f1f9fe;
	border: #7b9ebd solid 1px;
}

TD.formAreaTitle {
	font-family: Tahoma, Verdana, Arial, sans-serif;
	font-size: 12px;
	font-weight: bold;
}

SPAN.markProductOutOfStock {
	font-family: Tahoma, Verdana, Arial, sans-serif;
	font-size: 12px;
	color: #c76170;
	font-weight: bold;
}

SPAN.errorText {
	font-family: Verdana, Arial, sans-serif;
	color: #ff0000;
}

.moduleRow { }
.moduleRowOver { background-color: #D7E9F7; cursor: pointer; cursor: hand; }
.moduleRowSelected { background-color: #E9F4FC; }

.checkoutBarFrom, .checkoutBarTo { font-family: Verdana, Arial, sans-serif; font-size: 12px; color: #8c8c8c; }
.checkoutBarCurrent { font-family: Verdana, Arial, sans-serif; font-size: 12px; color: #000000; }

/* message box */

.messageBox { font-family: Verdana, Arial, sans-serif; font-size: 12px; }
.messageStackError, .messageStackWarning { font-family: Verdana, Arial, sans-serif; font-size: 12px; background-color: #ffb3b5; padding:5px; }
.messageStackSuccess { font-family: Verdana, Arial, sans-serif; font-size: 12px; background-color: #99ff00; }

/* input requirement */

.inputRequirement { font-family: Verdana, Arial, sans-serif; font-size: 12px; color: #ff0000; }

/* styles ----------------------------------------------------------------------------------start*/
#mainBanner {width:700px;float: left;}
#mainBanner div { padding:0 30px;} /*wqBanner*/
#mainBanner img{}
#sidebarBanner {width:185px; text-align: right;}
#sidebarBanner img{border:1px solid #CDCDCD; margin:0 0 20px 0;} 
#sidebarBanner div{ text-align:left;} /*wqBanner*/
#footerBanner{}
#footerBanner img{border:1px solid #CDCDCD;float:left;height:auto;margin:0 40px 0 0;}
#footerBanner div {}/*wqBanner*/
#floatBanner{position:absolute;width: 150px;visibility: hidden;z-index: 100;}
#floatBanner div {margin:0px 2px 0px 0px;float: left;}/*wqBanner*/
/* styles ----------------------------------------------------------------------------------end*/
/* product_info~Բӻstyles --------------------------------------------------------------start*/
.col_product{ width:490px; float:left;}


.productName { /*wq~W*/
color:#1C3F95;
font-family:Arial,Verdana,sans-serif;
font-size:17px;
font-size-adjust:none;
font-stretch:normal;
font-style:normal;
font-variant:normal;
font-weight:bold;
line-height:normal;
margin:0 0 0 200px;
}
.productSlogan { /*定義產品廣告標語*/
	margin:10px 0 0 200px;
}
.productBrief { /*定義產品摘要說明*/
	margin:10px 0 0 200px;
	line-height:14px; 
	color:#1C3F95;
	font-size: 12px;
}
.productImage { /*定義產品名稱*/
	font-size:12px; text-align:center;display:inline;width:200px; float:left;}
.productPrice { /*定義產品價格*/
font-size:15px; color:#1C3F95; float:left; padding:6px;}
.productSpecialPrice {
	font-size: 12px;
	font-weight:normal;
	line-height:normal;
	-x-system-font:none;
	font-family:Arial,Verdana,sans-serif;
	color:#1C3F95;
}
.productBonusPrice { /*定義產品紅利價格*/
	margin:5px 0 0 200px; font-size:15px; color:#FF0000;
}
.productDesc { /*定義產品描述*/
	font-size:12px; line-height:20px; width:290px; margin-top:5ping_info
	px; margin-left:200px; padding-top:0;
}
.productWeight {
	font-size:12px; color:#00F;
}
.productOptions {
	font-size:12px;
	margin:5px 0 0 195px;
}

.productReviews {
	font-size:12px;
	margin:5px 0 5px 0;
}

.productUrl {
	font-size:12px;
	margin:5px 0 5px 0;
}
.productDateAdded {
	text-align:center;
	font-size:12px;
	margin:5px auto;
	display:none;
}
/* product_info~Բӻstyles --------------------------------------------------------------end*/

/* table ----------------------------------------------------------------------------start*/

table tr{
	font-size:12px;
	font-family:SimHei, Arial, Garamond;
}

/* table ------------------------------------------------------------------------------end*/
.section {margin:0 0 15px 0;}

.globalBox {
	height:auto !important; height:100%;
}

.globalBoxHeader {
background:#1C3F95 none repeat scroll 0 0;
color:#FFFFFF;
font-family:Arial,Helvetica,sans-serif;
font-size:11px;
font-weight:bold;
padding:5px;
margin-bottom:5PX;
}

/* forumQװϪstyles --------------------------------------------------------------start*/

.addTopic {
	background-image:url(/templates/images/edit_forum.gif);
	background-repeat:no-repeat;
	margin:5px 5px 5px 0;
	padding:3px 0 0 25px;
	height:20px;
}

/* forumQװϪstyles --------------------------------------------------------------end*/

.splitPage{
	background-color:#EEE;
	border:#CCC 1px solid;
	padding:5px;
	display:table;
	width:100%;
	margin:5px 0 5px 0;
}

/* article styles --------------------------------------------------------------start*/

.articleTitle{
	font-weight:bold;
	background-image:url(images/page_red.png);
	background-repeat:no-repeat;
	padding:0 0 5px 20px;
	margin:5px 0 0 0;	
}
.topic {
	float:right;
	padding:0 0 10px 20px;
}
.topicDesc {
	padding:5px;
	margin:0 0 10px 0;
	border:#CCC 1px dashed;
	background-color:#EEE;
}	
.author {
	float:right;
	padding:0 0 10px 20px;
}
.authorDesc {
	padding:5px;
	margin:0 0 10px 0;
	border:#CCC 1px dashed;
	background-color:#EEE;
}	
.addDate {
	float:right;
	padding:0 0 10px 20px;
}
.articleDesc {
	padding:0 0 5px 20px;
}
	
/* article styles --------------------------------------------------------------end*/

/*--20080321----------------------start--*/
#mainContent .subCategories {
	float:left;
	text-align:center;
	width:90px !important;
	width:100px;
	height:90px !important;
	height:100px;
	margin:5px;
}

.displayCount{
	margin:5px 0 5px 0;
	float:left;
	line-height:25px;	
}

.displayLinks{
	margin:5px 0 5px 0;
	float:right;
}

#specials .entry{
	margin:5px;
	padding:5px;
	float:left;
	width:160px;
	height:170px;
}

#specials .entryImage{
	margin:5px;
}

.categoryImage{
	display:none;
}
/*--20080321----------------------end--*/

/*--20080322---------------------------------------------------start--*/
#guestbook{
	display:table; width:100%;
}

#guestbook .displayCount{
	margin:5px 5px 5px 0;
	float:left;
}

#guestbook .displayLinks{
	margin:5px 5px 5px 0;
	float:right;
}

#guestbook .entry{
	margin:5px 5px 5px 0;
	padding:5px;
	border:1px dotted #888;
}

#guestbook .vistors{
	margin:5px 5px 5px 0;
}

#guestbook .date_added{
	margin:5px 5px 5px 0;
}

#guestbook .message{
	margin:5px 5px 5px 0;
	background-color:#DDD;
	padding:5px;
	line-height:18px;
}

#guestbook .sign{
	margin:5px;
	float:right;
}

#guestbook .messageStack{
	margin:5px 5px 5px 0;
	background-color:#333;
	padding:5px;
	line-height:18px;
}

#guestbook .button_back{
	margin:5px;
	float:left;
}

#guestbook .button_continue{
	margin:5px;
	float:right;
}

#articles {
	display:table; width:100%;
}

#articles .goBack{
	float:right;
	padding:5px;
}
/*--20080322---------------------------------------------------end--*/
/*Feature Product--------------------------------start-*/
#featuredProduct .boxHeader {
	display:none;
}

#featuredProduct .boxHeader div{
}

#featuredProduct .boxContents {
	background:url(images/1_36.gif) no-repeat; 
	width:480px !important; 
	width:710px; 
	height:498px; 
	padding-left:230px;
}

#featuredProduct .boxContents_r{
}

#featuredProduct .entry {
	font-size:12px;
	margin:5px 5px 0px 0px;
	width:222px !important;
	width:232px;
	height:100px !important;
	height:110px; 
	float: left;
	padding:5px;
	background:url(images/featuredentry.gif) no-repeat;
}

#featuredProduct .entryImage{
	float:left;
	height:95px;
	width:100px;
	margin-right:5px;
	text-align:center;
	margin:auto;
}

#featuredProduct .entryImage * {} /*IE image center*/

*html #featuredProduct .entryImage span{} /*IE image center*/

#featuredProduct .boxFooter {
}

#featuredProduct .boxFooter div{
}
/*Feature Product--------------------------------end-*/

/* newProductBox-----------------------------------------------------Start */
#newProduct .boxHeader {
	background:url(images/button.gif) no-repeat;
	height:29px;
	font-size:15px;
	color:#333333;
	padding:5px 0px 5px 20px !important;
	padding:7px 0px 5px 20px;
	margin-top:10px;
	text-align: left;
}
#newProduct .boxHeader div {background:url(images/button_div.gif) no-repeat; width:5px; height:29px; float:right; margin-top:-24px !important;margin-top:-28px;}
#newProduct .boxContents {
	font-size: 12px;
	text-align:center;
	padding-bottom:6px;
	width:100%;
	display:table;
}
#newProduct .boxContents_r {}

#newProduct .entry {
	width:150px;
	height:190px !important;
	height:210px;
	float:left;
	padding:10px 5px 5px 5px;
	margin:9px;
	border:#CCC 1px solid;
	border-top:#EA7827 20px solid;
}

#newProduct .entry .entryImage{
	height:105px;
	width:105px;
	display:table-cell; vertical-align:middle; /*IE image center*/
	text-align:center;
	margin-bottom:5px;
	margin:auto; 
}

#newProduct .entry .entryImage * {vertical-align:middle;} /*IE image center*/

*html #newProduct .entry .entryImage span{height:100%;display:inline-block;} /*IE image center*/

#newProduct .boxFooter {}
#newProduct .boxFooter div {}

/* newProductBox-----------------------------------------------------End */
/* alsoBox-----------------------------------------------------Start */
#alsoProduct{ display:none;}
#alsoProduct .boxHeader {
	background-image:url(images/banner01.jpg);
	background-repeat:no-repeat;
	height:20px;
	font-size:15px;
	color:#FFFFFF;
	padding:5px 10px 5px 40px;
	margin-top:10px;
	text-align: left;
	font-weight: bold;
}

#alsoProduct .boxHeader div {}

#alsoProduct .boxContents {
	border:#CCC 1px solid;
	font-size: 12px;
	text-align:center;
	display:table;
	background:url(images/sideline.jpg) repeat;
	padding-bottom: 0px !important;
	padding-bottom: 10px;
	width:100%;
}
#alsoProduct .boxContents_r {}

#alsoProduct .entry {
	width:179px !important;
	width:187px;
	height:169px !important;
	height:180px;
	float:left;
	padding:5px;
	margin:10px 0 10px 0px;
	background:url(images/beeline.jpg) repeat-y right;
}

#alsoProduct .entryImage {
	height:105px;
	width:105px;
	display:table-cell; vertical-align:middle; /*IE image center*/
	text-align:center;
	margin:auto; 
}

#alsoProduct .entryImage * {vertical-align:middle;} /*IE image center*/

*html #alsoProduct .entryImage span{height:100%;display:inline-block;} /*IE image center*/

#alsoProduct .boxFooter {}

#alsoProduct .boxFooter div {}

/* alsoBox-----------------------------------------------------End */

/* xsellBox-----------------------------------------------------Start */

#xsellProduct{ float:right;width:180px;}
#xsellProduct .boxHeader {
	height:20px;
	font-size:15px;
	color:#1C3F95;;
	text-align: left;
	font-weight: bold;
	width:180px;
	padding-left:10px;
}

#xsellProduct .boxHeader div{}

#xsellProduct .boxContents {
	font-size: 12px;
	text-align:center;
	display:table;
	width:180px;
	padding-left:10px;
}
#xsellProduct .boxContents_r{}

#xsellProduct .entry{
	width:180px;
	float:left;
	padding-left:10px;
}

#xsellProduct .entryImage {
	height:105px;
	width:105px;
	display:table-cell; vertical-align:middle; /*IE image center*/
	text-align:center;
	margin:auto; 
}

#xsellProduct .entryImage * {vertical-align:middle;} /*IE image center*/

*html #xsellProduct .entryImage span{height:100%;display:inline-block;} /*IE image center*/

#xsellProduct .boxFooter {}
#xsellProduct .boxFooter div{}

/* xsellBox-----------------------------------------------------End */

/* infoBox-----------------------------------------------------Start */

.sidebarBox .boxHeader {
	height:8px;
	padding:5px 0 20px 30px !important;
	padding:5px 0 10px 30px;
	font-size:18px;
	font-family: SimHei, Arial, Helvetica, sans-serif;
}

.sidebarBox .boxHeader div{}

.sidebarBox .boxContents {
	width:138px !important;
	width:168px;
	font-size: 12px;
	padding:0px 3px 0px 30px;
}

.sidebarBox .boxContents_r{}

.sidebarBox .entryImage{
	text-align:center;
	margin:5px;
}

.sidebarBox .entryContent{
	text-align:center;
	margin:5px;
}

.sidebarBox .boxFooter {
	height:15px;	
}

.sidebarBox .boxFooter div{}

#whatsNewBox{ display:none;}
#whatsNewBox .boxHeader{}
#shoppingCartBox .boxHeader{}
#shoppingCartBox{ display:none;}
#productNoticeBox{ display:none;}
#productNoticeBox .boxHeader{}
#manufacturersBox{ display:none;}
#manufacturersBox .boxHeader{}
#categoriesBox{}
#categoriesBox .boxHeader{ text-align:right; margin-right:10px;}
#categoriesBox .boxHeader .item_pic{ text-align:right;}
#categoriesBox .boxContents{ text-align:right;}
#categoriesBox .boxContents li a{color:#1C3F95;font-family:Trebuchet MS,Verdana,Arial,sans-serif;font-size:13px; line-height:20px;}
#categoriesBox .boxContents li a:hover{color:#757A04; text-decoration:none;}
#bestSellersBox{ display:none;}
#bestSellersBox .boxHeader{}

/* infoBox-----------------------------------------------------End */


.loginBox{
	width:476px;
	margin:0 0 0 24px;
	padding:5px;
	float:left;
}

.loginBox .boxHeader {
background:#1C3F95 none repeat scroll 0 0;
color:#FFFFFF;
font-family:Arial,Helvetica,sans-serif;
font-size:11px;
font-weight:bold;
padding:5px;
}

.loginBox .boxContents {
	padding:5px;
	margin:0px 0 10px 0;
	height:100px !important;
	height:130px;
	text-align: left;
	font-size:11px;
}

.loginBox .button {
	text-align:center;
	margin-bottom:10px;
}

#shoppingCart .globalBox{
	/*border:#CCC 1px dotted;*/
	padding:20px;
	text-align:center;
	margin:10px;
}

#privacyContent .globalBox{
	/*border:#CCC 1px dotted;*/
	padding:20px;
	margin:10px;
}

#shippingContent .globalBox{
	/*border:#CCC 1px dotted;*/
	padding:20px;
	margin:10px;
}

#conditionsContent .globalBox{
	/*border:#CCC 1px dotted;*/
	padding:20px;
	margin:10px;
}

#contactusContent .globalBox{
	/*border:#CCC 1px dotted;*/
	padding:20px;
	margin:10px;
}

/* faq styles --------------------------------------------------------------start*/

#faq .questionBox {
	background-color:#eeeeee;
	border:#CCCCCC 1px solid;
	width:682px !important;
	padding:0 0 0 0 !important;
	margin:0 10 0 10px;
	padding:20px 0 0 0;
}

#faq .question { 
	padding-left:0px;
	margin-bottom:10px;
	font-weight:bold;
	line-height:24px;
	height:24px;
}

#faq .answer { 
	background-image:url(images/chat.gif);
	background-repeat:no-repeat;
	padding-left:20px;
	margin-bottom:20px;
}	
	
.toTop {
	background-image:url(images/up.gif);
	background-repeat:no-repeat;
	padding:0 0 10px 20px;
	border-bottom:1px dotted #999999;
	margin-bottom:10px;
}

/* faq styles --------------------------------------------------------------end*/

/* upcomingProducts --------------------------------------------------------start*/
#upcomingProducts .boxHeader{
	background:url(images/button.gif) no-repeat;
	height:29px;
	font-size:15px;
	color:#333333;
	padding:5px 0px 5px 20px !important;
	padding:7px 0px 5px 20px;
	margin-top:10px;
	text-align: left;
}
#upcomingProducts .boxHeader div {background:url(images/button_div.gif) no-repeat; width:5px; height:29px; float:right; margin-top:-23px !important; margin-top:-25px;}
.upcomingProducts-odd{
	background-color:#FF9;
	height:25px;
}

.upcomingProducts-even{
	background-color:#FFB;  
	height:25px;
}

#upcomingProducts .entryDate{
	margin:5px; 
	float:left;
	color:#FF9900;
}

#upcomingProducts .entryContent{
	margin:5px; 
	float:left;
}
/* upcomingProducts --------------------------------------------------------end*/
/*products_new--------------------------------------------------------------start*/
#productsNew .entry {
	height:110px !important;
	height:120px;
	width:710px !important;
	width:720px;
	border:#CCCCCC 1px dashed;
	margin:5px;
	padding:5px;	
}

#productsNew .entryImage {
	float:left;
	width:100px;
	text-align:center;
}

#productsNew .entryContent {float:left;}

#productsNew .entryButton {float:right;}
/*products_new--------------------------------------------------------------end*/

/*account-------------------------------------------------------------------start*/
#account ,#account_edit,#address_book,#account_password,#account_history,#account_newsletters,#account_notifications,#mg_address_book_detail,#account_history_info,#contactusContent{ padding-left:20px; padding-top:5px;}
#account .globalBoxHeader{background:#1C3F95 none repeat scroll 0 0;
color:#FFFFFF;
font-family:Arial,Helvetica,sans-serif;
font-size:11px;}

#account .mg_account_header{ background:url(images/identity.png) left center no-repeat; height:48px;color:#1C3F95;
font-family:Arial,Helvetica,sans-serif;font-size:11px; padding-left:50px; line-height:48px; margin-top:10px;}
#account .mg_orders_header{background: url(images/package.png) 6px center no-repeat; height:32px;color:#1C3F95;
font-family:Arial,Helvetica,sans-serif;font-size:11px; padding-left:50px; line-height:32px; margin-top:10px;}
#account .mg_email_header{ background:url(images/email.png) left center no-repeat; height:43px;color:#1C3F95;
font-family:Arial,Helvetica,sans-serif;font-size:11px; padding-left:50px; line-height:43px; margin-top:10px;}

#account .globalBox div {margin:5px 0 5px 40px;}
/*account-------------------------------------------------------------------end*/

/*account_history_info------------------------------------------------------start*/
#account_history_info .qty{float:left;margin:5px;}
#account_history_info .name{float:left;margin:5px;}
#account_history_info .option{float:left;margin:5px;}
#account_history_info .price{float:left;margin:5px;}
/*account_history_info------------------------------------------------------end*/

/*account_history------------------------------------------------------start*/
#account_history .globalBox div{float:left;margin:5px;}
/*account_history------------------------------------------------------end*/

/*address_book---------------------------------------------------------start*/
#address_book .globalBox div{margin:5px;}
#address_book .description {float:left;width:200px;}
#address_book .point {float:left;width:60px;}
#address_book .main_address {float:left;}
/*address_book---------------------------------------------------------end*/

#account_history_info #order_history div{float:left;margin:3px;}



/*new*/

.disp{
background:#EEEEEE;
color:#1C3F95;
margin:0;
padding:5px;}

.disp .pagecount{float:left;
color:#000;}


#pagesnum{
color:#1C3F95;
float:left;
font-family:Arial,Verdana,sans-serif;
font-size:12px;
font-size-adjust:none;
font-stretch:normal;
font-style:normal;
font-variant:normal;
font-weight:normal;
line-height:normal;}

#orderby{
color:#1C3F95;
float:right;
font-family:Arial,Verdana,sans-serif;
font-size:12px;
font-size-adjust:none;
font-stretch:normal;
font-style:normal;
font-variant:normal;
font-weight:normal;
line-height:normal;
}

#orderby .inputbox{
	background:#FFFFFF;
	border:1px solid #CCCCCC;
	color:#333132;
	font-family:Lucida Sans Unicode,Trebuchet MS,sans-serif;
	font-size: 12px;
	font-size-adjust:none;
	font-stretch:normal;
	font-style:normal;
	font-variant:normal;
	font-weight:normal;
	line-height:normal;
	margin:0 5px;
}



#dgad{ display:none;}
#comment_form{ width:490px; float:left; border:1px solid #CDCDCD; margin:10px 0; padding:10px;}

#index_content{ width:890px;}
.shopping_info{ background:#CCCCCC;padding:6px 6px 15px; margin-left:200px; margin-top:8px; height:20px;}
.put_in_cart{ float:right; height:20px; padding:6px 0px 6px 0px;}

/* M+G addition */

#sidebar1 h2 span{}

#sidebar1 h2.help
{
height:24px;
width:186px;
margin:0 0 20px 0;
text-align:right;
}

#sidebar1 ul li a
{
display:block;
text-align:right;
font:13px "Trebuchet MS", Verdana, Arial, sans-serif;
color:#1c3f95;
text-decoration:none;
}
#sidebar1 ul li a:hover
{
color:#757a04;
}
#sidebar1 ul li a.selected
{
color:#1169df;
}

#productBanner{}
#productBanner div{ float:left;margin:10px 50px 10px 0;}
#productBanner img{border:1px solid #CDCDCD;}


#sidebar1 #shopping-status
{
	width:135px;
	height:77px;
	/*margin:0 0 50px 0;*/
	background-image: url(images/shopping-status.gif);
	background-repeat: no-repeat;
	background-position: right top;
}
#sidebar1 #shopping-status a
{
display:block;
width:135px;
height:19px;/*expand links to fill li's*/
}
#sidebar1 #shopping-status span
{
display:none;
}
#sidebar1 #shopping-status li
{
float:left;
}
#sidebar1 #shopping-status a
{
height:20px;
}
#sidebar1 #status1 a:hover{background:url(images/shopping-status.gif) right -77px no-repeat;}
#sidebar1 #status2 a:hover{background:url(images/shopping-status.gif) right -97px no-repeat;}
#sidebar1 #status3 a:hover{background:url(images/shopping-status.gif) right -118px no-repeat;}
#sidebar1 #status4 a:hover{background:url(images/shopping-status.gif) right -138px no-repeat;}
#sidebar1 #status1 a.selected{background:url(images/shopping-status.gif) right -77px no-repeat;}
#sidebar1 #status2 a.selected{background:url(images/shopping-status.gif) right -97px no-repeat;}
#sidebar1 #status3 a.selected{background:url(images/shopping-status.gif) right -118px no-repeat;}
#sidebar1 #status4 a.selected{background:url(images/shopping-status.gif) right -138px no-repeat;}

