
    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_ef9c6df69fce05ce26862c17.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_7e1b980add53687f2cf3913e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_0d0d40ff712921d029a79c57.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_09874cf8e744ef2293266ce2.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a4576f465fc8cf8435824d50.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_06c0c453281b13993501b61d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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);}
.m2{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls25{letter-spacing:-2.466000px;}
.lsf{letter-spacing:-2.448000px;}
.ls26{letter-spacing:-2.268000px;}
.ls2a{letter-spacing:-2.160000px;}
.ls21{letter-spacing:-1.584000px;}
.ls3{letter-spacing:-1.440000px;}
.lsa{letter-spacing:-1.296000px;}
.ls20{letter-spacing:-1.224000px;}
.ls14{letter-spacing:-1.080000px;}
.ls4{letter-spacing:-0.720000px;}
.ls1f{letter-spacing:-0.432000px;}
.ls13{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.144000px;}
.ls18{letter-spacing:-0.072000px;}
.ls5{letter-spacing:-0.018720px;}
.ls2{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.216000px;}
.ls12{letter-spacing:0.259920px;}
.ls7{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.432000px;}
.ls27{letter-spacing:0.576000px;}
.ls6{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.792000px;}
.ls1b{letter-spacing:0.840000px;}
.ls22{letter-spacing:1.008000px;}
.ls24{letter-spacing:1.440000px;}
.ls1e{letter-spacing:2.160000px;}
.ls1a{letter-spacing:2.880000px;}
.ls1d{letter-spacing:4.320000px;}
.ls1c{letter-spacing:6.480000px;}
.ls16{letter-spacing:7.896000px;}
.ls19{letter-spacing:9.360000px;}
.ls29{letter-spacing:10.800000px;}
.ls28{letter-spacing:11.700000px;}
.ls23{letter-spacing:13.680000px;}
.lsb{letter-spacing:15.984000px;}
.lse{letter-spacing:33.984000px;}
.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;}
}
.ws21{word-spacing:-72.000000px;}
.ws3{word-spacing:-24.300000px;}
.ws2{word-spacing:-23.921280px;}
.ws4{word-spacing:-21.420000px;}
.ws1d{word-spacing:-19.008000px;}
.ws12{word-spacing:-18.792000px;}
.ws5{word-spacing:-18.720000px;}
.ws20{word-spacing:-18.576000px;}
.wsd{word-spacing:-18.432000px;}
.ws7{word-spacing:-18.288000px;}
.ws19{word-spacing:-18.216000px;}
.wsa{word-spacing:-18.144000px;}
.wse{word-spacing:-18.072000px;}
.ws6{word-spacing:-18.000000px;}
.ws18{word-spacing:-17.928000px;}
.ws9{word-spacing:-17.856000px;}
.ws11{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.712000px;}
.ws1a{word-spacing:-17.568000px;}
.ws10{word-spacing:-17.280000px;}
.ws1b{word-spacing:-16.776000px;}
.wsb{word-spacing:-16.704000px;}
.ws17{word-spacing:-16.560000px;}
.ws1c{word-spacing:-16.416000px;}
.ws1{word-spacing:-15.840000px;}
.wsf{word-spacing:-15.552000px;}
.ws15{word-spacing:-15.300000px;}
.ws0{word-spacing:-15.120000px;}
.ws13{word-spacing:-14.940000px;}
.ws14{word-spacing:-14.580000px;}
.ws1f{word-spacing:-14.292000px;}
.ws1e{word-spacing:-14.094000px;}
.ws16{word-spacing:-13.860000px;}
.wsc{word-spacing:0.000000px;}
._28{margin-left:-9.200160px;}
._3{margin-left:-4.680000px;}
._14{margin-left:-3.336000px;}
._1{margin-left:-2.252160px;}
._0{margin-left:-1.192320px;}
._2{width:1.549440px;}
._4{width:2.888160px;}
._5{width:3.986400px;}
._6{width:5.328960px;}
._b{width:6.911040px;}
._1d{width:7.994880px;}
._7{width:9.144000px;}
._1b{width:10.152000px;}
._9{width:11.160000px;}
._a{width:12.493440px;}
._15{width:13.498560px;}
._8{width:15.408000px;}
._c{width:16.888320px;}
._11{width:19.008000px;}
._12{width:20.160000px;}
._1f{width:21.370560px;}
._1e{width:22.832640px;}
._18{width:23.976000px;}
._19{width:24.984000px;}
._24{width:26.035200px;}
._13{width:27.112320px;}
._d{width:28.152000px;}
._e{width:29.554560px;}
._16{width:30.744000px;}
._17{width:31.786560px;}
._1a{width:32.904000px;}
._25{width:34.200000px;}
._1c{width:35.640000px;}
._20{width:36.665760px;}
._f{width:39.432000px;}
._10{width:40.850880px;}
._22{width:41.886720px;}
._21{width:43.024320px;}
._23{width:47.448000px;}
._2c{width:54.000000px;}
._27{width:66.000000px;}
._2b{width:96.674400px;}
._26{width:108.721440px;}
._2d{width:131.721600px;}
._29{width:137.736000px;}
._2a{width:156.362880px;}
._2e{width:179.381760px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.240000px;}
.fs5{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ya7{bottom:3.240000px;}
.ya5{bottom:3.960000px;}
.y3{bottom:5.220000px;}
.y2{bottom:27.000000px;}
.y6{bottom:57.780000px;}
.y5{bottom:62.280000px;}
.y108{bottom:88.020000px;}
.y7f{bottom:91.440000px;}
.y60{bottom:91.620000px;}
.y38{bottom:98.640000px;}
.yb7{bottom:101.340000px;}
.yd9{bottom:101.700000px;}
.y95{bottom:104.400000px;}
.y107{bottom:108.540000px;}
.yc5{bottom:112.140000px;}
.y37{bottom:119.340000px;}
.y7e{bottom:122.400000px;}
.y5f{bottom:122.760000px;}
.y106{bottom:129.240000px;}
.y94{bottom:130.320000px;}
.yb6{bottom:132.300000px;}
.ycb{bottom:132.840000px;}
.y36{bottom:140.076000px;}
.yc1{bottom:141.336000px;}
.yc4{bottom:143.136000px;}
.y105{bottom:149.976000px;}
.y7d{bottom:153.570000px;}
.y5e{bottom:153.750000px;}
.y93{bottom:156.270000px;}
.y9c{bottom:156.630000px;}
.y35{bottom:160.770000px;}
.yb5{bottom:163.470000px;}
.yca{bottom:163.830000px;}
.y104{bottom:170.670000px;}
.yc0{bottom:172.290000px;}
.y9b{bottom:173.910000px;}
.yc3{bottom:174.270000px;}
.y34{bottom:181.470000px;}
.y92{bottom:182.010000px;}
.y7c{bottom:184.530000px;}
.y5d{bottom:184.890000px;}
.y9a{bottom:187.950000px;}
.y103{bottom:191.370000px;}
.yb4{bottom:194.430000px;}
.yc9{bottom:194.970000px;}
.y33{bottom:202.170000px;}
.ybf{bottom:203.430000px;}
.yc2{bottom:205.230000px;}
.y91{bottom:207.930000px;}
.y102{bottom:212.070000px;}
.y7b{bottom:215.670000px;}
.y5c{bottom:215.850000px;}
.y32{bottom:222.870000px;}
.yb3{bottom:225.570000px;}
.yc8{bottom:225.930000px;}
.y101{bottom:232.770000px;}
.y90{bottom:233.850000px;}
.ybe{bottom:234.390000px;}
.yba{bottom:236.370000px;}
.y31{bottom:243.570000px;}
.y7a{bottom:246.630000px;}
.y5b{bottom:246.990000px;}
.y100{bottom:253.470000px;}
.ybd{bottom:254.370000px;}
.yb2{bottom:256.530000px;}
.y83{bottom:257.070000px;}
.y8f{bottom:259.770000px;}
.y30{bottom:264.270000px;}
.yb9{bottom:267.330000px;}
.ybc{bottom:271.650000px;}
.yff{bottom:274.170000px;}
.y79{bottom:277.770000px;}
.y5a{bottom:277.950000px;}
.y2f{bottom:284.970000px;}
.ybb{bottom:285.690000px;}
.yb1{bottom:287.670000px;}
.y82{bottom:288.030000px;}
.yfe{bottom:294.870000px;}
.y78{bottom:298.470000px;}
.y2e{bottom:305.670000px;}
.yd8{bottom:308.730000px;}
.y59{bottom:309.090000px;}
.yfd{bottom:315.570000px;}
.yb0{bottom:318.630000px;}
.y77{bottom:319.170000px;}
.y2d{bottom:326.370000px;}
.yb8{bottom:329.430000px;}
.yfc{bottom:336.270000px;}
.y76{bottom:339.870000px;}
.y58{bottom:340.050000px;}
.y2c{bottom:347.070000px;}
.yaf{bottom:349.770000px;}
.y81{bottom:350.130000px;}
.yfb{bottom:356.970000px;}
.y75{bottom:360.570000px;}
.y2b{bottom:367.770000px;}
.y80{bottom:370.830000px;}
.y57{bottom:371.190000px;}
.yfa{bottom:377.670000px;}
.yae{bottom:380.730000px;}
.y8e{bottom:381.270000px;}
.y2a{bottom:388.515000px;}
.y74{bottom:391.575000px;}
.yf9{bottom:398.415000px;}
.y56{bottom:402.195000px;}
.y29{bottom:409.215000px;}
.yad{bottom:411.915000px;}
.y8d{bottom:412.275000px;}
.yf8{bottom:419.115000px;}
.y73{bottom:422.715000px;}
.y28{bottom:429.915000px;}
.yd7{bottom:432.975000px;}
.y55{bottom:433.335000px;}
.yf7{bottom:439.815000px;}
.yac{bottom:442.875000px;}
.y8c{bottom:443.235000px;}
.y27{bottom:450.615000px;}
.y72{bottom:453.675000px;}
.yf6{bottom:460.515000px;}
.yab{bottom:462.855000px;}
.y54{bottom:464.295000px;}
.y26{bottom:471.315000px;}
.y8b{bottom:474.375000px;}
.yaa{bottom:477.615000px;}
.yf5{bottom:481.215000px;}
.y71{bottom:484.635000px;}
.y25{bottom:492.015000px;}
.ya9{bottom:494.895000px;}
.yd6{bottom:495.075000px;}
.y53{bottom:495.255000px;}
.yf4{bottom:501.915000px;}
.y8a{bottom:505.335000px;}
.ya8{bottom:512.175000px;}
.y24{bottom:512.715000px;}
.y70{bottom:515.775000px;}
.yf3{bottom:522.615000px;}
.y52{bottom:526.395000px;}
.ya6{bottom:529.455000px;}
.y23{bottom:533.415000px;}
.y89{bottom:536.475000px;}
.yf2{bottom:543.135000px;}
.y6f{bottom:546.735000px;}
.ya4{bottom:547.455000px;}
.y22{bottom:554.115000px;}
.yd5{bottom:557.175000px;}
.y51{bottom:557.355000px;}
.yf1{bottom:562.395000px;}
.y88{bottom:567.435000px;}
.ya3{bottom:568.515000px;}
.y21{bottom:574.815000px;}
.y6e{bottom:577.875000px;}
.ya2{bottom:578.775000px;}
.yf0{bottom:583.095000px;}
.y50{bottom:588.495000px;}
.y20{bottom:595.515000px;}
.y87{bottom:598.575000px;}
.ya1{bottom:603.435000px;}
.yef{bottom:603.795000px;}
.y6d{bottom:608.835000px;}
.y1f{bottom:618.555000px;}
.yd4{bottom:619.275000px;}
.y4f{bottom:619.455000px;}
.yee{bottom:624.495000px;}
.ya0{bottom:626.835000px;}
.y86{bottom:629.535000px;}
.y1e{bottom:636.555000px;}
.y6c{bottom:640.005000px;}
.y9f{bottom:642.705000px;}
.yed{bottom:645.225000px;}
.y4e{bottom:650.625000px;}
.y99{bottom:656.745000px;}
.y1d{bottom:657.285000px;}
.y9e{bottom:659.985000px;}
.y85{bottom:660.705000px;}
.yec{bottom:665.925000px;}
.y6b{bottom:670.965000px;}
.y9d{bottom:674.025000px;}
.y98{bottom:676.725000px;}
.y1c{bottom:677.985000px;}
.y84{bottom:681.405000px;}
.y4d{bottom:681.585000px;}
.yeb{bottom:686.625000px;}
.yc7{bottom:691.665000px;}
.y97{bottom:694.005000px;}
.y1b{bottom:698.685000px;}
.y6a{bottom:702.105000px;}
.yea{bottom:707.325000px;}
.y96{bottom:708.045000px;}
.yc6{bottom:712.365000px;}
.y4c{bottom:712.725000px;}
.y1a{bottom:719.385000px;}
.yd3{bottom:722.805000px;}
.ye9{bottom:728.025000px;}
.y69{bottom:733.065000px;}
.y19{bottom:740.085000px;}
.yd2{bottom:743.505000px;}
.y4b{bottom:743.685000px;}
.ye8{bottom:748.725000px;}
.y18{bottom:760.785000px;}
.y68{bottom:764.205000px;}
.ye7{bottom:769.425000px;}
.y4a{bottom:774.825000px;}
.y17{bottom:781.485000px;}
.yd1{bottom:784.905000px;}
.ye6{bottom:790.125000px;}
.y67{bottom:795.165000px;}
.y49{bottom:795.525000px;}
.y16{bottom:802.185000px;}
.yd0{bottom:805.605000px;}
.ye5{bottom:810.825000px;}
.y48{bottom:816.225000px;}
.y15{bottom:822.885000px;}
.y66{bottom:826.305000px;}
.ye4{bottom:831.525000px;}
.y14{bottom:843.585000px;}
.ycf{bottom:847.005000px;}
.y47{bottom:847.185000px;}
.ye3{bottom:852.225000px;}
.y65{bottom:857.265000px;}
.y13{bottom:864.285000px;}
.yce{bottom:867.705000px;}
.y46{bottom:870.405000px;}
.ye2{bottom:872.925000px;}
.y12{bottom:884.985000px;}
.y45{bottom:888.405000px;}
.ye1{bottom:893.670000px;}
.y11{bottom:905.730000px;}
.y44{bottom:909.150000px;}
.ye0{bottom:914.370000px;}
.y64{bottom:919.410000px;}
.y10{bottom:926.430000px;}
.y43{bottom:929.850000px;}
.ydf{bottom:935.070000px;}
.yf{bottom:947.130000px;}
.y42{bottom:950.550000px;}
.yde{bottom:955.770000px;}
.ye{bottom:967.830000px;}
.y41{bottom:971.250000px;}
.ydd{bottom:976.470000px;}
.y63{bottom:981.510000px;}
.yd{bottom:988.530000px;}
.y40{bottom:991.950000px;}
.ydc{bottom:996.810000px;}
.ycd{bottom:1002.210000px;}
.yc{bottom:1009.230000px;}
.y3f{bottom:1012.650000px;}
.ydb{bottom:1015.710000px;}
.yb{bottom:1029.930000px;}
.y3e{bottom:1033.350000px;}
.yda{bottom:1034.790000px;}
.y62{bottom:1043.610000px;}
.ya{bottom:1051.170000px;}
.y3d{bottom:1054.050000px;}
.ycc{bottom:1064.310000px;}
.y3c{bottom:1074.750000px;}
.y9{bottom:1076.010000px;}
.y3b{bottom:1095.450000px;}
.y8{bottom:1103.550000px;}
.y61{bottom:1105.710000px;}
.y3a{bottom:1116.150000px;}
.y7{bottom:1131.270000px;}
.y39{bottom:1136.850000px;}
.y1{bottom:1165.320000px;}
.y4{bottom:1209.060000px;}
.he{height:17.100000px;}
.hf{height:17.280000px;}
.hd{height:18.720000px;}
.hc{height:27.109688px;}
.h2{height:43.020000px;}
.hb{height:48.410156px;}
.ha{height:53.077852px;}
.h4{height:53.573906px;}
.h3{height:59.383125px;}
.h7{height:63.949219px;}
.h8{height:64.546875px;}
.h9{height:70.606406px;}
.h6{height:75.519844px;}
.h5{height:85.052461px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w7{width:113.220000px;}
.w6{width:113.436000px;}
.w8{width:113.616000px;}
.w5{width:113.796000px;}
.w4{width:114.300000px;}
.w2{width:312.195000px;}
.w1{width:893.250000px;}
.w3{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x2{left:1.440000px;}
.x34{left:14.760000px;}
.x31{left:17.280000px;}
.x30{left:33.480000px;}
.x32{left:36.765000px;}
.x33{left:40.365000px;}
.x2b{left:42.654000px;}
.x4{left:84.995987px;}
.x5{left:88.955987px;}
.x3{left:105.165000px;}
.x2a{left:110.916000px;}
.xc{left:117.035987px;}
.x9{left:127.475987px;}
.xd{left:129.095987px;}
.xb{left:138.275987px;}
.xa{left:140.075987px;}
.xe{left:146.015987px;}
.xf{left:158.249987px;}
.x28{left:165.629987px;}
.x2c{left:225.210000px;}
.x10{left:227.009987px;}
.x6{left:231.509987px;}
.x8{left:237.989987px;}
.x11{left:239.609987px;}
.x23{left:254.054987px;}
.x12{left:301.934987px;}
.x13{left:314.534987px;}
.x2d{left:339.015000px;}
.x14{left:356.474987px;}
.x15{left:368.714987px;}
.x24{left:370.154987px;}
.x27{left:372.314987px;}
.x16{left:376.634987px;}
.x7{left:387.614987px;}
.x17{left:389.234987px;}
.x36{left:394.274987px;}
.x29{left:451.904987px;}
.x18{left:481.064987px;}
.x19{left:493.304987px;}
.x1{left:496.365000px;}
.x2e{left:565.665000px;}
.x1a{left:601.169987px;}
.x1b{left:613.409987px;}
.x1c{left:645.269987px;}
.x1d{left:657.869987px;}
.x2f{left:679.470000px;}
.x1e{left:681.809987px;}
.x1f{left:694.049987px;}
.x22{left:766.979987px;}
.x20{left:771.119987px;}
.x25{left:774.899987px;}
.x21{left:783.539987px;}
.x26{left:789.659987px;}
.x35{left:808.019987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls25{letter-spacing:-2.192000pt;}
.lsf{letter-spacing:-2.176000pt;}
.ls26{letter-spacing:-2.016000pt;}
.ls2a{letter-spacing:-1.920000pt;}
.ls21{letter-spacing:-1.408000pt;}
.ls3{letter-spacing:-1.280000pt;}
.lsa{letter-spacing:-1.152000pt;}
.ls20{letter-spacing:-1.088000pt;}
.ls14{letter-spacing:-0.960000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls1f{letter-spacing:-0.384000pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls18{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:-0.016640pt;}
.ls2{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.192000pt;}
.ls12{letter-spacing:0.231040pt;}
.ls7{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.384000pt;}
.ls27{letter-spacing:0.512000pt;}
.ls6{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.704000pt;}
.ls1b{letter-spacing:0.746667pt;}
.ls22{letter-spacing:0.896000pt;}
.ls24{letter-spacing:1.280000pt;}
.ls1e{letter-spacing:1.920000pt;}
.ls1a{letter-spacing:2.560000pt;}
.ls1d{letter-spacing:3.840000pt;}
.ls1c{letter-spacing:5.760000pt;}
.ls16{letter-spacing:7.018667pt;}
.ls19{letter-spacing:8.320000pt;}
.ls29{letter-spacing:9.600000pt;}
.ls28{letter-spacing:10.400000pt;}
.ls23{letter-spacing:12.160000pt;}
.lsb{letter-spacing:14.208000pt;}
.lse{letter-spacing:30.208000pt;}
.ws21{word-spacing:-64.000000pt;}
.ws3{word-spacing:-21.600000pt;}
.ws2{word-spacing:-21.263360pt;}
.ws4{word-spacing:-19.040000pt;}
.ws1d{word-spacing:-16.896000pt;}
.ws12{word-spacing:-16.704000pt;}
.ws5{word-spacing:-16.640000pt;}
.ws20{word-spacing:-16.512000pt;}
.wsd{word-spacing:-16.384000pt;}
.ws7{word-spacing:-16.256000pt;}
.ws19{word-spacing:-16.192000pt;}
.wsa{word-spacing:-16.128000pt;}
.wse{word-spacing:-16.064000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws18{word-spacing:-15.936000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws11{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws1a{word-spacing:-15.616000pt;}
.ws10{word-spacing:-15.360000pt;}
.ws1b{word-spacing:-14.912000pt;}
.wsb{word-spacing:-14.848000pt;}
.ws17{word-spacing:-14.720000pt;}
.ws1c{word-spacing:-14.592000pt;}
.ws1{word-spacing:-14.080000pt;}
.wsf{word-spacing:-13.824000pt;}
.ws15{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.440000pt;}
.ws13{word-spacing:-13.280000pt;}
.ws14{word-spacing:-12.960000pt;}
.ws1f{word-spacing:-12.704000pt;}
.ws1e{word-spacing:-12.528000pt;}
.ws16{word-spacing:-12.320000pt;}
.wsc{word-spacing:0.000000pt;}
._28{margin-left:-8.177920pt;}
._3{margin-left:-4.160000pt;}
._14{margin-left:-2.965333pt;}
._1{margin-left:-2.001920pt;}
._0{margin-left:-1.059840pt;}
._2{width:1.377280pt;}
._4{width:2.567253pt;}
._5{width:3.543467pt;}
._6{width:4.736853pt;}
._b{width:6.143147pt;}
._1d{width:7.106560pt;}
._7{width:8.128000pt;}
._1b{width:9.024000pt;}
._9{width:9.920000pt;}
._a{width:11.105280pt;}
._15{width:11.998720pt;}
._8{width:13.696000pt;}
._c{width:15.011840pt;}
._11{width:16.896000pt;}
._12{width:17.920000pt;}
._1f{width:18.996053pt;}
._1e{width:20.295680pt;}
._18{width:21.312000pt;}
._19{width:22.208000pt;}
._24{width:23.142400pt;}
._13{width:24.099840pt;}
._d{width:25.024000pt;}
._e{width:26.270720pt;}
._16{width:27.328000pt;}
._17{width:28.254720pt;}
._1a{width:29.248000pt;}
._25{width:30.400000pt;}
._1c{width:31.680000pt;}
._20{width:32.591787pt;}
._f{width:35.050667pt;}
._10{width:36.311893pt;}
._22{width:37.232640pt;}
._21{width:38.243840pt;}
._23{width:42.176000pt;}
._2c{width:48.000000pt;}
._27{width:58.666667pt;}
._2b{width:85.932800pt;}
._26{width:96.641280pt;}
._2d{width:117.085867pt;}
._29{width:122.432000pt;}
._2a{width:138.989227pt;}
._2e{width:159.450453pt;}
.fs7{font-size:26.880000pt;}
.fs5{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ya7{bottom:2.880000pt;}
.ya5{bottom:3.520000pt;}
.y3{bottom:4.640000pt;}
.y2{bottom:24.000000pt;}
.y6{bottom:51.360000pt;}
.y5{bottom:55.360000pt;}
.y108{bottom:78.240000pt;}
.y7f{bottom:81.280000pt;}
.y60{bottom:81.440000pt;}
.y38{bottom:87.680000pt;}
.yb7{bottom:90.080000pt;}
.yd9{bottom:90.400000pt;}
.y95{bottom:92.800000pt;}
.y107{bottom:96.480000pt;}
.yc5{bottom:99.680000pt;}
.y37{bottom:106.080000pt;}
.y7e{bottom:108.800000pt;}
.y5f{bottom:109.120000pt;}
.y106{bottom:114.880000pt;}
.y94{bottom:115.840000pt;}
.yb6{bottom:117.600000pt;}
.ycb{bottom:118.080000pt;}
.y36{bottom:124.512000pt;}
.yc1{bottom:125.632000pt;}
.yc4{bottom:127.232000pt;}
.y105{bottom:133.312000pt;}
.y7d{bottom:136.506667pt;}
.y5e{bottom:136.666667pt;}
.y93{bottom:138.906667pt;}
.y9c{bottom:139.226667pt;}
.y35{bottom:142.906667pt;}
.yb5{bottom:145.306667pt;}
.yca{bottom:145.626667pt;}
.y104{bottom:151.706667pt;}
.yc0{bottom:153.146667pt;}
.y9b{bottom:154.586667pt;}
.yc3{bottom:154.906667pt;}
.y34{bottom:161.306667pt;}
.y92{bottom:161.786667pt;}
.y7c{bottom:164.026667pt;}
.y5d{bottom:164.346667pt;}
.y9a{bottom:167.066667pt;}
.y103{bottom:170.106667pt;}
.yb4{bottom:172.826667pt;}
.yc9{bottom:173.306667pt;}
.y33{bottom:179.706667pt;}
.ybf{bottom:180.826667pt;}
.yc2{bottom:182.426667pt;}
.y91{bottom:184.826667pt;}
.y102{bottom:188.506667pt;}
.y7b{bottom:191.706667pt;}
.y5c{bottom:191.866667pt;}
.y32{bottom:198.106667pt;}
.yb3{bottom:200.506667pt;}
.yc8{bottom:200.826667pt;}
.y101{bottom:206.906667pt;}
.y90{bottom:207.866667pt;}
.ybe{bottom:208.346667pt;}
.yba{bottom:210.106667pt;}
.y31{bottom:216.506667pt;}
.y7a{bottom:219.226667pt;}
.y5b{bottom:219.546667pt;}
.y100{bottom:225.306667pt;}
.ybd{bottom:226.106667pt;}
.yb2{bottom:228.026667pt;}
.y83{bottom:228.506667pt;}
.y8f{bottom:230.906667pt;}
.y30{bottom:234.906667pt;}
.yb9{bottom:237.626667pt;}
.ybc{bottom:241.466667pt;}
.yff{bottom:243.706667pt;}
.y79{bottom:246.906667pt;}
.y5a{bottom:247.066667pt;}
.y2f{bottom:253.306667pt;}
.ybb{bottom:253.946667pt;}
.yb1{bottom:255.706667pt;}
.y82{bottom:256.026667pt;}
.yfe{bottom:262.106667pt;}
.y78{bottom:265.306667pt;}
.y2e{bottom:271.706667pt;}
.yd8{bottom:274.426667pt;}
.y59{bottom:274.746667pt;}
.yfd{bottom:280.506667pt;}
.yb0{bottom:283.226667pt;}
.y77{bottom:283.706667pt;}
.y2d{bottom:290.106667pt;}
.yb8{bottom:292.826667pt;}
.yfc{bottom:298.906667pt;}
.y76{bottom:302.106667pt;}
.y58{bottom:302.266667pt;}
.y2c{bottom:308.506667pt;}
.yaf{bottom:310.906667pt;}
.y81{bottom:311.226667pt;}
.yfb{bottom:317.306667pt;}
.y75{bottom:320.506667pt;}
.y2b{bottom:326.906667pt;}
.y80{bottom:329.626667pt;}
.y57{bottom:329.946667pt;}
.yfa{bottom:335.706667pt;}
.yae{bottom:338.426667pt;}
.y8e{bottom:338.906667pt;}
.y2a{bottom:345.346667pt;}
.y74{bottom:348.066667pt;}
.yf9{bottom:354.146667pt;}
.y56{bottom:357.506667pt;}
.y29{bottom:363.746667pt;}
.yad{bottom:366.146667pt;}
.y8d{bottom:366.466667pt;}
.yf8{bottom:372.546667pt;}
.y73{bottom:375.746667pt;}
.y28{bottom:382.146667pt;}
.yd7{bottom:384.866667pt;}
.y55{bottom:385.186667pt;}
.yf7{bottom:390.946667pt;}
.yac{bottom:393.666667pt;}
.y8c{bottom:393.986667pt;}
.y27{bottom:400.546667pt;}
.y72{bottom:403.266667pt;}
.yf6{bottom:409.346667pt;}
.yab{bottom:411.426667pt;}
.y54{bottom:412.706667pt;}
.y26{bottom:418.946667pt;}
.y8b{bottom:421.666667pt;}
.yaa{bottom:424.546667pt;}
.yf5{bottom:427.746667pt;}
.y71{bottom:430.786667pt;}
.y25{bottom:437.346667pt;}
.ya9{bottom:439.906667pt;}
.yd6{bottom:440.066667pt;}
.y53{bottom:440.226667pt;}
.yf4{bottom:446.146667pt;}
.y8a{bottom:449.186667pt;}
.ya8{bottom:455.266667pt;}
.y24{bottom:455.746667pt;}
.y70{bottom:458.466667pt;}
.yf3{bottom:464.546667pt;}
.y52{bottom:467.906667pt;}
.ya6{bottom:470.626667pt;}
.y23{bottom:474.146667pt;}
.y89{bottom:476.866667pt;}
.yf2{bottom:482.786667pt;}
.y6f{bottom:485.986667pt;}
.ya4{bottom:486.626667pt;}
.y22{bottom:492.546667pt;}
.yd5{bottom:495.266667pt;}
.y51{bottom:495.426667pt;}
.yf1{bottom:499.906667pt;}
.y88{bottom:504.386667pt;}
.ya3{bottom:505.346667pt;}
.y21{bottom:510.946667pt;}
.y6e{bottom:513.666667pt;}
.ya2{bottom:514.466667pt;}
.yf0{bottom:518.306667pt;}
.y50{bottom:523.106667pt;}
.y20{bottom:529.346667pt;}
.y87{bottom:532.066667pt;}
.ya1{bottom:536.386667pt;}
.yef{bottom:536.706667pt;}
.y6d{bottom:541.186667pt;}
.y1f{bottom:549.826667pt;}
.yd4{bottom:550.466667pt;}
.y4f{bottom:550.626667pt;}
.yee{bottom:555.106667pt;}
.ya0{bottom:557.186667pt;}
.y86{bottom:559.586667pt;}
.y1e{bottom:565.826667pt;}
.y6c{bottom:568.893333pt;}
.y9f{bottom:571.293333pt;}
.yed{bottom:573.533333pt;}
.y4e{bottom:578.333333pt;}
.y99{bottom:583.773333pt;}
.y1d{bottom:584.253333pt;}
.y9e{bottom:586.653333pt;}
.y85{bottom:587.293333pt;}
.yec{bottom:591.933333pt;}
.y6b{bottom:596.413333pt;}
.y9d{bottom:599.133333pt;}
.y98{bottom:601.533333pt;}
.y1c{bottom:602.653333pt;}
.y84{bottom:605.693333pt;}
.y4d{bottom:605.853333pt;}
.yeb{bottom:610.333333pt;}
.yc7{bottom:614.813333pt;}
.y97{bottom:616.893333pt;}
.y1b{bottom:621.053333pt;}
.y6a{bottom:624.093333pt;}
.yea{bottom:628.733333pt;}
.y96{bottom:629.373333pt;}
.yc6{bottom:633.213333pt;}
.y4c{bottom:633.533333pt;}
.y1a{bottom:639.453333pt;}
.yd3{bottom:642.493333pt;}
.ye9{bottom:647.133333pt;}
.y69{bottom:651.613333pt;}
.y19{bottom:657.853333pt;}
.yd2{bottom:660.893333pt;}
.y4b{bottom:661.053333pt;}
.ye8{bottom:665.533333pt;}
.y18{bottom:676.253333pt;}
.y68{bottom:679.293333pt;}
.ye7{bottom:683.933333pt;}
.y4a{bottom:688.733333pt;}
.y17{bottom:694.653333pt;}
.yd1{bottom:697.693333pt;}
.ye6{bottom:702.333333pt;}
.y67{bottom:706.813333pt;}
.y49{bottom:707.133333pt;}
.y16{bottom:713.053333pt;}
.yd0{bottom:716.093333pt;}
.ye5{bottom:720.733333pt;}
.y48{bottom:725.533333pt;}
.y15{bottom:731.453333pt;}
.y66{bottom:734.493333pt;}
.ye4{bottom:739.133333pt;}
.y14{bottom:749.853333pt;}
.ycf{bottom:752.893333pt;}
.y47{bottom:753.053333pt;}
.ye3{bottom:757.533333pt;}
.y65{bottom:762.013333pt;}
.y13{bottom:768.253333pt;}
.yce{bottom:771.293333pt;}
.y46{bottom:773.693333pt;}
.ye2{bottom:775.933333pt;}
.y12{bottom:786.653333pt;}
.y45{bottom:789.693333pt;}
.ye1{bottom:794.373333pt;}
.y11{bottom:805.093333pt;}
.y44{bottom:808.133333pt;}
.ye0{bottom:812.773333pt;}
.y64{bottom:817.253333pt;}
.y10{bottom:823.493333pt;}
.y43{bottom:826.533333pt;}
.ydf{bottom:831.173333pt;}
.yf{bottom:841.893333pt;}
.y42{bottom:844.933333pt;}
.yde{bottom:849.573333pt;}
.ye{bottom:860.293333pt;}
.y41{bottom:863.333333pt;}
.ydd{bottom:867.973333pt;}
.y63{bottom:872.453333pt;}
.yd{bottom:878.693333pt;}
.y40{bottom:881.733333pt;}
.ydc{bottom:886.053333pt;}
.ycd{bottom:890.853333pt;}
.yc{bottom:897.093333pt;}
.y3f{bottom:900.133333pt;}
.ydb{bottom:902.853333pt;}
.yb{bottom:915.493333pt;}
.y3e{bottom:918.533333pt;}
.yda{bottom:919.813333pt;}
.y62{bottom:927.653333pt;}
.ya{bottom:934.373333pt;}
.y3d{bottom:936.933333pt;}
.ycc{bottom:946.053333pt;}
.y3c{bottom:955.333333pt;}
.y9{bottom:956.453333pt;}
.y3b{bottom:973.733333pt;}
.y8{bottom:980.933333pt;}
.y61{bottom:982.853333pt;}
.y3a{bottom:992.133333pt;}
.y7{bottom:1005.573333pt;}
.y39{bottom:1010.533333pt;}
.y1{bottom:1035.840000pt;}
.y4{bottom:1074.720000pt;}
.he{height:15.200000pt;}
.hf{height:15.360000pt;}
.hd{height:16.640000pt;}
.hc{height:24.097500pt;}
.h2{height:38.240000pt;}
.hb{height:43.031250pt;}
.ha{height:47.180312pt;}
.h4{height:47.621250pt;}
.h3{height:52.785000pt;}
.h7{height:56.843750pt;}
.h8{height:57.375000pt;}
.h9{height:62.761250pt;}
.h6{height:67.128750pt;}
.h5{height:75.602187pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w7{width:100.640000pt;}
.w6{width:100.832000pt;}
.w8{width:100.992000pt;}
.w5{width:101.152000pt;}
.w4{width:101.600000pt;}
.w2{width:277.506667pt;}
.w1{width:794.000000pt;}
.w3{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x2{left:1.280000pt;}
.x34{left:13.120000pt;}
.x31{left:15.360000pt;}
.x30{left:29.760000pt;}
.x32{left:32.680000pt;}
.x33{left:35.880000pt;}
.x2b{left:37.914667pt;}
.x4{left:75.551988pt;}
.x5{left:79.071988pt;}
.x3{left:93.480000pt;}
.x2a{left:98.592000pt;}
.xc{left:104.031988pt;}
.x9{left:113.311988pt;}
.xd{left:114.751988pt;}
.xb{left:122.911988pt;}
.xa{left:124.511988pt;}
.xe{left:129.791988pt;}
.xf{left:140.666655pt;}
.x28{left:147.226655pt;}
.x2c{left:200.186667pt;}
.x10{left:201.786655pt;}
.x6{left:205.786655pt;}
.x8{left:211.546655pt;}
.x11{left:212.986655pt;}
.x23{left:225.826655pt;}
.x12{left:268.386655pt;}
.x13{left:279.586655pt;}
.x2d{left:301.346667pt;}
.x14{left:316.866655pt;}
.x15{left:327.746655pt;}
.x24{left:329.026655pt;}
.x27{left:330.946655pt;}
.x16{left:334.786655pt;}
.x7{left:344.546655pt;}
.x17{left:345.986655pt;}
.x36{left:350.466655pt;}
.x29{left:401.693321pt;}
.x18{left:427.613321pt;}
.x19{left:438.493321pt;}
.x1{left:441.213333pt;}
.x2e{left:502.813333pt;}
.x1a{left:534.373321pt;}
.x1b{left:545.253321pt;}
.x1c{left:573.573322pt;}
.x1d{left:584.773321pt;}
.x2f{left:603.973333pt;}
.x1e{left:606.053322pt;}
.x1f{left:616.933321pt;}
.x22{left:681.759988pt;}
.x20{left:685.439988pt;}
.x25{left:688.799988pt;}
.x21{left:696.479988pt;}
.x26{left:701.919988pt;}
.x35{left:718.239988pt;}
}




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