
    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_79f07c29bae27313ba55a31c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.936000;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_0f68af8b136052947ed78b5b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.057000;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_d9f8ac1dd2a1c3fed8ac4d5a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.058000;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_a4656ac74e37e8ea70600153.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.710000;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_7be3ce16cb83b395390c3cc2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.946000;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_80efaafc6933403f7f0642d2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.058000;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);}
.m21{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);}
.m23{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);}
.m1d{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);}
.m7{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m19{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);}
.m8{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);}
.m15{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);}
.m6{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);}
.md{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);}
.m22{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);}
.m1c{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);}
.m16{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);}
.m1a{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);}
.ma{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);}
.m2{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);}
.m12{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);}
.mb{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);}
.m13{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m24{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);}
.me{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);}
.m1f{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1b{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);}
.m4{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);}
.m1e{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m9{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);}
.m17{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);}
.m14{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);}
.m10{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);}
.m11{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);}
.m20{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);}
.m18{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);}
.m5{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);}
.mf{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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:11.955150px;}
.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;}
}
.ws22{word-spacing:-14.943900px;}
.ws4{word-spacing:-13.449600px;}
.ws3a{word-spacing:-11.955150px;}
.ws1c{word-spacing:-4.782048px;}
.ws33{word-spacing:-3.765863px;}
.ws23{word-spacing:-3.347434px;}
.ws1{word-spacing:-2.914050px;}
.wsa{word-spacing:-2.630126px;}
.ws15{word-spacing:-2.271473px;}
.ws17{word-spacing:-2.032370px;}
.ws2d{word-spacing:-1.554166px;}
.ws27{word-spacing:-1.374839px;}
.wsc{word-spacing:-1.315063px;}
.ws36{word-spacing:-1.255288px;}
.ws1f{word-spacing:-0.298878px;}
.ws10{word-spacing:-0.239102px;}
.ws6{word-spacing:-0.179327px;}
.wsd{word-spacing:-0.119551px;}
.ws5{word-spacing:-0.059776px;}
.ws11{word-spacing:-0.047821px;}
.ws0{word-spacing:0.000000px;}
.ws13{word-spacing:0.047821px;}
.wse{word-spacing:0.059776px;}
.ws8{word-spacing:0.119551px;}
.wsb{word-spacing:0.179327px;}
.ws9{word-spacing:0.239102px;}
.ws1a{word-spacing:0.298878px;}
.ws3{word-spacing:0.322790px;}
.ws31{word-spacing:0.358654px;}
.ws7{word-spacing:0.418429px;}
.ws30{word-spacing:0.597756px;}
.wsf{word-spacing:0.896634px;}
.ws1d{word-spacing:1.075961px;}
.ws35{word-spacing:1.195512px;}
.ws19{word-spacing:1.315063px;}
.ws1e{word-spacing:1.434614px;}
.ws21{word-spacing:1.494390px;}
.ws20{word-spacing:1.673717px;}
.ws2c{word-spacing:1.972595px;}
.ws26{word-spacing:2.092146px;}
.ws12{word-spacing:2.151927px;}
.ws2a{word-spacing:2.391024px;}
.ws38{word-spacing:2.570351px;}
.ws29{word-spacing:2.749678px;}
.ws2b{word-spacing:2.809453px;}
.ws2f{word-spacing:2.929004px;}
.ws25{word-spacing:3.048556px;}
.ws1b{word-spacing:3.168107px;}
.ws39{word-spacing:3.730007px;}
.ws2e{word-spacing:3.765863px;}
.ws37{word-spacing:3.825638px;}
.ws24{word-spacing:4.004965px;}
.ws28{word-spacing:4.423394px;}
.ws32{word-spacing:5.320028px;}
.ws34{word-spacing:6.276438px;}
.ws14{word-spacing:11.907329px;}
.ws2{word-spacing:13.395802px;}
.ws18{word-spacing:14.943900px;}
.ws16{word-spacing:44.831700px;}
._1{margin-left:-7.330915px;}
._7{margin-left:-6.133018px;}
._3{margin-left:-4.123640px;}
._5{margin-left:-2.966086px;}
._6{margin-left:-1.929569px;}
._2{width:1.990541px;}
._4{width:4.123640px;}
._10{width:12.654481px;}
._9{width:14.346144px;}
._0{width:16.363650px;}
._d{width:19.165273px;}
._b{width:21.818094px;}
._c{width:23.910240px;}
._f{width:29.887800px;}
._11{width:32.003050px;}
._8{width:59.775600px;}
._e{width:68.335637px;}
._a{width:623.274872px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs2{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.ydc{bottom:153.187500px;}
.y5f{bottom:154.291500px;}
.y84{bottom:155.785500px;}
.yad{bottom:158.611500px;}
.y30{bottom:167.659500px;}
.ydb{bottom:171.121500px;}
.y5e{bottom:172.224000px;}
.yac{bottom:176.544000px;}
.y83{bottom:178.201500px;}
.y2f{bottom:184.098000px;}
.yda{bottom:189.054000px;}
.y5d{bottom:190.156500px;}
.yab{bottom:194.478000px;}
.y2e{bottom:200.536500px;}
.y82{bottom:200.617500px;}
.yd9{bottom:206.986500px;}
.y5c{bottom:208.090500px;}
.yaa{bottom:212.410500px;}
.yf7{bottom:224.919000px;}
.y5b{bottom:226.023000px;}
.yd8{bottom:229.402500px;}
.ya9{bottom:230.343000px;}
.y81{bottom:238.575000px;}
.y5a{bottom:243.955500px;}
.yf6{bottom:247.335000px;}
.ya8{bottom:248.275500px;}
.yd7{bottom:251.818500px;}
.y80{bottom:256.509000px;}
.y2d{bottom:258.451500px;}
.y59{bottom:261.888000px;}
.ya7{bottom:266.208000px;}
.y2c{bottom:273.394500px;}
.y7f{bottom:274.441500px;}
.yf5{bottom:280.096500px;}
.ya6{bottom:284.140500px;}
.y58{bottom:284.304000px;}
.yd6{bottom:284.580000px;}
.y2b{bottom:288.339000px;}
.y7e{bottom:292.374000px;}
.yf4{bottom:298.029000px;}
.ya5{bottom:302.074500px;}
.yd5{bottom:302.512500px;}
.y2a{bottom:303.283500px;}
.y7d{bottom:314.790000px;}
.y114{bottom:315.387000px;}
.y57{bottom:319.273500px;}
.ya4{bottom:320.007000px;}
.yd4{bottom:320.445000px;}
.y29{bottom:329.512500px;}
.y113{bottom:330.331500px;}
.y56{bottom:337.206000px;}
.yd3{bottom:338.379000px;}
.ya3{bottom:342.423000px;}
.y28{bottom:347.445000px;}
.y112{bottom:349.758000px;}
.y7c{bottom:352.747500px;}
.yf3{bottom:353.208000px;}
.y55{bottom:355.138500px;}
.yd2{bottom:356.311500px;}
.ya2{bottom:364.839000px;}
.y27{bottom:365.377500px;}
.y7b{bottom:370.680000px;}
.yf2{bottom:371.140500px;}
.y54{bottom:373.071000px;}
.yd1{bottom:374.244000px;}
.y111{bottom:381.141000px;}
.y26{bottom:383.311500px;}
.y7a{bottom:388.612500px;}
.yf1{bottom:389.073000px;}
.yd0{bottom:392.176500px;}
.y53{bottom:395.487000px;}
.y110{bottom:399.073500px;}
.y25{bottom:401.244000px;}
.y79{bottom:406.545000px;}
.yf0{bottom:407.005500px;}
.ya1{bottom:408.447000px;}
.ycf{bottom:410.109000px;}
.y10f{bottom:417.006000px;}
.y52{bottom:417.903000px;}
.y24{bottom:419.176500px;}
.y78{bottom:424.479000px;}
.ya0{bottom:426.381000px;}
.yef{bottom:429.421500px;}
.yce{bottom:432.525000px;}
.y10e{bottom:434.938500px;}
.y23{bottom:437.109000px;}
.y9f{bottom:444.313500px;}
.y77{bottom:446.895000px;}
.yee{bottom:451.837500px;}
.y51{bottom:452.872500px;}
.y22{bottom:455.041500px;}
.y10d{bottom:457.354500px;}
.y9e{bottom:462.246000px;}
.ycd{bottom:465.286500px;}
.y50{bottom:470.805000px;}
.y21{bottom:472.974000px;}
.y9d{bottom:480.178500px;}
.ycc{bottom:483.219000px;}
.yed{bottom:484.599000px;}
.y76{bottom:484.852500px;}
.y4f{bottom:488.737500px;}
.y20{bottom:490.908000px;}
.y9c{bottom:498.111000px;}
.ycb{bottom:501.153000px;}
.yec{bottom:502.531500px;}
.y75{bottom:502.785000px;}
.y4e{bottom:506.670000px;}
.y1f{bottom:508.840500px;}
.y9b{bottom:516.043500px;}
.yca{bottom:519.085500px;}
.yeb{bottom:520.464000px;}
.y74{bottom:520.717500px;}
.y4d{bottom:524.602500px;}
.y1e{bottom:526.773000px;}
.yc9{bottom:537.018000px;}
.yea{bottom:538.398000px;}
.y9a{bottom:538.459500px;}
.y73{bottom:538.650000px;}
.y10b{bottom:542.535000px;}
.y10c{bottom:542.536500px;}
.y1d{bottom:544.705500px;}
.y4c{bottom:547.018500px;}
.ye9{bottom:556.330500px;}
.y72{bottom:556.582500px;}
.yc8{bottom:559.434000px;}
.y1c{bottom:562.638000px;}
.y10a{bottom:564.951000px;}
.ye8{bottom:574.263000px;}
.y71{bottom:578.998500px;}
.y1b{bottom:580.570500px;}
.y4b{bottom:581.988000px;}
.y99{bottom:582.069000px;}
.yc7{bottom:592.195500px;}
.y109{bottom:596.334000px;}
.y1a{bottom:598.504500px;}
.y4a{bottom:599.920500px;}
.y98{bottom:600.001500px;}
.yc6{bottom:610.128000px;}
.y108{bottom:614.266500px;}
.y19{bottom:616.437000px;}
.y70{bottom:616.956000px;}
.y49{bottom:617.853000px;}
.y97{bottom:622.417500px;}
.yc5{bottom:628.060500px;}
.y107{bottom:632.199000px;}
.ye7{bottom:632.544000px;}
.y18{bottom:634.369500px;}
.y6f{bottom:634.890000px;}
.y48{bottom:635.785500px;}
.yc4{bottom:645.994500px;}
.y17{bottom:652.302000px;}
.y6e{bottom:652.822500px;}
.y106{bottom:654.615000px;}
.y47{bottom:658.201500px;}
.yc3{bottom:663.927000px;}
.ye6{bottom:665.305500px;}
.y96{bottom:666.027000px;}
.y16{bottom:670.234500px;}
.y6d{bottom:670.755000px;}
.yc2{bottom:681.859500px;}
.ye5{bottom:683.239500px;}
.y95{bottom:683.959500px;}
.y105{bottom:685.998000px;}
.y15{bottom:688.167000px;}
.y46{bottom:693.171000px;}
.ye4{bottom:701.172000px;}
.y94{bottom:701.892000px;}
.y104{bottom:703.930500px;}
.yc1{bottom:704.275500px;}
.y14{bottom:706.101000px;}
.y45{bottom:711.103500px;}
.ye3{bottom:719.104500px;}
.y93{bottom:719.826000px;}
.y103{bottom:726.346500px;}
.y13{bottom:728.517000px;}
.y44{bottom:729.036000px;}
.y6c{bottom:731.128500px;}
.yc0{bottom:737.037000px;}
.y92{bottom:737.758500px;}
.y43{bottom:746.968500px;}
.y6b{bottom:753.544500px;}
.ybf{bottom:754.969500px;}
.y91{bottom:755.691000px;}
.y102{bottom:757.729500px;}
.y12{bottom:760.332000px;}
.y42{bottom:764.902500px;}
.ybe{bottom:772.902000px;}
.y90{bottom:773.623500px;}
.y101{bottom:775.662000px;}
.y11{bottom:778.264500px;}
.y41{bottom:787.318500px;}
.ybd{bottom:790.836000px;}
.y6a{bottom:791.502000px;}
.y8f{bottom:791.556000px;}
.ye2{bottom:795.318000px;}
.y10{bottom:796.197000px;}
.y100{bottom:798.078000px;}
.ybc{bottom:808.768500px;}
.y69{bottom:809.434500px;}
.y8e{bottom:809.488500px;}
.yf{bottom:814.129500px;}
.y40{bottom:822.286500px;}
.y68{bottom:827.367000px;}
.ye1{bottom:828.081000px;}
.yff{bottom:829.459500px;}
.ybb{bottom:831.184500px;}
.y8d{bottom:831.904500px;}
.ye{bottom:832.063500px;}
.y3f{bottom:840.219000px;}
.ye0{bottom:846.013500px;}
.yfe{bottom:847.392000px;}
.y67{bottom:849.783000px;}
.yd{bottom:854.479500px;}
.y3e{bottom:858.151500px;}
.yba{bottom:863.946000px;}
.yfd{bottom:865.326000px;}
.y8c{bottom:875.514000px;}
.y3d{bottom:880.567500px;}
.yb9{bottom:881.878500px;}
.yfc{bottom:883.258500px;}
.yc{bottom:886.785000px;}
.y66{bottom:887.740500px;}
.y8b{bottom:893.446500px;}
.yb8{bottom:899.811000px;}
.yfb{bottom:901.191000px;}
.yb{bottom:903.223500px;}
.y65{bottom:905.674500px;}
.y8a{bottom:911.380500px;}
.y3c{bottom:915.537000px;}
.yb7{bottom:917.743500px;}
.yfa{bottom:919.123500px;}
.ya{bottom:919.662000px;}
.y64{bottom:923.607000px;}
.y89{bottom:929.313000px;}
.y3b{bottom:933.469500px;}
.yb6{bottom:935.677500px;}
.y9{bottom:936.099000px;}
.yf9{bottom:937.056000px;}
.ydf{bottom:940.159500px;}
.y63{bottom:941.539500px;}
.y88{bottom:947.245500px;}
.yb5{bottom:953.610000px;}
.yf8{bottom:954.988500px;}
.y3a{bottom:955.885500px;}
.y62{bottom:959.472000px;}
.y87{bottom:965.178000px;}
.y8{bottom:969.697500px;}
.yde{bottom:972.922500px;}
.yb4{bottom:976.026000px;}
.y61{bottom:977.404500px;}
.y39{bottom:978.301500px;}
.y86{bottom:983.110500px;}
.y7{bottom:989.125500px;}
.ydd{bottom:990.855000px;}
.y60{bottom:995.338500px;}
.y85{bottom:1005.526500px;}
.y6{bottom:1008.552000px;}
.yb3{bottom:1008.787500px;}
.y38{bottom:1013.271000px;}
.yb2{bottom:1026.720000px;}
.y5{bottom:1027.980000px;}
.y37{bottom:1031.203500px;}
.yb1{bottom:1044.652500px;}
.y4{bottom:1047.406500px;}
.y36{bottom:1049.136000px;}
.yb0{bottom:1062.585000px;}
.y3{bottom:1066.834500px;}
.y35{bottom:1067.068500px;}
.yaf{bottom:1080.519000px;}
.y34{bottom:1085.001000px;}
.y2{bottom:1086.261000px;}
.yae{bottom:1098.451500px;}
.y33{bottom:1102.935000px;}
.y32{bottom:1120.867500px;}
.y1{bottom:1120.887000px;}
.y31{bottom:1161.216000px;}
.h9{height:33.856985px;}
.h4{height:37.658880px;}
.h8{height:39.212892px;}
.h6{height:41.723369px;}
.h5{height:44.114688px;}
.h7{height:49.015992px;}
.h3{height:53.672772px;}
.h2{height:60.081886px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:80.697000px;}
.x2{left:95.641500px;}
.x4{left:100.746000px;}
.x3{left:116.787000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:10.626800pt;}
.ws22{word-spacing:-13.283467pt;}
.ws4{word-spacing:-11.955200pt;}
.ws3a{word-spacing:-10.626800pt;}
.ws1c{word-spacing:-4.250709pt;}
.ws33{word-spacing:-3.347434pt;}
.ws23{word-spacing:-2.975497pt;}
.ws1{word-spacing:-2.590267pt;}
.wsa{word-spacing:-2.337890pt;}
.ws15{word-spacing:-2.019087pt;}
.ws17{word-spacing:-1.806551pt;}
.ws2d{word-spacing:-1.381481pt;}
.ws27{word-spacing:-1.222079pt;}
.wsc{word-spacing:-1.168945pt;}
.ws36{word-spacing:-1.115811pt;}
.ws1f{word-spacing:-0.265669pt;}
.ws10{word-spacing:-0.212535pt;}
.ws6{word-spacing:-0.159402pt;}
.wsd{word-spacing:-0.106268pt;}
.ws5{word-spacing:-0.053134pt;}
.ws11{word-spacing:-0.042507pt;}
.ws0{word-spacing:0.000000pt;}
.ws13{word-spacing:0.042507pt;}
.wse{word-spacing:0.053134pt;}
.ws8{word-spacing:0.106268pt;}
.wsb{word-spacing:0.159402pt;}
.ws9{word-spacing:0.212535pt;}
.ws1a{word-spacing:0.265669pt;}
.ws3{word-spacing:0.286925pt;}
.ws31{word-spacing:0.318803pt;}
.ws7{word-spacing:0.371937pt;}
.ws30{word-spacing:0.531339pt;}
.wsf{word-spacing:0.797008pt;}
.ws1d{word-spacing:0.956410pt;}
.ws35{word-spacing:1.062677pt;}
.ws19{word-spacing:1.168945pt;}
.ws1e{word-spacing:1.275213pt;}
.ws21{word-spacing:1.328347pt;}
.ws20{word-spacing:1.487748pt;}
.ws2c{word-spacing:1.753418pt;}
.ws26{word-spacing:1.859685pt;}
.ws12{word-spacing:1.912824pt;}
.ws2a{word-spacing:2.125355pt;}
.ws38{word-spacing:2.284756pt;}
.ws29{word-spacing:2.444158pt;}
.ws2b{word-spacing:2.497292pt;}
.ws2f{word-spacing:2.603559pt;}
.ws25{word-spacing:2.709827pt;}
.ws1b{word-spacing:2.816095pt;}
.ws39{word-spacing:3.315562pt;}
.ws2e{word-spacing:3.347434pt;}
.ws37{word-spacing:3.400567pt;}
.ws24{word-spacing:3.559969pt;}
.ws28{word-spacing:3.931906pt;}
.ws32{word-spacing:4.728914pt;}
.ws34{word-spacing:5.579056pt;}
.ws14{word-spacing:10.584293pt;}
.ws2{word-spacing:11.907379pt;}
.ws18{word-spacing:13.283467pt;}
.ws16{word-spacing:39.850400pt;}
._1{margin-left:-6.516369pt;}
._7{margin-left:-5.451571pt;}
._3{margin-left:-3.665458pt;}
._5{margin-left:-2.636521pt;}
._6{margin-left:-1.715172pt;}
._2{width:1.769370pt;}
._4{width:3.665458pt;}
._10{width:11.248428pt;}
._9{width:12.752128pt;}
._0{width:14.545467pt;}
._d{width:17.035798pt;}
._b{width:19.393861pt;}
._c{width:21.253547pt;}
._f{width:26.566933pt;}
._11{width:28.447155pt;}
._8{width:53.133867pt;}
._e{width:60.742789pt;}
._a{width:554.022109pt;}
.fs4{font-size:42.507200pt;}
.fs2{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.ydc{bottom:136.166667pt;}
.y5f{bottom:137.148000pt;}
.y84{bottom:138.476000pt;}
.yad{bottom:140.988000pt;}
.y30{bottom:149.030667pt;}
.ydb{bottom:152.108000pt;}
.y5e{bottom:153.088000pt;}
.yac{bottom:156.928000pt;}
.y83{bottom:158.401333pt;}
.y2f{bottom:163.642667pt;}
.yda{bottom:168.048000pt;}
.y5d{bottom:169.028000pt;}
.yab{bottom:172.869333pt;}
.y2e{bottom:178.254667pt;}
.y82{bottom:178.326667pt;}
.yd9{bottom:183.988000pt;}
.y5c{bottom:184.969333pt;}
.yaa{bottom:188.809333pt;}
.yf7{bottom:199.928000pt;}
.y5b{bottom:200.909333pt;}
.yd8{bottom:203.913333pt;}
.ya9{bottom:204.749333pt;}
.y81{bottom:212.066667pt;}
.y5a{bottom:216.849333pt;}
.yf6{bottom:219.853333pt;}
.ya8{bottom:220.689333pt;}
.yd7{bottom:223.838667pt;}
.y80{bottom:228.008000pt;}
.y2d{bottom:229.734667pt;}
.y59{bottom:232.789333pt;}
.ya7{bottom:236.629333pt;}
.y2c{bottom:243.017333pt;}
.y7f{bottom:243.948000pt;}
.yf5{bottom:248.974667pt;}
.ya6{bottom:252.569333pt;}
.y58{bottom:252.714667pt;}
.yd6{bottom:252.960000pt;}
.y2b{bottom:256.301333pt;}
.y7e{bottom:259.888000pt;}
.yf4{bottom:264.914667pt;}
.ya5{bottom:268.510667pt;}
.yd5{bottom:268.900000pt;}
.y2a{bottom:269.585333pt;}
.y7d{bottom:279.813333pt;}
.y114{bottom:280.344000pt;}
.y57{bottom:283.798667pt;}
.ya4{bottom:284.450667pt;}
.yd4{bottom:284.840000pt;}
.y29{bottom:292.900000pt;}
.y113{bottom:293.628000pt;}
.y56{bottom:299.738667pt;}
.yd3{bottom:300.781333pt;}
.ya3{bottom:304.376000pt;}
.y28{bottom:308.840000pt;}
.y112{bottom:310.896000pt;}
.y7c{bottom:313.553333pt;}
.yf3{bottom:313.962667pt;}
.y55{bottom:315.678667pt;}
.yd2{bottom:316.721333pt;}
.ya2{bottom:324.301333pt;}
.y27{bottom:324.780000pt;}
.y7b{bottom:329.493333pt;}
.yf2{bottom:329.902667pt;}
.y54{bottom:331.618667pt;}
.yd1{bottom:332.661333pt;}
.y111{bottom:338.792000pt;}
.y26{bottom:340.721333pt;}
.y7a{bottom:345.433333pt;}
.yf1{bottom:345.842667pt;}
.yd0{bottom:348.601333pt;}
.y53{bottom:351.544000pt;}
.y110{bottom:354.732000pt;}
.y25{bottom:356.661333pt;}
.y79{bottom:361.373333pt;}
.yf0{bottom:361.782667pt;}
.ya1{bottom:363.064000pt;}
.ycf{bottom:364.541333pt;}
.y10f{bottom:370.672000pt;}
.y52{bottom:371.469333pt;}
.y24{bottom:372.601333pt;}
.y78{bottom:377.314667pt;}
.ya0{bottom:379.005333pt;}
.yef{bottom:381.708000pt;}
.yce{bottom:384.466667pt;}
.y10e{bottom:386.612000pt;}
.y23{bottom:388.541333pt;}
.y9f{bottom:394.945333pt;}
.y77{bottom:397.240000pt;}
.yee{bottom:401.633333pt;}
.y51{bottom:402.553333pt;}
.y22{bottom:404.481333pt;}
.y10d{bottom:406.537333pt;}
.y9e{bottom:410.885333pt;}
.ycd{bottom:413.588000pt;}
.y50{bottom:418.493333pt;}
.y21{bottom:420.421333pt;}
.y9d{bottom:426.825333pt;}
.ycc{bottom:429.528000pt;}
.yed{bottom:430.754667pt;}
.y76{bottom:430.980000pt;}
.y4f{bottom:434.433333pt;}
.y20{bottom:436.362667pt;}
.y9c{bottom:442.765333pt;}
.ycb{bottom:445.469333pt;}
.yec{bottom:446.694667pt;}
.y75{bottom:446.920000pt;}
.y4e{bottom:450.373333pt;}
.y1f{bottom:452.302667pt;}
.y9b{bottom:458.705333pt;}
.yca{bottom:461.409333pt;}
.yeb{bottom:462.634667pt;}
.y74{bottom:462.860000pt;}
.y4d{bottom:466.313333pt;}
.y1e{bottom:468.242667pt;}
.yc9{bottom:477.349333pt;}
.yea{bottom:478.576000pt;}
.y9a{bottom:478.630667pt;}
.y73{bottom:478.800000pt;}
.y10b{bottom:482.253333pt;}
.y10c{bottom:482.254667pt;}
.y1d{bottom:484.182667pt;}
.y4c{bottom:486.238667pt;}
.ye9{bottom:494.516000pt;}
.y72{bottom:494.740000pt;}
.yc8{bottom:497.274667pt;}
.y1c{bottom:500.122667pt;}
.y10a{bottom:502.178667pt;}
.ye8{bottom:510.456000pt;}
.y71{bottom:514.665333pt;}
.y1b{bottom:516.062667pt;}
.y4b{bottom:517.322667pt;}
.y99{bottom:517.394667pt;}
.yc7{bottom:526.396000pt;}
.y109{bottom:530.074667pt;}
.y1a{bottom:532.004000pt;}
.y4a{bottom:533.262667pt;}
.y98{bottom:533.334667pt;}
.yc6{bottom:542.336000pt;}
.y108{bottom:546.014667pt;}
.y19{bottom:547.944000pt;}
.y70{bottom:548.405333pt;}
.y49{bottom:549.202667pt;}
.y97{bottom:553.260000pt;}
.yc5{bottom:558.276000pt;}
.y107{bottom:561.954667pt;}
.ye7{bottom:562.261333pt;}
.y18{bottom:563.884000pt;}
.y6f{bottom:564.346667pt;}
.y48{bottom:565.142667pt;}
.yc4{bottom:574.217333pt;}
.y17{bottom:579.824000pt;}
.y6e{bottom:580.286667pt;}
.y106{bottom:581.880000pt;}
.y47{bottom:585.068000pt;}
.yc3{bottom:590.157333pt;}
.ye6{bottom:591.382667pt;}
.y96{bottom:592.024000pt;}
.y16{bottom:595.764000pt;}
.y6d{bottom:596.226667pt;}
.yc2{bottom:606.097333pt;}
.ye5{bottom:607.324000pt;}
.y95{bottom:607.964000pt;}
.y105{bottom:609.776000pt;}
.y15{bottom:611.704000pt;}
.y46{bottom:616.152000pt;}
.ye4{bottom:623.264000pt;}
.y94{bottom:623.904000pt;}
.y104{bottom:625.716000pt;}
.yc1{bottom:626.022667pt;}
.y14{bottom:627.645333pt;}
.y45{bottom:632.092000pt;}
.ye3{bottom:639.204000pt;}
.y93{bottom:639.845333pt;}
.y103{bottom:645.641333pt;}
.y13{bottom:647.570667pt;}
.y44{bottom:648.032000pt;}
.y6c{bottom:649.892000pt;}
.yc0{bottom:655.144000pt;}
.y92{bottom:655.785333pt;}
.y43{bottom:663.972000pt;}
.y6b{bottom:669.817333pt;}
.ybf{bottom:671.084000pt;}
.y91{bottom:671.725333pt;}
.y102{bottom:673.537333pt;}
.y12{bottom:675.850667pt;}
.y42{bottom:679.913333pt;}
.ybe{bottom:687.024000pt;}
.y90{bottom:687.665333pt;}
.y101{bottom:689.477333pt;}
.y11{bottom:691.790667pt;}
.y41{bottom:699.838667pt;}
.ybd{bottom:702.965333pt;}
.y6a{bottom:703.557333pt;}
.y8f{bottom:703.605333pt;}
.ye2{bottom:706.949333pt;}
.y10{bottom:707.730667pt;}
.y100{bottom:709.402667pt;}
.ybc{bottom:718.905333pt;}
.y69{bottom:719.497333pt;}
.y8e{bottom:719.545333pt;}
.yf{bottom:723.670667pt;}
.y40{bottom:730.921333pt;}
.y68{bottom:735.437333pt;}
.ye1{bottom:736.072000pt;}
.yff{bottom:737.297333pt;}
.ybb{bottom:738.830667pt;}
.y8d{bottom:739.470667pt;}
.ye{bottom:739.612000pt;}
.y3f{bottom:746.861333pt;}
.ye0{bottom:752.012000pt;}
.yfe{bottom:753.237333pt;}
.y67{bottom:755.362667pt;}
.yd{bottom:759.537333pt;}
.y3e{bottom:762.801333pt;}
.yba{bottom:767.952000pt;}
.yfd{bottom:769.178667pt;}
.y8c{bottom:778.234667pt;}
.y3d{bottom:782.726667pt;}
.yb9{bottom:783.892000pt;}
.yfc{bottom:785.118667pt;}
.yc{bottom:788.253333pt;}
.y66{bottom:789.102667pt;}
.y8b{bottom:794.174667pt;}
.yb8{bottom:799.832000pt;}
.yfb{bottom:801.058667pt;}
.yb{bottom:802.865333pt;}
.y65{bottom:805.044000pt;}
.y8a{bottom:810.116000pt;}
.y3c{bottom:813.810667pt;}
.yb7{bottom:815.772000pt;}
.yfa{bottom:816.998667pt;}
.ya{bottom:817.477333pt;}
.y64{bottom:820.984000pt;}
.y89{bottom:826.056000pt;}
.y3b{bottom:829.750667pt;}
.yb6{bottom:831.713333pt;}
.y9{bottom:832.088000pt;}
.yf9{bottom:832.938667pt;}
.ydf{bottom:835.697333pt;}
.y63{bottom:836.924000pt;}
.y88{bottom:841.996000pt;}
.yb5{bottom:847.653333pt;}
.yf8{bottom:848.878667pt;}
.y3a{bottom:849.676000pt;}
.y62{bottom:852.864000pt;}
.y87{bottom:857.936000pt;}
.y8{bottom:861.953333pt;}
.yde{bottom:864.820000pt;}
.yb4{bottom:867.578667pt;}
.y61{bottom:868.804000pt;}
.y39{bottom:869.601333pt;}
.y86{bottom:873.876000pt;}
.y7{bottom:879.222667pt;}
.ydd{bottom:880.760000pt;}
.y60{bottom:884.745333pt;}
.y85{bottom:893.801333pt;}
.y6{bottom:896.490667pt;}
.yb3{bottom:896.700000pt;}
.y38{bottom:900.685333pt;}
.yb2{bottom:912.640000pt;}
.y5{bottom:913.760000pt;}
.y37{bottom:916.625333pt;}
.yb1{bottom:928.580000pt;}
.y4{bottom:931.028000pt;}
.y36{bottom:932.565333pt;}
.yb0{bottom:944.520000pt;}
.y3{bottom:948.297333pt;}
.y35{bottom:948.505333pt;}
.yaf{bottom:960.461333pt;}
.y34{bottom:964.445333pt;}
.y2{bottom:965.565333pt;}
.yae{bottom:976.401333pt;}
.y33{bottom:980.386667pt;}
.y32{bottom:996.326667pt;}
.y1{bottom:996.344000pt;}
.y31{bottom:1032.192000pt;}
.h9{height:30.095098pt;}
.h4{height:33.474560pt;}
.h8{height:34.855904pt;}
.h6{height:37.087439pt;}
.h5{height:39.213056pt;}
.h7{height:43.569771pt;}
.h3{height:47.709131pt;}
.h2{height:53.406121pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:71.730667pt;}
.x2{left:85.014667pt;}
.x4{left:89.552000pt;}
.x3{left:103.810667pt;}
}




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