
    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_8b8740af1fecfc1ca3c7041d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.087402;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_ace86029730009af3fa2cb8d.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_481bb8bd174652b2a3612a4c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.087402;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_cf64e2ac5dfc5e2ea35c7428.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_72d20be88ec151f1bd2310c9.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_3203ddbaebed66840a81c377.woff')format("woff");}.ff6{font-family:ff6;line-height:0.977539;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_48cb8b261451286876a1ed71.woff')format("woff");}.ff7{font-family:ff7;line-height:1.201172;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_c1d041d703b56d7352467455.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1f9923df025d58bce6107995.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_3897d9def7fef3f22ba43548.woff')format("woff");}.ffa{font-family:ffa;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.ls10{letter-spacing:-0.978000px;}
.ls8{letter-spacing:-0.762000px;}
.ls6{letter-spacing:-0.696000px;}
.ls12{letter-spacing:-0.648000px;}
.ls4{letter-spacing:-0.207600px;}
.ls11{letter-spacing:-0.181200px;}
.lse{letter-spacing:-0.158400px;}
.ls16{letter-spacing:-0.103800px;}
.lsf{letter-spacing:-0.094800px;}
.ls15{letter-spacing:-0.069000px;}
.ls5{letter-spacing:-0.051840px;}
.lsd{letter-spacing:-0.026640px;}
.ls2{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.023040px;}
.ls1{letter-spacing:0.100800px;}
.lsb{letter-spacing:0.147000px;}
.ls13{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.220200px;}
.ls17{letter-spacing:0.265200px;}
.ls14{letter-spacing:0.305400px;}
.lsa{letter-spacing:0.308400px;}
.ls7{letter-spacing:0.324000px;}
.ls9{letter-spacing:39.161280px;}
.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;}
}
.ws11{word-spacing:-66.240000px;}
.ws0{word-spacing:-18.753000px;}
.ws8{word-spacing:-14.881200px;}
.ws13{word-spacing:-14.878200px;}
.ws16{word-spacing:-14.838000px;}
.ws9{word-spacing:-14.719800px;}
.ws4{word-spacing:-14.673600px;}
.ws2{word-spacing:-14.595840px;}
.ws1{word-spacing:-14.572800px;}
.ws14{word-spacing:-14.503800px;}
.ws15{word-spacing:-14.469000px;}
.ws12{word-spacing:-13.924800px;}
.ws3{word-spacing:-13.876800px;}
.wsc{word-spacing:-13.160160px;}
.wsa{word-spacing:-13.147200px;}
.wsb{word-spacing:-13.120560px;}
.ws6{word-spacing:-12.204000px;}
.ws7{word-spacing:-11.880000px;}
.wse{word-spacing:-8.458800px;}
.wsd{word-spacing:-8.395200px;}
.ws10{word-spacing:-8.372400px;}
.wsf{word-spacing:-7.575600px;}
.ws5{word-spacing:0.000000px;}
._0{margin-left:-1.013040px;}
._2{width:1.046160px;}
._1{width:2.308560px;}
._3{width:3.550560px;}
._c{width:4.769280px;}
._d{width:5.862240px;}
._e{width:6.982560px;}
._b{width:8.034480px;}
._9{width:9.538560px;}
._a{width:10.750320px;}
._13{width:11.966640px;}
._8{width:13.512960px;}
._5{width:15.348720px;}
._4{width:16.663680px;}
._16{width:17.867520px;}
._f{width:19.077120px;}
._10{width:20.242080px;}
._18{width:21.461760px;}
._14{width:22.852800px;}
._17{width:24.025680px;}
._15{width:25.447680px;}
._12{width:26.496000px;}
._11{width:27.626400px;}
._7{width:28.829520px;}
._6{width:29.967840px;}
._1a{width:31.078080px;}
._1c{width:32.590080px;}
._1d{width:33.735600px;}
._1e{width:35.173440px;}
._1b{width:36.630720px;}
._21{width:38.372400px;}
._23{width:39.545280px;}
._22{width:41.664960px;}
._1f{width:42.923520px;}
._20{width:44.049600px;}
._24{width:45.639360px;}
._19{width:47.494080px;}
.fc8{color:rgb(0,0,255);}
.fc7{color:rgb(54,96,145);}
.fc5{color:rgb(17,85,204);}
.fc4{color:rgb(200,16,46);}
.fc3{color:rgb(0,32,96);}
.fc2{color:rgb(0,51,102);}
.fc6{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(38,38,38);}
.fs8{font-size:38.880000px;}
.fs0{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs6{font-size:63.360000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs2{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:2.700000px;}
.yed{bottom:3.240000px;}
.ye6{bottom:3.420000px;}
.ya2{bottom:6.480000px;}
.yaa{bottom:6.510000px;}
.y9f{bottom:6.660000px;}
.y93{bottom:9.180000px;}
.ye3{bottom:9.360000px;}
.y4c{bottom:9.540000px;}
.ye7{bottom:12.060000px;}
.ye9{bottom:12.240000px;}
.yae{bottom:13.665000px;}
.ybc{bottom:13.680000px;}
.yac{bottom:14.025000px;}
.yb0{bottom:14.205000px;}
.yb7{bottom:14.220000px;}
.yc7{bottom:14.580000px;}
.y74{bottom:17.640000px;}
.yb2{bottom:17.820000px;}
.y11d{bottom:18.000000px;}
.y17c{bottom:18.360000px;}
.y19f{bottom:18.540000px;}
.y4b{bottom:18.900000px;}
.yd3{bottom:19.080000px;}
.y10a{bottom:19.260000px;}
.y14d{bottom:19.440000px;}
.y130{bottom:19.620000px;}
.y13f{bottom:19.800000px;}
.ye5{bottom:20.880000px;}
.yea{bottom:21.060000px;}
.yb4{bottom:25.020000px;}
.yf1{bottom:29.745000px;}
.yf0{bottom:38.565000px;}
.y23{bottom:46.260000px;}
.y2{bottom:46.620000px;}
.y1{bottom:65.196000px;}
.y1f{bottom:96.156000px;}
.y138{bottom:116.856000px;}
.y14c{bottom:119.736000px;}
.y92{bottom:121.536000px;}
.y21{bottom:124.020000px;}
.y1e{bottom:127.296000px;}
.yd2{bottom:128.016000px;}
.y73{bottom:128.376000px;}
.y12f{bottom:130.176000px;}
.y109{bottom:130.356000px;}
.y16b{bottom:132.336000px;}
.y4a{bottom:135.396000px;}
.y17b{bottom:138.816000px;}
.y143{bottom:138.996000px;}
.y137{bottom:139.176000px;}
.y91{bottom:143.856000px;}
.yd1{bottom:150.150000px;}
.y72{bottom:150.510000px;}
.y12e{bottom:152.310000px;}
.y19c{bottom:153.750000px;}
.y16a{bottom:154.470000px;}
.y11c{bottom:156.630000px;}
.y14b{bottom:156.990000px;}
.yb1{bottom:157.725000px;}
.y17a{bottom:158.070000px;}
.ye2{bottom:161.310000px;}
.y90{bottom:166.170000px;}
.y108{bottom:167.610000px;}
.yd0{bottom:172.470000px;}
.y49{bottom:172.650000px;}
.y19b{bottom:173.010000px;}
.y12d{bottom:174.630000px;}
.y169{bottom:176.790000px;}
.y179{bottom:177.510000px;}
.y14a{bottom:179.130000px;}
.ye1{bottom:183.630000px;}
.y1c{bottom:184.710000px;}
.y71{bottom:187.770000px;}
.y8f{bottom:188.310000px;}
.y107{bottom:189.750000px;}
.y19a{bottom:192.450000px;}
.y11b{bottom:193.890000px;}
.ycf{bottom:194.610000px;}
.y48{bottom:194.970000px;}
.yaf{bottom:195.165000px;}
.y12c{bottom:196.950000px;}
.y168{bottom:198.930000px;}
.ye0{bottom:205.950000px;}
.y1b{bottom:206.130000px;}
.y8e{bottom:210.630000px;}
.y106{bottom:212.070000px;}
.y149{bottom:212.790000px;}
.yce{bottom:216.930000px;}
.y47{bottom:217.110000px;}
.y178{bottom:217.830000px;}
.y12b{bottom:219.090000px;}
.y142{bottom:220.710000px;}
.y167{bottom:221.250000px;}
.y70{bottom:225.030000px;}
.y1a{bottom:227.370000px;}
.ydf{bottom:228.090000px;}
.y11a{bottom:231.150000px;}
.yad{bottom:232.605000px;}
.y8d{bottom:232.770000px;}
.y105{bottom:234.390000px;}
.y177{bottom:237.090000px;}
.ycd{bottom:239.250000px;}
.y46{bottom:239.430000px;}
.y141{bottom:243.030000px;}
.y166{bottom:243.390000px;}
.y6f{bottom:247.350000px;}
.yde{bottom:250.410000px;}
.y199{bottom:252.210000px;}
.y8c{bottom:255.090000px;}
.y12a{bottom:256.350000px;}
.y104{bottom:256.530000px;}
.ycc{bottom:261.390000px;}
.y45{bottom:261.570000px;}
.y19{bottom:266.610000px;}
.y119{bottom:268.230000px;}
.yab{bottom:269.145000px;}
.y6e{bottom:269.670000px;}
.ydd{bottom:272.550000px;}
.y140{bottom:276.690000px;}
.y8b{bottom:277.410000px;}
.y129{bottom:278.670000px;}
.y103{bottom:278.850000px;}
.y165{bottom:280.650000px;}
.ycb{bottom:283.710000px;}
.y136{bottom:287.670000px;}
.y6d{bottom:291.810000px;}
.y198{bottom:292.530000px;}
.ydc{bottom:294.870000px;}
.y176{bottom:296.850000px;}
.y44{bottom:298.830000px;}
.y8a{bottom:299.550000px;}
.y128{bottom:300.810000px;}
.y102{bottom:300.990000px;}
.y164{bottom:302.970000px;}
.y118{bottom:305.490000px;}
.yca{bottom:305.850000px;}
.ya9{bottom:306.585000px;}
.y18{bottom:306.930000px;}
.y135{bottom:309.855000px;}
.y197{bottom:311.835000px;}
.y6c{bottom:314.175000px;}
.y175{bottom:316.155000px;}
.ydb{bottom:317.055000px;}
.y43{bottom:321.195000px;}
.y89{bottom:321.915000px;}
.y127{bottom:323.175000px;}
.y101{bottom:323.355000px;}
.y163{bottom:325.335000px;}
.y117{bottom:327.855000px;}
.yc9{bottom:328.215000px;}
.ya8{bottom:328.755000px;}
.y196{bottom:331.275000px;}
.y174{bottom:335.595000px;}
.y6b{bottom:336.315000px;}
.yda{bottom:339.375000px;}
.y42{bottom:343.515000px;}
.y88{bottom:344.055000px;}
.y126{bottom:345.315000px;}
.y17{bottom:347.115000px;}
.y162{bottom:347.475000px;}
.y116{bottom:350.175000px;}
.ya7{bottom:351.075000px;}
.y6a{bottom:358.635000px;}
.y100{bottom:360.615000px;}
.yd9{bottom:361.695000px;}
.yc8{bottom:365.475000px;}
.y41{bottom:365.655000px;}
.y87{bottom:366.375000px;}
.y125{bottom:367.635000px;}
.y161{bottom:369.795000px;}
.y195{bottom:371.955000px;}
.y115{bottom:372.315000px;}
.ya6{bottom:373.215000px;}
.y173{bottom:375.915000px;}
.yc6{bottom:381.855000px;}
.yff{bottom:382.755000px;}
.yd8{bottom:383.835000px;}
.y16{bottom:387.435000px;}
.y40{bottom:387.975000px;}
.y86{bottom:388.695000px;}
.y124{bottom:389.955000px;}
.y194{bottom:391.575000px;}
.y160{bottom:391.935000px;}
.y114{bottom:394.635000px;}
.y172{bottom:395.175000px;}
.ya5{bottom:395.535000px;}
.y69{bottom:395.895000px;}
.yfe{bottom:405.075000px;}
.yd7{bottom:406.155000px;}
.y15{bottom:409.755000px;}
.y3f{bottom:410.115000px;}
.y85{bottom:410.835000px;}
.y123{bottom:412.095000px;}
.y15f{bottom:414.255000px;}
.y171{bottom:414.615000px;}
.y113{bottom:416.775000px;}
.y158{bottom:416.955000px;}
.ya4{bottom:417.855000px;}
.y68{bottom:418.035000px;}
.yc5{bottom:420.195000px;}
.yfd{bottom:427.395000px;}
.yd6{bottom:428.295000px;}
.y193{bottom:431.895000px;}
.y3e{bottom:432.435000px;}
.y84{bottom:433.155000px;}
.y122{bottom:434.415000px;}
.y15e{bottom:436.395000px;}
.y112{bottom:439.095000px;}
.ya3{bottom:439.995000px;}
.y67{bottom:440.355000px;}
.y14{bottom:443.235000px;}
.yfc{bottom:449.535000px;}
.y192{bottom:451.335000px;}
.y3d{bottom:454.575000px;}
.y170{bottom:454.935000px;}
.yc4{bottom:456.555000px;}
.y15d{bottom:458.715000px;}
.y111{bottom:461.235000px;}
.y157{bottom:461.415000px;}
.yd5{bottom:461.955000px;}
.ya1{bottom:462.315000px;}
.y66{bottom:462.675000px;}
.y83{bottom:470.415000px;}
.y191{bottom:470.595000px;}
.yfb{bottom:471.855000px;}
.y16f{bottom:474.375000px;}
.y3c{bottom:476.895000px;}
.y121{bottom:478.875000px;}
.y15c{bottom:481.035000px;}
.y110{bottom:483.555000px;}
.y156{bottom:483.735000px;}
.ya0{bottom:484.455000px;}
.y65{bottom:484.815000px;}
.y13{bottom:487.155000px;}
.y16e{bottom:493.635000px;}
.yc3{bottom:493.995000px;}
.y3b{bottom:499.215000px;}
.y120{bottom:501.015000px;}
.y10f{bottom:505.875000px;}
.y64{bottom:507.135000px;}
.y9e{bottom:507.495000px;}
.y82{bottom:507.675000px;}
.y12{bottom:509.475000px;}
.y190{bottom:511.095000px;}
.yfa{bottom:516.315000px;}
.y15b{bottom:518.295000px;}
.y11f{bottom:523.335000px;}
.y10e{bottom:528.015000px;}
.y155{bottom:528.195000px;}
.y63{bottom:529.275000px;}
.y81{bottom:529.815000px;}
.y18f{bottom:530.355000px;}
.yc2{bottom:531.435000px;}
.y16d{bottom:533.955000px;}
.y3a{bottom:536.475000px;}
.yf9{bottom:538.455000px;}
.y11{bottom:549.615000px;}
.y10d{bottom:550.335000px;}
.y62{bottom:551.595000px;}
.y80{bottom:552.135000px;}
.y16c{bottom:553.395000px;}
.y15a{bottom:555.375000px;}
.y11e{bottom:556.815000px;}
.y39{bottom:558.615000px;}
.yf8{bottom:560.805000px;}
.yc1{bottom:568.005000px;}
.y10c{bottom:572.505000px;}
.y154{bottom:572.685000px;}
.y61{bottom:573.765000px;}
.y7f{bottom:574.305000px;}
.y38{bottom:580.965000px;}
.y159{bottom:589.065000px;}
.y10{bottom:589.965000px;}
.y18e{bottom:590.145000px;}
.y153{bottom:594.825000px;}
.y7e{bottom:596.625000px;}
.yf7{bottom:598.065000px;}
.y37{bottom:603.105000px;}
.y148{bottom:604.365000px;}
.yc0{bottom:605.445000px;}
.y10b{bottom:605.985000px;}
.y18d{bottom:609.405000px;}
.y60{bottom:611.025000px;}
.y9d{bottom:611.565000px;}
.yf6{bottom:614.445000px;}
.y152{bottom:617.145000px;}
.y7d{bottom:618.765000px;}
.yf{bottom:626.505000px;}
.y147{bottom:626.685000px;}
.y36{bottom:628.305000px;}
.y18c{bottom:628.845000px;}
.y9c{bottom:633.885000px;}
.y151{bottom:639.465000px;}
.y7c{bottom:641.085000px;}
.ybf{bottom:642.885000px;}
.y5f{bottom:648.285000px;}
.y146{bottom:648.825000px;}
.yf5{bottom:649.725000px;}
.y9b{bottom:656.025000px;}
.y7b{bottom:663.405000px;}
.y18b{bottom:669.165000px;}
.y35{bottom:669.885000px;}
.y5e{bottom:670.605000px;}
.y145{bottom:671.145000px;}
.ye{bottom:673.665000px;}
.y150{bottom:676.725000px;}
.y9a{bottom:678.345000px;}
.ybe{bottom:679.245000px;}
.yf4{bottom:684.825000px;}
.y7a{bottom:685.545000px;}
.y18a{bottom:688.425000px;}
.y34{bottom:692.205000px;}
.y5d{bottom:692.745000px;}
.y144{bottom:693.285000px;}
.y14f{bottom:698.865000px;}
.y99{bottom:700.665000px;}
.y79{bottom:707.865000px;}
.yd{bottom:710.205000px;}
.y33{bottom:714.345000px;}
.y13e{bottom:715.605000px;}
.ybd{bottom:716.685000px;}
.yf3{bottom:719.925000px;}
.y98{bottom:722.805000px;}
.y189{bottom:728.745000px;}
.y5c{bottom:730.005000px;}
.y14e{bottom:732.525000px;}
.y32{bottom:736.665000px;}
.y13d{bottom:737.745000px;}
.y97{bottom:745.125000px;}
.y188{bottom:748.185000px;}
.yc{bottom:749.985000px;}
.y5b{bottom:752.325000px;}
.ybb{bottom:754.125000px;}
.yf2{bottom:755.205000px;}
.y31{bottom:758.805000px;}
.y13c{bottom:760.065000px;}
.y78{bottom:767.265000px;}
.yb{bottom:772.485000px;}
.y30{bottom:781.125000px;}
.y13b{bottom:782.385000px;}
.y187{bottom:788.505000px;}
.y5a{bottom:789.585000px;}
.yef{bottom:790.305000px;}
.yba{bottom:790.485000px;}
.y2f{bottom:803.445000px;}
.y13a{bottom:804.525000px;}
.ya{bottom:804.705000px;}
.y186{bottom:807.765000px;}
.y59{bottom:811.770000px;}
.y134{bottom:819.690000px;}
.y2e{bottom:825.630000px;}
.y139{bottom:826.890000px;}
.y185{bottom:827.250000px;}
.yb9{bottom:827.970000px;}
.y77{bottom:834.090000px;}
.y9{bottom:837.150000px;}
.y133{bottom:841.830000px;}
.yee{bottom:843.090000px;}
.y2d{bottom:847.950000px;}
.y58{bottom:849.030000px;}
.y76{bottom:856.410000px;}
.y132{bottom:864.150000px;}
.y184{bottom:867.570000px;}
.y2c{bottom:870.090000px;}
.y57{bottom:871.350000px;}
.yec{bottom:878.370000px;}
.y96{bottom:878.550000px;}
.y8{bottom:881.430000px;}
.y131{bottom:886.290000px;}
.y183{bottom:886.830000px;}
.yb8{bottom:887.010000px;}
.y2b{bottom:892.410000px;}
.y75{bottom:893.670000px;}
.y95{bottom:900.870000px;}
.y7{bottom:905.550000px;}
.y182{bottom:906.270000px;}
.y56{bottom:908.610000px;}
.yeb{bottom:913.470000px;}
.y2a{bottom:914.550000px;}
.yb6{bottom:924.450000px;}
.y55{bottom:930.750000px;}
.y6{bottom:933.990000px;}
.y29{bottom:936.870000px;}
.y94{bottom:938.130000px;}
.y181{bottom:946.590000px;}
.ye8{bottom:948.570000px;}
.y54{bottom:953.070000px;}
.y28{bottom:959.190000px;}
.yd4{bottom:960.270000px;}
.yb5{bottom:961.890000px;}
.y19e{bottom:962.970000px;}
.y180{bottom:965.850000px;}
.y5{bottom:975.390000px;}
.y27{bottom:981.330000px;}
.ye4{bottom:984.570000px;}
.y17f{bottom:985.290000px;}
.y53{bottom:997.530000px;}
.y26{bottom:1003.650000px;}
.y4{bottom:1004.190000px;}
.y17e{bottom:1004.550000px;}
.y52{bottom:1019.850000px;}
.yb3{bottom:1020.930000px;}
.y19d{bottom:1025.610000px;}
.y25{bottom:1025.790000px;}
.y51{bottom:1041.990000px;}
.y17d{bottom:1045.050000px;}
.y20{bottom:1045.440000px;}
.y3{bottom:1048.650000px;}
.y24{bottom:1059.990000px;}
.y50{bottom:1064.340000px;}
.y4f{bottom:1089.720000px;}
.y4e{bottom:1105.560000px;}
.y4d{bottom:1121.400000px;}
.y22{bottom:1122.660000px;}
.h12{height:22.125000px;}
.h13{height:22.161000px;}
.h11{height:22.305000px;}
.h10{height:26.280000px;}
.he{height:26.460000px;}
.h1e{height:35.085000px;}
.h22{height:35.100000px;}
.h20{height:35.265000px;}
.h23{height:35.280000px;}
.h1c{height:36.345000px;}
.h19{height:36.360000px;}
.h15{height:36.525000px;}
.h1b{height:36.570000px;}
.h14{height:37.425000px;}
.h1a{height:37.440000px;}
.h18{height:37.462500px;}
.h1d{height:38.325000px;}
.h1{height:41.927344px;}
.ha{height:43.057617px;}
.h6{height:46.933594px;}
.h1f{height:50.597578px;}
.hc{height:51.939844px;}
.h21{height:52.762500px;}
.h8{height:55.068750px;}
.h7{height:56.084062px;}
.h2{height:57.571875px;}
.h17{height:59.025000px;}
.h16{height:59.070000px;}
.hf{height:68.084282px;}
.h4{height:73.216406px;}
.h5{height:81.078047px;}
.hd{height:86.255508px;}
.h3{height:111.558516px;}
.hb{height:137.700000px;}
.h9{height:140.760000px;}
.h0{height:1188.000000px;}
.w2{width:36.540000px;}
.w3{width:36.720000px;}
.wc{width:57.765000px;}
.w9{width:67.485000px;}
.w1{width:80.280000px;}
.wa{width:80.985000px;}
.wb{width:94.521000px;}
.w8{width:94.536000px;}
.w6{width:103.309500px;}
.w7{width:207.195000px;}
.w5{width:351.795000px;}
.w4{width:358.399500px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1e{left:8.089500px;}
.x13{left:10.950000px;}
.x15{left:40.140000px;}
.x1d{left:99.946500px;}
.x1{left:108.036000px;}
.x28{left:111.456000px;}
.xe{left:115.236000px;}
.x7{left:117.576000px;}
.x26{left:125.136000px;}
.x1b{left:135.036000px;}
.x8{left:142.956000px;}
.x18{left:144.216000px;}
.x2b{left:160.230000px;}
.x1c{left:162.030000px;}
.x2{left:178.050000px;}
.x1f{left:211.365000px;}
.x16{left:217.470000px;}
.x5{left:229.170000px;}
.x2c{left:255.630000px;}
.x19{left:259.410000px;}
.x11{left:263.550000px;}
.x3{left:300.495000px;}
.x10{left:305.715000px;}
.x6{left:340.635000px;}
.xc{left:349.095000px;}
.xf{left:354.135000px;}
.xa{left:374.475000px;}
.xd{left:418.575000px;}
.x4{left:459.075000px;}
.x20{left:513.120000px;}
.x1a{left:557.385000px;}
.x21{left:580.620000px;}
.xb{left:600.405000px;}
.x22{left:661.620000px;}
.x27{left:717.810000px;}
.x29{left:723.390000px;}
.x2a{left:742.650000px;}
.x24{left:755.070000px;}
.x23{left:756.150000px;}
.x25{left:784.230000px;}
.x9{left:810.150000px;}
.x12{left:837.000000px;}
.x17{left:868.500000px;}
.x14{left:877.320000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls10{letter-spacing:-0.869333pt;}
.ls8{letter-spacing:-0.677333pt;}
.ls6{letter-spacing:-0.618667pt;}
.ls12{letter-spacing:-0.576000pt;}
.ls4{letter-spacing:-0.184533pt;}
.ls11{letter-spacing:-0.161067pt;}
.lse{letter-spacing:-0.140800pt;}
.ls16{letter-spacing:-0.092267pt;}
.lsf{letter-spacing:-0.084267pt;}
.ls15{letter-spacing:-0.061333pt;}
.ls5{letter-spacing:-0.046080pt;}
.lsd{letter-spacing:-0.023680pt;}
.ls2{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.020480pt;}
.ls1{letter-spacing:0.089600pt;}
.lsb{letter-spacing:0.130667pt;}
.ls13{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.195733pt;}
.ls17{letter-spacing:0.235733pt;}
.ls14{letter-spacing:0.271467pt;}
.lsa{letter-spacing:0.274133pt;}
.ls7{letter-spacing:0.288000pt;}
.ls9{letter-spacing:34.810027pt;}
.ws11{word-spacing:-58.880000pt;}
.ws0{word-spacing:-16.669333pt;}
.ws8{word-spacing:-13.227733pt;}
.ws13{word-spacing:-13.225067pt;}
.ws16{word-spacing:-13.189333pt;}
.ws9{word-spacing:-13.084267pt;}
.ws4{word-spacing:-13.043200pt;}
.ws2{word-spacing:-12.974080pt;}
.ws1{word-spacing:-12.953600pt;}
.ws14{word-spacing:-12.892267pt;}
.ws15{word-spacing:-12.861333pt;}
.ws12{word-spacing:-12.377600pt;}
.ws3{word-spacing:-12.334933pt;}
.wsc{word-spacing:-11.697920pt;}
.wsa{word-spacing:-11.686400pt;}
.wsb{word-spacing:-11.662720pt;}
.ws6{word-spacing:-10.848000pt;}
.ws7{word-spacing:-10.560000pt;}
.wse{word-spacing:-7.518933pt;}
.wsd{word-spacing:-7.462400pt;}
.ws10{word-spacing:-7.442133pt;}
.wsf{word-spacing:-6.733867pt;}
.ws5{word-spacing:0.000000pt;}
._0{margin-left:-0.900480pt;}
._2{width:0.929920pt;}
._1{width:2.052053pt;}
._3{width:3.156053pt;}
._c{width:4.239360pt;}
._d{width:5.210880pt;}
._e{width:6.206720pt;}
._b{width:7.141760pt;}
._9{width:8.478720pt;}
._a{width:9.555840pt;}
._13{width:10.637013pt;}
._8{width:12.011520pt;}
._5{width:13.643307pt;}
._4{width:14.812160pt;}
._16{width:15.882240pt;}
._f{width:16.957440pt;}
._10{width:17.992960pt;}
._18{width:19.077120pt;}
._14{width:20.313600pt;}
._17{width:21.356160pt;}
._15{width:22.620160pt;}
._12{width:23.552000pt;}
._11{width:24.556800pt;}
._7{width:25.626240pt;}
._6{width:26.638080pt;}
._1a{width:27.624960pt;}
._1c{width:28.968960pt;}
._1d{width:29.987200pt;}
._1e{width:31.265280pt;}
._1b{width:32.560640pt;}
._21{width:34.108800pt;}
._23{width:35.151360pt;}
._22{width:37.035520pt;}
._1f{width:38.154240pt;}
._20{width:39.155200pt;}
._24{width:40.568320pt;}
._19{width:42.216960pt;}
.fs8{font-size:34.560000pt;}
.fs0{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs6{font-size:56.320000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs2{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:2.400000pt;}
.yed{bottom:2.880000pt;}
.ye6{bottom:3.040000pt;}
.ya2{bottom:5.760000pt;}
.yaa{bottom:5.786667pt;}
.y9f{bottom:5.920000pt;}
.y93{bottom:8.160000pt;}
.ye3{bottom:8.320000pt;}
.y4c{bottom:8.480000pt;}
.ye7{bottom:10.720000pt;}
.ye9{bottom:10.880000pt;}
.yae{bottom:12.146667pt;}
.ybc{bottom:12.160000pt;}
.yac{bottom:12.466667pt;}
.yb0{bottom:12.626667pt;}
.yb7{bottom:12.640000pt;}
.yc7{bottom:12.960000pt;}
.y74{bottom:15.680000pt;}
.yb2{bottom:15.840000pt;}
.y11d{bottom:16.000000pt;}
.y17c{bottom:16.320000pt;}
.y19f{bottom:16.480000pt;}
.y4b{bottom:16.800000pt;}
.yd3{bottom:16.960000pt;}
.y10a{bottom:17.120000pt;}
.y14d{bottom:17.280000pt;}
.y130{bottom:17.440000pt;}
.y13f{bottom:17.600000pt;}
.ye5{bottom:18.560000pt;}
.yea{bottom:18.720000pt;}
.yb4{bottom:22.240000pt;}
.yf1{bottom:26.440000pt;}
.yf0{bottom:34.280000pt;}
.y23{bottom:41.120000pt;}
.y2{bottom:41.440000pt;}
.y1{bottom:57.952000pt;}
.y1f{bottom:85.472000pt;}
.y138{bottom:103.872000pt;}
.y14c{bottom:106.432000pt;}
.y92{bottom:108.032000pt;}
.y21{bottom:110.240000pt;}
.y1e{bottom:113.152000pt;}
.yd2{bottom:113.792000pt;}
.y73{bottom:114.112000pt;}
.y12f{bottom:115.712000pt;}
.y109{bottom:115.872000pt;}
.y16b{bottom:117.632000pt;}
.y4a{bottom:120.352000pt;}
.y17b{bottom:123.392000pt;}
.y143{bottom:123.552000pt;}
.y137{bottom:123.712000pt;}
.y91{bottom:127.872000pt;}
.yd1{bottom:133.466667pt;}
.y72{bottom:133.786667pt;}
.y12e{bottom:135.386667pt;}
.y19c{bottom:136.666667pt;}
.y16a{bottom:137.306667pt;}
.y11c{bottom:139.226667pt;}
.y14b{bottom:139.546667pt;}
.yb1{bottom:140.200000pt;}
.y17a{bottom:140.506667pt;}
.ye2{bottom:143.386667pt;}
.y90{bottom:147.706667pt;}
.y108{bottom:148.986667pt;}
.yd0{bottom:153.306667pt;}
.y49{bottom:153.466667pt;}
.y19b{bottom:153.786667pt;}
.y12d{bottom:155.226667pt;}
.y169{bottom:157.146667pt;}
.y179{bottom:157.786667pt;}
.y14a{bottom:159.226667pt;}
.ye1{bottom:163.226667pt;}
.y1c{bottom:164.186667pt;}
.y71{bottom:166.906667pt;}
.y8f{bottom:167.386667pt;}
.y107{bottom:168.666667pt;}
.y19a{bottom:171.066667pt;}
.y11b{bottom:172.346667pt;}
.ycf{bottom:172.986667pt;}
.y48{bottom:173.306667pt;}
.yaf{bottom:173.480000pt;}
.y12c{bottom:175.066667pt;}
.y168{bottom:176.826667pt;}
.ye0{bottom:183.066667pt;}
.y1b{bottom:183.226667pt;}
.y8e{bottom:187.226667pt;}
.y106{bottom:188.506667pt;}
.y149{bottom:189.146667pt;}
.yce{bottom:192.826667pt;}
.y47{bottom:192.986667pt;}
.y178{bottom:193.626667pt;}
.y12b{bottom:194.746667pt;}
.y142{bottom:196.186667pt;}
.y167{bottom:196.666667pt;}
.y70{bottom:200.026667pt;}
.y1a{bottom:202.106667pt;}
.ydf{bottom:202.746667pt;}
.y11a{bottom:205.466667pt;}
.yad{bottom:206.760000pt;}
.y8d{bottom:206.906667pt;}
.y105{bottom:208.346667pt;}
.y177{bottom:210.746667pt;}
.ycd{bottom:212.666667pt;}
.y46{bottom:212.826667pt;}
.y141{bottom:216.026667pt;}
.y166{bottom:216.346667pt;}
.y6f{bottom:219.866667pt;}
.yde{bottom:222.586667pt;}
.y199{bottom:224.186667pt;}
.y8c{bottom:226.746667pt;}
.y12a{bottom:227.866667pt;}
.y104{bottom:228.026667pt;}
.ycc{bottom:232.346667pt;}
.y45{bottom:232.506667pt;}
.y19{bottom:236.986667pt;}
.y119{bottom:238.426667pt;}
.yab{bottom:239.240000pt;}
.y6e{bottom:239.706667pt;}
.ydd{bottom:242.266667pt;}
.y140{bottom:245.946667pt;}
.y8b{bottom:246.586667pt;}
.y129{bottom:247.706667pt;}
.y103{bottom:247.866667pt;}
.y165{bottom:249.466667pt;}
.ycb{bottom:252.186667pt;}
.y136{bottom:255.706667pt;}
.y6d{bottom:259.386667pt;}
.y198{bottom:260.026667pt;}
.ydc{bottom:262.106667pt;}
.y176{bottom:263.866667pt;}
.y44{bottom:265.626667pt;}
.y8a{bottom:266.266667pt;}
.y128{bottom:267.386667pt;}
.y102{bottom:267.546667pt;}
.y164{bottom:269.306667pt;}
.y118{bottom:271.546667pt;}
.yca{bottom:271.866667pt;}
.ya9{bottom:272.520000pt;}
.y18{bottom:272.826667pt;}
.y135{bottom:275.426667pt;}
.y197{bottom:277.186667pt;}
.y6c{bottom:279.266667pt;}
.y175{bottom:281.026667pt;}
.ydb{bottom:281.826667pt;}
.y43{bottom:285.506667pt;}
.y89{bottom:286.146667pt;}
.y127{bottom:287.266667pt;}
.y101{bottom:287.426667pt;}
.y163{bottom:289.186667pt;}
.y117{bottom:291.426667pt;}
.yc9{bottom:291.746667pt;}
.ya8{bottom:292.226667pt;}
.y196{bottom:294.466667pt;}
.y174{bottom:298.306667pt;}
.y6b{bottom:298.946667pt;}
.yda{bottom:301.666667pt;}
.y42{bottom:305.346667pt;}
.y88{bottom:305.826667pt;}
.y126{bottom:306.946667pt;}
.y17{bottom:308.546667pt;}
.y162{bottom:308.866667pt;}
.y116{bottom:311.266667pt;}
.ya7{bottom:312.066667pt;}
.y6a{bottom:318.786667pt;}
.y100{bottom:320.546667pt;}
.yd9{bottom:321.506667pt;}
.yc8{bottom:324.866667pt;}
.y41{bottom:325.026667pt;}
.y87{bottom:325.666667pt;}
.y125{bottom:326.786667pt;}
.y161{bottom:328.706667pt;}
.y195{bottom:330.626667pt;}
.y115{bottom:330.946667pt;}
.ya6{bottom:331.746667pt;}
.y173{bottom:334.146667pt;}
.yc6{bottom:339.426667pt;}
.yff{bottom:340.226667pt;}
.yd8{bottom:341.186667pt;}
.y16{bottom:344.386667pt;}
.y40{bottom:344.866667pt;}
.y86{bottom:345.506667pt;}
.y124{bottom:346.626667pt;}
.y194{bottom:348.066667pt;}
.y160{bottom:348.386667pt;}
.y114{bottom:350.786667pt;}
.y172{bottom:351.266667pt;}
.ya5{bottom:351.586667pt;}
.y69{bottom:351.906667pt;}
.yfe{bottom:360.066667pt;}
.yd7{bottom:361.026667pt;}
.y15{bottom:364.226667pt;}
.y3f{bottom:364.546667pt;}
.y85{bottom:365.186667pt;}
.y123{bottom:366.306667pt;}
.y15f{bottom:368.226667pt;}
.y171{bottom:368.546667pt;}
.y113{bottom:370.466667pt;}
.y158{bottom:370.626667pt;}
.ya4{bottom:371.426667pt;}
.y68{bottom:371.586667pt;}
.yc5{bottom:373.506667pt;}
.yfd{bottom:379.906667pt;}
.yd6{bottom:380.706667pt;}
.y193{bottom:383.906667pt;}
.y3e{bottom:384.386667pt;}
.y84{bottom:385.026667pt;}
.y122{bottom:386.146667pt;}
.y15e{bottom:387.906667pt;}
.y112{bottom:390.306667pt;}
.ya3{bottom:391.106667pt;}
.y67{bottom:391.426667pt;}
.y14{bottom:393.986667pt;}
.yfc{bottom:399.586667pt;}
.y192{bottom:401.186667pt;}
.y3d{bottom:404.066667pt;}
.y170{bottom:404.386667pt;}
.yc4{bottom:405.826667pt;}
.y15d{bottom:407.746667pt;}
.y111{bottom:409.986667pt;}
.y157{bottom:410.146667pt;}
.yd5{bottom:410.626667pt;}
.ya1{bottom:410.946667pt;}
.y66{bottom:411.266667pt;}
.y83{bottom:418.146667pt;}
.y191{bottom:418.306667pt;}
.yfb{bottom:419.426667pt;}
.y16f{bottom:421.666667pt;}
.y3c{bottom:423.906667pt;}
.y121{bottom:425.666667pt;}
.y15c{bottom:427.586667pt;}
.y110{bottom:429.826667pt;}
.y156{bottom:429.986667pt;}
.ya0{bottom:430.626667pt;}
.y65{bottom:430.946667pt;}
.y13{bottom:433.026667pt;}
.y16e{bottom:438.786667pt;}
.yc3{bottom:439.106667pt;}
.y3b{bottom:443.746667pt;}
.y120{bottom:445.346667pt;}
.y10f{bottom:449.666667pt;}
.y64{bottom:450.786667pt;}
.y9e{bottom:451.106667pt;}
.y82{bottom:451.266667pt;}
.y12{bottom:452.866667pt;}
.y190{bottom:454.306667pt;}
.yfa{bottom:458.946667pt;}
.y15b{bottom:460.706667pt;}
.y11f{bottom:465.186667pt;}
.y10e{bottom:469.346667pt;}
.y155{bottom:469.506667pt;}
.y63{bottom:470.466667pt;}
.y81{bottom:470.946667pt;}
.y18f{bottom:471.426667pt;}
.yc2{bottom:472.386667pt;}
.y16d{bottom:474.626667pt;}
.y3a{bottom:476.866667pt;}
.yf9{bottom:478.626667pt;}
.y11{bottom:488.546667pt;}
.y10d{bottom:489.186667pt;}
.y62{bottom:490.306667pt;}
.y80{bottom:490.786667pt;}
.y16c{bottom:491.906667pt;}
.y15a{bottom:493.666667pt;}
.y11e{bottom:494.946667pt;}
.y39{bottom:496.546667pt;}
.yf8{bottom:498.493333pt;}
.yc1{bottom:504.893333pt;}
.y10c{bottom:508.893333pt;}
.y154{bottom:509.053333pt;}
.y61{bottom:510.013333pt;}
.y7f{bottom:510.493333pt;}
.y38{bottom:516.413333pt;}
.y159{bottom:523.613333pt;}
.y10{bottom:524.413333pt;}
.y18e{bottom:524.573333pt;}
.y153{bottom:528.733333pt;}
.y7e{bottom:530.333333pt;}
.yf7{bottom:531.613333pt;}
.y37{bottom:536.093333pt;}
.y148{bottom:537.213333pt;}
.yc0{bottom:538.173333pt;}
.y10b{bottom:538.653333pt;}
.y18d{bottom:541.693333pt;}
.y60{bottom:543.133333pt;}
.y9d{bottom:543.613333pt;}
.yf6{bottom:546.173333pt;}
.y152{bottom:548.573333pt;}
.y7d{bottom:550.013333pt;}
.yf{bottom:556.893333pt;}
.y147{bottom:557.053333pt;}
.y36{bottom:558.493333pt;}
.y18c{bottom:558.973333pt;}
.y9c{bottom:563.453333pt;}
.y151{bottom:568.413333pt;}
.y7c{bottom:569.853333pt;}
.ybf{bottom:571.453333pt;}
.y5f{bottom:576.253333pt;}
.y146{bottom:576.733333pt;}
.yf5{bottom:577.533333pt;}
.y9b{bottom:583.133333pt;}
.y7b{bottom:589.693333pt;}
.y18b{bottom:594.813333pt;}
.y35{bottom:595.453333pt;}
.y5e{bottom:596.093333pt;}
.y145{bottom:596.573333pt;}
.ye{bottom:598.813333pt;}
.y150{bottom:601.533333pt;}
.y9a{bottom:602.973333pt;}
.ybe{bottom:603.773333pt;}
.yf4{bottom:608.733333pt;}
.y7a{bottom:609.373333pt;}
.y18a{bottom:611.933333pt;}
.y34{bottom:615.293333pt;}
.y5d{bottom:615.773333pt;}
.y144{bottom:616.253333pt;}
.y14f{bottom:621.213333pt;}
.y99{bottom:622.813333pt;}
.y79{bottom:629.213333pt;}
.yd{bottom:631.293333pt;}
.y33{bottom:634.973333pt;}
.y13e{bottom:636.093333pt;}
.ybd{bottom:637.053333pt;}
.yf3{bottom:639.933333pt;}
.y98{bottom:642.493333pt;}
.y189{bottom:647.773333pt;}
.y5c{bottom:648.893333pt;}
.y14e{bottom:651.133333pt;}
.y32{bottom:654.813333pt;}
.y13d{bottom:655.773333pt;}
.y97{bottom:662.333333pt;}
.y188{bottom:665.053333pt;}
.yc{bottom:666.653333pt;}
.y5b{bottom:668.733333pt;}
.ybb{bottom:670.333333pt;}
.yf2{bottom:671.293333pt;}
.y31{bottom:674.493333pt;}
.y13c{bottom:675.613333pt;}
.y78{bottom:682.013333pt;}
.yb{bottom:686.653333pt;}
.y30{bottom:694.333333pt;}
.y13b{bottom:695.453333pt;}
.y187{bottom:700.893333pt;}
.y5a{bottom:701.853333pt;}
.yef{bottom:702.493333pt;}
.yba{bottom:702.653333pt;}
.y2f{bottom:714.173333pt;}
.y13a{bottom:715.133333pt;}
.ya{bottom:715.293333pt;}
.y186{bottom:718.013333pt;}
.y59{bottom:721.573333pt;}
.y134{bottom:728.613333pt;}
.y2e{bottom:733.893333pt;}
.y139{bottom:735.013333pt;}
.y185{bottom:735.333333pt;}
.yb9{bottom:735.973333pt;}
.y77{bottom:741.413333pt;}
.y9{bottom:744.133333pt;}
.y133{bottom:748.293333pt;}
.yee{bottom:749.413333pt;}
.y2d{bottom:753.733333pt;}
.y58{bottom:754.693333pt;}
.y76{bottom:761.253333pt;}
.y132{bottom:768.133333pt;}
.y184{bottom:771.173333pt;}
.y2c{bottom:773.413333pt;}
.y57{bottom:774.533333pt;}
.yec{bottom:780.773333pt;}
.y96{bottom:780.933333pt;}
.y8{bottom:783.493333pt;}
.y131{bottom:787.813333pt;}
.y183{bottom:788.293333pt;}
.yb8{bottom:788.453333pt;}
.y2b{bottom:793.253333pt;}
.y75{bottom:794.373333pt;}
.y95{bottom:800.773333pt;}
.y7{bottom:804.933333pt;}
.y182{bottom:805.573333pt;}
.y56{bottom:807.653333pt;}
.yeb{bottom:811.973333pt;}
.y2a{bottom:812.933333pt;}
.yb6{bottom:821.733333pt;}
.y55{bottom:827.333333pt;}
.y6{bottom:830.213333pt;}
.y29{bottom:832.773333pt;}
.y94{bottom:833.893333pt;}
.y181{bottom:841.413333pt;}
.ye8{bottom:843.173333pt;}
.y54{bottom:847.173333pt;}
.y28{bottom:852.613333pt;}
.yd4{bottom:853.573333pt;}
.yb5{bottom:855.013333pt;}
.y19e{bottom:855.973333pt;}
.y180{bottom:858.533333pt;}
.y5{bottom:867.013333pt;}
.y27{bottom:872.293333pt;}
.ye4{bottom:875.173333pt;}
.y17f{bottom:875.813333pt;}
.y53{bottom:886.693333pt;}
.y26{bottom:892.133333pt;}
.y4{bottom:892.613333pt;}
.y17e{bottom:892.933333pt;}
.y52{bottom:906.533333pt;}
.yb3{bottom:907.493333pt;}
.y19d{bottom:911.653333pt;}
.y25{bottom:911.813333pt;}
.y51{bottom:926.213333pt;}
.y17d{bottom:928.933333pt;}
.y20{bottom:929.280000pt;}
.y3{bottom:932.133333pt;}
.y24{bottom:942.213333pt;}
.y50{bottom:946.080000pt;}
.y4f{bottom:968.640000pt;}
.y4e{bottom:982.720000pt;}
.y4d{bottom:996.800000pt;}
.y22{bottom:997.920000pt;}
.h12{height:19.666667pt;}
.h13{height:19.698667pt;}
.h11{height:19.826667pt;}
.h10{height:23.360000pt;}
.he{height:23.520000pt;}
.h1e{height:31.186667pt;}
.h22{height:31.200000pt;}
.h20{height:31.346667pt;}
.h23{height:31.360000pt;}
.h1c{height:32.306667pt;}
.h19{height:32.320000pt;}
.h15{height:32.466667pt;}
.h1b{height:32.506667pt;}
.h14{height:33.266667pt;}
.h1a{height:33.280000pt;}
.h18{height:33.300000pt;}
.h1d{height:34.066667pt;}
.h1{height:37.268750pt;}
.ha{height:38.273438pt;}
.h6{height:41.718750pt;}
.h1f{height:44.975625pt;}
.hc{height:46.168750pt;}
.h21{height:46.900000pt;}
.h8{height:48.950000pt;}
.h7{height:49.852500pt;}
.h2{height:51.175000pt;}
.h17{height:52.466667pt;}
.h16{height:52.506667pt;}
.hf{height:60.519362pt;}
.h4{height:65.081250pt;}
.h5{height:72.069375pt;}
.hd{height:76.671562pt;}
.h3{height:99.163125pt;}
.hb{height:122.400000pt;}
.h9{height:125.120000pt;}
.h0{height:1056.000000pt;}
.w2{width:32.480000pt;}
.w3{width:32.640000pt;}
.wc{width:51.346667pt;}
.w9{width:59.986667pt;}
.w1{width:71.360000pt;}
.wa{width:71.986667pt;}
.wb{width:84.018667pt;}
.w8{width:84.032000pt;}
.w6{width:91.830667pt;}
.w7{width:184.173333pt;}
.w5{width:312.706667pt;}
.w4{width:318.577333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:7.190667pt;}
.x13{left:9.733333pt;}
.x15{left:35.680000pt;}
.x1d{left:88.841333pt;}
.x1{left:96.032000pt;}
.x28{left:99.072000pt;}
.xe{left:102.432000pt;}
.x7{left:104.512000pt;}
.x26{left:111.232000pt;}
.x1b{left:120.032000pt;}
.x8{left:127.072000pt;}
.x18{left:128.192000pt;}
.x2b{left:142.426667pt;}
.x1c{left:144.026667pt;}
.x2{left:158.266667pt;}
.x1f{left:187.880000pt;}
.x16{left:193.306667pt;}
.x5{left:203.706667pt;}
.x2c{left:227.226667pt;}
.x19{left:230.586667pt;}
.x11{left:234.266667pt;}
.x3{left:267.106667pt;}
.x10{left:271.746667pt;}
.x6{left:302.786667pt;}
.xc{left:310.306667pt;}
.xf{left:314.786667pt;}
.xa{left:332.866667pt;}
.xd{left:372.066667pt;}
.x4{left:408.066667pt;}
.x20{left:456.106667pt;}
.x1a{left:495.453333pt;}
.x21{left:516.106667pt;}
.xb{left:533.693333pt;}
.x22{left:588.106667pt;}
.x27{left:638.053333pt;}
.x29{left:643.013333pt;}
.x2a{left:660.133333pt;}
.x24{left:671.173333pt;}
.x23{left:672.133333pt;}
.x25{left:697.093333pt;}
.x9{left:720.133333pt;}
.x12{left:744.000000pt;}
.x17{left:772.000000pt;}
.x14{left:779.840000pt;}
}




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