
    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_ec7e2bdfd2bf1e7c60b7abf4.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2e8d7ab82392b4a8f90557ca.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_400fadaeb149d57d2288843f.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e6f482da8478a673a63e6e2f.woff')format("woff");}.ff4{font-family:ff4;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;}
.m5{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.m20{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.m11{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);}
.ma{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);}
.m1{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m14{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{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);}
.mf{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);}
.m3{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);}
.m4{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);}
.m8{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);}
.m15{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);}
.m17{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);}
.m6{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);}
.m12{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);}
.m1e{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);}
.m1b{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);}
.m19{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);}
.mb{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);}
.m1a{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);}
.m13{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);}
.m1d{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.md{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:19.920000px;}
.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;}
}
.ws4d{word-spacing:-26.928000px;}
.ws54{word-spacing:-24.480000px;}
.ws29{word-spacing:-19.170000px;}
.ws1{word-spacing:-17.136000px;}
.ws10{word-spacing:-14.124000px;}
.ws0{word-spacing:-14.050813px;}
.wsf{word-spacing:-12.840000px;}
.ws2f{word-spacing:-11.988000px;}
.ws6a{word-spacing:-10.682804px;}
.ws27{word-spacing:-10.314000px;}
.ws1c{word-spacing:-9.840000px;}
.ws48{word-spacing:-9.600000px;}
.wse{word-spacing:-9.030000px;}
.ws9{word-spacing:-7.920000px;}
.ws4f{word-spacing:-6.749327px;}
.ws1a{word-spacing:-5.468692px;}
.ws6d{word-spacing:-5.251794px;}
.ws50{word-spacing:-4.900486px;}
.ws46{word-spacing:-4.836000px;}
.ws42{word-spacing:-4.692673px;}
.ws2b{word-spacing:-3.953832px;}
.ws18{word-spacing:-3.686038px;}
.ws3c{word-spacing:-2.880000px;}
.ws58{word-spacing:-1.844615px;}
.ws69{word-spacing:-1.763607px;}
.ws60{word-spacing:-1.612075px;}
.ws5b{word-spacing:-1.560000px;}
.ws2e{word-spacing:-0.516000px;}
.ws71{word-spacing:-0.336000px;}
.ws16{word-spacing:0.000000px;}
.ws56{word-spacing:0.300000px;}
.ws44{word-spacing:0.912000px;}
.ws37{word-spacing:1.116226px;}
.ws65{word-spacing:1.615472px;}
.wsa{word-spacing:2.112000px;}
.ws3b{word-spacing:3.157168px;}
.ws5d{word-spacing:3.240000px;}
.ws30{word-spacing:3.360000px;}
.ws43{word-spacing:3.690566px;}
.ws5a{word-spacing:4.078462px;}
.ws14{word-spacing:4.078868px;}
.ws19{word-spacing:4.445660px;}
.ws38{word-spacing:4.503717px;}
.ws12{word-spacing:4.980000px;}
.ws62{word-spacing:5.040000px;}
.ws63{word-spacing:5.426038px;}
.ws55{word-spacing:5.747547px;}
.ws3{word-spacing:6.243158px;}
.ws23{word-spacing:6.420000px;}
.ws6c{word-spacing:6.652075px;}
.ws57{word-spacing:7.320000px;}
.ws3a{word-spacing:7.571681px;}
.ws6{word-spacing:7.920000px;}
.ws5f{word-spacing:7.938000px;}
.ws17{word-spacing:8.121290px;}
.ws26{word-spacing:8.400000px;}
.ws41{word-spacing:8.497895px;}
.ws53{word-spacing:8.707925px;}
.ws6b{word-spacing:8.858491px;}
.ws33{word-spacing:8.956981px;}
.wsb{word-spacing:8.990943px;}
.ws7{word-spacing:9.174000px;}
.ws15{word-spacing:10.110857px;}
.ws1e{word-spacing:10.458000px;}
.ws68{word-spacing:10.560000px;}
.ws61{word-spacing:11.040000px;}
.ws6f{word-spacing:12.060000px;}
.wsc{word-spacing:13.463774px;}
.ws13{word-spacing:13.596226px;}
.ws40{word-spacing:13.645402px;}
.ws51{word-spacing:13.767170px;}
.wsd{word-spacing:13.933585px;}
.ws4c{word-spacing:14.521132px;}
.ws3f{word-spacing:14.760000px;}
.ws1b{word-spacing:15.106415px;}
.ws28{word-spacing:15.503774px;}
.ws34{word-spacing:15.960000px;}
.ws22{word-spacing:16.740000px;}
.ws25{word-spacing:17.100000px;}
.ws5e{word-spacing:18.163019px;}
.ws59{word-spacing:18.300531px;}
.ws70{word-spacing:18.840000px;}
.ws49{word-spacing:19.260000px;}
.ws4a{word-spacing:19.320000px;}
.ws4e{word-spacing:19.391321px;}
.ws1d{word-spacing:19.560000px;}
.ws4b{word-spacing:19.980000px;}
.ws39{word-spacing:21.710943px;}
.ws2a{word-spacing:21.860377px;}
.ws32{word-spacing:21.898868px;}
.ws1f{word-spacing:22.140000px;}
.ws4{word-spacing:22.238491px;}
.ws67{word-spacing:22.686000px;}
.ws5c{word-spacing:23.848302px;}
.ws2d{word-spacing:24.240000px;}
.ws24{word-spacing:24.960000px;}
.ws31{word-spacing:25.108302px;}
.ws5{word-spacing:25.879245px;}
.ws20{word-spacing:26.100000px;}
.ws21{word-spacing:27.240000px;}
.ws6e{word-spacing:27.802642px;}
.ws66{word-spacing:29.100000px;}
.ws8{word-spacing:30.889907px;}
.ws45{word-spacing:32.340000px;}
.ws52{word-spacing:36.300000px;}
.ws35{word-spacing:41.112000px;}
.ws3d{word-spacing:46.680000px;}
.ws47{word-spacing:49.620000px;}
.ws3e{word-spacing:49.966737px;}
.ws11{word-spacing:57.240000px;}
.ws2{word-spacing:63.294340px;}
.ws64{word-spacing:64.403143px;}
.ws2c{word-spacing:69.210000px;}
.ws36{word-spacing:127.560000px;}
._1c{margin-left:-2.040000px;}
._22{width:1.227477px;}
._1e{width:4.736842px;}
._1f{width:9.820105px;}
._23{width:11.340000px;}
._2a{width:19.876654px;}
._28{width:21.324897px;}
._c{width:22.680000px;}
._25{width:24.987692px;}
._14{width:27.005419px;}
._29{width:28.698729px;}
._24{width:29.721538px;}
._13{width:30.981509px;}
._15{width:33.003871px;}
._0{width:35.363341px;}
._1{width:37.061670px;}
._11{width:38.181243px;}
._d{width:39.699623px;}
._a{width:41.220000px;}
._e{width:42.281733px;}
._9{width:43.320000px;}
._f{width:45.062264px;}
._12{width:46.492075px;}
._16{width:47.948075px;}
._b{width:50.100000px;}
._7{width:51.131321px;}
._1a{width:52.222093px;}
._4{width:53.265283px;}
._17{width:54.600000px;}
._1b{width:56.160000px;}
._5{width:57.444906px;}
._3{width:58.581363px;}
._6{width:59.891321px;}
._20{width:61.830226px;}
._10{width:63.851321px;}
._1d{width:68.412212px;}
._21{width:70.368679px;}
._19{width:72.180000px;}
._26{width:73.620000px;}
._2{width:74.796527px;}
._2b{width:80.852634px;}
._18{width:85.380000px;}
._27{width:90.360000px;}
._2c{width:100.385271px;}
._8{width:121.623396px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:18.000000px;}
.fsa{font-size:24.000000px;}
.fs8{font-size:30.000000px;}
.fs2{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs9{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs5{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y35{bottom:94.588500px;}
.ya{bottom:120.103500px;}
.y34{bottom:128.788500px;}
.y33{bottom:144.268500px;}
.y9{bottom:151.063500px;}
.y32{bottom:159.388500px;}
.y8{bottom:166.543500px;}
.y31{bottom:174.148500px;}
.y7{bottom:182.383500px;}
.y30{bottom:189.268500px;}
.y6{bottom:202.183500px;}
.y2f{bottom:213.028500px;}
.y5{bottom:218.023500px;}
.y2e{bottom:227.068500px;}
.y4{bottom:233.503500px;}
.y2d{bottom:242.188500px;}
.y3{bottom:253.663500px;}
.y2c{bottom:257.308500px;}
.y2b{bottom:272.428500px;}
.y2{bottom:277.423500px;}
.y2a{bottom:295.468500px;}
.y1{bottom:300.823500px;}
.y29{bottom:326.428500px;}
.y28{bottom:341.188500px;}
.y27{bottom:356.308500px;}
.y26{bottom:379.348500px;}
.y25{bottom:394.468500px;}
.y24{bottom:409.228500px;}
.y23{bottom:424.348500px;}
.y22{bottom:446.308500px;}
.y21{bottom:461.788500px;}
.y20{bottom:477.268500px;}
.y1f{bottom:492.028500px;}
.y1e{bottom:514.708500px;}
.y1d{bottom:530.548500px;}
.y1c{bottom:552.868500px;}
.y1b{bottom:582.388500px;}
.y1a{bottom:597.508500px;}
.y19{bottom:612.628500px;}
.y18{bottom:627.388500px;}
.y17{bottom:650.428500px;}
.y15{bottom:673.108500px;}
.y16{bottom:676.108500px;}
.y14{bottom:687.508500px;}
.y13{bottom:702.628500px;}
.y12{bottom:724.948500px;}
.y11{bottom:740.068500px;}
.y10{bottom:763.108500px;}
.yf{bottom:777.868500px;}
.ye{bottom:793.348500px;}
.yd{bottom:815.668500px;}
.yc{bottom:830.788500px;}
.yb{bottom:864.268500px;}
.hf{height:17.666016px;}
.h13{height:25.031250px;}
.h4{height:41.220703px;}
.h11{height:43.804688px;}
.h12{height:47.109375px;}
.hd{height:50.062500px;}
.h5{height:52.998047px;}
.ha{height:56.320312px;}
.he{height:58.857422px;}
.h6{height:58.886719px;}
.h9{height:62.578125px;}
.h3{height:64.743164px;}
.h8{height:64.775391px;}
.h10{height:70.628906px;}
.h14{height:70.664062px;}
.h2{height:82.441406px;}
.h7{height:94.218750px;}
.h0{height:776.694000px;}
.h1{height:777.000000px;}
.hb{height:920.904000px;}
.hc{height:921.000000px;}
.w1{width:557.250000px;}
.w0{width:557.466000px;}
.w3{width:585.750000px;}
.w2{width:586.029000px;}
.x0{left:0.000000px;}
.xe{left:33.564000px;}
.xb{left:35.364000px;}
.x1{left:46.164000px;}
.x8{left:66.684000px;}
.x1c{left:70.284000px;}
.x11{left:85.044000px;}
.x12{left:100.884000px;}
.x6c{left:103.855500px;}
.x50{left:104.935500px;}
.x3e{left:106.015500px;}
.x1e{left:107.095500px;}
.x45{left:108.895500px;}
.x26{left:110.695500px;}
.x76{left:113.215500px;}
.x36{left:120.297240px;}
.x27{left:121.855500px;}
.x2c{left:123.655500px;}
.x58{left:126.535500px;}
.x46{left:133.735500px;}
.x37{left:137.695500px;}
.x30{left:138.775500px;}
.x22{left:140.575500px;}
.x14{left:148.404000px;}
.x51{left:149.575500px;}
.x2d{left:153.175500px;}
.x74{left:154.255500px;}
.x59{left:161.095500px;}
.x78{left:162.535500px;}
.x5{left:166.764000px;}
.x52{left:169.015500px;}
.x38{left:173.335500px;}
.x6{left:182.964000px;}
.x5a{left:189.535500px;}
.x2{left:196.284000px;}
.x49{left:202.855500px;}
.x7a{left:205.735500px;}
.x15{left:209.964000px;}
.x28{left:211.495500px;}
.x39{left:220.855500px;}
.x3{left:222.924000px;}
.x6d{left:225.895500px;}
.x69{left:227.695500px;}
.x71{left:232.375500px;}
.x4a{left:239.575500px;}
.x7{left:241.284000px;}
.x4b{left:243.895500px;}
.x1a{left:245.244000px;}
.x42{left:246.415500px;}
.x5b{left:251.815500px;}
.x72{left:256.135500px;}
.x63{left:260.455500px;}
.x43{left:262.615500px;}
.xc{left:265.764000px;}
.x6f{left:269.455500px;}
.x79{left:270.895500px;}
.x4{left:272.244000px;}
.x4c{left:276.655500px;}
.x1d{left:284.935500px;}
.x1b{left:286.284000px;}
.x60{left:291.055500px;}
.x66{left:293.215500px;}
.x75{left:299.335500px;}
.x77{left:303.655500px;}
.x56{left:306.535500px;}
.x24{left:308.335500px;}
.x53{left:310.855500px;}
.x44{left:315.895500px;}
.x1f{left:316.975500px;}
.xf{left:328.764000px;}
.x54{left:331.735500px;}
.x16{left:335.244000px;}
.x23{left:337.495500px;}
.x70{left:338.575500px;}
.x67{left:346.855500px;}
.x57{left:350.455500px;}
.x3a{left:358.015500px;}
.x17{left:362.604000px;}
.x32{left:367.015500px;}
.xd{left:368.364000px;}
.x3b{left:369.895500px;}
.x2e{left:372.775500px;}
.x20{left:374.215500px;}
.x33{left:376.735500px;}
.x10{left:380.964000px;}
.x6a{left:387.895500px;}
.x64{left:389.695500px;}
.x2f{left:394.375500px;}
.x3f{left:399.055500px;}
.x9{left:406.524000px;}
.x31{left:411.295500px;}
.x18{left:420.204000px;}
.x40{left:421.735500px;}
.x47{left:428.935500px;}
.x6b{left:433.975500px;}
.x34{left:440.455500px;}
.x6e{left:443.335500px;}
.xa{left:445.404000px;}
.x65{left:447.295500px;}
.x5c{left:450.175500px;}
.x4d{left:451.615500px;}
.x29{left:452.695500px;}
.x61{left:456.295500px;}
.x19{left:460.884000px;}
.x13{left:462.324000px;}
.x55{left:464.215500px;}
.x7b{left:466.375500px;}
.x68{left:467.815500px;}
.x48{left:469.975500px;}
.x4e{left:475.375500px;}
.x73{left:478.975500px;}
.x2a{left:489.415500px;}
.x62{left:495.175500px;}
.x4f{left:496.975500px;}
.x3c{left:499.495500px;}
.x41{left:501.655500px;}
.x21{left:502.735500px;}
.x25{left:503.815500px;}
.x5d{left:508.135500px;}
.x35{left:509.575500px;}
.x2b{left:516.415500px;}
.x3d{left:538.015500px;}
.x5e{left:540.175500px;}
.x5f{left:555.295500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:17.706667pt;}
.ws4d{word-spacing:-23.936000pt;}
.ws54{word-spacing:-21.760000pt;}
.ws29{word-spacing:-17.040000pt;}
.ws1{word-spacing:-15.232000pt;}
.ws10{word-spacing:-12.554667pt;}
.ws0{word-spacing:-12.489612pt;}
.wsf{word-spacing:-11.413333pt;}
.ws2f{word-spacing:-10.656000pt;}
.ws6a{word-spacing:-9.495826pt;}
.ws27{word-spacing:-9.168000pt;}
.ws1c{word-spacing:-8.746667pt;}
.ws48{word-spacing:-8.533333pt;}
.wse{word-spacing:-8.026667pt;}
.ws9{word-spacing:-7.040000pt;}
.ws4f{word-spacing:-5.999402pt;}
.ws1a{word-spacing:-4.861059pt;}
.ws6d{word-spacing:-4.668262pt;}
.ws50{word-spacing:-4.355988pt;}
.ws46{word-spacing:-4.298667pt;}
.ws42{word-spacing:-4.171265pt;}
.ws2b{word-spacing:-3.514517pt;}
.ws18{word-spacing:-3.276478pt;}
.ws3c{word-spacing:-2.560000pt;}
.ws58{word-spacing:-1.639658pt;}
.ws69{word-spacing:-1.567651pt;}
.ws60{word-spacing:-1.432956pt;}
.ws5b{word-spacing:-1.386667pt;}
.ws2e{word-spacing:-0.458667pt;}
.ws71{word-spacing:-0.298667pt;}
.ws16{word-spacing:0.000000pt;}
.ws56{word-spacing:0.266667pt;}
.ws44{word-spacing:0.810667pt;}
.ws37{word-spacing:0.992201pt;}
.ws65{word-spacing:1.435975pt;}
.wsa{word-spacing:1.877333pt;}
.ws3b{word-spacing:2.806372pt;}
.ws5d{word-spacing:2.880000pt;}
.ws30{word-spacing:2.986667pt;}
.ws43{word-spacing:3.280503pt;}
.ws5a{word-spacing:3.625299pt;}
.ws14{word-spacing:3.625660pt;}
.ws19{word-spacing:3.951698pt;}
.ws38{word-spacing:4.003304pt;}
.ws12{word-spacing:4.426667pt;}
.ws62{word-spacing:4.480000pt;}
.ws63{word-spacing:4.823145pt;}
.ws55{word-spacing:5.108931pt;}
.ws3{word-spacing:5.549474pt;}
.ws23{word-spacing:5.706667pt;}
.ws6c{word-spacing:5.912956pt;}
.ws57{word-spacing:6.506667pt;}
.ws3a{word-spacing:6.730383pt;}
.ws6{word-spacing:7.040000pt;}
.ws5f{word-spacing:7.056000pt;}
.ws17{word-spacing:7.218925pt;}
.ws26{word-spacing:7.466667pt;}
.ws41{word-spacing:7.553684pt;}
.ws53{word-spacing:7.740377pt;}
.ws6b{word-spacing:7.874214pt;}
.ws33{word-spacing:7.961761pt;}
.wsb{word-spacing:7.991950pt;}
.ws7{word-spacing:8.154667pt;}
.ws15{word-spacing:8.987429pt;}
.ws1e{word-spacing:9.296000pt;}
.ws68{word-spacing:9.386667pt;}
.ws61{word-spacing:9.813333pt;}
.ws6f{word-spacing:10.720000pt;}
.wsc{word-spacing:11.967799pt;}
.ws13{word-spacing:12.085535pt;}
.ws40{word-spacing:12.129246pt;}
.ws51{word-spacing:12.237484pt;}
.wsd{word-spacing:12.385409pt;}
.ws4c{word-spacing:12.907673pt;}
.ws3f{word-spacing:13.120000pt;}
.ws1b{word-spacing:13.427925pt;}
.ws28{word-spacing:13.781132pt;}
.ws34{word-spacing:14.186667pt;}
.ws22{word-spacing:14.880000pt;}
.ws25{word-spacing:15.200000pt;}
.ws5e{word-spacing:16.144906pt;}
.ws59{word-spacing:16.267139pt;}
.ws70{word-spacing:16.746667pt;}
.ws49{word-spacing:17.120000pt;}
.ws4a{word-spacing:17.173333pt;}
.ws4e{word-spacing:17.236730pt;}
.ws1d{word-spacing:17.386667pt;}
.ws4b{word-spacing:17.760000pt;}
.ws39{word-spacing:19.298616pt;}
.ws2a{word-spacing:19.431447pt;}
.ws32{word-spacing:19.465660pt;}
.ws1f{word-spacing:19.680000pt;}
.ws4{word-spacing:19.767547pt;}
.ws67{word-spacing:20.165333pt;}
.ws5c{word-spacing:21.198491pt;}
.ws2d{word-spacing:21.546667pt;}
.ws24{word-spacing:22.186667pt;}
.ws31{word-spacing:22.318491pt;}
.ws5{word-spacing:23.003774pt;}
.ws20{word-spacing:23.200000pt;}
.ws21{word-spacing:24.213333pt;}
.ws6e{word-spacing:24.713459pt;}
.ws66{word-spacing:25.866667pt;}
.ws8{word-spacing:27.457695pt;}
.ws45{word-spacing:28.746667pt;}
.ws52{word-spacing:32.266667pt;}
.ws35{word-spacing:36.544000pt;}
.ws3d{word-spacing:41.493333pt;}
.ws47{word-spacing:44.106667pt;}
.ws3e{word-spacing:44.414877pt;}
.ws11{word-spacing:50.880000pt;}
.ws2{word-spacing:56.261635pt;}
.ws64{word-spacing:57.247238pt;}
.ws2c{word-spacing:61.520000pt;}
.ws36{word-spacing:113.386667pt;}
._1c{margin-left:-1.813333pt;}
._22{width:1.091090pt;}
._1e{width:4.210526pt;}
._1f{width:8.728982pt;}
._23{width:10.080000pt;}
._2a{width:17.668137pt;}
._28{width:18.955464pt;}
._c{width:20.160000pt;}
._25{width:22.211282pt;}
._14{width:24.004817pt;}
._29{width:25.509981pt;}
._24{width:26.419145pt;}
._13{width:27.539119pt;}
._15{width:29.336774pt;}
._0{width:31.434081pt;}
._1{width:32.943707pt;}
._11{width:33.938883pt;}
._d{width:35.288553pt;}
._a{width:36.640000pt;}
._e{width:37.583762pt;}
._9{width:38.506667pt;}
._f{width:40.055346pt;}
._12{width:41.326289pt;}
._16{width:42.620511pt;}
._b{width:44.533333pt;}
._7{width:45.450063pt;}
._1a{width:46.419639pt;}
._4{width:47.346918pt;}
._17{width:48.533333pt;}
._1b{width:49.920000pt;}
._5{width:51.062138pt;}
._3{width:52.072322pt;}
._6{width:53.236730pt;}
._20{width:54.960201pt;}
._10{width:56.756730pt;}
._1d{width:60.810855pt;}
._21{width:62.549937pt;}
._19{width:64.160000pt;}
._26{width:65.440000pt;}
._2{width:66.485802pt;}
._2b{width:71.869008pt;}
._18{width:75.893333pt;}
._27{width:80.320000pt;}
._2c{width:89.231352pt;}
._8{width:108.109686pt;}
.fs7{font-size:16.000000pt;}
.fsa{font-size:21.333333pt;}
.fs8{font-size:26.666667pt;}
.fs2{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs9{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs5{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:84.078667pt;}
.ya{bottom:106.758667pt;}
.y34{bottom:114.478667pt;}
.y33{bottom:128.238667pt;}
.y9{bottom:134.278667pt;}
.y32{bottom:141.678667pt;}
.y8{bottom:148.038667pt;}
.y31{bottom:154.798667pt;}
.y7{bottom:162.118667pt;}
.y30{bottom:168.238667pt;}
.y6{bottom:179.718667pt;}
.y2f{bottom:189.358667pt;}
.y5{bottom:193.798667pt;}
.y2e{bottom:201.838667pt;}
.y4{bottom:207.558667pt;}
.y2d{bottom:215.278667pt;}
.y3{bottom:225.478667pt;}
.y2c{bottom:228.718667pt;}
.y2b{bottom:242.158667pt;}
.y2{bottom:246.598667pt;}
.y2a{bottom:262.638667pt;}
.y1{bottom:267.398667pt;}
.y29{bottom:290.158667pt;}
.y28{bottom:303.278667pt;}
.y27{bottom:316.718667pt;}
.y26{bottom:337.198667pt;}
.y25{bottom:350.638667pt;}
.y24{bottom:363.758667pt;}
.y23{bottom:377.198667pt;}
.y22{bottom:396.718667pt;}
.y21{bottom:410.478667pt;}
.y20{bottom:424.238667pt;}
.y1f{bottom:437.358667pt;}
.y1e{bottom:457.518667pt;}
.y1d{bottom:471.598667pt;}
.y1c{bottom:491.438667pt;}
.y1b{bottom:517.678667pt;}
.y1a{bottom:531.118667pt;}
.y19{bottom:544.558667pt;}
.y18{bottom:557.678667pt;}
.y17{bottom:578.158667pt;}
.y15{bottom:598.318667pt;}
.y16{bottom:600.985333pt;}
.y14{bottom:611.118667pt;}
.y13{bottom:624.558667pt;}
.y12{bottom:644.398667pt;}
.y11{bottom:657.838667pt;}
.y10{bottom:678.318667pt;}
.yf{bottom:691.438667pt;}
.ye{bottom:705.198667pt;}
.yd{bottom:725.038667pt;}
.yc{bottom:738.478667pt;}
.yb{bottom:768.238667pt;}
.hf{height:15.703125pt;}
.h13{height:22.250000pt;}
.h4{height:36.640625pt;}
.h11{height:38.937500pt;}
.h12{height:41.875000pt;}
.hd{height:44.500000pt;}
.h5{height:47.109375pt;}
.ha{height:50.062500pt;}
.he{height:52.317708pt;}
.h6{height:52.343750pt;}
.h9{height:55.625000pt;}
.h3{height:57.549479pt;}
.h8{height:57.578125pt;}
.h10{height:62.781250pt;}
.h14{height:62.812500pt;}
.h2{height:73.281250pt;}
.h7{height:83.750000pt;}
.h0{height:690.394667pt;}
.h1{height:690.666667pt;}
.hb{height:818.581333pt;}
.hc{height:818.666667pt;}
.w1{width:495.333333pt;}
.w0{width:495.525333pt;}
.w3{width:520.666667pt;}
.w2{width:520.914667pt;}
.x0{left:0.000000pt;}
.xe{left:29.834667pt;}
.xb{left:31.434667pt;}
.x1{left:41.034667pt;}
.x8{left:59.274667pt;}
.x1c{left:62.474667pt;}
.x11{left:75.594667pt;}
.x12{left:89.674667pt;}
.x6c{left:92.316000pt;}
.x50{left:93.276000pt;}
.x3e{left:94.236000pt;}
.x1e{left:95.196000pt;}
.x45{left:96.796000pt;}
.x26{left:98.396000pt;}
.x76{left:100.636000pt;}
.x36{left:106.930880pt;}
.x27{left:108.316000pt;}
.x2c{left:109.916000pt;}
.x58{left:112.476000pt;}
.x46{left:118.876000pt;}
.x37{left:122.396000pt;}
.x30{left:123.356000pt;}
.x22{left:124.956000pt;}
.x14{left:131.914667pt;}
.x51{left:132.956000pt;}
.x2d{left:136.156000pt;}
.x74{left:137.116000pt;}
.x59{left:143.196000pt;}
.x78{left:144.476000pt;}
.x5{left:148.234667pt;}
.x52{left:150.236000pt;}
.x38{left:154.076000pt;}
.x6{left:162.634667pt;}
.x5a{left:168.476000pt;}
.x2{left:174.474667pt;}
.x49{left:180.316000pt;}
.x7a{left:182.876000pt;}
.x15{left:186.634667pt;}
.x28{left:187.996000pt;}
.x39{left:196.316000pt;}
.x3{left:198.154667pt;}
.x6d{left:200.796000pt;}
.x69{left:202.396000pt;}
.x71{left:206.556000pt;}
.x4a{left:212.956000pt;}
.x7{left:214.474667pt;}
.x4b{left:216.796000pt;}
.x1a{left:217.994667pt;}
.x42{left:219.036000pt;}
.x5b{left:223.836000pt;}
.x72{left:227.676000pt;}
.x63{left:231.516000pt;}
.x43{left:233.436000pt;}
.xc{left:236.234667pt;}
.x6f{left:239.516000pt;}
.x79{left:240.796000pt;}
.x4{left:241.994667pt;}
.x4c{left:245.916000pt;}
.x1d{left:253.276000pt;}
.x1b{left:254.474667pt;}
.x60{left:258.716000pt;}
.x66{left:260.636000pt;}
.x75{left:266.076000pt;}
.x77{left:269.916000pt;}
.x56{left:272.476000pt;}
.x24{left:274.076000pt;}
.x53{left:276.316000pt;}
.x44{left:280.796000pt;}
.x1f{left:281.756000pt;}
.xf{left:292.234667pt;}
.x54{left:294.876000pt;}
.x16{left:297.994667pt;}
.x23{left:299.996000pt;}
.x70{left:300.956000pt;}
.x67{left:308.316000pt;}
.x57{left:311.516000pt;}
.x3a{left:318.236000pt;}
.x17{left:322.314667pt;}
.x32{left:326.236000pt;}
.xd{left:327.434667pt;}
.x3b{left:328.796000pt;}
.x2e{left:331.356000pt;}
.x20{left:332.636000pt;}
.x33{left:334.876000pt;}
.x10{left:338.634667pt;}
.x6a{left:344.796000pt;}
.x64{left:346.396000pt;}
.x2f{left:350.556000pt;}
.x3f{left:354.716000pt;}
.x9{left:361.354667pt;}
.x31{left:365.596000pt;}
.x18{left:373.514667pt;}
.x40{left:374.876000pt;}
.x47{left:381.276000pt;}
.x6b{left:385.756000pt;}
.x34{left:391.516000pt;}
.x6e{left:394.076000pt;}
.xa{left:395.914667pt;}
.x65{left:397.596000pt;}
.x5c{left:400.156000pt;}
.x4d{left:401.436000pt;}
.x29{left:402.396000pt;}
.x61{left:405.596000pt;}
.x19{left:409.674667pt;}
.x13{left:410.954667pt;}
.x55{left:412.636000pt;}
.x7b{left:414.556000pt;}
.x68{left:415.836000pt;}
.x48{left:417.756000pt;}
.x4e{left:422.556000pt;}
.x73{left:425.756000pt;}
.x2a{left:435.036000pt;}
.x62{left:440.156000pt;}
.x4f{left:441.756000pt;}
.x3c{left:443.996000pt;}
.x41{left:445.916000pt;}
.x21{left:446.876000pt;}
.x25{left:447.836000pt;}
.x5d{left:451.676000pt;}
.x35{left:452.956000pt;}
.x2b{left:459.036000pt;}
.x3d{left:478.236000pt;}
.x5e{left:480.156000pt;}
.x5f{left:493.596000pt;}
}




    .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; }
  