/*-----------------------------
検索フォーム
-----------------------------*/

#search {
     margin-top: 10px;
     padding-top: 0px;
     padding-bottom: 0px;
     width: 270px;
     position: relative;
     float: right;
     text-align: left;
}

#s {
	height: 25px;
}

/* firefox */
#s, x:-moz-any-link  {
	height: 20px;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
	#s {
		height: 23px;
	}
}

#search input#s {
     width: 210px; /* 検索フォームの横幅 */
     height: 25px; /* 検索フォームの文字記入部分の高さ */
     border: 1px solid #999; /* 検索フォームのボーダー　1pxあるのに注意 */
     color: #333; /* 検索フォームの文字色 */
     padding-top: 4px; /* 検索フォームの文字記入部分の上の空きスペース */
     padding-right: 10px; /* 検索フォームの文字記入部分の右の空きスペース */
     padding-bottom: 4px; /* 検索フォームの文字記入部分の下の空きスペース */
     padding-left: 10px; /* 検索フォームの文字記入部分の左の空きスペース */
     background-color: #fff; /* 検索フォームの背景色 */
     font-size: 14px; /* 検索フォームの文字サイズ */
}  

#searchsubmit {
     position: absolute;
     top: 0;
     _top: 1px;
     left: 210px; /* 検索フォームの横幅と同じ長さを指定 */
	 width: 60px;
	 height: 27px;
}  

*:first-child + html #searchsubmit    {  
    top: 1px;  
}  

#search #searchform {
     position: relative;
}
/*------------------*/