/**
Stylesheet: Slideshow.css
	CSS for Slideshow.

License:
	MIT-style license.

Copyright:
	Copyright (c) 2008 [Aeron Glemann](http://www.electricprism.com/aeron/).
	
HTML:
	<div class="slideshow">
		<div class="slideshow-images" />
		<div class="slideshow-captions" />
		<div class="slideshow-controller" />
		<div class="slideshow-loader" />
		<div class="slideshow-thumbnails" />
	</div>
	
Notes:
	These next five rules are required for Slideshow to work correctly.
	Override at your own risk.
*/

.slideshow {
	display: block; position: relative; z-index: 0;
}
.slideshow-images {
	display: block; overflow: hidden; position: relative;
}		
.slideshow-images img {
	display: block; position: absolute; z-index: 1;
}		
.slideshow-thumbnails {
	overflow: hidden;
}
.slideshow-thumbnails ul {
	left: 0; position: absolute; top: 0; width: 100000px;
}

/**
HTML:
	<div class="slideshow-images">
		<img />
		<img />
	</div>
	
Notes:
	The images div is where the slides are shown.
	Customize the visible / prev / next classes to effect the slideshow transitions: fading, wiping, etc.
*/

.slideshow-images {
	height: 300px; width: 400px;
}		
.slideshow-images-visible { 
	opacity: 1;
}	
.slideshow-images-prev { 
	opacity: 0;
}
.slideshow-images-next { 
	opacity: 0;
}
.slideshow-images img {
	float: left; left: 0; top: 0;
}	

/**
Notes:
	These are examples of user-defined styles.
	Customize these classes to your usage of Slideshow.
*/

.slideshow {
	height: 598px;
	width: 900px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 60px;
	margin-left: auto;
}
#faceBookCon {
	clear: left;
	height: 20px;
	width: auto;
	margin-left: 500px;
}
.slideshow a img {
	border: 0;
}

/**
HTML:
	<div class="slideshow-captions">
		...
	</div>
	
Notes:
	Customize the hidden / visible classes to affect the captions animation.
*/

.slideshow-captions {
	background: #000; bottom: 0; color: #FFF; font: normal 12px/22px Arial, sans-serif; left: 0; overflow: hidden; position: absolute; text-indent: 10px; width: 100%; z-index: 10000;
}
.slideshow-captions-hidden {
	height: 0; opacity: 0;
}
.slideshow-captions-visible {
	height: 32px; opacity: .7;
}

/**
HTML:
	<div class="slideshow-controller">
		<ul>
			<li class="first"><a /></li>
			<li class="prev"><a /></li>
			<li class="play"><a /></li>
			<li class="next"><a /></li>
			<li class="last"><a /></li>
		</ul>
	</div>
	
Notes:
	Customize the hidden / visible classes to affect the controller animation.
*/

.slideshow-controller {
	background: url(controller.png) no-repeat; height: 48px; left: 50%; margin: -24px 0 0 -122px; overflow: hidden; position: absolute; top: 90%; width: 244px; z-index: 10000;
}
#pageName {
	clear: none;
	height: 70px;
	width: auto;
	text-align: left;
	vertical-align: bottom;
	font-family: "Comic Sans MS", cursive;
	font-size: 24px;
	font-weight: normal;
	color: #D1686D;
	z-index: 10000;
	line-height: 30px;
	padding-left: 120px;
}
.slideshow-controller * {
	margin: 0; outline: none; padding: 0;
}
.slideshow-controller-hidden { 
	opacity: 0;
}
.slideshow-controller-visible {
	opacity: 1;
}
.slideshow-controller a {
	background: url(controller-controls.png) no-repeat -47px 0; cursor: pointer; display: block; height: 18px; left: 112px; overflow: hidden; position: absolute; top: 15px; width: 20px;
}
.slideshow-controller a.active {
	background-position: -47px -18px;
}
.slideshow-controller li {
	list-style: none;
}			 
.slideshow-controller li.first a {
	background-position: 0 0; left: 36px; width: 19px;
}
.slideshow-controller li.first a.active {
	background-position: 0 -18px;
}
.slideshow-controller li.prev a {
	background-position: -19px 0; left: 68px; width: 28px;
}
.slideshow-controller li.prev a.active {
	background-position: -19px -18px;
}
.slideshow-controller li.play a {
	background-position: -67px 0;
}
.slideshow-controller li.play a.active {
	background-position: -67px -18px;
}
.slideshow-controller li.next a {
	background-position: -87px 0; left: 148px; width: 28px;
}
.slideshow-controller li.next a.active {
	background-position: -87px -18px;
}
.slideshow-controller li.last a {
	background-position: -115px 0; left: 189px; width: 19px;
}
.slideshow-controller li.last a.active {
	background-position: -115px -18px;
}

