
    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_a04b3ee444803ff9cd9e22d0.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2063d4d5f6528c94007d417f.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_255e40979e6ecaea0afd8b5d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_72c955c01c6d05c772d40c3b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d6d7e26f5939c819db5d0d5b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a03544209fa3088d9fb93d50.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_10b3a26912aeb4e5f71907b4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.999512;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_54d7f26e0978b4860fbedaef.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.999512;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.758789;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_5ad189b37a58e274b8a07206.woff2')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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-3.960000px;}
.ls10{letter-spacing:-0.990000px;}
.ls12{letter-spacing:-0.774000px;}
.lsc{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.269400px;}
.ls13{letter-spacing:-0.259800px;}
.lsd{letter-spacing:-0.206400px;}
.lsb{letter-spacing:-0.126000px;}
.ls26{letter-spacing:-0.053280px;}
.ls7{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.018000px;}
.ls1b{letter-spacing:0.053280px;}
.ls11{letter-spacing:0.053400px;}
.ls0{letter-spacing:0.180000px;}
.ls1d{letter-spacing:0.206400px;}
.lsf{letter-spacing:0.223800px;}
.ls1c{letter-spacing:0.259800px;}
.ls22{letter-spacing:0.259920px;}
.ls1e{letter-spacing:0.306600px;}
.ls1{letter-spacing:0.360000px;}
.ls23{letter-spacing:0.480000px;}
.ls4{letter-spacing:0.900000px;}
.ls3{letter-spacing:1.620000px;}
.ls1a{letter-spacing:6.426720px;}
.ls1f{letter-spacing:6.570720px;}
.ls17{letter-spacing:10.026720px;}
.ls14{letter-spacing:10.170720px;}
.ls18{letter-spacing:13.626720px;}
.ls16{letter-spacing:13.770720px;}
.ls2{letter-spacing:14.040000px;}
.ls19{letter-spacing:16.506720px;}
.ls21{letter-spacing:23.130720px;}
.ls15{letter-spacing:25.866720px;}
.ls20{letter-spacing:30.330720px;}
.ls6{letter-spacing:33.300000px;}
.ls24{letter-spacing:40.986720px;}
.ls5{letter-spacing:57.589920px;}
.ls25{letter-spacing:64.026720px;}
.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;}
}
.ws18{word-spacing:-59.760000px;}
.ws8{word-spacing:-30.060000px;}
.wsf{word-spacing:-15.300000px;}
.ws17{word-spacing:-15.246600px;}
.ws13{word-spacing:-15.199800px;}
.ws16{word-spacing:-15.146400px;}
.ws12{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws1a{word-spacing:-14.886720px;}
.ws14{word-spacing:-14.733600px;}
.ws15{word-spacing:-14.680200px;}
.ws19{word-spacing:-14.580000px;}
.ws9{word-spacing:-13.860000px;}
.ws5{word-spacing:-13.500000px;}
.ws6{word-spacing:-13.374000px;}
.wsa{word-spacing:-13.140000px;}
.ws4{word-spacing:-12.420000px;}
.wsb{word-spacing:-12.283800px;}
.ws2{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.790600px;}
.wsc{word-spacing:-11.070000px;}
.ws3{word-spacing:-8.100000px;}
.ws11{word-spacing:0.000000px;}
.wsd{word-spacing:11.893080px;}
.ws10{word-spacing:16.119480px;}
.ws7{word-spacing:28.132560px;}
.wse{word-spacing:28.852320px;}
._6{margin-left:-11.543039px;}
._29{margin-left:-5.968559px;}
._3{margin-left:-4.960200px;}
._5{margin-left:-3.576961px;}
._13{margin-left:-2.231523px;}
._2{margin-left:-1.035239px;}
._0{width:1.075800px;}
._1{width:2.844002px;}
._8{width:4.482000px;}
._7{width:5.508000px;}
._11{width:6.624000px;}
._12{width:7.640284px;}
._c{width:8.757239px;}
._b{width:10.026000px;}
._f{width:12.042000px;}
._15{width:13.405441px;}
._a{width:15.552000px;}
._10{width:16.652401px;}
._9{width:18.306000px;}
._1a{width:19.616523px;}
._1d{width:20.840877px;}
._25{width:21.898687px;}
._e{width:22.989239px;}
._d{width:23.994000px;}
._24{width:25.397880px;}
._23{width:27.429960px;}
._1e{width:28.505400px;}
._14{width:30.564000px;}
._16{width:31.945199px;}
._1b{width:33.355320px;}
._1f{width:35.139000px;}
._2b{width:36.862081px;}
._2c{width:37.901398px;}
._1c{width:43.564801px;}
._18{width:44.670047px;}
._21{width:45.770400px;}
._20{width:46.976881px;}
._2d{width:48.525000px;}
._2e{width:49.899600px;}
._27{width:51.752160px;}
._2a{width:54.979080px;}
._26{width:56.831760px;}
._17{width:58.204440px;}
._28{width:59.350319px;}
._2f{width:60.357600px;}
._32{width:61.911360px;}
._31{width:62.927280px;}
._34{width:68.780160px;}
._22{width:75.476940px;}
._19{width:87.247799px;}
._33{width:90.109801px;}
._30{width:91.910760px;}
._35{width:224.917079px;}
._4{width:539.298000px;}
.fc3{color:rgb(192,0,0);}
.fc5{color:rgb(5,99,193);}
.fc2{color:rgb(5,99,193);}
.fc4{color:rgb(51,51,255);}
.fc1{color:rgb(0,0,204);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:120.240000px;}
.fs2{font-size:144.000000px;}
.y70{bottom:-13.140000px;}
.y0{bottom:0.000000px;}
.ye7{bottom:2.520000px;}
.y7{bottom:4.680000px;}
.y8{bottom:6.660000px;}
.y4{bottom:7.380000px;}
.ye9{bottom:9.360000px;}
.yb{bottom:12.420000px;}
.yea{bottom:16.380000px;}
.y6{bottom:18.360000px;}
.y3{bottom:19.260000px;}
.ya{bottom:26.280000px;}
.y5{bottom:32.220000px;}
.y9{bottom:39.960000px;}
.yc6{bottom:86.976000px;}
.yfd{bottom:91.656000px;}
.ya4{bottom:93.276000px;}
.y127{bottom:103.716000px;}
.y41{bottom:106.416000px;}
.yc5{bottom:106.776000px;}
.yfc{bottom:109.836000px;}
.y6b{bottom:112.356000px;}
.ya3{bottom:113.076000px;}
.y40{bottom:120.276000px;}
.y126{bottom:121.716000px;}
.yc4{bottom:126.576000px;}
.yfb{bottom:127.836000px;}
.y6a{bottom:132.156000px;}
.ya2{bottom:132.876000px;}
.y3f{bottom:134.136000px;}
.y125{bottom:139.896000px;}
.yfa{bottom:146.016000px;}
.yc3{bottom:146.376000px;}
.y69{bottom:151.950000px;}
.ya1{bottom:152.850000px;}
.y124{bottom:157.890000px;}
.y3e{bottom:163.470000px;}
.yf9{bottom:164.190000px;}
.yc2{bottom:166.350000px;}
.y68{bottom:171.750000px;}
.ya0{bottom:172.650000px;}
.y123{bottom:176.070000px;}
.y3d{bottom:177.150000px;}
.yf8{bottom:182.190000px;}
.yc1{bottom:186.150000px;}
.y3c{bottom:191.010000px;}
.y67{bottom:191.550000px;}
.y9f{bottom:192.450000px;}
.y122{bottom:194.250000px;}
.yf7{bottom:200.370000px;}
.y3b{bottom:205.230000px;}
.yc0{bottom:205.950000px;}
.y66{bottom:211.530000px;}
.y9e{bottom:212.250000px;}
.yf6{bottom:218.370000px;}
.y3a{bottom:220.710000px;}
.ybf{bottom:227.730000px;}
.y121{bottom:230.430000px;}
.y65{bottom:231.330000px;}
.y9d{bottom:232.050000px;}
.y39{bottom:236.190000px;}
.yf5{bottom:236.550000px;}
.y120{bottom:248.430000px;}
.y64{bottom:251.130000px;}
.y38{bottom:251.850000px;}
.y9c{bottom:252.030000px;}
.ybe{bottom:256.530000px;}
.yf4{bottom:262.830000px;}
.y11f{bottom:266.610000px;}
.y37{bottom:267.330000px;}
.y63{bottom:270.930000px;}
.y9b{bottom:273.630000px;}
.ybd{bottom:276.330000px;}
.y11e{bottom:284.790000px;}
.y62{bottom:290.730000px;}
.ybc{bottom:296.130000px;}
.yf3{bottom:299.010000px;}
.y9a{bottom:302.610000px;}
.y11d{bottom:302.790000px;}
.y61{bottom:310.710000px;}
.ybb{bottom:316.110000px;}
.yf2{bottom:317.010000px;}
.y11c{bottom:320.970000px;}
.y99{bottom:322.410000px;}
.y60{bottom:330.510000px;}
.y36{bottom:332.310000px;}
.yf1{bottom:335.190000px;}
.yba{bottom:335.910000px;}
.y11b{bottom:339.195000px;}
.y98{bottom:342.255000px;}
.y35{bottom:350.355000px;}
.yf0{bottom:353.235000px;}
.yb9{bottom:355.755000px;}
.y11a{bottom:357.195000px;}
.y97{bottom:362.055000px;}
.y34{bottom:368.535000px;}
.y5f{bottom:370.155000px;}
.yef{bottom:371.415000px;}
.y119{bottom:375.375000px;}
.yb8{bottom:375.555000px;}
.y96{bottom:381.855000px;}
.y33{bottom:386.715000px;}
.yee{bottom:387.255000px;}
.y5e{bottom:389.955000px;}
.y118{bottom:393.375000px;}
.yb7{bottom:395.355000px;}
.y95{bottom:401.835000px;}
.yed{bottom:404.175000px;}
.y32{bottom:404.715000px;}
.y117{bottom:411.555000px;}
.y5d{bottom:411.735000px;}
.yb6{bottom:415.335000px;}
.yec{bottom:420.915000px;}
.y94{bottom:421.635000px;}
.y31{bottom:426.855000px;}
.yb5{bottom:436.935000px;}
.y116{bottom:437.835000px;}
.y5c{bottom:440.715000px;}
.y93{bottom:441.435000px;}
.yeb{bottom:451.515000px;}
.y5b{bottom:460.515000px;}
.y92{bottom:463.215000px;}
.yb4{bottom:465.915000px;}
.y30{bottom:467.175000px;}
.y115{bottom:475.635000px;}
.y5a{bottom:480.315000px;}
.ye8{bottom:482.115000px;}
.yb3{bottom:485.715000px;}
.y91{bottom:492.015000px;}
.y114{bottom:495.435000px;}
.y59{bottom:500.115000px;}
.y2f{bottom:502.095000px;}
.yb2{bottom:505.515000px;}
.y90{bottom:511.815000px;}
.ye6{bottom:512.715000px;}
.y113{bottom:515.235000px;}
.y2e{bottom:517.755000px;}
.y58{bottom:519.915000px;}
.yb1{bottom:525.315000px;}
.y8f{bottom:531.615000px;}
.y2d{bottom:533.235000px;}
.y112{bottom:535.215000px;}
.ye5{bottom:537.195000px;}
.y57{bottom:539.895000px;}
.yb0{bottom:545.115000px;}
.y8e{bottom:551.595000px;}
.ye4{bottom:552.855000px;}
.y2c{bottom:554.835000px;}
.y111{bottom:555.015000px;}
.y56{bottom:559.695000px;}
.yaf{bottom:565.095000px;}
.y2b{bottom:570.315000px;}
.y8d{bottom:571.395000px;}
.y110{bottom:574.815000px;}
.ye3{bottom:577.155000px;}
.y55{bottom:581.475000px;}
.yae{bottom:584.895000px;}
.y2a{bottom:585.795000px;}
.y8c{bottom:591.195000px;}
.y10f{bottom:594.615000px;}
.ye2{bottom:597.135000px;}
.yad{bottom:604.725000px;}
.y29{bottom:607.425000px;}
.y54{bottom:608.505000px;}
.y8b{bottom:611.025000px;}
.y10e{bottom:614.445000px;}
.ye1{bottom:616.965000px;}
.y28{bottom:622.905000px;}
.yac{bottom:624.525000px;}
.y53{bottom:626.685000px;}
.y8a{bottom:630.825000px;}
.y10d{bottom:634.425000px;}
.ye0{bottom:636.765000px;}
.y27{bottom:638.385000px;}
.yab{bottom:644.325000px;}
.y52{bottom:644.685000px;}
.y89{bottom:650.805000px;}
.y26{bottom:653.865000px;}
.y10c{bottom:654.225000px;}
.ydf{bottom:656.565000px;}
.yaa{bottom:664.305000px;}
.y51{bottom:664.665000px;}
.y25{bottom:669.525000px;}
.y10b{bottom:674.025000px;}
.yde{bottom:676.365000px;}
.y88{bottom:676.905000px;}
.y13f{bottom:682.845000px;}
.y50{bottom:684.465000px;}
.y24{bottom:685.005000px;}
.ya9{bottom:685.905000px;}
.y10a{bottom:693.825000px;}
.ydd{bottom:696.345000px;}
.y23{bottom:700.485000px;}
.y4f{bottom:702.465000px;}
.y109{bottom:713.625000px;}
.y87{bottom:714.885000px;}
.y22{bottom:715.965000px;}
.ydc{bottom:716.145000px;}
.y4e{bottom:720.645000px;}
.y21{bottom:731.625000px;}
.y108{bottom:733.605000px;}
.y86{bottom:734.685000px;}
.y13e{bottom:734.865000px;}
.ydb{bottom:735.945000px;}
.y4d{bottom:746.925000px;}
.y20{bottom:747.105000px;}
.y107{bottom:753.405000px;}
.y85{bottom:754.485000px;}
.yda{bottom:755.745000px;}
.y1f{bottom:762.585000px;}
.y84{bottom:774.285000px;}
.y13d{bottom:775.185000px;}
.yd9{bottom:777.525000px;}
.y1e{bottom:778.065000px;}
.y106{bottom:779.685000px;}
.y4c{bottom:784.725000px;}
.y13c{bottom:789.765000px;}
.y1d{bottom:793.545000px;}
.y83{bottom:794.085000px;}
.y4b{bottom:804.525000px;}
.yd8{bottom:806.325000px;}
.y13b{bottom:807.045000px;}
.y1c{bottom:809.205000px;}
.y82{bottom:814.065000px;}
.y105{bottom:815.685000px;}
.y13a{bottom:824.145000px;}
.y4a{bottom:824.325000px;}
.y1b{bottom:824.685000px;}
.yd7{bottom:826.125000px;}
.y81{bottom:833.865000px;}
.y1a{bottom:840.165000px;}
.y139{bottom:841.425000px;}
.y49{bottom:844.305000px;}
.yd6{bottom:846.105000px;}
.y104{bottom:851.865000px;}
.y80{bottom:853.665000px;}
.y19{bottom:855.645000px;}
.y138{bottom:858.705000px;}
.y48{bottom:864.105000px;}
.yd5{bottom:865.905000px;}
.y103{bottom:870.045000px;}
.y18{bottom:871.350000px;}
.y7f{bottom:873.510000px;}
.y137{bottom:876.030000px;}
.y47{bottom:883.950000px;}
.yd4{bottom:885.750000px;}
.y17{bottom:886.830000px;}
.y102{bottom:888.270000px;}
.ya8{bottom:893.310000px;}
.y7e{bottom:895.290000px;}
.y16{bottom:902.310000px;}
.yd3{bottom:905.550000px;}
.y46{bottom:905.730000px;}
.y101{bottom:906.270000px;}
.y136{bottom:910.590000px;}
.ya7{bottom:913.290000px;}
.y15{bottom:917.790000px;}
.y100{bottom:920.310000px;}
.y7d{bottom:924.090000px;}
.y135{bottom:924.450000px;}
.yd2{bottom:925.350000px;}
.ya6{bottom:933.090000px;}
.y14{bottom:933.450000px;}
.y45{bottom:934.530000px;}
.y7c{bottom:943.890000px;}
.y134{bottom:944.250000px;}
.yd1{bottom:945.330000px;}
.y13{bottom:948.930000px;}
.y44{bottom:954.330000px;}
.ya5{bottom:954.870000px;}
.y133{bottom:958.110000px;}
.y7b{bottom:963.870000px;}
.y12{bottom:964.410000px;}
.yd0{bottom:966.930000px;}
.y132{bottom:971.790000px;}
.y43{bottom:974.130000px;}
.y11{bottom:979.890000px;}
.y7a{bottom:983.670000px;}
.y131{bottom:985.650000px;}
.y42{bottom:994.110000px;}
.y10{bottom:995.550000px;}
.y130{bottom:999.510000px;}
.y79{bottom:1003.470000px;}
.ycf{bottom:1012.290000px;}
.y12f{bottom:1013.370000px;}
.y78{bottom:1023.270000px;}
.yf{bottom:1029.570000px;}
.y12e{bottom:1029.930000px;}
.yce{bottom:1030.290000px;}
.y77{bottom:1043.070000px;}
.y12d{bottom:1043.610000px;}
.ycd{bottom:1048.470000px;}
.y12c{bottom:1057.470000px;}
.y76{bottom:1063.050000px;}
.ycc{bottom:1066.650000px;}
.ye{bottom:1070.790000px;}
.y12b{bottom:1074.030000px;}
.y75{bottom:1082.850000px;}
.ycb{bottom:1084.650000px;}
.y12a{bottom:1087.890000px;}
.y129{bottom:1101.750000px;}
.y74{bottom:1102.650000px;}
.yca{bottom:1102.830000px;}
.yd{bottom:1112.190000px;}
.y73{bottom:1122.450000px;}
.yc9{bottom:1124.610000px;}
.y128{bottom:1128.030000px;}
.yff{bottom:1137.030000px;}
.y72{bottom:1142.280000px;}
.yc8{bottom:1153.440000px;}
.yc{bottom:1153.620000px;}
.yfe{bottom:1155.060000px;}
.y71{bottom:1164.060000px;}
.yc7{bottom:1173.240000px;}
.y6f{bottom:1181.340000px;}
.y6e{bottom:1198.620000px;}
.y6d{bottom:1215.900000px;}
.y2{bottom:1217.520000px;}
.y6c{bottom:1233.540000px;}
.y1{bottom:1234.800000px;}
.h15{height:13.680000px;}
.h13{height:13.860000px;}
.h14{height:27.540000px;}
.he{height:33.683203px;}
.hd{height:34.036523px;}
.h5{height:36.698203px;}
.ha{height:37.705078px;}
.hc{height:38.100586px;}
.h9{height:40.684570px;}
.h3{height:41.726953px;}
.h2{height:42.164648px;}
.h11{height:43.506914px;}
.h4{height:43.560000px;}
.hf{height:44.265586px;}
.h12{height:45.461953px;}
.h10{height:46.251562px;}
.h8{height:46.736719px;}
.h17{height:50.273438px;}
.h16{height:50.800781px;}
.h6{height:51.300000px;}
.hb{height:83.956641px;}
.h7{height:100.546875px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:55.476000px;}
.w6{width:121.500000px;}
.w7{width:173.910000px;}
.w2{width:185.790000px;}
.w3{width:267.915000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x24{left:4.680000px;}
.x19{left:6.300000px;}
.x1e{left:7.380000px;}
.x5{left:10.800000px;}
.x1f{left:13.500000px;}
.x20{left:16.920000px;}
.x26{left:19.620000px;}
.x25{left:23.985000px;}
.x1b{left:26.634000px;}
.x22{left:29.874000px;}
.x1d{left:33.345000px;}
.x23{left:37.845000px;}
.x21{left:59.985000px;}
.x6{left:64.080000px;}
.xc{left:70.200000px;}
.x17{left:73.979987px;}
.x18{left:76.680000px;}
.xb{left:80.820000px;}
.x16{left:89.135987px;}
.x2f{left:91.475987px;}
.x7{left:103.356000px;}
.x14{left:109.655987px;}
.x8{left:116.496000px;}
.x2e{left:124.235987px;}
.x1a{left:132.876000px;}
.x9{left:169.770000px;}
.x27{left:176.429987px;}
.xd{left:178.050000px;}
.x1c{left:255.270000px;}
.x2d{left:264.449987px;}
.x3{left:268.230000px;}
.x15{left:359.354987px;}
.xa{left:387.075000px;}
.x1{left:399.135000px;}
.x2{left:428.295000px;}
.x30{left:435.674987px;}
.x13{left:446.474987px;}
.xf{left:457.275000px;}
.xe{left:467.925000px;}
.x4{left:473.505000px;}
.x10{left:478.545000px;}
.x2b{left:484.304987px;}
.x11{left:499.965000px;}
.x2c{left:511.304987px;}
.x2a{left:536.504987px;}
.x12{left:557.025000px;}
.x29{left:572.684987px;}
.x28{left:827.429987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-3.520000pt;}
.ls10{letter-spacing:-0.880000pt;}
.ls12{letter-spacing:-0.688000pt;}
.lsc{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.239467pt;}
.ls13{letter-spacing:-0.230933pt;}
.lsd{letter-spacing:-0.183467pt;}
.lsb{letter-spacing:-0.112000pt;}
.ls26{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.016000pt;}
.ls1b{letter-spacing:0.047360pt;}
.ls11{letter-spacing:0.047467pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1d{letter-spacing:0.183467pt;}
.lsf{letter-spacing:0.198933pt;}
.ls1c{letter-spacing:0.230933pt;}
.ls22{letter-spacing:0.231040pt;}
.ls1e{letter-spacing:0.272533pt;}
.ls1{letter-spacing:0.320000pt;}
.ls23{letter-spacing:0.426667pt;}
.ls4{letter-spacing:0.800000pt;}
.ls3{letter-spacing:1.440000pt;}
.ls1a{letter-spacing:5.712640pt;}
.ls1f{letter-spacing:5.840640pt;}
.ls17{letter-spacing:8.912640pt;}
.ls14{letter-spacing:9.040640pt;}
.ls18{letter-spacing:12.112640pt;}
.ls16{letter-spacing:12.240640pt;}
.ls2{letter-spacing:12.480000pt;}
.ls19{letter-spacing:14.672640pt;}
.ls21{letter-spacing:20.560640pt;}
.ls15{letter-spacing:22.992640pt;}
.ls20{letter-spacing:26.960640pt;}
.ls6{letter-spacing:29.600000pt;}
.ls24{letter-spacing:36.432640pt;}
.ls5{letter-spacing:51.191040pt;}
.ls25{letter-spacing:56.912640pt;}
.ws18{word-spacing:-53.120000pt;}
.ws8{word-spacing:-26.720000pt;}
.wsf{word-spacing:-13.600000pt;}
.ws17{word-spacing:-13.552533pt;}
.ws13{word-spacing:-13.510933pt;}
.ws16{word-spacing:-13.463467pt;}
.ws12{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws1a{word-spacing:-13.232640pt;}
.ws14{word-spacing:-13.096533pt;}
.ws15{word-spacing:-13.049067pt;}
.ws19{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.320000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.888000pt;}
.wsa{word-spacing:-11.680000pt;}
.ws4{word-spacing:-11.040000pt;}
.wsb{word-spacing:-10.918933pt;}
.ws2{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.480533pt;}
.wsc{word-spacing:-9.840000pt;}
.ws3{word-spacing:-7.200000pt;}
.ws11{word-spacing:0.000000pt;}
.wsd{word-spacing:10.571627pt;}
.ws10{word-spacing:14.328427pt;}
.ws7{word-spacing:25.006720pt;}
.wse{word-spacing:25.646507pt;}
._6{margin-left:-10.260479pt;}
._29{margin-left:-5.305386pt;}
._3{margin-left:-4.409066pt;}
._5{margin-left:-3.179521pt;}
._13{margin-left:-1.983576pt;}
._2{margin-left:-0.920212pt;}
._0{width:0.956266pt;}
._1{width:2.528002pt;}
._8{width:3.984000pt;}
._7{width:4.896000pt;}
._11{width:5.888000pt;}
._12{width:6.791364pt;}
._c{width:7.784212pt;}
._b{width:8.912000pt;}
._f{width:10.704000pt;}
._15{width:11.915948pt;}
._a{width:13.824000pt;}
._10{width:14.802134pt;}
._9{width:16.272000pt;}
._1a{width:17.436910pt;}
._1d{width:18.525224pt;}
._25{width:19.465500pt;}
._e{width:20.434879pt;}
._d{width:21.328000pt;}
._24{width:22.575894pt;}
._23{width:24.382186pt;}
._1e{width:25.338134pt;}
._14{width:27.168000pt;}
._16{width:28.395732pt;}
._1b{width:29.649174pt;}
._1f{width:31.234666pt;}
._2b{width:32.766294pt;}
._2c{width:33.690131pt;}
._1c{width:38.724268pt;}
._18{width:39.706708pt;}
._21{width:40.684800pt;}
._20{width:41.757227pt;}
._2d{width:43.133334pt;}
._2e{width:44.355200pt;}
._27{width:46.001920pt;}
._2a{width:48.870294pt;}
._26{width:50.517120pt;}
._17{width:51.737280pt;}
._28{width:52.755839pt;}
._2f{width:53.651200pt;}
._32{width:55.032320pt;}
._31{width:55.935360pt;}
._34{width:61.137920pt;}
._22{width:67.090613pt;}
._19{width:77.553599pt;}
._33{width:80.097601pt;}
._30{width:81.698454pt;}
._35{width:199.926292pt;}
._4{width:479.376000pt;}
.fs1{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:106.880000pt;}
.fs2{font-size:128.000000pt;}
.y70{bottom:-11.680000pt;}
.y0{bottom:0.000000pt;}
.ye7{bottom:2.240000pt;}
.y7{bottom:4.160000pt;}
.y8{bottom:5.920000pt;}
.y4{bottom:6.560000pt;}
.ye9{bottom:8.320000pt;}
.yb{bottom:11.040000pt;}
.yea{bottom:14.560000pt;}
.y6{bottom:16.320000pt;}
.y3{bottom:17.120000pt;}
.ya{bottom:23.360000pt;}
.y5{bottom:28.640000pt;}
.y9{bottom:35.520000pt;}
.yc6{bottom:77.312000pt;}
.yfd{bottom:81.472000pt;}
.ya4{bottom:82.912000pt;}
.y127{bottom:92.192000pt;}
.y41{bottom:94.592000pt;}
.yc5{bottom:94.912000pt;}
.yfc{bottom:97.632000pt;}
.y6b{bottom:99.872000pt;}
.ya3{bottom:100.512000pt;}
.y40{bottom:106.912000pt;}
.y126{bottom:108.192000pt;}
.yc4{bottom:112.512000pt;}
.yfb{bottom:113.632000pt;}
.y6a{bottom:117.472000pt;}
.ya2{bottom:118.112000pt;}
.y3f{bottom:119.232000pt;}
.y125{bottom:124.352000pt;}
.yfa{bottom:129.792000pt;}
.yc3{bottom:130.112000pt;}
.y69{bottom:135.066667pt;}
.ya1{bottom:135.866667pt;}
.y124{bottom:140.346667pt;}
.y3e{bottom:145.306667pt;}
.yf9{bottom:145.946667pt;}
.yc2{bottom:147.866667pt;}
.y68{bottom:152.666667pt;}
.ya0{bottom:153.466667pt;}
.y123{bottom:156.506667pt;}
.y3d{bottom:157.466667pt;}
.yf8{bottom:161.946667pt;}
.yc1{bottom:165.466667pt;}
.y3c{bottom:169.786667pt;}
.y67{bottom:170.266667pt;}
.y9f{bottom:171.066667pt;}
.y122{bottom:172.666667pt;}
.yf7{bottom:178.106667pt;}
.y3b{bottom:182.426667pt;}
.yc0{bottom:183.066667pt;}
.y66{bottom:188.026667pt;}
.y9e{bottom:188.666667pt;}
.yf6{bottom:194.106667pt;}
.y3a{bottom:196.186667pt;}
.ybf{bottom:202.426667pt;}
.y121{bottom:204.826667pt;}
.y65{bottom:205.626667pt;}
.y9d{bottom:206.266667pt;}
.y39{bottom:209.946667pt;}
.yf5{bottom:210.266667pt;}
.y120{bottom:220.826667pt;}
.y64{bottom:223.226667pt;}
.y38{bottom:223.866667pt;}
.y9c{bottom:224.026667pt;}
.ybe{bottom:228.026667pt;}
.yf4{bottom:233.626667pt;}
.y11f{bottom:236.986667pt;}
.y37{bottom:237.626667pt;}
.y63{bottom:240.826667pt;}
.y9b{bottom:243.226667pt;}
.ybd{bottom:245.626667pt;}
.y11e{bottom:253.146667pt;}
.y62{bottom:258.426667pt;}
.ybc{bottom:263.226667pt;}
.yf3{bottom:265.786667pt;}
.y9a{bottom:268.986667pt;}
.y11d{bottom:269.146667pt;}
.y61{bottom:276.186667pt;}
.ybb{bottom:280.986667pt;}
.yf2{bottom:281.786667pt;}
.y11c{bottom:285.306667pt;}
.y99{bottom:286.586667pt;}
.y60{bottom:293.786667pt;}
.y36{bottom:295.386667pt;}
.yf1{bottom:297.946667pt;}
.yba{bottom:298.586667pt;}
.y11b{bottom:301.506667pt;}
.y98{bottom:304.226667pt;}
.y35{bottom:311.426667pt;}
.yf0{bottom:313.986667pt;}
.yb9{bottom:316.226667pt;}
.y11a{bottom:317.506667pt;}
.y97{bottom:321.826667pt;}
.y34{bottom:327.586667pt;}
.y5f{bottom:329.026667pt;}
.yef{bottom:330.146667pt;}
.y119{bottom:333.666667pt;}
.yb8{bottom:333.826667pt;}
.y96{bottom:339.426667pt;}
.y33{bottom:343.746667pt;}
.yee{bottom:344.226667pt;}
.y5e{bottom:346.626667pt;}
.y118{bottom:349.666667pt;}
.yb7{bottom:351.426667pt;}
.y95{bottom:357.186667pt;}
.yed{bottom:359.266667pt;}
.y32{bottom:359.746667pt;}
.y117{bottom:365.826667pt;}
.y5d{bottom:365.986667pt;}
.yb6{bottom:369.186667pt;}
.yec{bottom:374.146667pt;}
.y94{bottom:374.786667pt;}
.y31{bottom:379.426667pt;}
.yb5{bottom:388.386667pt;}
.y116{bottom:389.186667pt;}
.y5c{bottom:391.746667pt;}
.y93{bottom:392.386667pt;}
.yeb{bottom:401.346667pt;}
.y5b{bottom:409.346667pt;}
.y92{bottom:411.746667pt;}
.yb4{bottom:414.146667pt;}
.y30{bottom:415.266667pt;}
.y115{bottom:422.786667pt;}
.y5a{bottom:426.946667pt;}
.ye8{bottom:428.546667pt;}
.yb3{bottom:431.746667pt;}
.y91{bottom:437.346667pt;}
.y114{bottom:440.386667pt;}
.y59{bottom:444.546667pt;}
.y2f{bottom:446.306667pt;}
.yb2{bottom:449.346667pt;}
.y90{bottom:454.946667pt;}
.ye6{bottom:455.746667pt;}
.y113{bottom:457.986667pt;}
.y2e{bottom:460.226667pt;}
.y58{bottom:462.146667pt;}
.yb1{bottom:466.946667pt;}
.y8f{bottom:472.546667pt;}
.y2d{bottom:473.986667pt;}
.y112{bottom:475.746667pt;}
.ye5{bottom:477.506667pt;}
.y57{bottom:479.906667pt;}
.yb0{bottom:484.546667pt;}
.y8e{bottom:490.306667pt;}
.ye4{bottom:491.426667pt;}
.y2c{bottom:493.186667pt;}
.y111{bottom:493.346667pt;}
.y56{bottom:497.506667pt;}
.yaf{bottom:502.306667pt;}
.y2b{bottom:506.946667pt;}
.y8d{bottom:507.906667pt;}
.y110{bottom:510.946667pt;}
.ye3{bottom:513.026667pt;}
.y55{bottom:516.866667pt;}
.yae{bottom:519.906667pt;}
.y2a{bottom:520.706667pt;}
.y8c{bottom:525.506667pt;}
.y10f{bottom:528.546667pt;}
.ye2{bottom:530.786667pt;}
.yad{bottom:537.533333pt;}
.y29{bottom:539.933333pt;}
.y54{bottom:540.893333pt;}
.y8b{bottom:543.133333pt;}
.y10e{bottom:546.173333pt;}
.ye1{bottom:548.413333pt;}
.y28{bottom:553.693333pt;}
.yac{bottom:555.133333pt;}
.y53{bottom:557.053333pt;}
.y8a{bottom:560.733333pt;}
.y10d{bottom:563.933333pt;}
.ye0{bottom:566.013333pt;}
.y27{bottom:567.453333pt;}
.yab{bottom:572.733333pt;}
.y52{bottom:573.053333pt;}
.y89{bottom:578.493333pt;}
.y26{bottom:581.213333pt;}
.y10c{bottom:581.533333pt;}
.ydf{bottom:583.613333pt;}
.yaa{bottom:590.493333pt;}
.y51{bottom:590.813333pt;}
.y25{bottom:595.133333pt;}
.y10b{bottom:599.133333pt;}
.yde{bottom:601.213333pt;}
.y88{bottom:601.693333pt;}
.y13f{bottom:606.973333pt;}
.y50{bottom:608.413333pt;}
.y24{bottom:608.893333pt;}
.ya9{bottom:609.693333pt;}
.y10a{bottom:616.733333pt;}
.ydd{bottom:618.973333pt;}
.y23{bottom:622.653333pt;}
.y4f{bottom:624.413333pt;}
.y109{bottom:634.333333pt;}
.y87{bottom:635.453333pt;}
.y22{bottom:636.413333pt;}
.ydc{bottom:636.573333pt;}
.y4e{bottom:640.573333pt;}
.y21{bottom:650.333333pt;}
.y108{bottom:652.093333pt;}
.y86{bottom:653.053333pt;}
.y13e{bottom:653.213333pt;}
.ydb{bottom:654.173333pt;}
.y4d{bottom:663.933333pt;}
.y20{bottom:664.093333pt;}
.y107{bottom:669.693333pt;}
.y85{bottom:670.653333pt;}
.yda{bottom:671.773333pt;}
.y1f{bottom:677.853333pt;}
.y84{bottom:688.253333pt;}
.y13d{bottom:689.053333pt;}
.yd9{bottom:691.133333pt;}
.y1e{bottom:691.613333pt;}
.y106{bottom:693.053333pt;}
.y4c{bottom:697.533333pt;}
.y13c{bottom:702.013333pt;}
.y1d{bottom:705.373333pt;}
.y83{bottom:705.853333pt;}
.y4b{bottom:715.133333pt;}
.yd8{bottom:716.733333pt;}
.y13b{bottom:717.373333pt;}
.y1c{bottom:719.293333pt;}
.y82{bottom:723.613333pt;}
.y105{bottom:725.053333pt;}
.y13a{bottom:732.573333pt;}
.y4a{bottom:732.733333pt;}
.y1b{bottom:733.053333pt;}
.yd7{bottom:734.333333pt;}
.y81{bottom:741.213333pt;}
.y1a{bottom:746.813333pt;}
.y139{bottom:747.933333pt;}
.y49{bottom:750.493333pt;}
.yd6{bottom:752.093333pt;}
.y104{bottom:757.213333pt;}
.y80{bottom:758.813333pt;}
.y19{bottom:760.573333pt;}
.y138{bottom:763.293333pt;}
.y48{bottom:768.093333pt;}
.yd5{bottom:769.693333pt;}
.y103{bottom:773.373333pt;}
.y18{bottom:774.533333pt;}
.y7f{bottom:776.453333pt;}
.y137{bottom:778.693333pt;}
.y47{bottom:785.733333pt;}
.yd4{bottom:787.333333pt;}
.y17{bottom:788.293333pt;}
.y102{bottom:789.573333pt;}
.ya8{bottom:794.053333pt;}
.y7e{bottom:795.813333pt;}
.y16{bottom:802.053333pt;}
.yd3{bottom:804.933333pt;}
.y46{bottom:805.093333pt;}
.y101{bottom:805.573333pt;}
.y136{bottom:809.413333pt;}
.ya7{bottom:811.813333pt;}
.y15{bottom:815.813333pt;}
.y100{bottom:818.053333pt;}
.y7d{bottom:821.413333pt;}
.y135{bottom:821.733333pt;}
.yd2{bottom:822.533333pt;}
.ya6{bottom:829.413333pt;}
.y14{bottom:829.733333pt;}
.y45{bottom:830.693333pt;}
.y7c{bottom:839.013333pt;}
.y134{bottom:839.333333pt;}
.yd1{bottom:840.293333pt;}
.y13{bottom:843.493333pt;}
.y44{bottom:848.293333pt;}
.ya5{bottom:848.773333pt;}
.y133{bottom:851.653333pt;}
.y7b{bottom:856.773333pt;}
.y12{bottom:857.253333pt;}
.yd0{bottom:859.493333pt;}
.y132{bottom:863.813333pt;}
.y43{bottom:865.893333pt;}
.y11{bottom:871.013333pt;}
.y7a{bottom:874.373333pt;}
.y131{bottom:876.133333pt;}
.y42{bottom:883.653333pt;}
.y10{bottom:884.933333pt;}
.y130{bottom:888.453333pt;}
.y79{bottom:891.973333pt;}
.ycf{bottom:899.813333pt;}
.y12f{bottom:900.773333pt;}
.y78{bottom:909.573333pt;}
.yf{bottom:915.173333pt;}
.y12e{bottom:915.493333pt;}
.yce{bottom:915.813333pt;}
.y77{bottom:927.173333pt;}
.y12d{bottom:927.653333pt;}
.ycd{bottom:931.973333pt;}
.y12c{bottom:939.973333pt;}
.y76{bottom:944.933333pt;}
.ycc{bottom:948.133333pt;}
.ye{bottom:951.813333pt;}
.y12b{bottom:954.693333pt;}
.y75{bottom:962.533333pt;}
.ycb{bottom:964.133333pt;}
.y12a{bottom:967.013333pt;}
.y129{bottom:979.333333pt;}
.y74{bottom:980.133333pt;}
.yca{bottom:980.293333pt;}
.yd{bottom:988.613333pt;}
.y73{bottom:997.733333pt;}
.yc9{bottom:999.653333pt;}
.y128{bottom:1002.693333pt;}
.yff{bottom:1010.693333pt;}
.y72{bottom:1015.360000pt;}
.yc8{bottom:1025.280000pt;}
.yc{bottom:1025.440000pt;}
.yfe{bottom:1026.720000pt;}
.y71{bottom:1034.720000pt;}
.yc7{bottom:1042.880000pt;}
.y6f{bottom:1050.080000pt;}
.y6e{bottom:1065.440000pt;}
.y6d{bottom:1080.800000pt;}
.y2{bottom:1082.240000pt;}
.y6c{bottom:1096.480000pt;}
.y1{bottom:1097.600000pt;}
.h15{height:12.160000pt;}
.h13{height:12.320000pt;}
.h14{height:24.480000pt;}
.he{height:29.940625pt;}
.hd{height:30.254687pt;}
.h5{height:32.620625pt;}
.ha{height:33.515625pt;}
.hc{height:33.867188pt;}
.h9{height:36.164062pt;}
.h3{height:37.090625pt;}
.h2{height:37.479688pt;}
.h11{height:38.672812pt;}
.h4{height:38.720000pt;}
.hf{height:39.347188pt;}
.h12{height:40.410625pt;}
.h10{height:41.112500pt;}
.h8{height:41.543750pt;}
.h17{height:44.687500pt;}
.h16{height:45.156250pt;}
.h6{height:45.600000pt;}
.hb{height:74.628125pt;}
.h7{height:89.375000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:49.312000pt;}
.w6{width:108.000000pt;}
.w7{width:154.586667pt;}
.w2{width:165.146667pt;}
.w3{width:238.146667pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x24{left:4.160000pt;}
.x19{left:5.600000pt;}
.x1e{left:6.560000pt;}
.x5{left:9.600000pt;}
.x1f{left:12.000000pt;}
.x20{left:15.040000pt;}
.x26{left:17.440000pt;}
.x25{left:21.320000pt;}
.x1b{left:23.674667pt;}
.x22{left:26.554667pt;}
.x1d{left:29.640000pt;}
.x23{left:33.640000pt;}
.x21{left:53.320000pt;}
.x6{left:56.960000pt;}
.xc{left:62.400000pt;}
.x17{left:65.759988pt;}
.x18{left:68.160000pt;}
.xb{left:71.840000pt;}
.x16{left:79.231988pt;}
.x2f{left:81.311988pt;}
.x7{left:91.872000pt;}
.x14{left:97.471988pt;}
.x8{left:103.552000pt;}
.x2e{left:110.431988pt;}
.x1a{left:118.112000pt;}
.x9{left:150.906667pt;}
.x27{left:156.826655pt;}
.xd{left:158.266667pt;}
.x1c{left:226.906667pt;}
.x2d{left:235.066655pt;}
.x3{left:238.426667pt;}
.x15{left:319.426655pt;}
.xa{left:344.066667pt;}
.x1{left:354.786667pt;}
.x2{left:380.706667pt;}
.x30{left:387.266655pt;}
.x13{left:396.866655pt;}
.xf{left:406.466667pt;}
.xe{left:415.933333pt;}
.x4{left:420.893333pt;}
.x10{left:425.373333pt;}
.x2b{left:430.493322pt;}
.x11{left:444.413333pt;}
.x2c{left:454.493322pt;}
.x2a{left:476.893322pt;}
.x12{left:495.133333pt;}
.x29{left:509.053322pt;}
.x28{left:735.493322pt;}
}




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