/* jquery.interface.transfer */
#transferHelper {
	border:3px solid #aaaaaa;
}

/* jquery.interface.autocompleter */

.ac_results {
	padding: 0px;
	border: 1px solid #9D723B;
	background-color: #FFF5EB;
	overflow: hidden;
}

.ac_results ul {
	width: 100%;
	list-style-position: outside;
	list-style: none;
	padding: 0;
	margin: 0;
	color: #545454;
}

.ac_results iframe {
	display:none;/*sorry for IE5*/
	display/**/:block;/*sorry for IE5*/
	position:absolute;
	top:0;
	left:0;
	z-index:-1;
	filter:mask();
	width:3000px;
	height:3000px;
}

.ac_results li {
	margin: 0px;
	padding: 2px 5px;
	cursor: pointer;
	display: block;
	width: 100%;
	font: menu;
	font-size: 12px;
	overflow: hidden;
}
.ac_loading {
	background : url('../img/indicator.gif') right center no-repeat;
}
.ac_over {
	background-color: #BC7935;
	color: #FFFFFF;
}

/* jquery.interface.imagebox */
#ImageBoxOverlay
{
	background-color: #000;
}
#ImageBoxCaption
{
	background-color: #F4F4EC;
}
#ImageBoxContainer
{
	width: 250px;
	height: 250px;
	background-color: #F4F4EC;
}
#ImageBoxCaptionText
{
	font-weight: bold;
	padding-bottom: 5px;
	font-size: 13px;
	color: #000;
}
#ImageBoxCaptionImages
{
	margin: 0;
}
#ImageBoxNextImage
{
	background-image: url(images/imagebox/spacer.gif);
	background-color: transparent;
}
#ImageBoxPrevImage
{
	background-image: url(images/imagebox/spacer.gif);
	background-color: transparent;
}

#ImageBoxNextImage:hover
{
	background-image: url(images/imagebox/next_image.jpg);
	background-repeat:	no-repeat;
	background-position: right bottom;
}
#ImageBoxPrevImage:hover
{
	background-image: url(images/imagebox/prev_image.jpg);
	background-repeat:	no-repeat;
	background-position: left bottom;
}

/* suggest.js */

.suggest_area {
    position: absolute;
    background-color: #FFFFFF;
    border: 1px solid #CCCCFF;
}
.suggest_area div {
    display: block;
    width: 360px;
    overflow: hidden;
    white-space: nowrap;
}
.suggest_area div.select{ /* キー上下で選択した場合のスタイル */
    color: #FFFFFF;
    background-color: #3366FF;
}
.suggest_area div.over{ /* マウスオーバ時のスタイル */
    background-color: #99CCFF;
}


div.auto_complete {
    background-color :white;
    border:1px solid #888;
	margin:0;
	z-index:9999;
}
	div.auto_complete * {
		margin:0;
		padding:0;
	}
	div.auto_complete ul {
		list-style-image:none;
		list-style-type:none;
		background-image:none;
	}
	div.auto_complete li.selected {
		background-color: #ffb;
	}
