
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_94f5228175f2697d8c555434.woff2')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_23dd86723bbd00f113763df3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.128418;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_319a804536c434593890966d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_22a83a805a8f2c30adaf7f70.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_1359128261d42fbc3dbd9808.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a034dffc7490ba4f8a7a004b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.966309;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_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_1e991813b8ca4528eeff8366.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.128418;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_6ba6a6abb19328000f9eb113.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_24cfadbde2da21dab963faca.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.040039;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);}
.v2{vertical-align:-20.880000px;}
.v3{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls8{letter-spacing:-1.008000px;}
.ls7{letter-spacing:-0.457800px;}
.ls10{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.226200px;}
.lsf{letter-spacing:-0.108000px;}
.lsa{letter-spacing:-0.089400px;}
.lse{letter-spacing:-0.072000px;}
.ls17{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.018000px;}
.ls13{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.259800px;}
.ls14{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.262080px;}
.ls12{letter-spacing:0.306600px;}
.ls9{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.720000px;}
.ls16{letter-spacing:20.136000px;}
.ls15{letter-spacing:20.160000px;}
.ls11{letter-spacing:46.026720px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.102200px;}
.ws2{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.246600px;}
.ws10{word-spacing:-15.199800px;}
.wse{word-spacing:-14.993280px;}
.ws8{word-spacing:-14.940000px;}
.ws11{word-spacing:-14.886720px;}
.wsf{word-spacing:-14.580000px;}
.ws7{word-spacing:-13.500000px;}
.wsa{word-spacing:-13.392000px;}
.wsb{word-spacing:-13.140000px;}
.ws4{word-spacing:-11.160000px;}
.ws6{word-spacing:-10.440000px;}
.ws5{word-spacing:-10.213800px;}
.ws3{word-spacing:-9.720000px;}
.ws9{word-spacing:-8.928000px;}
.wsc{word-spacing:0.000000px;}
._0{margin-left:-1.093680px;}
._1{width:1.651200px;}
._2{width:2.819040px;}
._8{width:4.209360px;}
._4{width:5.791680px;}
._3{width:7.074000px;}
._6{width:8.230800px;}
._11{width:9.318960px;}
._7{width:10.368000px;}
._5{width:12.285360px;}
._e{width:13.505760px;}
._9{width:16.374240px;}
._10{width:18.183120px;}
._f{width:19.422000px;}
._a{width:21.117360px;}
._b{width:22.170960px;}
._16{width:23.844240px;}
._c{width:30.447840px;}
._d{width:31.553280px;}
._18{width:38.393040px;}
._17{width:39.403920px;}
._14{width:48.226320px;}
._13{width:52.708320px;}
._15{width:54.202320px;}
._12{width:207.986880px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc5{color:rgb(13,13,13);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:5.760000px;}
.fs7{font-size:12.240000px;}
.fs2{font-size:18.000000px;}
.fsc{font-size:30.240000px;}
.fsb{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fsa{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.yab{bottom:0.900000px;}
.y4e{bottom:2.160000px;}
.y5{bottom:3.780000px;}
.y43{bottom:3.960000px;}
.y91{bottom:4.500000px;}
.y8f{bottom:4.680000px;}
.y5c{bottom:5.010000px;}
.y2{bottom:9.900000px;}
.y4d{bottom:10.260000px;}
.y5a{bottom:12.240000px;}
.ye6{bottom:16.560000px;}
.yf1{bottom:16.590000px;}
.y132{bottom:16.605000px;}
.y42{bottom:21.780000px;}
.y4{bottom:22.710000px;}
.y9d{bottom:23.040000px;}
.y9a{bottom:23.220000px;}
.y59{bottom:27.720000px;}
.ye5{bottom:35.100000px;}
.y41{bottom:39.780000px;}
.y4c{bottom:39.960000px;}
.y9c{bottom:41.760000px;}
.y99{bottom:41.805000px;}
.y58{bottom:43.200000px;}
.y3{bottom:47.910000px;}
.y4b{bottom:51.120000px;}
.y7{bottom:57.060000px;}
.y57{bottom:59.040000px;}
.y4a{bottom:62.820000px;}
.y40{bottom:74.160000px;}
.y49{bottom:75.780000px;}
.y56{bottom:78.300000px;}
.y48{bottom:88.920000px;}
.y44{bottom:89.280000px;}
.y3f{bottom:91.440000px;}
.y55{bottom:94.140000px;}
.yc4{bottom:99.000000px;}
.y128{bottom:99.900000px;}
.y3e{bottom:108.720000px;}
.y47{bottom:110.880000px;}
.y54{bottom:113.250000px;}
.yf6{bottom:116.280000px;}
.yc3{bottom:118.260000px;}
.y127{bottom:118.620000px;}
.y3d{bottom:126.000000px;}
.y8c{bottom:126.180000px;}
.y53{bottom:128.730000px;}
.yf5{bottom:133.560000px;}
.y126{bottom:137.160000px;}
.yc2{bottom:137.700000px;}
.y3c{bottom:143.325000px;}
.y52{bottom:144.390000px;}
.y8b{bottom:144.720000px;}
.yf4{bottom:150.840000px;}
.y125{bottom:155.880000px;}
.yc1{bottom:156.960000px;}
.y51{bottom:159.870000px;}
.y3b{bottom:160.605000px;}
.y8a{bottom:162.720000px;}
.yf3{bottom:168.120000px;}
.y46{bottom:172.830000px;}
.y124{bottom:174.420000px;}
.y50{bottom:175.350000px;}
.yc0{bottom:176.400000px;}
.y3a{bottom:177.705000px;}
.y89{bottom:180.000000px;}
.y45{bottom:183.450000px;}
.yf2{bottom:185.400000px;}
.y4f{bottom:190.830000px;}
.y123{bottom:192.960000px;}
.y39{bottom:194.985000px;}
.ybf{bottom:195.660000px;}
.y88{bottom:197.100000px;}
.yf0{bottom:200.160000px;}
.y122{bottom:211.710000px;}
.y38{bottom:212.265000px;}
.y87{bottom:214.410000px;}
.ybe{bottom:215.130000px;}
.y157{bottom:226.650000px;}
.y37{bottom:229.545000px;}
.y121{bottom:230.250000px;}
.yef{bottom:231.510000px;}
.y86{bottom:231.690000px;}
.ybd{bottom:234.570000px;}
.y156{bottom:243.750000px;}
.y36{bottom:246.825000px;}
.y85{bottom:248.970000px;}
.ybc{bottom:253.830000px;}
.y155{bottom:261.030000px;}
.yee{bottom:262.830000px;}
.y35{bottom:263.925000px;}
.y84{bottom:266.790000px;}
.y120{bottom:267.510000px;}
.ybb{bottom:273.270000px;}
.y154{bottom:278.310000px;}
.y34{bottom:281.205000px;}
.y83{bottom:284.070000px;}
.y11f{bottom:286.050000px;}
.yba{bottom:292.530000px;}
.y20{bottom:292.545000px;}
.yed{bottom:294.150000px;}
.y153{bottom:295.590000px;}
.y33{bottom:298.485000px;}
.y82{bottom:301.350000px;}
.y12{bottom:302.790000px;}
.y11e{bottom:304.770000px;}
.y1f{bottom:309.825000px;}
.yb9{bottom:311.970000px;}
.y152{bottom:312.870000px;}
.y32{bottom:315.765000px;}
.y81{bottom:318.630000px;}
.y11d{bottom:323.310000px;}
.yec{bottom:328.890000px;}
.y151{bottom:330.150000px;}
.yb8{bottom:331.230000px;}
.y31{bottom:333.045000px;}
.y1e{bottom:333.945000px;}
.y80{bottom:335.910000px;}
.y11c{bottom:342.030000px;}
.yeb{bottom:345.990000px;}
.y150{bottom:347.250000px;}
.y30{bottom:350.325000px;}
.yb7{bottom:350.670000px;}
.y7f{bottom:353.010000px;}
.y1d{bottom:358.065000px;}
.y11b{bottom:360.570000px;}
.yea{bottom:363.270000px;}
.y14f{bottom:364.530000px;}
.y2f{bottom:367.425000px;}
.yb6{bottom:370.110000px;}
.y7e{bottom:370.290000px;}
.ye9{bottom:378.030000px;}
.y11a{bottom:379.110000px;}
.y14e{bottom:381.810000px;}
.y1c{bottom:382.395000px;}
.y2e{bottom:384.735000px;}
.y7d{bottom:387.570000px;}
.yb5{bottom:389.370000px;}
.y119{bottom:397.830000px;}
.y14d{bottom:399.090000px;}
.y2d{bottom:402.735000px;}
.y7c{bottom:404.850000px;}
.y1b{bottom:406.515000px;}
.yb4{bottom:408.810000px;}
.ye8{bottom:409.350000px;}
.y118{bottom:416.370000px;}
.y2c{bottom:420.195000px;}
.y7b{bottom:422.670000px;}
.yb3{bottom:428.070000px;}
.y1a{bottom:430.635000px;}
.y14c{bottom:433.650000px;}
.y117{bottom:435.090000px;}
.y2b{bottom:436.215000px;}
.y7a{bottom:439.995000px;}
.ye7{bottom:440.895000px;}
.yb2{bottom:447.555000px;}
.y14b{bottom:450.795000px;}
.y2a{bottom:452.415000px;}
.y116{bottom:453.675000px;}
.y19{bottom:454.755000px;}
.y79{bottom:457.275000px;}
.yb1{bottom:466.995000px;}
.y14a{bottom:468.075000px;}
.y29{bottom:468.435000px;}
.ye4{bottom:472.215000px;}
.y115{bottom:472.395000px;}
.y78{bottom:474.555000px;}
.y18{bottom:478.875000px;}
.y28{bottom:484.635000px;}
.y149{bottom:485.355000px;}
.yb0{bottom:486.255000px;}
.y114{bottom:490.935000px;}
.y77{bottom:491.835000px;}
.y27{bottom:500.655000px;}
.y148{bottom:502.635000px;}
.y17{bottom:502.995000px;}
.yaf{bottom:505.695000px;}
.y113{bottom:509.475000px;}
.y76{bottom:509.655000px;}
.y26{bottom:516.855000px;}
.y147{bottom:519.915000px;}
.yae{bottom:524.955000px;}
.ye3{bottom:525.495000px;}
.y75{bottom:526.935000px;}
.y16{bottom:527.295000px;}
.y112{bottom:528.195000px;}
.y25{bottom:532.875000px;}
.y146{bottom:537.015000px;}
.ye2{bottom:542.595000px;}
.y74{bottom:544.215000px;}
.yad{bottom:544.395000px;}
.y111{bottom:546.735000px;}
.y24{bottom:549.075000px;}
.y15{bottom:551.415000px;}
.y145{bottom:554.295000px;}
.ye1{bottom:559.875000px;}
.y73{bottom:561.315000px;}
.yac{bottom:563.655000px;}
.y23{bottom:565.095000px;}
.y110{bottom:565.455000px;}
.y144{bottom:571.575000px;}
.y14{bottom:575.535000px;}
.ye0{bottom:577.155000px;}
.y72{bottom:578.595000px;}
.y22{bottom:581.295000px;}
.yaa{bottom:583.095000px;}
.y10f{bottom:583.995000px;}
.ya9{bottom:585.615000px;}
.y143{bottom:588.855000px;}
.ydf{bottom:591.915000px;}
.y71{bottom:596.595000px;}
.y21{bottom:596.775000px;}
.y13{bottom:599.655000px;}
.y10e{bottom:602.535000px;}
.y142{bottom:606.135000px;}
.ya8{bottom:609.555000px;}
.yde{bottom:611.355000px;}
.y70{bottom:613.875000px;}
.y10d{bottom:621.255000px;}
.y141{bottom:623.415000px;}
.y6f{bottom:627.735000px;}
.ya7{bottom:628.095000px;}
.ydd{bottom:630.615000px;}
.y10c{bottom:639.795000px;}
.y140{bottom:640.515000px;}
.ya6{bottom:646.815000px;}
.ydc{bottom:650.055000px;}
.y13f{bottom:657.795000px;}
.y10b{bottom:658.515000px;}
.ya5{bottom:665.355000px;}
.ydb{bottom:674.025000px;}
.y13e{bottom:675.105000px;}
.y10a{bottom:677.085000px;}
.ya4{bottom:683.925000px;}
.y13d{bottom:692.385000px;}
.yd9{bottom:692.565000px;}
.yda{bottom:695.625000px;}
.ya3{bottom:702.645000px;}
.y13c{bottom:709.665000px;}
.yd8{bottom:711.285000px;}
.y109{bottom:714.345000px;}
.ya2{bottom:721.185000px;}
.y13b{bottom:726.945000px;}
.yd7{bottom:729.825000px;}
.y108{bottom:732.885000px;}
.ya1{bottom:739.905000px;}
.yd6{bottom:744.585000px;}
.y13a{bottom:744.765000px;}
.y107{bottom:751.605000px;}
.ya0{bottom:754.665000px;}
.y139{bottom:762.045000px;}
.yd5{bottom:764.025000px;}
.y106{bottom:770.145000px;}
.y9f{bottom:773.925000px;}
.y138{bottom:779.325000px;}
.yd4{bottom:783.285000px;}
.y105{bottom:788.145000px;}
.y9e{bottom:793.365000px;}
.y137{bottom:796.425000px;}
.y104{bottom:805.425000px;}
.y6e{bottom:810.105000px;}
.y9b{bottom:812.805000px;}
.y136{bottom:813.705000px;}
.y103{bottom:822.525000px;}
.yd3{bottom:824.505000px;}
.y6d{bottom:827.385000px;}
.y135{bottom:830.985000px;}
.y102{bottom:839.805000px;}
.yd2{bottom:841.785000px;}
.y6c{bottom:844.665000px;}
.y134{bottom:848.265000px;}
.y101{bottom:857.085000px;}
.yd1{bottom:859.065000px;}
.y6b{bottom:861.945000px;}
.y133{bottom:863.025000px;}
.y98{bottom:869.325000px;}
.y100{bottom:874.365000px;}
.yd0{bottom:877.605000px;}
.y6a{bottom:879.225000px;}
.yff{bottom:891.645000px;}
.y131{bottom:894.345000px;}
.y69{bottom:896.325000px;}
.yfe{bottom:908.925000px;}
.y68{bottom:913.650000px;}
.y11{bottom:914.730000px;}
.ycf{bottom:914.910000px;}
.y10{bottom:924.630000px;}
.y130{bottom:925.710000px;}
.y97{bottom:925.890000px;}
.yfd{bottom:926.070000px;}
.y67{bottom:930.930000px;}
.yce{bottom:933.450000px;}
.yf{bottom:941.910000px;}
.yfc{bottom:943.350000px;}
.y96{bottom:945.330000px;}
.y66{bottom:948.210000px;}
.ycd{bottom:952.170000px;}
.y12f{bottom:957.210000px;}
.ye{bottom:959.190000px;}
.yfb{bottom:960.630000px;}
.y95{bottom:964.590000px;}
.y65{bottom:965.490000px;}
.ycc{bottom:970.710000px;}
.yd{bottom:976.470000px;}
.yfa{bottom:977.910000px;}
.y64{bottom:982.770000px;}
.y94{bottom:984.030000px;}
.yc{bottom:988.350000px;}
.ycb{bottom:989.430000px;}
.yf9{bottom:992.670000px;}
.y12e{bottom:993.030000px;}
.y63{bottom:999.870000px;}
.y93{bottom:1003.470000px;}
.yb{bottom:1007.790000px;}
.yca{bottom:1007.970000px;}
.y12d{bottom:1011.750000px;}
.y62{bottom:1017.870000px;}
.y92{bottom:1022.730000px;}
.yf8{bottom:1023.990000px;}
.yc9{bottom:1026.510000px;}
.y12c{bottom:1030.290000px;}
.ya{bottom:1032.990000px;}
.y61{bottom:1035.150000px;}
.y90{bottom:1042.170000px;}
.yc8{bottom:1045.230000px;}
.y12b{bottom:1049.010000px;}
.y60{bottom:1052.250000px;}
.yf7{bottom:1055.310000px;}
.y9{bottom:1058.010000px;}
.yc7{bottom:1059.990000px;}
.y8e{bottom:1061.430000px;}
.y12a{bottom:1067.550000px;}
.y5f{bottom:1069.530000px;}
.yc6{bottom:1079.430000px;}
.y8d{bottom:1085.370000px;}
.y129{bottom:1086.090000px;}
.y8{bottom:1086.630000px;}
.y5e{bottom:1086.810000px;}
.y5b{bottom:1089.900000px;}
.yc5{bottom:1098.690000px;}
.y5d{bottom:1104.090000px;}
.y6{bottom:1119.390000px;}
.y1{bottom:1123.530000px;}
.h20{height:1.800000px;}
.hd{height:5.256563px;}
.h11{height:8.546484px;}
.h6{height:17.903320px;}
.h1d{height:18.540000px;}
.h1c{height:18.720000px;}
.h21{height:18.756000px;}
.h17{height:21.114844px;}
.h16{height:25.136719px;}
.hb{height:27.147656px;}
.h1a{height:27.720000px;}
.h10{height:29.158594px;}
.h24{height:30.600000px;}
.h25{height:30.636000px;}
.hc{height:33.656836px;}
.h22{height:37.260000px;}
.hf{height:38.110078px;}
.h12{height:38.997070px;}
.h7{height:41.726953px;}
.h13{height:44.507812px;}
.h5{height:46.251562px;}
.h23{height:49.140000px;}
.h19{height:49.255313px;}
.h18{height:49.280273px;}
.h8{height:51.908555px;}
.h14{height:54.536836px;}
.h1f{height:55.800000px;}
.h1e{height:55.836000px;}
.ha{height:56.361797px;}
.h1b{height:64.002656px;}
.h3{height:65.884219px;}
.h9{height:76.877227px;}
.h2{height:84.996000px;}
.h4{height:117.180000px;}
.h15{height:212.790000px;}
.he{height:609.405000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w13{width:53.676000px;}
.w1d{width:53.820000px;}
.wd{width:69.840000px;}
.w12{width:80.280000px;}
.w27{width:81.576000px;}
.wb{width:91.296000px;}
.wa{width:91.440000px;}
.w9{width:91.476000px;}
.w22{width:95.580000px;}
.w23{width:95.616000px;}
.w1a{width:98.100000px;}
.w2{width:104.076000px;}
.w26{width:105.120000px;}
.w17{width:108.720000px;}
.w18{width:108.756000px;}
.w19{width:119.376000px;}
.w15{width:126.180000px;}
.w20{width:126.756000px;}
.w1f{width:126.900000px;}
.w5{width:132.696000px;}
.wf{width:134.496000px;}
.w1c{width:135.756000px;}
.w8{width:139.716000px;}
.w10{width:143.316000px;}
.w1b{width:144.756000px;}
.w1e{width:145.116000px;}
.w21{width:147.996000px;}
.w14{width:153.180000px;}
.w25{width:160.230000px;}
.w16{width:162.210000px;}
.w7{width:162.900000px;}
.w29{width:221.970000px;}
.w28{width:222.690000px;}
.w24{width:235.650000px;}
.we{width:282.810000px;}
.w2a{width:342.615000px;}
.wc{width:562.065000px;}
.w6{width:596.490000px;}
.w3{width:622.410000px;}
.w11{width:632.625000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:7.056000px;}
.x1b{left:8.100000px;}
.x4{left:12.780000px;}
.x6{left:16.020000px;}
.x1e{left:18.216000px;}
.x19{left:19.656000px;}
.x18{left:22.536000px;}
.x20{left:29.196000px;}
.x17{left:31.716000px;}
.x11{left:43.776000px;}
.x1f{left:47.736000px;}
.x12{left:50.796000px;}
.x10{left:54.936000px;}
.x21{left:57.096000px;}
.x1c{left:62.865000px;}
.x16{left:67.170000px;}
.x14{left:71.850000px;}
.x1{left:78.300000px;}
.x15{left:83.730000px;}
.x9{left:86.399987px;}
.x2{left:95.790000px;}
.x22{left:102.810000px;}
.x1d{left:106.770000px;}
.x44{left:111.096000px;}
.x25{left:113.435987px;}
.x32{left:118.295987px;}
.x13{left:124.590000px;}
.x2a{left:130.356000px;}
.x5{left:141.345000px;}
.x33{left:146.195987px;}
.x39{left:151.050000px;}
.x34{left:155.370000px;}
.x2e{left:157.350000px;}
.x40{left:160.770000px;}
.x3{left:182.370000px;}
.x45{left:216.930000px;}
.x1a{left:219.090000px;}
.xa{left:234.929987px;}
.x26{left:238.530000px;}
.x35{left:264.810000px;}
.x3a{left:287.535000px;}
.x2f{left:292.935000px;}
.xd{left:303.014987px;}
.x3d{left:306.795000px;}
.x41{left:321.915000px;}
.xe{left:331.094987px;}
.x3b{left:342.075000px;}
.xb{left:372.854987px;}
.x36{left:374.295000px;}
.xc{left:376.094987px;}
.x27{left:378.975000px;}
.x3e{left:403.095000px;}
.x2c{left:413.895000px;}
.x42{left:427.755000px;}
.x46{left:439.635000px;}
.x30{left:446.865000px;}
.x28{left:471.165000px;}
.x3c{left:487.905000px;}
.x37{left:494.385000px;}
.x3f{left:499.425000px;}
.x43{left:510.045000px;}
.x2d{left:549.105000px;}
.x29{left:563.325000px;}
.x31{left:573.765000px;}
.x38{left:593.205000px;}
.x24{left:615.704987px;}
.x2b{left:693.150000px;}
.x8{left:766.049987px;}
.x7{left:791.969987px;}
.xf{left:806.939987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls8{letter-spacing:-0.896000pt;}
.ls7{letter-spacing:-0.406933pt;}
.ls10{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.201067pt;}
.lsf{letter-spacing:-0.096000pt;}
.lsa{letter-spacing:-0.079467pt;}
.lse{letter-spacing:-0.064000pt;}
.ls17{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.016000pt;}
.ls13{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.230933pt;}
.ls14{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.232960pt;}
.ls12{letter-spacing:0.272533pt;}
.ls9{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.640000pt;}
.ls16{letter-spacing:17.898667pt;}
.ls15{letter-spacing:17.920000pt;}
.ls11{letter-spacing:40.912640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.313067pt;}
.ws2{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.552533pt;}
.ws10{word-spacing:-13.510933pt;}
.wse{word-spacing:-13.327360pt;}
.ws8{word-spacing:-13.280000pt;}
.ws11{word-spacing:-13.232640pt;}
.wsf{word-spacing:-12.960000pt;}
.ws7{word-spacing:-12.000000pt;}
.wsa{word-spacing:-11.904000pt;}
.wsb{word-spacing:-11.680000pt;}
.ws4{word-spacing:-9.920000pt;}
.ws6{word-spacing:-9.280000pt;}
.ws5{word-spacing:-9.078933pt;}
.ws3{word-spacing:-8.640000pt;}
.ws9{word-spacing:-7.936000pt;}
.wsc{word-spacing:0.000000pt;}
._0{margin-left:-0.972160pt;}
._1{width:1.467733pt;}
._2{width:2.505813pt;}
._8{width:3.741653pt;}
._4{width:5.148160pt;}
._3{width:6.288000pt;}
._6{width:7.316267pt;}
._11{width:8.283520pt;}
._7{width:9.216000pt;}
._5{width:10.920320pt;}
._e{width:12.005120pt;}
._9{width:14.554880pt;}
._10{width:16.162773pt;}
._f{width:17.264000pt;}
._a{width:18.770987pt;}
._b{width:19.707520pt;}
._16{width:21.194880pt;}
._c{width:27.064747pt;}
._d{width:28.047360pt;}
._18{width:34.127147pt;}
._17{width:35.025707pt;}
._14{width:42.867840pt;}
._13{width:46.851840pt;}
._15{width:48.179840pt;}
._12{width:184.877227pt;}
.fs8{font-size:5.120000pt;}
.fs7{font-size:10.880000pt;}
.fs2{font-size:16.000000pt;}
.fsc{font-size:26.880000pt;}
.fsb{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fsa{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.yab{bottom:0.800000pt;}
.y4e{bottom:1.920000pt;}
.y5{bottom:3.360000pt;}
.y43{bottom:3.520000pt;}
.y91{bottom:4.000000pt;}
.y8f{bottom:4.160000pt;}
.y5c{bottom:4.453333pt;}
.y2{bottom:8.800000pt;}
.y4d{bottom:9.120000pt;}
.y5a{bottom:10.880000pt;}
.ye6{bottom:14.720000pt;}
.yf1{bottom:14.746667pt;}
.y132{bottom:14.760000pt;}
.y42{bottom:19.360000pt;}
.y4{bottom:20.186667pt;}
.y9d{bottom:20.480000pt;}
.y9a{bottom:20.640000pt;}
.y59{bottom:24.640000pt;}
.ye5{bottom:31.200000pt;}
.y41{bottom:35.360000pt;}
.y4c{bottom:35.520000pt;}
.y9c{bottom:37.120000pt;}
.y99{bottom:37.160000pt;}
.y58{bottom:38.400000pt;}
.y3{bottom:42.586667pt;}
.y4b{bottom:45.440000pt;}
.y7{bottom:50.720000pt;}
.y57{bottom:52.480000pt;}
.y4a{bottom:55.840000pt;}
.y40{bottom:65.920000pt;}
.y49{bottom:67.360000pt;}
.y56{bottom:69.600000pt;}
.y48{bottom:79.040000pt;}
.y44{bottom:79.360000pt;}
.y3f{bottom:81.280000pt;}
.y55{bottom:83.680000pt;}
.yc4{bottom:88.000000pt;}
.y128{bottom:88.800000pt;}
.y3e{bottom:96.640000pt;}
.y47{bottom:98.560000pt;}
.y54{bottom:100.666667pt;}
.yf6{bottom:103.360000pt;}
.yc3{bottom:105.120000pt;}
.y127{bottom:105.440000pt;}
.y3d{bottom:112.000000pt;}
.y8c{bottom:112.160000pt;}
.y53{bottom:114.426667pt;}
.yf5{bottom:118.720000pt;}
.y126{bottom:121.920000pt;}
.yc2{bottom:122.400000pt;}
.y3c{bottom:127.400000pt;}
.y52{bottom:128.346667pt;}
.y8b{bottom:128.640000pt;}
.yf4{bottom:134.080000pt;}
.y125{bottom:138.560000pt;}
.yc1{bottom:139.520000pt;}
.y51{bottom:142.106667pt;}
.y3b{bottom:142.760000pt;}
.y8a{bottom:144.640000pt;}
.yf3{bottom:149.440000pt;}
.y46{bottom:153.626667pt;}
.y124{bottom:155.040000pt;}
.y50{bottom:155.866667pt;}
.yc0{bottom:156.800000pt;}
.y3a{bottom:157.960000pt;}
.y89{bottom:160.000000pt;}
.y45{bottom:163.066667pt;}
.yf2{bottom:164.800000pt;}
.y4f{bottom:169.626667pt;}
.y123{bottom:171.520000pt;}
.y39{bottom:173.320000pt;}
.ybf{bottom:173.920000pt;}
.y88{bottom:175.200000pt;}
.yf0{bottom:177.920000pt;}
.y122{bottom:188.186667pt;}
.y38{bottom:188.680000pt;}
.y87{bottom:190.586667pt;}
.ybe{bottom:191.226667pt;}
.y157{bottom:201.466667pt;}
.y37{bottom:204.040000pt;}
.y121{bottom:204.666667pt;}
.yef{bottom:205.786667pt;}
.y86{bottom:205.946667pt;}
.ybd{bottom:208.506667pt;}
.y156{bottom:216.666667pt;}
.y36{bottom:219.400000pt;}
.y85{bottom:221.306667pt;}
.ybc{bottom:225.626667pt;}
.y155{bottom:232.026667pt;}
.yee{bottom:233.626667pt;}
.y35{bottom:234.600000pt;}
.y84{bottom:237.146667pt;}
.y120{bottom:237.786667pt;}
.ybb{bottom:242.906667pt;}
.y154{bottom:247.386667pt;}
.y34{bottom:249.960000pt;}
.y83{bottom:252.506667pt;}
.y11f{bottom:254.266667pt;}
.yba{bottom:260.026667pt;}
.y20{bottom:260.040000pt;}
.yed{bottom:261.466667pt;}
.y153{bottom:262.746667pt;}
.y33{bottom:265.320000pt;}
.y82{bottom:267.866667pt;}
.y12{bottom:269.146667pt;}
.y11e{bottom:270.906667pt;}
.y1f{bottom:275.400000pt;}
.yb9{bottom:277.306667pt;}
.y152{bottom:278.106667pt;}
.y32{bottom:280.680000pt;}
.y81{bottom:283.226667pt;}
.y11d{bottom:287.386667pt;}
.yec{bottom:292.346667pt;}
.y151{bottom:293.466667pt;}
.yb8{bottom:294.426667pt;}
.y31{bottom:296.040000pt;}
.y1e{bottom:296.840000pt;}
.y80{bottom:298.586667pt;}
.y11c{bottom:304.026667pt;}
.yeb{bottom:307.546667pt;}
.y150{bottom:308.666667pt;}
.y30{bottom:311.400000pt;}
.yb7{bottom:311.706667pt;}
.y7f{bottom:313.786667pt;}
.y1d{bottom:318.280000pt;}
.y11b{bottom:320.506667pt;}
.yea{bottom:322.906667pt;}
.y14f{bottom:324.026667pt;}
.y2f{bottom:326.600000pt;}
.yb6{bottom:328.986667pt;}
.y7e{bottom:329.146667pt;}
.ye9{bottom:336.026667pt;}
.y11a{bottom:336.986667pt;}
.y14e{bottom:339.386667pt;}
.y1c{bottom:339.906667pt;}
.y2e{bottom:341.986667pt;}
.y7d{bottom:344.506667pt;}
.yb5{bottom:346.106667pt;}
.y119{bottom:353.626667pt;}
.y14d{bottom:354.746667pt;}
.y2d{bottom:357.986667pt;}
.y7c{bottom:359.866667pt;}
.y1b{bottom:361.346667pt;}
.yb4{bottom:363.386667pt;}
.ye8{bottom:363.866667pt;}
.y118{bottom:370.106667pt;}
.y2c{bottom:373.506667pt;}
.y7b{bottom:375.706667pt;}
.yb3{bottom:380.506667pt;}
.y1a{bottom:382.786667pt;}
.y14c{bottom:385.466667pt;}
.y117{bottom:386.746667pt;}
.y2b{bottom:387.746667pt;}
.y7a{bottom:391.106667pt;}
.ye7{bottom:391.906667pt;}
.yb2{bottom:397.826667pt;}
.y14b{bottom:400.706667pt;}
.y2a{bottom:402.146667pt;}
.y116{bottom:403.266667pt;}
.y19{bottom:404.226667pt;}
.y79{bottom:406.466667pt;}
.yb1{bottom:415.106667pt;}
.y14a{bottom:416.066667pt;}
.y29{bottom:416.386667pt;}
.ye4{bottom:419.746667pt;}
.y115{bottom:419.906667pt;}
.y78{bottom:421.826667pt;}
.y18{bottom:425.666667pt;}
.y28{bottom:430.786667pt;}
.y149{bottom:431.426667pt;}
.yb0{bottom:432.226667pt;}
.y114{bottom:436.386667pt;}
.y77{bottom:437.186667pt;}
.y27{bottom:445.026667pt;}
.y148{bottom:446.786667pt;}
.y17{bottom:447.106667pt;}
.yaf{bottom:449.506667pt;}
.y113{bottom:452.866667pt;}
.y76{bottom:453.026667pt;}
.y26{bottom:459.426667pt;}
.y147{bottom:462.146667pt;}
.yae{bottom:466.626667pt;}
.ye3{bottom:467.106667pt;}
.y75{bottom:468.386667pt;}
.y16{bottom:468.706667pt;}
.y112{bottom:469.506667pt;}
.y25{bottom:473.666667pt;}
.y146{bottom:477.346667pt;}
.ye2{bottom:482.306667pt;}
.y74{bottom:483.746667pt;}
.yad{bottom:483.906667pt;}
.y111{bottom:485.986667pt;}
.y24{bottom:488.066667pt;}
.y15{bottom:490.146667pt;}
.y145{bottom:492.706667pt;}
.ye1{bottom:497.666667pt;}
.y73{bottom:498.946667pt;}
.yac{bottom:501.026667pt;}
.y23{bottom:502.306667pt;}
.y110{bottom:502.626667pt;}
.y144{bottom:508.066667pt;}
.y14{bottom:511.586667pt;}
.ye0{bottom:513.026667pt;}
.y72{bottom:514.306667pt;}
.y22{bottom:516.706667pt;}
.yaa{bottom:518.306667pt;}
.y10f{bottom:519.106667pt;}
.ya9{bottom:520.546667pt;}
.y143{bottom:523.426667pt;}
.ydf{bottom:526.146667pt;}
.y71{bottom:530.306667pt;}
.y21{bottom:530.466667pt;}
.y13{bottom:533.026667pt;}
.y10e{bottom:535.586667pt;}
.y142{bottom:538.786667pt;}
.ya8{bottom:541.826667pt;}
.yde{bottom:543.426667pt;}
.y70{bottom:545.666667pt;}
.y10d{bottom:552.226667pt;}
.y141{bottom:554.146667pt;}
.y6f{bottom:557.986667pt;}
.ya7{bottom:558.306667pt;}
.ydd{bottom:560.546667pt;}
.y10c{bottom:568.706667pt;}
.y140{bottom:569.346667pt;}
.ya6{bottom:574.946667pt;}
.ydc{bottom:577.826667pt;}
.y13f{bottom:584.706667pt;}
.y10b{bottom:585.346667pt;}
.ya5{bottom:591.426667pt;}
.ydb{bottom:599.133333pt;}
.y13e{bottom:600.093333pt;}
.y10a{bottom:601.853333pt;}
.ya4{bottom:607.933333pt;}
.y13d{bottom:615.453333pt;}
.yd9{bottom:615.613333pt;}
.yda{bottom:618.333333pt;}
.ya3{bottom:624.573333pt;}
.y13c{bottom:630.813333pt;}
.yd8{bottom:632.253333pt;}
.y109{bottom:634.973333pt;}
.ya2{bottom:641.053333pt;}
.y13b{bottom:646.173333pt;}
.yd7{bottom:648.733333pt;}
.y108{bottom:651.453333pt;}
.ya1{bottom:657.693333pt;}
.yd6{bottom:661.853333pt;}
.y13a{bottom:662.013333pt;}
.y107{bottom:668.093333pt;}
.ya0{bottom:670.813333pt;}
.y139{bottom:677.373333pt;}
.yd5{bottom:679.133333pt;}
.y106{bottom:684.573333pt;}
.y9f{bottom:687.933333pt;}
.y138{bottom:692.733333pt;}
.yd4{bottom:696.253333pt;}
.y105{bottom:700.573333pt;}
.y9e{bottom:705.213333pt;}
.y137{bottom:707.933333pt;}
.y104{bottom:715.933333pt;}
.y6e{bottom:720.093333pt;}
.y9b{bottom:722.493333pt;}
.y136{bottom:723.293333pt;}
.y103{bottom:731.133333pt;}
.yd3{bottom:732.893333pt;}
.y6d{bottom:735.453333pt;}
.y135{bottom:738.653333pt;}
.y102{bottom:746.493333pt;}
.yd2{bottom:748.253333pt;}
.y6c{bottom:750.813333pt;}
.y134{bottom:754.013333pt;}
.y101{bottom:761.853333pt;}
.yd1{bottom:763.613333pt;}
.y6b{bottom:766.173333pt;}
.y133{bottom:767.133333pt;}
.y98{bottom:772.733333pt;}
.y100{bottom:777.213333pt;}
.yd0{bottom:780.093333pt;}
.y6a{bottom:781.533333pt;}
.yff{bottom:792.573333pt;}
.y131{bottom:794.973333pt;}
.y69{bottom:796.733333pt;}
.yfe{bottom:807.933333pt;}
.y68{bottom:812.133333pt;}
.y11{bottom:813.093333pt;}
.ycf{bottom:813.253333pt;}
.y10{bottom:821.893333pt;}
.y130{bottom:822.853333pt;}
.y97{bottom:823.013333pt;}
.yfd{bottom:823.173333pt;}
.y67{bottom:827.493333pt;}
.yce{bottom:829.733333pt;}
.yf{bottom:837.253333pt;}
.yfc{bottom:838.533333pt;}
.y96{bottom:840.293333pt;}
.y66{bottom:842.853333pt;}
.ycd{bottom:846.373333pt;}
.y12f{bottom:850.853333pt;}
.ye{bottom:852.613333pt;}
.yfb{bottom:853.893333pt;}
.y95{bottom:857.413333pt;}
.y65{bottom:858.213333pt;}
.ycc{bottom:862.853333pt;}
.yd{bottom:867.973333pt;}
.yfa{bottom:869.253333pt;}
.y64{bottom:873.573333pt;}
.y94{bottom:874.693333pt;}
.yc{bottom:878.533333pt;}
.ycb{bottom:879.493333pt;}
.yf9{bottom:882.373333pt;}
.y12e{bottom:882.693333pt;}
.y63{bottom:888.773333pt;}
.y93{bottom:891.973333pt;}
.yb{bottom:895.813333pt;}
.yca{bottom:895.973333pt;}
.y12d{bottom:899.333333pt;}
.y62{bottom:904.773333pt;}
.y92{bottom:909.093333pt;}
.yf8{bottom:910.213333pt;}
.yc9{bottom:912.453333pt;}
.y12c{bottom:915.813333pt;}
.ya{bottom:918.213333pt;}
.y61{bottom:920.133333pt;}
.y90{bottom:926.373333pt;}
.yc8{bottom:929.093333pt;}
.y12b{bottom:932.453333pt;}
.y60{bottom:935.333333pt;}
.yf7{bottom:938.053333pt;}
.y9{bottom:940.453333pt;}
.yc7{bottom:942.213333pt;}
.y8e{bottom:943.493333pt;}
.y12a{bottom:948.933333pt;}
.y5f{bottom:950.693333pt;}
.yc6{bottom:959.493333pt;}
.y8d{bottom:964.773333pt;}
.y129{bottom:965.413333pt;}
.y8{bottom:965.893333pt;}
.y5e{bottom:966.053333pt;}
.y5b{bottom:968.800000pt;}
.yc5{bottom:976.613333pt;}
.y5d{bottom:981.413333pt;}
.y6{bottom:995.013333pt;}
.y1{bottom:998.693333pt;}
.h20{height:1.600000pt;}
.hd{height:4.672500pt;}
.h11{height:7.596875pt;}
.h6{height:15.914062pt;}
.h1d{height:16.480000pt;}
.h1c{height:16.640000pt;}
.h21{height:16.672000pt;}
.h17{height:18.768750pt;}
.h16{height:22.343750pt;}
.hb{height:24.131250pt;}
.h1a{height:24.640000pt;}
.h10{height:25.918750pt;}
.h24{height:27.200000pt;}
.h25{height:27.232000pt;}
.hc{height:29.917187pt;}
.h22{height:33.120000pt;}
.hf{height:33.875625pt;}
.h12{height:34.664062pt;}
.h7{height:37.090625pt;}
.h13{height:39.562500pt;}
.h5{height:41.112500pt;}
.h23{height:43.680000pt;}
.h19{height:43.782500pt;}
.h18{height:43.804688pt;}
.h8{height:46.140937pt;}
.h14{height:48.477187pt;}
.h1f{height:49.600000pt;}
.h1e{height:49.632000pt;}
.ha{height:50.099375pt;}
.h1b{height:56.891250pt;}
.h3{height:58.563750pt;}
.h9{height:68.335313pt;}
.h2{height:75.552000pt;}
.h4{height:104.160000pt;}
.h15{height:189.146667pt;}
.he{height:541.693333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w13{width:47.712000pt;}
.w1d{width:47.840000pt;}
.wd{width:62.080000pt;}
.w12{width:71.360000pt;}
.w27{width:72.512000pt;}
.wb{width:81.152000pt;}
.wa{width:81.280000pt;}
.w9{width:81.312000pt;}
.w22{width:84.960000pt;}
.w23{width:84.992000pt;}
.w1a{width:87.200000pt;}
.w2{width:92.512000pt;}
.w26{width:93.440000pt;}
.w17{width:96.640000pt;}
.w18{width:96.672000pt;}
.w19{width:106.112000pt;}
.w15{width:112.160000pt;}
.w20{width:112.672000pt;}
.w1f{width:112.800000pt;}
.w5{width:117.952000pt;}
.wf{width:119.552000pt;}
.w1c{width:120.672000pt;}
.w8{width:124.192000pt;}
.w10{width:127.392000pt;}
.w1b{width:128.672000pt;}
.w1e{width:128.992000pt;}
.w21{width:131.552000pt;}
.w14{width:136.160000pt;}
.w25{width:142.426667pt;}
.w16{width:144.186667pt;}
.w7{width:144.800000pt;}
.w29{width:197.306667pt;}
.w28{width:197.946667pt;}
.w24{width:209.466667pt;}
.we{width:251.386667pt;}
.w2a{width:304.546667pt;}
.wc{width:499.613333pt;}
.w6{width:530.213333pt;}
.w3{width:553.253333pt;}
.w11{width:562.333333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:6.272000pt;}
.x1b{left:7.200000pt;}
.x4{left:11.360000pt;}
.x6{left:14.240000pt;}
.x1e{left:16.192000pt;}
.x19{left:17.472000pt;}
.x18{left:20.032000pt;}
.x20{left:25.952000pt;}
.x17{left:28.192000pt;}
.x11{left:38.912000pt;}
.x1f{left:42.432000pt;}
.x12{left:45.152000pt;}
.x10{left:48.832000pt;}
.x21{left:50.752000pt;}
.x1c{left:55.880000pt;}
.x16{left:59.706667pt;}
.x14{left:63.866667pt;}
.x1{left:69.600000pt;}
.x15{left:74.426667pt;}
.x9{left:76.799988pt;}
.x2{left:85.146667pt;}
.x22{left:91.386667pt;}
.x1d{left:94.906667pt;}
.x44{left:98.752000pt;}
.x25{left:100.831988pt;}
.x32{left:105.151988pt;}
.x13{left:110.746667pt;}
.x2a{left:115.872000pt;}
.x5{left:125.640000pt;}
.x33{left:129.951988pt;}
.x39{left:134.266667pt;}
.x34{left:138.106667pt;}
.x2e{left:139.866667pt;}
.x40{left:142.906667pt;}
.x3{left:162.106667pt;}
.x45{left:192.826667pt;}
.x1a{left:194.746667pt;}
.xa{left:208.826655pt;}
.x26{left:212.026667pt;}
.x35{left:235.386667pt;}
.x3a{left:255.586667pt;}
.x2f{left:260.386667pt;}
.xd{left:269.346655pt;}
.x3d{left:272.706667pt;}
.x41{left:286.146667pt;}
.xe{left:294.306655pt;}
.x3b{left:304.066667pt;}
.xb{left:331.426655pt;}
.x36{left:332.706667pt;}
.xc{left:334.306655pt;}
.x27{left:336.866667pt;}
.x3e{left:358.306667pt;}
.x2c{left:367.906667pt;}
.x42{left:380.226667pt;}
.x46{left:390.786667pt;}
.x30{left:397.213333pt;}
.x28{left:418.813333pt;}
.x3c{left:433.693333pt;}
.x37{left:439.453333pt;}
.x3f{left:443.933333pt;}
.x43{left:453.373333pt;}
.x2d{left:488.093333pt;}
.x29{left:500.733333pt;}
.x31{left:510.013333pt;}
.x38{left:527.293333pt;}
.x24{left:547.293322pt;}
.x2b{left:616.133333pt;}
.x8{left:680.933322pt;}
.x7{left:703.973322pt;}
.xf{left:717.279988pt;}
}




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