
    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_7c13c6ea7b9ff93918f9c14e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_a293f9d286d3f0e4ab9a826d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_2a4df8aa7081bee51dc501c6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.775879;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_66ec31f82e76d59e7f11678f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_d07ea0b7f4231d35f372d213.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.090820;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_7517d67f9b3818d03e902853.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_17c109ccb63fb3603c5bc016.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.063477;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_893eefa78a5e71bd1d23ef5a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.128418;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_5b5785ad2c14fb3db5dd04f9.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_4676c4863e90cc7878e836c2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284668;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_c6bb2e01a61d1eb917885939.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.056152;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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;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_bee27c9cd05873e87b0558a3.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.402354;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_a068a4ec08ba0c0594bb3829.woff2')format("woff");}.ffe{font-family:ffe;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;}
.m9{transform:matrix(0.000000,-0.249863,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249863,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249863,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.249952,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249952,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249952,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.249984,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249984,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249984,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.249988,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249988,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249988,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);}
.m6{transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250016,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250048,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-70.680000px;}
.v2{vertical-align:-69.120000px;}
.v3{vertical-align:-12.240000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:25.920000px;}
.v8{vertical-align:30.240000px;}
.v6{vertical-align:36.000000px;}
.v5{vertical-align:37.440000px;}
.ls10{letter-spacing:-2.794817px;}
.ls15{letter-spacing:-2.641409px;}
.lsc{letter-spacing:-0.460200px;}
.ls1a{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.323124px;}
.ls7{letter-spacing:-0.206400px;}
.lsf{letter-spacing:-0.206387px;}
.ls1b{letter-spacing:-0.156750px;}
.ls8{letter-spacing:-0.106800px;}
.ls11{letter-spacing:-0.015155px;}
.lsb{letter-spacing:-0.011520px;}
.ls6{letter-spacing:0.000000px;}
.lse{letter-spacing:0.016052px;}
.ls12{letter-spacing:0.052828px;}
.ls18{letter-spacing:0.106560px;}
.ls9{letter-spacing:0.106800px;}
.ls14{letter-spacing:0.120530px;}
.lsa{letter-spacing:0.186000px;}
.ls0{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.513600px;}
.ls19{letter-spacing:2.106720px;}
.ls5{letter-spacing:2.309760px;}
.ls2{letter-spacing:17.279280px;}
.ls16{letter-spacing:31.602720px;}
.ls17{letter-spacing:31.626720px;}
.ls1{letter-spacing:44.076000px;}
.ls4{letter-spacing:67.397760px;}
.ls3{letter-spacing:69.032160px;}
.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;}
}
.ws0{word-spacing:-33.856800px;}
.ws2{word-spacing:-15.300000px;}
.ws3{word-spacing:-14.940000px;}
.ws1{word-spacing:-14.833200px;}
.ws1f{word-spacing:-14.580000px;}
.ws12{word-spacing:-14.479800px;}
.ws1e{word-spacing:-14.115183px;}
.ws1d{word-spacing:-13.602513px;}
.ws15{word-spacing:-13.307252px;}
.ws4{word-spacing:-13.147200px;}
.ws18{word-spacing:-11.980097px;}
.ws1a{word-spacing:-10.989693px;}
.ws11{word-spacing:-9.720000px;}
.ws8{word-spacing:-9.187200px;}
.wsf{word-spacing:-9.175680px;}
.ws19{word-spacing:-9.143302px;}
.ws23{word-spacing:-8.098919px;}
.wse{word-spacing:-7.920000px;}
.ws22{word-spacing:-7.545415px;}
.ws10{word-spacing:0.000000px;}
.ws6{word-spacing:3.412080px;}
.wsc{word-spacing:4.132080px;}
.wsa{word-spacing:6.434640px;}
.ws7{word-spacing:7.757280px;}
.ws5{word-spacing:10.034640px;}
.wsb{word-spacing:10.637280px;}
.wsd{word-spacing:10.702080px;}
.ws9{word-spacing:11.005920px;}
.ws1c{word-spacing:110.352410px;}
.ws21{word-spacing:116.049371px;}
.ws1b{word-spacing:119.996385px;}
.ws20{word-spacing:125.918978px;}
.ws17{word-spacing:149.594299px;}
.ws14{word-spacing:154.904606px;}
.ws13{word-spacing:164.968060px;}
.ws16{word-spacing:168.565182px;}
._1b{margin-left:-6.415551px;}
._17{margin-left:-4.362480px;}
._9{margin-left:-3.167280px;}
._8{margin-left:-2.151360px;}
._5{margin-left:-1.135440px;}
._1{width:1.075680px;}
._2{width:2.607600px;}
._6{width:4.107360px;}
._7{width:5.171520px;}
._4{width:6.454080px;}
._e{width:7.709040px;}
._f{width:9.023760px;}
._a{width:10.159200px;}
._b{width:11.354400px;}
._c{width:12.489840px;}
._d{width:13.864320px;}
._16{width:16.634640px;}
._15{width:18.286560px;}
._1f{width:20.617200px;}
._1e{width:21.632400px;}
._21{width:23.007600px;}
._20{width:24.083280px;}
._19{width:25.158960px;}
._27{width:26.892000px;}
._26{width:33.940080px;}
._22{width:35.616960px;}
._23{width:37.750800px;}
._28{width:41.768640px;}
._24{width:68.186160px;}
._25{width:69.400560px;}
._14{width:129.960000px;}
._1d{width:139.213027px;}
._2a{width:146.450359px;}
._10{width:152.041440px;}
._12{width:161.729520px;}
._1c{width:168.361192px;}
._1a{width:184.601918px;}
._11{width:197.460000px;}
._13{width:202.680000px;}
._18{width:767.850240px;}
._0{width:798.090240px;}
._29{width:849.216000px;}
._3{width:1012.362240px;}
.fc0{color:rgb(0,0,0);}
.fs16{font-size:27.141782px;}
.fs17{font-size:29.132803px;}
.fsd{font-size:32.889575px;}
.fsa{font-size:34.154660px;}
.fs8{font-size:34.395361px;}
.fsf{font-size:34.771716px;}
.fs6{font-size:35.541953px;}
.fs5{font-size:36.000000px;}
.fs12{font-size:36.310401px;}
.fs14{font-size:36.732140px;}
.fs15{font-size:36.752347px;}
.fs4{font-size:38.880000px;}
.fse{font-size:39.531271px;}
.fs3{font-size:41.760000px;}
.fs9{font-size:47.867814px;}
.fsb{font-size:47.911141px;}
.fsc{font-size:47.920390px;}
.fs10{font-size:48.927618px;}
.fs11{font-size:48.929901px;}
.fs7{font-size:49.588435px;}
.fs13{font-size:50.774040px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y132{bottom:1.902472px;}
.y8c{bottom:1.990352px;}
.ye7{bottom:2.482604px;}
.yb8{bottom:2.664355px;}
.y8b{bottom:16.107224px;}
.y131{bottom:16.718316px;}
.yb7{bottom:21.046864px;}
.ye6{bottom:21.499917px;}
.y133{bottom:27.694927px;}
.y93{bottom:28.504150px;}
.ye8{bottom:31.962975px;}
.ybf{bottom:36.858779px;}
.yf1{bottom:40.732838px;}
.y94{bottom:41.474968px;}
.yc0{bottom:46.000995px;}
.y8d{bottom:52.295329px;}
.yf2{bottom:54.503428px;}
.y95{bottom:54.516851px;}
.yc1{bottom:55.133327px;}
.yb9{bottom:55.924005px;}
.y2{bottom:56.160000px;}
.yc2{bottom:64.262365px;}
.y96{bottom:67.571275px;}
.yf3{bottom:68.368903px;}
.y134{bottom:69.395575px;}
.y13c{bottom:71.204223px;}
.ye9{bottom:71.677076px;}
.yc3{bottom:73.394698px;}
.y97{bottom:80.613755px;}
.yf4{bottom:82.140133px;}
.yc4{bottom:82.527030px;}
.y13d{bottom:83.356079px;}
.yc5{bottom:91.659362px;}
.y3f{bottom:91.800000px;}
.y59{bottom:92.520000px;}
.y98{bottom:93.656235px;}
.yb5{bottom:93.780000px;}
.y13e{bottom:95.515471px;}
.yf5{bottom:95.988298px;}
.yc6{bottom:100.791695px;}
.y8e{bottom:103.402265px;}
.yba{bottom:105.179958px;}
.y99{bottom:106.627054px;}
.y13f{bottom:107.712543px;}
.y3e{bottom:109.080000px;}
.yf6{bottom:109.753118px;}
.y58{bottom:109.800000px;}
.yc7{bottom:109.924027px;}
.y135{bottom:111.054774px;}
.yb4{bottom:111.060000px;}
.yea{bottom:111.311036px;}
.y77{bottom:117.900000px;}
.yc8{bottom:119.062949px;}
.y9a{bottom:119.669534px;}
.y140{bottom:119.860630px;}
.yf7{bottom:123.620516px;}
.y3d{bottom:126.360000px;}
.y57{bottom:127.080000px;}
.yc9{bottom:128.195281px;}
.yb3{bottom:128.340000px;}
.y141{bottom:132.065238px;}
.y9b{bottom:132.712014px;}
.y76{bottom:135.180000px;}
.ye4{bottom:136.980000px;}
.yca{bottom:137.327613px;}
.yf8{bottom:137.391747px;}
.y3c{bottom:143.460000px;}
.y142{bottom:144.217094px;}
.y56{bottom:144.360000px;}
.yb2{bottom:145.620000px;}
.y9c{bottom:145.754494px;}
.ycb{bottom:146.420412px;}
.y75{bottom:148.680000px;}
.yeb{bottom:150.932175px;}
.y12f{bottom:151.200000px;}
.yf9{bottom:151.239912px;}
.y136{bottom:152.755421px;}
.ye3{bottom:154.260000px;}
.ybb{bottom:154.445795px;}
.y8f{bottom:154.568918px;}
.ycc{bottom:155.552744px;}
.y143{bottom:156.414166px;}
.y9d{bottom:158.725313px;}
.y3b{bottom:160.770000px;}
.y55{bottom:161.670000px;}
.yb1{bottom:162.930000px;}
.ycd{bottom:164.685077px;}
.yfa{bottom:165.023965px;}
.y144{bottom:168.566022px;}
.y12d{bottom:168.870000px;}
.ye2{bottom:171.570000px;}
.y9e{bottom:171.779737px;}
.yce{bottom:173.817409px;}
.y3a{bottom:178.050000px;}
.y54{bottom:178.770000px;}
.yfb{bottom:178.872130px;}
.yb0{bottom:180.030000px;}
.y145{bottom:180.770630px;}
.ycf{bottom:182.949742px;}
.y9f{bottom:184.822217px;}
.ye1{bottom:185.070000px;}
.y12c{bottom:186.150000px;}
.ye5{bottom:188.220000px;}
.yec{bottom:190.643070px;}
.yd0{bottom:192.088663px;}
.yfc{bottom:192.643360px;}
.y146{bottom:192.922486px;}
.y137{bottom:194.410853px;}
.y39{bottom:195.330000px;}
.y53{bottom:196.050000px;}
.yaf{bottom:197.310000px;}
.ya0{bottom:197.864697px;}
.yd1{bottom:201.220995px;}
.y12b{bottom:203.430000px;}
.ybc{bottom:203.711631px;}
.y147{bottom:205.115790px;}
.y90{bottom:205.675853px;}
.yfd{bottom:206.491525px;}
.yd2{bottom:210.353328px;}
.ya1{bottom:210.907177px;}
.y38{bottom:212.610000px;}
.y52{bottom:213.330000px;}
.yae{bottom:214.590000px;}
.y148{bottom:217.278950px;}
.yd3{bottom:219.485660px;}
.yfe{bottom:220.352512px;}
.y12a{bottom:220.710000px;}
.ya2{bottom:223.877996px;}
.yad{bottom:228.270000px;}
.yd4{bottom:228.614698px;}
.y149{bottom:229.472254px;}
.y37{bottom:229.890000px;}
.yed{bottom:230.277030px;}
.y51{bottom:230.610000px;}
.yff{bottom:234.123743px;}
.y138{bottom:236.115268px;}
.ya3{bottom:236.920476px;}
.yd5{bottom:237.747031px;}
.y129{bottom:237.990000px;}
.y14a{bottom:241.624109px;}
.yd6{bottom:246.879363px;}
.y36{bottom:246.990000px;}
.y50{bottom:247.890000px;}
.y100{bottom:247.971908px;}
.ya4{bottom:249.962956px;}
.ybd{bottom:252.967585px;}
.y14b{bottom:253.775965px;}
.y128{bottom:255.090000px;}
.yd7{bottom:255.972161px;}
.y91{bottom:256.770844px;}
.ybe{bottom:261.190637px;}
.y101{bottom:261.743138px;}
.ya5{bottom:263.017380px;}
.y35{bottom:264.270000px;}
.yd8{bottom:265.104494px;}
.y4f{bottom:265.170000px;}
.yee{bottom:269.987925px;}
.y127{bottom:272.370000px;}
.y102{bottom:275.604126px;}
.y92{bottom:277.636424px;}
.y139{bottom:277.770699px;}
.y14c{bottom:280.163390px;}
.y34{bottom:281.550000px;}
.y4e{bottom:282.270000px;}
.y103{bottom:289.375356px;}
.y126{bottom:289.650000px;}
.ya6{bottom:292.112144px;}
.y13b{bottom:294.979234px;}
.yd9{bottom:295.117318px;}
.y33{bottom:298.830000px;}
.y4d{bottom:299.550000px;}
.y125{bottom:306.930000px;}
.yef{bottom:309.609064px;}
.yf0{bottom:310.532275px;}
.y82{bottom:312.870000px;}
.y32{bottom:316.110000px;}
.y4c{bottom:317.190000px;}
.y13a{bottom:319.471347px;}
.y89{bottom:320.610000px;}
.y124{bottom:324.210000px;}
.y104{bottom:329.778660px;}
.y81{bottom:330.150000px;}
.y31{bottom:333.210000px;}
.y4b{bottom:334.470000px;}
.y88{bottom:337.890000px;}
.y123{bottom:341.310000px;}
.y30{bottom:350.490000px;}
.y87{bottom:351.570000px;}
.y4a{bottom:351.930000px;}
.y8a{bottom:355.005000px;}
.y122{bottom:358.590000px;}
.y49{bottom:365.970000px;}
.y2f{bottom:367.770000px;}
.y46{bottom:373.530000px;}
.y121{bottom:375.870000px;}
.y48{bottom:379.110000px;}
.y2e{bottom:385.050000px;}
.y47{bottom:387.390000px;}
.y120{bottom:393.150000px;}
.y45{bottom:397.650000px;}
.y2d{bottom:402.330000px;}
.y11f{bottom:410.475000px;}
.y44{bottom:414.795000px;}
.y2c{bottom:419.655000px;}
.y11e{bottom:427.755000px;}
.y43{bottom:433.875000px;}
.y2b{bottom:436.755000px;}
.y11d{bottom:444.855000px;}
.y74{bottom:447.195000px;}
.y42{bottom:451.695000px;}
.y2a{bottom:454.035000px;}
.y11c{bottom:462.135000px;}
.y73{bottom:464.475000px;}
.y41{bottom:470.775000px;}
.y29{bottom:471.315000px;}
.y72{bottom:478.155000px;}
.y11b{bottom:479.415000px;}
.y28{bottom:488.595000px;}
.y11a{bottom:496.695000px;}
.yac{bottom:497.415000px;}
.y27{bottom:505.875000px;}
.y119{bottom:513.975000px;}
.yab{bottom:514.695000px;}
.y26{bottom:522.795000px;}
.y40{bottom:523.155000px;}
.yaa{bottom:528.375000px;}
.yb6{bottom:530.355000px;}
.y118{bottom:531.255000px;}
.ye0{bottom:535.215000px;}
.y25{bottom:539.895000px;}
.y117{bottom:548.355000px;}
.ydf{bottom:552.495000px;}
.y24{bottom:557.535000px;}
.y116{bottom:565.635000px;}
.yde{bottom:569.775000px;}
.y23{bottom:574.815000px;}
.y115{bottom:582.915000px;}
.ydd{bottom:583.455000px;}
.y22{bottom:591.735000px;}
.y114{bottom:600.195000px;}
.y21{bottom:609.375000px;}
.y113{bottom:617.475000px;}
.y20{bottom:626.655000px;}
.y112{bottom:634.755000px;}
.y80{bottom:639.975000px;}
.y1f{bottom:643.755000px;}
.y111{bottom:651.885000px;}
.y7f{bottom:657.285000px;}
.y1e{bottom:661.065000px;}
.y110{bottom:669.165000px;}
.y86{bottom:670.245000px;}
.y7e{bottom:674.385000px;}
.y1d{bottom:678.345000px;}
.y10f{bottom:686.445000px;}
.y85{bottom:687.345000px;}
.y7d{bottom:691.665000px;}
.y1c{bottom:695.625000px;}
.y10e{bottom:703.725000px;}
.y84{bottom:704.625000px;}
.y7c{bottom:708.945000px;}
.y1b{bottom:712.905000px;}
.y10d{bottom:721.005000px;}
.y7b{bottom:726.225000px;}
.y1a{bottom:730.005000px;}
.y10c{bottom:738.105000px;}
.y7a{bottom:743.505000px;}
.y19{bottom:747.285000px;}
.y10b{bottom:755.385000px;}
.y79{bottom:760.785000px;}
.y18{bottom:764.565000px;}
.y10a{bottom:772.665000px;}
.y78{bottom:777.885000px;}
.y17{bottom:781.845000px;}
.y109{bottom:789.585000px;}
.y12e{bottom:789.945000px;}
.y70{bottom:795.165000px;}
.y16{bottom:799.125000px;}
.y108{bottom:806.865000px;}
.y6f{bottom:812.445000px;}
.y15{bottom:816.405000px;}
.y107{bottom:824.505000px;}
.y6e{bottom:829.725000px;}
.y14{bottom:833.505000px;}
.ya9{bottom:840.165000px;}
.y106{bottom:841.605000px;}
.y6d{bottom:847.005000px;}
.y13{bottom:850.785000px;}
.ydc{bottom:852.585000px;}
.y105{bottom:855.285000px;}
.ya8{bottom:857.445000px;}
.y130{bottom:858.420000px;}
.y6c{bottom:864.285000px;}
.y12{bottom:868.065000px;}
.ydb{bottom:869.865000px;}
.ya7{bottom:871.125000px;}
.y6b{bottom:881.385000px;}
.yda{bottom:883.545000px;}
.y11{bottom:885.345000px;}
.y6a{bottom:898.710000px;}
.y10{bottom:902.670000px;}
.y69{bottom:915.990000px;}
.yf{bottom:919.590000px;}
.y68{bottom:933.270000px;}
.ye{bottom:937.050000px;}
.y67{bottom:950.550000px;}
.yd{bottom:954.330000px;}
.y83{bottom:958.650000px;}
.y66{bottom:967.830000px;}
.yc{bottom:971.610000px;}
.y65{bottom:984.930000px;}
.yb{bottom:988.890000px;}
.y64{bottom:1002.210000px;}
.ya{bottom:1006.170000px;}
.y63{bottom:1019.490000px;}
.y9{bottom:1023.090000px;}
.y62{bottom:1036.770000px;}
.y8{bottom:1040.550000px;}
.y61{bottom:1054.050000px;}
.y7{bottom:1057.830000px;}
.y60{bottom:1071.150000px;}
.y6{bottom:1074.750000px;}
.y5f{bottom:1088.430000px;}
.y5e{bottom:1105.710000px;}
.y5{bottom:1109.310000px;}
.y5d{bottom:1122.990000px;}
.y5c{bottom:1140.270000px;}
.y4{bottom:1144.080000px;}
.y5b{bottom:1157.580000px;}
.y3{bottom:1163.880000px;}
.y5a{bottom:1174.320000px;}
.y71{bottom:1174.680000px;}
.y1{bottom:1195.380000px;}
.h22{height:28.308031px;}
.h9{height:30.339844px;}
.h23{height:30.384603px;}
.h16{height:34.302799px;}
.hd{height:34.882483px;}
.h13{height:35.622243px;}
.hf{height:35.873287px;}
.h19{height:36.265813px;}
.hc{height:37.069146px;}
.h1c{height:37.870614px;}
.h20{height:38.310474px;}
.h21{height:38.331549px;}
.h17{height:41.229880px;}
.h14{height:47.022165px;}
.h15{height:47.031246px;}
.h10{height:49.924634px;}
.h1a{height:51.029977px;}
.h1b{height:51.032358px;}
.he{height:51.719188px;}
.h1d{height:52.955737px;}
.h3{height:52.998047px;}
.h11{height:54.536836px;}
.h7{height:58.621992px;}
.h5{height:58.651172px;}
.h2{height:59.439023px;}
.h6{height:60.226875px;}
.h1e{height:61.423863px;}
.h8{height:72.634219px;}
.h4{height:81.949219px;}
.ha{height:88.891172px;}
.h12{height:304.051981px;}
.hb{height:309.382681px;}
.h1f{height:327.738377px;}
.h18{height:341.318797px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:469.349832px;}
.w5{width:476.969724px;}
.w4{width:478.264786px;}
.w3{width:484.346046px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3f{left:8.282888px;}
.x21{left:11.251042px;}
.x3e{left:14.845484px;}
.x20{left:20.064826px;}
.x2b{left:24.000066px;}
.x1f{left:25.009814px;}
.x3c{left:28.333358px;}
.x36{left:32.619079px;}
.x29{left:56.501562px;}
.x1d{left:58.776677px;}
.x1{left:106.415987px;}
.x33{left:108.575987px;}
.x31{left:111.095987px;}
.x16{left:120.815987px;}
.x3{left:136.115987px;}
.x3a{left:140.075987px;}
.x7{left:163.649987px;}
.x34{left:167.069987px;}
.x18{left:170.309987px;}
.x1c{left:204.600000px;}
.x28{left:206.850000px;}
.x35{left:207.975000px;}
.x3b{left:211.350000px;}
.x14{left:219.809987px;}
.x11{left:232.949987px;}
.x13{left:234.749987px;}
.x1b{left:246.629987px;}
.x26{left:257.069987px;}
.x2f{left:286.634987px;}
.x2{left:331.634987px;}
.x15{left:346.214987px;}
.x19{left:349.094987px;}
.x4{left:362.954987px;}
.x37{left:382.336181px;}
.x17{left:387.974987px;}
.x2a{left:398.028415px;}
.x3d{left:404.406260px;}
.x1e{left:417.570792px;}
.x30{left:424.694987px;}
.x41{left:437.775327px;}
.x2d{left:442.548892px;}
.x12{left:446.474987px;}
.x23{left:451.821403px;}
.x40{left:453.975405px;}
.xb{left:457.274987px;}
.x2c{left:459.508916px;}
.x38{left:466.903690px;}
.x22{left:474.838291px;}
.xd{left:487.004987px;}
.xc{left:533.084987px;}
.x9{left:537.944987px;}
.x2e{left:590.504987px;}
.xe{left:643.244987px;}
.xf{left:652.604987px;}
.x27{left:659.084987px;}
.x6{left:665.024987px;}
.x24{left:674.969987px;}
.x10{left:682.169987px;}
.x39{left:683.969987px;}
.x32{left:687.389987px;}
.x25{left:688.469987px;}
.x1a{left:690.629987px;}
.x5{left:692.969987px;}
.x8{left:730.049987px;}
.xa{left:786.749987px;}
@media print{
.v1{vertical-align:-62.826667pt;}
.v2{vertical-align:-61.440000pt;}
.v3{vertical-align:-10.880000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:23.040000pt;}
.v8{vertical-align:26.880000pt;}
.v6{vertical-align:32.000000pt;}
.v5{vertical-align:33.280000pt;}
.ls10{letter-spacing:-2.484282pt;}
.ls15{letter-spacing:-2.347919pt;}
.lsc{letter-spacing:-0.409067pt;}
.ls1a{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.287221pt;}
.ls7{letter-spacing:-0.183467pt;}
.lsf{letter-spacing:-0.183455pt;}
.ls1b{letter-spacing:-0.139333pt;}
.ls8{letter-spacing:-0.094933pt;}
.ls11{letter-spacing:-0.013471pt;}
.lsb{letter-spacing:-0.010240pt;}
.ls6{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.014269pt;}
.ls12{letter-spacing:0.046958pt;}
.ls18{letter-spacing:0.094720pt;}
.ls9{letter-spacing:0.094933pt;}
.ls14{letter-spacing:0.107138pt;}
.lsa{letter-spacing:0.165333pt;}
.ls0{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.456533pt;}
.ls19{letter-spacing:1.872640pt;}
.ls5{letter-spacing:2.053120pt;}
.ls2{letter-spacing:15.359360pt;}
.ls16{letter-spacing:28.091307pt;}
.ls17{letter-spacing:28.112640pt;}
.ls1{letter-spacing:39.178667pt;}
.ls4{letter-spacing:59.909120pt;}
.ls3{letter-spacing:61.361920pt;}
.ws0{word-spacing:-30.094933pt;}
.ws2{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws1{word-spacing:-13.185067pt;}
.ws1f{word-spacing:-12.960000pt;}
.ws12{word-spacing:-12.870933pt;}
.ws1e{word-spacing:-12.546829pt;}
.ws1d{word-spacing:-12.091122pt;}
.ws15{word-spacing:-11.828669pt;}
.ws4{word-spacing:-11.686400pt;}
.ws18{word-spacing:-10.648975pt;}
.ws1a{word-spacing:-9.768616pt;}
.ws11{word-spacing:-8.640000pt;}
.ws8{word-spacing:-8.166400pt;}
.wsf{word-spacing:-8.156160pt;}
.ws19{word-spacing:-8.127379pt;}
.ws23{word-spacing:-7.199039pt;}
.wse{word-spacing:-7.040000pt;}
.ws22{word-spacing:-6.707036pt;}
.ws10{word-spacing:0.000000pt;}
.ws6{word-spacing:3.032960pt;}
.wsc{word-spacing:3.672960pt;}
.wsa{word-spacing:5.719680pt;}
.ws7{word-spacing:6.895360pt;}
.ws5{word-spacing:8.919680pt;}
.wsb{word-spacing:9.455360pt;}
.wsd{word-spacing:9.512960pt;}
.ws9{word-spacing:9.783040pt;}
.ws1c{word-spacing:98.091031pt;}
.ws21{word-spacing:103.154997pt;}
.ws1b{word-spacing:106.663453pt;}
.ws20{word-spacing:111.927981pt;}
.ws17{word-spacing:132.972711pt;}
.ws14{word-spacing:137.692983pt;}
.ws13{word-spacing:146.638276pt;}
.ws16{word-spacing:149.835717pt;}
._1b{margin-left:-5.702712pt;}
._17{margin-left:-3.877760pt;}
._9{margin-left:-2.815360pt;}
._8{margin-left:-1.912320pt;}
._5{margin-left:-1.009280pt;}
._1{width:0.956160pt;}
._2{width:2.317867pt;}
._6{width:3.650987pt;}
._7{width:4.596907pt;}
._4{width:5.736960pt;}
._e{width:6.852480pt;}
._f{width:8.021120pt;}
._a{width:9.030400pt;}
._b{width:10.092800pt;}
._c{width:11.102080pt;}
._d{width:12.323840pt;}
._16{width:14.786347pt;}
._15{width:16.254720pt;}
._1f{width:18.326400pt;}
._1e{width:19.228800pt;}
._21{width:20.451200pt;}
._20{width:21.407360pt;}
._19{width:22.363520pt;}
._27{width:23.904000pt;}
._26{width:30.168960pt;}
._22{width:31.659520pt;}
._23{width:33.556267pt;}
._28{width:37.127680pt;}
._24{width:60.609920pt;}
._25{width:61.689387pt;}
._14{width:115.520000pt;}
._1d{width:123.744913pt;}
._2a{width:130.178097pt;}
._10{width:135.147947pt;}
._12{width:143.759573pt;}
._1c{width:149.654393pt;}
._1a{width:164.090594pt;}
._11{width:175.520000pt;}
._13{width:180.160000pt;}
._18{width:682.533547pt;}
._0{width:709.413547pt;}
._29{width:754.858667pt;}
._3{width:899.877547pt;}
.fs16{font-size:24.126029pt;}
.fs17{font-size:25.895825pt;}
.fsd{font-size:29.235177pt;}
.fsa{font-size:30.359697pt;}
.fs8{font-size:30.573655pt;}
.fsf{font-size:30.908192pt;}
.fs6{font-size:31.592847pt;}
.fs5{font-size:32.000000pt;}
.fs12{font-size:32.275912pt;}
.fs14{font-size:32.650791pt;}
.fs15{font-size:32.668753pt;}
.fs4{font-size:34.560000pt;}
.fse{font-size:35.138908pt;}
.fs3{font-size:37.120000pt;}
.fs9{font-size:42.549168pt;}
.fsb{font-size:42.587681pt;}
.fsc{font-size:42.595902pt;}
.fs10{font-size:43.491216pt;}
.fs11{font-size:43.493246pt;}
.fs7{font-size:44.078609pt;}
.fs13{font-size:45.132480pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y132{bottom:1.691086pt;}
.y8c{bottom:1.769202pt;}
.ye7{bottom:2.206759pt;}
.yb8{bottom:2.368315pt;}
.y8b{bottom:14.317533pt;}
.y131{bottom:14.860725pt;}
.yb7{bottom:18.708323pt;}
.ye6{bottom:19.111037pt;}
.y133{bottom:24.617713pt;}
.y93{bottom:25.337022pt;}
.ye8{bottom:28.411533pt;}
.ybf{bottom:32.763359pt;}
.yf1{bottom:36.206967pt;}
.y94{bottom:36.866638pt;}
.yc0{bottom:40.889773pt;}
.y8d{bottom:46.484737pt;}
.yf2{bottom:48.447491pt;}
.y95{bottom:48.459423pt;}
.yc1{bottom:49.007402pt;}
.yb9{bottom:49.710227pt;}
.y2{bottom:49.920000pt;}
.yc2{bottom:57.122102pt;}
.y96{bottom:60.063355pt;}
.yf3{bottom:60.772358pt;}
.y134{bottom:61.684955pt;}
.y13c{bottom:63.292643pt;}
.ye9{bottom:63.712956pt;}
.yc3{bottom:65.239731pt;}
.y97{bottom:71.656671pt;}
.yf4{bottom:73.013452pt;}
.yc4{bottom:73.357360pt;}
.y13d{bottom:74.094292pt;}
.yc5{bottom:81.474989pt;}
.y3f{bottom:81.600000pt;}
.y59{bottom:82.240000pt;}
.y98{bottom:83.249987pt;}
.yb5{bottom:83.360000pt;}
.y13e{bottom:84.902641pt;}
.yf5{bottom:85.322932pt;}
.yc6{bottom:89.592618pt;}
.y8e{bottom:91.913124pt;}
.yba{bottom:93.493296pt;}
.y99{bottom:94.779603pt;}
.y13f{bottom:95.744482pt;}
.y3e{bottom:96.960000pt;}
.yf6{bottom:97.558327pt;}
.y58{bottom:97.600000pt;}
.yc7{bottom:97.710246pt;}
.y135{bottom:98.715355pt;}
.yb4{bottom:98.720000pt;}
.yea{bottom:98.943143pt;}
.y77{bottom:104.800000pt;}
.yc8{bottom:105.833732pt;}
.y9a{bottom:106.372919pt;}
.y140{bottom:106.542783pt;}
.yf7{bottom:109.884903pt;}
.y3d{bottom:112.320000pt;}
.y57{bottom:112.960000pt;}
.yc9{bottom:113.951361pt;}
.yb3{bottom:114.080000pt;}
.y141{bottom:117.391323pt;}
.y9b{bottom:117.966235pt;}
.y76{bottom:120.160000pt;}
.ye4{bottom:121.760000pt;}
.yca{bottom:122.068990pt;}
.yf8{bottom:122.125997pt;}
.y3c{bottom:127.520000pt;}
.y142{bottom:128.192973pt;}
.y56{bottom:128.320000pt;}
.yb2{bottom:129.440000pt;}
.y9c{bottom:129.559551pt;}
.ycb{bottom:130.151477pt;}
.y75{bottom:132.160000pt;}
.yeb{bottom:134.161933pt;}
.y12f{bottom:134.400000pt;}
.yf9{bottom:134.435477pt;}
.y136{bottom:135.782597pt;}
.ye3{bottom:137.120000pt;}
.ybb{bottom:137.285151pt;}
.y8f{bottom:137.394594pt;}
.ycc{bottom:138.269106pt;}
.y143{bottom:139.034814pt;}
.y9d{bottom:141.089167pt;}
.y3b{bottom:142.906667pt;}
.y55{bottom:143.706667pt;}
.yb1{bottom:144.826667pt;}
.ycd{bottom:146.386735pt;}
.yfa{bottom:146.687969pt;}
.y144{bottom:149.836464pt;}
.y12d{bottom:150.106667pt;}
.ye2{bottom:152.506667pt;}
.y9e{bottom:152.693099pt;}
.yce{bottom:154.504364pt;}
.y3a{bottom:158.266667pt;}
.y54{bottom:158.906667pt;}
.yfb{bottom:158.997449pt;}
.yb0{bottom:160.026667pt;}
.y145{bottom:160.685004pt;}
.ycf{bottom:162.621993pt;}
.y9f{bottom:164.286415pt;}
.ye1{bottom:164.506667pt;}
.y12c{bottom:165.466667pt;}
.ye5{bottom:167.306667pt;}
.yec{bottom:169.460506pt;}
.yd0{bottom:170.745478pt;}
.yfc{bottom:171.238542pt;}
.y146{bottom:171.486654pt;}
.y137{bottom:172.809647pt;}
.y39{bottom:173.626667pt;}
.y53{bottom:174.266667pt;}
.yaf{bottom:175.386667pt;}
.ya0{bottom:175.879731pt;}
.yd1{bottom:178.863107pt;}
.y12b{bottom:180.826667pt;}
.ybc{bottom:181.077006pt;}
.y147{bottom:182.325146pt;}
.y90{bottom:182.822980pt;}
.yfd{bottom:183.548022pt;}
.yd2{bottom:186.980736pt;}
.ya1{bottom:187.473047pt;}
.y38{bottom:188.986667pt;}
.y52{bottom:189.626667pt;}
.yae{bottom:190.746667pt;}
.y148{bottom:193.136844pt;}
.yd3{bottom:195.098365pt;}
.yfe{bottom:195.868900pt;}
.y12a{bottom:196.186667pt;}
.ya2{bottom:199.002663pt;}
.yad{bottom:202.906667pt;}
.yd4{bottom:203.213065pt;}
.y149{bottom:203.975337pt;}
.y37{bottom:204.346667pt;}
.yed{bottom:204.690694pt;}
.y51{bottom:204.986667pt;}
.yff{bottom:208.109994pt;}
.y138{bottom:209.880238pt;}
.ya3{bottom:210.595979pt;}
.yd5{bottom:211.330694pt;}
.y129{bottom:211.546667pt;}
.y14a{bottom:214.776986pt;}
.yd6{bottom:219.448323pt;}
.y36{bottom:219.546667pt;}
.y50{bottom:220.346667pt;}
.y100{bottom:220.419474pt;}
.ya4{bottom:222.189294pt;}
.ybd{bottom:224.860075pt;}
.y14b{bottom:225.578636pt;}
.y128{bottom:226.746667pt;}
.yd7{bottom:227.530810pt;}
.y91{bottom:228.240750pt;}
.ybe{bottom:232.169455pt;}
.y101{bottom:232.660567pt;}
.ya5{bottom:233.793227pt;}
.y35{bottom:234.906667pt;}
.yd8{bottom:235.648439pt;}
.y4f{bottom:235.706667pt;}
.yee{bottom:239.989267pt;}
.y127{bottom:242.106667pt;}
.y102{bottom:244.981445pt;}
.y92{bottom:246.787932pt;}
.y139{bottom:246.907288pt;}
.y14c{bottom:249.034125pt;}
.y34{bottom:250.266667pt;}
.y4e{bottom:250.906667pt;}
.y103{bottom:257.222539pt;}
.y126{bottom:257.466667pt;}
.ya6{bottom:259.655239pt;}
.y13b{bottom:262.203764pt;}
.yd9{bottom:262.326505pt;}
.y33{bottom:265.626667pt;}
.y4d{bottom:266.266667pt;}
.y125{bottom:272.826667pt;}
.yef{bottom:275.208057pt;}
.yf0{bottom:276.028689pt;}
.y82{bottom:278.106667pt;}
.y32{bottom:280.986667pt;}
.y4c{bottom:281.946667pt;}
.y13a{bottom:283.974531pt;}
.y89{bottom:284.986667pt;}
.y124{bottom:288.186667pt;}
.y104{bottom:293.136586pt;}
.y81{bottom:293.466667pt;}
.y31{bottom:296.186667pt;}
.y4b{bottom:297.306667pt;}
.y88{bottom:300.346667pt;}
.y123{bottom:303.386667pt;}
.y30{bottom:311.546667pt;}
.y87{bottom:312.506667pt;}
.y4a{bottom:312.826667pt;}
.y8a{bottom:315.560000pt;}
.y122{bottom:318.746667pt;}
.y49{bottom:325.306667pt;}
.y2f{bottom:326.906667pt;}
.y46{bottom:332.026667pt;}
.y121{bottom:334.106667pt;}
.y48{bottom:336.986667pt;}
.y2e{bottom:342.266667pt;}
.y47{bottom:344.346667pt;}
.y120{bottom:349.466667pt;}
.y45{bottom:353.466667pt;}
.y2d{bottom:357.626667pt;}
.y11f{bottom:364.866667pt;}
.y44{bottom:368.706667pt;}
.y2c{bottom:373.026667pt;}
.y11e{bottom:380.226667pt;}
.y43{bottom:385.666667pt;}
.y2b{bottom:388.226667pt;}
.y11d{bottom:395.426667pt;}
.y74{bottom:397.506667pt;}
.y42{bottom:401.506667pt;}
.y2a{bottom:403.586667pt;}
.y11c{bottom:410.786667pt;}
.y73{bottom:412.866667pt;}
.y41{bottom:418.466667pt;}
.y29{bottom:418.946667pt;}
.y72{bottom:425.026667pt;}
.y11b{bottom:426.146667pt;}
.y28{bottom:434.306667pt;}
.y11a{bottom:441.506667pt;}
.yac{bottom:442.146667pt;}
.y27{bottom:449.666667pt;}
.y119{bottom:456.866667pt;}
.yab{bottom:457.506667pt;}
.y26{bottom:464.706667pt;}
.y40{bottom:465.026667pt;}
.yaa{bottom:469.666667pt;}
.yb6{bottom:471.426667pt;}
.y118{bottom:472.226667pt;}
.ye0{bottom:475.746667pt;}
.y25{bottom:479.906667pt;}
.y117{bottom:487.426667pt;}
.ydf{bottom:491.106667pt;}
.y24{bottom:495.586667pt;}
.y116{bottom:502.786667pt;}
.yde{bottom:506.466667pt;}
.y23{bottom:510.946667pt;}
.y115{bottom:518.146667pt;}
.ydd{bottom:518.626667pt;}
.y22{bottom:525.986667pt;}
.y114{bottom:533.506667pt;}
.y21{bottom:541.666667pt;}
.y113{bottom:548.866667pt;}
.y20{bottom:557.026667pt;}
.y112{bottom:564.226667pt;}
.y80{bottom:568.866667pt;}
.y1f{bottom:572.226667pt;}
.y111{bottom:579.453333pt;}
.y7f{bottom:584.253333pt;}
.y1e{bottom:587.613333pt;}
.y110{bottom:594.813333pt;}
.y86{bottom:595.773333pt;}
.y7e{bottom:599.453333pt;}
.y1d{bottom:602.973333pt;}
.y10f{bottom:610.173333pt;}
.y85{bottom:610.973333pt;}
.y7d{bottom:614.813333pt;}
.y1c{bottom:618.333333pt;}
.y10e{bottom:625.533333pt;}
.y84{bottom:626.333333pt;}
.y7c{bottom:630.173333pt;}
.y1b{bottom:633.693333pt;}
.y10d{bottom:640.893333pt;}
.y7b{bottom:645.533333pt;}
.y1a{bottom:648.893333pt;}
.y10c{bottom:656.093333pt;}
.y7a{bottom:660.893333pt;}
.y19{bottom:664.253333pt;}
.y10b{bottom:671.453333pt;}
.y79{bottom:676.253333pt;}
.y18{bottom:679.613333pt;}
.y10a{bottom:686.813333pt;}
.y78{bottom:691.453333pt;}
.y17{bottom:694.973333pt;}
.y109{bottom:701.853333pt;}
.y12e{bottom:702.173333pt;}
.y70{bottom:706.813333pt;}
.y16{bottom:710.333333pt;}
.y108{bottom:717.213333pt;}
.y6f{bottom:722.173333pt;}
.y15{bottom:725.693333pt;}
.y107{bottom:732.893333pt;}
.y6e{bottom:737.533333pt;}
.y14{bottom:740.893333pt;}
.ya9{bottom:746.813333pt;}
.y106{bottom:748.093333pt;}
.y6d{bottom:752.893333pt;}
.y13{bottom:756.253333pt;}
.ydc{bottom:757.853333pt;}
.y105{bottom:760.253333pt;}
.ya8{bottom:762.173333pt;}
.y130{bottom:763.040000pt;}
.y6c{bottom:768.253333pt;}
.y12{bottom:771.613333pt;}
.ydb{bottom:773.213333pt;}
.ya7{bottom:774.333333pt;}
.y6b{bottom:783.453333pt;}
.yda{bottom:785.373333pt;}
.y11{bottom:786.973333pt;}
.y6a{bottom:798.853333pt;}
.y10{bottom:802.373333pt;}
.y69{bottom:814.213333pt;}
.yf{bottom:817.413333pt;}
.y68{bottom:829.573333pt;}
.ye{bottom:832.933333pt;}
.y67{bottom:844.933333pt;}
.yd{bottom:848.293333pt;}
.y83{bottom:852.133333pt;}
.y66{bottom:860.293333pt;}
.yc{bottom:863.653333pt;}
.y65{bottom:875.493333pt;}
.yb{bottom:879.013333pt;}
.y64{bottom:890.853333pt;}
.ya{bottom:894.373333pt;}
.y63{bottom:906.213333pt;}
.y9{bottom:909.413333pt;}
.y62{bottom:921.573333pt;}
.y8{bottom:924.933333pt;}
.y61{bottom:936.933333pt;}
.y7{bottom:940.293333pt;}
.y60{bottom:952.133333pt;}
.y6{bottom:955.333333pt;}
.y5f{bottom:967.493333pt;}
.y5e{bottom:982.853333pt;}
.y5{bottom:986.053333pt;}
.y5d{bottom:998.213333pt;}
.y5c{bottom:1013.573333pt;}
.y4{bottom:1016.960000pt;}
.y5b{bottom:1028.960000pt;}
.y3{bottom:1034.560000pt;}
.y5a{bottom:1043.840000pt;}
.y71{bottom:1044.160000pt;}
.y1{bottom:1062.560000pt;}
.h22{height:25.162694pt;}
.h9{height:26.968750pt;}
.h23{height:27.008536pt;}
.h16{height:30.491377pt;}
.hd{height:31.006652pt;}
.h13{height:31.664216pt;}
.hf{height:31.887366pt;}
.h19{height:32.236279pt;}
.hc{height:32.950352pt;}
.h1c{height:33.662768pt;}
.h20{height:34.053755pt;}
.h21{height:34.072488pt;}
.h17{height:36.648782pt;}
.h14{height:41.797480pt;}
.h15{height:41.805552pt;}
.h10{height:44.377452pt;}
.h1a{height:45.359979pt;}
.h1b{height:45.362096pt;}
.he{height:45.972612pt;}
.h1d{height:47.071766pt;}
.h3{height:47.109375pt;}
.h11{height:48.477187pt;}
.h7{height:52.108438pt;}
.h5{height:52.134375pt;}
.h2{height:52.834688pt;}
.h6{height:53.535000pt;}
.h1e{height:54.598989pt;}
.h8{height:64.563750pt;}
.h4{height:72.843750pt;}
.ha{height:79.014375pt;}
.h12{height:270.268427pt;}
.hb{height:275.006827pt;}
.h1f{height:291.323002pt;}
.h18{height:303.394486pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:417.199851pt;}
.w5{width:423.973088pt;}
.w4{width:425.124254pt;}
.w3{width:430.529819pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3f{left:7.362567pt;}
.x21{left:10.000926pt;}
.x3e{left:13.195986pt;}
.x20{left:17.835401pt;}
.x2b{left:21.333392pt;}
.x1f{left:22.230946pt;}
.x3c{left:25.185208pt;}
.x36{left:28.994737pt;}
.x29{left:50.223611pt;}
.x1d{left:52.245935pt;}
.x1{left:94.591988pt;}
.x33{left:96.511988pt;}
.x31{left:98.751988pt;}
.x16{left:107.391988pt;}
.x3{left:120.991988pt;}
.x3a{left:124.511988pt;}
.x7{left:145.466655pt;}
.x34{left:148.506655pt;}
.x18{left:151.386655pt;}
.x1c{left:181.866667pt;}
.x28{left:183.866667pt;}
.x35{left:184.866667pt;}
.x3b{left:187.866667pt;}
.x14{left:195.386655pt;}
.x11{left:207.066655pt;}
.x13{left:208.666655pt;}
.x1b{left:219.226655pt;}
.x26{left:228.506655pt;}
.x2f{left:254.786655pt;}
.x2{left:294.786655pt;}
.x15{left:307.746655pt;}
.x19{left:310.306655pt;}
.x4{left:322.626655pt;}
.x37{left:339.854384pt;}
.x17{left:344.866655pt;}
.x2a{left:353.803036pt;}
.x3d{left:359.472231pt;}
.x1e{left:371.174037pt;}
.x30{left:377.506655pt;}
.x41{left:389.133624pt;}
.x2d{left:393.376793pt;}
.x12{left:396.866655pt;}
.x23{left:401.619025pt;}
.x40{left:403.533693pt;}
.xb{left:406.466655pt;}
.x2c{left:408.452370pt;}
.x38{left:415.025502pt;}
.x22{left:422.078481pt;}
.xd{left:432.893322pt;}
.xc{left:473.853322pt;}
.x9{left:478.173322pt;}
.x2e{left:524.893322pt;}
.xe{left:571.773322pt;}
.xf{left:580.093322pt;}
.x27{left:585.853322pt;}
.x6{left:591.133322pt;}
.x24{left:599.973322pt;}
.x10{left:606.373322pt;}
.x39{left:607.973322pt;}
.x32{left:611.013322pt;}
.x25{left:611.973322pt;}
.x1a{left:613.893322pt;}
.x5{left:615.973322pt;}
.x8{left:648.933322pt;}
.xa{left:699.333322pt;}
}




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