
    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_b786594888627a663bd53a26.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.966000;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_7d7425f61416a1f1a41f7398.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910156;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_a6c8e242fe7504f574f0be68.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_9c36f12d65789ea479c1a99b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893066;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_6d2cd3418c24ce4ce2d3a5ab.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_eb336375267778843c23442c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;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_285f17dbf0c2312d2f73fdc1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_f52974ad8a5a5b6824090008.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_4f225d7afe592adcd1a00c3d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.793945;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_11eb273c97401440a7e83bad.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.346191;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_094de8f7ea7f6caf814ee22f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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_21544211cdb21e4688e147d5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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_792f4a539b5f0a4223e2a337.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;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:ffe;src:url('chunks/assets/font_683d990959a793fa45eef4ff.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;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:fff;src:url('chunks/assets/font_ff0eb8f7180c4d630cf29150.woff2')format("woff");}.fff{font-family:fff;line-height:0.966000;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:ff10;src:url('chunks/assets/font_1b3f1cf4c4fbd8ad9db99653.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v5{vertical-align:-25.060434px;}
.v2{vertical-align:-16.932780px;}
.v3{vertical-align:-5.418472px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:5.418472px;}
.v1{vertical-align:16.932780px;}
.v4{vertical-align:19.641962px;}
.ls2d{letter-spacing:-15.408781px;}
.ls2c{letter-spacing:-1.185291px;}
.ls2b{letter-spacing:-0.920011px;}
.ls17{letter-spacing:-0.778905px;}
.lsd{letter-spacing:-0.728110px;}
.ls19{letter-spacing:-0.728107px;}
.ls2e{letter-spacing:-0.575713px;}
.lsa{letter-spacing:-0.507983px;}
.ls16{letter-spacing:-0.507982px;}
.lse{letter-spacing:-0.338656px;}
.ls1f{letter-spacing:-0.244396px;}
.ls30{letter-spacing:-0.210530px;}
.ls9{letter-spacing:-0.203193px;}
.ls8{letter-spacing:-0.118529px;}
.ls4{letter-spacing:-0.101653px;}
.lsc{letter-spacing:-0.050121px;}
.ls1e{letter-spacing:-0.016255px;}
.ls24{letter-spacing:-0.012192px;}
.ls2f{letter-spacing:-0.009482px;}
.ls22{letter-spacing:-0.008128px;}
.ls23{letter-spacing:-0.004064px;}
.ls3{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.012192px;}
.ls1c{letter-spacing:0.016255px;}
.ls7{letter-spacing:0.016989px;}
.ls10{letter-spacing:0.050121px;}
.ls20{letter-spacing:0.100468px;}
.ls5{letter-spacing:0.101653px;}
.ls14{letter-spacing:0.144267px;}
.ls25{letter-spacing:0.144493px;}
.ls18{letter-spacing:0.169327px;}
.ls15{letter-spacing:0.194162px;}
.ls26{letter-spacing:0.219560px;}
.lsb{letter-spacing:0.244396px;}
.ls2{letter-spacing:0.244491px;}
.ls12{letter-spacing:0.338655px;}
.ls6{letter-spacing:0.338656px;}
.ls0{letter-spacing:4.233181px;}
.ls21{letter-spacing:6.942418px;}
.ls1d{letter-spacing:8.077588px;}
.ls13{letter-spacing:10.109515px;}
.ls2a{letter-spacing:13.799494px;}
.ls11{letter-spacing:17.018067px;}
.ls27{letter-spacing:18.237223px;}
.lsf{letter-spacing:19.591841px;}
.ls1{letter-spacing:28.396934px;}
.ls29{letter-spacing:36.150693px;}
.ls28{letter-spacing:36.286155px;}
.ls1a{letter-spacing:395.153382px;}
.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;}
}
.ws2{word-spacing:-50.798340px;}
.wsc{word-spacing:-14.392877px;}
.ws14{word-spacing:-14.392817px;}
.ws8{word-spacing:-14.298618px;}
.wsf{word-spacing:-14.298559px;}
.ws12{word-spacing:-14.248325px;}
.ws1e{word-spacing:-14.198655px;}
.ws19{word-spacing:-14.154630px;}
.wse{word-spacing:-14.104283px;}
.ws10{word-spacing:-14.054163px;}
.wsa{word-spacing:-14.004100px;}
.ws18{word-spacing:-13.809767px;}
.wsb{word-spacing:-13.326112px;}
.ws15{word-spacing:-13.326055px;}
.ws13{word-spacing:-13.275257px;}
.ws21{word-spacing:-13.134151px;}
.ws5{word-spacing:-13.038241px;}
.ws4{word-spacing:-12.801238px;}
.ws1{word-spacing:-12.699585px;}
.ws3{word-spacing:-12.597932px;}
.ws6{word-spacing:-12.581056px;}
.ws7{word-spacing:-12.496392px;}
.ws22{word-spacing:-11.683581px;}
.ws9{word-spacing:-11.344948px;}
.ws11{word-spacing:-11.344926px;}
.ws24{word-spacing:-11.134396px;}
.ws1d{word-spacing:-9.159927px;}
.ws16{word-spacing:-9.143672px;}
.ws1b{word-spacing:-9.139608px;}
.ws1a{word-spacing:-9.135544px;}
.ws1c{word-spacing:-9.131480px;}
.ws17{word-spacing:-9.127417px;}
.ws0{word-spacing:-8.466390px;}
.ws1f{word-spacing:-7.331305px;}
.ws20{word-spacing:-7.111745px;}
.ws23{word-spacing:-7.102263px;}
.wsd{word-spacing:0.000000px;}
._17{margin-left:-1572.000000px;}
._1{margin-left:-10.701517px;}
._3{margin-left:-6.626361px;}
._12{margin-left:-4.024360px;}
._0{margin-left:-2.980169px;}
._4{margin-left:-1.219160px;}
._2{width:1.783586px;}
._6{width:3.064833px;}
._7{width:4.317859px;}
._c{width:5.791011px;}
._9{width:7.670549px;}
._8{width:9.025172px;}
._15{width:10.278204px;}
._5{width:11.373184px;}
._11{width:12.504276px;}
._2c{width:13.987045px;}
._14{width:15.122664px;}
._f{width:16.193394px;}
._d{width:17.220637px;}
._19{width:18.814972px;}
._16{width:20.164125px;}
._a{width:21.944883px;}
._b{width:23.355948px;}
._e{width:24.518665px;}
._23{width:25.850319px;}
._1b{width:26.871559px;}
._1c{width:28.034502px;}
._13{width:29.120440px;}
._10{width:31.182854px;}
._20{width:32.304710px;}
._21{width:34.068423px;}
._1e{width:36.484606px;}
._1a{width:38.771883px;}
._26{width:40.378902px;}
._27{width:41.623585px;}
._2a{width:42.914309px;}
._2b{width:46.940903px;}
._25{width:56.353010px;}
._24{width:58.128016px;}
._29{width:67.335807px;}
._1f{width:93.526900px;}
._1d{width:111.122712px;}
._28{width:131.247138px;}
._22{width:283.522010px;}
._18{width:1621.800000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:28.446980px;}
.fsb{font-size:33.865452px;}
.fs3{font-size:33.865560px;}
.fsa{font-size:36.574688px;}
.fs7{font-size:42.000000px;}
.fs9{font-size:45.379706px;}
.fs0{font-size:45.379794px;}
.fs6{font-size:48.000000px;}
.fs2{font-size:50.798340px;}
.fs8{font-size:56.216650px;}
.fs4{font-size:56.216886px;}
.fs5{font-size:60.000000px;}
.fs1{font-size:135.462240px;}
.y0{bottom:0.000000px;}
.y16d{bottom:10.836945px;}
.ybf{bottom:10.879276px;}
.y16c{bottom:23.875144px;}
.ybe{bottom:23.917475px;}
.y6f{bottom:32.862000px;}
.y16b{bottom:36.744015px;}
.y1{bottom:52.999601px;}
.y6d{bottom:63.000000px;}
.y6c{bottom:110.604919px;}
.ybc{bottom:114.668420px;}
.y99{bottom:116.869675px;}
.y4c{bottom:116.870048px;}
.y6b{bottom:126.013749px;}
.yfd{bottom:128.383929px;}
.ybb{bottom:130.077201px;}
.y98{bottom:132.278456px;}
.y4b{bottom:132.278877px;}
.y6a{bottom:141.416934px;}
.yfc{bottom:144.633701px;}
.yba{bottom:145.480338px;}
.y97{bottom:147.681592px;}
.y4a{bottom:147.682063px;}
.y11f{bottom:155.978628px;}
.y69{bottom:156.825764px;}
.yb9{bottom:160.889118px;}
.y6e{bottom:161.232015px;}
.y96{bottom:163.090373px;}
.y49{bottom:163.090893px;}
.y11e{bottom:171.387408px;}
.y68{bottom:172.234594px;}
.yb8{bottom:176.297899px;}
.yfb{bottom:177.144535px;}
.y95{bottom:178.499153px;}
.y48{bottom:178.499722px;}
.y11d{bottom:186.796189px;}
.y67{bottom:187.643424px;}
.y169{bottom:190.521389px;}
.yb7{bottom:191.706680px;}
.yfa{bottom:193.399952px;}
.y94{bottom:193.907934px;}
.y47{bottom:193.908552px;}
.y11c{bottom:202.204970px;}
.y66{bottom:203.052254px;}
.yb6{bottom:207.115460px;}
.y93{bottom:209.316715px;}
.yf9{bottom:209.655369px;}
.y141{bottom:209.824696px;}
.y168{bottom:212.872587px;}
.y46{bottom:215.074527px;}
.y11b{bottom:217.613750px;}
.yb5{bottom:222.524241px;}
.y167{bottom:225.572132px;}
.yf8{bottom:225.741459px;}
.y65{bottom:226.927473px;}
.y92{bottom:229.128004px;}
.y11a{bottom:233.022531px;}
.yb4{bottom:237.933022px;}
.y166{bottom:238.271676px;}
.y140{bottom:238.779658px;}
.yf7{bottom:241.996876px;}
.y45{bottom:242.336303px;}
.y119{bottom:248.431312px;}
.y165{bottom:250.971221px;}
.y13f{bottom:251.479202px;}
.yb3{bottom:253.341802px;}
.y91{bottom:253.680457px;}
.y44{bottom:256.898494px;}
.y64{bottom:257.745133px;}
.yf6{bottom:258.252293px;}
.y164{bottom:263.670765px;}
.y118{bottom:263.840092px;}
.y13e{bottom:264.178747px;}
.yb2{bottom:268.750583px;}
.y90{bottom:269.089237px;}
.y63{bottom:273.153963px;}
.yf5{bottom:274.507710px;}
.y13d{bottom:276.878291px;}
.y117{bottom:279.248873px;}
.y163{bottom:279.756855px;}
.yb1{bottom:284.159363px;}
.y8f{bottom:284.498018px;}
.y43{bottom:285.514892px;}
.y62{bottom:288.732120px;}
.yf4{bottom:290.763127px;}
.y162{bottom:292.456399px;}
.y13c{bottom:293.133708px;}
.y116{bottom:294.657654px;}
.yb0{bottom:299.568144px;}
.y8e{bottom:299.906799px;}
.y42{bottom:300.246411px;}
.y61{bottom:304.140950px;}
.y13b{bottom:305.833253px;}
.yf3{bottom:307.018544px;}
.y161{bottom:308.711816px;}
.y115{bottom:310.066434px;}
.y41{bottom:314.808602px;}
.yaf{bottom:314.976925px;}
.y8d{bottom:315.315579px;}
.y13a{bottom:318.575129px;}
.y60{bottom:319.592112px;}
.y160{bottom:321.453693px;}
.yf2{bottom:323.146965px;}
.y114{bottom:325.517547px;}
.y40{bottom:329.413124px;}
.yae{bottom:330.428037px;}
.y8c{bottom:330.766692px;}
.y15f{bottom:334.153237px;}
.y139{bottom:334.661219px;}
.y5f{bottom:335.000942px;}
.yf1{bottom:339.402382px;}
.y113{bottom:340.926327px;}
.y3f{bottom:344.144643px;}
.yad{bottom:345.836818px;}
.y8b{bottom:346.175472px;}
.y15e{bottom:346.852782px;}
.y138{bottom:347.360763px;}
.y5e{bottom:350.409771px;}
.yf0{bottom:355.657799px;}
.y112{bottom:356.335108px;}
.y3e{bottom:358.706834px;}
.y137{bottom:360.060308px;}
.yac{bottom:361.245599px;}
.y8a{bottom:361.584253px;}
.y15d{bottom:363.108198px;}
.y5d{bottom:365.818601px;}
.y111{bottom:371.743889px;}
.yef{bottom:371.913216px;}
.y3d{bottom:373.269024px;}
.y15c{bottom:375.807743px;}
.y136{bottom:376.315725px;}
.yab{bottom:376.823707px;}
.y89{bottom:376.993034px;}
.y5c{bottom:381.227431px;}
.y110{bottom:387.152669px;}
.y3c{bottom:387.831215px;}
.y15b{bottom:388.507287px;}
.y135{bottom:389.015269px;}
.yee{bottom:393.756433px;}
.y88{bottom:396.634996px;}
.y5b{bottom:396.636261px;}
.yaa{bottom:397.820287px;}
.y134{bottom:401.714814px;}
.y10f{bottom:402.561450px;}
.y3b{bottom:402.562734px;}
.y15a{bottom:404.762704px;}
.y5a{bottom:412.045091px;}
.y3a{bottom:417.124925px;}
.y159{bottom:417.462249px;}
.y10e{bottom:417.970231px;}
.y133{bottom:420.510140px;}
.y87{bottom:421.356776px;}
.ya9{bottom:425.420630px;}
.yed{bottom:426.605921px;}
.y59{bottom:427.453920px;}
.y158{bottom:430.161793px;}
.y39{bottom:431.687115px;}
.y10d{bottom:433.379011px;}
.yec{bottom:441.168065px;}
.ya8{bottom:441.676047px;}
.y157{bottom:442.861338px;}
.y58{bottom:442.862750px;}
.y38{bottom:446.249306px;}
.y132{bottom:447.941156px;}
.y86{bottom:448.787792px;}
.yeb{bottom:455.899537px;}
.ya7{bottom:457.931464px;}
.y57{bottom:458.271580px;}
.y156{bottom:459.116755px;}
.y37{bottom:460.980825px;}
.y131{bottom:463.349936px;}
.y85{bottom:464.196573px;}
.yea{bottom:470.461681px;}
.y155{bottom:471.816299px;}
.y56{bottom:473.680410px;}
.ya6{bottom:474.186881px;}
.y36{bottom:475.543016px;}
.y130{bottom:478.758717px;}
.y84{bottom:479.605353px;}
.y154{bottom:484.515844px;}
.ye9{bottom:485.023826px;}
.y55{bottom:489.089240px;}
.y35{bottom:490.105206px;}
.ya5{bottom:490.442298px;}
.y12f{bottom:494.167498px;}
.y83{bottom:495.014134px;}
.y153{bottom:497.215388px;}
.ye8{bottom:499.585970px;}
.y34{bottom:504.667397px;}
.ya4{bottom:506.528388px;}
.y12e{bottom:509.576278px;}
.y152{bottom:509.914933px;}
.y82{bottom:510.422915px;}
.y54{bottom:512.964459px;}
.ye7{bottom:514.317442px;}
.y10c{bottom:518.889278px;}
.y33{bottom:519.398916px;}
.ya3{bottom:522.783805px;}
.y12d{bottom:524.985059px;}
.y81{bottom:526.001023px;}
.y151{bottom:526.170350px;}
.y53{bottom:528.373289px;}
.ye6{bottom:528.879586px;}
.y32{bottom:533.961107px;}
.y10b{bottom:534.298058px;}
.y150{bottom:538.869894px;}
.ya2{bottom:539.039222px;}
.y12c{bottom:540.393840px;}
.y80{bottom:541.409803px;}
.ye5{bottom:543.441730px;}
.y52{bottom:543.782119px;}
.y31{bottom:548.523297px;}
.y10a{bottom:549.706839px;}
.y14f{bottom:551.569439px;}
.ya1{bottom:555.294639px;}
.y12b{bottom:555.802620px;}
.y7f{bottom:556.818584px;}
.ye4{bottom:558.003875px;}
.y51{bottom:559.190949px;}
.y30{bottom:563.085488px;}
.y14e{bottom:564.268983px;}
.y109{bottom:565.115620px;}
.y12a{bottom:571.239622px;}
.ya0{bottom:571.578277px;}
.y7e{bottom:572.255586px;}
.ye3{bottom:572.594240px;}
.y50{bottom:574.628000px;}
.y2f{bottom:577.675900px;}
.y14d{bottom:580.383294px;}
.y108{bottom:580.721949px;}
.y129{bottom:586.648403px;}
.ye2{bottom:587.325712px;}
.y7d{bottom:587.664366px;}
.y4f{bottom:590.036830px;}
.y2e{bottom:592.407419px;}
.y14c{bottom:593.082839px;}
.y9f{bottom:596.130729px;}
.ye1{bottom:601.887856px;}
.y128{bottom:602.057184px;}
.y7c{bottom:603.073147px;}
.y4e{bottom:605.445660px;}
.y14b{bottom:605.782383px;}
.y2d{bottom:606.969610px;}
.y9e{bottom:611.539510px;}
.ye0{bottom:616.450001px;}
.y127{bottom:617.465964px;}
.y7b{bottom:618.481928px;}
.y4d{bottom:620.854489px;}
.y2c{bottom:621.531801px;}
.y14a{bottom:622.037800px;}
.y9d{bottom:626.948291px;}
.ydf{bottom:631.012145px;}
.y126{bottom:633.044072px;}
.y7a{bottom:633.890708px;}
.y149{bottom:634.737345px;}
.y9c{bottom:642.357071px;}
.yde{bottom:645.743617px;}
.y148{bottom:647.436889px;}
.y125{bottom:648.452853px;}
.y79{bottom:649.299489px;}
.y9b{bottom:657.765852px;}
.ydd{bottom:660.305761px;}
.y147{bottom:663.692306px;}
.y124{bottom:663.861633px;}
.y78{bottom:664.708270px;}
.y107{bottom:665.554906px;}
.y9a{bottom:673.174633px;}
.ydc{bottom:674.867905px;}
.y146{bottom:676.391851px;}
.y106{bottom:677.915796px;}
.y123{bottom:679.270414px;}
.y1a{bottom:684.860398px;}
.y2a{bottom:687.738970px;}
.y77{bottom:688.583413px;}
.y145{bottom:689.091395px;}
.ydb{bottom:689.430050px;}
.y105{bottom:690.276686px;}
.y122{bottom:694.679195px;}
.y19{bottom:699.422589px;}
.y29{bottom:702.301161px;}
.y104{bottom:702.637576px;}
.y76{bottom:703.992194px;}
.yda{bottom:704.161521px;}
.y144{bottom:705.346812px;}
.y121{bottom:710.087975px;}
.y18{bottom:713.984779px;}
.y103{bottom:714.998466px;}
.y28{bottom:716.863352px;}
.y143{bottom:718.046357px;}
.yd9{bottom:718.723666px;}
.y75{bottom:719.400975px;}
.y102{bottom:727.359356px;}
.y17{bottom:728.716298px;}
.y142{bottom:730.745901px;}
.y120{bottom:731.253883px;}
.y27{bottom:731.425543px;}
.yd8{bottom:733.285810px;}
.y74{bottom:734.809755px;}
.y16{bottom:743.278489px;}
.y101{bottom:745.816027px;}
.y26{bottom:746.157061px;}
.yd7{bottom:747.847954px;}
.y16a{bottom:748.694591px;}
.y73{bottom:750.218536px;}
.y15{bottom:757.840680px;}
.y25{bottom:760.719252px;}
.yd6{bottom:762.579426px;}
.y72{bottom:765.627317px;}
.y14{bottom:772.402870px;}
.y24{bottom:775.281443px;}
.yd5{bottom:777.141570px;}
.y71{bottom:781.036097px;}
.y13{bottom:787.134389px;}
.yd4{bottom:791.703715px;}
.y70{bottom:796.444878px;}
.y12{bottom:801.696580px;}
.yd3{bottom:806.265859px;}
.ybd{bottom:808.975095px;}
.y23{bottom:809.654986px;}
.y11{bottom:816.258771px;}
.yd2{bottom:821.039663px;}
.y22{bottom:824.259509px;}
.y10{bottom:833.741866px;}
.y21{bottom:838.821700px;}
.yf{bottom:848.304057px;}
.yd1{bottom:852.534533px;}
.y20{bottom:853.553218px;}
.ye{bottom:863.035575px;}
.yd0{bottom:867.096677px;}
.y1f{bottom:868.115409px;}
.yd{bottom:877.597766px;}
.ycf{bottom:881.658822px;}
.y1e{bottom:882.677600px;}
.yc{bottom:892.159957px;}
.yce{bottom:896.390293px;}
.y1d{bottom:897.239791px;}
.ycd{bottom:910.952438px;}
.y1c{bottom:911.971309px;}
.ycc{bottom:925.514582px;}
.y1b{bottom:926.533500px;}
.yb{bottom:930.766695px;}
.ycb{bottom:940.076726px;}
.ya{bottom:941.095691px;}
.y2b{bottom:945.328886px;}
.yca{bottom:954.808198px;}
.y9{bottom:955.657882px;}
.yc9{bottom:969.370342px;}
.y8{bottom:970.389401px;}
.yc8{bottom:983.932487px;}
.y7{bottom:984.951591px;}
.yc7{bottom:998.494631px;}
.y6{bottom:999.513782px;}
.yc6{bottom:1013.226103px;}
.y5{bottom:1014.075973px;}
.yc5{bottom:1027.788247px;}
.yc4{bottom:1042.350391px;}
.y4{bottom:1046.925566px;}
.yc3{bottom:1073.873483px;}
.y3{bottom:1079.295397px;}
.y100{bottom:1104.352390px;}
.yc2{bottom:1106.553644px;}
.y2{bottom:1118.240791px;}
.yff{bottom:1120.438479px;}
.yc1{bottom:1121.962425px;}
.yfe{bottom:1136.693896px;}
.yc0{bottom:1137.371205px;}
.h7{height:25.399170px;}
.h11{height:34.034779px;}
.h1{height:34.034845px;}
.ha{height:34.402977px;}
.h9{height:34.427781px;}
.h5{height:35.271113px;}
.h6{height:38.098755px;}
.hf{height:39.033241px;}
.he{height:42.162488px;}
.h8{height:42.162665px;}
.h4{height:42.331950px;}
.h10{height:42.873662px;}
.hb{height:43.066406px;}
.hd{height:43.804688px;}
.h12{height:47.072978px;}
.hc{height:49.898438px;}
.h13{height:55.877996px;}
.h2{height:94.056301px;}
.h3{height:101.596680px;}
.h0{height:1188.000000px;}
.w4{width:712.500889px;}
.w3{width:713.686180px;}
.w2{width:840.032524px;}
.w1{width:840.035202px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x39{left:14.562144px;}
.x2a{left:26.400015px;}
.x1{left:38.983814px;}
.x2{left:62.125255px;}
.x4{left:64.852533px;}
.x6{left:66.715139px;}
.xc{left:71.456317px;}
.x3{left:72.641612px;}
.x9{left:76.028168px;}
.xd{left:81.785313px;}
.x26{left:83.343129px;}
.x8{left:84.697751px;}
.x37{left:88.422683px;}
.xb{left:92.148175px;}
.xf{left:102.815826px;}
.xe{left:114.330116px;}
.x5{left:117.886000px;}
.x7{left:119.748606px;}
.xa{left:129.569618px;}
.x2b{left:138.712879px;}
.x2e{left:143.617725px;}
.x25{left:180.362314px;}
.x35{left:183.240304px;}
.x36{left:198.649085px;}
.x17{left:318.745459px;}
.x12{left:321.793359px;}
.x11{left:327.381177px;}
.x3a{left:328.396110px;}
.x10{left:337.371517px;}
.x2d{left:343.466236px;}
.x1a{left:347.192529px;}
.x1c{left:348.377824px;}
.x14{left:359.553459px;}
.x19{left:366.665226px;}
.x1b{left:369.374471px;}
.x13{left:374.792961px;}
.x18{left:377.163550px;}
.x16{left:390.540446px;}
.x15{left:420.003483px;}
.x27{left:432.703068px;}
.x33{left:435.072271px;}
.x31{left:437.612180px;}
.x32{left:439.333674px;}
.x29{left:444.000000px;}
.x28{left:453.050625px;}
.x30{left:455.250437px;}
.x38{left:458.129000px;}
.x34{left:481.496162px;}
.x2c{left:512.144396px;}
.x1f{left:581.401098px;}
.x21{left:586.311604px;}
.x20{left:590.544799px;}
.x1e{left:602.059089px;}
.x24{left:603.921695px;}
.x1d{left:610.356152px;}
.x23{left:626.145969px;}
.x22{left:674.912375px;}
.x2f{left:772.442726px;}
@media print{
.v5{vertical-align:-22.275942pt;}
.v2{vertical-align:-15.051360pt;}
.v3{vertical-align:-4.816420pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:4.816420pt;}
.v1{vertical-align:15.051360pt;}
.v4{vertical-align:17.459522pt;}
.ls2d{letter-spacing:-13.696694pt;}
.ls2c{letter-spacing:-1.053592pt;}
.ls2b{letter-spacing:-0.817788pt;}
.ls17{letter-spacing:-0.692360pt;}
.lsd{letter-spacing:-0.647208pt;}
.ls19{letter-spacing:-0.647206pt;}
.ls2e{letter-spacing:-0.511745pt;}
.lsa{letter-spacing:-0.451541pt;}
.ls16{letter-spacing:-0.451539pt;}
.lse{letter-spacing:-0.301027pt;}
.ls1f{letter-spacing:-0.217241pt;}
.ls30{letter-spacing:-0.187138pt;}
.ls9{letter-spacing:-0.180616pt;}
.ls8{letter-spacing:-0.105360pt;}
.ls4{letter-spacing:-0.090358pt;}
.lsc{letter-spacing:-0.044552pt;}
.ls1e{letter-spacing:-0.014449pt;}
.ls24{letter-spacing:-0.010837pt;}
.ls2f{letter-spacing:-0.008429pt;}
.ls22{letter-spacing:-0.007225pt;}
.ls23{letter-spacing:-0.003612pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.010837pt;}
.ls1c{letter-spacing:0.014449pt;}
.ls7{letter-spacing:0.015102pt;}
.ls10{letter-spacing:0.044552pt;}
.ls20{letter-spacing:0.089304pt;}
.ls5{letter-spacing:0.090358pt;}
.ls14{letter-spacing:0.128237pt;}
.ls25{letter-spacing:0.128438pt;}
.ls18{letter-spacing:0.150513pt;}
.ls15{letter-spacing:0.172588pt;}
.ls26{letter-spacing:0.195165pt;}
.lsb{letter-spacing:0.217241pt;}
.ls2{letter-spacing:0.217325pt;}
.ls12{letter-spacing:0.301026pt;}
.ls6{letter-spacing:0.301027pt;}
.ls0{letter-spacing:3.762827pt;}
.ls21{letter-spacing:6.171038pt;}
.ls1d{letter-spacing:7.180078pt;}
.ls13{letter-spacing:8.986235pt;}
.ls2a{letter-spacing:12.266217pt;}
.ls11{letter-spacing:15.127171pt;}
.ls27{letter-spacing:16.210865pt;}
.lsf{letter-spacing:17.414970pt;}
.ls1{letter-spacing:25.241719pt;}
.ls29{letter-spacing:32.133949pt;}
.ls28{letter-spacing:32.254360pt;}
.ls1a{letter-spacing:351.247451pt;}
.ws2{word-spacing:-45.154080pt;}
.wsc{word-spacing:-12.793669pt;}
.ws14{word-spacing:-12.793615pt;}
.ws8{word-spacing:-12.709883pt;}
.wsf{word-spacing:-12.709830pt;}
.ws12{word-spacing:-12.665177pt;}
.ws1e{word-spacing:-12.621027pt;}
.ws19{word-spacing:-12.581893pt;}
.wse{word-spacing:-12.537141pt;}
.ws10{word-spacing:-12.492589pt;}
.wsa{word-spacing:-12.448089pt;}
.ws18{word-spacing:-12.275348pt;}
.wsb{word-spacing:-11.845433pt;}
.ws15{word-spacing:-11.845383pt;}
.ws13{word-spacing:-11.800229pt;}
.ws21{word-spacing:-11.674801pt;}
.ws5{word-spacing:-11.589547pt;}
.ws4{word-spacing:-11.378878pt;}
.ws1{word-spacing:-11.288520pt;}
.ws3{word-spacing:-11.198162pt;}
.ws6{word-spacing:-11.183160pt;}
.ws7{word-spacing:-11.107904pt;}
.ws22{word-spacing:-10.385405pt;}
.ws9{word-spacing:-10.084399pt;}
.ws11{word-spacing:-10.084379pt;}
.ws24{word-spacing:-9.897241pt;}
.ws1d{word-spacing:-8.142158pt;}
.ws16{word-spacing:-8.127708pt;}
.ws1b{word-spacing:-8.124096pt;}
.ws1a{word-spacing:-8.120484pt;}
.ws1c{word-spacing:-8.116872pt;}
.ws17{word-spacing:-8.113259pt;}
.ws0{word-spacing:-7.525680pt;}
.ws1f{word-spacing:-6.516716pt;}
.ws20{word-spacing:-6.321551pt;}
.ws23{word-spacing:-6.313122pt;}
.wsd{word-spacing:0.000000pt;}
._17{margin-left:-1397.333333pt;}
._1{margin-left:-9.512460pt;}
._3{margin-left:-5.890099pt;}
._12{margin-left:-3.577209pt;}
._0{margin-left:-2.649039pt;}
._4{margin-left:-1.083698pt;}
._2{width:1.585410pt;}
._6{width:2.724296pt;}
._7{width:3.838097pt;}
._c{width:5.147565pt;}
._9{width:6.818266pt;}
._8{width:8.022375pt;}
._15{width:9.136182pt;}
._5{width:10.109497pt;}
._11{width:11.114912pt;}
._2c{width:12.432929pt;}
._14{width:13.442368pt;}
._f{width:14.394128pt;}
._d{width:15.307233pt;}
._19{width:16.724419pt;}
._16{width:17.923667pt;}
._a{width:19.506563pt;}
._b{width:20.760843pt;}
._e{width:21.794369pt;}
._23{width:22.978061pt;}
._1b{width:23.885830pt;}
._1c{width:24.919558pt;}
._13{width:25.884836pt;}
._10{width:27.718092pt;}
._20{width:28.715298pt;}
._21{width:30.283043pt;}
._1e{width:32.430761pt;}
._1a{width:34.463896pt;}
._26{width:35.892357pt;}
._27{width:36.998742pt;}
._2a{width:38.146052pt;}
._2b{width:41.725247pt;}
._25{width:50.091564pt;}
._24{width:51.669348pt;}
._29{width:59.854051pt;}
._1f{width:83.135022pt;}
._1d{width:98.775744pt;}
._28{width:116.664123pt;}
._22{width:252.019564pt;}
._18{width:1441.600000pt;}
.fsc{font-size:25.286204pt;}
.fsb{font-size:30.102624pt;}
.fs3{font-size:30.102720pt;}
.fsa{font-size:32.510834pt;}
.fs7{font-size:37.333333pt;}
.fs9{font-size:40.337516pt;}
.fs0{font-size:40.337595pt;}
.fs6{font-size:42.666667pt;}
.fs2{font-size:45.154080pt;}
.fs8{font-size:49.970356pt;}
.fs4{font-size:49.970565pt;}
.fs5{font-size:53.333333pt;}
.fs1{font-size:120.410880pt;}
.y0{bottom:0.000000pt;}
.y16d{bottom:9.632840pt;}
.ybf{bottom:9.670468pt;}
.y16c{bottom:21.222350pt;}
.ybe{bottom:21.259978pt;}
.y6f{bottom:29.210667pt;}
.y16b{bottom:32.661347pt;}
.y1{bottom:47.110757pt;}
.y6d{bottom:56.000000pt;}
.y6c{bottom:98.315484pt;}
.ybc{bottom:101.927485pt;}
.y99{bottom:103.884155pt;}
.y4c{bottom:103.884487pt;}
.y6b{bottom:112.012221pt;}
.yfd{bottom:114.119048pt;}
.ybb{bottom:115.624179pt;}
.y98{bottom:117.580849pt;}
.y4b{bottom:117.581224pt;}
.y6a{bottom:125.703942pt;}
.yfc{bottom:128.563290pt;}
.yba{bottom:129.315856pt;}
.y97{bottom:131.272526pt;}
.y4a{bottom:131.272945pt;}
.y11f{bottom:138.647669pt;}
.y69{bottom:139.400679pt;}
.yb9{bottom:143.012550pt;}
.y6e{bottom:143.317347pt;}
.y96{bottom:144.969220pt;}
.y49{bottom:144.969682pt;}
.y11e{bottom:152.344363pt;}
.y68{bottom:153.097417pt;}
.yb8{bottom:156.709243pt;}
.yfb{bottom:157.461809pt;}
.y95{bottom:158.665914pt;}
.y48{bottom:158.666420pt;}
.y11d{bottom:166.041057pt;}
.y67{bottom:166.794154pt;}
.y169{bottom:169.352346pt;}
.yb7{bottom:170.405937pt;}
.yfa{bottom:171.911069pt;}
.y94{bottom:172.362608pt;}
.y47{bottom:172.363158pt;}
.y11c{bottom:179.737751pt;}
.y66{bottom:180.490892pt;}
.yb6{bottom:184.102631pt;}
.y93{bottom:186.059302pt;}
.yf9{bottom:186.360328pt;}
.y141{bottom:186.510841pt;}
.y168{bottom:189.220077pt;}
.y46{bottom:191.177358pt;}
.y11b{bottom:193.434445pt;}
.yb5{bottom:197.799325pt;}
.y167{bottom:200.508561pt;}
.yf8{bottom:200.659074pt;}
.y65{bottom:201.713310pt;}
.y92{bottom:203.669337pt;}
.y11a{bottom:207.131139pt;}
.yb4{bottom:211.496019pt;}
.y166{bottom:211.797045pt;}
.y140{bottom:212.248585pt;}
.yf7{bottom:215.108334pt;}
.y45{bottom:215.410047pt;}
.y119{bottom:220.827833pt;}
.y165{bottom:223.085529pt;}
.y13f{bottom:223.537069pt;}
.yb3{bottom:225.192713pt;}
.y91{bottom:225.493739pt;}
.y44{bottom:228.354217pt;}
.y64{bottom:229.106785pt;}
.yf6{bottom:229.557594pt;}
.y164{bottom:234.374013pt;}
.y118{bottom:234.524526pt;}
.y13e{bottom:234.825553pt;}
.yb2{bottom:238.889407pt;}
.y90{bottom:239.190433pt;}
.y63{bottom:242.803522pt;}
.yf5{bottom:244.006853pt;}
.y13d{bottom:246.114037pt;}
.y117{bottom:248.221220pt;}
.y163{bottom:248.672760pt;}
.yb1{bottom:252.586101pt;}
.y8f{bottom:252.887127pt;}
.y43{bottom:253.791015pt;}
.y62{bottom:256.650774pt;}
.yf4{bottom:258.456113pt;}
.y162{bottom:259.961244pt;}
.y13c{bottom:260.563296pt;}
.y116{bottom:261.917914pt;}
.yb0{bottom:266.282795pt;}
.y8e{bottom:266.583821pt;}
.y42{bottom:266.885698pt;}
.y61{bottom:270.347511pt;}
.y13b{bottom:271.851780pt;}
.yf3{bottom:272.905372pt;}
.y161{bottom:274.410503pt;}
.y115{bottom:275.614608pt;}
.y41{bottom:279.829868pt;}
.yaf{bottom:279.979489pt;}
.y8d{bottom:280.280515pt;}
.y13a{bottom:283.177893pt;}
.y60{bottom:284.081877pt;}
.y160{bottom:285.736616pt;}
.yf2{bottom:287.241747pt;}
.y114{bottom:289.348930pt;}
.y40{bottom:292.811666pt;}
.yae{bottom:293.713811pt;}
.y8c{bottom:294.014837pt;}
.y15f{bottom:297.025100pt;}
.y139{bottom:297.476639pt;}
.y5f{bottom:297.778615pt;}
.yf1{bottom:301.691006pt;}
.y113{bottom:303.045624pt;}
.y3f{bottom:305.906349pt;}
.yad{bottom:307.410505pt;}
.y8b{bottom:307.711531pt;}
.y15e{bottom:308.313584pt;}
.y138{bottom:308.765123pt;}
.y5e{bottom:311.475352pt;}
.yf0{bottom:316.140266pt;}
.y112{bottom:316.742318pt;}
.y3e{bottom:318.850519pt;}
.y137{bottom:320.053607pt;}
.yac{bottom:321.107199pt;}
.y8a{bottom:321.408225pt;}
.y15d{bottom:322.762843pt;}
.y5d{bottom:325.172090pt;}
.y111{bottom:330.439012pt;}
.yef{bottom:330.589525pt;}
.y3d{bottom:331.794688pt;}
.y15c{bottom:334.051327pt;}
.y136{bottom:334.502866pt;}
.yab{bottom:334.954406pt;}
.y89{bottom:335.104919pt;}
.y5c{bottom:338.868828pt;}
.y110{bottom:344.135706pt;}
.y3c{bottom:344.738858pt;}
.y15b{bottom:345.339811pt;}
.y135{bottom:345.791350pt;}
.yee{bottom:350.005718pt;}
.y88{bottom:352.564441pt;}
.y5b{bottom:352.565565pt;}
.yaa{bottom:353.618033pt;}
.y134{bottom:357.079834pt;}
.y10f{bottom:357.832400pt;}
.y3b{bottom:357.833541pt;}
.y15a{bottom:359.789071pt;}
.y5a{bottom:366.262303pt;}
.y3a{bottom:370.777711pt;}
.y159{bottom:371.077555pt;}
.y10e{bottom:371.529094pt;}
.y133{bottom:373.786791pt;}
.y87{bottom:374.539356pt;}
.ya9{bottom:378.151671pt;}
.yed{bottom:379.205263pt;}
.y59{bottom:379.959040pt;}
.y158{bottom:382.366039pt;}
.y39{bottom:383.721880pt;}
.y10d{bottom:385.225788pt;}
.yec{bottom:392.149391pt;}
.ya8{bottom:392.600931pt;}
.y157{bottom:393.654523pt;}
.y58{bottom:393.655778pt;}
.y38{bottom:396.666050pt;}
.y132{bottom:398.169916pt;}
.y86{bottom:398.922482pt;}
.yeb{bottom:405.244033pt;}
.ya7{bottom:407.050190pt;}
.y57{bottom:407.352516pt;}
.y156{bottom:408.103782pt;}
.y37{bottom:409.760733pt;}
.y131{bottom:411.866610pt;}
.y85{bottom:412.619176pt;}
.yea{bottom:418.188161pt;}
.y155{bottom:419.392266pt;}
.y56{bottom:421.049253pt;}
.ya6{bottom:421.499450pt;}
.y36{bottom:422.704903pt;}
.y130{bottom:425.563304pt;}
.y84{bottom:426.315870pt;}
.y154{bottom:430.680750pt;}
.ye9{bottom:431.132289pt;}
.y55{bottom:434.745991pt;}
.y35{bottom:435.649072pt;}
.ya5{bottom:435.948709pt;}
.y12f{bottom:439.259998pt;}
.y83{bottom:440.012564pt;}
.y153{bottom:441.969234pt;}
.ye8{bottom:444.076418pt;}
.y34{bottom:448.593242pt;}
.ya4{bottom:450.247456pt;}
.y12e{bottom:452.956692pt;}
.y152{bottom:453.257718pt;}
.y82{bottom:453.709257pt;}
.y54{bottom:455.968408pt;}
.ye7{bottom:457.171059pt;}
.y10c{bottom:461.234913pt;}
.y33{bottom:461.687925pt;}
.ya3{bottom:464.696715pt;}
.y12d{bottom:466.653386pt;}
.y81{bottom:467.556465pt;}
.y151{bottom:467.706978pt;}
.y53{bottom:469.665146pt;}
.ye6{bottom:470.115188pt;}
.y32{bottom:474.632095pt;}
.y10b{bottom:474.931607pt;}
.y150{bottom:478.995462pt;}
.ya2{bottom:479.145975pt;}
.y12c{bottom:480.350080pt;}
.y80{bottom:481.253158pt;}
.ye5{bottom:483.059316pt;}
.y52{bottom:483.361884pt;}
.y31{bottom:487.576264pt;}
.y10a{bottom:488.628301pt;}
.y14f{bottom:490.283946pt;}
.ya1{bottom:493.595234pt;}
.y12b{bottom:494.046774pt;}
.y7f{bottom:494.949852pt;}
.ye4{bottom:496.003444pt;}
.y51{bottom:497.058621pt;}
.y30{bottom:500.520434pt;}
.y14e{bottom:501.572430pt;}
.y109{bottom:502.324995pt;}
.y12a{bottom:507.768553pt;}
.ya0{bottom:508.069579pt;}
.y7e{bottom:508.671632pt;}
.ye3{bottom:508.972658pt;}
.y50{bottom:510.780444pt;}
.y2f{bottom:513.489689pt;}
.y14d{bottom:515.896262pt;}
.y108{bottom:516.197288pt;}
.y129{bottom:521.465247pt;}
.ye2{bottom:522.067299pt;}
.y7d{bottom:522.368326pt;}
.y4f{bottom:524.477182pt;}
.y2e{bottom:526.584372pt;}
.y14c{bottom:527.184746pt;}
.y9f{bottom:529.893982pt;}
.ye1{bottom:535.011428pt;}
.y128{bottom:535.161941pt;}
.y7c{bottom:536.065020pt;}
.y4e{bottom:538.173920pt;}
.y14b{bottom:538.473230pt;}
.y2d{bottom:539.528542pt;}
.y9e{bottom:543.590676pt;}
.ye0{bottom:547.955556pt;}
.y127{bottom:548.858635pt;}
.y7b{bottom:549.761714pt;}
.y4d{bottom:551.870657pt;}
.y2c{bottom:552.472712pt;}
.y14a{bottom:552.922489pt;}
.y9d{bottom:557.287370pt;}
.ydf{bottom:560.899684pt;}
.y126{bottom:562.705842pt;}
.y7a{bottom:563.458407pt;}
.y149{bottom:564.210973pt;}
.y9c{bottom:570.984063pt;}
.yde{bottom:573.994326pt;}
.y148{bottom:575.499457pt;}
.y125{bottom:576.402536pt;}
.y79{bottom:577.155101pt;}
.y9b{bottom:584.680757pt;}
.ydd{bottom:586.938454pt;}
.y147{bottom:589.948717pt;}
.y124{bottom:590.099230pt;}
.y78{bottom:590.851795pt;}
.y107{bottom:591.604361pt;}
.y9a{bottom:598.377451pt;}
.ydc{bottom:599.882583pt;}
.y146{bottom:601.237201pt;}
.y106{bottom:602.591819pt;}
.y123{bottom:603.795924pt;}
.y1a{bottom:608.764798pt;}
.y2a{bottom:611.323529pt;}
.y77{bottom:612.074145pt;}
.y145{bottom:612.525685pt;}
.ydb{bottom:612.826711pt;}
.y105{bottom:613.579276pt;}
.y122{bottom:617.492618pt;}
.y19{bottom:621.708968pt;}
.y29{bottom:624.267699pt;}
.y104{bottom:624.566734pt;}
.y76{bottom:625.770839pt;}
.yda{bottom:625.921352pt;}
.y144{bottom:626.974944pt;}
.y121{bottom:631.189311pt;}
.y18{bottom:634.653137pt;}
.y103{bottom:635.554192pt;}
.y28{bottom:637.211868pt;}
.y143{bottom:638.263428pt;}
.yd9{bottom:638.865481pt;}
.y75{bottom:639.467533pt;}
.y102{bottom:646.541650pt;}
.y17{bottom:647.747820pt;}
.y142{bottom:649.551912pt;}
.y120{bottom:650.003451pt;}
.y27{bottom:650.156038pt;}
.yd8{bottom:651.809609pt;}
.y74{bottom:653.164227pt;}
.y16{bottom:660.691990pt;}
.y101{bottom:662.947580pt;}
.y26{bottom:663.250721pt;}
.yd7{bottom:664.753737pt;}
.y16a{bottom:665.506303pt;}
.y73{bottom:666.860921pt;}
.y15{bottom:673.636160pt;}
.y25{bottom:676.194891pt;}
.yd6{bottom:677.848379pt;}
.y72{bottom:680.557615pt;}
.y14{bottom:686.580329pt;}
.y24{bottom:689.139060pt;}
.yd5{bottom:690.792507pt;}
.y71{bottom:694.254309pt;}
.y13{bottom:699.675012pt;}
.yd4{bottom:703.736635pt;}
.y70{bottom:707.951003pt;}
.y12{bottom:712.619182pt;}
.yd3{bottom:716.680764pt;}
.ybd{bottom:719.088974pt;}
.y23{bottom:719.693321pt;}
.y11{bottom:725.563352pt;}
.yd2{bottom:729.813033pt;}
.y22{bottom:732.675119pt;}
.y10{bottom:741.103881pt;}
.y21{bottom:745.619289pt;}
.yf{bottom:754.048050pt;}
.yd1{bottom:757.808474pt;}
.y20{bottom:758.713972pt;}
.ye{bottom:767.142734pt;}
.yd0{bottom:770.752602pt;}
.y1f{bottom:771.658142pt;}
.yd{bottom:780.086903pt;}
.ycf{bottom:783.696730pt;}
.y1e{bottom:784.602311pt;}
.yc{bottom:793.031073pt;}
.yce{bottom:796.791372pt;}
.y1d{bottom:797.546481pt;}
.ycd{bottom:809.735500pt;}
.y1c{bottom:810.641164pt;}
.ycc{bottom:822.679628pt;}
.y1b{bottom:823.585334pt;}
.yb{bottom:827.348174pt;}
.ycb{bottom:835.623757pt;}
.ya{bottom:836.529503pt;}
.y2b{bottom:840.292343pt;}
.yca{bottom:848.718398pt;}
.y9{bottom:849.473673pt;}
.yc9{bottom:861.662526pt;}
.y8{bottom:862.568356pt;}
.yc8{bottom:874.606655pt;}
.y7{bottom:875.512526pt;}
.yc7{bottom:887.550783pt;}
.y6{bottom:888.456695pt;}
.yc6{bottom:900.645425pt;}
.y5{bottom:901.400865pt;}
.yc5{bottom:913.589553pt;}
.yc4{bottom:926.533681pt;}
.y4{bottom:930.600503pt;}
.yc3{bottom:954.554207pt;}
.y3{bottom:959.373686pt;}
.y100{bottom:981.646569pt;}
.yc2{bottom:983.603239pt;}
.y2{bottom:993.991814pt;}
.yff{bottom:995.945315pt;}
.yc1{bottom:997.299933pt;}
.yfe{bottom:1010.394575pt;}
.yc0{bottom:1010.996627pt;}
.h7{height:22.577040pt;}
.h11{height:30.253137pt;}
.h1{height:30.253196pt;}
.ha{height:30.580424pt;}
.h9{height:30.602472pt;}
.h5{height:31.352100pt;}
.h6{height:33.865560pt;}
.hf{height:34.696214pt;}
.he{height:37.477767pt;}
.h8{height:37.477924pt;}
.h4{height:37.628400pt;}
.h10{height:38.109922pt;}
.hb{height:38.281250pt;}
.hd{height:38.937500pt;}
.h12{height:41.842647pt;}
.hc{height:44.354167pt;}
.h13{height:49.669330pt;}
.h2{height:83.605601pt;}
.h3{height:90.308160pt;}
.h0{height:1056.000000pt;}
.w4{width:633.334123pt;}
.w3{width:634.387715pt;}
.w2{width:746.695577pt;}
.w1{width:746.697957pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x39{left:12.944128pt;}
.x2a{left:23.466680pt;}
.x1{left:34.652279pt;}
.x2{left:55.222449pt;}
.x4{left:57.646696pt;}
.x6{left:59.302346pt;}
.xc{left:63.516727pt;}
.x3{left:64.570322pt;}
.x9{left:67.580594pt;}
.xd{left:72.698056pt;}
.x26{left:74.082781pt;}
.x8{left:75.286890pt;}
.x37{left:78.597940pt;}
.xb{left:81.909489pt;}
.xf{left:91.391845pt;}
.xe{left:101.626770pt;}
.x5{left:104.787556pt;}
.x7{left:106.443205pt;}
.xa{left:115.172994pt;}
.x2b{left:123.300337pt;}
.x2e{left:127.660200pt;}
.x25{left:160.322057pt;}
.x35{left:162.880270pt;}
.x36{left:176.576964pt;}
.x17{left:283.329297pt;}
.x12{left:286.038541pt;}
.x11{left:291.005490pt;}
.x3a{left:291.907653pt;}
.x10{left:299.885793pt;}
.x2d{left:305.303321pt;}
.x1a{left:308.615581pt;}
.x1c{left:309.669177pt;}
.x14{left:319.603074pt;}
.x19{left:325.924645pt;}
.x1b{left:328.332863pt;}
.x13{left:333.149298pt;}
.x18{left:335.256489pt;}
.x16{left:347.147063pt;}
.x15{left:373.336429pt;}
.x27{left:384.624949pt;}
.x33{left:386.730908pt;}
.x31{left:388.988605pt;}
.x32{left:390.518821pt;}
.x29{left:394.666667pt;}
.x28{left:402.711667pt;}
.x30{left:404.667055pt;}
.x38{left:407.225778pt;}
.x34{left:427.996588pt;}
.x2c{left:455.239463pt;}
.x1f{left:516.800976pt;}
.x21{left:521.165870pt;}
.x20{left:524.928710pt;}
.x1e{left:535.163635pt;}
.x24{left:536.819285pt;}
.x1d{left:542.538801pt;}
.x23{left:556.574195pt;}
.x22{left:599.922111pt;}
.x2f{left:686.615757pt;}
}




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