
    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_9e5865320d2226248cfe8174.woff')format("woff");}.ff1{font-family:ff1;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9968e768887fcc9bd62b0b23.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_c53aba278ac448c4ba8046c2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.854980;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_0ac07295fe4dc2d9c6244b4a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.010254;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_3a5d040d0ad54c61b003224f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.994141;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_5271974847df90edda93d6f0.woff')format("woff");}.ff6{font-family:ff6;line-height:1.008301;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_2857ad4edffe420bcb7f8651.woff')format("woff");}.ff7{font-family:ff7;line-height:0.746094;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_fa8f9933096cdefe76c4f52e.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_2a1854aea0ea13319da53037.woff')format("woff");}.ff9{font-family:ff9;line-height:0.690918;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_b3cf34f4d57b57974d1cc9b4.woff')format("woff");}.ffa{font-family:ffa;line-height:0.758789;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_c887b7ef6aec8b5efc4ec763.woff')format("woff");}.ffb{font-family:ffb;line-height:1.010254;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;}
.ls4{letter-spacing:-0.828000px;}
.ls3{letter-spacing:-0.374400px;}
.ls15{letter-spacing:-0.319800px;}
.lsd{letter-spacing:-0.305400px;}
.lsc{letter-spacing:-0.262200px;}
.ls8{letter-spacing:-0.244800px;}
.lsf{letter-spacing:-0.152400px;}
.ls13{letter-spacing:-0.109200px;}
.ls7{letter-spacing:-0.005760px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.005760px;}
.ls14{letter-spacing:0.119520px;}
.ls5{letter-spacing:0.152400px;}
.ls9{letter-spacing:0.164400px;}
.ls2{letter-spacing:0.172800px;}
.lse{letter-spacing:0.262200px;}
.lsb{letter-spacing:0.305400px;}
.ls10{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.499800px;}
.ls12{letter-spacing:0.612000px;}
.ls17{letter-spacing:6.785280px;}
.ls16{letter-spacing:39.881280px;}
.lsa{letter-spacing:59.321280px;}
.ls0{letter-spacing:89.561280px;}
.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;}
}
.ws1{word-spacing:-66.240000px;}
.ws0{word-spacing:-23.212800px;}
.ws8{word-spacing:-16.865400px;}
.wsb{word-spacing:-16.822200px;}
.ws7{word-spacing:-16.724400px;}
.ws2{word-spacing:-16.712400px;}
.ws5{word-spacing:-16.565760px;}
.wsd{word-spacing:-16.560000px;}
.ws4{word-spacing:-16.554240px;}
.wsc{word-spacing:-16.407600px;}
.ws6{word-spacing:-16.315200px;}
.ws9{word-spacing:-16.297800px;}
.wsa{word-spacing:-16.254600px;}
.ws11{word-spacing:-15.552000px;}
.ws10{word-spacing:-15.439800px;}
.wse{word-spacing:-15.300000px;}
.wsf{word-spacing:-14.940000px;}
.ws12{word-spacing:-14.620200px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-1.347840px;}
._1{width:1.351440px;}
._11{width:2.419920px;}
._d{width:3.841920px;}
._5{width:5.342400px;}
._4{width:6.647040px;}
._15{width:8.015040px;}
._12{width:9.054720px;}
._7{width:10.134720px;}
._8{width:11.217600px;}
._9{width:12.645120px;}
._6{width:14.019840px;}
._2{width:15.324480px;}
._17{width:17.676480px;}
._1a{width:18.820800px;}
._f{width:20.004480px;}
._10{width:21.021120px;}
._18{width:22.363200px;}
._16{width:23.557440px;}
._14{width:25.173120px;}
._13{width:26.297280px;}
._c{width:27.423360px;}
._a{width:29.105280px;}
._b{width:30.440880px;}
._19{width:31.577040px;}
._e{width:33.583680px;}
._3{width:34.709760px;}
._1d{width:35.902080px;}
._1c{width:37.889280px;}
._1b{width:39.095040px;}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y12d{bottom:6.660000px;}
.y146{bottom:6.840000px;}
.y111{bottom:7.020000px;}
.y136{bottom:7.200000px;}
.y14a{bottom:7.230000px;}
.yfb{bottom:8.820000px;}
.y184{bottom:9.720000px;}
.y182{bottom:11.880000px;}
.y17f{bottom:12.240000px;}
.yff{bottom:16.200000px;}
.y101{bottom:18.360000px;}
.yd9{bottom:18.720000px;}
.y16b{bottom:18.765000px;}
.y15a{bottom:18.900000px;}
.y15d{bottom:19.080000px;}
.ydb{bottom:19.260000px;}
.y103{bottom:20.340000px;}
.y105{bottom:21.240000px;}
.y10b{bottom:21.420000px;}
.y10e{bottom:22.320000px;}
.yfd{bottom:23.940000px;}
.y10a{bottom:26.280000px;}
.y12c{bottom:27.540000px;}
.y145{bottom:27.720000px;}
.y131{bottom:28.440000px;}
.y12f{bottom:28.485000px;}
.y135{bottom:28.620000px;}
.y149{bottom:28.650000px;}
.yfa{bottom:29.700000px;}
.y16a{bottom:39.465000px;}
.yd8{bottom:39.600000px;}
.ye0{bottom:40.500000px;}
.ye1{bottom:40.680000px;}
.y12b{bottom:48.420000px;}
.y133{bottom:49.860000px;}
.yf9{bottom:50.400000px;}
.y6{bottom:57.960000px;}
.yd7{bottom:60.300000px;}
.y169{bottom:60.345000px;}
.y5{bottom:79.380000px;}
.y168{bottom:81.225000px;}
.y166{bottom:113.220000px;}
.yea{bottom:114.120000px;}
.y107{bottom:117.000000px;}
.y157{bottom:125.820000px;}
.y129{bottom:128.160000px;}
.y14d{bottom:129.060000px;}
.ycc{bottom:129.240000px;}
.y53{bottom:129.420000px;}
.y2d{bottom:129.600000px;}
.yb7{bottom:130.140000px;}
.y18b{bottom:130.500000px;}
.y70{bottom:132.480000px;}
.y9c{bottom:133.200000px;}
.ye9{bottom:134.100000px;}
.y106{bottom:137.160000px;}
.y156{bottom:146.160000px;}
.y128{bottom:148.140000px;}
.y14c{bottom:149.580000px;}
.ycb{bottom:149.760000px;}
.y52{bottom:149.940000px;}
.y2c{bottom:150.120000px;}
.yb6{bottom:150.300000px;}
.y18a{bottom:151.020000px;}
.y6f{bottom:153.000000px;}
.y104{bottom:153.360000px;}
.y9b{bottom:153.540000px;}
.ye8{bottom:153.900000px;}
.y155{bottom:161.820000px;}
.y127{bottom:167.940000px;}
.y14b{bottom:169.560000px;}
.yca{bottom:170.280000px;}
.y51{bottom:170.460000px;}
.y2b{bottom:170.640000px;}
.y189{bottom:171.360000px;}
.y165{bottom:172.980000px;}
.y6e{bottom:173.520000px;}
.ye7{bottom:173.880000px;}
.y9a{bottom:174.060000px;}
.y148{bottom:185.760000px;}
.y126{bottom:187.950000px;}
.y102{bottom:189.750000px;}
.yc9{bottom:190.650000px;}
.y50{bottom:191.010000px;}
.y2a{bottom:191.190000px;}
.y188{bottom:191.910000px;}
.y164{bottom:193.170000px;}
.y6d{bottom:193.530000px;}
.ye6{bottom:193.710000px;}
.y1a3{bottom:194.250000px;}
.y99{bottom:194.610000px;}
.y125{bottom:207.750000px;}
.yc8{bottom:211.170000px;}
.yb5{bottom:211.350000px;}
.y29{bottom:211.530000px;}
.y187{bottom:212.430000px;}
.y89{bottom:213.510000px;}
.ye5{bottom:213.690000px;}
.y6c{bottom:213.870000px;}
.y1a2{bottom:214.770000px;}
.y98{bottom:215.130000px;}
.y100{bottom:225.210000px;}
.y124{bottom:227.730000px;}
.y147{bottom:229.530000px;}
.yc7{bottom:231.690000px;}
.y28{bottom:232.050000px;}
.yb4{bottom:232.770000px;}
.y186{bottom:232.950000px;}
.ye4{bottom:233.490000px;}
.y88{bottom:233.850000px;}
.y163{bottom:234.210000px;}
.y6b{bottom:234.390000px;}
.y1a1{bottom:235.290000px;}
.y97{bottom:235.650000px;}
.y123{bottom:248.070000px;}
.yc6{bottom:252.210000px;}
.y27{bottom:252.570000px;}
.y185{bottom:253.110000px;}
.yb3{bottom:253.290000px;}
.ye3{bottom:253.470000px;}
.y87{bottom:254.370000px;}
.y162{bottom:254.730000px;}
.y6a{bottom:254.910000px;}
.y1a0{bottom:255.810000px;}
.y96{bottom:256.170000px;}
.yfe{bottom:258.690000px;}
.y122{bottom:268.590000px;}
.y183{bottom:269.310000px;}
.y26{bottom:272.730000px;}
.y4f{bottom:273.090000px;}
.ye2{bottom:273.270000px;}
.yb2{bottom:273.810000px;}
.y86{bottom:274.890000px;}
.y161{bottom:275.250000px;}
.y69{bottom:275.430000px;}
.y19f{bottom:276.330000px;}
.y95{bottom:276.690000px;}
.y121{bottom:288.930000px;}
.ydf{bottom:289.470000px;}
.yfc{bottom:290.010000px;}
.yc5{bottom:293.250000px;}
.y4e{bottom:293.430000px;}
.y181{bottom:294.150000px;}
.yb1{bottom:294.330000px;}
.y85{bottom:295.410000px;}
.y68{bottom:295.950000px;}
.y19e{bottom:296.490000px;}
.y94{bottom:296.670000px;}
.y120{bottom:309.450000px;}
.y25{bottom:310.710000px;}
.y160{bottom:311.610000px;}
.yc4{bottom:313.770000px;}
.y4d{bottom:313.950000px;}
.yb0{bottom:314.850000px;}
.y84{bottom:315.930000px;}
.y19d{bottom:316.290000px;}
.y67{bottom:316.470000px;}
.y93{bottom:316.650000px;}
.y180{bottom:321.330000px;}
.yf8{bottom:329.070000px;}
.y11f{bottom:329.610000px;}
.yc3{bottom:334.290000px;}
.y4c{bottom:334.470000px;}
.yaf{bottom:335.370000px;}
.y83{bottom:336.270000px;}
.y66{bottom:336.990000px;}
.yde{bottom:345.090000px;}
.y15f{bottom:345.810000px;}
.y24{bottom:348.690000px;}
.y11e{bottom:349.410000px;}
.yc2{bottom:354.810000px;}
.y4b{bottom:354.990000px;}
.yae{bottom:355.350000px;}
.y19c{bottom:356.610000px;}
.y82{bottom:356.790000px;}
.y65{bottom:357.510000px;}
.y17e{bottom:364.890000px;}
.y23{bottom:368.490000px;}
.y11d{bottom:369.750000px;}
.yc1{bottom:375.330000px;}
.y4a{bottom:375.510000px;}
.yad{bottom:375.690000px;}
.y19b{bottom:376.950000px;}
.y81{bottom:377.310000px;}
.y64{bottom:378.030000px;}
.ydd{bottom:379.290000px;}
.y15e{bottom:380.010000px;}
.y144{bottom:384.690000px;}
.y22{bottom:388.470000px;}
.y11c{bottom:390.270000px;}
.yc0{bottom:395.850000px;}
.y49{bottom:396.030000px;}
.yac{bottom:396.210000px;}
.y17d{bottom:396.750000px;}
.y19a{bottom:397.470000px;}
.y80{bottom:397.830000px;}
.y63{bottom:398.550000px;}
.yf7{bottom:398.730000px;}
.y143{bottom:404.850000px;}
.y21{bottom:408.270000px;}
.y11b{bottom:410.655000px;}
.ydc{bottom:413.535000px;}
.y15c{bottom:414.255000px;}
.ybf{bottom:416.235000px;}
.y48{bottom:416.595000px;}
.yab{bottom:416.775000px;}
.y17c{bottom:417.315000px;}
.y199{bottom:418.035000px;}
.y7f{bottom:418.395000px;}
.y62{bottom:419.115000px;}
.y142{bottom:425.235000px;}
.y11a{bottom:432.075000px;}
.ybe{bottom:436.755000px;}
.y47{bottom:437.115000px;}
.y17b{bottom:437.835000px;}
.y7e{bottom:438.555000px;}
.yf6{bottom:439.095000px;}
.y61{bottom:439.455000px;}
.y141{bottom:445.575000px;}
.y20{bottom:446.295000px;}
.yda{bottom:447.735000px;}
.y15b{bottom:448.275000px;}
.y119{bottom:452.595000px;}
.ybd{bottom:456.915000px;}
.y46{bottom:457.635000px;}
.y7d{bottom:458.355000px;}
.yaa{bottom:458.535000px;}
.y198{bottom:459.075000px;}
.yf5{bottom:459.435000px;}
.y60{bottom:459.975000px;}
.y1f{bottom:466.095000px;}
.y118{bottom:472.935000px;}
.ybc{bottom:477.255000px;}
.y45{bottom:478.155000px;}
.y17a{bottom:478.515000px;}
.y7c{bottom:478.695000px;}
.ya9{bottom:479.055000px;}
.y197{bottom:479.595000px;}
.yf4{bottom:479.955000px;}
.y5f{bottom:480.495000px;}
.yd6{bottom:481.935000px;}
.y159{bottom:482.475000px;}
.y1e{bottom:486.075000px;}
.y140{bottom:486.615000px;}
.y117{bottom:494.355000px;}
.ybb{bottom:497.775000px;}
.y179{bottom:498.315000px;}
.y44{bottom:498.675000px;}
.y154{bottom:498.855000px;}
.y7b{bottom:499.215000px;}
.ya8{bottom:499.395000px;}
.y196{bottom:500.115000px;}
.yf3{bottom:500.475000px;}
.y5e{bottom:500.655000px;}
.y92{bottom:501.015000px;}
.y1d{bottom:505.875000px;}
.y13f{bottom:506.775000px;}
.y116{bottom:514.875000px;}
.y153{bottom:515.055000px;}
.yba{bottom:518.115000px;}
.y178{bottom:518.655000px;}
.y43{bottom:519.015000px;}
.y7a{bottom:519.735000px;}
.y5d{bottom:520.455000px;}
.y195{bottom:520.635000px;}
.ya7{bottom:520.815000px;}
.yf2{bottom:520.995000px;}
.y91{bottom:521.535000px;}
.y1c{bottom:525.855000px;}
.y13e{bottom:526.575000px;}
.y115{bottom:535.395000px;}
.y177{bottom:539.175000px;}
.y42{bottom:539.535000px;}
.y79{bottom:540.255000px;}
.y5c{bottom:540.795000px;}
.ya6{bottom:541.155000px;}
.yf1{bottom:541.515000px;}
.y90{bottom:541.695000px;}
.y1b{bottom:545.655000px;}
.y13d{bottom:546.915000px;}
.y114{bottom:555.915000px;}
.y176{bottom:559.695000px;}
.yb9{bottom:559.875000px;}
.y41{bottom:560.055000px;}
.y78{bottom:560.775000px;}
.y5b{bottom:561.315000px;}
.y8f{bottom:561.495000px;}
.y194{bottom:561.675000px;}
.yd5{bottom:561.855000px;}
.ya5{bottom:562.575000px;}
.y1a{bottom:565.635000px;}
.y13c{bottom:567.435000px;}
.y152{bottom:570.675000px;}
.y113{bottom:575.895000px;}
.y175{bottom:580.215000px;}
.y40{bottom:580.575000px;}
.y77{bottom:581.295000px;}
.yf0{bottom:581.475000px;}
.y5a{bottom:581.835000px;}
.yd4{bottom:582.015000px;}
.y193{bottom:582.195000px;}
.ya4{bottom:583.095000px;}
.y19{bottom:585.435000px;}
.y13b{bottom:587.955000px;}
.y112{bottom:595.875000px;}
.y174{bottom:600.735000px;}
.y3f{bottom:601.095000px;}
.y158{bottom:601.275000px;}
.y76{bottom:601.815000px;}
.y59{bottom:602.355000px;}
.y192{bottom:602.535000px;}
.ya3{bottom:603.615000px;}
.y151{bottom:604.875000px;}
.y18{bottom:605.415000px;}
.y13a{bottom:608.475000px;}
.y110{bottom:612.075000px;}
.y173{bottom:621.255000px;}
.y3e{bottom:621.615000px;}
.yb8{bottom:621.795000px;}
.y75{bottom:622.155000px;}
.yef{bottom:622.335000px;}
.y58{bottom:622.875000px;}
.y191{bottom:623.055000px;}
.ya2{bottom:623.595000px;}
.y17{bottom:625.215000px;}
.y139{bottom:628.995000px;}
.y10f{bottom:634.245000px;}
.y150{bottom:639.105000px;}
.y172{bottom:641.625000px;}
.y3d{bottom:642.165000px;}
.y74{bottom:642.705000px;}
.yee{bottom:642.885000px;}
.y57{bottom:643.425000px;}
.y190{bottom:643.605000px;}
.ya1{bottom:643.965000px;}
.y16{bottom:645.225000px;}
.y138{bottom:649.545000px;}
.y171{bottom:661.785000px;}
.y3c{bottom:662.685000px;}
.y73{bottom:663.225000px;}
.yed{bottom:663.405000px;}
.y56{bottom:663.945000px;}
.y18f{bottom:664.125000px;}
.ya0{bottom:664.485000px;}
.y15{bottom:665.025000px;}
.y137{bottom:669.525000px;}
.y10d{bottom:670.785000px;}
.y14f{bottom:673.305000px;}
.y170{bottom:677.985000px;}
.y3b{bottom:683.205000px;}
.y72{bottom:683.745000px;}
.y55{bottom:683.925000px;}
.y8e{bottom:684.465000px;}
.y18e{bottom:684.645000px;}
.y14{bottom:685.005000px;}
.y134{bottom:685.725000px;}
.y3a{bottom:703.725000px;}
.y54{bottom:703.905000px;}
.y71{bottom:704.265000px;}
.y18d{bottom:704.625000px;}
.y13{bottom:704.805000px;}
.y9f{bottom:705.525000px;}
.y14e{bottom:707.505000px;}
.y10c{bottom:708.225000px;}
.y16f{bottom:712.185000px;}
.y39{bottom:724.245000px;}
.y12{bottom:724.785000px;}
.y18c{bottom:724.965000px;}
.y8d{bottom:725.325000px;}
.y9e{bottom:726.045000px;}
.y132{bottom:729.465000px;}
.yec{bottom:744.225000px;}
.y38{bottom:744.585000px;}
.y11{bottom:744.765000px;}
.yd3{bottom:745.305000px;}
.y8c{bottom:745.845000px;}
.y9d{bottom:746.025000px;}
.y16e{bottom:746.385000px;}
.yeb{bottom:759.885000px;}
.y10{bottom:764.565000px;}
.y37{bottom:765.105000px;}
.yd2{bottom:765.825000px;}
.y8b{bottom:766.005000px;}
.y16d{bottom:780.585000px;}
.y109{bottom:781.305000px;}
.yf{bottom:784.725000px;}
.y36{bottom:785.625000px;}
.y8a{bottom:785.805000px;}
.yd1{bottom:786.345000px;}
.y130{bottom:794.445000px;}
.y35{bottom:806.145000px;}
.yd0{bottom:806.865000px;}
.ye{bottom:807.045000px;}
.y16c{bottom:814.785000px;}
.y34{bottom:826.665000px;}
.yd{bottom:827.025000px;}
.ycf{bottom:827.385000px;}
.y12e{bottom:838.185000px;}
.yc{bottom:847.005000px;}
.y33{bottom:847.185000px;}
.y108{bottom:847.365000px;}
.yce{bottom:847.725000px;}
.y167{bottom:848.985000px;}
.yb{bottom:866.850000px;}
.y32{bottom:867.750000px;}
.ycd{bottom:867.930000px;}
.y12a{bottom:881.790000px;}
.ya{bottom:886.830000px;}
.y31{bottom:888.270000px;}
.y9{bottom:906.630000px;}
.y30{bottom:908.790000px;}
.y8{bottom:926.790000px;}
.y2f{bottom:929.310000px;}
.y7{bottom:948.570000px;}
.y2e{bottom:949.830000px;}
.y4{bottom:969.630000px;}
.y3{bottom:992.670000px;}
.y2{bottom:1018.770000px;}
.y1{bottom:1038.210000px;}
.h19{height:21.456000px;}
.h25{height:24.120000px;}
.h24{height:26.280000px;}
.h12{height:30.600000px;}
.h13{height:32.760000px;}
.h20{height:32.940000px;}
.h21{height:33.300000px;}
.h22{height:33.336000px;}
.hc{height:33.480000px;}
.he{height:33.516000px;}
.h14{height:34.740000px;}
.h15{height:35.676000px;}
.h17{height:35.820000px;}
.h18{height:36.720000px;}
.h11{height:38.340000px;}
.h16{height:40.320000px;}
.h1c{height:42.840000px;}
.h1b{height:42.876000px;}
.h1e{height:43.020000px;}
.h1f{height:43.056000px;}
.hd{height:43.506914px;}
.hb{height:43.565273px;}
.h4{height:48.224531px;}
.h8{height:48.289219px;}
.h6{height:48.353906px;}
.h5{height:52.488281px;}
.hf{height:54.900000px;}
.h3{height:62.028281px;}
.h1a{height:62.460000px;}
.h1d{height:64.260000px;}
.h10{height:64.440000px;}
.h9{height:68.084282px;}
.h7{height:68.956875px;}
.h1{height:74.004654px;}
.ha{height:74.340000px;}
.h2{height:84.898125px;}
.h23{height:95.256000px;}
.h0{height:1188.000000px;}
.w10{width:56.376000px;}
.w21{width:56.700000px;}
.w12{width:65.520000px;}
.w11{width:68.760000px;}
.w14{width:68.940000px;}
.w3{width:77.976000px;}
.w5{width:88.956000px;}
.w2{width:98.820000px;}
.w13{width:99.396000px;}
.w1{width:102.096000px;}
.w15{width:103.860000px;}
.wf{width:104.580000px;}
.w1f{width:104.796000px;}
.w8{width:105.696000px;}
.w1e{width:106.056000px;}
.w17{width:106.920000px;}
.we{width:108.936000px;}
.w4{width:112.140000px;}
.w9{width:126.576000px;}
.w1d{width:127.080000px;}
.w6{width:137.520000px;}
.w7{width:137.556000px;}
.w1c{width:148.176000px;}
.w19{width:150.870000px;}
.wd{width:152.130000px;}
.wa{width:159.480000px;}
.w20{width:169.230000px;}
.wc{width:175.890000px;}
.wb{width:194.610000px;}
.w18{width:210.450000px;}
.w1b{width:210.990000px;}
.w16{width:224.355000px;}
.w1a{width:225.075000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x17{left:7.740000px;}
.x4b{left:9.000000px;}
.x5d{left:10.080000px;}
.x1e{left:11.205000px;}
.x51{left:12.780000px;}
.x2d{left:14.760000px;}
.x46{left:16.410000px;}
.x52{left:18.360000px;}
.x4a{left:19.440000px;}
.x15{left:21.420000px;}
.x2b{left:22.680000px;}
.x5a{left:23.760000px;}
.x22{left:25.200000px;}
.x1a{left:27.210000px;}
.x57{left:28.260000px;}
.x28{left:30.285000px;}
.x20{left:31.530000px;}
.x42{left:33.480000px;}
.x2a{left:34.740000px;}
.x18{left:37.620000px;}
.x26{left:39.054000px;}
.x44{left:40.500000px;}
.x1f{left:41.940000px;}
.x33{left:43.014000px;}
.x1c{left:44.280000px;}
.x21{left:48.600000px;}
.x31{left:50.040000px;}
.x3f{left:51.660000px;}
.x3a{left:54.000000px;}
.x30{left:55.665000px;}
.x6c{left:57.420000px;}
.x68{left:59.754000px;}
.x2f{left:61.020000px;}
.x3c{left:63.045000px;}
.x32{left:66.600000px;}
.x37{left:67.680000px;}
.x6d{left:69.480000px;}
.x3e{left:71.685000px;}
.x3b{left:74.550000px;}
.x62{left:75.774000px;}
.x3d{left:78.165000px;}
.x67{left:79.734000px;}
.x66{left:86.214000px;}
.x5e{left:92.025000px;}
.x60{left:96.885000px;}
.x5f{left:99.405000px;}
.x56{left:104.430000px;}
.x4{left:108.036000px;}
.x10{left:111.636000px;}
.xf{left:118.116000px;}
.x6{left:122.976000px;}
.xe{left:124.416000px;}
.x11{left:135.036000px;}
.x61{left:151.050000px;}
.x35{left:160.410000px;}
.x12{left:162.030000px;}
.x25{left:178.950000px;}
.x2{left:195.510000px;}
.x36{left:196.950000px;}
.x7{left:198.210000px;}
.x3{left:203.790000px;}
.x13{left:205.950000px;}
.x41{left:216.030000px;}
.x14{left:217.650000px;}
.x5b{left:218.910000px;}
.x4d{left:220.890000px;}
.x53{left:246.810000px;}
.x40{left:249.510000px;}
.x27{left:262.470000px;}
.x59{left:270.255000px;}
.x4c{left:271.695000px;}
.x24{left:289.155000px;}
.x54{left:294.555000px;}
.x69{left:311.655000px;}
.x16{left:320.475000px;}
.x43{left:325.695000px;}
.x6a{left:345.675000px;}
.xc{left:356.115000px;}
.x9{left:382.395000px;}
.xa{left:384.375000px;}
.x38{left:392.475000px;}
.x55{left:399.315000px;}
.x29{left:400.755000px;}
.xb{left:411.195000px;}
.x19{left:420.015000px;}
.xd{left:427.035000px;}
.x45{left:431.175000px;}
.x34{left:459.105000px;}
.x63{left:469.905000px;}
.x4e{left:483.405000px;}
.x8{left:486.105000px;}
.x47{left:488.265000px;}
.x1b{left:498.705000px;}
.x2c{left:507.165000px;}
.x6b{left:515.805000px;}
.x4f{left:553.065000px;}
.x1{left:555.945000px;}
.x48{left:557.745000px;}
.x39{left:569.085000px;}
.x5c{left:581.865000px;}
.x64{left:597.705000px;}
.x1d{left:611.565000px;}
.x50{left:631.770000px;}
.x2e{left:634.470000px;}
.x49{left:636.450000px;}
.x23{left:641.670000px;}
.x58{left:684.330000px;}
.x65{left:704.490000px;}
.x5{left:785.310000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.736000pt;}
.ls3{letter-spacing:-0.332800pt;}
.ls15{letter-spacing:-0.284267pt;}
.lsd{letter-spacing:-0.271467pt;}
.lsc{letter-spacing:-0.233067pt;}
.ls8{letter-spacing:-0.217600pt;}
.lsf{letter-spacing:-0.135467pt;}
.ls13{letter-spacing:-0.097067pt;}
.ls7{letter-spacing:-0.005120pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.005120pt;}
.ls14{letter-spacing:0.106240pt;}
.ls5{letter-spacing:0.135467pt;}
.ls9{letter-spacing:0.146133pt;}
.ls2{letter-spacing:0.153600pt;}
.lse{letter-spacing:0.233067pt;}
.lsb{letter-spacing:0.271467pt;}
.ls10{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.444267pt;}
.ls12{letter-spacing:0.544000pt;}
.ls17{letter-spacing:6.031360pt;}
.ls16{letter-spacing:35.450027pt;}
.lsa{letter-spacing:52.730027pt;}
.ls0{letter-spacing:79.610027pt;}
.ws1{word-spacing:-58.880000pt;}
.ws0{word-spacing:-20.633600pt;}
.ws8{word-spacing:-14.991467pt;}
.wsb{word-spacing:-14.953067pt;}
.ws7{word-spacing:-14.866133pt;}
.ws2{word-spacing:-14.855467pt;}
.ws5{word-spacing:-14.725120pt;}
.wsd{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.714880pt;}
.wsc{word-spacing:-14.584533pt;}
.ws6{word-spacing:-14.502400pt;}
.ws9{word-spacing:-14.486933pt;}
.wsa{word-spacing:-14.448533pt;}
.ws11{word-spacing:-13.824000pt;}
.ws10{word-spacing:-13.724267pt;}
.wse{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.280000pt;}
.ws12{word-spacing:-12.995733pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-1.198080pt;}
._1{width:1.201280pt;}
._11{width:2.151040pt;}
._d{width:3.415040pt;}
._5{width:4.748800pt;}
._4{width:5.908480pt;}
._15{width:7.124480pt;}
._12{width:8.048640pt;}
._7{width:9.008640pt;}
._8{width:9.971200pt;}
._9{width:11.240107pt;}
._6{width:12.462080pt;}
._2{width:13.621760pt;}
._17{width:15.712427pt;}
._1a{width:16.729600pt;}
._f{width:17.781760pt;}
._10{width:18.685440pt;}
._18{width:19.878400pt;}
._16{width:20.939947pt;}
._14{width:22.376107pt;}
._13{width:23.375360pt;}
._c{width:24.376320pt;}
._a{width:25.871360pt;}
._b{width:27.058560pt;}
._19{width:28.068480pt;}
._e{width:29.852160pt;}
._3{width:30.853120pt;}
._1d{width:31.912960pt;}
._1c{width:33.679360pt;}
._1b{width:34.751147pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y12d{bottom:5.920000pt;}
.y146{bottom:6.080000pt;}
.y111{bottom:6.240000pt;}
.y136{bottom:6.400000pt;}
.y14a{bottom:6.426667pt;}
.yfb{bottom:7.840000pt;}
.y184{bottom:8.640000pt;}
.y182{bottom:10.560000pt;}
.y17f{bottom:10.880000pt;}
.yff{bottom:14.400000pt;}
.y101{bottom:16.320000pt;}
.yd9{bottom:16.640000pt;}
.y16b{bottom:16.680000pt;}
.y15a{bottom:16.800000pt;}
.y15d{bottom:16.960000pt;}
.ydb{bottom:17.120000pt;}
.y103{bottom:18.080000pt;}
.y105{bottom:18.880000pt;}
.y10b{bottom:19.040000pt;}
.y10e{bottom:19.840000pt;}
.yfd{bottom:21.280000pt;}
.y10a{bottom:23.360000pt;}
.y12c{bottom:24.480000pt;}
.y145{bottom:24.640000pt;}
.y131{bottom:25.280000pt;}
.y12f{bottom:25.320000pt;}
.y135{bottom:25.440000pt;}
.y149{bottom:25.466667pt;}
.yfa{bottom:26.400000pt;}
.y16a{bottom:35.080000pt;}
.yd8{bottom:35.200000pt;}
.ye0{bottom:36.000000pt;}
.ye1{bottom:36.160000pt;}
.y12b{bottom:43.040000pt;}
.y133{bottom:44.320000pt;}
.yf9{bottom:44.800000pt;}
.y6{bottom:51.520000pt;}
.yd7{bottom:53.600000pt;}
.y169{bottom:53.640000pt;}
.y5{bottom:70.560000pt;}
.y168{bottom:72.200000pt;}
.y166{bottom:100.640000pt;}
.yea{bottom:101.440000pt;}
.y107{bottom:104.000000pt;}
.y157{bottom:111.840000pt;}
.y129{bottom:113.920000pt;}
.y14d{bottom:114.720000pt;}
.ycc{bottom:114.880000pt;}
.y53{bottom:115.040000pt;}
.y2d{bottom:115.200000pt;}
.yb7{bottom:115.680000pt;}
.y18b{bottom:116.000000pt;}
.y70{bottom:117.760000pt;}
.y9c{bottom:118.400000pt;}
.ye9{bottom:119.200000pt;}
.y106{bottom:121.920000pt;}
.y156{bottom:129.920000pt;}
.y128{bottom:131.680000pt;}
.y14c{bottom:132.960000pt;}
.ycb{bottom:133.120000pt;}
.y52{bottom:133.280000pt;}
.y2c{bottom:133.440000pt;}
.yb6{bottom:133.600000pt;}
.y18a{bottom:134.240000pt;}
.y6f{bottom:136.000000pt;}
.y104{bottom:136.320000pt;}
.y9b{bottom:136.480000pt;}
.ye8{bottom:136.800000pt;}
.y155{bottom:143.840000pt;}
.y127{bottom:149.280000pt;}
.y14b{bottom:150.720000pt;}
.yca{bottom:151.360000pt;}
.y51{bottom:151.520000pt;}
.y2b{bottom:151.680000pt;}
.y189{bottom:152.320000pt;}
.y165{bottom:153.760000pt;}
.y6e{bottom:154.240000pt;}
.ye7{bottom:154.560000pt;}
.y9a{bottom:154.720000pt;}
.y148{bottom:165.120000pt;}
.y126{bottom:167.066667pt;}
.y102{bottom:168.666667pt;}
.yc9{bottom:169.466667pt;}
.y50{bottom:169.786667pt;}
.y2a{bottom:169.946667pt;}
.y188{bottom:170.586667pt;}
.y164{bottom:171.706667pt;}
.y6d{bottom:172.026667pt;}
.ye6{bottom:172.186667pt;}
.y1a3{bottom:172.666667pt;}
.y99{bottom:172.986667pt;}
.y125{bottom:184.666667pt;}
.yc8{bottom:187.706667pt;}
.yb5{bottom:187.866667pt;}
.y29{bottom:188.026667pt;}
.y187{bottom:188.826667pt;}
.y89{bottom:189.786667pt;}
.ye5{bottom:189.946667pt;}
.y6c{bottom:190.106667pt;}
.y1a2{bottom:190.906667pt;}
.y98{bottom:191.226667pt;}
.y100{bottom:200.186667pt;}
.y124{bottom:202.426667pt;}
.y147{bottom:204.026667pt;}
.yc7{bottom:205.946667pt;}
.y28{bottom:206.266667pt;}
.yb4{bottom:206.906667pt;}
.y186{bottom:207.066667pt;}
.ye4{bottom:207.546667pt;}
.y88{bottom:207.866667pt;}
.y163{bottom:208.186667pt;}
.y6b{bottom:208.346667pt;}
.y1a1{bottom:209.146667pt;}
.y97{bottom:209.466667pt;}
.y123{bottom:220.506667pt;}
.yc6{bottom:224.186667pt;}
.y27{bottom:224.506667pt;}
.y185{bottom:224.986667pt;}
.yb3{bottom:225.146667pt;}
.ye3{bottom:225.306667pt;}
.y87{bottom:226.106667pt;}
.y162{bottom:226.426667pt;}
.y6a{bottom:226.586667pt;}
.y1a0{bottom:227.386667pt;}
.y96{bottom:227.706667pt;}
.yfe{bottom:229.946667pt;}
.y122{bottom:238.746667pt;}
.y183{bottom:239.386667pt;}
.y26{bottom:242.426667pt;}
.y4f{bottom:242.746667pt;}
.ye2{bottom:242.906667pt;}
.yb2{bottom:243.386667pt;}
.y86{bottom:244.346667pt;}
.y161{bottom:244.666667pt;}
.y69{bottom:244.826667pt;}
.y19f{bottom:245.626667pt;}
.y95{bottom:245.946667pt;}
.y121{bottom:256.826667pt;}
.ydf{bottom:257.306667pt;}
.yfc{bottom:257.786667pt;}
.yc5{bottom:260.666667pt;}
.y4e{bottom:260.826667pt;}
.y181{bottom:261.466667pt;}
.yb1{bottom:261.626667pt;}
.y85{bottom:262.586667pt;}
.y68{bottom:263.066667pt;}
.y19e{bottom:263.546667pt;}
.y94{bottom:263.706667pt;}
.y120{bottom:275.066667pt;}
.y25{bottom:276.186667pt;}
.y160{bottom:276.986667pt;}
.yc4{bottom:278.906667pt;}
.y4d{bottom:279.066667pt;}
.yb0{bottom:279.866667pt;}
.y84{bottom:280.826667pt;}
.y19d{bottom:281.146667pt;}
.y67{bottom:281.306667pt;}
.y93{bottom:281.466667pt;}
.y180{bottom:285.626667pt;}
.yf8{bottom:292.506667pt;}
.y11f{bottom:292.986667pt;}
.yc3{bottom:297.146667pt;}
.y4c{bottom:297.306667pt;}
.yaf{bottom:298.106667pt;}
.y83{bottom:298.906667pt;}
.y66{bottom:299.546667pt;}
.yde{bottom:306.746667pt;}
.y15f{bottom:307.386667pt;}
.y24{bottom:309.946667pt;}
.y11e{bottom:310.586667pt;}
.yc2{bottom:315.386667pt;}
.y4b{bottom:315.546667pt;}
.yae{bottom:315.866667pt;}
.y19c{bottom:316.986667pt;}
.y82{bottom:317.146667pt;}
.y65{bottom:317.786667pt;}
.y17e{bottom:324.346667pt;}
.y23{bottom:327.546667pt;}
.y11d{bottom:328.666667pt;}
.yc1{bottom:333.626667pt;}
.y4a{bottom:333.786667pt;}
.yad{bottom:333.946667pt;}
.y19b{bottom:335.066667pt;}
.y81{bottom:335.386667pt;}
.y64{bottom:336.026667pt;}
.ydd{bottom:337.146667pt;}
.y15e{bottom:337.786667pt;}
.y144{bottom:341.946667pt;}
.y22{bottom:345.306667pt;}
.y11c{bottom:346.906667pt;}
.yc0{bottom:351.866667pt;}
.y49{bottom:352.026667pt;}
.yac{bottom:352.186667pt;}
.y17d{bottom:352.666667pt;}
.y19a{bottom:353.306667pt;}
.y80{bottom:353.626667pt;}
.y63{bottom:354.266667pt;}
.yf7{bottom:354.426667pt;}
.y143{bottom:359.866667pt;}
.y21{bottom:362.906667pt;}
.y11b{bottom:365.026667pt;}
.ydc{bottom:367.586667pt;}
.y15c{bottom:368.226667pt;}
.ybf{bottom:369.986667pt;}
.y48{bottom:370.306667pt;}
.yab{bottom:370.466667pt;}
.y17c{bottom:370.946667pt;}
.y199{bottom:371.586667pt;}
.y7f{bottom:371.906667pt;}
.y62{bottom:372.546667pt;}
.y142{bottom:377.986667pt;}
.y11a{bottom:384.066667pt;}
.ybe{bottom:388.226667pt;}
.y47{bottom:388.546667pt;}
.y17b{bottom:389.186667pt;}
.y7e{bottom:389.826667pt;}
.yf6{bottom:390.306667pt;}
.y61{bottom:390.626667pt;}
.y141{bottom:396.066667pt;}
.y20{bottom:396.706667pt;}
.yda{bottom:397.986667pt;}
.y15b{bottom:398.466667pt;}
.y119{bottom:402.306667pt;}
.ybd{bottom:406.146667pt;}
.y46{bottom:406.786667pt;}
.y7d{bottom:407.426667pt;}
.yaa{bottom:407.586667pt;}
.y198{bottom:408.066667pt;}
.yf5{bottom:408.386667pt;}
.y60{bottom:408.866667pt;}
.y1f{bottom:414.306667pt;}
.y118{bottom:420.386667pt;}
.ybc{bottom:424.226667pt;}
.y45{bottom:425.026667pt;}
.y17a{bottom:425.346667pt;}
.y7c{bottom:425.506667pt;}
.ya9{bottom:425.826667pt;}
.y197{bottom:426.306667pt;}
.yf4{bottom:426.626667pt;}
.y5f{bottom:427.106667pt;}
.yd6{bottom:428.386667pt;}
.y159{bottom:428.866667pt;}
.y1e{bottom:432.066667pt;}
.y140{bottom:432.546667pt;}
.y117{bottom:439.426667pt;}
.ybb{bottom:442.466667pt;}
.y179{bottom:442.946667pt;}
.y44{bottom:443.266667pt;}
.y154{bottom:443.426667pt;}
.y7b{bottom:443.746667pt;}
.ya8{bottom:443.906667pt;}
.y196{bottom:444.546667pt;}
.yf3{bottom:444.866667pt;}
.y5e{bottom:445.026667pt;}
.y92{bottom:445.346667pt;}
.y1d{bottom:449.666667pt;}
.y13f{bottom:450.466667pt;}
.y116{bottom:457.666667pt;}
.y153{bottom:457.826667pt;}
.yba{bottom:460.546667pt;}
.y178{bottom:461.026667pt;}
.y43{bottom:461.346667pt;}
.y7a{bottom:461.986667pt;}
.y5d{bottom:462.626667pt;}
.y195{bottom:462.786667pt;}
.ya7{bottom:462.946667pt;}
.yf2{bottom:463.106667pt;}
.y91{bottom:463.586667pt;}
.y1c{bottom:467.426667pt;}
.y13e{bottom:468.066667pt;}
.y115{bottom:475.906667pt;}
.y177{bottom:479.266667pt;}
.y42{bottom:479.586667pt;}
.y79{bottom:480.226667pt;}
.y5c{bottom:480.706667pt;}
.ya6{bottom:481.026667pt;}
.yf1{bottom:481.346667pt;}
.y90{bottom:481.506667pt;}
.y1b{bottom:485.026667pt;}
.y13d{bottom:486.146667pt;}
.y114{bottom:494.146667pt;}
.y176{bottom:497.506667pt;}
.yb9{bottom:497.666667pt;}
.y41{bottom:497.826667pt;}
.y78{bottom:498.466667pt;}
.y5b{bottom:498.946667pt;}
.y8f{bottom:499.106667pt;}
.y194{bottom:499.266667pt;}
.yd5{bottom:499.426667pt;}
.ya5{bottom:500.066667pt;}
.y1a{bottom:502.786667pt;}
.y13c{bottom:504.386667pt;}
.y152{bottom:507.266667pt;}
.y113{bottom:511.906667pt;}
.y175{bottom:515.746667pt;}
.y40{bottom:516.066667pt;}
.y77{bottom:516.706667pt;}
.yf0{bottom:516.866667pt;}
.y5a{bottom:517.186667pt;}
.yd4{bottom:517.346667pt;}
.y193{bottom:517.506667pt;}
.ya4{bottom:518.306667pt;}
.y19{bottom:520.386667pt;}
.y13b{bottom:522.626667pt;}
.y112{bottom:529.666667pt;}
.y174{bottom:533.986667pt;}
.y3f{bottom:534.306667pt;}
.y158{bottom:534.466667pt;}
.y76{bottom:534.946667pt;}
.y59{bottom:535.426667pt;}
.y192{bottom:535.586667pt;}
.ya3{bottom:536.546667pt;}
.y151{bottom:537.666667pt;}
.y18{bottom:538.146667pt;}
.y13a{bottom:540.866667pt;}
.y110{bottom:544.066667pt;}
.y173{bottom:552.226667pt;}
.y3e{bottom:552.546667pt;}
.yb8{bottom:552.706667pt;}
.y75{bottom:553.026667pt;}
.yef{bottom:553.186667pt;}
.y58{bottom:553.666667pt;}
.y191{bottom:553.826667pt;}
.ya2{bottom:554.306667pt;}
.y17{bottom:555.746667pt;}
.y139{bottom:559.106667pt;}
.y10f{bottom:563.773333pt;}
.y150{bottom:568.093333pt;}
.y172{bottom:570.333333pt;}
.y3d{bottom:570.813333pt;}
.y74{bottom:571.293333pt;}
.yee{bottom:571.453333pt;}
.y57{bottom:571.933333pt;}
.y190{bottom:572.093333pt;}
.ya1{bottom:572.413333pt;}
.y16{bottom:573.533333pt;}
.y138{bottom:577.373333pt;}
.y171{bottom:588.253333pt;}
.y3c{bottom:589.053333pt;}
.y73{bottom:589.533333pt;}
.yed{bottom:589.693333pt;}
.y56{bottom:590.173333pt;}
.y18f{bottom:590.333333pt;}
.ya0{bottom:590.653333pt;}
.y15{bottom:591.133333pt;}
.y137{bottom:595.133333pt;}
.y10d{bottom:596.253333pt;}
.y14f{bottom:598.493333pt;}
.y170{bottom:602.653333pt;}
.y3b{bottom:607.293333pt;}
.y72{bottom:607.773333pt;}
.y55{bottom:607.933333pt;}
.y8e{bottom:608.413333pt;}
.y18e{bottom:608.573333pt;}
.y14{bottom:608.893333pt;}
.y134{bottom:609.533333pt;}
.y3a{bottom:625.533333pt;}
.y54{bottom:625.693333pt;}
.y71{bottom:626.013333pt;}
.y18d{bottom:626.333333pt;}
.y13{bottom:626.493333pt;}
.y9f{bottom:627.133333pt;}
.y14e{bottom:628.893333pt;}
.y10c{bottom:629.533333pt;}
.y16f{bottom:633.053333pt;}
.y39{bottom:643.773333pt;}
.y12{bottom:644.253333pt;}
.y18c{bottom:644.413333pt;}
.y8d{bottom:644.733333pt;}
.y9e{bottom:645.373333pt;}
.y132{bottom:648.413333pt;}
.yec{bottom:661.533333pt;}
.y38{bottom:661.853333pt;}
.y11{bottom:662.013333pt;}
.yd3{bottom:662.493333pt;}
.y8c{bottom:662.973333pt;}
.y9d{bottom:663.133333pt;}
.y16e{bottom:663.453333pt;}
.yeb{bottom:675.453333pt;}
.y10{bottom:679.613333pt;}
.y37{bottom:680.093333pt;}
.yd2{bottom:680.733333pt;}
.y8b{bottom:680.893333pt;}
.y16d{bottom:693.853333pt;}
.y109{bottom:694.493333pt;}
.yf{bottom:697.533333pt;}
.y36{bottom:698.333333pt;}
.y8a{bottom:698.493333pt;}
.yd1{bottom:698.973333pt;}
.y130{bottom:706.173333pt;}
.y35{bottom:716.573333pt;}
.yd0{bottom:717.213333pt;}
.ye{bottom:717.373333pt;}
.y16c{bottom:724.253333pt;}
.y34{bottom:734.813333pt;}
.yd{bottom:735.133333pt;}
.ycf{bottom:735.453333pt;}
.y12e{bottom:745.053333pt;}
.yc{bottom:752.893333pt;}
.y33{bottom:753.053333pt;}
.y108{bottom:753.213333pt;}
.yce{bottom:753.533333pt;}
.y167{bottom:754.653333pt;}
.yb{bottom:770.533333pt;}
.y32{bottom:771.333333pt;}
.ycd{bottom:771.493333pt;}
.y12a{bottom:783.813333pt;}
.ya{bottom:788.293333pt;}
.y31{bottom:789.573333pt;}
.y9{bottom:805.893333pt;}
.y30{bottom:807.813333pt;}
.y8{bottom:823.813333pt;}
.y2f{bottom:826.053333pt;}
.y7{bottom:843.173333pt;}
.y2e{bottom:844.293333pt;}
.y4{bottom:861.893333pt;}
.y3{bottom:882.373333pt;}
.y2{bottom:905.573333pt;}
.y1{bottom:922.853333pt;}
.h19{height:19.072000pt;}
.h25{height:21.440000pt;}
.h24{height:23.360000pt;}
.h12{height:27.200000pt;}
.h13{height:29.120000pt;}
.h20{height:29.280000pt;}
.h21{height:29.600000pt;}
.h22{height:29.632000pt;}
.hc{height:29.760000pt;}
.he{height:29.792000pt;}
.h14{height:30.880000pt;}
.h15{height:31.712000pt;}
.h17{height:31.840000pt;}
.h18{height:32.640000pt;}
.h11{height:34.080000pt;}
.h16{height:35.840000pt;}
.h1c{height:38.080000pt;}
.h1b{height:38.112000pt;}
.h1e{height:38.240000pt;}
.h1f{height:38.272000pt;}
.hd{height:38.672812pt;}
.hb{height:38.724688pt;}
.h4{height:42.866250pt;}
.h8{height:42.923750pt;}
.h6{height:42.981250pt;}
.h5{height:46.656250pt;}
.hf{height:48.800000pt;}
.h3{height:55.136250pt;}
.h1a{height:55.520000pt;}
.h1d{height:57.120000pt;}
.h10{height:57.280000pt;}
.h9{height:60.519362pt;}
.h7{height:61.295000pt;}
.h1{height:65.781915pt;}
.ha{height:66.080000pt;}
.h2{height:75.465000pt;}
.h23{height:84.672000pt;}
.h0{height:1056.000000pt;}
.w10{width:50.112000pt;}
.w21{width:50.400000pt;}
.w12{width:58.240000pt;}
.w11{width:61.120000pt;}
.w14{width:61.280000pt;}
.w3{width:69.312000pt;}
.w5{width:79.072000pt;}
.w2{width:87.840000pt;}
.w13{width:88.352000pt;}
.w1{width:90.752000pt;}
.w15{width:92.320000pt;}
.wf{width:92.960000pt;}
.w1f{width:93.152000pt;}
.w8{width:93.952000pt;}
.w1e{width:94.272000pt;}
.w17{width:95.040000pt;}
.we{width:96.832000pt;}
.w4{width:99.680000pt;}
.w9{width:112.512000pt;}
.w1d{width:112.960000pt;}
.w6{width:122.240000pt;}
.w7{width:122.272000pt;}
.w1c{width:131.712000pt;}
.w19{width:134.106667pt;}
.wd{width:135.226667pt;}
.wa{width:141.760000pt;}
.w20{width:150.426667pt;}
.wc{width:156.346667pt;}
.wb{width:172.986667pt;}
.w18{width:187.066667pt;}
.w1b{width:187.546667pt;}
.w16{width:199.426667pt;}
.w1a{width:200.066667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x17{left:6.880000pt;}
.x4b{left:8.000000pt;}
.x5d{left:8.960000pt;}
.x1e{left:9.960000pt;}
.x51{left:11.360000pt;}
.x2d{left:13.120000pt;}
.x46{left:14.586667pt;}
.x52{left:16.320000pt;}
.x4a{left:17.280000pt;}
.x15{left:19.040000pt;}
.x2b{left:20.160000pt;}
.x5a{left:21.120000pt;}
.x22{left:22.400000pt;}
.x1a{left:24.186667pt;}
.x57{left:25.120000pt;}
.x28{left:26.920000pt;}
.x20{left:28.026667pt;}
.x42{left:29.760000pt;}
.x2a{left:30.880000pt;}
.x18{left:33.440000pt;}
.x26{left:34.714667pt;}
.x44{left:36.000000pt;}
.x1f{left:37.280000pt;}
.x33{left:38.234667pt;}
.x1c{left:39.360000pt;}
.x21{left:43.200000pt;}
.x31{left:44.480000pt;}
.x3f{left:45.920000pt;}
.x3a{left:48.000000pt;}
.x30{left:49.480000pt;}
.x6c{left:51.040000pt;}
.x68{left:53.114667pt;}
.x2f{left:54.240000pt;}
.x3c{left:56.040000pt;}
.x32{left:59.200000pt;}
.x37{left:60.160000pt;}
.x6d{left:61.760000pt;}
.x3e{left:63.720000pt;}
.x3b{left:66.266667pt;}
.x62{left:67.354667pt;}
.x3d{left:69.480000pt;}
.x67{left:70.874667pt;}
.x66{left:76.634667pt;}
.x5e{left:81.800000pt;}
.x60{left:86.120000pt;}
.x5f{left:88.360000pt;}
.x56{left:92.826667pt;}
.x4{left:96.032000pt;}
.x10{left:99.232000pt;}
.xf{left:104.992000pt;}
.x6{left:109.312000pt;}
.xe{left:110.592000pt;}
.x11{left:120.032000pt;}
.x61{left:134.266667pt;}
.x35{left:142.586667pt;}
.x12{left:144.026667pt;}
.x25{left:159.066667pt;}
.x2{left:173.786667pt;}
.x36{left:175.066667pt;}
.x7{left:176.186667pt;}
.x3{left:181.146667pt;}
.x13{left:183.066667pt;}
.x41{left:192.026667pt;}
.x14{left:193.466667pt;}
.x5b{left:194.586667pt;}
.x4d{left:196.346667pt;}
.x53{left:219.386667pt;}
.x40{left:221.786667pt;}
.x27{left:233.306667pt;}
.x59{left:240.226667pt;}
.x4c{left:241.506667pt;}
.x24{left:257.026667pt;}
.x54{left:261.826667pt;}
.x69{left:277.026667pt;}
.x16{left:284.866667pt;}
.x43{left:289.506667pt;}
.x6a{left:307.266667pt;}
.xc{left:316.546667pt;}
.x9{left:339.906667pt;}
.xa{left:341.666667pt;}
.x38{left:348.866667pt;}
.x55{left:354.946667pt;}
.x29{left:356.226667pt;}
.xb{left:365.506667pt;}
.x19{left:373.346667pt;}
.xd{left:379.586667pt;}
.x45{left:383.266667pt;}
.x34{left:408.093333pt;}
.x63{left:417.693333pt;}
.x4e{left:429.693333pt;}
.x8{left:432.093333pt;}
.x47{left:434.013333pt;}
.x1b{left:443.293333pt;}
.x2c{left:450.813333pt;}
.x6b{left:458.493333pt;}
.x4f{left:491.613333pt;}
.x1{left:494.173333pt;}
.x48{left:495.773333pt;}
.x39{left:505.853333pt;}
.x5c{left:517.213333pt;}
.x64{left:531.293333pt;}
.x1d{left:543.613333pt;}
.x50{left:561.573333pt;}
.x2e{left:563.973333pt;}
.x49{left:565.733333pt;}
.x23{left:570.373333pt;}
.x58{left:608.293333pt;}
.x65{left:626.213333pt;}
.x5{left:698.053333pt;}
}




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