<style type="text/css"><!--
/* 基本 */
input[type=text],textarea,input[type=submit]{
    font-size:90%;
    /* デフォルト設定をリセット */
    -webkit-appearance: none;
    /* 背景色（全て指定） */
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff));
    background-image: -webkit-linear-gradient(left, #fff, #fff);
    background-color: #fff;
    /* 文字色 */
    color: #000000;
    /* 枠色 */
    border:solid 1px #000000;
    /* 角丸設定など */
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    vertical-align:middle; 
    position:relative; 
    top:-1px; 
}
/* テキストエリア */
textarea{
    width: 80%; /* 長さ */
    margin: 4px; /* 余白 */
}
/* 入力フォーム、セレクトフォーム */
input[type=text],select{
    width: 140px; /* 長さ */
    height: 27px;  /* 高さ */
    padding:0 2px; /* 文字余白 */
    text-align: center;
    margin: 4px; /* 余白 */
}
/* セレクトフォーム 補足 */
select{
    font-size:90%;
    /* 角丸 */
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    /* 文字色 */
    color: #000000;
    /* 枠色 */
    border:solid 1px #000000;
    background-color: #ffffff;
    padding: 0px 0px 0px 8px;
}
/* ボタン */
input[type=submit]{ 
    width: 50px; /* 長さ */ 
    height:27px; /* 高さ */
    padding:0 2px; /* 文字余白 */
}
--></style>