@charset "utf-8"; 

/* ---------------
login.css
ログイン画面に関わるスタイルの設定です。
--------------- */

/* ---------------
■■目次
■マージン・余白のリセット
■要素の再定義
■フォーム
--------------- */

/* ---------------
マージン・余白のリセット
--------------- */
body, div,
h1, h2, h3, h4, h5, h6,
pre, form, fieldset, input, textarea, p, blockquote, th ,td {
	margin: 0;
	padding: 0;
}

/* ---------------
要素の再定義
--------------- */
html, body {
    height: 100%;
}

body {
	color: #333333;
	font-size: 14px; /* モダンブラウザ向け */
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka",  "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	background: #ffffff;
}
/* ie6 only */
* html body ,
* html body td ,
* html body th {
	font-size: x-small;
}
/* ie7 only */
*+html body ,
*+html body td ,
*+html body th {
	font-size: small;
}

p {
	font-size: 100%;
	line-height: 1.5;
	}
h1, h2, h3, h4, h5, h6 {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka",  "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size:114%;
}

img {
	border: none;
}

input {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/* リンクの設定 */
a {
    outline : 0;
}
a:link {
    border: none;
    color: #0066CC;
    text-decoration: none;
}
a:visited {
    border: none;
    color: #0033CC;
    text-decoration: none;
}
a:active {
    border: none;
    color: #0033CC;
}
a:hover {
    border: none;
    color: #6633CC;
    text-decoration: underline;
}

/* ---------------
フォーム
--------------- */

/* 入力エラー時の表示設定 */
label.validator-result-, label.validator-result-1 {
	display: none;
}
label.validator-result-error, label.validator-result-0 {
	display: block;
	color: red;
}
p.transaction-notice- {
	display: none;
}
p.transaction-notice-error {
	color: red;
}
body {
	background-color: #F9F9F9;
}
/* ログインフォーム囲み */
#loginBox {
	width: 340px;
	height: 290px;
	position: relative;
	top: 50%;
	margin: -175px auto 0 auto;
	padding: 30px;
	background-color: #F0F0F1;
	border: 1px solid #EEEEEE;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	-webkit-box-shadow: 1px 1px 2px silver;
	-moz-box-shadow: 1px 1px 2px silver;
	text-align:left;
}
    /* 入力フォーム部分 */
    #formBox .loginDl ,
    #formBox .loginDl dd{
    	margin: 0px;
    	padding: 0px;
    }
    #formBox .loginDl dt{
    	margin: 10px 0 0 0;
    	padding: 0px;
    	color: #555;
    }
    #formBox .loginDl dd .formSizeL{
    	font-size: 1.4em;
    	width: 334px;
    }
    /* a-blog cmsロゴ */
    #logo {
    	text-align: center;
    }
    /* バージョン表記 */
    #version {
    	margin-top: 20px;
    	color: #474752;
    	text-align: center;
    	font-size: 14px;
    }
    /* パスワード忘れ・ログイン画面に戻るリンク部分 */
    .loginLink {
    	float:left;
    	width:200px;
    	font-size: 12px;
    }
    /* フォームボタン */
    .loginAction {
    	margin-right:10px;
    	text-align:right;
    }
    .loginAuto {
        font-size: 90%;
        line-height: 100%;
        padding: 0px;
    }
/* 読者登録リンク囲み */
#subscribeBox {
	position: relative;
	top: 50%;
	margin: -175px auto 0 auto;
	width: 340px;
	margin: 15px auto 0 auto;
	padding: 15px 30px;
	background-color: #F0F0F1;
	border: 1px solid #EEEEEE;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	-webkit-box-shadow: 1px 1px 2px silver;
	-moz-box-shadow: 1px 1px 2px silver;
	text-align:left;
}
    /* 読者登録リンク */
    .subscribeLink {
    	font-size: 12px;
    }

/* 期限切れのご案内 */
div#expired {
    width: 100%;
    position: absolute;
    top: 0;
    text-align: center;
    background-color: #F0F0F1;
    font-size: 13px;
    color: #555;
    padding-bottom: 2px;
}

    div#expired h3 {
        color: #eee;
        padding: 2px 0;
        font-weight: normal;
        background-color: #474750;
    }