/**
HTML:
	<div class="slideshow-loader" />
	
Notes:
	Customize the hidden / visible classes to affect the loader animation.
*/

.slideshow-loader {
	background: url(loader.png); height: 30px; right: 2px; position: absolute; top: 2px; width: 30px; z-index: 10001;
}
.slideshow-loader-hidden {
	opacity: 0;
}
.slideshow-loader-visible {
	opacity: 1;
}

/**
HTML:
	<div class="slideshow-thumbnails">
		<ul>
			<li><a class="slideshow-thumbnails-active" /></li>
			<li><a class="slideshow-thumbnails-inactive" /></li>
			...
			<li><a class="slideshow-thumbnails-inactive" /></li>
		</ul>
	</div>
	
Notes:
	Customize the active / inactive classes to affect the thumbnails animation.
	Use the !important keyword to override FX without affecting performance.
*/

.slideshow-thumbnails {
	bottom: -55px; height: 55px; left: 0; position: absolute; width: 100%;
}
.slideshow-thumbnails * {
	margin: 0; padding: 0;
}
.slideshow-thumbnails li {
	float: left; list-style: none;
}
.slideshow-thumbnails a {
	display: block; float: left; outline: none; margin: 5px 5px 0 0; padding: 5px;
}
.slideshow-thumbnails a:hover {
	background-color: #FF9 !important; opacity: 1 !important;
}
.slideshow-thumbnails img {
	display: block;
}
.slideshow-thumbnails-hidden {
	background-color: #FFF; opacity: 0;
}
.slideshow-thumbnails-inactive {
	background-color: #FFF; opacity: .5;
}
.slideshow-thumbnails-active {
	background-color: #9FF; opacity: 1;
}
a:link {
	text-decoration: none;
}
a:visited {
	text-decoration: none;
}
a:hover {
	color: #0C0;
}


/* CSS Document */
 * {
	margin: 0px;
	padding: 0px;

}
body {
	color: #666;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	background-color: #999;
}
#header-wrap, #container, #footer, #containerEng , #containerSearch, #containerDict, #containerDatabase{
	min-height: 5em;
	border-bottom: solid 1px rgb(50, 50, 50);
	width: 1024px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}    
#container {
	min-height: 10em;
	background-color: #FFF;
	background-image: url(image/Untitled-6RE.jpg);
	background-repeat: no-repeat;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	height: auto;
}
#herbariumCon {
	min-height: 10em;
	background-color: #FFF;
	background-image: url(image/headHerbariumRE.jpg);
	background-repeat: no-repeat;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 0.9em;
	margin-right: auto;
	margin-left: auto;
	width: 1024px;
	height: auto;
}

#floatLeft {
	float: right;
	clear: none;
	position: relative;
	width: 200px;
	left: 200px;
}
.footer {
	text-align: center;
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #95881F;
}
address {	
font-style: normal;
}
#plantOf {
	width: 374px;
	position: relative;
	float: right;
	margin-right: 35px;
	margin-top: 45px;
    top: 0px;
    left: 0px;
    height: 373px;
}
#plantOf2 {
	width: 374px;
	position: relative;
	float: right;
	margin-right: 35px;
	margin-top: 120px;
    top: -61px;
    left: 0px;
    height: 778px;
}
#news {
	width: 480px;
	position: relative;
	overflow: visible;
	float: left;
	left: 50px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 1.1em;
}
#newsImg {
	height: 150px;
	width: 200px;
}
.menuBar {
	position: relative;
	width: 1024px;
	height: 34px;
	background-color: #836A06;
	clear: both;
	float: none;
}
.menulist {
	float: left;
	height: 27px;
	padding-left: 22px;
	padding-top: 7px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 1.1em;
	color: #FFFFFF;
}
#searchBox {
	left: 727px;
	position: absolute;
	width: auto;
	height: 28px;
	top: 3px;
}
#linkLeft {
	width: 400px;
	left: 40px;
	position: relative;
	clear: both;
	float: left;
}

