
    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_877c2b17aad5af7835c73876.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_c8a11bffacad3256805e9d0e.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_76ed77c5e12d409996552929.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_a463b7914e688e49fee8c4ea.woff')format("woff");}.ff9{font-family:ff9;line-height:0.976562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_0573801b7b5aa430ae53a452.woff')format("woff");}.ffb{font-family:ffb;line-height:0.976562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_81cdb54559ceaafc39cbed9d.woff')format("woff");}.ffc{font-family:ffc;line-height:0.942383;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;}
.lsf{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.072000px;}
.ls2{letter-spacing:-0.058320px;}
.ls5{letter-spacing:-0.045360px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.lsa{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.305400px;}
.ls12{letter-spacing:0.504000px;}
.lsb{letter-spacing:46.224000px;}
.lsc{letter-spacing:49.824000px;}
.ls9{letter-spacing:65.664000px;}
.lsd{letter-spacing:69.984000px;}
.ls7{letter-spacing:85.824000px;}
.lse{letter-spacing:197.976000px;}
.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;}
}
.ws1{word-spacing:-18.216000px;}
.ws6{word-spacing:-18.144000px;}
.wsa{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.928000px;}
.ws7{word-spacing:-17.784000px;}
.ws9{word-spacing:-17.712000px;}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-13.447440px;}
.ws4{word-spacing:-12.014640px;}
.ws5{word-spacing:0.000000px;}
._3{margin-left:-659.636218px;}
._a{margin-left:-4.968000px;}
._8{margin-left:-3.960000px;}
._7{margin-left:-2.880000px;}
._0{margin-left:-1.243142px;}
._1{width:1.238842px;}
._10{width:2.538317px;}
._11{width:3.564000px;}
._12{width:4.939142px;}
._d{width:6.024000px;}
._13{width:7.043769px;}
._e{width:8.094115px;}
._5{width:9.504000px;}
._6{width:11.088000px;}
._c{width:12.816000px;}
._16{width:13.968000px;}
._b{width:15.768000px;}
._f{width:16.833158px;}
._9{width:19.209158px;}
._14{width:20.353574px;}
._22{width:21.960000px;}
._21{width:23.184000px;}
._23{width:24.859142px;}
._17{width:25.992000px;}
._18{width:27.057158px;}
._1f{width:28.603142px;}
._1b{width:29.952000px;}
._1c{width:31.377158px;}
._20{width:33.768000px;}
._1d{width:35.280000px;}
._1e{width:36.576000px;}
._24{width:38.232000px;}
._19{width:40.104000px;}
._1a{width:41.340000px;}
._29{width:59.472000px;}
._2{width:146.082865px;}
._15{width:197.976000px;}
._27{width:238.680000px;}
._28{width:239.904000px;}
._26{width:274.104000px;}
._4{width:432.577920px;}
._25{width:846.520301px;}
.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);}
.fs6{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:56.920429px;}
.fs3{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:88.795869px;}
.y0{bottom:0.000000px;}
.y4{bottom:68.580000px;}
.y8c{bottom:114.156000px;}
.yc6{bottom:115.776000px;}
.y9c{bottom:118.476000px;}
.y9f{bottom:121.716000px;}
.y13d{bottom:126.396000px;}
.y17f{bottom:128.736000px;}
.ydf{bottom:129.636000px;}
.y38{bottom:130.716000px;}
.y8b{bottom:134.856000px;}
.yff{bottom:135.216000px;}
.yc5{bottom:136.476000px;}
.y12d{bottom:138.816000px;}
.y9b{bottom:139.176000px;}
.y129{bottom:139.536000px;}
.y65{bottom:139.716000px;}
.y9e{bottom:142.416000px;}
.y17e{bottom:149.436000px;}
.y13c{bottom:150.150000px;}
.yde{bottom:150.330000px;}
.y37{bottom:151.410000px;}
.y8a{bottom:155.550000px;}
.yc4{bottom:157.170000px;}
.y9a{bottom:159.870000px;}
.y128{bottom:160.230000px;}
.y64{bottom:160.410000px;}
.y9d{bottom:163.110000px;}
.y17d{bottom:170.130000px;}
.y1a0{bottom:170.310000px;}
.ydd{bottom:171.030000px;}
.y36{bottom:172.110000px;}
.yfe{bottom:173.910000px;}
.y13b{bottom:174.090000px;}
.y89{bottom:176.250000px;}
.yc3{bottom:177.870000px;}
.y99{bottom:180.570000px;}
.y127{bottom:180.930000px;}
.y63{bottom:181.110000px;}
.ya8{bottom:183.810000px;}
.y17c{bottom:190.830000px;}
.y19f{bottom:191.010000px;}
.y35{bottom:192.810000px;}
.y88{bottom:196.950000px;}
.y13a{bottom:197.850000px;}
.yc2{bottom:198.570000px;}
.y98{bottom:201.270000px;}
.y126{bottom:201.630000px;}
.y62{bottom:201.810000px;}
.y17b{bottom:211.530000px;}
.y19e{bottom:211.710000px;}
.ydc{bottom:212.610000px;}
.y34{bottom:213.510000px;}
.y87{bottom:217.650000px;}
.yc1{bottom:219.270000px;}
.y139{bottom:221.610000px;}
.y12c{bottom:222.150000px;}
.y125{bottom:222.330000px;}
.y61{bottom:222.510000px;}
.y17a{bottom:232.230000px;}
.y19d{bottom:232.410000px;}
.y33{bottom:234.210000px;}
.y86{bottom:238.350000px;}
.yc0{bottom:239.970000px;}
.y97{bottom:242.850000px;}
.y124{bottom:243.030000px;}
.y60{bottom:243.210000px;}
.yfd{bottom:251.310000px;}
.y179{bottom:252.930000px;}
.y19c{bottom:253.110000px;}
.ydb{bottom:254.370000px;}
.y32{bottom:254.910000px;}
.y85{bottom:259.050000px;}
.y138{bottom:260.310000px;}
.ybf{bottom:260.670000px;}
.y5f{bottom:263.910000px;}
.yfc{bottom:272.010000px;}
.y178{bottom:273.630000px;}
.y19b{bottom:273.810000px;}
.yda{bottom:275.070000px;}
.y31{bottom:275.610000px;}
.y137{bottom:281.010000px;}
.ybe{bottom:281.370000px;}
.y123{bottom:281.550000px;}
.y5e{bottom:284.610000px;}
.yfb{bottom:292.710000px;}
.y177{bottom:294.330000px;}
.y19a{bottom:294.510000px;}
.yd9{bottom:295.770000px;}
.y30{bottom:296.310000px;}
.y84{bottom:300.630000px;}
.y122{bottom:302.250000px;}
.y5d{bottom:305.310000px;}
.yfa{bottom:313.410000px;}
.y176{bottom:315.030000px;}
.y199{bottom:315.210000px;}
.yd8{bottom:316.470000px;}
.y2f{bottom:317.010000px;}
.ybd{bottom:320.070000px;}
.y136{bottom:322.590000px;}
.y121{bottom:322.950000px;}
.y5c{bottom:326.010000px;}
.yf9{bottom:334.110000px;}
.y175{bottom:335.550000px;}
.y198{bottom:335.910000px;}
.yd7{bottom:337.215000px;}
.y2e{bottom:337.755000px;}
.ybc{bottom:340.815000px;}
.y83{bottom:342.435000px;}
.y120{bottom:343.695000px;}
.y5b{bottom:346.755000px;}
.yf8{bottom:354.855000px;}
.y174{bottom:356.295000px;}
.y197{bottom:356.655000px;}
.yd6{bottom:357.915000px;}
.y2d{bottom:358.455000px;}
.ybb{bottom:361.515000px;}
.y82{bottom:363.135000px;}
.y11f{bottom:364.395000px;}
.y96{bottom:367.455000px;}
.yf7{bottom:375.555000px;}
.y173{bottom:376.995000px;}
.y196{bottom:377.355000px;}
.yd5{bottom:378.615000px;}
.y2c{bottom:379.155000px;}
.yba{bottom:382.215000px;}
.y81{bottom:383.835000px;}
.y11e{bottom:385.095000px;}
.y5a{bottom:385.455000px;}
.y95{bottom:388.155000px;}
.yf6{bottom:396.255000px;}
.y172{bottom:397.695000px;}
.y195{bottom:398.055000px;}
.yd4{bottom:399.315000px;}
.y2b{bottom:399.855000px;}
.yb9{bottom:402.915000px;}
.y80{bottom:404.535000px;}
.y11d{bottom:405.795000px;}
.y59{bottom:406.155000px;}
.y94{bottom:408.855000px;}
.yf5{bottom:416.955000px;}
.y171{bottom:418.395000px;}
.y194{bottom:418.755000px;}
.yd3{bottom:420.015000px;}
.y2a{bottom:420.555000px;}
.yb8{bottom:423.615000px;}
.y7f{bottom:425.235000px;}
.y11c{bottom:426.495000px;}
.y58{bottom:426.855000px;}
.y15b{bottom:429.195000px;}
.y93{bottom:429.555000px;}
.yf4{bottom:437.655000px;}
.y170{bottom:439.095000px;}
.y193{bottom:439.455000px;}
.yd2{bottom:440.715000px;}
.y29{bottom:440.895000px;}
.yb7{bottom:444.315000px;}
.y7e{bottom:445.935000px;}
.y11b{bottom:447.195000px;}
.y57{bottom:447.555000px;}
.y92{bottom:450.255000px;}
.y15a{bottom:452.955000px;}
.yf3{bottom:458.355000px;}
.y16f{bottom:459.795000px;}
.y28{bottom:459.975000px;}
.y192{bottom:460.155000px;}
.yb6{bottom:465.015000px;}
.y7d{bottom:466.635000px;}
.y11a{bottom:467.895000px;}
.y56{bottom:468.255000px;}
.y91{bottom:470.955000px;}
.y159{bottom:476.715000px;}
.y27{bottom:478.875000px;}
.y16e{bottom:480.495000px;}
.y191{bottom:480.855000px;}
.yd1{bottom:482.295000px;}
.yb5{bottom:485.715000px;}
.y7c{bottom:487.335000px;}
.y119{bottom:488.595000px;}
.y55{bottom:488.955000px;}
.y26{bottom:497.775000px;}
.yf2{bottom:499.935000px;}
.y158{bottom:500.475000px;}
.y16d{bottom:501.195000px;}
.y190{bottom:501.555000px;}
.yb4{bottom:506.415000px;}
.y7b{bottom:508.035000px;}
.y135{bottom:509.295000px;}
.y54{bottom:509.655000px;}
.y25{bottom:516.855000px;}
.y16c{bottom:521.895000px;}
.y18f{bottom:522.255000px;}
.yd0{bottom:524.055000px;}
.y157{bottom:524.415000px;}
.yb3{bottom:527.115000px;}
.y118{bottom:527.295000px;}
.y7a{bottom:528.735000px;}
.y134{bottom:529.995000px;}
.y53{bottom:530.355000px;}
.y24{bottom:535.755000px;}
.yf1{bottom:541.695000px;}
.y16b{bottom:542.595000px;}
.y18e{bottom:542.955000px;}
.ycf{bottom:544.755000px;}
.y117{bottom:547.995000px;}
.y156{bottom:548.175000px;}
.y133{bottom:550.695000px;}
.y52{bottom:551.055000px;}
.y23{bottom:555.015000px;}
.yf0{bottom:562.395000px;}
.y16a{bottom:563.295000px;}
.y18d{bottom:563.655000px;}
.yce{bottom:565.455000px;}
.yb2{bottom:565.815000px;}
.y79{bottom:567.435000px;}
.y116{bottom:568.695000px;}
.ya7{bottom:569.055000px;}
.y51{bottom:571.755000px;}
.y155{bottom:571.935000px;}
.y22{bottom:575.715000px;}
.yef{bottom:583.095000px;}
.y169{bottom:583.995000px;}
.y18c{bottom:584.355000px;}
.ycd{bottom:586.155000px;}
.yb1{bottom:586.515000px;}
.y115{bottom:589.395000px;}
.ya6{bottom:589.755000px;}
.y50{bottom:592.455000px;}
.y154{bottom:595.695000px;}
.y21{bottom:596.235000px;}
.yee{bottom:603.825000px;}
.y168{bottom:604.725000px;}
.y18b{bottom:605.085000px;}
.ycc{bottom:606.885000px;}
.yb0{bottom:607.245000px;}
.y78{bottom:609.225000px;}
.y114{bottom:610.125000px;}
.ya5{bottom:610.485000px;}
.y90{bottom:613.185000px;}
.y20{bottom:615.165000px;}
.y153{bottom:619.665000px;}
.yed{bottom:624.525000px;}
.y167{bottom:625.425000px;}
.y18a{bottom:625.785000px;}
.ycb{bottom:627.585000px;}
.yaf{bottom:627.945000px;}
.y113{bottom:630.825000px;}
.y4f{bottom:631.185000px;}
.y77{bottom:632.985000px;}
.y8f{bottom:633.885000px;}
.y1f{bottom:634.065000px;}
.y152{bottom:643.425000px;}
.yec{bottom:645.225000px;}
.y166{bottom:646.125000px;}
.y189{bottom:646.485000px;}
.yca{bottom:648.285000px;}
.yae{bottom:648.645000px;}
.y112{bottom:651.525000px;}
.y4e{bottom:651.885000px;}
.y1e{bottom:653.145000px;}
.y8e{bottom:654.585000px;}
.y76{bottom:656.925000px;}
.yeb{bottom:665.925000px;}
.y165{bottom:666.825000px;}
.y151{bottom:667.185000px;}
.yc9{bottom:668.985000px;}
.yad{bottom:669.345000px;}
.y1d{bottom:672.045000px;}
.y111{bottom:672.225000px;}
.y4d{bottom:672.585000px;}
.y75{bottom:680.685000px;}
.yea{bottom:686.625000px;}
.y164{bottom:687.525000px;}
.y188{bottom:687.885000px;}
.yc8{bottom:689.685000px;}
.yac{bottom:690.045000px;}
.y150{bottom:690.945000px;}
.y1c{bottom:691.305000px;}
.y110{bottom:692.925000px;}
.y4c{bottom:693.285000px;}
.y74{bottom:704.445000px;}
.y163{bottom:708.225000px;}
.y187{bottom:708.585000px;}
.yab{bottom:710.745000px;}
.y1b{bottom:712.005000px;}
.y132{bottom:713.625000px;}
.y4b{bottom:713.985000px;}
.y14f{bottom:714.705000px;}
.y73{bottom:728.205000px;}
.ye9{bottom:728.385000px;}
.y162{bottom:728.925000px;}
.y186{bottom:729.285000px;}
.yaa{bottom:731.445000px;}
.y10f{bottom:731.625000px;}
.y1a{bottom:732.525000px;}
.y131{bottom:734.325000px;}
.y4a{bottom:734.685000px;}
.y14e{bottom:738.645000px;}
.y161{bottom:749.625000px;}
.y185{bottom:749.985000px;}
.y19{bottom:751.425000px;}
.y72{bottom:752.145000px;}
.y10e{bottom:752.325000px;}
.y130{bottom:755.025000px;}
.y49{bottom:755.385000px;}
.y14d{bottom:762.405000px;}
.ye8{bottom:770.145000px;}
.y18{bottom:770.325000px;}
.y184{bottom:770.685000px;}
.yc7{bottom:773.025000px;}
.ya4{bottom:773.385000px;}
.y48{bottom:776.085000px;}
.y14c{bottom:786.165000px;}
.y17{bottom:789.405000px;}
.y71{bottom:790.845000px;}
.y160{bottom:791.025000px;}
.y183{bottom:791.385000px;}
.ya9{bottom:793.725000px;}
.ya3{bottom:794.085000px;}
.y47{bottom:796.785000px;}
.y16{bottom:808.665000px;}
.y14b{bottom:809.925000px;}
.ye7{bottom:811.545000px;}
.y15f{bottom:811.725000px;}
.y182{bottom:812.085000px;}
.y10d{bottom:814.425000px;}
.ya2{bottom:814.785000px;}
.y46{bottom:817.485000px;}
.y15{bottom:829.365000px;}
.ye6{bottom:832.245000px;}
.y70{bottom:832.425000px;}
.y181{bottom:832.785000px;}
.y14a{bottom:833.865000px;}
.y10c{bottom:835.125000px;}
.ya1{bottom:835.485000px;}
.y45{bottom:838.185000px;}
.y14{bottom:849.705000px;}
.ye5{bottom:852.945000px;}
.y15e{bottom:853.125000px;}
.y180{bottom:853.485000px;}
.y10b{bottom:855.825000px;}
.ya0{bottom:856.185000px;}
.y149{bottom:857.625000px;}
.y8d{bottom:858.885000px;}
.y13{bottom:868.785000px;}
.ye4{bottom:873.690000px;}
.y15d{bottom:873.870000px;}
.y6f{bottom:874.230000px;}
.y10a{bottom:876.570000px;}
.y44{bottom:876.930000px;}
.y12b{bottom:879.630000px;}
.y148{bottom:881.430000px;}
.y12{bottom:887.730000px;}
.ye3{bottom:894.390000px;}
.y15c{bottom:894.570000px;}
.y6e{bottom:894.930000px;}
.y12f{bottom:897.270000px;}
.y43{bottom:897.630000px;}
.y12a{bottom:900.330000px;}
.y147{bottom:905.190000px;}
.y11{bottom:906.630000px;}
.ye2{bottom:915.090000px;}
.y109{bottom:915.270000px;}
.y6d{bottom:915.630000px;}
.y12e{bottom:917.970000px;}
.y42{bottom:918.330000px;}
.y10{bottom:925.890000px;}
.y146{bottom:929.130000px;}
.ye1{bottom:935.790000px;}
.y108{bottom:935.970000px;}
.y6c{bottom:936.330000px;}
.y41{bottom:939.030000px;}
.yf{bottom:946.590000px;}
.y145{bottom:952.890000px;}
.y107{bottom:956.670000px;}
.y6b{bottom:957.030000px;}
.y40{bottom:959.730000px;}
.ye{bottom:967.110000px;}
.y144{bottom:976.650000px;}
.ye0{bottom:977.370000px;}
.y6a{bottom:977.730000px;}
.y3f{bottom:980.430000px;}
.yd{bottom:986.010000px;}
.y106{bottom:998.070000px;}
.y69{bottom:998.430000px;}
.y143{bottom:1000.410000px;}
.y3e{bottom:1001.130000px;}
.yc{bottom:1005.090000px;}
.y105{bottom:1018.770000px;}
.y68{bottom:1019.130000px;}
.y3d{bottom:1021.830000px;}
.yb{bottom:1023.990000px;}
.y142{bottom:1024.350000px;}
.y104{bottom:1039.470000px;}
.y67{bottom:1039.830000px;}
.y3c{bottom:1042.530000px;}
.ya{bottom:1042.890000px;}
.y141{bottom:1048.110000px;}
.y103{bottom:1060.170000px;}
.y66{bottom:1060.530000px;}
.y9{bottom:1061.970000px;}
.y3b{bottom:1063.230000px;}
.y140{bottom:1071.870000px;}
.y102{bottom:1080.870000px;}
.y8{bottom:1081.230000px;}
.y3a{bottom:1083.930000px;}
.y13f{bottom:1095.630000px;}
.y101{bottom:1101.570000px;}
.y7{bottom:1101.930000px;}
.y39{bottom:1104.630000px;}
.y13e{bottom:1119.570000px;}
.y6{bottom:1122.630000px;}
.y100{bottom:1143.180000px;}
.y5{bottom:1143.360000px;}
.y3{bottom:1162.800000px;}
.y2{bottom:1180.260000px;}
.y1{bottom:1217.520000px;}
.h2{height:40.790039px;}
.h4{height:45.386260px;}
.h8{height:46.251562px;}
.h7{height:46.736719px;}
.h9{height:50.273438px;}
.h6{height:50.800781px;}
.hd{height:51.996094px;}
.hc{height:52.417969px;}
.hb{height:54.773438px;}
.h5{height:56.900391px;}
.ha{height:61.043203px;}
.h3{height:70.802565px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.035987px;}
.x2{left:142.775987px;}
.x1f{left:144.035987px;}
.x3{left:156.629987px;}
.x1e{left:162.029987px;}
.x12{left:183.629987px;}
.x20{left:228.089987px;}
.x21{left:264.089987px;}
.xa{left:274.169987px;}
.x1d{left:276.689987px;}
.xd{left:285.914987px;}
.x6{left:298.514987px;}
.x14{left:299.594987px;}
.x9{left:308.054987px;}
.x19{left:312.014987px;}
.x17{left:314.894987px;}
.x18{left:327.494987px;}
.x10{left:331.454987px;}
.x1a{left:333.434987px;}
.xe{left:337.934987px;}
.xf{left:340.634987px;}
.x11{left:342.614987px;}
.x1c{left:346.394987px;}
.x7{left:359.354987px;}
.x16{left:363.134987px;}
.xc{left:364.214987px;}
.x8{left:366.014987px;}
.x13{left:373.034987px;}
.x15{left:385.814987px;}
.x1b{left:420.734987px;}
.x5{left:436.034987px;}
.xb{left:439.094987px;}
.x4{left:446.474987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:-0.051840pt;}
.ls5{letter-spacing:-0.040320pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.lsa{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.271467pt;}
.ls12{letter-spacing:0.448000pt;}
.lsb{letter-spacing:41.088000pt;}
.lsc{letter-spacing:44.288000pt;}
.ls9{letter-spacing:58.368000pt;}
.lsd{letter-spacing:62.208000pt;}
.ls7{letter-spacing:76.288000pt;}
.lse{letter-spacing:175.978667pt;}
.ws1{word-spacing:-16.192000pt;}
.ws6{word-spacing:-16.128000pt;}
.wsa{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.936000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws9{word-spacing:-15.744000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-11.953280pt;}
.ws4{word-spacing:-10.679680pt;}
.ws5{word-spacing:0.000000pt;}
._3{margin-left:-586.343305pt;}
._a{margin-left:-4.416000pt;}
._8{margin-left:-3.520000pt;}
._7{margin-left:-2.560000pt;}
._0{margin-left:-1.105015pt;}
._1{width:1.101192pt;}
._10{width:2.256282pt;}
._11{width:3.168000pt;}
._12{width:4.390349pt;}
._d{width:5.354667pt;}
._13{width:6.261128pt;}
._e{width:7.194769pt;}
._5{width:8.448000pt;}
._6{width:9.856000pt;}
._c{width:11.392000pt;}
._16{width:12.416000pt;}
._b{width:14.016000pt;}
._f{width:14.962808pt;}
._9{width:17.074808pt;}
._14{width:18.092065pt;}
._22{width:19.520000pt;}
._21{width:20.608000pt;}
._23{width:22.097015pt;}
._17{width:23.104000pt;}
._18{width:24.050808pt;}
._1f{width:25.425015pt;}
._1b{width:26.624000pt;}
._1c{width:27.890808pt;}
._20{width:30.016000pt;}
._1d{width:31.360000pt;}
._1e{width:32.512000pt;}
._24{width:33.984000pt;}
._19{width:35.648000pt;}
._1a{width:36.746667pt;}
._29{width:52.864000pt;}
._2{width:129.851436pt;}
._15{width:175.978667pt;}
._27{width:212.160000pt;}
._28{width:213.248000pt;}
._26{width:243.648000pt;}
._4{width:384.513707pt;}
._25{width:752.462489pt;}
.fs6{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:50.595937pt;}
.fs3{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:78.929661pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:60.960000pt;}
.y8c{bottom:101.472000pt;}
.yc6{bottom:102.912000pt;}
.y9c{bottom:105.312000pt;}
.y9f{bottom:108.192000pt;}
.y13d{bottom:112.352000pt;}
.y17f{bottom:114.432000pt;}
.ydf{bottom:115.232000pt;}
.y38{bottom:116.192000pt;}
.y8b{bottom:119.872000pt;}
.yff{bottom:120.192000pt;}
.yc5{bottom:121.312000pt;}
.y12d{bottom:123.392000pt;}
.y9b{bottom:123.712000pt;}
.y129{bottom:124.032000pt;}
.y65{bottom:124.192000pt;}
.y9e{bottom:126.592000pt;}
.y17e{bottom:132.832000pt;}
.y13c{bottom:133.466667pt;}
.yde{bottom:133.626667pt;}
.y37{bottom:134.586667pt;}
.y8a{bottom:138.266667pt;}
.yc4{bottom:139.706667pt;}
.y9a{bottom:142.106667pt;}
.y128{bottom:142.426667pt;}
.y64{bottom:142.586667pt;}
.y9d{bottom:144.986667pt;}
.y17d{bottom:151.226667pt;}
.y1a0{bottom:151.386667pt;}
.ydd{bottom:152.026667pt;}
.y36{bottom:152.986667pt;}
.yfe{bottom:154.586667pt;}
.y13b{bottom:154.746667pt;}
.y89{bottom:156.666667pt;}
.yc3{bottom:158.106667pt;}
.y99{bottom:160.506667pt;}
.y127{bottom:160.826667pt;}
.y63{bottom:160.986667pt;}
.ya8{bottom:163.386667pt;}
.y17c{bottom:169.626667pt;}
.y19f{bottom:169.786667pt;}
.y35{bottom:171.386667pt;}
.y88{bottom:175.066667pt;}
.y13a{bottom:175.866667pt;}
.yc2{bottom:176.506667pt;}
.y98{bottom:178.906667pt;}
.y126{bottom:179.226667pt;}
.y62{bottom:179.386667pt;}
.y17b{bottom:188.026667pt;}
.y19e{bottom:188.186667pt;}
.ydc{bottom:188.986667pt;}
.y34{bottom:189.786667pt;}
.y87{bottom:193.466667pt;}
.yc1{bottom:194.906667pt;}
.y139{bottom:196.986667pt;}
.y12c{bottom:197.466667pt;}
.y125{bottom:197.626667pt;}
.y61{bottom:197.786667pt;}
.y17a{bottom:206.426667pt;}
.y19d{bottom:206.586667pt;}
.y33{bottom:208.186667pt;}
.y86{bottom:211.866667pt;}
.yc0{bottom:213.306667pt;}
.y97{bottom:215.866667pt;}
.y124{bottom:216.026667pt;}
.y60{bottom:216.186667pt;}
.yfd{bottom:223.386667pt;}
.y179{bottom:224.826667pt;}
.y19c{bottom:224.986667pt;}
.ydb{bottom:226.106667pt;}
.y32{bottom:226.586667pt;}
.y85{bottom:230.266667pt;}
.y138{bottom:231.386667pt;}
.ybf{bottom:231.706667pt;}
.y5f{bottom:234.586667pt;}
.yfc{bottom:241.786667pt;}
.y178{bottom:243.226667pt;}
.y19b{bottom:243.386667pt;}
.yda{bottom:244.506667pt;}
.y31{bottom:244.986667pt;}
.y137{bottom:249.786667pt;}
.ybe{bottom:250.106667pt;}
.y123{bottom:250.266667pt;}
.y5e{bottom:252.986667pt;}
.yfb{bottom:260.186667pt;}
.y177{bottom:261.626667pt;}
.y19a{bottom:261.786667pt;}
.yd9{bottom:262.906667pt;}
.y30{bottom:263.386667pt;}
.y84{bottom:267.226667pt;}
.y122{bottom:268.666667pt;}
.y5d{bottom:271.386667pt;}
.yfa{bottom:278.586667pt;}
.y176{bottom:280.026667pt;}
.y199{bottom:280.186667pt;}
.yd8{bottom:281.306667pt;}
.y2f{bottom:281.786667pt;}
.ybd{bottom:284.506667pt;}
.y136{bottom:286.746667pt;}
.y121{bottom:287.066667pt;}
.y5c{bottom:289.786667pt;}
.yf9{bottom:296.986667pt;}
.y175{bottom:298.266667pt;}
.y198{bottom:298.586667pt;}
.yd7{bottom:299.746667pt;}
.y2e{bottom:300.226667pt;}
.ybc{bottom:302.946667pt;}
.y83{bottom:304.386667pt;}
.y120{bottom:305.506667pt;}
.y5b{bottom:308.226667pt;}
.yf8{bottom:315.426667pt;}
.y174{bottom:316.706667pt;}
.y197{bottom:317.026667pt;}
.yd6{bottom:318.146667pt;}
.y2d{bottom:318.626667pt;}
.ybb{bottom:321.346667pt;}
.y82{bottom:322.786667pt;}
.y11f{bottom:323.906667pt;}
.y96{bottom:326.626667pt;}
.yf7{bottom:333.826667pt;}
.y173{bottom:335.106667pt;}
.y196{bottom:335.426667pt;}
.yd5{bottom:336.546667pt;}
.y2c{bottom:337.026667pt;}
.yba{bottom:339.746667pt;}
.y81{bottom:341.186667pt;}
.y11e{bottom:342.306667pt;}
.y5a{bottom:342.626667pt;}
.y95{bottom:345.026667pt;}
.yf6{bottom:352.226667pt;}
.y172{bottom:353.506667pt;}
.y195{bottom:353.826667pt;}
.yd4{bottom:354.946667pt;}
.y2b{bottom:355.426667pt;}
.yb9{bottom:358.146667pt;}
.y80{bottom:359.586667pt;}
.y11d{bottom:360.706667pt;}
.y59{bottom:361.026667pt;}
.y94{bottom:363.426667pt;}
.yf5{bottom:370.626667pt;}
.y171{bottom:371.906667pt;}
.y194{bottom:372.226667pt;}
.yd3{bottom:373.346667pt;}
.y2a{bottom:373.826667pt;}
.yb8{bottom:376.546667pt;}
.y7f{bottom:377.986667pt;}
.y11c{bottom:379.106667pt;}
.y58{bottom:379.426667pt;}
.y15b{bottom:381.506667pt;}
.y93{bottom:381.826667pt;}
.yf4{bottom:389.026667pt;}
.y170{bottom:390.306667pt;}
.y193{bottom:390.626667pt;}
.yd2{bottom:391.746667pt;}
.y29{bottom:391.906667pt;}
.yb7{bottom:394.946667pt;}
.y7e{bottom:396.386667pt;}
.y11b{bottom:397.506667pt;}
.y57{bottom:397.826667pt;}
.y92{bottom:400.226667pt;}
.y15a{bottom:402.626667pt;}
.yf3{bottom:407.426667pt;}
.y16f{bottom:408.706667pt;}
.y28{bottom:408.866667pt;}
.y192{bottom:409.026667pt;}
.yb6{bottom:413.346667pt;}
.y7d{bottom:414.786667pt;}
.y11a{bottom:415.906667pt;}
.y56{bottom:416.226667pt;}
.y91{bottom:418.626667pt;}
.y159{bottom:423.746667pt;}
.y27{bottom:425.666667pt;}
.y16e{bottom:427.106667pt;}
.y191{bottom:427.426667pt;}
.yd1{bottom:428.706667pt;}
.yb5{bottom:431.746667pt;}
.y7c{bottom:433.186667pt;}
.y119{bottom:434.306667pt;}
.y55{bottom:434.626667pt;}
.y26{bottom:442.466667pt;}
.yf2{bottom:444.386667pt;}
.y158{bottom:444.866667pt;}
.y16d{bottom:445.506667pt;}
.y190{bottom:445.826667pt;}
.yb4{bottom:450.146667pt;}
.y7b{bottom:451.586667pt;}
.y135{bottom:452.706667pt;}
.y54{bottom:453.026667pt;}
.y25{bottom:459.426667pt;}
.y16c{bottom:463.906667pt;}
.y18f{bottom:464.226667pt;}
.yd0{bottom:465.826667pt;}
.y157{bottom:466.146667pt;}
.yb3{bottom:468.546667pt;}
.y118{bottom:468.706667pt;}
.y7a{bottom:469.986667pt;}
.y134{bottom:471.106667pt;}
.y53{bottom:471.426667pt;}
.y24{bottom:476.226667pt;}
.yf1{bottom:481.506667pt;}
.y16b{bottom:482.306667pt;}
.y18e{bottom:482.626667pt;}
.ycf{bottom:484.226667pt;}
.y117{bottom:487.106667pt;}
.y156{bottom:487.266667pt;}
.y133{bottom:489.506667pt;}
.y52{bottom:489.826667pt;}
.y23{bottom:493.346667pt;}
.yf0{bottom:499.906667pt;}
.y16a{bottom:500.706667pt;}
.y18d{bottom:501.026667pt;}
.yce{bottom:502.626667pt;}
.yb2{bottom:502.946667pt;}
.y79{bottom:504.386667pt;}
.y116{bottom:505.506667pt;}
.ya7{bottom:505.826667pt;}
.y51{bottom:508.226667pt;}
.y155{bottom:508.386667pt;}
.y22{bottom:511.746667pt;}
.yef{bottom:518.306667pt;}
.y169{bottom:519.106667pt;}
.y18c{bottom:519.426667pt;}
.ycd{bottom:521.026667pt;}
.yb1{bottom:521.346667pt;}
.y115{bottom:523.906667pt;}
.ya6{bottom:524.226667pt;}
.y50{bottom:526.626667pt;}
.y154{bottom:529.506667pt;}
.y21{bottom:529.986667pt;}
.yee{bottom:536.733333pt;}
.y168{bottom:537.533333pt;}
.y18b{bottom:537.853333pt;}
.ycc{bottom:539.453333pt;}
.yb0{bottom:539.773333pt;}
.y78{bottom:541.533333pt;}
.y114{bottom:542.333333pt;}
.ya5{bottom:542.653333pt;}
.y90{bottom:545.053333pt;}
.y20{bottom:546.813333pt;}
.y153{bottom:550.813333pt;}
.yed{bottom:555.133333pt;}
.y167{bottom:555.933333pt;}
.y18a{bottom:556.253333pt;}
.ycb{bottom:557.853333pt;}
.yaf{bottom:558.173333pt;}
.y113{bottom:560.733333pt;}
.y4f{bottom:561.053333pt;}
.y77{bottom:562.653333pt;}
.y8f{bottom:563.453333pt;}
.y1f{bottom:563.613333pt;}
.y152{bottom:571.933333pt;}
.yec{bottom:573.533333pt;}
.y166{bottom:574.333333pt;}
.y189{bottom:574.653333pt;}
.yca{bottom:576.253333pt;}
.yae{bottom:576.573333pt;}
.y112{bottom:579.133333pt;}
.y4e{bottom:579.453333pt;}
.y1e{bottom:580.573333pt;}
.y8e{bottom:581.853333pt;}
.y76{bottom:583.933333pt;}
.yeb{bottom:591.933333pt;}
.y165{bottom:592.733333pt;}
.y151{bottom:593.053333pt;}
.yc9{bottom:594.653333pt;}
.yad{bottom:594.973333pt;}
.y1d{bottom:597.373333pt;}
.y111{bottom:597.533333pt;}
.y4d{bottom:597.853333pt;}
.y75{bottom:605.053333pt;}
.yea{bottom:610.333333pt;}
.y164{bottom:611.133333pt;}
.y188{bottom:611.453333pt;}
.yc8{bottom:613.053333pt;}
.yac{bottom:613.373333pt;}
.y150{bottom:614.173333pt;}
.y1c{bottom:614.493333pt;}
.y110{bottom:615.933333pt;}
.y4c{bottom:616.253333pt;}
.y74{bottom:626.173333pt;}
.y163{bottom:629.533333pt;}
.y187{bottom:629.853333pt;}
.yab{bottom:631.773333pt;}
.y1b{bottom:632.893333pt;}
.y132{bottom:634.333333pt;}
.y4b{bottom:634.653333pt;}
.y14f{bottom:635.293333pt;}
.y73{bottom:647.293333pt;}
.ye9{bottom:647.453333pt;}
.y162{bottom:647.933333pt;}
.y186{bottom:648.253333pt;}
.yaa{bottom:650.173333pt;}
.y10f{bottom:650.333333pt;}
.y1a{bottom:651.133333pt;}
.y131{bottom:652.733333pt;}
.y4a{bottom:653.053333pt;}
.y14e{bottom:656.573333pt;}
.y161{bottom:666.333333pt;}
.y185{bottom:666.653333pt;}
.y19{bottom:667.933333pt;}
.y72{bottom:668.573333pt;}
.y10e{bottom:668.733333pt;}
.y130{bottom:671.133333pt;}
.y49{bottom:671.453333pt;}
.y14d{bottom:677.693333pt;}
.ye8{bottom:684.573333pt;}
.y18{bottom:684.733333pt;}
.y184{bottom:685.053333pt;}
.yc7{bottom:687.133333pt;}
.ya4{bottom:687.453333pt;}
.y48{bottom:689.853333pt;}
.y14c{bottom:698.813333pt;}
.y17{bottom:701.693333pt;}
.y71{bottom:702.973333pt;}
.y160{bottom:703.133333pt;}
.y183{bottom:703.453333pt;}
.ya9{bottom:705.533333pt;}
.ya3{bottom:705.853333pt;}
.y47{bottom:708.253333pt;}
.y16{bottom:718.813333pt;}
.y14b{bottom:719.933333pt;}
.ye7{bottom:721.373333pt;}
.y15f{bottom:721.533333pt;}
.y182{bottom:721.853333pt;}
.y10d{bottom:723.933333pt;}
.ya2{bottom:724.253333pt;}
.y46{bottom:726.653333pt;}
.y15{bottom:737.213333pt;}
.ye6{bottom:739.773333pt;}
.y70{bottom:739.933333pt;}
.y181{bottom:740.253333pt;}
.y14a{bottom:741.213333pt;}
.y10c{bottom:742.333333pt;}
.ya1{bottom:742.653333pt;}
.y45{bottom:745.053333pt;}
.y14{bottom:755.293333pt;}
.ye5{bottom:758.173333pt;}
.y15e{bottom:758.333333pt;}
.y180{bottom:758.653333pt;}
.y10b{bottom:760.733333pt;}
.ya0{bottom:761.053333pt;}
.y149{bottom:762.333333pt;}
.y8d{bottom:763.453333pt;}
.y13{bottom:772.253333pt;}
.ye4{bottom:776.613333pt;}
.y15d{bottom:776.773333pt;}
.y6f{bottom:777.093333pt;}
.y10a{bottom:779.173333pt;}
.y44{bottom:779.493333pt;}
.y12b{bottom:781.893333pt;}
.y148{bottom:783.493333pt;}
.y12{bottom:789.093333pt;}
.ye3{bottom:795.013333pt;}
.y15c{bottom:795.173333pt;}
.y6e{bottom:795.493333pt;}
.y12f{bottom:797.573333pt;}
.y43{bottom:797.893333pt;}
.y12a{bottom:800.293333pt;}
.y147{bottom:804.613333pt;}
.y11{bottom:805.893333pt;}
.ye2{bottom:813.413333pt;}
.y109{bottom:813.573333pt;}
.y6d{bottom:813.893333pt;}
.y12e{bottom:815.973333pt;}
.y42{bottom:816.293333pt;}
.y10{bottom:823.013333pt;}
.y146{bottom:825.893333pt;}
.ye1{bottom:831.813333pt;}
.y108{bottom:831.973333pt;}
.y6c{bottom:832.293333pt;}
.y41{bottom:834.693333pt;}
.yf{bottom:841.413333pt;}
.y145{bottom:847.013333pt;}
.y107{bottom:850.373333pt;}
.y6b{bottom:850.693333pt;}
.y40{bottom:853.093333pt;}
.ye{bottom:859.653333pt;}
.y144{bottom:868.133333pt;}
.ye0{bottom:868.773333pt;}
.y6a{bottom:869.093333pt;}
.y3f{bottom:871.493333pt;}
.yd{bottom:876.453333pt;}
.y106{bottom:887.173333pt;}
.y69{bottom:887.493333pt;}
.y143{bottom:889.253333pt;}
.y3e{bottom:889.893333pt;}
.yc{bottom:893.413333pt;}
.y105{bottom:905.573333pt;}
.y68{bottom:905.893333pt;}
.y3d{bottom:908.293333pt;}
.yb{bottom:910.213333pt;}
.y142{bottom:910.533333pt;}
.y104{bottom:923.973333pt;}
.y67{bottom:924.293333pt;}
.y3c{bottom:926.693333pt;}
.ya{bottom:927.013333pt;}
.y141{bottom:931.653333pt;}
.y103{bottom:942.373333pt;}
.y66{bottom:942.693333pt;}
.y9{bottom:943.973333pt;}
.y3b{bottom:945.093333pt;}
.y140{bottom:952.773333pt;}
.y102{bottom:960.773333pt;}
.y8{bottom:961.093333pt;}
.y3a{bottom:963.493333pt;}
.y13f{bottom:973.893333pt;}
.y101{bottom:979.173333pt;}
.y7{bottom:979.493333pt;}
.y39{bottom:981.893333pt;}
.y13e{bottom:995.173333pt;}
.y6{bottom:997.893333pt;}
.y100{bottom:1016.160000pt;}
.y5{bottom:1016.320000pt;}
.y3{bottom:1033.600000pt;}
.y2{bottom:1049.120000pt;}
.y1{bottom:1082.240000pt;}
.h2{height:36.257812pt;}
.h4{height:40.343342pt;}
.h8{height:41.112500pt;}
.h7{height:41.543750pt;}
.h9{height:44.687500pt;}
.h6{height:45.156250pt;}
.hd{height:46.218750pt;}
.hc{height:46.593750pt;}
.hb{height:48.687500pt;}
.h5{height:50.578125pt;}
.ha{height:54.260625pt;}
.h3{height:62.935614pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.031988pt;}
.x2{left:126.911988pt;}
.x1f{left:128.031988pt;}
.x3{left:139.226655pt;}
.x1e{left:144.026655pt;}
.x12{left:163.226655pt;}
.x20{left:202.746655pt;}
.x21{left:234.746655pt;}
.xa{left:243.706655pt;}
.x1d{left:245.946655pt;}
.xd{left:254.146655pt;}
.x6{left:265.346655pt;}
.x14{left:266.306655pt;}
.x9{left:273.826655pt;}
.x19{left:277.346655pt;}
.x17{left:279.906655pt;}
.x18{left:291.106655pt;}
.x10{left:294.626655pt;}
.x1a{left:296.386655pt;}
.xe{left:300.386655pt;}
.xf{left:302.786655pt;}
.x11{left:304.546655pt;}
.x1c{left:307.906655pt;}
.x7{left:319.426655pt;}
.x16{left:322.786655pt;}
.xc{left:323.746655pt;}
.x8{left:325.346655pt;}
.x13{left:331.586655pt;}
.x15{left:342.946655pt;}
.x1b{left:373.986655pt;}
.x5{left:387.586655pt;}
.xb{left:390.306655pt;}
.x4{left:396.866655pt;}
}




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