
    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_74d77268c0ccdfd94175c541.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_93048e7d4a708227b8fcf3c2.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e66689c92eff239080218911.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0389602b96fc75eb157344cf.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_21fefe54baf7ddf71cd3ae57.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_788f908795469b96d0a65e78.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_42657d7f9a7356286c4dc6fc.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3f99134257fa176fadfaf586.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f67167f818385697c0a1dc2a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.818000;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_b66cb5fe834c57e468bc3814.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d346cecd3c4455a97f9f8c57.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.383000;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:ffc;src:url('chunks/assets/font_c0759edd6c8f818f0ca5200b.woff2')format("woff");}.ffc{font-family:ffc;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;}
@font-face{font-family:ffd;src:url('chunks/assets/font_e817d628deae58e0f9b387a9.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.705000;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);}
.vb{vertical-align:-43.038000px;}
.vd{vertical-align:-10.758000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.724000px;}
.v3{vertical-align:26.034000px;}
.v9{vertical-align:29.616000px;}
.v2{vertical-align:48.522000px;}
.ve{vertical-align:57.780000px;}
.v6{vertical-align:74.556000px;}
.v8{vertical-align:78.702000px;}
.v7{vertical-align:97.632000px;}
.v1{vertical-align:101.136000px;}
.va{vertical-align:104.010000px;}
.v5{vertical-align:150.342000px;}
.vc{vertical-align:153.216000px;}
.ls9{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.000163px;}
.ls10{letter-spacing:0.000301px;}
.ls1c{letter-spacing:0.001114px;}
.ls15{letter-spacing:0.001473px;}
.ls2f{letter-spacing:0.001641px;}
.ls3{letter-spacing:0.002759px;}
.ls33{letter-spacing:0.002915px;}
.ls1e{letter-spacing:0.003056px;}
.lsb{letter-spacing:0.003848px;}
.ls2b{letter-spacing:0.004059px;}
.ls2e{letter-spacing:0.004381px;}
.ls27{letter-spacing:0.004664px;}
.ls1a{letter-spacing:2.401300px;}
.ls0{letter-spacing:2.407300px;}
.ls16{letter-spacing:2.984915px;}
.ls2a{letter-spacing:2.986059px;}
.ls6{letter-spacing:2.990915px;}
.ls3a{letter-spacing:2.992059px;}
.ls23{letter-spacing:5.150294px;}
.ls24{letter-spacing:5.156294px;}
.ls2d{letter-spacing:7.492752px;}
.ls36{letter-spacing:9.754765px;}
.ls19{letter-spacing:9.755464px;}
.ls18{letter-spacing:9.756440px;}
.ls1b{letter-spacing:9.760765px;}
.ls12{letter-spacing:10.158960px;}
.ls7{letter-spacing:10.160915px;}
.ls22{letter-spacing:11.953114px;}
.ls1{letter-spacing:11.953473px;}
.ls21{letter-spacing:11.954759px;}
.ls28{letter-spacing:14.942915px;}
.ls38{letter-spacing:15.935073px;}
.ls11{letter-spacing:15.935518px;}
.ls5{letter-spacing:15.937473px;}
.ls1f{letter-spacing:15.938759px;}
.ls20{letter-spacing:15.941073px;}
.ls4{letter-spacing:18.926915px;}
.ls35{letter-spacing:18.928059px;}
.ls39{letter-spacing:19.919518px;}
.lsa{letter-spacing:19.920163px;}
.ls32{letter-spacing:19.921473px;}
.ls3b{letter-spacing:19.922759px;}
.ls26{letter-spacing:19.925518px;}
.lsc{letter-spacing:19.926301px;}
.lsd{letter-spacing:19.926472px;}
.ls3c{letter-spacing:19.927473px;}
.ls31{letter-spacing:19.928759px;}
.ls25{letter-spacing:22.910915px;}
.ls29{letter-spacing:22.912059px;}
.ls2c{letter-spacing:23.413473px;}
.ls37{letter-spacing:25.906527px;}
.ls17{letter-spacing:26.396915px;}
.ls30{letter-spacing:27.502530px;}
.ls1d{letter-spacing:31.876145px;}
.ls14{letter-spacing:35.117578px;}
.lse{letter-spacing:46.402664px;}
.ls2{letter-spacing:73.510664px;}
.ls34{letter-spacing:654.190664px;}
.ls3d{letter-spacing:769.894664px;}
.ls8{letter-spacing:805.012664px;}
.ls13{letter-spacing:968.878664px;}
.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;}
}
.ws1d{word-spacing:-71.731200px;}
.ws3e{word-spacing:-56.789591px;}
.ws75{word-spacing:-32.278875px;}
.ws22{word-spacing:-22.416000px;}
.ws17{word-spacing:-19.510886px;}
.ws1b{word-spacing:-14.111859px;}
.ws41{word-spacing:-7.531776px;}
.ws29{word-spacing:-3.801754px;}
.ws1a{word-spacing:-3.586560px;}
.ws5e{word-spacing:-2.295398px;}
.ws55{word-spacing:-1.004237px;}
.ws4f{word-spacing:-0.502118px;}
.ws18{word-spacing:-0.071731px;}
.ws1c{word-spacing:-0.047821px;}
.ws1e{word-spacing:0.000000px;}
.ws26{word-spacing:0.215194px;}
.ws4d{word-spacing:0.358656px;}
.ws38{word-spacing:0.390117px;}
.ws19{word-spacing:0.396117px;}
.ws1f{word-spacing:0.430387px;}
.ws72{word-spacing:0.502118px;}
.wsf{word-spacing:0.573850px;}
.ws76{word-spacing:0.717312px;}
.ws48{word-spacing:0.991693px;}
.ws2b{word-spacing:0.992868px;}
.ws3b{word-spacing:1.147699px;}
.ws15{word-spacing:1.291162px;}
.ws2c{word-spacing:1.362893px;}
.ws5f{word-spacing:1.578086px;}
.ws27{word-spacing:1.793280px;}
.ws30{word-spacing:1.865011px;}
.ws6{word-spacing:1.976729px;}
.ws37{word-spacing:2.151936px;}
.ws47{word-spacing:2.281106px;}
.ws36{word-spacing:2.402995px;}
.ws64{word-spacing:2.817247px;}
.ws66{word-spacing:2.869248px;}
.ws71{word-spacing:3.012710px;}
.ws4c{word-spacing:3.371366px;}
.wsb{word-spacing:3.613094px;}
.ws12{word-spacing:3.873485px;}
.ws3a{word-spacing:3.890959px;}
.ws20{word-spacing:3.898986px;}
.ws16{word-spacing:3.945216px;}
.ws43{word-spacing:4.232141px;}
.ws40{word-spacing:4.447334px;}
.ws21{word-spacing:4.483200px;}
.ws1{word-spacing:4.648169px;}
.ws73{word-spacing:4.662528px;}
.ws24{word-spacing:4.734259px;}
.ws5b{word-spacing:4.805990px;}
.ws13{word-spacing:4.949453px;}
.ws46{word-spacing:4.994959px;}
.ws53{word-spacing:5.164646px;}
.wsd{word-spacing:5.379825px;}
.ws2a{word-spacing:5.595034px;}
.ws5c{word-spacing:5.666765px;}
.ws11{word-spacing:5.738496px;}
.ws3f{word-spacing:5.810227px;}
.ws54{word-spacing:5.917824px;}
.ws56{word-spacing:6.025421px;}
.ws8{word-spacing:6.100369px;}
.ws5d{word-spacing:6.168883px;}
.ws65{word-spacing:6.240614px;}
.ws28{word-spacing:6.455775px;}
.ws59{word-spacing:6.814464px;}
.ws67{word-spacing:6.886195px;}
.ws60{word-spacing:7.101389px;}
.ws6e{word-spacing:7.173120px;}
.ws14{word-spacing:7.388314px;}
.ws35{word-spacing:7.460045px;}
.ws2f{word-spacing:7.531776px;}
.ws62{word-spacing:7.603507px;}
.ws0{word-spacing:7.748438px;}
.ws74{word-spacing:7.818701px;}
.ws31{word-spacing:8.320819px;}
.ws34{word-spacing:8.571878px;}
.ws2{word-spacing:8.607720px;}
.ws3{word-spacing:8.653098px;}
.ws5a{word-spacing:8.679475px;}
.ws33{word-spacing:8.751206px;}
.ws5{word-spacing:8.784007px;}
.ws6c{word-spacing:8.822938px;}
.ws4e{word-spacing:8.894669px;}
.ws58{word-spacing:9.181594px;}
.ws3d{word-spacing:9.827174px;}
.ws23{word-spacing:9.898906px;}
.ws52{word-spacing:9.970637px;}
.ws32{word-spacing:10.078234px;}
.ws7{word-spacing:10.224009px;}
.wse{word-spacing:10.257562px;}
.ws51{word-spacing:10.472755px;}
.ws10{word-spacing:10.616218px;}
.ws9{word-spacing:10.616736px;}
.ws57{word-spacing:10.687949px;}
.ws3c{word-spacing:11.297664px;}
.ws25{word-spacing:11.333530px;}
.ws6d{word-spacing:11.692186px;}
.ws2d{word-spacing:11.907379px;}
.ws50{word-spacing:12.086707px;}
.ws61{word-spacing:12.122573px;}
.ws4{word-spacing:12.384010px;}
.wsa{word-spacing:12.580374px;}
.ws44{word-spacing:13.628928px;}
.ws63{word-spacing:15.493939px;}
.ws49{word-spacing:15.606632px;}
.ws68{word-spacing:15.637402px;}
.ws70{word-spacing:33.928858px;}
.ws6f{word-spacing:34.789632px;}
.ws69{word-spacing:39.380429px;}
.ws6a{word-spacing:47.127398px;}
.ws6b{word-spacing:47.342592px;}
.wsc{word-spacing:83.925075px;}
.ws4a{word-spacing:843.271987px;}
.ws45{word-spacing:878.348544px;}
.ws2e{word-spacing:884.947814px;}
.ws39{word-spacing:904.715282px;}
.ws4b{word-spacing:941.974118px;}
.ws42{word-spacing:972.459878px;}
._32{margin-left:-31.203072px;}
._31{margin-left:-29.208958px;}
._1e{margin-left:-23.914858px;}
._2{margin-left:-11.653650px;}
._17{margin-left:-9.709486px;}
._0{margin-left:-7.810425px;}
._11{margin-left:-6.742733px;}
._3{margin-left:-5.225130px;}
._1{margin-left:-3.843225px;}
._4{margin-left:-2.324084px;}
._6{margin-left:-1.275919px;}
._10{width:1.119462px;}
._5{width:2.324084px;}
._d{width:3.843225px;}
._13{width:5.422864px;}
._19{width:9.759396px;}
._33{width:19.008768px;}
._21{width:21.418027px;}
._1b{width:22.535226px;}
._1f{width:24.420370px;}
._f{width:26.367479px;}
._7{width:29.062735px;}
._15{width:30.155790px;}
._c{width:31.432785px;}
._9{width:33.527332px;}
._18{width:35.148288px;}
._b{width:36.884113px;}
._1d{width:38.365704px;}
._1c{width:41.074975px;}
._30{width:42.315978px;}
._12{width:43.349498px;}
._a{width:44.835509px;}
._2c{width:48.016410px;}
._2d{width:49.762405px;}
._22{width:51.556826px;}
._14{width:54.142697px;}
._8{width:55.374592px;}
._2f{width:58.389197px;}
._20{width:60.868164px;}
._2e{width:67.140403px;}
._23{width:71.821735px;}
._1a{width:80.697600px;}
._e{width:96.836850px;}
._2a{width:106.403353px;}
._16{width:116.203950px;}
._29{width:146.878748px;}
._26{width:203.072970px;}
._28{width:237.212369px;}
._25{width:239.536454px;}
._2b{width:244.948729px;}
._27{width:258.473490px;}
._24{width:698.226271px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:47.820600px;}
.fs2{font-size:65.454600px;}
.fs4{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs3{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:63.168000px;}
.y57{bottom:108.000000px;}
.y1e{bottom:119.635500px;}
.y73{bottom:122.829000px;}
.yc6{bottom:126.090000px;}
.y56{bottom:129.669000px;}
.ye7{bottom:135.100500px;}
.yab{bottom:143.575500px;}
.yc5{bottom:147.759000px;}
.y1d{bottom:149.028000px;}
.y8e{bottom:151.338000px;}
.ye6{bottom:156.769500px;}
.y72{bottom:159.442500px;}
.y1c{bottom:161.329500px;}
.y55{bottom:165.657000px;}
.ye5{bottom:178.438500px;}
.yaa{bottom:179.149500px;}
.y8d{bottom:181.669500px;}
.yc4{bottom:184.371000px;}
.y54{bottom:187.326000px;}
.y3b{bottom:192.355500px;}
.y71{bottom:200.538000px;}
.y1b{bottom:210.835500px;}
.ye4{bottom:215.050500px;}
.ya9{bottom:216.094500px;}
.yc3{bottom:220.984500px;}
.y70{bottom:222.207000px;}
.y53{bottom:223.315500px;}
.y8c{bottom:225.006000px;}
.y3a{bottom:228.969000px;}
.y1a{bottom:232.504500px;}
.ye3{bottom:236.719500px;}
.ya8{bottom:237.763500px;}
.y52{bottom:244.984500px;}
.y19{bottom:254.173500px;}
.yc2{bottom:254.235000px;}
.y6f{bottom:255.457500px;}
.ya7{bottom:259.432500px;}
.y8b{bottom:263.301000px;}
.y39{bottom:265.581000px;}
.ye2{bottom:273.331500px;}
.y18{bottom:275.842500px;}
.ya6{bottom:281.101500px;}
.y51{bottom:283.584000px;}
.ye1{bottom:295.000500px;}
.y8a{bottom:299.212500px;}
.y38{bottom:302.194500px;}
.y6e{bottom:302.220000px;}
.y50{bottom:305.253000px;}
.yc1{bottom:306.226500px;}
.y17{bottom:309.091500px;}
.ya5{bottom:314.352000px;}
.y6d{bottom:323.887500px;}
.yc0{bottom:327.895500px;}
.ye0{bottom:331.614000px;}
.y89{bottom:335.125500px;}
.y4f{bottom:338.503500px;}
.y37{bottom:338.806500px;}
.ybf{bottom:349.564500px;}
.ydf{bottom:353.283000px;}
.y6c{bottom:357.138000px;}
.y16{bottom:361.084500px;}
.ya4{bottom:365.808000px;}
.y36{bottom:367.203000px;}
.y88{bottom:371.037000px;}
.ybe{bottom:371.233500px;}
.yde{bottom:374.950500px;}
.y35{bottom:379.504500px;}
.y15{bottom:382.753500px;}
.y4e{bottom:384.943500px;}
.ya3{bottom:387.477000px;}
.y6b{bottom:390.388500px;}
.y14{bottom:404.422500px;}
.ybd{bottom:404.484000px;}
.y4d{bottom:406.612500px;}
.y87{bottom:406.950000px;}
.ydd{bottom:414.378000px;}
.ya2{bottom:423.051000px;}
.y13{bottom:426.091500px;}
.y34{bottom:429.010500px;}
.y4c{bottom:439.863000px;}
.y6a{bottom:442.381500px;}
.y86{bottom:445.243500px;}
.y12{bottom:447.759000px;}
.y33{bottom:450.679500px;}
.ybc{bottom:456.475500px;}
.ya1{bottom:458.626500px;}
.y68{bottom:470.778000px;}
.y32{bottom:472.348500px;}
.y85{bottom:472.590000px;}
.y4b{bottom:473.112000px;}
.ydc{bottom:474.279000px;}
.y11{bottom:481.009500px;}
.y67{bottom:483.079500px;}
.y84{bottom:484.890000px;}
.ybb{bottom:493.089000px;}
.y31{bottom:494.017500px;}
.ya0{bottom:494.200500px;}
.ydb{bottom:495.948000px;}
.y69{bottom:504.690000px;}
.yda{bottom:517.615500px;}
.y4a{bottom:517.770000px;}
.y10{bottom:525.667500px;}
.y30{bottom:527.268000px;}
.yba{bottom:529.701000px;}
.y9f{bottom:529.776000px;}
.y83{bottom:534.397500px;}
.y66{bottom:535.558500px;}
.yd9{bottom:539.284500px;}
.y9e{bottom:551.445000px;}
.y82{bottom:556.066500px;}
.yd8{bottom:560.953500px;}
.yb9{bottom:566.314500px;}
.y2f{bottom:571.924500px;}
.y65{bottom:576.654000px;}
.y49{bottom:577.348500px;}
.y81{bottom:577.734000px;}
.yd7{bottom:582.622500px;}
.y9d{bottom:584.695500px;}
.yf{bottom:585.568500px;}
.y64{bottom:598.323000px;}
.y80{bottom:599.403000px;}
.yb8{bottom:602.926500px;}
.yd6{bottom:604.291500px;}
.ye{bottom:605.892000px;}
.y48{bottom:612.090000px;}
.yd5{bottom:625.960500px;}
.yd{bottom:626.215500px;}
.y9c{bottom:629.352000px;}
.y7f{bottom:629.734500px;}
.y2e{bottom:631.825500px;}
.y63{bottom:634.935000px;}
.yb7{bottom:639.540000px;}
.yc{bottom:646.539000px;}
.yd4{bottom:647.628000px;}
.y47{bottom:648.078000px;}
.y2d{bottom:653.494500px;}
.yb{bottom:666.862500px;}
.yd3{bottom:669.297000px;}
.y62{bottom:671.548500px;}
.yb6{bottom:672.789000px;}
.y7e{bottom:673.072500px;}
.y2c{bottom:675.163500px;}
.y46{bottom:684.067500px;}
.ya{bottom:687.187500px;}
.y9b{bottom:688.717500px;}
.yd2{bottom:690.966000px;}
.y7d{bottom:694.741500px;}
.y2b{bottom:696.831000px;}
.y9{bottom:707.511000px;}
.y61{bottom:708.160500px;}
.y9a{bottom:710.385000px;}
.yd1{bottom:712.635000px;}
.y2a{bottom:718.500000px;}
.y45{bottom:720.055500px;}
.yb5{bottom:724.782000px;}
.y8{bottom:727.834500px;}
.y7c{bottom:727.992000px;}
.y99{bottom:732.054000px;}
.yd0{bottom:734.304000px;}
.yf1{bottom:737.833500px;}
.yb4{bottom:746.451000px;}
.y7{bottom:748.158000px;}
.y60{bottom:749.256000px;}
.y29{bottom:751.750500px;}
.y44{bottom:756.045000px;}
.yf0{bottom:759.502500px;}
.ycf{bottom:762.700500px;}
.yb3{bottom:768.120000px;}
.y98{bottom:768.999000px;}
.y7b{bottom:774.391500px;}
.yce{bottom:775.000500px;}
.y6{bottom:778.500000px;}
.y5f{bottom:782.506500px;}
.y97{bottom:790.668000px;}
.y43{bottom:792.033000px;}
.y7a{bottom:796.060500px;}
.yef{bottom:798.928500px;}
.yb2{bottom:801.370500px;}
.y28{bottom:803.743500px;}
.ycd{bottom:824.508000px;}
.y42{bottom:826.774500px;}
.y96{bottom:827.613000px;}
.y5e{bottom:829.269000px;}
.y79{bottom:829.311000px;}
.y27{bottom:840.355500px;}
.y5{bottom:845.193000px;}
.yb1{bottom:846.027000px;}
.ycc{bottom:846.177000px;}
.y95{bottom:849.282000px;}
.y5d{bottom:850.938000px;}
.yee{bottom:858.829500px;}
.y41{bottom:860.025000px;}
.y26{bottom:862.024500px;}
.y78{bottom:862.561500px;}
.ycb{bottom:867.846000px;}
.y4{bottom:872.092500px;}
.yed{bottom:880.498500px;}
.y5c{bottom:884.188500px;}
.y94{bottom:886.227000px;}
.yca{bottom:889.515000px;}
.y25{bottom:898.638000px;}
.y3{bottom:898.992000px;}
.yb0{bottom:899.577000px;}
.yec{bottom:902.167500px;}
.y40{bottom:911.695500px;}
.y77{bottom:914.191500px;}
.y5b{bottom:917.439000px;}
.yaf{bottom:921.843000px;}
.y93{bottom:923.172000px;}
.yeb{bottom:923.835000px;}
.yc9{bottom:928.941000px;}
.y3f{bottom:933.364500px;}
.y24{bottom:935.250000px;}
.yae{bottom:944.110500px;}
.y76{bottom:944.523000px;}
.y92{bottom:944.839500px;}
.yea{bottom:945.504000px;}
.y2{bottom:952.230000px;}
.y3e{bottom:963.810000px;}
.yad{bottom:966.376500px;}
.y5a{bottom:969.430500px;}
.y23{bottom:971.863500px;}
.y91{bottom:981.784500px;}
.ye9{bottom:982.117500px;}
.y75{bottom:987.861000px;}
.yac{bottom:988.642500px;}
.yc8{bottom:988.842000px;}
.y1{bottom:989.589000px;}
.y59{bottom:995.334000px;}
.y22{bottom:1000.260000px;}
.y90{bottom:1003.453500px;}
.ye8{bottom:1003.786500px;}
.y3d{bottom:1007.148000px;}
.y58{bottom:1011.523500px;}
.y21{bottom:1012.560000px;}
.yc7{bottom:1025.454000px;}
.y74{bottom:1026.154500px;}
.y3c{bottom:1028.817000px;}
.y8f{bottom:1040.398500px;}
.y20{bottom:1062.067500px;}
.he{height:34.143908px;}
.h4{height:45.687311px;}
.h5{height:49.090950px;}
.h15{height:51.216077px;}
.h7{height:53.798400px;}
.hb{height:60.171908px;}
.h13{height:60.649248px;}
.h3{height:61.459121px;}
.hc{height:61.893450px;}
.h12{height:61.899450px;}
.h11{height:62.823908px;}
.h2{height:64.557900px;}
.h6{height:77.469300px;}
.h1{height:92.981250px;}
.hf{height:106.879248px;}
.h8{height:108.699908px;}
.h14{height:108.705908px;}
.hd{height:112.845908px;}
.h9{height:153.211248px;}
.ha{height:153.217248px;}
.h10{height:156.085248px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:108.000000px;}
.x10{left:129.460500px;}
.xc{left:134.338500px;}
.x1{left:141.354000px;}
.x8{left:151.897500px;}
.x1c{left:160.753500px;}
.x7{left:176.443500px;}
.x14{left:275.976000px;}
.x2{left:281.479500px;}
.x4{left:286.816500px;}
.x1a{left:293.985000px;}
.xa{left:331.689000px;}
.x19{left:354.907500px;}
.x11{left:356.547000px;}
.xe{left:372.655500px;}
.x18{left:378.427500px;}
.x1b{left:379.588500px;}
.x3{left:382.477500px;}
.x5{left:388.912500px;}
.xb{left:416.971500px;}
.x6{left:422.998500px;}
.x12{left:428.160000px;}
.x13{left:448.126500px;}
.xd{left:454.609500px;}
.xf{left:457.938000px;}
.x15{left:459.609000px;}
.x16{left:634.926000px;}
.x17{left:787.563000px;}
@media print{
.vb{vertical-align:-38.256000pt;}
.vd{vertical-align:-9.562667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.421333pt;}
.v3{vertical-align:23.141333pt;}
.v9{vertical-align:26.325333pt;}
.v2{vertical-align:43.130667pt;}
.ve{vertical-align:51.360000pt;}
.v6{vertical-align:66.272000pt;}
.v8{vertical-align:69.957333pt;}
.v7{vertical-align:86.784000pt;}
.v1{vertical-align:89.898667pt;}
.va{vertical-align:92.453333pt;}
.v5{vertical-align:133.637333pt;}
.vc{vertical-align:136.192000pt;}
.ls9{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.000145pt;}
.ls10{letter-spacing:0.000268pt;}
.ls1c{letter-spacing:0.000990pt;}
.ls15{letter-spacing:0.001309pt;}
.ls2f{letter-spacing:0.001458pt;}
.ls3{letter-spacing:0.002452pt;}
.ls33{letter-spacing:0.002591pt;}
.ls1e{letter-spacing:0.002717pt;}
.lsb{letter-spacing:0.003420pt;}
.ls2b{letter-spacing:0.003608pt;}
.ls2e{letter-spacing:0.003895pt;}
.ls27{letter-spacing:0.004145pt;}
.ls1a{letter-spacing:2.134489pt;}
.ls0{letter-spacing:2.139822pt;}
.ls16{letter-spacing:2.653258pt;}
.ls2a{letter-spacing:2.654275pt;}
.ls6{letter-spacing:2.658591pt;}
.ls3a{letter-spacing:2.659608pt;}
.ls23{letter-spacing:4.578039pt;}
.ls24{letter-spacing:4.583373pt;}
.ls2d{letter-spacing:6.660224pt;}
.ls36{letter-spacing:8.670903pt;}
.ls19{letter-spacing:8.671524pt;}
.ls18{letter-spacing:8.672391pt;}
.ls1b{letter-spacing:8.676236pt;}
.ls12{letter-spacing:9.030187pt;}
.ls7{letter-spacing:9.031925pt;}
.ls22{letter-spacing:10.624990pt;}
.ls1{letter-spacing:10.625309pt;}
.ls21{letter-spacing:10.626452pt;}
.ls28{letter-spacing:13.282591pt;}
.ls38{letter-spacing:14.164509pt;}
.ls11{letter-spacing:14.164905pt;}
.ls5{letter-spacing:14.166642pt;}
.ls1f{letter-spacing:14.167786pt;}
.ls20{letter-spacing:14.169842pt;}
.ls4{letter-spacing:16.823925pt;}
.ls35{letter-spacing:16.824941pt;}
.ls39{letter-spacing:17.706238pt;}
.lsa{letter-spacing:17.706812pt;}
.ls32{letter-spacing:17.707976pt;}
.ls3b{letter-spacing:17.709119pt;}
.ls26{letter-spacing:17.711572pt;}
.lsc{letter-spacing:17.712268pt;}
.lsd{letter-spacing:17.712420pt;}
.ls3c{letter-spacing:17.713309pt;}
.ls31{letter-spacing:17.714452pt;}
.ls25{letter-spacing:20.365258pt;}
.ls29{letter-spacing:20.366275pt;}
.ls2c{letter-spacing:20.811976pt;}
.ls37{letter-spacing:23.028024pt;}
.ls17{letter-spacing:23.463925pt;}
.ls30{letter-spacing:24.446693pt;}
.ls1d{letter-spacing:28.334351pt;}
.ls14{letter-spacing:31.215625pt;}
.lse{letter-spacing:41.246812pt;}
.ls2{letter-spacing:65.342812pt;}
.ls34{letter-spacing:581.502812pt;}
.ls3d{letter-spacing:684.350812pt;}
.ls8{letter-spacing:715.566812pt;}
.ls13{letter-spacing:861.225479pt;}
.ws1d{word-spacing:-63.761067pt;}
.ws3e{word-spacing:-50.479636pt;}
.ws75{word-spacing:-28.692333pt;}
.ws22{word-spacing:-19.925333pt;}
.ws17{word-spacing:-17.343010pt;}
.ws1b{word-spacing:-12.543875pt;}
.ws41{word-spacing:-6.694912pt;}
.ws29{word-spacing:-3.379337pt;}
.ws1a{word-spacing:-3.188053pt;}
.ws5e{word-spacing:-2.040354pt;}
.ws55{word-spacing:-0.892655pt;}
.ws4f{word-spacing:-0.446327pt;}
.ws18{word-spacing:-0.063761pt;}
.ws1c{word-spacing:-0.042507pt;}
.ws1e{word-spacing:0.000000pt;}
.ws26{word-spacing:0.191283pt;}
.ws4d{word-spacing:0.318805pt;}
.ws38{word-spacing:0.346771pt;}
.ws19{word-spacing:0.352104pt;}
.ws1f{word-spacing:0.382566pt;}
.ws72{word-spacing:0.446327pt;}
.wsf{word-spacing:0.510089pt;}
.ws76{word-spacing:0.637611pt;}
.ws48{word-spacing:0.881505pt;}
.ws2b{word-spacing:0.882550pt;}
.ws3b{word-spacing:1.020177pt;}
.ws15{word-spacing:1.147699pt;}
.ws2c{word-spacing:1.211460pt;}
.ws5f{word-spacing:1.402743pt;}
.ws27{word-spacing:1.594027pt;}
.ws30{word-spacing:1.657788pt;}
.ws6{word-spacing:1.757092pt;}
.ws37{word-spacing:1.912832pt;}
.ws47{word-spacing:2.027650pt;}
.ws36{word-spacing:2.135996pt;}
.ws64{word-spacing:2.504219pt;}
.ws66{word-spacing:2.550443pt;}
.ws71{word-spacing:2.677965pt;}
.ws4c{word-spacing:2.996770pt;}
.wsb{word-spacing:3.211639pt;}
.ws12{word-spacing:3.443098pt;}
.ws3a{word-spacing:3.458630pt;}
.ws20{word-spacing:3.465766pt;}
.ws16{word-spacing:3.506859pt;}
.ws43{word-spacing:3.761903pt;}
.ws40{word-spacing:3.953186pt;}
.ws21{word-spacing:3.985067pt;}
.ws1{word-spacing:4.131706pt;}
.ws73{word-spacing:4.144469pt;}
.ws24{word-spacing:4.208230pt;}
.ws5b{word-spacing:4.271991pt;}
.ws13{word-spacing:4.399514pt;}
.ws46{word-spacing:4.439963pt;}
.ws53{word-spacing:4.590797pt;}
.wsd{word-spacing:4.782067pt;}
.ws2a{word-spacing:4.973363pt;}
.ws5c{word-spacing:5.037124pt;}
.ws11{word-spacing:5.100885pt;}
.ws3f{word-spacing:5.164646pt;}
.ws54{word-spacing:5.260288pt;}
.ws56{word-spacing:5.355930pt;}
.ws8{word-spacing:5.422550pt;}
.ws5d{word-spacing:5.483452pt;}
.ws65{word-spacing:5.547213pt;}
.ws28{word-spacing:5.738467pt;}
.ws59{word-spacing:6.057301pt;}
.ws67{word-spacing:6.121062pt;}
.ws60{word-spacing:6.312346pt;}
.ws6e{word-spacing:6.376107pt;}
.ws14{word-spacing:6.567390pt;}
.ws35{word-spacing:6.631151pt;}
.ws2f{word-spacing:6.694912pt;}
.ws62{word-spacing:6.758673pt;}
.ws0{word-spacing:6.887500pt;}
.ws74{word-spacing:6.949956pt;}
.ws31{word-spacing:7.396284pt;}
.ws34{word-spacing:7.619447pt;}
.ws2{word-spacing:7.651307pt;}
.ws3{word-spacing:7.691643pt;}
.ws5a{word-spacing:7.715089pt;}
.ws33{word-spacing:7.778850pt;}
.ws5{word-spacing:7.808007pt;}
.ws6c{word-spacing:7.842611pt;}
.ws4e{word-spacing:7.906372pt;}
.ws58{word-spacing:8.161417pt;}
.ws3d{word-spacing:8.735266pt;}
.ws23{word-spacing:8.799027pt;}
.ws52{word-spacing:8.862788pt;}
.ws32{word-spacing:8.958430pt;}
.ws7{word-spacing:9.088008pt;}
.wse{word-spacing:9.117833pt;}
.ws51{word-spacing:9.309116pt;}
.ws10{word-spacing:9.436638pt;}
.ws9{word-spacing:9.437099pt;}
.ws57{word-spacing:9.500399pt;}
.ws3c{word-spacing:10.042368pt;}
.ws25{word-spacing:10.074249pt;}
.ws6d{word-spacing:10.393054pt;}
.ws2d{word-spacing:10.584337pt;}
.ws50{word-spacing:10.743740pt;}
.ws61{word-spacing:10.775620pt;}
.ws4{word-spacing:11.008009pt;}
.wsa{word-spacing:11.182555pt;}
.ws44{word-spacing:12.114603pt;}
.ws63{word-spacing:13.772390pt;}
.ws49{word-spacing:13.872561pt;}
.ws68{word-spacing:13.899913pt;}
.ws70{word-spacing:30.158985pt;}
.ws6f{word-spacing:30.924117pt;}
.ws69{word-spacing:35.004826pt;}
.ws6a{word-spacing:41.891021pt;}
.ws6b{word-spacing:42.082304pt;}
.wsc{word-spacing:74.600067pt;}
.ws4a{word-spacing:749.575100pt;}
.ws45{word-spacing:780.754261pt;}
.ws2e{word-spacing:786.620279pt;}
.ws39{word-spacing:804.191362pt;}
.ws4b{word-spacing:837.310327pt;}
.ws42{word-spacing:864.408781pt;}
._32{margin-left:-27.736064pt;}
._31{margin-left:-25.963518pt;}
._1e{margin-left:-21.257651pt;}
._2{margin-left:-10.358800pt;}
._17{margin-left:-8.630654pt;}
._0{margin-left:-6.942600pt;}
._11{margin-left:-5.993540pt;}
._3{margin-left:-4.644560pt;}
._1{margin-left:-3.416200pt;}
._4{margin-left:-2.065853pt;}
._6{margin-left:-1.134150pt;}
._10{width:0.995077pt;}
._5{width:2.065853pt;}
._d{width:3.416200pt;}
._13{width:4.820323pt;}
._19{width:8.675019pt;}
._33{width:16.896683pt;}
._21{width:19.038246pt;}
._1b{width:20.031312pt;}
._1f{width:21.706996pt;}
._f{width:23.437759pt;}
._7{width:25.833542pt;}
._15{width:26.805147pt;}
._c{width:27.940253pt;}
._9{width:29.802073pt;}
._18{width:31.242923pt;}
._b{width:32.785878pt;}
._1d{width:34.102848pt;}
._1c{width:36.511089pt;}
._30{width:37.614203pt;}
._12{width:38.532887pt;}
._a{width:39.853786pt;}
._2c{width:42.681254pt;}
._2d{width:44.233249pt;}
._22{width:45.828290pt;}
._14{width:48.126842pt;}
._8{width:49.221859pt;}
._2f{width:51.901508pt;}
._20{width:54.105035pt;}
._2e{width:59.680358pt;}
._23{width:63.841542pt;}
._1a{width:71.731200pt;}
._e{width:86.077200pt;}
._2a{width:94.580758pt;}
._16{width:103.292400pt;}
._29{width:130.558887pt;}
._26{width:180.509307pt;}
._28{width:210.855439pt;}
._25{width:212.921292pt;}
._2b{width:217.732203pt;}
._27{width:229.754214pt;}
._24{width:620.645574pt;}
.fs5{font-size:42.507200pt;}
.fs2{font-size:58.181867pt;}
.fs4{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs3{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:56.149333pt;}
.y57{bottom:96.000000pt;}
.y1e{bottom:106.342667pt;}
.y73{bottom:109.181333pt;}
.yc6{bottom:112.080000pt;}
.y56{bottom:115.261333pt;}
.ye7{bottom:120.089333pt;}
.yab{bottom:127.622667pt;}
.yc5{bottom:131.341333pt;}
.y1d{bottom:132.469333pt;}
.y8e{bottom:134.522667pt;}
.ye6{bottom:139.350667pt;}
.y72{bottom:141.726667pt;}
.y1c{bottom:143.404000pt;}
.y55{bottom:147.250667pt;}
.ye5{bottom:158.612000pt;}
.yaa{bottom:159.244000pt;}
.y8d{bottom:161.484000pt;}
.yc4{bottom:163.885333pt;}
.y54{bottom:166.512000pt;}
.y3b{bottom:170.982667pt;}
.y71{bottom:178.256000pt;}
.y1b{bottom:187.409333pt;}
.ye4{bottom:191.156000pt;}
.ya9{bottom:192.084000pt;}
.yc3{bottom:196.430667pt;}
.y70{bottom:197.517333pt;}
.y53{bottom:198.502667pt;}
.y8c{bottom:200.005333pt;}
.y3a{bottom:203.528000pt;}
.y1a{bottom:206.670667pt;}
.ye3{bottom:210.417333pt;}
.ya8{bottom:211.345333pt;}
.y52{bottom:217.764000pt;}
.y19{bottom:225.932000pt;}
.yc2{bottom:225.986667pt;}
.y6f{bottom:227.073333pt;}
.ya7{bottom:230.606667pt;}
.y8b{bottom:234.045333pt;}
.y39{bottom:236.072000pt;}
.ye2{bottom:242.961333pt;}
.y18{bottom:245.193333pt;}
.ya6{bottom:249.868000pt;}
.y51{bottom:252.074667pt;}
.ye1{bottom:262.222667pt;}
.y8a{bottom:265.966667pt;}
.y38{bottom:268.617333pt;}
.y6e{bottom:268.640000pt;}
.y50{bottom:271.336000pt;}
.yc1{bottom:272.201333pt;}
.y17{bottom:274.748000pt;}
.ya5{bottom:279.424000pt;}
.y6d{bottom:287.900000pt;}
.yc0{bottom:291.462667pt;}
.ye0{bottom:294.768000pt;}
.y89{bottom:297.889333pt;}
.y4f{bottom:300.892000pt;}
.y37{bottom:301.161333pt;}
.ybf{bottom:310.724000pt;}
.ydf{bottom:314.029333pt;}
.y6c{bottom:317.456000pt;}
.y16{bottom:320.964000pt;}
.ya4{bottom:325.162667pt;}
.y36{bottom:326.402667pt;}
.y88{bottom:329.810667pt;}
.ybe{bottom:329.985333pt;}
.yde{bottom:333.289333pt;}
.y35{bottom:337.337333pt;}
.y15{bottom:340.225333pt;}
.y4e{bottom:342.172000pt;}
.ya3{bottom:344.424000pt;}
.y6b{bottom:347.012000pt;}
.y14{bottom:359.486667pt;}
.ybd{bottom:359.541333pt;}
.y4d{bottom:361.433333pt;}
.y87{bottom:361.733333pt;}
.ydd{bottom:368.336000pt;}
.ya2{bottom:376.045333pt;}
.y13{bottom:378.748000pt;}
.y34{bottom:381.342667pt;}
.y4c{bottom:390.989333pt;}
.y6a{bottom:393.228000pt;}
.y86{bottom:395.772000pt;}
.y12{bottom:398.008000pt;}
.y33{bottom:400.604000pt;}
.ybc{bottom:405.756000pt;}
.ya1{bottom:407.668000pt;}
.y68{bottom:418.469333pt;}
.y32{bottom:419.865333pt;}
.y85{bottom:420.080000pt;}
.y4b{bottom:420.544000pt;}
.ydc{bottom:421.581333pt;}
.y11{bottom:427.564000pt;}
.y67{bottom:429.404000pt;}
.y84{bottom:431.013333pt;}
.ybb{bottom:438.301333pt;}
.y31{bottom:439.126667pt;}
.ya0{bottom:439.289333pt;}
.ydb{bottom:440.842667pt;}
.y69{bottom:448.613333pt;}
.yda{bottom:460.102667pt;}
.y4a{bottom:460.240000pt;}
.y10{bottom:467.260000pt;}
.y30{bottom:468.682667pt;}
.yba{bottom:470.845333pt;}
.y9f{bottom:470.912000pt;}
.y83{bottom:475.020000pt;}
.y66{bottom:476.052000pt;}
.yd9{bottom:479.364000pt;}
.y9e{bottom:490.173333pt;}
.y82{bottom:494.281333pt;}
.yd8{bottom:498.625333pt;}
.yb9{bottom:503.390667pt;}
.y2f{bottom:508.377333pt;}
.y65{bottom:512.581333pt;}
.y49{bottom:513.198667pt;}
.y81{bottom:513.541333pt;}
.yd7{bottom:517.886667pt;}
.y9d{bottom:519.729333pt;}
.yf{bottom:520.505333pt;}
.y64{bottom:531.842667pt;}
.y80{bottom:532.802667pt;}
.yb8{bottom:535.934667pt;}
.yd6{bottom:537.148000pt;}
.ye{bottom:538.570667pt;}
.y48{bottom:544.080000pt;}
.yd5{bottom:556.409333pt;}
.yd{bottom:556.636000pt;}
.y9c{bottom:559.424000pt;}
.y7f{bottom:559.764000pt;}
.y2e{bottom:561.622667pt;}
.y63{bottom:564.386667pt;}
.yb7{bottom:568.480000pt;}
.yc{bottom:574.701333pt;}
.yd4{bottom:575.669333pt;}
.y47{bottom:576.069333pt;}
.y2d{bottom:580.884000pt;}
.yb{bottom:592.766667pt;}
.yd3{bottom:594.930667pt;}
.y62{bottom:596.932000pt;}
.yb6{bottom:598.034667pt;}
.y7e{bottom:598.286667pt;}
.y2c{bottom:600.145333pt;}
.y46{bottom:608.060000pt;}
.ya{bottom:610.833333pt;}
.y9b{bottom:612.193333pt;}
.yd2{bottom:614.192000pt;}
.y7d{bottom:617.548000pt;}
.y2b{bottom:619.405333pt;}
.y9{bottom:628.898667pt;}
.y61{bottom:629.476000pt;}
.y9a{bottom:631.453333pt;}
.yd1{bottom:633.453333pt;}
.y2a{bottom:638.666667pt;}
.y45{bottom:640.049333pt;}
.yb5{bottom:644.250667pt;}
.y8{bottom:646.964000pt;}
.y7c{bottom:647.104000pt;}
.y99{bottom:650.714667pt;}
.yd0{bottom:652.714667pt;}
.yf1{bottom:655.852000pt;}
.yb4{bottom:663.512000pt;}
.y7{bottom:665.029333pt;}
.y60{bottom:666.005333pt;}
.y29{bottom:668.222667pt;}
.y44{bottom:672.040000pt;}
.yf0{bottom:675.113333pt;}
.ycf{bottom:677.956000pt;}
.yb3{bottom:682.773333pt;}
.y98{bottom:683.554667pt;}
.y7b{bottom:688.348000pt;}
.yce{bottom:688.889333pt;}
.y6{bottom:692.000000pt;}
.y5f{bottom:695.561333pt;}
.y97{bottom:702.816000pt;}
.y43{bottom:704.029333pt;}
.y7a{bottom:707.609333pt;}
.yef{bottom:710.158667pt;}
.yb2{bottom:712.329333pt;}
.y28{bottom:714.438667pt;}
.ycd{bottom:732.896000pt;}
.y42{bottom:734.910667pt;}
.y96{bottom:735.656000pt;}
.y5e{bottom:737.128000pt;}
.y79{bottom:737.165333pt;}
.y27{bottom:746.982667pt;}
.y5{bottom:751.282667pt;}
.yb1{bottom:752.024000pt;}
.ycc{bottom:752.157333pt;}
.y95{bottom:754.917333pt;}
.y5d{bottom:756.389333pt;}
.yee{bottom:763.404000pt;}
.y41{bottom:764.466667pt;}
.y26{bottom:766.244000pt;}
.y78{bottom:766.721333pt;}
.ycb{bottom:771.418667pt;}
.y4{bottom:775.193333pt;}
.yed{bottom:782.665333pt;}
.y5c{bottom:785.945333pt;}
.y94{bottom:787.757333pt;}
.yca{bottom:790.680000pt;}
.y25{bottom:798.789333pt;}
.y3{bottom:799.104000pt;}
.yb0{bottom:799.624000pt;}
.yec{bottom:801.926667pt;}
.y40{bottom:810.396000pt;}
.y77{bottom:812.614667pt;}
.y5b{bottom:815.501333pt;}
.yaf{bottom:819.416000pt;}
.y93{bottom:820.597333pt;}
.yeb{bottom:821.186667pt;}
.yc9{bottom:825.725333pt;}
.y3f{bottom:829.657333pt;}
.y24{bottom:831.333333pt;}
.yae{bottom:839.209333pt;}
.y76{bottom:839.576000pt;}
.y92{bottom:839.857333pt;}
.yea{bottom:840.448000pt;}
.y2{bottom:846.426667pt;}
.y3e{bottom:856.720000pt;}
.yad{bottom:859.001333pt;}
.y5a{bottom:861.716000pt;}
.y23{bottom:863.878667pt;}
.y91{bottom:872.697333pt;}
.ye9{bottom:872.993333pt;}
.y75{bottom:878.098667pt;}
.yac{bottom:878.793333pt;}
.yc8{bottom:878.970667pt;}
.y1{bottom:879.634667pt;}
.y59{bottom:884.741333pt;}
.y22{bottom:889.120000pt;}
.y90{bottom:891.958667pt;}
.ye8{bottom:892.254667pt;}
.y3d{bottom:895.242667pt;}
.y58{bottom:899.132000pt;}
.y21{bottom:900.053333pt;}
.yc7{bottom:911.514667pt;}
.y74{bottom:912.137333pt;}
.y3c{bottom:914.504000pt;}
.y8f{bottom:924.798667pt;}
.y20{bottom:944.060000pt;}
.he{height:30.350141pt;}
.h4{height:40.610943pt;}
.h5{height:43.636400pt;}
.h15{height:45.525402pt;}
.h7{height:47.820800pt;}
.hb{height:53.486141pt;}
.h13{height:53.910443pt;}
.h3{height:54.630330pt;}
.hc{height:55.016400pt;}
.h12{height:55.021733pt;}
.h11{height:55.843474pt;}
.h2{height:57.384800pt;}
.h6{height:68.861600pt;}
.h1{height:82.650000pt;}
.hf{height:95.003776pt;}
.h8{height:96.622141pt;}
.h14{height:96.627474pt;}
.hd{height:100.307474pt;}
.h9{height:136.187776pt;}
.ha{height:136.193109pt;}
.h10{height:138.742443pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:96.000000pt;}
.x10{left:115.076000pt;}
.xc{left:119.412000pt;}
.x1{left:125.648000pt;}
.x8{left:135.020000pt;}
.x1c{left:142.892000pt;}
.x7{left:156.838667pt;}
.x14{left:245.312000pt;}
.x2{left:250.204000pt;}
.x4{left:254.948000pt;}
.x1a{left:261.320000pt;}
.xa{left:294.834667pt;}
.x19{left:315.473333pt;}
.x11{left:316.930667pt;}
.xe{left:331.249333pt;}
.x18{left:336.380000pt;}
.x1b{left:337.412000pt;}
.x3{left:339.980000pt;}
.x5{left:345.700000pt;}
.xb{left:370.641333pt;}
.x6{left:375.998667pt;}
.x12{left:380.586667pt;}
.x13{left:398.334667pt;}
.xd{left:404.097333pt;}
.xf{left:407.056000pt;}
.x15{left:408.541333pt;}
.x16{left:564.378667pt;}
.x17{left:700.056000pt;}
}




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