@charset "utf-8";

/* ---------------------------------------- */
/* --- Default Styles --------------------- */
/* ---------------------------------------- */

* {
    margin: 0;
    padding: 0;
}

body {
/*  min-width: 760px;  */
    min-width: 320px;
    background-color: #DBDBDB;
    color: #000000;
/*  font-size: 85%; */
    font-family:'Lucida Grande',
                'Hiragino Kaku Gothic ProN',
                 Meiryo,
                 sans-serif;
    -webkit-text-size-adjust: none;
}

h1, h2, h3, h4 {
    font-size: 116%;  /* 16px */
}

li {
    list-style: none;
}

img {
    border: none;
}

input {
	height:30px;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
    margin-left: 5px;
    font-size: 20px;
}

textarea{
    padding:5px;
    margin-left: 5px;
    font-size: 20px;
}

label{
	padding-bottom: 10px;
}


/* ---------------------------------------- */
/* --- General-Purpose Class -------------- */
/* ---------------------------------------- */

.hidden {
    display: none;
}

.t_cen {
    text-align: center;
}

.t_left {
    text-align: left;
}

.t_right {
    text-align: right;
}

.t_red {
    color: #ff0000;
}

/* ---------------------------------------- */
/* --- Layout Section --------------------- */
/* ---------------------------------------- */

div#wrapper {
    padding: 8px;
}

div#header {
    height: 64px;
}

div#main {
}

div#footer {
    height: 45px;
}

/* ---------------------------------------- */
/* --- Header Section --------------------- */
/* ---------------------------------------- */

div#header {
    background-image: url("../img/bg_header.gif");
    background-repeat: repeat-x;
    background-position: left top;
}

div#header h1 {
    background: url("../img/logo.gif") no-repeat;
    float: left;
    width: 284px;
    height: 64px;
    outline: none;
    display: block;
    overflow: hidden;
    text-indent: -10000px;
}

div#header p {
    background-image: url("../img/bg_header_right.gif");
    background-repeat: no-repeat;
    background-position: right top;
    float: right;
    width: 8px;
    height: 64px;
}

/* ---------------------------------------- */
/* --- Header (LogoNone) Section ---------- */
/* ---------------------------------------- */

div#header_logonone {
/*  background-image: url("../img/bg_header.gif");  */
    background-repeat: repeat-x;
    background-position: left top;
    /* LogoNone */
    border: 1px solid #949494;
    background-color: #FFFFFF;
    height: 64px;
}

div#header_logonone h1 {
/*  background: url("../img/logo.gif") no-repeat;  */
    float: left;
    width: 284px;
    height: 64px;
    outline: none;
    display: block;
    overflow: hidden;
    text-indent: -10000px;
}

div#header ul {
/*  background-image: url("../img/bg_header_right.gif");  */
    background-repeat: no-repeat;
    background-position: right top;
    float: right;
    width: 8px;
    height: 64px;
}

/* ---------------------------------------- */
/* --- Main Section ----------------------- */
/* ---------------------------------------- */

div#main {
    background-color: #FFFFFF;
    background-image: url("../img/bg_body2.gif");
    background-repeat: repeat-x;
    background-position: left top;
    border-left: 1px solid #949494;
    border-right: 1px solid #949494;
    padding: 0 15px;
    padding-top: 10px;
    padding-bottom: 32px;
}

div#main h2 {
    background-image: url("../img/bg_h2_preview.gif");
    background-repeat: no-repeat;
    background-position: left top;
    height: 20px;
    margin-bottom: 20px;
/*  padding-top:    2px;  */
    padding-left:  83px;
    font-size: 12px;
}

div#main h3 {
    font-size:     12px;
    padding-top:    5px;
    padding-bottom: 3px;
}

div#main p {
    padding-top: 4px;
    padding-bottom: 4px;
/*  border-top: 1px dashed #949494;     */
/*  border-bottom: 1px dashed #949494;  */
    margin-bottom: 10px;
}

div#main table {
    width: 100%;
    border: 1px solid #949494;
}

div#main table tr th,
div#main table tr td {
    padding: 5px;
    border-top: 1px solid #B2B2B2;
    border-left: 1px solid #B2B2B2;
}

div#main table tr th {
    background-color: #F8F9E2;
    color: #1D2088;
    text-align: left;
    font-weight: normal;
    width:   30%;
}

/* --- Login Table Class ------------------------ */
div#main table.login_table {
    width: 350px;
    text-align: left;
    border: 1px solid #B2B2B2;

}

/* --- CSS btn Class ------------------------ */
div#main .css_btn{
    margin-top:    10px;
