
    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_94a9b519c70f42a0e9d574d1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_9e04ab3a986046eb562485e0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.983398;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_1bfaa506e4aec00ed23d0121.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_74fc236688a6fca8561176b2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_21442c6a01f5013c0be3e5b0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.750000;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_e65c002f1eddf67d19082125.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.958008;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_8dd1472bcf9ae1b811073f23.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.923340;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_19f22ee094208b559b864ba1.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_cece8f8b51cc819b214df1bd.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_8feb323ea9afcc0ff5647bea.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_8db8011dda466a38d0e9bb36.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.934082;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:ffe;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.fff{font-family:fff;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls9{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.298200px;}
.ls7{letter-spacing:-0.127200px;}
.lsf{letter-spacing:-0.053280px;}
.ls6{letter-spacing:-0.018000px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls1{letter-spacing:0.132600px;}
.lse{letter-spacing:0.135600px;}
.ls2{letter-spacing:0.259920px;}
.lsd{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.447840px;}
.ls10{letter-spacing:0.540000px;}
.lsb{letter-spacing:3.060000px;}
.ls11{letter-spacing:16.506720px;}
.lsa{letter-spacing:46.026720px;}
.lsc{letter-spacing:64.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;}
}
.wsa{word-spacing:-59.760000px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws5{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.238800px;}
.wsc{word-spacing:-15.075600px;}
.ws7{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.886720px;}
.ws6{word-spacing:-14.580000px;}
.ws8{word-spacing:-13.505760px;}
.ws0{word-spacing:-12.186000px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.ws9{word-spacing:0.000000px;}
._1e{margin-left:-8.316960px;}
._18{margin-left:-6.336000px;}
._f{margin-left:-5.318640px;}
._3{margin-left:-4.086000px;}
._2{margin-left:-2.993760px;}
._0{margin-left:-1.134000px;}
._1{width:1.200000px;}
._5{width:2.226480px;}
._14{width:3.260880px;}
._7{width:4.661280px;}
._6{width:5.916240px;}
._e{width:7.230960px;}
._10{width:8.605440px;}
._1a{width:9.880800px;}
._16{width:11.206080px;}
._17{width:12.225360px;}
._15{width:13.284240px;}
._12{width:16.006080px;}
._1d{width:17.987040px;}
._b{width:19.099680px;}
._c{width:20.437920px;}
._13{width:21.989040px;}
._d{width:23.488320px;}
._8{width:25.452960px;}
._9{width:28.243200px;}
._a{width:29.396160px;}
._4{width:30.500880px;}
._19{width:31.548480px;}
._11{width:35.492640px;}
._1c{width:85.566960px;}
._1b{width:170.908800px;}
._1f{width:179.604720px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc7{color:rgb(34,34,34);}
.fc6{color:rgb(13,13,13);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y49{bottom:3.240000px;}
.yf8{bottom:3.420000px;}
.y4{bottom:3.600000px;}
.y1b{bottom:4.860000px;}
.yf{bottom:9.540000px;}
.y1d{bottom:12.420000px;}
.yd{bottom:13.860000px;}
.y3{bottom:20.160000px;}
.y48{bottom:20.340000px;}
.y4d{bottom:21.240000px;}
.yf6{bottom:21.420000px;}
.y6{bottom:25.740000px;}
.y4c{bottom:27.540000px;}
.y1a{bottom:29.340000px;}
.yc{bottom:30.240000px;}
.y5{bottom:33.876000px;}
.y2{bottom:36.576000px;}
.y47{bottom:37.620000px;}
.y4b{bottom:42.300000px;}
.y19{bottom:45.720000px;}
.yb{bottom:46.620000px;}
.y1{bottom:48.240000px;}
.y46{bottom:54.945000px;}
.y18{bottom:62.325000px;}
.y45{bottom:72.225000px;}
.ya{bottom:73.440000px;}
.y17{bottom:78.705000px;}
.y44{bottom:89.505000px;}
.y9{bottom:93.090000px;}
.y16{bottom:94.545000px;}
.y15{bottom:104.985000px;}
.y43{bottom:106.785000px;}
.y8{bottom:111.270000px;}
.y54{bottom:112.716000px;}
.yf2{bottom:113.436000px;}
.y8d{bottom:122.796000px;}
.y42{bottom:123.885000px;}
.y14{bottom:124.065000px;}
.yc5{bottom:126.216000px;}
.y53{bottom:129.996000px;}
.y8c{bottom:140.076000px;}
.y41{bottom:141.165000px;}
.yf1{bottom:142.776000px;}
.yc4{bottom:143.496000px;}
.y52{bottom:147.276000px;}
.y13{bottom:149.805000px;}
.y125{bottom:156.630000px;}
.y8b{bottom:157.350000px;}
.y40{bottom:158.445000px;}
.yc3{bottom:160.590000px;}
.y51{bottom:164.550000px;}
.yf0{bottom:171.930000px;}
.y124{bottom:173.910000px;}
.y12{bottom:175.545000px;}
.y8a{bottom:175.710000px;}
.y3f{bottom:175.725000px;}
.yc2{bottom:177.870000px;}
.y50{bottom:181.830000px;}
.yef{bottom:189.210000px;}
.y123{bottom:191.190000px;}
.y3e{bottom:193.005000px;}
.y89{bottom:194.610000px;}
.yc1{bottom:195.150000px;}
.y4f{bottom:199.830000px;}
.y11{bottom:199.845000px;}
.yee{bottom:206.490000px;}
.y122{bottom:208.290000px;}
.y3d{bottom:210.285000px;}
.y88{bottom:211.890000px;}
.yc0{bottom:212.430000px;}
.y4e{bottom:218.010000px;}
.yed{bottom:223.770000px;}
.y121{bottom:225.570000px;}
.y3c{bottom:227.385000px;}
.y87{bottom:229.170000px;}
.ybf{bottom:229.710000px;}
.y4a{bottom:232.410000px;}
.yec{bottom:240.870000px;}
.y120{bottom:242.850000px;}
.y3b{bottom:244.665000px;}
.y86{bottom:246.450000px;}
.ybe{bottom:246.990000px;}
.y2c{bottom:254.025000px;}
.y11f{bottom:260.130000px;}
.y3a{bottom:261.945000px;}
.y85{bottom:263.730000px;}
.ybd{bottom:264.090000px;}
.y2b{bottom:269.325000px;}
.yeb{bottom:270.210000px;}
.y11e{bottom:277.410000px;}
.y39{bottom:279.225000px;}
.y84{bottom:280.830000px;}
.ybc{bottom:281.370000px;}
.y1e{bottom:286.050000px;}
.y2a{bottom:286.965000px;}
.yea{bottom:287.490000px;}
.y11d{bottom:294.510000px;}
.y38{bottom:296.505000px;}
.y83{bottom:298.110000px;}
.ybb{bottom:298.650000px;}
.y29{bottom:304.065000px;}
.ye9{bottom:304.770000px;}
.y11c{bottom:311.790000px;}
.y37{bottom:313.605000px;}
.y82{bottom:315.390000px;}
.yba{bottom:315.930000px;}
.y28{bottom:321.375000px;}
.ye8{bottom:321.870000px;}
.y11b{bottom:329.070000px;}
.y36{bottom:330.915000px;}
.y81{bottom:332.670000px;}
.yb9{bottom:333.210000px;}
.y27{bottom:339.195000px;}
.y11a{bottom:346.395000px;}
.y35{bottom:348.195000px;}
.y80{bottom:349.995000px;}
.yb8{bottom:350.535000px;}
.y26{bottom:356.655000px;}
.y119{bottom:363.675000px;}
.y34{bottom:365.475000px;}
.y7f{bottom:367.275000px;}
.yb7{bottom:367.635000px;}
.ye7{bottom:368.535000px;}
.y25{bottom:373.935000px;}
.y118{bottom:382.215000px;}
.y33{bottom:382.755000px;}
.y7e{bottom:384.375000px;}
.yb6{bottom:384.915000px;}
.ye6{bottom:385.815000px;}
.y24{bottom:391.395000px;}
.y117{bottom:398.595000px;}
.y32{bottom:400.035000px;}
.y7d{bottom:401.655000px;}
.yb5{bottom:402.195000px;}
.ye5{bottom:402.915000px;}
.y23{bottom:408.855000px;}
.y116{bottom:416.595000px;}
.y31{bottom:417.135000px;}
.y7c{bottom:418.935000px;}
.yb4{bottom:419.475000px;}
.ye4{bottom:420.195000px;}
.y22{bottom:426.135000px;}
.y30{bottom:434.415000px;}
.y114{bottom:434.595000px;}
.y7b{bottom:436.215000px;}
.yb3{bottom:436.755000px;}
.ye3{bottom:437.475000px;}
.y21{bottom:443.775000px;}
.y2f{bottom:451.695000px;}
.y115{bottom:452.595000px;}
.y7a{bottom:453.495000px;}
.yb2{bottom:454.035000px;}
.ye2{bottom:454.755000px;}
.y2e{bottom:468.975000px;}
.y79{bottom:470.775000px;}
.y20{bottom:471.135000px;}
.ye1{bottom:472.035000px;}
.y113{bottom:473.835000px;}
.y2d{bottom:486.255000px;}
.y78{bottom:487.875000px;}
.yb1{bottom:488.415000px;}
.y1f{bottom:488.955000px;}
.ye0{bottom:489.315000px;}
.y112{bottom:490.935000px;}
.y77{bottom:505.155000px;}
.yb0{bottom:505.695000px;}
.ydf{bottom:506.415000px;}
.y111{bottom:508.215000px;}
.y76{bottom:522.435000px;}
.yaf{bottom:522.975000px;}
.yde{bottom:523.695000px;}
.y75{bottom:539.715000px;}
.yae{bottom:540.255000px;}
.ydd{bottom:540.975000px;}
.y110{bottom:541.155000px;}
.y74{bottom:556.995000px;}
.ydc{bottom:558.255000px;}
.yad{bottom:558.435000px;}
.y10f{bottom:559.155000px;}
.ydb{bottom:575.535000px;}
.yac{bottom:576.795000px;}
.y10e{bottom:577.335000px;}
.y73{bottom:583.095000px;}
.yda{bottom:592.635000px;}
.yab{bottom:595.155000px;}
.y10d{bottom:595.335000px;}
.y72{bottom:600.375000px;}
.y10c{bottom:613.365000px;}
.yaa{bottom:613.545000px;}
.y71{bottom:617.685000px;}
.yd9{bottom:622.005000px;}
.y10b{bottom:631.365000px;}
.ya9{bottom:631.905000px;}
.y70{bottom:634.965000px;}
.yd8{bottom:639.285000px;}
.y10a{bottom:649.545000px;}
.ya8{bottom:650.085000px;}
.y6f{bottom:661.245000px;}
.y109{bottom:667.545000px;}
.ya7{bottom:668.445000px;}
.y6e{bottom:678.525000px;}
.y108{bottom:685.545000px;}
.ya6{bottom:685.725000px;}
.y6d{bottom:695.625000px;}
.ya5{bottom:703.005000px;}
.y107{bottom:703.725000px;}
.y6c{bottom:712.905000px;}
.ya4{bottom:720.285000px;}
.y106{bottom:721.725000px;}
.y6b{bottom:730.185000px;}
.ya3{bottom:737.565000px;}
.y105{bottom:739.725000px;}
.y6a{bottom:747.465000px;}
.yd7{bottom:749.445000px;}
.ya2{bottom:754.665000px;}
.y104{bottom:757.725000px;}
.y69{bottom:764.745000px;}
.yd6{bottom:766.725000px;}
.ya1{bottom:771.945000px;}
.y103{bottom:775.905000px;}
.y68{bottom:782.025000px;}
.yd5{bottom:784.005000px;}
.y1c{bottom:786.345000px;}
.ya0{bottom:789.225000px;}
.y102{bottom:793.905000px;}
.yd4{bottom:801.285000px;}
.y9f{bottom:806.505000px;}
.y101{bottom:811.905000px;}
.y10{bottom:815.865000px;}
.y67{bottom:817.125000px;}
.yd3{bottom:818.565000px;}
.y100{bottom:830.085000px;}
.y66{bottom:834.405000px;}
.yd2{bottom:835.665000px;}
.y9e{bottom:838.365000px;}
.yff{bottom:848.085000px;}
.y65{bottom:851.685000px;}
.yd1{bottom:852.945000px;}
.y9d{bottom:855.645000px;}
.yfe{bottom:866.085000px;}
.y64{bottom:868.965000px;}
.yd0{bottom:870.225000px;}
.y12f{bottom:870.405000px;}
.y9c{bottom:872.970000px;}
.yfd{bottom:884.310000px;}
.y63{bottom:886.290000px;}
.ycf{bottom:887.550000px;}
.y12e{bottom:887.730000px;}
.y9b{bottom:890.250000px;}
.yfc{bottom:902.310000px;}
.y62{bottom:903.570000px;}
.yce{bottom:904.830000px;}
.y12d{bottom:905.010000px;}
.y9a{bottom:907.530000px;}
.yfb{bottom:920.310000px;}
.y61{bottom:920.670000px;}
.y12c{bottom:922.290000px;}
.y99{bottom:924.810000px;}
.y60{bottom:937.950000px;}
.yfa{bottom:938.310000px;}
.y12b{bottom:939.570000px;}
.y98{bottom:942.090000px;}
.ycd{bottom:944.790000px;}
.y5f{bottom:955.230000px;}
.yf9{bottom:956.490000px;}
.y12a{bottom:956.670000px;}
.y97{bottom:959.190000px;}
.ycc{bottom:962.070000px;}
.y5e{bottom:972.510000px;}
.y129{bottom:973.950000px;}
.yf5{bottom:974.490000px;}
.y96{bottom:976.470000px;}
.ycb{bottom:979.170000px;}
.y128{bottom:991.230000px;}
.yf7{bottom:992.490000px;}
.y95{bottom:993.750000px;}
.yca{bottom:996.450000px;}
.y5d{bottom:1007.610000px;}
.y127{bottom:1008.510000px;}
.yc9{bottom:1013.730000px;}
.yf4{bottom:1013.910000px;}
.y5c{bottom:1024.890000px;}
.y94{bottom:1025.610000px;}
.y126{bottom:1025.790000px;}
.ye{bottom:1030.830000px;}
.yc8{bottom:1031.010000px;}
.y5b{bottom:1042.170000px;}
.y93{bottom:1042.890000px;}
.yc7{bottom:1048.290000px;}
.y7{bottom:1056.210000px;}
.y5a{bottom:1059.450000px;}
.y92{bottom:1060.170000px;}
.yc6{bottom:1065.390000px;}
.yf3{bottom:1075.830000px;}
.y59{bottom:1076.730000px;}
.y91{bottom:1077.450000px;}
.y58{bottom:1094.010000px;}
.y90{bottom:1094.730000px;}
.y57{bottom:1111.290000px;}
.y8f{bottom:1112.010000px;}
.y8e{bottom:1129.290000px;}
.y56{bottom:1146.420000px;}
.y55{bottom:1163.700000px;}
.h25{height:17.100000px;}
.h22{height:17.280000px;}
.h24{height:17.316000px;}
.h23{height:17.460000px;}
.hc{height:25.020000px;}
.h12{height:28.968750px;}
.h13{height:29.520000px;}
.h26{height:35.100000px;}
.h21{height:35.280000px;}
.h11{height:35.806641px;}
.h9{height:36.180000px;}
.h1a{height:38.818125px;}
.h1c{height:41.726953px;}
.h1b{height:42.164648px;}
.h18{height:42.281367px;}
.h5{height:43.453125px;}
.h1f{height:43.506914px;}
.he{height:44.002969px;}
.hb{height:44.820000px;}
.h17{height:45.770625px;}
.h16{height:47.980898px;}
.h1e{height:48.088125px;}
.h2{height:49.536000px;}
.h1d{height:53.640000px;}
.h4{height:53.709961px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h19{height:59.439023px;}
.h10{height:61.189805px;}
.hf{height:63.180000px;}
.h20{height:65.884219px;}
.h6{height:67.824844px;}
.h7{height:71.613281px;}
.h14{height:73.722656px;}
.h8{height:121.536000px;}
.hd{height:214.950000px;}
.h15{height:500.295000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:74.880000px;}
.w5{width:155.370000px;}
.wa{width:185.970000px;}
.wb{width:186.150000px;}
.w8{width:220.935000px;}
.w9{width:526.395000px;}
.w6{width:591.945000px;}
.w2{width:673.530000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.640000px;}
.x16{left:12.600000px;}
.xc{left:13.680000px;}
.xd{left:18.396000px;}
.x11{left:64.116000px;}
.x12{left:68.616000px;}
.x1{left:72.360000px;}
.x10{left:74.556000px;}
.x4{left:80.999987px;}
.x5{left:98.130000px;}
.x13{left:106.770000px;}
.x17{left:108.035987px;}
.x19{left:116.135987px;}
.xf{left:123.150000px;}
.x18{left:135.035987px;}
.x14{left:215.175000px;}
.x6{left:228.270000px;}
.x1a{left:260.130000px;}
.x9{left:285.015000px;}
.x15{left:293.835000px;}
.xe{left:309.495000px;}
.x7{left:344.775000px;}
.x8{left:364.035000px;}
.xb{left:373.575000px;}
.x1b{left:446.835000px;}
.xa{left:452.280000px;}
.x1c{left:633.705000px;}
.x3{left:745.890000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.265067pt;}
.ls7{letter-spacing:-0.113067pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls1{letter-spacing:0.117867pt;}
.lse{letter-spacing:0.120533pt;}
.ls2{letter-spacing:0.231040pt;}
.lsd{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.398080pt;}
.ls10{letter-spacing:0.480000pt;}
.lsb{letter-spacing:2.720000pt;}
.ls11{letter-spacing:14.672640pt;}
.lsa{letter-spacing:40.912640pt;}
.lsc{letter-spacing:56.912640pt;}
.wsa{word-spacing:-53.120000pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws5{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.545600pt;}
.wsc{word-spacing:-13.400533pt;}
.ws7{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.232640pt;}
.ws6{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.005120pt;}
.ws0{word-spacing:-10.832000pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.ws9{word-spacing:0.000000pt;}
._1e{margin-left:-7.392853pt;}
._18{margin-left:-5.632000pt;}
._f{margin-left:-4.727680pt;}
._3{margin-left:-3.632000pt;}
._2{margin-left:-2.661120pt;}
._0{margin-left:-1.008000pt;}
._1{width:1.066667pt;}
._5{width:1.979093pt;}
._14{width:2.898560pt;}
._7{width:4.143360pt;}
._6{width:5.258880pt;}
._e{width:6.427520pt;}
._10{width:7.649280pt;}
._1a{width:8.782933pt;}
._16{width:9.960960pt;}
._17{width:10.866987pt;}
._15{width:11.808213pt;}
._12{width:14.227627pt;}
._1d{width:15.988480pt;}
._b{width:16.977493pt;}
._c{width:18.167040pt;}
._13{width:19.545813pt;}
._d{width:20.878507pt;}
._8{width:22.624853pt;}
._9{width:25.105067pt;}
._a{width:26.129920pt;}
._4{width:27.111893pt;}
._19{width:28.043093pt;}
._11{width:31.549013pt;}
._1c{width:76.059520pt;}
._1b{width:151.918933pt;}
._1f{width:159.648640pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:2.880000pt;}
.yf8{bottom:3.040000pt;}
.y4{bottom:3.200000pt;}
.y1b{bottom:4.320000pt;}
.yf{bottom:8.480000pt;}
.y1d{bottom:11.040000pt;}
.yd{bottom:12.320000pt;}
.y3{bottom:17.920000pt;}
.y48{bottom:18.080000pt;}
.y4d{bottom:18.880000pt;}
.yf6{bottom:19.040000pt;}
.y6{bottom:22.880000pt;}
.y4c{bottom:24.480000pt;}
.y1a{bottom:26.080000pt;}
.yc{bottom:26.880000pt;}
.y5{bottom:30.112000pt;}
.y2{bottom:32.512000pt;}
.y47{bottom:33.440000pt;}
.y4b{bottom:37.600000pt;}
.y19{bottom:40.640000pt;}
.yb{bottom:41.440000pt;}
.y1{bottom:42.880000pt;}
.y46{bottom:48.840000pt;}
.y18{bottom:55.400000pt;}
.y45{bottom:64.200000pt;}
.ya{bottom:65.280000pt;}
.y17{bottom:69.960000pt;}
.y44{bottom:79.560000pt;}
.y9{bottom:82.746667pt;}
.y16{bottom:84.040000pt;}
.y15{bottom:93.320000pt;}
.y43{bottom:94.920000pt;}
.y8{bottom:98.906667pt;}
.y54{bottom:100.192000pt;}
.yf2{bottom:100.832000pt;}
.y8d{bottom:109.152000pt;}
.y42{bottom:110.120000pt;}
.y14{bottom:110.280000pt;}
.yc5{bottom:112.192000pt;}
.y53{bottom:115.552000pt;}
.y8c{bottom:124.512000pt;}
.y41{bottom:125.480000pt;}
.yf1{bottom:126.912000pt;}
.yc4{bottom:127.552000pt;}
.y52{bottom:130.912000pt;}
.y13{bottom:133.160000pt;}
.y125{bottom:139.226667pt;}
.y8b{bottom:139.866667pt;}
.y40{bottom:140.840000pt;}
.yc3{bottom:142.746667pt;}
.y51{bottom:146.266667pt;}
.yf0{bottom:152.826667pt;}
.y124{bottom:154.586667pt;}
.y12{bottom:156.040000pt;}
.y8a{bottom:156.186667pt;}
.y3f{bottom:156.200000pt;}
.yc2{bottom:158.106667pt;}
.y50{bottom:161.626667pt;}
.yef{bottom:168.186667pt;}
.y123{bottom:169.946667pt;}
.y3e{bottom:171.560000pt;}
.y89{bottom:172.986667pt;}
.yc1{bottom:173.466667pt;}
.y4f{bottom:177.626667pt;}
.y11{bottom:177.640000pt;}
.yee{bottom:183.546667pt;}
.y122{bottom:185.146667pt;}
.y3d{bottom:186.920000pt;}
.y88{bottom:188.346667pt;}
.yc0{bottom:188.826667pt;}
.y4e{bottom:193.786667pt;}
.yed{bottom:198.906667pt;}
.y121{bottom:200.506667pt;}
.y3c{bottom:202.120000pt;}
.y87{bottom:203.706667pt;}
.ybf{bottom:204.186667pt;}
.y4a{bottom:206.586667pt;}
.yec{bottom:214.106667pt;}
.y120{bottom:215.866667pt;}
.y3b{bottom:217.480000pt;}
.y86{bottom:219.066667pt;}
.ybe{bottom:219.546667pt;}
.y2c{bottom:225.800000pt;}
.y11f{bottom:231.226667pt;}
.y3a{bottom:232.840000pt;}
.y85{bottom:234.426667pt;}
.ybd{bottom:234.746667pt;}
.y2b{bottom:239.400000pt;}
.yeb{bottom:240.186667pt;}
.y11e{bottom:246.586667pt;}
.y39{bottom:248.200000pt;}
.y84{bottom:249.626667pt;}
.ybc{bottom:250.106667pt;}
.y1e{bottom:254.266667pt;}
.y2a{bottom:255.080000pt;}
.yea{bottom:255.546667pt;}
.y11d{bottom:261.786667pt;}
.y38{bottom:263.560000pt;}
.y83{bottom:264.986667pt;}
.ybb{bottom:265.466667pt;}
.y29{bottom:270.280000pt;}
.ye9{bottom:270.906667pt;}
.y11c{bottom:277.146667pt;}
.y37{bottom:278.760000pt;}
.y82{bottom:280.346667pt;}
.yba{bottom:280.826667pt;}
.y28{bottom:285.666667pt;}
.ye8{bottom:286.106667pt;}
.y11b{bottom:292.506667pt;}
.y36{bottom:294.146667pt;}
.y81{bottom:295.706667pt;}
.yb9{bottom:296.186667pt;}
.y27{bottom:301.506667pt;}
.y11a{bottom:307.906667pt;}
.y35{bottom:309.506667pt;}
.y80{bottom:311.106667pt;}
.yb8{bottom:311.586667pt;}
.y26{bottom:317.026667pt;}
.y119{bottom:323.266667pt;}
.y34{bottom:324.866667pt;}
.y7f{bottom:326.466667pt;}
.yb7{bottom:326.786667pt;}
.ye7{bottom:327.586667pt;}
.y25{bottom:332.386667pt;}
.y118{bottom:339.746667pt;}
.y33{bottom:340.226667pt;}
.y7e{bottom:341.666667pt;}
.yb6{bottom:342.146667pt;}
.ye6{bottom:342.946667pt;}
.y24{bottom:347.906667pt;}
.y117{bottom:354.306667pt;}
.y32{bottom:355.586667pt;}
.y7d{bottom:357.026667pt;}
.yb5{bottom:357.506667pt;}
.ye5{bottom:358.146667pt;}
.y23{bottom:363.426667pt;}
.y116{bottom:370.306667pt;}
.y31{bottom:370.786667pt;}
.y7c{bottom:372.386667pt;}
.yb4{bottom:372.866667pt;}
.ye4{bottom:373.506667pt;}
.y22{bottom:378.786667pt;}
.y30{bottom:386.146667pt;}
.y114{bottom:386.306667pt;}
.y7b{bottom:387.746667pt;}
.yb3{bottom:388.226667pt;}
.ye3{bottom:388.866667pt;}
.y21{bottom:394.466667pt;}
.y2f{bottom:401.506667pt;}
.y115{bottom:402.306667pt;}
.y7a{bottom:403.106667pt;}
.yb2{bottom:403.586667pt;}
.ye2{bottom:404.226667pt;}
.y2e{bottom:416.866667pt;}
.y79{bottom:418.466667pt;}
.y20{bottom:418.786667pt;}
.ye1{bottom:419.586667pt;}
.y113{bottom:421.186667pt;}
.y2d{bottom:432.226667pt;}
.y78{bottom:433.666667pt;}
.yb1{bottom:434.146667pt;}
.y1f{bottom:434.626667pt;}
.ye0{bottom:434.946667pt;}
.y112{bottom:436.386667pt;}
.y77{bottom:449.026667pt;}
.yb0{bottom:449.506667pt;}
.ydf{bottom:450.146667pt;}
.y111{bottom:451.746667pt;}
.y76{bottom:464.386667pt;}
.yaf{bottom:464.866667pt;}
.yde{bottom:465.506667pt;}
.y75{bottom:479.746667pt;}
.yae{bottom:480.226667pt;}
.ydd{bottom:480.866667pt;}
.y110{bottom:481.026667pt;}
.y74{bottom:495.106667pt;}
.ydc{bottom:496.226667pt;}
.yad{bottom:496.386667pt;}
.y10f{bottom:497.026667pt;}
.ydb{bottom:511.586667pt;}
.yac{bottom:512.706667pt;}
.y10e{bottom:513.186667pt;}
.y73{bottom:518.306667pt;}
.yda{bottom:526.786667pt;}
.yab{bottom:529.026667pt;}
.y10d{bottom:529.186667pt;}
.y72{bottom:533.666667pt;}
.y10c{bottom:545.213333pt;}
.yaa{bottom:545.373333pt;}
.y71{bottom:549.053333pt;}
.yd9{bottom:552.893333pt;}
.y10b{bottom:561.213333pt;}
.ya9{bottom:561.693333pt;}
.y70{bottom:564.413333pt;}
.yd8{bottom:568.253333pt;}
.y10a{bottom:577.373333pt;}
.ya8{bottom:577.853333pt;}
.y6f{bottom:587.773333pt;}
.y109{bottom:593.373333pt;}
.ya7{bottom:594.173333pt;}
.y6e{bottom:603.133333pt;}
.y108{bottom:609.373333pt;}
.ya6{bottom:609.533333pt;}
.y6d{bottom:618.333333pt;}
.ya5{bottom:624.893333pt;}
.y107{bottom:625.533333pt;}
.y6c{bottom:633.693333pt;}
.ya4{bottom:640.253333pt;}
.y106{bottom:641.533333pt;}
.y6b{bottom:649.053333pt;}
.ya3{bottom:655.613333pt;}
.y105{bottom:657.533333pt;}
.y6a{bottom:664.413333pt;}
.yd7{bottom:666.173333pt;}
.ya2{bottom:670.813333pt;}
.y104{bottom:673.533333pt;}
.y69{bottom:679.773333pt;}
.yd6{bottom:681.533333pt;}
.ya1{bottom:686.173333pt;}
.y103{bottom:689.693333pt;}
.y68{bottom:695.133333pt;}
.yd5{bottom:696.893333pt;}
.y1c{bottom:698.973333pt;}
.ya0{bottom:701.533333pt;}
.y102{bottom:705.693333pt;}
.yd4{bottom:712.253333pt;}
.y9f{bottom:716.893333pt;}
.y101{bottom:721.693333pt;}
.y10{bottom:725.213333pt;}
.y67{bottom:726.333333pt;}
.yd3{bottom:727.613333pt;}
.y100{bottom:737.853333pt;}
.y66{bottom:741.693333pt;}
.yd2{bottom:742.813333pt;}
.y9e{bottom:745.213333pt;}
.yff{bottom:753.853333pt;}
.y65{bottom:757.053333pt;}
.yd1{bottom:758.173333pt;}
.y9d{bottom:760.573333pt;}
.yfe{bottom:769.853333pt;}
.y64{bottom:772.413333pt;}
.yd0{bottom:773.533333pt;}
.y12f{bottom:773.693333pt;}
.y9c{bottom:775.973333pt;}
.yfd{bottom:786.053333pt;}
.y63{bottom:787.813333pt;}
.ycf{bottom:788.933333pt;}
.y12e{bottom:789.093333pt;}
.y9b{bottom:791.333333pt;}
.yfc{bottom:802.053333pt;}
.y62{bottom:803.173333pt;}
.yce{bottom:804.293333pt;}
.y12d{bottom:804.453333pt;}
.y9a{bottom:806.693333pt;}
.yfb{bottom:818.053333pt;}
.y61{bottom:818.373333pt;}
.y12c{bottom:819.813333pt;}
.y99{bottom:822.053333pt;}
.y60{bottom:833.733333pt;}
.yfa{bottom:834.053333pt;}
.y12b{bottom:835.173333pt;}
.y98{bottom:837.413333pt;}
.ycd{bottom:839.813333pt;}
.y5f{bottom:849.093333pt;}
.yf9{bottom:850.213333pt;}
.y12a{bottom:850.373333pt;}
.y97{bottom:852.613333pt;}
.ycc{bottom:855.173333pt;}
.y5e{bottom:864.453333pt;}
.y129{bottom:865.733333pt;}
.yf5{bottom:866.213333pt;}
.y96{bottom:867.973333pt;}
.ycb{bottom:870.373333pt;}
.y128{bottom:881.093333pt;}
.yf7{bottom:882.213333pt;}
.y95{bottom:883.333333pt;}
.yca{bottom:885.733333pt;}
.y5d{bottom:895.653333pt;}
.y127{bottom:896.453333pt;}
.yc9{bottom:901.093333pt;}
.yf4{bottom:901.253333pt;}
.y5c{bottom:911.013333pt;}
.y94{bottom:911.653333pt;}
.y126{bottom:911.813333pt;}
.ye{bottom:916.293333pt;}
.yc8{bottom:916.453333pt;}
.y5b{bottom:926.373333pt;}
.y93{bottom:927.013333pt;}
.yc7{bottom:931.813333pt;}
.y7{bottom:938.853333pt;}
.y5a{bottom:941.733333pt;}
.y92{bottom:942.373333pt;}
.yc6{bottom:947.013333pt;}
.yf3{bottom:956.293333pt;}
.y59{bottom:957.093333pt;}
.y91{bottom:957.733333pt;}
.y58{bottom:972.453333pt;}
.y90{bottom:973.093333pt;}
.y57{bottom:987.813333pt;}
.y8f{bottom:988.453333pt;}
.y8e{bottom:1003.813333pt;}
.y56{bottom:1019.040000pt;}
.y55{bottom:1034.400000pt;}
.h25{height:15.200000pt;}
.h22{height:15.360000pt;}
.h24{height:15.392000pt;}
.h23{height:15.520000pt;}
.hc{height:22.240000pt;}
.h12{height:25.750000pt;}
.h13{height:26.240000pt;}
.h26{height:31.200000pt;}
.h21{height:31.360000pt;}
.h11{height:31.828125pt;}
.h9{height:32.160000pt;}
.h1a{height:34.505000pt;}
.h1c{height:37.090625pt;}
.h1b{height:37.479688pt;}
.h18{height:37.583438pt;}
.h5{height:38.625000pt;}
.h1f{height:38.672812pt;}
.he{height:39.113750pt;}
.hb{height:39.840000pt;}
.h17{height:40.685000pt;}
.h16{height:42.649687pt;}
.h1e{height:42.745000pt;}
.h2{height:44.032000pt;}
.h1d{height:47.680000pt;}
.h4{height:47.742188pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h19{height:52.834688pt;}
.h10{height:54.390938pt;}
.hf{height:56.160000pt;}
.h20{height:58.563750pt;}
.h6{height:60.288750pt;}
.h7{height:63.656250pt;}
.h14{height:65.531250pt;}
.h8{height:108.032000pt;}
.hd{height:191.066667pt;}
.h15{height:444.706667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.560000pt;}
.w5{width:138.106667pt;}
.wa{width:165.306667pt;}
.wb{width:165.466667pt;}
.w8{width:196.386667pt;}
.w9{width:467.906667pt;}
.w6{width:526.173333pt;}
.w2{width:598.693333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.680000pt;}
.x16{left:11.200000pt;}
.xc{left:12.160000pt;}
.xd{left:16.352000pt;}
.x11{left:56.992000pt;}
.x12{left:60.992000pt;}
.x1{left:64.320000pt;}
.x10{left:66.272000pt;}
.x4{left:71.999988pt;}
.x5{left:87.226667pt;}
.x13{left:94.906667pt;}
.x17{left:96.031988pt;}
.x19{left:103.231988pt;}
.xf{left:109.466667pt;}
.x18{left:120.031988pt;}
.x14{left:191.266667pt;}
.x6{left:202.906667pt;}
.x1a{left:231.226667pt;}
.x9{left:253.346667pt;}
.x15{left:261.186667pt;}
.xe{left:275.106667pt;}
.x7{left:306.466667pt;}
.x8{left:323.586667pt;}
.xb{left:332.066667pt;}
.x1b{left:397.186667pt;}
.xa{left:402.026667pt;}
.x1c{left:563.293333pt;}
.x3{left:663.013333pt;}
}




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