
    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_6516050dddf6685dc00b865c.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_8674c6b6dde3b8252acca537.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_05699e11b6b4da4ccf95e33e.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_44cd2fb520496cf10f433eb2.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_17b2b25c735e125e65b93ae9.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_a63dfae6b24a86d9e263a0a6.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;}
.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;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsf{letter-spacing:-0.444600px;}
.lse{letter-spacing:-0.186600px;}
.ls10{letter-spacing:-0.160800px;}
.lsa{letter-spacing:-0.135000px;}
.ls11{letter-spacing:-0.121200px;}
.ls9{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.084600px;}
.ls1b{letter-spacing:-0.060600px;}
.ls18{letter-spacing:-0.014760px;}
.lsb{letter-spacing:-0.008400px;}
.ls7{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.045360px;}
.ls13{letter-spacing:0.048960px;}
.ls20{letter-spacing:0.053280px;}
.ls1f{letter-spacing:0.060600px;}
.ls16{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.065520px;}
.ls4{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls19{letter-spacing:0.116400px;}
.ls6{letter-spacing:0.120000px;}
.ls1d{letter-spacing:0.143400px;}
.ls8{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.173400px;}
.ls5{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.181200px;}
.ls14{letter-spacing:0.199200px;}
.ls1c{letter-spacing:0.206640px;}
.ls0{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.813600px;}
.ls21{letter-spacing:47.726640px;}
.ls17{letter-spacing:63.566640px;}
.ls1e{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;}
}
.ws8{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.wsc{word-spacing:-13.425600px;}
.wsd{word-spacing:-13.407600px;}
.ws4{word-spacing:-13.399800px;}
.ws11{word-spacing:-13.369800px;}
.wsf{word-spacing:-13.342800px;}
.ws12{word-spacing:-13.287000px;}
.ws13{word-spacing:-13.279680px;}
.wsb{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wse{word-spacing:-13.211640px;}
.ws10{word-spacing:-13.165800px;}
.ws6{word-spacing:-13.065600px;}
.ws5{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws9{word-spacing:0.000000px;}
.ws7{word-spacing:4.304880px;}
._9{margin-left:-3.547200px;}
._a{margin-left:-2.276640px;}
._0{margin-left:-1.212000px;}
._1{width:1.679880px;}
._5{width:3.249720px;}
._b{width:4.353722px;}
._8{width:6.192600px;}
._6{width:7.996200px;}
._3{width:9.078000px;}
._7{width:10.641000px;}
._4{width:12.072000px;}
._d{width:14.368680px;}
._2{width:15.811800px;}
._c{width:17.494800px;}
._e{width:18.738721px;}
._f{width:20.117517px;}
._12{width:21.245043px;}
._10{width:23.266440px;}
._11{width:24.408720px;}
._1b{width:26.452800px;}
._1d{width:29.759400px;}
._16{width:30.841560px;}
._15{width:32.414280px;}
._1a{width:34.629120px;}
._26{width:36.913680px;}
._19{width:40.460760px;}
._1c{width:47.915640px;}
._2b{width:49.298400px;}
._2d{width:51.162120px;}
._1f{width:58.136040px;}
._32{width:59.965080px;}
._14{width:61.562880px;}
._25{width:81.402480px;}
._22{width:84.228120px;}
._28{width:109.598760px;}
._24{width:114.949440px;}
._31{width:120.179880px;}
._27{width:127.875240px;}
._18{width:137.975400px;}
._23{width:144.829080px;}
._2e{width:147.294000px;}
._2c{width:159.798960px;}
._1e{width:184.267800px;}
._30{width:202.162320px;}
._29{width:205.309800px;}
._21{width:241.682400px;}
._20{width:252.564120px;}
._2a{width:257.013000px;}
._2f{width:294.744960px;}
._17{width:403.946280px;}
._13{width:850.893600px;}
.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;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yc7{bottom:7.830000px;}
.yc2{bottom:7.920000px;}
.ycb{bottom:25.380000px;}
.yc6{bottom:25.410000px;}
.yc1{bottom:25.470000px;}
.yc9{bottom:43.020000px;}
.yc5{bottom:43.050000px;}
.y158{bottom:43.110000px;}
.ycd{bottom:60.570000px;}
.yc4{bottom:60.600000px;}
.y138{bottom:60.660000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y5c{bottom:112.980000px;}
.y10e{bottom:120.720000px;}
.y11f{bottom:122.070000px;}
.yb0{bottom:123.060000px;}
.yeb{bottom:124.770000px;}
.y19f{bottom:127.740000px;}
.y5b{bottom:130.530000px;}
.y179{bottom:134.580000px;}
.y10d{bottom:138.270000px;}
.y85{bottom:139.170000px;}
.y11e{bottom:139.710000px;}
.yaf{bottom:140.700000px;}
.yea{bottom:142.410000px;}
.y19e{bottom:145.290000px;}
.y5a{bottom:148.170000px;}
.y178{bottom:152.130000px;}
.y155{bottom:152.940000px;}
.y10c{bottom:155.910000px;}
.ye9{bottom:159.960000px;}
.y19d{bottom:162.840000px;}
.y27{bottom:164.010000px;}
.y59{bottom:165.720000px;}
.yae{bottom:167.250000px;}
.y177{bottom:169.680000px;}
.y154{bottom:170.490000px;}
.y137{bottom:171.930000px;}
.y10b{bottom:173.460000px;}
.ybf{bottom:174.270000px;}
.y84{bottom:174.720000px;}
.y11d{bottom:175.260000px;}
.y26{bottom:181.560000px;}
.y58{bottom:183.270000px;}
.ye8{bottom:186.600000px;}
.y176{bottom:187.320000px;}
.y153{bottom:188.130000px;}
.y19c{bottom:189.480000px;}
.y10a{bottom:191.100000px;}
.y83{bottom:192.270000px;}
.y25{bottom:199.200000px;}
.y57{bottom:200.910000px;}
.yad{bottom:202.890000px;}
.y175{bottom:204.870000px;}
.y152{bottom:205.680000px;}
.y19b{bottom:207.030000px;}
.y11c{bottom:207.480000px;}
.y82{bottom:209.910000px;}
.y24{bottom:216.750000px;}
.y109{bottom:217.650000px;}
.yac{bottom:220.440000px;}
.ye7{bottom:222.150000px;}
.y174{bottom:222.510000px;}
.y151{bottom:223.230000px;}
.y19a{bottom:224.580000px;}
.y56{bottom:227.460000px;}
.y23{bottom:234.300000px;}
.yab{bottom:237.990000px;}
.ye6{bottom:239.700000px;}
.y81{bottom:245.100000px;}
.y173{bottom:249.060000px;}
.y150{bottom:249.870000px;}
.y199{bottom:251.220000px;}
.y136{bottom:252.030000px;}
.y108{bottom:253.200000px;}
.yaa{bottom:255.630000px;}
.ye5{bottom:257.340000px;}
.y80{bottom:262.650000px;}
.y55{bottom:263.100000px;}
.y198{bottom:268.770000px;}
.y22{bottom:269.940000px;}
.y107{bottom:270.840000px;}
.ya9{bottom:273.180000px;}
.ye4{bottom:274.890000px;}
.y7f{bottom:280.200000px;}
.y54{bottom:280.650000px;}
.y172{bottom:284.610000px;}
.y14f{bottom:285.420000px;}
.y197{bottom:286.410000px;}
.y21{bottom:287.490000px;}
.y106{bottom:288.390000px;}
.ya8{bottom:290.820000px;}
.ye3{bottom:292.440000px;}
.y7e{bottom:297.840000px;}
.y53{bottom:298.200000px;}
.y171{bottom:302.250000px;}
.y14e{bottom:303.060000px;}
.y196{bottom:303.960000px;}
.y20{bottom:305.130000px;}
.y105{bottom:305.940000px;}
.ya7{bottom:308.370000px;}
.ye2{bottom:310.080000px;}
.y135{bottom:314.580000px;}
.y7d{bottom:315.390000px;}
.y52{bottom:315.840000px;}
.y170{bottom:319.800000px;}
.y14d{bottom:320.610000px;}
.y1f{bottom:322.680000px;}
.y104{bottom:323.580000px;}
.ya6{bottom:325.920000px;}
.ye1{bottom:327.630000px;}
.y195{bottom:330.510000px;}
.y7c{bottom:332.940000px;}
.y51{bottom:333.390000px;}
.y16f{bottom:337.440000px;}
.y14c{bottom:338.160000px;}
.y1e{bottom:340.230000px;}
.y103{bottom:341.130000px;}
.y194{bottom:348.150000px;}
.ybe{bottom:350.580000px;}
.y50{bottom:350.940000px;}
.ya5{bottom:352.560000px;}
.ye0{bottom:354.270000px;}
.y16e{bottom:354.990000px;}
.y14b{bottom:355.800000px;}
.y102{bottom:358.770000px;}
.y7b{bottom:359.580000px;}
.y1d{bottom:367.140000px;}
.y4f{bottom:368.580000px;}
.y16d{bottom:372.540000px;}
.y193{bottom:374.700000px;}
.ybd{bottom:377.130000px;}
.y14a{bottom:382.350000px;}
.y101{bottom:385.320000px;}
.y4e{bottom:386.130000px;}
.ya4{bottom:388.110000px;}
.ydf{bottom:389.820000px;}
.y16c{bottom:390.180000px;}
.y192{bottom:392.340000px;}
.y134{bottom:394.590000px;}
.y7a{bottom:395.130000px;}
.y4d{bottom:403.770000px;}
.ya3{bottom:405.660000px;}
.yde{bottom:407.370000px;}
.y16b{bottom:407.730000px;}
.y79{bottom:412.770000px;}
.y1c{bottom:415.470000px;}
.y149{bottom:417.990000px;}
.y191{bottom:418.890000px;}
.y100{bottom:420.870000px;}
.ya2{bottom:423.300000px;}
.ydd{bottom:425.010000px;}
.y4c{bottom:430.320000px;}
.y1b{bottom:433.380000px;}
.y16a{bottom:434.370000px;}
.y148{bottom:435.540000px;}
.y190{bottom:436.440000px;}
.yff{bottom:438.510000px;}
.ya1{bottom:440.850000px;}
.ydc{bottom:442.560000px;}
.y78{bottom:447.870000px;}
.y147{bottom:453.090000px;}
.y18f{bottom:454.080000px;}
.yfe{bottom:456.060000px;}
.ya0{bottom:458.490000px;}
.ydb{bottom:460.200000px;}
.y133{bottom:460.920000px;}
.y77{bottom:465.510000px;}
.y4b{bottom:465.870000px;}
.y169{bottom:469.950000px;}
.y1a{bottom:470.400000px;}
.y146{bottom:470.760000px;}
.yfd{bottom:473.730000px;}
.y9f{bottom:476.070000px;}
.yda{bottom:477.780000px;}
.y18e{bottom:481.020000px;}
.y76{bottom:483.090000px;}
.y4a{bottom:483.540000px;}
.y168{bottom:487.500000px;}
.y19{bottom:487.950000px;}
.y145{bottom:488.310000px;}
.yfc{bottom:491.280000px;}
.y9e{bottom:493.620000px;}
.yd9{bottom:495.330000px;}
.y132{bottom:496.500000px;}
.y75{bottom:500.730000px;}
.y49{bottom:501.090000px;}
.y167{bottom:505.140000px;}
.y18{bottom:505.590000px;}
.y9d{bottom:511.260000px;}
.y131{bottom:514.140000px;}
.y144{bottom:514.950000px;}
.y74{bottom:518.280000px;}
.y48{bottom:518.730000px;}
.yd8{bottom:521.970000px;}
.y166{bottom:522.690000px;}
.y17{bottom:523.140000px;}
.yfb{bottom:526.830000px;}
.y18d{bottom:529.260000px;}
.y130{bottom:531.690000px;}
.y73{bottom:535.830000px;}
.y47{bottom:536.280000px;}
.y9c{bottom:537.810000px;}
.y165{bottom:540.330000px;}
.y16{bottom:540.780000px;}
.yfa{bottom:544.470000px;}
.y12f{bottom:549.330000px;}
.y143{bottom:550.500000px;}
.y46{bottom:553.830000px;}
.y18c{bottom:556.170000px;}
.yd7{bottom:557.520000px;}
.y164{bottom:557.880000px;}
.y15{bottom:558.330000px;}
.yf9{bottom:562.020000px;}
.y72{bottom:562.470000px;}
.y12e{bottom:566.880000px;}
.y45{bottom:571.470000px;}
.y9b{bottom:573.450000px;}
.yd6{bottom:575.160000px;}
.y163{bottom:575.430000px;}
.y14{bottom:575.880000px;}
.yf8{bottom:579.660000px;}
.y11b{bottom:582.090000px;}
.y142{bottom:582.720000px;}
.y12d{bottom:584.430000px;}
.y44{bottom:589.020000px;}
.y9a{bottom:591.000000px;}
.yd5{bottom:592.710000px;}
.y162{bottom:593.070000px;}
.y13{bottom:593.520000px;}
.yf7{bottom:597.210000px;}
.y71{bottom:598.020000px;}
.y12c{bottom:602.070000px;}
.y43{bottom:606.660000px;}
.y99{bottom:608.550000px;}
.yd4{bottom:610.260000px;}
.y12{bottom:611.070000px;}
.y70{bottom:615.660000px;}
.y11a{bottom:618.000000px;}
.y12b{bottom:619.620000px;}
.y42{bottom:624.210000px;}
.yd3{bottom:627.900000px;}
.y11{bottom:628.710000px;}
.yf6{bottom:632.760000px;}
.y6f{bottom:633.210000px;}
.y12a{bottom:637.260000px;}
.y18b{bottom:641.760000px;}
.y98{bottom:644.100000px;}
.yd2{bottom:645.450000px;}
.y10{bottom:646.260000px;}
.yf5{bottom:650.400000px;}
.y41{bottom:650.760000px;}
.y161{bottom:655.260000px;}
.y18a{bottom:659.400000px;}
.y97{bottom:662.550000px;}
.yd1{bottom:663.090000px;}
.y119{bottom:663.720000px;}
.yf{bottom:663.810000px;}
.yf4{bottom:667.950000px;}
.y6e{bottom:668.400000px;}
.y160{bottom:672.810000px;}
.y189{bottom:676.950000px;}
.yd0{bottom:680.640000px;}
.y96{bottom:681.000000px;}
.ye{bottom:681.450000px;}
.yf3{bottom:685.590000px;}
.y6d{bottom:685.950000px;}
.y40{bottom:686.670000px;}
.y15f{bottom:690.360000px;}
.y188{bottom:694.590000px;}
.yd{bottom:699.000000px;}
.y129{bottom:699.360000px;}
.yf2{bottom:703.140000px;}
.y6c{bottom:703.590000px;}
.ycf{bottom:707.190000px;}
.y15e{bottom:708.000000px;}
.y118{bottom:708.630000px;}
.y187{bottom:712.140000px;}
.yc{bottom:716.640000px;}
.y128{bottom:717.000000px;}
.y95{bottom:717.450000px;}
.y6b{bottom:721.140000px;}
.y15d{bottom:725.550000px;}
.y186{bottom:729.690000px;}
.y127{bottom:734.550000px;}
.y3f{bottom:735.000000px;}
.y117{bottom:735.990000px;}
.y6a{bottom:738.690000px;}
.yce{bottom:743.100000px;}
.yb{bottom:743.550000px;}
.y185{bottom:747.330000px;}
.ybc{bottom:747.690000px;}
.y126{bottom:752.190000px;}
.y3e{bottom:752.550000px;}
.yf1{bottom:756.330000px;}
.y15c{bottom:760.740000px;}
.y116{bottom:763.260000px;}
.y184{bottom:764.880000px;}
.y69{bottom:765.330000px;}
.y125{bottom:769.740000px;}
.y3d{bottom:770.190000px;}
.yf0{bottom:773.880000px;}
.y15b{bottom:778.290000px;}
.y94{bottom:779.190000px;}
.y183{bottom:782.520000px;}
.ybb{bottom:783.330000px;}
.y124{bottom:787.290000px;}
.y3c{bottom:787.740000px;}
.ycc{bottom:788.820000px;}
.yef{bottom:791.520000px;}
.ya{bottom:791.790000px;}
.y182{bottom:800.070000px;}
.yba{bottom:800.880000px;}
.y68{bottom:801.240000px;}
.y123{bottom:804.930000px;}
.y3b{bottom:805.290000px;}
.y115{bottom:808.170000px;}
.yee{bottom:809.070000px;}
.y93{bottom:815.100000px;}
.y181{bottom:817.620000px;}
.yb9{bottom:818.520000px;}
.y122{bottom:822.480000px;}
.y3a{bottom:822.930000px;}
.y9{bottom:827.610000px;}
.y180{bottom:835.260000px;}
.yed{bottom:835.620000px;}
.yb8{bottom:836.070000px;}
.y39{bottom:840.480000px;}
.y15a{bottom:840.840000px;}
.y121{bottom:849.030000px;}
.y67{bottom:849.480000px;}
.y17f{bottom:852.810000px;}
.y114{bottom:853.170000px;}
.yb7{bottom:853.620000px;}
.y92{bottom:863.340000px;}
.y8{bottom:863.610000px;}
.y66{bottom:867.030000px;}
.yca{bottom:868.920000px;}
.yb6{bottom:871.260000px;}
.yec{bottom:871.530000px;}
.y38{bottom:876.030000px;}
.y17e{bottom:879.720000px;}
.y91{bottom:880.890000px;}
.y65{bottom:884.670000px;}
.y159{bottom:886.470000px;}
.yb5{bottom:888.810000px;}
.y37{bottom:893.670000px;}
.y90{bottom:898.530000px;}
.y64{bottom:902.220000px;}
.y7{bottom:903.390000px;}
.yb4{bottom:906.450000px;}
.y36{bottom:911.220000px;}
.y113{bottom:919.410000px;}
.y63{bottom:919.860000px;}
.y6{bottom:921.390000px;}
.yb3{bottom:924.000000px;}
.y17d{bottom:927.960000px;}
.y1a3{bottom:928.410000px;}
.y35{bottom:928.860000px;}
.yc8{bottom:931.380000px;}
.y8f{bottom:934.080000px;}
.y62{bottom:937.410000px;}
.y5{bottom:939.390000px;}
.y17c{bottom:945.600000px;}
.y1a2{bottom:945.960000px;}
.y34{bottom:946.410000px;}
.y157{bottom:948.930000px;}
.yb2{bottom:950.550000px;}
.y8e{bottom:951.630000px;}
.y61{bottom:954.960000px;}
.y141{bottom:959.550000px;}
.y17b{bottom:963.150000px;}
.y33{bottom:963.960000px;}
.y8d{bottom:970.080000px;}
.y4{bottom:971.700000px;}
.y60{bottom:972.600000px;}
.y140{bottom:977.190000px;}
.y32{bottom:981.600000px;}
.yb1{bottom:986.460000px;}
.y8c{bottom:987.630000px;}
.y17a{bottom:989.790000px;}
.y5f{bottom:990.150000px;}
.yc3{bottom:993.930000px;}
.y13f{bottom:994.740000px;}
.y8b{bottom:1006.080000px;}
.y5e{bottom:1007.790000px;}
.y3{bottom:1009.980000px;}
.y156{bottom:1011.510000px;}
.y13e{bottom:1012.320000px;}
.y120{bottom:1016.820000px;}
.y31{bottom:1017.180000px;}
.y8a{bottom:1023.660000px;}
.y112{bottom:1025.370000px;}
.y13d{bottom:1029.960000px;}
.y5d{bottom:1034.370000px;}
.y30{bottom:1034.820000px;}
.y89{bottom:1042.110000px;}
.y111{bottom:1042.920000px;}
.y13c{bottom:1047.510000px;}
.y2f{bottom:1052.370000px;}
.y88{bottom:1059.660000px;}
.y110{bottom:1060.560000px;}
.y1a1{bottom:1060.920000px;}
.y13b{bottom:1065.150000px;}
.y2e{bottom:1069.920000px;}
.yc0{bottom:1073.970000px;}
.y1a0{bottom:1078.560000px;}
.y10f{bottom:1087.110000px;}
.y2d{bottom:1087.560000px;}
.y13a{bottom:1091.700000px;}
.y87{bottom:1096.110000px;}
.y2c{bottom:1105.110000px;}
.y86{bottom:1113.750000px;}
.y2b{bottom:1122.750000px;}
.y139{bottom:1127.610000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h11{height:26.550000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.h10{height:44.100000px;}
.hc{height:44.190000px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.h8{height:60.960938px;}
.he{height:61.740000px;}
.hb{height:61.793886px;}
.h13{height:61.860000px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.hf{height:79.290000px;}
.hd{height:79.320000px;}
.h12{height:79.380000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w12{width:86.610000px;}
.wb{width:102.990000px;}
.w3{width:106.500000px;}
.w10{width:116.280000px;}
.wf{width:140.970000px;}
.w8{width:145.800000px;}
.w9{width:149.700000px;}
.w11{width:151.020000px;}
.w4{width:184.680000px;}
.w7{width:210.990000px;}
.w6{width:212.490000px;}
.wc{width:214.740000px;}
.we{width:215.910000px;}
.wd{width:219.900000px;}
.wa{width:247.050000px;}
.w5{width:249.870000px;}
.w13{width:257.940000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.740000px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.x17{left:111.239987px;}
.x5{left:122.039987px;}
.xe{left:152.819987px;}
.xf{left:172.470000px;}
.x7{left:175.980000px;}
.x2{left:209.819987px;}
.x13{left:252.029987px;}
.xa{left:280.470000px;}
.x14{left:327.450000px;}
.x8{left:361.380000px;}
.x10{left:387.930000px;}
.xb{left:426.990000px;}
.x15{left:479.190000px;}
.x16{left:566.520000px;}
.xc{left:577.410000px;}
.x11{left:608.550000px;}
.x9{left:611.970000px;}
.xd{left:747.059987px;}
.x12{left:750.389987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsf{letter-spacing:-0.395200pt;}
.lse{letter-spacing:-0.165867pt;}
.ls10{letter-spacing:-0.142933pt;}
.lsa{letter-spacing:-0.120000pt;}
.ls11{letter-spacing:-0.107733pt;}
.ls9{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.075200pt;}
.ls1b{letter-spacing:-0.053867pt;}
.ls18{letter-spacing:-0.013120pt;}
.lsb{letter-spacing:-0.007467pt;}
.ls7{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.040320pt;}
.ls13{letter-spacing:0.043520pt;}
.ls20{letter-spacing:0.047360pt;}
.ls1f{letter-spacing:0.053867pt;}
.ls16{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.058240pt;}
.ls4{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls19{letter-spacing:0.103467pt;}
.ls6{letter-spacing:0.106667pt;}
.ls1d{letter-spacing:0.127467pt;}
.ls8{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.154133pt;}
.ls5{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.161067pt;}
.ls14{letter-spacing:0.177067pt;}
.ls1c{letter-spacing:0.183680pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.723200pt;}
.ls21{letter-spacing:42.423680pt;}
.ls17{letter-spacing:56.503680pt;}
.ls1e{letter-spacing:71.863680pt;}
.ws8{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.wsc{word-spacing:-11.933867pt;}
.wsd{word-spacing:-11.917867pt;}
.ws4{word-spacing:-11.910933pt;}
.ws11{word-spacing:-11.884267pt;}
.wsf{word-spacing:-11.860267pt;}
.ws12{word-spacing:-11.810667pt;}
.ws13{word-spacing:-11.804160pt;}
.wsb{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wse{word-spacing:-11.743680pt;}
.ws10{word-spacing:-11.702933pt;}
.ws6{word-spacing:-11.613867pt;}
.ws5{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws9{word-spacing:0.000000pt;}
.ws7{word-spacing:3.826560pt;}
._9{margin-left:-3.153067pt;}
._a{margin-left:-2.023680pt;}
._0{margin-left:-1.077333pt;}
._1{width:1.493227pt;}
._5{width:2.888640pt;}
._b{width:3.869975pt;}
._8{width:5.504534pt;}
._6{width:7.107734pt;}
._3{width:8.069333pt;}
._7{width:9.458666pt;}
._4{width:10.730667pt;}
._d{width:12.772160pt;}
._2{width:14.054934pt;}
._c{width:15.550933pt;}
._e{width:16.656641pt;}
._f{width:17.882237pt;}
._12{width:18.884483pt;}
._10{width:20.681280pt;}
._11{width:21.696640pt;}
._1b{width:23.513600pt;}
._1d{width:26.452800pt;}
._16{width:27.414720pt;}
._15{width:28.812693pt;}
._1a{width:30.781440pt;}
._26{width:32.812160pt;}
._19{width:35.965120pt;}
._1c{width:42.591680pt;}
._2b{width:43.820800pt;}
._2d{width:45.477440pt;}
._1f{width:51.676480pt;}
._32{width:53.302293pt;}
._14{width:54.722560pt;}
._25{width:72.357760pt;}
._22{width:74.869440pt;}
._28{width:97.421120pt;}
._24{width:102.177280pt;}
._31{width:106.826560pt;}
._27{width:113.666880pt;}
._18{width:122.644800pt;}
._23{width:128.736960pt;}
._2e{width:130.928000pt;}
._2c{width:142.043520pt;}
._1e{width:163.793600pt;}
._30{width:179.699840pt;}
._29{width:182.497600pt;}
._21{width:214.828800pt;}
._20{width:224.501440pt;}
._2a{width:228.456000pt;}
._2f{width:261.995520pt;}
._17{width:359.063360pt;}
._13{width:756.349867pt;}
.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;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yc7{bottom:6.960000pt;}
.yc2{bottom:7.040000pt;}
.ycb{bottom:22.560000pt;}
.yc6{bottom:22.586667pt;}
.yc1{bottom:22.640000pt;}
.yc9{bottom:38.240000pt;}
.yc5{bottom:38.266667pt;}
.y158{bottom:38.320000pt;}
.ycd{bottom:53.840000pt;}
.yc4{bottom:53.866667pt;}
.y138{bottom:53.920000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y5c{bottom:100.426667pt;}
.y10e{bottom:107.306667pt;}
.y11f{bottom:108.506667pt;}
.yb0{bottom:109.386667pt;}
.yeb{bottom:110.906667pt;}
.y19f{bottom:113.546667pt;}
.y5b{bottom:116.026667pt;}
.y179{bottom:119.626667pt;}
.y10d{bottom:122.906667pt;}
.y85{bottom:123.706667pt;}
.y11e{bottom:124.186667pt;}
.yaf{bottom:125.066667pt;}
.yea{bottom:126.586667pt;}
.y19e{bottom:129.146667pt;}
.y5a{bottom:131.706667pt;}
.y178{bottom:135.226667pt;}
.y155{bottom:135.946667pt;}
.y10c{bottom:138.586667pt;}
.ye9{bottom:142.186667pt;}
.y19d{bottom:144.746667pt;}
.y27{bottom:145.786667pt;}
.y59{bottom:147.306667pt;}
.yae{bottom:148.666667pt;}
.y177{bottom:150.826667pt;}
.y154{bottom:151.546667pt;}
.y137{bottom:152.826667pt;}
.y10b{bottom:154.186667pt;}
.ybf{bottom:154.906667pt;}
.y84{bottom:155.306667pt;}
.y11d{bottom:155.786667pt;}
.y26{bottom:161.386667pt;}
.y58{bottom:162.906667pt;}
.ye8{bottom:165.866667pt;}
.y176{bottom:166.506667pt;}
.y153{bottom:167.226667pt;}
.y19c{bottom:168.426667pt;}
.y10a{bottom:169.866667pt;}
.y83{bottom:170.906667pt;}
.y25{bottom:177.066667pt;}
.y57{bottom:178.586667pt;}
.yad{bottom:180.346667pt;}
.y175{bottom:182.106667pt;}
.y152{bottom:182.826667pt;}
.y19b{bottom:184.026667pt;}
.y11c{bottom:184.426667pt;}
.y82{bottom:186.586667pt;}
.y24{bottom:192.666667pt;}
.y109{bottom:193.466667pt;}
.yac{bottom:195.946667pt;}
.ye7{bottom:197.466667pt;}
.y174{bottom:197.786667pt;}
.y151{bottom:198.426667pt;}
.y19a{bottom:199.626667pt;}
.y56{bottom:202.186667pt;}
.y23{bottom:208.266667pt;}
.yab{bottom:211.546667pt;}
.ye6{bottom:213.066667pt;}
.y81{bottom:217.866667pt;}
.y173{bottom:221.386667pt;}
.y150{bottom:222.106667pt;}
.y199{bottom:223.306667pt;}
.y136{bottom:224.026667pt;}
.y108{bottom:225.066667pt;}
.yaa{bottom:227.226667pt;}
.ye5{bottom:228.746667pt;}
.y80{bottom:233.466667pt;}
.y55{bottom:233.866667pt;}
.y198{bottom:238.906667pt;}
.y22{bottom:239.946667pt;}
.y107{bottom:240.746667pt;}
.ya9{bottom:242.826667pt;}
.ye4{bottom:244.346667pt;}
.y7f{bottom:249.066667pt;}
.y54{bottom:249.466667pt;}
.y172{bottom:252.986667pt;}
.y14f{bottom:253.706667pt;}
.y197{bottom:254.586667pt;}
.y21{bottom:255.546667pt;}
.y106{bottom:256.346667pt;}
.ya8{bottom:258.506667pt;}
.ye3{bottom:259.946667pt;}
.y7e{bottom:264.746667pt;}
.y53{bottom:265.066667pt;}
.y171{bottom:268.666667pt;}
.y14e{bottom:269.386667pt;}
.y196{bottom:270.186667pt;}
.y20{bottom:271.226667pt;}
.y105{bottom:271.946667pt;}
.ya7{bottom:274.106667pt;}
.ye2{bottom:275.626667pt;}
.y135{bottom:279.626667pt;}
.y7d{bottom:280.346667pt;}
.y52{bottom:280.746667pt;}
.y170{bottom:284.266667pt;}
.y14d{bottom:284.986667pt;}
.y1f{bottom:286.826667pt;}
.y104{bottom:287.626667pt;}
.ya6{bottom:289.706667pt;}
.ye1{bottom:291.226667pt;}
.y195{bottom:293.786667pt;}
.y7c{bottom:295.946667pt;}
.y51{bottom:296.346667pt;}
.y16f{bottom:299.946667pt;}
.y14c{bottom:300.586667pt;}
.y1e{bottom:302.426667pt;}
.y103{bottom:303.226667pt;}
.y194{bottom:309.466667pt;}
.ybe{bottom:311.626667pt;}
.y50{bottom:311.946667pt;}
.ya5{bottom:313.386667pt;}
.ye0{bottom:314.906667pt;}
.y16e{bottom:315.546667pt;}
.y14b{bottom:316.266667pt;}
.y102{bottom:318.906667pt;}
.y7b{bottom:319.626667pt;}
.y1d{bottom:326.346667pt;}
.y4f{bottom:327.626667pt;}
.y16d{bottom:331.146667pt;}
.y193{bottom:333.066667pt;}
.ybd{bottom:335.226667pt;}
.y14a{bottom:339.866667pt;}
.y101{bottom:342.506667pt;}
.y4e{bottom:343.226667pt;}
.ya4{bottom:344.986667pt;}
.ydf{bottom:346.506667pt;}
.y16c{bottom:346.826667pt;}
.y192{bottom:348.746667pt;}
.y134{bottom:350.746667pt;}
.y7a{bottom:351.226667pt;}
.y4d{bottom:358.906667pt;}
.ya3{bottom:360.586667pt;}
.yde{bottom:362.106667pt;}
.y16b{bottom:362.426667pt;}
.y79{bottom:366.906667pt;}
.y1c{bottom:369.306667pt;}
.y149{bottom:371.546667pt;}
.y191{bottom:372.346667pt;}
.y100{bottom:374.106667pt;}
.ya2{bottom:376.266667pt;}
.ydd{bottom:377.786667pt;}
.y4c{bottom:382.506667pt;}
.y1b{bottom:385.226667pt;}
.y16a{bottom:386.106667pt;}
.y148{bottom:387.146667pt;}
.y190{bottom:387.946667pt;}
.yff{bottom:389.786667pt;}
.ya1{bottom:391.866667pt;}
.ydc{bottom:393.386667pt;}
.y78{bottom:398.106667pt;}
.y147{bottom:402.746667pt;}
.y18f{bottom:403.626667pt;}
.yfe{bottom:405.386667pt;}
.ya0{bottom:407.546667pt;}
.ydb{bottom:409.066667pt;}
.y133{bottom:409.706667pt;}
.y77{bottom:413.786667pt;}
.y4b{bottom:414.106667pt;}
.y169{bottom:417.733333pt;}
.y1a{bottom:418.133333pt;}
.y146{bottom:418.453333pt;}
.yfd{bottom:421.093333pt;}
.y9f{bottom:423.173333pt;}
.yda{bottom:424.693333pt;}
.y18e{bottom:427.573333pt;}
.y76{bottom:429.413333pt;}
.y4a{bottom:429.813333pt;}
.y168{bottom:433.333333pt;}
.y19{bottom:433.733333pt;}
.y145{bottom:434.053333pt;}
.yfc{bottom:436.693333pt;}
.y9e{bottom:438.773333pt;}
.yd9{bottom:440.293333pt;}
.y132{bottom:441.333333pt;}
.y75{bottom:445.093333pt;}
.y49{bottom:445.413333pt;}
.y167{bottom:449.013333pt;}
.y18{bottom:449.413333pt;}
.y9d{bottom:454.453333pt;}
.y131{bottom:457.013333pt;}
.y144{bottom:457.733333pt;}
.y74{bottom:460.693333pt;}
.y48{bottom:461.093333pt;}
.yd8{bottom:463.973333pt;}
.y166{bottom:464.613333pt;}
.y17{bottom:465.013333pt;}
.yfb{bottom:468.293333pt;}
.y18d{bottom:470.453333pt;}
.y130{bottom:472.613333pt;}
.y73{bottom:476.293333pt;}
.y47{bottom:476.693333pt;}
.y9c{bottom:478.053333pt;}
.y165{bottom:480.293333pt;}
.y16{bottom:480.693333pt;}
.yfa{bottom:483.973333pt;}
.y12f{bottom:488.293333pt;}
.y143{bottom:489.333333pt;}
.y46{bottom:492.293333pt;}
.y18c{bottom:494.373333pt;}
.yd7{bottom:495.573333pt;}
.y164{bottom:495.893333pt;}
.y15{bottom:496.293333pt;}
.yf9{bottom:499.573333pt;}
.y72{bottom:499.973333pt;}
.y12e{bottom:503.893333pt;}
.y45{bottom:507.973333pt;}
.y9b{bottom:509.733333pt;}
.yd6{bottom:511.253333pt;}
.y163{bottom:511.493333pt;}
.y14{bottom:511.893333pt;}
.yf8{bottom:515.253333pt;}
.y11b{bottom:517.413333pt;}
.y142{bottom:517.973333pt;}
.y12d{bottom:519.493333pt;}
.y44{bottom:523.573333pt;}
.y9a{bottom:525.333333pt;}
.yd5{bottom:526.853333pt;}
.y162{bottom:527.173333pt;}
.y13{bottom:527.573333pt;}
.yf7{bottom:530.853333pt;}
.y71{bottom:531.573333pt;}
.y12c{bottom:535.173333pt;}
.y43{bottom:539.253333pt;}
.y99{bottom:540.933333pt;}
.yd4{bottom:542.453333pt;}
.y12{bottom:543.173333pt;}
.y70{bottom:547.253333pt;}
.y11a{bottom:549.333333pt;}
.y12b{bottom:550.773333pt;}
.y42{bottom:554.853333pt;}
.yd3{bottom:558.133333pt;}
.y11{bottom:558.853333pt;}
.yf6{bottom:562.453333pt;}
.y6f{bottom:562.853333pt;}
.y12a{bottom:566.453333pt;}
.y18b{bottom:570.453333pt;}
.y98{bottom:572.533333pt;}
.yd2{bottom:573.733333pt;}
.y10{bottom:574.453333pt;}
.yf5{bottom:578.133333pt;}
.y41{bottom:578.453333pt;}
.y161{bottom:582.453333pt;}
.y18a{bottom:586.133333pt;}
.y97{bottom:588.933333pt;}
.yd1{bottom:589.413333pt;}
.y119{bottom:589.973333pt;}
.yf{bottom:590.053333pt;}
.yf4{bottom:593.733333pt;}
.y6e{bottom:594.133333pt;}
.y160{bottom:598.053333pt;}
.y189{bottom:601.733333pt;}
.yd0{bottom:605.013333pt;}
.y96{bottom:605.333333pt;}
.ye{bottom:605.733333pt;}
.yf3{bottom:609.413333pt;}
.y6d{bottom:609.733333pt;}
.y40{bottom:610.373333pt;}
.y15f{bottom:613.653333pt;}
.y188{bottom:617.413333pt;}
.yd{bottom:621.333333pt;}
.y129{bottom:621.653333pt;}
.yf2{bottom:625.013333pt;}
.y6c{bottom:625.413333pt;}
.ycf{bottom:628.613333pt;}
.y15e{bottom:629.333333pt;}
.y118{bottom:629.893333pt;}
.y187{bottom:633.013333pt;}
.yc{bottom:637.013333pt;}
.y128{bottom:637.333333pt;}
.y95{bottom:637.733333pt;}
.y6b{bottom:641.013333pt;}
.y15d{bottom:644.933333pt;}
.y186{bottom:648.613333pt;}
.y127{bottom:652.933333pt;}
.y3f{bottom:653.333333pt;}
.y117{bottom:654.213333pt;}
.y6a{bottom:656.613333pt;}
.yce{bottom:660.533333pt;}
.yb{bottom:660.933333pt;}
.y185{bottom:664.293333pt;}
.ybc{bottom:664.613333pt;}
.y126{bottom:668.613333pt;}
.y3e{bottom:668.933333pt;}
.yf1{bottom:672.293333pt;}
.y15c{bottom:676.213333pt;}
.y116{bottom:678.453333pt;}
.y184{bottom:679.893333pt;}
.y69{bottom:680.293333pt;}
.y125{bottom:684.213333pt;}
.y3d{bottom:684.613333pt;}
.yf0{bottom:687.893333pt;}
.y15b{bottom:691.813333pt;}
.y94{bottom:692.613333pt;}
.y183{bottom:695.573333pt;}
.ybb{bottom:696.293333pt;}
.y124{bottom:699.813333pt;}
.y3c{bottom:700.213333pt;}
.ycc{bottom:701.173333pt;}
.yef{bottom:703.573333pt;}
.ya{bottom:703.813333pt;}
.y182{bottom:711.173333pt;}
.yba{bottom:711.893333pt;}
.y68{bottom:712.213333pt;}
.y123{bottom:715.493333pt;}
.y3b{bottom:715.813333pt;}
.y115{bottom:718.373333pt;}
.yee{bottom:719.173333pt;}
.y93{bottom:724.533333pt;}
.y181{bottom:726.773333pt;}
.yb9{bottom:727.573333pt;}
.y122{bottom:731.093333pt;}
.y3a{bottom:731.493333pt;}
.y9{bottom:735.653333pt;}
.y180{bottom:742.453333pt;}
.yed{bottom:742.773333pt;}
.yb8{bottom:743.173333pt;}
.y39{bottom:747.093333pt;}
.y15a{bottom:747.413333pt;}
.y121{bottom:754.693333pt;}
.y67{bottom:755.093333pt;}
.y17f{bottom:758.053333pt;}
.y114{bottom:758.373333pt;}
.yb7{bottom:758.773333pt;}
.y92{bottom:767.413333pt;}
.y8{bottom:767.653333pt;}
.y66{bottom:770.693333pt;}
.yca{bottom:772.373333pt;}
.yb6{bottom:774.453333pt;}
.yec{bottom:774.693333pt;}
.y38{bottom:778.693333pt;}
.y17e{bottom:781.973333pt;}
.y91{bottom:783.013333pt;}
.y65{bottom:786.373333pt;}
.y159{bottom:787.973333pt;}
.yb5{bottom:790.053333pt;}
.y37{bottom:794.373333pt;}
.y90{bottom:798.693333pt;}
.y64{bottom:801.973333pt;}
.y7{bottom:803.013333pt;}
.yb4{bottom:805.733333pt;}
.y36{bottom:809.973333pt;}
.y113{bottom:817.253333pt;}
.y63{bottom:817.653333pt;}
.y6{bottom:819.013333pt;}
.yb3{bottom:821.333333pt;}
.y17d{bottom:824.853333pt;}
.y1a3{bottom:825.253333pt;}
.y35{bottom:825.653333pt;}
.yc8{bottom:827.893333pt;}
.y8f{bottom:830.293333pt;}
.y62{bottom:833.253333pt;}
.y5{bottom:835.013333pt;}
.y17c{bottom:840.533333pt;}
.y1a2{bottom:840.853333pt;}
.y34{bottom:841.253333pt;}
.y157{bottom:843.493333pt;}
.yb2{bottom:844.933333pt;}
.y8e{bottom:845.893333pt;}
.y61{bottom:848.853333pt;}
.y141{bottom:852.933333pt;}
.y17b{bottom:856.133333pt;}
.y33{bottom:856.853333pt;}
.y8d{bottom:862.293333pt;}
.y4{bottom:863.733333pt;}
.y60{bottom:864.533333pt;}
.y140{bottom:868.613333pt;}
.y32{bottom:872.533333pt;}
.yb1{bottom:876.853333pt;}
.y8c{bottom:877.893333pt;}
.y17a{bottom:879.813333pt;}
.y5f{bottom:880.133333pt;}
.yc3{bottom:883.493333pt;}
.y13f{bottom:884.213333pt;}
.y8b{bottom:894.293333pt;}
.y5e{bottom:895.813333pt;}
.y3{bottom:897.760000pt;}
.y156{bottom:899.120000pt;}
.y13e{bottom:899.840000pt;}
.y120{bottom:903.840000pt;}
.y31{bottom:904.160000pt;}
.y8a{bottom:909.920000pt;}
.y112{bottom:911.440000pt;}
.y13d{bottom:915.520000pt;}
.y5d{bottom:919.440000pt;}
.y30{bottom:919.840000pt;}
.y89{bottom:926.320000pt;}
.y111{bottom:927.040000pt;}
.y13c{bottom:931.120000pt;}
.y2f{bottom:935.440000pt;}
.y88{bottom:941.920000pt;}
.y110{bottom:942.720000pt;}
.y1a1{bottom:943.040000pt;}
.y13b{bottom:946.800000pt;}
.y2e{bottom:951.040000pt;}
.yc0{bottom:954.640000pt;}
.y1a0{bottom:958.720000pt;}
.y10f{bottom:966.320000pt;}
.y2d{bottom:966.720000pt;}
.y13a{bottom:970.400000pt;}
.y87{bottom:974.320000pt;}
.y2c{bottom:982.320000pt;}
.y86{bottom:990.000000pt;}
.y2b{bottom:998.000000pt;}
.y139{bottom:1002.320000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h11{height:23.600000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.h10{height:39.200000pt;}
.hc{height:39.280000pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.h8{height:54.187500pt;}
.he{height:54.880000pt;}
.hb{height:54.927899pt;}
.h13{height:54.986667pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.hf{height:70.480000pt;}
.hd{height:70.506667pt;}
.h12{height:70.560000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w12{width:76.986667pt;}
.wb{width:91.546667pt;}
.w3{width:94.666667pt;}
.w10{width:103.360000pt;}
.wf{width:125.306667pt;}
.w8{width:129.600000pt;}
.w9{width:133.066667pt;}
.w11{width:134.240000pt;}
.w4{width:164.160000pt;}
.w7{width:187.546667pt;}
.w6{width:188.880000pt;}
.wc{width:190.880000pt;}
.we{width:191.920000pt;}
.wd{width:195.466667pt;}
.wa{width:219.600000pt;}
.w5{width:222.106667pt;}
.w13{width:229.280000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.880000pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.x17{left:98.879988pt;}
.x5{left:108.479988pt;}
.xe{left:135.839988pt;}
.xf{left:153.306667pt;}
.x7{left:156.426667pt;}
.x2{left:186.506655pt;}
.x13{left:224.026655pt;}
.xa{left:249.306667pt;}
.x14{left:291.066667pt;}
.x8{left:321.226667pt;}
.x10{left:344.826667pt;}
.xb{left:379.546667pt;}
.x15{left:425.946667pt;}
.x16{left:503.573333pt;}
.xc{left:513.253333pt;}
.x11{left:540.933333pt;}
.x9{left:543.973333pt;}
.xd{left:664.053322pt;}
.x12{left:667.013322pt;}
.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; }
  