#linkRight {
	float: right;
	position: absolute;
	right: 122px;
	width: 380px;
	top: 614px;
}
#prob1 {
	width: 40px;
	background-image: url(image/flo2.png);
	background-repeat: no-repeat;
	height: 40px;
	position: relative;
	float: left;
}
#prob2 {
	position: relative;
	float: left;
	width: 40px;
	background-image: url(image/flo3.png);
	background-repeat: no-repeat;
	height: 40px;
}
#prob3 {
	float: left;
	width: 40px;
	background-image: url(image/flo1.png);
	background-repeat: no-repeat;
	height: 40px;
	position: relative;
}
#prob4 {
	position: relative;
	float: left;
	width: 40px;
	background-image: url(image/flo4.png);
	background-repeat: no-repeat;
	height: 40px;
}
.menulist a:link ,.menulist a:visited{
	font-family: Verdana, Geneva, sans-serif;
	font-weight: normal;
	text-decoration: none;
	color: #FFF;
}
.containerDetail  a:link, .containerDetail a:visited {
	font-size: 1.1em;
	color: #006600;
	text-decoration: none;
}
.menulist     a:hover, .menulist a:active     {
	font-family: Verdana, Geneva, sans-serif;
	font-weight: normal;
	text-decoration: none;
	color: #f90;
}

.secHead {
	font-family: Verdana, Geneva, sans-serif;
	font-size: medium;
	color: #660;
	border-bottom-width: .07em;
	border-bottom-style: solid;
	border-bottom-color: #F90;
	float: none;
	clear: none;
	padding-top: 10px;
	margin-left: 50px;
}
.secHeadBox {
	background-color: #A9A9A9;
	border: 1px solid #FFF;
	padding-top: 6px;
	padding-right: 2px;
	padding-bottom: 6px;
	padding-left: 2px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 1.2em;
	font-weight: bold;
	text-align: center;
	color: #660;
	background-image: url(image/aboutpanel_c.gif);
	background-repeat: no-repeat;
}

.secHeadNoPic {
	font-family: Verdana, Geneva, sans-serif;
	font-size: medium;
	color: #660;
	border-bottom-width: .07em;
	border-bottom-style: solid;
	border-bottom-color: #F90;
	float: none;
	clear: none;
	padding-top: 10px;
}
.secHeadMid {
	font-family: Verdana, Geneva, sans-serif;
	font-size: medium;
	color: #660;
	border-bottom-width: .07em;
	border-bottom-style: solid;
	border-bottom-color: #F90;
	float: none;
	clear: none;
	padding-top: 10px;
	text-align: center;
	padding-bottom: 2px;
}


.ul {
	list-style-type: none;
	text-align: left;
}

.left20px {
	padding-left: 20px;
	float: left;
	clear: none;
	padding-right: 20px;
}
.detail {
	float: none;
	padding-left: 20px;
}
.containerDetail {
	vertical-align: middle;
	float: none;
	width: 400px;
	clear: none;
	padding-left: 40px;
}
.containerDetail2 {
	float: left;
	clear: none;
	width: 48%;
	position: relative;
	margin-left: 1px;
}
.containerDetail3 {
	position: relative;
	float: right;
	width: 50%;
}
.blankArea {
	width: 100%;
	clear: both;
	float: none;
}



#plant_dic {
	color: #006;
	margin-left: 20px;
}
.containerPading20 {
	float: left;
	clear: none;
	position: relative;
	margin-left: 1px;
	padding-right: 20px;
	padding-left: 20px;
}
.menuLeftCon {
	position: relative;
	height: auto;
	width: auto;
	top: 110px;
	left: 60px;
	float: left;
}

.menuRightCon {
	position: relative;
	height: auto;
	width: auto;
	top: 110px;
	Right: 60px;
	float: Right;
}
.textCon {
	position: relative;
	height: auto;
	width: 600px;
	float: right;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 1.1em;
	color: #000;
	right: 50px;
	line-height: 3ex;
}

