
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_3b2ef57a469423d471d22b87.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5c98236e24d9c0d0d8807eea.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0958781c82060320b6a29f70.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_0483302fd0b571e338177f18.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_11178e0ceb4b917d7f55543b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8f1998ef36aadf4072bad6fd.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_efe6da92dac20cb4bf45a473.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m23{transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.072500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:0.000000px;}
.fc0{color:transparent;}
.fs5{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs0{font-size:84.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y5e{bottom:94.048500px;}
.y2e{bottom:96.598500px;}
.y5d{bottom:114.525000px;}
.y2d{bottom:116.698500px;}
.y5c{bottom:135.448500px;}
.y2c{bottom:136.573500px;}
.y5b{bottom:156.298500px;}
.y2b{bottom:156.673500px;}
.y5a{bottom:176.098500px;}
.y2a{bottom:176.848500px;}
.y59{bottom:195.900000px;}
.y27{bottom:196.348500px;}
.y28{bottom:196.650000px;}
.y29{bottom:197.025000px;}
.y58{bottom:216.073500px;}
.y26{bottom:217.198500px;}
.yb1{bottom:236.098500px;}
.y57{bottom:236.173500px;}
.y22{bottom:236.698500px;}
.y23{bottom:237.000000px;}
.y25{bottom:238.423500px;}
.y24{bottom:240.223500px;}
.y56{bottom:255.973500px;}
.y21{bottom:257.173500px;}
.yb0{bottom:264.898500px;}
.yaf{bottom:265.273500px;}
.y55{bottom:275.848500px;}
.y1d{bottom:276.973500px;}
.y1e{bottom:277.273500px;}
.y1f{bottom:277.648500px;}
.y20{bottom:278.023500px;}
.y52{bottom:295.948500px;}
.y53{bottom:296.625000px;}
.y1c{bottom:296.773500px;}
.y54{bottom:297.000000px;}
.yae{bottom:298.723500px;}
.y1b{bottom:315.823500px;}
.y1a{bottom:317.250000px;}
.y51{bottom:317.548500px;}
.yad{bottom:318.898500px;}
.y19{bottom:337.048500px;}
.y50{bottom:337.723500px;}
.yac{bottom:339.000000px;}
.y18{bottom:357.223500px;}
.y4f{bottom:357.523500px;}
.yab{bottom:358.798500px;}
.yaa{bottom:358.875000px;}
.y17{bottom:377.023500px;}
.y4e{bottom:377.698500px;}
.ya9{bottom:379.348500px;}
.y16{bottom:396.898500px;}
.ya8{bottom:399.148500px;}
.y4d{bottom:399.298500px;}
.ya7{bottom:399.898500px;}
.y15{bottom:417.000000px;}
.ya6{bottom:418.948500px;}
.y49{bottom:419.098500px;}
.ya5{bottom:419.323500px;}
.y4a{bottom:419.773500px;}
.y4b{bottom:419.848500px;}
.y4c{bottom:420.523500px;}
.y14{bottom:437.098500px;}
.ya4{bottom:439.125000px;}
.y48{bottom:439.273500px;}
.y13{bottom:456.598500px;}
.y12{bottom:457.273500px;}
.ya3{bottom:459.298500px;}
.y47{bottom:459.375000px;}
.ya2{bottom:459.598500px;}
.ya1{bottom:459.973500px;}
.ya0{bottom:460.423500px;}
.y11{bottom:477.448500px;}
.y9f{bottom:479.098500px;}
.y46{bottom:479.548500px;}
.y9e{bottom:480.223500px;}
.y10{bottom:497.625000px;}
.y9d{bottom:499.273500px;}
.y45{bottom:501.148500px;}
.yf{bottom:517.423500px;}
.y9c{bottom:520.125000px;}
.y44{bottom:521.323500px;}
.ye{bottom:537.598500px;}
.y9b{bottom:539.548500px;}
.y9a{bottom:540.598500px;}
.y99{bottom:540.973500px;}
.y43{bottom:541.125000px;}
.yd{bottom:557.398500px;}
.y98{bottom:558.298500px;}
.y97{bottom:558.673500px;}
.y96{bottom:559.348500px;}
.y95{bottom:559.723500px;}
.y94{bottom:560.473500px;}
.y93{bottom:560.773500px;}
.y92{bottom:561.223500px;}
.y42{bottom:561.298500px;}
.y41{bottom:562.348500px;}
.yc{bottom:577.575000px;}
.y91{bottom:578.773500px;}
.y90{bottom:579.148500px;}
.y8f{bottom:579.523500px;}
.y8e{bottom:580.200000px;}
.y8d{bottom:580.950000px;}
.y8c{bottom:581.325000px;}
.y40{bottom:581.473500px;}
.yb{bottom:597.298500px;}
.y8b{bottom:598.950000px;}
.y8a{bottom:599.700000px;}
.y3f{bottom:601.273500px;}
.y89{bottom:601.500000px;}
.ya{bottom:617.473500px;}
.y88{bottom:619.875000px;}
.y3e{bottom:622.875000px;}
.y9{bottom:637.273500px;}
.y8{bottom:637.723500px;}
.y7{bottom:638.398500px;}
.y87{bottom:639.973500px;}
.y3d{bottom:643.048500px;}
.y6{bottom:657.448500px;}
.y86{bottom:658.723500px;}
.y85{bottom:659.098500px;}
.y84{bottom:660.525000px;}
.y3c{bottom:663.525000px;}
.y5{bottom:677.250000px;}
.y83{bottom:679.198500px;}
.y82{bottom:679.948500px;}
.y81{bottom:681.000000px;}
.y3b{bottom:683.323500px;}
.y80{bottom:698.400000px;}
.y7f{bottom:699.073500px;}
.y7e{bottom:700.798500px;}
.y3a{bottom:703.500000px;}
.y7d{bottom:720.298500px;}
.y39{bottom:723.298500px;}
.y4{bottom:726.973500px;}
.y7c{bottom:738.298500px;}
.y7b{bottom:739.048500px;}
.y7a{bottom:739.348500px;}
.y79{bottom:739.723500px;}
.y78{bottom:741.525000px;}
.y38{bottom:743.098500px;}
.y77{bottom:758.775000px;}
.y76{bottom:759.525000px;}
.y75{bottom:760.573500px;}
.y73{bottom:761.323500px;}
.y74{bottom:761.698500px;}
.y37{bottom:763.198500px;}
.y72{bottom:782.250000px;}
.y36{bottom:783.073500px;}
.y71{bottom:783.300000px;}
.y70{bottom:798.073500px;}
.y6f{bottom:798.750000px;}
.y6e{bottom:799.500000px;}
.y6d{bottom:800.925000px;}
.y35{bottom:802.875000px;}
.y3{bottom:813.675000px;}
.y2{bottom:813.750000px;}
.y1{bottom:814.050000px;}
.y6c{bottom:822.900000px;}
.y34{bottom:824.473500px;}
.y6b{bottom:840.150000px;}
.y6a{bottom:843.073500px;}
.y33{bottom:844.573500px;}
.y69{bottom:859.275000px;}
.y68{bottom:861.073500px;}
.y67{bottom:862.125000px;}
.y32{bottom:864.750000px;}
.y66{bottom:882.973500px;}
.y31{bottom:884.550000px;}
.y65{bottom:899.550000px;}
.y64{bottom:901.425000px;}
.y63{bottom:902.098500px;}
.y62{bottom:902.400000px;}
.y61{bottom:903.223500px;}
.y30{bottom:904.723500px;}
.y60{bottom:938.098500px;}
.y5f{bottom:938.473500px;}
.y2f{bottom:943.275000px;}
.h9{height:54.421875px;}
.hb{height:58.886719px;}
.h5{height:64.743164px;}
.h6{height:64.775391px;}
.h7{height:70.628906px;}
.h8{height:70.664062px;}
.h2{height:75.093750px;}
.h4{height:78.609375px;}
.hd{height:82.400391px;}
.h1{height:87.609375px;}
.h3{height:102.796875px;}
.hc{height:1024.500000px;}
.ha{height:1027.500000px;}
.h0{height:1029.000000px;}
.w2{width:658.500000px;}
.w0{width:660.000000px;}
.w1{width:663.000000px;}
.x0{left:0.000000px;}
.x21{left:56.550000px;}
.x22{left:58.350000px;}
.x23{left:59.400000px;}
.x2e{left:69.150000px;}
.x34{left:70.200000px;}
.x24{left:83.175000px;}
.x25{left:85.350000px;}
.xd{left:89.625000px;}
.xa{left:90.750000px;}
.x14{left:92.175000px;}
.x32{left:101.850000px;}
.x5f{left:104.025000px;}
.x1c{left:114.150000px;}
.x4a{left:119.550000px;}
.x9{left:121.650000px;}
.x10{left:122.775000px;}
.x35{left:125.250000px;}
.x1{left:129.975000px;}
.x4f{left:132.450000px;}
.x48{left:133.950000px;}
.x59{left:136.050000px;}
.x54{left:138.600000px;}
.x3a{left:140.400000px;}
.x11{left:145.050000px;}
.x3b{left:146.550000px;}
.xb{left:149.775000px;}
.x5a{left:151.950000px;}
.x3c{left:158.400000px;}
.x50{left:161.625000px;}
.x1d{left:163.050000px;}
.x19{left:164.175000px;}
.x12{left:167.400000px;}
.x5b{left:168.450000px;}
.x55{left:172.800000px;}
.x1e{left:189.750000px;}
.x2{left:192.975000px;}
.x2f{left:200.175000px;}
.x4b{left:210.600000px;}
.x30{left:218.850000px;}
.x3{left:222.148500px;}
.x13{left:224.625000px;}
.x56{left:226.425000px;}
.x1f{left:258.150000px;}
.x57{left:262.050000px;}
.x33{left:268.200000px;}
.x51{left:273.600000px;}
.x4{left:278.625000px;}
.x20{left:284.025000px;}
.x58{left:286.200000px;}
.x31{left:288.000000px;}
.x2b{left:293.400000px;}
.x8{left:301.350000px;}
.x3f{left:307.050000px;}
.x2c{left:308.175000px;}
.x52{left:314.250000px;}
.x2d{left:318.225000px;}
.x42{left:320.025000px;}
.xc{left:322.200000px;}
.x62{left:324.375000px;}
.x60{left:333.375000px;}
.x5{left:340.200000px;}
.x4c{left:344.175000px;}
.x3d{left:349.950000px;}
.x43{left:365.775000px;}
.x5e{left:368.625000px;}
.x6{left:370.050000px;}
.x26{left:384.150000px;}
.x36{left:393.450000px;}
.x40{left:394.950000px;}
.x4d{left:398.548500px;}
.x27{left:400.650000px;}
.x63{left:407.850000px;}
.x37{left:416.548500px;}
.x5c{left:417.600000px;}
.x28{left:423.375000px;}
.x44{left:426.600000px;}
.xe{left:433.798500px;}
.xf{left:436.650000px;}
.x3e{left:440.625000px;}
.x4e{left:448.200000px;}
.x29{left:456.825000px;}
.x45{left:459.000000px;}
.x2a{left:461.550000px;}
.x15{left:464.025000px;}
.x16{left:468.375000px;}
.x5d{left:469.800000px;}
.x7{left:470.850000px;}
.x17{left:486.375000px;}
.x18{left:489.225000px;}
.x64{left:503.250000px;}
.x41{left:505.050000px;}
.x49{left:527.400000px;}
.x1a{left:544.350000px;}
.x38{left:548.625000px;}
.x46{left:551.850000px;}
.x1b{left:566.625000px;}
.x61{left:567.750000px;}
.x47{left:569.850000px;}
.x53{left:578.850000px;}
.x39{left:581.025000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs0{font-size:74.666667pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y5e{bottom:83.598667pt;}
.y2e{bottom:85.865333pt;}
.y5d{bottom:101.800000pt;}
.y2d{bottom:103.732000pt;}
.y5c{bottom:120.398667pt;}
.y2c{bottom:121.398667pt;}
.y5b{bottom:138.932000pt;}
.y2b{bottom:139.265333pt;}
.y5a{bottom:156.532000pt;}
.y2a{bottom:157.198667pt;}
.y59{bottom:174.133333pt;}
.y27{bottom:174.532000pt;}
.y28{bottom:174.800000pt;}
.y29{bottom:175.133333pt;}
.y58{bottom:192.065333pt;}
.y26{bottom:193.065333pt;}
.yb1{bottom:209.865333pt;}
.y57{bottom:209.932000pt;}
.y22{bottom:210.398667pt;}
.y23{bottom:210.666667pt;}
.y25{bottom:211.932000pt;}
.y24{bottom:213.532000pt;}
.y56{bottom:227.532000pt;}
.y21{bottom:228.598667pt;}
.yb0{bottom:235.465333pt;}
.yaf{bottom:235.798667pt;}
.y55{bottom:245.198667pt;}
.y1d{bottom:246.198667pt;}
.y1e{bottom:246.465333pt;}
.y1f{bottom:246.798667pt;}
.y20{bottom:247.132000pt;}
.y52{bottom:263.065333pt;}
.y53{bottom:263.666667pt;}
.y1c{bottom:263.798667pt;}
.y54{bottom:264.000000pt;}
.yae{bottom:265.532000pt;}
.y1b{bottom:280.732000pt;}
.y1a{bottom:282.000000pt;}
.y51{bottom:282.265333pt;}
.yad{bottom:283.465333pt;}
.y19{bottom:299.598667pt;}
.y50{bottom:300.198667pt;}
.yac{bottom:301.333333pt;}
.y18{bottom:317.532000pt;}
.y4f{bottom:317.798667pt;}
.yab{bottom:318.932000pt;}
.yaa{bottom:319.000000pt;}
.y17{bottom:335.132000pt;}
.y4e{bottom:335.732000pt;}
.ya9{bottom:337.198667pt;}
.y16{bottom:352.798667pt;}
.ya8{bottom:354.798667pt;}
.y4d{bottom:354.932000pt;}
.ya7{bottom:355.465333pt;}
.y15{bottom:370.666667pt;}
.ya6{bottom:372.398667pt;}
.y49{bottom:372.532000pt;}
.ya5{bottom:372.732000pt;}
.y4a{bottom:373.132000pt;}
.y4b{bottom:373.198667pt;}
.y4c{bottom:373.798667pt;}
.y14{bottom:388.532000pt;}
.ya4{bottom:390.333333pt;}
.y48{bottom:390.465333pt;}
.y13{bottom:405.865333pt;}
.y12{bottom:406.465333pt;}
.ya3{bottom:408.265333pt;}
.y47{bottom:408.333333pt;}
.ya2{bottom:408.532000pt;}
.ya1{bottom:408.865333pt;}
.ya0{bottom:409.265333pt;}
.y11{bottom:424.398667pt;}
.y9f{bottom:425.865333pt;}
.y46{bottom:426.265333pt;}
.y9e{bottom:426.865333pt;}
.y10{bottom:442.333333pt;}
.y9d{bottom:443.798667pt;}
.y45{bottom:445.465333pt;}
.yf{bottom:459.932000pt;}
.y9c{bottom:462.333333pt;}
.y44{bottom:463.398667pt;}
.ye{bottom:477.865333pt;}
.y9b{bottom:479.598667pt;}
.y9a{bottom:480.532000pt;}
.y99{bottom:480.865333pt;}
.y43{bottom:481.000000pt;}
.yd{bottom:495.465333pt;}
.y98{bottom:496.265333pt;}
.y97{bottom:496.598667pt;}
.y96{bottom:497.198667pt;}
.y95{bottom:497.532000pt;}
.y94{bottom:498.198667pt;}
.y93{bottom:498.465333pt;}
.y92{bottom:498.865333pt;}
.y42{bottom:498.932000pt;}
.y41{bottom:499.865333pt;}
.yc{bottom:513.400000pt;}
.y91{bottom:514.465333pt;}
.y90{bottom:514.798667pt;}
.y8f{bottom:515.132000pt;}
.y8e{bottom:515.733333pt;}
.y8d{bottom:516.400000pt;}
.y8c{bottom:516.733333pt;}
.y40{bottom:516.865333pt;}
.yb{bottom:530.932000pt;}
.y8b{bottom:532.400000pt;}
.y8a{bottom:533.066667pt;}
.y3f{bottom:534.465333pt;}
.y89{bottom:534.666667pt;}
.ya{bottom:548.865333pt;}
.y88{bottom:551.000000pt;}
.y3e{bottom:553.666667pt;}
.y9{bottom:566.465333pt;}
.y8{bottom:566.865333pt;}
.y7{bottom:567.465333pt;}
.y87{bottom:568.865333pt;}
.y3d{bottom:571.598667pt;}
.y6{bottom:584.398667pt;}
.y86{bottom:585.532000pt;}
.y85{bottom:585.865333pt;}
.y84{bottom:587.133333pt;}
.y3c{bottom:589.800000pt;}
.y5{bottom:602.000000pt;}
.y83{bottom:603.732000pt;}
.y82{bottom:604.398667pt;}
.y81{bottom:605.333333pt;}
.y3b{bottom:607.398667pt;}
.y80{bottom:620.800000pt;}
.y7f{bottom:621.398667pt;}
.y7e{bottom:622.932000pt;}
.y3a{bottom:625.333333pt;}
.y7d{bottom:640.265333pt;}
.y39{bottom:642.932000pt;}
.y4{bottom:646.198667pt;}
.y7c{bottom:656.265333pt;}
.y7b{bottom:656.932000pt;}
.y7a{bottom:657.198667pt;}
.y79{bottom:657.532000pt;}
.y78{bottom:659.133333pt;}
.y38{bottom:660.532000pt;}
.y77{bottom:674.466667pt;}
.y76{bottom:675.133333pt;}
.y75{bottom:676.065333pt;}
.y73{bottom:676.732000pt;}
.y74{bottom:677.065333pt;}
.y37{bottom:678.398667pt;}
.y72{bottom:695.333333pt;}
.y36{bottom:696.065333pt;}
.y71{bottom:696.266667pt;}
.y70{bottom:709.398667pt;}
.y6f{bottom:710.000000pt;}
.y6e{bottom:710.666667pt;}
.y6d{bottom:711.933333pt;}
.y35{bottom:713.666667pt;}
.y3{bottom:723.266667pt;}
.y2{bottom:723.333333pt;}
.y1{bottom:723.600000pt;}
.y6c{bottom:731.466667pt;}
.y34{bottom:732.865333pt;}
.y6b{bottom:746.800000pt;}
.y6a{bottom:749.398667pt;}
.y33{bottom:750.732000pt;}
.y69{bottom:763.800000pt;}
.y68{bottom:765.398667pt;}
.y67{bottom:766.333333pt;}
.y32{bottom:768.666667pt;}
.y66{bottom:784.865333pt;}
.y31{bottom:786.266667pt;}
.y65{bottom:799.600000pt;}
.y64{bottom:801.266667pt;}
.y63{bottom:801.865333pt;}
.y62{bottom:802.133333pt;}
.y61{bottom:802.865333pt;}
.y30{bottom:804.198667pt;}
.y60{bottom:833.865333pt;}
.y5f{bottom:834.198667pt;}
.y2f{bottom:838.466667pt;}
.h9{height:48.375000pt;}
.hb{height:52.343750pt;}
.h5{height:57.549479pt;}
.h6{height:57.578125pt;}
.h7{height:62.781250pt;}
.h8{height:62.812500pt;}
.h2{height:66.750000pt;}
.h4{height:69.875000pt;}
.hd{height:73.244792pt;}
.h1{height:77.875000pt;}
.h3{height:91.375000pt;}
.hc{height:910.666667pt;}
.ha{height:913.333333pt;}
.h0{height:914.666667pt;}
.w2{width:585.333333pt;}
.w0{width:586.666667pt;}
.w1{width:589.333333pt;}
.x0{left:0.000000pt;}
.x21{left:50.266667pt;}
.x22{left:51.866667pt;}
.x23{left:52.800000pt;}
.x2e{left:61.466667pt;}
.x34{left:62.400000pt;}
.x24{left:73.933333pt;}
.x25{left:75.866667pt;}
.xd{left:79.666667pt;}
.xa{left:80.666667pt;}
.x14{left:81.933333pt;}
.x32{left:90.533333pt;}
.x5f{left:92.466667pt;}
.x1c{left:101.466667pt;}
.x4a{left:106.266667pt;}
.x9{left:108.133333pt;}
.x10{left:109.133333pt;}
.x35{left:111.333333pt;}
.x1{left:115.533333pt;}
.x4f{left:117.733333pt;}
.x48{left:119.066667pt;}
.x59{left:120.933333pt;}
.x54{left:123.200000pt;}
.x3a{left:124.800000pt;}
.x11{left:128.933333pt;}
.x3b{left:130.266667pt;}
.xb{left:133.133333pt;}
.x5a{left:135.066667pt;}
.x3c{left:140.800000pt;}
.x50{left:143.666667pt;}
.x1d{left:144.933333pt;}
.x19{left:145.933333pt;}
.x12{left:148.800000pt;}
.x5b{left:149.733333pt;}
.x55{left:153.600000pt;}
.x1e{left:168.666667pt;}
.x2{left:171.533333pt;}
.x2f{left:177.933333pt;}
.x4b{left:187.200000pt;}
.x30{left:194.533333pt;}
.x3{left:197.465333pt;}
.x13{left:199.666667pt;}
.x56{left:201.266667pt;}
.x1f{left:229.466667pt;}
.x57{left:232.933333pt;}
.x33{left:238.400000pt;}
.x51{left:243.200000pt;}
.x4{left:247.666667pt;}
.x20{left:252.466667pt;}
.x58{left:254.400000pt;}
.x31{left:256.000000pt;}
.x2b{left:260.800000pt;}
.x8{left:267.866667pt;}
.x3f{left:272.933333pt;}
.x2c{left:273.933333pt;}
.x52{left:279.333333pt;}
.x2d{left:282.866667pt;}
.x42{left:284.466667pt;}
.xc{left:286.400000pt;}
.x62{left:288.333333pt;}
.x60{left:296.333333pt;}
.x5{left:302.400000pt;}
.x4c{left:305.933333pt;}
.x3d{left:311.066667pt;}
.x43{left:325.133333pt;}
.x5e{left:327.666667pt;}
.x6{left:328.933333pt;}
.x26{left:341.466667pt;}
.x36{left:349.733333pt;}
.x40{left:351.066667pt;}
.x4d{left:354.265333pt;}
.x27{left:356.133333pt;}
.x63{left:362.533333pt;}
.x37{left:370.265333pt;}
.x5c{left:371.200000pt;}
.x28{left:376.333333pt;}
.x44{left:379.200000pt;}
.xe{left:385.598667pt;}
.xf{left:388.133333pt;}
.x3e{left:391.666667pt;}
.x4e{left:398.400000pt;}
.x29{left:406.066667pt;}
.x45{left:408.000000pt;}
.x2a{left:410.266667pt;}
.x15{left:412.466667pt;}
.x16{left:416.333333pt;}
.x5d{left:417.600000pt;}
.x7{left:418.533333pt;}
.x17{left:432.333333pt;}
.x18{left:434.866667pt;}
.x64{left:447.333333pt;}
.x41{left:448.933333pt;}
.x49{left:468.800000pt;}
.x1a{left:483.866667pt;}
.x38{left:487.666667pt;}
.x46{left:490.533333pt;}
.x1b{left:503.666667pt;}
.x61{left:504.666667pt;}
.x47{left:506.533333pt;}
.x53{left:514.533333pt;}
.x39{left:516.466667pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  