
    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_4215338e043d056f762face8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.009000;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_b9afa60066377bca362f6e3c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.712000;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_da7f3353c2a90e2ce76b4137.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.986000;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_7f01b3386c1799b402778513.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.761000;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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.736000;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_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.660000;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_37e018c9111f89f364364fc6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.885000;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:ff8;src:url('chunks/assets/font_2cb6a12954b6176624b094a1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.011000;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:ff9;src:url('chunks/assets/font_47639a9d595e65c9303ec93c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.734000;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:ffa;src:url('chunks/assets/font_140279d71c86ca4678729a10.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.726000;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;}
.m2{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);}
.m4{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);}
.m8{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);}
.mb{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.ma{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);}
.m19{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);}
.m11{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);}
.m1{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);}
.m1b{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,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);}
.m14{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);}
.mc{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);}
.m10{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.md{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.m5{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.m16{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);}
.m15{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);}
.m3{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);}
.m7{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);}
.m9{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);}
.m6{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);}
.me{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);}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.lsa{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.000566px;}
.ls5{letter-spacing:0.000600px;}
.ls7{letter-spacing:0.001952px;}
.ls12{letter-spacing:0.002074px;}
.lsb{letter-spacing:1.275394px;}
.ls3{letter-spacing:1.861130px;}
.ls4{letter-spacing:10.461300px;}
.ls9{letter-spacing:11.954850px;}
.ls11{letter-spacing:13.446566px;}
.ls10{letter-spacing:13.450800px;}
.lse{letter-spacing:13.454400px;}
.lsf{letter-spacing:13.611129px;}
.ls1{letter-spacing:14.944200px;}
.ls0{letter-spacing:57.415200px;}
.ls6{letter-spacing:62.761200px;}
.ls8{letter-spacing:64.321654px;}
.ls2{letter-spacing:72.355200px;}
.lsc{letter-spacing:2680.289700px;}
.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;}
}
.ws4c{word-spacing:-14.943900px;}
.ws59{word-spacing:-13.449600px;}
.ws1b{word-spacing:-10.460700px;}
.ws1e{word-spacing:-2.929004px;}
.ws3f{word-spacing:-2.809453px;}
.ws3c{word-spacing:-2.151922px;}
.ws4f{word-spacing:-2.032370px;}
.ws7{word-spacing:-1.908367px;}
.ws6{word-spacing:-1.322630px;}
.ws4a{word-spacing:-0.956410px;}
.ws47{word-spacing:-0.896634px;}
.ws3d{word-spacing:-0.836858px;}
.wsc{word-spacing:-0.795013px;}
.ws20{word-spacing:-0.298878px;}
.ws24{word-spacing:-0.239102px;}
.ws35{word-spacing:-0.179327px;}
.ws50{word-spacing:-0.119551px;}
.ws0{word-spacing:-0.107597px;}
.ws1f{word-spacing:-0.059776px;}
.ws58{word-spacing:-0.053798px;}
.ws1c{word-spacing:-0.047821px;}
.ws4{word-spacing:-0.045430px;}
.wsa{word-spacing:-0.041843px;}
.ws55{word-spacing:-0.028550px;}
.ws5a{word-spacing:-0.023798px;}
.ws9{word-spacing:0.000000px;}
.ws62{word-spacing:0.053798px;}
.ws32{word-spacing:0.059776px;}
.ws42{word-spacing:0.107597px;}
.ws2b{word-spacing:0.119551px;}
.ws5f{word-spacing:0.161395px;}
.ws37{word-spacing:0.179327px;}
.ws11{word-spacing:0.209214px;}
.ws5b{word-spacing:0.215194px;}
.ws34{word-spacing:0.239102px;}
.ws61{word-spacing:0.268992px;}
.ws13{word-spacing:0.292900px;}
.ws21{word-spacing:0.358654px;}
.ws30{word-spacing:0.597756px;}
.ws4e{word-spacing:0.657532px;}
.ws2d{word-spacing:0.836858px;}
.wsb{word-spacing:1.715555px;}
.ws12{word-spacing:2.008454px;}
.ws53{word-spacing:2.092146px;}
.ws2c{word-spacing:2.151922px;}
.ws48{word-spacing:2.450800px;}
.wsd{word-spacing:2.527958px;}
.ws4b{word-spacing:2.570351px;}
.ws43{word-spacing:2.582323px;}
.ws22{word-spacing:2.689902px;}
.ws3e{word-spacing:2.749678px;}
.ws45{word-spacing:2.809453px;}
.ws1d{word-spacing:2.869236px;}
.ws5c{word-spacing:3.225888px;}
.ws60{word-spacing:3.227904px;}
.ws5e{word-spacing:3.550694px;}
.ws2a{word-spacing:3.646312px;}
.ws38{word-spacing:3.706087px;}
.ws2e{word-spacing:3.825638px;}
.ws33{word-spacing:4.004965px;}
.ws27{word-spacing:4.244068px;}
.ws29{word-spacing:4.303843px;}
.ws2f{word-spacing:4.423394px;}
.ws25{word-spacing:4.483170px;}
.ws36{word-spacing:4.542946px;}
.ws3a{word-spacing:4.662497px;}
.ws26{word-spacing:5.021150px;}
.ws51{word-spacing:5.080926px;}
.ws4d{word-spacing:5.439580px;}
.ws31{word-spacing:5.738458px;}
.ws19{word-spacing:6.067206px;}
.ws1a{word-spacing:6.150892px;}
.ws46{word-spacing:6.455765px;}
.ws40{word-spacing:6.515540px;}
.ws17{word-spacing:8.661460px;}
.ws3b{word-spacing:9.265218px;}
.wse{word-spacing:10.417308px;}
.ws10{word-spacing:10.628071px;}
.ws39{word-spacing:11.904966px;}
.ws57{word-spacing:13.392106px;}
.ws5d{word-spacing:13.394179px;}
.ws41{word-spacing:13.395802px;}
.ws23{word-spacing:14.619368px;}
.ws52{word-spacing:14.877516px;}
.ws3{word-spacing:14.882958px;}
.ws5{word-spacing:14.884124px;}
.wsf{word-spacing:15.481836px;}
.ws15{word-spacing:16.151321px;}
.ws54{word-spacing:16.997751px;}
.ws49{word-spacing:17.338928px;}
.ws44{word-spacing:17.662457px;}
.ws16{word-spacing:17.699504px;}
.ws28{word-spacing:19.162457px;}
.ws1{word-spacing:20.120602px;}
.ws2{word-spacing:23.886490px;}
.ws8{word-spacing:25.902398px;}
.ws14{word-spacing:26.561110px;}
.ws18{word-spacing:27.448877px;}
.ws56{word-spacing:75.317760px;}
._3{margin-left:-13.664794px;}
._5{margin-left:-6.658238px;}
._0{margin-left:-5.379840px;}
._7{margin-left:-3.849538px;}
._b{margin-left:-2.630133px;}
._2{margin-left:-1.613952px;}
._6{width:1.091170px;}
._4{width:2.999520px;}
._8{width:12.971268px;}
._9{width:14.270640px;}
._15{width:15.709133px;}
._d{width:17.306681px;}
._c{width:19.096805px;}
._f{width:20.407390px;}
._11{width:22.057196px;}
._14{width:23.940288px;}
._e{width:25.547328px;}
._1{width:26.571754px;}
._12{width:31.083312px;}
._a{width:32.637384px;}
._16{width:34.908961px;}
._10{width:36.247160px;}
._17{width:38.136844px;}
._18{width:88.767360px;}
._13{width:562.348655px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(12,11,11);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:41.936104px;}
.fs2{font-size:45.429600px;}
.fs3{font-size:47.236800px;}
.fs7{font-size:47.820600px;}
.fs8{font-size:53.798400px;}
.fs0{font-size:59.775600px;}
.fs1{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y7{bottom:3.425340px;}
.y6{bottom:14.151273px;}
.y4c{bottom:31.890000px;}
.y1e{bottom:102.823500px;}
.y6e{bottom:104.271000px;}
.y4b{bottom:105.699000px;}
.y1d{bottom:120.711000px;}
.y6d{bottom:123.100500px;}
.y4a{bottom:124.528500px;}
.y1c{bottom:138.600000px;}
.y6c{bottom:141.930000px;}
.y49{bottom:143.358000px;}
.y1b{bottom:156.487500px;}
.y6b{bottom:160.759500px;}
.y48{bottom:162.187500px;}
.y1a{bottom:174.375000px;}
.y6a{bottom:179.589000px;}
.y47{bottom:181.017000px;}
.y19{bottom:192.264000px;}
.y69{bottom:198.418500px;}
.y46{bottom:199.846500px;}
.y18{bottom:210.151500px;}
.y68{bottom:217.248000px;}
.y45{bottom:218.676000px;}
.y9d{bottom:223.012500px;}
.y17{bottom:228.039000px;}
.y67{bottom:236.077500px;}
.y44{bottom:237.505500px;}
.y9c{bottom:240.273000px;}
.y66{bottom:254.907000px;}
.y43{bottom:256.335000px;}
.y9b{bottom:257.533500px;}
.y65{bottom:273.736500px;}
.y9a{bottom:274.792500px;}
.y42{bottom:275.164500px;}
.y99{bottom:292.053000px;}
.y64{bottom:292.566000px;}
.y41{bottom:293.994000px;}
.y16{bottom:307.299000px;}
.y98{bottom:309.313500px;}
.y63{bottom:311.395500px;}
.y40{bottom:312.823500px;}
.y15{bottom:325.186500px;}
.y97{bottom:326.574000px;}
.y62{bottom:330.225000px;}
.y3f{bottom:331.653000px;}
.y14{bottom:343.074000px;}
.y96{bottom:343.834500px;}
.y61{bottom:349.054500px;}
.y3e{bottom:350.482500px;}
.y13{bottom:360.963000px;}
.y95{bottom:361.095000px;}
.y3d{bottom:369.312000px;}
.y94{bottom:378.355500px;}
.y60{bottom:382.620000px;}
.y3c{bottom:388.141500px;}
.y93{bottom:395.616000px;}
.y12{bottom:399.024000px;}
.y5f{bottom:401.853000px;}
.y3b{bottom:406.971000px;}
.y92{bottom:412.876500px;}
.y11{bottom:416.913000px;}
.y5e{bottom:421.086000px;}
.y3a{bottom:425.800500px;}
.y91{bottom:430.135500px;}
.y10{bottom:434.800500px;}
.y39{bottom:444.630000px;}
.y38{bottom:463.459500px;}
.y90{bottom:466.824000px;}
.yf{bottom:470.622000px;}
.y37{bottom:482.289000px;}
.y8f{bottom:484.084500px;}
.ye{bottom:488.509500px;}
.y36{bottom:501.118500px;}
.y8e{bottom:501.343500px;}
.yd{bottom:506.397000px;}
.y8d{bottom:518.604000px;}
.y35{bottom:519.946500px;}
.yc{bottom:524.286000px;}
.y8c{bottom:535.864500px;}
.y34{bottom:538.776000px;}
.yb{bottom:542.173500px;}
.y8b{bottom:553.125000px;}
.y33{bottom:557.605500px;}
.ya{bottom:560.061000px;}
.y8a{bottom:570.385500px;}
.y32{bottom:576.435000px;}
.y9{bottom:577.950000px;}
.y89{bottom:587.646000px;}
.y31{bottom:595.264500px;}
.y8{bottom:595.837500px;}
.y88{bottom:604.906500px;}
.y30{bottom:614.094000px;}
.y5{bottom:618.208464px;}
.y87{bottom:622.167000px;}
.y2f{bottom:632.923500px;}
.y86{bottom:639.427500px;}
.y2e{bottom:651.753000px;}
.y85{bottom:656.686500px;}
.y2d{bottom:670.582500px;}
.y2c{bottom:689.412000px;}
.y84{bottom:691.989000px;}
.y2b{bottom:708.241500px;}
.y83{bottom:709.249500px;}
.yb3{bottom:724.141500px;}
.y82{bottom:726.510000px;}
.y2a{bottom:727.071000px;}
.yb2{bottom:741.402000px;}
.y81{bottom:743.770500px;}
.y29{bottom:745.900500px;}
.yb1{bottom:758.662500px;}
.y80{bottom:761.031000px;}
.yb0{bottom:775.921500px;}
.y7f{bottom:778.290000px;}
.yaf{bottom:793.182000px;}
.y7e{bottom:795.550500px;}
.yae{bottom:810.442500px;}
.y7d{bottom:817.294500px;}
.y28{bottom:821.653500px;}
.y5d{bottom:824.886000px;}
.yad{bottom:827.703000px;}
.y27{bottom:837.792000px;}
.y5c{bottom:843.715500px;}
.yac{bottom:844.963500px;}
.y26{bottom:853.932000px;}
.y25{bottom:858.271500px;}
.y7c{bottom:859.885500px;}
.yab{bottom:862.224000px;}
.y5b{bottom:862.545000px;}
.y24{bottom:870.072000px;}
.y7b{bottom:878.715000px;}
.yaa{bottom:879.484500px;}
.y5a{bottom:881.374500px;}
.y23{bottom:890.551500px;}
.y7a{bottom:897.544500px;}
.y59{bottom:900.204000px;}
.y22{bottom:902.350500px;}
.y79{bottom:916.374000px;}
.ya9{bottom:917.665500px;}
.y58{bottom:919.033500px;}
.y21{bottom:922.830000px;}
.y20{bottom:934.629000px;}
.ya8{bottom:934.926000px;}
.y78{bottom:935.202000px;}
.y57{bottom:937.863000px;}
.ya7{bottom:952.186500px;}
.y77{bottom:954.031500px;}
.y1f{bottom:955.108500px;}
.y56{bottom:956.692500px;}
.ya6{bottom:969.447000px;}
.y76{bottom:972.861000px;}
.y55{bottom:975.522000px;}
.ya5{bottom:986.707500px;}
.y75{bottom:991.690500px;}
.y54{bottom:994.351500px;}
.y4{bottom:995.302500px;}
.ya4{bottom:1003.968000px;}
.y74{bottom:1010.520000px;}
.y53{bottom:1013.181000px;}
.ya3{bottom:1021.228500px;}
.y73{bottom:1029.349500px;}
.y52{bottom:1032.010500px;}
.ya2{bottom:1038.487500px;}
.y3{bottom:1041.199500px;}
.y72{bottom:1048.179000px;}
.y51{bottom:1050.840000px;}
.ya1{bottom:1055.748000px;}
.y71{bottom:1067.008500px;}
.y2{bottom:1069.443000px;}
.y50{bottom:1069.669500px;}
.ya0{bottom:1073.008500px;}
.y70{bottom:1085.838000px;}
.y4f{bottom:1088.499000px;}
.y9f{bottom:1090.269000px;}
.y1{bottom:1097.688000px;}
.y6f{bottom:1104.667500px;}
.y4e{bottom:1107.327000px;}
.y9e{bottom:1107.529500px;}
.y4d{bottom:1173.409500px;}
.h5{height:25.508090px;}
.ha{height:26.110157px;}
.h8{height:30.461558px;}
.h9{height:30.670772px;}
.h7{height:33.112997px;}
.h6{height:34.199443px;}
.hb{height:34.813397px;}
.hd{height:35.052500px;}
.he{height:38.734848px;}
.hf{height:39.165235px;}
.h11{height:39.434227px;}
.h12{height:40.026010px;}
.h10{height:43.038432px;}
.hc{height:43.516637px;}
.h2{height:43.815515px;}
.h4{height:54.405312px;}
.h3{height:77.469696px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:75.364879px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:29.274117px;}
.x1{left:53.536500px;}
.x14{left:86.272500px;}
.x5{left:249.832500px;}
.x3{left:250.897500px;}
.x17{left:261.022500px;}
.x4{left:271.221000px;}
.x6{left:282.786000px;}
.x13{left:308.116500px;}
.xf{left:500.869500px;}
.x10{left:508.341000px;}
.x15{left:583.608000px;}
.x16{left:610.507500px;}
.xd{left:641.583000px;}
.x9{left:643.696500px;}
.xe{left:649.054500px;}
.xa{left:651.168000px;}
.xb{left:654.972000px;}
.xc{left:662.443500px;}
.x7{left:779.962500px;}
.x8{left:787.435500px;}
.x11{left:825.169500px;}
.x12{left:832.642500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.lsa{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.000503pt;}
.ls5{letter-spacing:0.000533pt;}
.ls7{letter-spacing:0.001735pt;}
.ls12{letter-spacing:0.001843pt;}
.lsb{letter-spacing:1.133683pt;}
.ls3{letter-spacing:1.654338pt;}
.ls4{letter-spacing:9.298933pt;}
.ls9{letter-spacing:10.626533pt;}
.ls11{letter-spacing:11.952503pt;}
.ls10{letter-spacing:11.956267pt;}
.lse{letter-spacing:11.959467pt;}
.lsf{letter-spacing:12.098781pt;}
.ls1{letter-spacing:13.283733pt;}
.ls0{letter-spacing:51.035733pt;}
.ls6{letter-spacing:55.787733pt;}
.ls8{letter-spacing:57.174803pt;}
.ls2{letter-spacing:64.315733pt;}
.lsc{letter-spacing:2382.479733pt;}
.ws4c{word-spacing:-13.283467pt;}
.ws59{word-spacing:-11.955200pt;}
.ws1b{word-spacing:-9.298400pt;}
.ws1e{word-spacing:-2.603559pt;}
.ws3f{word-spacing:-2.497292pt;}
.ws3c{word-spacing:-1.912819pt;}
.ws4f{word-spacing:-1.806551pt;}
.ws7{word-spacing:-1.696326pt;}
.ws6{word-spacing:-1.175671pt;}
.ws4a{word-spacing:-0.850142pt;}
.ws47{word-spacing:-0.797008pt;}
.ws3d{word-spacing:-0.743874pt;}
.wsc{word-spacing:-0.706678pt;}
.ws20{word-spacing:-0.265669pt;}
.ws24{word-spacing:-0.212535pt;}
.ws35{word-spacing:-0.159402pt;}
.ws50{word-spacing:-0.106268pt;}
.ws0{word-spacing:-0.095642pt;}
.ws1f{word-spacing:-0.053134pt;}
.ws58{word-spacing:-0.047821pt;}
.ws1c{word-spacing:-0.042507pt;}
.ws4{word-spacing:-0.040382pt;}
.wsa{word-spacing:-0.037194pt;}
.ws55{word-spacing:-0.025378pt;}
.ws5a{word-spacing:-0.021154pt;}
.ws9{word-spacing:0.000000pt;}
.ws62{word-spacing:0.047821pt;}
.ws32{word-spacing:0.053134pt;}
.ws42{word-spacing:0.095642pt;}
.ws2b{word-spacing:0.106268pt;}
.ws5f{word-spacing:0.143462pt;}
.ws37{word-spacing:0.159402pt;}
.ws11{word-spacing:0.185968pt;}
.ws5b{word-spacing:0.191283pt;}
.ws34{word-spacing:0.212535pt;}
.ws61{word-spacing:0.239104pt;}
.ws13{word-spacing:0.260355pt;}
.ws21{word-spacing:0.318803pt;}
.ws30{word-spacing:0.531339pt;}
.ws4e{word-spacing:0.584473pt;}
.ws2d{word-spacing:0.743874pt;}
.wsb{word-spacing:1.524938pt;}
.ws12{word-spacing:1.785293pt;}
.ws53{word-spacing:1.859685pt;}
.ws2c{word-spacing:1.912819pt;}
.ws48{word-spacing:2.178489pt;}
.wsd{word-spacing:2.247074pt;}
.ws4b{word-spacing:2.284756pt;}
.ws43{word-spacing:2.295398pt;}
.ws22{word-spacing:2.391024pt;}
.ws3e{word-spacing:2.444158pt;}
.ws45{word-spacing:2.497292pt;}
.ws1d{word-spacing:2.550432pt;}
.ws5c{word-spacing:2.867456pt;}
.ws60{word-spacing:2.869248pt;}
.ws5e{word-spacing:3.156173pt;}
.ws2a{word-spacing:3.241166pt;}
.ws38{word-spacing:3.294300pt;}
.ws2e{word-spacing:3.400567pt;}
.ws33{word-spacing:3.559969pt;}
.ws27{word-spacing:3.772505pt;}
.ws29{word-spacing:3.825638pt;}
.ws2f{word-spacing:3.931906pt;}
.ws25{word-spacing:3.985040pt;}
.ws36{word-spacing:4.038174pt;}
.ws3a{word-spacing:4.144442pt;}
.ws26{word-spacing:4.463245pt;}
.ws51{word-spacing:4.516379pt;}
.ws4d{word-spacing:4.835182pt;}
.ws31{word-spacing:5.100851pt;}
.ws19{word-spacing:5.393072pt;}
.ws1a{word-spacing:5.467459pt;}
.ws46{word-spacing:5.738458pt;}
.ws40{word-spacing:5.791591pt;}
.ws17{word-spacing:7.699075pt;}
.ws3b{word-spacing:8.235749pt;}
.wse{word-spacing:9.259829pt;}
.ws10{word-spacing:9.447174pt;}
.ws39{word-spacing:10.582192pt;}
.ws57{word-spacing:11.904094pt;}
.ws5d{word-spacing:11.905937pt;}
.ws41{word-spacing:11.907379pt;}
.ws23{word-spacing:12.994994pt;}
.ws52{word-spacing:13.224459pt;}
.ws3{word-spacing:13.229296pt;}
.ws5{word-spacing:13.230333pt;}
.wsf{word-spacing:13.761632pt;}
.ws15{word-spacing:14.356730pt;}
.ws54{word-spacing:15.109112pt;}
.ws49{word-spacing:15.412380pt;}
.ws44{word-spacing:15.699962pt;}
.ws16{word-spacing:15.732893pt;}
.ws28{word-spacing:17.033295pt;}
.ws1{word-spacing:17.884979pt;}
.ws2{word-spacing:21.232435pt;}
.ws8{word-spacing:23.024354pt;}
.ws14{word-spacing:23.609875pt;}
.ws18{word-spacing:24.399002pt;}
.ws56{word-spacing:66.949120pt;}
._3{margin-left:-12.146483pt;}
._5{margin-left:-5.918434pt;}
._0{margin-left:-4.782080pt;}
._7{margin-left:-3.421811pt;}
._b{margin-left:-2.337896pt;}
._2{margin-left:-1.434624pt;}
._6{width:0.969929pt;}
._4{width:2.666240pt;}
._8{width:11.530016pt;}
._9{width:12.685013pt;}
._15{width:13.963674pt;}
._d{width:15.383716pt;}
._c{width:16.974938pt;}
._f{width:18.139902pt;}
._11{width:19.606397pt;}
._14{width:21.280256pt;}
._e{width:22.708736pt;}
._1{width:23.619337pt;}
._12{width:27.629611pt;}
._a{width:29.011008pt;}
._16{width:31.030188pt;}
._10{width:32.219698pt;}
._17{width:33.899417pt;}
._18{width:78.904320pt;}
._13{width:499.865471pt;}
.fs6{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.276537pt;}
.fs2{font-size:40.381867pt;}
.fs3{font-size:41.988267pt;}
.fs7{font-size:42.507200pt;}
.fs8{font-size:47.820800pt;}
.fs0{font-size:53.133867pt;}
.fs1{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:3.044747pt;}
.y6{bottom:12.578910pt;}
.y4c{bottom:28.346667pt;}
.y1e{bottom:91.398667pt;}
.y6e{bottom:92.685333pt;}
.y4b{bottom:93.954667pt;}
.y1d{bottom:107.298667pt;}
.y6d{bottom:109.422667pt;}
.y4a{bottom:110.692000pt;}
.y1c{bottom:123.200000pt;}
.y6c{bottom:126.160000pt;}
.y49{bottom:127.429333pt;}
.y1b{bottom:139.100000pt;}
.y6b{bottom:142.897333pt;}
.y48{bottom:144.166667pt;}
.y1a{bottom:155.000000pt;}
.y6a{bottom:159.634667pt;}
.y47{bottom:160.904000pt;}
.y19{bottom:170.901333pt;}
.y69{bottom:176.372000pt;}
.y46{bottom:177.641333pt;}
.y18{bottom:186.801333pt;}
.y68{bottom:193.109333pt;}
.y45{bottom:194.378667pt;}
.y9d{bottom:198.233333pt;}
.y17{bottom:202.701333pt;}
.y67{bottom:209.846667pt;}
.y44{bottom:211.116000pt;}
.y9c{bottom:213.576000pt;}
.y66{bottom:226.584000pt;}
.y43{bottom:227.853333pt;}
.y9b{bottom:228.918667pt;}
.y65{bottom:243.321333pt;}
.y9a{bottom:244.260000pt;}
.y42{bottom:244.590667pt;}
.y99{bottom:259.602667pt;}
.y64{bottom:260.058667pt;}
.y41{bottom:261.328000pt;}
.y16{bottom:273.154667pt;}
.y98{bottom:274.945333pt;}
.y63{bottom:276.796000pt;}
.y40{bottom:278.065333pt;}
.y15{bottom:289.054667pt;}
.y97{bottom:290.288000pt;}
.y62{bottom:293.533333pt;}
.y3f{bottom:294.802667pt;}
.y14{bottom:304.954667pt;}
.y96{bottom:305.630667pt;}
.y61{bottom:310.270667pt;}
.y3e{bottom:311.540000pt;}
.y13{bottom:320.856000pt;}
.y95{bottom:320.973333pt;}
.y3d{bottom:328.277333pt;}
.y94{bottom:336.316000pt;}
.y60{bottom:340.106667pt;}
.y3c{bottom:345.014667pt;}
.y93{bottom:351.658667pt;}
.y12{bottom:354.688000pt;}
.y5f{bottom:357.202667pt;}
.y3b{bottom:361.752000pt;}
.y92{bottom:367.001333pt;}
.y11{bottom:370.589333pt;}
.y5e{bottom:374.298667pt;}
.y3a{bottom:378.489333pt;}
.y91{bottom:382.342667pt;}
.y10{bottom:386.489333pt;}
.y39{bottom:395.226667pt;}
.y38{bottom:411.964000pt;}
.y90{bottom:414.954667pt;}
.yf{bottom:418.330667pt;}
.y37{bottom:428.701333pt;}
.y8f{bottom:430.297333pt;}
.ye{bottom:434.230667pt;}
.y36{bottom:445.438667pt;}
.y8e{bottom:445.638667pt;}
.yd{bottom:450.130667pt;}
.y8d{bottom:460.981333pt;}
.y35{bottom:462.174667pt;}
.yc{bottom:466.032000pt;}
.y8c{bottom:476.324000pt;}
.y34{bottom:478.912000pt;}
.yb{bottom:481.932000pt;}
.y8b{bottom:491.666667pt;}
.y33{bottom:495.649333pt;}
.ya{bottom:497.832000pt;}
.y8a{bottom:507.009333pt;}
.y32{bottom:512.386667pt;}
.y9{bottom:513.733333pt;}
.y89{bottom:522.352000pt;}
.y31{bottom:529.124000pt;}
.y8{bottom:529.633333pt;}
.y88{bottom:537.694667pt;}
.y30{bottom:545.861333pt;}
.y5{bottom:549.518634pt;}
.y87{bottom:553.037333pt;}
.y2f{bottom:562.598667pt;}
.y86{bottom:568.380000pt;}
.y2e{bottom:579.336000pt;}
.y85{bottom:583.721333pt;}
.y2d{bottom:596.073333pt;}
.y2c{bottom:612.810667pt;}
.y84{bottom:615.101333pt;}
.y2b{bottom:629.548000pt;}
.y83{bottom:630.444000pt;}
.yb3{bottom:643.681333pt;}
.y82{bottom:645.786667pt;}
.y2a{bottom:646.285333pt;}
.yb2{bottom:659.024000pt;}
.y81{bottom:661.129333pt;}
.y29{bottom:663.022667pt;}
.yb1{bottom:674.366667pt;}
.y80{bottom:676.472000pt;}
.yb0{bottom:689.708000pt;}
.y7f{bottom:691.813333pt;}
.yaf{bottom:705.050667pt;}
.y7e{bottom:707.156000pt;}
.yae{bottom:720.393333pt;}
.y7d{bottom:726.484000pt;}
.y28{bottom:730.358667pt;}
.y5d{bottom:733.232000pt;}
.yad{bottom:735.736000pt;}
.y27{bottom:744.704000pt;}
.y5c{bottom:749.969333pt;}
.yac{bottom:751.078667pt;}
.y26{bottom:759.050667pt;}
.y25{bottom:762.908000pt;}
.y7c{bottom:764.342667pt;}
.yab{bottom:766.421333pt;}
.y5b{bottom:766.706667pt;}
.y24{bottom:773.397333pt;}
.y7b{bottom:781.080000pt;}
.yaa{bottom:781.764000pt;}
.y5a{bottom:783.444000pt;}
.y23{bottom:791.601333pt;}
.y7a{bottom:797.817333pt;}
.y59{bottom:800.181333pt;}
.y22{bottom:802.089333pt;}
.y79{bottom:814.554667pt;}
.ya9{bottom:815.702667pt;}
.y58{bottom:816.918667pt;}
.y21{bottom:820.293333pt;}
.y20{bottom:830.781333pt;}
.ya8{bottom:831.045333pt;}
.y78{bottom:831.290667pt;}
.y57{bottom:833.656000pt;}
.ya7{bottom:846.388000pt;}
.y77{bottom:848.028000pt;}
.y1f{bottom:848.985333pt;}
.y56{bottom:850.393333pt;}
.ya6{bottom:861.730667pt;}
.y76{bottom:864.765333pt;}
.y55{bottom:867.130667pt;}
.ya5{bottom:877.073333pt;}
.y75{bottom:881.502667pt;}
.y54{bottom:883.868000pt;}
.y4{bottom:884.713333pt;}
.ya4{bottom:892.416000pt;}
.y74{bottom:898.240000pt;}
.y53{bottom:900.605333pt;}
.ya3{bottom:907.758667pt;}
.y73{bottom:914.977333pt;}
.y52{bottom:917.342667pt;}
.ya2{bottom:923.100000pt;}
.y3{bottom:925.510667pt;}
.y72{bottom:931.714667pt;}
.y51{bottom:934.080000pt;}
.ya1{bottom:938.442667pt;}
.y71{bottom:948.452000pt;}
.y2{bottom:950.616000pt;}
.y50{bottom:950.817333pt;}
.ya0{bottom:953.785333pt;}
.y70{bottom:965.189333pt;}
.y4f{bottom:967.554667pt;}
.y9f{bottom:969.128000pt;}
.y1{bottom:975.722667pt;}
.y6f{bottom:981.926667pt;}
.y4e{bottom:984.290667pt;}
.y9e{bottom:984.470667pt;}
.y4d{bottom:1043.030667pt;}
.h5{height:22.673858pt;}
.ha{height:23.209028pt;}
.h8{height:27.076941pt;}
.h9{height:27.262909pt;}
.h7{height:29.433775pt;}
.h6{height:30.399505pt;}
.hb{height:30.945242pt;}
.hd{height:31.157778pt;}
.he{height:34.430976pt;}
.hf{height:34.813542pt;}
.h11{height:35.052646pt;}
.h12{height:35.578675pt;}
.h10{height:38.256384pt;}
.hc{height:38.681455pt;}
.h2{height:38.947124pt;}
.h4{height:48.360277pt;}
.h3{height:68.861952pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:66.991004pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:26.021437pt;}
.x1{left:47.588000pt;}
.x14{left:76.686667pt;}
.x5{left:222.073333pt;}
.x3{left:223.020000pt;}
.x17{left:232.020000pt;}
.x4{left:241.085333pt;}
.x6{left:251.365333pt;}
.x13{left:273.881333pt;}
.xf{left:445.217333pt;}
.x10{left:451.858667pt;}
.x15{left:518.762667pt;}
.x16{left:542.673333pt;}
.xd{left:570.296000pt;}
.x9{left:572.174667pt;}
.xe{left:576.937333pt;}
.xa{left:578.816000pt;}
.xb{left:582.197333pt;}
.xc{left:588.838667pt;}
.x7{left:693.300000pt;}
.x8{left:699.942667pt;}
.x11{left:733.484000pt;}
.x12{left:740.126667pt;}
}




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