.textConT {
	position: relative;
	height: auto;
	width: 1000px;
	float: left;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 1.1em;
	color: #000;
	left: 10px;
	line-height: 3ex;

}
.textConT1 {
	position: relative;
	height: auto;
	width: 900px;
	float: left;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 1.1em;
	color: #000;
	left: 30px;
	line-height: 3ex;

}
.con {
	width: 1024px;
	left: auto;
	top: auto;
	right: auto;
	bottom: auto;
	margin-right: auto;
	margin-left: auto;
}
.subMenulist a:link, .subMenulist a:visited {
	font-family: Verdana, Geneva, sans-serif;
	font-weight: normal;
	text-decoration: none;
	color: #660;
	font-size: 1em;
}
.subMenulist {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 1.2em;
	font-weight: normal;
	color: #660;
	text-align: left;
	line-height: 2em;
	list-style-type: square;
	list-style-position: outside;
}
.subMenulistLine {
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #666;
	padding-bottom: 8px;
}
#libaryCon {
	min-height: 10em;
	background-color: #FFF;
	background-image: url(image/libralyHead.jpg);
	background-repeat: no-repeat;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 0.9em;
	margin-right: auto;
	margin-left: auto;
	width: 1024px;
	height: auto;
}
#floraCon {
	min-height: 10em;
	background-color: #FFF;
	background-image: url(image/floraHead.jpg);
	background-repeat: no-repeat;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 0.9em;
	margin-right: auto;
	margin-left: auto;
	width: 1024px;
	height: auto;
}
#gardenCon {
	min-height: 80em;
	background-color: #FFF;
	background-image: url(image/gardenHead.jpg);
	background-repeat: no-repeat;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 0.9em;
	margin-right: auto;
	margin-left: auto;
	width: 1024px;
	height: auto;
}
#bullentinCon {
	min-height: 10em;
	background-color: #FFF;
	background-image: url(image/bullentinHead.jpg);
	background-repeat: no-repeat;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 0.9em;
	margin-right: auto;
	margin-left: auto;
	width: 1024px;
	height: auto;
}
#paperCon {
	min-height: 10em;
	background-color: #FFF;
	background-image: url(image/paperHead.jpg);
	background-repeat: no-repeat;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 0.9em;
	margin-right: auto;
	margin-left: auto;
	width: 1024px;
	height: auto;
}
#stamCon {
	min-height: 10em;
	background-color: #FFF;
	background-image: url(image/stampHead.jpg);
	background-repeat: no-repeat;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 0.9em;
	margin-right: auto;
	margin-left: auto;
	width: 1024px;
	height: auto;
}
.picInStamp {
	float: right;
	padding-left: 10px;
}
.illusThumnail {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 0.8em;
	line-height: 1em;
	text-align: center;
	width: 150px;
	float: left;
	color: #669;
}
.imgBorder {
	border-right-width: 3px;
	border-bottom-width: 4px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #999;
	border-bottom-color: #999;
	border-top-width: 1px;
	border-left-width: 1px;
	border-top-color: #CCC;
	border-left-color: #CCC;
}


.headInStamp {
	position: relative;
	width: 350px;
}

#illusCon {
	min-height: 10em;
	background-color: #FFF;
	background-image: url(image/illusHead.jpg);
	background-repeat: no-repeat;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 0.9em;
	margin-right: auto;
	margin-left: auto;
	width: 1024px;
	height: auto;
}
.illusRow {
	width: 300px;
	clear: none;
	float: left;
	padding-top: 20px;
	height: auto;
	position: relative;
	top: 150px;
	left: 50px;
	text-align: center;
}
.underSubMenu {
	font-size: 0.8em;
	margin-left: 20px;
}

.subMenulist a:hover, .subMenulist a:active {
	font-family: Verdana, Geneva, sans-serif;
	font-weight: normal;
	color: #F90;
	text-decoration: none;
}
.capture {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #333333;
}
.header2 {
	color: #CC3300;
	font-size: 14px;
}

