
    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_01231af60b8da4d5c982b187.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_c707fd1564680cf90547991f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_72a930bccddca93467a02e85.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.008789;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_cd79b77287e1cbfc2d763922.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.964844;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_538ca844fdb80f217be2b9d9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_2261f0f8a79221fe3f98ac70.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.897461;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_29ca2ba5d99d828e26a4f32e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_5b348b3310d7a7bd95e97988.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.061035;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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);}
.v5{vertical-align:-5.760000px;}
.v2{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.880000px;}
.v4{vertical-align:9.360000px;}
.v3{vertical-align:18.000000px;}
.v1{vertical-align:23.760000px;}
.ls9{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.180000px;}
.ls8{letter-spacing:-0.172200px;}
.ls12{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.000003px;}
.ls7{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.177840px;}
.lsd{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.341280px;}
.ls1{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.408000px;}
.ls13{letter-spacing:0.720000px;}
.ls11{letter-spacing:118.224000px;}
.lsf{letter-spacing:137.640000px;}
.lse{letter-spacing:157.800000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-72.144000px;}
.ws6{word-spacing:-72.000003px;}
.ws4{word-spacing:-72.000000px;}
.ws8{word-spacing:-48.240000px;}
.ws5{word-spacing:-48.067800px;}
.ws1{word-spacing:-21.060000px;}
.ws9{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.856000px;}
.ws2{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
._4{margin-left:-88.467840px;}
._36{margin-left:-16.416000px;}
._1f{margin-left:-9.036000px;}
._26{margin-left:-6.768000px;}
._1d{margin-left:-4.984080px;}
._14{margin-left:-3.960000px;}
._15{margin-left:-2.808000px;}
._0{margin-left:-1.267920px;}
._3{width:1.347840px;}
._a{width:2.415840px;}
._8{width:3.469920px;}
._e{width:5.084160px;}
._f{width:6.651840px;}
._9{width:8.453520px;}
._2{width:9.607680px;}
._1{width:11.035440px;}
._b{width:12.208320px;}
._c{width:13.392000px;}
._d{width:14.400000px;}
._16{width:15.552000px;}
._1a{width:16.776000px;}
._17{width:19.152000px;}
._12{width:20.304000px;}
._13{width:21.600000px;}
._20{width:22.648320px;}
._10{width:23.760000px;}
._30{width:25.272000px;}
._27{width:27.144000px;}
._18{width:28.584000px;}
._19{width:29.664000px;}
._1c{width:33.508080px;}
._1b{width:35.107920px;}
._11{width:36.480000px;}
._3f{width:39.024000px;}
._40{width:40.608000px;}
._2c{width:45.540000px;}
._22{width:50.160000px;}
._23{width:52.048080px;}
._7{width:63.360000px;}
._3e{width:64.852080px;}
._3d{width:66.403920px;}
._5{width:83.380080px;}
._2b{width:85.572000px;}
._2a{width:87.516000px;}
._2f{width:90.000000px;}
._3b{width:93.312000px;}
._3a{width:95.256000px;}
._1e{width:97.120320px;}
._35{width:102.835680px;}
._37{width:108.180000px;}
._39{width:110.160000px;}
._32{width:113.040000px;}
._3c{width:123.192000px;}
._34{width:127.512000px;}
._29{width:133.452000px;}
._25{width:161.280000px;}
._2d{width:165.420000px;}
._2e{width:177.516000px;}
._21{width:180.000000px;}
._28{width:181.476000px;}
._33{width:186.168000px;}
._38{width:189.216000px;}
._31{width:193.536000px;}
._24{width:198.000000px;}
._6{width:1386.156000px;}
.fc4{color:transparent;}
.fc3{color:rgb(238,0,0);}
.fc2{color:rgb(237,125,49);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs1{font-size:84.240000px;}
.yc{bottom:-16.200000px;}
.y0{bottom:0.000000px;}
.y90{bottom:4.890000px;}
.y10c{bottom:5.010000px;}
.y8e{bottom:5.115000px;}
.yb{bottom:6.120000px;}
.yad{bottom:7.020000px;}
.yb0{bottom:7.200000px;}
.ye5{bottom:7.245000px;}
.y2d{bottom:12.600000px;}
.y9{bottom:18.540000px;}
.ydf{bottom:30.420000px;}
.yc1{bottom:30.780000px;}
.yc6{bottom:30.810000px;}
.yc4{bottom:30.954000px;}
.yc8{bottom:30.960000px;}
.ye4{bottom:31.005000px;}
.ye1{bottom:31.140000px;}
.ya{bottom:31.500000px;}
.y8{bottom:50.040000px;}
.yde{bottom:55.800000px;}
.y7{bottom:70.776000px;}
.y6{bottom:91.476000px;}
.y5{bottom:112.176000px;}
.y8c{bottom:115.596000px;}
.ye9{bottom:116.136000px;}
.y58{bottom:116.316000px;}
.y133{bottom:120.816000px;}
.yb4{bottom:123.516000px;}
.y10a{bottom:123.696000px;}
.y7c{bottom:125.136000px;}
.y17e{bottom:127.836000px;}
.y57{bottom:137.376000px;}
.yc3{bottom:139.896000px;}
.y132{bottom:141.876000px;}
.yb3{bottom:143.676000px;}
.y15a{bottom:143.856000px;}
.y7b{bottom:146.196000px;}
.y17d{bottom:148.896000px;}
.y2c{bottom:149.796000px;}
.y8b{bottom:152.670000px;}
.y109{bottom:160.590000px;}
.y19d{bottom:162.030000px;}
.y131{bottom:162.750000px;}
.ye8{bottom:163.830000px;}
.yb2{bottom:164.370000px;}
.y159{bottom:164.730000px;}
.y7a{bottom:167.070000px;}
.y17c{bottom:169.770000px;}
.y2b{bottom:170.670000px;}
.y8a{bottom:174.090000px;}
.y56{bottom:177.330000px;}
.y108{bottom:181.470000px;}
.y19c{bottom:182.910000px;}
.y130{bottom:183.810000px;}
.y158{bottom:185.790000px;}
.yc2{bottom:187.590000px;}
.y79{bottom:188.130000px;}
.y17b{bottom:190.650000px;}
.y199{bottom:191.550000px;}
.y2a{bottom:191.730000px;}
.y89{bottom:194.970000px;}
.y107{bottom:202.350000px;}
.y19b{bottom:203.790000px;}
.y12f{bottom:204.690000px;}
.y157{bottom:206.670000px;}
.y78{bottom:209.010000px;}
.ye7{bottom:211.350000px;}
.y17a{bottom:211.710000px;}
.yb1{bottom:211.890000px;}
.y29{bottom:212.610000px;}
.y55{bottom:214.050000px;}
.y88{bottom:216.030000px;}
.y106{bottom:223.410000px;}
.y19a{bottom:224.850000px;}
.y12e{bottom:225.570000px;}
.y156{bottom:227.730000px;}
.y179{bottom:232.590000px;}
.y28{bottom:233.490000px;}
.y54{bottom:235.110000px;}
.yaf{bottom:235.650000px;}
.yc0{bottom:236.010000px;}
.y87{bottom:236.910000px;}
.y105{bottom:244.290000px;}
.y77{bottom:245.730000px;}
.y12d{bottom:246.630000px;}
.y155{bottom:248.610000px;}
.y178{bottom:253.650000px;}
.y27{bottom:254.550000px;}
.y53{bottom:255.990000px;}
.y86{bottom:257.970000px;}
.ye6{bottom:259.050000px;}
.yae{bottom:259.590000px;}
.y104{bottom:265.350000px;}
.y76{bottom:266.790000px;}
.y12c{bottom:267.510000px;}
.y154{bottom:269.490000px;}
.y26{bottom:275.430000px;}
.y52{bottom:277.050000px;}
.y85{bottom:278.850000px;}
.yac{bottom:283.350000px;}
.y103{bottom:286.230000px;}
.y75{bottom:287.670000px;}
.y12b{bottom:288.570000px;}
.ybf{bottom:288.930000px;}
.y177{bottom:290.370000px;}
.y153{bottom:290.550000px;}
.y198{bottom:296.310000px;}
.y25{bottom:296.490000px;}
.y51{bottom:297.930000px;}
.y84{bottom:299.910000px;}
.ye3{bottom:306.570000px;}
.y102{bottom:307.290000px;}
.y74{bottom:308.730000px;}
.y12a{bottom:309.495000px;}
.y176{bottom:311.295000px;}
.y8f{bottom:311.760000px;}
.y197{bottom:317.055000px;}
.y24{bottom:317.415000px;}
.yab{bottom:317.595000px;}
.y50{bottom:319.035000px;}
.y83{bottom:320.835000px;}
.ybe{bottom:325.695000px;}
.y152{bottom:327.315000px;}
.y101{bottom:328.215000px;}
.y73{bottom:329.655000px;}
.y129{bottom:330.555000px;}
.y175{bottom:332.355000px;}
.y8d{bottom:334.980000px;}
.y196{bottom:338.115000px;}
.y4f{bottom:339.915000px;}
.yaa{bottom:340.455000px;}
.y82{bottom:341.715000px;}
.y151{bottom:348.375000px;}
.y100{bottom:349.095000px;}
.y72{bottom:350.535000px;}
.y128{bottom:351.435000px;}
.y174{bottom:353.235000px;}
.ye2{bottom:354.315000px;}
.y23{bottom:357.555000px;}
.y195{bottom:358.995000px;}
.y4e{bottom:360.795000px;}
.ya9{bottom:361.335000px;}
.ybd{bottom:362.595000px;}
.y81{bottom:362.775000px;}
.y150{bottom:369.255000px;}
.yff{bottom:370.155000px;}
.y71{bottom:371.595000px;}
.y127{bottom:372.315000px;}
.y173{bottom:374.295000px;}
.y194{bottom:380.055000px;}
.y4d{bottom:381.855000px;}
.y80{bottom:383.655000px;}
.y14f{bottom:390.135000px;}
.yfe{bottom:391.035000px;}
.y70{bottom:392.475000px;}
.y126{bottom:393.375000px;}
.y22{bottom:394.275000px;}
.y172{bottom:395.175000px;}
.ybc{bottom:399.315000px;}
.y193{bottom:400.935000px;}
.ya8{bottom:401.475000px;}
.ydd{bottom:401.835000px;}
.y4c{bottom:402.735000px;}
.y7f{bottom:404.715000px;}
.y14e{bottom:411.195000px;}
.yfd{bottom:412.095000px;}
.y6f{bottom:413.535000px;}
.y125{bottom:414.255000px;}
.y171{bottom:416.235000px;}
.y4b{bottom:423.795000px;}
.y7e{bottom:425.595000px;}
.y21{bottom:430.995000px;}
.y14d{bottom:432.075000px;}
.yfc{bottom:432.975000px;}
.y6e{bottom:434.415000px;}
.y124{bottom:435.315000px;}
.ybb{bottom:436.035000px;}
.y170{bottom:437.115000px;}
.ya7{bottom:438.195000px;}
.y4a{bottom:444.675000px;}
.ye0{bottom:450.435000px;}
.y20{bottom:452.055000px;}
.y14c{bottom:453.135000px;}
.y6d{bottom:455.475000px;}
.y123{bottom:456.195000px;}
.yba{bottom:457.095000px;}
.y16f{bottom:457.995000px;}
.ya6{bottom:459.075000px;}
.y192{bottom:462.315000px;}
.y49{bottom:465.735000px;}
.yfb{bottom:469.875000px;}
.y14b{bottom:474.015000px;}
.y6c{bottom:476.355000px;}
.yb9{bottom:477.975000px;}
.y16e{bottom:479.055000px;}
.ya5{bottom:480.135000px;}
.ydc{bottom:481.215000px;}
.y191{bottom:483.375000px;}
.y48{bottom:486.615000px;}
.y1f{bottom:488.775000px;}
.yfa{bottom:490.755000px;}
.y122{bottom:492.915000px;}
.y14a{bottom:495.075000px;}
.y6b{bottom:497.235000px;}
.yb8{bottom:499.035000px;}
.y16d{bottom:499.935000px;}
.ya4{bottom:501.015000px;}
.ydb{bottom:502.095000px;}
.y7d{bottom:502.455000px;}
.y190{bottom:504.255000px;}
.y1e{bottom:509.835000px;}
.yf9{bottom:511.635000px;}
.y121{bottom:513.975000px;}
.y149{bottom:515.955000px;}
.y6a{bottom:518.295000px;}
.yb7{bottom:519.915000px;}
.y16c{bottom:520.995000px;}
.ya3{bottom:522.075000px;}
.y47{bottom:523.335000px;}
.y18f{bottom:525.315000px;}
.y1d{bottom:530.715000px;}
.yf8{bottom:532.695000px;}
.y120{bottom:534.855000px;}
.y148{bottom:536.835000px;}
.yda{bottom:538.995000px;}
.y69{bottom:539.175000px;}
.yb6{bottom:540.975000px;}
.y16b{bottom:541.875000px;}
.ya2{bottom:542.955000px;}
.y46{bottom:544.395000px;}
.y18e{bottom:546.195000px;}
.y1c{bottom:551.595000px;}
.yf7{bottom:553.575000px;}
.y11f{bottom:555.915000px;}
.y147{bottom:557.895000px;}
.yd9{bottom:559.875000px;}
.y68{bottom:560.235000px;}
.y16a{bottom:562.965000px;}
.ya1{bottom:564.045000px;}
.y45{bottom:565.305000px;}
.y18d{bottom:567.285000px;}
.y1b{bottom:572.685000px;}
.yf6{bottom:574.665000px;}
.y11e{bottom:576.825000px;}
.yb5{bottom:577.725000px;}
.y146{bottom:578.805000px;}
.yd8{bottom:580.965000px;}
.y67{bottom:581.145000px;}
.y169{bottom:583.845000px;}
.ya0{bottom:584.925000px;}
.y44{bottom:586.365000px;}
.y18c{bottom:588.165000px;}
.y1a{bottom:593.565000px;}
.yf5{bottom:595.545000px;}
.y11d{bottom:597.885000px;}
.y145{bottom:599.865000px;}
.yd7{bottom:601.845000px;}
.y66{bottom:602.205000px;}
.y9f{bottom:605.805000px;}
.y43{bottom:607.245000px;}
.y18b{bottom:609.045000px;}
.y19{bottom:614.625000px;}
.yf4{bottom:616.605000px;}
.y11c{bottom:618.765000px;}
.y168{bottom:620.565000px;}
.y144{bottom:620.745000px;}
.yd6{bottom:622.725000px;}
.y65{bottom:623.085000px;}
.y9e{bottom:626.865000px;}
.y42{bottom:628.305000px;}
.y18a{bottom:630.105000px;}
.y18{bottom:635.505000px;}
.yf3{bottom:637.485000px;}
.y11b{bottom:639.645000px;}
.y143{bottom:641.805000px;}
.yd5{bottom:643.785000px;}
.y64{bottom:643.965000px;}
.y167{bottom:645.045000px;}
.y9d{bottom:647.745000px;}
.y41{bottom:649.185000px;}
.y189{bottom:650.985000px;}
.y17{bottom:656.565000px;}
.yf2{bottom:658.365000px;}
.y11a{bottom:660.705000px;}
.yd4{bottom:664.665000px;}
.y63{bottom:665.025000px;}
.y166{bottom:665.205000px;}
.y40{bottom:670.065000px;}
.y188{bottom:672.045000px;}
.y16{bottom:677.445000px;}
.y142{bottom:678.525000px;}
.yf1{bottom:679.425000px;}
.y9c{bottom:684.645000px;}
.yd3{bottom:685.725000px;}
.y62{bottom:685.905000px;}
.y3f{bottom:691.125000px;}
.y187{bottom:692.925000px;}
.y119{bottom:697.425000px;}
.y15{bottom:698.325000px;}
.yf0{bottom:700.305000px;}
.y141{bottom:703.005000px;}
.y9b{bottom:705.525000px;}
.yd2{bottom:706.605000px;}
.y61{bottom:706.965000px;}
.y3e{bottom:712.005000px;}
.y186{bottom:713.985000px;}
.y165{bottom:717.405000px;}
.yef{bottom:721.365000px;}
.y118{bottom:721.905000px;}
.y140{bottom:722.985000px;}
.y9a{bottom:726.405000px;}
.yd1{bottom:727.665000px;}
.y60{bottom:727.845000px;}
.y3d{bottom:733.065000px;}
.y185{bottom:734.865000px;}
.y14{bottom:738.465000px;}
.y117{bottom:742.065000px;}
.yee{bottom:742.245000px;}
.y164{bottom:743.505000px;}
.yd0{bottom:748.545000px;}
.y5f{bottom:748.905000px;}
.y13f{bottom:749.085000px;}
.y3c{bottom:753.945000px;}
.y184{bottom:755.745000px;}
.yed{bottom:763.305000px;}
.y99{bottom:767.985000px;}
.ycf{bottom:769.425000px;}
.y163{bottom:769.605000px;}
.y5e{bottom:769.785000px;}
.y3b{bottom:775.005000px;}
.y13e{bottom:775.365000px;}
.y183{bottom:776.805000px;}
.y13{bottom:778.425000px;}
.yce{bottom:790.485000px;}
.y5d{bottom:790.665000px;}
.y116{bottom:794.805000px;}
.y3a{bottom:795.885000px;}
.y182{bottom:797.685000px;}
.y12{bottom:799.665000px;}
.yec{bottom:800.025000px;}
.y13d{bottom:801.465000px;}
.y98{bottom:805.065000px;}
.ycd{bottom:811.410000px;}
.y5c{bottom:811.770000px;}
.y39{bottom:816.810000px;}
.y181{bottom:818.790000px;}
.y11{bottom:820.950000px;}
.y115{bottom:821.850000px;}
.y162{bottom:822.030000px;}
.yeb{bottom:824.370000px;}
.y13c{bottom:827.790000px;}
.y5b{bottom:832.650000px;}
.y38{bottom:837.870000px;}
.y180{bottom:839.670000px;}
.yea{bottom:842.010000px;}
.y97{bottom:846.690000px;}
.ycc{bottom:848.310000px;}
.y114{bottom:848.670000px;}
.y5a{bottom:853.710000px;}
.y13b{bottom:853.890000px;}
.y10{bottom:857.670000px;}
.y37{bottom:858.750000px;}
.y17f{bottom:860.730000px;}
.ycb{bottom:865.770000px;}
.y161{bottom:874.410000px;}
.y59{bottom:874.590000px;}
.y113{bottom:875.490000px;}
.y13a{bottom:880.170000px;}
.y96{bottom:883.770000px;}
.y36{bottom:895.650000px;}
.y1a2{bottom:896.910000px;}
.yf{bottom:897.810000px;}
.y160{bottom:900.690000px;}
.y112{bottom:902.310000px;}
.y139{bottom:906.090000px;}
.yca{bottom:913.290000px;}
.y35{bottom:916.530000px;}
.y1a1{bottom:917.610000px;}
.y95{bottom:925.170000px;}
.y15f{bottom:926.610000px;}
.y15b{bottom:928.800000px;}
.y111{bottom:929.130000px;}
.y138{bottom:932.550000px;}
.yc9{bottom:937.230000px;}
.y34{bottom:937.410000px;}
.ye{bottom:937.770000px;}
.y1a0{bottom:938.310000px;}
.y15e{bottom:953.430000px;}
.y110{bottom:955.950000px;}
.y33{bottom:958.470000px;}
.y19f{bottom:959.010000px;}
.yd{bottom:962.430000px;}
.y32{bottom:979.350000px;}
.y19e{bottom:979.710000px;}
.y15d{bottom:980.250000px;}
.y10f{bottom:982.770000px;}
.y137{bottom:984.390000px;}
.yc7{bottom:984.750000px;}
.y134{bottom:986.580000px;}
.y94{bottom:999.150000px;}
.y31{bottom:1000.410000px;}
.y4{bottom:1004.010000px;}
.y15c{bottom:1005.450000px;}
.y10e{bottom:1009.590000px;}
.y136{bottom:1011.210000px;}
.y10b{bottom:1011.600000px;}
.y93{bottom:1020.030000px;}
.y30{bottom:1021.290000px;}
.yc5{bottom:1032.450000px;}
.y10d{bottom:1036.410000px;}
.y135{bottom:1038.030000px;}
.y92{bottom:1041.270000px;}
.y2f{bottom:1042.350000px;}
.y3{bottom:1046.490000px;}
.y91{bottom:1062.720000px;}
.y2e{bottom:1063.260000px;}
.y2{bottom:1088.280000px;}
.y1{bottom:1114.380000px;}
.hb{height:21.960000px;}
.hd{height:23.760000px;}
.he{height:23.940000px;}
.hf{height:47.520000px;}
.h11{height:47.556000px;}
.h10{height:47.700000px;}
.h14{height:47.736000px;}
.h13{height:47.880000px;}
.h3{height:49.500000px;}
.h2{height:50.273438px;}
.h6{height:50.800781px;}
.h9{height:52.417969px;}
.h5{height:54.316406px;}
.h7{height:57.796523px;}
.h4{height:58.320000px;}
.h8{height:59.343750px;}
.h1{height:59.436914px;}
.ha{height:60.679688px;}
.hc{height:61.043203px;}
.h12{height:72.540000px;}
.h0{height:1188.000000px;}
.w17{width:5.940000px;}
.w2{width:6.120000px;}
.w16{width:6.300000px;}
.w6{width:8.100000px;}
.w4{width:40.140000px;}
.w3{width:43.920000px;}
.wb{width:50.760000px;}
.w5{width:54.000000px;}
.wd{width:56.700000px;}
.wf{width:56.736000px;}
.w8{width:61.740000px;}
.wa{width:65.520000px;}
.w10{width:73.980000px;}
.w14{width:75.816000px;}
.w7{width:78.336000px;}
.w9{width:88.236000px;}
.w15{width:90.000000px;}
.w13{width:100.260000px;}
.wc{width:104.076000px;}
.w12{width:106.416000px;}
.w11{width:193.530000px;}
.we{width:300.810000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1f{left:2.520000px;}
.x22{left:4.500000px;}
.x6{left:9.719986px;}
.x21{left:15.660000px;}
.x7{left:38.339986px;}
.x2c{left:56.700000px;}
.xf{left:106.955986px;}
.x5{left:108.035986px;}
.x1b{left:114.155986px;}
.x11{left:121.895986px;}
.xb{left:123.695986px;}
.x9{left:135.575986px;}
.x3d{left:160.949986px;}
.x3e{left:162.029986px;}
.x35{left:172.649986px;}
.x3a{left:173.729986px;}
.x1{left:176.249986px;}
.x2f{left:181.305000px;}
.xd{left:185.969986px;}
.x3{left:206.309986px;}
.x2e{left:208.110000px;}
.x25{left:215.310000px;}
.x2d{left:216.929986px;}
.x24{left:229.529986px;}
.xe{left:252.569986px;}
.x1c{left:276.329986px;}
.x1d{left:278.309986px;}
.x2{left:282.449986px;}
.xc{left:293.114986px;}
.x26{left:319.395000px;}
.x36{left:340.814986px;}
.x1e{left:354.675000px;}
.x27{left:376.095000px;}
.x30{left:401.655000px;}
.x20{left:416.415000px;}
.xa{left:421.454986px;}
.x8{left:423.074986px;}
.x3b{left:430.020000px;}
.x28{left:432.795000px;}
.x32{left:447.120000px;}
.x29{left:489.525000px;}
.x12{left:504.540000px;}
.x13{left:508.860000px;}
.x14{left:541.980000px;}
.x2a{left:546.225000px;}
.x18{left:549.540000px;}
.x15{left:569.880000px;}
.x16{left:574.380000px;}
.x19{left:576.000000px;}
.x2b{left:602.925000px;}
.x17{left:604.620000px;}
.x31{left:608.325000px;}
.x1a{left:616.500000px;}
.x23{left:624.884986px;}
.x33{left:646.380000px;}
.x38{left:653.040000px;}
.x3c{left:687.600000px;}
.x39{left:693.540000px;}
.x34{left:714.240000px;}
.x37{left:728.249986px;}
.x10{left:792.149986px;}
.x4{left:810.149986px;}
@media print{
.v5{vertical-align:-5.120000pt;}
.v2{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:2.560000pt;}
.v4{vertical-align:8.320000pt;}
.v3{vertical-align:16.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls9{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.160000pt;}
.ls8{letter-spacing:-0.153067pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.000003pt;}
.ls7{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.158080pt;}
.lsd{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.303360pt;}
.ls1{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.362667pt;}
.ls13{letter-spacing:0.640000pt;}
.ls11{letter-spacing:105.088000pt;}
.lsf{letter-spacing:122.346667pt;}
.lse{letter-spacing:140.266667pt;}
.ws7{word-spacing:-64.128000pt;}
.ws6{word-spacing:-64.000003pt;}
.ws4{word-spacing:-64.000000pt;}
.ws8{word-spacing:-42.880000pt;}
.ws5{word-spacing:-42.726933pt;}
.ws1{word-spacing:-18.720000pt;}
.ws9{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.872000pt;}
.ws2{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
._4{margin-left:-78.638080pt;}
._36{margin-left:-14.592000pt;}
._1f{margin-left:-8.032000pt;}
._26{margin-left:-6.016000pt;}
._1d{margin-left:-4.430293pt;}
._14{margin-left:-3.520000pt;}
._15{margin-left:-2.496000pt;}
._0{margin-left:-1.127040pt;}
._3{width:1.198080pt;}
._a{width:2.147413pt;}
._8{width:3.084373pt;}
._e{width:4.519253pt;}
._f{width:5.912747pt;}
._9{width:7.514240pt;}
._2{width:8.540160pt;}
._1{width:9.809280pt;}
._b{width:10.851840pt;}
._c{width:11.904000pt;}
._d{width:12.800000pt;}
._16{width:13.824000pt;}
._1a{width:14.912000pt;}
._17{width:17.024000pt;}
._12{width:18.048000pt;}
._13{width:19.200000pt;}
._20{width:20.131840pt;}
._10{width:21.120000pt;}
._30{width:22.464000pt;}
._27{width:24.128000pt;}
._18{width:25.408000pt;}
._19{width:26.368000pt;}
._1c{width:29.784960pt;}
._1b{width:31.207040pt;}
._11{width:32.426667pt;}
._3f{width:34.688000pt;}
._40{width:36.096000pt;}
._2c{width:40.480000pt;}
._22{width:44.586667pt;}
._23{width:46.264960pt;}
._7{width:56.320000pt;}
._3e{width:57.646293pt;}
._3d{width:59.025707pt;}
._5{width:74.115627pt;}
._2b{width:76.064000pt;}
._2a{width:77.792000pt;}
._2f{width:80.000000pt;}
._3b{width:82.944000pt;}
._3a{width:84.672000pt;}
._1e{width:86.329173pt;}
._35{width:91.409493pt;}
._37{width:96.160000pt;}
._39{width:97.920000pt;}
._32{width:100.480000pt;}
._3c{width:109.504000pt;}
._34{width:113.344000pt;}
._29{width:118.624000pt;}
._25{width:143.360000pt;}
._2d{width:147.040000pt;}
._2e{width:157.792000pt;}
._21{width:160.000000pt;}
._28{width:161.312000pt;}
._33{width:165.482667pt;}
._38{width:168.192000pt;}
._31{width:172.032000pt;}
._24{width:176.000000pt;}
._6{width:1232.138667pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs1{font-size:74.880000pt;}
.yc{bottom:-14.400000pt;}
.y0{bottom:0.000000pt;}
.y90{bottom:4.346667pt;}
.y10c{bottom:4.453333pt;}
.y8e{bottom:4.546667pt;}
.yb{bottom:5.440000pt;}
.yad{bottom:6.240000pt;}
.yb0{bottom:6.400000pt;}
.ye5{bottom:6.440000pt;}
.y2d{bottom:11.200000pt;}
.y9{bottom:16.480000pt;}
.ydf{bottom:27.040000pt;}
.yc1{bottom:27.360000pt;}
.yc6{bottom:27.386667pt;}
.yc4{bottom:27.514667pt;}
.yc8{bottom:27.520000pt;}
.ye4{bottom:27.560000pt;}
.ye1{bottom:27.680000pt;}
.ya{bottom:28.000000pt;}
.y8{bottom:44.480000pt;}
.yde{bottom:49.600000pt;}
.y7{bottom:62.912000pt;}
.y6{bottom:81.312000pt;}
.y5{bottom:99.712000pt;}
.y8c{bottom:102.752000pt;}
.ye9{bottom:103.232000pt;}
.y58{bottom:103.392000pt;}
.y133{bottom:107.392000pt;}
.yb4{bottom:109.792000pt;}
.y10a{bottom:109.952000pt;}
.y7c{bottom:111.232000pt;}
.y17e{bottom:113.632000pt;}
.y57{bottom:122.112000pt;}
.yc3{bottom:124.352000pt;}
.y132{bottom:126.112000pt;}
.yb3{bottom:127.712000pt;}
.y15a{bottom:127.872000pt;}
.y7b{bottom:129.952000pt;}
.y17d{bottom:132.352000pt;}
.y2c{bottom:133.152000pt;}
.y8b{bottom:135.706667pt;}
.y109{bottom:142.746667pt;}
.y19d{bottom:144.026667pt;}
.y131{bottom:144.666667pt;}
.ye8{bottom:145.626667pt;}
.yb2{bottom:146.106667pt;}
.y159{bottom:146.426667pt;}
.y7a{bottom:148.506667pt;}
.y17c{bottom:150.906667pt;}
.y2b{bottom:151.706667pt;}
.y8a{bottom:154.746667pt;}
.y56{bottom:157.626667pt;}
.y108{bottom:161.306667pt;}
.y19c{bottom:162.586667pt;}
.y130{bottom:163.386667pt;}
.y158{bottom:165.146667pt;}
.yc2{bottom:166.746667pt;}
.y79{bottom:167.226667pt;}
.y17b{bottom:169.466667pt;}
.y199{bottom:170.266667pt;}
.y2a{bottom:170.426667pt;}
.y89{bottom:173.306667pt;}
.y107{bottom:179.866667pt;}
.y19b{bottom:181.146667pt;}
.y12f{bottom:181.946667pt;}
.y157{bottom:183.706667pt;}
.y78{bottom:185.786667pt;}
.ye7{bottom:187.866667pt;}
.y17a{bottom:188.186667pt;}
.yb1{bottom:188.346667pt;}
.y29{bottom:188.986667pt;}
.y55{bottom:190.266667pt;}
.y88{bottom:192.026667pt;}
.y106{bottom:198.586667pt;}
.y19a{bottom:199.866667pt;}
.y12e{bottom:200.506667pt;}
.y156{bottom:202.426667pt;}
.y179{bottom:206.746667pt;}
.y28{bottom:207.546667pt;}
.y54{bottom:208.986667pt;}
.yaf{bottom:209.466667pt;}
.yc0{bottom:209.786667pt;}
.y87{bottom:210.586667pt;}
.y105{bottom:217.146667pt;}
.y77{bottom:218.426667pt;}
.y12d{bottom:219.226667pt;}
.y155{bottom:220.986667pt;}
.y178{bottom:225.466667pt;}
.y27{bottom:226.266667pt;}
.y53{bottom:227.546667pt;}
.y86{bottom:229.306667pt;}
.ye6{bottom:230.266667pt;}
.yae{bottom:230.746667pt;}
.y104{bottom:235.866667pt;}
.y76{bottom:237.146667pt;}
.y12c{bottom:237.786667pt;}
.y154{bottom:239.546667pt;}
.y26{bottom:244.826667pt;}
.y52{bottom:246.266667pt;}
.y85{bottom:247.866667pt;}
.yac{bottom:251.866667pt;}
.y103{bottom:254.426667pt;}
.y75{bottom:255.706667pt;}
.y12b{bottom:256.506667pt;}
.ybf{bottom:256.826667pt;}
.y177{bottom:258.106667pt;}
.y153{bottom:258.266667pt;}
.y198{bottom:263.386667pt;}
.y25{bottom:263.546667pt;}
.y51{bottom:264.826667pt;}
.y84{bottom:266.586667pt;}
.ye3{bottom:272.506667pt;}
.y102{bottom:273.146667pt;}
.y74{bottom:274.426667pt;}
.y12a{bottom:275.106667pt;}
.y176{bottom:276.706667pt;}
.y8f{bottom:277.120000pt;}
.y197{bottom:281.826667pt;}
.y24{bottom:282.146667pt;}
.yab{bottom:282.306667pt;}
.y50{bottom:283.586667pt;}
.y83{bottom:285.186667pt;}
.ybe{bottom:289.506667pt;}
.y152{bottom:290.946667pt;}
.y101{bottom:291.746667pt;}
.y73{bottom:293.026667pt;}
.y129{bottom:293.826667pt;}
.y175{bottom:295.426667pt;}
.y8d{bottom:297.760000pt;}
.y196{bottom:300.546667pt;}
.y4f{bottom:302.146667pt;}
.yaa{bottom:302.626667pt;}
.y82{bottom:303.746667pt;}
.y151{bottom:309.666667pt;}
.y100{bottom:310.306667pt;}
.y72{bottom:311.586667pt;}
.y128{bottom:312.386667pt;}
.y174{bottom:313.986667pt;}
.ye2{bottom:314.946667pt;}
.y23{bottom:317.826667pt;}
.y195{bottom:319.106667pt;}
.y4e{bottom:320.706667pt;}
.ya9{bottom:321.186667pt;}
.ybd{bottom:322.306667pt;}
.y81{bottom:322.466667pt;}
.y150{bottom:328.226667pt;}
.yff{bottom:329.026667pt;}
.y71{bottom:330.306667pt;}
.y127{bottom:330.946667pt;}
.y173{bottom:332.706667pt;}
.y194{bottom:337.826667pt;}
.y4d{bottom:339.426667pt;}
.y80{bottom:341.026667pt;}
.y14f{bottom:346.786667pt;}
.yfe{bottom:347.586667pt;}
.y70{bottom:348.866667pt;}
.y126{bottom:349.666667pt;}
.y22{bottom:350.466667pt;}
.y172{bottom:351.266667pt;}
.ybc{bottom:354.946667pt;}
.y193{bottom:356.386667pt;}
.ya8{bottom:356.866667pt;}
.ydd{bottom:357.186667pt;}
.y4c{bottom:357.986667pt;}
.y7f{bottom:359.746667pt;}
.y14e{bottom:365.506667pt;}
.yfd{bottom:366.306667pt;}
.y6f{bottom:367.586667pt;}
.y125{bottom:368.226667pt;}
.y171{bottom:369.986667pt;}
.y4b{bottom:376.706667pt;}
.y7e{bottom:378.306667pt;}
.y21{bottom:383.106667pt;}
.y14d{bottom:384.066667pt;}
.yfc{bottom:384.866667pt;}
.y6e{bottom:386.146667pt;}
.y124{bottom:386.946667pt;}
.ybb{bottom:387.586667pt;}
.y170{bottom:388.546667pt;}
.ya7{bottom:389.506667pt;}
.y4a{bottom:395.266667pt;}
.ye0{bottom:400.386667pt;}
.y20{bottom:401.826667pt;}
.y14c{bottom:402.786667pt;}
.y6d{bottom:404.866667pt;}
.y123{bottom:405.506667pt;}
.yba{bottom:406.306667pt;}
.y16f{bottom:407.106667pt;}
.ya6{bottom:408.066667pt;}
.y192{bottom:410.946667pt;}
.y49{bottom:413.986667pt;}
.yfb{bottom:417.666667pt;}
.y14b{bottom:421.346667pt;}
.y6c{bottom:423.426667pt;}
.yb9{bottom:424.866667pt;}
.y16e{bottom:425.826667pt;}
.ya5{bottom:426.786667pt;}
.ydc{bottom:427.746667pt;}
.y191{bottom:429.666667pt;}
.y48{bottom:432.546667pt;}
.y1f{bottom:434.466667pt;}
.yfa{bottom:436.226667pt;}
.y122{bottom:438.146667pt;}
.y14a{bottom:440.066667pt;}
.y6b{bottom:441.986667pt;}
.yb8{bottom:443.586667pt;}
.y16d{bottom:444.386667pt;}
.ya4{bottom:445.346667pt;}
.ydb{bottom:446.306667pt;}
.y7d{bottom:446.626667pt;}
.y190{bottom:448.226667pt;}
.y1e{bottom:453.186667pt;}
.yf9{bottom:454.786667pt;}
.y121{bottom:456.866667pt;}
.y149{bottom:458.626667pt;}
.y6a{bottom:460.706667pt;}
.yb7{bottom:462.146667pt;}
.y16c{bottom:463.106667pt;}
.ya3{bottom:464.066667pt;}
.y47{bottom:465.186667pt;}
.y18f{bottom:466.946667pt;}
.y1d{bottom:471.746667pt;}
.yf8{bottom:473.506667pt;}
.y120{bottom:475.426667pt;}
.y148{bottom:477.186667pt;}
.yda{bottom:479.106667pt;}
.y69{bottom:479.266667pt;}
.yb6{bottom:480.866667pt;}
.y16b{bottom:481.666667pt;}
.ya2{bottom:482.626667pt;}
.y46{bottom:483.906667pt;}
.y18e{bottom:485.506667pt;}
.y1c{bottom:490.306667pt;}
.yf7{bottom:492.066667pt;}
.y11f{bottom:494.146667pt;}
.y147{bottom:495.906667pt;}
.yd9{bottom:497.666667pt;}
.y68{bottom:497.986667pt;}
.y16a{bottom:500.413333pt;}
.ya1{bottom:501.373333pt;}
.y45{bottom:502.493333pt;}
.y18d{bottom:504.253333pt;}
.y1b{bottom:509.053333pt;}
.yf6{bottom:510.813333pt;}
.y11e{bottom:512.733333pt;}
.yb5{bottom:513.533333pt;}
.y146{bottom:514.493333pt;}
.yd8{bottom:516.413333pt;}
.y67{bottom:516.573333pt;}
.y169{bottom:518.973333pt;}
.ya0{bottom:519.933333pt;}
.y44{bottom:521.213333pt;}
.y18c{bottom:522.813333pt;}
.y1a{bottom:527.613333pt;}
.yf5{bottom:529.373333pt;}
.y11d{bottom:531.453333pt;}
.y145{bottom:533.213333pt;}
.yd7{bottom:534.973333pt;}
.y66{bottom:535.293333pt;}
.y9f{bottom:538.493333pt;}
.y43{bottom:539.773333pt;}
.y18b{bottom:541.373333pt;}
.y19{bottom:546.333333pt;}
.yf4{bottom:548.093333pt;}
.y11c{bottom:550.013333pt;}
.y168{bottom:551.613333pt;}
.y144{bottom:551.773333pt;}
.yd6{bottom:553.533333pt;}
.y65{bottom:553.853333pt;}
.y9e{bottom:557.213333pt;}
.y42{bottom:558.493333pt;}
.y18a{bottom:560.093333pt;}
.y18{bottom:564.893333pt;}
.yf3{bottom:566.653333pt;}
.y11b{bottom:568.573333pt;}
.y143{bottom:570.493333pt;}
.yd5{bottom:572.253333pt;}
.y64{bottom:572.413333pt;}
.y167{bottom:573.373333pt;}
.y9d{bottom:575.773333pt;}
.y41{bottom:577.053333pt;}
.y189{bottom:578.653333pt;}
.y17{bottom:583.613333pt;}
.yf2{bottom:585.213333pt;}
.y11a{bottom:587.293333pt;}
.yd4{bottom:590.813333pt;}
.y63{bottom:591.133333pt;}
.y166{bottom:591.293333pt;}
.y40{bottom:595.613333pt;}
.y188{bottom:597.373333pt;}
.y16{bottom:602.173333pt;}
.y142{bottom:603.133333pt;}
.yf1{bottom:603.933333pt;}
.y9c{bottom:608.573333pt;}
.yd3{bottom:609.533333pt;}
.y62{bottom:609.693333pt;}
.y3f{bottom:614.333333pt;}
.y187{bottom:615.933333pt;}
.y119{bottom:619.933333pt;}
.y15{bottom:620.733333pt;}
.yf0{bottom:622.493333pt;}
.y141{bottom:624.893333pt;}
.y9b{bottom:627.133333pt;}
.yd2{bottom:628.093333pt;}
.y61{bottom:628.413333pt;}
.y3e{bottom:632.893333pt;}
.y186{bottom:634.653333pt;}
.y165{bottom:637.693333pt;}
.yef{bottom:641.213333pt;}
.y118{bottom:641.693333pt;}
.y140{bottom:642.653333pt;}
.y9a{bottom:645.693333pt;}
.yd1{bottom:646.813333pt;}
.y60{bottom:646.973333pt;}
.y3d{bottom:651.613333pt;}
.y185{bottom:653.213333pt;}
.y14{bottom:656.413333pt;}
.y117{bottom:659.613333pt;}
.yee{bottom:659.773333pt;}
.y164{bottom:660.893333pt;}
.yd0{bottom:665.373333pt;}
.y5f{bottom:665.693333pt;}
.y13f{bottom:665.853333pt;}
.y3c{bottom:670.173333pt;}
.y184{bottom:671.773333pt;}
.yed{bottom:678.493333pt;}
.y99{bottom:682.653333pt;}
.ycf{bottom:683.933333pt;}
.y163{bottom:684.093333pt;}
.y5e{bottom:684.253333pt;}
.y3b{bottom:688.893333pt;}
.y13e{bottom:689.213333pt;}
.y183{bottom:690.493333pt;}
.y13{bottom:691.933333pt;}
.yce{bottom:702.653333pt;}
.y5d{bottom:702.813333pt;}
.y116{bottom:706.493333pt;}
.y3a{bottom:707.453333pt;}
.y182{bottom:709.053333pt;}
.y12{bottom:710.813333pt;}
.yec{bottom:711.133333pt;}
.y13d{bottom:712.413333pt;}
.y98{bottom:715.613333pt;}
.ycd{bottom:721.253333pt;}
.y5c{bottom:721.573333pt;}
.y39{bottom:726.053333pt;}
.y181{bottom:727.813333pt;}
.y11{bottom:729.733333pt;}
.y115{bottom:730.533333pt;}
.y162{bottom:730.693333pt;}
.yeb{bottom:732.773333pt;}
.y13c{bottom:735.813333pt;}
.y5b{bottom:740.133333pt;}
.y38{bottom:744.773333pt;}
.y180{bottom:746.373333pt;}
.yea{bottom:748.453333pt;}
.y97{bottom:752.613333pt;}
.ycc{bottom:754.053333pt;}
.y114{bottom:754.373333pt;}
.y5a{bottom:758.853333pt;}
.y13b{bottom:759.013333pt;}
.y10{bottom:762.373333pt;}
.y37{bottom:763.333333pt;}
.y17f{bottom:765.093333pt;}
.ycb{bottom:769.573333pt;}
.y161{bottom:777.253333pt;}
.y59{bottom:777.413333pt;}
.y113{bottom:778.213333pt;}
.y13a{bottom:782.373333pt;}
.y96{bottom:785.573333pt;}
.y36{bottom:796.133333pt;}
.y1a2{bottom:797.253333pt;}
.yf{bottom:798.053333pt;}
.y160{bottom:800.613333pt;}
.y112{bottom:802.053333pt;}
.y139{bottom:805.413333pt;}
.yca{bottom:811.813333pt;}
.y35{bottom:814.693333pt;}
.y1a1{bottom:815.653333pt;}
.y95{bottom:822.373333pt;}
.y15f{bottom:823.653333pt;}
.y15b{bottom:825.600000pt;}
.y111{bottom:825.893333pt;}
.y138{bottom:828.933333pt;}
.yc9{bottom:833.093333pt;}
.y34{bottom:833.253333pt;}
.ye{bottom:833.573333pt;}
.y1a0{bottom:834.053333pt;}
.y15e{bottom:847.493333pt;}
.y110{bottom:849.733333pt;}
.y33{bottom:851.973333pt;}
.y19f{bottom:852.453333pt;}
.yd{bottom:855.493333pt;}
.y32{bottom:870.533333pt;}
.y19e{bottom:870.853333pt;}
.y15d{bottom:871.333333pt;}
.y10f{bottom:873.573333pt;}
.y137{bottom:875.013333pt;}
.yc7{bottom:875.333333pt;}
.y134{bottom:876.960000pt;}
.y94{bottom:888.133333pt;}
.y31{bottom:889.253333pt;}
.y4{bottom:892.453333pt;}
.y15c{bottom:893.733333pt;}
.y10e{bottom:897.413333pt;}
.y136{bottom:898.853333pt;}
.y10b{bottom:899.200000pt;}
.y93{bottom:906.693333pt;}
.y30{bottom:907.813333pt;}
.yc5{bottom:917.733333pt;}
.y10d{bottom:921.253333pt;}
.y135{bottom:922.693333pt;}
.y92{bottom:925.573333pt;}
.y2f{bottom:926.533333pt;}
.y3{bottom:930.213333pt;}
.y91{bottom:944.640000pt;}
.y2e{bottom:945.120000pt;}
.y2{bottom:967.360000pt;}
.y1{bottom:990.560000pt;}
.hb{height:19.520000pt;}
.hd{height:21.120000pt;}
.he{height:21.280000pt;}
.hf{height:42.240000pt;}
.h11{height:42.272000pt;}
.h10{height:42.400000pt;}
.h14{height:42.432000pt;}
.h13{height:42.560000pt;}
.h3{height:44.000000pt;}
.h2{height:44.687500pt;}
.h6{height:45.156250pt;}
.h9{height:46.593750pt;}
.h5{height:48.281250pt;}
.h7{height:51.374687pt;}
.h4{height:51.840000pt;}
.h8{height:52.750000pt;}
.h1{height:52.832812pt;}
.ha{height:53.937500pt;}
.hc{height:54.260625pt;}
.h12{height:64.480000pt;}
.h0{height:1056.000000pt;}
.w17{width:5.280000pt;}
.w2{width:5.440000pt;}
.w16{width:5.600000pt;}
.w6{width:7.200000pt;}
.w4{width:35.680000pt;}
.w3{width:39.040000pt;}
.wb{width:45.120000pt;}
.w5{width:48.000000pt;}
.wd{width:50.400000pt;}
.wf{width:50.432000pt;}
.w8{width:54.880000pt;}
.wa{width:58.240000pt;}
.w10{width:65.760000pt;}
.w14{width:67.392000pt;}
.w7{width:69.632000pt;}
.w9{width:78.432000pt;}
.w15{width:80.000000pt;}
.w13{width:89.120000pt;}
.wc{width:92.512000pt;}
.w12{width:94.592000pt;}
.w11{width:172.026667pt;}
.we{width:267.386667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:2.240000pt;}
.x22{left:4.000000pt;}
.x6{left:8.639988pt;}
.x21{left:13.920000pt;}
.x7{left:34.079988pt;}
.x2c{left:50.400000pt;}
.xf{left:95.071988pt;}
.x5{left:96.031988pt;}
.x1b{left:101.471988pt;}
.x11{left:108.351988pt;}
.xb{left:109.951988pt;}
.x9{left:120.511988pt;}
.x3d{left:143.066655pt;}
.x3e{left:144.026655pt;}
.x35{left:153.466655pt;}
.x3a{left:154.426655pt;}
.x1{left:156.666655pt;}
.x2f{left:161.160000pt;}
.xd{left:165.306655pt;}
.x3{left:183.386655pt;}
.x2e{left:184.986667pt;}
.x25{left:191.386667pt;}
.x2d{left:192.826655pt;}
.x24{left:204.026655pt;}
.xe{left:224.506655pt;}
.x1c{left:245.626655pt;}
.x1d{left:247.386655pt;}
.x2{left:251.066655pt;}
.xc{left:260.546655pt;}
.x26{left:283.906667pt;}
.x36{left:302.946655pt;}
.x1e{left:315.266667pt;}
.x27{left:334.306667pt;}
.x30{left:357.026667pt;}
.x20{left:370.146667pt;}
.xa{left:374.626655pt;}
.x8{left:376.066655pt;}
.x3b{left:382.240000pt;}
.x28{left:384.706667pt;}
.x32{left:397.440000pt;}
.x29{left:435.133333pt;}
.x12{left:448.480000pt;}
.x13{left:452.320000pt;}
.x14{left:481.760000pt;}
.x2a{left:485.533333pt;}
.x18{left:488.480000pt;}
.x15{left:506.560000pt;}
.x16{left:510.560000pt;}
.x19{left:512.000000pt;}
.x2b{left:535.933333pt;}
.x17{left:537.440000pt;}
.x31{left:540.733333pt;}
.x1a{left:548.000000pt;}
.x23{left:555.453321pt;}
.x33{left:574.560000pt;}
.x38{left:580.480000pt;}
.x3c{left:611.200000pt;}
.x39{left:616.480000pt;}
.x34{left:634.880000pt;}
.x37{left:647.333321pt;}
.x10{left:704.133321pt;}
.x4{left:720.133321pt;}
}




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