/* body要素（ページ本体）全体に適用するCSSルール */
body {
    color: #000000;
    background-color: #add8e6;
    text-align: left;
    margin-right: 8px;
	margin-left : 8px;
}

body.center {
    color: #000000;
    background-color: #add8e6;
    text-align: center;
    width:auto;
	margin-right: 8px;
	margin-left : 8px;
}

table {
 margin-left: 0px;
}

table.center {
 margin-left: auto;
 margin-right: auto;
 text-align: left;
}

label.error_str {
	font-size: 12px;
    padding-top: 3px;
    padding-bottom: 3px;
    color: red;
}

button.button1 {
    /* 文字サイズを1.4emに指定 */
    font-size: 0.9em;
    /* 文字の太さをboldに指定 */
    font-weight: bold;
    /* 縦方向に10px、
     * 横方向に30pxの余白を指定 */
    padding: 5px 1px;
    /* 背景色を濃い青色に指定 */
    background-color: #2989d8;
    /* 文字色を白色に指定 */
    color: #fff;
    /* ボーダーをなくす */
    border-style: none;
    height:35px;
    border-radius:7px;
    /*
    background-image:-moz-linear-gradient(
    top,
    #49a9d4 0%,
    #2989d8 40%,
    #2285d6 52%,
    #2989d8);
 
    background-image:-webkit-gradient(
    linear,left top,left bottom,
    from(#49a9d4),
    color-stop(0.49,#2989d8),
    color-stop(0.52,#2285d6),
    to(#2989d8));
    */
}

button.button1:hover {
    /* 背景色を明るい青色に指定 */
    background-color: #24d;
    /* 文字色を白色に指定 */
    color: #fff;
}


.btn {
	background: #EEE;
	border: 1px solid #DDD;
	border-radius: 20px;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	color: #111;
	width: 100px;
	padding: 10px 0;
}
h2 {
  color: #ffffff; /* 文字の色 */
  //background-color : #515151; /* 背景の色 */
  background-color : #515151; /* 背景の色 */
  border-style: solid; /* 枠の種類 */
  border-color: #999999; /* 枠の色 */
  border-width: 0px 50px; /* 枠の幅 */
  line-height: 150%; /* 行の高さ */
  text-align: center; /* テキストの配置 */
}

div#container { 
    margin: 0 auto;
    width: 250px;
}


/* h2、h3要素に適用する */
/*
h2,h3 {
    font-size: 1.0em;
}
*/

 /* a要素（リンク）に適用する */
a {
    color: #4433cc;
}

/* IDセレクター#headerに適用する */
#header {
    margin: 0;
    padding: 0px;
    border-top: 2px solid #ff0000;
    border-bottom: 2px solid #ff0000;
}

/* IDセレクター#headerの要素に含まれるh1要素に適用する */
#header h1 {
    font-size: 1.4em;
    font-family: Times New Romman ,Osaka;
    margin: 5px 100px;
}

/* IDセレクター#headerの要素に含まれるh1→a要素に適用する */
#header h1 a {
    color: #ff0000;
    text-decoration: none;
}

/* IDセレクター#headerの要素に含まれるh1→a要素がポイントされた際に適用する */
#header h1 a:hover {
    color: #ff6600;
}

/* IDセレクター#nav（ナビゲーション）の要素に適用する */
#nav {
    margin: 0 100px;
}

/* IDセレクター#main（メインコンテンツ）の要素に適用する */
#main {
    margin: 0 100px;
}

/* クラスセレクターstatusが適用されている要素に適用する */
.status {
    padding: 10px;
    border: 2px solid #cccccc;
    margin-bottom: 10px;
    background-color: #ffffff
}

/* クラスセレクターerror_listが適用されているul要素に適用する */
ul.error_list {
    border: 1px solid #ff0000;
    background-color: #ffcccc;
    padding-top: 3px;
    padding-bottom: 3px;
    color: red;
}

/* クラスセレクターerror_listが適用されているul要素に含まれるli要素に適用する */
ul.error_list li {
    color: #ff0000;
}
/* クラスセレクターacountが適用されている要素に適用する */
.acount {
    float:left;
    background-color: #ffcccc;
    padding: 0px 30px 10px 30px;
    width: 200px;
}

/* クラスセレクターf_userが適用されている要素に適用する */
.f_user {
    float:left;
    background-color: #ffcccc;
    padding: 0px 30px 10px 30px;
    margin-left: 60px;
    width: 200px;
}