
    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_f09ca15483991fbc6a9aa7ec.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.001000;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_21536cd8e034cf839ec7380c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.918000;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_4713a13dd13be4d0d35d4b89.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.001000;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_8f85cc982bea79ee3023cb54.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.704000;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_56498794b33aeaf0090ca1b0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_515ee755953cee51cd55497e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.899000;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_6f16550466fcf62edc7d184b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.697000;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_b6cad0c93e1d544c49b46db1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.919000;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_85fbc53d4e2023c1ec8f0a26.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.908000;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_7d94c8a71e6d089fb815de8d.woff2')format("woff");}.ffa{font-family:ffa;line-height:2.399000;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:ffb;src:url('chunks/assets/font_59cb9c5cd5ef1425ef9bfc06.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.727000;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;}
.ffc{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffd;src:url('chunks/assets/font_58036cdfb806fe9dad836122.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.046000;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;}
.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);}
.v1{vertical-align:-23.754000px;}
.v3{vertical-align:-10.764000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:20.718000px;}
.v2{vertical-align:23.754000px;}
.v8{vertical-align:26.028000px;}
.v9{vertical-align:29.616000px;}
.v6{vertical-align:37.764000px;}
.v5{vertical-align:48.528000px;}
.v4{vertical-align:101.142000px;}
.v7{vertical-align:150.348000px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000440px;}
.lse{letter-spacing:0.000472px;}
.lsf{letter-spacing:0.001114px;}
.ls1e{letter-spacing:0.001165px;}
.ls10{letter-spacing:0.001288px;}
.ls1c{letter-spacing:0.001473px;}
.ls21{letter-spacing:0.003056px;}
.lsb{letter-spacing:0.003894px;}
.ls16{letter-spacing:0.004381px;}
.ls8{letter-spacing:0.004664px;}
.ls5{letter-spacing:0.005587px;}
.ls2c{letter-spacing:0.006440px;}
.ls28{letter-spacing:1.015473px;}
.ls27{letter-spacing:1.018404px;}
.ls4{letter-spacing:2.579587px;}
.ls0{letter-spacing:2.984915px;}
.ls15{letter-spacing:2.990915px;}
.ls14{letter-spacing:11.950404px;}
.ls19{letter-spacing:11.953114px;}
.ls1d{letter-spacing:14.663566px;}
.ls7{letter-spacing:14.936915px;}
.ls2f{letter-spacing:15.924326px;}
.ls9{letter-spacing:15.934404px;}
.ls20{letter-spacing:15.937473px;}
.ls11{letter-spacing:15.943288px;}
.ls6{letter-spacing:19.919518px;}
.ls18{letter-spacing:19.921473px;}
.ls13{letter-spacing:19.924800px;}
.ls2b{letter-spacing:19.925518px;}
.ls24{letter-spacing:19.926764px;}
.lsd{letter-spacing:19.927473px;}
.ls12{letter-spacing:19.927586px;}
.ls30{letter-spacing:19.930454px;}
.ls17{letter-spacing:22.496450px;}
.ls2e{letter-spacing:23.407473px;}
.ls2d{letter-spacing:23.413473px;}
.ls1a{letter-spacing:24.191644px;}
.ls23{letter-spacing:25.429473px;}
.ls1f{letter-spacing:25.975473px;}
.ls1b{letter-spacing:26.340273px;}
.ls29{letter-spacing:26.396915px;}
.ls2a{letter-spacing:26.402915px;}
.ls22{letter-spacing:26.647288px;}
.ls31{letter-spacing:27.095518px;}
.ls1{letter-spacing:35.865600px;}
.ls25{letter-spacing:37.037518px;}
.lsa{letter-spacing:41.287473px;}
.ls26{letter-spacing:45.149518px;}
.ls32{letter-spacing:861.259200px;}
.lsc{letter-spacing:893.662664px;}
.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;}
}
.ws20{word-spacing:-45.664082px;}
.ws17{word-spacing:-41.101978px;}
.ws15{word-spacing:-36.152525px;}
.ws55{word-spacing:-35.435213px;}
.ws11{word-spacing:-34.000589px;}
.wse{word-spacing:-32.278875px;}
.ws13{word-spacing:-31.489997px;}
.ws63{word-spacing:-25.755383px;}
.ws5e{word-spacing:-22.416000px;}
.ws22{word-spacing:-19.510886px;}
.ws18{word-spacing:-19.439155px;}
.ws6c{word-spacing:-17.932800px;}
.ws2d{word-spacing:-3.586560px;}
.ws46{word-spacing:-3.578592px;}
.ws39{word-spacing:-3.578077px;}
.ws3f{word-spacing:-3.572077px;}
.ws4b{word-spacing:-3.568620px;}
.ws5a{word-spacing:-3.562620px;}
.ws45{word-spacing:-3.545126px;}
.ws43{word-spacing:-3.443098px;}
.ws3d{word-spacing:-1.376077px;}
.ws33{word-spacing:-1.291162px;}
.ws62{word-spacing:-0.430387px;}
.ws4{word-spacing:-0.065455px;}
.ws5{word-spacing:-0.047821px;}
.ws12{word-spacing:0.000000px;}
.ws69{word-spacing:0.286925px;}
.ws47{word-spacing:0.409204px;}
.ws4c{word-spacing:0.411923px;}
.ws5b{word-spacing:0.422976px;}
.ws31{word-spacing:0.430387px;}
.ws38{word-spacing:0.439795px;}
.ws60{word-spacing:0.860774px;}
.ws56{word-spacing:0.992400px;}
.ws4d{word-spacing:0.993600px;}
.ws29{word-spacing:1.362893px;}
.ws28{word-spacing:1.434624px;}
.ws9{word-spacing:1.453092px;}
.ws6d{word-spacing:1.578086px;}
.ws2a{word-spacing:2.797517px;}
.ws65{word-spacing:3.227904px;}
.ws2e{word-spacing:3.253711px;}
.ws26{word-spacing:3.801754px;}
.ws52{word-spacing:3.868963px;}
.ws14{word-spacing:3.873485px;}
.ws16{word-spacing:3.945216px;}
.ws7{word-spacing:4.333095px;}
.wsf{word-spacing:4.483200px;}
.ws2{word-spacing:4.648169px;}
.ws4f{word-spacing:4.734259px;}
.ws6a{word-spacing:4.805990px;}
.ws68{word-spacing:5.092915px;}
.ws42{word-spacing:5.138214px;}
.ws1b{word-spacing:5.379825px;}
.ws6{word-spacing:5.642187px;}
.ws2f{word-spacing:5.738496px;}
.ws61{word-spacing:5.810227px;}
.ws4e{word-spacing:6.168883px;}
.ws23{word-spacing:6.312346px;}
.ws1a{word-spacing:6.455775px;}
.ws8{word-spacing:6.493096px;}
.ws51{word-spacing:6.886195px;}
.ws3b{word-spacing:7.101389px;}
.ws3c{word-spacing:7.116522px;}
.ws6e{word-spacing:7.173120px;}
.ws32{word-spacing:7.460045px;}
.ws40{word-spacing:7.580834px;}
.ws0{word-spacing:7.748437px;}
.wsa{word-spacing:7.802188px;}
.ws6b{word-spacing:8.033894px;}
.wsb{word-spacing:8.064007px;}
.ws1f{word-spacing:8.392550px;}
.ws1{word-spacing:8.607720px;}
.ws25{word-spacing:8.966400px;}
.ws35{word-spacing:9.253325px;}
.ws30{word-spacing:10.042368px;}
.ws36{word-spacing:10.114099px;}
.wsc{word-spacing:10.289463px;}
.ws1e{word-spacing:10.705279px;}
.ws66{word-spacing:10.903142px;}
.ws27{word-spacing:11.190067px;}
.ws64{word-spacing:11.261798px;}
.ws5f{word-spacing:11.476992px;}
.ws37{word-spacing:11.692186px;}
.ws50{word-spacing:11.704986px;}
.ws1c{word-spacing:13.198541px;}
.ws3{word-spacing:14.413103px;}
.ws10{word-spacing:16.354714px;}
.ws2c{word-spacing:18.876010px;}
.ws59{word-spacing:18.903368px;}
.ws49{word-spacing:19.473654px;}
.ws53{word-spacing:22.850843px;}
.ws54{word-spacing:22.865528px;}
.ws58{word-spacing:22.866701px;}
.ws48{word-spacing:22.887368px;}
.ws21{word-spacing:23.408898px;}
.ws44{word-spacing:23.457654px;}
.ws4a{word-spacing:24.584942px;}
.ws5d{word-spacing:25.143923px;}
.ws2b{word-spacing:25.232925px;}
.ws3a{word-spacing:26.346010px;}
.ws3e{word-spacing:26.352010px;}
.ws1d{word-spacing:28.151871px;}
.wsd{word-spacing:29.192752px;}
.ws19{word-spacing:42.572467px;}
.ws24{word-spacing:69.937725px;}
.ws6f{word-spacing:72.305050px;}
.ws70{word-spacing:75.891610px;}
.ws71{word-spacing:78.689126px;}
.ws67{word-spacing:83.925075px;}
.ws41{word-spacing:416.830003px;}
.ws5c{word-spacing:433.256448px;}
.ws57{word-spacing:781.583155px;}
.ws34{word-spacing:970.548931px;}
._1c{margin-left:-37.802342px;}
._12{margin-left:-35.865600px;}
._1b{margin-left:-13.300532px;}
._2{margin-left:-11.653650px;}
._20{margin-left:-9.068325px;}
._3{margin-left:-6.146400px;}
._28{margin-left:-4.947696px;}
._1{margin-left:-3.843225px;}
._4{margin-left:-2.324084px;}
._6{margin-left:-1.119061px;}
._2a{width:1.117506px;}
._5{width:2.324084px;}
._0{width:3.843225px;}
._23{width:5.260266px;}
._2c{width:20.210565px;}
._1a{width:21.972113px;}
._e{width:23.384371px;}
._24{width:24.390365px;}
._31{width:25.396175px;}
._14{width:26.848031px;}
._7{width:28.341842px;}
._9{width:30.268810px;}
._f{width:31.590414px;}
._2f{width:34.671525px;}
._b{width:35.865600px;}
._2b{width:37.257815px;}
._18{width:38.611948px;}
._8{width:41.563671px;}
._29{width:42.694291px;}
._25{width:45.764506px;}
._27{width:50.531390px;}
._1f{width:51.646200px;}
._30{width:53.607099px;}
._22{width:58.611272px;}
._a{width:64.988467px;}
._d{width:71.802931px;}
._17{width:80.338944px;}
._21{width:96.836850px;}
._13{width:107.381606px;}
._1e{width:116.203950px;}
._10{width:143.247206px;}
._2d{width:165.716275px;}
._2e{width:270.160166px;}
._16{width:794.910799px;}
._c{width:839.404705px;}
._26{width:842.068339px;}
._11{width:948.794785px;}
._15{width:1209.674957px;}
._19{width:1603.536617px;}
._1d{width:2175.965952px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:47.820600px;}
.fs2{font-size:65.454600px;}
.fs5{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs4{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y18{bottom:63.168000px;}
.y71{bottom:108.000000px;}
.y3e{bottom:113.227500px;}
.y56{bottom:130.639500px;}
.ya3{bottom:135.123000px;}
.y70{bottom:155.356500px;}
.ya2{bottom:156.792000px;}
.y8c{bottom:167.128500px;}
.y55{bottom:167.253000px;}
.y3d{bottom:167.398500px;}
.y17{bottom:169.837500px;}
.ya1{bottom:178.461000px;}
.y54{bottom:188.922000px;}
.y3c{bottom:189.067500px;}
.ya0{bottom:200.128500px;}
.y6f{bottom:202.711500px;}
.y6e{bottom:224.380500px;}
.y16{bottom:226.624500px;}
.y53{bottom:228.274500px;}
.y52{bottom:240.574500px;}
.y3b{bottom:241.984500px;}
.y8b{bottom:243.513000px;}
.y6d{bottom:256.030500px;}
.y9f{bottom:260.253000px;}
.y8a{bottom:265.180500px;}
.y15{bottom:265.852500px;}
.y89{bottom:286.849500px;}
.y6c{bottom:287.680500px;}
.y51{bottom:288.073500px;}
.y14{bottom:305.080500px;}
.y88{bottom:308.518500px;}
.y3a{bottom:311.535000px;}
.y50{bottom:324.687000px;}
.y87{bottom:330.187500px;}
.y39{bottom:333.204000px;}
.y9e{bottom:337.713000px;}
.y6b{bottom:338.490000px;}
.y4f{bottom:346.354500px;}
.y13{bottom:361.867500px;}
.y38{bottom:369.817500px;}
.y86{bottom:380.997000px;}
.y4e{bottom:382.968000px;}
.y9d{bottom:391.884000px;}
.y12{bottom:401.094000px;}
.y6a{bottom:401.637000px;}
.y37{bottom:406.429500px;}
.y69{bottom:423.306000px;}
.y36{bottom:428.098500px;}
.y9c{bottom:428.497500px;}
.y4d{bottom:437.139000px;}
.y85{bottom:441.925500px;}
.y84{bottom:454.227000px;}
.y9b{bottom:465.109500px;}
.y68{bottom:469.714500px;}
.y11{bottom:477.781500px;}
.y67{bottom:482.014500px;}
.y35{bottom:482.269500px;}
.y4c{bottom:487.948500px;}
.y83{bottom:495.240000px;}
.y34{bottom:503.938500px;}
.y9a{bottom:519.282000px;}
.y66{bottom:523.321500px;}
.y99{bottom:540.951000px;}
.y82{bottom:541.059000px;}
.y33{bottom:554.748000px;}
.y10{bottom:555.241500px;}
.y4b{bottom:557.500500px;}
.y65{bottom:557.662500px;}
.y98{bottom:562.618500px;}
.yf{bottom:575.565000px;}
.y4a{bottom:579.169500px;}
.y64{bottom:579.330000px;}
.y81{bottom:591.868500px;}
.ye{bottom:595.888500px;}
.y49{bottom:600.838500px;}
.y63{bottom:613.671000px;}
.yd{bottom:616.212000px;}
.y32{bottom:620.253000px;}
.y97{bottom:621.747000px;}
.y25{bottom:631.051500px;}
.yc{bottom:636.537000px;}
.y80{bottom:655.114500px;}
.yb{bottom:656.860500px;}
.y48{bottom:660.963000px;}
.y62{bottom:661.027500px;}
.y7f{bottom:676.783500px;}
.ya{bottom:677.184000px;}
.y24{bottom:687.838500px;}
.y61{bottom:692.677500px;}
.y31{bottom:697.711500px;}
.y96{bottom:699.207000px;}
.y9{bottom:703.446000px;}
.y8{bottom:717.831000px;}
.y30{bottom:719.380500px;}
.y95{bottom:720.876000px;}
.y7e{bottom:724.711500px;}
.y23{bottom:727.066500px;}
.y47{bottom:738.421500px;}
.y60{bottom:743.487000px;}
.y2f{bottom:755.992500px;}
.y94{bottom:757.488000px;}
.y7d{bottom:759.243000px;}
.y7{bottom:764.238000px;}
.y22{bottom:766.293000px;}
.y46{bottom:775.035000px;}
.y7c{bottom:786.303000px;}
.y93{bottom:794.100000px;}
.y5f{bottom:806.634000px;}
.y2e{bottom:810.165000px;}
.y45{bottom:811.647000px;}
.y7b{bottom:820.834500px;}
.y21{bottom:823.080000px;}
.y5e{bottom:828.303000px;}
.y2d{bottom:831.834000px;}
.y6{bottom:840.975000px;}
.y7a{bottom:842.503500px;}
.y92{bottom:844.909500px;}
.y44{bottom:848.260500px;}
.y5d{bottom:849.972000px;}
.y20{bottom:862.308000px;}
.y2c{bottom:868.449000px;}
.y79{bottom:877.035000px;}
.y2b{bottom:880.750500px;}
.y5{bottom:900.601500px;}
.y5c{bottom:900.780000px;}
.y1f{bottom:901.536000px;}
.y43{bottom:902.431500px;}
.y78{bottom:904.095000px;}
.y91{bottom:914.461500px;}
.y2a{bottom:930.663000px;}
.y90{bottom:936.130500px;}
.y77{bottom:938.626500px;}
.y1e{bottom:940.764000px;}
.y42{bottom:942.033000px;}
.y29{bottom:952.332000px;}
.y76{bottom:960.295500px;}
.y5b{bottom:969.159000px;}
.y4{bottom:971.397000px;}
.y8f{bottom:972.742500px;}
.y1d{bottom:979.990500px;}
.y75{bottom:981.963000px;}
.y8e{bottom:994.411500px;}
.y3{bottom:998.296500px;}
.y41{bottom:1001.161500px;}
.y28{bottom:1003.141500px;}
.y5a{bottom:1003.500000px;}
.y74{bottom:1016.496000px;}
.y1c{bottom:1019.218500px;}
.y2{bottom:1025.196000px;}
.y8d{bottom:1031.025000px;}
.y59{bottom:1037.839500px;}
.y73{bottom:1038.163500px;}
.y1b{bottom:1058.446500px;}
.y1{bottom:1062.556500px;}
.ya6{bottom:1071.895500px;}
.y27{bottom:1072.693500px;}
.y40{bottom:1078.620000px;}
.y58{bottom:1085.196000px;}
.y72{bottom:1086.093000px;}
.ya5{bottom:1093.564500px;}
.y1a{bottom:1097.674500px;}
.y3f{bottom:1100.289000px;}
.ya4{bottom:1115.233500px;}
.y26{bottom:1131.820500px;}
.y57{bottom:1136.005500px;}
.y19{bottom:1136.902500px;}
.h7{height:32.326726px;}
.h5{height:45.687311px;}
.h6{height:49.090950px;}
.h14{height:50.498765px;}
.h18{height:51.216077px;}
.ha{height:53.798400px;}
.h8{height:56.080726px;}
.he{height:58.354726px;}
.hf{height:58.360726px;}
.h3{height:61.459121px;}
.h10{height:61.942726px;}
.h4{height:64.557900px;}
.hd{height:68.144640px;}
.h9{height:77.469300px;}
.h2{height:92.981250px;}
.h13{height:99.026765px;}
.h11{height:102.326400px;}
.h12{height:102.998400px;}
.h17{height:103.004400px;}
.hb{height:104.011248px;}
.h15{height:106.888726px;}
.h16{height:111.148726px;}
.hc{height:153.217248px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:108.000000px;}
.x21{left:116.779500px;}
.x10{left:129.460500px;}
.xb{left:134.338500px;}
.x3{left:135.679500px;}
.x1{left:144.816000px;}
.x9{left:151.897500px;}
.x18{left:171.804000px;}
.x1a{left:172.969500px;}
.xd{left:174.724500px;}
.x8{left:176.443500px;}
.x4{left:178.147500px;}
.x1b{left:190.527000px;}
.x19{left:198.058500px;}
.x1d{left:243.625500px;}
.x14{left:283.425000px;}
.x15{left:317.055000px;}
.x5{left:328.815000px;}
.x1c{left:330.711000px;}
.x11{left:340.944000px;}
.xe{left:353.851500px;}
.x16{left:363.486000px;}
.x6{left:364.663500px;}
.x2{left:381.814500px;}
.x17{left:383.917500px;}
.x1e{left:396.874500px;}
.x7{left:410.455500px;}
.x12{left:417.966000px;}
.x1f{left:430.770000px;}
.xc{left:442.066500px;}
.x20{left:455.592000px;}
.xf{left:474.690000px;}
.x13{left:492.958500px;}
@media print{
.v1{vertical-align:-21.114667pt;}
.v3{vertical-align:-9.568000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:18.416000pt;}
.v2{vertical-align:21.114667pt;}
.v8{vertical-align:23.136000pt;}
.v9{vertical-align:26.325333pt;}
.v6{vertical-align:33.568000pt;}
.v5{vertical-align:43.136000pt;}
.v4{vertical-align:89.904000pt;}
.v7{vertical-align:133.642667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000391pt;}
.lse{letter-spacing:0.000420pt;}
.lsf{letter-spacing:0.000990pt;}
.ls1e{letter-spacing:0.001036pt;}
.ls10{letter-spacing:0.001145pt;}
.ls1c{letter-spacing:0.001309pt;}
.ls21{letter-spacing:0.002717pt;}
.lsb{letter-spacing:0.003461pt;}
.ls16{letter-spacing:0.003895pt;}
.ls8{letter-spacing:0.004145pt;}
.ls5{letter-spacing:0.004966pt;}
.ls2c{letter-spacing:0.005724pt;}
.ls28{letter-spacing:0.902642pt;}
.ls27{letter-spacing:0.905248pt;}
.ls4{letter-spacing:2.292966pt;}
.ls0{letter-spacing:2.653258pt;}
.ls15{letter-spacing:2.658591pt;}
.ls14{letter-spacing:10.622582pt;}
.ls19{letter-spacing:10.624990pt;}
.ls1d{letter-spacing:13.034281pt;}
.ls7{letter-spacing:13.277258pt;}
.ls2f{letter-spacing:14.154957pt;}
.ls9{letter-spacing:14.163915pt;}
.ls20{letter-spacing:14.166642pt;}
.ls11{letter-spacing:14.171812pt;}
.ls6{letter-spacing:17.706238pt;}
.ls18{letter-spacing:17.707976pt;}
.ls13{letter-spacing:17.710933pt;}
.ls2b{letter-spacing:17.711572pt;}
.ls24{letter-spacing:17.712679pt;}
.lsd{letter-spacing:17.713309pt;}
.ls12{letter-spacing:17.713410pt;}
.ls30{letter-spacing:17.715959pt;}
.ls17{letter-spacing:19.996844pt;}
.ls2e{letter-spacing:20.806642pt;}
.ls2d{letter-spacing:20.811976pt;}
.ls1a{letter-spacing:21.503684pt;}
.ls23{letter-spacing:22.603976pt;}
.ls1f{letter-spacing:23.089309pt;}
.ls1b{letter-spacing:23.413576pt;}
.ls29{letter-spacing:23.463925pt;}
.ls2a{letter-spacing:23.469258pt;}
.ls22{letter-spacing:23.686479pt;}
.ls31{letter-spacing:24.084905pt;}
.ls1{letter-spacing:31.880533pt;}
.ls25{letter-spacing:32.922238pt;}
.lsa{letter-spacing:36.699976pt;}
.ls26{letter-spacing:40.132905pt;}
.ls32{letter-spacing:765.563733pt;}
.lsc{letter-spacing:794.366812pt;}
.ws20{word-spacing:-40.590295pt;}
.ws17{word-spacing:-36.535091pt;}
.ws15{word-spacing:-32.135578pt;}
.ws55{word-spacing:-31.497967pt;}
.ws11{word-spacing:-30.222746pt;}
.wse{word-spacing:-28.692333pt;}
.ws13{word-spacing:-27.991108pt;}
.ws63{word-spacing:-22.893674pt;}
.ws5e{word-spacing:-19.925333pt;}
.ws22{word-spacing:-17.343010pt;}
.ws18{word-spacing:-17.279249pt;}
.ws6c{word-spacing:-15.940267pt;}
.ws2d{word-spacing:-3.188053pt;}
.ws46{word-spacing:-3.180971pt;}
.ws39{word-spacing:-3.180513pt;}
.ws3f{word-spacing:-3.175180pt;}
.ws4b{word-spacing:-3.172106pt;}
.ws5a{word-spacing:-3.166773pt;}
.ws45{word-spacing:-3.151223pt;}
.ws43{word-spacing:-3.060531pt;}
.ws3d{word-spacing:-1.223180pt;}
.ws33{word-spacing:-1.147699pt;}
.ws62{word-spacing:-0.382566pt;}
.ws4{word-spacing:-0.058182pt;}
.ws5{word-spacing:-0.042507pt;}
.ws12{word-spacing:0.000000pt;}
.ws69{word-spacing:0.255044pt;}
.ws47{word-spacing:0.363737pt;}
.ws4c{word-spacing:0.366153pt;}
.ws5b{word-spacing:0.375979pt;}
.ws31{word-spacing:0.382566pt;}
.ws38{word-spacing:0.390929pt;}
.ws60{word-spacing:0.765133pt;}
.ws56{word-spacing:0.882133pt;}
.ws4d{word-spacing:0.883200pt;}
.ws29{word-spacing:1.211460pt;}
.ws28{word-spacing:1.275221pt;}
.ws9{word-spacing:1.291637pt;}
.ws6d{word-spacing:1.402743pt;}
.ws2a{word-spacing:2.486682pt;}
.ws65{word-spacing:2.869248pt;}
.ws2e{word-spacing:2.892187pt;}
.ws26{word-spacing:3.379337pt;}
.ws52{word-spacing:3.439078pt;}
.ws14{word-spacing:3.443098pt;}
.ws16{word-spacing:3.506859pt;}
.ws7{word-spacing:3.851640pt;}
.wsf{word-spacing:3.985067pt;}
.ws2{word-spacing:4.131706pt;}
.ws4f{word-spacing:4.208230pt;}
.ws6a{word-spacing:4.271991pt;}
.ws68{word-spacing:4.527036pt;}
.ws42{word-spacing:4.567301pt;}
.ws1b{word-spacing:4.782067pt;}
.ws6{word-spacing:5.015277pt;}
.ws2f{word-spacing:5.100885pt;}
.ws61{word-spacing:5.164646pt;}
.ws4e{word-spacing:5.483452pt;}
.ws23{word-spacing:5.610974pt;}
.ws1a{word-spacing:5.738467pt;}
.ws8{word-spacing:5.771641pt;}
.ws51{word-spacing:6.121062pt;}
.ws3b{word-spacing:6.312346pt;}
.ws3c{word-spacing:6.325798pt;}
.ws6e{word-spacing:6.376107pt;}
.ws32{word-spacing:6.631151pt;}
.ws40{word-spacing:6.738519pt;}
.ws0{word-spacing:6.887500pt;}
.wsa{word-spacing:6.935279pt;}
.ws6b{word-spacing:7.141239pt;}
.wsb{word-spacing:7.168006pt;}
.ws1f{word-spacing:7.460045pt;}
.ws1{word-spacing:7.651307pt;}
.ws25{word-spacing:7.970133pt;}
.ws35{word-spacing:8.225178pt;}
.ws30{word-spacing:8.926549pt;}
.ws36{word-spacing:8.990310pt;}
.wsc{word-spacing:9.146189pt;}
.ws1e{word-spacing:9.515803pt;}
.ws66{word-spacing:9.691682pt;}
.ws27{word-spacing:9.946726pt;}
.ws64{word-spacing:10.010487pt;}
.ws5f{word-spacing:10.201771pt;}
.ws37{word-spacing:10.393054pt;}
.ws50{word-spacing:10.404432pt;}
.ws1c{word-spacing:11.732036pt;}
.ws3{word-spacing:12.811647pt;}
.ws10{word-spacing:14.537523pt;}
.ws2c{word-spacing:16.778675pt;}
.ws59{word-spacing:16.802993pt;}
.ws49{word-spacing:17.309915pt;}
.ws53{word-spacing:20.311860pt;}
.ws54{word-spacing:20.324913pt;}
.ws58{word-spacing:20.325956pt;}
.ws48{word-spacing:20.344327pt;}
.ws21{word-spacing:20.807909pt;}
.ws44{word-spacing:20.851248pt;}
.ws4a{word-spacing:21.853282pt;}
.ws5d{word-spacing:22.350153pt;}
.ws2b{word-spacing:22.429267pt;}
.ws3a{word-spacing:23.418675pt;}
.ws3e{word-spacing:23.424009pt;}
.ws1d{word-spacing:25.023885pt;}
.wsd{word-spacing:25.949113pt;}
.ws19{word-spacing:37.842193pt;}
.ws24{word-spacing:62.166867pt;}
.ws6f{word-spacing:64.271155pt;}
.ws70{word-spacing:67.459209pt;}
.ws71{word-spacing:69.945890pt;}
.ws67{word-spacing:74.600067pt;}
.ws41{word-spacing:370.515558pt;}
.ws5c{word-spacing:385.116843pt;}
.ws57{word-spacing:694.740582pt;}
.ws34{word-spacing:862.710161pt;}
._1c{margin-left:-33.602082pt;}
._12{margin-left:-31.880533pt;}
._1b{margin-left:-11.822695pt;}
._2{margin-left:-10.358800pt;}
._20{margin-left:-8.060733pt;}
._3{margin-left:-5.463467pt;}
._28{margin-left:-4.397952pt;}
._1{margin-left:-3.416200pt;}
._4{margin-left:-2.065853pt;}
._6{margin-left:-0.994721pt;}
._2a{width:0.993338pt;}
._5{width:2.065853pt;}
._0{width:3.416200pt;}
._23{width:4.675792pt;}
._2c{width:17.964947pt;}
._1a{width:19.530767pt;}
._e{width:20.786108pt;}
._24{width:21.680324pt;}
._31{width:22.574378pt;}
._14{width:23.864916pt;}
._7{width:25.192748pt;}
._9{width:26.905609pt;}
._f{width:28.080368pt;}
._2f{width:30.819134pt;}
._b{width:31.880533pt;}
._2b{width:33.118058pt;}
._18{width:34.321731pt;}
._8{width:36.945485pt;}
._29{width:37.950481pt;}
._25{width:40.679561pt;}
._27{width:44.916791pt;}
._1f{width:45.907733pt;}
._30{width:47.650754pt;}
._22{width:52.098908pt;}
._a{width:57.767526pt;}
._d{width:63.824828pt;}
._17{width:71.412395pt;}
._21{width:86.077200pt;}
._13{width:95.450317pt;}
._1e{width:103.292400pt;}
._10{width:127.330850pt;}
._2d{width:147.303355pt;}
._2e{width:240.142370pt;}
._16{width:706.587377pt;}
._c{width:746.137516pt;}
._26{width:748.505190pt;}
._11{width:843.373142pt;}
._15{width:1075.266628pt;}
._19{width:1425.365882pt;}
._1d{width:1934.191957pt;}
.fs3{font-size:42.507200pt;}
.fs2{font-size:58.181867pt;}
.fs5{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs4{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:56.149333pt;}
.y71{bottom:96.000000pt;}
.y3e{bottom:100.646667pt;}
.y56{bottom:116.124000pt;}
.ya3{bottom:120.109333pt;}
.y70{bottom:138.094667pt;}
.ya2{bottom:139.370667pt;}
.y8c{bottom:148.558667pt;}
.y55{bottom:148.669333pt;}
.y3d{bottom:148.798667pt;}
.y17{bottom:150.966667pt;}
.ya1{bottom:158.632000pt;}
.y54{bottom:167.930667pt;}
.y3c{bottom:168.060000pt;}
.ya0{bottom:177.892000pt;}
.y6f{bottom:180.188000pt;}
.y6e{bottom:199.449333pt;}
.y16{bottom:201.444000pt;}
.y53{bottom:202.910667pt;}
.y52{bottom:213.844000pt;}
.y3b{bottom:215.097333pt;}
.y8b{bottom:216.456000pt;}
.y6d{bottom:227.582667pt;}
.y9f{bottom:231.336000pt;}
.y8a{bottom:235.716000pt;}
.y15{bottom:236.313333pt;}
.y89{bottom:254.977333pt;}
.y6c{bottom:255.716000pt;}
.y51{bottom:256.065333pt;}
.y14{bottom:271.182667pt;}
.y88{bottom:274.238667pt;}
.y3a{bottom:276.920000pt;}
.y50{bottom:288.610667pt;}
.y87{bottom:293.500000pt;}
.y39{bottom:296.181333pt;}
.y9e{bottom:300.189333pt;}
.y6b{bottom:300.880000pt;}
.y4f{bottom:307.870667pt;}
.y13{bottom:321.660000pt;}
.y38{bottom:328.726667pt;}
.y86{bottom:338.664000pt;}
.y4e{bottom:340.416000pt;}
.y9d{bottom:348.341333pt;}
.y12{bottom:356.528000pt;}
.y6a{bottom:357.010667pt;}
.y37{bottom:361.270667pt;}
.y69{bottom:376.272000pt;}
.y36{bottom:380.532000pt;}
.y9c{bottom:380.886667pt;}
.y4d{bottom:388.568000pt;}
.y85{bottom:392.822667pt;}
.y84{bottom:403.757333pt;}
.y9b{bottom:413.430667pt;}
.y68{bottom:417.524000pt;}
.y11{bottom:424.694667pt;}
.y67{bottom:428.457333pt;}
.y35{bottom:428.684000pt;}
.y4c{bottom:433.732000pt;}
.y83{bottom:440.213333pt;}
.y34{bottom:447.945333pt;}
.y9a{bottom:461.584000pt;}
.y66{bottom:465.174667pt;}
.y99{bottom:480.845333pt;}
.y82{bottom:480.941333pt;}
.y33{bottom:493.109333pt;}
.y10{bottom:493.548000pt;}
.y4b{bottom:495.556000pt;}
.y65{bottom:495.700000pt;}
.y98{bottom:500.105333pt;}
.yf{bottom:511.613333pt;}
.y4a{bottom:514.817333pt;}
.y64{bottom:514.960000pt;}
.y81{bottom:526.105333pt;}
.ye{bottom:529.678667pt;}
.y49{bottom:534.078667pt;}
.y63{bottom:545.485333pt;}
.yd{bottom:547.744000pt;}
.y32{bottom:551.336000pt;}
.y97{bottom:552.664000pt;}
.y25{bottom:560.934667pt;}
.yc{bottom:565.810667pt;}
.y80{bottom:582.324000pt;}
.yb{bottom:583.876000pt;}
.y48{bottom:587.522667pt;}
.y62{bottom:587.580000pt;}
.y7f{bottom:601.585333pt;}
.ya{bottom:601.941333pt;}
.y24{bottom:611.412000pt;}
.y61{bottom:615.713333pt;}
.y31{bottom:620.188000pt;}
.y96{bottom:621.517333pt;}
.y9{bottom:625.285333pt;}
.y8{bottom:638.072000pt;}
.y30{bottom:639.449333pt;}
.y95{bottom:640.778667pt;}
.y7e{bottom:644.188000pt;}
.y23{bottom:646.281333pt;}
.y47{bottom:656.374667pt;}
.y60{bottom:660.877333pt;}
.y2f{bottom:671.993333pt;}
.y94{bottom:673.322667pt;}
.y7d{bottom:674.882667pt;}
.y7{bottom:679.322667pt;}
.y22{bottom:681.149333pt;}
.y46{bottom:688.920000pt;}
.y7c{bottom:698.936000pt;}
.y93{bottom:705.866667pt;}
.y5f{bottom:717.008000pt;}
.y2e{bottom:720.146667pt;}
.y45{bottom:721.464000pt;}
.y7b{bottom:729.630667pt;}
.y21{bottom:731.626667pt;}
.y5e{bottom:736.269333pt;}
.y2d{bottom:739.408000pt;}
.y6{bottom:747.533333pt;}
.y7a{bottom:748.892000pt;}
.y92{bottom:751.030667pt;}
.y44{bottom:754.009333pt;}
.y5d{bottom:755.530667pt;}
.y20{bottom:766.496000pt;}
.y2c{bottom:771.954667pt;}
.y79{bottom:779.586667pt;}
.y2b{bottom:782.889333pt;}
.y5{bottom:800.534667pt;}
.y5c{bottom:800.693333pt;}
.y1f{bottom:801.365333pt;}
.y43{bottom:802.161333pt;}
.y78{bottom:803.640000pt;}
.y91{bottom:812.854667pt;}
.y2a{bottom:827.256000pt;}
.y90{bottom:832.116000pt;}
.y77{bottom:834.334667pt;}
.y1e{bottom:836.234667pt;}
.y42{bottom:837.362667pt;}
.y29{bottom:846.517333pt;}
.y76{bottom:853.596000pt;}
.y5b{bottom:861.474667pt;}
.y4{bottom:863.464000pt;}
.y8f{bottom:864.660000pt;}
.y1d{bottom:871.102667pt;}
.y75{bottom:872.856000pt;}
.y8e{bottom:883.921333pt;}
.y3{bottom:887.374667pt;}
.y41{bottom:889.921333pt;}
.y28{bottom:891.681333pt;}
.y5a{bottom:892.000000pt;}
.y74{bottom:903.552000pt;}
.y1c{bottom:905.972000pt;}
.y2{bottom:911.285333pt;}
.y8d{bottom:916.466667pt;}
.y59{bottom:922.524000pt;}
.y73{bottom:922.812000pt;}
.y1b{bottom:940.841333pt;}
.y1{bottom:944.494667pt;}
.ya6{bottom:952.796000pt;}
.y27{bottom:953.505333pt;}
.y40{bottom:958.773333pt;}
.y58{bottom:964.618667pt;}
.y72{bottom:965.416000pt;}
.ya5{bottom:972.057333pt;}
.y1a{bottom:975.710667pt;}
.y3f{bottom:978.034667pt;}
.ya4{bottom:991.318667pt;}
.y26{bottom:1006.062667pt;}
.y57{bottom:1009.782667pt;}
.y19{bottom:1010.580000pt;}
.h7{height:28.734867pt;}
.h5{height:40.610943pt;}
.h6{height:43.636400pt;}
.h14{height:44.887791pt;}
.h18{height:45.525402pt;}
.ha{height:47.820800pt;}
.h8{height:49.849534pt;}
.he{height:51.870867pt;}
.hf{height:51.876201pt;}
.h3{height:54.630330pt;}
.h10{height:55.060201pt;}
.h4{height:57.384800pt;}
.hd{height:60.573013pt;}
.h9{height:68.861600pt;}
.h2{height:82.650000pt;}
.h13{height:88.023791pt;}
.h11{height:90.956800pt;}
.h12{height:91.554133pt;}
.h17{height:91.559467pt;}
.hb{height:92.454443pt;}
.h15{height:95.012201pt;}
.h16{height:98.798867pt;}
.hc{height:136.193109pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:96.000000pt;}
.x21{left:103.804000pt;}
.x10{left:115.076000pt;}
.xb{left:119.412000pt;}
.x3{left:120.604000pt;}
.x1{left:128.725333pt;}
.x9{left:135.020000pt;}
.x18{left:152.714667pt;}
.x1a{left:153.750667pt;}
.xd{left:155.310667pt;}
.x8{left:156.838667pt;}
.x4{left:158.353333pt;}
.x1b{left:169.357333pt;}
.x19{left:176.052000pt;}
.x1d{left:216.556000pt;}
.x14{left:251.933333pt;}
.x15{left:281.826667pt;}
.x5{left:292.280000pt;}
.x1c{left:293.965333pt;}
.x11{left:303.061333pt;}
.xe{left:314.534667pt;}
.x16{left:323.098667pt;}
.x6{left:324.145333pt;}
.x2{left:339.390667pt;}
.x17{left:341.260000pt;}
.x1e{left:352.777333pt;}
.x7{left:364.849333pt;}
.x12{left:371.525333pt;}
.x1f{left:382.906667pt;}
.xc{left:392.948000pt;}
.x20{left:404.970667pt;}
.xf{left:421.946667pt;}
.x13{left:438.185333pt;}
}




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