
    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_ab3443f6ad50220aa0879a3b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.084961;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_9b954037e98579c9544d79b6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.084961;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_e5910dfa9653d8d1b089ee35.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ef0a30e6102d82f541da9d38.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0f236b7768ccb847a1f07d00.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_46bee9213fc9329d7ba9a06b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.751953;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ad9759e522f7184fbdee9d38.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.752441;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_a9030c9ba2630eeaf78f9d05.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.751953;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_490efccf2b72d284903f6cb3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:20.880000px;}
.lsb{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.269400px;}
.ls6{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.012960px;}
.ls3{letter-spacing:0.018000px;}
.ls5{letter-spacing:0.161760px;}
.ls1{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.lsd{letter-spacing:16.506720px;}
.ls4{letter-spacing:37.566720px;}
.ls2{letter-spacing:42.048000px;}
.ls9{letter-spacing:46.026720px;}
.lsc{letter-spacing:64.026720px;}
.lse{letter-spacing:64.170720px;}
.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;}
}
.ws4{word-spacing:-59.760000px;}
.ws5{word-spacing:-54.000000px;}
.ws0{word-spacing:-15.300000px;}
.ws3{word-spacing:-14.940000px;}
.ws7{word-spacing:-13.500000px;}
.ws6{word-spacing:-13.140000px;}
.wsc{word-spacing:-12.420000px;}
.ws2{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.790600px;}
.wsb{word-spacing:-11.700000px;}
.ws9{word-spacing:-9.720000px;}
.wsa{word-spacing:-9.000000px;}
.ws8{word-spacing:0.000000px;}
._4{margin-left:-1.376160px;}
._1{width:1.135440px;}
._15{width:2.297280px;}
._a{width:3.320160px;}
._8{width:4.914000px;}
._9{width:5.991120px;}
._6{width:7.128000px;}
._7{width:8.154000px;}
._d{width:9.990000px;}
._b{width:11.204160px;}
._c{width:12.285840px;}
._14{width:13.470720px;}
._12{width:15.012000px;}
._11{width:16.020000px;}
._27{width:17.101920px;}
._18{width:18.108960px;}
._17{width:19.302480px;}
._1f{width:21.155040px;}
._16{width:22.649040px;}
._13{width:23.904000px;}
._21{width:25.517520px;}
._1a{width:27.429840px;}
._25{width:28.445760px;}
._1e{width:30.477600px;}
._1d{width:31.553280px;}
._19{width:33.464880px;}
._24{width:35.019360px;}
._23{width:36.632880px;}
._2a{width:38.365920px;}
._20{width:39.979440px;}
._1c{width:41.234400px;}
._1b{width:42.250320px;}
._22{width:44.760240px;}
._26{width:45.895680px;}
._28{width:51.154320px;}
._29{width:57.011040px;}
._2b{width:58.026960px;}
._f{width:66.096000px;}
._e{width:67.176000px;}
._2d{width:70.457040px;}
._2c{width:71.592480px;}
._3{width:131.442960px;}
._10{width:132.462000px;}
._2{width:342.981120px;}
._5{width:1018.427280px;}
._0{width:2857.020000px;}
.fc4{color:rgb(0,112,192);}
.fc6{color:rgb(0,176,80);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(238,0,0);}
.fs4{font-size:30.240000px;}
.fs7{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:2.520000px;}
.y45{bottom:2.556000px;}
.y39{bottom:2.880000px;}
.y17{bottom:3.240000px;}
.y31{bottom:5.940000px;}
.y7{bottom:8.316000px;}
.y43{bottom:8.496000px;}
.y7a{bottom:9.360000px;}
.y37{bottom:9.540000px;}
.yc{bottom:14.040000px;}
.ycb{bottom:16.200000px;}
.y8{bottom:16.236000px;}
.y7b{bottom:16.380000px;}
.y44{bottom:16.416000px;}
.y2f{bottom:19.440000px;}
.y124{bottom:20.340000px;}
.y12a{bottom:20.520000px;}
.yc7{bottom:23.220000px;}
.y36{bottom:25.200000px;}
.yca{bottom:30.105000px;}
.y111{bottom:30.240000px;}
.ya{bottom:35.460000px;}
.y2e{bottom:35.820000px;}
.yc8{bottom:36.945000px;}
.y123{bottom:37.620000px;}
.y129{bottom:37.794000px;}
.y35{bottom:40.680000px;}
.y46{bottom:41.400000px;}
.y110{bottom:43.920000px;}
.yc9{bottom:43.965000px;}
.y2d{bottom:51.300000px;}
.y122{bottom:54.900000px;}
.y128{bottom:55.074000px;}
.y34{bottom:56.160000px;}
.y10f{bottom:57.780000px;}
.y6{bottom:58.140000px;}
.y42{bottom:64.080000px;}
.y2c{bottom:66.780000px;}
.y33{bottom:71.640000px;}
.y121{bottom:72.180000px;}
.y127{bottom:72.354000px;}
.y2b{bottom:82.440000px;}
.y120{bottom:89.505000px;}
.y126{bottom:89.634000px;}
.y2a{bottom:97.950000px;}
.y38{bottom:106.245000px;}
.y11f{bottom:106.785000px;}
.yc4{bottom:112.536000px;}
.y29{bottom:113.430000px;}
.y41{bottom:127.116000px;}
.y125{bottom:128.016000px;}
.y28{bottom:128.910000px;}
.yc3{bottom:128.916000px;}
.yd5{bottom:130.536000px;}
.y108{bottom:142.776000px;}
.y40{bottom:144.396000px;}
.yc2{bottom:145.296000px;}
.y10c{bottom:147.096000px;}
.yd4{bottom:147.816000px;}
.y26{bottom:150.165000px;}
.y107{bottom:160.050000px;}
.y3f{bottom:161.670000px;}
.y10b{bottom:164.190000px;}
.yd3{bottom:165.090000px;}
.y25{bottom:165.645000px;}
.y106{bottom:177.150000px;}
.yc1{bottom:178.050000px;}
.y3e{bottom:178.770000px;}
.y9e{bottom:180.030000px;}
.y24{bottom:181.125000px;}
.y10a{bottom:181.470000px;}
.yd2{bottom:183.450000px;}
.yc0{bottom:194.430000px;}
.y3d{bottom:196.050000px;}
.y23{bottom:196.605000px;}
.y9d{bottom:197.310000px;}
.y109{bottom:198.750000px;}
.yd1{bottom:200.730000px;}
.ybf{bottom:210.990000px;}
.y105{bottom:211.710000px;}
.y22{bottom:212.265000px;}
.y3c{bottom:212.610000px;}
.y9c{bottom:214.590000px;}
.yd0{bottom:215.490000px;}
.y76{bottom:216.030000px;}
.y3b{bottom:227.730000px;}
.y21{bottom:227.745000px;}
.ybe{bottom:228.270000px;}
.y104{bottom:228.990000px;}
.ycf{bottom:229.890000px;}
.y9b{bottom:231.870000px;}
.y11e{bottom:232.410000px;}
.y75{bottom:233.310000px;}
.y20{bottom:243.225000px;}
.yce{bottom:244.470000px;}
.ybd{bottom:245.550000px;}
.y103{bottom:246.270000px;}
.y3a{bottom:246.810000px;}
.y9a{bottom:249.150000px;}
.y74{bottom:250.590000px;}
.y1f{bottom:258.705000px;}
.ycd{bottom:259.050000px;}
.y18{bottom:260.130000px;}
.ybc{bottom:262.830000px;}
.y102{bottom:263.370000px;}
.y99{bottom:266.250000px;}
.y73{bottom:267.690000px;}
.ycc{bottom:273.630000px;}
.y1e{bottom:274.365000px;}
.ybb{bottom:280.110000px;}
.y101{bottom:280.650000px;}
.y98{bottom:283.530000px;}
.y72{bottom:284.970000px;}
.yc6{bottom:288.210000px;}
.y1d{bottom:289.845000px;}
.yba{bottom:297.390000px;}
.y100{bottom:297.930000px;}
.y97{bottom:300.810000px;}
.y71{bottom:302.250000px;}
.y1c{bottom:305.325000px;}
.yb9{bottom:314.490000px;}
.yff{bottom:315.210000px;}
.y96{bottom:318.135000px;}
.y70{bottom:319.575000px;}
.y1b{bottom:320.835000px;}
.yb8{bottom:331.635000px;}
.yfe{bottom:332.535000px;}
.y95{bottom:335.415000px;}
.y1a{bottom:336.315000px;}
.y6f{bottom:336.855000px;}
.yc5{bottom:347.475000px;}
.yb7{bottom:348.015000px;}
.yfd{bottom:349.815000px;}
.y19{bottom:352.335000px;}
.y94{bottom:352.695000px;}
.y6e{bottom:354.135000px;}
.yb6{bottom:364.395000px;}
.yfc{bottom:366.915000px;}
.y93{bottom:369.795000px;}
.y6d{bottom:371.235000px;}
.y32{bottom:379.695000px;}
.yb5{bottom:380.775000px;}
.yfb{bottom:384.195000px;}
.y92{bottom:387.075000px;}
.y6c{bottom:388.515000px;}
.yb4{bottom:397.155000px;}
.yfa{bottom:401.475000px;}
.y91{bottom:404.355000px;}
.y6b{bottom:405.795000px;}
.yb3{bottom:413.535000px;}
.yf9{bottom:418.755000px;}
.y90{bottom:421.635000px;}
.y6a{bottom:423.075000px;}
.y11d{bottom:424.335000px;}
.yb2{bottom:430.095000px;}
.yf8{bottom:436.035000px;}
.y8f{bottom:438.915000px;}
.y69{bottom:440.355000px;}
.y11c{bottom:441.435000px;}
.yb1{bottom:446.655000px;}
.yf7{bottom:453.315000px;}
.y8e{bottom:456.195000px;}
.y68{bottom:457.455000px;}
.y11b{bottom:458.715000px;}
.yb0{bottom:463.575000px;}
.y30{bottom:464.835000px;}
.yf6{bottom:470.415000px;}
.y8d{bottom:472.575000px;}
.y67{bottom:474.735000px;}
.y11a{bottom:475.995000px;}
.yaf{bottom:476.895000px;}
.y27{bottom:485.535000px;}
.y8c{bottom:486.435000px;}
.yf5{bottom:487.695000px;}
.yae{bottom:491.475000px;}
.y66{bottom:492.015000px;}
.y119{bottom:493.275000px;}
.y8b{bottom:498.495000px;}
.yf4{bottom:504.975000px;}
.yad{bottom:505.875000px;}
.y65{bottom:509.295000px;}
.y118{bottom:510.555000px;}
.y8a{bottom:513.075000px;}
.yac{bottom:520.455000px;}
.yf3{bottom:522.255000px;}
.y64{bottom:526.575000px;}
.y89{bottom:527.655000px;}
.yab{bottom:535.035000px;}
.yf2{bottom:539.535000px;}
.y88{bottom:542.055000px;}
.y63{bottom:543.855000px;}
.y117{bottom:544.935000px;}
.yaa{bottom:549.615000px;}
.y87{bottom:556.635000px;}
.yf1{bottom:556.815000px;}
.y62{bottom:560.955000px;}
.y116{bottom:562.215000px;}
.y86{bottom:571.245000px;}
.yf0{bottom:573.945000px;}
.y61{bottom:578.265000px;}
.ya9{bottom:579.525000px;}
.y85{bottom:585.825000px;}
.ya8{bottom:589.605000px;}
.yef{bottom:591.225000px;}
.y60{bottom:595.545000px;}
.y115{bottom:596.805000px;}
.y84{bottom:600.405000px;}
.ya7{bottom:605.445000px;}
.yee{bottom:608.505000px;}
.y5f{bottom:612.825000px;}
.y114{bottom:614.085000px;}
.y83{bottom:614.805000px;}
.ya6{bottom:622.545000px;}
.yed{bottom:625.785000px;}
.y16{bottom:627.765000px;}
.y82{bottom:629.385000px;}
.y5e{bottom:630.105000px;}
.y113{bottom:631.185000px;}
.ya5{bottom:639.825000px;}
.yec{bottom:643.065000px;}
.y81{bottom:643.965000px;}
.y5d{bottom:647.385000px;}
.y112{bottom:648.465000px;}
.ya4{bottom:657.105000px;}
.y80{bottom:658.545000px;}
.yeb{bottom:660.165000px;}
.y15{bottom:662.325000px;}
.y10e{bottom:663.225000px;}
.y5c{bottom:664.485000px;}
.y7f{bottom:673.125000px;}
.ya3{bottom:674.385000px;}
.yea{bottom:677.445000px;}
.y5b{bottom:681.765000px;}
.y14{bottom:682.305000px;}
.y7e{bottom:687.705000px;}
.ya2{bottom:691.665000px;}
.ye9{bottom:695.805000px;}
.y5a{bottom:699.045000px;}
.y7d{bottom:702.105000px;}
.ya1{bottom:708.045000px;}
.y13{bottom:710.745000px;}
.ye8{bottom:713.085000px;}
.y59{bottom:716.325000px;}
.y7c{bottom:716.685000px;}
.ya0{bottom:721.005000px;}
.y9f{bottom:728.025000px;}
.y12{bottom:728.385000px;}
.ye7{bottom:730.365000px;}
.y79{bottom:731.265000px;}
.y10d{bottom:733.065000px;}
.y58{bottom:733.605000px;}
.ye6{bottom:747.645000px;}
.y11{bottom:749.625000px;}
.y57{bottom:750.885000px;}
.y78{bottom:761.325000px;}
.ye5{bottom:765.825000px;}
.y56{bottom:767.985000px;}
.y77{bottom:770.865000px;}
.y10{bottom:780.585000px;}
.ye4{bottom:783.105000px;}
.y55{bottom:785.265000px;}
.ye3{bottom:800.385000px;}
.y54{bottom:802.545000px;}
.yf{bottom:811.725000px;}
.ye2{bottom:817.665000px;}
.y53{bottom:819.870000px;}
.ye1{bottom:834.990000px;}
.y52{bottom:837.150000px;}
.ye{bottom:842.730000px;}
.ye0{bottom:853.170000px;}
.y51{bottom:854.250000px;}
.ydf{bottom:870.450000px;}
.y50{bottom:871.530000px;}
.yd{bottom:871.710000px;}
.yb{bottom:887.010000px;}
.yde{bottom:887.730000px;}
.y4f{bottom:888.810000px;}
.ydd{bottom:905.010000px;}
.y4e{bottom:906.090000px;}
.ydc{bottom:922.290000px;}
.y4d{bottom:923.370000px;}
.ydb{bottom:939.570000px;}
.y4c{bottom:940.650000px;}
.yda{bottom:956.670000px;}
.y4b{bottom:957.750000px;}
.yd9{bottom:973.950000px;}
.y4a{bottom:975.030000px;}
.yd8{bottom:991.230000px;}
.y49{bottom:992.310000px;}
.yd7{bottom:1008.510000px;}
.y48{bottom:1009.590000px;}
.yd6{bottom:1025.790000px;}
.y47{bottom:1026.870000px;}
.y5{bottom:1044.150000px;}
.y4{bottom:1061.250000px;}
.y3{bottom:1078.560000px;}
.y2{bottom:1096.560000px;}
.y1{bottom:1117.260000px;}
.h21{height:13.680000px;}
.h20{height:13.860000px;}
.h22{height:13.896000px;}
.hf{height:17.280000px;}
.h16{height:19.980000px;}
.h1e{height:21.114844px;}
.h1f{height:27.540000px;}
.h4{height:27.576000px;}
.h6{height:33.683203px;}
.h1d{height:34.036523px;}
.h12{height:37.705078px;}
.h18{height:38.100586px;}
.h7{height:39.336328px;}
.h11{height:39.972656px;}
.h14{height:39.999023px;}
.h5{height:41.726953px;}
.he{height:42.164648px;}
.h1b{height:43.506914px;}
.h1a{height:44.236406px;}
.h15{height:44.265586px;}
.h9{height:46.251562px;}
.hc{height:46.736719px;}
.h1c{height:48.027656px;}
.h2{height:48.496641px;}
.h3{height:50.800781px;}
.ha{height:53.755312px;}
.h23{height:55.116000px;}
.h1{height:58.429688px;}
.h24{height:69.120000px;}
.hd{height:75.410156px;}
.hb{height:76.201172px;}
.h17{height:84.240000px;}
.h26{height:103.500000px;}
.h19{height:118.836000px;}
.h25{height:120.636000px;}
.h13{height:141.516000px;}
.h8{height:153.900000px;}
.h10{height:366.915000px;}
.h0{height:1188.000000px;}
.w10{width:43.560000px;}
.w2{width:45.036000px;}
.wa{width:45.216000px;}
.w7{width:55.800000px;}
.w13{width:74.700000px;}
.w14{width:74.880000px;}
.w12{width:77.976000px;}
.w11{width:98.280000px;}
.we{width:137.196000px;}
.wf{width:138.960000px;}
.wc{width:142.236000px;}
.w8{width:149.976000px;}
.wb{width:156.240000px;}
.w9{width:167.400000px;}
.wd{width:170.310000px;}
.w6{width:211.710000px;}
.w15{width:329.250000px;}
.w5{width:596.805000px;}
.w3{width:783.510000px;}
.w16{width:800.790000px;}
.w4{width:821.850000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3b{left:2.340000px;}
.x2c{left:3.420000px;}
.x3d{left:5.400000px;}
.x12{left:6.480000px;}
.x14{left:7.560000px;}
.x5{left:8.640000px;}
.x2a{left:9.720000px;}
.x49{left:12.420000px;}
.x1f{left:13.860000px;}
.x1d{left:15.120000px;}
.x2f{left:17.640000px;}
.x11{left:19.980000px;}
.x41{left:21.960000px;}
.x16{left:23.265000px;}
.x3f{left:24.660000px;}
.x44{left:26.820000px;}
.x20{left:28.080000px;}
.x13{left:29.745000px;}
.x15{left:31.725000px;}
.x31{left:34.380000px;}
.x43{left:35.460000px;}
.x2d{left:37.665000px;}
.x33{left:40.320000px;}
.x42{left:41.580000px;}
.x8{left:45.540000px;}
.x22{left:50.040000px;}
.x4{left:53.999986px;}
.x38{left:59.579986px;}
.x3{left:60.659986px;}
.x29{left:62.100000px;}
.x35{left:63.585000px;}
.x17{left:65.519986px;}
.x23{left:67.500000px;}
.x34{left:70.554000px;}
.x37{left:74.550000px;}
.x24{left:76.140000px;}
.x36{left:79.050000px;}
.x48{left:80.100000px;}
.x18{left:86.759986px;}
.x6{left:100.836000px;}
.x7{left:108.035986px;}
.x1{left:150.509986px;}
.xe{left:175.529986px;}
.x2{left:220.709986px;}
.x28{left:248.609986px;}
.x2b{left:264.990000px;}
.xb{left:288.254986px;}
.x27{left:313.274986px;}
.x2e{left:407.955000px;}
.xd{left:411.014986px;}
.xa{left:459.074986px;}
.x25{left:461.954986px;}
.xc{left:464.294986px;}
.xf{left:465.374986px;}
.x19{left:478.334986px;}
.x1c{left:481.065000px;}
.x39{left:482.145000px;}
.x47{left:503.745000px;}
.x45{left:505.364986px;}
.x1a{left:516.164986px;}
.x3a{left:526.425000px;}
.x1e{left:537.585000px;}
.x30{left:578.985000px;}
.x46{left:580.604986px;}
.x3c{left:625.425000px;}
.x10{left:650.805000px;}
.x1b{left:671.144986px;}
.x21{left:688.290000px;}
.x3e{left:704.130000px;}
.x32{left:716.910000px;}
.x26{left:761.189986px;}
.x40{left:779.550000px;}
.x9{left:812.490000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:18.560000pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.239467pt;}
.ls6{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.011520pt;}
.ls3{letter-spacing:0.016000pt;}
.ls5{letter-spacing:0.143787pt;}
.ls1{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.lsd{letter-spacing:14.672640pt;}
.ls4{letter-spacing:33.392640pt;}
.ls2{letter-spacing:37.376000pt;}
.ls9{letter-spacing:40.912640pt;}
.lsc{letter-spacing:56.912640pt;}
.lse{letter-spacing:57.040640pt;}
.ws4{word-spacing:-53.120000pt;}
.ws5{word-spacing:-48.000000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.680000pt;}
.wsc{word-spacing:-11.040000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.480533pt;}
.wsb{word-spacing:-10.400000pt;}
.ws9{word-spacing:-8.640000pt;}
.wsa{word-spacing:-8.000000pt;}
.ws8{word-spacing:0.000000pt;}
._4{margin-left:-1.223253pt;}
._1{width:1.009280pt;}
._15{width:2.042027pt;}
._a{width:2.951253pt;}
._8{width:4.368000pt;}
._9{width:5.325440pt;}
._6{width:6.336000pt;}
._7{width:7.248000pt;}
._d{width:8.880000pt;}
._b{width:9.959253pt;}
._c{width:10.920747pt;}
._14{width:11.973973pt;}
._12{width:13.344000pt;}
._11{width:14.240000pt;}
._27{width:15.201707pt;}
._18{width:16.096853pt;}
._17{width:17.157760pt;}
._1f{width:18.804480pt;}
._16{width:20.132480pt;}
._13{width:21.248000pt;}
._21{width:22.682240pt;}
._1a{width:24.382080pt;}
._25{width:25.285120pt;}
._1e{width:27.091200pt;}
._1d{width:28.047360pt;}
._19{width:29.746560pt;}
._24{width:31.128320pt;}
._23{width:32.562560pt;}
._2a{width:34.103040pt;}
._20{width:35.537280pt;}
._1c{width:36.652800pt;}
._1b{width:37.555840pt;}
._22{width:39.786880pt;}
._26{width:40.796160pt;}
._28{width:45.470507pt;}
._29{width:50.676480pt;}
._2b{width:51.579520pt;}
._f{width:58.752000pt;}
._e{width:59.712000pt;}
._2d{width:62.628480pt;}
._2c{width:63.637760pt;}
._3{width:116.838187pt;}
._10{width:117.744000pt;}
._2{width:304.872107pt;}
._5{width:905.268693pt;}
._0{width:2539.573333pt;}
.fs4{font-size:26.880000pt;}
.fs7{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.240000pt;}
.y45{bottom:2.272000pt;}
.y39{bottom:2.560000pt;}
.y17{bottom:2.880000pt;}
.y31{bottom:5.280000pt;}
.y7{bottom:7.392000pt;}
.y43{bottom:7.552000pt;}
.y7a{bottom:8.320000pt;}
.y37{bottom:8.480000pt;}
.yc{bottom:12.480000pt;}
.ycb{bottom:14.400000pt;}
.y8{bottom:14.432000pt;}
.y7b{bottom:14.560000pt;}
.y44{bottom:14.592000pt;}
.y2f{bottom:17.280000pt;}
.y124{bottom:18.080000pt;}
.y12a{bottom:18.240000pt;}
.yc7{bottom:20.640000pt;}
.y36{bottom:22.400000pt;}
.yca{bottom:26.760000pt;}
.y111{bottom:26.880000pt;}
.ya{bottom:31.520000pt;}
.y2e{bottom:31.840000pt;}
.yc8{bottom:32.840000pt;}
.y123{bottom:33.440000pt;}
.y129{bottom:33.594667pt;}
.y35{bottom:36.160000pt;}
.y46{bottom:36.800000pt;}
.y110{bottom:39.040000pt;}
.yc9{bottom:39.080000pt;}
.y2d{bottom:45.600000pt;}
.y122{bottom:48.800000pt;}
.y128{bottom:48.954667pt;}
.y34{bottom:49.920000pt;}
.y10f{bottom:51.360000pt;}
.y6{bottom:51.680000pt;}
.y42{bottom:56.960000pt;}
.y2c{bottom:59.360000pt;}
.y33{bottom:63.680000pt;}
.y121{bottom:64.160000pt;}
.y127{bottom:64.314667pt;}
.y2b{bottom:73.280000pt;}
.y120{bottom:79.560000pt;}
.y126{bottom:79.674667pt;}
.y2a{bottom:87.066667pt;}
.y38{bottom:94.440000pt;}
.y11f{bottom:94.920000pt;}
.yc4{bottom:100.032000pt;}
.y29{bottom:100.826667pt;}
.y41{bottom:112.992000pt;}
.y125{bottom:113.792000pt;}
.y28{bottom:114.586667pt;}
.yc3{bottom:114.592000pt;}
.yd5{bottom:116.032000pt;}
.y108{bottom:126.912000pt;}
.y40{bottom:128.352000pt;}
.yc2{bottom:129.152000pt;}
.y10c{bottom:130.752000pt;}
.yd4{bottom:131.392000pt;}
.y26{bottom:133.480000pt;}
.y107{bottom:142.266667pt;}
.y3f{bottom:143.706667pt;}
.y10b{bottom:145.946667pt;}
.yd3{bottom:146.746667pt;}
.y25{bottom:147.240000pt;}
.y106{bottom:157.466667pt;}
.yc1{bottom:158.266667pt;}
.y3e{bottom:158.906667pt;}
.y9e{bottom:160.026667pt;}
.y24{bottom:161.000000pt;}
.y10a{bottom:161.306667pt;}
.yd2{bottom:163.066667pt;}
.yc0{bottom:172.826667pt;}
.y3d{bottom:174.266667pt;}
.y23{bottom:174.760000pt;}
.y9d{bottom:175.386667pt;}
.y109{bottom:176.666667pt;}
.yd1{bottom:178.426667pt;}
.ybf{bottom:187.546667pt;}
.y105{bottom:188.186667pt;}
.y22{bottom:188.680000pt;}
.y3c{bottom:188.986667pt;}
.y9c{bottom:190.746667pt;}
.yd0{bottom:191.546667pt;}
.y76{bottom:192.026667pt;}
.y3b{bottom:202.426667pt;}
.y21{bottom:202.440000pt;}
.ybe{bottom:202.906667pt;}
.y104{bottom:203.546667pt;}
.ycf{bottom:204.346667pt;}
.y9b{bottom:206.106667pt;}
.y11e{bottom:206.586667pt;}
.y75{bottom:207.386667pt;}
.y20{bottom:216.200000pt;}
.yce{bottom:217.306667pt;}
.ybd{bottom:218.266667pt;}
.y103{bottom:218.906667pt;}
.y3a{bottom:219.386667pt;}
.y9a{bottom:221.466667pt;}
.y74{bottom:222.746667pt;}
.y1f{bottom:229.960000pt;}
.ycd{bottom:230.266667pt;}
.y18{bottom:231.226667pt;}
.ybc{bottom:233.626667pt;}
.y102{bottom:234.106667pt;}
.y99{bottom:236.666667pt;}
.y73{bottom:237.946667pt;}
.ycc{bottom:243.226667pt;}
.y1e{bottom:243.880000pt;}
.ybb{bottom:248.986667pt;}
.y101{bottom:249.466667pt;}
.y98{bottom:252.026667pt;}
.y72{bottom:253.306667pt;}
.yc6{bottom:256.186667pt;}
.y1d{bottom:257.640000pt;}
.yba{bottom:264.346667pt;}
.y100{bottom:264.826667pt;}
.y97{bottom:267.386667pt;}
.y71{bottom:268.666667pt;}
.y1c{bottom:271.400000pt;}
.yb9{bottom:279.546667pt;}
.yff{bottom:280.186667pt;}
.y96{bottom:282.786667pt;}
.y70{bottom:284.066667pt;}
.y1b{bottom:285.186667pt;}
.yb8{bottom:294.786667pt;}
.yfe{bottom:295.586667pt;}
.y95{bottom:298.146667pt;}
.y1a{bottom:298.946667pt;}
.y6f{bottom:299.426667pt;}
.yc5{bottom:308.866667pt;}
.yb7{bottom:309.346667pt;}
.yfd{bottom:310.946667pt;}
.y19{bottom:313.186667pt;}
.y94{bottom:313.506667pt;}
.y6e{bottom:314.786667pt;}
.yb6{bottom:323.906667pt;}
.yfc{bottom:326.146667pt;}
.y93{bottom:328.706667pt;}
.y6d{bottom:329.986667pt;}
.y32{bottom:337.506667pt;}
.yb5{bottom:338.466667pt;}
.yfb{bottom:341.506667pt;}
.y92{bottom:344.066667pt;}
.y6c{bottom:345.346667pt;}
.yb4{bottom:353.026667pt;}
.yfa{bottom:356.866667pt;}
.y91{bottom:359.426667pt;}
.y6b{bottom:360.706667pt;}
.yb3{bottom:367.586667pt;}
.yf9{bottom:372.226667pt;}
.y90{bottom:374.786667pt;}
.y6a{bottom:376.066667pt;}
.y11d{bottom:377.186667pt;}
.yb2{bottom:382.306667pt;}
.yf8{bottom:387.586667pt;}
.y8f{bottom:390.146667pt;}
.y69{bottom:391.426667pt;}
.y11c{bottom:392.386667pt;}
.yb1{bottom:397.026667pt;}
.yf7{bottom:402.946667pt;}
.y8e{bottom:405.506667pt;}
.y68{bottom:406.626667pt;}
.y11b{bottom:407.746667pt;}
.yb0{bottom:412.066667pt;}
.y30{bottom:413.186667pt;}
.yf6{bottom:418.146667pt;}
.y8d{bottom:420.066667pt;}
.y67{bottom:421.986667pt;}
.y11a{bottom:423.106667pt;}
.yaf{bottom:423.906667pt;}
.y27{bottom:431.586667pt;}
.y8c{bottom:432.386667pt;}
.yf5{bottom:433.506667pt;}
.yae{bottom:436.866667pt;}
.y66{bottom:437.346667pt;}
.y119{bottom:438.466667pt;}
.y8b{bottom:443.106667pt;}
.yf4{bottom:448.866667pt;}
.yad{bottom:449.666667pt;}
.y65{bottom:452.706667pt;}
.y118{bottom:453.826667pt;}
.y8a{bottom:456.066667pt;}
.yac{bottom:462.626667pt;}
.yf3{bottom:464.226667pt;}
.y64{bottom:468.066667pt;}
.y89{bottom:469.026667pt;}
.yab{bottom:475.586667pt;}
.yf2{bottom:479.586667pt;}
.y88{bottom:481.826667pt;}
.y63{bottom:483.426667pt;}
.y117{bottom:484.386667pt;}
.yaa{bottom:488.546667pt;}
.y87{bottom:494.786667pt;}
.yf1{bottom:494.946667pt;}
.y62{bottom:498.626667pt;}
.y116{bottom:499.746667pt;}
.y86{bottom:507.773333pt;}
.yf0{bottom:510.173333pt;}
.y61{bottom:514.013333pt;}
.ya9{bottom:515.133333pt;}
.y85{bottom:520.733333pt;}
.ya8{bottom:524.093333pt;}
.yef{bottom:525.533333pt;}
.y60{bottom:529.373333pt;}
.y115{bottom:530.493333pt;}
.y84{bottom:533.693333pt;}
.ya7{bottom:538.173333pt;}
.yee{bottom:540.893333pt;}
.y5f{bottom:544.733333pt;}
.y114{bottom:545.853333pt;}
.y83{bottom:546.493333pt;}
.ya6{bottom:553.373333pt;}
.yed{bottom:556.253333pt;}
.y16{bottom:558.013333pt;}
.y82{bottom:559.453333pt;}
.y5e{bottom:560.093333pt;}
.y113{bottom:561.053333pt;}
.ya5{bottom:568.733333pt;}
.yec{bottom:571.613333pt;}
.y81{bottom:572.413333pt;}
.y5d{bottom:575.453333pt;}
.y112{bottom:576.413333pt;}
.ya4{bottom:584.093333pt;}
.y80{bottom:585.373333pt;}
.yeb{bottom:586.813333pt;}
.y15{bottom:588.733333pt;}
.y10e{bottom:589.533333pt;}
.y5c{bottom:590.653333pt;}
.y7f{bottom:598.333333pt;}
.ya3{bottom:599.453333pt;}
.yea{bottom:602.173333pt;}
.y5b{bottom:606.013333pt;}
.y14{bottom:606.493333pt;}
.y7e{bottom:611.293333pt;}
.ya2{bottom:614.813333pt;}
.ye9{bottom:618.493333pt;}
.y5a{bottom:621.373333pt;}
.y7d{bottom:624.093333pt;}
.ya1{bottom:629.373333pt;}
.y13{bottom:631.773333pt;}
.ye8{bottom:633.853333pt;}
.y59{bottom:636.733333pt;}
.y7c{bottom:637.053333pt;}
.ya0{bottom:640.893333pt;}
.y9f{bottom:647.133333pt;}
.y12{bottom:647.453333pt;}
.ye7{bottom:649.213333pt;}
.y79{bottom:650.013333pt;}
.y10d{bottom:651.613333pt;}
.y58{bottom:652.093333pt;}
.ye6{bottom:664.573333pt;}
.y11{bottom:666.333333pt;}
.y57{bottom:667.453333pt;}
.y78{bottom:676.733333pt;}
.ye5{bottom:680.733333pt;}
.y56{bottom:682.653333pt;}
.y77{bottom:685.213333pt;}
.y10{bottom:693.853333pt;}
.ye4{bottom:696.093333pt;}
.y55{bottom:698.013333pt;}
.ye3{bottom:711.453333pt;}
.y54{bottom:713.373333pt;}
.yf{bottom:721.533333pt;}
.ye2{bottom:726.813333pt;}
.y53{bottom:728.773333pt;}
.ye1{bottom:742.213333pt;}
.y52{bottom:744.133333pt;}
.ye{bottom:749.093333pt;}
.ye0{bottom:758.373333pt;}
.y51{bottom:759.333333pt;}
.ydf{bottom:773.733333pt;}
.y50{bottom:774.693333pt;}
.yd{bottom:774.853333pt;}
.yb{bottom:788.453333pt;}
.yde{bottom:789.093333pt;}
.y4f{bottom:790.053333pt;}
.ydd{bottom:804.453333pt;}
.y4e{bottom:805.413333pt;}
.ydc{bottom:819.813333pt;}
.y4d{bottom:820.773333pt;}
.ydb{bottom:835.173333pt;}
.y4c{bottom:836.133333pt;}
.yda{bottom:850.373333pt;}
.y4b{bottom:851.333333pt;}
.yd9{bottom:865.733333pt;}
.y4a{bottom:866.693333pt;}
.yd8{bottom:881.093333pt;}
.y49{bottom:882.053333pt;}
.yd7{bottom:896.453333pt;}
.y48{bottom:897.413333pt;}
.yd6{bottom:911.813333pt;}
.y47{bottom:912.773333pt;}
.y5{bottom:928.133333pt;}
.y4{bottom:943.333333pt;}
.y3{bottom:958.720000pt;}
.y2{bottom:974.720000pt;}
.y1{bottom:993.120000pt;}
.h21{height:12.160000pt;}
.h20{height:12.320000pt;}
.h22{height:12.352000pt;}
.hf{height:15.360000pt;}
.h16{height:17.760000pt;}
.h1e{height:18.768750pt;}
.h1f{height:24.480000pt;}
.h4{height:24.512000pt;}
.h6{height:29.940625pt;}
.h1d{height:30.254687pt;}
.h12{height:33.515625pt;}
.h18{height:33.867188pt;}
.h7{height:34.965625pt;}
.h11{height:35.531250pt;}
.h14{height:35.554688pt;}
.h5{height:37.090625pt;}
.he{height:37.479688pt;}
.h1b{height:38.672812pt;}
.h1a{height:39.321250pt;}
.h15{height:39.347188pt;}
.h9{height:41.112500pt;}
.hc{height:41.543750pt;}
.h1c{height:42.691250pt;}
.h2{height:43.108125pt;}
.h3{height:45.156250pt;}
.ha{height:47.782500pt;}
.h23{height:48.992000pt;}
.h1{height:51.937500pt;}
.h24{height:61.440000pt;}
.hd{height:67.031250pt;}
.hb{height:67.734375pt;}
.h17{height:74.880000pt;}
.h26{height:92.000000pt;}
.h19{height:105.632000pt;}
.h25{height:107.232000pt;}
.h13{height:125.792000pt;}
.h8{height:136.800000pt;}
.h10{height:326.146667pt;}
.h0{height:1056.000000pt;}
.w10{width:38.720000pt;}
.w2{width:40.032000pt;}
.wa{width:40.192000pt;}
.w7{width:49.600000pt;}
.w13{width:66.400000pt;}
.w14{width:66.560000pt;}
.w12{width:69.312000pt;}
.w11{width:87.360000pt;}
.we{width:121.952000pt;}
.wf{width:123.520000pt;}
.wc{width:126.432000pt;}
.w8{width:133.312000pt;}
.wb{width:138.880000pt;}
.w9{width:148.800000pt;}
.wd{width:151.386667pt;}
.w6{width:188.186667pt;}
.w15{width:292.666667pt;}
.w5{width:530.493333pt;}
.w3{width:696.453333pt;}
.w16{width:711.813333pt;}
.w4{width:730.533333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3b{left:2.080000pt;}
.x2c{left:3.040000pt;}
.x3d{left:4.800000pt;}
.x12{left:5.760000pt;}
.x14{left:6.720000pt;}
.x5{left:7.680000pt;}
.x2a{left:8.640000pt;}
.x49{left:11.040000pt;}
.x1f{left:12.320000pt;}
.x1d{left:13.440000pt;}
.x2f{left:15.680000pt;}
.x11{left:17.760000pt;}
.x41{left:19.520000pt;}
.x16{left:20.680000pt;}
.x3f{left:21.920000pt;}
.x44{left:23.840000pt;}
.x20{left:24.960000pt;}
.x13{left:26.440000pt;}
.x15{left:28.200000pt;}
.x31{left:30.560000pt;}
.x43{left:31.520000pt;}
.x2d{left:33.480000pt;}
.x33{left:35.840000pt;}
.x42{left:36.960000pt;}
.x8{left:40.480000pt;}
.x22{left:44.480000pt;}
.x4{left:47.999988pt;}
.x38{left:52.959988pt;}
.x3{left:53.919988pt;}
.x29{left:55.200000pt;}
.x35{left:56.520000pt;}
.x17{left:58.239988pt;}
.x23{left:60.000000pt;}
.x34{left:62.714667pt;}
.x37{left:66.266667pt;}
.x24{left:67.680000pt;}
.x36{left:70.266667pt;}
.x48{left:71.200000pt;}
.x18{left:77.119988pt;}
.x6{left:89.632000pt;}
.x7{left:96.031988pt;}
.x1{left:133.786655pt;}
.xe{left:156.026655pt;}
.x2{left:196.186655pt;}
.x28{left:220.986655pt;}
.x2b{left:235.546667pt;}
.xb{left:256.226655pt;}
.x27{left:278.466655pt;}
.x2e{left:362.626667pt;}
.xd{left:365.346655pt;}
.xa{left:408.066655pt;}
.x25{left:410.626655pt;}
.xc{left:412.706655pt;}
.xf{left:413.666655pt;}
.x19{left:425.186655pt;}
.x1c{left:427.613333pt;}
.x39{left:428.573333pt;}
.x47{left:447.773333pt;}
.x45{left:449.213321pt;}
.x1a{left:458.813321pt;}
.x3a{left:467.933333pt;}
.x1e{left:477.853333pt;}
.x30{left:514.653333pt;}
.x46{left:516.093321pt;}
.x3c{left:555.933333pt;}
.x10{left:578.493333pt;}
.x1b{left:596.573321pt;}
.x21{left:611.813333pt;}
.x3e{left:625.893333pt;}
.x32{left:637.253333pt;}
.x26{left:676.613321pt;}
.x40{left:692.933333pt;}
.x9{left:722.213333pt;}
}




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