
    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_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b9fb1ebfe236efd8c23c15a9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_2fbd5edcd8aee03713cdf01e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_e73f75e9c3f416f181a78dde.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_38a20396e60e5816328ee635.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_0169b9a0837a8f4ac8943f15.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_a85d84191afc9aa8cf43a1b5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_bb4e8eb8c345a020275ad618.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.999023;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_0b65be61e996ca9b52a758cf.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls13{letter-spacing:-1.626000px;}
.ls14{letter-spacing:-1.266000px;}
.ls9{letter-spacing:-0.391800px;}
.lse{letter-spacing:-0.186600px;}
.ls5{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls15{letter-spacing:-0.093600px;}
.ls7{letter-spacing:-0.084600px;}
.ls11{letter-spacing:-0.063600px;}
.ls8{letter-spacing:-0.031800px;}
.ls6{letter-spacing:-0.008400px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.045360px;}
.ls10{letter-spacing:0.048960px;}
.ls12{letter-spacing:0.060600px;}
.ls3{letter-spacing:0.065520px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls16{letter-spacing:0.095400px;}
.lsf{letter-spacing:0.097800px;}
.lsd{letter-spacing:0.173400px;}
.ls18{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls19{letter-spacing:47.726640px;}
.ls17{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws3{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.ws5{word-spacing:-13.399800px;}
.ws7{word-spacing:-13.324200px;}
.wse{word-spacing:-13.321800px;}
.wsb{word-spacing:-13.287000px;}
.ws9{word-spacing:-13.275360px;}
.ws1{word-spacing:-13.226400px;}
.wsa{word-spacing:-13.162800px;}
.ws6{word-spacing:-13.039800px;}
.wsd{word-spacing:-11.960400px;}
.wsc{word-spacing:-11.600400px;}
.ws0{word-spacing:-9.765000px;}
.ws4{word-spacing:0.000000px;}
.ws2{word-spacing:4.304880px;}
._b{margin-left:-3.782387px;}
._a{margin-left:-2.344800px;}
._0{margin-left:-1.155000px;}
._1{width:1.090188px;}
._2{width:2.227703px;}
._8{width:3.787800px;}
._9{width:5.000276px;}
._3{width:6.793800px;}
._4{width:8.295598px;}
._7{width:9.859199px;}
._6{width:10.942201px;}
._5{width:12.084000px;}
._d{width:14.909760px;}
._f{width:16.006200px;}
._e{width:17.134200px;}
._c{width:19.058040px;}
._10{width:50.801400px;}
._11{width:51.836160px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y5e{bottom:7.830000px;}
.y60{bottom:7.920000px;}
.ya0{bottom:13.050000px;}
.yb0{bottom:13.140000px;}
.y7a{bottom:26.550000px;}
.y9f{bottom:35.190000px;}
.yc5{bottom:35.280000px;}
.yc2{bottom:40.440000px;}
.yad{bottom:40.500000px;}
.y2{bottom:55.380000px;}
.y9d{bottom:62.550000px;}
.yc1{bottom:62.580000px;}
.y2b{bottom:74.190000px;}
.y1{bottom:83.640000px;}
.y2a{bottom:91.830000px;}
.y28{bottom:125.580000px;}
.y81{bottom:128.010000px;}
.y27{bottom:143.130000px;}
.ycf{bottom:145.380000px;}
.y80{bottom:145.560000px;}
.y26{bottom:160.680000px;}
.y7f{bottom:163.200000px;}
.ya8{bottom:163.380000px;}
.y57{bottom:164.100000px;}
.yfa{bottom:170.940000px;}
.y25{bottom:178.320000px;}
.ya7{bottom:180.930000px;}
.yf9{bottom:188.580000px;}
.y24{bottom:195.870000px;}
.ya6{bottom:198.570000px;}
.y7e{bottom:198.750000px;}
.y56{bottom:199.650000px;}
.yf8{bottom:206.130000px;}
.y23{bottom:213.510000px;}
.ya5{bottom:216.120000px;}
.y7d{bottom:216.300000px;}
.yf7{bottom:223.680000px;}
.y22{bottom:231.060000px;}
.yce{bottom:233.670000px;}
.y7c{bottom:233.940000px;}
.y55{bottom:235.200000px;}
.yf6{bottom:241.320000px;}
.ya4{bottom:250.950000px;}
.yf5{bottom:258.870000px;}
.ya3{bottom:263.190000px;}
.y21{bottom:266.610000px;}
.y7b{bottom:268.770000px;}
.ycd{bottom:269.310000px;}
.y54{bottom:270.840000px;}
.yf4{bottom:276.510000px;}
.y11f{bottom:278.310000px;}
.y79{bottom:281.010000px;}
.y20{bottom:284.250000px;}
.ycc{bottom:286.860000px;}
.y53{bottom:288.390000px;}
.ya2{bottom:290.550000px;}
.yf3{bottom:294.060000px;}
.y11e{bottom:295.860000px;}
.y1f{bottom:301.800000px;}
.ycb{bottom:304.410000px;}
.y52{bottom:305.940000px;}
.y78{bottom:308.280000px;}
.yf2{bottom:311.610000px;}
.ya1{bottom:317.820000px;}
.yca{bottom:322.050000px;}
.y11d{bottom:322.500000px;}
.yf1{bottom:329.250000px;}
.y77{bottom:335.640000px;}
.y1e{bottom:337.440000px;}
.y11c{bottom:340.050000px;}
.y51{bottom:341.580000px;}
.y9c{bottom:345.180000px;}
.yf0{bottom:346.800000px;}
.y1d{bottom:354.990000px;}
.yc9{bottom:356.880000px;}
.y50{bottom:359.130000px;}
.y76{bottom:363.000000px;}
.y11b{bottom:366.600000px;}
.yc8{bottom:369.120000px;}
.y1c{bottom:372.540000px;}
.yef{bottom:373.710000px;}
.y4f{bottom:376.770000px;}
.y11a{bottom:384.240000px;}
.y1b{bottom:390.180000px;}
.y4e{bottom:394.320000px;}
.yc7{bottom:396.390000px;}
.y9e{bottom:399.810000px;}
.y119{bottom:401.790000px;}
.y1a{bottom:407.730000px;}
.y75{bottom:411.690000px;}
.y4d{bottom:421.230000px;}
.yee{bottom:422.040000px;}
.yc6{bottom:423.750000px;}
.y118{bottom:428.340000px;}
.y74{bottom:429.240000px;}
.y19{bottom:434.640000px;}
.yed{bottom:439.590000px;}
.y117{bottom:445.980000px;}
.y9b{bottom:448.590000px;}
.yc0{bottom:451.110000px;}
.y73{bottom:455.880000px;}
.yec{bottom:457.140000px;}
.y9a{bottom:466.140000px;}
.y4c{bottom:469.470000px;}
.y116{bottom:472.560000px;}
.yeb{bottom:474.810000px;}
.yc4{bottom:478.410000px;}
.y18{bottom:483.270000px;}
.y4b{bottom:487.140000px;}
.y115{bottom:490.200000px;}
.y72{bottom:491.460000px;}
.yea{bottom:492.360000px;}
.y99{bottom:492.720000px;}
.yc3{bottom:505.770000px;}
.ye9{bottom:510.000000px;}
.y114{bottom:516.750000px;}
.y17{bottom:520.260000px;}
.y4a{bottom:522.690000px;}
.y71{bottom:527.010000px;}
.ye8{bottom:527.550000px;}
.y98{bottom:528.360000px;}
.y113{bottom:534.300000px;}
.y16{bottom:537.900000px;}
.y49{bottom:540.330000px;}
.y70{bottom:544.650000px;}
.ye7{bottom:545.100000px;}
.y97{bottom:545.910000px;}
.ybf{bottom:554.460000px;}
.y15{bottom:555.450000px;}
.y48{bottom:557.880000px;}
.y112{bottom:560.940000px;}
.y6f{bottom:562.200000px;}
.ye6{bottom:562.740000px;}
.y96{bottom:563.550000px;}
.ybe{bottom:572.100000px;}
.y14{bottom:573.090000px;}
.y111{bottom:578.490000px;}
.y6e{bottom:579.840000px;}
.ye5{bottom:580.290000px;}
.y95{bottom:590.100000px;}
.y13{bottom:590.640000px;}
.y47{bottom:593.430000px;}
.y6d{bottom:597.390000px;}
.ye4{bottom:597.840000px;}
.ybd{bottom:598.650000px;}
.y110{bottom:605.130000px;}
.y12{bottom:608.190000px;}
.y46{bottom:611.070000px;}
.y6c{bottom:614.940000px;}
.ye3{bottom:615.480000px;}
.y10f{bottom:622.680000px;}
.y94{bottom:625.650000px;}
.y11{bottom:625.830000px;}
.y45{bottom:628.620000px;}
.y6b{bottom:632.580000px;}
.ye2{bottom:633.030000px;}
.ybc{bottom:634.200000px;}
.y10e{bottom:640.230000px;}
.y93{bottom:643.290000px;}
.y10{bottom:643.380000px;}
.y44{bottom:646.260000px;}
.ye1{bottom:650.670000px;}
.ybb{bottom:651.840000px;}
.yf{bottom:661.020000px;}
.y43{bottom:663.810000px;}
.y6a{bottom:665.520000px;}
.y10d{bottom:666.870000px;}
.ye0{bottom:668.220000px;}
.yba{bottom:669.390000px;}
.y92{bottom:678.120000px;}
.ye{bottom:678.570000px;}
.y42{bottom:681.360000px;}
.y10c{bottom:684.420000px;}
.ydf{bottom:685.770000px;}
.yb9{bottom:687.030000px;}
.y91{bottom:690.270000px;}
.y69{bottom:692.880000px;}
.yd{bottom:696.120000px;}
.y10b{bottom:702.060000px;}
.yde{bottom:703.410000px;}
.yc{bottom:713.760000px;}
.y41{bottom:717.000000px;}
.y90{bottom:717.630000px;}
.y68{bottom:720.240000px;}
.ydd{bottom:720.960000px;}
.yb8{bottom:722.580000px;}
.y10a{bottom:728.610000px;}
.y40{bottom:734.550000px;}
.ydc{bottom:738.600000px;}
.yb7{bottom:740.130000px;}
.yb{bottom:740.670000px;}
.y8f{bottom:744.990000px;}
.y109{bottom:746.160000px;}
.y67{bottom:747.510000px;}
.y3f{bottom:752.190000px;}
.ydb{bottom:756.150000px;}
.yb6{bottom:757.770000px;}
.y108{bottom:763.800000px;}
.y3e{bottom:769.740000px;}
.y8e{bottom:772.350000px;}
.yda{bottom:773.700000px;}
.y66{bottom:774.870000px;}
.yb5{bottom:775.320000px;}
.y107{bottom:781.350000px;}
.ya{bottom:787.380000px;}
.yd9{bottom:791.340000px;}
.y65{bottom:802.230000px;}
.y3d{bottom:805.290000px;}
.y106{bottom:808.260000px;}
.yd8{bottom:808.890000px;}
.yb4{bottom:810.240000px;}
.y8d{bottom:821.040000px;}
.yb3{bottom:822.390000px;}
.y3c{bottom:822.930000px;}
.y9{bottom:823.200000px;}
.yd7{bottom:823.920000px;}
.y64{bottom:829.500000px;}
.y8c{bottom:838.590000px;}
.y3b{bottom:840.480000px;}
.yb2{bottom:849.750000px;}
.yd6{bottom:851.190000px;}
.y105{bottom:856.590000px;}
.y63{bottom:856.860000px;}
.y3a{bottom:858.030000px;}
.y8{bottom:859.200000px;}
.y8b{bottom:865.140000px;}
.y104{bottom:874.140000px;}
.y39{bottom:875.670000px;}
.yb1{bottom:877.020000px;}
.yd5{bottom:878.550000px;}
.y62{bottom:884.220000px;}
.y103{bottom:891.690000px;}
.y38{bottom:893.220000px;}
.y7{bottom:898.980000px;}
.y8a{bottom:900.780000px;}
.yac{bottom:904.380000px;}
.yd4{bottom:905.910000px;}
.y102{bottom:909.330000px;}
.y61{bottom:911.580000px;}
.y6{bottom:916.980000px;}
.y89{bottom:918.330000px;}
.y37{bottom:928.860000px;}
.yaf{bottom:931.740000px;}
.y101{bottom:936.240000px;}
.y5f{bottom:938.850000px;}
.y36{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.y88{bottom:953.250000px;}
.yd3{bottom:954.600000px;}
.yae{bottom:959.100000px;}
.y35{bottom:963.960000px;}
.y87{bottom:965.400000px;}
.y5d{bottom:966.210000px;}
.yd2{bottom:972.150000px;}
.y100{bottom:973.230000px;}
.y34{bottom:981.600000px;}
.y4{bottom:987.630000px;}
.y86{bottom:992.760000px;}
.y33{bottom:999.150000px;}
.yff{bottom:1000.140000px;}
.yab{bottom:1007.790000px;}
.y3{bottom:1012.320000px;}
.y5c{bottom:1014.930000px;}
.y32{bottom:1016.820000px;}
.y85{bottom:1020.060000px;}
.yaa{bottom:1025.370000px;}
.y5b{bottom:1032.570000px;}
.yfe{bottom:1037.160000px;}
.yd1{bottom:1042.920000px;}
.y84{bottom:1047.420000px;}
.ya9{bottom:1051.920000px;}
.y31{bottom:1052.370000px;}
.yfd{bottom:1054.800000px;}
.y5a{bottom:1059.120000px;}
.y30{bottom:1069.920000px;}
.yfc{bottom:1072.350000px;}
.yd0{bottom:1078.560000px;}
.y2f{bottom:1087.560000px;}
.y59{bottom:1091.700000px;}
.y83{bottom:1096.110000px;}
.yfb{bottom:1099.260000px;}
.y2e{bottom:1105.110000px;}
.y82{bottom:1113.750000px;}
.y2d{bottom:1122.750000px;}
.y58{bottom:1127.610000px;}
.y2c{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.hb{height:26.550000px;}
.he{height:26.580000px;}
.hc{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.hd{height:40.539023px;}
.h7{height:50.902383px;}
.h10{height:53.910000px;}
.h12{height:54.000000px;}
.h5{height:55.779258px;}
.ha{height:59.973223px;}
.h13{height:61.793886px;}
.h9{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.hf{height:81.270000px;}
.h11{height:81.300000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w27{width:30.960000px;}
.w18{width:32.040000px;}
.w16{width:32.130000px;}
.wd{width:37.710000px;}
.w9{width:37.800000px;}
.w19{width:40.410000px;}
.w1a{width:40.440000px;}
.w17{width:43.470000px;}
.w20{width:43.500000px;}
.w23{width:43.560000px;}
.w25{width:51.750000px;}
.w26{width:51.780000px;}
.w28{width:63.000000px;}
.w15{width:73.260000px;}
.w14{width:76.320000px;}
.w1f{width:76.350000px;}
.w22{width:76.410000px;}
.w1d{width:84.690000px;}
.w12{width:84.720000px;}
.w5{width:88.860000px;}
.w6{width:99.540000px;}
.wb{width:100.200000px;}
.w3{width:112.230000px;}
.w7{width:112.590000px;}
.w1e{width:115.380000px;}
.w13{width:116.910000px;}
.wc{width:123.120000px;}
.wa{width:147.420000px;}
.w10{width:147.510000px;}
.w11{width:150.390000px;}
.w1c{width:153.480000px;}
.we{width:158.940000px;}
.wf{width:189.540000px;}
.w21{width:189.630000px;}
.w1b{width:197.460000px;}
.w24{width:204.660000px;}
.w8{width:212.220000px;}
.w4{width:212.580000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.x1{left:68.040000px;}
.xe{left:89.369987px;}
.x37{left:111.239987px;}
.x4{left:164.280000px;}
.x21{left:170.040000px;}
.x29{left:173.910000px;}
.x32{left:191.550000px;}
.x19{left:195.780000px;}
.x2{left:211.079987px;}
.x14{left:220.170000px;}
.xf{left:235.470000px;}
.x9{left:241.230000px;}
.x15{left:258.690000px;}
.x10{left:273.990000px;}
.x6{left:276.870000px;}
.xa{left:279.750000px;}
.x31{left:317.459987px;}
.x20{left:325.469987px;}
.xd{left:340.949987px;}
.x13{left:344.999987px;}
.x18{left:347.609987px;}
.x2a{left:364.260000px;}
.x22{left:368.220000px;}
.x1d{left:376.860000px;}
.x2e{left:397.200000px;}
.x26{left:401.070000px;}
.x1c{left:421.140000px;}
.xb{left:427.980000px;}
.x11{left:433.740000px;}
.x2d{left:441.390000px;}
.x25{left:445.350000px;}
.x16{left:449.040000px;}
.x1e{left:453.990000px;}
.x2f{left:474.240000px;}
.x27{left:478.200000px;}
.x7{left:489.810000px;}
.x1a{left:495.120000px;}
.x33{left:501.960000px;}
.x2b{left:518.550000px;}
.x23{left:522.420000px;}
.xc{left:528.900000px;}
.x12{left:534.660000px;}
.x1f{left:536.370000px;}
.x17{left:549.960000px;}
.x34{left:554.460000px;}
.x30{left:559.680000px;}
.x28{left:563.640000px;}
.x8{left:579.030000px;}
.x1b{left:580.560000px;}
.x35{left:586.230000px;}
.x2c{left:603.960000px;}
.x24{left:607.830000px;}
.x36{left:638.700000px;}
.x3{left:808.619987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls13{letter-spacing:-1.445333pt;}
.ls14{letter-spacing:-1.125333pt;}
.ls9{letter-spacing:-0.348267pt;}
.lse{letter-spacing:-0.165867pt;}
.ls5{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls15{letter-spacing:-0.083200pt;}
.ls7{letter-spacing:-0.075200pt;}
.ls11{letter-spacing:-0.056533pt;}
.ls8{letter-spacing:-0.028267pt;}
.ls6{letter-spacing:-0.007467pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.040320pt;}
.ls10{letter-spacing:0.043520pt;}
.ls12{letter-spacing:0.053867pt;}
.ls3{letter-spacing:0.058240pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls16{letter-spacing:0.084800pt;}
.lsf{letter-spacing:0.086933pt;}
.lsd{letter-spacing:0.154133pt;}
.ls18{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls19{letter-spacing:42.423680pt;}
.ls17{letter-spacing:71.863680pt;}
.ws3{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.ws5{word-spacing:-11.910933pt;}
.ws7{word-spacing:-11.843733pt;}
.wse{word-spacing:-11.841600pt;}
.wsb{word-spacing:-11.810667pt;}
.ws9{word-spacing:-11.800320pt;}
.ws1{word-spacing:-11.756800pt;}
.wsa{word-spacing:-11.700267pt;}
.ws6{word-spacing:-11.590933pt;}
.wsd{word-spacing:-10.631467pt;}
.wsc{word-spacing:-10.311467pt;}
.ws0{word-spacing:-8.680000pt;}
.ws4{word-spacing:0.000000pt;}
.ws2{word-spacing:3.826560pt;}
._b{margin-left:-3.362122pt;}
._a{margin-left:-2.084267pt;}
._0{margin-left:-1.026667pt;}
._1{width:0.969056pt;}
._2{width:1.980181pt;}
._8{width:3.366934pt;}
._9{width:4.444689pt;}
._3{width:6.038934pt;}
._4{width:7.373865pt;}
._7{width:8.763732pt;}
._6{width:9.726401pt;}
._5{width:10.741333pt;}
._d{width:13.253120pt;}
._f{width:14.227733pt;}
._e{width:15.230400pt;}
._c{width:16.940480pt;}
._10{width:45.156800pt;}
._11{width:46.076587pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y5e{bottom:6.960000pt;}
.y60{bottom:7.040000pt;}
.ya0{bottom:11.600000pt;}
.yb0{bottom:11.680000pt;}
.y7a{bottom:23.600000pt;}
.y9f{bottom:31.280000pt;}
.yc5{bottom:31.360000pt;}
.yc2{bottom:35.946667pt;}
.yad{bottom:36.000000pt;}
.y2{bottom:49.226667pt;}
.y9d{bottom:55.600000pt;}
.yc1{bottom:55.626667pt;}
.y2b{bottom:65.946667pt;}
.y1{bottom:74.346667pt;}
.y2a{bottom:81.626667pt;}
.y28{bottom:111.626667pt;}
.y81{bottom:113.786667pt;}
.y27{bottom:127.226667pt;}
.ycf{bottom:129.226667pt;}
.y80{bottom:129.386667pt;}
.y26{bottom:142.826667pt;}
.y7f{bottom:145.066667pt;}
.ya8{bottom:145.226667pt;}
.y57{bottom:145.866667pt;}
.yfa{bottom:151.946667pt;}
.y25{bottom:158.506667pt;}
.ya7{bottom:160.826667pt;}
.yf9{bottom:167.626667pt;}
.y24{bottom:174.106667pt;}
.ya6{bottom:176.506667pt;}
.y7e{bottom:176.666667pt;}
.y56{bottom:177.466667pt;}
.yf8{bottom:183.226667pt;}
.y23{bottom:189.786667pt;}
.ya5{bottom:192.106667pt;}
.y7d{bottom:192.266667pt;}
.yf7{bottom:198.826667pt;}
.y22{bottom:205.386667pt;}
.yce{bottom:207.706667pt;}
.y7c{bottom:207.946667pt;}
.y55{bottom:209.066667pt;}
.yf6{bottom:214.506667pt;}
.ya4{bottom:223.066667pt;}
.yf5{bottom:230.106667pt;}
.ya3{bottom:233.946667pt;}
.y21{bottom:236.986667pt;}
.y7b{bottom:238.906667pt;}
.ycd{bottom:239.386667pt;}
.y54{bottom:240.746667pt;}
.yf4{bottom:245.786667pt;}
.y11f{bottom:247.386667pt;}
.y79{bottom:249.786667pt;}
.y20{bottom:252.666667pt;}
.ycc{bottom:254.986667pt;}
.y53{bottom:256.346667pt;}
.ya2{bottom:258.266667pt;}
.yf3{bottom:261.386667pt;}
.y11e{bottom:262.986667pt;}
.y1f{bottom:268.266667pt;}
.ycb{bottom:270.586667pt;}
.y52{bottom:271.946667pt;}
.y78{bottom:274.026667pt;}
.yf2{bottom:276.986667pt;}
.ya1{bottom:282.506667pt;}
.yca{bottom:286.266667pt;}
.y11d{bottom:286.666667pt;}
.yf1{bottom:292.666667pt;}
.y77{bottom:298.346667pt;}
.y1e{bottom:299.946667pt;}
.y11c{bottom:302.266667pt;}
.y51{bottom:303.626667pt;}
.y9c{bottom:306.826667pt;}
.yf0{bottom:308.266667pt;}
.y1d{bottom:315.546667pt;}
.yc9{bottom:317.226667pt;}
.y50{bottom:319.226667pt;}
.y76{bottom:322.666667pt;}
.y11b{bottom:325.866667pt;}
.yc8{bottom:328.106667pt;}
.y1c{bottom:331.146667pt;}
.yef{bottom:332.186667pt;}
.y4f{bottom:334.906667pt;}
.y11a{bottom:341.546667pt;}
.y1b{bottom:346.826667pt;}
.y4e{bottom:350.506667pt;}
.yc7{bottom:352.346667pt;}
.y9e{bottom:355.386667pt;}
.y119{bottom:357.146667pt;}
.y1a{bottom:362.426667pt;}
.y75{bottom:365.946667pt;}
.y4d{bottom:374.426667pt;}
.yee{bottom:375.146667pt;}
.yc6{bottom:376.666667pt;}
.y118{bottom:380.746667pt;}
.y74{bottom:381.546667pt;}
.y19{bottom:386.346667pt;}
.yed{bottom:390.746667pt;}
.y117{bottom:396.426667pt;}
.y9b{bottom:398.746667pt;}
.yc0{bottom:400.986667pt;}
.y73{bottom:405.226667pt;}
.yec{bottom:406.346667pt;}
.y9a{bottom:414.346667pt;}
.y4c{bottom:417.306667pt;}
.y116{bottom:420.053333pt;}
.yeb{bottom:422.053333pt;}
.yc4{bottom:425.253333pt;}
.y18{bottom:429.573333pt;}
.y4b{bottom:433.013333pt;}
.y115{bottom:435.733333pt;}
.y72{bottom:436.853333pt;}
.yea{bottom:437.653333pt;}
.y99{bottom:437.973333pt;}
.yc3{bottom:449.573333pt;}
.ye9{bottom:453.333333pt;}
.y114{bottom:459.333333pt;}
.y17{bottom:462.453333pt;}
.y4a{bottom:464.613333pt;}
.y71{bottom:468.453333pt;}
.ye8{bottom:468.933333pt;}
.y98{bottom:469.653333pt;}
.y113{bottom:474.933333pt;}
.y16{bottom:478.133333pt;}
.y49{bottom:480.293333pt;}
.y70{bottom:484.133333pt;}
.ye7{bottom:484.533333pt;}
.y97{bottom:485.253333pt;}
.ybf{bottom:492.853333pt;}
.y15{bottom:493.733333pt;}
.y48{bottom:495.893333pt;}
.y112{bottom:498.613333pt;}
.y6f{bottom:499.733333pt;}
.ye6{bottom:500.213333pt;}
.y96{bottom:500.933333pt;}
.ybe{bottom:508.533333pt;}
.y14{bottom:509.413333pt;}
.y111{bottom:514.213333pt;}
.y6e{bottom:515.413333pt;}
.ye5{bottom:515.813333pt;}
.y95{bottom:524.533333pt;}
.y13{bottom:525.013333pt;}
.y47{bottom:527.493333pt;}
.y6d{bottom:531.013333pt;}
.ye4{bottom:531.413333pt;}
.ybd{bottom:532.133333pt;}
.y110{bottom:537.893333pt;}
.y12{bottom:540.613333pt;}
.y46{bottom:543.173333pt;}
.y6c{bottom:546.613333pt;}
.ye3{bottom:547.093333pt;}
.y10f{bottom:553.493333pt;}
.y94{bottom:556.133333pt;}
.y11{bottom:556.293333pt;}
.y45{bottom:558.773333pt;}
.y6b{bottom:562.293333pt;}
.ye2{bottom:562.693333pt;}
.ybc{bottom:563.733333pt;}
.y10e{bottom:569.093333pt;}
.y93{bottom:571.813333pt;}
.y10{bottom:571.893333pt;}
.y44{bottom:574.453333pt;}
.ye1{bottom:578.373333pt;}
.ybb{bottom:579.413333pt;}
.yf{bottom:587.573333pt;}
.y43{bottom:590.053333pt;}
.y6a{bottom:591.573333pt;}
.y10d{bottom:592.773333pt;}
.ye0{bottom:593.973333pt;}
.yba{bottom:595.013333pt;}
.y92{bottom:602.773333pt;}
.ye{bottom:603.173333pt;}
.y42{bottom:605.653333pt;}
.y10c{bottom:608.373333pt;}
.ydf{bottom:609.573333pt;}
.yb9{bottom:610.693333pt;}
.y91{bottom:613.573333pt;}
.y69{bottom:615.893333pt;}
.yd{bottom:618.773333pt;}
.y10b{bottom:624.053333pt;}
.yde{bottom:625.253333pt;}
.yc{bottom:634.453333pt;}
.y41{bottom:637.333333pt;}
.y90{bottom:637.893333pt;}
.y68{bottom:640.213333pt;}
.ydd{bottom:640.853333pt;}
.yb8{bottom:642.293333pt;}
.y10a{bottom:647.653333pt;}
.y40{bottom:652.933333pt;}
.ydc{bottom:656.533333pt;}
.yb7{bottom:657.893333pt;}
.yb{bottom:658.373333pt;}
.y8f{bottom:662.213333pt;}
.y109{bottom:663.253333pt;}
.y67{bottom:664.453333pt;}
.y3f{bottom:668.613333pt;}
.ydb{bottom:672.133333pt;}
.yb6{bottom:673.573333pt;}
.y108{bottom:678.933333pt;}
.y3e{bottom:684.213333pt;}
.y8e{bottom:686.533333pt;}
.yda{bottom:687.733333pt;}
.y66{bottom:688.773333pt;}
.yb5{bottom:689.173333pt;}
.y107{bottom:694.533333pt;}
.ya{bottom:699.893333pt;}
.yd9{bottom:703.413333pt;}
.y65{bottom:713.093333pt;}
.y3d{bottom:715.813333pt;}
.y106{bottom:718.453333pt;}
.yd8{bottom:719.013333pt;}
.yb4{bottom:720.213333pt;}
.y8d{bottom:729.813333pt;}
.yb3{bottom:731.013333pt;}
.y3c{bottom:731.493333pt;}
.y9{bottom:731.733333pt;}
.yd7{bottom:732.373333pt;}
.y64{bottom:737.333333pt;}
.y8c{bottom:745.413333pt;}
.y3b{bottom:747.093333pt;}
.yb2{bottom:755.333333pt;}
.yd6{bottom:756.613333pt;}
.y105{bottom:761.413333pt;}
.y63{bottom:761.653333pt;}
.y3a{bottom:762.693333pt;}
.y8{bottom:763.733333pt;}
.y8b{bottom:769.013333pt;}
.y104{bottom:777.013333pt;}
.y39{bottom:778.373333pt;}
.yb1{bottom:779.573333pt;}
.yd5{bottom:780.933333pt;}
.y62{bottom:785.973333pt;}
.y103{bottom:792.613333pt;}
.y38{bottom:793.973333pt;}
.y7{bottom:799.093333pt;}
.y8a{bottom:800.693333pt;}
.yac{bottom:803.893333pt;}
.yd4{bottom:805.253333pt;}
.y102{bottom:808.293333pt;}
.y61{bottom:810.293333pt;}
.y6{bottom:815.093333pt;}
.y89{bottom:816.293333pt;}
.y37{bottom:825.653333pt;}
.yaf{bottom:828.213333pt;}
.y101{bottom:832.213333pt;}
.y5f{bottom:834.533333pt;}
.y36{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.y88{bottom:847.333333pt;}
.yd3{bottom:848.533333pt;}
.yae{bottom:852.533333pt;}
.y35{bottom:856.853333pt;}
.y87{bottom:858.133333pt;}
.y5d{bottom:858.853333pt;}
.yd2{bottom:864.133333pt;}
.y100{bottom:865.093333pt;}
.y34{bottom:872.533333pt;}
.y4{bottom:877.893333pt;}
.y86{bottom:882.453333pt;}
.y33{bottom:888.133333pt;}
.yff{bottom:889.013333pt;}
.yab{bottom:895.813333pt;}
.y3{bottom:899.840000pt;}
.y5c{bottom:902.160000pt;}
.y32{bottom:903.840000pt;}
.y85{bottom:906.720000pt;}
.yaa{bottom:911.440000pt;}
.y5b{bottom:917.840000pt;}
.yfe{bottom:921.920000pt;}
.yd1{bottom:927.040000pt;}
.y84{bottom:931.040000pt;}
.ya9{bottom:935.040000pt;}
.y31{bottom:935.440000pt;}
.yfd{bottom:937.600000pt;}
.y5a{bottom:941.440000pt;}
.y30{bottom:951.040000pt;}
.yfc{bottom:953.200000pt;}
.yd0{bottom:958.720000pt;}
.y2f{bottom:966.720000pt;}
.y59{bottom:970.400000pt;}
.y83{bottom:974.320000pt;}
.yfb{bottom:977.120000pt;}
.y2e{bottom:982.320000pt;}
.y82{bottom:990.000000pt;}
.y2d{bottom:998.000000pt;}
.y58{bottom:1002.320000pt;}
.y2c{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.hb{height:23.600000pt;}
.he{height:23.626667pt;}
.hc{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.hd{height:36.034687pt;}
.h7{height:45.246562pt;}
.h10{height:47.920000pt;}
.h12{height:48.000000pt;}
.h5{height:49.581562pt;}
.ha{height:53.309531pt;}
.h13{height:54.927899pt;}
.h9{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.hf{height:72.240000pt;}
.h11{height:72.266667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w27{width:27.520000pt;}
.w18{width:28.480000pt;}
.w16{width:28.560000pt;}
.wd{width:33.520000pt;}
.w9{width:33.600000pt;}
.w19{width:35.920000pt;}
.w1a{width:35.946667pt;}
.w17{width:38.640000pt;}
.w20{width:38.666667pt;}
.w23{width:38.720000pt;}
.w25{width:46.000000pt;}
.w26{width:46.026667pt;}
.w28{width:56.000000pt;}
.w15{width:65.120000pt;}
.w14{width:67.840000pt;}
.w1f{width:67.866667pt;}
.w22{width:67.920000pt;}
.w1d{width:75.280000pt;}
.w12{width:75.306667pt;}
.w5{width:78.986667pt;}
.w6{width:88.480000pt;}
.wb{width:89.066667pt;}
.w3{width:99.760000pt;}
.w7{width:100.080000pt;}
.w1e{width:102.560000pt;}
.w13{width:103.920000pt;}
.wc{width:109.440000pt;}
.wa{width:131.040000pt;}
.w10{width:131.120000pt;}
.w11{width:133.680000pt;}
.w1c{width:136.426667pt;}
.we{width:141.280000pt;}
.wf{width:168.480000pt;}
.w21{width:168.560000pt;}
.w1b{width:175.520000pt;}
.w24{width:181.920000pt;}
.w8{width:188.640000pt;}
.w4{width:188.960000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.x1{left:60.480000pt;}
.xe{left:79.439988pt;}
.x37{left:98.879988pt;}
.x4{left:146.026667pt;}
.x21{left:151.146667pt;}
.x29{left:154.586667pt;}
.x32{left:170.266667pt;}
.x19{left:174.026667pt;}
.x2{left:187.626655pt;}
.x14{left:195.706667pt;}
.xf{left:209.306667pt;}
.x9{left:214.426667pt;}
.x15{left:229.946667pt;}
.x10{left:243.546667pt;}
.x6{left:246.106667pt;}
.xa{left:248.666667pt;}
.x31{left:282.186655pt;}
.x20{left:289.306655pt;}
.xd{left:303.066655pt;}
.x13{left:306.666655pt;}
.x18{left:308.986655pt;}
.x2a{left:323.786667pt;}
.x22{left:327.306667pt;}
.x1d{left:334.986667pt;}
.x2e{left:353.066667pt;}
.x26{left:356.506667pt;}
.x1c{left:374.346667pt;}
.xb{left:380.426667pt;}
.x11{left:385.546667pt;}
.x2d{left:392.346667pt;}
.x25{left:395.866667pt;}
.x16{left:399.146667pt;}
.x1e{left:403.546667pt;}
.x2f{left:421.546667pt;}
.x27{left:425.066667pt;}
.x7{left:435.386667pt;}
.x1a{left:440.106667pt;}
.x33{left:446.186667pt;}
.x2b{left:460.933333pt;}
.x23{left:464.373333pt;}
.xc{left:470.133333pt;}
.x12{left:475.253333pt;}
.x1f{left:476.773333pt;}
.x17{left:488.853333pt;}
.x34{left:492.853333pt;}
.x30{left:497.493333pt;}
.x28{left:501.013333pt;}
.x8{left:514.693333pt;}
.x1b{left:516.053333pt;}
.x35{left:521.093333pt;}
.x2c{left:536.853333pt;}
.x24{left:540.293333pt;}
.x36{left:567.733333pt;}
.x3{left:718.773322pt;}
}




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