/* PW保存ログインID表示エリア */
#idlist{
  background-color: white;     /* 背景色 */
  position: absolute;
  z-index: 2;                  /* ！変更時要考慮！ 重なり順の指定 */

  border: solid 1px #ccc;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-color: #fff;
  font-family: Arial;
  width: 583px;
  max-width: 95%;
  line-height: 38px;
  font-size: 1.9em;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

a.loginid{
  margin: 0px;
  padding: 0px;
}

/* PW保存ログインIDの文字 */
a:link, a:visited, a:hover, a:active {
}

/* 一覧からログインID選択中の背景色 */
div#loginid a{
  display: block;
  color: black;               /* 色 */
  text-decoration: none;      /* 文字装飾なし */
}
div#loginid a:hover {
  background-color: lightcyan;
}

/* パスワード入力可能な場合 */
.pass_enable{
  /* スタイル指定なし */
}

/* パスワード入力不可の場合 */
.pass_disable{
  background: lightgrey;         /* 背景色 */
  border: 1px solid grey;        /* 枠線の太さ・種類・色 */
}
