@charset 'UTF-8';

/* Page list */
#tab_usercat.manual-pagelist {
  overflow: hidden;
  padding: 10px 10px 5px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #efefef;
}
#tab_usercat.manual-pagelist li {
  margin: 0 1em .5em 0;
  display: inline-block;
}
#tab_usercat.manual-pagelist a {
  border: none;
  padding: 0;
}
#tab_usercat.manual-pagelist a:before {
  content: "\f0da";
  display: inline-block;
  margin-right: .5em;
  font-family: FontAwesome;
}

/* Heading */
.manual h2 { margin: 4em 0 2em; }
.manual h2:first-child { margin-top: 0; }

.manual h2 + p { margin: -1em 0 2em; }

.manual h3 {
    margin : 2em 0 2em;
}
/* UL */
.manual ul {
    margin-top : 1em;
    margin-bottom : 1em;
}

.manual ul > li {
    position: relative;
    margin: 0 0 0 2em;
    list-style-type : circle;
}

/* OL */
.manual ol {
    counter-reset: li;
    margin-top : 1em;
}
.manual ol > li {
  padding: 0 0 1em 2em;
  margin-bottom: 1.5em;
  border-bottom: 1px dotted #ccc;
  list-style-type: none;
  position: relative;
}
.manual ol > li:before {
  content: counter(li);
  counter-increment:li;
  display: inline-block;
  width: 1.6em;
  height: 1.6em;
  background-color: #999;
  -webkit-border-radius: .8em;
  -moz-border-radius: .8em;
  border-radius: .8em;
  color: #fff;
  font-weight: bold;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
}

/* DL */
.manual dt {
    font-weight: bold;
    font-size: 1.2em;
    margin-top : 5px;
}

/* Image */
.manual .img_manual {
  width: 80%;
  height: auto;
  margin: 10px 0;
  border: 1px solid #ccc;
  -webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, .2);
  -moz-box-shadow: 1px 1px 4px rgba(0, 0, 0, .2);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, .2);
}

/* Text */
.manual .desc {
  margin: 0;
  padding: 0;
  border: none;
  font-size: 90%;
  color: #666;
}
.manual .attention { color: #d00; }