
    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_55ad98b3dab790ff88d8c942.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_60590b4e9b7c8986ae94758e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.986328;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_b48cec624ea19835b8b12de7.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff4{font-family:ff4;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2c06f56bdfc90ae3516ec3bc.woff')format("woff");}.ff5{font-family:ff5;line-height:0.986328;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_354074ef58f14ab0d5cea0fc.woff')format("woff");}.ff6{font-family:ff6;line-height:0.783691;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b4feb020e884746ba36338c3.woff')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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_8a23bd5e07d67f032340ac21.woff')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v7{vertical-align:-20.880000px;}
.v3{vertical-align:-6.120000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:6.120000px;}
.v1{vertical-align:18.000000px;}
.v4{vertical-align:20.880000px;}
.v2{vertical-align:24.120000px;}
.v6{vertical-align:27.000000px;}
.lsf{letter-spacing:-0.513600px;}
.lsc{letter-spacing:-0.413400px;}
.ls7{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.270000px;}
.ls18{letter-spacing:-0.220200px;}
.ls1b{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.180000px;}
.lsd{letter-spacing:-0.153600px;}
.ls19{letter-spacing:-0.054720px;}
.ls1a{letter-spacing:-0.027360px;}
.ls5{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.012960px;}
.ls13{letter-spacing:0.027360px;}
.ls3{letter-spacing:0.036000px;}
.ls12{letter-spacing:0.054720px;}
.ls9{letter-spacing:0.064800px;}
.ls1{letter-spacing:0.090000px;}
.ls10{letter-spacing:0.120000px;}
.ls17{letter-spacing:0.139800px;}
.lsb{letter-spacing:0.140040px;}
.ls0{letter-spacing:0.180000px;}
.ls16{letter-spacing:11.280000px;}
.ls15{letter-spacing:25.308000px;}
.lse{letter-spacing:43.766640px;}
.ls4{letter-spacing:46.286640px;}
.ls14{letter-spacing:52.308000px;}
.lsa{letter-spacing:63.566640px;}
.ls2{letter-spacing:957.810000px;}
.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;}
}
.ws2{word-spacing:-72.000000px;}
.wsc{word-spacing:-60.120000px;}
.ws3{word-spacing:-18.000000px;}
.ws0{word-spacing:-15.210000px;}
.wse{word-spacing:-15.169800px;}
.ws4{word-spacing:-15.030000px;}
.wsb{word-spacing:-14.876400px;}
.ws8{word-spacing:-14.850000px;}
.wsf{word-spacing:-14.809800px;}
.wsd{word-spacing:-14.516400px;}
.ws11{word-spacing:-14.247360px;}
.ws12{word-spacing:-14.192640px;}
.ws10{word-spacing:-14.165280px;}
.ws5{word-spacing:-13.500000px;}
.ws6{word-spacing:-13.140000px;}
.ws1{word-spacing:-11.970000px;}
.ws9{word-spacing:-9.720000px;}
.wsa{word-spacing:-9.360000px;}
.ws7{word-spacing:0.000000px;}
._d{margin-left:-6.372000px;}
._0{margin-left:-1.128960px;}
._3{width:1.062120px;}
._8{width:2.645280px;}
._a{width:4.028040px;}
._4{width:6.012000px;}
._7{width:7.575120px;}
._5{width:8.717400px;}
._6{width:9.799560px;}
._14{width:10.988640px;}
._12{width:12.264480px;}
._b{width:13.814280px;}
._34{width:15.498480px;}
._9{width:16.593120px;}
._10{width:18.386760px;}
._c{width:19.478880px;}
._2e{width:20.487600px;}
._18{width:21.522960px;}
._13{width:22.629240px;}
._f{width:23.706000px;}
._1f{width:24.710040px;}
._19{width:25.826760px;}
._20{width:27.414720px;}
._1c{width:28.677240px;}
._1d{width:30.074520px;}
._1e{width:31.087560px;}
._24{width:32.153400px;}
._16{width:33.183360px;}
._2d{width:34.268400px;}
._22{width:35.891640px;}
._29{width:36.973800px;}
._2b{width:38.717280px;}
._23{width:39.979800px;}
._25{width:41.422680px;}
._15{width:43.406640px;}
._21{width:44.909640px;}
._2c{width:46.472760px;}
._32{width:47.675040px;}
._17{width:48.683880px;}
._11{width:49.899600px;}
._26{width:51.342480px;}
._2f{width:53.506800px;}
._31{width:57.013440px;}
._2a{width:58.196280px;}
._1b{width:59.391840px;}
._1a{width:60.420600px;}
._27{width:65.170080px;}
._30{width:66.425160px;}
._e{width:97.308000px;}
._28{width:130.099680px;}
._1{width:302.788920px;}
._33{width:347.701320px;}
._2{width:372.032040px;}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc4{color:rgb(0,112,192);}
.fc0{color:rgb(192,0,0);}
.fs8{font-size:6.120000px;}
.fsb{font-size:11.880000px;}
.fs3{font-size:29.880000px;}
.fsf{font-size:36.000000px;}
.fse{font-size:38.880000px;}
.fsa{font-size:42.120000px;}
.fs2{font-size:47.880000px;}
.fsd{font-size:51.120000px;}
.fsc{font-size:54.000000px;}
.fs10{font-size:56.880000px;}
.fs1{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:96.120000px;}
.fs9{font-size:108.000000px;}
.fs5{font-size:132.120000px;}
.fs7{font-size:168.120000px;}
.y0{bottom:0.000000px;}
.y1e{bottom:0.360000px;}
.y7{bottom:2.610000px;}
.y40{bottom:2.970000px;}
.y21{bottom:3.240000px;}
.y10{bottom:3.870000px;}
.y22{bottom:4.680000px;}
.y5{bottom:8.370000px;}
.yf8{bottom:11.790000px;}
.yf0{bottom:11.880000px;}
.y19c{bottom:16.380000px;}
.y6{bottom:16.470000px;}
.y3f{bottom:18.450000px;}
.yf1{bottom:20.430000px;}
.y37{bottom:20.520000px;}
.yf{bottom:22.320000px;}
.yf6{bottom:29.070000px;}
.yfe{bottom:29.160000px;}
.yf3{bottom:29.190000px;}
.y19b{bottom:30.150000px;}
.ye{bottom:33.210000px;}
.y3e{bottom:34.050000px;}
.y52{bottom:35.640000px;}
.yf9{bottom:37.710000px;}
.y36{bottom:37.800000px;}
.yf4{bottom:37.830000px;}
.y19a{bottom:44.010000px;}
.yf7{bottom:46.350000px;}
.y100{bottom:46.440000px;}
.y8{bottom:49.140000px;}
.y3d{bottom:49.530000px;}
.yd{bottom:51.690000px;}
.yfa{bottom:54.900000px;}
.y35{bottom:54.990000px;}
.y51{bottom:60.030000px;}
.y3c{bottom:65.100000px;}
.yc{bottom:65.820000px;}
.y34{bottom:72.270000px;}
.y4{bottom:73.530000px;}
.y3b{bottom:80.580000px;}
.y33{bottom:89.550000px;}
.y3a{bottom:96.150000px;}
.yb{bottom:103.710000px;}
.y11{bottom:103.980000px;}
.y32{bottom:106.740000px;}
.y39{bottom:111.630000px;}
.yca{bottom:117.990000px;}
.y11e{bottom:119.520000px;}
.y13a{bottom:121.410000px;}
.y15f{bottom:122.040000px;}
.y31{bottom:124.020000px;}
.y138{bottom:124.920000px;}
.y50{bottom:126.270000px;}
.y197{bottom:133.020000px;}
.ya{bottom:136.200000px;}
.y11d{bottom:136.710000px;}
.yad{bottom:136.890000px;}
.y15e{bottom:138.510000px;}
.y139{bottom:138.690000px;}
.y86{bottom:141.210000px;}
.y30{bottom:141.300000px;}
.y137{bottom:142.110000px;}
.y4f{bottom:143.460000px;}
.y196{bottom:148.590000px;}
.y11c{bottom:153.990000px;}
.yac{bottom:154.170000px;}
.y15d{bottom:154.890000px;}
.y2f{bottom:158.490000px;}
.y85{bottom:158.520000px;}
.y136{bottom:159.420000px;}
.y4e{bottom:160.770000px;}
.y45{bottom:161.910000px;}
.y195{bottom:164.100000px;}
.y11b{bottom:171.300000px;}
.yab{bottom:171.480000px;}
.y2e{bottom:175.770000px;}
.y84{bottom:175.800000px;}
.y135{bottom:176.700000px;}
.y44{bottom:177.390000px;}
.y199{bottom:177.510000px;}
.y4d{bottom:178.050000px;}
.y15c{bottom:187.680000px;}
.y11a{bottom:188.490000px;}
.yaa{bottom:188.670000px;}
.yed{bottom:190.380000px;}
.y43{bottom:192.960000px;}
.y83{bottom:192.990000px;}
.y2d{bottom:193.050000px;}
.y134{bottom:193.890000px;}
.y4c{bottom:195.240000px;}
.y15b{bottom:204.060000px;}
.y119{bottom:205.770000px;}
.ya9{bottom:205.950000px;}
.yec{bottom:207.660000px;}
.y42{bottom:208.440000px;}
.y2c{bottom:210.240000px;}
.y82{bottom:210.270000px;}
.y133{bottom:211.170000px;}
.y4b{bottom:212.520000px;}
.y15a{bottom:220.440000px;}
.y118{bottom:223.050000px;}
.ya8{bottom:223.230000px;}
.yeb{bottom:224.850000px;}
.y81{bottom:227.460000px;}
.y2b{bottom:227.520000px;}
.y132{bottom:228.360000px;}
.y4a{bottom:229.800000px;}
.y198{bottom:233.400000px;}
.y159{bottom:236.820000px;}
.y117{bottom:240.240000px;}
.ya7{bottom:240.420000px;}
.yea{bottom:242.130000px;}
.y2a{bottom:244.710000px;}
.y80{bottom:244.740000px;}
.y131{bottom:245.640000px;}
.y49{bottom:246.990000px;}
.y158{bottom:253.200000px;}
.y116{bottom:257.520000px;}
.ya6{bottom:257.700000px;}
.ye9{bottom:259.410000px;}
.y29{bottom:261.990000px;}
.y7f{bottom:262.020000px;}
.y130{bottom:262.920000px;}
.y48{bottom:264.270000px;}
.y194{bottom:265.170000px;}
.y157{bottom:269.580000px;}
.ye8{bottom:273.360000px;}
.y115{bottom:274.800000px;}
.ya5{bottom:274.980000px;}
.y7e{bottom:279.210000px;}
.y28{bottom:279.300000px;}
.y12f{bottom:280.110000px;}
.y193{bottom:280.650000px;}
.y47{bottom:281.460000px;}
.y156{bottom:285.960000px;}
.y114{bottom:291.990000px;}
.ya4{bottom:292.170000px;}
.y192{bottom:296.220000px;}
.y27{bottom:296.490000px;}
.y12e{bottom:297.390000px;}
.y46{bottom:298.290000px;}
.y155{bottom:302.340000px;}
.y113{bottom:309.270000px;}
.ya3{bottom:310.530000px;}
.y23{bottom:310.890000px;}
.y191{bottom:311.700000px;}
.y26{bottom:313.770000px;}
.y12d{bottom:314.670000px;}
.y154{bottom:318.720000px;}
.y112{bottom:326.550000px;}
.y190{bottom:327.270000px;}
.ya2{bottom:327.720000px;}
.y7d{bottom:330.960000px;}
.y25{bottom:331.050000px;}
.y12c{bottom:331.860000px;}
.y153{bottom:335.100000px;}
.y18f{bottom:342.750000px;}
.y111{bottom:343.740000px;}
.ya1{bottom:345.000000px;}
.y24{bottom:348.240000px;}
.y12b{bottom:349.140000px;}
.y152{bottom:351.480000px;}
.y18e{bottom:358.320000px;}
.y110{bottom:362.100000px;}
.ya0{bottom:362.280000px;}
.y7c{bottom:365.520000px;}
.y12a{bottom:366.420000px;}
.y151{bottom:367.860000px;}
.y18d{bottom:373.800000px;}
.y10f{bottom:379.290000px;}
.y9f{bottom:379.470000px;}
.yc9{bottom:382.170000px;}
.y7b{bottom:382.710000px;}
.y129{bottom:383.610000px;}
.y150{bottom:384.330000px;}
.y18c{bottom:389.280000px;}
.y10e{bottom:396.570000px;}
.y9e{bottom:396.750000px;}
.yc8{bottom:399.450000px;}
.y7a{bottom:399.990000px;}
.y14f{bottom:400.710000px;}
.y128{bottom:400.890000px;}
.y18b{bottom:404.850000px;}
.y9d{bottom:414.030000px;}
.y10d{bottom:414.930000px;}
.yc7{bottom:416.640000px;}
.y14e{bottom:417.090000px;}
.y79{bottom:417.270000px;}
.y127{bottom:418.170000px;}
.y18a{bottom:420.330000px;}
.y10c{bottom:432.120000px;}
.y9c{bottom:432.300000px;}
.y14d{bottom:433.470000px;}
.yc6{bottom:433.920000px;}
.y78{bottom:434.460000px;}
.y126{bottom:435.360000px;}
.y189{bottom:435.900000px;}
.y10b{bottom:449.400000px;}
.y9b{bottom:449.580000px;}
.y14c{bottom:449.850000px;}
.yc5{bottom:451.200000px;}
.y188{bottom:451.380000px;}
.y77{bottom:451.740000px;}
.y125{bottom:452.640000px;}
.y14b{bottom:466.230000px;}
.y9a{bottom:466.860000px;}
.y187{bottom:466.950000px;}
.y10a{bottom:467.760000px;}
.yc4{bottom:468.390000px;}
.y76{bottom:469.020000px;}
.y124{bottom:469.920000px;}
.y186{bottom:482.430000px;}
.y14a{bottom:482.610000px;}
.y99{bottom:484.050000px;}
.y109{bottom:484.950000px;}
.yc3{bottom:485.670000px;}
.y75{bottom:486.210000px;}
.y123{bottom:487.110000px;}
.y185{bottom:498.000000px;}
.y149{bottom:498.990000px;}
.y98{bottom:501.330000px;}
.y108{bottom:502.230000px;}
.yc2{bottom:502.950000px;}
.y74{bottom:503.490000px;}
.y122{bottom:504.390000px;}
.y184{bottom:513.480000px;}
.y148{bottom:515.370000px;}
.y97{bottom:518.610000px;}
.yc1{bottom:520.140000px;}
.y107{bottom:520.590000px;}
.y73{bottom:520.770000px;}
.y121{bottom:521.670000px;}
.y183{bottom:529.050000px;}
.ye7{bottom:531.480000px;}
.y147{bottom:531.750000px;}
.y41{bottom:532.650000px;}
.y96{bottom:535.800000px;}
.yc0{bottom:537.420000px;}
.y106{bottom:537.780000px;}
.y72{bottom:537.960000px;}
.y120{bottom:538.860000px;}
.y182{bottom:544.530000px;}
.y146{bottom:548.130000px;}
.ye6{bottom:548.760000px;}
.y38{bottom:548.940000px;}
.y95{bottom:553.080000px;}
.ybf{bottom:554.700000px;}
.y105{bottom:555.060000px;}
.y71{bottom:555.240000px;}
.y11f{bottom:556.140000px;}
.y181{bottom:560.100000px;}
.y145{bottom:564.510000px;}
.ye5{bottom:566.040000px;}
.y94{bottom:570.360000px;}
.ybe{bottom:571.890000px;}
.y70{bottom:572.430000px;}
.y104{bottom:573.330000px;}
.y180{bottom:575.610000px;}
.y144{bottom:580.920000px;}
.ye4{bottom:583.260000px;}
.y93{bottom:587.580000px;}
.ybd{bottom:589.200000px;}
.y6f{bottom:589.740000px;}
.y103{bottom:590.640000px;}
.y17f{bottom:591.180000px;}
.y143{bottom:597.300000px;}
.ye3{bottom:600.540000px;}
.y92{bottom:604.860000px;}
.ybc{bottom:606.390000px;}
.y17e{bottom:606.660000px;}
.y6e{bottom:607.020000px;}
.y102{bottom:607.920000px;}
.y142{bottom:613.770000px;}
.ye2{bottom:617.820000px;}
.y91{bottom:622.140000px;}
.y17d{bottom:622.230000px;}
.ybb{bottom:623.670000px;}
.y6d{bottom:624.210000px;}
.y101{bottom:625.110000px;}
.y141{bottom:630.150000px;}
.ye1{bottom:635.010000px;}
.y17c{bottom:637.710000px;}
.y90{bottom:639.330000px;}
.yff{bottom:639.870000px;}
.yba{bottom:640.950000px;}
.y6c{bottom:641.490000px;}
.y140{bottom:646.530000px;}
.y17b{bottom:653.280000px;}
.ye0{bottom:653.370000px;}
.y8f{bottom:657.690000px;}
.yb9{bottom:658.140000px;}
.y6b{bottom:658.770000px;}
.y13f{bottom:662.910000px;}
.y17a{bottom:668.760000px;}
.ydf{bottom:670.650000px;}
.y20{bottom:673.890000px;}
.y8e{bottom:674.880000px;}
.yb8{bottom:675.420000px;}
.y6a{bottom:675.960000px;}
.y13e{bottom:679.290000px;}
.y179{bottom:684.330000px;}
.yde{bottom:687.840000px;}
.y8d{bottom:692.160000px;}
.yb7{bottom:692.700000px;}
.y69{bottom:693.240000px;}
.y13d{bottom:695.670000px;}
.y178{bottom:699.810000px;}
.y1f{bottom:704.760000px;}
.ydd{bottom:706.200000px;}
.y1d{bottom:707.640000px;}
.y8c{bottom:709.440000px;}
.yfd{bottom:709.620000px;}
.yb6{bottom:709.890000px;}
.y68{bottom:710.520000px;}
.y13c{bottom:712.050000px;}
.y1c{bottom:713.400000px;}
.y177{bottom:715.380000px;}
.ydc{bottom:723.390000px;}
.y8b{bottom:726.630000px;}
.yb5{bottom:727.170000px;}
.y67{bottom:727.710000px;}
.y13b{bottom:728.430000px;}
.y1b{bottom:730.590000px;}
.y176{bottom:730.860000px;}
.ydb{bottom:740.670000px;}
.y8a{bottom:743.910000px;}
.yb4{bottom:744.450000px;}
.y66{bottom:744.990000px;}
.y175{bottom:746.430000px;}
.y1a{bottom:747.870000px;}
.yda{bottom:759.030000px;}
.y89{bottom:761.190000px;}
.yb3{bottom:761.640000px;}
.y174{bottom:761.910000px;}
.yfc{bottom:762.180000px;}
.y65{bottom:762.270000px;}
.y19{bottom:767.760000px;}
.yd9{bottom:776.220000px;}
.y173{bottom:777.480000px;}
.y88{bottom:778.380000px;}
.yb2{bottom:778.920000px;}
.y64{bottom:779.460000px;}
.y172{bottom:792.960000px;}
.yd8{bottom:793.500000px;}
.y87{bottom:795.660000px;}
.yb1{bottom:796.200000px;}
.y18{bottom:796.470000px;}
.y63{bottom:796.740000px;}
.y171{bottom:808.530000px;}
.yd7{bottom:810.780000px;}
.y62{bottom:814.020000px;}
.yb0{bottom:814.470000px;}
.yfb{bottom:814.650000px;}
.y17{bottom:815.460000px;}
.y170{bottom:824.010000px;}
.yd6{bottom:827.970000px;}
.y61{bottom:831.210000px;}
.yaf{bottom:831.750000px;}
.y16{bottom:836.700000px;}
.y16f{bottom:839.580000px;}
.yd5{bottom:845.250000px;}
.yae{bottom:845.790000px;}
.y60{bottom:848.490000px;}
.y16e{bottom:855.060000px;}
.yd4{bottom:862.530000px;}
.y5f{bottom:865.770000px;}
.y15{bottom:867.750000px;}
.y16d{bottom:870.630000px;}
.yd3{bottom:879.720000px;}
.y5e{bottom:882.960000px;}
.y16c{bottom:886.110000px;}
.yd2{bottom:897.000000px;}
.y14{bottom:898.800000px;}
.y5d{bottom:900.240000px;}
.y16b{bottom:901.590000px;}
.yf5{bottom:901.680000px;}
.yd1{bottom:915.360000px;}
.y16a{bottom:917.160000px;}
.y5c{bottom:917.430000px;}
.y13{bottom:927.240000px;}
.yd0{bottom:932.550000px;}
.y169{bottom:932.640000px;}
.y5b{bottom:934.710000px;}
.y168{bottom:948.210000px;}
.ycf{bottom:949.830000px;}
.y5a{bottom:951.990000px;}
.y12{bottom:953.700000px;}
.y9{bottom:955.860000px;}
.y167{bottom:963.690000px;}
.yce{bottom:967.110000px;}
.y59{bottom:969.180000px;}
.yf2{bottom:971.340000px;}
.y166{bottom:979.260000px;}
.ycd{bottom:985.380000px;}
.y58{bottom:986.460000px;}
.y165{bottom:994.770000px;}
.ycc{bottom:1002.690000px;}
.y57{bottom:1003.770000px;}
.y164{bottom:1010.340000px;}
.ycb{bottom:1019.880000px;}
.y56{bottom:1020.960000px;}
.yef{bottom:1023.930000px;}
.y163{bottom:1025.820000px;}
.y55{bottom:1038.240000px;}
.y162{bottom:1041.390000px;}
.y54{bottom:1055.520000px;}
.y161{bottom:1057.050000px;}
.yee{bottom:1061.100000px;}
.y53{bottom:1072.710000px;}
.y160{bottom:1073.430000px;}
.y3{bottom:1102.320000px;}
.y2{bottom:1119.510000px;}
.y1{bottom:1137.420000px;}
.h13{height:1.710000px;}
.h14{height:4.273242px;}
.hf{height:4.318066px;}
.h15{height:8.382129px;}
.h2b{height:13.770000px;}
.h1b{height:15.570000px;}
.h16{height:17.280000px;}
.hc{height:20.863477px;}
.ha{height:21.082324px;}
.h21{height:25.400391px;}
.h4{height:27.630000px;}
.h6{height:33.431836px;}
.h2c{height:33.782520px;}
.h22{height:34.470000px;}
.h1e{height:36.068555px;}
.h1d{height:37.705078px;}
.h17{height:38.100586px;}
.h7{height:39.082324px;}
.h2a{height:39.313477px;}
.h29{height:39.716016px;}
.h1a{height:41.343750px;}
.h5{height:41.978320px;}
.h3{height:42.418652px;}
.h1f{height:43.769004px;}
.h2{height:45.295488px;}
.h12{height:46.000195px;}
.h28{height:46.029375px;}
.h20{height:48.027656px;}
.h1{height:50.800781px;}
.h26{height:51.750000px;}
.h23{height:51.780000px;}
.h11{height:53.838457px;}
.h2d{height:55.170000px;}
.h8{height:65.526152px;}
.h24{height:68.940000px;}
.h27{height:69.030000px;}
.hd{height:72.418535px;}
.h10{height:76.201172px;}
.h25{height:86.220000px;}
.hb{height:93.219434px;}
.he{height:118.619824px;}
.h19{height:124.230000px;}
.h9{height:143.220000px;}
.h1c{height:221.040000px;}
.h18{height:362.280000px;}
.h0{height:1188.000000px;}
.w2{width:34.020000px;}
.wb{width:114.510000px;}
.wc{width:135.540000px;}
.wa{width:146.070000px;}
.w9{width:164.460000px;}
.w5{width:165.900000px;}
.w8{width:228.270000px;}
.wd{width:229.890000px;}
.we{width:384.150000px;}
.w7{width:592.530000px;}
.w4{width:648.060000px;}
.w3{width:745.470000px;}
.w6{width:901.530000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.xd{left:-8.820000px;}
.x0{left:0.000000px;}
.x13{left:3.150000px;}
.x4{left:4.320000px;}
.x1c{left:6.749986px;}
.x14{left:8.100000px;}
.x32{left:11.970000px;}
.x2b{left:14.310000px;}
.x34{left:16.560000px;}
.x29{left:19.890000px;}
.x33{left:23.580000px;}
.x35{left:29.430000px;}
.x2c{left:30.600000px;}
.x2f{left:35.640000px;}
.x2e{left:38.160000px;}
.x27{left:41.130000px;}
.x18{left:43.650000px;}
.x6{left:45.540000px;}
.x15{left:46.710000px;}
.x1d{left:52.110000px;}
.x1{left:53.999986px;}
.x19{left:59.669986px;}
.x1a{left:60.749986px;}
.x17{left:65.070000px;}
.xa{left:70.470000px;}
.x26{left:72.450000px;}
.x31{left:77.850000px;}
.x1e{left:87.210000px;}
.x3{left:99.360000px;}
.x9{left:105.480000px;}
.x2{left:107.999986px;}
.x37{left:120.240000px;}
.x5{left:134.460000px;}
.xe{left:159.599986px;}
.x24{left:184.439986px;}
.x11{left:188.939986px;}
.x8{left:200.190000px;}
.xb{left:231.780000px;}
.x28{left:237.630000px;}
.x10{left:310.619986px;}
.x7{left:324.030000px;}
.x2a{left:384.420000px;}
.x20{left:444.269986px;}
.xf{left:464.159986px;}
.x12{left:466.139986px;}
.x25{left:469.109986px;}
.x21{left:484.529986px;}
.x1b{left:486.059986px;}
.x2d{left:499.740000px;}
.x36{left:501.180000px;}
.x22{left:511.529986px;}
.x1f{left:513.059986px;}
.x30{left:636.000000px;}
.x16{left:640.050000px;}
.xc{left:693.600000px;}
.x23{left:867.059986px;}
@media print{
.v7{vertical-align:-18.560000pt;}
.v3{vertical-align:-5.440000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.440000pt;}
.v1{vertical-align:16.000000pt;}
.v4{vertical-align:18.560000pt;}
.v2{vertical-align:21.440000pt;}
.v6{vertical-align:24.000000pt;}
.lsf{letter-spacing:-0.456533pt;}
.lsc{letter-spacing:-0.367467pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.240000pt;}
.ls18{letter-spacing:-0.195733pt;}
.ls1b{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.160000pt;}
.lsd{letter-spacing:-0.136533pt;}
.ls19{letter-spacing:-0.048640pt;}
.ls1a{letter-spacing:-0.024320pt;}
.ls5{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.011520pt;}
.ls13{letter-spacing:0.024320pt;}
.ls3{letter-spacing:0.032000pt;}
.ls12{letter-spacing:0.048640pt;}
.ls9{letter-spacing:0.057600pt;}
.ls1{letter-spacing:0.080000pt;}
.ls10{letter-spacing:0.106667pt;}
.ls17{letter-spacing:0.124267pt;}
.lsb{letter-spacing:0.124480pt;}
.ls0{letter-spacing:0.160000pt;}
.ls16{letter-spacing:10.026667pt;}
.ls15{letter-spacing:22.496000pt;}
.lse{letter-spacing:38.903680pt;}
.ls4{letter-spacing:41.143680pt;}
.ls14{letter-spacing:46.496000pt;}
.lsa{letter-spacing:56.503680pt;}
.ls2{letter-spacing:851.386667pt;}
.ws2{word-spacing:-64.000000pt;}
.wsc{word-spacing:-53.440000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.520000pt;}
.wse{word-spacing:-13.484267pt;}
.ws4{word-spacing:-13.360000pt;}
.wsb{word-spacing:-13.223467pt;}
.ws8{word-spacing:-13.200000pt;}
.wsf{word-spacing:-13.164267pt;}
.wsd{word-spacing:-12.903467pt;}
.ws11{word-spacing:-12.664320pt;}
.ws12{word-spacing:-12.615680pt;}
.ws10{word-spacing:-12.591360pt;}
.ws5{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.680000pt;}
.ws1{word-spacing:-10.640000pt;}
.ws9{word-spacing:-8.640000pt;}
.wsa{word-spacing:-8.320000pt;}
.ws7{word-spacing:0.000000pt;}
._d{margin-left:-5.664000pt;}
._0{margin-left:-1.003520pt;}
._3{width:0.944107pt;}
._8{width:2.351360pt;}
._a{width:3.580480pt;}
._4{width:5.344000pt;}
._7{width:6.733440pt;}
._5{width:7.748800pt;}
._6{width:8.710720pt;}
._14{width:9.767680pt;}
._12{width:10.901760pt;}
._b{width:12.279360pt;}
._34{width:13.776427pt;}
._9{width:14.749440pt;}
._10{width:16.343787pt;}
._c{width:17.314560pt;}
._2e{width:18.211200pt;}
._18{width:19.131520pt;}
._13{width:20.114880pt;}
._f{width:21.072000pt;}
._1f{width:21.964480pt;}
._19{width:22.957120pt;}
._20{width:24.368640pt;}
._1c{width:25.490880pt;}
._1d{width:26.732907pt;}
._1e{width:27.633387pt;}
._24{width:28.580800pt;}
._16{width:29.496320pt;}
._2d{width:30.460800pt;}
._22{width:31.903680pt;}
._29{width:32.865600pt;}
._2b{width:34.415360pt;}
._23{width:35.537600pt;}
._25{width:36.820160pt;}
._15{width:38.583680pt;}
._21{width:39.919680pt;}
._2c{width:41.309120pt;}
._32{width:42.377813pt;}
._17{width:43.274560pt;}
._11{width:44.355200pt;}
._26{width:45.637760pt;}
._2f{width:47.561600pt;}
._31{width:50.678613pt;}
._2a{width:51.730027pt;}
._1b{width:52.792747pt;}
._1a{width:53.707200pt;}
._27{width:57.928960pt;}
._30{width:59.044587pt;}
._e{width:86.496000pt;}
._28{width:115.644160pt;}
._1{width:269.145707pt;}
._33{width:309.067840pt;}
._2{width:330.695147pt;}
.fs8{font-size:5.440000pt;}
.fsb{font-size:10.560000pt;}
.fs3{font-size:26.560000pt;}
.fsf{font-size:32.000000pt;}
.fse{font-size:34.560000pt;}
.fsa{font-size:37.440000pt;}
.fs2{font-size:42.560000pt;}
.fsd{font-size:45.440000pt;}
.fsc{font-size:48.000000pt;}
.fs10{font-size:50.560000pt;}
.fs1{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:85.440000pt;}
.fs9{font-size:96.000000pt;}
.fs5{font-size:117.440000pt;}
.fs7{font-size:149.440000pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:0.320000pt;}
.y7{bottom:2.320000pt;}
.y40{bottom:2.640000pt;}
.y21{bottom:2.880000pt;}
.y10{bottom:3.440000pt;}
.y22{bottom:4.160000pt;}
.y5{bottom:7.440000pt;}
.yf8{bottom:10.480000pt;}
.yf0{bottom:10.560000pt;}
.y19c{bottom:14.560000pt;}
.y6{bottom:14.640000pt;}
.y3f{bottom:16.400000pt;}
.yf1{bottom:18.160000pt;}
.y37{bottom:18.240000pt;}
.yf{bottom:19.840000pt;}
.yf6{bottom:25.840000pt;}
.yfe{bottom:25.920000pt;}
.yf3{bottom:25.946667pt;}
.y19b{bottom:26.800000pt;}
.ye{bottom:29.520000pt;}
.y3e{bottom:30.266667pt;}
.y52{bottom:31.680000pt;}
.yf9{bottom:33.520000pt;}
.y36{bottom:33.600000pt;}
.yf4{bottom:33.626667pt;}
.y19a{bottom:39.120000pt;}
.yf7{bottom:41.200000pt;}
.y100{bottom:41.280000pt;}
.y8{bottom:43.680000pt;}
.y3d{bottom:44.026667pt;}
.yd{bottom:45.946667pt;}
.yfa{bottom:48.800000pt;}
.y35{bottom:48.880000pt;}
.y51{bottom:53.360000pt;}
.y3c{bottom:57.866667pt;}
.yc{bottom:58.506667pt;}
.y34{bottom:64.240000pt;}
.y4{bottom:65.360000pt;}
.y3b{bottom:71.626667pt;}
.y33{bottom:79.600000pt;}
.y3a{bottom:85.466667pt;}
.yb{bottom:92.186667pt;}
.y11{bottom:92.426667pt;}
.y32{bottom:94.880000pt;}
.y39{bottom:99.226667pt;}
.yca{bottom:104.880000pt;}
.y11e{bottom:106.240000pt;}
.y13a{bottom:107.920000pt;}
.y15f{bottom:108.480000pt;}
.y31{bottom:110.240000pt;}
.y138{bottom:111.040000pt;}
.y50{bottom:112.240000pt;}
.y197{bottom:118.240000pt;}
.ya{bottom:121.066667pt;}
.y11d{bottom:121.520000pt;}
.yad{bottom:121.680000pt;}
.y15e{bottom:123.120000pt;}
.y139{bottom:123.280000pt;}
.y86{bottom:125.520000pt;}
.y30{bottom:125.600000pt;}
.y137{bottom:126.320000pt;}
.y4f{bottom:127.520000pt;}
.y196{bottom:132.080000pt;}
.y11c{bottom:136.880000pt;}
.yac{bottom:137.040000pt;}
.y15d{bottom:137.680000pt;}
.y2f{bottom:140.880000pt;}
.y85{bottom:140.906667pt;}
.y136{bottom:141.706667pt;}
.y4e{bottom:142.906667pt;}
.y45{bottom:143.920000pt;}
.y195{bottom:145.866667pt;}
.y11b{bottom:152.266667pt;}
.yab{bottom:152.426667pt;}
.y2e{bottom:156.240000pt;}
.y84{bottom:156.266667pt;}
.y135{bottom:157.066667pt;}
.y44{bottom:157.680000pt;}
.y199{bottom:157.786667pt;}
.y4d{bottom:158.266667pt;}
.y15c{bottom:166.826667pt;}
.y11a{bottom:167.546667pt;}
.yaa{bottom:167.706667pt;}
.yed{bottom:169.226667pt;}
.y43{bottom:171.520000pt;}
.y83{bottom:171.546667pt;}
.y2d{bottom:171.600000pt;}
.y134{bottom:172.346667pt;}
.y4c{bottom:173.546667pt;}
.y15b{bottom:181.386667pt;}
.y119{bottom:182.906667pt;}
.ya9{bottom:183.066667pt;}
.yec{bottom:184.586667pt;}
.y42{bottom:185.280000pt;}
.y2c{bottom:186.880000pt;}
.y82{bottom:186.906667pt;}
.y133{bottom:187.706667pt;}
.y4b{bottom:188.906667pt;}
.y15a{bottom:195.946667pt;}
.y118{bottom:198.266667pt;}
.ya8{bottom:198.426667pt;}
.yeb{bottom:199.866667pt;}
.y81{bottom:202.186667pt;}
.y2b{bottom:202.240000pt;}
.y132{bottom:202.986667pt;}
.y4a{bottom:204.266667pt;}
.y198{bottom:207.466667pt;}
.y159{bottom:210.506667pt;}
.y117{bottom:213.546667pt;}
.ya7{bottom:213.706667pt;}
.yea{bottom:215.226667pt;}
.y2a{bottom:217.520000pt;}
.y80{bottom:217.546667pt;}
.y131{bottom:218.346667pt;}
.y49{bottom:219.546667pt;}
.y158{bottom:225.066667pt;}
.y116{bottom:228.906667pt;}
.ya6{bottom:229.066667pt;}
.ye9{bottom:230.586667pt;}
.y29{bottom:232.880000pt;}
.y7f{bottom:232.906667pt;}
.y130{bottom:233.706667pt;}
.y48{bottom:234.906667pt;}
.y194{bottom:235.706667pt;}
.y157{bottom:239.626667pt;}
.ye8{bottom:242.986667pt;}
.y115{bottom:244.266667pt;}
.ya5{bottom:244.426667pt;}
.y7e{bottom:248.186667pt;}
.y28{bottom:248.266667pt;}
.y12f{bottom:248.986667pt;}
.y193{bottom:249.466667pt;}
.y47{bottom:250.186667pt;}
.y156{bottom:254.186667pt;}
.y114{bottom:259.546667pt;}
.ya4{bottom:259.706667pt;}
.y192{bottom:263.306667pt;}
.y27{bottom:263.546667pt;}
.y12e{bottom:264.346667pt;}
.y46{bottom:265.146667pt;}
.y155{bottom:268.746667pt;}
.y113{bottom:274.906667pt;}
.ya3{bottom:276.026667pt;}
.y23{bottom:276.346667pt;}
.y191{bottom:277.066667pt;}
.y26{bottom:278.906667pt;}
.y12d{bottom:279.706667pt;}
.y154{bottom:283.306667pt;}
.y112{bottom:290.266667pt;}
.y190{bottom:290.906667pt;}
.ya2{bottom:291.306667pt;}
.y7d{bottom:294.186667pt;}
.y25{bottom:294.266667pt;}
.y12c{bottom:294.986667pt;}
.y153{bottom:297.866667pt;}
.y18f{bottom:304.666667pt;}
.y111{bottom:305.546667pt;}
.ya1{bottom:306.666667pt;}
.y24{bottom:309.546667pt;}
.y12b{bottom:310.346667pt;}
.y152{bottom:312.426667pt;}
.y18e{bottom:318.506667pt;}
.y110{bottom:321.866667pt;}
.ya0{bottom:322.026667pt;}
.y7c{bottom:324.906667pt;}
.y12a{bottom:325.706667pt;}
.y151{bottom:326.986667pt;}
.y18d{bottom:332.266667pt;}
.y10f{bottom:337.146667pt;}
.y9f{bottom:337.306667pt;}
.yc9{bottom:339.706667pt;}
.y7b{bottom:340.186667pt;}
.y129{bottom:340.986667pt;}
.y150{bottom:341.626667pt;}
.y18c{bottom:346.026667pt;}
.y10e{bottom:352.506667pt;}
.y9e{bottom:352.666667pt;}
.yc8{bottom:355.066667pt;}
.y7a{bottom:355.546667pt;}
.y14f{bottom:356.186667pt;}
.y128{bottom:356.346667pt;}
.y18b{bottom:359.866667pt;}
.y9d{bottom:368.026667pt;}
.y10d{bottom:368.826667pt;}
.yc7{bottom:370.346667pt;}
.y14e{bottom:370.746667pt;}
.y79{bottom:370.906667pt;}
.y127{bottom:371.706667pt;}
.y18a{bottom:373.626667pt;}
.y10c{bottom:384.106667pt;}
.y9c{bottom:384.266667pt;}
.y14d{bottom:385.306667pt;}
.yc6{bottom:385.706667pt;}
.y78{bottom:386.186667pt;}
.y126{bottom:386.986667pt;}
.y189{bottom:387.466667pt;}
.y10b{bottom:399.466667pt;}
.y9b{bottom:399.626667pt;}
.y14c{bottom:399.866667pt;}
.yc5{bottom:401.066667pt;}
.y188{bottom:401.226667pt;}
.y77{bottom:401.546667pt;}
.y125{bottom:402.346667pt;}
.y14b{bottom:414.426667pt;}
.y9a{bottom:414.986667pt;}
.y187{bottom:415.066667pt;}
.y10a{bottom:415.786667pt;}
.yc4{bottom:416.346667pt;}
.y76{bottom:416.906667pt;}
.y124{bottom:417.706667pt;}
.y186{bottom:428.826667pt;}
.y14a{bottom:428.986667pt;}
.y99{bottom:430.266667pt;}
.y109{bottom:431.066667pt;}
.yc3{bottom:431.706667pt;}
.y75{bottom:432.186667pt;}
.y123{bottom:432.986667pt;}
.y185{bottom:442.666667pt;}
.y149{bottom:443.546667pt;}
.y98{bottom:445.626667pt;}
.y108{bottom:446.426667pt;}
.yc2{bottom:447.066667pt;}
.y74{bottom:447.546667pt;}
.y122{bottom:448.346667pt;}
.y184{bottom:456.426667pt;}
.y148{bottom:458.106667pt;}
.y97{bottom:460.986667pt;}
.yc1{bottom:462.346667pt;}
.y107{bottom:462.746667pt;}
.y73{bottom:462.906667pt;}
.y121{bottom:463.706667pt;}
.y183{bottom:470.266667pt;}
.ye7{bottom:472.426667pt;}
.y147{bottom:472.666667pt;}
.y41{bottom:473.466667pt;}
.y96{bottom:476.266667pt;}
.yc0{bottom:477.706667pt;}
.y106{bottom:478.026667pt;}
.y72{bottom:478.186667pt;}
.y120{bottom:478.986667pt;}
.y182{bottom:484.026667pt;}
.y146{bottom:487.226667pt;}
.ye6{bottom:487.786667pt;}
.y38{bottom:487.946667pt;}
.y95{bottom:491.626667pt;}
.ybf{bottom:493.066667pt;}
.y105{bottom:493.386667pt;}
.y71{bottom:493.546667pt;}
.y11f{bottom:494.346667pt;}
.y181{bottom:497.866667pt;}
.y145{bottom:501.786667pt;}
.ye5{bottom:503.146667pt;}
.y94{bottom:506.986667pt;}
.ybe{bottom:508.346667pt;}
.y70{bottom:508.826667pt;}
.y104{bottom:509.626667pt;}
.y180{bottom:511.653333pt;}
.y144{bottom:516.373333pt;}
.ye4{bottom:518.453333pt;}
.y93{bottom:522.293333pt;}
.ybd{bottom:523.733333pt;}
.y6f{bottom:524.213333pt;}
.y103{bottom:525.013333pt;}
.y17f{bottom:525.493333pt;}
.y143{bottom:530.933333pt;}
.ye3{bottom:533.813333pt;}
.y92{bottom:537.653333pt;}
.ybc{bottom:539.013333pt;}
.y17e{bottom:539.253333pt;}
.y6e{bottom:539.573333pt;}
.y102{bottom:540.373333pt;}
.y142{bottom:545.573333pt;}
.ye2{bottom:549.173333pt;}
.y91{bottom:553.013333pt;}
.y17d{bottom:553.093333pt;}
.ybb{bottom:554.373333pt;}
.y6d{bottom:554.853333pt;}
.y101{bottom:555.653333pt;}
.y141{bottom:560.133333pt;}
.ye1{bottom:564.453333pt;}
.y17c{bottom:566.853333pt;}
.y90{bottom:568.293333pt;}
.yff{bottom:568.773333pt;}
.yba{bottom:569.733333pt;}
.y6c{bottom:570.213333pt;}
.y140{bottom:574.693333pt;}
.y17b{bottom:580.693333pt;}
.ye0{bottom:580.773333pt;}
.y8f{bottom:584.613333pt;}
.yb9{bottom:585.013333pt;}
.y6b{bottom:585.573333pt;}
.y13f{bottom:589.253333pt;}
.y17a{bottom:594.453333pt;}
.ydf{bottom:596.133333pt;}
.y20{bottom:599.013333pt;}
.y8e{bottom:599.893333pt;}
.yb8{bottom:600.373333pt;}
.y6a{bottom:600.853333pt;}
.y13e{bottom:603.813333pt;}
.y179{bottom:608.293333pt;}
.yde{bottom:611.413333pt;}
.y8d{bottom:615.253333pt;}
.yb7{bottom:615.733333pt;}
.y69{bottom:616.213333pt;}
.y13d{bottom:618.373333pt;}
.y178{bottom:622.053333pt;}
.y1f{bottom:626.453333pt;}
.ydd{bottom:627.733333pt;}
.y1d{bottom:629.013333pt;}
.y8c{bottom:630.613333pt;}
.yfd{bottom:630.773333pt;}
.yb6{bottom:631.013333pt;}
.y68{bottom:631.573333pt;}
.y13c{bottom:632.933333pt;}
.y1c{bottom:634.133333pt;}
.y177{bottom:635.893333pt;}
.ydc{bottom:643.013333pt;}
.y8b{bottom:645.893333pt;}
.yb5{bottom:646.373333pt;}
.y67{bottom:646.853333pt;}
.y13b{bottom:647.493333pt;}
.y1b{bottom:649.413333pt;}
.y176{bottom:649.653333pt;}
.ydb{bottom:658.373333pt;}
.y8a{bottom:661.253333pt;}
.yb4{bottom:661.733333pt;}
.y66{bottom:662.213333pt;}
.y175{bottom:663.493333pt;}
.y1a{bottom:664.773333pt;}
.yda{bottom:674.693333pt;}
.y89{bottom:676.613333pt;}
.yb3{bottom:677.013333pt;}
.y174{bottom:677.253333pt;}
.yfc{bottom:677.493333pt;}
.y65{bottom:677.573333pt;}
.y19{bottom:682.453333pt;}
.yd9{bottom:689.973333pt;}
.y173{bottom:691.093333pt;}
.y88{bottom:691.893333pt;}
.yb2{bottom:692.373333pt;}
.y64{bottom:692.853333pt;}
.y172{bottom:704.853333pt;}
.yd8{bottom:705.333333pt;}
.y87{bottom:707.253333pt;}
.yb1{bottom:707.733333pt;}
.y18{bottom:707.973333pt;}
.y63{bottom:708.213333pt;}
.y171{bottom:718.693333pt;}
.yd7{bottom:720.693333pt;}
.y62{bottom:723.573333pt;}
.yb0{bottom:723.973333pt;}
.yfb{bottom:724.133333pt;}
.y17{bottom:724.853333pt;}
.y170{bottom:732.453333pt;}
.yd6{bottom:735.973333pt;}
.y61{bottom:738.853333pt;}
.yaf{bottom:739.333333pt;}
.y16{bottom:743.733333pt;}
.y16f{bottom:746.293333pt;}
.yd5{bottom:751.333333pt;}
.yae{bottom:751.813333pt;}
.y60{bottom:754.213333pt;}
.y16e{bottom:760.053333pt;}
.yd4{bottom:766.693333pt;}
.y5f{bottom:769.573333pt;}
.y15{bottom:771.333333pt;}
.y16d{bottom:773.893333pt;}
.yd3{bottom:781.973333pt;}
.y5e{bottom:784.853333pt;}
.y16c{bottom:787.653333pt;}
.yd2{bottom:797.333333pt;}
.y14{bottom:798.933333pt;}
.y5d{bottom:800.213333pt;}
.y16b{bottom:801.413333pt;}
.yf5{bottom:801.493333pt;}
.yd1{bottom:813.653333pt;}
.y16a{bottom:815.253333pt;}
.y5c{bottom:815.493333pt;}
.y13{bottom:824.213333pt;}
.yd0{bottom:828.933333pt;}
.y169{bottom:829.013333pt;}
.y5b{bottom:830.853333pt;}
.y168{bottom:842.853333pt;}
.ycf{bottom:844.293333pt;}
.y5a{bottom:846.213333pt;}
.y12{bottom:847.733333pt;}
.y9{bottom:849.653333pt;}
.y167{bottom:856.613333pt;}
.yce{bottom:859.653333pt;}
.y59{bottom:861.493333pt;}
.yf2{bottom:863.413333pt;}
.y166{bottom:870.453333pt;}
.ycd{bottom:875.893333pt;}
.y58{bottom:876.853333pt;}
.y165{bottom:884.240000pt;}
.ycc{bottom:891.280000pt;}
.y57{bottom:892.240000pt;}
.y164{bottom:898.080000pt;}
.ycb{bottom:906.560000pt;}
.y56{bottom:907.520000pt;}
.yef{bottom:910.160000pt;}
.y163{bottom:911.840000pt;}
.y55{bottom:922.880000pt;}
.y162{bottom:925.680000pt;}
.y54{bottom:938.240000pt;}
.y161{bottom:939.600000pt;}
.yee{bottom:943.200000pt;}
.y53{bottom:953.520000pt;}
.y160{bottom:954.160000pt;}
.y3{bottom:979.840000pt;}
.y2{bottom:995.120000pt;}
.y1{bottom:1011.040000pt;}
.h13{height:1.520000pt;}
.h14{height:3.798437pt;}
.hf{height:3.838281pt;}
.h15{height:7.450781pt;}
.h2b{height:12.240000pt;}
.h1b{height:13.840000pt;}
.h16{height:15.360000pt;}
.hc{height:18.545312pt;}
.ha{height:18.739844pt;}
.h21{height:22.578125pt;}
.h4{height:24.560000pt;}
.h6{height:29.717188pt;}
.h2c{height:30.028906pt;}
.h22{height:30.640000pt;}
.h1e{height:32.060937pt;}
.h1d{height:33.515625pt;}
.h17{height:33.867188pt;}
.h7{height:34.739844pt;}
.h2a{height:34.945312pt;}
.h29{height:35.303125pt;}
.h1a{height:36.750000pt;}
.h5{height:37.314062pt;}
.h3{height:37.705469pt;}
.h1f{height:38.905781pt;}
.h2{height:40.262656pt;}
.h12{height:40.889062pt;}
.h28{height:40.915000pt;}
.h20{height:42.691250pt;}
.h1{height:45.156250pt;}
.h26{height:46.000000pt;}
.h23{height:46.026667pt;}
.h11{height:47.856406pt;}
.h2d{height:49.040000pt;}
.h8{height:58.245469pt;}
.h24{height:61.280000pt;}
.h27{height:61.360000pt;}
.hd{height:64.372031pt;}
.h10{height:67.734375pt;}
.h25{height:76.640000pt;}
.hb{height:82.861719pt;}
.he{height:105.439844pt;}
.h19{height:110.426667pt;}
.h9{height:127.306667pt;}
.h1c{height:196.480000pt;}
.h18{height:322.026667pt;}
.h0{height:1056.000000pt;}
.w2{width:30.240000pt;}
.wb{width:101.786667pt;}
.wc{width:120.480000pt;}
.wa{width:129.840000pt;}
.w9{width:146.186667pt;}
.w5{width:147.466667pt;}
.w8{width:202.906667pt;}
.wd{width:204.346667pt;}
.we{width:341.466667pt;}
.w7{width:526.693333pt;}
.w4{width:576.053333pt;}
.w3{width:662.640000pt;}
.w6{width:801.360000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.xd{left:-7.840000pt;}
.x0{left:0.000000pt;}
.x13{left:2.800000pt;}
.x4{left:3.840000pt;}
.x1c{left:5.999988pt;}
.x14{left:7.200000pt;}
.x32{left:10.640000pt;}
.x2b{left:12.720000pt;}
.x34{left:14.720000pt;}
.x29{left:17.680000pt;}
.x33{left:20.960000pt;}
.x35{left:26.160000pt;}
.x2c{left:27.200000pt;}
.x2f{left:31.680000pt;}
.x2e{left:33.920000pt;}
.x27{left:36.560000pt;}
.x18{left:38.800000pt;}
.x6{left:40.480000pt;}
.x15{left:41.520000pt;}
.x1d{left:46.320000pt;}
.x1{left:47.999988pt;}
.x19{left:53.039988pt;}
.x1a{left:53.999988pt;}
.x17{left:57.840000pt;}
.xa{left:62.640000pt;}
.x26{left:64.400000pt;}
.x31{left:69.200000pt;}
.x1e{left:77.520000pt;}
.x3{left:88.320000pt;}
.x9{left:93.760000pt;}
.x2{left:95.999988pt;}
.x37{left:106.880000pt;}
.x5{left:119.520000pt;}
.xe{left:141.866655pt;}
.x24{left:163.946655pt;}
.x11{left:167.946655pt;}
.x8{left:177.946667pt;}
.xb{left:206.026667pt;}
.x28{left:211.226667pt;}
.x10{left:276.106655pt;}
.x7{left:288.026667pt;}
.x2a{left:341.706667pt;}
.x20{left:394.906655pt;}
.xf{left:412.586655pt;}
.x12{left:414.346655pt;}
.x25{left:416.986655pt;}
.x21{left:430.693321pt;}
.x1b{left:432.053321pt;}
.x2d{left:444.213333pt;}
.x36{left:445.493333pt;}
.x22{left:454.693321pt;}
.x1f{left:456.053321pt;}
.x30{left:565.333333pt;}
.x16{left:568.933333pt;}
.xc{left:616.533333pt;}
.x23{left:770.719988pt;}
}




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