
    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_41e47afa23f4ba07f2d5517e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.940918;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_7d134d1dbb1c81bfb98f0599.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.940918;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ef306dd4171e1fa00b96515a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9e27f9a8ecbec6cfe188bd5f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d5d0c0b9a19283f3020040e4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6e5161b3b9133374fbad7c53.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5396430bd1803335ac875983.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_fac1d2708194715dc3b17de3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls1f{letter-spacing:-1.026000px;}
.ls8{letter-spacing:-0.942000px;}
.ls15{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.567600px;}
.lsc{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.360000px;}
.ls1c{letter-spacing:-0.305400px;}
.ls9{letter-spacing:-0.288000px;}
.ls21{letter-spacing:-0.152400px;}
.lsb{letter-spacing:-0.034560px;}
.ls7{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.008640px;}
.lsd{letter-spacing:0.053280px;}
.ls11{letter-spacing:0.080640px;}
.ls1b{letter-spacing:0.109200px;}
.ls12{letter-spacing:0.152400px;}
.ls0{letter-spacing:0.180000px;}
.ls20{letter-spacing:0.262200px;}
.ls10{letter-spacing:0.305400px;}
.ls5{letter-spacing:0.306600px;}
.ls1{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.898560px;}
.ls19{letter-spacing:1.440000px;}
.ls1e{letter-spacing:2.160000px;}
.ls4{letter-spacing:3.060000px;}
.ls1d{letter-spacing:3.600000px;}
.ls3{letter-spacing:4.500000px;}
.ls13{letter-spacing:16.865280px;}
.ls18{letter-spacing:20.465280px;}
.ls16{letter-spacing:36.305280px;}
.lse{letter-spacing:60.065280px;}
.ls6{letter-spacing:101.700000px;}
.ls17{letter-spacing:147.881280px;}
.ls14{letter-spacing:199.416000px;}
.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;}
}
.wsd{word-spacing:-66.240000px;}
.wsa{word-spacing:-16.865400px;}
.ws11{word-spacing:-16.822200px;}
.wsb{word-spacing:-16.712400px;}
.wse{word-spacing:-16.669200px;}
.ws5{word-spacing:-16.560000px;}
.ws12{word-spacing:-16.407600px;}
.wsf{word-spacing:-16.254600px;}
.ws9{word-spacing:-15.992400px;}
.ws10{word-spacing:-15.534000px;}
.ws4{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.246600px;}
.ws6{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.970240px;}
.ws3{word-spacing:-14.940000px;}
.ws2{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.700000px;}
.wsc{word-spacing:-10.440000px;}
.ws8{word-spacing:0.000000px;}
._22{margin-left:-9.210480px;}
._6{margin-left:-7.422000px;}
._1{margin-left:-5.512320px;}
._4{margin-left:-3.627840px;}
._5{margin-left:-2.513760px;}
._0{margin-left:-1.126080px;}
._2{width:1.002000px;}
._3{width:2.250480px;}
._e{width:3.254400px;}
._b{width:4.308720px;}
._9{width:5.511840px;}
._a{width:6.573600px;}
._c{width:7.962000px;}
._d{width:8.969520px;}
._14{width:10.055760px;}
._17{width:11.363760px;}
._8{width:12.365760px;}
._7{width:13.928640px;}
._13{width:15.017760px;}
._f{width:16.075440px;}
._10{width:17.875440px;}
._11{width:18.888000px;}
._12{width:20.401920px;}
._15{width:21.594240px;}
._16{width:23.051520px;}
._1d{width:24.243840px;}
._18{width:26.098560px;}
._1b{width:27.688320px;}
._1a{width:28.814400px;}
._20{width:30.801600px;}
._1c{width:32.325120px;}
._19{width:34.312320px;}
._1f{width:38.684160px;}
._1e{width:40.406400px;}
._26{width:41.797440px;}
._27{width:43.202640px;}
._28{width:46.301760px;}
._29{width:47.365440px;}
._2a{width:65.643840px;}
._2b{width:67.005600px;}
._2c{width:68.931840px;}
._2f{width:148.190400px;}
._2d{width:150.428160px;}
._2e{width:151.880160px;}
._25{width:163.411200px;}
._24{width:165.556800px;}
._23{width:166.933920px;}
._21{width:263.304000px;}
.fc5{color:transparent;}
.fc4{color:rgb(51,51,153);}
.fc3{color:rgb(153,51,0);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.yb5{bottom:6.294000px;}
.y75{bottom:6.300000px;}
.y88{bottom:6.330000px;}
.y73{bottom:6.480000px;}
.y10f{bottom:6.660000px;}
.yd1{bottom:6.840000px;}
.y11a{bottom:7.020000px;}
.yb9{bottom:8.640000px;}
.y2{bottom:9.180000px;}
.y149{bottom:11.160000px;}
.ye6{bottom:12.594000px;}
.ye8{bottom:12.600000px;}
.ye1{bottom:12.780000px;}
.yed{bottom:12.810000px;}
.yeb{bottom:13.140000px;}
.ybf{bottom:15.120000px;}
.ybd{bottom:15.300000px;}
.y14c{bottom:16.200000px;}
.yde{bottom:18.720000px;}
.y9d{bottom:19.440000px;}
.ya4{bottom:19.620000px;}
.ya0{bottom:19.650000px;}
.ya2{bottom:20.520000px;}
.y116{bottom:28.074000px;}
.y84{bottom:28.080000px;}
.y13f{bottom:28.110000px;}
.y72{bottom:28.260000px;}
.ye5{bottom:29.700000px;}
.ybb{bottom:30.420000px;}
.yb8{bottom:30.450000px;}
.yea{bottom:34.920000px;}
.y115{bottom:50.034000px;}
.y12e{bottom:50.040000px;}
.y118{bottom:50.070000px;}
.ye3{bottom:58.494000px;}
.y4{bottom:68.580000px;}
.yd5{bottom:72.540000px;}
.y13c{bottom:72.714000px;}
.y113{bottom:94.314000px;}
.y40{bottom:112.716000px;}
.ye7{bottom:113.256000px;}
.y70{bottom:113.796000px;}
.y13b{bottom:116.856000px;}
.yb6{bottom:117.036000px;}
.y86{bottom:117.216000px;}
.y16a{bottom:121.896000px;}
.y3f{bottom:131.616000px;}
.y18a{bottom:133.236000px;}
.y6f{bottom:135.576000px;}
.y112{bottom:137.016000px;}
.y85{bottom:139.716000px;}
.ye2{bottom:142.236000px;}
.y169{bottom:143.676000px;}
.y3e{bottom:148.176000px;}
.yb4{bottom:148.716000px;}
.y189{bottom:155.010000px;}
.y6e{bottom:157.350000px;}
.y12b{bottom:160.770000px;}
.y13d{bottom:161.310000px;}
.y3d{bottom:162.030000px;}
.y168{bottom:165.450000px;}
.y83{bottom:166.170000px;}
.ye4{bottom:171.030000px;}
.y3c{bottom:176.610000px;}
.yb3{bottom:176.790000px;}
.y6d{bottom:179.130000px;}
.y167{bottom:187.230000px;}
.y3b{bottom:193.710000px;}
.yb2{bottom:198.570000px;}
.y6c{bottom:201.090000px;}
.y114{bottom:203.250000px;}
.y13a{bottom:205.770000px;}
.y166{bottom:209.190000px;}
.y3a{bottom:210.990000px;}
.y82{bottom:216.750000px;}
.ye0{bottom:216.930000px;}
.yb1{bottom:220.530000px;}
.y6b{bottom:222.870000px;}
.y139{bottom:227.550000px;}
.y39{bottom:228.270000px;}
.y165{bottom:230.970000px;}
.y81{bottom:238.710000px;}
.yb0{bottom:242.310000px;}
.y6a{bottom:244.650000px;}
.y38{bottom:245.550000px;}
.ydf{bottom:245.910000px;}
.y110{bottom:247.530000px;}
.y164{bottom:252.750000px;}
.y138{bottom:255.630000px;}
.y80{bottom:260.490000px;}
.y37{bottom:262.830000px;}
.yaf{bottom:264.090000px;}
.y69{bottom:266.430000px;}
.y111{bottom:270.930000px;}
.y163{bottom:274.710000px;}
.y137{bottom:277.590000px;}
.y36{bottom:279.930000px;}
.y7f{bottom:282.270000px;}
.yae{bottom:285.870000px;}
.y68{bottom:288.210000px;}
.ydd{bottom:292.350000px;}
.y35{bottom:297.210000px;}
.y162{bottom:297.570000px;}
.y136{bottom:299.370000px;}
.y7e{bottom:304.050000px;}
.yad{bottom:307.650000px;}
.y67{bottom:310.170000px;}
.y34{bottom:314.490000px;}
.y161{bottom:319.350000px;}
.y135{bottom:321.150000px;}
.y7d{bottom:326.010000px;}
.yac{bottom:329.610000px;}
.y33{bottom:331.770000px;}
.y66{bottom:331.950000px;}
.y160{bottom:341.175000px;}
.y134{bottom:342.975000px;}
.y10e{bottom:343.335000px;}
.ydc{bottom:345.315000px;}
.y7c{bottom:347.835000px;}
.y32{bottom:349.095000px;}
.yab{bottom:351.435000px;}
.y65{bottom:353.775000px;}
.y15f{bottom:363.135000px;}
.y133{bottom:364.755000px;}
.y10d{bottom:365.115000px;}
.y31{bottom:366.375000px;}
.ydb{bottom:367.095000px;}
.y7b{bottom:369.615000px;}
.yaa{bottom:373.215000px;}
.y64{bottom:375.555000px;}
.y30{bottom:383.475000px;}
.y15e{bottom:384.915000px;}
.y7a{bottom:385.815000px;}
.y132{bottom:386.715000px;}
.y10c{bottom:387.075000px;}
.yda{bottom:388.875000px;}
.ya9{bottom:394.995000px;}
.y63{bottom:397.515000px;}
.y2f{bottom:400.755000px;}
.y15d{bottom:407.955000px;}
.y79{bottom:408.495000px;}
.y10b{bottom:408.855000px;}
.yd9{bottom:410.655000px;}
.ya8{bottom:416.955000px;}
.y2e{bottom:418.035000px;}
.y62{bottom:419.295000px;}
.y15c{bottom:429.735000px;}
.y131{bottom:430.275000px;}
.y10a{bottom:430.635000px;}
.y78{bottom:430.995000px;}
.yd8{bottom:432.615000px;}
.y2d{bottom:435.315000px;}
.ya7{bottom:438.735000px;}
.y61{bottom:441.075000px;}
.y15b{bottom:451.515000px;}
.y130{bottom:452.055000px;}
.y109{bottom:452.415000px;}
.y2c{bottom:452.595000px;}
.y77{bottom:453.495000px;}
.yd7{bottom:454.395000px;}
.ya6{bottom:460.515000px;}
.y60{bottom:462.855000px;}
.y12f{bottom:467.535000px;}
.y2b{bottom:469.875000px;}
.y15a{bottom:473.295000px;}
.y108{bottom:474.375000px;}
.y76{bottom:476.175000px;}
.ya5{bottom:476.715000px;}
.y188{bottom:482.295000px;}
.y5f{bottom:484.635000px;}
.y2a{bottom:486.975000px;}
.y12a{bottom:490.755000px;}
.yd4{bottom:492.375000px;}
.y159{bottom:495.255000px;}
.y107{bottom:496.155000px;}
.y74{bottom:498.675000px;}
.y187{bottom:504.075000px;}
.y29{bottom:504.255000px;}
.y5e{bottom:506.595000px;}
.ya3{bottom:512.355000px;}
.y106{bottom:517.935000px;}
.y158{bottom:518.115000px;}
.y71{bottom:521.175000px;}
.y28{bottom:521.535000px;}
.y186{bottom:526.035000px;}
.y5d{bottom:528.375000px;}
.yd6{bottom:536.835000px;}
.y27{bottom:538.815000px;}
.y105{bottom:539.715000px;}
.y157{bottom:540.075000px;}
.y185{bottom:547.815000px;}
.ya1{bottom:548.175000px;}
.y5c{bottom:550.155000px;}
.y26{bottom:556.095000px;}
.y12d{bottom:556.995000px;}
.y104{bottom:561.495000px;}
.y156{bottom:561.855000px;}
.y184{bottom:569.595000px;}
.y5b{bottom:571.935000px;}
.y25{bottom:573.375000px;}
.yd2{bottom:581.115000px;}
.y103{bottom:583.455000px;}
.y155{bottom:583.635000px;}
.y9f{bottom:584.895000px;}
.y24{bottom:590.475000px;}
.y183{bottom:591.375000px;}
.y5a{bottom:593.895000px;}
.yd3{bottom:603.825000px;}
.y102{bottom:605.265000px;}
.y154{bottom:605.445000px;}
.y23{bottom:607.785000px;}
.y182{bottom:613.365000px;}
.y59{bottom:615.705000px;}
.y9e{bottom:620.745000px;}
.y12c{bottom:623.265000px;}
.y22{bottom:625.065000px;}
.yd0{bottom:626.505000px;}
.y101{bottom:627.045000px;}
.y153{bottom:627.225000px;}
.y181{bottom:635.145000px;}
.y58{bottom:637.485000px;}
.y21{bottom:642.345000px;}
.y100{bottom:648.825000px;}
.y152{bottom:649.185000px;}
.ycf{bottom:655.665000px;}
.y9c{bottom:656.385000px;}
.y180{bottom:656.925000px;}
.y57{bottom:659.265000px;}
.y20{bottom:659.625000px;}
.y128{bottom:667.725000px;}
.yff{bottom:670.785000px;}
.y151{bottom:670.965000px;}
.y1f{bottom:676.725000px;}
.yce{bottom:677.625000px;}
.y17f{bottom:678.705000px;}
.y56{bottom:681.045000px;}
.y129{bottom:690.945000px;}
.y9b{bottom:692.025000px;}
.yfe{bottom:692.565000px;}
.y150{bottom:692.745000px;}
.y1e{bottom:694.005000px;}
.ycd{bottom:699.405000px;}
.y17e{bottom:700.485000px;}
.y55{bottom:703.005000px;}
.y1d{bottom:711.285000px;}
.yfd{bottom:714.345000px;}
.y14f{bottom:714.525000px;}
.ycc{bottom:721.185000px;}
.y17d{bottom:722.445000px;}
.y54{bottom:724.785000px;}
.y1c{bottom:728.565000px;}
.y14e{bottom:730.005000px;}
.y127{bottom:734.505000px;}
.yfc{bottom:736.125000px;}
.y9a{bottom:742.785000px;}
.ycb{bottom:742.965000px;}
.y17c{bottom:744.225000px;}
.y1b{bottom:745.845000px;}
.y53{bottom:746.565000px;}
.yfb{bottom:757.905000px;}
.y14d{bottom:761.685000px;}
.y1a{bottom:763.125000px;}
.y126{bottom:763.485000px;}
.y99{bottom:764.565000px;}
.yca{bottom:764.745000px;}
.y17b{bottom:766.005000px;}
.y52{bottom:768.345000px;}
.yfa{bottom:779.865000px;}
.y19{bottom:780.225000px;}
.y125{bottom:785.265000px;}
.y98{bottom:786.525000px;}
.yc9{bottom:786.705000px;}
.y17a{bottom:787.785000px;}
.y51{bottom:790.125000px;}
.y14b{bottom:794.085000px;}
.y18{bottom:797.505000px;}
.yf9{bottom:801.645000px;}
.y124{bottom:807.045000px;}
.y97{bottom:808.305000px;}
.yc8{bottom:808.485000px;}
.y179{bottom:809.745000px;}
.y50{bottom:812.085000px;}
.y17{bottom:814.785000px;}
.yf8{bottom:823.425000px;}
.y14a{bottom:826.485000px;}
.y123{bottom:829.005000px;}
.y96{bottom:830.085000px;}
.yc7{bottom:830.265000px;}
.y178{bottom:831.525000px;}
.y16{bottom:832.065000px;}
.y4f{bottom:833.865000px;}
.yf7{bottom:845.205000px;}
.y15{bottom:849.345000px;}
.y95{bottom:851.865000px;}
.yc6{bottom:852.045000px;}
.y177{bottom:853.305000px;}
.y4e{bottom:855.645000px;}
.y14{bottom:866.625000px;}
.yf6{bottom:867.165000px;}
.y122{bottom:873.690000px;}
.y94{bottom:873.870000px;}
.yc5{bottom:874.050000px;}
.y176{bottom:875.130000px;}
.y4d{bottom:877.470000px;}
.y13{bottom:883.770000px;}
.yf5{bottom:888.990000px;}
.y93{bottom:895.650000px;}
.yc4{bottom:895.830000px;}
.y175{bottom:896.910000px;}
.y4c{bottom:899.430000px;}
.y12{bottom:901.050000px;}
.y148{bottom:904.290000px;}
.yf4{bottom:910.770000px;}
.y92{bottom:917.430000px;}
.yc3{bottom:917.610000px;}
.y121{bottom:918.510000px;}
.y11{bottom:918.690000px;}
.y174{bottom:918.870000px;}
.y4b{bottom:921.210000px;}
.yf3{bottom:926.250000px;}
.y10{bottom:937.770000px;}
.y91{bottom:939.210000px;}
.yc2{bottom:939.390000px;}
.y120{bottom:940.290000px;}
.y173{bottom:940.650000px;}
.y147{bottom:942.270000px;}
.y4a{bottom:942.990000px;}
.yf2{bottom:954.510000px;}
.yf{bottom:956.670000px;}
.y90{bottom:960.990000px;}
.yc1{bottom:961.170000px;}
.y11f{bottom:962.250000px;}
.y172{bottom:962.610000px;}
.y146{bottom:964.050000px;}
.y49{bottom:964.770000px;}
.ye{bottom:975.750000px;}
.yf1{bottom:982.590000px;}
.y8f{bottom:982.950000px;}
.yc0{bottom:983.130000px;}
.y11e{bottom:985.290000px;}
.y171{bottom:985.470000px;}
.y145{bottom:985.830000px;}
.y48{bottom:986.550000px;}
.yd{bottom:994.650000px;}
.ybe{bottom:999.330000px;}
.y8e{bottom:1004.730000px;}
.y11d{bottom:1007.070000px;}
.y170{bottom:1007.250000px;}
.y144{bottom:1007.790000px;}
.y47{bottom:1008.510000px;}
.yf0{bottom:1010.850000px;}
.yc{bottom:1014.090000px;}
.y8d{bottom:1026.510000px;}
.y11c{bottom:1028.850000px;}
.y16f{bottom:1029.030000px;}
.y143{bottom:1029.570000px;}
.y46{bottom:1030.290000px;}
.ybc{bottom:1030.650000px;}
.yb{bottom:1036.590000px;}
.yef{bottom:1039.830000px;}
.y8c{bottom:1048.290000px;}
.y11b{bottom:1050.630000px;}
.y16e{bottom:1050.990000px;}
.y142{bottom:1051.350000px;}
.y45{bottom:1052.070000px;}
.ya{bottom:1057.290000px;}
.yba{bottom:1062.150000px;}
.y8b{bottom:1064.490000px;}
.y119{bottom:1066.110000px;}
.y141{bottom:1066.830000px;}
.yee{bottom:1068.810000px;}
.y9{bottom:1071.870000px;}
.y16d{bottom:1072.770000px;}
.y44{bottom:1073.850000px;}
.y8a{bottom:1087.170000px;}
.y140{bottom:1088.610000px;}
.y8{bottom:1089.150000px;}
.y117{bottom:1089.330000px;}
.y16c{bottom:1094.550000px;}
.y43{bottom:1095.810000px;}
.ye9{bottom:1097.610000px;}
.y7{bottom:1106.430000px;}
.yb7{bottom:1108.950000px;}
.y89{bottom:1109.670000px;}
.y13e{bottom:1111.290000px;}
.y16b{bottom:1116.510000px;}
.y42{bottom:1117.590000px;}
.y6{bottom:1123.530000px;}
.yec{bottom:1126.590000px;}
.y87{bottom:1132.350000px;}
.y41{bottom:1139.400000px;}
.y5{bottom:1140.840000px;}
.y3{bottom:1166.400000px;}
.y1{bottom:1181.880000px;}
.h11{height:21.780000px;}
.h15{height:21.816000px;}
.h12{height:21.960000px;}
.h2e{height:22.500000px;}
.h2c{height:22.536000px;}
.h22{height:22.680000px;}
.h1f{height:22.860000px;}
.h14{height:25.560000px;}
.h2{height:27.900000px;}
.h29{height:28.080000px;}
.h26{height:28.260000px;}
.h2b{height:28.296000px;}
.h1e{height:30.600000px;}
.h1d{height:30.780000px;}
.h1a{height:31.680000px;}
.he{height:33.683203px;}
.h8{height:34.036523px;}
.h16{height:34.920000px;}
.h19{height:35.100000px;}
.h17{height:35.136000px;}
.h18{height:36.000000px;}
.h5{height:39.760312px;}
.hc{height:41.726953px;}
.h6{height:42.164648px;}
.h13{height:43.560000px;}
.h35{height:43.596000px;}
.h10{height:43.740000px;}
.h28{height:45.180000px;}
.h21{height:45.396000px;}
.h1c{height:45.900000px;}
.h1b{height:45.936000px;}
.h7{height:46.251562px;}
.h25{height:46.440000px;}
.h24{height:46.656000px;}
.hb{height:46.736719px;}
.hf{height:48.224531px;}
.hd{height:49.255313px;}
.h3{height:50.520937px;}
.h20{height:52.918594px;}
.ha{height:54.596250px;}
.h9{height:54.864844px;}
.h2a{height:57.276000px;}
.h30{height:65.520000px;}
.h31{height:65.556000px;}
.h4{height:65.884219px;}
.h32{height:66.780000px;}
.h2d{height:66.960000px;}
.h27{height:73.980000px;}
.h36{height:77.796000px;}
.h23{height:88.020000px;}
.h34{height:88.200000px;}
.h2f{height:109.800000px;}
.h33{height:176.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3a{width:23.940000px;}
.w30{width:24.480000px;}
.w21{width:25.020000px;}
.w16{width:42.336000px;}
.w2{width:53.100000px;}
.w36{width:66.780000px;}
.w38{width:67.716000px;}
.w39{width:67.860000px;}
.w2e{width:71.280000px;}
.w2d{width:71.496000px;}
.w33{width:71.640000px;}
.w1c{width:71.676000px;}
.w32{width:71.856000px;}
.w3b{width:84.960000px;}
.wa{width:95.040000px;}
.w3f{width:98.100000px;}
.w3e{width:98.136000px;}
.w3d{width:98.460000px;}
.w31{width:99.360000px;}
.w9{width:104.400000px;}
.w20{width:105.660000px;}
.wf{width:105.840000px;}
.w17{width:106.560000px;}
.w8{width:106.596000px;}
.w24{width:106.956000px;}
.w34{width:108.900000px;}
.wb{width:118.656000px;}
.w11{width:120.996000px;}
.w7{width:123.336000px;}
.w2a{width:123.840000px;}
.we{width:124.416000px;}
.w18{width:125.856000px;}
.w5{width:126.720000px;}
.w2f{width:126.936000px;}
.w19{width:127.260000px;}
.w1f{width:128.376000px;}
.wd{width:130.680000px;}
.wc{width:133.596000px;}
.w1a{width:136.836000px;}
.w13{width:137.520000px;}
.w12{width:137.556000px;}
.w15{width:138.240000px;}
.w22{width:138.276000px;}
.w28{width:147.096000px;}
.w10{width:154.110000px;}
.w2c{width:162.360000px;}
.w1d{width:163.290000px;}
.w27{width:176.070000px;}
.w6{width:180.030000px;}
.w37{width:181.980000px;}
.w35{width:182.190000px;}
.w40{width:199.650000px;}
.w26{width:231.870000px;}
.w1e{width:234.030000px;}
.w2b{width:246.135000px;}
.w25{width:323.175000px;}
.w1b{width:397.695000px;}
.w23{width:555.045000px;}
.w3c{width:593.565000px;}
.w3{width:627.405000px;}
.w29{width:677.085000px;}
.w14{width:678.525000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x2{left:9.900000px;}
.x1{left:108.036000px;}
.x3e{left:111.995987px;}
.x35{left:129.275987px;}
.x6{left:131.255987px;}
.x33{left:132.516000px;}
.xa{left:138.095987px;}
.x12{left:140.436000px;}
.x8{left:142.775987px;}
.xe{left:143.855987px;}
.x3{left:161.130000px;}
.xc{left:163.649987px;}
.x39{left:167.790000px;}
.xd{left:191.909987px;}
.x2b{left:204.870000px;}
.x36{left:216.930000px;}
.x7{left:226.829987px;}
.x2f{left:231.870000px;}
.x22{left:245.550000px;}
.x1e{left:246.990000px;}
.x2a{left:251.490000px;}
.x9{left:253.289987px;}
.x19{left:257.250000px;}
.x18{left:260.489987px;}
.x3a{left:266.250000px;}
.x13{left:267.870000px;}
.x11{left:276.509987px;}
.x23{left:288.255000px;}
.x17{left:303.554987px;}
.x1d{left:347.294987px;}
.x32{left:351.075000px;}
.x3b{left:364.755000px;}
.x1a{left:376.635000px;}
.x2e{left:380.955000px;}
.x28{left:389.775000px;}
.x24{left:395.175000px;}
.xb{left:399.674987px;}
.x1f{left:401.835000px;}
.x10{left:418.574987px;}
.xf{left:420.194987px;}
.x5{left:446.474987px;}
.x14{left:448.635000px;}
.x3c{left:463.215000px;}
.x37{left:466.845000px;}
.x30{left:478.365000px;}
.x1b{left:510.945000px;}
.x29{left:518.505000px;}
.x25{left:521.385000px;}
.x20{left:523.545000px;}
.x2d{left:528.045000px;}
.x3d{left:561.705000px;}
.x15{left:572.685000px;}
.x27{left:624.165000px;}
.x34{left:641.085000px;}
.x1c{left:642.345000px;}
.x26{left:649.005000px;}
.x21{left:661.830000px;}
.x16{left:680.010000px;}
.x31{left:713.850000px;}
.x38{left:717.270000px;}
.x2c{left:759.930000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls1f{letter-spacing:-0.912000pt;}
.ls8{letter-spacing:-0.837333pt;}
.ls15{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.504533pt;}
.lsc{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls1c{letter-spacing:-0.271467pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls21{letter-spacing:-0.135467pt;}
.lsb{letter-spacing:-0.030720pt;}
.ls7{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.007680pt;}
.lsd{letter-spacing:0.047360pt;}
.ls11{letter-spacing:0.071680pt;}
.ls1b{letter-spacing:0.097067pt;}
.ls12{letter-spacing:0.135467pt;}
.ls0{letter-spacing:0.160000pt;}
.ls20{letter-spacing:0.233067pt;}
.ls10{letter-spacing:0.271467pt;}
.ls5{letter-spacing:0.272533pt;}
.ls1{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.798720pt;}
.ls19{letter-spacing:1.280000pt;}
.ls1e{letter-spacing:1.920000pt;}
.ls4{letter-spacing:2.720000pt;}
.ls1d{letter-spacing:3.200000pt;}
.ls3{letter-spacing:4.000000pt;}
.ls13{letter-spacing:14.991360pt;}
.ls18{letter-spacing:18.191360pt;}
.ls16{letter-spacing:32.271360pt;}
.lse{letter-spacing:53.391360pt;}
.ls6{letter-spacing:90.400000pt;}
.ls17{letter-spacing:131.450027pt;}
.ls14{letter-spacing:177.258667pt;}
.wsd{word-spacing:-58.880000pt;}
.wsa{word-spacing:-14.991467pt;}
.ws11{word-spacing:-14.953067pt;}
.wsb{word-spacing:-14.855467pt;}
.wse{word-spacing:-14.817067pt;}
.ws5{word-spacing:-14.720000pt;}
.ws12{word-spacing:-14.584533pt;}
.wsf{word-spacing:-14.448533pt;}
.ws9{word-spacing:-14.215467pt;}
.ws10{word-spacing:-13.808000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.552533pt;}
.ws6{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.306880pt;}
.ws3{word-spacing:-13.280000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.400000pt;}
.wsc{word-spacing:-9.280000pt;}
.ws8{word-spacing:0.000000pt;}
._22{margin-left:-8.187093pt;}
._6{margin-left:-6.597333pt;}
._1{margin-left:-4.899840pt;}
._4{margin-left:-3.224747pt;}
._5{margin-left:-2.234453pt;}
._0{margin-left:-1.000960pt;}
._2{width:0.890667pt;}
._3{width:2.000427pt;}
._e{width:2.892800pt;}
._b{width:3.829973pt;}
._9{width:4.899413pt;}
._a{width:5.843200pt;}
._c{width:7.077333pt;}
._d{width:7.972907pt;}
._14{width:8.938453pt;}
._17{width:10.101120pt;}
._8{width:10.991787pt;}
._7{width:12.381013pt;}
._13{width:13.349120pt;}
._f{width:14.289280pt;}
._10{width:15.889280pt;}
._11{width:16.789333pt;}
._12{width:18.135040pt;}
._15{width:19.194880pt;}
._16{width:20.490240pt;}
._1d{width:21.550080pt;}
._18{width:23.198720pt;}
._1b{width:24.611840pt;}
._1a{width:25.612800pt;}
._20{width:27.379200pt;}
._1c{width:28.733440pt;}
._19{width:30.499840pt;}
._1f{width:34.385920pt;}
._1e{width:35.916800pt;}
._26{width:37.153280pt;}
._27{width:38.402347pt;}
._28{width:41.157120pt;}
._29{width:42.102613pt;}
._2a{width:58.350080pt;}
._2b{width:59.560533pt;}
._2c{width:61.272747pt;}
._2f{width:131.724800pt;}
._2d{width:133.713920pt;}
._2e{width:135.004587pt;}
._25{width:145.254400pt;}
._24{width:147.161600pt;}
._23{width:148.385707pt;}
._21{width:234.048000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.yb5{bottom:5.594667pt;}
.y75{bottom:5.600000pt;}
.y88{bottom:5.626667pt;}
.y73{bottom:5.760000pt;}
.y10f{bottom:5.920000pt;}
.yd1{bottom:6.080000pt;}
.y11a{bottom:6.240000pt;}
.yb9{bottom:7.680000pt;}
.y2{bottom:8.160000pt;}
.y149{bottom:9.920000pt;}
.ye6{bottom:11.194667pt;}
.ye8{bottom:11.200000pt;}
.ye1{bottom:11.360000pt;}
.yed{bottom:11.386667pt;}
.yeb{bottom:11.680000pt;}
.ybf{bottom:13.440000pt;}
.ybd{bottom:13.600000pt;}
.y14c{bottom:14.400000pt;}
.yde{bottom:16.640000pt;}
.y9d{bottom:17.280000pt;}
.ya4{bottom:17.440000pt;}
.ya0{bottom:17.466667pt;}
.ya2{bottom:18.240000pt;}
.y116{bottom:24.954667pt;}
.y84{bottom:24.960000pt;}
.y13f{bottom:24.986667pt;}
.y72{bottom:25.120000pt;}
.ye5{bottom:26.400000pt;}
.ybb{bottom:27.040000pt;}
.yb8{bottom:27.066667pt;}
.yea{bottom:31.040000pt;}
.y115{bottom:44.474667pt;}
.y12e{bottom:44.480000pt;}
.y118{bottom:44.506667pt;}
.ye3{bottom:51.994667pt;}
.y4{bottom:60.960000pt;}
.yd5{bottom:64.480000pt;}
.y13c{bottom:64.634667pt;}
.y113{bottom:83.834667pt;}
.y40{bottom:100.192000pt;}
.ye7{bottom:100.672000pt;}
.y70{bottom:101.152000pt;}
.y13b{bottom:103.872000pt;}
.yb6{bottom:104.032000pt;}
.y86{bottom:104.192000pt;}
.y16a{bottom:108.352000pt;}
.y3f{bottom:116.992000pt;}
.y18a{bottom:118.432000pt;}
.y6f{bottom:120.512000pt;}
.y112{bottom:121.792000pt;}
.y85{bottom:124.192000pt;}
.ye2{bottom:126.432000pt;}
.y169{bottom:127.712000pt;}
.y3e{bottom:131.712000pt;}
.yb4{bottom:132.192000pt;}
.y189{bottom:137.786667pt;}
.y6e{bottom:139.866667pt;}
.y12b{bottom:142.906667pt;}
.y13d{bottom:143.386667pt;}
.y3d{bottom:144.026667pt;}
.y168{bottom:147.066667pt;}
.y83{bottom:147.706667pt;}
.ye4{bottom:152.026667pt;}
.y3c{bottom:156.986667pt;}
.yb3{bottom:157.146667pt;}
.y6d{bottom:159.226667pt;}
.y167{bottom:166.426667pt;}
.y3b{bottom:172.186667pt;}
.yb2{bottom:176.506667pt;}
.y6c{bottom:178.746667pt;}
.y114{bottom:180.666667pt;}
.y13a{bottom:182.906667pt;}
.y166{bottom:185.946667pt;}
.y3a{bottom:187.546667pt;}
.y82{bottom:192.666667pt;}
.ye0{bottom:192.826667pt;}
.yb1{bottom:196.026667pt;}
.y6b{bottom:198.106667pt;}
.y139{bottom:202.266667pt;}
.y39{bottom:202.906667pt;}
.y165{bottom:205.306667pt;}
.y81{bottom:212.186667pt;}
.yb0{bottom:215.386667pt;}
.y6a{bottom:217.466667pt;}
.y38{bottom:218.266667pt;}
.ydf{bottom:218.586667pt;}
.y110{bottom:220.026667pt;}
.y164{bottom:224.666667pt;}
.y138{bottom:227.226667pt;}
.y80{bottom:231.546667pt;}
.y37{bottom:233.626667pt;}
.yaf{bottom:234.746667pt;}
.y69{bottom:236.826667pt;}
.y111{bottom:240.826667pt;}
.y163{bottom:244.186667pt;}
.y137{bottom:246.746667pt;}
.y36{bottom:248.826667pt;}
.y7f{bottom:250.906667pt;}
.yae{bottom:254.106667pt;}
.y68{bottom:256.186667pt;}
.ydd{bottom:259.866667pt;}
.y35{bottom:264.186667pt;}
.y162{bottom:264.506667pt;}
.y136{bottom:266.106667pt;}
.y7e{bottom:270.266667pt;}
.yad{bottom:273.466667pt;}
.y67{bottom:275.706667pt;}
.y34{bottom:279.546667pt;}
.y161{bottom:283.866667pt;}
.y135{bottom:285.466667pt;}
.y7d{bottom:289.786667pt;}
.yac{bottom:292.986667pt;}
.y33{bottom:294.906667pt;}
.y66{bottom:295.066667pt;}
.y160{bottom:303.266667pt;}
.y134{bottom:304.866667pt;}
.y10e{bottom:305.186667pt;}
.ydc{bottom:306.946667pt;}
.y7c{bottom:309.186667pt;}
.y32{bottom:310.306667pt;}
.yab{bottom:312.386667pt;}
.y65{bottom:314.466667pt;}
.y15f{bottom:322.786667pt;}
.y133{bottom:324.226667pt;}
.y10d{bottom:324.546667pt;}
.y31{bottom:325.666667pt;}
.ydb{bottom:326.306667pt;}
.y7b{bottom:328.546667pt;}
.yaa{bottom:331.746667pt;}
.y64{bottom:333.826667pt;}
.y30{bottom:340.866667pt;}
.y15e{bottom:342.146667pt;}
.y7a{bottom:342.946667pt;}
.y132{bottom:343.746667pt;}
.y10c{bottom:344.066667pt;}
.yda{bottom:345.666667pt;}
.ya9{bottom:351.106667pt;}
.y63{bottom:353.346667pt;}
.y2f{bottom:356.226667pt;}
.y15d{bottom:362.626667pt;}
.y79{bottom:363.106667pt;}
.y10b{bottom:363.426667pt;}
.yd9{bottom:365.026667pt;}
.ya8{bottom:370.626667pt;}
.y2e{bottom:371.586667pt;}
.y62{bottom:372.706667pt;}
.y15c{bottom:381.986667pt;}
.y131{bottom:382.466667pt;}
.y10a{bottom:382.786667pt;}
.y78{bottom:383.106667pt;}
.yd8{bottom:384.546667pt;}
.y2d{bottom:386.946667pt;}
.ya7{bottom:389.986667pt;}
.y61{bottom:392.066667pt;}
.y15b{bottom:401.346667pt;}
.y130{bottom:401.826667pt;}
.y109{bottom:402.146667pt;}
.y2c{bottom:402.306667pt;}
.y77{bottom:403.106667pt;}
.yd7{bottom:403.906667pt;}
.ya6{bottom:409.346667pt;}
.y60{bottom:411.426667pt;}
.y12f{bottom:415.586667pt;}
.y2b{bottom:417.666667pt;}
.y15a{bottom:420.706667pt;}
.y108{bottom:421.666667pt;}
.y76{bottom:423.266667pt;}
.ya5{bottom:423.746667pt;}
.y188{bottom:428.706667pt;}
.y5f{bottom:430.786667pt;}
.y2a{bottom:432.866667pt;}
.y12a{bottom:436.226667pt;}
.yd4{bottom:437.666667pt;}
.y159{bottom:440.226667pt;}
.y107{bottom:441.026667pt;}
.y74{bottom:443.266667pt;}
.y187{bottom:448.066667pt;}
.y29{bottom:448.226667pt;}
.y5e{bottom:450.306667pt;}
.ya3{bottom:455.426667pt;}
.y106{bottom:460.386667pt;}
.y158{bottom:460.546667pt;}
.y71{bottom:463.266667pt;}
.y28{bottom:463.586667pt;}
.y186{bottom:467.586667pt;}
.y5d{bottom:469.666667pt;}
.yd6{bottom:477.186667pt;}
.y27{bottom:478.946667pt;}
.y105{bottom:479.746667pt;}
.y157{bottom:480.066667pt;}
.y185{bottom:486.946667pt;}
.ya1{bottom:487.266667pt;}
.y5c{bottom:489.026667pt;}
.y26{bottom:494.306667pt;}
.y12d{bottom:495.106667pt;}
.y104{bottom:499.106667pt;}
.y156{bottom:499.426667pt;}
.y184{bottom:506.306667pt;}
.y5b{bottom:508.386667pt;}
.y25{bottom:509.666667pt;}
.yd2{bottom:516.546667pt;}
.y103{bottom:518.626667pt;}
.y155{bottom:518.786667pt;}
.y9f{bottom:519.906667pt;}
.y24{bottom:524.866667pt;}
.y183{bottom:525.666667pt;}
.y5a{bottom:527.906667pt;}
.yd3{bottom:536.733333pt;}
.y102{bottom:538.013333pt;}
.y154{bottom:538.173333pt;}
.y23{bottom:540.253333pt;}
.y182{bottom:545.213333pt;}
.y59{bottom:547.293333pt;}
.y9e{bottom:551.773333pt;}
.y12c{bottom:554.013333pt;}
.y22{bottom:555.613333pt;}
.yd0{bottom:556.893333pt;}
.y101{bottom:557.373333pt;}
.y153{bottom:557.533333pt;}
.y181{bottom:564.573333pt;}
.y58{bottom:566.653333pt;}
.y21{bottom:570.973333pt;}
.y100{bottom:576.733333pt;}
.y152{bottom:577.053333pt;}
.ycf{bottom:582.813333pt;}
.y9c{bottom:583.453333pt;}
.y180{bottom:583.933333pt;}
.y57{bottom:586.013333pt;}
.y20{bottom:586.333333pt;}
.y128{bottom:593.533333pt;}
.yff{bottom:596.253333pt;}
.y151{bottom:596.413333pt;}
.y1f{bottom:601.533333pt;}
.yce{bottom:602.333333pt;}
.y17f{bottom:603.293333pt;}
.y56{bottom:605.373333pt;}
.y129{bottom:614.173333pt;}
.y9b{bottom:615.133333pt;}
.yfe{bottom:615.613333pt;}
.y150{bottom:615.773333pt;}
.y1e{bottom:616.893333pt;}
.ycd{bottom:621.693333pt;}
.y17e{bottom:622.653333pt;}
.y55{bottom:624.893333pt;}
.y1d{bottom:632.253333pt;}
.yfd{bottom:634.973333pt;}
.y14f{bottom:635.133333pt;}
.ycc{bottom:641.053333pt;}
.y17d{bottom:642.173333pt;}
.y54{bottom:644.253333pt;}
.y1c{bottom:647.613333pt;}
.y14e{bottom:648.893333pt;}
.y127{bottom:652.893333pt;}
.yfc{bottom:654.333333pt;}
.y9a{bottom:660.253333pt;}
.ycb{bottom:660.413333pt;}
.y17c{bottom:661.533333pt;}
.y1b{bottom:662.973333pt;}
.y53{bottom:663.613333pt;}
.yfb{bottom:673.693333pt;}
.y14d{bottom:677.053333pt;}
.y1a{bottom:678.333333pt;}
.y126{bottom:678.653333pt;}
.y99{bottom:679.613333pt;}
.yca{bottom:679.773333pt;}
.y17b{bottom:680.893333pt;}
.y52{bottom:682.973333pt;}
.yfa{bottom:693.213333pt;}
.y19{bottom:693.533333pt;}
.y125{bottom:698.013333pt;}
.y98{bottom:699.133333pt;}
.yc9{bottom:699.293333pt;}
.y17a{bottom:700.253333pt;}
.y51{bottom:702.333333pt;}
.y14b{bottom:705.853333pt;}
.y18{bottom:708.893333pt;}
.yf9{bottom:712.573333pt;}
.y124{bottom:717.373333pt;}
.y97{bottom:718.493333pt;}
.yc8{bottom:718.653333pt;}
.y179{bottom:719.773333pt;}
.y50{bottom:721.853333pt;}
.y17{bottom:724.253333pt;}
.yf8{bottom:731.933333pt;}
.y14a{bottom:734.653333pt;}
.y123{bottom:736.893333pt;}
.y96{bottom:737.853333pt;}
.yc7{bottom:738.013333pt;}
.y178{bottom:739.133333pt;}
.y16{bottom:739.613333pt;}
.y4f{bottom:741.213333pt;}
.yf7{bottom:751.293333pt;}
.y15{bottom:754.973333pt;}
.y95{bottom:757.213333pt;}
.yc6{bottom:757.373333pt;}
.y177{bottom:758.493333pt;}
.y4e{bottom:760.573333pt;}
.y14{bottom:770.333333pt;}
.yf6{bottom:770.813333pt;}
.y122{bottom:776.613333pt;}
.y94{bottom:776.773333pt;}
.yc5{bottom:776.933333pt;}
.y176{bottom:777.893333pt;}
.y4d{bottom:779.973333pt;}
.y13{bottom:785.573333pt;}
.yf5{bottom:790.213333pt;}
.y93{bottom:796.133333pt;}
.yc4{bottom:796.293333pt;}
.y175{bottom:797.253333pt;}
.y4c{bottom:799.493333pt;}
.y12{bottom:800.933333pt;}
.y148{bottom:803.813333pt;}
.yf4{bottom:809.573333pt;}
.y92{bottom:815.493333pt;}
.yc3{bottom:815.653333pt;}
.y121{bottom:816.453333pt;}
.y11{bottom:816.613333pt;}
.y174{bottom:816.773333pt;}
.y4b{bottom:818.853333pt;}
.yf3{bottom:823.333333pt;}
.y10{bottom:833.573333pt;}
.y91{bottom:834.853333pt;}
.yc2{bottom:835.013333pt;}
.y120{bottom:835.813333pt;}
.y173{bottom:836.133333pt;}
.y147{bottom:837.573333pt;}
.y4a{bottom:838.213333pt;}
.yf2{bottom:848.453333pt;}
.yf{bottom:850.373333pt;}
.y90{bottom:854.213333pt;}
.yc1{bottom:854.373333pt;}
.y11f{bottom:855.333333pt;}
.y172{bottom:855.653333pt;}
.y146{bottom:856.933333pt;}
.y49{bottom:857.573333pt;}
.ye{bottom:867.333333pt;}
.yf1{bottom:873.413333pt;}
.y8f{bottom:873.733333pt;}
.yc0{bottom:873.893333pt;}
.y11e{bottom:875.813333pt;}
.y171{bottom:875.973333pt;}
.y145{bottom:876.293333pt;}
.y48{bottom:876.933333pt;}
.yd{bottom:884.133333pt;}
.ybe{bottom:888.293333pt;}
.y8e{bottom:893.093333pt;}
.y11d{bottom:895.173333pt;}
.y170{bottom:895.333333pt;}
.y144{bottom:895.813333pt;}
.y47{bottom:896.453333pt;}
.yf0{bottom:898.533333pt;}
.yc{bottom:901.413333pt;}
.y8d{bottom:912.453333pt;}
.y11c{bottom:914.533333pt;}
.y16f{bottom:914.693333pt;}
.y143{bottom:915.173333pt;}
.y46{bottom:915.813333pt;}
.ybc{bottom:916.133333pt;}
.yb{bottom:921.413333pt;}
.yef{bottom:924.293333pt;}
.y8c{bottom:931.813333pt;}
.y11b{bottom:933.893333pt;}
.y16e{bottom:934.213333pt;}
.y142{bottom:934.533333pt;}
.y45{bottom:935.173333pt;}
.ya{bottom:939.813333pt;}
.yba{bottom:944.133333pt;}
.y8b{bottom:946.213333pt;}
.y119{bottom:947.653333pt;}
.y141{bottom:948.293333pt;}
.yee{bottom:950.053333pt;}
.y9{bottom:952.773333pt;}
.y16d{bottom:953.573333pt;}
.y44{bottom:954.533333pt;}
.y8a{bottom:966.373333pt;}
.y140{bottom:967.653333pt;}
.y8{bottom:968.133333pt;}
.y117{bottom:968.293333pt;}
.y16c{bottom:972.933333pt;}
.y43{bottom:974.053333pt;}
.ye9{bottom:975.653333pt;}
.y7{bottom:983.493333pt;}
.yb7{bottom:985.733333pt;}
.y89{bottom:986.373333pt;}
.y13e{bottom:987.813333pt;}
.y16b{bottom:992.453333pt;}
.y42{bottom:993.413333pt;}
.y6{bottom:998.693333pt;}
.yec{bottom:1001.413333pt;}
.y87{bottom:1006.533333pt;}
.y41{bottom:1012.800000pt;}
.y5{bottom:1014.080000pt;}
.y3{bottom:1036.800000pt;}
.y1{bottom:1050.560000pt;}
.h11{height:19.360000pt;}
.h15{height:19.392000pt;}
.h12{height:19.520000pt;}
.h2e{height:20.000000pt;}
.h2c{height:20.032000pt;}
.h22{height:20.160000pt;}
.h1f{height:20.320000pt;}
.h14{height:22.720000pt;}
.h2{height:24.800000pt;}
.h29{height:24.960000pt;}
.h26{height:25.120000pt;}
.h2b{height:25.152000pt;}
.h1e{height:27.200000pt;}
.h1d{height:27.360000pt;}
.h1a{height:28.160000pt;}
.he{height:29.940625pt;}
.h8{height:30.254687pt;}
.h16{height:31.040000pt;}
.h19{height:31.200000pt;}
.h17{height:31.232000pt;}
.h18{height:32.000000pt;}
.h5{height:35.342500pt;}
.hc{height:37.090625pt;}
.h6{height:37.479688pt;}
.h13{height:38.720000pt;}
.h35{height:38.752000pt;}
.h10{height:38.880000pt;}
.h28{height:40.160000pt;}
.h21{height:40.352000pt;}
.h1c{height:40.800000pt;}
.h1b{height:40.832000pt;}
.h7{height:41.112500pt;}
.h25{height:41.280000pt;}
.h24{height:41.472000pt;}
.hb{height:41.543750pt;}
.hf{height:42.866250pt;}
.hd{height:43.782500pt;}
.h3{height:44.907500pt;}
.h20{height:47.038750pt;}
.ha{height:48.530000pt;}
.h9{height:48.768750pt;}
.h2a{height:50.912000pt;}
.h30{height:58.240000pt;}
.h31{height:58.272000pt;}
.h4{height:58.563750pt;}
.h32{height:59.360000pt;}
.h2d{height:59.520000pt;}
.h27{height:65.760000pt;}
.h36{height:69.152000pt;}
.h23{height:78.240000pt;}
.h34{height:78.400000pt;}
.h2f{height:97.600000pt;}
.h33{height:156.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3a{width:21.280000pt;}
.w30{width:21.760000pt;}
.w21{width:22.240000pt;}
.w16{width:37.632000pt;}
.w2{width:47.200000pt;}
.w36{width:59.360000pt;}
.w38{width:60.192000pt;}
.w39{width:60.320000pt;}
.w2e{width:63.360000pt;}
.w2d{width:63.552000pt;}
.w33{width:63.680000pt;}
.w1c{width:63.712000pt;}
.w32{width:63.872000pt;}
.w3b{width:75.520000pt;}
.wa{width:84.480000pt;}
.w3f{width:87.200000pt;}
.w3e{width:87.232000pt;}
.w3d{width:87.520000pt;}
.w31{width:88.320000pt;}
.w9{width:92.800000pt;}
.w20{width:93.920000pt;}
.wf{width:94.080000pt;}
.w17{width:94.720000pt;}
.w8{width:94.752000pt;}
.w24{width:95.072000pt;}
.w34{width:96.800000pt;}
.wb{width:105.472000pt;}
.w11{width:107.552000pt;}
.w7{width:109.632000pt;}
.w2a{width:110.080000pt;}
.we{width:110.592000pt;}
.w18{width:111.872000pt;}
.w5{width:112.640000pt;}
.w2f{width:112.832000pt;}
.w19{width:113.120000pt;}
.w1f{width:114.112000pt;}
.wd{width:116.160000pt;}
.wc{width:118.752000pt;}
.w1a{width:121.632000pt;}
.w13{width:122.240000pt;}
.w12{width:122.272000pt;}
.w15{width:122.880000pt;}
.w22{width:122.912000pt;}
.w28{width:130.752000pt;}
.w10{width:136.986667pt;}
.w2c{width:144.320000pt;}
.w1d{width:145.146667pt;}
.w27{width:156.506667pt;}
.w6{width:160.026667pt;}
.w37{width:161.760000pt;}
.w35{width:161.946667pt;}
.w40{width:177.466667pt;}
.w26{width:206.106667pt;}
.w1e{width:208.026667pt;}
.w2b{width:218.786667pt;}
.w25{width:287.266667pt;}
.w1b{width:353.506667pt;}
.w23{width:493.373333pt;}
.w3c{width:527.613333pt;}
.w3{width:557.693333pt;}
.w29{width:601.853333pt;}
.w14{width:603.133333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x2{left:8.800000pt;}
.x1{left:96.032000pt;}
.x3e{left:99.551988pt;}
.x35{left:114.911988pt;}
.x6{left:116.671988pt;}
.x33{left:117.792000pt;}
.xa{left:122.751988pt;}
.x12{left:124.832000pt;}
.x8{left:126.911988pt;}
.xe{left:127.871988pt;}
.x3{left:143.226667pt;}
.xc{left:145.466655pt;}
.x39{left:149.146667pt;}
.xd{left:170.586655pt;}
.x2b{left:182.106667pt;}
.x36{left:192.826667pt;}
.x7{left:201.626655pt;}
.x2f{left:206.106667pt;}
.x22{left:218.266667pt;}
.x1e{left:219.546667pt;}
.x2a{left:223.546667pt;}
.x9{left:225.146655pt;}
.x19{left:228.666667pt;}
.x18{left:231.546655pt;}
.x3a{left:236.666667pt;}
.x13{left:238.106667pt;}
.x11{left:245.786655pt;}
.x23{left:256.226667pt;}
.x17{left:269.826655pt;}
.x1d{left:308.706655pt;}
.x32{left:312.066667pt;}
.x3b{left:324.226667pt;}
.x1a{left:334.786667pt;}
.x2e{left:338.626667pt;}
.x28{left:346.466667pt;}
.x24{left:351.266667pt;}
.xb{left:355.266655pt;}
.x1f{left:357.186667pt;}
.x10{left:372.066655pt;}
.xf{left:373.506655pt;}
.x5{left:396.866655pt;}
.x14{left:398.786667pt;}
.x3c{left:411.746667pt;}
.x37{left:414.973333pt;}
.x30{left:425.213333pt;}
.x1b{left:454.173333pt;}
.x29{left:460.893333pt;}
.x25{left:463.453333pt;}
.x20{left:465.373333pt;}
.x2d{left:469.373333pt;}
.x3d{left:499.293333pt;}
.x15{left:509.053333pt;}
.x27{left:554.813333pt;}
.x34{left:569.853333pt;}
.x1c{left:570.973333pt;}
.x26{left:576.893333pt;}
.x21{left:588.293333pt;}
.x16{left:604.453333pt;}
.x31{left:634.533333pt;}
.x38{left:637.573333pt;}
.x2c{left:675.493333pt;}
}




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