
    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_fbe68505088adcd8e37abe5f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_29c41ed015a1135862163dc1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_cef5289458e0ce020a9a286c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.969000;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_1bed798be023a5452eca4740.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.966000;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_799d32c56ecdf5adb831af5a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_7500188a3919d8099bd92574.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_8bf12057e06c696d3afc4e30.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-0.936000px;}
.ls11{letter-spacing:-0.504000px;}
.ls12{letter-spacing:-0.432000px;}
.ls3{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.180000px;}
.lsc{letter-spacing:-0.106800px;}
.ls5{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.053280px;}
.lsa{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.153600px;}
.ls9{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.360000px;}
.lse{letter-spacing:0.504000px;}
.lsd{letter-spacing:0.720000px;}
.ls10{letter-spacing:0.864000px;}
.ls1{letter-spacing:846.156000px;}
.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;}
}
.wse{word-spacing:-18.864000px;}
.wsc{word-spacing:-18.720000px;}
.ws1{word-spacing:-18.144000px;}
.ws9{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.784000px;}
.ws2{word-spacing:-17.712000px;}
.ws10{word-spacing:-17.568000px;}
.wsf{word-spacing:-17.496000px;}
.wsd{word-spacing:-17.064000px;}
.ws7{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.093600px;}
.wsb{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.833200px;}
.ws0{word-spacing:0.000000px;}
._1{margin-left:-3.977970px;}
._0{margin-left:-2.851752px;}
._2{margin-left:-1.222255px;}
._3{width:1.006255px;}
._4{width:2.086255px;}
._7{width:3.171490px;}
._6{width:4.176000px;}
._5{width:5.256000px;}
._d{width:7.128000px;}
._8{width:9.072000px;}
._9{width:10.224000px;}
._11{width:11.230255px;}
._f{width:12.240000px;}
._10{width:13.537745px;}
._14{width:14.542255px;}
._e{width:15.912000px;}
._b{width:16.992000px;}
._12{width:22.896000px;}
._a{width:24.336000px;}
._c{width:28.080000px;}
._13{width:41.112000px;}
.fc1{color:rgb(5,99,193);}
.fc2{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs0{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.ycd{bottom:3.240000px;}
.y6f{bottom:3.420000px;}
.y8a{bottom:3.600000px;}
.y77{bottom:3.780000px;}
.yf2{bottom:3.825000px;}
.y121{bottom:4.140000px;}
.y125{bottom:4.500000px;}
.y123{bottom:4.530000px;}
.yce{bottom:20.520000px;}
.y6e{bottom:20.700000px;}
.yf3{bottom:20.745000px;}
.y76{bottom:20.880000px;}
.y7b{bottom:21.060000px;}
.y94{bottom:21.105000px;}
.y6b{bottom:29.160000px;}
.y6d{bottom:37.800000px;}
.y75{bottom:38.160000px;}
.y7f{bottom:38.334000px;}
.y84{bottom:38.340000px;}
.ya7{bottom:38.370000px;}
.y93{bottom:38.385000px;}
.ycf{bottom:55.080000px;}
.y6c{bottom:55.110000px;}
.y98{bottom:55.434000px;}
.y74{bottom:55.440000px;}
.y8f{bottom:55.470000px;}
.y92{bottom:55.485000px;}
.y7e{bottom:55.614000px;}
.y83{bottom:55.620000px;}
.ya6{bottom:55.650000px;}
.y9f{bottom:57.780000px;}
.y97{bottom:72.714000px;}
.y73{bottom:72.720000px;}
.y8e{bottom:72.750000px;}
.y89{bottom:72.765000px;}
.y7d{bottom:72.894000px;}
.y82{bottom:72.900000px;}
.y9e{bottom:75.060000px;}
.ya4{bottom:89.820000px;}
.y72{bottom:90.000000px;}
.y8d{bottom:90.030000px;}
.y88{bottom:90.045000px;}
.ya3{bottom:107.100000px;}
.y87{bottom:107.145000px;}
.y71{bottom:107.280000px;}
.y7a{bottom:107.325000px;}
.yca{bottom:117.036000px;}
.y7c{bottom:123.156000px;}
.ya2{bottom:124.380000px;}
.y96{bottom:124.416000px;}
.y79{bottom:124.425000px;}
.y9d{bottom:124.560000px;}
.y12f{bottom:125.856000px;}
.y68{bottom:126.576000px;}
.yf7{bottom:127.476000px;}
.y11e{bottom:134.676000px;}
.ya1{bottom:141.660000px;}
.y86{bottom:141.705000px;}
.y9c{bottom:141.840000px;}
.y12e{bottom:144.756000px;}
.y5a{bottom:152.850000px;}
.y43{bottom:153.570000px;}
.yc9{bottom:158.430000px;}
.y9b{bottom:159.120000px;}
.yf6{bottom:161.130000px;}
.ye0{bottom:167.250000px;}
.y67{bottom:167.970000px;}
.y13e{bottom:169.770000px;}
.y14f{bottom:170.850000px;}
.y11d{bottom:176.070000px;}
.yd9{bottom:180.750000px;}
.yab{bottom:180.930000px;}
.y12d{bottom:186.150000px;}
.y59{bottom:194.250000px;}
.y42{bottom:194.970000px;}
.y151{bottom:197.850000px;}
.yc8{bottom:199.830000px;}
.yaa{bottom:206.130000px;}
.ydf{bottom:208.650000px;}
.y66{bottom:209.370000px;}
.y13d{bottom:211.170000px;}
.y14e{bottom:212.250000px;}
.y11c{bottom:217.470000px;}
.yd8{bottom:222.150000px;}
.y10b{bottom:222.330000px;}
.y78{bottom:224.490000px;}
.y95{bottom:225.750000px;}
.y12c{bottom:227.550000px;}
.y58{bottom:235.650000px;}
.y41{bottom:236.370000px;}
.y14a{bottom:239.250000px;}
.yc7{bottom:241.230000px;}
.yf5{bottom:245.910000px;}
.y15e{bottom:248.250000px;}
.yde{bottom:250.050000px;}
.y65{bottom:250.770000px;}
.y11b{bottom:258.870000px;}
.yd7{bottom:263.550000px;}
.y10a{bottom:263.730000px;}
.y18{bottom:264.450000px;}
.y12b{bottom:276.690000px;}
.y57{bottom:277.050000px;}
.y40{bottom:277.770000px;}
.yf4{bottom:279.570000px;}
.y149{bottom:280.650000px;}
.yc6{bottom:282.630000px;}
.y15d{bottom:289.650000px;}
.ydd{bottom:291.450000px;}
.y64{bottom:292.170000px;}
.y11a{bottom:300.270000px;}
.y109{bottom:305.130000px;}
.yd6{bottom:308.550000px;}
.y91{bottom:309.630000px;}
.yf1{bottom:313.410000px;}
.y56{bottom:318.495000px;}
.y3f{bottom:319.215000px;}
.y13c{bottom:321.015000px;}
.y12a{bottom:321.555000px;}
.y14d{bottom:322.095000px;}
.yc5{bottom:324.075000px;}
.ya9{bottom:324.615000px;}
.ydc{bottom:332.895000px;}
.y63{bottom:333.615000px;}
.y119{bottom:341.715000px;}
.y108{bottom:346.575000px;}
.y129{bottom:346.755000px;}
.y148{bottom:349.095000px;}
.y17{bottom:353.595000px;}
.y15c{bottom:358.095000px;}
.y55{bottom:359.895000px;}
.y3e{bottom:360.615000px;}
.y13b{bottom:362.415000px;}
.yd5{bottom:363.855000px;}
.yf0{bottom:364.395000px;}
.yc4{bottom:369.255000px;}
.y16{bottom:374.295000px;}
.y62{bottom:375.015000px;}
.y70{bottom:377.535000px;}
.y118{bottom:383.115000px;}
.y107{bottom:387.975000px;}
.y128{bottom:388.695000px;}
.y147{bottom:390.495000px;}
.y15{bottom:394.635000px;}
.yc3{bottom:396.075000px;}
.yef{bottom:398.235000px;}
.y15b{bottom:399.495000px;}
.y54{bottom:401.295000px;}
.y3d{bottom:402.015000px;}
.ya8{bottom:408.675000px;}
.ydb{bottom:415.695000px;}
.y61{bottom:416.415000px;}
.y2d{bottom:417.675000px;}
.yc2{bottom:421.275000px;}
.y117{bottom:424.515000px;}
.yd4{bottom:426.315000px;}
.y90{bottom:428.115000px;}
.y106{bottom:429.375000px;}
.y13a{bottom:430.815000px;}
.yee{bottom:431.895000px;}
.y14{bottom:436.395000px;}
.y53{bottom:442.695000px;}
.y3c{bottom:443.415000px;}
.yc1{bottom:454.935000px;}
.y13{bottom:457.095000px;}
.yae{bottom:457.815000px;}
.y146{bottom:458.895000px;}
.y127{bottom:460.155000px;}
.yd3{bottom:462.315000px;}
.y60{bottom:465.375000px;}
.y15a{bottom:467.895000px;}
.y105{bottom:470.775000px;}
.y139{bottom:472.215000px;}
.y116{bottom:473.475000px;}
.y12{bottom:477.435000px;}
.yd2{bottom:481.215000px;}
.y2c{bottom:481.755000px;}
.yed{bottom:483.015000px;}
.y52{bottom:484.095000px;}
.y3b{bottom:484.815000px;}
.yc0{bottom:488.775000px;}
.y126{bottom:495.795000px;}
.yda{bottom:498.495000px;}
.y145{bottom:500.295000px;}
.y159{bottom:509.295000px;}
.y104{bottom:512.175000px;}
.y2b{bottom:512.715000px;}
.y6a{bottom:513.255000px;}
.y11{bottom:519.195000px;}
.ybf{bottom:522.435000px;}
.y51{bottom:525.495000px;}
.y3a{bottom:526.215000px;}
.y115{bottom:528.735000px;}
.y8c{bottom:529.455000px;}
.y124{bottom:531.615000px;}
.yec{bottom:533.955000px;}
.y10{bottom:539.895000px;}
.y138{bottom:540.615000px;}
.y144{bottom:541.695000px;}
.ya5{bottom:544.395000px;}
.yd1{bottom:551.595000px;}
.y103{bottom:553.575000px;}
.ybe{bottom:556.275000px;}
.yf{bottom:560.235000px;}
.y50{bottom:566.895000px;}
.y122{bottom:567.255000px;}
.y39{bottom:567.615000px;}
.y150{bottom:568.725000px;}
.yd0{bottom:570.345000px;}
.y2a{bottom:570.885000px;}
.y114{bottom:573.585000px;}
.y158{bottom:577.725000px;}
.y5f{bottom:581.325000px;}
.y137{bottom:582.045000px;}
.y14c{bottom:583.125000px;}
.yeb{bottom:584.925000px;}
.ycc{bottom:589.245000px;}
.ybd{bottom:589.965000px;}
.y102{bottom:595.005000px;}
.y69{bottom:595.365000px;}
.y113{bottom:598.785000px;}
.y29{bottom:601.845000px;}
.ye{bottom:602.025000px;}
.y120{bottom:602.925000px;}
.y4f{bottom:608.325000px;}
.y38{bottom:609.045000px;}
.y143{bottom:610.125000px;}
.yea{bottom:618.765000px;}
.y157{bottom:619.125000px;}
.yd{bottom:622.725000px;}
.y136{bottom:623.445000px;}
.ybc{bottom:623.805000px;}
.y112{bottom:632.085000px;}
.y28{bottom:632.985000px;}
.y101{bottom:636.405000px;}
.y11f{bottom:636.765000px;}
.yc{bottom:643.065000px;}
.y8b{bottom:647.925000px;}
.y4e{bottom:649.725000px;}
.yad{bottom:650.445000px;}
.y142{bottom:651.525000px;}
.ye9{bottom:652.425000px;}
.ybb{bottom:657.465000px;}
.y156{bottom:660.525000px;}
.ya0{bottom:663.045000px;}
.ycb{bottom:663.765000px;}
.y27{bottom:663.945000px;}
.y5e{bottom:664.125000px;}
.y111{bottom:665.565000px;}
.y37{bottom:677.445000px;}
.y100{bottom:677.805000px;}
.yb{bottom:684.825000px;}
.ye8{bottom:686.265000px;}
.y4d{bottom:691.125000px;}
.yba{bottom:691.305000px;}
.yac{bottom:691.665000px;}
.y14b{bottom:692.925000px;}
.y26{bottom:695.085000px;}
.y110{bottom:698.865000px;}
.ya{bottom:705.525000px;}
.y36{bottom:718.665000px;}
.ye7{bottom:719.925000px;}
.yb9{bottom:724.965000px;}
.y9{bottom:725.865000px;}
.y25{bottom:726.045000px;}
.y155{bottom:728.925000px;}
.y10f{bottom:732.165000px;}
.y4c{bottom:732.525000px;}
.y134{bottom:733.065000px;}
.yff{bottom:746.205000px;}
.y5d{bottom:746.925000px;}
.y85{bottom:749.265000px;}
.y24{bottom:757.185000px;}
.yb8{bottom:758.805000px;}
.y35{bottom:760.065000px;}
.y141{bottom:761.325000px;}
.y10e{bottom:765.645000px;}
.y8{bottom:767.625000px;}
.y154{bottom:770.325000px;}
.ye6{bottom:770.865000px;}
.y4b{bottom:773.925000px;}
.y133{bottom:774.465000px;}
.yfe{bottom:787.605000px;}
.y23{bottom:788.145000px;}
.y7{bottom:788.325000px;}
.yb7{bottom:792.465000px;}
.y10d{bottom:798.945000px;}
.y34{bottom:801.465000px;}
.y140{bottom:802.725000px;}
.ye5{bottom:804.705000px;}
.y6{bottom:809.025000px;}
.y153{bottom:811.725000px;}
.y4a{bottom:815.325000px;}
.y132{bottom:815.865000px;}
.y22{bottom:819.330000px;}
.y135{bottom:823.650000px;}
.yfd{bottom:829.050000px;}
.y10c{bottom:829.410000px;}
.y5{bottom:829.770000px;}
.y9a{bottom:833.190000px;}
.ye4{bottom:838.410000px;}
.y33{bottom:842.910000px;}
.yb6{bottom:843.630000px;}
.y152{bottom:844.170000px;}
.y21{bottom:850.290000px;}
.y4{bottom:850.470000px;}
.y49{bottom:856.770000px;}
.y131{bottom:857.310000px;}
.yfc{bottom:870.450000px;}
.y5c{bottom:871.170000px;}
.ye3{bottom:872.250000px;}
.yb5{bottom:877.290000px;}
.y20{bottom:881.430000px;}
.y32{bottom:884.310000px;}
.y48{bottom:898.170000px;}
.ye2{bottom:905.910000px;}
.y130{bottom:906.450000px;}
.yb4{bottom:911.130000px;}
.yfb{bottom:911.850000px;}
.y1f{bottom:912.390000px;}
.y5b{bottom:912.570000px;}
.y81{bottom:919.410000px;}
.y31{bottom:925.710000px;}
.y99{bottom:936.690000px;}
.y47{bottom:939.570000px;}
.y1e{bottom:943.530000px;}
.y3{bottom:944.610000px;}
.yb3{bottom:944.790000px;}
.ye1{bottom:953.610000px;}
.y13f{bottom:953.970000px;}
.yfa{bottom:956.850000px;}
.y30{bottom:967.110000px;}
.y1d{bottom:974.490000px;}
.yb2{bottom:978.630000px;}
.y46{bottom:980.970000px;}
.y2{bottom:993.030000px;}
.y1c{bottom:1005.630000px;}
.y2f{bottom:1008.510000px;}
.yb1{bottom:1012.290000px;}
.y80{bottom:1020.750000px;}
.y45{bottom:1022.370000px;}
.yf9{bottom:1028.490000px;}
.y1{bottom:1041.270000px;}
.yb0{bottom:1042.710000px;}
.yf8{bottom:1053.690000px;}
.y2e{bottom:1057.650000px;}
.y1b{bottom:1063.230000px;}
.yaf{bottom:1063.410000px;}
.y44{bottom:1063.770000px;}
.y1a{bottom:1131.907500px;}
.y19{bottom:1153.507500px;}
.h1c{height:17.100000px;}
.h17{height:17.280000px;}
.h19{height:17.316000px;}
.h1f{height:20.700000px;}
.h20{height:20.736000px;}
.h21{height:27.000000px;}
.h1e{height:34.380000px;}
.h1d{height:34.416000px;}
.h1b{height:34.560000px;}
.h18{height:34.596000px;}
.h11{height:43.215117px;}
.h4{height:51.264000px;}
.hc{height:51.696000px;}
.h22{height:52.066406px;}
.h9{height:58.651172px;}
.h7{height:60.226875px;}
.h10{height:68.940000px;}
.h6{height:68.976000px;}
.h12{height:69.120000px;}
.h3{height:70.664062px;}
.h2{height:72.562500px;}
.h1a{height:84.898125px;}
.he{height:86.220000px;}
.hb{height:86.400000px;}
.h14{height:88.560000px;}
.h5{height:96.508125px;}
.h16{height:103.500000px;}
.hf{height:103.536000px;}
.h8{height:120.780000px;}
.ha{height:137.916000px;}
.h15{height:155.160000px;}
.hd{height:155.190000px;}
.h1{height:164.647266px;}
.h13{height:172.620000px;}
.h0{height:1188.000000px;}
.w19{width:44.280000px;}
.w1a{width:44.460000px;}
.w1b{width:44.496000px;}
.w18{width:47.196000px;}
.w1c{width:47.556000px;}
.w21{width:51.840000px;}
.wa{width:54.540000px;}
.w7{width:54.720000px;}
.w8{width:60.120000px;}
.wb{width:60.300000px;}
.wc{width:62.280000px;}
.wd{width:62.460000px;}
.we{width:62.496000px;}
.wf{width:62.640000px;}
.w10{width:62.676000px;}
.w1e{width:78.696000px;}
.w1f{width:80.820000px;}
.w20{width:87.876000px;}
.w14{width:98.316000px;}
.w13{width:106.200000px;}
.w2{width:112.140000px;}
.w16{width:115.560000px;}
.w12{width:119.196000px;}
.w3{width:120.096000px;}
.w15{width:124.236000px;}
.w11{width:145.260000px;}
.w17{width:165.060000px;}
.w5{width:217.650000px;}
.w6{width:220.530000px;}
.w4{width:255.810000px;}
.w9{width:258.015000px;}
.w1d{width:330.150000px;}
.w22{width:632.445000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xe{left:1.440000px;}
.x23{left:5.220000px;}
.xd{left:6.660000px;}
.xa{left:8.640000px;}
.x9{left:18.540000px;}
.x3{left:20.520000px;}
.x5{left:27.360000px;}
.xc{left:49.500000px;}
.xb{left:51.120000px;}
.x7{left:90.720000px;}
.x2{left:101.376000px;}
.x22{left:102.816000px;}
.x1{left:108.036000px;}
.x14{left:171.570000px;}
.x4{left:215.130000px;}
.x15{left:235.650000px;}
.x1e{left:247.350000px;}
.x24{left:269.490000px;}
.x16{left:299.595000px;}
.x25{left:318.135000px;}
.xf{left:323.355000px;}
.x6{left:336.675000px;}
.x17{left:363.495000px;}
.x1f{left:368.175000px;}
.x10{left:379.515000px;}
.x26{left:409.395000px;}
.x18{left:427.575000px;}
.x2b{left:433.875000px;}
.x11{left:441.075000px;}
.x27{left:455.115000px;}
.x20{left:475.995000px;}
.x19{left:491.505000px;}
.x28{left:501.045000px;}
.x2c{left:513.285000px;}
.x29{left:546.765000px;}
.x1a{left:555.585000px;}
.x21{left:575.745000px;}
.x8{left:593.205000px;}
.x2d{left:594.825000px;}
.x1b{left:619.485000px;}
.x2a{left:638.205000px;}
.x1c{left:683.610000px;}
.x12{left:700.710000px;}
.x1d{left:747.690000px;}
.x13{left:756.690000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.832000pt;}
.ls11{letter-spacing:-0.448000pt;}
.ls12{letter-spacing:-0.384000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.160000pt;}
.lsc{letter-spacing:-0.094933pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.047360pt;}
.lsa{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.136533pt;}
.ls9{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.448000pt;}
.lsd{letter-spacing:0.640000pt;}
.ls10{letter-spacing:0.768000pt;}
.ls1{letter-spacing:752.138667pt;}
.wse{word-spacing:-16.768000pt;}
.wsc{word-spacing:-16.640000pt;}
.ws1{word-spacing:-16.128000pt;}
.ws9{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws10{word-spacing:-15.616000pt;}
.wsf{word-spacing:-15.552000pt;}
.wsd{word-spacing:-15.168000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.416533pt;}
.wsb{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.232640pt;}
.wsa{word-spacing:-13.185067pt;}
.ws0{word-spacing:0.000000pt;}
._1{margin-left:-3.535973pt;}
._0{margin-left:-2.534891pt;}
._2{margin-left:-1.086449pt;}
._3{width:0.894449pt;}
._4{width:1.854449pt;}
._7{width:2.819102pt;}
._6{width:3.712000pt;}
._5{width:4.672000pt;}
._d{width:6.336000pt;}
._8{width:8.064000pt;}
._9{width:9.088000pt;}
._11{width:9.982449pt;}
._f{width:10.880000pt;}
._10{width:12.033551pt;}
._14{width:12.926449pt;}
._e{width:14.144000pt;}
._b{width:15.104000pt;}
._12{width:20.352000pt;}
._a{width:21.632000pt;}
._c{width:24.960000pt;}
._13{width:36.544000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs0{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.ycd{bottom:2.880000pt;}
.y6f{bottom:3.040000pt;}
.y8a{bottom:3.200000pt;}
.y77{bottom:3.360000pt;}
.yf2{bottom:3.400000pt;}
.y121{bottom:3.680000pt;}
.y125{bottom:4.000000pt;}
.y123{bottom:4.026667pt;}
.yce{bottom:18.240000pt;}
.y6e{bottom:18.400000pt;}
.yf3{bottom:18.440000pt;}
.y76{bottom:18.560000pt;}
.y7b{bottom:18.720000pt;}
.y94{bottom:18.760000pt;}
.y6b{bottom:25.920000pt;}
.y6d{bottom:33.600000pt;}
.y75{bottom:33.920000pt;}
.y7f{bottom:34.074667pt;}
.y84{bottom:34.080000pt;}
.ya7{bottom:34.106667pt;}
.y93{bottom:34.120000pt;}
.ycf{bottom:48.960000pt;}
.y6c{bottom:48.986667pt;}
.y98{bottom:49.274667pt;}
.y74{bottom:49.280000pt;}
.y8f{bottom:49.306667pt;}
.y92{bottom:49.320000pt;}
.y7e{bottom:49.434667pt;}
.y83{bottom:49.440000pt;}
.ya6{bottom:49.466667pt;}
.y9f{bottom:51.360000pt;}
.y97{bottom:64.634667pt;}
.y73{bottom:64.640000pt;}
.y8e{bottom:64.666667pt;}
.y89{bottom:64.680000pt;}
.y7d{bottom:64.794667pt;}
.y82{bottom:64.800000pt;}
.y9e{bottom:66.720000pt;}
.ya4{bottom:79.840000pt;}
.y72{bottom:80.000000pt;}
.y8d{bottom:80.026667pt;}
.y88{bottom:80.040000pt;}
.ya3{bottom:95.200000pt;}
.y87{bottom:95.240000pt;}
.y71{bottom:95.360000pt;}
.y7a{bottom:95.400000pt;}
.yca{bottom:104.032000pt;}
.y7c{bottom:109.472000pt;}
.ya2{bottom:110.560000pt;}
.y96{bottom:110.592000pt;}
.y79{bottom:110.600000pt;}
.y9d{bottom:110.720000pt;}
.y12f{bottom:111.872000pt;}
.y68{bottom:112.512000pt;}
.yf7{bottom:113.312000pt;}
.y11e{bottom:119.712000pt;}
.ya1{bottom:125.920000pt;}
.y86{bottom:125.960000pt;}
.y9c{bottom:126.080000pt;}
.y12e{bottom:128.672000pt;}
.y5a{bottom:135.866667pt;}
.y43{bottom:136.506667pt;}
.yc9{bottom:140.826667pt;}
.y9b{bottom:141.440000pt;}
.yf6{bottom:143.226667pt;}
.ye0{bottom:148.666667pt;}
.y67{bottom:149.306667pt;}
.y13e{bottom:150.906667pt;}
.y14f{bottom:151.866667pt;}
.y11d{bottom:156.506667pt;}
.yd9{bottom:160.666667pt;}
.yab{bottom:160.826667pt;}
.y12d{bottom:165.466667pt;}
.y59{bottom:172.666667pt;}
.y42{bottom:173.306667pt;}
.y151{bottom:175.866667pt;}
.yc8{bottom:177.626667pt;}
.yaa{bottom:183.226667pt;}
.ydf{bottom:185.466667pt;}
.y66{bottom:186.106667pt;}
.y13d{bottom:187.706667pt;}
.y14e{bottom:188.666667pt;}
.y11c{bottom:193.306667pt;}
.yd8{bottom:197.466667pt;}
.y10b{bottom:197.626667pt;}
.y78{bottom:199.546667pt;}
.y95{bottom:200.666667pt;}
.y12c{bottom:202.266667pt;}
.y58{bottom:209.466667pt;}
.y41{bottom:210.106667pt;}
.y14a{bottom:212.666667pt;}
.yc7{bottom:214.426667pt;}
.yf5{bottom:218.586667pt;}
.y15e{bottom:220.666667pt;}
.yde{bottom:222.266667pt;}
.y65{bottom:222.906667pt;}
.y11b{bottom:230.106667pt;}
.yd7{bottom:234.266667pt;}
.y10a{bottom:234.426667pt;}
.y18{bottom:235.066667pt;}
.y12b{bottom:245.946667pt;}
.y57{bottom:246.266667pt;}
.y40{bottom:246.906667pt;}
.yf4{bottom:248.506667pt;}
.y149{bottom:249.466667pt;}
.yc6{bottom:251.226667pt;}
.y15d{bottom:257.466667pt;}
.ydd{bottom:259.066667pt;}
.y64{bottom:259.706667pt;}
.y11a{bottom:266.906667pt;}
.y109{bottom:271.226667pt;}
.yd6{bottom:274.266667pt;}
.y91{bottom:275.226667pt;}
.yf1{bottom:278.586667pt;}
.y56{bottom:283.106667pt;}
.y3f{bottom:283.746667pt;}
.y13c{bottom:285.346667pt;}
.y12a{bottom:285.826667pt;}
.y14d{bottom:286.306667pt;}
.yc5{bottom:288.066667pt;}
.ya9{bottom:288.546667pt;}
.ydc{bottom:295.906667pt;}
.y63{bottom:296.546667pt;}
.y119{bottom:303.746667pt;}
.y108{bottom:308.066667pt;}
.y129{bottom:308.226667pt;}
.y148{bottom:310.306667pt;}
.y17{bottom:314.306667pt;}
.y15c{bottom:318.306667pt;}
.y55{bottom:319.906667pt;}
.y3e{bottom:320.546667pt;}
.y13b{bottom:322.146667pt;}
.yd5{bottom:323.426667pt;}
.yf0{bottom:323.906667pt;}
.yc4{bottom:328.226667pt;}
.y16{bottom:332.706667pt;}
.y62{bottom:333.346667pt;}
.y70{bottom:335.586667pt;}
.y118{bottom:340.546667pt;}
.y107{bottom:344.866667pt;}
.y128{bottom:345.506667pt;}
.y147{bottom:347.106667pt;}
.y15{bottom:350.786667pt;}
.yc3{bottom:352.066667pt;}
.yef{bottom:353.986667pt;}
.y15b{bottom:355.106667pt;}
.y54{bottom:356.706667pt;}
.y3d{bottom:357.346667pt;}
.ya8{bottom:363.266667pt;}
.ydb{bottom:369.506667pt;}
.y61{bottom:370.146667pt;}
.y2d{bottom:371.266667pt;}
.yc2{bottom:374.466667pt;}
.y117{bottom:377.346667pt;}
.yd4{bottom:378.946667pt;}
.y90{bottom:380.546667pt;}
.y106{bottom:381.666667pt;}
.y13a{bottom:382.946667pt;}
.yee{bottom:383.906667pt;}
.y14{bottom:387.906667pt;}
.y53{bottom:393.506667pt;}
.y3c{bottom:394.146667pt;}
.yc1{bottom:404.386667pt;}
.y13{bottom:406.306667pt;}
.yae{bottom:406.946667pt;}
.y146{bottom:407.906667pt;}
.y127{bottom:409.026667pt;}
.yd3{bottom:410.946667pt;}
.y60{bottom:413.666667pt;}
.y15a{bottom:415.906667pt;}
.y105{bottom:418.466667pt;}
.y139{bottom:419.746667pt;}
.y116{bottom:420.866667pt;}
.y12{bottom:424.386667pt;}
.yd2{bottom:427.746667pt;}
.y2c{bottom:428.226667pt;}
.yed{bottom:429.346667pt;}
.y52{bottom:430.306667pt;}
.y3b{bottom:430.946667pt;}
.yc0{bottom:434.466667pt;}
.y126{bottom:440.706667pt;}
.yda{bottom:443.106667pt;}
.y145{bottom:444.706667pt;}
.y159{bottom:452.706667pt;}
.y104{bottom:455.266667pt;}
.y2b{bottom:455.746667pt;}
.y6a{bottom:456.226667pt;}
.y11{bottom:461.506667pt;}
.ybf{bottom:464.386667pt;}
.y51{bottom:467.106667pt;}
.y3a{bottom:467.746667pt;}
.y115{bottom:469.986667pt;}
.y8c{bottom:470.626667pt;}
.y124{bottom:472.546667pt;}
.yec{bottom:474.626667pt;}
.y10{bottom:479.906667pt;}
.y138{bottom:480.546667pt;}
.y144{bottom:481.506667pt;}
.ya5{bottom:483.906667pt;}
.yd1{bottom:490.306667pt;}
.y103{bottom:492.066667pt;}
.ybe{bottom:494.466667pt;}
.yf{bottom:497.986667pt;}
.y50{bottom:503.906667pt;}
.y122{bottom:504.226667pt;}
.y39{bottom:504.546667pt;}
.y150{bottom:505.533333pt;}
.yd0{bottom:506.973333pt;}
.y2a{bottom:507.453333pt;}
.y114{bottom:509.853333pt;}
.y158{bottom:513.533333pt;}
.y5f{bottom:516.733333pt;}
.y137{bottom:517.373333pt;}
.y14c{bottom:518.333333pt;}
.yeb{bottom:519.933333pt;}
.ycc{bottom:523.773333pt;}
.ybd{bottom:524.413333pt;}
.y102{bottom:528.893333pt;}
.y69{bottom:529.213333pt;}
.y113{bottom:532.253333pt;}
.y29{bottom:534.973333pt;}
.ye{bottom:535.133333pt;}
.y120{bottom:535.933333pt;}
.y4f{bottom:540.733333pt;}
.y38{bottom:541.373333pt;}
.y143{bottom:542.333333pt;}
.yea{bottom:550.013333pt;}
.y157{bottom:550.333333pt;}
.yd{bottom:553.533333pt;}
.y136{bottom:554.173333pt;}
.ybc{bottom:554.493333pt;}
.y112{bottom:561.853333pt;}
.y28{bottom:562.653333pt;}
.y101{bottom:565.693333pt;}
.y11f{bottom:566.013333pt;}
.yc{bottom:571.613333pt;}
.y8b{bottom:575.933333pt;}
.y4e{bottom:577.533333pt;}
.yad{bottom:578.173333pt;}
.y142{bottom:579.133333pt;}
.ye9{bottom:579.933333pt;}
.ybb{bottom:584.413333pt;}
.y156{bottom:587.133333pt;}
.ya0{bottom:589.373333pt;}
.ycb{bottom:590.013333pt;}
.y27{bottom:590.173333pt;}
.y5e{bottom:590.333333pt;}
.y111{bottom:591.613333pt;}
.y37{bottom:602.173333pt;}
.y100{bottom:602.493333pt;}
.yb{bottom:608.733333pt;}
.ye8{bottom:610.013333pt;}
.y4d{bottom:614.333333pt;}
.yba{bottom:614.493333pt;}
.yac{bottom:614.813333pt;}
.y14b{bottom:615.933333pt;}
.y26{bottom:617.853333pt;}
.y110{bottom:621.213333pt;}
.ya{bottom:627.133333pt;}
.y36{bottom:638.813333pt;}
.ye7{bottom:639.933333pt;}
.yb9{bottom:644.413333pt;}
.y9{bottom:645.213333pt;}
.y25{bottom:645.373333pt;}
.y155{bottom:647.933333pt;}
.y10f{bottom:650.813333pt;}
.y4c{bottom:651.133333pt;}
.y134{bottom:651.613333pt;}
.yff{bottom:663.293333pt;}
.y5d{bottom:663.933333pt;}
.y85{bottom:666.013333pt;}
.y24{bottom:673.053333pt;}
.yb8{bottom:674.493333pt;}
.y35{bottom:675.613333pt;}
.y141{bottom:676.733333pt;}
.y10e{bottom:680.573333pt;}
.y8{bottom:682.333333pt;}
.y154{bottom:684.733333pt;}
.ye6{bottom:685.213333pt;}
.y4b{bottom:687.933333pt;}
.y133{bottom:688.413333pt;}
.yfe{bottom:700.093333pt;}
.y23{bottom:700.573333pt;}
.y7{bottom:700.733333pt;}
.yb7{bottom:704.413333pt;}
.y10d{bottom:710.173333pt;}
.y34{bottom:712.413333pt;}
.y140{bottom:713.533333pt;}
.ye5{bottom:715.293333pt;}
.y6{bottom:719.133333pt;}
.y153{bottom:721.533333pt;}
.y4a{bottom:724.733333pt;}
.y132{bottom:725.213333pt;}
.y22{bottom:728.293333pt;}
.y135{bottom:732.133333pt;}
.yfd{bottom:736.933333pt;}
.y10c{bottom:737.253333pt;}
.y5{bottom:737.573333pt;}
.y9a{bottom:740.613333pt;}
.ye4{bottom:745.253333pt;}
.y33{bottom:749.253333pt;}
.yb6{bottom:749.893333pt;}
.y152{bottom:750.373333pt;}
.y21{bottom:755.813333pt;}
.y4{bottom:755.973333pt;}
.y49{bottom:761.573333pt;}
.y131{bottom:762.053333pt;}
.yfc{bottom:773.733333pt;}
.y5c{bottom:774.373333pt;}
.ye3{bottom:775.333333pt;}
.yb5{bottom:779.813333pt;}
.y20{bottom:783.493333pt;}
.y32{bottom:786.053333pt;}
.y48{bottom:798.373333pt;}
.ye2{bottom:805.253333pt;}
.y130{bottom:805.733333pt;}
.yb4{bottom:809.893333pt;}
.yfb{bottom:810.533333pt;}
.y1f{bottom:811.013333pt;}
.y5b{bottom:811.173333pt;}
.y81{bottom:817.253333pt;}
.y31{bottom:822.853333pt;}
.y99{bottom:832.613333pt;}
.y47{bottom:835.173333pt;}
.y1e{bottom:838.693333pt;}
.y3{bottom:839.653333pt;}
.yb3{bottom:839.813333pt;}
.ye1{bottom:847.653333pt;}
.y13f{bottom:847.973333pt;}
.yfa{bottom:850.533333pt;}
.y30{bottom:859.653333pt;}
.y1d{bottom:866.213333pt;}
.yb2{bottom:869.893333pt;}
.y46{bottom:871.973333pt;}
.y2{bottom:882.693333pt;}
.y1c{bottom:893.893333pt;}
.y2f{bottom:896.453333pt;}
.yb1{bottom:899.813333pt;}
.y80{bottom:907.333333pt;}
.y45{bottom:908.773333pt;}
.yf9{bottom:914.213333pt;}
.y1{bottom:925.573333pt;}
.yb0{bottom:926.853333pt;}
.yf8{bottom:936.613333pt;}
.y2e{bottom:940.133333pt;}
.y1b{bottom:945.093333pt;}
.yaf{bottom:945.253333pt;}
.y44{bottom:945.573333pt;}
.y1a{bottom:1006.140000pt;}
.y19{bottom:1025.340000pt;}
.h1c{height:15.200000pt;}
.h17{height:15.360000pt;}
.h19{height:15.392000pt;}
.h1f{height:18.400000pt;}
.h20{height:18.432000pt;}
.h21{height:24.000000pt;}
.h1e{height:30.560000pt;}
.h1d{height:30.592000pt;}
.h1b{height:30.720000pt;}
.h18{height:30.752000pt;}
.h11{height:38.413438pt;}
.h4{height:45.568000pt;}
.hc{height:45.952000pt;}
.h22{height:46.281250pt;}
.h9{height:52.134375pt;}
.h7{height:53.535000pt;}
.h10{height:61.280000pt;}
.h6{height:61.312000pt;}
.h12{height:61.440000pt;}
.h3{height:62.812500pt;}
.h2{height:64.500000pt;}
.h1a{height:75.465000pt;}
.he{height:76.640000pt;}
.hb{height:76.800000pt;}
.h14{height:78.720000pt;}
.h5{height:85.785000pt;}
.h16{height:92.000000pt;}
.hf{height:92.032000pt;}
.h8{height:107.360000pt;}
.ha{height:122.592000pt;}
.h15{height:137.920000pt;}
.hd{height:137.946667pt;}
.h1{height:146.353125pt;}
.h13{height:153.440000pt;}
.h0{height:1056.000000pt;}
.w19{width:39.360000pt;}
.w1a{width:39.520000pt;}
.w1b{width:39.552000pt;}
.w18{width:41.952000pt;}
.w1c{width:42.272000pt;}
.w21{width:46.080000pt;}
.wa{width:48.480000pt;}
.w7{width:48.640000pt;}
.w8{width:53.440000pt;}
.wb{width:53.600000pt;}
.wc{width:55.360000pt;}
.wd{width:55.520000pt;}
.we{width:55.552000pt;}
.wf{width:55.680000pt;}
.w10{width:55.712000pt;}
.w1e{width:69.952000pt;}
.w1f{width:71.840000pt;}
.w20{width:78.112000pt;}
.w14{width:87.392000pt;}
.w13{width:94.400000pt;}
.w2{width:99.680000pt;}
.w16{width:102.720000pt;}
.w12{width:105.952000pt;}
.w3{width:106.752000pt;}
.w15{width:110.432000pt;}
.w11{width:129.120000pt;}
.w17{width:146.720000pt;}
.w5{width:193.466667pt;}
.w6{width:196.026667pt;}
.w4{width:227.386667pt;}
.w9{width:229.346667pt;}
.w1d{width:293.466667pt;}
.w22{width:562.173333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xe{left:1.280000pt;}
.x23{left:4.640000pt;}
.xd{left:5.920000pt;}
.xa{left:7.680000pt;}
.x9{left:16.480000pt;}
.x3{left:18.240000pt;}
.x5{left:24.320000pt;}
.xc{left:44.000000pt;}
.xb{left:45.440000pt;}
.x7{left:80.640000pt;}
.x2{left:90.112000pt;}
.x22{left:91.392000pt;}
.x1{left:96.032000pt;}
.x14{left:152.506667pt;}
.x4{left:191.226667pt;}
.x15{left:209.466667pt;}
.x1e{left:219.866667pt;}
.x24{left:239.546667pt;}
.x16{left:266.306667pt;}
.x25{left:282.786667pt;}
.xf{left:287.426667pt;}
.x6{left:299.266667pt;}
.x17{left:323.106667pt;}
.x1f{left:327.266667pt;}
.x10{left:337.346667pt;}
.x26{left:363.906667pt;}
.x18{left:380.066667pt;}
.x2b{left:385.666667pt;}
.x11{left:392.066667pt;}
.x27{left:404.546667pt;}
.x20{left:423.106667pt;}
.x19{left:436.893333pt;}
.x28{left:445.373333pt;}
.x2c{left:456.253333pt;}
.x29{left:486.013333pt;}
.x1a{left:493.853333pt;}
.x21{left:511.773333pt;}
.x8{left:527.293333pt;}
.x2d{left:528.733333pt;}
.x1b{left:550.653333pt;}
.x2a{left:567.293333pt;}
.x1c{left:607.653333pt;}
.x12{left:622.853333pt;}
.x1d{left:664.613333pt;}
.x13{left:672.613333pt;}
}




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