#containerEng {
	min-height: 10em;
	background-color: #FFF;
	background-image: url(image/engHead1.jpg);
	background-repeat: no-repeat;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 0.9em;
	height: auto;
}
.th-eng {
	font-weight: normal;
	position: absolute;
	left: 957px;
	top: 8px;
	height: auto;
	width: auto;
}
.eng-th {
	font-weight: normal;
	position: absolute;
	left: 957px;
	top: 8px;
	height: auto;
	width: auto;
}

.th-eng a:link , .th-eng a:visited, .eng-th a:link , .eng-th a:visited{
	float: left;
	position: relative;
	font-weight: normal;
	color: #FFF;
	font-size: 1.2em;
	text-decoration: none;
}
#linkLeft_Eng {
	width: 400px;
	left: 20px;
	position: relative;
	clear: both;
	float: left;
}
#illusCon_Eng {
	min-height: 10em;
	background-color: #FFF;
	background-image: url(image/illusEngHead1.jpg);
	background-repeat: no-repeat;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 0.9em;
	margin-right: auto;
	margin-left: auto;
	width: 1024px;
	height: auto;
}
#prob5 {
	position: relative;
	float: left;
	width: 40px;
	background-image: url(image/flo5.png);
	background-repeat: no-repeat;
	height: 40px;
}
#prob6 {
	position: relative;
	float: left;
	width: 40px;
	background-image: url(image/flo6.png);
	background-repeat: no-repeat;
	height: 40px;
}
#prob7 {
	position: relative;
	float: left;
	width: 40px;
	background-image: url(image/flo7.png);
	background-repeat: no-repeat;
	height: 40px;
}
.secHeadMidBar {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 1em;
	color: #660;
	float: none;
	clear: none;
	text-align: center;
	background-color: #FBF4DA;
	padding-bottom: 3px;
	font-weight: normal;
	padding-top: 2px;
	padding-left: 10px;
}
.clear {
	clear: both;
	width: 100%;
	float: none;
	line-height: 0px;
	height: 0px;
}
.spacerHead {
	height: 114px;
	width: 100%;
}
#containerSearch {
	min-height: 10em;
	background-color: #FFF;
	background-image: url(image/searchHead.jpg);
	background-repeat: no-repeat;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 0.9em;
	height: auto;
}
#result {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 1.1em;
	margin-left: 150px;
	margin-right: 50px;
}
.fullpageCon {
	height: auto;
	width: 800px;
	left: 150px;
	margin-left: 150px;
	min-height: 60em;
}
.typeButton {
	clear: none;
	float: left;
	height: auto;
	position: relative;
	text-align: center;
	width: 295px;
	margin-top: 10px;
	margin-bottom: 200px;
}
.typePic {
	position: relative;
	float: right;
	width: 45%;
}
.secHeadNoline {
	font-family: Verdana, Geneva, sans-serif;
	font-size: medium;
	color: #660;
	float: none;
	clear: none;
	padding-top: 10px;
}
#herbariumConEng {
	min-height: 10em;
	background-color: #FFF;
	background-image: url(image/herbariumEngHead1.jpg);
	background-repeat: no-repeat;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 0.9em;
	margin-right: auto;
	margin-left: auto;
	width: 1024px;
	height: auto;
}
#bullentinConEng {
	min-height: 10em;
	background-color: #FFF;
	background-image: url(image/bullentinEngHead1.jpg);
	background-repeat: no-repeat;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 0.9em;
	margin-right: auto;
	margin-left: auto;
	width: 1024px;
	height: auto;
}
#plantMonthCon {
	min-height: 10em;
	background-color: #FFF;
	background-image: url(image/plantMonth.jpg);
	background-repeat: no-repeat;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 0.9em;
	margin-right: auto;
	margin-left: auto;
	width: 1024px;
	height: auto;
}
#containerDict {
	min-height: 10em;
	background-color: #FFF;
	background-image: url(../../image/search2.jpg);
	background-repeat: no-repeat;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 0.9em;
	height: auto;
}
.midCon {
	position: relative;
	height: auto;
	width: 600px;
	float: right;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 1.1em;
	color: #000;
	right: 130px;
	line-height: 3ex;
}
#floraConEng {
	min-height: 10em;
	background-color: #FFF;
	background-image: url(image/floraEngHead1.jpg);
	background-repeat: no-repeat;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 0.9em;
	margin-right: auto;
	margin-left: auto;
	width: 1024px;
	height: auto;
}
#gardenConEng {
	min-height: 80em;
	background-color: #FFF;
	background-image: url(image/gardenEngHead1.jpg);
	background-repeat: no-repeat;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 0.9em;
	margin-right: auto;
	margin-left: auto;
	width: 1024px;
	height: auto;
}
#containerDatabase {
	min-height: 10em;
	background-color: #FFF;
	background-image: url(image/databaseHead.jpg);
	background-repeat: no-repeat;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 0.9em;
	height: auto;
}
.ulHome {
	list-style-type: square;
	text-align: left;
}
.ulHome  a:hover   {
	list-style-type: none;
	text-align: left;
	color: #f90;
}


