@charset "utf-8";
@charset "UTF-8";

/* SpryTabbedPanels.css - Revision: Spry Preview Release 1.4 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* Horizontal Tabbed Panels
 *
 * The default style for a TabbedPanels widget places all tab buttons
 * (left aligned) above the content panel.
 */

/* This is the selector for the main TabbedPanels container. For our
 * default style, this container does not contribute anything visually,
 * but it is floated left to make sure that any floating or clearing done
 * with any of its child elements are contained completely within the
 * TabbedPanels container, to minimize any impact or undesireable
 * interaction with other floated elements on the page that may be used
 * for layout.
 *
 * If you want to constrain the width of the TabbedPanels widget, set a
 * width on the TabbedPanels container. By default, the TabbedPanels widget
 * expands horizontally to fill up available space.
 *
 * The name of the class ("TabbedPanels") used in this selector is not
 * necessary to make the widget function. You can use any class name you
 * want to style the TabbedPanels container.
 */
.TabbedPanels {
	margin: 0px;
	padding: 0px;
	float: left;
	clear: none;
	width: 100%; /* IE Hack to force proper layout when preceded by a paragraph. (hasLayout Bug)*/
	z-index: 50;
	height: 140px;
}

/* This is the selector for the TabGroup. The TabGroup container houses
 * all of the tab buttons for each tabbed panel in the widget. This container
 * does not contribute anything visually to the look of the widget for our
 * default style.
 *
 * The name of the class ("TabbedPanelsTabGroup") used in this selector is not
 * necessary to make the widget function. You can use any class name you
 * want to style the TabGroup container.
 */
 
.TabbedPanelsTabGroup {
	margin: 0px;
	padding: 0px;
	z-index: 100;
}

/* This is the selector for the TabbedPanelsTab. This container houses
 * the title for the panel. This is also the tab "button" that the user clicks
 * on to activate the corresponding content panel so that it appears on top
 * of the other tabbed panels contained in the widget.
 *
 * For our default style, each tab is positioned relatively 1 pixel down from
 * where it wold normally render. This allows each tab to overlap the content
 * panel that renders below it. Each tab is rendered with a 1 pixel bottom
 * border that has a color that matches the top border of the current content
 * panel. This gives the appearance that the tab is being drawn behind the
 * content panel.
 *
 * The name of the class ("TabbedPanelsTab") used in this selector is not
 * necessary to make the widget function. You can use any class name you want
 * to style this tab container.
 */
