
    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_7e27675718f86b0df3f0e73b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.766602;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_2f3fa7b589abdf1d8ee4bedb.woff')format("woff");}.ff2{font-family:ff2;line-height:0.977539;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_fc4af3ac8e5fbf3e3b268ba0.woff')format("woff");}.ff3{font-family:ff3;line-height:0.800293;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_99628b0e5eab96f215f2342b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.130371;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_8925971ff037eb36d15ae62f.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2685cd6a0b1763a0abc8ed51.woff')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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_fb2d201c2e7e43a5683ec445.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_050a2c629e28fb59804601aa.woff')format("woff");}.ff9{font-family:ff9;line-height:0.920410;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_102b10feee435c3c7d990f71.woff')format("woff");}.ffa{font-family:ffa;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_558c905f7a8be2df282e4fd5.woff')format("woff");}.ffc{font-family:ffc;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ffd{font-family:ffd;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls8{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.223800px;}
.lsc{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.144000px;}
.ls2{letter-spacing:-0.058320px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls4{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.720000px;}
.ls6{letter-spacing:46.224000px;}
.ls5{letter-spacing:65.664000px;}
.lsb{letter-spacing:69.984000px;}
.ls3{letter-spacing:85.824000px;}
.ls9{letter-spacing:184.500000px;}
.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;}
}
.ws3{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.856000px;}
.ws6{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.ws0{word-spacing:-13.447440px;}
.ws7{word-spacing:-11.836200px;}
.ws2{word-spacing:0.000000px;}
._1c{margin-left:-4.968000px;}
._d{margin-left:-3.744000px;}
._8{margin-left:-2.328578px;}
._0{margin-left:-1.243142px;}
._1{width:1.238842px;}
._4{width:2.331475px;}
._12{width:3.716525px;}
._a{width:4.824000px;}
._b{width:6.018317px;}
._3{width:7.992000px;}
._5{width:9.360000px;}
._c{width:10.584000px;}
._11{width:11.673426px;}
._e{width:12.756000px;}
._6{width:13.824000px;}
._7{width:14.832000px;}
._9{width:15.840000px;}
._18{width:16.977158px;}
._f{width:19.440000px;}
._10{width:20.664000px;}
._13{width:22.320000px;}
._19{width:23.328000px;}
._16{width:24.840000px;}
._17{width:25.905158px;}
._1f{width:27.523142px;}
._1b{width:28.800000px;}
._14{width:29.880000px;}
._15{width:31.104000px;}
._1a{width:36.576000px;}
._1d{width:41.832000px;}
._1e{width:42.840000px;}
._21{width:78.408000px;}
._20{width:140.644301px;}
._2{width:146.082865px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(91,155,213);}
.fc1{color:rgb(0,176,240);}
.fc4{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:56.920429px;}
.fs3{font-size:59.760000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:88.795869px;}
.y0{bottom:0.000000px;}
.yb9{bottom:3.954000px;}
.y57{bottom:3.960000px;}
.y5b{bottom:3.990000px;}
.y91{bottom:4.005000px;}
.y9c{bottom:18.540000px;}
.y70{bottom:24.480000px;}
.y65{bottom:24.660000px;}
.ya0{bottom:28.080000px;}
.yae{bottom:36.720000px;}
.y9e{bottom:42.660000px;}
.y6f{bottom:45.180000px;}
.y6b{bottom:45.354000px;}
.y68{bottom:45.360000px;}
.y6d{bottom:45.390000px;}
.y64{bottom:45.405000px;}
.y9f{bottom:48.780000px;}
.yad{bottom:57.420000px;}
.y9d{bottom:63.360000px;}
.y63{bottom:66.105000px;}
.y4{bottom:68.580000px;}
.y9a{bottom:84.090000px;}
.yac{bottom:90.180000px;}
.yba{bottom:114.156000px;}
.y6a{bottom:114.516000px;}
.y53{bottom:118.656000px;}
.yab{bottom:122.790000px;}
.y11e{bottom:124.056000px;}
.y87{bottom:127.836000px;}
.yd6{bottom:132.696000px;}
.y32{bottom:136.296000px;}
.yb8{bottom:146.916000px;}
.y52{bottom:149.616000px;}
.y11d{bottom:155.010000px;}
.yaa{bottom:155.550000px;}
.yf2{bottom:156.630000px;}
.y108{bottom:160.050000px;}
.y86{bottom:160.590000px;}
.yd5{bottom:163.830000px;}
.y31{bottom:167.250000px;}
.y69{bottom:176.610000px;}
.yb7{bottom:179.490000px;}
.y51{bottom:180.750000px;}
.y11c{bottom:186.150000px;}
.yf1{bottom:187.770000px;}
.ya9{bottom:188.130000px;}
.y107{bottom:191.010000px;}
.y85{bottom:193.170000px;}
.yd4{bottom:194.790000px;}
.y30{bottom:198.210000px;}
.y50{bottom:211.710000px;}
.yb6{bottom:212.250000px;}
.y11b{bottom:217.110000px;}
.yf0{bottom:218.730000px;}
.y106{bottom:222.150000px;}
.y84{bottom:225.930000px;}
.y2f{bottom:229.350000px;}
.y67{bottom:238.710000px;}
.y4f{bottom:242.850000px;}
.yb5{bottom:245.010000px;}
.y11a{bottom:248.250000px;}
.yef{bottom:249.870000px;}
.y105{bottom:253.110000px;}
.yd3{bottom:256.890000px;}
.y83{bottom:258.690000px;}
.y2e{bottom:260.310000px;}
.y4e{bottom:273.810000px;}
.yb4{bottom:279.210000px;}
.yee{bottom:280.830000px;}
.y104{bottom:284.250000px;}
.yd2{bottom:287.850000px;}
.y2d{bottom:291.450000px;}
.y82{bottom:292.890000px;}
.y62{bottom:300.810000px;}
.y4d{bottom:304.950000px;}
.y119{bottom:310.350000px;}
.yed{bottom:311.970000px;}
.y103{bottom:315.210000px;}
.yd1{bottom:318.990000px;}
.y2c{bottom:322.410000px;}
.yb3{bottom:327.630000px;}
.y4c{bottom:335.910000px;}
.y81{bottom:341.355000px;}
.y66{bottom:342.255000px;}
.yec{bottom:342.975000px;}
.y102{bottom:346.395000px;}
.yd0{bottom:349.995000px;}
.y2b{bottom:353.595000px;}
.y4b{bottom:367.095000px;}
.yb2{bottom:370.695000px;}
.y118{bottom:372.315000px;}
.yeb{bottom:374.115000px;}
.y2a{bottom:374.295000px;}
.y101{bottom:377.355000px;}
.ycf{bottom:381.135000px;}
.y80{bottom:384.375000px;}
.y29{bottom:394.995000px;}
.y4a{bottom:398.055000px;}
.y61{bottom:399.315000px;}
.yb1{bottom:401.835000px;}
.yea{bottom:405.075000px;}
.y100{bottom:408.495000px;}
.y7f{bottom:415.515000px;}
.y28{bottom:415.695000px;}
.yce{bottom:424.155000px;}
.y49{bottom:429.195000px;}
.yb0{bottom:432.795000px;}
.ye9{bottom:436.215000px;}
.y27{bottom:436.395000px;}
.yff{bottom:439.455000px;}
.y60{bottom:442.515000px;}
.y7e{bottom:446.475000px;}
.ycd{bottom:455.295000px;}
.y26{bottom:457.095000px;}
.y48{bottom:460.155000px;}
.yaf{bottom:463.935000px;}
.ye8{bottom:467.175000px;}
.yfe{bottom:470.595000px;}
.y5f{bottom:473.475000px;}
.y117{bottom:477.615000px;}
.y25{bottom:477.795000px;}
.ya8{bottom:482.115000px;}
.ycc{bottom:486.255000px;}
.y7d{bottom:489.495000px;}
.y47{bottom:491.295000px;}
.ye7{bottom:498.315000px;}
.y24{bottom:498.495000px;}
.yfd{bottom:501.555000px;}
.y5e{bottom:504.435000px;}
.y116{bottom:508.575000px;}
.ycb{bottom:517.395000px;}
.y23{bottom:519.195000px;}
.y7c{bottom:519.735000px;}
.y46{bottom:522.255000px;}
.ye6{bottom:529.275000px;}
.yfc{bottom:532.695000px;}
.y5d{bottom:534.855000px;}
.y115{bottom:539.715000px;}
.y22{bottom:539.895000px;}
.yca{bottom:548.355000px;}
.y7b{bottom:552.495000px;}
.y45{bottom:553.395000px;}
.ye5{bottom:560.415000px;}
.y21{bottom:560.595000px;}
.yfb{bottom:563.655000px;}
.y5c{bottom:567.435000px;}
.y114{bottom:570.675000px;}
.yc9{bottom:579.495000px;}
.y20{bottom:581.295000px;}
.y44{bottom:584.355000px;}
.y7a{bottom:585.255000px;}
.ye4{bottom:591.375000px;}
.yfa{bottom:594.795000px;}
.y5a{bottom:600.195000px;}
.y113{bottom:601.815000px;}
.y1f{bottom:601.995000px;}
.y9b{bottom:605.445000px;}
.yc8{bottom:610.485000px;}
.y43{bottom:615.525000px;}
.y79{bottom:617.865000px;}
.ye3{bottom:622.545000px;}
.y1e{bottom:622.725000px;}
.yf9{bottom:625.785000px;}
.y112{bottom:632.805000px;}
.y59{bottom:632.985000px;}
.yc7{bottom:641.625000px;}
.y1d{bottom:643.425000px;}
.y42{bottom:646.485000px;}
.y78{bottom:652.065000px;}
.ye2{bottom:653.505000px;}
.y99{bottom:656.385000px;}
.yf8{bottom:656.925000px;}
.y111{bottom:663.945000px;}
.y1c{bottom:664.125000px;}
.y58{bottom:665.565000px;}
.yc6{bottom:672.585000px;}
.y41{bottom:677.625000px;}
.ye1{bottom:684.645000px;}
.y1b{bottom:684.825000px;}
.yf7{bottom:687.885000px;}
.y98{bottom:689.145000px;}
.y110{bottom:694.905000px;}
.y120{bottom:698.325000px;}
.ya7{bottom:699.045000px;}
.y56{bottom:699.765000px;}
.y77{bottom:700.485000px;}
.y1a{bottom:705.525000px;}
.y40{bottom:708.585000px;}
.y97{bottom:709.845000px;}
.ye0{bottom:715.605000px;}
.yf6{bottom:718.845000px;}
.yc5{bottom:721.545000px;}
.y10f{bottom:726.045000px;}
.y19{bottom:726.225000px;}
.y96{bottom:730.545000px;}
.ya6{bottom:731.805000px;}
.y55{bottom:737.925000px;}
.y3f{bottom:739.545000px;}
.y76{bottom:743.685000px;}
.ydf{bottom:746.745000px;}
.y18{bottom:746.925000px;}
.yf5{bottom:749.985000px;}
.y95{bottom:751.245000px;}
.yc4{bottom:752.685000px;}
.y10e{bottom:757.005000px;}
.y54{bottom:758.625000px;}
.y11f{bottom:760.245000px;}
.ya5{bottom:764.385000px;}
.y17{bottom:767.625000px;}
.y3e{bottom:770.685000px;}
.yde{bottom:777.705000px;}
.yf4{bottom:780.945000px;}
.yc3{bottom:783.645000px;}
.y94{bottom:784.005000px;}
.y75{bottom:786.705000px;}
.y16{bottom:788.325000px;}
.ya4{bottom:798.585000px;}
.y10d{bottom:800.025000px;}
.y3d{bottom:801.645000px;}
.y93{bottom:802.185000px;}
.y15{bottom:809.025000px;}
.yf3{bottom:812.085000px;}
.yc2{bottom:814.785000px;}
.y74{bottom:817.845000px;}
.ydd{bottom:820.725000px;}
.y14{bottom:829.725000px;}
.y10c{bottom:831.165000px;}
.y3c{bottom:832.785000px;}
.y92{bottom:834.945000px;}
.yc1{bottom:845.745000px;}
.y73{bottom:848.805000px;}
.y13{bottom:850.425000px;}
.ydc{bottom:851.865000px;}
.y10b{bottom:862.125000px;}
.y3b{bottom:863.745000px;}
.y90{bottom:867.705000px;}
.ya3{bottom:867.885000px;}
.y12{bottom:871.170000px;}
.yc0{bottom:876.930000px;}
.ydb{bottom:882.870000px;}
.y11{bottom:891.870000px;}
.y3a{bottom:894.930000px;}
.y8f{bottom:900.330000px;}
.y10a{bottom:905.190000px;}
.ybf{bottom:907.890000px;}
.y72{bottom:910.230000px;}
.ya2{bottom:910.950000px;}
.y10{bottom:912.570000px;}
.yda{bottom:914.010000px;}
.y39{bottom:925.890000px;}
.y8e{bottom:933.090000px;}
.yf{bottom:933.270000px;}
.y109{bottom:936.330000px;}
.ybe{bottom:939.030000px;}
.ya1{bottom:941.910000px;}
.yd9{bottom:944.970000px;}
.ye{bottom:953.970000px;}
.y38{bottom:957.030000px;}
.y8d{bottom:967.290000px;}
.ybd{bottom:969.990000px;}
.y71{bottom:972.330000px;}
.yd{bottom:974.670000px;}
.yd8{bottom:976.110000px;}
.y37{bottom:987.990000px;}
.yc{bottom:995.370000px;}
.ybc{bottom:1001.130000px;}
.yd7{bottom:1007.070000px;}
.y8c{bottom:1015.710000px;}
.yb{bottom:1016.070000px;}
.y36{bottom:1019.130000px;}
.ybb{bottom:1032.090000px;}
.y6e{bottom:1034.430000px;}
.ya{bottom:1036.770000px;}
.y8b{bottom:1048.470000px;}
.y35{bottom:1050.090000px;}
.y9{bottom:1057.470000px;}
.y8a{bottom:1069.170000px;}
.y8{bottom:1078.170000px;}
.y34{bottom:1081.230000px;}
.y89{bottom:1089.870000px;}
.y6c{bottom:1096.350000px;}
.y7{bottom:1101.930000px;}
.y88{bottom:1110.570000px;}
.y33{bottom:1112.190000px;}
.y6{bottom:1122.630000px;}
.y5{bottom:1143.360000px;}
.y3{bottom:1162.800000px;}
.y2{bottom:1180.260000px;}
.y1{bottom:1217.520000px;}
.ha{height:32.580000px;}
.h13{height:32.616000px;}
.h9{height:32.760000px;}
.hb{height:32.796000px;}
.h15{height:35.280000px;}
.h2{height:40.790039px;}
.hd{height:41.400000px;}
.he{height:41.436000px;}
.h4{height:45.386260px;}
.h7{height:50.273438px;}
.h6{height:50.800781px;}
.h8{height:52.417969px;}
.h17{height:53.460000px;}
.h5{height:56.900391px;}
.h12{height:59.343750px;}
.h19{height:61.043203px;}
.h11{height:61.920000px;}
.hf{height:62.100000px;}
.h10{height:62.136000px;}
.h16{height:65.556000px;}
.h3{height:70.802565px;}
.hc{height:82.836000px;}
.h14{height:100.836000px;}
.h18{height:216.930000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:44.280000px;}
.we{width:47.340000px;}
.wd{width:54.000000px;}
.w1d{width:59.580000px;}
.w20{width:60.660000px;}
.wa{width:60.696000px;}
.w1f{width:60.840000px;}
.w1c{width:60.876000px;}
.w1e{width:61.416000px;}
.wc{width:67.536000px;}
.w3{width:83.160000px;}
.w21{width:83.340000px;}
.w16{width:84.600000px;}
.w12{width:92.700000px;}
.wb{width:94.500000px;}
.w5{width:108.036000px;}
.w10{width:111.240000px;}
.w14{width:118.656000px;}
.w18{width:127.296000px;}
.w15{width:131.076000px;}
.w23{width:155.730000px;}
.w11{width:169.050000px;}
.w4{width:171.570000px;}
.w6{width:175.530000px;}
.w24{width:188.130000px;}
.w13{width:190.830000px;}
.w19{width:193.170000px;}
.w1a{width:212.790000px;}
.w9{width:222.870000px;}
.wf{width:233.535000px;}
.w1b{width:242.490000px;}
.w22{width:244.290000px;}
.w8{width:246.630000px;}
.w17{width:266.610000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:38.160000px;}
.x1{left:108.035987px;}
.x28{left:109.296000px;}
.x6{left:110.915987px;}
.x18{left:115.416000px;}
.x9{left:125.315987px;}
.xb{left:132.155987px;}
.xf{left:135.035987px;}
.x11{left:138.095987px;}
.x2{left:142.775987px;}
.xe{left:144.035987px;}
.x12{left:149.975987px;}
.x29{left:153.570000px;}
.x21{left:156.630000px;}
.x19{left:159.690000px;}
.x13{left:160.950000px;}
.xc{left:165.089987px;}
.x33{left:167.969987px;}
.x3{left:169.409987px;}
.x10{left:174.089987px;}
.x38{left:175.529987px;}
.x37{left:189.029987px;}
.x30{left:191.370000px;}
.x25{left:192.630000px;}
.x35{left:198.029987px;}
.x34{left:203.969987px;}
.xa{left:210.269987px;}
.x36{left:234.029987px;}
.x15{left:244.110000px;}
.x22{left:249.330000px;}
.x4{left:305.714987px;}
.xd{left:363.494987px;}
.x2a{left:366.375000px;}
.x1a{left:406.335000px;}
.x16{left:415.695000px;}
.x2d{left:425.955000px;}
.x7{left:428.474987px;}
.x31{left:435.675000px;}
.x23{left:440.175000px;}
.x8{left:446.474987px;}
.x26{left:459.255000px;}
.x5{left:473.504987px;}
.x1f{left:477.645000px;}
.x2e{left:487.365000px;}
.x17{left:523.725000px;}
.x1d{left:527.865000px;}
.x2f{left:548.205000px;}
.x24{left:558.825000px;}
.x1e{left:575.205000px;}
.x27{left:586.365000px;}
.x20{left:588.885000px;}
.x32{left:591.405000px;}
.x2b{left:608.865000px;}
.x1b{left:629.205000px;}
.x2c{left:669.750000px;}
.x1c{left:689.910000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls8{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.198933pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:-0.051840pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls4{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls6{letter-spacing:41.088000pt;}
.ls5{letter-spacing:58.368000pt;}
.lsb{letter-spacing:62.208000pt;}
.ls3{letter-spacing:76.288000pt;}
.ls9{letter-spacing:164.000000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.872000pt;}
.ws6{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws0{word-spacing:-11.953280pt;}
.ws7{word-spacing:-10.521067pt;}
.ws2{word-spacing:0.000000pt;}
._1c{margin-left:-4.416000pt;}
._d{margin-left:-3.328000pt;}
._8{margin-left:-2.069847pt;}
._0{margin-left:-1.105015pt;}
._1{width:1.101192pt;}
._4{width:2.072423pt;}
._12{width:3.303577pt;}
._a{width:4.288000pt;}
._b{width:5.349615pt;}
._3{width:7.104000pt;}
._5{width:8.320000pt;}
._c{width:9.408000pt;}
._11{width:10.376379pt;}
._e{width:11.338667pt;}
._6{width:12.288000pt;}
._7{width:13.184000pt;}
._9{width:14.080000pt;}
._18{width:15.090808pt;}
._f{width:17.280000pt;}
._10{width:18.368000pt;}
._13{width:19.840000pt;}
._19{width:20.736000pt;}
._16{width:22.080000pt;}
._17{width:23.026808pt;}
._1f{width:24.465015pt;}
._1b{width:25.600000pt;}
._14{width:26.560000pt;}
._15{width:27.648000pt;}
._1a{width:32.512000pt;}
._1d{width:37.184000pt;}
._1e{width:38.080000pt;}
._21{width:69.696000pt;}
._20{width:125.017156pt;}
._2{width:129.851436pt;}
.fs5{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:50.595937pt;}
.fs3{font-size:53.120000pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:78.929661pt;}
.y0{bottom:0.000000pt;}
.yb9{bottom:3.514667pt;}
.y57{bottom:3.520000pt;}
.y5b{bottom:3.546667pt;}
.y91{bottom:3.560000pt;}
.y9c{bottom:16.480000pt;}
.y70{bottom:21.760000pt;}
.y65{bottom:21.920000pt;}
.ya0{bottom:24.960000pt;}
.yae{bottom:32.640000pt;}
.y9e{bottom:37.920000pt;}
.y6f{bottom:40.160000pt;}
.y6b{bottom:40.314667pt;}
.y68{bottom:40.320000pt;}
.y6d{bottom:40.346667pt;}
.y64{bottom:40.360000pt;}
.y9f{bottom:43.360000pt;}
.yad{bottom:51.040000pt;}
.y9d{bottom:56.320000pt;}
.y63{bottom:58.760000pt;}
.y4{bottom:60.960000pt;}
.y9a{bottom:74.746667pt;}
.yac{bottom:80.160000pt;}
.yba{bottom:101.472000pt;}
.y6a{bottom:101.792000pt;}
.y53{bottom:105.472000pt;}
.yab{bottom:109.146667pt;}
.y11e{bottom:110.272000pt;}
.y87{bottom:113.632000pt;}
.yd6{bottom:117.952000pt;}
.y32{bottom:121.152000pt;}
.yb8{bottom:130.592000pt;}
.y52{bottom:132.992000pt;}
.y11d{bottom:137.786667pt;}
.yaa{bottom:138.266667pt;}
.yf2{bottom:139.226667pt;}
.y108{bottom:142.266667pt;}
.y86{bottom:142.746667pt;}
.yd5{bottom:145.626667pt;}
.y31{bottom:148.666667pt;}
.y69{bottom:156.986667pt;}
.yb7{bottom:159.546667pt;}
.y51{bottom:160.666667pt;}
.y11c{bottom:165.466667pt;}
.yf1{bottom:166.906667pt;}
.ya9{bottom:167.226667pt;}
.y107{bottom:169.786667pt;}
.y85{bottom:171.706667pt;}
.yd4{bottom:173.146667pt;}
.y30{bottom:176.186667pt;}
.y50{bottom:188.186667pt;}
.yb6{bottom:188.666667pt;}
.y11b{bottom:192.986667pt;}
.yf0{bottom:194.426667pt;}
.y106{bottom:197.466667pt;}
.y84{bottom:200.826667pt;}
.y2f{bottom:203.866667pt;}
.y67{bottom:212.186667pt;}
.y4f{bottom:215.866667pt;}
.yb5{bottom:217.786667pt;}
.y11a{bottom:220.666667pt;}
.yef{bottom:222.106667pt;}
.y105{bottom:224.986667pt;}
.yd3{bottom:228.346667pt;}
.y83{bottom:229.946667pt;}
.y2e{bottom:231.386667pt;}
.y4e{bottom:243.386667pt;}
.yb4{bottom:248.186667pt;}
.yee{bottom:249.626667pt;}
.y104{bottom:252.666667pt;}
.yd2{bottom:255.866667pt;}
.y2d{bottom:259.066667pt;}
.y82{bottom:260.346667pt;}
.y62{bottom:267.386667pt;}
.y4d{bottom:271.066667pt;}
.y119{bottom:275.866667pt;}
.yed{bottom:277.306667pt;}
.y103{bottom:280.186667pt;}
.yd1{bottom:283.546667pt;}
.y2c{bottom:286.586667pt;}
.yb3{bottom:291.226667pt;}
.y4c{bottom:298.586667pt;}
.y81{bottom:303.426667pt;}
.y66{bottom:304.226667pt;}
.yec{bottom:304.866667pt;}
.y102{bottom:307.906667pt;}
.yd0{bottom:311.106667pt;}
.y2b{bottom:314.306667pt;}
.y4b{bottom:326.306667pt;}
.yb2{bottom:329.506667pt;}
.y118{bottom:330.946667pt;}
.yeb{bottom:332.546667pt;}
.y2a{bottom:332.706667pt;}
.y101{bottom:335.426667pt;}
.ycf{bottom:338.786667pt;}
.y80{bottom:341.666667pt;}
.y29{bottom:351.106667pt;}
.y4a{bottom:353.826667pt;}
.y61{bottom:354.946667pt;}
.yb1{bottom:357.186667pt;}
.yea{bottom:360.066667pt;}
.y100{bottom:363.106667pt;}
.y7f{bottom:369.346667pt;}
.y28{bottom:369.506667pt;}
.yce{bottom:377.026667pt;}
.y49{bottom:381.506667pt;}
.yb0{bottom:384.706667pt;}
.ye9{bottom:387.746667pt;}
.y27{bottom:387.906667pt;}
.yff{bottom:390.626667pt;}
.y60{bottom:393.346667pt;}
.y7e{bottom:396.866667pt;}
.ycd{bottom:404.706667pt;}
.y26{bottom:406.306667pt;}
.y48{bottom:409.026667pt;}
.yaf{bottom:412.386667pt;}
.ye8{bottom:415.266667pt;}
.yfe{bottom:418.306667pt;}
.y5f{bottom:420.866667pt;}
.y117{bottom:424.546667pt;}
.y25{bottom:424.706667pt;}
.ya8{bottom:428.546667pt;}
.ycc{bottom:432.226667pt;}
.y7d{bottom:435.106667pt;}
.y47{bottom:436.706667pt;}
.ye7{bottom:442.946667pt;}
.y24{bottom:443.106667pt;}
.yfd{bottom:445.826667pt;}
.y5e{bottom:448.386667pt;}
.y116{bottom:452.066667pt;}
.ycb{bottom:459.906667pt;}
.y23{bottom:461.506667pt;}
.y7c{bottom:461.986667pt;}
.y46{bottom:464.226667pt;}
.ye6{bottom:470.466667pt;}
.yfc{bottom:473.506667pt;}
.y5d{bottom:475.426667pt;}
.y115{bottom:479.746667pt;}
.y22{bottom:479.906667pt;}
.yca{bottom:487.426667pt;}
.y7b{bottom:491.106667pt;}
.y45{bottom:491.906667pt;}
.ye5{bottom:498.146667pt;}
.y21{bottom:498.306667pt;}
.yfb{bottom:501.026667pt;}
.y5c{bottom:504.386667pt;}
.y114{bottom:507.266667pt;}
.yc9{bottom:515.106667pt;}
.y20{bottom:516.706667pt;}
.y44{bottom:519.426667pt;}
.y7a{bottom:520.226667pt;}
.ye4{bottom:525.666667pt;}
.yfa{bottom:528.706667pt;}
.y5a{bottom:533.506667pt;}
.y113{bottom:534.946667pt;}
.y1f{bottom:535.106667pt;}
.y9b{bottom:538.173333pt;}
.yc8{bottom:542.653333pt;}
.y43{bottom:547.133333pt;}
.y79{bottom:549.213333pt;}
.ye3{bottom:553.373333pt;}
.y1e{bottom:553.533333pt;}
.yf9{bottom:556.253333pt;}
.y112{bottom:562.493333pt;}
.y59{bottom:562.653333pt;}
.yc7{bottom:570.333333pt;}
.y1d{bottom:571.933333pt;}
.y42{bottom:574.653333pt;}
.y78{bottom:579.613333pt;}
.ye2{bottom:580.893333pt;}
.y99{bottom:583.453333pt;}
.yf8{bottom:583.933333pt;}
.y111{bottom:590.173333pt;}
.y1c{bottom:590.333333pt;}
.y58{bottom:591.613333pt;}
.yc6{bottom:597.853333pt;}
.y41{bottom:602.333333pt;}
.ye1{bottom:608.573333pt;}
.y1b{bottom:608.733333pt;}
.yf7{bottom:611.453333pt;}
.y98{bottom:612.573333pt;}
.y110{bottom:617.693333pt;}
.y120{bottom:620.733333pt;}
.ya7{bottom:621.373333pt;}
.y56{bottom:622.013333pt;}
.y77{bottom:622.653333pt;}
.y1a{bottom:627.133333pt;}
.y40{bottom:629.853333pt;}
.y97{bottom:630.973333pt;}
.ye0{bottom:636.093333pt;}
.yf6{bottom:638.973333pt;}
.yc5{bottom:641.373333pt;}
.y10f{bottom:645.373333pt;}
.y19{bottom:645.533333pt;}
.y96{bottom:649.373333pt;}
.ya6{bottom:650.493333pt;}
.y55{bottom:655.933333pt;}
.y3f{bottom:657.373333pt;}
.y76{bottom:661.053333pt;}
.ydf{bottom:663.773333pt;}
.y18{bottom:663.933333pt;}
.yf5{bottom:666.653333pt;}
.y95{bottom:667.773333pt;}
.yc4{bottom:669.053333pt;}
.y10e{bottom:672.893333pt;}
.y54{bottom:674.333333pt;}
.y11f{bottom:675.773333pt;}
.ya5{bottom:679.453333pt;}
.y17{bottom:682.333333pt;}
.y3e{bottom:685.053333pt;}
.yde{bottom:691.293333pt;}
.yf4{bottom:694.173333pt;}
.yc3{bottom:696.573333pt;}
.y94{bottom:696.893333pt;}
.y75{bottom:699.293333pt;}
.y16{bottom:700.733333pt;}
.ya4{bottom:709.853333pt;}
.y10d{bottom:711.133333pt;}
.y3d{bottom:712.573333pt;}
.y93{bottom:713.053333pt;}
.y15{bottom:719.133333pt;}
.yf3{bottom:721.853333pt;}
.yc2{bottom:724.253333pt;}
.y74{bottom:726.973333pt;}
.ydd{bottom:729.533333pt;}
.y14{bottom:737.533333pt;}
.y10c{bottom:738.813333pt;}
.y3c{bottom:740.253333pt;}
.y92{bottom:742.173333pt;}
.yc1{bottom:751.773333pt;}
.y73{bottom:754.493333pt;}
.y13{bottom:755.933333pt;}
.ydc{bottom:757.213333pt;}
.y10b{bottom:766.333333pt;}
.y3b{bottom:767.773333pt;}
.y90{bottom:771.293333pt;}
.ya3{bottom:771.453333pt;}
.y12{bottom:774.373333pt;}
.yc0{bottom:779.493333pt;}
.ydb{bottom:784.773333pt;}
.y11{bottom:792.773333pt;}
.y3a{bottom:795.493333pt;}
.y8f{bottom:800.293333pt;}
.y10a{bottom:804.613333pt;}
.ybf{bottom:807.013333pt;}
.y72{bottom:809.093333pt;}
.ya2{bottom:809.733333pt;}
.y10{bottom:811.173333pt;}
.yda{bottom:812.453333pt;}
.y39{bottom:823.013333pt;}
.y8e{bottom:829.413333pt;}
.yf{bottom:829.573333pt;}
.y109{bottom:832.293333pt;}
.ybe{bottom:834.693333pt;}
.ya1{bottom:837.253333pt;}
.yd9{bottom:839.973333pt;}
.ye{bottom:847.973333pt;}
.y38{bottom:850.693333pt;}
.y8d{bottom:859.813333pt;}
.ybd{bottom:862.213333pt;}
.y71{bottom:864.293333pt;}
.yd{bottom:866.373333pt;}
.yd8{bottom:867.653333pt;}
.y37{bottom:878.213333pt;}
.yc{bottom:884.773333pt;}
.ybc{bottom:889.893333pt;}
.yd7{bottom:895.173333pt;}
.y8c{bottom:902.853333pt;}
.yb{bottom:903.173333pt;}
.y36{bottom:905.893333pt;}
.ybb{bottom:917.413333pt;}
.y6e{bottom:919.493333pt;}
.ya{bottom:921.573333pt;}
.y8b{bottom:931.973333pt;}
.y35{bottom:933.413333pt;}
.y9{bottom:939.973333pt;}
.y8a{bottom:950.373333pt;}
.y8{bottom:958.373333pt;}
.y34{bottom:961.093333pt;}
.y89{bottom:968.773333pt;}
.y6c{bottom:974.533333pt;}
.y7{bottom:979.493333pt;}
.y88{bottom:987.173333pt;}
.y33{bottom:988.613333pt;}
.y6{bottom:997.893333pt;}
.y5{bottom:1016.320000pt;}
.y3{bottom:1033.600000pt;}
.y2{bottom:1049.120000pt;}
.y1{bottom:1082.240000pt;}
.ha{height:28.960000pt;}
.h13{height:28.992000pt;}
.h9{height:29.120000pt;}
.hb{height:29.152000pt;}
.h15{height:31.360000pt;}
.h2{height:36.257812pt;}
.hd{height:36.800000pt;}
.he{height:36.832000pt;}
.h4{height:40.343342pt;}
.h7{height:44.687500pt;}
.h6{height:45.156250pt;}
.h8{height:46.593750pt;}
.h17{height:47.520000pt;}
.h5{height:50.578125pt;}
.h12{height:52.750000pt;}
.h19{height:54.260625pt;}
.h11{height:55.040000pt;}
.hf{height:55.200000pt;}
.h10{height:55.232000pt;}
.h16{height:58.272000pt;}
.h3{height:62.935614pt;}
.hc{height:73.632000pt;}
.h14{height:89.632000pt;}
.h18{height:192.826667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:39.360000pt;}
.we{width:42.080000pt;}
.wd{width:48.000000pt;}
.w1d{width:52.960000pt;}
.w20{width:53.920000pt;}
.wa{width:53.952000pt;}
.w1f{width:54.080000pt;}
.w1c{width:54.112000pt;}
.w1e{width:54.592000pt;}
.wc{width:60.032000pt;}
.w3{width:73.920000pt;}
.w21{width:74.080000pt;}
.w16{width:75.200000pt;}
.w12{width:82.400000pt;}
.wb{width:84.000000pt;}
.w5{width:96.032000pt;}
.w10{width:98.880000pt;}
.w14{width:105.472000pt;}
.w18{width:113.152000pt;}
.w15{width:116.512000pt;}
.w23{width:138.426667pt;}
.w11{width:150.266667pt;}
.w4{width:152.506667pt;}
.w6{width:156.026667pt;}
.w24{width:167.226667pt;}
.w13{width:169.626667pt;}
.w19{width:171.706667pt;}
.w1a{width:189.146667pt;}
.w9{width:198.106667pt;}
.wf{width:207.586667pt;}
.w1b{width:215.546667pt;}
.w22{width:217.146667pt;}
.w8{width:219.226667pt;}
.w17{width:236.986667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:33.920000pt;}
.x1{left:96.031988pt;}
.x28{left:97.152000pt;}
.x6{left:98.591988pt;}
.x18{left:102.592000pt;}
.x9{left:111.391988pt;}
.xb{left:117.471988pt;}
.xf{left:120.031988pt;}
.x11{left:122.751988pt;}
.x2{left:126.911988pt;}
.xe{left:128.031988pt;}
.x12{left:133.311988pt;}
.x29{left:136.506667pt;}
.x21{left:139.226667pt;}
.x19{left:141.946667pt;}
.x13{left:143.066667pt;}
.xc{left:146.746655pt;}
.x33{left:149.306655pt;}
.x3{left:150.586655pt;}
.x10{left:154.746655pt;}
.x38{left:156.026655pt;}
.x37{left:168.026655pt;}
.x30{left:170.106667pt;}
.x25{left:171.226667pt;}
.x35{left:176.026655pt;}
.x34{left:181.306655pt;}
.xa{left:186.906655pt;}
.x36{left:208.026655pt;}
.x15{left:216.986667pt;}
.x22{left:221.626667pt;}
.x4{left:271.746655pt;}
.xd{left:323.106655pt;}
.x2a{left:325.666667pt;}
.x1a{left:361.186667pt;}
.x16{left:369.506667pt;}
.x2d{left:378.626667pt;}
.x7{left:380.866655pt;}
.x31{left:387.266667pt;}
.x23{left:391.266667pt;}
.x8{left:396.866655pt;}
.x26{left:408.226667pt;}
.x5{left:420.893322pt;}
.x1f{left:424.573333pt;}
.x2e{left:433.213333pt;}
.x17{left:465.533333pt;}
.x1d{left:469.213333pt;}
.x2f{left:487.293333pt;}
.x24{left:496.733333pt;}
.x1e{left:511.293333pt;}
.x27{left:521.213333pt;}
.x20{left:523.453333pt;}
.x32{left:525.693333pt;}
.x2b{left:541.213333pt;}
.x1b{left:559.293333pt;}
.x2c{left:595.333333pt;}
.x1c{left:613.253333pt;}
}




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