/* na add */
.textfindinput {
	BORDER-RIGHT: darkgray 1px solid; BORDER-TOP: darkgray 1px solid; FONT-SIZE: 11px; BORDER-LEFT: darkgray 1px solid; WIDTH: 100px; BORDER-BOTTOM: darkgray 1px solid; FONT-FAMILY: Tahoma; HEIGHT: 20px; TEXT-ALIGN: left
}


.textfindinputR {
	BORDER-RIGHT: darkgray 1px solid; BORDER-TOP: darkgray 1px solid; FONT-SIZE: 11px; BORDER-LEFT: darkgray 1px solid; WIDTH: 50px; BORDER-BOTTOM: darkgray 1px solid; FONT-FAMILY: Tahoma; HEIGHT: 20px; TEXT-ALIGN: Right
}
.cmdinput {
	BORDER-RIGHT: darkgray 1px solid; BORDER-TOP: darkgray 1px solid; FONT-SIZE: 11px; BORDER-LEFT: darkgray 1px solid; WIDTH: 70px; BORDER-BOTTOM: darkgray 1px solid; FONT-FAMILY: Tahoma; HEIGHT: 20px; TEXT-ALIGN: center
}

.spanh {
	FONT-SIZE: 11px;
	WIDTH: 100px;
	FONT-FAMILY: Tahoma;
	HEIGHT: 15px;
	color: #000000; /* edit color darkgray */
}

.spanhl {
	FONT-SIZE: 11px;
	WIDTH: 100px;
	FONT-FAMILY: Tahoma;
	HEIGHT: 2px;
	color: #000000; /* edit color darkgray */
}
.spanm {
	 WIDTH: 200px;  HEIGHT: 10px; TEXT-ALIGN: center
}
.spand {
	 WIDTH: 220px;  HEIGHT: 10px; TEXT-ALIGN: left
}

.textfindinputc1 {
	BORDER-RIGHT: darkgray 1px solid; BORDER-TOP: darkgray 1px solid; FONT-SIZE: 11px; BORDER-LEFT: darkgray 1px solid; WIDTH: 200px; BORDER-BOTTOM: darkgray 1px solid; FONT-FAMILY: Tahoma; HEIGHT: 20px; TEXT-ALIGN: left
}

.textfindinputc2 {
	BORDER-RIGHT: darkgray 1px solid; BORDER-TOP: darkgray 1px solid; FONT-SIZE: 11px; BORDER-LEFT: darkgray 1px solid; WIDTH: 200px; BORDER-BOTTOM: darkgray 1px solid; FONT-FAMILY: Tahoma; HEIGHT: 100px; TEXT-ALIGN: left
}



.textfindinputg {
	BORDER-RIGHT: darkgray 1px solid; BORDER-TOP: darkgray 1px solid; FONT-SIZE: 11px; BORDER-LEFT: darkgray 1px solid; WIDTH: 60px; BORDER-BOTTOM: darkgray 1px solid; FONT-FAMILY: Tahoma; HEIGHT: 20px; TEXT-ALIGN: left
}

.textfindinputGR {
	BORDER-RIGHT: darkgray 1px solid; BORDER-TOP: darkgray 1px solid; FONT-SIZE: 11px; BORDER-LEFT: darkgray 1px solid; WIDTH: 30px; BORDER-BOTTOM: darkgray 1px solid; FONT-FAMILY: Tahoma; HEIGHT: 20px; TEXT-ALIGN: Right
}
