
    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_f74489a21e61f6e5825dc89a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_94907311124b08c7834eb137.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5ac29e1e1103119b8315e661.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895996;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_451c23082a5a4d7b9145225f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ca7955b5af844b3956782d66.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f37f4c2b04c42f976adefb14.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_ef68bd70bda77f72a98a2f55.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.740234;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_b94b18c1db58776569923ec6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.866699;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_607a9e8f10e2252719d61117.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.856934;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_8d5feafd131bfe92ad6be5bc.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.861328;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_ecf5d31fa5e548aba33b2dcd.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_eb15bed723ab9b40b1445276.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;}
.m0{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m7{transform:matrix(0.374170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374170,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-4.319998px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.009894px;}
.ls5{letter-spacing:0.018600px;}
.lsc{letter-spacing:0.019560px;}
.ls1{letter-spacing:0.019699px;}
.ls10{letter-spacing:0.021238px;}
.lsf{letter-spacing:0.021282px;}
.ls7{letter-spacing:0.189300px;}
.ls8{letter-spacing:5.225758px;}
.lsa{letter-spacing:21.614391px;}
.ls6{letter-spacing:25.374618px;}
.lse{letter-spacing:33.295427px;}
.lsb{letter-spacing:34.015846px;}
.lsd{letter-spacing:54.908378px;}
.ls3{letter-spacing:56.203490px;}
.ls4{letter-spacing:139.053001px;}
.ls0{letter-spacing:1342.171985px;}
.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;}
}
.ws3{word-spacing:-32.418587px;}
.ws4{word-spacing:-32.399987px;}
.ws6{word-spacing:-21.059992px;}
.wsb{word-spacing:-18.021231px;}
.ws9{word-spacing:-17.999993px;}
.ws0{word-spacing:-16.579693px;}
.ws1{word-spacing:-16.559993px;}
.ws2{word-spacing:-15.011994px;}
.ws5{word-spacing:-14.939994px;}
.ws7{word-spacing:-13.505755px;}
.wsa{word-spacing:-12.059995px;}
.ws8{word-spacing:0.000000px;}
._16{margin-left:-4.455781px;}
._2{margin-left:-2.695651px;}
._1{margin-left:-1.128624px;}
._0{width:1.013430px;}
._a{width:2.018419px;}
._9{width:3.220669px;}
._4{width:4.668936px;}
._17{width:5.687758px;}
._3{width:6.693160px;}
._c{width:7.791035px;}
._6{width:9.109827px;}
._5{width:10.123497px;}
._8{width:11.351964px;}
._7{width:12.536401px;}
._10{width:14.188781px;}
._14{width:15.270702px;}
._e{width:17.019102px;}
._d{width:18.227294px;}
._15{width:19.723691px;}
._18{width:21.293357px;}
._b{width:22.490211px;}
._19{width:23.532849px;}
._1a{width:24.607403px;}
._f{width:25.821551px;}
._1d{width:27.446926px;}
._1b{width:30.400772px;}
._1c{width:31.838194px;}
._27{width:34.651302px;}
._23{width:39.916710px;}
._24{width:40.945112px;}
._11{width:49.494287px;}
._12{width:50.777102px;}
._26{width:63.966572px;}
._13{width:69.426707px;}
._25{width:86.951608px;}
._1f{width:409.087674px;}
._21{width:424.395712px;}
._1e{width:460.626632px;}
._22{width:512.518053px;}
._20{width:513.938636px;}
.fc0{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fc9{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc8{color:rgb(44,62,80);}
.fc4{color:rgb(192,0,0);}
.fc5{color:rgb(0,112,192);}
.fcb{color:rgb(0,176,80);}
.fc3{color:rgb(31,73,124);}
.fc6{color:rgb(227,108,10);}
.fcd{color:transparent;}
.fc7{color:rgb(0,32,96);}
.fca{color:rgb(0,0,255);}
.fcc{color:rgb(112,48,160);}
.fs6{font-size:9.359996px;}
.fs7{font-size:45.359982px;}
.fs5{font-size:48.239981px;}
.fs8{font-size:51.119980px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs4{font-size:71.999971px;}
.fs3{font-size:84.239966px;}
.y0{bottom:0.000000px;}
.yca{bottom:1.979192px;}
.ycd{bottom:2.159187px;}
.ybf{bottom:2.339164px;}
.yd2{bottom:2.339211px;}
.yc4{bottom:2.519197px;}
.ybd{bottom:2.879158px;}
.yc7{bottom:2.879180px;}
.yd0{bottom:2.879205px;}
.y47{bottom:3.238971px;}
.y3b{bottom:3.239272px;}
.y130{bottom:3.959203px;}
.ya{bottom:3.960038px;}
.y14{bottom:4.319051px;}
.yb{bottom:32.700287px;}
.y9{bottom:50.700240px;}
.y7{bottom:54.660278px;}
.y8{bottom:55.740278px;}
.yba{bottom:105.779958px;}
.y44{bottom:107.759957px;}
.y141{bottom:108.479957px;}
.y16e{bottom:109.379956px;}
.y102{bottom:111.899955px;}
.y7b{bottom:114.779954px;}
.yb9{bottom:126.479949px;}
.y43{bottom:128.459949px;}
.y140{bottom:129.179948px;}
.y16d{bottom:130.079948px;}
.y101{bottom:132.599947px;}
.y7a{bottom:135.479946px;}
.y9e{bottom:136.379945px;}
.y5{bottom:140.339944px;}
.yb8{bottom:147.179941px;}
.y42{bottom:149.159940px;}
.y13f{bottom:149.879940px;}
.y16c{bottom:150.779940px;}
.y100{bottom:153.479939px;}
.y79{bottom:156.539937px;}
.y9d{bottom:157.079937px;}
.yb7{bottom:167.879933px;}
.y41{bottom:169.859932px;}
.y13e{bottom:170.579932px;}
.y16b{bottom:171.479931px;}
.y121{bottom:172.379931px;}
.yff{bottom:174.179930px;}
.y78{bottom:177.239929px;}
.y9c{bottom:177.779929px;}
.yb6{bottom:188.579925px;}
.y40{bottom:190.559924px;}
.y13d{bottom:191.279923px;}
.y16a{bottom:192.179923px;}
.y120{bottom:193.079923px;}
.yfe{bottom:194.879922px;}
.y77{bottom:198.299921px;}
.y9b{bottom:198.479921px;}
.yb5{bottom:209.279916px;}
.y3f{bottom:211.259915px;}
.y13c{bottom:211.979915px;}
.y169{bottom:212.879915px;}
.y11f{bottom:213.779914px;}
.yfd{bottom:215.579914px;}
.y76{bottom:218.999912px;}
.y9a{bottom:219.179912px;}
.yb4{bottom:229.979908px;}
.y3e{bottom:231.959907px;}
.y13b{bottom:232.679907px;}
.y168{bottom:233.579907px;}
.y11e{bottom:234.479906px;}
.yfc{bottom:236.279905px;}
.y75{bottom:239.699904px;}
.y99{bottom:239.879904px;}
.yb3{bottom:250.679900px;}
.y13a{bottom:253.379899px;}
.y167{bottom:254.279898px;}
.y11d{bottom:255.179898px;}
.yfb{bottom:256.979897px;}
.y74{bottom:260.399896px;}
.y98{bottom:260.579896px;}
.yb2{bottom:271.379891px;}
.y3d{bottom:274.079890px;}
.y166{bottom:274.979890px;}
.y11c{bottom:275.879890px;}
.yfa{bottom:277.499889px;}
.y73{bottom:281.099888px;}
.y97{bottom:281.279887px;}
.yb1{bottom:292.079883px;}
.y139{bottom:294.779882px;}
.y165{bottom:295.679882px;}
.y11b{bottom:296.579881px;}
.y3c{bottom:296.939881px;}
.yf9{bottom:298.379881px;}
.y72{bottom:301.979879px;}
.yb0{bottom:312.779875px;}
.y138{bottom:315.479874px;}
.y3a{bottom:315.660600px;}
.y164{bottom:316.379873px;}
.y11a{bottom:317.279873px;}
.yf8{bottom:319.079872px;}
.y96{bottom:322.679871px;}
.yaf{bottom:333.479867px;}
.y39{bottom:335.999866px;}
.y137{bottom:336.179866px;}
.y163{bottom:337.079865px;}
.y119{bottom:339.779864px;}
.yf7{bottom:339.959864px;}
.y95{bottom:343.559863px;}
.y71{bottom:343.919862px;}
.yae{bottom:354.539858px;}
.y162{bottom:357.779857px;}
.y136{bottom:358.679857px;}
.yf6{bottom:360.299856px;}
.y118{bottom:360.479856px;}
.y94{bottom:364.619854px;}
.y70{bottom:367.679853px;}
.y4d{bottom:372.719851px;}
.yad{bottom:374.879850px;}
.y161{bottom:378.479849px;}
.y135{bottom:379.559848px;}
.y117{bottom:381.719847px;}
.yf5{bottom:382.439847px;}
.y93{bottom:385.319846px;}
.y6f{bottom:388.739845px;}
.y4c{bottom:390.899844px;}
.yac{bottom:395.759842px;}
.y160{bottom:399.179840px;}
.y116{bottom:402.419839px;}
.yf4{bottom:402.779839px;}
.y20{bottom:405.659838px;}
.y92{bottom:406.019838px;}
.y4b{bottom:409.079836px;}
.y6e{bottom:409.439836px;}
.yab{bottom:414.659834px;}
.y15f{bottom:419.879832px;}
.y115{bottom:423.119831px;}
.yf3{bottom:424.739830px;}
.y91{bottom:426.719829px;}
.y4a{bottom:427.439829px;}
.y6d{bottom:430.139828px;}
.y133{bottom:432.659827px;}
.y134{bottom:432.839827px;}
.yaa{bottom:433.559827px;}
.y15e{bottom:440.579824px;}
.yf2{bottom:446.159822px;}
.y90{bottom:447.419821px;}
.y6c{bottom:450.839820px;}
.y132{bottom:453.359819px;}
.y15d{bottom:461.279815px;}
.y38{bottom:463.619815px;}
.yf1{bottom:466.859813px;}
.y8f{bottom:468.119813px;}
.yd1{bottom:471.180600px;}
.y131{bottom:471.359811px;}
.y6b{bottom:471.539811px;}
.y37{bottom:480.899808px;}
.y15c{bottom:481.979807px;}
.ycf{bottom:485.220600px;}
.yf0{bottom:487.559805px;}
.y12f{bottom:487.920600px;}
.yce{bottom:488.099805px;}
.y8e{bottom:488.819804px;}
.y6a{bottom:492.239803px;}
.y36{bottom:497.999801px;}
.y15b{bottom:502.679799px;}
.yc3{bottom:505.020600px;}
.yef{bottom:508.439797px;}
.y8d{bottom:509.519796px;}
.y12e{bottom:511.679795px;}
.y69{bottom:512.939795px;}
.y179{bottom:513.839794px;}
.y35{bottom:515.279794px;}
.yc9{bottom:517.800600px;}
.yc2{bottom:523.019791px;}
.y15a{bottom:523.379791px;}
.yee{bottom:529.139788px;}
.y12d{bottom:529.859788px;}
.y8c{bottom:530.219788px;}
.ycc{bottom:530.580600px;}
.y68{bottom:533.639787px;}
.yc8{bottom:534.719786px;}
.y34{bottom:536.339785px;}
.yc1{bottom:538.319785px;}
.y1f{bottom:542.819783px;}
.y159{bottom:544.079782px;}
.yc6{bottom:546.780600px;}
.ycb{bottom:547.319781px;}
.y12c{bottom:548.579781px;}
.yc5{bottom:549.659780px;}
.yed{bottom:550.199780px;}
.y8b{bottom:550.919780px;}
.y33{bottom:553.619779px;}
.y158{bottom:564.779774px;}
.yc0{bottom:565.499774px;}
.y32{bottom:570.719772px;}
.yec{bottom:570.899772px;}
.y8a{bottom:571.619771px;}
.y67{bottom:572.339771px;}
.y157{bottom:585.479766px;}
.y31{bottom:587.999765px;}
.ybe{bottom:588.180600px;}
.yeb{bottom:591.599763px;}
.y89{bottom:592.319763px;}
.y66{bottom:593.039763px;}
.ybc{bottom:602.580600px;}
.y30{bottom:605.279758px;}
.ybb{bottom:605.459758px;}
.y156{bottom:606.179758px;}
.y12b{bottom:612.299755px;}
.yea{bottom:612.659755px;}
.y178{bottom:613.019755px;}
.y88{bottom:613.199755px;}
.y65{bottom:613.739755px;}
.y2f{bottom:622.559751px;}
.ya9{bottom:627.059749px;}
.y1e{bottom:629.939748px;}
.ye9{bottom:633.359747px;}
.y177{bottom:633.719747px;}
.ya8{bottom:633.899746px;}
.y87{bottom:634.259746px;}
.y64{bottom:634.439746px;}
.y2e{bottom:639.839744px;}
.y155{bottom:648.119741px;}
.ye8{bottom:654.059738px;}
.y176{bottom:654.419738px;}
.ya7{bottom:654.599738px;}
.y86{bottom:654.959738px;}
.y63{bottom:655.139738px;}
.y2d{bottom:657.119737px;}
.y1d{bottom:664.679734px;}
.y154{bottom:671.699731px;}
.y2c{bottom:674.219730px;}
.ye7{bottom:674.759730px;}
.y175{bottom:675.119730px;}
.ya6{bottom:675.299730px;}
.y85{bottom:675.659730px;}
.y62{bottom:675.839730px;}
.y1c{bottom:679.979728px;}
.y2b{bottom:691.499723px;}
.y153{bottom:692.939723px;}
.y1b{bottom:695.279722px;}
.ye6{bottom:695.459722px;}
.y174{bottom:695.819722px;}
.ya5{bottom:695.999722px;}
.y84{bottom:696.359721px;}
.y61{bottom:696.539721px;}
.y12a{bottom:700.859720px;}
.y2a{bottom:708.779716px;}
.y1a{bottom:709.319716px;}
.y152{bottom:713.639715px;}
.ye5{bottom:716.159714px;}
.y173{bottom:716.519713px;}
.ya4{bottom:716.879713px;}
.y83{bottom:717.059713px;}
.y60{bottom:717.239713px;}
.y129{bottom:721.559711px;}
.y29{bottom:726.059710px;}
.y114{bottom:726.959709px;}
.y151{bottom:734.519706px;}
.ye4{bottom:736.859705px;}
.y172{bottom:737.219705px;}
.y82{bottom:737.759705px;}
.y5f{bottom:737.939705px;}
.y128{bottom:742.259703px;}
.y19{bottom:742.799703px;}
.y28{bottom:743.339703px;}
.y113{bottom:755.399698px;}
.ye3{bottom:757.559697px;}
.y81{bottom:758.459697px;}
.y5e{bottom:758.639697px;}
.ya3{bottom:758.819696px;}
.y27{bottom:760.619696px;}
.y127{bottom:762.959695px;}
.y171{bottom:763.499695px;}
.y112{bottom:773.399691px;}
.y18{bottom:776.279689px;}
.y26{bottom:777.719689px;}
.ye2{bottom:778.259689px;}
.y80{bottom:779.159688px;}
.y5d{bottom:779.339688px;}
.y150{bottom:781.319687px;}
.ya2{bottom:782.039687px;}
.y126{bottom:783.659687px;}
.y170{bottom:784.379686px;}
.y111{bottom:794.279682px;}
.y25{bottom:794.999682px;}
.ye1{bottom:799.139680px;}
.y7f{bottom:799.859680px;}
.y5c{bottom:800.039680px;}
.y14f{bottom:802.019679px;}
.ya1{bottom:803.099679px;}
.y16f{bottom:805.439678px;}
.y125{bottom:806.159678px;}
.y17{bottom:809.939676px;}
.y24{bottom:812.279675px;}
.ye0{bottom:820.019672px;}
.y110{bottom:820.379672px;}
.y7e{bottom:820.559672px;}
.ya0{bottom:821.999671px;}
.y14e{bottom:822.719671px;}
.y16{bottom:825.419670px;}
.y5b{bottom:826.139670px;}
.y124{bottom:826.859669px;}
.y23{bottom:829.559668px;}
.y10f{bottom:840.899664px;}
.ydf{bottom:841.079664px;}
.y14d{bottom:843.419663px;}
.y21{bottom:845.399662px;}
.y7d{bottom:846.659661px;}
.y22{bottom:846.839661px;}
.y123{bottom:848.099661px;}
.y15{bottom:849.539660px;}
.y10e{bottom:861.599655px;}
.y14c{bottom:864.119654px;}
.yde{bottom:867.179653px;}
.y7c{bottom:867.359653px;}
.y5a{bottom:867.539653px;}
.y13{bottom:868.440600px;}
.y122{bottom:868.799652px;}
.y12{bottom:872.759651px;}
.y10d{bottom:882.479647px;}
.y14b{bottom:884.819646px;}
.ydd{bottom:887.879645px;}
.y59{bottom:888.239645px;}
.y11{bottom:892.019643px;}
.y10c{bottom:903.539639px;}
.y14a{bottom:905.519638px;}
.ydc{bottom:908.579637px;}
.y58{bottom:908.939636px;}
.y10{bottom:913.799634px;}
.y10b{bottom:924.239630px;}
.y149{bottom:926.219630px;}
.ydb{bottom:929.279628px;}
.y57{bottom:929.639628px;}
.yf{bottom:932.699627px;}
.y10a{bottom:944.939622px;}
.y148{bottom:946.919621px;}
.yda{bottom:949.979620px;}
.y56{bottom:950.339620px;}
.ye{bottom:951.599619px;}
.y109{bottom:965.639614px;}
.y147{bottom:967.619613px;}
.yd9{bottom:970.679612px;}
.y55{bottom:971.039612px;}
.y108{bottom:986.339605px;}
.y146{bottom:988.319605px;}
.yd8{bottom:991.379603px;}
.y54{bottom:991.739603px;}
.yd{bottom:992.279603px;}
.y107{bottom:1007.039597px;}
.y145{bottom:1009.019596px;}
.yd7{bottom:1012.079595px;}
.y53{bottom:1012.439595px;}
.yc{bottom:1016.399593px;}
.y106{bottom:1027.739589px;}
.y144{bottom:1029.719588px;}
.yd6{bottom:1032.779587px;}
.y52{bottom:1033.139587px;}
.y105{bottom:1048.439581px;}
.y143{bottom:1050.419580px;}
.yd5{bottom:1053.479579px;}
.y51{bottom:1053.839578px;}
.y48{bottom:1055.999578px;}
.y46{bottom:1070.040600px;}
.y104{bottom:1070.939572px;}
.y142{bottom:1071.119572px;}
.yd4{bottom:1074.179570px;}
.y50{bottom:1074.539570px;}
.y4f{bottom:1095.239562px;}
.y45{bottom:1109.099556px;}
.y49{bottom:1110.539556px;}
.y103{bottom:1113.059555px;}
.y4e{bottom:1115.939554px;}
.yd3{bottom:1116.119554px;}
.y9f{bottom:1118.639553px;}
.y4{bottom:1136.459545px;}
.y6{bottom:1163.999534px;}
.y3{bottom:1167.599533px;}
.y2{bottom:1184.879526px;}
.y1{bottom:1202.159519px;}
.h16{height:6.503552px;}
.h1c{height:12.780000px;}
.h1d{height:12.960000px;}
.h18{height:13.140000px;}
.h1b{height:13.320000px;}
.h17{height:13.680000px;}
.h19{height:14.040000px;}
.h10{height:16.560000px;}
.h13{height:16.740000px;}
.h1f{height:18.000000px;}
.h5{height:18.720000px;}
.hb{height:19.620000px;}
.h1a{height:30.232605px;}
.hd{height:33.518307px;}
.h20{height:35.519400px;}
.h3{height:36.597642px;}
.hf{height:36.624009px;}
.h4{height:37.520493px;}
.he{height:39.313461px;}
.h14{height:40.501390px;}
.ha{height:41.493499px;}
.h1{height:41.522679px;}
.h6{height:42.894123px;}
.h8{height:44.893107px;}
.h9{height:45.992794px;}
.h2{height:46.025138px;}
.h12{height:48.796855px;}
.h15{height:49.992168px;}
.hc{height:50.027324px;}
.h1e{height:52.417948px;}
.h7{height:57.092321px;}
.h11{height:61.328999px;}
.h0{height:1263.000000px;}
.w10{width:2.340000px;}
.w11{width:2.880000px;}
.wc{width:3.060000px;}
.w7{width:3.600000px;}
.w14{width:3.780000px;}
.we{width:3.960000px;}
.w12{width:4.140000px;}
.w3{width:4.320000px;}
.w2{width:4.860000px;}
.wa{width:5.220000px;}
.w9{width:5.400000px;}
.w5{width:7.560000px;}
.w1a{width:7.740000px;}
.w18{width:7.920000px;}
.w16{width:8.280000px;}
.w19{width:8.640000px;}
.w4{width:9.000000px;}
.w17{width:15.840000px;}
.w1b{width:16.200000px;}
.wb{width:29.340000px;}
.w15{width:38.520000px;}
.w13{width:40.500000px;}
.wf{width:47.340000px;}
.w8{width:47.520000px;}
.wd{width:63.000000px;}
.w6{width:437.220000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x4{left:99.359960px;}
.x1{left:100.439960px;}
.x19{left:107.999957px;}
.xd{left:110.159956px;}
.x8{left:111.959955px;}
.x22{left:114.471854px;}
.x4d{left:117.540000px;}
.x11{left:122.759939px;}
.x5{left:124.019950px;}
.x10{left:125.819950px;}
.x48{left:132.839921px;}
.x35{left:135.000183px;}
.xb{left:138.051845px;}
.x13{left:147.779941px;}
.x47{left:152.099939px;}
.x36{left:154.079938px;}
.x4e{left:158.040000px;}
.x20{left:161.819663px;}
.x12{left:165.959934px;}
.x4f{left:200.340000px;}
.x37{left:214.199914px;}
.x38{left:225.719910px;}
.x21{left:226.800059px;}
.x50{left:240.480000px;}
.x1b{left:245.520000px;}
.x1a{left:248.759900px;}
.x14{left:249.839910px;}
.x15{left:250.919900px;}
.x51{left:256.320000px;}
.x9{left:258.479713px;}
.x29{left:260.100000px;}
.x16{left:268.199903px;}
.x27{left:273.599891px;}
.x28{left:275.219890px;}
.x39{left:285.299886px;}
.x2a{left:289.440000px;}
.x2b{left:292.500000px;}
.x18{left:307.081371px;}
.x3a{left:313.199875px;}
.x17{left:314.639874px;}
.x1f{left:320.939872px;}
.x1c{left:324.719870px;}
.xc{left:334.620148px;}
.x2c{left:355.500000px;}
.xe{left:368.640000px;}
.xf{left:372.960000px;}
.x52{left:375.300000px;}
.x53{left:383.040000px;}
.x4a{left:388.259822px;}
.x49{left:389.879827px;}
.x54{left:391.140000px;}
.x55{left:398.880000px;}
.x46{left:400.679715px;}
.x3b{left:402.479839px;}
.xa{left:409.132336px;}
.x3c{left:413.810834px;}
.x30{left:418.320000px;}
.x2d{left:421.199832px;}
.x6{left:424.619830px;}
.x2f{left:427.319829px;}
.x2{left:438.839824px;}
.x2e{left:462.600000px;}
.x31{left:465.660000px;}
.x3d{left:504.539798px;}
.x3e{left:515.879794px;}
.x56{left:518.040000px;}
.x4b{left:525.959723px;}
.x23{left:531.539787px;}
.x57{left:533.880000px;}
.x32{left:535.680000px;}
.x25{left:538.920000px;}
.x4c{left:540.359710px;}
.x3f{left:580.859768px;}
.x33{left:583.200000px;}
.x34{left:584.640000px;}
.x26{left:586.440000px;}
.x1d{left:590.039764px;}
.x24{left:593.100000px;}
.x40{left:606.239758px;}
.x41{left:617.759753px;}
.x42{left:639.719744px;}
.x43{left:651.059740px;}
.x58{left:666.180000px;}
.x3{left:678.419729px;}
.x59{left:682.200000px;}
.x5b{left:688.859724px;}
.x1e{left:690.839709px;}
.x5a{left:706.680000px;}
.x44{left:721.979711px;}
.x45{left:733.499707px;}
.x7{left:788.940000px;}
@media print{
.v1{vertical-align:-3.839998pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.008794pt;}
.ls5{letter-spacing:0.016533pt;}
.lsc{letter-spacing:0.017387pt;}
.ls1{letter-spacing:0.017510pt;}
.ls10{letter-spacing:0.018878pt;}
.lsf{letter-spacing:0.018917pt;}
.ls7{letter-spacing:0.168267pt;}
.ls8{letter-spacing:4.645118pt;}
.lsa{letter-spacing:19.212792pt;}
.ls6{letter-spacing:22.555216pt;}
.lse{letter-spacing:29.595935pt;}
.lsb{letter-spacing:30.236308pt;}
.lsd{letter-spacing:48.807447pt;}
.ls3{letter-spacing:49.958658pt;}
.ls4{letter-spacing:123.602668pt;}
.ls0{letter-spacing:1193.041765pt;}
.ws3{word-spacing:-28.816521pt;}
.ws4{word-spacing:-28.799988pt;}
.ws6{word-spacing:-18.719993pt;}
.wsb{word-spacing:-16.018872pt;}
.ws9{word-spacing:-15.999994pt;}
.ws0{word-spacing:-14.737505pt;}
.ws1{word-spacing:-14.719994pt;}
.ws2{word-spacing:-13.343995pt;}
.ws5{word-spacing:-13.279995pt;}
.ws7{word-spacing:-12.005115pt;}
.wsa{word-spacing:-10.719996pt;}
.ws8{word-spacing:0.000000pt;}
._16{margin-left:-3.960694pt;}
._2{margin-left:-2.396134pt;}
._1{margin-left:-1.003222pt;}
._0{width:0.900827pt;}
._a{width:1.794150pt;}
._9{width:2.862817pt;}
._4{width:4.150165pt;}
._17{width:5.055785pt;}
._3{width:5.949476pt;}
._c{width:6.925365pt;}
._6{width:8.097624pt;}
._5{width:8.998664pt;}
._8{width:10.090635pt;}
._7{width:11.143468pt;}
._10{width:12.612250pt;}
._14{width:13.573957pt;}
._e{width:15.128091pt;}
._d{width:16.202039pt;}
._15{width:17.532169pt;}
._18{width:18.927428pt;}
._b{width:19.991298pt;}
._19{width:20.918088pt;}
._1a{width:21.873247pt;}
._f{width:22.952490pt;}
._1d{width:24.397267pt;}
._1b{width:27.022908pt;}
._1c{width:28.300616pt;}
._27{width:30.801157pt;}
._23{width:35.481520pt;}
._24{width:36.395655pt;}
._11{width:43.994921pt;}
._12{width:45.135202pt;}
._26{width:56.859175pt;}
._13{width:61.712629pt;}
._25{width:77.290318pt;}
._1f{width:363.633488pt;}
._21{width:377.240633pt;}
._1e{width:409.445895pt;}
._22{width:455.571603pt;}
._20{width:456.834343pt;}
.fs6{font-size:8.319997pt;}
.fs7{font-size:40.319984pt;}
.fs5{font-size:42.879983pt;}
.fs8{font-size:45.439982pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs4{font-size:63.999974pt;}
.fs3{font-size:74.879970pt;}
.y0{bottom:0.000000pt;}
.yca{bottom:1.759282pt;}
.ycd{bottom:1.919277pt;}
.ybf{bottom:2.079257pt;}
.yd2{bottom:2.079298pt;}
.yc4{bottom:2.239286pt;}
.ybd{bottom:2.559251pt;}
.yc7{bottom:2.559271pt;}
.yd0{bottom:2.559293pt;}
.y47{bottom:2.879085pt;}
.y3b{bottom:2.879353pt;}
.y130{bottom:3.519292pt;}
.ya{bottom:3.520034pt;}
.y14{bottom:3.839156pt;}
.yb{bottom:29.066922pt;}
.y9{bottom:45.066880pt;}
.y7{bottom:48.586914pt;}
.y8{bottom:49.546914pt;}
.yba{bottom:94.026629pt;}
.y44{bottom:95.786628pt;}
.y141{bottom:96.426628pt;}
.y16e{bottom:97.226628pt;}
.y102{bottom:99.466627pt;}
.y7b{bottom:102.026626pt;}
.yb9{bottom:112.426622pt;}
.y43{bottom:114.186621pt;}
.y140{bottom:114.826621pt;}
.y16d{bottom:115.626620pt;}
.y101{bottom:117.866620pt;}
.y7a{bottom:120.426618pt;}
.y9e{bottom:121.226618pt;}
.y5{bottom:124.746617pt;}
.yb8{bottom:130.826614pt;}
.y42{bottom:132.586614pt;}
.y13f{bottom:133.226613pt;}
.y16c{bottom:134.026613pt;}
.y100{bottom:136.426612pt;}
.y79{bottom:139.146611pt;}
.y9d{bottom:139.626611pt;}
.yb7{bottom:149.226607pt;}
.y41{bottom:150.986606pt;}
.y13e{bottom:151.626606pt;}
.y16b{bottom:152.426606pt;}
.y121{bottom:153.226605pt;}
.yff{bottom:154.826605pt;}
.y78{bottom:157.546604pt;}
.y9c{bottom:158.026603pt;}
.yb6{bottom:167.626600pt;}
.y40{bottom:169.386599pt;}
.y13d{bottom:170.026599pt;}
.y16a{bottom:170.826598pt;}
.y120{bottom:171.626598pt;}
.yfe{bottom:173.226597pt;}
.y77{bottom:176.266596pt;}
.y9b{bottom:176.426596pt;}
.yb5{bottom:186.026592pt;}
.y3f{bottom:187.786592pt;}
.y13c{bottom:188.426591pt;}
.y169{bottom:189.226591pt;}
.y11f{bottom:190.026591pt;}
.yfd{bottom:191.626590pt;}
.y76{bottom:194.666589pt;}
.y9a{bottom:194.826589pt;}
.yb4{bottom:204.426585pt;}
.y3e{bottom:206.186584pt;}
.y13b{bottom:206.826584pt;}
.y168{bottom:207.626584pt;}
.y11e{bottom:208.426583pt;}
.yfc{bottom:210.026583pt;}
.y75{bottom:213.066581pt;}
.y99{bottom:213.226581pt;}
.yb3{bottom:222.826578pt;}
.y13a{bottom:225.226577pt;}
.y167{bottom:226.026576pt;}
.y11d{bottom:226.826576pt;}
.yfb{bottom:228.426575pt;}
.y74{bottom:231.466574pt;}
.y98{bottom:231.626574pt;}
.yb2{bottom:241.226570pt;}
.y3d{bottom:243.626569pt;}
.y166{bottom:244.426569pt;}
.y11c{bottom:245.226569pt;}
.yfa{bottom:246.666568pt;}
.y73{bottom:249.866567pt;}
.y97{bottom:250.026567pt;}
.yb1{bottom:259.626563pt;}
.y139{bottom:262.026562pt;}
.y165{bottom:262.826562pt;}
.y11b{bottom:263.626561pt;}
.y3c{bottom:263.946561pt;}
.yf9{bottom:265.226561pt;}
.y72{bottom:268.426559pt;}
.yb0{bottom:278.026555pt;}
.y138{bottom:280.426554pt;}
.y3a{bottom:280.587200pt;}
.y164{bottom:281.226554pt;}
.y11a{bottom:282.026554pt;}
.yf8{bottom:283.626553pt;}
.y96{bottom:286.826552pt;}
.yaf{bottom:296.426548pt;}
.y39{bottom:298.666547pt;}
.y137{bottom:298.826547pt;}
.y163{bottom:299.626547pt;}
.y119{bottom:302.026546pt;}
.yf7{bottom:302.186546pt;}
.y95{bottom:305.386545pt;}
.y71{bottom:305.706544pt;}
.yae{bottom:315.146541pt;}
.y162{bottom:318.026539pt;}
.y136{bottom:318.826539pt;}
.yf6{bottom:320.266539pt;}
.y118{bottom:320.426538pt;}
.y94{bottom:324.106537pt;}
.y70{bottom:326.826536pt;}
.y4d{bottom:331.306534pt;}
.yad{bottom:333.226533pt;}
.y161{bottom:336.426532pt;}
.y135{bottom:337.386532pt;}
.y117{bottom:339.306531pt;}
.yf5{bottom:339.946531pt;}
.y93{bottom:342.506530pt;}
.y6f{bottom:345.546528pt;}
.y4c{bottom:347.466528pt;}
.yac{bottom:351.786526pt;}
.y160{bottom:354.826525pt;}
.y116{bottom:357.706524pt;}
.yf4{bottom:358.026523pt;}
.y20{bottom:360.586522pt;}
.y92{bottom:360.906522pt;}
.y4b{bottom:363.626521pt;}
.y6e{bottom:363.946521pt;}
.yab{bottom:368.586519pt;}
.y15f{bottom:373.226517pt;}
.y115{bottom:376.106516pt;}
.yf3{bottom:377.546516pt;}
.y91{bottom:379.306515pt;}
.y4a{bottom:379.946515pt;}
.y6d{bottom:382.346514pt;}
.y133{bottom:384.586513pt;}
.y134{bottom:384.746513pt;}
.yaa{bottom:385.386513pt;}
.y15e{bottom:391.626510pt;}
.yf2{bottom:396.586508pt;}
.y90{bottom:397.706508pt;}
.y6c{bottom:400.746506pt;}
.y132{bottom:402.986505pt;}
.y15d{bottom:410.026503pt;}
.y38{bottom:412.106502pt;}
.yf1{bottom:414.986501pt;}
.y8f{bottom:416.106500pt;}
.yd1{bottom:418.827200pt;}
.y131{bottom:418.986499pt;}
.y6b{bottom:419.146499pt;}
.y37{bottom:427.466496pt;}
.y15c{bottom:428.426495pt;}
.ycf{bottom:431.307200pt;}
.yf0{bottom:433.386493pt;}
.y12f{bottom:433.707200pt;}
.yce{bottom:433.866493pt;}
.y8e{bottom:434.506493pt;}
.y6a{bottom:437.546492pt;}
.y36{bottom:442.666490pt;}
.y15b{bottom:446.826488pt;}
.yc3{bottom:448.907200pt;}
.yef{bottom:451.946486pt;}
.y8d{bottom:452.906486pt;}
.y12e{bottom:454.826485pt;}
.y69{bottom:455.946484pt;}
.y179{bottom:456.746484pt;}
.y35{bottom:458.026483pt;}
.yc9{bottom:460.267200pt;}
.yc2{bottom:464.906481pt;}
.y15a{bottom:465.226481pt;}
.yee{bottom:470.346479pt;}
.y12d{bottom:470.986478pt;}
.y8c{bottom:471.306478pt;}
.ycc{bottom:471.627200pt;}
.y68{bottom:474.346477pt;}
.yc8{bottom:475.306477pt;}
.y34{bottom:476.746476pt;}
.yc1{bottom:478.506475pt;}
.y1f{bottom:482.506474pt;}
.y159{bottom:483.626473pt;}
.yc6{bottom:486.027200pt;}
.ycb{bottom:486.506472pt;}
.y12c{bottom:487.626472pt;}
.yc5{bottom:488.586471pt;}
.yed{bottom:489.066471pt;}
.y8b{bottom:489.706471pt;}
.y33{bottom:492.106470pt;}
.y158{bottom:502.026466pt;}
.yc0{bottom:502.666466pt;}
.y32{bottom:507.306464pt;}
.yec{bottom:507.466464pt;}
.y8a{bottom:508.106463pt;}
.y67{bottom:508.746463pt;}
.y157{bottom:520.426458pt;}
.y31{bottom:522.666458pt;}
.ybe{bottom:522.827200pt;}
.yeb{bottom:525.866456pt;}
.y89{bottom:526.506456pt;}
.y66{bottom:527.146456pt;}
.ybc{bottom:535.627200pt;}
.y30{bottom:538.026451pt;}
.ybb{bottom:538.186451pt;}
.y156{bottom:538.826451pt;}
.y12b{bottom:544.266449pt;}
.yea{bottom:544.586449pt;}
.y178{bottom:544.906449pt;}
.y88{bottom:545.066449pt;}
.y65{bottom:545.546448pt;}
.y2f{bottom:553.386445pt;}
.ya9{bottom:557.386444pt;}
.y1e{bottom:559.946443pt;}
.ye9{bottom:562.986441pt;}
.y177{bottom:563.306441pt;}
.ya8{bottom:563.466441pt;}
.y87{bottom:563.786441pt;}
.y64{bottom:563.946441pt;}
.y2e{bottom:568.746439pt;}
.y155{bottom:576.106436pt;}
.ye8{bottom:581.386434pt;}
.y176{bottom:581.706434pt;}
.ya7{bottom:581.866434pt;}
.y86{bottom:582.186434pt;}
.y63{bottom:582.346434pt;}
.y2d{bottom:584.106433pt;}
.y1d{bottom:590.826430pt;}
.y154{bottom:597.066428pt;}
.y2c{bottom:599.306427pt;}
.ye7{bottom:599.786427pt;}
.y175{bottom:600.106427pt;}
.ya6{bottom:600.266427pt;}
.y85{bottom:600.586426pt;}
.y62{bottom:600.746426pt;}
.y1c{bottom:604.426425pt;}
.y2b{bottom:614.666421pt;}
.y153{bottom:615.946420pt;}
.y1b{bottom:618.026419pt;}
.ye6{bottom:618.186419pt;}
.y174{bottom:618.506419pt;}
.ya5{bottom:618.666419pt;}
.y84{bottom:618.986419pt;}
.y61{bottom:619.146419pt;}
.y12a{bottom:622.986417pt;}
.y2a{bottom:630.026415pt;}
.y1a{bottom:630.506414pt;}
.y152{bottom:634.346413pt;}
.ye5{bottom:636.586412pt;}
.y173{bottom:636.906412pt;}
.ya4{bottom:637.226412pt;}
.y83{bottom:637.386412pt;}
.y60{bottom:637.546412pt;}
.y129{bottom:641.386410pt;}
.y29{bottom:645.386409pt;}
.y114{bottom:646.186408pt;}
.y151{bottom:652.906406pt;}
.ye4{bottom:654.986405pt;}
.y172{bottom:655.306405pt;}
.y82{bottom:655.786404pt;}
.y5f{bottom:655.946404pt;}
.y128{bottom:659.786403pt;}
.y19{bottom:660.266403pt;}
.y28{bottom:660.746402pt;}
.y113{bottom:671.466398pt;}
.ye3{bottom:673.386397pt;}
.y81{bottom:674.186397pt;}
.y5e{bottom:674.346397pt;}
.ya3{bottom:674.506397pt;}
.y27{bottom:676.106396pt;}
.y127{bottom:678.186395pt;}
.y171{bottom:678.666395pt;}
.y112{bottom:687.466392pt;}
.y18{bottom:690.026391pt;}
.y26{bottom:691.306390pt;}
.ye2{bottom:691.786390pt;}
.y80{bottom:692.586390pt;}
.y5d{bottom:692.746390pt;}
.y150{bottom:694.506389pt;}
.ya2{bottom:695.146389pt;}
.y126{bottom:696.586388pt;}
.y170{bottom:697.226388pt;}
.y111{bottom:706.026384pt;}
.y25{bottom:706.666384pt;}
.ye1{bottom:710.346383pt;}
.y7f{bottom:710.986382pt;}
.y5c{bottom:711.146382pt;}
.y14f{bottom:712.906382pt;}
.ya1{bottom:713.866381pt;}
.y16f{bottom:715.946380pt;}
.y125{bottom:716.586380pt;}
.y17{bottom:719.946379pt;}
.y24{bottom:722.026378pt;}
.ye0{bottom:728.906375pt;}
.y110{bottom:729.226375pt;}
.y7e{bottom:729.386375pt;}
.ya0{bottom:730.666374pt;}
.y14e{bottom:731.306374pt;}
.y16{bottom:733.706373pt;}
.y5b{bottom:734.346373pt;}
.y124{bottom:734.986373pt;}
.y23{bottom:737.386372pt;}
.y10f{bottom:747.466368pt;}
.ydf{bottom:747.626368pt;}
.y14d{bottom:749.706367pt;}
.y21{bottom:751.466366pt;}
.y7d{bottom:752.586366pt;}
.y22{bottom:752.746366pt;}
.y123{bottom:753.866365pt;}
.y15{bottom:755.146365pt;}
.y10e{bottom:765.866360pt;}
.y14c{bottom:768.106359pt;}
.yde{bottom:770.826358pt;}
.y7c{bottom:770.986358pt;}
.y5a{bottom:771.146358pt;}
.y13{bottom:771.947200pt;}
.y122{bottom:772.266358pt;}
.y12{bottom:775.786356pt;}
.y10d{bottom:784.426353pt;}
.y14b{bottom:786.506352pt;}
.ydd{bottom:789.226351pt;}
.y59{bottom:789.546351pt;}
.y11{bottom:792.906350pt;}
.y10c{bottom:803.146345pt;}
.y14a{bottom:804.906345pt;}
.ydc{bottom:807.626344pt;}
.y58{bottom:807.946343pt;}
.y10{bottom:812.266342pt;}
.y10b{bottom:821.546338pt;}
.y149{bottom:823.306337pt;}
.ydb{bottom:826.026336pt;}
.y57{bottom:826.346336pt;}
.yf{bottom:829.066335pt;}
.y10a{bottom:839.946331pt;}
.y148{bottom:841.706330pt;}
.yda{bottom:844.426329pt;}
.y56{bottom:844.746329pt;}
.ye{bottom:845.866328pt;}
.y109{bottom:858.346323pt;}
.y147{bottom:860.106323pt;}
.yd9{bottom:862.826322pt;}
.y55{bottom:863.146321pt;}
.y108{bottom:876.746316pt;}
.y146{bottom:878.506315pt;}
.yd8{bottom:881.226314pt;}
.y54{bottom:881.546314pt;}
.yd{bottom:882.026314pt;}
.y107{bottom:895.146309pt;}
.y145{bottom:896.906308pt;}
.yd7{bottom:899.626307pt;}
.y53{bottom:899.946307pt;}
.yc{bottom:903.466305pt;}
.y106{bottom:913.546301pt;}
.y144{bottom:915.306301pt;}
.yd6{bottom:918.026299pt;}
.y52{bottom:918.346299pt;}
.y105{bottom:931.946294pt;}
.y143{bottom:933.706293pt;}
.yd5{bottom:936.426292pt;}
.y51{bottom:936.746292pt;}
.y48{bottom:938.666291pt;}
.y46{bottom:951.147200pt;}
.y104{bottom:951.946286pt;}
.y142{bottom:952.106286pt;}
.yd4{bottom:954.826285pt;}
.y50{bottom:955.146285pt;}
.y4f{bottom:973.546277pt;}
.y45{bottom:985.866272pt;}
.y49{bottom:987.146272pt;}
.y103{bottom:989.386271pt;}
.y4e{bottom:991.946270pt;}
.yd3{bottom:992.106270pt;}
.y9f{bottom:994.346269pt;}
.y4{bottom:1010.186263pt;}
.y6{bottom:1034.666253pt;}
.y3{bottom:1037.866252pt;}
.y2{bottom:1053.226245pt;}
.y1{bottom:1068.586239pt;}
.h16{height:5.780935pt;}
.h1c{height:11.360000pt;}
.h1d{height:11.520000pt;}
.h18{height:11.680000pt;}
.h1b{height:11.840000pt;}
.h17{height:12.160000pt;}
.h19{height:12.480000pt;}
.h10{height:14.720000pt;}
.h13{height:14.880000pt;}
.h1f{height:16.000000pt;}
.h5{height:16.640000pt;}
.hb{height:17.440000pt;}
.h1a{height:26.873427pt;}
.hd{height:29.794051pt;}
.h20{height:31.572800pt;}
.h3{height:32.531237pt;}
.hf{height:32.554674pt;}
.h4{height:33.351549pt;}
.he{height:34.945299pt;}
.h14{height:36.001236pt;}
.ha{height:36.883110pt;}
.h1{height:36.909048pt;}
.h6{height:38.128110pt;}
.h8{height:39.904984pt;}
.h9{height:40.882484pt;}
.h2{height:40.911234pt;}
.h12{height:43.374983pt;}
.h15{height:44.437482pt;}
.hc{height:44.468732pt;}
.h1e{height:46.593731pt;}
.h7{height:50.748730pt;}
.h11{height:54.514666pt;}
.h0{height:1122.666667pt;}
.w10{width:2.080000pt;}
.w11{width:2.560000pt;}
.wc{width:2.720000pt;}
.w7{width:3.200000pt;}
.w14{width:3.360000pt;}
.we{width:3.520000pt;}
.w12{width:3.680000pt;}
.w3{width:3.840000pt;}
.w2{width:4.320000pt;}
.wa{width:4.640000pt;}
.w9{width:4.800000pt;}
.w5{width:6.720000pt;}
.w1a{width:6.880000pt;}
.w18{width:7.040000pt;}
.w16{width:7.360000pt;}
.w19{width:7.680000pt;}
.w4{width:8.000000pt;}
.w17{width:14.080000pt;}
.w1b{width:14.400000pt;}
.wb{width:26.080000pt;}
.w15{width:34.240000pt;}
.w13{width:36.000000pt;}
.wf{width:42.080000pt;}
.w8{width:42.240000pt;}
.wd{width:56.000000pt;}
.w6{width:388.640000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x4{left:88.319965pt;}
.x1{left:89.279964pt;}
.x19{left:95.999962pt;}
.xd{left:97.919961pt;}
.x8{left:99.519960pt;}
.x22{left:101.752759pt;}
.x4d{left:104.480000pt;}
.x11{left:109.119945pt;}
.x5{left:110.239956pt;}
.x10{left:111.839955pt;}
.x48{left:118.079930pt;}
.x35{left:120.000163pt;}
.xb{left:122.712751pt;}
.x13{left:131.359947pt;}
.x47{left:135.199946pt;}
.x36{left:136.959945pt;}
.x4e{left:140.480000pt;}
.x20{left:143.839700pt;}
.x12{left:147.519941pt;}
.x4f{left:178.080000pt;}
.x37{left:190.399924pt;}
.x38{left:200.639920pt;}
.x21{left:201.600052pt;}
.x50{left:213.760000pt;}
.x1b{left:218.240000pt;}
.x1a{left:221.119912pt;}
.x14{left:222.079920pt;}
.x15{left:223.039911pt;}
.x51{left:227.840000pt;}
.x9{left:229.759745pt;}
.x29{left:231.200000pt;}
.x16{left:238.399914pt;}
.x27{left:243.199903pt;}
.x28{left:244.639902pt;}
.x39{left:253.599899pt;}
.x2a{left:257.280000pt;}
.x2b{left:260.000000pt;}
.x18{left:272.961219pt;}
.x3a{left:278.399889pt;}
.x17{left:279.679888pt;}
.x1f{left:285.279886pt;}
.x1c{left:288.639885pt;}
.xc{left:297.440131pt;}
.x2c{left:316.000000pt;}
.xe{left:327.680000pt;}
.xf{left:331.520000pt;}
.x52{left:333.600000pt;}
.x53{left:340.480000pt;}
.x4a{left:345.119841pt;}
.x49{left:346.559846pt;}
.x54{left:347.680000pt;}
.x55{left:354.560000pt;}
.x46{left:356.159746pt;}
.x3b{left:357.759857pt;}
.xa{left:363.673188pt;}
.x3c{left:367.831853pt;}
.x30{left:371.840000pt;}
.x2d{left:374.399850pt;}
.x6{left:377.439849pt;}
.x2f{left:379.839848pt;}
.x2{left:390.079844pt;}
.x2e{left:411.200000pt;}
.x31{left:413.920000pt;}
.x3d{left:448.479821pt;}
.x3e{left:458.559817pt;}
.x56{left:460.480000pt;}
.x4b{left:467.519753pt;}
.x23{left:472.479811pt;}
.x57{left:474.560000pt;}
.x32{left:476.160000pt;}
.x25{left:479.040000pt;}
.x4c{left:480.319743pt;}
.x3f{left:516.319793pt;}
.x33{left:518.400000pt;}
.x34{left:519.680000pt;}
.x26{left:521.280000pt;}
.x1d{left:524.479790pt;}
.x24{left:527.200000pt;}
.x40{left:538.879784pt;}
.x41{left:549.119780pt;}
.x42{left:568.639773pt;}
.x43{left:578.719769pt;}
.x58{left:592.160000pt;}
.x3{left:603.039759pt;}
.x59{left:606.400000pt;}
.x5b{left:612.319755pt;}
.x1e{left:614.079742pt;}
.x5a{left:628.160000pt;}
.x44{left:641.759743pt;}
.x45{left:651.999739pt;}
.x7{left:701.280000pt;}
}




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