@charset "UTF-8";

/*
=============================================================================
login.css
=============================================================================
Suggested order by mozilla.org Base Styles (http://www.mozilla.org/css/base/content.css)
 * display
 * list-style
 * position
 * float
 * clear
 * width
 * height
 * margin
 * padding
 * border
 * background
 * color
 * font
 * text-decoration
 * text-align
 * vertical-align
 * white-space
 * other text
 * content
-----------------------------------------------------------------------------
font-size reference
 *  77% = 10px	 	* 122% = 16px		* 167% = 22px
 *  85% = 11px		* 129% = 17px		* 174% = 23px
 *  92% = 12px		* 136% = 18px		* 182% = 24px
 * 100% = 13px		* 144% = 19px		* 189% = 25px
 * 107% = 14px		* 152% = 20px		* 197% = 26px
 * 114% = 15px		* 159% = 21px
-----------------------------------------------------------------------------
*/


/* Login Form Styling
-----------------------------------------------------------------------------*/
/* エラー時の枠表示 */
#login #login_error, #login .message {
	margin: 0 auto;
	width: 480px;
	padding: 10px 15px;
	border: 2px solid #cdcece;
	-moz-border-radius: 5px;
	-khtml-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	background-color: #f9ebe5;
	color: #ff6600;
	font-size: 92%;
	font-weight: bold;
	}
/* 通常メッセージ */
#login .message {
	background-color: #f2f7f9;
	color: #363636;
	}

/* フォーム */
#login form {
	width: 510px;
	margin: 0 auto;
	padding-top: 20px;
	}

	/* 入力ラベル */
	#login label {
		color: #535353;
		font-weight: bold;
		}

	/* 入力エリア */
	#login .input {
		margin-bottom: 10px;
		width: 500px;
		padding: 4px;
		border: 1px solid #a2b4c0;
		background: #ffffff url(../images/bg-input-inshadow.gif) 0 0 repeat-x;
		font-size: 114%;
		}
		#login .input:focus { outline: none; }
		/* チェックボックス */
		#login .forgetmenot input {
			margin-right: 2px;
			border: none;
			}

/* 送信ボタン */
#login .submit {
	margin-bottom: 20px;
	}
	#login .submit #wp-submit {
		display: block;
		float: right;
		width: 92px;
		height: 39px;
		margin: 10px 0;
		border: none;
		background: url(../images/btn-login.gif) 0 0 no-repeat;
		font-size: 1px;
		text-indent: -9999px;
		overflow: hidden;
		cursor: pointer;
		}
		#login .submit #wp-submit:hover {
			background-position: 0 -39px;
			}
		#login .submit #wp-submit:active {
			background-position: 0 -78px;
			}
			#login #lostpasswordform .submit #wp-submit {
				background-image: url(../images/btn-send.gif);
				}
			#login #registerform .submit #wp-submit {
				background-image: url(../images/btn-register.gif);
				}

/* ナビゲーション */
#nav {
	clear: both;
	width: 510px;
	margin: 0 auto;
	font-size: 92%;
	}