/*  margin-bottom: 10px;  */
/*  margin-left:   20px;  */
    margin-right:  40px;
/*  padding: 4px 10px;  */
    padding-top:    12px;
    padding-bottom: 12px;
    width: 180px;
    border:1px solid #666;
    cursor: pointer;
    color: #333;

    border-radius: 5px;

    background-color:#f9f9f9;
    /* Webkit */
    background:-webkit-gradient( linear, left top, left bottom, color-stop(5%, #f9f9f9), color-stop(100%, #c0c0c0) );
    /* Firefox */
    background:-moz-linear-gradient( center top, #f9f9f9 5%, #c0c0c0 100% );
    /* IE */
    background:-ms-linear-gradient( top, #f9f9f9 5%, #c0c0c0 100% );
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#c0c0c0');
    
}
 
div#main .css_btn:hover{
    background-color:#c0c0c0;
    /* Webkit */
    background:-webkit-gradient( linear, left top, left bottom, color-stop(5%, #ccc), color-stop(100%, #f9f9f9) );
    /* Firefox */
    background:-moz-linear-gradient( center top, #ccc 5%, #f9f9f9 100% );
    /* IE */
    background:-ms-linear-gradient( top, #c0c0c0 5%, #f9f9f9 100% );
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#c0c0c0', endColorstr='#f9f9f9');
}
 
div#main .css_btn:active{
    position:relative;
    top:1px;
}

/* --- Back Link on Success --- */

div#main .css_back_link{
    display: block;
    margin-top: 20px;
    padding-top:    12px;
    padding-bottom: 12px;
    width: 180px;
    text-decoration: none;
    text-align: center;

    border-radius: 20px;       /* CSS3 */
    border: 1px solid #E3E3E3;
    background-color: #F5F5F5;

    color: #666666;
}
div#main .css_back_link:active {
    color: #666666;
}
div#main .css_back_link:hover {
    background-color: #E0E0E0;
    text-decoration: underline;
}

/* ---------------------------------------- */
/* --- Top Section ------------------------ */
/* ---------------------------------------- */

div#top {
    display: none;
    height: 40px;
    margin-bottom: 16px;
}

/* ---------------------------------------- */
/* --- Bottom Section --------------------- */
/* ---------------------------------------- */

div#bottom {
    background: url("../img/bg_bottom2.gif") repeat-x;
    padding-top: 16px;
    padding-left: 8px;
    text-align: center;
}

div#bottom p{
	display: block;
	color: #666;
	font-weight: bold
}

div#bottom input{
	height: 50px;
}

div#bottom .prev{
	float: left;
}

div#bottom .prev a{
	color: #666;
}

div#bottom .prev a:hover{
	color: #c93c3e;
}

div#bottom .next{
	float: right;
}

div#bottom .next a{
	color: #666;
}

div#bottom .next a:hover{
	color: #c93c3e;
}

/* ---------------------------------------- */
/* --- Footer Section --------------------- */
/* ---------------------------------------- */

div#footer {
    background-color: #FFFFFF;
    background-image: url("../img/bg_footer.gif");
    background-repeat: repeat-x;
    background-position: left top;
}

div#footer p {
    background-image: url("../img/bg_copyright.gif");
    background-repeat: no-repeat;
    background-position: left top;
    float: left;
    width: 280px;
    height: 45px;
    outline: none;
    display: block;
    overflow: hidden;
    text-indent: -10000px;
}

div#footer ul {
    background-image: url("../img/bg_footer_right.gif");
    background-repeat: no-repeat;
    background-position: right top;
    float: right;
    width: 8px;
    height: 45px;
}

/* ---------------------------------------- */
/* --- Footer Section (LogoNone)----------- */
/* ---------------------------------------- */

div#footer_logonone {
    background-color: #FFFFFF;
/*  background-image: url("../img/bg_footer.gif");  */
    background-repeat: repeat-x;
    background-position: left top;
    /* LogoNone */
    border: 1px solid #949494;
    height: 45px;
}

div#footer_logonone p {
/*  background-image: url("../img/bg_copyright.gif");  */
    background-repeat: no-repeat;
    background-position: left top;
    float: left;
/*  width: 264px;  */
    height: 45px;
    outline: none;
    display: block;
    overflow: hidden;
/*  text-indent: -10000px;  */
    text-indent: 25px;
}

div#footer_logonone ul {
/*  background-image: url("../img/bg_footer_right.gif");  */
    background-repeat: no-repeat;
    background-position: right top;
    float: right;
    width: 8px;
    height: 45px;
}