
    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_09ddf09eef8e5dd9324d8c16.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_49b6f74e84468c0827a8c53b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.088379;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_3e50355f36814a37b055e17b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.100098;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7b59876cc664a70b7e775d45.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.035156;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_79bfdf6aa95258e834f7cf05.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.100098;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.240000px;}
.ls6{letter-spacing:-0.304800px;}
.ls2{letter-spacing:-0.258600px;}
.lsb{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.198000px;}
.ls10{letter-spacing:-0.180000px;}
.ls11{letter-spacing:-0.162000px;}
.lse{letter-spacing:-0.144000px;}
.ls4{letter-spacing:-0.126000px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.052560px;}
.lsd{letter-spacing:0.054000px;}
.ls8{letter-spacing:0.094800px;}
.ls3{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.217440px;}
.ls7{letter-spacing:0.235200px;}
.lsa{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.337200px;}
.lsc{letter-spacing:0.576000px;}
.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;}
}
.wsc{word-spacing:-23.940000px;}
.wsa{word-spacing:-15.034800px;}
.wsb{word-spacing:-14.992560px;}
.ws9{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.076000px;}
.ws3{word-spacing:-13.716000px;}
.wse{word-spacing:-13.554000px;}
.ws2{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.374000px;}
.wsf{word-spacing:-13.338000px;}
.ws5{word-spacing:-12.397200px;}
.ws7{word-spacing:-12.295200px;}
.ws0{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.801400px;}
.ws6{word-spacing:-11.755200px;}
.ws8{word-spacing:0.000000px;}
._2{margin-left:-1.157760px;}
._0{width:1.422720px;}
._1{width:2.433360px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs7{font-size:23.760000px;}
.fs5{font-size:30.240000px;}
.fs4{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yde{bottom:2.340000px;}
.y13b{bottom:3.594000px;}
.yee{bottom:3.600000px;}
.y133{bottom:3.630000px;}
.y1a9{bottom:3.645000px;}
.y62{bottom:3.780000px;}
.y109{bottom:3.810000px;}
.y1b8{bottom:3.825000px;}
.y6c{bottom:3.960000px;}
.ydd{bottom:6.300000px;}
.y42{bottom:8.850000px;}
.y4e{bottom:9.180000px;}
.y46{bottom:9.210000px;}
.y16f{bottom:10.074000px;}
.y31{bottom:10.080000px;}
.y49{bottom:10.110000px;}
.y183{bottom:10.125000px;}
.y3a{bottom:10.980000px;}
.y32{bottom:11.340000px;}
.y4a{bottom:11.370000px;}
.y66{bottom:12.600000px;}
.y67{bottom:13.860000px;}
.y7{bottom:16.380000px;}
.y2e{bottom:16.740000px;}
.y2f{bottom:18.180000px;}
.y112{bottom:18.714000px;}
.yed{bottom:18.720000px;}
.y132{bottom:18.750000px;}
.y1a1{bottom:18.765000px;}
.yfd{bottom:18.894000px;}
.y61{bottom:18.900000px;}
.y108{bottom:18.930000px;}
.y102{bottom:18.945000px;}
.yb8{bottom:20.694000px;}
.y8a{bottom:20.874000px;}
.y16d{bottom:21.600000px;}
.y41{bottom:22.350000px;}
.ydc{bottom:23.250000px;}
.y2c{bottom:23.400000px;}
.y56{bottom:24.300000px;}
.y45{bottom:24.330000px;}
.y4d{bottom:24.480000px;}
.y39{bottom:25.740000px;}
.y54{bottom:28.980000px;}
.y4c{bottom:29.160000px;}
.y158{bottom:30.240000px;}
.y106{bottom:30.420000px;}
.yfc{bottom:34.014000px;}
.y60{bottom:34.020000px;}
.yf5{bottom:34.050000px;}
.y12d{bottom:34.065000px;}
.y110{bottom:34.200000px;}
.y19c{bottom:34.230000px;}
.yf0{bottom:34.245000px;}
.y40{bottom:35.850000px;}
.yb7{bottom:37.614000px;}
.y89{bottom:37.794000px;}
.y38{bottom:39.600000px;}
.y44{bottom:39.630000px;}
.y2b{bottom:40.140000px;}
.ydb{bottom:40.170000px;}
.y5c{bottom:40.500000px;}
.y53{bottom:42.480000px;}
.y36{bottom:42.660000px;}
.yfb{bottom:49.134000px;}
.y135{bottom:49.140000px;}
.y13e{bottom:49.170000px;}
.y1bb{bottom:49.185000px;}
.y126{bottom:49.320000px;}
.y3f{bottom:49.350000px;}
.y5f{bottom:49.365000px;}
.y5b{bottom:54.045000px;}
.y88{bottom:54.534000px;}
.y55{bottom:54.720000px;}
.y43{bottom:54.750000px;}
.y37{bottom:54.900000px;}
.y2a{bottom:55.440000px;}
.y52{bottom:55.980000px;}
.y35{bottom:56.160000px;}
.yda{bottom:57.090000px;}
.y3{bottom:57.636000px;}
.y28{bottom:58.140000px;}
.y3e{bottom:61.230000px;}
.y1b0{bottom:64.440000px;}
.y5e{bottom:64.485000px;}
.y5a{bottom:67.545000px;}
.y87{bottom:71.454000px;}
.y27{bottom:71.685000px;}
.yd9{bottom:73.830000px;}
.y2{bottom:77.796000px;}
.y5d{bottom:79.785000px;}
.y59{bottom:81.045000px;}
.y29{bottom:83.745000px;}
.y24{bottom:83.925000px;}
.y26{bottom:85.185000px;}
.yb6{bottom:88.194000px;}
.y86{bottom:88.374000px;}
.yd8{bottom:90.750000px;}
.y23{bottom:94.365000px;}
.yb5{bottom:105.159000px;}
.y85{bottom:105.294000px;}
.yd7{bottom:107.670000px;}
.y22{bottom:107.865000px;}
.y21{bottom:121.365000px;}
.y84{bottom:122.079000px;}
.yd6{bottom:124.590000px;}
.y11d{bottom:129.816000px;}
.y6d{bottom:131.076000px;}
.y150{bottom:132.156000px;}
.y20{bottom:134.865000px;}
.ye8{bottom:138.456000px;}
.y83{bottom:138.999000px;}
.yb1{bottom:139.536000px;}
.y187{bottom:140.256000px;}
.yd5{bottom:141.330000px;}
.y1a3{bottom:144.936000px;}
.y111{bottom:145.836000px;}
.y15d{bottom:146.556000px;}
.y13a{bottom:147.276000px;}
.y1c3{bottom:147.996000px;}
.y1f{bottom:148.365000px;}
.y16e{bottom:149.796000px;}
.ya0{bottom:153.390000px;}
.yb4{bottom:155.739000px;}
.y69{bottom:155.910000px;}
.y82{bottom:155.919000px;}
.y1ab{bottom:157.710000px;}
.yd4{bottom:158.250000px;}
.y11c{bottom:160.950000px;}
.ye5{bottom:161.670000px;}
.yc3{bottom:161.850000px;}
.y1e{bottom:161.865000px;}
.y14c{bottom:162.390000px;}
.y186{bottom:162.570000px;}
.y1c4{bottom:163.110000px;}
.y164{bottom:169.770000px;}
.y11f{bottom:171.210000px;}
.y16c{bottom:172.110000px;}
.y68{bottom:172.290000px;}
.yb3{bottom:172.659000px;}
.y81{bottom:172.839000px;}
.yd3{bottom:175.170000px;}
.y1d{bottom:175.365000px;}
.y9f{bottom:175.710000px;}
.y1a2{bottom:176.070000px;}
.y194{bottom:176.250000px;}
.y10f{bottom:176.790000px;}
.y15f{bottom:177.690000px;}
.y139{bottom:178.410000px;}
.yc2{bottom:184.170000px;}
.y185{bottom:185.070000px;}
.y1b9{bottom:188.850000px;}
.y1c{bottom:188.865000px;}
.y80{bottom:189.579000px;}
.yd2{bottom:192.090000px;}
.y155{bottom:192.810000px;}
.y141{bottom:193.530000px;}
.y1c2{bottom:194.250000px;}
.y16b{bottom:194.430000px;}
.y8{bottom:194.610000px;}
.y9e{bottom:198.210000px;}
.yfa{bottom:200.010000px;}
.y1b{bottom:202.365000px;}
.ye4{bottom:202.890000px;}
.yc1{bottom:206.490000px;}
.y7f{bottom:206.499000px;}
.y193{bottom:207.210000px;}
.y184{bottom:207.390000px;}
.y15e{bottom:208.830000px;}
.yd1{bottom:208.875000px;}
.y163{bottom:209.550000px;}
.y1a{bottom:215.865000px;}
.y16a{bottom:216.750000px;}
.y12c{bottom:217.470000px;}
.y65{bottom:219.450000px;}
.y9d{bottom:220.530000px;}
.y1a0{bottom:222.510000px;}
.y10e{bottom:223.230000px;}
.yb2{bottom:223.239000px;}
.y7e{bottom:223.419000px;}
.y14b{bottom:223.950000px;}
.y138{bottom:224.670000px;}
.yd0{bottom:225.795000px;}
.yc0{bottom:228.810000px;}
.y19{bottom:229.365000px;}
.y182{bottom:229.710000px;}
.y1b7{bottom:235.110000px;}
.y169{bottom:238.395000px;}
.y15c{bottom:239.115000px;}
.y156{bottom:239.835000px;}
.yc8{bottom:240.159000px;}
.y7d{bottom:240.339000px;}
.y1c1{bottom:240.735000px;}
.y64{bottom:241.815000px;}
.ycf{bottom:242.715000px;}
.y18{bottom:242.895000px;}
.ye3{bottom:243.975000px;}
.yf9{bottom:246.315000px;}
.ybf{bottom:251.175000px;}
.y181{bottom:252.075000px;}
.y19f{bottom:253.695000px;}
.y10d{bottom:254.415000px;}
.y154{bottom:255.135000px;}
.y162{bottom:255.855000px;}
.y17{bottom:256.395000px;}
.y7c{bottom:257.079000px;}
.yce{bottom:259.635000px;}
.y12b{bottom:263.955000px;}
.y63{bottom:264.315000px;}
.y9c{bottom:265.215000px;}
.y161{bottom:265.539000px;}
.y1b6{bottom:266.295000px;}
.y168{bottom:269.535000px;}
.y16{bottom:269.895000px;}
.y14a{bottom:270.255000px;}
.y137{bottom:270.975000px;}
.ybe{bottom:273.675000px;}
.y7b{bottom:273.999000px;}
.y180{bottom:274.395000px;}
.ycd{bottom:276.375000px;}
.y160{bottom:280.869000px;}
.y15{bottom:283.395000px;}
.y192{bottom:284.835000px;}
.ye2{bottom:285.195000px;}
.y15b{bottom:285.555000px;}
.y153{bottom:286.275000px;}
.y51{bottom:286.635000px;}
.y1c0{bottom:286.995000px;}
.y9b{bottom:287.535000px;}
.yc7{bottom:290.769000px;}
.y7a{bottom:290.919000px;}
.yf8{bottom:292.575000px;}
.ycc{bottom:293.295000px;}
.y12a{bottom:295.095000px;}
.ybd{bottom:295.995000px;}
.y17f{bottom:296.715000px;}
.y14{bottom:296.895000px;}
.y1b5{bottom:297.435000px;}
.y19e{bottom:299.955000px;}
.y10c{bottom:300.675000px;}
.y149{bottom:301.395000px;}
.y14f{bottom:302.115000px;}
.yc6{bottom:307.689000px;}
.y79{bottom:307.869000px;}
.y58{bottom:308.955000px;}
.y9a{bottom:309.855000px;}
.ycb{bottom:310.215000px;}
.y13{bottom:310.395000px;}
.y191{bottom:315.975000px;}
.y15a{bottom:316.695000px;}
.y136{bottom:317.415000px;}
.ybc{bottom:318.315000px;}
.y17e{bottom:319.215000px;}
.yf7{bottom:323.715000px;}
.y12{bottom:323.895000px;}
.y78{bottom:324.609000px;}
.y129{bottom:326.055000px;}
.ye1{bottom:326.415000px;}
.yca{bottom:327.135000px;}
.y1b4{bottom:328.575000px;}
.y19d{bottom:331.095000px;}
.y57{bottom:331.275000px;}
.y11b{bottom:331.815000px;}
.y99{bottom:332.355000px;}
.y140{bottom:332.535000px;}
.y1bf{bottom:333.255000px;}
.y11{bottom:337.395000px;}
.ybb{bottom:340.635000px;}
.y77{bottom:341.529000px;}
.y17d{bottom:341.535000px;}
.yc9{bottom:343.875000px;}
.y18c{bottom:344.589000px;}
.y10b{bottom:346.935000px;}
.y190{bottom:347.115000px;}
.y157{bottom:347.655000px;}
.y14e{bottom:348.555000px;}
.y10{bottom:350.895000px;}
.y4b{bottom:353.595000px;}
.y98{bottom:354.675000px;}
.yf6{bottom:354.855000px;}
.yc5{bottom:358.269000px;}
.y76{bottom:358.449000px;}
.y1b3{bottom:359.715000px;}
.yba{bottom:362.955000px;}
.y134{bottom:363.675000px;}
.y17c{bottom:363.855000px;}
.yf{bottom:364.395000px;}
.ye0{bottom:367.455000px;}
.y128{bottom:372.495000px;}
.yc4{bottom:375.189000px;}
.y75{bottom:375.369000px;}
.y50{bottom:375.915000px;}
.y97{bottom:376.995000px;}
.ye{bottom:377.895000px;}
.y10a{bottom:378.075000px;}
.y13f{bottom:378.795000px;}
.y1be{bottom:379.695000px;}
.yb9{bottom:385.275000px;}
.y17b{bottom:386.175000px;}
.y1b2{bottom:390.855000px;}
.yd{bottom:391.395000px;}
.y74{bottom:392.109000px;}
.y19b{bottom:392.475000px;}
.y18f{bottom:393.375000px;}
.y159{bottom:394.095000px;}
.y14d{bottom:394.815000px;}
.y4f{bottom:398.415000px;}
.y96{bottom:399.315000px;}
.yf4{bottom:401.115000px;}
.yc{bottom:404.895000px;}
.y1ad{bottom:406.155000px;}
.yb0{bottom:407.775000px;}
.y17a{bottom:408.495000px;}
.ydf{bottom:408.675000px;}
.y73{bottom:409.029000px;}
.y11a{bottom:409.215000px;}
.y148{bottom:409.935000px;}
.yb{bottom:418.395000px;}
.y127{bottom:418.755000px;}
.y3d{bottom:420.735000px;}
.y1ac{bottom:421.275000px;}
.y95{bottom:421.635000px;}
.y107{bottom:424.335000px;}
.y18e{bottom:424.515000px;}
.y131{bottom:425.235000px;}
.y72{bottom:425.949000px;}
.y1bd{bottom:425.955000px;}
.yaf{bottom:430.125000px;}
.y179{bottom:430.845000px;}
.ya{bottom:431.940000px;}
.y1b1{bottom:437.145000px;}
.y19a{bottom:438.945000px;}
.y119{bottom:440.385000px;}
.y147{bottom:441.105000px;}
.y71{bottom:442.869000px;}
.y48{bottom:443.085000px;}
.y94{bottom:443.985000px;}
.y9{bottom:445.440000px;}
.yf3{bottom:447.585000px;}
.yae{bottom:452.445000px;}
.y178{bottom:453.345000px;}
.y105{bottom:455.505000px;}
.y18d{bottom:455.685000px;}
.y152{bottom:456.405000px;}
.y70{bottom:459.609000px;}
.y125{bottom:465.045000px;}
.y47{bottom:465.405000px;}
.y93{bottom:466.485000px;}
.y199{bottom:470.085000px;}
.y130{bottom:471.525000px;}
.yad{bottom:474.765000px;}
.y177{bottom:475.665000px;}
.y6f{bottom:476.529000px;}
.y121{bottom:482.160000px;}
.yeb{bottom:482.874000px;}
.y1af{bottom:483.585000px;}
.y104{bottom:486.645000px;}
.y18b{bottom:486.825000px;}
.y146{bottom:487.365000px;}
.y34{bottom:487.725000px;}
.y92{bottom:488.805000px;}
.y6e{bottom:493.494000px;}
.yf2{bottom:493.845000px;}
.yac{bottom:497.085000px;}
.y120{bottom:497.280000px;}
.y176{bottom:497.985000px;}
.yea{bottom:497.994000px;}
.y198{bottom:501.225000px;}
.y151{bottom:502.665000px;}
.y18a{bottom:509.145000px;}
.y3c{bottom:510.045000px;}
.y91{bottom:511.125000px;}
.ye9{bottom:513.114000px;}
.y103{bottom:517.785000px;}
.y1bc{bottom:518.505000px;}
.yab{bottom:519.405000px;}
.y175{bottom:520.305000px;}
.y167{bottom:521.760000px;}
.y124{bottom:526.605000px;}
.y189{bottom:531.465000px;}
.y197{bottom:532.185000px;}
.y3b{bottom:532.545000px;}
.y118{bottom:533.085000px;}
.y90{bottom:533.445000px;}
.y145{bottom:533.805000px;}
.y166{bottom:537.060000px;}
.yf1{bottom:540.105000px;}
.yaa{bottom:541.905000px;}
.y174{bottom:542.625000px;}
.y13d{bottom:548.205000px;}
.y12f{bottom:548.925000px;}
.y165{bottom:552.180000px;}
.y25{bottom:554.865000px;}
.y8f{bottom:555.765000px;}
.y1ae{bottom:560.265000px;}
.y188{bottom:562.605000px;}
.y196{bottom:563.325000px;}
.y1c5{bottom:563.685000px;}
.ya9{bottom:564.225000px;}
.y173{bottom:564.945000px;}
.y123{bottom:572.865000px;}
.y33{bottom:577.185000px;}
.y8e{bottom:578.085000px;}
.y117{bottom:579.345000px;}
.y144{bottom:580.065000px;}
.yef{bottom:586.365000px;}
.ya8{bottom:586.545000px;}
.y1aa{bottom:591.405000px;}
.y195{bottom:594.465000px;}
.y12e{bottom:595.185000px;}
.y172{bottom:596.085000px;}
.y30{bottom:599.505000px;}
.y8d{bottom:600.585000px;}
.ya7{bottom:608.865000px;}
.y101{bottom:610.485000px;}
.y1ba{bottom:611.205000px;}
.y1a8{bottom:613.725000px;}
.y2d{bottom:621.870000px;}
.y8c{bottom:622.950000px;}
.y116{bottom:625.650000px;}
.y143{bottom:626.370000px;}
.y171{bottom:627.270000px;}
.ya6{bottom:631.230000px;}
.yec{bottom:632.850000px;}
.y122{bottom:634.470000px;}
.y100{bottom:641.670000px;}
.y1a7{bottom:644.910000px;}
.y8b{bottom:645.270000px;}
.y6{bottom:651.030000px;}
.ya5{bottom:653.550000px;}
.y13c{bottom:656.790000px;}
.y170{bottom:658.410000px;}
.ye7{bottom:663.990000px;}
.y1a6{bottom:667.230000px;}
.y6b{bottom:667.590000px;}
.y115{bottom:671.910000px;}
.y142{bottom:672.810000px;}
.ya4{bottom:676.050000px;}
.y11e{bottom:680.730000px;}
.yff{bottom:687.930000px;}
.y1a5{bottom:689.550000px;}
.ya3{bottom:698.370000px;}
.y5{bottom:699.090000px;}
.y114{bottom:703.050000px;}
.ye6{bottom:704.850000px;}
.y6a{bottom:707.730000px;}
.y1a4{bottom:711.870000px;}
.yfe{bottom:719.070000px;}
.ya2{bottom:720.690000px;}
.y113{bottom:734.190000px;}
.ya1{bottom:743.010000px;}
.y4{bottom:744.630000px;}
.y1{bottom:826.920000px;}
.h13{height:19.885078px;}
.h10{height:21.600000px;}
.hf{height:21.636000px;}
.h17{height:24.120000px;}
.hb{height:25.308281px;}
.h7{height:26.640000px;}
.he{height:28.440000px;}
.h21{height:30.240000px;}
.h2f{height:30.276000px;}
.h25{height:30.420000px;}
.h27{height:30.456000px;}
.ha{height:40.372734px;}
.h8{height:40.419844px;}
.h14{height:45.193359px;}
.hd{height:45.246094px;}
.h23{height:45.540000px;}
.h24{height:45.576000px;}
.h28{height:45.720000px;}
.h22{height:45.756000px;}
.h1a{height:50.013984px;}
.h2{height:50.072344px;}
.h18{height:55.501875px;}
.h3{height:60.257812px;}
.h26{height:60.660000px;}
.h2c{height:60.696000px;}
.h2b{height:60.840000px;}
.h2a{height:60.876000px;}
.h4{height:65.884219px;}
.h15{height:66.240000px;}
.h12{height:66.276000px;}
.h11{height:66.420000px;}
.h1f{height:73.722656px;}
.h32{height:75.960000px;}
.h5{height:80.236406px;}
.h16{height:91.296000px;}
.hc{height:95.436000px;}
.h6{height:98.051133px;}
.h1c{height:155.730000px;}
.h1b{height:267.330000px;}
.h2d{height:292.395000px;}
.h30{height:356.115000px;}
.h1e{height:356.835000px;}
.h1d{height:423.975000px;}
.h31{height:432.795000px;}
.h9{height:455.685000px;}
.h29{height:508.785000px;}
.h20{height:524.625000px;}
.h19{height:535.785000px;}
.h2e{height:563.685000px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w17{width:46.800000px;}
.w1c{width:67.680000px;}
.w14{width:69.300000px;}
.w8{width:73.656000px;}
.w15{width:75.996000px;}
.w16{width:76.140000px;}
.w1b{width:85.536000px;}
.w18{width:88.596000px;}
.w6{width:92.736000px;}
.wc{width:93.456000px;}
.w5{width:94.860000px;}
.wb{width:95.760000px;}
.w1a{width:102.420000px;}
.w12{width:105.336000px;}
.w1d{width:105.660000px;}
.w13{width:114.480000px;}
.w3{width:127.296000px;}
.w9{width:128.016000px;}
.w19{width:129.780000px;}
.w4{width:136.800000px;}
.wa{width:137.520000px;}
.w7{width:139.680000px;}
.wd{width:140.040000px;}
.w11{width:140.256000px;}
.we{width:164.910000px;}
.w10{width:174.780000px;}
.wf{width:312.870000px;}
.w2{width:1262.879981px;}
.w0{width:1262.880000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x2e{left:4.860000px;}
.x40{left:6.660000px;}
.x6{left:7.740000px;}
.x39{left:9.000000px;}
.x1d{left:10.980000px;}
.x41{left:12.060000px;}
.x20{left:13.500000px;}
.x15{left:15.300000px;}
.x16{left:16.410000px;}
.x43{left:17.820000px;}
.x1e{left:19.080000px;}
.xc{left:20.190000px;}
.x24{left:21.600000px;}
.xa{left:22.680000px;}
.x13{left:23.760000px;}
.x10{left:25.380000px;}
.x18{left:27.000000px;}
.x1a{left:28.080000px;}
.x27{left:29.340000px;}
.x19{left:30.420000px;}
.x17{left:31.680000px;}
.x21{left:33.120000px;}
.x1b{left:34.200000px;}
.x47{left:35.280000px;}
.x44{left:36.360000px;}
.x42{left:37.980000px;}
.x3b{left:39.240000px;}
.x8{left:40.500000px;}
.x1c{left:42.660000px;}
.x2b{left:44.280000px;}
.x22{left:46.830000px;}
.xe{left:48.420000px;}
.x12{left:50.580000px;}
.x1f{left:52.560000px;}
.x45{left:54.900000px;}
.x46{left:57.240000px;}
.x11{left:63.540000px;}
.x14{left:68.400000px;}
.x23{left:70.200000px;}
.x2d{left:82.440000px;}
.x32{left:93.600000px;}
.x2f{left:100.305000px;}
.x3{left:106.379981px;}
.x30{left:114.345000px;}
.x29{left:121.500000px;}
.x33{left:199.650000px;}
.x26{left:234.030000px;}
.x5{left:297.030000px;}
.x34{left:315.030000px;}
.x4{left:356.789981px;}
.x35{left:385.050000px;}
.x28{left:399.675000px;}
.x7{left:425.055000px;}
.x1{left:431.714981px;}
.x36{left:461.775000px;}
.x25{left:526.574981px;}
.x37{left:538.635000px;}
.x31{left:541.334981px;}
.x9{left:562.575000px;}
.x38{left:586.155000px;}
.x2{left:631.514981px;}
.xb{left:658.335000px;}
.x3a{left:675.465000px;}
.x2a{left:713.265000px;}
.xd{left:751.785000px;}
.x3c{left:805.965000px;}
.x2c{left:888.765000px;}
.xf{left:892.185000px;}
.x3d{left:909.105000px;}
.x3e{left:995.370000px;}
.x3f{left:1063.770000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.880000pt;}
.ls6{letter-spacing:-0.270933pt;}
.ls2{letter-spacing:-0.229867pt;}
.lsb{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.176000pt;}
.ls10{letter-spacing:-0.160000pt;}
.ls11{letter-spacing:-0.144000pt;}
.lse{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:-0.112000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.046720pt;}
.lsd{letter-spacing:0.048000pt;}
.ls8{letter-spacing:0.084267pt;}
.ls3{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.193280pt;}
.ls7{letter-spacing:0.209067pt;}
.lsa{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.299733pt;}
.lsc{letter-spacing:0.512000pt;}
.wsc{word-spacing:-21.280000pt;}
.wsa{word-spacing:-13.364267pt;}
.wsb{word-spacing:-13.326720pt;}
.ws9{word-spacing:-13.280000pt;}
.wsd{word-spacing:-12.512000pt;}
.ws3{word-spacing:-12.192000pt;}
.wse{word-spacing:-12.048000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.888000pt;}
.wsf{word-spacing:-11.856000pt;}
.ws5{word-spacing:-11.019733pt;}
.ws7{word-spacing:-10.929067pt;}
.ws0{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.490133pt;}
.ws6{word-spacing:-10.449067pt;}
.ws8{word-spacing:0.000000pt;}
._2{margin-left:-1.029120pt;}
._0{width:1.264640pt;}
._1{width:2.162987pt;}
.fs7{font-size:21.120000pt;}
.fs5{font-size:26.880000pt;}
.fs4{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yde{bottom:2.080000pt;}
.y13b{bottom:3.194667pt;}
.yee{bottom:3.200000pt;}
.y133{bottom:3.226667pt;}
.y1a9{bottom:3.240000pt;}
.y62{bottom:3.360000pt;}
.y109{bottom:3.386667pt;}
.y1b8{bottom:3.400000pt;}
.y6c{bottom:3.520000pt;}
.ydd{bottom:5.600000pt;}
.y42{bottom:7.866667pt;}
.y4e{bottom:8.160000pt;}
.y46{bottom:8.186667pt;}
.y16f{bottom:8.954667pt;}
.y31{bottom:8.960000pt;}
.y49{bottom:8.986667pt;}
.y183{bottom:9.000000pt;}
.y3a{bottom:9.760000pt;}
.y32{bottom:10.080000pt;}
.y4a{bottom:10.106667pt;}
.y66{bottom:11.200000pt;}
.y67{bottom:12.320000pt;}
.y7{bottom:14.560000pt;}
.y2e{bottom:14.880000pt;}
.y2f{bottom:16.160000pt;}
.y112{bottom:16.634667pt;}
.yed{bottom:16.640000pt;}
.y132{bottom:16.666667pt;}
.y1a1{bottom:16.680000pt;}
.yfd{bottom:16.794667pt;}
.y61{bottom:16.800000pt;}
.y108{bottom:16.826667pt;}
.y102{bottom:16.840000pt;}
.yb8{bottom:18.394667pt;}
.y8a{bottom:18.554667pt;}
.y16d{bottom:19.200000pt;}
.y41{bottom:19.866667pt;}
.ydc{bottom:20.666667pt;}
.y2c{bottom:20.800000pt;}
.y56{bottom:21.600000pt;}
.y45{bottom:21.626667pt;}
.y4d{bottom:21.760000pt;}
.y39{bottom:22.880000pt;}
.y54{bottom:25.760000pt;}
.y4c{bottom:25.920000pt;}
.y158{bottom:26.880000pt;}
.y106{bottom:27.040000pt;}
.yfc{bottom:30.234667pt;}
.y60{bottom:30.240000pt;}
.yf5{bottom:30.266667pt;}
.y12d{bottom:30.280000pt;}
.y110{bottom:30.400000pt;}
.y19c{bottom:30.426667pt;}
.yf0{bottom:30.440000pt;}
.y40{bottom:31.866667pt;}
.yb7{bottom:33.434667pt;}
.y89{bottom:33.594667pt;}
.y38{bottom:35.200000pt;}
.y44{bottom:35.226667pt;}
.y2b{bottom:35.680000pt;}
.ydb{bottom:35.706667pt;}
.y5c{bottom:36.000000pt;}
.y53{bottom:37.760000pt;}
.y36{bottom:37.920000pt;}
.yfb{bottom:43.674667pt;}
.y135{bottom:43.680000pt;}
.y13e{bottom:43.706667pt;}
.y1bb{bottom:43.720000pt;}
.y126{bottom:43.840000pt;}
.y3f{bottom:43.866667pt;}
.y5f{bottom:43.880000pt;}
.y5b{bottom:48.040000pt;}
.y88{bottom:48.474667pt;}
.y55{bottom:48.640000pt;}
.y43{bottom:48.666667pt;}
.y37{bottom:48.800000pt;}
.y2a{bottom:49.280000pt;}
.y52{bottom:49.760000pt;}
.y35{bottom:49.920000pt;}
.yda{bottom:50.746667pt;}
.y3{bottom:51.232000pt;}
.y28{bottom:51.680000pt;}
.y3e{bottom:54.426667pt;}
.y1b0{bottom:57.280000pt;}
.y5e{bottom:57.320000pt;}
.y5a{bottom:60.040000pt;}
.y87{bottom:63.514667pt;}
.y27{bottom:63.720000pt;}
.yd9{bottom:65.626667pt;}
.y2{bottom:69.152000pt;}
.y5d{bottom:70.920000pt;}
.y59{bottom:72.040000pt;}
.y29{bottom:74.440000pt;}
.y24{bottom:74.600000pt;}
.y26{bottom:75.720000pt;}
.yb6{bottom:78.394667pt;}
.y86{bottom:78.554667pt;}
.yd8{bottom:80.666667pt;}
.y23{bottom:83.880000pt;}
.yb5{bottom:93.474667pt;}
.y85{bottom:93.594667pt;}
.yd7{bottom:95.706667pt;}
.y22{bottom:95.880000pt;}
.y21{bottom:107.880000pt;}
.y84{bottom:108.514667pt;}
.yd6{bottom:110.746667pt;}
.y11d{bottom:115.392000pt;}
.y6d{bottom:116.512000pt;}
.y150{bottom:117.472000pt;}
.y20{bottom:119.880000pt;}
.ye8{bottom:123.072000pt;}
.y83{bottom:123.554667pt;}
.yb1{bottom:124.032000pt;}
.y187{bottom:124.672000pt;}
.yd5{bottom:125.626667pt;}
.y1a3{bottom:128.832000pt;}
.y111{bottom:129.632000pt;}
.y15d{bottom:130.272000pt;}
.y13a{bottom:130.912000pt;}
.y1c3{bottom:131.552000pt;}
.y1f{bottom:131.880000pt;}
.y16e{bottom:133.152000pt;}
.ya0{bottom:136.346667pt;}
.yb4{bottom:138.434667pt;}
.y69{bottom:138.586667pt;}
.y82{bottom:138.594667pt;}
.y1ab{bottom:140.186667pt;}
.yd4{bottom:140.666667pt;}
.y11c{bottom:143.066667pt;}
.ye5{bottom:143.706667pt;}
.yc3{bottom:143.866667pt;}
.y1e{bottom:143.880000pt;}
.y14c{bottom:144.346667pt;}
.y186{bottom:144.506667pt;}
.y1c4{bottom:144.986667pt;}
.y164{bottom:150.906667pt;}
.y11f{bottom:152.186667pt;}
.y16c{bottom:152.986667pt;}
.y68{bottom:153.146667pt;}
.yb3{bottom:153.474667pt;}
.y81{bottom:153.634667pt;}
.yd3{bottom:155.706667pt;}
.y1d{bottom:155.880000pt;}
.y9f{bottom:156.186667pt;}
.y1a2{bottom:156.506667pt;}
.y194{bottom:156.666667pt;}
.y10f{bottom:157.146667pt;}
.y15f{bottom:157.946667pt;}
.y139{bottom:158.586667pt;}
.yc2{bottom:163.706667pt;}
.y185{bottom:164.506667pt;}
.y1b9{bottom:167.866667pt;}
.y1c{bottom:167.880000pt;}
.y80{bottom:168.514667pt;}
.yd2{bottom:170.746667pt;}
.y155{bottom:171.386667pt;}
.y141{bottom:172.026667pt;}
.y1c2{bottom:172.666667pt;}
.y16b{bottom:172.826667pt;}
.y8{bottom:172.986667pt;}
.y9e{bottom:176.186667pt;}
.yfa{bottom:177.786667pt;}
.y1b{bottom:179.880000pt;}
.ye4{bottom:180.346667pt;}
.yc1{bottom:183.546667pt;}
.y7f{bottom:183.554667pt;}
.y193{bottom:184.186667pt;}
.y184{bottom:184.346667pt;}
.y15e{bottom:185.626667pt;}
.yd1{bottom:185.666667pt;}
.y163{bottom:186.266667pt;}
.y1a{bottom:191.880000pt;}
.y16a{bottom:192.666667pt;}
.y12c{bottom:193.306667pt;}
.y65{bottom:195.066667pt;}
.y9d{bottom:196.026667pt;}
.y1a0{bottom:197.786667pt;}
.y10e{bottom:198.426667pt;}
.yb2{bottom:198.434667pt;}
.y7e{bottom:198.594667pt;}
.y14b{bottom:199.066667pt;}
.y138{bottom:199.706667pt;}
.yd0{bottom:200.706667pt;}
.yc0{bottom:203.386667pt;}
.y19{bottom:203.880000pt;}
.y182{bottom:204.186667pt;}
.y1b7{bottom:208.986667pt;}
.y169{bottom:211.906667pt;}
.y15c{bottom:212.546667pt;}
.y156{bottom:213.186667pt;}
.yc8{bottom:213.474667pt;}
.y7d{bottom:213.634667pt;}
.y1c1{bottom:213.986667pt;}
.y64{bottom:214.946667pt;}
.ycf{bottom:215.746667pt;}
.y18{bottom:215.906667pt;}
.ye3{bottom:216.866667pt;}
.yf9{bottom:218.946667pt;}
.ybf{bottom:223.266667pt;}
.y181{bottom:224.066667pt;}
.y19f{bottom:225.506667pt;}
.y10d{bottom:226.146667pt;}
.y154{bottom:226.786667pt;}
.y162{bottom:227.426667pt;}
.y17{bottom:227.906667pt;}
.y7c{bottom:228.514667pt;}
.yce{bottom:230.786667pt;}
.y12b{bottom:234.626667pt;}
.y63{bottom:234.946667pt;}
.y9c{bottom:235.746667pt;}
.y161{bottom:236.034667pt;}
.y1b6{bottom:236.706667pt;}
.y168{bottom:239.586667pt;}
.y16{bottom:239.906667pt;}
.y14a{bottom:240.226667pt;}
.y137{bottom:240.866667pt;}
.ybe{bottom:243.266667pt;}
.y7b{bottom:243.554667pt;}
.y180{bottom:243.906667pt;}
.ycd{bottom:245.666667pt;}
.y160{bottom:249.661333pt;}
.y15{bottom:251.906667pt;}
.y192{bottom:253.186667pt;}
.ye2{bottom:253.506667pt;}
.y15b{bottom:253.826667pt;}
.y153{bottom:254.466667pt;}
.y51{bottom:254.786667pt;}
.y1c0{bottom:255.106667pt;}
.y9b{bottom:255.586667pt;}
.yc7{bottom:258.461333pt;}
.y7a{bottom:258.594667pt;}
.yf8{bottom:260.066667pt;}
.ycc{bottom:260.706667pt;}
.y12a{bottom:262.306667pt;}
.ybd{bottom:263.106667pt;}
.y17f{bottom:263.746667pt;}
.y14{bottom:263.906667pt;}
.y1b5{bottom:264.386667pt;}
.y19e{bottom:266.626667pt;}
.y10c{bottom:267.266667pt;}
.y149{bottom:267.906667pt;}
.y14f{bottom:268.546667pt;}
.yc6{bottom:273.501333pt;}
.y79{bottom:273.661333pt;}
.y58{bottom:274.626667pt;}
.y9a{bottom:275.426667pt;}
.ycb{bottom:275.746667pt;}
.y13{bottom:275.906667pt;}
.y191{bottom:280.866667pt;}
.y15a{bottom:281.506667pt;}
.y136{bottom:282.146667pt;}
.ybc{bottom:282.946667pt;}
.y17e{bottom:283.746667pt;}
.yf7{bottom:287.746667pt;}
.y12{bottom:287.906667pt;}
.y78{bottom:288.541333pt;}
.y129{bottom:289.826667pt;}
.ye1{bottom:290.146667pt;}
.yca{bottom:290.786667pt;}
.y1b4{bottom:292.066667pt;}
.y19d{bottom:294.306667pt;}
.y57{bottom:294.466667pt;}
.y11b{bottom:294.946667pt;}
.y99{bottom:295.426667pt;}
.y140{bottom:295.586667pt;}
.y1bf{bottom:296.226667pt;}
.y11{bottom:299.906667pt;}
.ybb{bottom:302.786667pt;}
.y77{bottom:303.581333pt;}
.y17d{bottom:303.586667pt;}
.yc9{bottom:305.666667pt;}
.y18c{bottom:306.301333pt;}
.y10b{bottom:308.386667pt;}
.y190{bottom:308.546667pt;}
.y157{bottom:309.026667pt;}
.y14e{bottom:309.826667pt;}
.y10{bottom:311.906667pt;}
.y4b{bottom:314.306667pt;}
.y98{bottom:315.266667pt;}
.yf6{bottom:315.426667pt;}
.yc5{bottom:318.461333pt;}
.y76{bottom:318.621333pt;}
.y1b3{bottom:319.746667pt;}
.yba{bottom:322.626667pt;}
.y134{bottom:323.266667pt;}
.y17c{bottom:323.426667pt;}
.yf{bottom:323.906667pt;}
.ye0{bottom:326.626667pt;}
.y128{bottom:331.106667pt;}
.yc4{bottom:333.501333pt;}
.y75{bottom:333.661333pt;}
.y50{bottom:334.146667pt;}
.y97{bottom:335.106667pt;}
.ye{bottom:335.906667pt;}
.y10a{bottom:336.066667pt;}
.y13f{bottom:336.706667pt;}
.y1be{bottom:337.506667pt;}
.yb9{bottom:342.466667pt;}
.y17b{bottom:343.266667pt;}
.y1b2{bottom:347.426667pt;}
.yd{bottom:347.906667pt;}
.y74{bottom:348.541333pt;}
.y19b{bottom:348.866667pt;}
.y18f{bottom:349.666667pt;}
.y159{bottom:350.306667pt;}
.y14d{bottom:350.946667pt;}
.y4f{bottom:354.146667pt;}
.y96{bottom:354.946667pt;}
.yf4{bottom:356.546667pt;}
.yc{bottom:359.906667pt;}
.y1ad{bottom:361.026667pt;}
.yb0{bottom:362.466667pt;}
.y17a{bottom:363.106667pt;}
.ydf{bottom:363.266667pt;}
.y73{bottom:363.581333pt;}
.y11a{bottom:363.746667pt;}
.y148{bottom:364.386667pt;}
.yb{bottom:371.906667pt;}
.y127{bottom:372.226667pt;}
.y3d{bottom:373.986667pt;}
.y1ac{bottom:374.466667pt;}
.y95{bottom:374.786667pt;}
.y107{bottom:377.186667pt;}
.y18e{bottom:377.346667pt;}
.y131{bottom:377.986667pt;}
.y72{bottom:378.621333pt;}
.y1bd{bottom:378.626667pt;}
.yaf{bottom:382.333333pt;}
.y179{bottom:382.973333pt;}
.ya{bottom:383.946667pt;}
.y1b1{bottom:388.573333pt;}
.y19a{bottom:390.173333pt;}
.y119{bottom:391.453333pt;}
.y147{bottom:392.093333pt;}
.y71{bottom:393.661333pt;}
.y48{bottom:393.853333pt;}
.y94{bottom:394.653333pt;}
.y9{bottom:395.946667pt;}
.yf3{bottom:397.853333pt;}
.yae{bottom:402.173333pt;}
.y178{bottom:402.973333pt;}
.y105{bottom:404.893333pt;}
.y18d{bottom:405.053333pt;}
.y152{bottom:405.693333pt;}
.y70{bottom:408.541333pt;}
.y125{bottom:413.373333pt;}
.y47{bottom:413.693333pt;}
.y93{bottom:414.653333pt;}
.y199{bottom:417.853333pt;}
.y130{bottom:419.133333pt;}
.yad{bottom:422.013333pt;}
.y177{bottom:422.813333pt;}
.y6f{bottom:423.581333pt;}
.y121{bottom:428.586667pt;}
.yeb{bottom:429.221333pt;}
.y1af{bottom:429.853333pt;}
.y104{bottom:432.573333pt;}
.y18b{bottom:432.733333pt;}
.y146{bottom:433.213333pt;}
.y34{bottom:433.533333pt;}
.y92{bottom:434.493333pt;}
.y6e{bottom:438.661333pt;}
.yf2{bottom:438.973333pt;}
.yac{bottom:441.853333pt;}
.y120{bottom:442.026667pt;}
.y176{bottom:442.653333pt;}
.yea{bottom:442.661333pt;}
.y198{bottom:445.533333pt;}
.y151{bottom:446.813333pt;}
.y18a{bottom:452.573333pt;}
.y3c{bottom:453.373333pt;}
.y91{bottom:454.333333pt;}
.ye9{bottom:456.101333pt;}
.y103{bottom:460.253333pt;}
.y1bc{bottom:460.893333pt;}
.yab{bottom:461.693333pt;}
.y175{bottom:462.493333pt;}
.y167{bottom:463.786667pt;}
.y124{bottom:468.093333pt;}
.y189{bottom:472.413333pt;}
.y197{bottom:473.053333pt;}
.y3b{bottom:473.373333pt;}
.y118{bottom:473.853333pt;}
.y90{bottom:474.173333pt;}
.y145{bottom:474.493333pt;}
.y166{bottom:477.386667pt;}
.yf1{bottom:480.093333pt;}
.yaa{bottom:481.693333pt;}
.y174{bottom:482.333333pt;}
.y13d{bottom:487.293333pt;}
.y12f{bottom:487.933333pt;}
.y165{bottom:490.826667pt;}
.y25{bottom:493.213333pt;}
.y8f{bottom:494.013333pt;}
.y1ae{bottom:498.013333pt;}
.y188{bottom:500.093333pt;}
.y196{bottom:500.733333pt;}
.y1c5{bottom:501.053333pt;}
.ya9{bottom:501.533333pt;}
.y173{bottom:502.173333pt;}
.y123{bottom:509.213333pt;}
.y33{bottom:513.053333pt;}
.y8e{bottom:513.853333pt;}
.y117{bottom:514.973333pt;}
.y144{bottom:515.613333pt;}
.yef{bottom:521.213333pt;}
.ya8{bottom:521.373333pt;}
.y1aa{bottom:525.693333pt;}
.y195{bottom:528.413333pt;}
.y12e{bottom:529.053333pt;}
.y172{bottom:529.853333pt;}
.y30{bottom:532.893333pt;}
.y8d{bottom:533.853333pt;}
.ya7{bottom:541.213333pt;}
.y101{bottom:542.653333pt;}
.y1ba{bottom:543.293333pt;}
.y1a8{bottom:545.533333pt;}
.y2d{bottom:552.773333pt;}
.y8c{bottom:553.733333pt;}
.y116{bottom:556.133333pt;}
.y143{bottom:556.773333pt;}
.y171{bottom:557.573333pt;}
.ya6{bottom:561.093333pt;}
.yec{bottom:562.533333pt;}
.y122{bottom:563.973333pt;}
.y100{bottom:570.373333pt;}
.y1a7{bottom:573.253333pt;}
.y8b{bottom:573.573333pt;}
.y6{bottom:578.693333pt;}
.ya5{bottom:580.933333pt;}
.y13c{bottom:583.813333pt;}
.y170{bottom:585.253333pt;}
.ye7{bottom:590.213333pt;}
.y1a6{bottom:593.093333pt;}
.y6b{bottom:593.413333pt;}
.y115{bottom:597.253333pt;}
.y142{bottom:598.053333pt;}
.ya4{bottom:600.933333pt;}
.y11e{bottom:605.093333pt;}
.yff{bottom:611.493333pt;}
.y1a5{bottom:612.933333pt;}
.ya3{bottom:620.773333pt;}
.y5{bottom:621.413333pt;}
.y114{bottom:624.933333pt;}
.ye6{bottom:626.533333pt;}
.y6a{bottom:629.093333pt;}
.y1a4{bottom:632.773333pt;}
.yfe{bottom:639.173333pt;}
.ya2{bottom:640.613333pt;}
.y113{bottom:652.613333pt;}
.ya1{bottom:660.453333pt;}
.y4{bottom:661.893333pt;}
.y1{bottom:735.040000pt;}
.h13{height:17.675625pt;}
.h10{height:19.200000pt;}
.hf{height:19.232000pt;}
.h17{height:21.440000pt;}
.hb{height:22.496250pt;}
.h7{height:23.680000pt;}
.he{height:25.280000pt;}
.h21{height:26.880000pt;}
.h2f{height:26.912000pt;}
.h25{height:27.040000pt;}
.h27{height:27.072000pt;}
.ha{height:35.886875pt;}
.h8{height:35.928750pt;}
.h14{height:40.171875pt;}
.hd{height:40.218750pt;}
.h23{height:40.480000pt;}
.h24{height:40.512000pt;}
.h28{height:40.640000pt;}
.h22{height:40.672000pt;}
.h1a{height:44.456875pt;}
.h2{height:44.508750pt;}
.h18{height:49.335000pt;}
.h3{height:53.562500pt;}
.h26{height:53.920000pt;}
.h2c{height:53.952000pt;}
.h2b{height:54.080000pt;}
.h2a{height:54.112000pt;}
.h4{height:58.563750pt;}
.h15{height:58.880000pt;}
.h12{height:58.912000pt;}
.h11{height:59.040000pt;}
.h1f{height:65.531250pt;}
.h32{height:67.520000pt;}
.h5{height:71.321250pt;}
.h16{height:81.152000pt;}
.hc{height:84.832000pt;}
.h6{height:87.156562pt;}
.h1c{height:138.426667pt;}
.h1b{height:237.626667pt;}
.h2d{height:259.906667pt;}
.h30{height:316.546667pt;}
.h1e{height:317.186667pt;}
.h1d{height:376.866667pt;}
.h31{height:384.706667pt;}
.h9{height:405.053333pt;}
.h29{height:452.253333pt;}
.h20{height:466.333333pt;}
.h19{height:476.253333pt;}
.h2e{height:501.053333pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w17{width:41.600000pt;}
.w1c{width:60.160000pt;}
.w14{width:61.600000pt;}
.w8{width:65.472000pt;}
.w15{width:67.552000pt;}
.w16{width:67.680000pt;}
.w1b{width:76.032000pt;}
.w18{width:78.752000pt;}
.w6{width:82.432000pt;}
.wc{width:83.072000pt;}
.w5{width:84.320000pt;}
.wb{width:85.120000pt;}
.w1a{width:91.040000pt;}
.w12{width:93.632000pt;}
.w1d{width:93.920000pt;}
.w13{width:101.760000pt;}
.w3{width:113.152000pt;}
.w9{width:113.792000pt;}
.w19{width:115.360000pt;}
.w4{width:121.600000pt;}
.wa{width:122.240000pt;}
.w7{width:124.160000pt;}
.wd{width:124.480000pt;}
.w11{width:124.672000pt;}
.we{width:146.586667pt;}
.w10{width:155.360000pt;}
.wf{width:278.106667pt;}
.w2{width:1122.559983pt;}
.w0{width:1122.560000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x2e{left:4.320000pt;}
.x40{left:5.920000pt;}
.x6{left:6.880000pt;}
.x39{left:8.000000pt;}
.x1d{left:9.760000pt;}
.x41{left:10.720000pt;}
.x20{left:12.000000pt;}
.x15{left:13.600000pt;}
.x16{left:14.586667pt;}
.x43{left:15.840000pt;}
.x1e{left:16.960000pt;}
.xc{left:17.946667pt;}
.x24{left:19.200000pt;}
.xa{left:20.160000pt;}
.x13{left:21.120000pt;}
.x10{left:22.560000pt;}
.x18{left:24.000000pt;}
.x1a{left:24.960000pt;}
.x27{left:26.080000pt;}
.x19{left:27.040000pt;}
.x17{left:28.160000pt;}
.x21{left:29.440000pt;}
.x1b{left:30.400000pt;}
.x47{left:31.360000pt;}
.x44{left:32.320000pt;}
.x42{left:33.760000pt;}
.x3b{left:34.880000pt;}
.x8{left:36.000000pt;}
.x1c{left:37.920000pt;}
.x2b{left:39.360000pt;}
.x22{left:41.626667pt;}
.xe{left:43.040000pt;}
.x12{left:44.960000pt;}
.x1f{left:46.720000pt;}
.x45{left:48.800000pt;}
.x46{left:50.880000pt;}
.x11{left:56.480000pt;}
.x14{left:60.800000pt;}
.x23{left:62.400000pt;}
.x2d{left:73.280000pt;}
.x32{left:83.200000pt;}
.x2f{left:89.160000pt;}
.x3{left:94.559983pt;}
.x30{left:101.640000pt;}
.x29{left:108.000000pt;}
.x33{left:177.466667pt;}
.x26{left:208.026667pt;}
.x5{left:264.026667pt;}
.x34{left:280.026667pt;}
.x4{left:317.146650pt;}
.x35{left:342.266667pt;}
.x28{left:355.266667pt;}
.x7{left:377.826667pt;}
.x1{left:383.746650pt;}
.x36{left:410.466667pt;}
.x25{left:468.066650pt;}
.x37{left:478.786667pt;}
.x31{left:481.186650pt;}
.x9{left:500.066667pt;}
.x38{left:521.026667pt;}
.x2{left:561.346650pt;}
.xb{left:585.186667pt;}
.x3a{left:600.413333pt;}
.x2a{left:634.013333pt;}
.xd{left:668.253333pt;}
.x3c{left:716.413333pt;}
.x2c{left:790.013333pt;}
.xf{left:793.053333pt;}
.x3d{left:808.093333pt;}
.x3e{left:884.773333pt;}
.x3f{left:945.573333pt;}
}




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