
    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_b55bc7d7134868fe877726cb.woff')format("woff");}.ff1{font-family:ff1;line-height:0.904000;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_fb19fb694e721d61ad9eb0e7.woff')format("woff");}.ff2{font-family:ff2;line-height:0.898000;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_711c53ff324a56384350f98b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.108000;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_1d3088f8b42b273be256ba07.woff')format("woff");}.ff4{font-family:ff4;line-height:0.923000;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_0ba43c47f27ef70934eb1064.woff')format("woff");}.ff5{font-family:ff5;line-height:0.890000;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;}
.m3{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);}
.me{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.m8{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{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);}
.m5{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m7{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.mb{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.854000px;}
.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;}
}
.ws54{word-spacing:-14.943900px;}
.ws1e{word-spacing:-13.449600px;}
.ws1d{word-spacing:-8.966400px;}
.ws20{word-spacing:-3.108331px;}
.ws36{word-spacing:-2.809453px;}
.ws2c{word-spacing:-2.331248px;}
.ws44{word-spacing:-1.853044px;}
.ws2b{word-spacing:-1.793268px;}
.ws30{word-spacing:-1.733492px;}
.wse{word-spacing:-1.613941px;}
.ws12{word-spacing:-1.554166px;}
.ws19{word-spacing:-1.135736px;}
.ws61{word-spacing:-1.075961px;}
.ws6f{word-spacing:-1.016185px;}
.ws2f{word-spacing:-0.956410px;}
.ws35{word-spacing:-0.896634px;}
.ws34{word-spacing:-0.657532px;}
.ws2e{word-spacing:-0.418429px;}
.ws6e{word-spacing:-0.358654px;}
.ws40{word-spacing:-0.298878px;}
.ws23{word-spacing:-0.239102px;}
.ws9{word-spacing:-0.179327px;}
.ws16{word-spacing:-0.119551px;}
.ws38{word-spacing:-0.071731px;}
.ws3{word-spacing:-0.059776px;}
.ws2{word-spacing:0.000000px;}
.ws1b{word-spacing:0.059776px;}
.wsc{word-spacing:0.119551px;}
.ws2a{word-spacing:0.179327px;}
.ws7{word-spacing:0.239102px;}
.ws21{word-spacing:0.358654px;}
.ws24{word-spacing:0.418429px;}
.ws55{word-spacing:0.478205px;}
.ws6{word-spacing:0.717307px;}
.ws31{word-spacing:1.195512px;}
.ws15{word-spacing:1.315063px;}
.ws2d{word-spacing:1.374839px;}
.ws22{word-spacing:1.554166px;}
.ws17{word-spacing:1.613941px;}
.ws5{word-spacing:1.793268px;}
.ws25{word-spacing:1.972595px;}
.ws29{word-spacing:2.092146px;}
.ws4b{word-spacing:2.271473px;}
.ws56{word-spacing:2.331248px;}
.wsa{word-spacing:2.510575px;}
.ws4d{word-spacing:2.570351px;}
.ws60{word-spacing:2.869229px;}
.ws65{word-spacing:2.988780px;}
.ws4f{word-spacing:3.108331px;}
.wsb{word-spacing:3.347434px;}
.ws4a{word-spacing:3.407209px;}
.ws63{word-spacing:3.466985px;}
.ws3f{word-spacing:3.526760px;}
.ws43{word-spacing:3.586536px;}
.ws11{word-spacing:3.765863px;}
.ws10{word-spacing:3.825638px;}
.ws26{word-spacing:4.244068px;}
.ws27{word-spacing:4.303843px;}
.ws13{word-spacing:4.901599px;}
.ws8{word-spacing:5.379804px;}
.ws64{word-spacing:5.439580px;}
.ws28{word-spacing:5.977560px;}
.ws18{word-spacing:6.276438px;}
.ws5b{word-spacing:6.336214px;}
.ws42{word-spacing:6.515540px;}
.ws4e{word-spacing:6.575316px;}
.ws37{word-spacing:6.754643px;}
.ws3a{word-spacing:7.292623px;}
.ws3c{word-spacing:7.352399px;}
.ws52{word-spacing:7.412174px;}
.ws1c{word-spacing:7.470163px;}
.ws1a{word-spacing:8.189257px;}
.ws39{word-spacing:8.308808px;}
.ws59{word-spacing:8.428360px;}
.ws5d{word-spacing:10.161852px;}
.wsf{word-spacing:13.270183px;}
.ws46{word-spacing:13.449510px;}
.ws62{word-spacing:13.808164px;}
.ws70{word-spacing:13.867939px;}
.ws41{word-spacing:14.525471px;}
.ws53{word-spacing:14.585246px;}
.ws33{word-spacing:14.764573px;}
.ws50{word-spacing:14.824349px;}
.ws1{word-spacing:14.884124px;}
.ws5f{word-spacing:14.943900px;}
.ws45{word-spacing:15.063451px;}
.ws72{word-spacing:15.123227px;}
.ws3e{word-spacing:15.362329px;}
.ws51{word-spacing:15.900310px;}
.ws4{word-spacing:16.677392px;}
.ws58{word-spacing:16.796944px;}
.ws4c{word-spacing:16.856719px;}
.ws57{word-spacing:17.215373px;}
.wsd{word-spacing:17.645875px;}
.ws1f{word-spacing:17.861069px;}
.ws66{word-spacing:17.872904px;}
.ws73{word-spacing:18.829314px;}
.ws14{word-spacing:19.785724px;}
.ws69{word-spacing:20.443255px;}
.ws5a{word-spacing:21.280114px;}
.ws3b{word-spacing:22.236523px;}
.ws5c{word-spacing:22.296299px;}
.ws67{word-spacing:22.894055px;}
.ws68{word-spacing:24.507996px;}
.ws0{word-spacing:25.719808px;}
.ws48{word-spacing:26.420815px;}
.ws71{word-spacing:27.078347px;}
.ws5e{word-spacing:31.860395px;}
.ws6a{word-spacing:35.387155px;}
.ws6c{word-spacing:40.766959px;}
.ws47{word-spacing:43.994842px;}
.ws6b{word-spacing:47.402051px;}
.ws49{word-spacing:57.982332px;}
.ws3d{word-spacing:66.171589px;}
.ws6d{word-spacing:68.383286px;}
.ws32{word-spacing:71.659469px;}
._c{margin-left:-6.694867px;}
._4{margin-left:-4.250287px;}
._2{margin-left:-3.221663px;}
._1{margin-left:-1.859263px;}
._d{width:2.978141px;}
._12{width:11.596466px;}
._6{width:13.748388px;}
._17{width:14.943900px;}
._9{width:17.334924px;}
._3{width:18.530436px;}
._10{width:19.791943px;}
._5{width:21.638767px;}
._8{width:22.948236px;}
._b{width:23.976235px;}
._1c{width:25.171747px;}
._7{width:26.427035px;}
._1b{width:28.393410px;}
._a{width:29.648698px;}
._0{width:32.020644px;}
._16{width:33.354160px;}
._14{width:34.849175px;}
._11{width:36.164238px;}
._20{width:39.099462px;}
._1d{width:42.644256px;}
._1e{width:45.196573px;}
._15{width:46.338529px;}
._13{width:48.304904px;}
._1a{width:50.570158px;}
._1f{width:54.874001px;}
._26{width:56.428166px;}
._19{width:58.580088px;}
._f{width:59.775600px;}
._18{width:64.494911px;}
._e{width:71.731200px;}
._25{width:81.886352px;}
._24{width:83.380742px;}
._22{width:87.159044px;}
._21{width:101.300983px;}
._23{width:125.588536px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs3{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs2{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y5d{bottom:63.168000px;}
.y2c{bottom:78.184500px;}
.y2b{bottom:93.129000px;}
.y5c{bottom:108.000000px;}
.y5b{bottom:124.363500px;}
.y8b{bottom:140.727000px;}
.y5a{bottom:148.947000px;}
.y2a{bottom:150.450000px;}
.y8a{bottom:157.090500px;}
.y59{bottom:165.310500px;}
.y29{bottom:166.813500px;}
.yb9{bottom:173.454000px;}
.y58{bottom:181.674000px;}
.y28{bottom:183.178500px;}
.y89{bottom:186.795000px;}
.y57{bottom:198.037500px;}
.y27{bottom:199.542000px;}
.yb8{bottom:200.028000px;}
.y88{bottom:203.158500px;}
.y56{bottom:214.401000px;}
.y26{bottom:215.905500px;}
.yb7{bottom:216.391500px;}
.y87{bottom:219.522000px;}
.y55{bottom:230.764500px;}
.y25{bottom:232.269000px;}
.yb6{bottom:232.755000px;}
.y54{bottom:247.128000px;}
.y24{bottom:248.632500px;}
.yb5{bottom:249.118500px;}
.y86{bottom:249.226500px;}
.y23{bottom:264.996000px;}
.y85{bottom:265.590000px;}
.yb4{bottom:275.691000px;}
.y84{bottom:281.953500px;}
.y53{bottom:282.999000px;}
.y22{bottom:289.579500px;}
.yb3{bottom:292.054500px;}
.y83{bottom:298.317000px;}
.y21{bottom:305.943000px;}
.yb2{bottom:308.418000px;}
.y82{bottom:314.680500px;}
.y20{bottom:322.306500px;}
.yb1{bottom:324.781500px;}
.y52{bottom:327.589500px;}
.y1f{bottom:338.670000px;}
.yb0{bottom:341.145000px;}
.y51{bottom:343.953000px;}
.y81{bottom:344.385000px;}
.y1e{bottom:355.033500px;}
.y50{bottom:360.316500px;}
.y80{bottom:360.748500px;}
.yaf{bottom:367.719000px;}
.y1d{bottom:371.397000px;}
.y4f{bottom:376.681500px;}
.yae{bottom:384.082500px;}
.y1c{bottom:387.760500px;}
.y7f{bottom:390.453000px;}
.y4e{bottom:393.045000px;}
.yad{bottom:400.446000px;}
.y7e{bottom:406.816500px;}
.y4d{bottom:409.408500px;}
.y1b{bottom:412.344000px;}
.yac{bottom:416.809500px;}
.y7d{bottom:423.180000px;}
.y4c{bottom:425.772000px;}
.y1a{bottom:428.707500px;}
.yab{bottom:433.173000px;}
.y7c{bottom:439.543500px;}
.y19{bottom:445.071000px;}
.y4b{bottom:450.354000px;}
.yaa{bottom:459.745500px;}
.y18{bottom:461.434500px;}
.y4a{bottom:466.717500px;}
.y7b{bottom:469.248000px;}
.ya9{bottom:476.109000px;}
.y17{bottom:477.798000px;}
.y49{bottom:483.082500px;}
.y7a{bottom:485.611500px;}
.ya8{bottom:492.472500px;}
.y16{bottom:494.161500px;}
.y48{bottom:499.446000px;}
.y79{bottom:501.975000px;}
.y78{bottom:518.338500px;}
.ya7{bottom:519.046500px;}
.y47{bottom:530.208000px;}
.ya6{bottom:535.410000px;}
.y15{bottom:537.205500px;}
.y77{bottom:548.043000px;}
.ya5{bottom:551.773500px;}
.y76{bottom:564.406500px;}
.ya4{bottom:568.137000px;}
.y46{bottom:568.896000px;}
.y75{bottom:580.770000px;}
.ya3{bottom:584.500500px;}
.y45{bottom:585.261000px;}
.y74{bottom:597.133500px;}
.y44{bottom:601.624500px;}
.y14{bottom:610.530000px;}
.ya2{bottom:611.073000px;}
.y43{bottom:617.988000px;}
.y73{bottom:624.051000px;}
.y13{bottom:626.893500px;}
.ya1{bottom:627.436500px;}
.y42{bottom:634.351500px;}
.y12{bottom:643.257000px;}
.ya0{bottom:643.800000px;}
.y41{bottom:650.715000px;}
.y11{bottom:659.620500px;}
.y9f{bottom:660.165000px;}
.y40{bottom:667.078500px;}
.y72{bottom:667.420500px;}
.y10{bottom:675.984000px;}
.y9e{bottom:676.528500px;}
.y71{bottom:683.784000px;}
.yf{bottom:692.347500px;}
.y9d{bottom:692.892000px;}
.y3f{bottom:697.842000px;}
.y70{bottom:700.147500px;}
.ye{bottom:708.712500px;}
.y6f{bottom:716.512500px;}
.y9c{bottom:719.464500px;}
.yd{bottom:725.076000px;}
.y6e{bottom:732.876000px;}
.y9b{bottom:735.828000px;}
.y3e{bottom:736.530000px;}
.yc{bottom:741.439500px;}
.y6d{bottom:749.239500px;}
.y9a{bottom:752.191500px;}
.y3d{bottom:752.893500px;}
.yb{bottom:757.803000px;}
.y6c{bottom:765.603000px;}
.y3c{bottom:769.257000px;}
.ya{bottom:774.166500px;}
.y99{bottom:778.764000px;}
.y6b{bottom:781.966500px;}
.y3b{bottom:785.620500px;}
.y9{bottom:790.530000px;}
.y98{bottom:795.127500px;}
.y6a{bottom:798.330000px;}
.y3a{bottom:801.984000px;}
.y69{bottom:814.693500px;}
.y39{bottom:818.347500px;}
.y97{bottom:821.701500px;}
.y68{bottom:831.057000px;}
.y38{bottom:834.711000px;}
.y8{bottom:835.252500px;}
.y96{bottom:838.065000px;}
.y95{bottom:854.428500px;}
.y37{bottom:859.294500px;}
.y67{bottom:866.194500px;}
.y94{bottom:870.792000px;}
.y36{bottom:875.658000px;}
.y93{bottom:887.155500px;}
.y35{bottom:892.021500px;}
.y7{bottom:897.025500px;}
.y66{bottom:909.564000px;}
.y6{bottom:913.389000px;}
.y92{bottom:913.728000px;}
.y34{bottom:916.605000px;}
.y65{bottom:925.927500px;}
.y5{bottom:929.752500px;}
.y91{bottom:930.091500px;}
.y33{bottom:932.968500px;}
.y64{bottom:942.291000px;}
.y4{bottom:946.116000px;}
.y90{bottom:946.456500px;}
.y32{bottom:949.332000px;}
.y63{bottom:958.654500px;}
.y3{bottom:962.479500px;}
.y31{bottom:965.695500px;}
.y8f{bottom:973.029000px;}
.y30{bottom:982.059000px;}
.y62{bottom:983.238000px;}
.y8e{bottom:989.392500px;}
.y2f{bottom:998.422500px;}
.y61{bottom:999.601500px;}
.y8d{bottom:1005.756000px;}
.y2{bottom:1013.299500px;}
.y60{bottom:1015.965000px;}
.y8c{bottom:1022.119500px;}
.y2e{bottom:1029.186000px;}
.y5f{bottom:1032.328500px;}
.y1{bottom:1043.188500px;}
.y5e{bottom:1048.692000px;}
.y2d{bottom:1065.055500px;}
.h3{height:41.364715px;}
.h5{height:41.544042px;}
.h6{height:49.637990px;}
.h4{height:53.200284px;}
.h7{height:54.774384px;}
.h2{height:71.478341px;}
.h1{height:72.201388px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xa{left:162.000000px;}
.x2{left:165.457500px;}
.x1{left:167.550000px;}
.xe{left:175.822500px;}
.xd{left:176.944500px;}
.xb{left:188.899500px;}
.x9{left:215.305500px;}
.xf{left:246.946500px;}
.x1e{left:317.577000px;}
.x18{left:348.510000px;}
.x6{left:357.195000px;}
.x7{left:360.954000px;}
.x1c{left:365.385000px;}
.x11{left:368.335500px;}
.x5{left:389.989500px;}
.x10{left:396.760500px;}
.x3{left:419.338500px;}
.x8{left:425.637000px;}
.x4{left:428.694000px;}
.x1a{left:431.046000px;}
.xc{left:455.263500px;}
.x1d{left:502.650000px;}
.x13{left:514.414500px;}
.x16{left:555.645000px;}
.x19{left:630.882000px;}
.x17{left:635.992500px;}
.x14{left:659.523000px;}
.x1b{left:682.791000px;}
.x15{left:712.860000px;}
.x12{left:721.300500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.314667pt;}
.ls0{letter-spacing:0.000000pt;}
.ws54{word-spacing:-13.283467pt;}
.ws1e{word-spacing:-11.955200pt;}
.ws1d{word-spacing:-7.970133pt;}
.ws20{word-spacing:-2.762961pt;}
.ws36{word-spacing:-2.497292pt;}
.ws2c{word-spacing:-2.072221pt;}
.ws44{word-spacing:-1.647150pt;}
.ws2b{word-spacing:-1.594016pt;}
.ws30{word-spacing:-1.540882pt;}
.wse{word-spacing:-1.434614pt;}
.ws12{word-spacing:-1.381481pt;}
.ws19{word-spacing:-1.009543pt;}
.ws61{word-spacing:-0.956410pt;}
.ws6f{word-spacing:-0.903276pt;}
.ws2f{word-spacing:-0.850142pt;}
.ws35{word-spacing:-0.797008pt;}
.ws34{word-spacing:-0.584473pt;}
.ws2e{word-spacing:-0.371937pt;}
.ws6e{word-spacing:-0.318803pt;}
.ws40{word-spacing:-0.265669pt;}
.ws23{word-spacing:-0.212535pt;}
.ws9{word-spacing:-0.159402pt;}
.ws16{word-spacing:-0.106268pt;}
.ws38{word-spacing:-0.063761pt;}
.ws3{word-spacing:-0.053134pt;}
.ws2{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.053134pt;}
.wsc{word-spacing:0.106268pt;}
.ws2a{word-spacing:0.159402pt;}
.ws7{word-spacing:0.212535pt;}
.ws21{word-spacing:0.318803pt;}
.ws24{word-spacing:0.371937pt;}
.ws55{word-spacing:0.425071pt;}
.ws6{word-spacing:0.637606pt;}
.ws31{word-spacing:1.062677pt;}
.ws15{word-spacing:1.168945pt;}
.ws2d{word-spacing:1.222079pt;}
.ws22{word-spacing:1.381481pt;}
.ws17{word-spacing:1.434614pt;}
.ws5{word-spacing:1.594016pt;}
.ws25{word-spacing:1.753418pt;}
.ws29{word-spacing:1.859685pt;}
.ws4b{word-spacing:2.019087pt;}
.ws56{word-spacing:2.072221pt;}
.wsa{word-spacing:2.231622pt;}
.ws4d{word-spacing:2.284756pt;}
.ws60{word-spacing:2.550426pt;}
.ws65{word-spacing:2.656693pt;}
.ws4f{word-spacing:2.762961pt;}
.wsb{word-spacing:2.975497pt;}
.ws4a{word-spacing:3.028630pt;}
.ws63{word-spacing:3.081764pt;}
.ws3f{word-spacing:3.134898pt;}
.ws43{word-spacing:3.188032pt;}
.ws11{word-spacing:3.347434pt;}
.ws10{word-spacing:3.400567pt;}
.ws26{word-spacing:3.772505pt;}
.ws27{word-spacing:3.825638pt;}
.ws13{word-spacing:4.356977pt;}
.ws8{word-spacing:4.782048pt;}
.ws64{word-spacing:4.835182pt;}
.ws28{word-spacing:5.313387pt;}
.ws18{word-spacing:5.579056pt;}
.ws5b{word-spacing:5.632190pt;}
.ws42{word-spacing:5.791591pt;}
.ws4e{word-spacing:5.844725pt;}
.ws37{word-spacing:6.004127pt;}
.ws3a{word-spacing:6.482332pt;}
.ws3c{word-spacing:6.535466pt;}
.ws52{word-spacing:6.588599pt;}
.ws1c{word-spacing:6.640145pt;}
.ws1a{word-spacing:7.279340pt;}
.ws39{word-spacing:7.385607pt;}
.ws59{word-spacing:7.491875pt;}
.ws5d{word-spacing:9.032757pt;}
.wsf{word-spacing:11.795718pt;}
.ws46{word-spacing:11.955120pt;}
.ws62{word-spacing:12.273923pt;}
.ws70{word-spacing:12.327057pt;}
.ws41{word-spacing:12.911530pt;}
.ws53{word-spacing:12.964663pt;}
.ws33{word-spacing:13.124065pt;}
.ws50{word-spacing:13.177199pt;}
.ws1{word-spacing:13.230333pt;}
.ws5f{word-spacing:13.283467pt;}
.ws45{word-spacing:13.389734pt;}
.ws72{word-spacing:13.442868pt;}
.ws3e{word-spacing:13.655404pt;}
.ws51{word-spacing:14.133609pt;}
.ws4{word-spacing:14.824349pt;}
.ws58{word-spacing:14.930617pt;}
.ws4c{word-spacing:14.983750pt;}
.ws57{word-spacing:15.302554pt;}
.wsd{word-spacing:15.685222pt;}
.ws1f{word-spacing:15.876506pt;}
.ws66{word-spacing:15.887026pt;}
.ws73{word-spacing:16.737168pt;}
.ws14{word-spacing:17.587310pt;}
.ws69{word-spacing:18.171782pt;}
.ws5a{word-spacing:18.915657pt;}
.ws3b{word-spacing:19.765798pt;}
.ws5c{word-spacing:19.818932pt;}
.ws67{word-spacing:20.350271pt;}
.ws68{word-spacing:21.784885pt;}
.ws0{word-spacing:22.862051pt;}
.ws48{word-spacing:23.485169pt;}
.ws71{word-spacing:24.069642pt;}
.ws5e{word-spacing:28.320351pt;}
.ws6a{word-spacing:31.455249pt;}
.ws6c{word-spacing:36.237297pt;}
.ws47{word-spacing:39.106526pt;}
.ws6b{word-spacing:42.135156pt;}
.ws49{word-spacing:51.539851pt;}
.ws3d{word-spacing:58.819190pt;}
.ws6d{word-spacing:60.785143pt;}
.ws32{word-spacing:63.697306pt;}
._c{margin-left:-5.950993pt;}
._4{margin-left:-3.778033pt;}
._2{margin-left:-2.863700pt;}
._1{margin-left:-1.652678pt;}
._d{width:2.647236pt;}
._12{width:10.307970pt;}
._6{width:12.220789pt;}
._17{width:13.283467pt;}
._9{width:15.408821pt;}
._3{width:16.471499pt;}
._10{width:17.592838pt;}
._5{width:19.234460pt;}
._8{width:20.398432pt;}
._b{width:21.312209pt;}
._1c{width:22.374886pt;}
._7{width:23.490698pt;}
._1b{width:25.238587pt;}
._a{width:26.354398pt;}
._0{width:28.462795pt;}
._16{width:29.648142pt;}
._14{width:30.977044pt;}
._11{width:32.145989pt;}
._20{width:34.755077pt;}
._1d{width:37.906005pt;}
._1e{width:40.174732pt;}
._15{width:41.189804pt;}
._13{width:42.937693pt;}
._1a{width:44.951251pt;}
._1f{width:48.776890pt;}
._26{width:50.158370pt;}
._19{width:52.071189pt;}
._f{width:53.133867pt;}
._18{width:57.328810pt;}
._e{width:63.761067pt;}
._25{width:72.787869pt;}
._24{width:74.116215pt;}
._22{width:77.474706pt;}
._21{width:90.045318pt;}
._23{width:111.634254pt;}
.fs4{font-size:31.880533pt;}
.fs3{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs2{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:56.149333pt;}
.y2c{bottom:69.497333pt;}
.y2b{bottom:82.781333pt;}
.y5c{bottom:96.000000pt;}
.y5b{bottom:110.545333pt;}
.y8b{bottom:125.090667pt;}
.y5a{bottom:132.397333pt;}
.y2a{bottom:133.733333pt;}
.y8a{bottom:139.636000pt;}
.y59{bottom:146.942667pt;}
.y29{bottom:148.278667pt;}
.yb9{bottom:154.181333pt;}
.y58{bottom:161.488000pt;}
.y28{bottom:162.825333pt;}
.y89{bottom:166.040000pt;}
.y57{bottom:176.033333pt;}
.y27{bottom:177.370667pt;}
.yb8{bottom:177.802667pt;}
.y88{bottom:180.585333pt;}
.y56{bottom:190.578667pt;}
.y26{bottom:191.916000pt;}
.yb7{bottom:192.348000pt;}
.y87{bottom:195.130667pt;}
.y55{bottom:205.124000pt;}
.y25{bottom:206.461333pt;}
.yb6{bottom:206.893333pt;}
.y54{bottom:219.669333pt;}
.y24{bottom:221.006667pt;}
.yb5{bottom:221.438667pt;}
.y86{bottom:221.534667pt;}
.y23{bottom:235.552000pt;}
.y85{bottom:236.080000pt;}
.yb4{bottom:245.058667pt;}
.y84{bottom:250.625333pt;}
.y53{bottom:251.554667pt;}
.y22{bottom:257.404000pt;}
.yb3{bottom:259.604000pt;}
.y83{bottom:265.170667pt;}
.y21{bottom:271.949333pt;}
.yb2{bottom:274.149333pt;}
.y82{bottom:279.716000pt;}
.y20{bottom:286.494667pt;}
.yb1{bottom:288.694667pt;}
.y52{bottom:291.190667pt;}
.y1f{bottom:301.040000pt;}
.yb0{bottom:303.240000pt;}
.y51{bottom:305.736000pt;}
.y81{bottom:306.120000pt;}
.y1e{bottom:315.585333pt;}
.y50{bottom:320.281333pt;}
.y80{bottom:320.665333pt;}
.yaf{bottom:326.861333pt;}
.y1d{bottom:330.130667pt;}
.y4f{bottom:334.828000pt;}
.yae{bottom:341.406667pt;}
.y1c{bottom:344.676000pt;}
.y7f{bottom:347.069333pt;}
.y4e{bottom:349.373333pt;}
.yad{bottom:355.952000pt;}
.y7e{bottom:361.614667pt;}
.y4d{bottom:363.918667pt;}
.y1b{bottom:366.528000pt;}
.yac{bottom:370.497333pt;}
.y7d{bottom:376.160000pt;}
.y4c{bottom:378.464000pt;}
.y1a{bottom:381.073333pt;}
.yab{bottom:385.042667pt;}
.y7c{bottom:390.705333pt;}
.y19{bottom:395.618667pt;}
.y4b{bottom:400.314667pt;}
.yaa{bottom:408.662667pt;}
.y18{bottom:410.164000pt;}
.y4a{bottom:414.860000pt;}
.y7b{bottom:417.109333pt;}
.ya9{bottom:423.208000pt;}
.y17{bottom:424.709333pt;}
.y49{bottom:429.406667pt;}
.y7a{bottom:431.654667pt;}
.ya8{bottom:437.753333pt;}
.y16{bottom:439.254667pt;}
.y48{bottom:443.952000pt;}
.y79{bottom:446.200000pt;}
.y78{bottom:460.745333pt;}
.ya7{bottom:461.374667pt;}
.y47{bottom:471.296000pt;}
.ya6{bottom:475.920000pt;}
.y15{bottom:477.516000pt;}
.y77{bottom:487.149333pt;}
.ya5{bottom:490.465333pt;}
.y76{bottom:501.694667pt;}
.ya4{bottom:505.010667pt;}
.y46{bottom:505.685333pt;}
.y75{bottom:516.240000pt;}
.ya3{bottom:519.556000pt;}
.y45{bottom:520.232000pt;}
.y74{bottom:530.785333pt;}
.y44{bottom:534.777333pt;}
.y14{bottom:542.693333pt;}
.ya2{bottom:543.176000pt;}
.y43{bottom:549.322667pt;}
.y73{bottom:554.712000pt;}
.y13{bottom:557.238667pt;}
.ya1{bottom:557.721333pt;}
.y42{bottom:563.868000pt;}
.y12{bottom:571.784000pt;}
.ya0{bottom:572.266667pt;}
.y41{bottom:578.413333pt;}
.y11{bottom:586.329333pt;}
.y9f{bottom:586.813333pt;}
.y40{bottom:592.958667pt;}
.y72{bottom:593.262667pt;}
.y10{bottom:600.874667pt;}
.y9e{bottom:601.358667pt;}
.y71{bottom:607.808000pt;}
.yf{bottom:615.420000pt;}
.y9d{bottom:615.904000pt;}
.y3f{bottom:620.304000pt;}
.y70{bottom:622.353333pt;}
.ye{bottom:629.966667pt;}
.y6f{bottom:636.900000pt;}
.y9c{bottom:639.524000pt;}
.yd{bottom:644.512000pt;}
.y6e{bottom:651.445333pt;}
.y9b{bottom:654.069333pt;}
.y3e{bottom:654.693333pt;}
.yc{bottom:659.057333pt;}
.y6d{bottom:665.990667pt;}
.y9a{bottom:668.614667pt;}
.y3d{bottom:669.238667pt;}
.yb{bottom:673.602667pt;}
.y6c{bottom:680.536000pt;}
.y3c{bottom:683.784000pt;}
.ya{bottom:688.148000pt;}
.y99{bottom:692.234667pt;}
.y6b{bottom:695.081333pt;}
.y3b{bottom:698.329333pt;}
.y9{bottom:702.693333pt;}
.y98{bottom:706.780000pt;}
.y6a{bottom:709.626667pt;}
.y3a{bottom:712.874667pt;}
.y69{bottom:724.172000pt;}
.y39{bottom:727.420000pt;}
.y97{bottom:730.401333pt;}
.y68{bottom:738.717333pt;}
.y38{bottom:741.965333pt;}
.y8{bottom:742.446667pt;}
.y96{bottom:744.946667pt;}
.y95{bottom:759.492000pt;}
.y37{bottom:763.817333pt;}
.y67{bottom:769.950667pt;}
.y94{bottom:774.037333pt;}
.y36{bottom:778.362667pt;}
.y93{bottom:788.582667pt;}
.y35{bottom:792.908000pt;}
.y7{bottom:797.356000pt;}
.y66{bottom:808.501333pt;}
.y6{bottom:811.901333pt;}
.y92{bottom:812.202667pt;}
.y34{bottom:814.760000pt;}
.y65{bottom:823.046667pt;}
.y5{bottom:826.446667pt;}
.y91{bottom:826.748000pt;}
.y33{bottom:829.305333pt;}
.y64{bottom:837.592000pt;}
.y4{bottom:840.992000pt;}
.y90{bottom:841.294667pt;}
.y32{bottom:843.850667pt;}
.y63{bottom:852.137333pt;}
.y3{bottom:855.537333pt;}
.y31{bottom:858.396000pt;}
.y8f{bottom:864.914667pt;}
.y30{bottom:872.941333pt;}
.y62{bottom:873.989333pt;}
.y8e{bottom:879.460000pt;}
.y2f{bottom:887.486667pt;}
.y61{bottom:888.534667pt;}
.y8d{bottom:894.005333pt;}
.y2{bottom:900.710667pt;}
.y60{bottom:903.080000pt;}
.y8c{bottom:908.550667pt;}
.y2e{bottom:914.832000pt;}
.y5f{bottom:917.625333pt;}
.y1{bottom:927.278667pt;}
.y5e{bottom:932.170667pt;}
.y2d{bottom:946.716000pt;}
.h3{height:36.768636pt;}
.h5{height:36.928037pt;}
.h6{height:44.122658pt;}
.h4{height:47.289141pt;}
.h7{height:48.688341pt;}
.h2{height:63.536303pt;}
.h1{height:64.179011pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa{left:144.000000pt;}
.x2{left:147.073333pt;}
.x1{left:148.933333pt;}
.xe{left:156.286667pt;}
.xd{left:157.284000pt;}
.xb{left:167.910667pt;}
.x9{left:191.382667pt;}
.xf{left:219.508000pt;}
.x1e{left:282.290667pt;}
.x18{left:309.786667pt;}
.x6{left:317.506667pt;}
.x7{left:320.848000pt;}
.x1c{left:324.786667pt;}
.x11{left:327.409333pt;}
.x5{left:346.657333pt;}
.x10{left:352.676000pt;}
.x3{left:372.745333pt;}
.x8{left:378.344000pt;}
.x4{left:381.061333pt;}
.x1a{left:383.152000pt;}
.xc{left:404.678667pt;}
.x1d{left:446.800000pt;}
.x13{left:457.257333pt;}
.x16{left:493.906667pt;}
.x19{left:560.784000pt;}
.x17{left:565.326667pt;}
.x14{left:586.242667pt;}
.x1b{left:606.925333pt;}
.x15{left:633.653333pt;}
.x12{left:641.156000pt;}
}




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