.TabbedPanelsTab {
	position: relative;
	top: 1px;
	float: left;
	list-style: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	height: 28px;
	width: 92px;
	background-image: url(../image/unews/themepage/carb/unews_themepage_topselect_off.gif);
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-right: 1px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	z-index: 100;
	color: #FFFFFF;
	padding-top: 7px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.TabbedPanelsTab_chocolate {
	position: relative;
	top: 1px;
	float: left;
	list-style: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	height: 28px;
	width: 92px;
	background-image: url(../image/unews/themepage/chocolate/unews_themepage_topselect_off.gif);
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-right: 1px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	z-index: 100;
	color: #FFFFFF;
	padding-top: 7px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.TabbedPanelsTabSelected_chocolate {
	background-image: url(../image/unews/themepage/chocolate/unews_themepage_topselect_on.gif);
}
/* This selector is an example of how to change the appearnce of a tab button
 * container as the mouse enters it. The class "TabbedPanelsTabHover" is
 * programatically added and removed from the tab element as the mouse enters
 * and exits the container.
 */
.TabbedPanelsTabHover {
}
.TabbedPanelsTabHover_chocolate {
}

/* This selector is an example of how to change the appearance of a tab button
 * container after the user has clicked on it to activate a content panel.
 * The class "TabbedPanelsTabSelected" is programatically added and removed
 * from the tab element as the user clicks on the tab button containers in
 * the widget.
 *
 * As mentioned above, for our default style, tab buttons are positioned
 * 1 pixel down from where it would normally render. When the tab button is
 * selected, we change its bottom border to match the background color of the
 * content panel so that it looks like the tab is part of the content panel.
 */

.TabbedPanelsTabSelected {
	background-image: url(../image/unews/themepage/carb/unews_themepage_topselect_on.gif);
}


/* This selector is an example of how to make a link inside of a tab button
 * look like normal text. Users may want to use links inside of a tab button
 * so that when it gets focus, the text *inside* the tab button gets a focus
 * ring around it, instead of the focus ring around the entire tab.
 */
.TabbedPanelsTab a {
	color: #FFFFFF;
	text-decoration: none;
}

/* This is the selector for the ContentGroup. The ContentGroup container houses
 * all of the content panels for each tabbed panel in the widget. For our
 * default style, this container provides the background color and borders that
 * surround the content.
 *
 * The name of the class ("TabbedPanelsContentGroup") used in this selector is
 * not necessary to make the widget function. You can use any class name you
 * want to style the ContentGroup container.
 */
.TabbedPanelsContentGroup {
	clear: both;
	background-color: #FBF8E3;
	border: 1px solid #B19A7C;
	height: 110px;
	top: -23px;
	position: relative;
	z-index: 5;
	width: 306px;
	padding: 0px;
	margin: 0px;
}
.TabbedPanelsContentGroup_chocolate {
	clear: both;
	background-color: #FFFFFF;
	border: 1px solid #B19A7C;
	height: 110px;
	top: -23px;
	position: relative;
	z-index: 5;
	width: 306px;
	padding: 0px;
	margin: 0px;
}
/* This is the selector for the Content panel. The Content panel holds the
 * content for a single tabbed panel. For our default style, this container
 * provides some padding, so that the content is not pushed up against the
 * widget borders.
 *
 * The name of the class ("TabbedPanelsContent") used in this selector is
 * not necessary to make the widget function. You can use any class name you
 * want to style the Content container.
 */
.TabbedPanelsContent {
	padding: 4px;
}
.TabbedPanelsContent  .titlemustread{
	font-size: 15px;
	font-weight: bold;
	color: #957A58;
	width: 293px;
	padding-top: 5px;
	display: block;
	float: left;
	padding-left: 5px;
	height: 20px;
}
.TabbedPanelsContent .mustreadphoto{
	display: block;
	float: left;
	height: 72px;
	width: 152px;
	padding-left: 5px;
}
.TabbedPanelsContent .mustreadtext{
	display: block;
	float: left;
	height: 72px;
	width: ;
	padding-left: 5px;
	width: 136px;
	font-size: 12px;
	line-height: 16px;
}
/* This selector is an example of how to change the appearnce of the currently
 * active container panel. The class "TabbedPanelsContentVisible" is
 * programatically added and removed from the content element as the panel
 * is activated/deactivated.
 */
.TabbedPanelsContentVisible {
}

/* Vertical Tabbed Panels
 *
 * The following rules override some of the default rules above so that the
 * TabbedPanels widget renders with its tab buttons along the left side of
 * the currently active content panel.
 *
 * With the rules defined below, the only change that will have to be made
 * to switch a horizontal tabbed panels widget to a vertical tabbed panels
 * widget, is to use the "VTabbedPanels" class on the top-level widget
 * container element, instead of "TabbedPanels".
 */

/* This selector floats the TabGroup so that the tab buttons it contains
 * render to the left of the active content panel. A border is drawn around
 * the group container to make it look like a list container.
 */
.VTabbedPanels .TabbedPanelsTabGroup {
	float: left;
	width: 10em;
	background-color: #EEE;
	position: relative;
	border-top: solid 1px #999;
	border-right: solid 1px #999;
	border-left: solid 1px #CCC;
	border-bottom: solid 1px #CCC;
}

/* This selector disables the float property that is placed on each tab button
 * by the default TabbedPanelsTab selector rule above. It also draws a bottom
 * border for the tab. The tab button will get its left and right border from
 * the TabGroup, and its top border from the TabGroup or tab button above it.
 */
.VTabbedPanels .TabbedPanelsTab {
	float: none;
	margin: 0px;
	border-top: none;
	border-left: none;
	border-right: none;
}

/* This selector disables the float property that is placed on each tab button
 * by the default TabbedPanelsTab selector rule above. It also draws a bottom
 * border for the tab. The tab button will get its left and right border from
 * the TabGroup, and its top border from the TabGroup or tab button above it.
 */
.VTabbedPanels .TabbedPanelsTabSelected {
	background-color: #EEE;
}

/* This selector floats the content panels for the widget so that they
 * render to the right of the tabbed buttons.
 */
.VTabbedPanels .TabbedPanelsContentGroup {
	clear: none;
	float: left;
	padding: 0px;
	width: 30em;
}

/**cargo latest for theme articles end here 20091028**/
.unews_themepage_teaser {
	height: 300px;
	width: 690px;
	background-image: url(../image/unews/themepage/carb/unew_themepage_topbg_carb.gif);
	font-family: Arial, Helvetica, sans-serif;
	float: left;
	background-repeat: no-repeat;
}


.unews_themepage_teaser .left{
	float: left;
	width: 310px;
	height: 260px;
	background-image: url(../image/unews/themepage/carb/unews_themepage_carbop.jpg);
	background-repeat: no-repeat;
	background-position: right 5px;
	padding-top: 15px;
	padding-right: 15px;
	padding-left: 15px;
	
}

.unews_themepage_teaser .left .title {
	text-align:left;
	font-size:17px;
	color:#5F4E38;
	font-weight:bold;
	overflow:hidden;
	line-height:150%;
	width: 200px;
}
.unews_themepage_teaser .left .lead {
	text-align:left;
	font-size:12px;
	color:#5F4E38;
	overflow:hidden;
	line-height:150%;
	width: 195px;
	margin-top: 10px;
	margin-left: 5px;
}

.unews_themepage_teaser .right{
	float: right;
	width: 320px;
	padding-top: 23px;
	padding-right: 18px;
	padding-left: 12px;
	
}
.unews_themepage_teaser .right .title{
	font-size: 17px;
	line-height: 150%;
	color: #957A58;
	font-weight: bold;
	margin-top: 15px;

	
}
.unews_themepage_teaser .right .lead{
	font-size: 12px;
	color: #5B5B5B;
	line-height: 150%;
}
.unews_themepage_teaser .right .lead a:link{
	font-weight: bold;
}
.unews_themepage_teaser_sub {
	height: 240px;
	width: 660px;
	background-image: url(../image/unews/themepage/carb/unews_themepage_subhead_bg.gif);
	font-family: Arial, Helvetica, sans-serif;
	float: left;
	padding: 15px;
}

.unews_themepage_teaser_sub .left{
	float: left;
	width: 310px;
	padding-top: 10px;
	padding-right: 10px;
	padding-left: 10px;
}
.unews_themepage_teaser_sub .title{
	font-size: 17px;
	line-height: 150%;
	color: #957A58;
	font-weight: bold;
	margin-top: 10px;
}
.unews_themepage_teaser_sub  .lead{
	font-size: 12px;
	color: #5B5B5B;
	line-height: 150%;
}
.unews_themepage_teaser_sub  .lead a:link{
	font-weight: bold;
	}
.unews_themepage_newsall{
	padding: 5px;
	width: 680px;
	display: block;
	float: left;
}
.unews_themepage_newsall_toptitle{
	background-image: url(../image/unews/themepage/carb/unews_themepage_newstopbanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	color: #FFFFFF;
	padding-left: 10px;
	font-size: 12px;
	font-weight: bold;
	padding-top: 4px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.unews_themepage_newsall_bottombar{
	background-image: url(../image/unews/themepage/carb/unews_themepage_newsbottombanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	font-size: 11px;
	padding-top: 2px;
	text-align: right;
	padding-right: 10px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.unews_themepage_shopall{
	padding: 5px;
	display: block;
	float: left;
}
.unews_themepage_carbcolor{
	color: #957A58;
}
.unews_themepage_carbcolor a:link{
	color: #957A58;
}
a.write_review_carb {
	padding-left:20px;
	display:block;
	float:left;
	color:#957A58;
	background-image: url(../image/unews/themepage/carb/writereviewicon_carb.gif);
	background-repeat: no-repeat;
}
a.write_review_carb_onlycolor {
	color:#957A58;
}

/*chocolate themepage*/




.unews_themepage_teaser_chocolate {
	height: 300px;
	width: 690px;
	font-family: Arial, Helvetica, sans-serif;
	float: left;
	background-repeat: no-repeat;
}

.unews_themepage_teaser_chocolate .left{
	float: left;
	width: 310px;
	height: 260px;
	background-image: url(../image/unews/themepage/chocolate/unews_themepage_carbop.jpg).jpg);
	background-repeat: no-repeat;
	background-position: right 5px;
	padding-top: 15px;
	padding-right: 15px;
	padding-left: 15px;
	
}

.unews_themepage_teaser_chocolate .left .title {
	text-align:left;
	font-size:17px;
	color:#5F4E38;
	font-weight:bold;
	overflow:hidden;
	line-height:150%;
	width: 200px;
}
.unews_themepage_teaser_chocolate .left .lead {
	text-align:left;
	font-size:12px;
	color:#5F4E38;
	overflow:hidden;
	line-height:150%;
	width: 195px;
	margin-top: 10px;
	margin-left: 5px;
}

.unews_themepage_teaser_chocolate .right{
	float: right;
	width: 320px;
	padding-top: 23px;
	padding-right: 18px;
	padding-left: 12px;
	
}
.unews_themepage_teaser_chocolate .right .title{
	font-size: 17px;
	line-height: 150%;
	color: #957A58;
	font-weight: bold;
	margin-top: 15px;

	
}
.unews_themepage_teaser_chocolate .right .lead{
	font-size: 12px;
	color: #5B5B5B;
	line-height: 150%;
}
.unews_themepage_teaser_chocolate .right .lead a:link{
	font-weight: bold;
}
.unews_themepage_teaser_sub_chocolate {
	height: 240px;
	width: 660px;
		font-family: Arial, Helvetica, sans-serif;
	float: left;
	padding: 15px;
}

.unews_themepage_teaser_sub_chocolate .left{
	float: left;
	width: 310px;
	padding-top: 10px;
	padding-right: 10px;
	padding-left: 10px;
}
.unews_themepage_teaser_sub_chocolate .title{
	font-size: 17px;
	line-height: 150%;
	color: #957A58;
	font-weight: bold;
	margin-top: 10px;
}
.unews_themepage_teaser_sub_chocolate .lead{
	font-size: 12px;
	color: #5B5B5B;
	line-height: 150%;
}
.unews_themepage_teaser_sub_chocolate .lead a:link{
	font-weight: bold;
	}
.unews_themepage_newsall{
	padding: 5px;
	width: 680px;
	display: block;
	float: left;
}
.unews_themepage_newsall_toptitle_chocolate{
	background-image: url(../image/unews/themepage/chocolate/unews_themepage_newstopbanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	color: #FFFFFF;
	padding-left: 10px;
	font-size: 12px;
	font-weight: bold;
	padding-top: 4px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.unews_themepage_newsall_bottombar_chocolate{
	background-image: url(../image/unews/themepage/chocolate/unews_themepage_newsbottombanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	font-size: 11px;
	padding-top: 2px;
	text-align: right;
	padding-right: 10px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.unews_themepage_shopall{
	padding: 5px;
	display: block;
	float: left;
}
.unews_themepage_chocolatecolor{
	color: #6D524E;
}
.unews_themepage_chocolatecolor a:link{
	color: #6D524E;
}
a.write_review_chocolate {
	padding-left:20px;
	display:block;
	float:left;
	color:#6D524E;
	background-image: url(../image/unews/themepage/chocolate/writereviewicon_chocolate.gif);
	background-repeat: no-repeat;
}
a.write_review_chocolate_onlycolor {
	color:#6D524E;
}



/*italian themepage*/


.unews_themepage_italiancolor{
	color: #267600;
}
.unews_themepage_italiancolor a:link{
	color: #267600;
}
a.write_review_italian {
	padding-left:20px;
	display:block;
	float:left;
	color:#3DBA00;
	background-image: url(../image/unews/themepage/italian/writereviewicon_italian.gif);
	background-repeat: no-repeat;
}
a.write_review_italian_onlycolor {
	color:#267600;
}
.unews_themepage_newsall_toptitle_italian{
	background-image: url(../image/unews/themepage/italian/unews_themepage_newstopbanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	color: #FFFFFF;
	padding-left: 10px;
	font-size: 12px;
	font-weight: bold;
	padding-top: 4px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.unews_themepage_newsall_bottombar_italian{
	background-image: url(../image/unews/themepage/italian/unews_themepage_newsbottombanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	font-size: 11px;
	padding-top: 2px;
	text-align: right;
	padding-right: 10px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.TabbedPanelsTab_italian {
	position: relative;
	top: 1px;
	float: left;
	list-style: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	height: 28px;
	width: 92px;
	background-image: url(../image/unews/themepage/italian/unews_themepage_topselect_off.gif);
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-right: 1px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	z-index: 100;
	color: #FFFFFF;
	padding-top: 7px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.TabbedPanelsTabSelected_italian {
	background-image: url(../image/unews/themepage/italian/unews_themepage_topselect_on.gif);
}
.TabbedPanelsContentGroup_italian {
	clear: both;
	background-color: #F2FFEC;
	border: 1px solid #3DBA00;
	height: 110px;
	top: -23px;
	position: relative;
	z-index: 5;
	width: 306px;
	padding: 0px;
	margin: 0px;
}


/*oyster themepage*/


.unews_themepage_oystercolor{
	color: #217174;
}
.unews_themepage_oystercolor a:link{
	color: #217174;
}
a.write_review_oyster {
	padding-left:20px;
	display:block;
	float:left;
	color:#4BB2B6;
	background-image: url(../image/unews/themepage/oyster/writereviewicon_oyster.gif);
	background-repeat: no-repeat;
}
a.write_review_oyster_onlycolor {
	color:#217174;
}
.unews_themepage_newsall_toptitle_oyster{
	background-image: url(../image/unews/themepage/oyster/unews_themepage_newstopbanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	color: #FFFFFF;
	padding-left: 10px;
	font-size: 12px;
	font-weight: bold;
	padding-top: 4px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.unews_themepage_newsall_bottombar_oyster{
	background-image: url(../image/unews/themepage/oyster/unews_themepage_newsbottombanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	font-size: 11px;
	padding-top: 2px;
	text-align: right;
	padding-right: 10px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.TabbedPanelsTab_oyster {
	position: relative;
	top: 1px;
	float: left;
	list-style: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	height: 28px;
	width: 92px;
	background-image: url(../image/unews/themepage/oyster/unews_themepage_topselect_off.gif);
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-right: 1px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	z-index: 100;
	color: #FFFFFF;
	padding-top: 7px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.TabbedPanelsTabSelected_oyster {
	background-image: url(../image/unews/themepage/oyster/unews_themepage_topselect_on.gif);
}
.TabbedPanelsContentGroup_oyster {
	clear: both;
	background-color: #F2F9FD;
	border: 1px solid #34B2B7;
	height: 110px;
	top: -23px;
	position: relative;
	z-index: 5;
	width: 306px;
	padding: 0px;
	margin: 0px;
}

/*chinoodle themepage*/


.unews_themepage_chinoodlecolor{
	color: #94575D;
}
.unews_themepage_chinoodlecolor a:link{
	color: #94575D;
}
a.write_review_chinoodle {
	padding-left:20px;
	display:block;
	float:left;
	color:#AC575F;
	background-image: url(../image/unews/themepage/chinoodle/writereviewicon_chinoodle.gif);
	background-repeat: no-repeat;
}
a.write_review_chinoodle_onlycolor {
	color:#94575D;
}
.unews_themepage_newsall_toptitle_chinoodle{
	background-image: url(../image/unews/themepage/chinoodle/unews_themepage_newstopbanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	color: #FFFFFF;
	padding-left: 10px;
	font-size: 12px;
	font-weight: bold;
	padding-top: 4px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.unews_themepage_newsall_bottombar_chinoodle{
	background-image: url(../image/unews/themepage/chinoodle/unews_themepage_newsbottombanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	font-size: 11px;
	padding-top: 2px;
	text-align: right;
	padding-right: 10px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.TabbedPanelsTab_chinoodle {
	position: relative;
	top: 1px;
	float: left;
	list-style: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	height: 28px;
	width: 92px;
	background-image: url(../image/unews/themepage/chinoodle/unews_themepage_topselect_off.gif);
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-right: 1px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	z-index: 100;
	color: #FFFFFF;
	padding-top: 7px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.TabbedPanelsTabSelected_chinoodle {
	background-image: url(../image/unews/themepage/chinoodle/unews_themepage_topselect_on.gif);
}
.TabbedPanelsContentGroup_chinoodle {
	clear: both;
	background-color: #F9F2EC;
	border: 1px solid #94575D;
	height: 110px;
	top: -23px;
	position: relative;
	z-index: 5;
	width: 306px;
	padding: 0px;
	margin: 0px;
}

/*bbq themepage*/


.unews_themepage_bbqcolor{
	color: #736784;
}
.unews_themepage_bbqcolor a:link{
	color: #736784;
}
a.write_review_bbq {
	padding-left:20px;
	display:block;
	float:left;
	color:#7D6D96;
	background-image: url(../image/unews/themepage/bbq/writereviewicon_bbq.gif);
	background-repeat: no-repeat;
}
a.write_review_bbq_onlycolor {
	color:#736784;
}
.unews_themepage_newsall_toptitle_bbq{
	background-image: url(../image/unews/themepage/bbq/unews_themepage_newstopbanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	color: #FFFFFF;
	padding-left: 10px;
	font-size: 12px;
	font-weight: bold;
	padding-top: 4px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.unews_themepage_newsall_bottombar_bbq{
	background-image: url(../image/unews/themepage/bbq/unews_themepage_newsbottombanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	font-size: 11px;
	padding-top: 2px;
	text-align: right;
	padding-right: 10px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.TabbedPanelsTab_bbq {
	position: relative;
	top: 1px;
	float: left;
	list-style: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	height: 28px;
	width: 92px;
	background-image: url(../image/unews/themepage/bbq/unews_themepage_topselect_off.gif);
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-right: 1px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	z-index: 100;
	color: #FFFFFF;
	padding-top: 7px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.TabbedPanelsTabSelected_bbq {
	background-image: url(../image/unews/themepage/bbq/unews_themepage_topselect_on.gif);
}
.TabbedPanelsContentGroup_bbq {
	clear: both;
	background-color: #F5EFF8;
	border: 1px solid #736784;
	height: 110px;
	top: -23px;
	position: relative;
	z-index: 5;
	width: 306px;
	padding: 0px;
	margin: 0px;
}

/*soup themepage*/


.unews_themepage_soupcolor{
	color: #CD9E1E;
}
.unews_themepage_soupcolor a:link{
	color: #CD9E1E;
}
a.write_review_soup {
	padding-left:20px;
	display:block;
	float:left;
	color:#AD8858;
	background-image: url(../image/unews/themepage/soup/writereviewicon_soup.gif);
	background-repeat: no-repeat;
}
a.write_review_soup_onlycolor {
	color:#CD9E1E;
}
.unews_themepage_newsall_toptitle_soup{
	background-image: url(../image/unews/themepage/soup/unews_themepage_newstopbanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	color: #FFFFFF;
	padding-left: 10px;
	font-size: 12px;
	font-weight: bold;
	padding-top: 4px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.unews_themepage_newsall_bottombar_soup{
	background-image: url(../image/unews/themepage/soup/unews_themepage_newsbottombanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	font-size: 11px;
	padding-top: 2px;
	text-align: right;
	padding-right: 10px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.TabbedPanelsTab_soup {
	position: relative;
	top: 1px;
	float: left;
	list-style: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	height: 28px;
	width: 92px;
	background-image: url(../image/unews/themepage/soup/unews_themepage_topselect_off.gif);
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-right: 1px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	z-index: 100;
	color: #FFFFFF;
	padding-top: 7px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.TabbedPanelsTabSelected_soup {
	background-image: url(../image/unews/themepage/soup/unews_themepage_topselect_on.gif);
}
.TabbedPanelsContentGroup_soup {
	clear: both;
	background-color: #FCFEE2;
	border: 1px solid #CD9E1E;
	height: 110px;
	top: -23px;
	position: relative;
	z-index: 5;
	width: 306px;
	padding: 0px;
	margin: 0px;
}

/*hotpot themepage*/


.unews_themepage_hotpotcolor{
	color: #CC6633;
}
.unews_themepage_hotpotcolor a:link{
	color: #94575D;
}
a.write_review_hotpot {
	padding-left:20px;
	display:block;
	float:left;
	color:#CC6633;
	background-image: url(../image/unews/themepage/hotpot/writereviewicon_hotpot.gif);
	background-repeat: no-repeat;
}
a.write_review_hotpot_onlycolor {
	color:#CC6633;
}
.unews_themepage_newsall_toptitle_hotpot{
	background-image: url(../image/unews/themepage/hotpot/unews_themepage_newstopbanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	color: #CC6633;
	padding-left: 10px;
	font-size: 12px;
	font-weight: bold;
	padding-top: 4px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.unews_themepage_newsall_bottombar_hotpot{
	background-image: url(../image/unews/themepage/chinoodle/unews_themepage_newsbottombanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	font-size: 11px;
	padding-top: 2px;
	text-align: right;
	padding-right: 10px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.TabbedPanelsTab_hotpot {
	position: relative;
	top: 1px;
	float: left;
	list-style: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	height: 28px;
	width: 92px;
	background-image: url(../image/unews/themepage/hotpot/unews_themepage_topselect_off.gif);
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-right: 1px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	z-index: 100;
	color: #FFFFFF;
	padding-top: 7px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.TabbedPanelsTabSelected_hotpot {
	background-image: url(../image/unews/themepage/hotpot/unews_themepage_topselect_on.gif);
}
.TabbedPanelsContentGroup_hotpot {
	clear: both;
	background-color: #F9F1EC;
	border: 1px solid #94575D;
	height: 110px;
	top: -23px;
	position: relative;
	z-index: 5;
	width: 306px;
	padding: 0px;
	margin: 0px;
}

/*ppl themepage start*/


.unews_themepage_pplcolor{
	color: #916F26;
}
.unews_themepage_pplcolor a:link{
	color: #916F26;
}
.unews_themepage_pplsupcontainer{
	width:690px;
	height:1170px;
	float: left;
	display: block;
	margin: 0px;
	padding: 0px;
}
.unews_themepage_pplsupcontainer .topbanner_ppl{
	height:15px;
	width:690px;
	background-image: url(../image/unews/themepage/ppl/unew_themepage_topsub_ppl.gif);
	background-repeat: no-repeat;
	display: block;
	float: left;
	margin: 0px;
	padding: 0px;
}
.unews_themepage_pplsupcontainer .middlebanner_ppl{
	width:660px;
	background-image: url(../image/unews/themepage/ppl/unew_themepage_middlesub_ppl.gif);
	background-repeat: repeat-y;
	display: block;
	padding-right: 15px;
	padding-left: 15px;
	margin-top: 15px;
	float: left;
	height: 1155px;
}
.unews_themepage_pplsupcontainer .bottombanner_ppl{
	width:690px;
	background-image: url(../image/unews/themepage/ppl/unew_themepage_bottomsub_ppl.gif);
	float: left;
	height: 15px;
	background-repeat: no-repeat;
	display: block;
}
a.write_review_ppl_onlycolor {
	color: #916F26;
}
/*ppl themepage end*/

/*buffet themepage start*/
.unews_themepage_buffetcolor{
	color: #B94946;
}
.unews_themepage_buffetcolor a:link{
	color: #B94946;
}
.unews_themepage_buffetsupcontainer{
	width:690px;
	height:1170px;
	float: left;
	display: block;
	margin: 0px;
	padding: 0px;
}
a.write_review_buffet_onlycolor {
	color:#B94946;
}



/*japan themepage*/


.unews_themepage_japancolor{
	color: #4F5540;
}
.unews_themepage_japancolor a:link{
	color: #4F5540;
}
a.write_review_japan {
	padding-left:20px;
	display:block;
	float:left;
	color:#8B996A;
	background-image: url(../image/unews/themepage/japan/writereviewicon_japan.gif);
	background-repeat: no-repeat;
}
a.write_review_japan_onlycolor {
	color:#4F5540;
}
.unews_themepage_newsall_toptitle_japan{
	background-image: url(../image/unews/themepage/japan/unews_themepage_newstopbanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	color: #FFFFFF;
	padding-left: 10px;
	font-size: 12px;
	font-weight: bold;
	padding-top: 4px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.unews_themepage_newsall_bottombar_japan{
	background-image: url(../image/unews/themepage/japan/unews_themepage_newsbottombanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	font-size: 11px;
	padding-top: 2px;
	text-align: right;
	padding-right: 10px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.TabbedPanelsTab_japan {
	position: relative;
	top: 1px;
	float: left;
	list-style: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	height: 28px;
	width: 92px;
	background-image: url(../image/unews/themepage/japan/unews_themepage_topselect_off.gif);
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-right: 1px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	z-index: 100;
	color: #FFFFFF;
	padding-top: 7px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.TabbedPanelsTabSelected_japan {
	background-image: url(../image/unews/themepage/japan/unews_themepage_topselect_on.gif);
}
.TabbedPanelsContentGroup_japan {
	clear: both;
	background-color: #EFF5EB;
	border: 1px solid #7C8665;
	height: 110px;
	top: -23px;
	position: relative;
	z-index: 5;
	width: 306px;
	padding: 0px;
	margin: 0px;
}

/*beef themepage*/


.unews_themepage_beefcolor{
	color: #640021;
}
.unews_themepage_beefcolor a:link{
	color: #640021;
}
a.write_review_beef {
	padding-left:20px;
	display:block;
	float:left;
	color:#937C70;
	background-image: url(../image/unews/themepage/beef/writereviewicon_beef.gif);
	background-repeat: no-repeat;
}
a.write_review_beef_onlycolor {
	color:#640021;
}
.unews_themepage_newsall_toptitle_beef{
	background-image: url(../image/unews/themepage/beef/unews_themepage_newstopbanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	color: #FFFFFF;
	padding-left: 10px;
	font-size: 12px;
	font-weight: bold;
	padding-top: 4px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.unews_themepage_newsall_bottombar_beef{
	background-image: url(../image/unews/themepage/beef/unews_themepage_newsbottombanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	font-size: 11px;
	padding-top: 2px;
	text-align: right;
	padding-right: 10px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.TabbedPanelsTab_beef {
	position: relative;
	top: 1px;
	float: left;
	list-style: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	height: 28px;
	width: 92px;
	background-image: url(../image/unews/themepage/beef/unews_themepage_topselect_off.gif);
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-right: 1px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	z-index: 100;
	color: #FFFFFF;
	padding-top: 7px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.TabbedPanelsTabSelected_beef {
	background-image: url(../image/unews/themepage/beef/unews_themepage_topselect_on.gif);
}
.TabbedPanelsContentGroup_beef {
	clear: both;
	background-color: #F4F2EC;
	border: 1px solid #827269;
	height: 110px;
	top: -23px;
	position: relative;
	z-index: 5;
	width: 306px;
	padding: 0px;
	margin: 0px;
}

/*cnyrice themepage start*/


.unews_themepage_cnyricecolor{
	color: #640203;
}
.unews_themepage_cnyricecolor a:link{
	color: #B1444A;
}
.unews_themepage_cnyricesupcontainer{
	width:690px;
	height:740px;
	float: left;
	display: block;
	margin: 0px;
	padding: 0px;
}
.unews_themepage_cnyricesupcontainer .topbanner_cnyrice{
	height:15px;
	width:690px;
	background-image: url(../image/unews/themepage/cny-rice/unew_themepage_topsub_ppl.gif);
	background-repeat: no-repeat;
	display: block;
	float: left;
	margin: 0px;
	padding: 0px;
}
.unews_themepage_cnyricesupcontainer .middlebanner_cnyrice{
	width:660px;
	background-image: url(../image/unews/themepage/cny-rice/unew_themepage_middlesub_ppl.gif);
	background-repeat: repeat-y;
	display: block;
	padding-right: 15px;
	padding-left: 15px;
	margin-top: 15px;
	float: left;
	height: 710px;
}
.unews_themepage_cnyricesupcontainer .middlebanner_cnyrice .part{
	width:212px;
	height:140px;
	font-size:12px;


	color:#640203
	float:left; 		color: #640203;
	padding-right: 4px;
	padding-left: 4px;
	float: left;
}

.unews_themepage_cnyricesupcontainer .bottombanner_cnyrice{
	width:690px;
	background-image: url(../image/unews/themepage/cny-rice/unew_themepage_bottomsub_ppl.gif);
	float: left;
	height: 15px;
	background-repeat: no-repeat;
	display: block;
}
a.write_review_cnyrice_onlycolor {
	color: #C34A50;
}
a.write_review_cnyrice_onlycolor2 {
	color: #640203;
}
.unews_themepage_newsall_toptitle_cnyrice{
	background-image: url(../image/unews/themepage/cny-rice/unews_themepage_newstopbanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	color: #FFFFFF;
	padding-left: 10px;
	font-size: 12px;
	font-weight: bold;
	padding-top: 4px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.unews_themepage_newsall_bottombar_cnyrice{
	background-image: url(../image/unews/themepage/cny-rice/unews_themepage_newsbottombanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	font-size: 11px;
	padding-top: 2px;
	text-align: right;
	padding-right: 10px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
a.write_review_cnyrice {
	padding-left:20px;
	display:block;
	float:left;
	color:#C34A50;
	background-image: url(../image/unews/themepage/cny-rice/writereviewicon_cnyrice.gif);
	background-repeat: no-repeat;
}

/*cnyrice themepage end*/

/*vday themepage start*/


.unews_themepage_vdaycolor{
	color: #C34A50;
}
.unews_themepage_vdaycolor a:link{
	color: #C34A50;
}
.unews_themepage_vdaysupcontainer{
	width:690px;
	height:1160px;
	float: left;
	display: block;
	margin: 0px;
	padding: 0px;
}
.unews_themepage_vdaysupcontainer .topbanner_vday{
	height:15px;
	width:690px;
	background-image: url(../image/unews/themepage/vday/unew_themepage_topsub_vday.gif);
	background-repeat: no-repeat;
	display: block;
	float: left;
	margin: 0px;
	padding: 0px;
}
.unews_themepage_vdaysupcontainer .middlebanner_vday{
	width:660px;
	background-image: url(../image/unews/themepage/vday/unew_themepage_middlesub_vday.gif);
	background-repeat: repeat-y;
	display: block;
	padding-right: 15px;
	padding-left: 15px;
	margin-top: 15px;
	float: left;
	height: 1130px;
}
.unews_themepage_vdaysupcontainer .middlebanner_vday .part{
	width:212px;
	height:140px;
	font-size:12px;




	color:#640203
	float:left; 				color: #D76093;
	padding-right: 4px;
	padding-left: 4px;
	float: left;
}

.unews_themepage_vdaysupcontainer .bottombanner_vday{
	width:690px;
	background-image: url(../image/unews/themepage/vday/unew_themepage_bottomsub_vday.gif);
	float: left;
	height: 15px;
	background-repeat: no-repeat;
	display: block;
}
a.write_review_vday_onlycolor {
	color: #C34A50;
}
a.write_review_vday_onlycolor2 {
	color: #C34A50;
}
.unews_themepage_newsall_toptitle_vday{
	background-image: url(../image/unews/themepage/vday/unews_themepage_newstopbanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	color: #FFFFFF;
	padding-left: 10px;
	font-size: 12px;
	font-weight: bold;
	padding-top: 4px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.unews_themepage_newsall_bottombar_vday{
	background-image: url(../image/unews/themepage/vday/unews_themepage_newsbottombanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	font-size: 11px;
	padding-top: 2px;
	text-align: right;
	padding-right: 10px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
a.write_review_vday {
	padding-left:20px;
	display:block;
	float:left;
	color:#C34A50;
	background-image: url(../image/unews/themepage/cny-rice/writereviewicon_cnyrice.gif);
	background-repeat: no-repeat;
}

/*vday themepage end*/


/*cnycake themepage start*/


.unews_themepage_cnycakecolor{
	color: #CC0000;
}
.unews_themepage_cnycakecolor a:link{
	color: #CC0000;
}
.unews_themepage_cnycakesupcontainer{
	width:690px;
	height:610px;
	float: left;
	display: block;
	margin: 0px;
	padding: 0px;
}
.unews_themepage_cnycakesupcontainer .topbanner_cnycake{
	height:15px;
	width:690px;
	background-image: url(../image/unews/themepage/cny-cake/unew_themepage_topsub_cnycake.gif);
	background-repeat: no-repeat;
	display: block;
	float: left;
	margin: 0px;
	padding: 0px;
}
.unews_themepage_cnycakesupcontainer .middlebanner_cnycake{
	width:660px;
	background-image: url(../image/unews/themepage/cny-cake/unew_themepage_middlesub_cnycake.gif);
	background-repeat: repeat-y;
	display: block;
	padding-right: 15px;
	padding-left: 15px;
	margin-top: 15px;
	float: left;
	height: 580px;
}
.unews_themepage_cnycakesupcontainer .middlebanner_cnycake .part{
	width:212px;
	height:140px;
	font-size:12px;
	color:#640203
	float:left; 				
	color: #D76093;
	padding-right: 4px;
	padding-left: 4px;
	float: left;
}

.unews_themepage_cnycakesupcontainer .bottombanner_cnycake{
	width:690px;
	background-image: url(../image/unews/themepage/cny-cake/unew_themepage_bottomsub_cnycake.gif);
	float: left;
	height: 15px;
	background-repeat: no-repeat;
	display: block;
}
a.write_review_cnycake_onlycolor {
	color: #CC0000;
}
a.write_review_cnycake_onlycolor2 {
	color: #CC0000;
}
.unews_themepage_newsall_toptitle_cnycake{
	background-image: url(../image/unews/themepage/cny-cake/unews_themepage_newstopbanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	color: #FFFFFF;
	padding-left: 10px;
	font-size: 12px;
	font-weight: bold;
	padding-top: 4px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.unews_themepage_newsall_bottombar_cnycake{
	background-image: url(../image/unews/themepage/cny-cake/unews_themepage_newsbottombanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	font-size: 11px;
	padding-top: 0px;
	text-align: right;
	padding-right: 10px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
a.write_review_cnycake {
	padding-left:20px;
	display:block;
	float:left;
	color:#C34A50;
	background-image: url(../image/unews/themepage/cny-rice/writereviewicon_cnyrice.gif);
	background-repeat: no-repeat;
}

/*cnycake themepage end*/

/*veggie themepage start*/
.unews_themepage_veggiecolor{
	color: #6B9213;
}
.unews_themepage_veggiecolor a:link{
	color: #6B9213;
}
a.write_review_veggie {
	padding-left:20px;
	display:block;
	float:left;
	color:#6B9213;
	background-image: url(../image/unews/themepage/veggie/writereviewicon_veggie.gif);
	background-repeat: no-repeat;
}
a.write_review_veggie_onlycolor {
	color:#6B9213;
}
.unews_themepage_newsall_toptitle_veggie{
	background-image: url(../image/unews/themepage/veggie/unews_themepage_newstopbanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	color: #FFFFFF;
	padding-left: 10px;
	font-size: 12px;
	font-weight: bold;
	padding-top: 4px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.unews_themepage_newsall_bottombar_veggie{
	background-image: url(../image/unews/themepage/veggie/unews_themepage_newsbottombanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	font-size: 11px;
	padding-top: 2px;
	text-align: right;
	padding-right: 10px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.TabbedPanelsTab_veggie {
	position: relative;
	top: 1px;
	float: left;
	list-style: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	height: 28px;
	width: 92px;
	background-image: url(../image/unews/themepage/veggie/unews_themepage_topselect_off.gif);
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-right: 1px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	z-index: 100;
	color: #FFFFFF;
	padding-top: 7px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.TabbedPanelsTabSelected_veggie {
	background-image: url(../image/unews/themepage/veggie/unews_themepage_topselect_on.gif);
}
.TabbedPanelsContentGroup_veggie {
	clear: both;
	background-color: #F8FBEA;
	border: 1px solid #8F9B4E;
	height: 110px;
	top: -23px;
	position: relative;
	z-index: 5;
	width: 306px;
	padding: 0px;
	margin: 0px;
}
/*veggie themepage end*/

/*spicy themepage start*/
.unews_themepage_spicycolor{
	color: #B85651;
}
.unews_themepage_spicycolor a:link{
	color: #B85651;
}
a.write_review_spicy {
	padding-left:20px;
	display:block;
	float:left;
	color:#B85651;
	background-image: url(../image/unews/themepage/spicy/writereviewicon_spicy.gif);
	background-repeat: no-repeat;
}
a.write_review_spicy_onlycolor {
	color:#B85651;
}
.unews_themepage_newsall_toptitle_spicy{
	background-image: url(../image/unews/themepage/spicy/unews_themepage_newstopbanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	color: #FFFFFF;
	padding-left: 10px;
	font-size: 12px;
	font-weight: bold;
	padding-top: 4px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.unews_themepage_newsall_bottombar_spicy{
	background-image: url(../image/unews/themepage/spicy/unews_themepage_newsbottombanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	font-size: 11px;
	padding-top: 2px;
	text-align: right;
	padding-right: 10px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.TabbedPanelsTab_spicy {
	position: relative;
	top: 1px;
	float: left;
	list-style: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	height: 28px;
	width: 92px;
	background-image: url(../image/unews/themepage/spicy/unews_themepage_topselect_off.gif);
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-right: 1px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	z-index: 100;
	color: #FFFFFF;
	padding-top: 7px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.TabbedPanelsTabSelected_spicy {
	background-image: url(../image/unews/themepage/spicy/unews_themepage_topselect_on.gif);
}
.TabbedPanelsContentGroup_spicy {
	clear: both;
	background-color: #FCF1EB;
	border: 1px solid #B85651;
	height: 110px;
	top: -23px;
	position: relative;
	z-index: 5;
	width: 306px;
	padding: 0px;
	margin: 0px;
}
/*spicy themepage end*/


/*blunch themepage start*/
.unews_themepage_blunchcolor{
	color: #527A8B;
}
.unews_themepage_blunchcolor a:link{
	color: #527A8B;
}
a.write_review_blunch {
	padding-left:20px;
	display:block;
	float:left;
	color:#527A8B;
	background-image: url(../image/unews/themepage/blunch/writereviewicon_blunch.gif);
	background-repeat: no-repeat;
}
a.write_review_blunch_onlycolor {
	color:#527A8B;
}
.unews_themepage_newsall_toptitle_blunch{
	background-image: url(../image/unews/themepage/blunch/unews_themepage_newstopbanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	color: #FFFFFF;
	padding-left: 10px;
	font-size: 12px;
	font-weight: bold;
	padding-top: 4px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.unews_themepage_newsall_bottombar_blunch{
	background-image: url(../image/unews/themepage/blunch/unews_themepage_newsbottombanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	font-size: 11px;
	padding-top: 2px;
	text-align: right;
	padding-right: 10px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.TabbedPanelsTab_blunch {
	position: relative;
	top: 1px;
	float: left;
	list-style: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	height: 28px;
	width: 92px;
	background-image: url(../image/unews/themepage/blunch/unews_themepage_topselect_off.gif);
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-right: 1px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	z-index: 100;
	color: #FFFFFF;
	padding-top: 7px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.TabbedPanelsTabSelected_blunch {
	background-image: url(../image/unews/themepage/blunch/unews_themepage_topselect_on.gif);
}
.TabbedPanelsContentGroup_blunch {
	clear: both;
	background-color: #E9EFFC;
	border: 1px solid #749CAD;
	height: 110px;
	top: -23px;
	position: relative;
	z-index: 5;
	width: 306px;
	padding: 0px;
	margin: 0px;
}
.unews_themepage_blunchsupcontainer{
	width:690px;
	height:740px;
	float: left;
	display: block;
	margin: 0px;
	padding: 0px;
}
.unews_themepage_blunchsupcontainer .topbanner_blunch{
	height:15px;
	width:690px;
	background-image: url(../image/unews/themepage/blunch/unew_themepage_topsub_ppl.gif);
	background-repeat: no-repeat;
	display: block;
	float: left;
	margin: 0px;
	padding: 0px;
}
.unews_themepage_blunchsupcontainer .middlebanner_blunch{
	width:660px;
	background-image: url(../image/unews/themepage/blunch/unew_themepage_middlesub_ppl.gif);
	background-repeat: repeat-y;
	display: block;
	padding-right: 15px;
	padding-left: 15px;
	margin-top: 15px;
	float: left;
	height: 710px;
}
.unews_themepage_blunchsupcontainer .middlebanner_blunch .part{
	width:212px;
	height:140px;
	font-size:12px;


	color:#640203
	float:left; 		color: #640203;
	padding-right: 4px;
	padding-left: 4px;
	float: left;
}

.unews_themepage_blunchsupcontainer .bottombanner_blunch{
	width:690px;
	background-image: url(../image/unews/themepage/blunch/unew_themepage_bottomsub_ppl.gif);
	float: left;
	height: 15px;
	background-repeat: no-repeat;
	display: block;
}
/*blunch themepage end*/

/*chiuchow themepage start*/
.unews_themepage_chiuchowcolor{
	color: #946F57;
}
.unews_themepage_chiuchowcolor a:link{
	color: #946F57;
}
a.write_review_chiuchow {
	padding-left:20px;
	display:block;
	float:left;
	color:#946F57;
	background-image: url(../image/unews/themepage/chiuchow/writereviewicon_chiuchow.gif);
	background-repeat: no-repeat;
}
a.write_review_chiuchow_onlycolor {
	color:#946F57;
}
.unews_themepage_newsall_toptitle_chiuchow{
	background-image: url(../image/unews/themepage/chiuchow/unews_themepage_newstopbanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	color: #FFFFFF;
	padding-left: 10px;
	font-size: 12px;
	font-weight: bold;
	padding-top: 4px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.unews_themepage_newsall_bottombar_chiuchow{
	background-image: url(../image/unews/themepage/chiuchow/unews_themepage_newsbottombanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	font-size: 11px;
	padding-top: 2px;
	text-align: right;
	padding-right: 10px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.TabbedPanelsTab_chiuchow {
	position: relative;
	top: 1px;
	float: left;
	list-style: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	height: 28px;
	width: 92px;
	background-image: url(../image/unews/themepage/chiuchow/unews_themepage_topselect_off.gif);
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-right: 1px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	z-index: 100;
	color: #FFFFFF;
	padding-top: 7px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.TabbedPanelsTabSelected_chiuchow {
	background-image: url(../image/unews/themepage/chiuchow/unews_themepage_topselect_on.gif);
}
.TabbedPanelsContentGroup_chiuchow {
	clear: both;
	background-color: #FBF7EC;
	border: 1px solid #946F57;
	height: 110px;
	top: -23px;
	position: relative;
	z-index: 5;
	width: 306px;
	padding: 0px;
	margin: 0px;
}
/*chiuchow themepage end*/

/*coffee themepage start*/
.unews_themepage_coffeecolor{
	color: #58493B;
}
.unews_themepage_coffeecolor a:link{
	color: #58493B;
}
a.write_review_coffee {
	padding-left:20px;
	display:block;
	float:left;
	color:#58493B;
	background-image: url(../image/unews/themepage/coffee/writereviewicon_coffee.gif);
	background-repeat: no-repeat;
}
a.write_review_coffee_onlycolor {
	color:#58493B;
}
.unews_themepage_newsall_toptitle_coffee{
	background-image: url(../image/unews/themepage/coffee/unews_themepage_newstopbanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	color: #FFFFFF;
	padding-left: 10px;
	font-size: 12px;
	font-weight: bold;
	padding-top: 4px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.unews_themepage_newsall_bottombar_coffee{
	background-image: url(../image/unews/themepage/coffee/unews_themepage_newsbottombanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	font-size: 11px;
	padding-top: 2px;
	text-align: right;
	padding-right: 10px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.TabbedPanelsTab_coffee {
	position: relative;
	top: 1px;
	float: left;
	list-style: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	height: 28px;
	width: 92px;
	background-image: url(../image/unews/themepage/coffee/unews_themepage_topselect_off.gif);
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-right: 1px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	z-index: 100;
	color: #FFFFFF;
	padding-top: 7px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.TabbedPanelsTabSelected_coffee {
	background-image: url(../image/unews/themepage/coffee/unews_themepage_topselect_on.gif);
}
.TabbedPanelsContentGroup_coffee {
	clear: both;
	background-color: #F4F2EA;
	border: 1px solid #836868;
	height: 110px;
	top: -23px;
	position: relative;
	z-index: 5;
	width: 306px;
	padding: 0px;
	margin: 0px;
}
/*coffee themepage end*/

/*oldhk themepage start*/
.unews_themepage_oldhkcolor{
	color: #515B31;
}
.unews_themepage_oldhkcolor a:link{
	color: #515B31;
}
a.write_review_oldhk {
	padding-left:20px;
	display:block;
	float:left;
	color:#515B31;
	background-image: url(../image/unews/themepage/oldhk/writereviewicon_oldhk.gif);
	background-repeat: no-repeat;
}
a.write_review_oldhk_onlycolor {
	color:#515B31;
}
.unews_themepage_newsall_toptitle_oldhk{
	background-image: url(../image/unews/themepage/oldhk/unews_themepage_newstopbanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	color: #FFFFFF;
	padding-left: 10px;
	font-size: 12px;
	font-weight: bold;
	padding-top: 4px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.unews_themepage_newsall_bottombar_oldhk{
	background-image: url(../image/unews/themepage/oldhk/unews_themepage_newsbottombanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	font-size: 11px;
	padding-top: 2px;
	text-align: right;
	padding-right: 10px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.unews_themepage_oldhksupcontainer{
	width:690px;
	height:1160px;
	float: left;
	display: block;
	margin: 0px;
	padding: 0px;
}
.unews_themepage_oldhksupcontainer .topbanner_oldhk{
	height:15px;
	width:690px;
	background-image: url(../image/unews/themepage/oldhk/unew_themepage_topsub_oldhk.gif);
	background-repeat: no-repeat;
	display: block;
	float: left;
	margin: 0px;
	padding: 0px;
}
.unews_themepage_oldhksupcontainer .middlebanner_oldhk{
	width:660px;
	background-image: url(../image/unews/themepage/oldhk/unew_themepage_middlesub_oldhk.gif);
	background-repeat: repeat-y;
	display: block;
	padding-right: 15px;
	padding-left: 15px;
	margin-top: 15px;
	float: left;
	height: 1130px;
}
.unews_themepage_oldhksupcontainer .middlebanner_oldhk .part{
	width:212px;
	height:140px;
	font-size:12px;


	color:#640203
	float:left; 		color: #640203;
	padding-right: 4px;
	padding-left: 4px;
	float: left;
}

.unews_themepage_oldhksupcontainer .bottombanner_oldhk{
	width:690px;
	background-image: url(../image/unews/themepage/oldhk/unew_themepage_bottomsub_oldhk.gif);
	float: left;
	height: 15px;
	background-repeat: no-repeat;
	display: block;
}
/*oldhk themepage end*/

/*easter themepage start*/


.unews_themepage_eastercolor{
	color: #628C34;
}
.unews_themepage_eastercolor a:link{
	color: #B1444A;
}
.unews_themepage_eastersupcontainer{
	width:690px;
	height:880px;/*740px;*/
	float: left;
	display: block;
	margin: 0px;
	padding: 0px;
}
.unews_themepage_eastersupcontainer .topbanner_easter{
	height:15px;
	width:690px;
	background-image: url(../image/unews/themepage/easter/unew_themepage_topsub_ppl.gif);
	background-repeat: no-repeat;
	display: block;
	float: left;
	margin: 0px;
	padding: 0px;
}
.unews_themepage_eastersupcontainer .middlebanner_easter{
	width:660px;
	background-image: url(../image/unews/themepage/easter/unew_themepage_middlesub_ppl.gif);
	background-repeat: repeat-y;
	display: block;
	padding-right: 15px;
	padding-left: 15px;
	margin-top: 15px;
	float: left;
	height: 850px;
}
.unews_themepage_eastersupcontainer .middlebanner_easter .part{
	width:212px;
	height:140px;
	font-size:12px;


	color:#628C34
	float:left; 		color: #628C34;
	padding-right: 4px;
	padding-left: 4px;
	float: left;
}

.unews_themepage_eastersupcontainer .bottombanner_easter{
	width:690px;
	background-image: url(../image/unews/themepage/easter/unew_themepage_bottomsub_ppl.gif);
	float: left;
	height: 15px;
	background-repeat: no-repeat;
	display: block;
}
a.write_review_easter_onlycolor {
	color: #9cb45b;
}
a.write_review_easter_onlycolor2 {
	color: #628C34;
}
.unews_themepage_newsall_toptitle_easter{
	background-image: url(../image/unews/themepage/easter/unews_themepage_newstopbanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	color: #FFFFFF;
	padding-left: 10px;
	font-size: 12px;
	font-weight: bold;
	padding-top: 4px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.unews_themepage_newsall_bottombar_easter{
	background-image: url(../image/unews/themepage/easter/unews_themepage_newsbottombanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	font-size: 11px;
	padding-top: 2px;
	text-align: right;
	padding-right: 10px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
a.write_review_easter {
	padding-left:20px;
	display:block;
	float:left;
	color:#9cb45b;
	background-image: url(../image/unews/themepage/easter/writereviewicon_easter.gif);
	background-repeat: no-repeat;
}

/*easter themepage end*/

/*fitness themepage start*/
.unews_themepage_fitnesscolor{
	color: #E8650A;
}
.unews_themepage_fitnesscolor a:link{
	color: #E8650A;
}
a.write_review_fitness {
	padding-left:20px;
	display:block;
	float:left;
	color:#E8650A;
	background-image: url(../image/unews/themepage/fitness/writereviewicon.gif);
	background-repeat: no-repeat;
}
a.write_review_fitness_onlycolor {
	color:#E8650A;
}

.unews_themepage_teaser_fitness {
	height: 300px;
	width: 690px;
	font-family: Arial, Helvetica, sans-serif;
	float: left;
	background-repeat: no-repeat;
}


.unews_themepage_teaser_fitness .left .title {
	text-align:left;
	font-size:17px;
	color:#5F4E38;
	font-weight:bold;
	overflow:hidden;
	line-height:120%;
	width: 200px;
}

.unews_themepage_newsall_toptitle_fitness{
	background-image: url(../image/unews/themepage/fitness/unews_themepage_newstopbanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	color: #FFFFFF;
	padding-left: 10px;
	font-size: 12px;
	font-weight: bold;
	padding-top: 4px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.unews_themepage_newsall_bottombar_fitness{
	background-image: url(../image/unews/themepage/fitness/unews_themepage_newsbottombanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	font-size: 11px;
	padding-top: 2px;
	text-align: right;
	padding-right: 10px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.TabbedPanelsTab_fitness {
	position: relative;
	top: 1px;
	float: left;
	list-style: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	height: 28px;
	width: 92px;
	background-image: url(../image/unews/themepage/fitness/unews_themepage_topselect_off.gif);
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-right: 1px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	z-index: 100;
	color: #FFFFFF;
	padding-top: 7px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.TabbedPanelsTabSelected_fitness {
	background-image: url(../image/unews/themepage/fitness/unews_themepage_topselect_on.gif);
}
.TabbedPanelsContentGroup_fitness {
	clear: both;
	background-color: #F8FBEA;
	border: 1px solid  #FF6600;
	height: 110px;
	top: -23px;
	position: relative;
	z-index: 5;
	width: 306px;
	padding: 0px;
	margin: 0px;
}
/*fitness themepage end*/

/*tea themepage start*/
.unews_themepage_teacolor{
	color: #541C0D;
}
.unews_themepage_teacolor a:link{
	color: #541C0D;
}
a.write_review_tea {
	padding-left:20px;
	display:block;
	float:left;
	color:#541C0D;
	background-image: url(../image/unews/themepage/tea/writereviewicon_tea.gif);
	background-repeat: no-repeat;
}
a.write_review_tea_onlycolor {
	color:#541C0D;
}
.unews_themepage_newsall_toptitle_tea{
	background-image: url(../image/unews/themepage/tea/unews_themepage_newstopbanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	color: #FFFFFF;
	padding-left: 10px;
	font-size: 12px;
	font-weight: bold;
	padding-top: 4px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.unews_themepage_newsall_bottombar_tea{
	background-image: url(../image/unews/themepage/tea/unews_themepage_newsbottombanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	font-size: 11px;
	padding-top: 2px;
	text-align: right;
	padding-right: 10px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.TabbedPanelsTab_tea {
	position: relative;
	top: 1px;
	float: left;
	list-style: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	height: 28px;
	width: 92px;
	background-image: url(../image/unews/themepage/tea/unews_themepage_topselect_off.gif);
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-right: 1px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	z-index: 100;
	color: #FFFFFF;
	padding-top: 7px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.TabbedPanelsTabSelected_tea {
	background-image: url(../image/unews/themepage/tea/unews_themepage_topselect_on.gif);
}
.TabbedPanelsContentGroup_tea {
	clear: both;
	background-color: #F5F1F1;
	border: 1px solid #8D787D;
	height: 110px;
	top: -23px;
	position: relative;
	z-index: 5;
	width: 306px;
	padding: 0px;
	margin: 0px;
}
/*tea themepage end*/

/*bread themepage start*/
.unews_themepage_breadcolor{
	color: #663300;
}
.unews_themepage_breadcolor a:link{
	color: #663300;
}
a.write_review_bread {
	padding-left:20px;
	display:block;
	float:left;
	color:#663300;
	background-image: url(../image/unews/themepage/bread/writereviewicon.gif);
	background-repeat: no-repeat;
}
a.write_review_bread_onlycolor {
	color:#663300;
}

.unews_themepage_teaser_bread {
	height: 300px;
	width: 690px;
	font-family: Arial, Helvetica, sans-serif;
	float: left;
	background-repeat: no-repeat;
}


.unews_themepage_teaser_bread .left .title {
	text-align:left;
	font-size:17px;
	color:#5F4E38;
	font-weight:bold;
	overflow:hidden;
	line-height:120%;
	width: 200px;
}

.unews_themepage_newsall_toptitle_bread{
	background-image: url(../image/unews/themepage/bread/unews_themepage_newstopbanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	color: #FFFFFF;
	padding-left: 10px;
	font-size: 12px;
	font-weight: bold;
	padding-top: 4px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.unews_themepage_newsall_bottombar_bread{
	background-image: url(../image/unews/themepage/bread/unews_themepage_newsbottombanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	font-size: 11px;
	padding-top: 2px;
	text-align: right;
	padding-right: 10px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.TabbedPanelsTab_bread {
	position: relative;
	top: 1px;
	float: left;
	list-style: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	height: 28px;
	width: 92px;
	background-image: url(../image/unews/themepage/bread/unews_themepage_topselect_off.gif);
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-right: 1px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	z-index: 100;
	color: #FFFFFF;
	padding-top: 7px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.TabbedPanelsTabSelected_bread {
	background-image: url(../image/unews/themepage/bread/unews_themepage_topselect_on.gif);
}
.TabbedPanelsContentGroup_bread {
	clear: both;
	background-color: #F8FBEA;
	border: 1px solid  #BA8565;
	height: 110px;
	top: -23px;
	position: relative;
	z-index: 5;
	width: 306px;
	padding: 0px;
	margin: 0px;
}
/*bread themepage end*/

/*shanghai themepage start*/
.unews_themepage_shanghaicolor{
	color: #663366;
}
.unews_themepage_shanghaicolor a:link{
	color: #663366;
}
a.write_review_shanghai {
	padding-left:20px;
	display:block;
	float:left;
	color:#663366;
	background-image: url(../image/unews/themepage/shanghai/writereviewicon.gif);
	background-repeat: no-repeat;
}
a.write_review_shanghai_onlycolor {
	color:#663366;
}

.unews_themepage_teaser_shanghai {
	height: 300px;
	width: 690px;
	font-family: Arial, Helvetica, sans-serif;
	float: left;
	background-repeat: no-repeat;
}


.unews_themepage_teaser_shanghai .left .title {
	text-align:left;
	font-size:17px;
	color:#5F4E38;
	font-weight:bold;
	overflow:hidden;
	line-height:120%;
	width: 200px;
}

.unews_themepage_newsall_toptitle_shanghai{
	background-image: url(../image/unews/themepage/shanghai/unews_themepage_newstopbanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	color: #ffffff;
	padding-left: 10px;
	font-size: 12px;
	font-weight: bold;
	padding-top: 4px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.unews_themepage_newsall_bottombar_shanghai{
	background-image: url(../image/unews/themepage/shanghai/unews_themepage_newsbottombanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	font-size: 11px;
	padding-top: 2px;
	text-align: right;
	padding-right: 10px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.TabbedPanelsTab_shanghai {
	position: relative;
	top: 1px;
	float: left;
	list-style: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	height: 28px;
	width: 92px;
	background-image: url(../image/unews/themepage/shanghai/unews_themepage_topselect_off.gif);
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-right: 1px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	z-index: 100;
	color: #ffffff;
	padding-top: 7px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.TabbedPanelsTabSelected_shanghai {
	background-image: url(../image/unews/themepage/shanghai/unews_themepage_topselect_on.gif);
}
.TabbedPanelsContentGroup_shanghai {
	clear: both;
	background-color: #F8FBEA;
	border: 1px solid  #86458A;
	height: 110px;
	top: -23px;
	position: relative;
	z-index: 5;
	width: 306px;
	padding: 0px;
	margin: 0px;
}
/*shanghai themepage end*/

/*curry themepage start*/
.unews_themepage_currycolor{
	color: #8A5300;
}
.unews_themepage_currycolor a:link{
	color: #8A5300;
}
a.write_review_curry {
	padding-left:20px;
	display:block;
	float:left;
	color:#8A5300;
	background-image: url(../image/unews/themepage/curry/writereviewicon.gif);
	background-repeat: no-repeat;
}
a.write_review_curry_onlycolor {
	color:#8A5300;
}

.unews_themepage_teaser_curry {
	height: 300px;
	width: 690px;
	font-family: Arial, Helvetica, sans-serif;
	float: left;
	background-repeat: no-repeat;
}


.unews_themepage_teaser_curry .left .title {
	text-align:left;
	font-size:17px;
	color:#5F4E38;
	font-weight:bold;
	overflow:hidden;
	line-height:120%;
	width: 200px;
}

.unews_themepage_newsall_toptitle_curry{
	background-image: url(../image/unews/themepage/curry/unews_themepage_newstopbanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	color: #ffffff;
	padding-left: 10px;
	font-size: 12px;
	font-weight: bold;
	padding-top: 4px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.unews_themepage_newsall_bottombar_curry{
	background-image: url(../image/unews/themepage/curry/unews_themepage_newsbottombanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	font-size: 11px;
	padding-top: 2px;
	text-align: right;
	padding-right: 10px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.TabbedPanelsTab_curry {
	position: relative;
	top: 1px;
	float: left;
	list-style: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	height: 28px;
	width: 92px;
	background-image: url(../image/unews/themepage/curry/unews_themepage_topselect_off.gif);
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-right: 1px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	z-index: 100;
	color: #ffffff;
	padding-top: 7px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.TabbedPanelsTabSelected_curry {
	background-image: url(../image/unews/themepage/curry/unews_themepage_topselect_on.gif);
}
.TabbedPanelsContentGroup_curry {
	clear: both;
	background-color: #F8FBEA;
	border: 1px solid  #9A6035;
	height: 110px;
	top: -23px;
	position: relative;
	z-index: 5;
	width: 306px;
	padding: 0px;
	margin: 0px;
}
/*curry themepage end*/

/*sushi themepage start*/
.unews_themepage_sushicolor{
	color: #993333;
}
.unews_themepage_sushicolor a:link{
	color: #993333;
}
a.write_review_sushi {
	padding-left:20px;
	display:block;
	float:left;
	color:#993333;
	background-image: url(../image/unews/themepage/sushi/writereviewicon.gif);
	background-repeat: no-repeat;
}
a.write_review_sushi_onlycolor {
	color:#993333;
}

.unews_themepage_teaser_sushi {
	height: 300px;
	width: 690px;
	font-family: Arial, Helvetica, sans-serif;
	float: left;
	background-repeat: no-repeat;
}


.unews_themepage_teaser_sushi .left .title {
	text-align:left;
	font-size:17px;
	color:#5F4E38;
	font-weight:bold;
	overflow:hidden;
	line-height:120%;
	width: 200px;
}

.unews_themepage_newsall_toptitle_sushi{
	background-image: url(../image/unews/themepage/sushi/unews_themepage_newstopbanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	color: #ffffff;
	padding-left: 10px;
	font-size: 12px;
	font-weight: bold;
	padding-top: 4px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.unews_themepage_newsall_bottombar_sushi{
	background-image: url(../image/unews/themepage/sushi/unews_themepage_newsbottombanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	font-size: 11px;
	padding-top: 2px;
	text-align: right;
	padding-right: 10px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.TabbedPanelsTab_sushi {
	position: relative;
	top: 1px;
	float: left;
	list-style: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	height: 28px;
	width: 92px;
	background-image: url(../image/unews/themepage/sushi/unews_themepage_topselect_off.gif);
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-right: 1px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	z-index: 100;
	color: #ffffff;
	padding-top: 7px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.TabbedPanelsTabSelected_sushi {
	background-image: url(../image/unews/themepage/sushi/unews_themepage_topselect_on.gif);
}
.TabbedPanelsContentGroup_sushi {
	clear: both;
	background-color: #F8FBEA;
	border: 1px solid  #CC5757;
	height: 110px;
	top: -23px;
	position: relative;
	z-index: 5;
	width: 306px;
	padding: 0px;
	margin: 0px;
}
/*sushi themepage end*/

/*ramen themepage start*/
.unews_themepage_ramencolor{
	color: #861600;
}
.unews_themepage_ramencolor a:link{
	color: #861600;
}
a.write_review_ramen {
	padding-left:20px;
	display:block;
	float:left;
	color:#861600;
	background-image: url(../image/unews/themepage/ramen/writereviewicon.jpg);
	background-repeat: no-repeat;
}
a.write_review_ramen_alt {
	padding-left:20px;
	display:block;
	float:left;
	color:#861600;
	background-image: url(../image/unews/themepage/ramen/writereviewicon_alt.jpg);
	background-repeat: no-repeat;
}
a.write_review_ramen_onlycolor {
	color:#861600;
}

.unews_themepage_teaser_ramen {
	height: 300px;
	width: 690px;
	font-family: Arial, Helvetica, sans-serif;
	float: left;
	background-repeat: no-repeat;
}


.unews_themepage_teaser_ramen .left .title {
	text-align:left;
	font-size:17px;
	color:#5F4E38;
	font-weight:bold;
	overflow:hidden;
	line-height:120%;
	width: 200px;
}

.unews_themepage_newsall_toptitle_ramen{
	background-image: url(../image/unews/themepage/ramen/unews_themepage_newstopbanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	color: #ffffff;
	padding-left: 10px;
	font-size: 12px;
	font-weight: bold;
	padding-top: 4px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.unews_themepage_newsall_bottombar_ramen{
	background-image: url(../image/unews/themepage/ramen/unews_themepage_newsbottombanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	font-size: 11px;
	padding-top: 2px;
	text-align: right;
	padding-right: 10px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.TabbedPanelsTab_ramen {
	position: relative;
	top: 1px;
	float: left;
	list-style: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	height: 28px;
	width: 92px;
	background-image: url(../image/unews/themepage/ramen/unews_themepage_topselect_off.gif);
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-right: 1px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	z-index: 100;
	color: #ffffff;
	padding-top: 7px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.TabbedPanelsTabSelected_ramen {
	background-image: url(../image/unews/themepage/ramen/unews_themepage_topselect_on.gif);
}
.TabbedPanelsContentGroup_ramen {
	clear: both;
	background-color: #F8FBEA;
	border: 1px solid  #CC5757;
	height: 110px;
	top: -23px;
	position: relative;
	z-index: 5;
	width: 306px;
	padding: 0px;
	margin: 0px;
}
/*ramen themepage end*/

/*weekend themepage start*/
.unews_themepage_weekendcolor{
	color: #861600;
}
.unews_themepage_weekendcolor a:link{
	color: #861600;
}
a.write_review_weekend {
	padding-left:20px;
	display:block;
	float:left;
	color:#861600;
	background-image: url(../image/unews/themepage/weekend/writereviewicon.jpg);
	background-repeat: no-repeat;
}
a.write_review_weekend_alt {
	padding-left:20px;
	display:block;
	float:left;
	color:#861600;
	background-image: url(../image/unews/themepage/weekend/writereviewicon_alt.jpg);
	background-repeat: no-repeat;
}
a.write_review_weekend_onlycolor {
	color:#861600;
}

.unews_themepage_teaser_weekend {
	height: 300px;
	width: 690px;
	font-family: Arial, Helvetica, sans-serif;
	float: left;
	background-repeat: no-repeat;
}


.unews_themepage_teaser_weekend .left .title {
	text-align:left;
	font-size:17px;
	color:#5F4E38;
	font-weight:bold;
	overflow:hidden;
	line-height:120%;
	width: 200px;
}

.unews_themepage_newsall_toptitle_weekend{
	background-image: url(../image/unews/themepage/weekend/unews_themepage_newstopbanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	color: #ffffff;
	padding-left: 10px;
	font-size: 12px;
	font-weight: bold;
	padding-top: 4px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.unews_themepage_newsall_bottombar_weekend{
	background-image: url(../image/unews/themepage/weekend/unews_themepage_newsbottombanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	font-size: 11px;
	padding-top: 2px;
	text-align: right;
	padding-right: 10px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.TabbedPanelsTab_weekend {
	position: relative;
	top: 1px;
	float: left;
	list-style: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	height: 28px;
	width: 92px;
	background-image: url(../image/unews/themepage/weekend/unews_themepage_topselect_off.gif);
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-right: 1px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	z-index: 100;
	color: #ffffff;
	padding-top: 7px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.TabbedPanelsTabSelected_weekend {
	background-image: url(../image/unews/themepage/weekend/unews_themepage_topselect_on.gif);
}
.TabbedPanelsContentGroup_weekend {
	clear: both;
	background-color: #F8FBEA;
	border: 1px solid  #CC5757;
	height: 110px;
	top: -23px;
	position: relative;
	z-index: 5;
	width: 306px;
	padding: 0px;
	margin: 0px;
}
.unews_themepage_teaser_sub_weekend_a {
	font-size: 17px;
	line-height: 150%;
	color: #957A58;
	font-weight: bold;
	margin-top: 5px;
	margin-left:90px;
}
.unews_themepage_teaser_sub_weekend_b {
	font-size: 17px;
	line-height: 150%;
	color: #957A58;
	font-weight: bold;
	margin-top: 5px;
	margin-left:115px;
}
/*weekend themepage end*/

/*shabushabu themepage start*/
.unews_themepage_shabushabucolor{
	color: #B50000;
}
.unews_themepage_shabushabucolor a:link{
	color: #B50000;
}
a.write_review_shabushabu {
	padding-left:20px;
	display:block;
	float:left;
	color:#B50000;
	background-image: url(../image/unews/themepage/shabushabu/writereviewicon.jpg);
	background-repeat: no-repeat;
}
a.write_review_shabushabu_alt {
	padding-left:20px;
	display:block;
	float:left;
	color:#B50000;
	background-image: url(../image/unews/themepage/shabushabu/writereviewicon_alt.jpg);
	background-repeat: no-repeat;
}
a.write_review_shabushabu_onlycolor {
	color:#B50000;
}

.unews_themepage_teaser_shabushabu {
	height: 300px;
	width: 690px;
	font-family: Arial, Helvetica, sans-serif;
	float: left;
	background-repeat: no-repeat;
}


.unews_themepage_teaser_shabushabu .left .title {
	text-align:left;
	font-size:17px;
	color:#5F4E38;
	font-weight:bold;
	overflow:hidden;
	line-height:120%;
	width: 200px;
}

.unews_themepage_newsall_toptitle_shabushabu{
	background-image: url(../image/unews/themepage/shabushabu/unews_themepage_newstopbanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	color: #ffffff;
	padding-left: 10px;
	font-size: 12px;
	font-weight: bold;
	padding-top: 4px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.unews_themepage_newsall_bottombar_shabushabu{
	background-image: url(../image/unews/themepage/shabushabu/unews_themepage_newsbottombanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	font-size: 11px;
	padding-top: 2px;
	text-align: right;
	padding-right: 10px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.TabbedPanelsTab_shabushabu {
	position: relative;
	top: 1px;
	float: left;
	list-style: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	height: 28px;
	width: 92px;
	background-image: url(../image/unews/themepage/shabushabu/unews_themepage_topselect_off.gif);
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-right: 1px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	z-index: 100;
	color: #ffffff;
	padding-top: 7px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.TabbedPanelsTabSelected_shabushabu {
	background-image: url(../image/unews/themepage/shabushabu/unews_themepage_topselect_on.gif);
}
.TabbedPanelsContentGroup_shabushabu {
	clear: both;
	background-color: #F8FBEA;
	border: 1px solid  #CC5757;
	height: 110px;
	top: -23px;
	position: relative;
	z-index: 5;
	width: 306px;
	padding: 0px;
	margin: 0px;
}
/*shabushabu themepage end*/

/*tenpura themepage start*/
.unews_themepage_tenpuracolor{
	color: #666600;
}
.unews_themepage_tenpuracolor a:link{
	color: #666600;
}
a.write_review_tenpura {
	padding-left:20px;
	display:block;
	float:left;
	color:#666600;
	background-image: url(../image/unews/themepage/tenpura/writereviewicon.jpg);
	background-repeat: no-repeat;
}

a.write_review_tenpura_alt {
	padding-left:20px;
	display:block;
	float:left;
	color:#666600;
	background-image: url(../image/unews/themepage/tenpura/writereviewicon_alt.jpg);
	background-repeat: no-repeat;
}
a.write_review_tenpura_onlycolor {
	color:#666600;
}

.unews_themepage_teaser_tenpura {
	height: 300px;
	width: 690px;
	font-family: Arial, Helvetica, sans-serif;
	float: left;
	background-repeat: no-repeat;
}


.unews_themepage_teaser_tenpura .left .title {
	text-align:left;
	font-size:17px;
	color:#5F4E38;
	font-weight:bold;
	overflow:hidden;
	line-height:120%;
	width: 200px;
}

.unews_themepage_newsall_toptitle_tenpura{
	background-image: url(../image/unews/themepage/tenpura/unews_themepage_newstopbanner.jpg);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	color: #ffffff;
	padding-left: 10px;
	font-size: 12px;
	font-weight: bold;
	padding-top: 4px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.unews_themepage_newsall_bottombar_tenpura{
	background-image: url(../image/unews/themepage/tenpura/unews_themepage_newsbottombanner.jpg);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	font-size: 11px;
	padding-top: 2px;
	text-align: right;
	padding-right: 10px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.TabbedPanelsTab_tenpura {
	position: relative;
	top: 1px;
	float: left;
	list-style: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	height: 28px;
	width: 92px;
	background-image: url(../image/unews/themepage/tenpura/unews_themepage_topselect_off.gif);
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-right: 1px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	z-index: 100;
	color: #ffffff;
	padding-top: 7px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.TabbedPanelsTabSelected_tenpura {
	background-image: url(../image/unews/themepage/tenpura/unews_themepage_topselect_on.gif);
}
.TabbedPanelsContentGroup_tenpura {
	clear: both;
	background-color: #F8FBEA;
	border: 1px solid  #865a00;
	height: 110px;
	top: -23px;
	position: relative;
	z-index: 5;
	width: 306px;
	padding: 0px;
	margin: 0px;
}
/*tenpura themepage end*/

/*durian themepage start*/
.unews_themepage_duriancolor{
	color: #666600;
}
.unews_themepage_duriancolor a:link{
	color: #666600;
}
a.write_review_durian {
	padding-left:20px;
	display:block;
	float:left;
	color:#666600;
	background-image: url(../image/unews/themepage/durian/writereviewicon.jpg);
	background-repeat: no-repeat;
}

a.write_review_durian_alt {
	padding-left:20px;
	display:block;
	float:left;
	color:#666600;
	background-image: url(../image/unews/themepage/durian/writereviewicon_alt.jpg);
	background-repeat: no-repeat;
}
a.write_review_durian_onlycolor {
	color:#666600;
}

.unews_themepage_teaser_durian {
	height: 300px;
	width: 690px;
	font-family: Arial, Helvetica, sans-serif;
	float: left;
	background-repeat: no-repeat;
}


.unews_themepage_teaser_durian .left .title {
	text-align:left;
	font-size:17px;
	color:#5F4E38;
	font-weight:bold;
	overflow:hidden;
	line-height:120%;
	width: 200px;
}

.unews_themepage_newsall_toptitle_durian{
	background-image: url(../image/unews/themepage/durian/unews_themepage_newstopbanner.jpg);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	color: #ffffff;
	padding-left: 10px;
	font-size: 12px;
	font-weight: bold;
	padding-top: 4px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.unews_themepage_newsall_bottombar_durian{
	background-image: url(../image/unews/themepage/durian/unews_themepage_newsbottombanner.jpg);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	font-size: 11px;
	padding-top: 2px;
	text-align: right;
	padding-right: 10px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.TabbedPanelsTab_durian {
	position: relative;
	top: 1px;
	float: left;
	list-style: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	height: 28px;
	width: 92px;
	background-image: url(../image/unews/themepage/durian/unews_themepage_topselect_off.gif);
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-right: 1px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	z-index: 100;
	color: #ffffff;
	padding-top: 7px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.TabbedPanelsTabSelected_durian {
	background-image: url(../image/unews/themepage/durian/unews_themepage_topselect_on.gif);
}
.TabbedPanelsContentGroup_durian {
	clear: both;
	background-color: #F8FBEA;
	border: 1px solid  #865a00;
	height: 110px;
	top: -23px;
	position: relative;
	z-index: 5;
	width: 306px;
	padding: 0px;
	margin: 0px;
}
/*durian themepage end*/

/*seafood themepage start*/
.unews_themepage_seafoodcolor{
	color: #00A6C4;
}
.unews_themepage_seafoodcolor a:link{
	color: #00A6C4;
}
a.write_review_seafood {
	padding-left:20px;
	display:block;
	float:left;
	color:#00A6C4;
	background-image: url(../image/unews/themepage/seafood/writereviewicon.jpg);
	background-repeat: no-repeat;
}

a.write_review_seafood_alt {
	padding-left:20px;
	display:block;
	float:left;
	color:#00A6C4;
	background-image: url(../image/unews/themepage/seafood/writereviewicon_alt.jpg);
	background-repeat: no-repeat;
}
a.write_review_seafood_onlycolor {
	color:#00A6C4;
}

.unews_themepage_teaser_seafood {
	height: 300px;
	width: 690px;
	font-family: Arial, Helvetica, sans-serif;
	float: left;
	background-repeat: no-repeat;
}


.unews_themepage_teaser_seafood .left .title {
	text-align:left;
	font-size:17px;
	color:#5F4E38;
	font-weight:bold;
	overflow:hidden;
	line-height:120%;
	width: 200px;
}

.unews_themepage_newsall_toptitle_seafood{
	background-image: url(../image/unews/themepage/seafood/unews_themepage_newstopbanner.jpg);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	color: #ffffff;
	padding-left: 10px;
	font-size: 12px;
	font-weight: bold;
	padding-top: 4px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.unews_themepage_newsall_bottombar_seafood{
	background-image: url(../image/unews/themepage/seafood/unews_themepage_newsbottombanner.jpg);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	font-size: 11px;
	padding-top: 2px;
	text-align: right;
	padding-right: 10px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.TabbedPanelsTab_seafood {
	position: relative;
	top: 1px;
	float: left;
	list-style: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	height: 28px;
	width: 92px;
	background-image: url(../image/unews/themepage/seafood/unews_themepage_topselect_off.gif);
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-right: 1px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	z-index: 100;
	color: #ffffff;
	padding-top: 7px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.TabbedPanelsTabSelected_seafood {
	background-image: url(../image/unews/themepage/seafood/unews_themepage_topselect_on.gif);
}
.TabbedPanelsContentGroup_seafood {
	clear: both;
	background-color: #F8FBEA;
	border: 1px solid  #00A6C4;
	height: 110px;
	top: -23px;
	position: relative;
	z-index: 5;
	width: 306px;
	padding: 0px;
	margin: 0px;
}
/*seafood themepage end*/

/*tw_drink themepage start*/
.unews_themepage_tw_drinkcolor{
	color: #836C4B;
}
.unews_themepage_tw_drinkcolor a:link{
	color: #836C4B;
}
a.write_review_tw_drink {
	padding-left:20px;
	display:block;
	float:left;
	color:#836C4B;
	background-image: url(../image/unews/themepage/tw_drink/writereviewicon.jpg);
	background-repeat: no-repeat;
}

a.write_review_tw_drink_alt {
	padding-left:20px;
	display:block;
	float:left;
	color:#836C4B;
	background-image: url(../image/unews/themepage/tw_drink/writereviewicon_alt.jpg);
	background-repeat: no-repeat;
}
a.write_review_tw_drink_onlycolor {
	color:#836C4B;
}

.unews_themepage_teaser_tw_drink {
	height: 300px;
	width: 690px;
	font-family: Arial, Helvetica, sans-serif;
	float: left;
	background-repeat: no-repeat;
}


.unews_themepage_teaser_tw_drink .left .title {
	text-align:left;
	font-size:17px;
	color:#5F4E38;
	font-weight:bold;
	overflow:hidden;
	line-height:120%;
	width: 200px;
}

.unews_themepage_newsall_toptitle_tw_drink{
	background-image: url(../image/unews/themepage/tw_drink/unews_themepage_newstopbanner.jpg);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	color: #ffffff;
	padding-left: 10px;
	font-size: 12px;
	font-weight: bold;
	padding-top: 4px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.unews_themepage_newsall_bottombar_tw_drink{
	background-image: url(../image/unews/themepage/tw_drink/unews_themepage_newsbottombanner.jpg);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	font-size: 11px;
	padding-top: 2px;
	text-align: right;
	padding-right: 10px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.TabbedPanelsTab_tw_drink {
	position: relative;
	top: 1px;
	float: left;
	list-style: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	height: 28px;
	width: 92px;
	background-image: url(../image/unews/themepage/tw_drink/unews_themepage_topselect_off.gif);
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-right: 1px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	z-index: 100;
	color: #ffffff;
	padding-top: 7px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.TabbedPanelsTabSelected_tw_drink {
	background-image: url(../image/unews/themepage/tw_drink/unews_themepage_topselect_on.gif);
}
.TabbedPanelsContentGroup_tw_drink {
	clear: both;
	background-color: #F8FBEA;
	border: 1px solid  #836C4B;
	height: 110px;
	top: -23px;
	position: relative;
	z-index: 5;
	width: 306px;
	padding: 0px;
	margin: 0px;
}
/*tw_drink themepage end*/




/*buffet2 themepage start*/
.unews_themepage_buffet2color{
	color: #FF9900;
}
.unews_themepage_buffet2color a:link{
	color: #FF9900;
}
a.write_review_buffet2 {
	padding-left:20px;
	display:block;
	float:left;
	color:#FF9900;
	background-image: url(../image/unews/themepage/buffet2/writereviewicon.jpg);
	background-repeat: no-repeat;
}
a.write_review_buffet2_alt {
	padding-left:20px;
	display:block;
	float:left;
	color:#FF9900;
	background-image: url(../image/unews/themepage/buffet2/writereviewicon_alt.jpg);
	background-repeat: no-repeat;
}
a.write_review_buffet2_onlycolor {
	color:#FF9900;
}

.unews_themepage_teaser_buffet2 {
	height: 300px;
	width: 690px;
	font-family: Arial, Helvetica, sans-serif;
	float: left;
	background-repeat: no-repeat;
}


.unews_themepage_teaser_buffet2 .left .title {
	text-align:left;
	font-size:17px;
	color:#5F4E38;
	font-weight:bold;
	overflow:hidden;
	line-height:120%;
	width: 200px;
}

.unews_themepage_newsall_toptitle_buffet2{
	background-image: url(../image/unews/themepage/buffet2/unews_themepage_newstopbanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	color: #ffffff;
	padding-left: 10px;
	font-size: 12px;
	font-weight: bold;
	padding-top: 4px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.unews_themepage_newsall_bottombar_buffet2{
	background-image: url(../image/unews/themepage/buffet2/unews_themepage_newsbottombanner.gif);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	font-size: 11px;
	padding-top: 2px;
	text-align: right;
	padding-right: 10px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.TabbedPanelsTab_buffet2 {
	position: relative;
	top: 1px;
	float: left;
	list-style: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	height: 28px;
	width: 92px;
	background-image: url(../image/unews/themepage/buffet2/unews_themepage_topselect_off.gif);
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-right: 1px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	z-index: 100;
	color: #ffffff;
	padding-top: 7px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.TabbedPanelsTabSelected_buffet2 {
	background-image: url(../image/unews/themepage/buffet2/unews_themepage_topselect_on.gif);
}
.TabbedPanelsContentGroup_buffet2 {
	clear: both;
	background-color: #F8FBEA;
	border: 1px solid  #CC5757;
	height: 110px;
	top: -23px;
	position: relative;
	z-index: 5;
	width: 306px;
	padding: 0px;
	margin: 0px;
}
.unews_themepage_teaser_sub_buffet2_a {
	font-size: 17px;
	line-height: 150%;
	color: #957A58;
	font-weight: bold;
	margin-top: 5px;
	margin-left:90px;
}
.unews_themepage_teaser_sub_buffet2_b {
	font-size: 17px;
	line-height: 150%;
	color: #957A58;
	font-weight: bold;
	margin-top: 5px;
	margin-left:115px;
}
/*buffet2 themepage end*/




/*thai_food themepage start*/
.unews_themepage_thai_foodcolor{
	color: #407036;
}
.unews_themepage_thai_foodcolor a:link{
	color: #407036;
}
a.write_review_thai_food {
	padding-left:20px;
	display:block;
	float:left;
	color:#407036;
	background-image: url(../image/unews/themepage/thai_food/writereviewicon.jpg);
	background-repeat: no-repeat;
}

a.write_review_thai_food_alt {
	padding-left:20px;
	display:block;
	float:left;
	color:#407036;
	background-image: url(../image/unews/themepage/thai_food/writereviewicon_alt.jpg);
	background-repeat: no-repeat;
}
a.write_review_thai_food_onlycolor {
	color:#407036;
}

.unews_themepage_teaser_thai_food {
	height: 300px;
	width: 690px;
	font-family: Arial, Helvetica, sans-serif;
	float: left;
	background-repeat: no-repeat;
}


.unews_themepage_teaser_thai_food .left .title {
	text-align:left;
	font-size:17px;
	color:#5F4E38;
	font-weight:bold;
	overflow:hidden;
	line-height:120%;
	width: 200px;
}

.unews_themepage_newsall_toptitle_thai_food{
	background-image: url(../image/unews/themepage/thai_food/unews_themepage_newstopbanner.jpg);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	color: #ffffff;
	padding-left: 10px;
	font-size: 12px;
	font-weight: bold;
	padding-top: 4px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.unews_themepage_newsall_bottombar_thai_food{
	background-image: url(../image/unews/themepage/thai_food/unews_themepage_newsbottombanner.jpg);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	font-size: 11px;
	padding-top: 2px;
	text-align: right;
	padding-right: 10px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.TabbedPanelsTab_thai_food {
	position: relative;
	top: 1px;
	float: left;
	list-style: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	height: 28px;
	width: 92px;
	background-image: url(../image/unews/themepage/thai_food/unews_themepage_topselect_off.gif);
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-right: 1px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	z-index: 100;
	color: #ffffff;
	padding-top: 7px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.TabbedPanelsTabSelected_thai_food {
	background-image: url(../image/unews/themepage/thai_food/unews_themepage_topselect_on.gif);
}
.TabbedPanelsContentGroup_thai_food {
	clear: both;
	background-color: #F8FBEA;
	border: 1px solid  #407036;
	height: 110px;
	top: -23px;
	position: relative;
	z-index: 5;
	width: 306px;
	padding: 0px;
	margin: 0px;
}
/*thai_food themepage end*/








/*icecream themepage start*/
.unews_themepage_icecreamcolor{
	color: #FF9300;
}
.unews_themepage_icecreamcolor a:link{
	color: #FF9300;
}
a.write_review_icecream {
	padding-left:20px;
	display:block;
	float:left;
	color:#FF9300;
	background-image: url(../image/unews/themepage/icecream/writereviewicon.jpg);
	background-repeat: no-repeat;
}

a.write_review_icecream_alt {
	padding-left:20px;
	display:block;
	float:left;
	color:#FF9300;
	background-image: url(../image/unews/themepage/icecream/writereviewicon_alt.jpg);
	background-repeat: no-repeat;
}
a.write_review_icecream_onlycolor {
	color:#FF9300;
}

.unews_themepage_teaser_icecream {
	height: 300px;
	width: 690px;
	font-family: Arial, Helvetica, sans-serif;
	float: left;
	background-repeat: no-repeat;
}


.unews_themepage_teaser_icecream .left .title {
	text-align:left;
	font-size:17px;
	color:#5F4E38;
	font-weight:bold;
	overflow:hidden;
	line-height:120%;
	width: 200px;
}

.unews_themepage_newsall_toptitle_icecream{
	background-image: url(../image/unews/themepage/icecream/unews_themepage_newstopbanner.jpg);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	color: #ffffff;
	padding-left: 10px;
	font-size: 12px;
	font-weight: bold;
	padding-top: 4px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.unews_themepage_newsall_bottombar_icecream{
	background-image: url(../image/unews/themepage/icecream/unews_themepage_newsbottombanner.jpg);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	font-size: 11px;
	padding-top: 2px;
	text-align: right;
	padding-right: 10px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.TabbedPanelsTab_icecream {
	position: relative;
	top: 1px;
	float: left;
	list-style: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	height: 28px;
	width: 92px;
	background-image: url(../image/unews/themepage/icecream/unews_themepage_topselect_off.gif);
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-right: 1px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	z-index: 100;
	color: #ffffff;
	padding-top: 7px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.TabbedPanelsTabSelected_icecream {
	background-image: url(../image/unews/themepage/icecream/unews_themepage_topselect_on.gif);
}
.TabbedPanelsContentGroup_icecream {
	clear: both;
	background-color: #F8FBEA;
	border: 1px solid #FEA415;
	height: 110px;
	top: -23px;
	position: relative;
	z-index: 5;
	width: 306px;
	padding: 0px;
	margin: 0px;
}
/*icecream themepage end*/





/*okinawa themepage start*/
.unews_themepage_okinawacolor{
	color: #36A9DF;
}
.unews_themepage_okinawacolor a:link{
	color: #36A9DF;
}
a.write_review_okinawa {
	padding-left:20px;
	display:block;
	float:left;
	color:#36A9DF;
	background-image: url(../image/unews/themepage/okinawa/writereviewicon.jpg);
	background-repeat: no-repeat;
}

a.write_review_okinawa_alt {
	padding-left:20px;
	display:block;
	float:left;
	color:#36A9DF;
	background-image: url(../image/unews/themepage/okinawa/writereviewicon_alt.jpg);
	background-repeat: no-repeat;
}
a.write_review_okinawa_onlycolor {
	color:#36A9DF;
}

.unews_themepage_teaser_okinawa {
	height: 300px;
	width: 690px;
	font-family: Arial, Helvetica, sans-serif;
	float: left;
	background-repeat: no-repeat;
}


.unews_themepage_teaser_okinawa .left .title {
	text-align:left;
	font-size:17px;
	color:#5F4E38;
	font-weight:bold;
	overflow:hidden;
	line-height:120%;
	width: 200px;
}

.unews_themepage_newsall_toptitle_okinawa{
	background-image: url(../image/unews/themepage/okinawa/unews_themepage_newstopbanner.jpg);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	color: #ffffff;
	padding-left: 10px;
	font-size: 12px;
	font-weight: bold;
	padding-top: 4px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.unews_themepage_newsall_bottombar_okinawa{
	background-image: url(../image/unews/themepage/okinawa/unews_themepage_newsbottombanner.jpg);
	background-repeat: no-repeat;
	height: 18px;
	width: 670px;
	display: block;
	float: left;
	font-size: 11px;
	padding-top: 2px;
	text-align: right;
	padding-right: 10px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.TabbedPanelsTab_okinawa {
	position: relative;
	top: 1px;
	float: left;
	list-style: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	height: 28px;
	width: 92px;
	background-image: url(../image/unews/themepage/okinawa/unews_themepage_topselect_off.gif);
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-right: 1px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	z-index: 100;
	color: #ffffff;
	padding-top: 7px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.TabbedPanelsTabSelected_okinawa {
	background-image: url(../image/unews/themepage/okinawa/unews_themepage_topselect_on.gif);
}
.TabbedPanelsContentGroup_okinawa {
	clear: both;
	background-color: #F8FBEA;
	border: 1px solid #36A9DF;
	height: 110px;
	top: -23px;
	position: relative;
	z-index: 5;
	width: 306px;
	padding: 0px;
	margin: 0px;
}
/*okinawa themepage end*/


