/*============================================
全体
============================================*/
body {
	background-color:#000;
	background-image:url("../img/bodyback.png");
	background-repeat:repeat-y;
	text-align:center;
}

/*============================================
ナビゲーションメニュー
============================================*/
#nav{
    height:50px;
    border-bottom:1px solid #dd9;
    position:fixed;
    top:0px;
    left:0px;
    right:0px;
    background-image:url("../img/menu_back.png");
}

#nav ul{
    height:50px;
    list-style:none;
    padding:0px 0px 0px 10px;
    margin:3px auto 3px auto;
    width:980px;
}

#nav ul li{
    display:inline;
    float:left;
    margin:0px 1px;
}

#topbutton{
    float:left;
    margin:0px 30px 0px 0px;
}

/*============================================
タイトル画像
============================================*/
div#rm_title{
	margin:80px 0px 30px 0px;
}

/*============================================
TABLE（角丸）
============================================*/
div#content table {
	*border-collapse: collapse; /* IE7 and lower */
	border-spacing: 0px;
	width:950px;
	/*中央配置*/
	margin-left: auto; margin-right: auto;
	margin-top:10px;
	margin-bottom:30px;
}

iecenter{
	text-align:center;
}

.bordered td{
	border: solid #dd9 2px;
	background-color:#0F0018;
	/*カド丸め*/
	-moz-border-radius: 9px 9px 9px 9px;
	-webkit-border-radius: 9px 9px 9px 9px;
	border-radius: 9px 9px 9px 9px;
	padding-left: 12px;
}

/*============================================
TABLE（その他）
============================================*/
#clear td{
	border: 0px;
	padding: 0px 0px 0px 0px;
	margin-top:10px;
	margin-bottom:20px;
}

div#normal table {
	*border-collapse: collapse; /* IE7 and lower */
	border-spacing: 0px;
	width:900px;
	margin-left: auto;
	margin-right: auto;
	margin-top:10px;
	margin-bottom:10px;
}

#normal td{
	background-color:#261d30;
	border:solid #333175 2px;
	padding-left: 5px;
	margin-top:10px;
	margin-bottom:10px;
	/*カド丸めない*/
	-moz-border-radius: 0px 0px 0px 0px;
	-webkit-border-radius: 0px 0px 0px 0px;
	border-radius: 0px 0px 0px 0px;
}

#normal table tr.failed {
        color: #444444;
        background: #999;
}


