
    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_fcfa7eccb633440f4e1b4010.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_0e0fbcf2b7903d5d9d6032fb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.853027;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_e4f7043377722826b9441904.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_905714d552a0771e5b020921.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_88add117842c7de083aea469.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v2{vertical-align:-33.120000px;}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:27.360000px;}
.v1{vertical-align:33.120000px;}
.ls9{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.259800px;}
.lsf{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.206400px;}
.ls11{letter-spacing:-0.106800px;}
.lsc{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.053280px;}
.ls7{letter-spacing:0.149760px;}
.ls12{letter-spacing:0.153600px;}
.ls2{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.181440px;}
.lsb{letter-spacing:0.206400px;}
.lsa{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.576000px;}
.ls10{letter-spacing:0.612000px;}
.ls6{letter-spacing:0.720000px;}
.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;}
}
.ws1{word-spacing:-48.240000px;}
.ws5{word-spacing:-18.720000px;}
.ws2{word-spacing:-18.576000px;}
.ws3{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.712000px;}
.wsf{word-spacing:-15.552000px;}
.ws8{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.238800px;}
.wsb{word-spacing:-15.146400px;}
.ws12{word-spacing:-15.093600px;}
.wsa{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.886720px;}
.ws11{word-spacing:-14.833200px;}
.wsd{word-spacing:-14.733600px;}
.wse{word-spacing:-14.680200px;}
.ws9{word-spacing:-14.580000px;}
.ws0{word-spacing:-12.060000px;}
.ws6{word-spacing:0.000000px;}
._1{margin-left:-1.819440px;}
._0{width:1.436400px;}
._2{width:846.240720px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:95.760000px;}
.y114{bottom:-13.500000px;}
.y0{bottom:0.000000px;}
.y17c{bottom:3.420000px;}
.y68{bottom:3.585000px;}
.y26{bottom:3.600000px;}
.yc5{bottom:3.630000px;}
.y63{bottom:3.765000px;}
.y70{bottom:3.772500px;}
.y23{bottom:3.780000px;}
.y4e{bottom:3.810000px;}
.y1ae{bottom:3.825000px;}
.y38{bottom:20.880000px;}
.y19{bottom:25.185000px;}
.y13{bottom:25.200000px;}
.y17{bottom:25.230000px;}
.y1{bottom:57.780000px;}
.yc0{bottom:57.960000px;}
.y20{bottom:57.996000px;}
.y175{bottom:83.700000px;}
.y174{bottom:100.980000px;}
.y196{bottom:101.196000px;}
.y177{bottom:103.716000px;}
.y111{bottom:113.580000px;}
.y71{bottom:117.583500px;}
.y173{bottom:118.080000px;}
.ybf{bottom:118.296000px;}
.y110{bottom:130.860000px;}
.y6f{bottom:134.863500px;}
.y172{bottom:135.360000px;}
.y1df{bottom:137.376000px;}
.y176{bottom:138.096000px;}
.y195{bottom:138.276000px;}
.y1f{bottom:139.140000px;}
.ybe{bottom:142.236000px;}
.y10f{bottom:148.140000px;}
.y73{bottom:150.300000px;}
.y6e{bottom:152.145000px;}
.y171{bottom:152.640000px;}
.y10e{bottom:165.240000px;}
.y6d{bottom:169.425000px;}
.y170{bottom:169.920000px;}
.y1de{bottom:172.485000px;}
.ybd{bottom:177.345000px;}
.y1e{bottom:180.540000px;}
.y10d{bottom:182.520000px;}
.y72{bottom:184.710000px;}
.y6c{bottom:186.525000px;}
.y16f{bottom:187.200000px;}
.y1dd{bottom:189.765000px;}
.ybc{bottom:194.625000px;}
.y10c{bottom:199.800000px;}
.y6b{bottom:203.805000px;}
.y16e{bottom:204.480000px;}
.y1dc{bottom:206.865000px;}
.ybb{bottom:211.905000px;}
.y10b{bottom:217.080000px;}
.y6a{bottom:221.085000px;}
.y16d{bottom:221.580000px;}
.y1d{bottom:221.985000px;}
.y1db{bottom:224.145000px;}
.yba{bottom:229.005000px;}
.y10a{bottom:234.360000px;}
.y69{bottom:238.365000px;}
.y16c{bottom:238.860000px;}
.y1da{bottom:241.425000px;}
.yb9{bottom:246.285000px;}
.y109{bottom:251.685000px;}
.y67{bottom:255.645000px;}
.y16b{bottom:256.140000px;}
.y1d9{bottom:258.705000px;}
.y1c{bottom:263.385000px;}
.yb8{bottom:263.565000px;}
.y108{bottom:268.785000px;}
.y66{bottom:272.745000px;}
.y16a{bottom:273.420000px;}
.y1d8{bottom:275.985000px;}
.yb7{bottom:280.845000px;}
.y107{bottom:286.065000px;}
.y65{bottom:290.025000px;}
.y169{bottom:290.700000px;}
.y1d7{bottom:293.265000px;}
.yb6{bottom:298.125000px;}
.y106{bottom:303.345000px;}
.y1b{bottom:304.785000px;}
.y64{bottom:307.305000px;}
.y168{bottom:308.025000px;}
.y1d6{bottom:310.365000px;}
.yb5{bottom:315.225000px;}
.y105{bottom:320.625000px;}
.y62{bottom:324.585000px;}
.y167{bottom:325.125000px;}
.y1d5{bottom:327.645000px;}
.yb4{bottom:332.505000px;}
.y104{bottom:337.905000px;}
.y61{bottom:341.895000px;}
.y166{bottom:342.405000px;}
.y1d4{bottom:344.955000px;}
.y1a{bottom:346.185000px;}
.yb3{bottom:349.785000px;}
.y103{bottom:355.005000px;}
.y60{bottom:359.175000px;}
.y165{bottom:359.685000px;}
.y1d3{bottom:362.235000px;}
.y194{bottom:365.835000px;}
.yb2{bottom:367.065000px;}
.y102{bottom:372.285000px;}
.y5f{bottom:376.275000px;}
.y164{bottom:376.965000px;}
.y1d2{bottom:379.515000px;}
.y193{bottom:383.295000px;}
.yb1{bottom:384.345000px;}
.y18{bottom:387.585000px;}
.y101{bottom:389.565000px;}
.y5e{bottom:393.555000px;}
.y163{bottom:394.245000px;}
.y1d1{bottom:396.615000px;}
.y192{bottom:400.575000px;}
.yb0{bottom:401.655000px;}
.y100{bottom:406.845000px;}
.y5d{bottom:410.835000px;}
.y162{bottom:411.345000px;}
.y1d0{bottom:413.895000px;}
.y191{bottom:417.855000px;}
.yaf{bottom:418.755000px;}
.yff{bottom:424.125000px;}
.y5c{bottom:428.115000px;}
.y161{bottom:428.625000px;}
.y16{bottom:428.985000px;}
.y1cf{bottom:431.175000px;}
.y190{bottom:434.955000px;}
.yae{bottom:436.035000px;}
.yfe{bottom:441.405000px;}
.y5b{bottom:445.395000px;}
.y160{bottom:445.905000px;}
.y1ce{bottom:448.455000px;}
.y18f{bottom:452.235000px;}
.yad{bottom:453.315000px;}
.yfd{bottom:458.505000px;}
.y5a{bottom:462.675000px;}
.y15f{bottom:463.185000px;}
.y1cd{bottom:465.735000px;}
.y18e{bottom:469.515000px;}
.y15{bottom:470.415000px;}
.yac{bottom:470.595000px;}
.yfc{bottom:475.785000px;}
.y59{bottom:479.775000px;}
.y15e{bottom:480.465000px;}
.y1cc{bottom:483.015000px;}
.y18d{bottom:487.515000px;}
.yab{bottom:487.875000px;}
.yfb{bottom:493.065000px;}
.y58{bottom:497.055000px;}
.y15d{bottom:497.745000px;}
.y1cb{bottom:500.115000px;}
.yaa{bottom:505.155000px;}
.yfa{bottom:510.345000px;}
.y14{bottom:511.815000px;}
.y57{bottom:514.335000px;}
.y15c{bottom:514.845000px;}
.y1ca{bottom:517.395000px;}
.ya9{bottom:522.255000px;}
.yf9{bottom:527.625000px;}
.y18c{bottom:530.355000px;}
.y56{bottom:531.615000px;}
.y15b{bottom:532.125000px;}
.y1c9{bottom:534.675000px;}
.ya8{bottom:539.535000px;}
.yf8{bottom:544.905000px;}
.y18b{bottom:547.635000px;}
.y55{bottom:548.895000px;}
.y15a{bottom:549.405000px;}
.y1c8{bottom:551.955000px;}
.y12{bottom:553.215000px;}
.ya7{bottom:556.815000px;}
.yf7{bottom:562.035000px;}
.y18a{bottom:564.945000px;}
.y54{bottom:565.995000px;}
.y159{bottom:566.685000px;}
.y1c7{bottom:569.235000px;}
.ya6{bottom:574.095000px;}
.yf6{bottom:579.315000px;}
.y189{bottom:582.225000px;}
.y53{bottom:583.275000px;}
.y158{bottom:583.965000px;}
.y1c6{bottom:586.515000px;}
.ya5{bottom:591.375000px;}
.yf5{bottom:596.595000px;}
.y188{bottom:599.505000px;}
.y52{bottom:600.555000px;}
.y157{bottom:601.245000px;}
.y1c5{bottom:603.615000px;}
.ya4{bottom:608.475000px;}
.yf4{bottom:613.875000px;}
.y187{bottom:616.785000px;}
.y51{bottom:617.835000px;}
.y156{bottom:618.345000px;}
.y11{bottom:619.815000px;}
.y1c4{bottom:620.895000px;}
.ya3{bottom:625.755000px;}
.yf3{bottom:631.155000px;}
.y186{bottom:633.885000px;}
.y50{bottom:635.115000px;}
.y155{bottom:635.625000px;}
.y1c3{bottom:638.175000px;}
.ya2{bottom:643.035000px;}
.yf2{bottom:648.255000px;}
.y185{bottom:651.165000px;}
.y4f{bottom:652.395000px;}
.y154{bottom:652.935000px;}
.y1c2{bottom:655.455000px;}
.ya1{bottom:660.315000px;}
.yf1{bottom:665.535000px;}
.y184{bottom:669.165000px;}
.y4d{bottom:669.495000px;}
.y153{bottom:670.215000px;}
.y1c1{bottom:672.765000px;}
.y10{bottom:675.975000px;}
.ya0{bottom:677.595000px;}
.yf0{bottom:682.815000px;}
.y4c{bottom:686.805000px;}
.y152{bottom:687.495000px;}
.y1c0{bottom:690.045000px;}
.y9f{bottom:694.875000px;}
.yef{bottom:700.095000px;}
.y4b{bottom:704.085000px;}
.y151{bottom:704.775000px;}
.y1bf{bottom:707.145000px;}
.y9e{bottom:711.975000px;}
.y183{bottom:712.365000px;}
.yee{bottom:717.375000px;}
.y4a{bottom:721.365000px;}
.y150{bottom:721.875000px;}
.y1be{bottom:724.425000px;}
.y9d{bottom:729.285000px;}
.yf{bottom:732.525000px;}
.y182{bottom:733.065000px;}
.yed{bottom:734.655000px;}
.y49{bottom:738.645000px;}
.y14f{bottom:739.155000px;}
.y1bd{bottom:741.705000px;}
.y9c{bottom:746.565000px;}
.yec{bottom:751.755000px;}
.y48{bottom:755.925000px;}
.y14e{bottom:756.435000px;}
.y1bc{bottom:758.985000px;}
.y9b{bottom:763.845000px;}
.yeb{bottom:769.035000px;}
.y47{bottom:773.025000px;}
.y14d{bottom:773.715000px;}
.y181{bottom:774.150000px;}
.y1bb{bottom:776.265000px;}
.y9a{bottom:781.125000px;}
.yea{bottom:786.315000px;}
.y46{bottom:790.305000px;}
.y14c{bottom:790.995000px;}
.y1ba{bottom:793.365000px;}
.ye{bottom:793.905000px;}
.y99{bottom:798.405000px;}
.ye9{bottom:803.595000px;}
.y45{bottom:807.585000px;}
.y14b{bottom:808.095000px;}
.y1b9{bottom:810.645000px;}
.y98{bottom:815.505000px;}
.y180{bottom:815.550000px;}
.ye8{bottom:820.875000px;}
.y44{bottom:824.865000px;}
.y14a{bottom:825.375000px;}
.yd{bottom:825.405000px;}
.y1b8{bottom:827.925000px;}
.y97{bottom:832.785000px;}
.ye7{bottom:838.155000px;}
.y43{bottom:842.145000px;}
.y149{bottom:842.655000px;}
.y1b7{bottom:845.205000px;}
.y96{bottom:850.065000px;}
.yc{bottom:854.565000px;}
.ye6{bottom:855.255000px;}
.y17f{bottom:856.950000px;}
.y42{bottom:859.425000px;}
.y148{bottom:859.935000px;}
.y1b6{bottom:862.485000px;}
.y95{bottom:867.345000px;}
.ye5{bottom:872.565000px;}
.y41{bottom:876.525000px;}
.y147{bottom:877.215000px;}
.y1b5{bottom:879.765000px;}
.yb{bottom:881.745000px;}
.y94{bottom:884.625000px;}
.ye4{bottom:889.845000px;}
.y40{bottom:893.805000px;}
.y146{bottom:894.495000px;}
.y1b4{bottom:896.865000px;}
.y17e{bottom:898.350000px;}
.y93{bottom:901.905000px;}
.ye3{bottom:907.125000px;}
.ya{bottom:910.905000px;}
.y3f{bottom:911.085000px;}
.y145{bottom:911.595000px;}
.y1b3{bottom:914.145000px;}
.y17d{bottom:915.630000px;}
.y92{bottom:919.005000px;}
.ye2{bottom:924.405000px;}
.y3e{bottom:928.365000px;}
.y144{bottom:928.875000px;}
.y1b2{bottom:931.425000px;}
.y17b{bottom:932.910000px;}
.y91{bottom:936.285000px;}
.ye1{bottom:941.685000px;}
.y9{bottom:944.070000px;}
.y3d{bottom:945.645000px;}
.y143{bottom:946.155000px;}
.y1b1{bottom:948.705000px;}
.y17a{bottom:950.910000px;}
.y90{bottom:953.565000px;}
.ye0{bottom:958.785000px;}
.y3c{bottom:962.745000px;}
.y142{bottom:963.435000px;}
.y1b0{bottom:965.985000px;}
.y8f{bottom:970.845000px;}
.ydf{bottom:976.065000px;}
.y3b{bottom:980.025000px;}
.y141{bottom:980.715000px;}
.y1af{bottom:983.265000px;}
.y8{bottom:985.470000px;}
.y8e{bottom:988.125000px;}
.yde{bottom:993.345000px;}
.y179{bottom:994.110000px;}
.y3a{bottom:997.305000px;}
.y140{bottom:997.995000px;}
.y1ad{bottom:1000.365000px;}
.y8d{bottom:1005.225000px;}
.ydd{bottom:1010.625000px;}
.y39{bottom:1014.630000px;}
.y13f{bottom:1015.125000px;}
.y1ac{bottom:1017.690000px;}
.y8c{bottom:1022.505000px;}
.y7{bottom:1026.870000px;}
.ydc{bottom:1027.905000px;}
.y37{bottom:1031.910000px;}
.y13e{bottom:1032.405000px;}
.y1ab{bottom:1034.970000px;}
.y178{bottom:1035.180000px;}
.y8b{bottom:1039.785000px;}
.ydb{bottom:1045.005000px;}
.y13d{bottom:1049.685000px;}
.y1aa{bottom:1052.250000px;}
.y6{bottom:1052.970000px;}
.y8a{bottom:1057.110000px;}
.yda{bottom:1062.285000px;}
.y36{bottom:1066.290000px;}
.y13c{bottom:1066.965000px;}
.y1a9{bottom:1069.530000px;}
.y89{bottom:1074.390000px;}
.yd9{bottom:1079.565000px;}
.y35{bottom:1083.570000px;}
.y13b{bottom:1084.245000px;}
.y5{bottom:1084.830000px;}
.y1a8{bottom:1086.630000px;}
.y88{bottom:1091.670000px;}
.yd8{bottom:1096.845000px;}
.y34{bottom:1100.850000px;}
.y13a{bottom:1101.525000px;}
.y1a7{bottom:1103.910000px;}
.y87{bottom:1108.770000px;}
.yd7{bottom:1114.125000px;}
.y4{bottom:1116.510000px;}
.y33{bottom:1118.130000px;}
.y139{bottom:1118.625000px;}
.y1a6{bottom:1121.190000px;}
.y86{bottom:1126.050000px;}
.yd6{bottom:1131.405000px;}
.y32{bottom:1135.410000px;}
.y138{bottom:1135.905000px;}
.y1a5{bottom:1138.470000px;}
.y85{bottom:1143.330000px;}
.y3{bottom:1148.190000px;}
.yd5{bottom:1148.505000px;}
.y31{bottom:1152.690000px;}
.y137{bottom:1153.185000px;}
.y1a4{bottom:1155.750000px;}
.y84{bottom:1160.610000px;}
.yd4{bottom:1165.830000px;}
.y30{bottom:1169.790000px;}
.y136{bottom:1170.465000px;}
.y1a3{bottom:1173.030000px;}
.y83{bottom:1177.890000px;}
.yd3{bottom:1183.110000px;}
.y2f{bottom:1187.070000px;}
.y135{bottom:1187.745000px;}
.y1a2{bottom:1190.130000px;}
.y2{bottom:1192.500000px;}
.y82{bottom:1195.170000px;}
.yd2{bottom:1200.390000px;}
.y2e{bottom:1204.350000px;}
.y134{bottom:1204.845000px;}
.y1a1{bottom:1207.410000px;}
.y81{bottom:1212.270000px;}
.yd1{bottom:1217.670000px;}
.y2d{bottom:1221.630000px;}
.y133{bottom:1222.125000px;}
.y1a0{bottom:1224.690000px;}
.y80{bottom:1229.550000px;}
.yd0{bottom:1234.950000px;}
.y2c{bottom:1238.910000px;}
.y132{bottom:1239.405000px;}
.y19f{bottom:1241.970000px;}
.y7f{bottom:1246.830000px;}
.ycf{bottom:1252.050000px;}
.y2b{bottom:1256.010000px;}
.y131{bottom:1256.685000px;}
.y19e{bottom:1259.250000px;}
.y7e{bottom:1264.110000px;}
.yce{bottom:1269.330000px;}
.y2a{bottom:1273.290000px;}
.y130{bottom:1273.965000px;}
.y19d{bottom:1276.530000px;}
.y7d{bottom:1281.390000px;}
.ycd{bottom:1286.610000px;}
.y29{bottom:1290.570000px;}
.y12f{bottom:1291.245000px;}
.y19c{bottom:1293.630000px;}
.y7c{bottom:1298.490000px;}
.ycc{bottom:1303.890000px;}
.y28{bottom:1307.850000px;}
.y12e{bottom:1308.345000px;}
.y19b{bottom:1310.910000px;}
.y7b{bottom:1315.770000px;}
.ycb{bottom:1321.170000px;}
.y27{bottom:1325.130000px;}
.y12d{bottom:1325.625000px;}
.y19a{bottom:1328.190000px;}
.y7a{bottom:1333.050000px;}
.yca{bottom:1338.270000px;}
.y25{bottom:1342.440000px;}
.y12c{bottom:1342.905000px;}
.y199{bottom:1345.500000px;}
.y79{bottom:1350.330000px;}
.yc9{bottom:1356.270000px;}
.y24{bottom:1359.540000px;}
.y12b{bottom:1360.230000px;}
.y198{bottom:1362.780000px;}
.y78{bottom:1367.610000px;}
.y12a{bottom:1377.510000px;}
.y22{bottom:1377.540000px;}
.y197{bottom:1380.780000px;}
.y77{bottom:1384.920000px;}
.y129{bottom:1394.790000px;}
.yc8{bottom:1396.770000px;}
.y76{bottom:1402.020000px;}
.y128{bottom:1411.890000px;}
.y21{bottom:1418.040000px;}
.y75{bottom:1420.020000px;}
.y127{bottom:1429.170000px;}
.yc7{bottom:1435.650000px;}
.y126{bottom:1446.450000px;}
.yc6{bottom:1452.750000px;}
.y74{bottom:1460.520000px;}
.y125{bottom:1463.730000px;}
.yc4{bottom:1470.030000px;}
.y124{bottom:1481.010000px;}
.yc3{bottom:1487.160000px;}
.y123{bottom:1498.110000px;}
.yc2{bottom:1505.160000px;}
.y122{bottom:1515.390000px;}
.y121{bottom:1532.670000px;}
.yc1{bottom:1545.660000px;}
.y120{bottom:1549.950000px;}
.y11f{bottom:1567.230000px;}
.y11e{bottom:1584.510000px;}
.y11d{bottom:1601.610000px;}
.y11c{bottom:1618.890000px;}
.y11b{bottom:1636.170000px;}
.y11a{bottom:1653.450000px;}
.y119{bottom:1670.730000px;}
.y118{bottom:1688.010000px;}
.y117{bottom:1705.110000px;}
.y116{bottom:1722.420000px;}
.y115{bottom:1739.700000px;}
.y113{bottom:1757.700000px;}
.y112{bottom:1800.900000px;}
.h15{height:17.085000px;}
.h24{height:17.098500px;}
.h12{height:17.100000px;}
.h22{height:17.121000px;}
.h21{height:17.130000px;}
.h14{height:17.265000px;}
.h1a{height:17.272500px;}
.h25{height:17.278500px;}
.hf{height:17.280000px;}
.h19{height:17.301000px;}
.h17{height:17.302500px;}
.h13{height:17.310000px;}
.h23{height:17.316000px;}
.h16{height:34.365000px;}
.h8{height:41.385000px;}
.hc{height:41.398500px;}
.ha{height:41.421000px;}
.hb{height:41.436000px;}
.h6{height:47.344922px;}
.h7{height:52.664062px;}
.h11{height:58.621992px;}
.h10{height:58.651172px;}
.h2b{height:60.226875px;}
.h2{height:65.010937px;}
.h2a{height:65.518594px;}
.h18{height:65.884219px;}
.h3{height:70.664062px;}
.h9{height:72.562500px;}
.h5{height:80.464922px;}
.h4{height:93.983203px;}
.h29{height:1105.500000px;}
.h28{height:1105.740000px;}
.h1b{height:1190.700000px;}
.h1c{height:1191.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.hd{height:1488.420000px;}
.he{height:1488.750000px;}
.h1e{height:1530.750000px;}
.h1d{height:1530.900000px;}
.h1f{height:1616.040000px;}
.h20{height:1616.250000px;}
.h26{height:1871.100000px;}
.h27{height:1871.250000px;}
.w1e{width:32.220000px;}
.w3{width:34.185000px;}
.w23{width:42.480000px;}
.w18{width:45.705000px;}
.w27{width:63.705000px;}
.w21{width:63.750000px;}
.w29{width:65.550000px;}
.w28{width:68.385000px;}
.w17{width:69.825000px;}
.w15{width:70.005000px;}
.w16{width:70.041000px;}
.w14{width:70.056000px;}
.w24{width:74.376000px;}
.w26{width:74.541000px;}
.w9{width:75.780000px;}
.wc{width:75.801000px;}
.wa{width:75.816000px;}
.w2d{width:77.961000px;}
.w2c{width:79.956000px;}
.w2a{width:80.481000px;}
.wb{width:87.465000px;}
.w1f{width:91.260000px;}
.w1c{width:92.325000px;}
.w1a{width:92.520000px;}
.w19{width:92.541000px;}
.w1b{width:92.556000px;}
.wd{width:93.765000px;}
.w11{width:94.845000px;}
.wf{width:94.860000px;}
.w20{width:95.025000px;}
.w12{width:95.061000px;}
.w10{width:95.076000px;}
.w25{width:95.745000px;}
.w6{width:131.205000px;}
.w2b{width:131.580000px;}
.we{width:154.635000px;}
.w4{width:207.928500px;}
.w5{width:207.960000px;}
.w8{width:220.879500px;}
.w13{width:224.475000px;}
.w1d{width:233.893500px;}
.w7{width:254.220000px;}
.w22{width:316.513500px;}
.w2{width:640.215000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.098500px;}
.x25{left:10.605000px;}
.xf{left:11.865000px;}
.x19{left:13.125000px;}
.x14{left:14.745000px;}
.xe{left:16.005000px;}
.x6{left:17.100000px;}
.x30{left:18.180000px;}
.x16{left:19.245000px;}
.x1b{left:21.045000px;}
.x12{left:23.025000px;}
.xa{left:24.465000px;}
.x22{left:25.770000px;}
.x10{left:26.805000px;}
.x27{left:28.290000px;}
.xd{left:29.910000px;}
.x13{left:32.070000px;}
.x23{left:33.330000px;}
.x11{left:34.950000px;}
.x1e{left:37.110000px;}
.x17{left:39.630000px;}
.x24{left:41.610000px;}
.x28{left:43.230000px;}
.x15{left:44.490000px;}
.x3{left:45.901500px;}
.x1f{left:47.550000px;}
.x1d{left:49.170000px;}
.x8{left:51.510000px;}
.x21{left:52.950000px;}
.x2{left:54.000000px;}
.x20{left:56.730000px;}
.x18{left:58.710000px;}
.x1c{left:60.330000px;}
.x1a{left:62.850000px;}
.xc{left:97.770000px;}
.x26{left:127.110000px;}
.x2a{left:131.806500px;}
.x36{left:159.345000px;}
.x3b{left:192.465000px;}
.x50{left:214.065000px;}
.x3c{left:238.185000px;}
.x7{left:253.845000px;}
.x42{left:279.795000px;}
.x31{left:286.455000px;}
.x51{left:294.555000px;}
.x43{left:312.015000px;}
.x3d{left:330.735000px;}
.x2b{left:352.695000px;}
.x48{left:362.415000px;}
.x32{left:381.315000px;}
.x37{left:383.835000px;}
.x44{left:403.275000px;}
.x49{left:404.895000px;}
.x3e{left:423.255000px;}
.x52{left:426.135000px;}
.x2c{left:428.475000px;}
.x38{left:453.900000px;}
.x9{left:461.820000px;}
.x33{left:476.400000px;}
.x4a{left:479.280000px;}
.x45{left:498.360000px;}
.x2d{left:504.300000px;}
.x53{left:506.100000px;}
.x3f{left:515.820000px;}
.x39{left:523.920000px;}
.x34{left:571.260000px;}
.x4b{left:575.040000px;}
.x2e{left:591.780000px;}
.xb{left:593.040000px;}
.x54{left:601.140000px;}
.x40{left:608.160000px;}
.x4c{left:649.590000px;}
.x3a{left:663.990000px;}
.x35{left:666.330000px;}
.x2f{left:667.590000px;}
.x5{left:686.130000px;}
.x46{left:688.470000px;}
.x4d{left:713.310000px;}
.x4e{left:781.710000px;}
.x47{left:783.510000px;}
.x4f{left:822.600000px;}
.x41{left:829.260000px;}
.x1{left:830.880000px;}
.x29{left:837.180000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:24.320000pt;}
.v1{vertical-align:29.440000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.230933pt;}
.lsf{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.183467pt;}
.ls11{letter-spacing:-0.094933pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.047360pt;}
.ls7{letter-spacing:0.133120pt;}
.ls12{letter-spacing:0.136533pt;}
.ls2{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.161280pt;}
.lsb{letter-spacing:0.183467pt;}
.lsa{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.512000pt;}
.ls10{letter-spacing:0.544000pt;}
.ls6{letter-spacing:0.640000pt;}
.ws1{word-spacing:-42.880000pt;}
.ws5{word-spacing:-16.640000pt;}
.ws2{word-spacing:-16.512000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.744000pt;}
.wsf{word-spacing:-13.824000pt;}
.ws8{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.545600pt;}
.wsb{word-spacing:-13.463467pt;}
.ws12{word-spacing:-13.416533pt;}
.wsa{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.232640pt;}
.ws11{word-spacing:-13.185067pt;}
.wsd{word-spacing:-13.096533pt;}
.wse{word-spacing:-13.049067pt;}
.ws9{word-spacing:-12.960000pt;}
.ws0{word-spacing:-10.720000pt;}
.ws6{word-spacing:0.000000pt;}
._1{margin-left:-1.617280pt;}
._0{width:1.276800pt;}
._2{width:752.213973pt;}
.fs5{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:85.120000pt;}
.y114{bottom:-12.000000pt;}
.y0{bottom:0.000000pt;}
.y17c{bottom:3.040000pt;}
.y68{bottom:3.186667pt;}
.y26{bottom:3.200000pt;}
.yc5{bottom:3.226667pt;}
.y63{bottom:3.346667pt;}
.y70{bottom:3.353333pt;}
.y23{bottom:3.360000pt;}
.y4e{bottom:3.386667pt;}
.y1ae{bottom:3.400000pt;}
.y38{bottom:18.560000pt;}
.y19{bottom:22.386667pt;}
.y13{bottom:22.400000pt;}
.y17{bottom:22.426667pt;}
.y1{bottom:51.360000pt;}
.yc0{bottom:51.520000pt;}
.y20{bottom:51.552000pt;}
.y175{bottom:74.400000pt;}
.y174{bottom:89.760000pt;}
.y196{bottom:89.952000pt;}
.y177{bottom:92.192000pt;}
.y111{bottom:100.960000pt;}
.y71{bottom:104.518667pt;}
.y173{bottom:104.960000pt;}
.ybf{bottom:105.152000pt;}
.y110{bottom:116.320000pt;}
.y6f{bottom:119.878667pt;}
.y172{bottom:120.320000pt;}
.y1df{bottom:122.112000pt;}
.y176{bottom:122.752000pt;}
.y195{bottom:122.912000pt;}
.y1f{bottom:123.680000pt;}
.ybe{bottom:126.432000pt;}
.y10f{bottom:131.680000pt;}
.y73{bottom:133.600000pt;}
.y6e{bottom:135.240000pt;}
.y171{bottom:135.680000pt;}
.y10e{bottom:146.880000pt;}
.y6d{bottom:150.600000pt;}
.y170{bottom:151.040000pt;}
.y1de{bottom:153.320000pt;}
.ybd{bottom:157.640000pt;}
.y1e{bottom:160.480000pt;}
.y10d{bottom:162.240000pt;}
.y72{bottom:164.186667pt;}
.y6c{bottom:165.800000pt;}
.y16f{bottom:166.400000pt;}
.y1dd{bottom:168.680000pt;}
.ybc{bottom:173.000000pt;}
.y10c{bottom:177.600000pt;}
.y6b{bottom:181.160000pt;}
.y16e{bottom:181.760000pt;}
.y1dc{bottom:183.880000pt;}
.ybb{bottom:188.360000pt;}
.y10b{bottom:192.960000pt;}
.y6a{bottom:196.520000pt;}
.y16d{bottom:196.960000pt;}
.y1d{bottom:197.320000pt;}
.y1db{bottom:199.240000pt;}
.yba{bottom:203.560000pt;}
.y10a{bottom:208.320000pt;}
.y69{bottom:211.880000pt;}
.y16c{bottom:212.320000pt;}
.y1da{bottom:214.600000pt;}
.yb9{bottom:218.920000pt;}
.y109{bottom:223.720000pt;}
.y67{bottom:227.240000pt;}
.y16b{bottom:227.680000pt;}
.y1d9{bottom:229.960000pt;}
.y1c{bottom:234.120000pt;}
.yb8{bottom:234.280000pt;}
.y108{bottom:238.920000pt;}
.y66{bottom:242.440000pt;}
.y16a{bottom:243.040000pt;}
.y1d8{bottom:245.320000pt;}
.yb7{bottom:249.640000pt;}
.y107{bottom:254.280000pt;}
.y65{bottom:257.800000pt;}
.y169{bottom:258.400000pt;}
.y1d7{bottom:260.680000pt;}
.yb6{bottom:265.000000pt;}
.y106{bottom:269.640000pt;}
.y1b{bottom:270.920000pt;}
.y64{bottom:273.160000pt;}
.y168{bottom:273.800000pt;}
.y1d6{bottom:275.880000pt;}
.yb5{bottom:280.200000pt;}
.y105{bottom:285.000000pt;}
.y62{bottom:288.520000pt;}
.y167{bottom:289.000000pt;}
.y1d5{bottom:291.240000pt;}
.yb4{bottom:295.560000pt;}
.y104{bottom:300.360000pt;}
.y61{bottom:303.906667pt;}
.y166{bottom:304.360000pt;}
.y1d4{bottom:306.626667pt;}
.y1a{bottom:307.720000pt;}
.yb3{bottom:310.920000pt;}
.y103{bottom:315.560000pt;}
.y60{bottom:319.266667pt;}
.y165{bottom:319.720000pt;}
.y1d3{bottom:321.986667pt;}
.y194{bottom:325.186667pt;}
.yb2{bottom:326.280000pt;}
.y102{bottom:330.920000pt;}
.y5f{bottom:334.466667pt;}
.y164{bottom:335.080000pt;}
.y1d2{bottom:337.346667pt;}
.y193{bottom:340.706667pt;}
.yb1{bottom:341.640000pt;}
.y18{bottom:344.520000pt;}
.y101{bottom:346.280000pt;}
.y5e{bottom:349.826667pt;}
.y163{bottom:350.440000pt;}
.y1d1{bottom:352.546667pt;}
.y192{bottom:356.066667pt;}
.yb0{bottom:357.026667pt;}
.y100{bottom:361.640000pt;}
.y5d{bottom:365.186667pt;}
.y162{bottom:365.640000pt;}
.y1d0{bottom:367.906667pt;}
.y191{bottom:371.426667pt;}
.yaf{bottom:372.226667pt;}
.yff{bottom:377.000000pt;}
.y5c{bottom:380.546667pt;}
.y161{bottom:381.000000pt;}
.y16{bottom:381.320000pt;}
.y1cf{bottom:383.266667pt;}
.y190{bottom:386.626667pt;}
.yae{bottom:387.586667pt;}
.yfe{bottom:392.360000pt;}
.y5b{bottom:395.906667pt;}
.y160{bottom:396.360000pt;}
.y1ce{bottom:398.626667pt;}
.y18f{bottom:401.986667pt;}
.yad{bottom:402.946667pt;}
.yfd{bottom:407.560000pt;}
.y5a{bottom:411.266667pt;}
.y15f{bottom:411.720000pt;}
.y1cd{bottom:413.986667pt;}
.y18e{bottom:417.346667pt;}
.y15{bottom:418.146667pt;}
.yac{bottom:418.306667pt;}
.yfc{bottom:422.920000pt;}
.y59{bottom:426.466667pt;}
.y15e{bottom:427.080000pt;}
.y1cc{bottom:429.346667pt;}
.y18d{bottom:433.346667pt;}
.yab{bottom:433.666667pt;}
.yfb{bottom:438.280000pt;}
.y58{bottom:441.826667pt;}
.y15d{bottom:442.440000pt;}
.y1cb{bottom:444.546667pt;}
.yaa{bottom:449.026667pt;}
.yfa{bottom:453.640000pt;}
.y14{bottom:454.946667pt;}
.y57{bottom:457.186667pt;}
.y15c{bottom:457.640000pt;}
.y1ca{bottom:459.906667pt;}
.ya9{bottom:464.226667pt;}
.yf9{bottom:469.000000pt;}
.y18c{bottom:471.426667pt;}
.y56{bottom:472.546667pt;}
.y15b{bottom:473.000000pt;}
.y1c9{bottom:475.266667pt;}
.ya8{bottom:479.586667pt;}
.yf8{bottom:484.360000pt;}
.y18b{bottom:486.786667pt;}
.y55{bottom:487.906667pt;}
.y15a{bottom:488.360000pt;}
.y1c8{bottom:490.626667pt;}
.y12{bottom:491.746667pt;}
.ya7{bottom:494.946667pt;}
.yf7{bottom:499.586667pt;}
.y18a{bottom:502.173333pt;}
.y54{bottom:503.106667pt;}
.y159{bottom:503.720000pt;}
.y1c7{bottom:505.986667pt;}
.ya6{bottom:510.306667pt;}
.yf6{bottom:514.946667pt;}
.y189{bottom:517.533333pt;}
.y53{bottom:518.466667pt;}
.y158{bottom:519.080000pt;}
.y1c6{bottom:521.346667pt;}
.ya5{bottom:525.666667pt;}
.yf5{bottom:530.306667pt;}
.y188{bottom:532.893333pt;}
.y52{bottom:533.826667pt;}
.y157{bottom:534.440000pt;}
.y1c5{bottom:536.546667pt;}
.ya4{bottom:540.866667pt;}
.yf4{bottom:545.666667pt;}
.y187{bottom:548.253333pt;}
.y51{bottom:549.186667pt;}
.y156{bottom:549.640000pt;}
.y11{bottom:550.946667pt;}
.y1c4{bottom:551.906667pt;}
.ya3{bottom:556.226667pt;}
.yf3{bottom:561.026667pt;}
.y186{bottom:563.453333pt;}
.y50{bottom:564.546667pt;}
.y155{bottom:565.000000pt;}
.y1c3{bottom:567.266667pt;}
.ya2{bottom:571.586667pt;}
.yf2{bottom:576.226667pt;}
.y185{bottom:578.813333pt;}
.y4f{bottom:579.906667pt;}
.y154{bottom:580.386667pt;}
.y1c2{bottom:582.626667pt;}
.ya1{bottom:586.946667pt;}
.yf1{bottom:591.586667pt;}
.y184{bottom:594.813333pt;}
.y4d{bottom:595.106667pt;}
.y153{bottom:595.746667pt;}
.y1c1{bottom:598.013333pt;}
.y10{bottom:600.866667pt;}
.ya0{bottom:602.306667pt;}
.yf0{bottom:606.946667pt;}
.y4c{bottom:610.493333pt;}
.y152{bottom:611.106667pt;}
.y1c0{bottom:613.373333pt;}
.y9f{bottom:617.666667pt;}
.yef{bottom:622.306667pt;}
.y4b{bottom:625.853333pt;}
.y151{bottom:626.466667pt;}
.y1bf{bottom:628.573333pt;}
.y9e{bottom:632.866667pt;}
.y183{bottom:633.213333pt;}
.yee{bottom:637.666667pt;}
.y4a{bottom:641.213333pt;}
.y150{bottom:641.666667pt;}
.y1be{bottom:643.933333pt;}
.y9d{bottom:648.253333pt;}
.yf{bottom:651.133333pt;}
.y182{bottom:651.613333pt;}
.yed{bottom:653.026667pt;}
.y49{bottom:656.573333pt;}
.y14f{bottom:657.026667pt;}
.y1bd{bottom:659.293333pt;}
.y9c{bottom:663.613333pt;}
.yec{bottom:668.226667pt;}
.y48{bottom:671.933333pt;}
.y14e{bottom:672.386667pt;}
.y1bc{bottom:674.653333pt;}
.y9b{bottom:678.973333pt;}
.yeb{bottom:683.586667pt;}
.y47{bottom:687.133333pt;}
.y14d{bottom:687.746667pt;}
.y181{bottom:688.133333pt;}
.y1bb{bottom:690.013333pt;}
.y9a{bottom:694.333333pt;}
.yea{bottom:698.946667pt;}
.y46{bottom:702.493333pt;}
.y14c{bottom:703.106667pt;}
.y1ba{bottom:705.213333pt;}
.ye{bottom:705.693333pt;}
.y99{bottom:709.693333pt;}
.ye9{bottom:714.306667pt;}
.y45{bottom:717.853333pt;}
.y14b{bottom:718.306667pt;}
.y1b9{bottom:720.573333pt;}
.y98{bottom:724.893333pt;}
.y180{bottom:724.933333pt;}
.ye8{bottom:729.666667pt;}
.y44{bottom:733.213333pt;}
.y14a{bottom:733.666667pt;}
.yd{bottom:733.693333pt;}
.y1b8{bottom:735.933333pt;}
.y97{bottom:740.253333pt;}
.ye7{bottom:745.026667pt;}
.y43{bottom:748.573333pt;}
.y149{bottom:749.026667pt;}
.y1b7{bottom:751.293333pt;}
.y96{bottom:755.613333pt;}
.yc{bottom:759.613333pt;}
.ye6{bottom:760.226667pt;}
.y17f{bottom:761.733333pt;}
.y42{bottom:763.933333pt;}
.y148{bottom:764.386667pt;}
.y1b6{bottom:766.653333pt;}
.y95{bottom:770.973333pt;}
.ye5{bottom:775.613333pt;}
.y41{bottom:779.133333pt;}
.y147{bottom:779.746667pt;}
.y1b5{bottom:782.013333pt;}
.yb{bottom:783.773333pt;}
.y94{bottom:786.333333pt;}
.ye4{bottom:790.973333pt;}
.y40{bottom:794.493333pt;}
.y146{bottom:795.106667pt;}
.y1b4{bottom:797.213333pt;}
.y17e{bottom:798.533333pt;}
.y93{bottom:801.693333pt;}
.ye3{bottom:806.333333pt;}
.ya{bottom:809.693333pt;}
.y3f{bottom:809.853333pt;}
.y145{bottom:810.306667pt;}
.y1b3{bottom:812.573333pt;}
.y17d{bottom:813.893333pt;}
.y92{bottom:816.893333pt;}
.ye2{bottom:821.693333pt;}
.y3e{bottom:825.213333pt;}
.y144{bottom:825.666667pt;}
.y1b2{bottom:827.933333pt;}
.y17b{bottom:829.253333pt;}
.y91{bottom:832.253333pt;}
.ye1{bottom:837.053333pt;}
.y9{bottom:839.173333pt;}
.y3d{bottom:840.573333pt;}
.y143{bottom:841.026667pt;}
.y1b1{bottom:843.293333pt;}
.y17a{bottom:845.253333pt;}
.y90{bottom:847.613333pt;}
.ye0{bottom:852.253333pt;}
.y3c{bottom:855.773333pt;}
.y142{bottom:856.386667pt;}
.y1b0{bottom:858.653333pt;}
.y8f{bottom:862.973333pt;}
.ydf{bottom:867.613333pt;}
.y3b{bottom:871.133333pt;}
.y141{bottom:871.746667pt;}
.y1af{bottom:874.013333pt;}
.y8{bottom:875.973333pt;}
.y8e{bottom:878.333333pt;}
.yde{bottom:882.973333pt;}
.y179{bottom:883.653333pt;}
.y3a{bottom:886.493333pt;}
.y140{bottom:887.106667pt;}
.y1ad{bottom:889.213333pt;}
.y8d{bottom:893.533333pt;}
.ydd{bottom:898.333333pt;}
.y39{bottom:901.893333pt;}
.y13f{bottom:902.333333pt;}
.y1ac{bottom:904.613333pt;}
.y8c{bottom:908.893333pt;}
.y7{bottom:912.773333pt;}
.ydc{bottom:913.693333pt;}
.y37{bottom:917.253333pt;}
.y13e{bottom:917.693333pt;}
.y1ab{bottom:919.973333pt;}
.y178{bottom:920.160000pt;}
.y8b{bottom:924.253333pt;}
.ydb{bottom:928.893333pt;}
.y13d{bottom:933.053333pt;}
.y1aa{bottom:935.333333pt;}
.y6{bottom:935.973333pt;}
.y8a{bottom:939.653333pt;}
.yda{bottom:944.253333pt;}
.y36{bottom:947.813333pt;}
.y13c{bottom:948.413333pt;}
.y1a9{bottom:950.693333pt;}
.y89{bottom:955.013333pt;}
.yd9{bottom:959.613333pt;}
.y35{bottom:963.173333pt;}
.y13b{bottom:963.773333pt;}
.y5{bottom:964.293333pt;}
.y1a8{bottom:965.893333pt;}
.y88{bottom:970.373333pt;}
.yd8{bottom:974.973333pt;}
.y34{bottom:978.533333pt;}
.y13a{bottom:979.133333pt;}
.y1a7{bottom:981.253333pt;}
.y87{bottom:985.573333pt;}
.yd7{bottom:990.333333pt;}
.y4{bottom:992.453333pt;}
.y33{bottom:993.893333pt;}
.y139{bottom:994.333333pt;}
.y1a6{bottom:996.613333pt;}
.y86{bottom:1000.933333pt;}
.yd6{bottom:1005.693333pt;}
.y32{bottom:1009.253333pt;}
.y138{bottom:1009.693333pt;}
.y1a5{bottom:1011.973333pt;}
.y85{bottom:1016.293333pt;}
.y3{bottom:1020.613333pt;}
.yd5{bottom:1020.893333pt;}
.y31{bottom:1024.613333pt;}
.y137{bottom:1025.053333pt;}
.y1a4{bottom:1027.333333pt;}
.y84{bottom:1031.653333pt;}
.yd4{bottom:1036.293333pt;}
.y30{bottom:1039.813333pt;}
.y136{bottom:1040.413333pt;}
.y1a3{bottom:1042.693333pt;}
.y83{bottom:1047.013333pt;}
.yd3{bottom:1051.653333pt;}
.y2f{bottom:1055.173333pt;}
.y135{bottom:1055.773333pt;}
.y1a2{bottom:1057.893333pt;}
.y2{bottom:1060.000000pt;}
.y82{bottom:1062.373333pt;}
.yd2{bottom:1067.013333pt;}
.y2e{bottom:1070.533333pt;}
.y134{bottom:1070.973333pt;}
.y1a1{bottom:1073.253333pt;}
.y81{bottom:1077.573333pt;}
.yd1{bottom:1082.373333pt;}
.y2d{bottom:1085.893333pt;}
.y133{bottom:1086.333333pt;}
.y1a0{bottom:1088.613333pt;}
.y80{bottom:1092.933333pt;}
.yd0{bottom:1097.733333pt;}
.y2c{bottom:1101.253333pt;}
.y132{bottom:1101.693333pt;}
.y19f{bottom:1103.973333pt;}
.y7f{bottom:1108.293333pt;}
.ycf{bottom:1112.933333pt;}
.y2b{bottom:1116.453333pt;}
.y131{bottom:1117.053333pt;}
.y19e{bottom:1119.333333pt;}
.y7e{bottom:1123.653333pt;}
.yce{bottom:1128.293333pt;}
.y2a{bottom:1131.813333pt;}
.y130{bottom:1132.413333pt;}
.y19d{bottom:1134.693333pt;}
.y7d{bottom:1139.013333pt;}
.ycd{bottom:1143.653333pt;}
.y29{bottom:1147.173333pt;}
.y12f{bottom:1147.773333pt;}
.y19c{bottom:1149.893333pt;}
.y7c{bottom:1154.213333pt;}
.ycc{bottom:1159.013333pt;}
.y28{bottom:1162.533333pt;}
.y12e{bottom:1162.973333pt;}
.y19b{bottom:1165.253333pt;}
.y7b{bottom:1169.573333pt;}
.ycb{bottom:1174.373333pt;}
.y27{bottom:1177.893333pt;}
.y12d{bottom:1178.333333pt;}
.y19a{bottom:1180.613333pt;}
.y7a{bottom:1184.933333pt;}
.yca{bottom:1189.573333pt;}
.y25{bottom:1193.280000pt;}
.y12c{bottom:1193.693333pt;}
.y199{bottom:1196.000000pt;}
.y79{bottom:1200.293333pt;}
.yc9{bottom:1205.573333pt;}
.y24{bottom:1208.480000pt;}
.y12b{bottom:1209.093333pt;}
.y198{bottom:1211.360000pt;}
.y78{bottom:1215.653333pt;}
.y12a{bottom:1224.453333pt;}
.y22{bottom:1224.480000pt;}
.y197{bottom:1227.360000pt;}
.y77{bottom:1231.040000pt;}
.y129{bottom:1239.813333pt;}
.yc8{bottom:1241.573333pt;}
.y76{bottom:1246.240000pt;}
.y128{bottom:1255.013333pt;}
.y21{bottom:1260.480000pt;}
.y75{bottom:1262.240000pt;}
.y127{bottom:1270.373333pt;}
.yc7{bottom:1276.133333pt;}
.y126{bottom:1285.733333pt;}
.yc6{bottom:1291.333333pt;}
.y74{bottom:1298.240000pt;}
.y125{bottom:1301.093333pt;}
.yc4{bottom:1306.693333pt;}
.y124{bottom:1316.453333pt;}
.yc3{bottom:1321.920000pt;}
.y123{bottom:1331.653333pt;}
.yc2{bottom:1337.920000pt;}
.y122{bottom:1347.013333pt;}
.y121{bottom:1362.373333pt;}
.yc1{bottom:1373.920000pt;}
.y120{bottom:1377.733333pt;}
.y11f{bottom:1393.093333pt;}
.y11e{bottom:1408.453333pt;}
.y11d{bottom:1423.653333pt;}
.y11c{bottom:1439.013333pt;}
.y11b{bottom:1454.373333pt;}
.y11a{bottom:1469.733333pt;}
.y119{bottom:1485.093333pt;}
.y118{bottom:1500.453333pt;}
.y117{bottom:1515.653333pt;}
.y116{bottom:1531.040000pt;}
.y115{bottom:1546.400000pt;}
.y113{bottom:1562.400000pt;}
.y112{bottom:1600.800000pt;}
.h15{height:15.186667pt;}
.h24{height:15.198667pt;}
.h12{height:15.200000pt;}
.h22{height:15.218667pt;}
.h21{height:15.226667pt;}
.h14{height:15.346667pt;}
.h1a{height:15.353333pt;}
.h25{height:15.358667pt;}
.hf{height:15.360000pt;}
.h19{height:15.378667pt;}
.h17{height:15.380000pt;}
.h13{height:15.386667pt;}
.h23{height:15.392000pt;}
.h16{height:30.546667pt;}
.h8{height:36.786667pt;}
.hc{height:36.798667pt;}
.ha{height:36.818667pt;}
.hb{height:36.832000pt;}
.h6{height:42.084375pt;}
.h7{height:46.812500pt;}
.h11{height:52.108438pt;}
.h10{height:52.134375pt;}
.h2b{height:53.535000pt;}
.h2{height:57.787500pt;}
.h2a{height:58.238750pt;}
.h18{height:58.563750pt;}
.h3{height:62.812500pt;}
.h9{height:64.500000pt;}
.h5{height:71.524375pt;}
.h4{height:83.540625pt;}
.h29{height:982.666667pt;}
.h28{height:982.880000pt;}
.h1b{height:1058.400000pt;}
.h1c{height:1058.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.hd{height:1323.040000pt;}
.he{height:1323.333333pt;}
.h1e{height:1360.666667pt;}
.h1d{height:1360.800000pt;}
.h1f{height:1436.480000pt;}
.h20{height:1436.666667pt;}
.h26{height:1663.200000pt;}
.h27{height:1663.333333pt;}
.w1e{width:28.640000pt;}
.w3{width:30.386667pt;}
.w23{width:37.760000pt;}
.w18{width:40.626667pt;}
.w27{width:56.626667pt;}
.w21{width:56.666667pt;}
.w29{width:58.266667pt;}
.w28{width:60.786667pt;}
.w17{width:62.066667pt;}
.w15{width:62.226667pt;}
.w16{width:62.258667pt;}
.w14{width:62.272000pt;}
.w24{width:66.112000pt;}
.w26{width:66.258667pt;}
.w9{width:67.360000pt;}
.wc{width:67.378667pt;}
.wa{width:67.392000pt;}
.w2d{width:69.298667pt;}
.w2c{width:71.072000pt;}
.w2a{width:71.538667pt;}
.wb{width:77.746667pt;}
.w1f{width:81.120000pt;}
.w1c{width:82.066667pt;}
.w1a{width:82.240000pt;}
.w19{width:82.258667pt;}
.w1b{width:82.272000pt;}
.wd{width:83.346667pt;}
.w11{width:84.306667pt;}
.wf{width:84.320000pt;}
.w20{width:84.466667pt;}
.w12{width:84.498667pt;}
.w10{width:84.512000pt;}
.w25{width:85.106667pt;}
.w6{width:116.626667pt;}
.w2b{width:116.960000pt;}
.we{width:137.453333pt;}
.w4{width:184.825333pt;}
.w5{width:184.853333pt;}
.w8{width:196.337333pt;}
.w13{width:199.533333pt;}
.w1d{width:207.905333pt;}
.w7{width:225.973333pt;}
.w22{width:281.345333pt;}
.w2{width:569.080000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.198667pt;}
.x25{left:9.426667pt;}
.xf{left:10.546667pt;}
.x19{left:11.666667pt;}
.x14{left:13.106667pt;}
.xe{left:14.226667pt;}
.x6{left:15.200000pt;}
.x30{left:16.160000pt;}
.x16{left:17.106667pt;}
.x1b{left:18.706667pt;}
.x12{left:20.466667pt;}
.xa{left:21.746667pt;}
.x22{left:22.906667pt;}
.x10{left:23.826667pt;}
.x27{left:25.146667pt;}
.xd{left:26.586667pt;}
.x13{left:28.506667pt;}
.x23{left:29.626667pt;}
.x11{left:31.066667pt;}
.x1e{left:32.986667pt;}
.x17{left:35.226667pt;}
.x24{left:36.986667pt;}
.x28{left:38.426667pt;}
.x15{left:39.546667pt;}
.x3{left:40.801333pt;}
.x1f{left:42.266667pt;}
.x1d{left:43.706667pt;}
.x8{left:45.786667pt;}
.x21{left:47.066667pt;}
.x2{left:48.000000pt;}
.x20{left:50.426667pt;}
.x18{left:52.186667pt;}
.x1c{left:53.626667pt;}
.x1a{left:55.866667pt;}
.xc{left:86.906667pt;}
.x26{left:112.986667pt;}
.x2a{left:117.161333pt;}
.x36{left:141.640000pt;}
.x3b{left:171.080000pt;}
.x50{left:190.280000pt;}
.x3c{left:211.720000pt;}
.x7{left:225.640000pt;}
.x42{left:248.706667pt;}
.x31{left:254.626667pt;}
.x51{left:261.826667pt;}
.x43{left:277.346667pt;}
.x3d{left:293.986667pt;}
.x2b{left:313.506667pt;}
.x48{left:322.146667pt;}
.x32{left:338.946667pt;}
.x37{left:341.186667pt;}
.x44{left:358.466667pt;}
.x49{left:359.906667pt;}
.x3e{left:376.226667pt;}
.x52{left:378.786667pt;}
.x2c{left:380.866667pt;}
.x38{left:403.466667pt;}
.x9{left:410.506667pt;}
.x33{left:423.466667pt;}
.x4a{left:426.026667pt;}
.x45{left:442.986667pt;}
.x2d{left:448.266667pt;}
.x53{left:449.866667pt;}
.x3f{left:458.506667pt;}
.x39{left:465.706667pt;}
.x34{left:507.786667pt;}
.x4b{left:511.146667pt;}
.x2e{left:526.026667pt;}
.xb{left:527.146667pt;}
.x54{left:534.346667pt;}
.x40{left:540.586667pt;}
.x4c{left:577.413333pt;}
.x3a{left:590.213333pt;}
.x35{left:592.293333pt;}
.x2f{left:593.413333pt;}
.x5{left:609.893333pt;}
.x46{left:611.973333pt;}
.x4d{left:634.053333pt;}
.x4e{left:694.853333pt;}
.x47{left:696.453333pt;}
.x4f{left:731.200000pt;}
.x41{left:737.120000pt;}
.x1{left:738.560000pt;}
.x29{left:744.160000pt;}
}




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