
@charset "iso-8859-1";
/*character encoding*/

*, *:after, *:before {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, input, textarea, p, th, td{
    font-family: 'arial';
    font-size: 13px;
    word-wrap: break-word;
}


body {
  color: #737373;
  overflow: hidden;
  overflow-y: scroll;
  margin: 0px 10px 10px;
}

section{
    margin-top: 10px;
    background: white;
    border: solid 1px #737373;
    border-top: solid 10px #737373;
}

/*link*/
a {
  outline: none;
  color: #1a6fc5;
  text-decoration: none;
  margin: 0;
}

a:hover, a:focus {
  color: #333;
  outline: none;
}

/*main contents*/
.main {
  position: relative;
}

/*header*/
header {
  width: 100%;
  line-height: 1;
  padding: 15px 15px 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  color: #737373;
  background: url("../icon/connector.png") no-repeat;
  background-color: #ffffff;
  background-size: 30px 70px;
  margin-top: 80px;
}

header h1, header p{
	margin: 3px 20px;
}

header h1{
	font-size:18px;
}

header a{
  outline: none;
  color: #737373;
  text-decoration: none;
}

header a:hover, a:focus {
  color: #aaaaaa;
  outline: none;
}

/*machine name*/
.name {
  font-size: 12px;
  font-weight: bold;
}

/*search box*/
.searchInput{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content:         flex-end;
}

/*search icon*/
img.iconP{
	vertical-align:middle;
}

/*images*/
.image{
	width:auto;
	height:auto;
	max-height:300px;
	max-width:250px;
}

/*footer*/
footer {
  background-color: #333333;
  width: 100%;
  padding: 13px;
  text-align: center;
  font-weight: bold;
  line-height: 0.8em;
}

footer a {
  outline: none;
  color: #ffffff;
  text-decoration: none;
  margin: 0;
  position: relative;
}

a:hover, a:focus {
  color: #aaaaaa;
  outline: none;
}


.img_top{
	width: 50px;
	height: 50px;
	float: right;
	margin-top: 10px;
	margin-right:10px;
}

section {
	background: #ffffff;
	width: 100%;
	min-width:100px;
	padding: 20px;
}

/*------------------------------------------------------format-----------------------------------------------------*/

p{
	margin:2px;
}

/*title*/
h1 {
	font-size: 20px;
	color: #1A6FC5;
	margin: 5px;
}

h2 {
	font-size: 17px;
	color: #F67E00;
	font-weight: bold;
	margin: 10px 0px 0px;
	
}

h3 {
	font-size: 15px;
	color: #6DAF3D;
	font-weight: bold;
	margin: 10px 0px 0px;
}

h4 {
	font-size: 13px;
	color: #333333;
	font-weight: bold;
	margin: 10px 0px 0px;
}

h5 {
	font-size: 12px;
	color: #FD9F13;
	font-weight: bold;
	margin: 10px 0px 0px;
}


/*indent*/
.ind_lv1{
	margin-left: 20px;
}

.ind_lv2{
	margin-left: 40px;
}

.ind_lv3{
	margin-left: 60px;
}

.ind_lv4{
	margin-left: 80px;
}

/*indent list*/
ul,ol{
	margin-top: 3px;
	margin-left: -5px;
}

/*<p>format, note, seealso, important*/
.note p, .seealso p, .important p{
	margin-top: 5px;
	margin-left: 25px;
	margin-bottom: 10px;
}

.note span, .seealso span, .important span{
	color: #1A6FC5;
	font-weight:bold;
}

.note:before{
	content: "";
	display: inline-block;
	width: 25px;
	height: 30px;
	background: url("../icon/icon_note.png") no-repeat;
	background-position:100% 100%;
}

.seealso:before{
	content: "";
	display: inline-block;
	width: 25px;
	height: 30px;
	background: url("../icon/icon_seealso.png") no-repeat;
	background-position:100% 100%;
}

.important:before{
	content: "";
	display: inline-block;
	width: 25px;
	height: 30px;
	background: url("../icon/icon_important.png") no-repeat;
	background-position:100% 100%;
}

table,td,th{
	border: 1px #e0e0e0 solid;
}

table tr td ul p{
	margin-top: 10px;
	margin-left: -20px;
}

table tr td ul li{
	margin-top: 10px;
	margin-left: -10px;
}

/*--------------------------back to top button------------------------------------*/
.pagetop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
}
.pagetop a {
    display: block;
    background-color: #ccc;
    text-align: center;
    color: #222;
    font-size: 12px;
    text-decoration: none;
    padding: 5px 10px;
	filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}
.pagetop a:hover {
    display: block;
    background-color: #b2d1fb;
    text-align: center;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    padding:5px 10px;
	filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}
/*---------------------------------------------desktop screen: over 767px--------------------------------------------------*/

@media screen and (min-width: 767px) {
  body{
    width: 940px;
    margin: 0px auto;
  }
    
  header{
  margin-top: 0px;
  }
  
  .image{
	width:auto;
	height:auto;
	max-height:400px;
	max-width:400px;
}
  
}
