
    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_ce1a3fa3c1051f4a8d397d6f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3314b7839d716a29b1b5e5c3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_038355a805e896b74021f6c0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_0cf550e93d5fb0ae82f4b489.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0f236b7768ccb847a1f07d00.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_46bee9213fc9329d7ba9a06b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.751953;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6b3dad0ea4cf0d9a98804b32.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.976562;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.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_ad9759e522f7184fbdee9d38.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.752441;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a9030c9ba2630eeaf78f9d05.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.751953;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_fc4cd891de04099e3ba113a7.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_3e6964d56b17f22d34aec847.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.973633;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_7e242e00e3466fe712d8b6e8.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff10{font-family:ff10;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:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls1d{letter-spacing:-0.672000px;}
.ls1a{letter-spacing:-0.612000px;}
.ls8{letter-spacing:-0.540000px;}
.ls16{letter-spacing:-0.460200px;}
.ls9{letter-spacing:-0.360000px;}
.ls17{letter-spacing:-0.053280px;}
.lsa{letter-spacing:-0.018000px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.018000px;}
.ls1e{letter-spacing:0.045360px;}
.ls6{letter-spacing:0.106800px;}
.ls4{letter-spacing:0.161760px;}
.ls7{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.259800px;}
.lsc{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.480000px;}
.lse{letter-spacing:1.620000px;}
.ls12{letter-spacing:5.940000px;}
.ls10{letter-spacing:8.100000px;}
.lsd{letter-spacing:8.820000px;}
.ls15{letter-spacing:9.540000px;}
.ls19{letter-spacing:12.420000px;}
.ls1f{letter-spacing:16.506720px;}
.ls13{letter-spacing:22.500000px;}
.ls18{letter-spacing:24.660000px;}
.ls3{letter-spacing:37.566720px;}
.ls11{letter-spacing:38.106720px;}
.ls1{letter-spacing:42.048000px;}
.lsb{letter-spacing:46.026720px;}
.lsf{letter-spacing:54.666720px;}
.ls14{letter-spacing:64.026720px;}
.ls20{letter-spacing:64.170720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-59.760000px;}
.ws6{word-spacing:-54.000000px;}
.ws2{word-spacing:-27.000000px;}
.ws0{word-spacing:-15.300000px;}
.wse{word-spacing:-15.238800px;}
.ws5{word-spacing:-15.046800px;}
.ws3{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.886720px;}
.wsd{word-spacing:-14.479800px;}
.wsa{word-spacing:-13.518000px;}
.ws8{word-spacing:-13.500000px;}
.ws9{word-spacing:-13.482000px;}
.ws7{word-spacing:-13.140000px;}
.ws10{word-spacing:-12.420000px;}
.ws12{word-spacing:-12.105360px;}
.ws1{word-spacing:-12.060000px;}
.ws11{word-spacing:-11.388000px;}
.wsc{word-spacing:-9.720000px;}
.wsb{word-spacing:0.000000px;}
._4{margin-left:-1.170720px;}
._1{width:1.135440px;}
._9{width:2.427840px;}
._8{width:3.525840px;}
._a{width:4.876080px;}
._7{width:6.309840px;}
._6{width:7.350480px;}
._15{width:8.784720px;}
._d{width:10.637280px;}
._e{width:11.859600px;}
._10{width:12.904560px;}
._18{width:13.924080px;}
._19{width:16.336560px;}
._16{width:18.254880px;}
._11{width:19.959840px;}
._1e{width:21.095280px;}
._17{width:22.331040px;}
._c{width:23.803680px;}
._b{width:24.860160px;}
._14{width:26.514000px;}
._13{width:27.864000px;}
._1b{width:30.776400px;}
._f{width:31.852080px;}
._1d{width:36.592560px;}
._1c{width:38.126880px;}
._22{width:39.202800px;}
._21{width:40.457280px;}
._1a{width:46.136160px;}
._12{width:47.448000px;}
._23{width:50.138640px;}
._20{width:51.608160px;}
._1f{width:52.648560px;}
._3{width:131.442960px;}
._2{width:342.981120px;}
._5{width:902.851440px;}
._0{width:2857.020000px;}
.fc4{color:rgb(0,112,192);}
.fc6{color:rgb(0,176,80);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(238,0,0);}
.fs4{font-size:30.240000px;}
.fs7{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:2.520000px;}
.y48{bottom:2.556000px;}
.y3c{bottom:2.880000px;}
.y17{bottom:3.240000px;}
.ye6{bottom:3.420000px;}
.yea{bottom:3.600000px;}
.y34{bottom:5.940000px;}
.y7{bottom:8.316000px;}
.y46{bottom:8.496000px;}
.y3a{bottom:9.540000px;}
.yc{bottom:14.040000px;}
.y160{bottom:16.200000px;}
.y8{bottom:16.236000px;}
.y138{bottom:16.380000px;}
.y47{bottom:16.416000px;}
.y32{bottom:19.440000px;}
.y15d{bottom:20.520000px;}
.y39{bottom:25.200000px;}
.y15f{bottom:30.060000px;}
.y137{bottom:30.240000px;}
.ya{bottom:35.460000px;}
.y31{bottom:35.820000px;}
.y15c{bottom:37.800000px;}
.y38{bottom:40.680000px;}
.y49{bottom:41.400000px;}
.y136{bottom:43.920000px;}
.y30{bottom:51.300000px;}
.y15b{bottom:55.080000px;}
.y37{bottom:56.160000px;}
.y135{bottom:57.780000px;}
.y6{bottom:58.140000px;}
.y15e{bottom:58.320000px;}
.y45{bottom:64.080000px;}
.y2f{bottom:66.780000px;}
.y36{bottom:71.640000px;}
.y15a{bottom:72.360000px;}
.y29{bottom:74.205000px;}
.y2e{bottom:82.440000px;}
.y159{bottom:89.685000px;}
.y28{bottom:91.485000px;}
.y2d{bottom:97.950000px;}
.y3b{bottom:106.245000px;}
.y158{bottom:106.785000px;}
.y27{bottom:108.765000px;}
.y132{bottom:111.816000px;}
.y2c{bottom:113.430000px;}
.yfd{bottom:120.096000px;}
.y7e{bottom:121.896000px;}
.yc9{bottom:125.316000px;}
.y26{bottom:126.045000px;}
.y44{bottom:127.116000px;}
.y92{bottom:128.736000px;}
.y2b{bottom:128.910000px;}
.y131{bottom:129.096000px;}
.yfc{bottom:135.756000px;}
.y7d{bottom:139.176000px;}
.yb9{bottom:140.796000px;}
.yc8{bottom:142.596000px;}
.y25{bottom:143.145000px;}
.y43{bottom:143.676000px;}
.y161{bottom:144.036000px;}
.y91{bottom:146.016000px;}
.y130{bottom:146.376000px;}
.yfb{bottom:151.410000px;}
.y7c{bottom:156.450000px;}
.y42{bottom:158.070000px;}
.y24{bottom:160.425000px;}
.yc7{bottom:160.770000px;}
.y90{bottom:163.110000px;}
.y12f{bottom:163.650000px;}
.yfa{bottom:167.070000px;}
.y7b{bottom:173.730000px;}
.y41{bottom:175.350000px;}
.y23{bottom:177.705000px;}
.yc6{bottom:178.050000px;}
.y8f{bottom:180.390000px;}
.y12e{bottom:180.930000px;}
.yf9{bottom:182.550000px;}
.y7a{bottom:191.010000px;}
.y40{bottom:192.630000px;}
.y22{bottom:194.985000px;}
.yc5{bottom:195.330000px;}
.y8e{bottom:197.670000px;}
.yf8{bottom:198.210000px;}
.y79{bottom:208.110000px;}
.y9d{bottom:208.290000px;}
.y3f{bottom:209.910000px;}
.y21{bottom:212.265000px;}
.yc4{bottom:212.610000px;}
.yf7{bottom:213.870000px;}
.y8d{bottom:214.950000px;}
.y12d{bottom:215.310000px;}
.y9c{bottom:222.510000px;}
.y78{bottom:225.390000px;}
.yb8{bottom:226.830000px;}
.y3e{bottom:227.730000px;}
.yc3{bottom:229.170000px;}
.y9b{bottom:229.530000px;}
.y20{bottom:229.545000px;}
.y157{bottom:231.150000px;}
.y8c{bottom:232.230000px;}
.y12c{bottom:232.590000px;}
.yb7{bottom:241.050000px;}
.yc2{bottom:241.950000px;}
.y77{bottom:242.670000px;}
.yf6{bottom:245.190000px;}
.y1f{bottom:246.645000px;}
.y3d{bottom:246.810000px;}
.yb6{bottom:248.070000px;}
.yc1{bottom:248.970000px;}
.y8b{bottom:249.510000px;}
.y12b{bottom:249.870000px;}
.y76{bottom:259.950000px;}
.y18{bottom:260.130000px;}
.yf5{bottom:260.850000px;}
.y1e{bottom:263.925000px;}
.y8a{bottom:266.610000px;}
.y12a{bottom:267.150000px;}
.yf4{bottom:276.510000px;}
.y75{bottom:277.230000px;}
.y1d{bottom:281.205000px;}
.y89{bottom:283.890000px;}
.y129{bottom:284.430000px;}
.yf3{bottom:292.170000px;}
.y74{bottom:294.330000px;}
.y1c{bottom:298.485000px;}
.y88{bottom:301.170000px;}
.y128{bottom:301.710000px;}
.yf2{bottom:307.830000px;}
.y73{bottom:311.610000px;}
.y1b{bottom:315.795000px;}
.y87{bottom:318.495000px;}
.y127{bottom:318.855000px;}
.yf1{bottom:323.535000px;}
.y72{bottom:328.935000px;}
.y1a{bottom:333.075000px;}
.ydc{bottom:335.595000px;}
.y86{bottom:335.775000px;}
.y126{bottom:336.135000px;}
.yf0{bottom:339.015000px;}
.y71{bottom:346.215000px;}
.y19{bottom:350.715000px;}
.ydb{bottom:351.975000px;}
.y85{bottom:353.055000px;}
.y125{bottom:353.415000px;}
.yef{bottom:354.675000px;}
.y152{bottom:355.215000px;}
.y70{bottom:363.495000px;}
.yda{bottom:364.935000px;}
.y124{bottom:368.175000px;}
.y84{bottom:370.155000px;}
.yee{bottom:370.335000px;}
.y156{bottom:371.235000px;}
.yd9{bottom:371.955000px;}
.y151{bottom:372.495000px;}
.y35{bottom:379.695000px;}
.y6f{bottom:380.775000px;}
.y123{bottom:383.835000px;}
.yed{bottom:385.995000px;}
.y83{bottom:387.435000px;}
.y155{bottom:388.515000px;}
.y150{bottom:389.775000px;}
.y6e{bottom:397.875000px;}
.y122{bottom:399.495000px;}
.yec{bottom:401.655000px;}
.y82{bottom:404.715000px;}
.y154{bottom:405.795000px;}
.y14f{bottom:407.055000px;}
.y6d{bottom:415.155000px;}
.yeb{bottom:417.315000px;}
.y81{bottom:421.995000px;}
.y153{bottom:423.075000px;}
.y14e{bottom:424.335000px;}
.y121{bottom:430.815000px;}
.y6c{bottom:432.435000px;}
.ye9{bottom:432.975000px;}
.y80{bottom:440.355000px;}
.y14d{bottom:441.435000px;}
.y120{bottom:446.475000px;}
.ye8{bottom:448.635000px;}
.y6b{bottom:453.855000px;}
.y7f{bottom:457.455000px;}
.y14c{bottom:458.715000px;}
.y11f{bottom:461.955000px;}
.ye7{bottom:464.295000px;}
.y33{bottom:464.835000px;}
.y6a{bottom:474.735000px;}
.y14b{bottom:475.995000px;}
.yb2{bottom:477.075000px;}
.y11e{bottom:477.615000px;}
.ye5{bottom:479.955000px;}
.y9a{bottom:480.675000px;}
.y2a{bottom:485.535000px;}
.y69{bottom:492.015000px;}
.yb5{bottom:493.275000px;}
.yb1{bottom:494.355000px;}
.y99{bottom:497.055000px;}
.ye4{bottom:498.675000px;}
.yc0{bottom:500.475000px;}
.y11d{bottom:508.935000px;}
.y68{bottom:509.295000px;}
.y98{bottom:510.015000px;}
.yb4{bottom:510.555000px;}
.yb0{bottom:511.635000px;}
.ye3{bottom:515.235000px;}
.y97{bottom:517.035000px;}
.y11c{bottom:524.595000px;}
.y67{bottom:526.575000px;}
.y14a{bottom:527.655000px;}
.yb3{bottom:527.835000px;}
.ye2{bottom:528.195000px;}
.yaf{bottom:528.915000px;}
.ybf{bottom:529.995000px;}
.ye1{bottom:535.215000px;}
.ybe{bottom:537.015000px;}
.y11b{bottom:540.255000px;}
.y66{bottom:543.855000px;}
.y149{bottom:544.935000px;}
.yae{bottom:546.015000px;}
.y11a{bottom:555.915000px;}
.y65{bottom:560.955000px;}
.y148{bottom:562.215000px;}
.yad{bottom:563.295000px;}
.y119{bottom:571.605000px;}
.y64{bottom:578.265000px;}
.y147{bottom:579.525000px;}
.yac{bottom:580.605000px;}
.y118{bottom:587.265000px;}
.y63{bottom:595.545000px;}
.y146{bottom:596.805000px;}
.yab{bottom:597.885000px;}
.yd8{bottom:600.405000px;}
.y117{bottom:602.745000px;}
.y62{bottom:612.825000px;}
.y145{bottom:614.085000px;}
.yaa{bottom:615.165000px;}
.yd7{bottom:616.965000px;}
.y116{bottom:618.405000px;}
.y16{bottom:627.765000px;}
.yd6{bottom:629.745000px;}
.y61{bottom:630.105000px;}
.y144{bottom:631.185000px;}
.ya9{bottom:632.445000px;}
.y115{bottom:634.065000px;}
.yd5{bottom:636.945000px;}
.y60{bottom:647.385000px;}
.y143{bottom:648.465000px;}
.ya8{bottom:649.545000px;}
.y114{bottom:649.725000px;}
.y15{bottom:662.325000px;}
.y5f{bottom:664.485000px;}
.y113{bottom:665.385000px;}
.y142{bottom:665.745000px;}
.ya7{bottom:666.825000px;}
.y112{bottom:681.045000px;}
.y5e{bottom:681.765000px;}
.y14{bottom:682.305000px;}
.y141{bottom:683.025000px;}
.ya6{bottom:684.105000px;}
.y111{bottom:696.705000px;}
.y5d{bottom:699.045000px;}
.y140{bottom:700.305000px;}
.ya5{bottom:701.385000px;}
.y13{bottom:710.745000px;}
.y110{bottom:712.365000px;}
.y5c{bottom:716.325000px;}
.y13f{bottom:717.585000px;}
.ya4{bottom:718.665000px;}
.y10f{bottom:728.025000px;}
.y12{bottom:728.385000px;}
.y5b{bottom:733.605000px;}
.y13e{bottom:734.685000px;}
.ya3{bottom:735.765000px;}
.y10e{bottom:743.685000px;}
.y11{bottom:749.625000px;}
.y5a{bottom:750.885000px;}
.y13d{bottom:751.965000px;}
.ya2{bottom:753.045000px;}
.y96{bottom:755.385000px;}
.y10d{bottom:759.165000px;}
.ybd{bottom:765.825000px;}
.y59{bottom:767.985000px;}
.y13c{bottom:769.245000px;}
.ye0{bottom:770.145000px;}
.ya1{bottom:770.325000px;}
.y95{bottom:771.945000px;}
.y10c{bottom:774.825000px;}
.y10{bottom:780.585000px;}
.ybc{bottom:782.385000px;}
.y94{bottom:784.725000px;}
.y58{bottom:785.265000px;}
.y13b{bottom:786.525000px;}
.ydf{bottom:786.705000px;}
.ya0{bottom:786.885000px;}
.y10b{bottom:790.485000px;}
.y93{bottom:791.745000px;}
.ybb{bottom:795.345000px;}
.yde{bottom:799.665000px;}
.y9f{bottom:799.845000px;}
.yba{bottom:802.365000px;}
.y57{bottom:802.545000px;}
.y13a{bottom:803.805000px;}
.y10a{bottom:806.145000px;}
.ydd{bottom:806.685000px;}
.y9e{bottom:806.865000px;}
.yf{bottom:811.725000px;}
.y56{bottom:819.870000px;}
.y139{bottom:820.950000px;}
.y109{bottom:821.850000px;}
.y134{bottom:835.710000px;}
.y55{bottom:837.150000px;}
.y108{bottom:837.510000px;}
.ye{bottom:842.730000px;}
.yd4{bottom:850.110000px;}
.y107{bottom:853.170000px;}
.y54{bottom:854.250000px;}
.yd3{bottom:867.210000px;}
.y106{bottom:868.830000px;}
.y53{bottom:871.530000px;}
.yd{bottom:871.710000px;}
.yd2{bottom:884.490000px;}
.yb{bottom:887.010000px;}
.y52{bottom:888.810000px;}
.y105{bottom:899.970000px;}
.yd1{bottom:901.770000px;}
.y133{bottom:905.550000px;}
.y51{bottom:906.090000px;}
.y104{bottom:915.630000px;}
.yd0{bottom:919.050000px;}
.y50{bottom:923.370000px;}
.y103{bottom:931.290000px;}
.ycf{bottom:936.330000px;}
.y4f{bottom:940.650000px;}
.y102{bottom:946.950000px;}
.yce{bottom:954.510000px;}
.y4e{bottom:957.750000px;}
.y101{bottom:962.610000px;}
.ycd{bottom:971.790000px;}
.y4d{bottom:975.030000px;}
.y100{bottom:978.270000px;}
.ycc{bottom:989.070000px;}
.y4c{bottom:992.310000px;}
.yff{bottom:993.930000px;}
.ycb{bottom:1007.430000px;}
.y4b{bottom:1009.590000px;}
.yfe{bottom:1025.250000px;}
.yca{bottom:1025.790000px;}
.y4a{bottom:1026.870000px;}
.y5{bottom:1044.150000px;}
.y4{bottom:1061.250000px;}
.y3{bottom:1078.560000px;}
.y2{bottom:1096.560000px;}
.y1{bottom:1117.260000px;}
.h27{height:13.860000px;}
.h21{height:14.760000px;}
.h25{height:14.796000px;}
.h24{height:14.940000px;}
.h26{height:14.976000px;}
.hf{height:17.280000px;}
.h16{height:19.980000px;}
.h20{height:21.114844px;}
.h1f{height:21.336328px;}
.h1d{height:24.540469px;}
.h4{height:27.576000px;}
.h6{height:33.683203px;}
.h22{height:34.036523px;}
.h23{height:36.698203px;}
.h18{height:37.705078px;}
.h19{height:38.100586px;}
.h1e{height:39.147891px;}
.h7{height:39.336328px;}
.h14{height:39.999023px;}
.h5{height:41.726953px;}
.he{height:42.164648px;}
.h1b{height:43.506914px;}
.h11{height:44.236406px;}
.h15{height:44.265586px;}
.h12{height:45.461953px;}
.h9{height:46.251562px;}
.hc{height:46.736719px;}
.h2{height:48.496641px;}
.h3{height:50.800781px;}
.h1c{height:51.793945px;}
.ha{height:53.755312px;}
.h1{height:58.429688px;}
.h28{height:69.120000px;}
.h2a{height:72.360000px;}
.hd{height:75.410156px;}
.hb{height:76.201172px;}
.h17{height:84.240000px;}
.h1a{height:118.836000px;}
.h29{height:120.816000px;}
.h13{height:141.516000px;}
.h8{height:153.900000px;}
.h10{height:366.915000px;}
.h0{height:1188.000000px;}
.w2{width:45.036000px;}
.w7{width:65.556000px;}
.w9{width:89.820000px;}
.wb{width:98.280000px;}
.wa{width:116.676000px;}
.wc{width:189.390000px;}
.w6{width:211.710000px;}
.w8{width:234.210000px;}
.wd{width:329.295000px;}
.w5{width:596.805000px;}
.w3{width:783.510000px;}
.we{width:800.790000px;}
.w4{width:821.850000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x51{left:4.140000px;}
.x13{left:6.480000px;}
.x15{left:7.560000px;}
.x5{left:8.640000px;}
.x4e{left:10.440000px;}
.x41{left:11.520000px;}
.x3b{left:12.600000px;}
.x46{left:14.220000px;}
.x4a{left:15.480000px;}
.x29{left:17.460000px;}
.x3a{left:18.900000px;}
.x12{left:19.980000px;}
.x3f{left:21.420000px;}
.x17{left:23.265000px;}
.x3e{left:24.525000px;}
.x4d{left:25.740000px;}
.x2d{left:26.820000px;}
.x32{left:28.260000px;}
.x14{left:29.745000px;}
.x16{left:31.725000px;}
.x35{left:34.374000px;}
.x42{left:35.850000px;}
.x39{left:37.440000px;}
.x44{left:38.910000px;}
.x34{left:40.170000px;}
.x48{left:41.970000px;}
.x31{left:43.245000px;}
.x36{left:44.490000px;}
.x8{left:45.540000px;}
.x3d{left:47.190000px;}
.x3c{left:49.674000px;}
.x33{left:51.654000px;}
.x4{left:53.999986px;}
.x43{left:55.665000px;}
.x45{left:56.745000px;}
.x38{left:58.854000px;}
.x3{left:60.659986px;}
.x37{left:63.405000px;}
.x4f{left:64.485000px;}
.x18{left:65.519986px;}
.x4b{left:67.134000px;}
.x40{left:68.214000px;}
.x47{left:69.474000px;}
.x4c{left:71.454000px;}
.x49{left:72.894000px;}
.x2b{left:76.134000px;}
.xb{left:78.299986px;}
.x53{left:80.130000px;}
.x50{left:83.025000px;}
.x52{left:85.140000px;}
.x19{left:86.759986px;}
.x6{left:100.836000px;}
.x7{left:108.035986px;}
.x2a{left:126.576000px;}
.x1{left:150.509986px;}
.x2{left:220.709986px;}
.xf{left:226.649986px;}
.x55{left:295.635000px;}
.x2c{left:361.515000px;}
.xc{left:367.454986px;}
.x1f{left:373.934986px;}
.x23{left:379.514986px;}
.xe{left:386.174986px;}
.x25{left:400.754986px;}
.x22{left:406.154986px;}
.x26{left:408.134986px;}
.x20{left:411.014986px;}
.x28{left:418.754986px;}
.x24{left:422.714986px;}
.x1e{left:423.794986px;}
.x27{left:438.374986px;}
.x2e{left:452.055000px;}
.xa{left:459.074986px;}
.x1c{left:461.954986px;}
.xd{left:464.294986px;}
.x10{left:465.374986px;}
.x1a{left:478.334986px;}
.x21{left:486.104986px;}
.x1b{left:505.364986px;}
.x54{left:526.604986px;}
.x2f{left:569.445000px;}
.x1d{left:633.164986px;}
.x11{left:650.805000px;}
.x30{left:668.445000px;}
.x9{left:812.490000px;}
@media print{
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls1d{letter-spacing:-0.597333pt;}
.ls1a{letter-spacing:-0.544000pt;}
.ls8{letter-spacing:-0.480000pt;}
.ls16{letter-spacing:-0.409067pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls17{letter-spacing:-0.047360pt;}
.lsa{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.016000pt;}
.ls1e{letter-spacing:0.040320pt;}
.ls6{letter-spacing:0.094933pt;}
.ls4{letter-spacing:0.143787pt;}
.ls7{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.230933pt;}
.lsc{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.426667pt;}
.lse{letter-spacing:1.440000pt;}
.ls12{letter-spacing:5.280000pt;}
.ls10{letter-spacing:7.200000pt;}
.lsd{letter-spacing:7.840000pt;}
.ls15{letter-spacing:8.480000pt;}
.ls19{letter-spacing:11.040000pt;}
.ls1f{letter-spacing:14.672640pt;}
.ls13{letter-spacing:20.000000pt;}
.ls18{letter-spacing:21.920000pt;}
.ls3{letter-spacing:33.392640pt;}
.ls11{letter-spacing:33.872640pt;}
.ls1{letter-spacing:37.376000pt;}
.lsb{letter-spacing:40.912640pt;}
.lsf{letter-spacing:48.592640pt;}
.ls14{letter-spacing:56.912640pt;}
.ls20{letter-spacing:57.040640pt;}
.ws4{word-spacing:-53.120000pt;}
.ws6{word-spacing:-48.000000pt;}
.ws2{word-spacing:-24.000000pt;}
.ws0{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.545600pt;}
.ws5{word-spacing:-13.374933pt;}
.ws3{word-spacing:-13.280000pt;}
.wsf{word-spacing:-13.232640pt;}
.wsd{word-spacing:-12.870933pt;}
.wsa{word-spacing:-12.016000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.984000pt;}
.ws7{word-spacing:-11.680000pt;}
.ws10{word-spacing:-11.040000pt;}
.ws12{word-spacing:-10.760320pt;}
.ws1{word-spacing:-10.720000pt;}
.ws11{word-spacing:-10.122667pt;}
.wsc{word-spacing:-8.640000pt;}
.wsb{word-spacing:0.000000pt;}
._4{margin-left:-1.040640pt;}
._1{width:1.009280pt;}
._9{width:2.158080pt;}
._8{width:3.134080pt;}
._a{width:4.334293pt;}
._7{width:5.608747pt;}
._6{width:6.533760pt;}
._15{width:7.808640pt;}
._d{width:9.455360pt;}
._e{width:10.541867pt;}
._10{width:11.470720pt;}
._18{width:12.376960pt;}
._19{width:14.521387pt;}
._16{width:16.226560pt;}
._11{width:17.742080pt;}
._1e{width:18.751360pt;}
._17{width:19.849813pt;}
._c{width:21.158827pt;}
._b{width:22.097920pt;}
._14{width:23.568000pt;}
._13{width:24.768000pt;}
._1b{width:27.356800pt;}
._f{width:28.312960pt;}
._1d{width:32.526720pt;}
._1c{width:33.890560pt;}
._22{width:34.846933pt;}
._21{width:35.962027pt;}
._1a{width:41.009920pt;}
._12{width:42.176000pt;}
._23{width:44.567680pt;}
._20{width:45.873920pt;}
._1f{width:46.798720pt;}
._3{width:116.838187pt;}
._2{width:304.872107pt;}
._5{width:802.534613pt;}
._0{width:2539.573333pt;}
.fs4{font-size:26.880000pt;}
.fs7{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.240000pt;}
.y48{bottom:2.272000pt;}
.y3c{bottom:2.560000pt;}
.y17{bottom:2.880000pt;}
.ye6{bottom:3.040000pt;}
.yea{bottom:3.200000pt;}
.y34{bottom:5.280000pt;}
.y7{bottom:7.392000pt;}
.y46{bottom:7.552000pt;}
.y3a{bottom:8.480000pt;}
.yc{bottom:12.480000pt;}
.y160{bottom:14.400000pt;}
.y8{bottom:14.432000pt;}
.y138{bottom:14.560000pt;}
.y47{bottom:14.592000pt;}
.y32{bottom:17.280000pt;}
.y15d{bottom:18.240000pt;}
.y39{bottom:22.400000pt;}
.y15f{bottom:26.720000pt;}
.y137{bottom:26.880000pt;}
.ya{bottom:31.520000pt;}
.y31{bottom:31.840000pt;}
.y15c{bottom:33.600000pt;}
.y38{bottom:36.160000pt;}
.y49{bottom:36.800000pt;}
.y136{bottom:39.040000pt;}
.y30{bottom:45.600000pt;}
.y15b{bottom:48.960000pt;}
.y37{bottom:49.920000pt;}
.y135{bottom:51.360000pt;}
.y6{bottom:51.680000pt;}
.y15e{bottom:51.840000pt;}
.y45{bottom:56.960000pt;}
.y2f{bottom:59.360000pt;}
.y36{bottom:63.680000pt;}
.y15a{bottom:64.320000pt;}
.y29{bottom:65.960000pt;}
.y2e{bottom:73.280000pt;}
.y159{bottom:79.720000pt;}
.y28{bottom:81.320000pt;}
.y2d{bottom:87.066667pt;}
.y3b{bottom:94.440000pt;}
.y158{bottom:94.920000pt;}
.y27{bottom:96.680000pt;}
.y132{bottom:99.392000pt;}
.y2c{bottom:100.826667pt;}
.yfd{bottom:106.752000pt;}
.y7e{bottom:108.352000pt;}
.yc9{bottom:111.392000pt;}
.y26{bottom:112.040000pt;}
.y44{bottom:112.992000pt;}
.y92{bottom:114.432000pt;}
.y2b{bottom:114.586667pt;}
.y131{bottom:114.752000pt;}
.yfc{bottom:120.672000pt;}
.y7d{bottom:123.712000pt;}
.yb9{bottom:125.152000pt;}
.yc8{bottom:126.752000pt;}
.y25{bottom:127.240000pt;}
.y43{bottom:127.712000pt;}
.y161{bottom:128.032000pt;}
.y91{bottom:129.792000pt;}
.y130{bottom:130.112000pt;}
.yfb{bottom:134.586667pt;}
.y7c{bottom:139.066667pt;}
.y42{bottom:140.506667pt;}
.y24{bottom:142.600000pt;}
.yc7{bottom:142.906667pt;}
.y90{bottom:144.986667pt;}
.y12f{bottom:145.466667pt;}
.yfa{bottom:148.506667pt;}
.y7b{bottom:154.426667pt;}
.y41{bottom:155.866667pt;}
.y23{bottom:157.960000pt;}
.yc6{bottom:158.266667pt;}
.y8f{bottom:160.346667pt;}
.y12e{bottom:160.826667pt;}
.yf9{bottom:162.266667pt;}
.y7a{bottom:169.786667pt;}
.y40{bottom:171.226667pt;}
.y22{bottom:173.320000pt;}
.yc5{bottom:173.626667pt;}
.y8e{bottom:175.706667pt;}
.yf8{bottom:176.186667pt;}
.y79{bottom:184.986667pt;}
.y9d{bottom:185.146667pt;}
.y3f{bottom:186.586667pt;}
.y21{bottom:188.680000pt;}
.yc4{bottom:188.986667pt;}
.yf7{bottom:190.106667pt;}
.y8d{bottom:191.066667pt;}
.y12d{bottom:191.386667pt;}
.y9c{bottom:197.786667pt;}
.y78{bottom:200.346667pt;}
.yb8{bottom:201.626667pt;}
.y3e{bottom:202.426667pt;}
.yc3{bottom:203.706667pt;}
.y9b{bottom:204.026667pt;}
.y20{bottom:204.040000pt;}
.y157{bottom:205.466667pt;}
.y8c{bottom:206.426667pt;}
.y12c{bottom:206.746667pt;}
.yb7{bottom:214.266667pt;}
.yc2{bottom:215.066667pt;}
.y77{bottom:215.706667pt;}
.yf6{bottom:217.946667pt;}
.y1f{bottom:219.240000pt;}
.y3d{bottom:219.386667pt;}
.yb6{bottom:220.506667pt;}
.yc1{bottom:221.306667pt;}
.y8b{bottom:221.786667pt;}
.y12b{bottom:222.106667pt;}
.y76{bottom:231.066667pt;}
.y18{bottom:231.226667pt;}
.yf5{bottom:231.866667pt;}
.y1e{bottom:234.600000pt;}
.y8a{bottom:236.986667pt;}
.y12a{bottom:237.466667pt;}
.yf4{bottom:245.786667pt;}
.y75{bottom:246.426667pt;}
.y1d{bottom:249.960000pt;}
.y89{bottom:252.346667pt;}
.y129{bottom:252.826667pt;}
.yf3{bottom:259.706667pt;}
.y74{bottom:261.626667pt;}
.y1c{bottom:265.320000pt;}
.y88{bottom:267.706667pt;}
.y128{bottom:268.186667pt;}
.yf2{bottom:273.626667pt;}
.y73{bottom:276.986667pt;}
.y1b{bottom:280.706667pt;}
.y87{bottom:283.106667pt;}
.y127{bottom:283.426667pt;}
.yf1{bottom:287.586667pt;}
.y72{bottom:292.386667pt;}
.y1a{bottom:296.066667pt;}
.ydc{bottom:298.306667pt;}
.y86{bottom:298.466667pt;}
.y126{bottom:298.786667pt;}
.yf0{bottom:301.346667pt;}
.y71{bottom:307.746667pt;}
.y19{bottom:311.746667pt;}
.ydb{bottom:312.866667pt;}
.y85{bottom:313.826667pt;}
.y125{bottom:314.146667pt;}
.yef{bottom:315.266667pt;}
.y152{bottom:315.746667pt;}
.y70{bottom:323.106667pt;}
.yda{bottom:324.386667pt;}
.y124{bottom:327.266667pt;}
.y84{bottom:329.026667pt;}
.yee{bottom:329.186667pt;}
.y156{bottom:329.986667pt;}
.yd9{bottom:330.626667pt;}
.y151{bottom:331.106667pt;}
.y35{bottom:337.506667pt;}
.y6f{bottom:338.466667pt;}
.y123{bottom:341.186667pt;}
.yed{bottom:343.106667pt;}
.y83{bottom:344.386667pt;}
.y155{bottom:345.346667pt;}
.y150{bottom:346.466667pt;}
.y6e{bottom:353.666667pt;}
.y122{bottom:355.106667pt;}
.yec{bottom:357.026667pt;}
.y82{bottom:359.746667pt;}
.y154{bottom:360.706667pt;}
.y14f{bottom:361.826667pt;}
.y6d{bottom:369.026667pt;}
.yeb{bottom:370.946667pt;}
.y81{bottom:375.106667pt;}
.y153{bottom:376.066667pt;}
.y14e{bottom:377.186667pt;}
.y121{bottom:382.946667pt;}
.y6c{bottom:384.386667pt;}
.ye9{bottom:384.866667pt;}
.y80{bottom:391.426667pt;}
.y14d{bottom:392.386667pt;}
.y120{bottom:396.866667pt;}
.ye8{bottom:398.786667pt;}
.y6b{bottom:403.426667pt;}
.y7f{bottom:406.626667pt;}
.y14c{bottom:407.746667pt;}
.y11f{bottom:410.626667pt;}
.ye7{bottom:412.706667pt;}
.y33{bottom:413.186667pt;}
.y6a{bottom:421.986667pt;}
.y14b{bottom:423.106667pt;}
.yb2{bottom:424.066667pt;}
.y11e{bottom:424.546667pt;}
.ye5{bottom:426.626667pt;}
.y9a{bottom:427.266667pt;}
.y2a{bottom:431.586667pt;}
.y69{bottom:437.346667pt;}
.yb5{bottom:438.466667pt;}
.yb1{bottom:439.426667pt;}
.y99{bottom:441.826667pt;}
.ye4{bottom:443.266667pt;}
.yc0{bottom:444.866667pt;}
.y11d{bottom:452.386667pt;}
.y68{bottom:452.706667pt;}
.y98{bottom:453.346667pt;}
.yb4{bottom:453.826667pt;}
.yb0{bottom:454.786667pt;}
.ye3{bottom:457.986667pt;}
.y97{bottom:459.586667pt;}
.y11c{bottom:466.306667pt;}
.y67{bottom:468.066667pt;}
.y14a{bottom:469.026667pt;}
.yb3{bottom:469.186667pt;}
.ye2{bottom:469.506667pt;}
.yaf{bottom:470.146667pt;}
.ybf{bottom:471.106667pt;}
.ye1{bottom:475.746667pt;}
.ybe{bottom:477.346667pt;}
.y11b{bottom:480.226667pt;}
.y66{bottom:483.426667pt;}
.y149{bottom:484.386667pt;}
.yae{bottom:485.346667pt;}
.y11a{bottom:494.146667pt;}
.y65{bottom:498.626667pt;}
.y148{bottom:499.746667pt;}
.yad{bottom:500.706667pt;}
.y119{bottom:508.093333pt;}
.y64{bottom:514.013333pt;}
.y147{bottom:515.133333pt;}
.yac{bottom:516.093333pt;}
.y118{bottom:522.013333pt;}
.y63{bottom:529.373333pt;}
.y146{bottom:530.493333pt;}
.yab{bottom:531.453333pt;}
.yd8{bottom:533.693333pt;}
.y117{bottom:535.773333pt;}
.y62{bottom:544.733333pt;}
.y145{bottom:545.853333pt;}
.yaa{bottom:546.813333pt;}
.yd7{bottom:548.413333pt;}
.y116{bottom:549.693333pt;}
.y16{bottom:558.013333pt;}
.yd6{bottom:559.773333pt;}
.y61{bottom:560.093333pt;}
.y144{bottom:561.053333pt;}
.ya9{bottom:562.173333pt;}
.y115{bottom:563.613333pt;}
.yd5{bottom:566.173333pt;}
.y60{bottom:575.453333pt;}
.y143{bottom:576.413333pt;}
.ya8{bottom:577.373333pt;}
.y114{bottom:577.533333pt;}
.y15{bottom:588.733333pt;}
.y5f{bottom:590.653333pt;}
.y113{bottom:591.453333pt;}
.y142{bottom:591.773333pt;}
.ya7{bottom:592.733333pt;}
.y112{bottom:605.373333pt;}
.y5e{bottom:606.013333pt;}
.y14{bottom:606.493333pt;}
.y141{bottom:607.133333pt;}
.ya6{bottom:608.093333pt;}
.y111{bottom:619.293333pt;}
.y5d{bottom:621.373333pt;}
.y140{bottom:622.493333pt;}
.ya5{bottom:623.453333pt;}
.y13{bottom:631.773333pt;}
.y110{bottom:633.213333pt;}
.y5c{bottom:636.733333pt;}
.y13f{bottom:637.853333pt;}
.ya4{bottom:638.813333pt;}
.y10f{bottom:647.133333pt;}
.y12{bottom:647.453333pt;}
.y5b{bottom:652.093333pt;}
.y13e{bottom:653.053333pt;}
.ya3{bottom:654.013333pt;}
.y10e{bottom:661.053333pt;}
.y11{bottom:666.333333pt;}
.y5a{bottom:667.453333pt;}
.y13d{bottom:668.413333pt;}
.ya2{bottom:669.373333pt;}
.y96{bottom:671.453333pt;}
.y10d{bottom:674.813333pt;}
.ybd{bottom:680.733333pt;}
.y59{bottom:682.653333pt;}
.y13c{bottom:683.773333pt;}
.ye0{bottom:684.573333pt;}
.ya1{bottom:684.733333pt;}
.y95{bottom:686.173333pt;}
.y10c{bottom:688.733333pt;}
.y10{bottom:693.853333pt;}
.ybc{bottom:695.453333pt;}
.y94{bottom:697.533333pt;}
.y58{bottom:698.013333pt;}
.y13b{bottom:699.133333pt;}
.ydf{bottom:699.293333pt;}
.ya0{bottom:699.453333pt;}
.y10b{bottom:702.653333pt;}
.y93{bottom:703.773333pt;}
.ybb{bottom:706.973333pt;}
.yde{bottom:710.813333pt;}
.y9f{bottom:710.973333pt;}
.yba{bottom:713.213333pt;}
.y57{bottom:713.373333pt;}
.y13a{bottom:714.493333pt;}
.y10a{bottom:716.573333pt;}
.ydd{bottom:717.053333pt;}
.y9e{bottom:717.213333pt;}
.yf{bottom:721.533333pt;}
.y56{bottom:728.773333pt;}
.y139{bottom:729.733333pt;}
.y109{bottom:730.533333pt;}
.y134{bottom:742.853333pt;}
.y55{bottom:744.133333pt;}
.y108{bottom:744.453333pt;}
.ye{bottom:749.093333pt;}
.yd4{bottom:755.653333pt;}
.y107{bottom:758.373333pt;}
.y54{bottom:759.333333pt;}
.yd3{bottom:770.853333pt;}
.y106{bottom:772.293333pt;}
.y53{bottom:774.693333pt;}
.yd{bottom:774.853333pt;}
.yd2{bottom:786.213333pt;}
.yb{bottom:788.453333pt;}
.y52{bottom:790.053333pt;}
.y105{bottom:799.973333pt;}
.yd1{bottom:801.573333pt;}
.y133{bottom:804.933333pt;}
.y51{bottom:805.413333pt;}
.y104{bottom:813.893333pt;}
.yd0{bottom:816.933333pt;}
.y50{bottom:820.773333pt;}
.y103{bottom:827.813333pt;}
.ycf{bottom:832.293333pt;}
.y4f{bottom:836.133333pt;}
.y102{bottom:841.733333pt;}
.yce{bottom:848.453333pt;}
.y4e{bottom:851.333333pt;}
.y101{bottom:855.653333pt;}
.ycd{bottom:863.813333pt;}
.y4d{bottom:866.693333pt;}
.y100{bottom:869.573333pt;}
.ycc{bottom:879.173333pt;}
.y4c{bottom:882.053333pt;}
.yff{bottom:883.493333pt;}
.ycb{bottom:895.493333pt;}
.y4b{bottom:897.413333pt;}
.yfe{bottom:911.333333pt;}
.yca{bottom:911.813333pt;}
.y4a{bottom:912.773333pt;}
.y5{bottom:928.133333pt;}
.y4{bottom:943.333333pt;}
.y3{bottom:958.720000pt;}
.y2{bottom:974.720000pt;}
.y1{bottom:993.120000pt;}
.h27{height:12.320000pt;}
.h21{height:13.120000pt;}
.h25{height:13.152000pt;}
.h24{height:13.280000pt;}
.h26{height:13.312000pt;}
.hf{height:15.360000pt;}
.h16{height:17.760000pt;}
.h20{height:18.768750pt;}
.h1f{height:18.965625pt;}
.h1d{height:21.813750pt;}
.h4{height:24.512000pt;}
.h6{height:29.940625pt;}
.h22{height:30.254687pt;}
.h23{height:32.620625pt;}
.h18{height:33.515625pt;}
.h19{height:33.867188pt;}
.h1e{height:34.798125pt;}
.h7{height:34.965625pt;}
.h14{height:35.554688pt;}
.h5{height:37.090625pt;}
.he{height:37.479688pt;}
.h1b{height:38.672812pt;}
.h11{height:39.321250pt;}
.h15{height:39.347188pt;}
.h12{height:40.410625pt;}
.h9{height:41.112500pt;}
.hc{height:41.543750pt;}
.h2{height:43.108125pt;}
.h3{height:45.156250pt;}
.h1c{height:46.039063pt;}
.ha{height:47.782500pt;}
.h1{height:51.937500pt;}
.h28{height:61.440000pt;}
.h2a{height:64.320000pt;}
.hd{height:67.031250pt;}
.hb{height:67.734375pt;}
.h17{height:74.880000pt;}
.h1a{height:105.632000pt;}
.h29{height:107.392000pt;}
.h13{height:125.792000pt;}
.h8{height:136.800000pt;}
.h10{height:326.146667pt;}
.h0{height:1056.000000pt;}
.w2{width:40.032000pt;}
.w7{width:58.272000pt;}
.w9{width:79.840000pt;}
.wb{width:87.360000pt;}
.wa{width:103.712000pt;}
.wc{width:168.346667pt;}
.w6{width:188.186667pt;}
.w8{width:208.186667pt;}
.wd{width:292.706667pt;}
.w5{width:530.493333pt;}
.w3{width:696.453333pt;}
.we{width:711.813333pt;}
.w4{width:730.533333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x51{left:3.680000pt;}
.x13{left:5.760000pt;}
.x15{left:6.720000pt;}
.x5{left:7.680000pt;}
.x4e{left:9.280000pt;}
.x41{left:10.240000pt;}
.x3b{left:11.200000pt;}
.x46{left:12.640000pt;}
.x4a{left:13.760000pt;}
.x29{left:15.520000pt;}
.x3a{left:16.800000pt;}
.x12{left:17.760000pt;}
.x3f{left:19.040000pt;}
.x17{left:20.680000pt;}
.x3e{left:21.800000pt;}
.x4d{left:22.880000pt;}
.x2d{left:23.840000pt;}
.x32{left:25.120000pt;}
.x14{left:26.440000pt;}
.x16{left:28.200000pt;}
.x35{left:30.554667pt;}
.x42{left:31.866667pt;}
.x39{left:33.280000pt;}
.x44{left:34.586667pt;}
.x34{left:35.706667pt;}
.x48{left:37.306667pt;}
.x31{left:38.440000pt;}
.x36{left:39.546667pt;}
.x8{left:40.480000pt;}
.x3d{left:41.946667pt;}
.x3c{left:44.154667pt;}
.x33{left:45.914667pt;}
.x4{left:47.999988pt;}
.x43{left:49.480000pt;}
.x45{left:50.440000pt;}
.x38{left:52.314667pt;}
.x3{left:53.919988pt;}
.x37{left:56.360000pt;}
.x4f{left:57.320000pt;}
.x18{left:58.239988pt;}
.x4b{left:59.674667pt;}
.x40{left:60.634667pt;}
.x47{left:61.754667pt;}
.x4c{left:63.514667pt;}
.x49{left:64.794667pt;}
.x2b{left:67.674667pt;}
.xb{left:69.599988pt;}
.x53{left:71.226667pt;}
.x50{left:73.800000pt;}
.x52{left:75.680000pt;}
.x19{left:77.119988pt;}
.x6{left:89.632000pt;}
.x7{left:96.031988pt;}
.x2a{left:112.512000pt;}
.x1{left:133.786655pt;}
.x2{left:196.186655pt;}
.xf{left:201.466655pt;}
.x55{left:262.786667pt;}
.x2c{left:321.346667pt;}
.xc{left:326.626655pt;}
.x1f{left:332.386655pt;}
.x23{left:337.346655pt;}
.xe{left:343.266655pt;}
.x25{left:356.226655pt;}
.x22{left:361.026655pt;}
.x26{left:362.786655pt;}
.x20{left:365.346655pt;}
.x28{left:372.226655pt;}
.x24{left:375.746655pt;}
.x1e{left:376.706655pt;}
.x27{left:389.666655pt;}
.x2e{left:401.826667pt;}
.xa{left:408.066655pt;}
.x1c{left:410.626655pt;}
.xd{left:412.706655pt;}
.x10{left:413.666655pt;}
.x1a{left:425.186655pt;}
.x21{left:432.093321pt;}
.x1b{left:449.213321pt;}
.x54{left:468.093321pt;}
.x2f{left:506.173333pt;}
.x1d{left:562.813321pt;}
.x11{left:578.493333pt;}
.x30{left:594.173333pt;}
.x9{left:722.213333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  