
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ac31cdd7af65f091285cb08d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_7cf32b9aac0e0083802d5d44.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_c2f5180cf0e6c8ae5bef72a4.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_b0ceafdef303de307fcb9711.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_f59a492a4c7aad9dc7ad1010.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_7ba948fa03bd052db39af39a.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9f315b1285174e34dcde7d6e.woff')format("woff");}.ff8{font-family:ff8;line-height:1.065430;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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls12{letter-spacing:-0.598200px;}
.ls16{letter-spacing:-0.246600px;}
.lse{letter-spacing:-0.186600px;}
.ls19{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls17{letter-spacing:-0.037800px;}
.ls1b{letter-spacing:-0.009000px;}
.ls4{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.015000px;}
.ls11{letter-spacing:0.045360px;}
.lsc{letter-spacing:0.048960px;}
.ls3{letter-spacing:0.049200px;}
.lsf{letter-spacing:0.064800px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls15{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.173400px;}
.ls13{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls1a{letter-spacing:47.726640px;}
.ls10{letter-spacing:63.566640px;}
.ls18{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.wsb{word-spacing:-13.425600px;}
.ws7{word-spacing:-13.399800px;}
.ws5{word-spacing:-13.275600px;}
.ws9{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsf{word-spacing:-13.217400px;}
.wsd{word-spacing:-13.188600px;}
.wse{word-spacing:-13.072800px;}
.ws8{word-spacing:-13.039800px;}
.wsc{word-spacing:-12.979800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._9{margin-left:-3.487200px;}
._5{margin-left:-2.404800px;}
._0{margin-left:-1.110000px;}
._2{width:1.383264px;}
._6{width:3.026111px;}
._7{width:4.869600px;}
._e{width:5.951880px;}
._8{width:7.094400px;}
._a{width:8.416800px;}
._4{width:10.237196px;}
._3{width:11.302800px;}
._b{width:14.909760px;}
._c{width:16.019760px;}
._d{width:17.467080px;}
._10{width:18.604920px;}
._26{width:19.839600px;}
._f{width:21.282480px;}
._17{width:23.326560px;}
._1a{width:24.408720px;}
._11{width:26.152200px;}
._1{width:29.022648px;}
._33{width:30.060000px;}
._34{width:31.202280px;}
._14{width:32.885640px;}
._2c{width:34.208280px;}
._36{width:36.220080px;}
._21{width:37.454760px;}
._23{width:41.903640px;}
._2b{width:43.887600px;}
._35{width:47.795400px;}
._22{width:49.418640px;}
._37{width:54.168120px;}
._12{width:56.813400px;}
._38{width:60.781320px;}
._2e{width:69.378480px;}
._16{width:70.941600px;}
._1e{width:75.751200px;}
._19{width:78.216120px;}
._32{width:82.750320px;}
._24{width:84.949560px;}
._20{width:91.262160px;}
._28{width:93.907440px;}
._1b{width:99.799200px;}
._1d{width:113.626800px;}
._1c{width:115.310160px;}
._31{width:120.059640px;}
._2a{width:130.340160px;}
._30{width:145.670760px;}
._27{width:158.957280px;}
._18{width:169.778880px;}
._2f{width:192.323880px;}
._29{width:196.893000px;}
._25{width:198.095400px;}
._1f{width:212.824800px;}
._13{width:238.315680px;}
._15{width:243.966960px;}
._2d{width:283.826520px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yac{bottom:7.830000px;}
.ya2{bottom:7.920000px;}
.yab{bottom:25.380000px;}
.ya1{bottom:25.470000px;}
.y116{bottom:25.500000px;}
.y16e{bottom:26.550000px;}
.y175{bottom:26.640000px;}
.ya0{bottom:43.020000px;}
.ya8{bottom:43.110000px;}
.ya5{bottom:43.140000px;}
.y170{bottom:44.220000px;}
.yaa{bottom:60.570000px;}
.ya7{bottom:60.660000px;}
.ya4{bottom:60.690000px;}
.yaf{bottom:61.830000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y17d{bottom:112.350000px;}
.y81{bottom:116.130000px;}
.yb0{bottom:128.460000px;}
.y162{bottom:129.180000px;}
.y17c{bottom:129.900000px;}
.y10b{bottom:131.250000px;}
.y80{bottom:133.770000px;}
.y1b2{bottom:134.130000px;}
.y92{bottom:135.930000px;}
.y27{bottom:142.050000px;}
.y59{bottom:142.680000px;}
.yd0{bottom:142.950000px;}
.y1c4{bottom:143.130000px;}
.yae{bottom:143.400000px;}
.y13a{bottom:143.490000px;}
.y112{bottom:144.840000px;}
.y19a{bottom:144.930000px;}
.y161{bottom:146.730000px;}
.y17b{bottom:147.450000px;}
.y10a{bottom:148.800000px;}
.y1a0{bottom:148.890000px;}
.y7f{bottom:151.320000px;}
.y1b1{bottom:151.680000px;}
.y91{bottom:153.480000px;}
.y26{bottom:159.600000px;}
.y58{bottom:160.320000px;}
.ycf{bottom:160.500000px;}
.y1c3{bottom:160.680000px;}
.y139{bottom:161.040000px;}
.y199{bottom:162.480000px;}
.y160{bottom:164.370000px;}
.y17a{bottom:165.090000px;}
.y109{bottom:166.440000px;}
.y7e{bottom:168.960000px;}
.y90{bottom:171.120000px;}
.y19f{bottom:175.800000px;}
.y25{bottom:177.240000px;}
.yce{bottom:178.050000px;}
.y1b0{bottom:178.320000px;}
.y138{bottom:178.680000px;}
.y15f{bottom:181.920000px;}
.y179{bottom:182.640000px;}
.y108{bottom:183.990000px;}
.y57{bottom:186.870000px;}
.y111{bottom:189.750000px;}
.ycd{bottom:195.690000px;}
.y1af{bottom:195.870000px;}
.y137{bottom:196.230000px;}
.y8f{bottom:197.670000px;}
.y198{bottom:198.120000px;}
.y178{bottom:200.190000px;}
.y7d{bottom:204.510000px;}
.y1c2{bottom:204.870000px;}
.yad{bottom:205.950000px;}
.y24{bottom:212.790000px;}
.y1ae{bottom:213.510000px;}
.y136{bottom:213.780000px;}
.y197{bottom:215.670000px;}
.y15e{bottom:217.560000px;}
.y107{bottom:219.630000px;}
.y7c{bottom:222.060000px;}
.y56{bottom:222.510000px;}
.y19e{bottom:224.040000px;}
.y177{bottom:226.830000px;}
.y23{bottom:230.340000px;}
.ycc{bottom:231.240000px;}
.y196{bottom:233.310000px;}
.y8e{bottom:233.580000px;}
.y110{bottom:234.750000px;}
.y15d{bottom:235.110000px;}
.y106{bottom:237.180000px;}
.y7b{bottom:239.700000px;}
.y55{bottom:240.060000px;}
.y22{bottom:247.980000px;}
.yec{bottom:248.250000px;}
.ycb{bottom:248.880000px;}
.y1c1{bottom:249.060000px;}
.y135{bottom:249.420000px;}
.y19d{bottom:250.950000px;}
.y15c{bottom:252.660000px;}
.y105{bottom:254.730000px;}
.y7a{bottom:257.250000px;}
.y54{bottom:257.610000px;}
.y195{bottom:259.860000px;}
.y176{bottom:262.740000px;}
.y21{bottom:265.530000px;}
.yeb{bottom:265.800000px;}
.yca{bottom:266.430000px;}
.y1c0{bottom:266.610000px;}
.y134{bottom:266.970000px;}
.ya9{bottom:268.500000px;}
.y15b{bottom:270.300000px;}
.y104{bottom:272.370000px;}
.y79{bottom:274.890000px;}
.y53{bottom:275.250000px;}
.y8d{bottom:281.910000px;}
.y20{bottom:283.170000px;}
.yea{bottom:283.440000px;}
.y1ad{bottom:284.250000px;}
.y133{bottom:284.610000px;}
.y15a{bottom:287.850000px;}
.y19c{bottom:288.300000px;}
.y78{bottom:292.440000px;}
.y52{bottom:292.800000px;}
.yc9{bottom:292.980000px;}
.y194{bottom:295.410000px;}
.y103{bottom:298.920000px;}
.y1ac{bottom:301.800000px;}
.y132{bottom:302.160000px;}
.y174{bottom:308.370000px;}
.y1f{bottom:309.720000px;}
.y51{bottom:310.440000px;}
.y1bf{bottom:310.800000px;}
.y193{bottom:313.050000px;}
.y8c{bottom:314.130000px;}
.y10f{bottom:318.540000px;}
.ye9{bottom:318.990000px;}
.y1ab{bottom:319.440000px;}
.y159{bottom:323.490000px;}
.y77{bottom:327.990000px;}
.y1be{bottom:328.440000px;}
.yc8{bottom:328.620000px;}
.y192{bottom:330.600000px;}
.y102{bottom:334.560000px;}
.y173{bottom:335.730000px;}
.ye8{bottom:336.540000px;}
.y131{bottom:337.710000px;}
.y158{bottom:341.040000px;}
.y1e{bottom:345.630000px;}
.y50{bottom:345.990000px;}
.yc7{bottom:346.170000px;}
.y191{bottom:348.240000px;}
.ya6{bottom:348.510000px;}
.y101{bottom:352.110000px;}
.ye7{bottom:354.180000px;}
.y130{bottom:355.350000px;}
.y157{bottom:358.590000px;}
.y172{bottom:363.090000px;}
.y76{bottom:363.180000px;}
.y4f{bottom:363.540000px;}
.y190{bottom:365.790000px;}
.y100{bottom:369.660000px;}
.y10e{bottom:371.730000px;}
.y180{bottom:372.180000px;}
.y1bd{bottom:372.540000px;}
.y12f{bottom:372.900000px;}
.y156{bottom:376.230000px;}
.y75{bottom:380.730000px;}
.y4e{bottom:381.180000px;}
.yc6{bottom:381.810000px;}
.y18f{bottom:383.340000px;}
.y10d{bottom:389.370000px;}
.ye6{bottom:389.730000px;}
.y1aa{bottom:390.180000px;}
.y171{bottom:390.360000px;}
.y12e{bottom:390.540000px;}
.y1d{bottom:393.870000px;}
.y4d{bottom:398.730000px;}
.yc5{bottom:399.360000px;}
.yff{bottom:405.300000px;}
.y74{bottom:407.370000px;}
.y1a9{bottom:407.730000px;}
.y1c{bottom:411.780000px;}
.y4c{bottom:416.370000px;}
.yc4{bottom:416.910000px;}
.y12d{bottom:417.090000px;}
.y18e{bottom:418.980000px;}
.yfe{bottom:422.850000px;}
.ye5{bottom:424.920000px;}
.y1a8{bottom:425.370000px;}
.ya3{bottom:428.610000px;}
.y155{bottom:429.420000px;}
.y4b{bottom:433.920000px;}
.y1bc{bottom:434.370000px;}
.yc3{bottom:434.550000px;}
.y16f{bottom:435.270000px;}
.y18d{bottom:436.530000px;}
.yfd{bottom:440.490000px;}
.ye4{bottom:442.470000px;}
.y73{bottom:442.920000px;}
.y154{bottom:446.970000px;}
.y1b{bottom:448.860000px;}
.y1a7{bottom:451.920000px;}
.y12c{bottom:452.640000px;}
.y18c{bottom:454.170000px;}
.yfc{bottom:458.040000px;}
.ye3{bottom:460.110000px;}
.y72{bottom:460.560000px;}
.y153{bottom:464.520000px;}
.y1a{bottom:466.410000px;}
.y4a{bottom:469.470000px;}
.yc2{bottom:470.130000px;}
.y12b{bottom:470.310000px;}
.y18b{bottom:471.750000px;}
.yfb{bottom:475.620000px;}
.ye2{bottom:477.690000px;}
.y71{bottom:478.140000px;}
.y16d{bottom:480.300000px;}
.y152{bottom:482.190000px;}
.y19{bottom:484.080000px;}
.y49{bottom:487.140000px;}
.yc1{bottom:487.770000px;}
.y18a{bottom:489.300000px;}
.y70{bottom:495.690000px;}
.y1bb{bottom:496.140000px;}
.y18{bottom:501.630000px;}
.y48{bottom:504.690000px;}
.yc0{bottom:505.320000px;}
.y12a{bottom:505.860000px;}
.y16c{bottom:507.570000px;}
.y9f{bottom:508.740000px;}
.yfa{bottom:511.260000px;}
.y6f{bottom:513.330000px;}
.y1a6{bottom:513.690000px;}
.y151{bottom:517.740000px;}
.y17{bottom:519.180000px;}
.y47{bottom:522.330000px;}
.ybf{bottom:522.870000px;}
.y129{bottom:523.410000px;}
.y189{bottom:524.940000px;}
.yf9{bottom:528.810000px;}
.y149{bottom:530.430000px;}
.y6e{bottom:530.880000px;}
.y1a5{bottom:531.330000px;}
.y150{bottom:535.290000px;}
.y16{bottom:536.820000px;}
.y46{bottom:539.880000px;}
.ybe{bottom:540.510000px;}
.y128{bottom:541.050000px;}
.y188{bottom:542.490000px;}
.yf8{bottom:546.450000px;}
.y148{bottom:548.070000px;}
.ye1{bottom:548.430000px;}
.y1ba{bottom:548.880000px;}
.y16b{bottom:552.480000px;}
.y14f{bottom:552.930000px;}
.y15{bottom:554.370000px;}
.y45{bottom:557.430000px;}
.y1a4{bottom:557.880000px;}
.y127{bottom:558.600000px;}
.y187{bottom:560.040000px;}
.y147{bottom:565.620000px;}
.ye0{bottom:566.070000px;}
.y6d{bottom:566.520000px;}
.y14e{bottom:570.480000px;}
.y14{bottom:571.920000px;}
.y1a3{bottom:575.430000px;}
.ybd{bottom:576.060000px;}
.y126{bottom:576.240000px;}
.y186{bottom:577.680000px;}
.yf7{bottom:582.000000px;}
.y146{bottom:583.260000px;}
.ydf{bottom:583.620000px;}
.y44{bottom:584.070000px;}
.y13{bottom:589.560000px;}
.y9e{bottom:592.620000px;}
.y1a2{bottom:593.070000px;}
.ybc{bottom:593.700000px;}
.y185{bottom:595.230000px;}
.y14d{bottom:597.120000px;}
.yf6{bottom:599.550000px;}
.y145{bottom:600.810000px;}
.yde{bottom:601.260000px;}
.y6c{bottom:601.620000px;}
.y12{bottom:607.110000px;}
.ybb{bottom:611.250000px;}
.y125{bottom:611.790000px;}
.yf5{bottom:617.190000px;}
.y6b{bottom:619.260000px;}
.y43{bottom:619.620000px;}
.y184{bottom:621.870000px;}
.y11{bottom:624.750000px;}
.y9d{bottom:628.260000px;}
.yba{bottom:628.800000px;}
.y124{bottom:629.340000px;}
.y14c{bottom:633.030000px;}
.yf4{bottom:634.740000px;}
.y144{bottom:636.360000px;}
.y6a{bottom:636.810000px;}
.y42{bottom:637.260000px;}
.y10{bottom:642.300000px;}
.y9c{bottom:645.810000px;}
.y123{bottom:646.980000px;}
.y143{bottom:654.000000px;}
.ydd{bottom:654.360000px;}
.y69{bottom:654.450000px;}
.y41{bottom:654.810000px;}
.y183{bottom:657.780000px;}
.yf{bottom:659.850000px;}
.y1b9{bottom:663.810000px;}
.yb9{bottom:664.440000px;}
.y122{bottom:664.530000px;}
.yf3{bottom:670.290000px;}
.y142{bottom:671.550000px;}
.ydc{bottom:672.000000px;}
.y40{bottom:672.360000px;}
.ye{bottom:677.490000px;}
.y14b{bottom:681.270000px;}
.y9b{bottom:681.360000px;}
.yb8{bottom:681.990000px;}
.y121{bottom:682.170000px;}
.yf2{bottom:687.930000px;}
.y141{bottom:689.190000px;}
.ydb{bottom:689.550000px;}
.y3f{bottom:690.000000px;}
.yd{bottom:695.040000px;}
.y9a{bottom:699.000000px;}
.yb7{bottom:699.540000px;}
.yf1{bottom:705.480000px;}
.y182{bottom:706.020000px;}
.yda{bottom:707.190000px;}
.y3e{bottom:707.550000px;}
.yc{bottom:712.680000px;}
.y14a{bottom:713.490000px;}
.y99{bottom:716.550000px;}
.yb6{bottom:717.180000px;}
.y120{bottom:717.720000px;}
.yd9{bottom:724.740000px;}
.y3d{bottom:725.190000px;}
.y1b8{bottom:725.550000px;}
.yb{bottom:730.230000px;}
.yf0{bottom:732.120000px;}
.y98{bottom:734.190000px;}
.yb5{bottom:734.730000px;}
.y11f{bottom:735.270000px;}
.y181{bottom:738.240000px;}
.y140{bottom:742.290000px;}
.y68{bottom:742.740000px;}
.y1b7{bottom:743.190000px;}
.y1a1{bottom:751.740000px;}
.y11e{bottom:752.910000px;}
.ya{bottom:757.140000px;}
.yd8{bottom:760.290000px;}
.y67{bottom:760.380000px;}
.y3c{bottom:760.740000px;}
.yb4{bottom:761.370000px;}
.yef{bottom:768.030000px;}
.y8b{bottom:769.740000px;}
.y11d{bottom:770.460000px;}
.y66{bottom:777.930000px;}
.y3b{bottom:778.290000px;}
.y8a{bottom:787.290000px;}
.y11c{bottom:788.100000px;}
.y65{bottom:795.480000px;}
.y3a{bottom:795.930000px;}
.yb3{bottom:797.280000px;}
.y17f{bottom:804.480000px;}
.y89{bottom:804.930000px;}
.y9{bottom:805.380000px;}
.y11b{bottom:805.650000px;}
.yd7{bottom:813.030000px;}
.y39{bottom:813.480000px;}
.yee{bottom:816.270000px;}
.y64{bottom:822.120000px;}
.y97{bottom:822.480000px;}
.y38{bottom:831.030000px;}
.y1b6{bottom:831.480000px;}
.yd6{bottom:839.670000px;}
.y96{bottom:840.030000px;}
.y88{bottom:840.480000px;}
.y8{bottom:841.200000px;}
.yb2{bottom:845.520000px;}
.yed{bottom:848.490000px;}
.y10c{bottom:848.670000px;}
.y1b5{bottom:849.030000px;}
.y17e{bottom:857.670000px;}
.y63{bottom:858.030000px;}
.y11a{bottom:858.840000px;}
.y13f{bottom:866.220000px;}
.y37{bottom:866.670000px;}
.yd5{bottom:875.220000px;}
.y87{bottom:875.670000px;}
.y119{bottom:876.390000px;}
.y7{bottom:877.200000px;}
.yb1{bottom:877.740000px;}
.y13e{bottom:883.860000px;}
.y36{bottom:884.220000px;}
.yd4{bottom:892.860000px;}
.y86{bottom:893.220000px;}
.y13d{bottom:901.410000px;}
.y35{bottom:901.860000px;}
.y118{bottom:903.030000px;}
.y62{bottom:906.270000px;}
.yd3{bottom:910.410000px;}
.y85{bottom:910.860000px;}
.y6{bottom:913.200000px;}
.y34{bottom:919.410000px;}
.y61{bottom:923.820000px;}
.y84{bottom:928.410000px;}
.y33{bottom:936.960000px;}
.y1b4{bottom:937.410000px;}
.y117{bottom:938.940000px;}
.y95{bottom:945.960000px;}
.y5{bottom:949.290000px;}
.y13c{bottom:954.600000px;}
.y1b3{bottom:954.960000px;}
.y60{bottom:959.370000px;}
.y32{bottom:963.600000px;}
.y83{bottom:963.960000px;}
.y13b{bottom:972.150000px;}
.y16a{bottom:972.600000px;}
.y5f{bottom:977.820000px;}
.yd2{bottom:981.150000px;}
.y82{bottom:981.600000px;}
.y115{bottom:984.570000px;}
.y4{bottom:987.630000px;}
.y169{bottom:990.150000px;}
.y5e{bottom:996.270000px;}
.yd1{bottom:998.790000px;}
.y31{bottom:999.150000px;}
.y168{bottom:1007.790000px;}
.y3{bottom:1012.320000px;}
.y5d{bottom:1013.850000px;}
.y19b{bottom:1016.370000px;}
.y30{bottom:1016.820000px;}
.y167{bottom:1025.370000px;}
.y114{bottom:1029.510000px;}
.y5c{bottom:1032.300000px;}
.y2f{bottom:1034.370000px;}
.y5b{bottom:1050.660000px;}
.y2e{bottom:1051.920000px;}
.y166{bottom:1060.920000px;}
.y2d{bottom:1069.560000px;}
.y94{bottom:1069.920000px;}
.y165{bottom:1078.560000px;}
.y5a{bottom:1087.110000px;}
.y93{bottom:1087.560000px;}
.y113{bottom:1091.970000px;}
.y164{bottom:1096.110000px;}
.y2c{bottom:1105.110000px;}
.y163{bottom:1113.750000px;}
.y2b{bottom:1122.750000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h12{height:26.550000px;}
.h11{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.hf{height:44.190000px;}
.h10{height:44.220000px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.ha{height:61.740000px;}
.h8{height:61.793886px;}
.he{height:61.830000px;}
.h7{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.hd{height:79.290000px;}
.hc{height:79.380000px;}
.hb{height:79.410000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w9{width:123.660000px;}
.wa{width:128.700000px;}
.w6{width:131.220000px;}
.w7{width:133.920000px;}
.w3{width:137.550000px;}
.w5{width:142.860000px;}
.w8{width:145.380000px;}
.wb{width:166.980000px;}
.wc{width:188.010000px;}
.we{width:205.140000px;}
.w4{width:207.180000px;}
.wd{width:256.710000px;}
.wf{width:292.410000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.740000px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.x19{left:111.239987px;}
.x5{left:122.039987px;}
.x9{left:207.030000px;}
.x2{left:211.079987px;}
.x11{left:214.950000px;}
.x10{left:228.269987px;}
.x18{left:250.949987px;}
.xe{left:260.039987px;}
.x15{left:264.269987px;}
.x7{left:279.929987px;}
.x16{left:326.190000px;}
.x12{left:339.330000px;}
.xa{left:414.930000px;}
.x13{left:468.750000px;}
.x17{left:532.050000px;}
.xb{left:558.510000px;}
.x14{left:636.450000px;}
.x6{left:663.809987px;}
.xc{left:690.540000px;}
.xf{left:739.139987px;}
.xd{left:787.559987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls12{letter-spacing:-0.531733pt;}
.ls16{letter-spacing:-0.219200pt;}
.lse{letter-spacing:-0.165867pt;}
.ls19{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls17{letter-spacing:-0.033600pt;}
.ls1b{letter-spacing:-0.008000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.013333pt;}
.ls11{letter-spacing:0.040320pt;}
.lsc{letter-spacing:0.043520pt;}
.ls3{letter-spacing:0.043733pt;}
.lsf{letter-spacing:0.057600pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls15{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.154133pt;}
.ls13{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:42.423680pt;}
.ls10{letter-spacing:56.503680pt;}
.ls18{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.wsb{word-spacing:-11.933867pt;}
.ws7{word-spacing:-11.910933pt;}
.ws5{word-spacing:-11.800533pt;}
.ws9{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsf{word-spacing:-11.748800pt;}
.wsd{word-spacing:-11.723200pt;}
.wse{word-spacing:-11.620267pt;}
.ws8{word-spacing:-11.590933pt;}
.wsc{word-spacing:-11.537600pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._9{margin-left:-3.099734pt;}
._5{margin-left:-2.137600pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.229568pt;}
._6{width:2.689877pt;}
._7{width:4.328533pt;}
._e{width:5.290560pt;}
._8{width:6.306134pt;}
._a{width:7.481600pt;}
._4{width:9.099729pt;}
._3{width:10.046934pt;}
._b{width:13.253120pt;}
._c{width:14.239787pt;}
._d{width:15.526293pt;}
._10{width:16.537707pt;}
._26{width:17.635200pt;}
._f{width:18.917760pt;}
._17{width:20.734720pt;}
._1a{width:21.696640pt;}
._11{width:23.246400pt;}
._1{width:25.797909pt;}
._33{width:26.720000pt;}
._34{width:27.735360pt;}
._14{width:29.231680pt;}
._2c{width:30.407360pt;}
._36{width:32.195627pt;}
._21{width:33.293120pt;}
._23{width:37.247680pt;}
._2b{width:39.011200pt;}
._35{width:42.484800pt;}
._22{width:43.927680pt;}
._37{width:48.149440pt;}
._12{width:50.500800pt;}
._38{width:54.027840pt;}
._2e{width:61.669760pt;}
._16{width:63.059200pt;}
._1e{width:67.334400pt;}
._19{width:69.525440pt;}
._32{width:73.555840pt;}
._24{width:75.510720pt;}
._20{width:81.121920pt;}
._28{width:83.473280pt;}
._1b{width:88.710400pt;}
._1d{width:101.001600pt;}
._1c{width:102.497920pt;}
._31{width:106.719680pt;}
._2a{width:115.857920pt;}
._30{width:129.485120pt;}
._27{width:141.295360pt;}
._18{width:150.914560pt;}
._2f{width:170.954560pt;}
._29{width:175.016000pt;}
._25{width:176.084800pt;}
._1f{width:189.177600pt;}
._13{width:211.836160pt;}
._15{width:216.859520pt;}
._2d{width:252.290240pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yac{bottom:6.960000pt;}
.ya2{bottom:7.040000pt;}
.yab{bottom:22.560000pt;}
.ya1{bottom:22.640000pt;}
.y116{bottom:22.666667pt;}
.y16e{bottom:23.600000pt;}
.y175{bottom:23.680000pt;}
.ya0{bottom:38.240000pt;}
.ya8{bottom:38.320000pt;}
.ya5{bottom:38.346667pt;}
.y170{bottom:39.306667pt;}
.yaa{bottom:53.840000pt;}
.ya7{bottom:53.920000pt;}
.ya4{bottom:53.946667pt;}
.yaf{bottom:54.960000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y17d{bottom:99.866667pt;}
.y81{bottom:103.226667pt;}
.yb0{bottom:114.186667pt;}
.y162{bottom:114.826667pt;}
.y17c{bottom:115.466667pt;}
.y10b{bottom:116.666667pt;}
.y80{bottom:118.906667pt;}
.y1b2{bottom:119.226667pt;}
.y92{bottom:120.826667pt;}
.y27{bottom:126.266667pt;}
.y59{bottom:126.826667pt;}
.yd0{bottom:127.066667pt;}
.y1c4{bottom:127.226667pt;}
.yae{bottom:127.466667pt;}
.y13a{bottom:127.546667pt;}
.y112{bottom:128.746667pt;}
.y19a{bottom:128.826667pt;}
.y161{bottom:130.426667pt;}
.y17b{bottom:131.066667pt;}
.y10a{bottom:132.266667pt;}
.y1a0{bottom:132.346667pt;}
.y7f{bottom:134.506667pt;}
.y1b1{bottom:134.826667pt;}
.y91{bottom:136.426667pt;}
.y26{bottom:141.866667pt;}
.y58{bottom:142.506667pt;}
.ycf{bottom:142.666667pt;}
.y1c3{bottom:142.826667pt;}
.y139{bottom:143.146667pt;}
.y199{bottom:144.426667pt;}
.y160{bottom:146.106667pt;}
.y17a{bottom:146.746667pt;}
.y109{bottom:147.946667pt;}
.y7e{bottom:150.186667pt;}
.y90{bottom:152.106667pt;}
.y19f{bottom:156.266667pt;}
.y25{bottom:157.546667pt;}
.yce{bottom:158.266667pt;}
.y1b0{bottom:158.506667pt;}
.y138{bottom:158.826667pt;}
.y15f{bottom:161.706667pt;}
.y179{bottom:162.346667pt;}
.y108{bottom:163.546667pt;}
.y57{bottom:166.106667pt;}
.y111{bottom:168.666667pt;}
.ycd{bottom:173.946667pt;}
.y1af{bottom:174.106667pt;}
.y137{bottom:174.426667pt;}
.y8f{bottom:175.706667pt;}
.y198{bottom:176.106667pt;}
.y178{bottom:177.946667pt;}
.y7d{bottom:181.786667pt;}
.y1c2{bottom:182.106667pt;}
.yad{bottom:183.066667pt;}
.y24{bottom:189.146667pt;}
.y1ae{bottom:189.786667pt;}
.y136{bottom:190.026667pt;}
.y197{bottom:191.706667pt;}
.y15e{bottom:193.386667pt;}
.y107{bottom:195.226667pt;}
.y7c{bottom:197.386667pt;}
.y56{bottom:197.786667pt;}
.y19e{bottom:199.146667pt;}
.y177{bottom:201.626667pt;}
.y23{bottom:204.746667pt;}
.ycc{bottom:205.546667pt;}
.y196{bottom:207.386667pt;}
.y8e{bottom:207.626667pt;}
.y110{bottom:208.666667pt;}
.y15d{bottom:208.986667pt;}
.y106{bottom:210.826667pt;}
.y7b{bottom:213.066667pt;}
.y55{bottom:213.386667pt;}
.y22{bottom:220.426667pt;}
.yec{bottom:220.666667pt;}
.ycb{bottom:221.226667pt;}
.y1c1{bottom:221.386667pt;}
.y135{bottom:221.706667pt;}
.y19d{bottom:223.066667pt;}
.y15c{bottom:224.586667pt;}
.y105{bottom:226.426667pt;}
.y7a{bottom:228.666667pt;}
.y54{bottom:228.986667pt;}
.y195{bottom:230.986667pt;}
.y176{bottom:233.546667pt;}
.y21{bottom:236.026667pt;}
.yeb{bottom:236.266667pt;}
.yca{bottom:236.826667pt;}
.y1c0{bottom:236.986667pt;}
.y134{bottom:237.306667pt;}
.ya9{bottom:238.666667pt;}
.y15b{bottom:240.266667pt;}
.y104{bottom:242.106667pt;}
.y79{bottom:244.346667pt;}
.y53{bottom:244.666667pt;}
.y8d{bottom:250.586667pt;}
.y20{bottom:251.706667pt;}
.yea{bottom:251.946667pt;}
.y1ad{bottom:252.666667pt;}
.y133{bottom:252.986667pt;}
.y15a{bottom:255.866667pt;}
.y19c{bottom:256.266667pt;}
.y78{bottom:259.946667pt;}
.y52{bottom:260.266667pt;}
.yc9{bottom:260.426667pt;}
.y194{bottom:262.586667pt;}
.y103{bottom:265.706667pt;}
.y1ac{bottom:268.266667pt;}
.y132{bottom:268.586667pt;}
.y174{bottom:274.106667pt;}
.y1f{bottom:275.306667pt;}
.y51{bottom:275.946667pt;}
.y1bf{bottom:276.266667pt;}
.y193{bottom:278.266667pt;}
.y8c{bottom:279.226667pt;}
.y10f{bottom:283.146667pt;}
.ye9{bottom:283.546667pt;}
.y1ab{bottom:283.946667pt;}
.y159{bottom:287.546667pt;}
.y77{bottom:291.546667pt;}
.y1be{bottom:291.946667pt;}
.yc8{bottom:292.106667pt;}
.y192{bottom:293.866667pt;}
.y102{bottom:297.386667pt;}
.y173{bottom:298.426667pt;}
.ye8{bottom:299.146667pt;}
.y131{bottom:300.186667pt;}
.y158{bottom:303.146667pt;}
.y1e{bottom:307.226667pt;}
.y50{bottom:307.546667pt;}
.yc7{bottom:307.706667pt;}
.y191{bottom:309.546667pt;}
.ya6{bottom:309.786667pt;}
.y101{bottom:312.986667pt;}
.ye7{bottom:314.826667pt;}
.y130{bottom:315.866667pt;}
.y157{bottom:318.746667pt;}
.y172{bottom:322.746667pt;}
.y76{bottom:322.826667pt;}
.y4f{bottom:323.146667pt;}
.y190{bottom:325.146667pt;}
.y100{bottom:328.586667pt;}
.y10e{bottom:330.426667pt;}
.y180{bottom:330.826667pt;}
.y1bd{bottom:331.146667pt;}
.y12f{bottom:331.466667pt;}
.y156{bottom:334.426667pt;}
.y75{bottom:338.426667pt;}
.y4e{bottom:338.826667pt;}
.yc6{bottom:339.386667pt;}
.y18f{bottom:340.746667pt;}
.y10d{bottom:346.106667pt;}
.ye6{bottom:346.426667pt;}
.y1aa{bottom:346.826667pt;}
.y171{bottom:346.986667pt;}
.y12e{bottom:347.146667pt;}
.y1d{bottom:350.106667pt;}
.y4d{bottom:354.426667pt;}
.yc5{bottom:354.986667pt;}
.yff{bottom:360.266667pt;}
.y74{bottom:362.106667pt;}
.y1a9{bottom:362.426667pt;}
.y1c{bottom:366.026667pt;}
.y4c{bottom:370.106667pt;}
.yc4{bottom:370.586667pt;}
.y12d{bottom:370.746667pt;}
.y18e{bottom:372.426667pt;}
.yfe{bottom:375.866667pt;}
.ye5{bottom:377.706667pt;}
.y1a8{bottom:378.106667pt;}
.ya3{bottom:380.986667pt;}
.y155{bottom:381.706667pt;}
.y4b{bottom:385.706667pt;}
.y1bc{bottom:386.106667pt;}
.yc3{bottom:386.266667pt;}
.y16f{bottom:386.906667pt;}
.y18d{bottom:388.026667pt;}
.yfd{bottom:391.546667pt;}
.ye4{bottom:393.306667pt;}
.y73{bottom:393.706667pt;}
.y154{bottom:397.306667pt;}
.y1b{bottom:398.986667pt;}
.y1a7{bottom:401.706667pt;}
.y12c{bottom:402.346667pt;}
.y18c{bottom:403.706667pt;}
.yfc{bottom:407.146667pt;}
.ye3{bottom:408.986667pt;}
.y72{bottom:409.386667pt;}
.y153{bottom:412.906667pt;}
.y1a{bottom:414.586667pt;}
.y4a{bottom:417.306667pt;}
.yc2{bottom:417.893333pt;}
.y12b{bottom:418.053333pt;}
.y18b{bottom:419.333333pt;}
.yfb{bottom:422.773333pt;}
.ye2{bottom:424.613333pt;}
.y71{bottom:425.013333pt;}
.y16d{bottom:426.933333pt;}
.y152{bottom:428.613333pt;}
.y19{bottom:430.293333pt;}
.y49{bottom:433.013333pt;}
.yc1{bottom:433.573333pt;}
.y18a{bottom:434.933333pt;}
.y70{bottom:440.613333pt;}
.y1bb{bottom:441.013333pt;}
.y18{bottom:445.893333pt;}
.y48{bottom:448.613333pt;}
.yc0{bottom:449.173333pt;}
.y12a{bottom:449.653333pt;}
.y16c{bottom:451.173333pt;}
.y9f{bottom:452.213333pt;}
.yfa{bottom:454.453333pt;}
.y6f{bottom:456.293333pt;}
.y1a6{bottom:456.613333pt;}
.y151{bottom:460.213333pt;}
.y17{bottom:461.493333pt;}
.y47{bottom:464.293333pt;}
.ybf{bottom:464.773333pt;}
.y129{bottom:465.253333pt;}
.y189{bottom:466.613333pt;}
.yf9{bottom:470.053333pt;}
.y149{bottom:471.493333pt;}
.y6e{bottom:471.893333pt;}
.y1a5{bottom:472.293333pt;}
.y150{bottom:475.813333pt;}
.y16{bottom:477.173333pt;}
.y46{bottom:479.893333pt;}
.ybe{bottom:480.453333pt;}
.y128{bottom:480.933333pt;}
.y188{bottom:482.213333pt;}
.yf8{bottom:485.733333pt;}
.y148{bottom:487.173333pt;}
.ye1{bottom:487.493333pt;}
.y1ba{bottom:487.893333pt;}
.y16b{bottom:491.093333pt;}
.y14f{bottom:491.493333pt;}
.y15{bottom:492.773333pt;}
.y45{bottom:495.493333pt;}
.y1a4{bottom:495.893333pt;}
.y127{bottom:496.533333pt;}
.y187{bottom:497.813333pt;}
.y147{bottom:502.773333pt;}
.ye0{bottom:503.173333pt;}
.y6d{bottom:503.573333pt;}
.y14e{bottom:507.093333pt;}
.y14{bottom:508.373333pt;}
.y1a3{bottom:511.493333pt;}
.ybd{bottom:512.053333pt;}
.y126{bottom:512.213333pt;}
.y186{bottom:513.493333pt;}
.yf7{bottom:517.333333pt;}
.y146{bottom:518.453333pt;}
.ydf{bottom:518.773333pt;}
.y44{bottom:519.173333pt;}
.y13{bottom:524.053333pt;}
.y9e{bottom:526.773333pt;}
.y1a2{bottom:527.173333pt;}
.ybc{bottom:527.733333pt;}
.y185{bottom:529.093333pt;}
.y14d{bottom:530.773333pt;}
.yf6{bottom:532.933333pt;}
.y145{bottom:534.053333pt;}
.yde{bottom:534.453333pt;}
.y6c{bottom:534.773333pt;}
.y12{bottom:539.653333pt;}
.ybb{bottom:543.333333pt;}
.y125{bottom:543.813333pt;}
.yf5{bottom:548.613333pt;}
.y6b{bottom:550.453333pt;}
.y43{bottom:550.773333pt;}
.y184{bottom:552.773333pt;}
.y11{bottom:555.333333pt;}
.y9d{bottom:558.453333pt;}
.yba{bottom:558.933333pt;}
.y124{bottom:559.413333pt;}
.y14c{bottom:562.693333pt;}
.yf4{bottom:564.213333pt;}
.y144{bottom:565.653333pt;}
.y6a{bottom:566.053333pt;}
.y42{bottom:566.453333pt;}
.y10{bottom:570.933333pt;}
.y9c{bottom:574.053333pt;}
.y123{bottom:575.093333pt;}
.y143{bottom:581.333333pt;}
.ydd{bottom:581.653333pt;}
.y69{bottom:581.733333pt;}
.y41{bottom:582.053333pt;}
.y183{bottom:584.693333pt;}
.yf{bottom:586.533333pt;}
.y1b9{bottom:590.053333pt;}
.yb9{bottom:590.613333pt;}
.y122{bottom:590.693333pt;}
.yf3{bottom:595.813333pt;}
.y142{bottom:596.933333pt;}
.ydc{bottom:597.333333pt;}
.y40{bottom:597.653333pt;}
.ye{bottom:602.213333pt;}
.y14b{bottom:605.573333pt;}
.y9b{bottom:605.653333pt;}
.yb8{bottom:606.213333pt;}
.y121{bottom:606.373333pt;}
.yf2{bottom:611.493333pt;}
.y141{bottom:612.613333pt;}
.ydb{bottom:612.933333pt;}
.y3f{bottom:613.333333pt;}
.yd{bottom:617.813333pt;}
.y9a{bottom:621.333333pt;}
.yb7{bottom:621.813333pt;}
.yf1{bottom:627.093333pt;}
.y182{bottom:627.573333pt;}
.yda{bottom:628.613333pt;}
.y3e{bottom:628.933333pt;}
.yc{bottom:633.493333pt;}
.y14a{bottom:634.213333pt;}
.y99{bottom:636.933333pt;}
.yb6{bottom:637.493333pt;}
.y120{bottom:637.973333pt;}
.yd9{bottom:644.213333pt;}
.y3d{bottom:644.613333pt;}
.y1b8{bottom:644.933333pt;}
.yb{bottom:649.093333pt;}
.yf0{bottom:650.773333pt;}
.y98{bottom:652.613333pt;}
.yb5{bottom:653.093333pt;}
.y11f{bottom:653.573333pt;}
.y181{bottom:656.213333pt;}
.y140{bottom:659.813333pt;}
.y68{bottom:660.213333pt;}
.y1b7{bottom:660.613333pt;}
.y1a1{bottom:668.213333pt;}
.y11e{bottom:669.253333pt;}
.ya{bottom:673.013333pt;}
.yd8{bottom:675.813333pt;}
.y67{bottom:675.893333pt;}
.y3c{bottom:676.213333pt;}
.yb4{bottom:676.773333pt;}
.yef{bottom:682.693333pt;}
.y8b{bottom:684.213333pt;}
.y11d{bottom:684.853333pt;}
.y66{bottom:691.493333pt;}
.y3b{bottom:691.813333pt;}
.y8a{bottom:699.813333pt;}
.y11c{bottom:700.533333pt;}
.y65{bottom:707.093333pt;}
.y3a{bottom:707.493333pt;}
.yb3{bottom:708.693333pt;}
.y17f{bottom:715.093333pt;}
.y89{bottom:715.493333pt;}
.y9{bottom:715.893333pt;}
.y11b{bottom:716.133333pt;}
.yd7{bottom:722.693333pt;}
.y39{bottom:723.093333pt;}
.yee{bottom:725.573333pt;}
.y64{bottom:730.773333pt;}
.y97{bottom:731.093333pt;}
.y38{bottom:738.693333pt;}
.y1b6{bottom:739.093333pt;}
.yd6{bottom:746.373333pt;}
.y96{bottom:746.693333pt;}
.y88{bottom:747.093333pt;}
.y8{bottom:747.733333pt;}
.yb2{bottom:751.573333pt;}
.yed{bottom:754.213333pt;}
.y10c{bottom:754.373333pt;}
.y1b5{bottom:754.693333pt;}
.y17e{bottom:762.373333pt;}
.y63{bottom:762.693333pt;}
.y11a{bottom:763.413333pt;}
.y13f{bottom:769.973333pt;}
.y37{bottom:770.373333pt;}
.yd5{bottom:777.973333pt;}
.y87{bottom:778.373333pt;}
.y119{bottom:779.013333pt;}
.y7{bottom:779.733333pt;}
.yb1{bottom:780.213333pt;}
.y13e{bottom:785.653333pt;}
.y36{bottom:785.973333pt;}
.yd4{bottom:793.653333pt;}
.y86{bottom:793.973333pt;}
.y13d{bottom:801.253333pt;}
.y35{bottom:801.653333pt;}
.y118{bottom:802.693333pt;}
.y62{bottom:805.573333pt;}
.yd3{bottom:809.253333pt;}
.y85{bottom:809.653333pt;}
.y6{bottom:811.733333pt;}
.y34{bottom:817.253333pt;}
.y61{bottom:821.173333pt;}
.y84{bottom:825.253333pt;}
.y33{bottom:832.853333pt;}
.y1b4{bottom:833.253333pt;}
.y117{bottom:834.613333pt;}
.y95{bottom:840.853333pt;}
.y5{bottom:843.813333pt;}
.y13c{bottom:848.533333pt;}
.y1b3{bottom:848.853333pt;}
.y60{bottom:852.773333pt;}
.y32{bottom:856.533333pt;}
.y83{bottom:856.853333pt;}
.y13b{bottom:864.133333pt;}
.y16a{bottom:864.533333pt;}
.y5f{bottom:869.173333pt;}
.yd2{bottom:872.133333pt;}
.y82{bottom:872.533333pt;}
.y115{bottom:875.173333pt;}
.y4{bottom:877.893333pt;}
.y169{bottom:880.133333pt;}
.y5e{bottom:885.573333pt;}
.yd1{bottom:887.813333pt;}
.y31{bottom:888.133333pt;}
.y168{bottom:895.813333pt;}
.y3{bottom:899.840000pt;}
.y5d{bottom:901.200000pt;}
.y19b{bottom:903.440000pt;}
.y30{bottom:903.840000pt;}
.y167{bottom:911.440000pt;}
.y114{bottom:915.120000pt;}
.y5c{bottom:917.600000pt;}
.y2f{bottom:919.440000pt;}
.y5b{bottom:933.920000pt;}
.y2e{bottom:935.040000pt;}
.y166{bottom:943.040000pt;}
.y2d{bottom:950.720000pt;}
.y94{bottom:951.040000pt;}
.y165{bottom:958.720000pt;}
.y5a{bottom:966.320000pt;}
.y93{bottom:966.720000pt;}
.y113{bottom:970.640000pt;}
.y164{bottom:974.320000pt;}
.y2c{bottom:982.320000pt;}
.y163{bottom:990.000000pt;}
.y2b{bottom:998.000000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h12{height:23.600000pt;}
.h11{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.hf{height:39.280000pt;}
.h10{height:39.306667pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.ha{height:54.880000pt;}
.h8{height:54.927899pt;}
.he{height:54.960000pt;}
.h7{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.hd{height:70.480000pt;}
.hc{height:70.560000pt;}
.hb{height:70.586667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w9{width:109.920000pt;}
.wa{width:114.400000pt;}
.w6{width:116.640000pt;}
.w7{width:119.040000pt;}
.w3{width:122.266667pt;}
.w5{width:126.986667pt;}
.w8{width:129.226667pt;}
.wb{width:148.426667pt;}
.wc{width:167.120000pt;}
.we{width:182.346667pt;}
.w4{width:184.160000pt;}
.wd{width:228.186667pt;}
.wf{width:259.920000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.880000pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.x19{left:98.879988pt;}
.x5{left:108.479988pt;}
.x9{left:184.026667pt;}
.x2{left:187.626655pt;}
.x11{left:191.066667pt;}
.x10{left:202.906655pt;}
.x18{left:223.066655pt;}
.xe{left:231.146655pt;}
.x15{left:234.906655pt;}
.x7{left:248.826655pt;}
.x16{left:289.946667pt;}
.x12{left:301.626667pt;}
.xa{left:368.826667pt;}
.x13{left:416.666667pt;}
.x17{left:472.933333pt;}
.xb{left:496.453333pt;}
.x14{left:565.733333pt;}
.x6{left:590.053322pt;}
.xc{left:613.813333pt;}
.xf{left:657.013322pt;}
.xd{left:700.053322pt;}
.x3{left:711.413322pt;}
}




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