
    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_c99d07616b36278e138669a0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.074219;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_a5e9649cd96de9eb4783c830.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_ceec4f7aaedd228898771792.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0f5750dee01993f75c1354b3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_b6497fc3627da713a579bf16.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.703613;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_abee4a5272cc219858bfc189.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.678223;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_00f15d03e96fb588e47a17d5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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;}
.v1{vertical-align:28.200000px;}
.v2{vertical-align:69.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.228000px;}
.ls2{letter-spacing:4.800000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-19.500000px;}
.ws4{word-spacing:-18.000000px;}
.ws1{word-spacing:-16.620000px;}
.ws9{word-spacing:-16.500000px;}
.ws2{word-spacing:-15.000000px;}
.ws0{word-spacing:-12.000000px;}
.ws7{word-spacing:-10.500000px;}
.ws5{word-spacing:-0.066000px;}
.ws6{word-spacing:0.000000px;}
.wsa{word-spacing:399.534000px;}
.ws8{word-spacing:580.134000px;}
.wsb{word-spacing:637.770000px;}
._45{margin-left:-9.258000px;}
._48{margin-left:-7.608000px;}
._11{margin-left:-6.138000px;}
._2{margin-left:-4.500000px;}
._9{margin-left:-3.432000px;}
._1{margin-left:-2.400000px;}
._3{margin-left:-1.020000px;}
._0{width:1.584000px;}
._7{width:3.366000px;}
._6{width:5.016000px;}
._d{width:6.204000px;}
._8{width:7.326000px;}
._5{width:9.240000px;}
._4{width:10.242000px;}
._f{width:11.352000px;}
._c{width:12.936000px;}
._a{width:14.190000px;}
._e{width:15.378000px;}
._12{width:16.506000px;}
._19{width:18.348000px;}
._10{width:20.448000px;}
._34{width:21.486000px;}
._2e{width:22.968000px;}
._b{width:24.354000px;}
._3b{width:25.602000px;}
._17{width:26.862000px;}
._18{width:28.248000px;}
._36{width:29.568000px;}
._35{width:30.624000px;}
._32{width:31.944000px;}
._37{width:33.726000px;}
._16{width:35.046000px;}
._22{width:36.630000px;}
._46{width:38.520000px;}
._1f{width:46.794000px;}
._33{width:48.840000px;}
._2b{width:49.896000px;}
._2c{width:51.216000px;}
._30{width:57.024000px;}
._2f{width:58.080000px;}
._47{width:60.528000px;}
._40{width:79.056000px;}
._39{width:80.388000px;}
._31{width:87.318000px;}
._1e{width:89.100000px;}
._49{width:91.080000px;}
._38{width:96.162000px;}
._44{width:106.260000px;}
._27{width:122.508000px;}
._25{width:129.672000px;}
._3e{width:134.688000px;}
._26{width:136.098000px;}
._42{width:138.648000px;}
._3a{width:163.416000px;}
._3f{width:185.196000px;}
._41{width:227.508000px;}
._1d{width:246.096000px;}
._28{width:253.986000px;}
._2a{width:261.990000px;}
._3c{width:274.368000px;}
._2d{width:299.124000px;}
._43{width:320.364000px;}
._15{width:337.770000px;}
._21{width:350.442000px;}
._23{width:452.028000px;}
._24{width:554.064000px;}
._29{width:563.286000px;}
._3d{width:564.480000px;}
._1b{width:597.810000px;}
._13{width:649.026000px;}
._20{width:816.348000px;}
._1c{width:820.044000px;}
._14{width:827.304000px;}
._1a{width:842.022000px;}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(126,126,126);}
.fc2{color:rgb(163,163,163);}
.fc1{color:rgb(162,162,162);}
.fc0{color:rgb(127,127,127);}
.fs2{font-size:33.000000px;}
.fs3{font-size:36.000000px;}
.fs7{font-size:42.000000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y3b{bottom:87.541500px;}
.y4a{bottom:89.641500px;}
.yfa{bottom:132.991500px;}
.yb4{bottom:133.441500px;}
.y122{bottom:135.691500px;}
.y140{bottom:141.841500px;}
.y8a{bottom:141.991500px;}
.yf9{bottom:150.241500px;}
.yb3{bottom:153.091500px;}
.y119{bottom:154.891500px;}
.y69{bottom:156.391500px;}
.y13f{bottom:159.091500px;}
.y89{bottom:161.041500px;}
.yf8{bottom:167.491500px;}
.yb2{bottom:172.141500px;}
.y121{bottom:177.091500px;}
.y88{bottom:179.941500px;}
.yf7{bottom:184.741500px;}
.y118{bottom:185.941500px;}
.y68{bottom:187.441500px;}
.yb1{bottom:191.041500px;}
.y13e{bottom:193.141500px;}
.y120{bottom:197.791500px;}
.y87{bottom:198.991500px;}
.yf6{bottom:201.991500px;}
.yb0{bottom:210.091500px;}
.y117{bottom:216.991500px;}
.y86{bottom:217.891500px;}
.y67{bottom:218.491500px;}
.yf5{bottom:219.241500px;}
.ye4{bottom:224.041500px;}
.y174{bottom:224.941500px;}
.yaf{bottom:228.991500px;}
.yf4{bottom:236.491500px;}
.y85{bottom:236.941500px;}
.y11f{bottom:239.191500px;}
.y173{bottom:242.191500px;}
.ye3{bottom:243.841500px;}
.yae{bottom:248.041500px;}
.y66{bottom:249.541500px;}
.yf3{bottom:253.741500px;}
.y13d{bottom:255.241500px;}
.y84{bottom:255.841500px;}
.y172{bottom:259.441500px;}
.y11e{bottom:259.891500px;}
.ye2{bottom:262.741500px;}
.yad{bottom:266.941500px;}
.yf2{bottom:270.991500px;}
.y83{bottom:274.891500px;}
.y171{bottom:276.691500px;}
.y116{bottom:279.091500px;}
.y65{bottom:280.591500px;}
.ye1{bottom:281.791500px;}
.y13c{bottom:286.291500px;}
.yac{bottom:286.741500px;}
.yf1{bottom:288.241500px;}
.y82{bottom:293.791500px;}
.y170{bottom:293.941500px;}
.ye0{bottom:300.691500px;}
.y11d{bottom:301.291500px;}
.yf0{bottom:305.491500px;}
.yab{bottom:305.641500px;}
.y115{bottom:310.141500px;}
.y16f{bottom:311.191500px;}
.y64{bottom:311.641500px;}
.y81{bottom:313.591500px;}
.y13b{bottom:317.341500px;}
.ydf{bottom:319.741500px;}
.y11c{bottom:321.991500px;}
.yef{bottom:323.491500px;}
.yaa{bottom:324.691500px;}
.y16e{bottom:328.441500px;}
.y80{bottom:332.491500px;}
.yde{bottom:338.641500px;}
.yee{bottom:340.741500px;}
.y114{bottom:341.191500px;}
.y63{bottom:342.691500px;}
.ya9{bottom:343.591500px;}
.y16d{bottom:345.691500px;}
.y13a{bottom:348.391500px;}
.y7f{bottom:351.541500px;}
.ydd{bottom:357.691500px;}
.yed{bottom:357.991500px;}
.ya8{bottom:362.641500px;}
.y16c{bottom:362.941500px;}
.y11b{bottom:363.391500px;}
.y7e{bottom:370.441500px;}
.y113{bottom:372.241500px;}
.y62{bottom:373.741500px;}
.yec{bottom:375.241500px;}
.ydc{bottom:377.341500px;}
.y139{bottom:379.441500px;}
.y16b{bottom:380.191500px;}
.ya7{bottom:381.541500px;}
.y11a{bottom:384.091500px;}
.y7d{bottom:389.491500px;}
.yeb{bottom:392.491500px;}
.ydb{bottom:396.391500px;}
.y16a{bottom:397.441500px;}
.ya6{bottom:400.591500px;}
.y112{bottom:403.291500px;}
.y61{bottom:404.791500px;}
.y7c{bottom:409.141500px;}
.yea{bottom:409.741500px;}
.y138{bottom:410.491500px;}
.y169{bottom:414.691500px;}
.yda{bottom:415.291500px;}
.ya5{bottom:419.491500px;}
.y1e{bottom:426.691500px;}
.ye9{bottom:426.991500px;}
.y7b{bottom:428.191500px;}
.y168{bottom:431.941500px;}
.yd9{bottom:434.341500px;}
.y60{bottom:435.841500px;}
.ya4{bottom:439.291500px;}
.y137{bottom:441.541500px;}
.y1d{bottom:443.941500px;}
.ye8{bottom:444.241500px;}
.y3a{bottom:445.891500px;}
.y7a{bottom:447.091500px;}
.y167{bottom:449.191500px;}
.yd8{bottom:453.241500px;}
.ya3{bottom:458.191500px;}
.y1c{bottom:461.341500px;}
.ye7{bottom:461.491500px;}
.y111{bottom:465.391500px;}
.y79{bottom:466.141500px;}
.y166{bottom:466.441500px;}
.y5f{bottom:466.891500px;}
.y39{bottom:467.641500px;}
.yd7{bottom:472.291500px;}
.y136{bottom:472.591500px;}
.ya2{bottom:477.241500px;}
.y1b{bottom:478.591500px;}
.ye6{bottom:478.741500px;}
.y165{bottom:483.691500px;}
.y78{bottom:485.791500px;}
.yd6{bottom:491.191500px;}
.y1a{bottom:495.991500px;}
.ya1{bottom:496.141500px;}
.y110{bottom:496.441500px;}
.y5e{bottom:497.941500px;}
.y164{bottom:500.941500px;}
.y135{bottom:503.641500px;}
.y77{bottom:504.841500px;}
.yd5{bottom:510.991500px;}
.y38{bottom:511.141500px;}
.y19{bottom:513.241500px;}
.ya0{bottom:515.191500px;}
.y163{bottom:518.191500px;}
.y76{bottom:523.741500px;}
.y10f{bottom:527.491500px;}
.y5d{bottom:528.991500px;}
.yd4{bottom:529.891500px;}
.y18{bottom:530.641500px;}
.ye5{bottom:531.241500px;}
.y37{bottom:532.891500px;}
.y9f{bottom:534.091500px;}
.y134{bottom:534.691500px;}
.y162{bottom:535.441500px;}
.y75{bottom:542.791500px;}
.y17{bottom:547.891500px;}
.yd3{bottom:548.941500px;}
.y161{bottom:552.691500px;}
.y9e{bottom:553.141500px;}
.y36{bottom:554.641500px;}
.y10e{bottom:558.541500px;}
.y5c{bottom:560.041500px;}
.y74{bottom:561.691500px;}
.y16{bottom:565.291500px;}
.y133{bottom:565.741500px;}
.yd2{bottom:567.841500px;}
.y160{bottom:569.941500px;}
.y9d{bottom:572.041500px;}
.y35{bottom:576.391500px;}
.y73{bottom:581.491500px;}
.y15{bottom:582.541500px;}
.yd1{bottom:586.891500px;}
.y15f{bottom:587.191500px;}
.y10d{bottom:589.591500px;}
.y5b{bottom:591.091500px;}
.y9c{bottom:591.841500px;}
.y34{bottom:598.141500px;}
.y14{bottom:599.941500px;}
.y15e{bottom:604.441500px;}
.yd0{bottom:605.791500px;}
.y72{bottom:611.791500px;}
.y13{bottom:617.191500px;}
.y132{bottom:617.341500px;}
.y33{bottom:619.891500px;}
.y10c{bottom:620.641500px;}
.y15d{bottom:621.691500px;}
.y5a{bottom:622.141500px;}
.ycf{bottom:624.841500px;}
.y12{bottom:634.591500px;}
.y15c{bottom:638.941500px;}
.y131{bottom:639.091500px;}
.y32{bottom:641.641500px;}
.yce{bottom:643.741500px;}
.y10b{bottom:651.691500px;}
.y11{bottom:651.841500px;}
.y59{bottom:653.191500px;}
.y15b{bottom:656.191500px;}
.y130{bottom:660.841500px;}
.ycd{bottom:662.791500px;}
.y31{bottom:663.391500px;}
.y10{bottom:669.241500px;}
.y15a{bottom:673.441500px;}
.y71{bottom:673.891500px;}
.ycc{bottom:681.691500px;}
.y12f{bottom:682.591500px;}
.y10a{bottom:682.741500px;}
.y49{bottom:683.791500px;}
.y58{bottom:684.241500px;}
.y30{bottom:685.141500px;}
.yf{bottom:686.491500px;}
.y159{bottom:690.691500px;}
.ycb{bottom:700.741500px;}
.y12e{bottom:704.341500px;}
.y70{bottom:704.941500px;}
.y2f{bottom:706.891500px;}
.y158{bottom:707.941500px;}
.y109{bottom:713.791500px;}
.y57{bottom:715.291500px;}
.yca{bottom:719.641500px;}
.ye{bottom:724.291500px;}
.y157{bottom:725.191500px;}
.y12d{bottom:726.091500px;}
.y2e{bottom:728.641500px;}
.y6f{bottom:735.991500px;}
.yc9{bottom:738.691500px;}
.yd{bottom:741.691500px;}
.y156{bottom:742.441500px;}
.y108{bottom:744.841500px;}
.y48{bottom:746.191500px;}
.y56{bottom:746.341500px;}
.y12c{bottom:747.841500px;}
.y2d{bottom:750.391500px;}
.yc8{bottom:757.591500px;}
.y155{bottom:759.691500px;}
.y6e{bottom:767.041500px;}
.y2c{bottom:772.141500px;}
.y107{bottom:775.891500px;}
.yc{bottom:776.341500px;}
.yc7{bottom:776.641500px;}
.y154{bottom:776.941500px;}
.y47{bottom:777.241500px;}
.y55{bottom:777.391500px;}
.y12b{bottom:787.741500px;}
.y2b{bottom:793.891500px;}
.y153{bottom:794.191500px;}
.yc6{bottom:795.541500px;}
.y6d{bottom:798.091500px;}
.y106{bottom:806.941500px;}
.y46{bottom:808.291500px;}
.y54{bottom:808.441500px;}
.yb{bottom:810.841500px;}
.y152{bottom:811.441500px;}
.yc5{bottom:814.591500px;}
.y2a{bottom:815.641500px;}
.ya{bottom:828.241500px;}
.y151{bottom:828.691500px;}
.y6c{bottom:829.141500px;}
.yc4{bottom:833.491500px;}
.y29{bottom:837.391500px;}
.y105{bottom:837.991500px;}
.y45{bottom:839.341500px;}
.y53{bottom:839.491500px;}
.y150{bottom:845.941500px;}
.y12a{bottom:849.841500px;}
.yc3{bottom:852.541500px;}
.y28{bottom:859.141500px;}
.y6b{bottom:860.191500px;}
.y9{bottom:862.741500px;}
.y14f{bottom:863.191500px;}
.y104{bottom:869.041500px;}
.y44{bottom:870.391500px;}
.y52{bottom:870.541500px;}
.yc2{bottom:871.441500px;}
.y8{bottom:879.991500px;}
.y14e{bottom:880.441500px;}
.y27{bottom:880.891500px;}
.yc1{bottom:890.491500px;}
.y129{bottom:891.241500px;}
.y7{bottom:897.391500px;}
.y14d{bottom:897.691500px;}
.y103{bottom:900.091500px;}
.y43{bottom:901.441500px;}
.y51{bottom:901.591500px;}
.y26{bottom:902.641500px;}
.yc0{bottom:910.141500px;}
.y128{bottom:911.941500px;}
.y14c{bottom:914.941500px;}
.y9b{bottom:915.583500px;}
.ybf{bottom:929.191500px;}
.y9a{bottom:931.033500px;}
.y102{bottom:931.141500px;}
.y6{bottom:931.891500px;}
.y25{bottom:932.191500px;}
.y42{bottom:932.491500px;}
.y50{bottom:932.641500px;}
.y99{bottom:946.633500px;}
.ybe{bottom:948.091500px;}
.y5{bottom:949.291500px;}
.y14b{bottom:949.441500px;}
.y127{bottom:953.341500px;}
.y92{bottom:957.883500px;}
.y98{bottom:962.083500px;}
.y101{bottom:962.191500px;}
.y41{bottom:963.541500px;}
.y4f{bottom:963.691500px;}
.y14a{bottom:966.691500px;}
.ybd{bottom:967.141500px;}
.y24{bottom:968.491500px;}
.y91{bottom:973.333500px;}
.y126{bottom:974.041500px;}
.y97{bottom:977.683500px;}
.y149{bottom:983.941500px;}
.y8c{bottom:984.583500px;}
.ybc{bottom:986.041500px;}
.y90{bottom:988.933500px;}
.y23{bottom:990.241500px;}
.y96{bottom:993.133500px;}
.y100{bottom:993.241500px;}
.y40{bottom:994.591500px;}
.y4e{bottom:994.741500px;}
.y148{bottom:1001.191500px;}
.y8f{bottom:1004.383500px;}
.ybb{bottom:1005.091500px;}
.y95{bottom:1008.733500px;}
.y22{bottom:1011.991500px;}
.y125{bottom:1015.441500px;}
.y147{bottom:1018.441500px;}
.y8e{bottom:1019.983500px;}
.y94{bottom:1024.183500px;}
.yba{bottom:1024.741500px;}
.y3f{bottom:1025.641500px;}
.y4d{bottom:1025.791500px;}
.y8d{bottom:1035.433500px;}
.y146{bottom:1035.691500px;}
.y124{bottom:1036.141500px;}
.y93{bottom:1039.783500px;}
.yb9{bottom:1043.791500px;}
.y21{bottom:1045.141500px;}
.yff{bottom:1051.441500px;}
.y145{bottom:1052.941500px;}
.y3e{bottom:1056.691500px;}
.y4c{bottom:1056.841500px;}
.yb8{bottom:1062.691500px;}
.y20{bottom:1067.491500px;}
.yfe{bottom:1069.441500px;}
.y144{bottom:1070.191500px;}
.y123{bottom:1077.541500px;}
.yb7{bottom:1081.741500px;}
.yfd{bottom:1086.691500px;}
.y143{bottom:1087.441500px;}
.y8b{bottom:1087.633500px;}
.y3d{bottom:1087.741500px;}
.y4b{bottom:1087.891500px;}
.y1f{bottom:1089.991500px;}
.y6a{bottom:1098.241500px;}
.yb6{bottom:1100.641500px;}
.yfc{bottom:1103.941500px;}
.y142{bottom:1104.691500px;}
.y3c{bottom:1118.941500px;}
.yb5{bottom:1119.691500px;}
.yfb{bottom:1121.191500px;}
.y141{bottom:1121.941500px;}
.y4{bottom:1131.991500px;}
.y3{bottom:1145.791500px;}
.y2{bottom:1160.941500px;}
.h5{height:34.968750px;}
.hf{height:39.313477px;}
.h10{height:39.339844px;}
.h4{height:41.203125px;}
.h7{height:43.710938px;}
.h8{height:52.646484px;}
.h6{height:53.291016px;}
.hc{height:56.654297px;}
.ha{height:57.911133px;}
.h11{height:58.620117px;}
.h3{height:61.804688px;}
.hd{height:63.175781px;}
.hb{height:63.949219px;}
.he{height:65.052539px;}
.h9{height:69.278320px;}
.h12{height:126.911133px;}
.h2{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.955906px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.200000px;}
.x6{left:87.300000px;}
.x35{left:90.750000px;}
.x20{left:93.150000px;}
.x8{left:94.950000px;}
.xe{left:96.150000px;}
.x53{left:100.500000px;}
.x4d{left:111.000000px;}
.x3c{left:114.900000px;}
.xf{left:121.950000px;}
.xd{left:126.600000px;}
.x3d{left:135.900000px;}
.x7{left:140.550000px;}
.x5c{left:179.100000px;}
.x45{left:238.950000px;}
.x39{left:240.300000px;}
.x54{left:241.650000px;}
.x22{left:242.850000px;}
.x30{left:244.500000px;}
.x44{left:245.550000px;}
.x2e{left:248.550000px;}
.x2d{left:250.200000px;}
.xa{left:251.550000px;}
.x2f{left:253.200000px;}
.x21{left:256.950000px;}
.x4f{left:259.350000px;}
.x3e{left:260.700000px;}
.x10{left:266.700000px;}
.x38{left:268.050000px;}
.x23{left:270.150000px;}
.x37{left:273.300000px;}
.x36{left:279.300000px;}
.x4e{left:284.400000px;}
.x55{left:287.700000px;}
.x11{left:292.050000px;}
.xb{left:301.500000px;}
.x5d{left:334.500000px;}
.x5{left:347.400000px;}
.x2{left:351.300000px;}
.x3{left:377.850000px;}
.x3f{left:401.400000px;}
.x18{left:402.450000px;}
.x25{left:404.400000px;}
.x56{left:405.450000px;}
.x14{left:407.400000px;}
.x15{left:409.200000px;}
.x50{left:411.900000px;}
.x3a{left:415.800000px;}
.x16{left:419.250000px;}
.x58{left:421.350000px;}
.x17{left:424.500000px;}
.x31{left:426.450000px;}
.x46{left:428.700000px;}
.x13{left:430.050000px;}
.x48{left:432.300000px;}
.x24{left:435.300000px;}
.x47{left:439.200000px;}
.x12{left:440.400000px;}
.x57{left:441.900000px;}
.x51{left:447.000000px;}
.x40{left:452.100000px;}
.x5f{left:508.950000px;}
.x4{left:535.500000px;}
.x9{left:538.200000px;}
.x5e{left:558.450000px;}
.x3b{left:562.350000px;}
.x5a{left:563.550000px;}
.x1d{left:564.750000px;}
.x42{left:566.100000px;}
.x27{left:567.450000px;}
.x19{left:569.100000px;}
.x2b{left:570.900000px;}
.x29{left:572.250000px;}
.x26{left:574.200000px;}
.x41{left:575.700000px;}
.x1a{left:576.900000px;}
.x4b{left:578.400000px;}
.x33{left:580.050000px;}
.x4a{left:581.400000px;}
.x1c{left:583.200000px;}
.x1b{left:584.400000px;}
.x32{left:586.950000px;}
.x1e{left:588.000000px;}
.x4c{left:591.000000px;}
.x59{left:592.050000px;}
.x49{left:595.350000px;}
.x28{left:597.000000px;}
.x1f{left:600.450000px;}
.x2a{left:604.950000px;}
.xc{left:608.850000px;}
.x5b{left:610.050000px;}
.x43{left:621.300000px;}
.x52{left:630.150000px;}
.x2c{left:645.150000px;}
.x34{left:653.400000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:25.066667pt;}
.v2{vertical-align:61.333333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.202667pt;}
.ls2{letter-spacing:4.266667pt;}
.ws3{word-spacing:-17.333333pt;}
.ws4{word-spacing:-16.000000pt;}
.ws1{word-spacing:-14.773333pt;}
.ws9{word-spacing:-14.666667pt;}
.ws2{word-spacing:-13.333333pt;}
.ws0{word-spacing:-10.666667pt;}
.ws7{word-spacing:-9.333333pt;}
.ws5{word-spacing:-0.058667pt;}
.ws6{word-spacing:0.000000pt;}
.wsa{word-spacing:355.141333pt;}
.ws8{word-spacing:515.674667pt;}
.wsb{word-spacing:566.906667pt;}
._45{margin-left:-8.229333pt;}
._48{margin-left:-6.762667pt;}
._11{margin-left:-5.456000pt;}
._2{margin-left:-4.000000pt;}
._9{margin-left:-3.050667pt;}
._1{margin-left:-2.133333pt;}
._3{margin-left:-0.906667pt;}
._0{width:1.408000pt;}
._7{width:2.992000pt;}
._6{width:4.458667pt;}
._d{width:5.514667pt;}
._8{width:6.512000pt;}
._5{width:8.213333pt;}
._4{width:9.104000pt;}
._f{width:10.090667pt;}
._c{width:11.498667pt;}
._a{width:12.613333pt;}
._e{width:13.669333pt;}
._12{width:14.672000pt;}
._19{width:16.309333pt;}
._10{width:18.176000pt;}
._34{width:19.098667pt;}
._2e{width:20.416000pt;}
._b{width:21.648000pt;}
._3b{width:22.757333pt;}
._17{width:23.877333pt;}
._18{width:25.109333pt;}
._36{width:26.282667pt;}
._35{width:27.221333pt;}
._32{width:28.394667pt;}
._37{width:29.978667pt;}
._16{width:31.152000pt;}
._22{width:32.560000pt;}
._46{width:34.240000pt;}
._1f{width:41.594667pt;}
._33{width:43.413333pt;}
._2b{width:44.352000pt;}
._2c{width:45.525333pt;}
._30{width:50.688000pt;}
._2f{width:51.626667pt;}
._47{width:53.802667pt;}
._40{width:70.272000pt;}
._39{width:71.456000pt;}
._31{width:77.616000pt;}
._1e{width:79.200000pt;}
._49{width:80.960000pt;}
._38{width:85.477333pt;}
._44{width:94.453333pt;}
._27{width:108.896000pt;}
._25{width:115.264000pt;}
._3e{width:119.722667pt;}
._26{width:120.976000pt;}
._42{width:123.242667pt;}
._3a{width:145.258667pt;}
._3f{width:164.618667pt;}
._41{width:202.229333pt;}
._1d{width:218.752000pt;}
._28{width:225.765333pt;}
._2a{width:232.880000pt;}
._3c{width:243.882667pt;}
._2d{width:265.888000pt;}
._43{width:284.768000pt;}
._15{width:300.240000pt;}
._21{width:311.504000pt;}
._23{width:401.802667pt;}
._24{width:492.501333pt;}
._29{width:500.698667pt;}
._3d{width:501.760000pt;}
._1b{width:531.386667pt;}
._13{width:576.912000pt;}
._20{width:725.642667pt;}
._1c{width:728.928000pt;}
._14{width:735.381333pt;}
._1a{width:748.464000pt;}
.fs2{font-size:29.333333pt;}
.fs3{font-size:32.000000pt;}
.fs7{font-size:37.333333pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y3b{bottom:77.814667pt;}
.y4a{bottom:79.681333pt;}
.yfa{bottom:118.214667pt;}
.yb4{bottom:118.614667pt;}
.y122{bottom:120.614667pt;}
.y140{bottom:126.081333pt;}
.y8a{bottom:126.214667pt;}
.yf9{bottom:133.548000pt;}
.yb3{bottom:136.081333pt;}
.y119{bottom:137.681333pt;}
.y69{bottom:139.014667pt;}
.y13f{bottom:141.414667pt;}
.y89{bottom:143.148000pt;}
.yf8{bottom:148.881333pt;}
.yb2{bottom:153.014667pt;}
.y121{bottom:157.414667pt;}
.y88{bottom:159.948000pt;}
.yf7{bottom:164.214667pt;}
.y118{bottom:165.281333pt;}
.y68{bottom:166.614667pt;}
.yb1{bottom:169.814667pt;}
.y13e{bottom:171.681333pt;}
.y120{bottom:175.814667pt;}
.y87{bottom:176.881333pt;}
.yf6{bottom:179.548000pt;}
.yb0{bottom:186.748000pt;}
.y117{bottom:192.881333pt;}
.y86{bottom:193.681333pt;}
.y67{bottom:194.214667pt;}
.yf5{bottom:194.881333pt;}
.ye4{bottom:199.148000pt;}
.y174{bottom:199.948000pt;}
.yaf{bottom:203.548000pt;}
.yf4{bottom:210.214667pt;}
.y85{bottom:210.614667pt;}
.y11f{bottom:212.614667pt;}
.y173{bottom:215.281333pt;}
.ye3{bottom:216.748000pt;}
.yae{bottom:220.481333pt;}
.y66{bottom:221.814667pt;}
.yf3{bottom:225.548000pt;}
.y13d{bottom:226.881333pt;}
.y84{bottom:227.414667pt;}
.y172{bottom:230.614667pt;}
.y11e{bottom:231.014667pt;}
.ye2{bottom:233.548000pt;}
.yad{bottom:237.281333pt;}
.yf2{bottom:240.881333pt;}
.y83{bottom:244.348000pt;}
.y171{bottom:245.948000pt;}
.y116{bottom:248.081333pt;}
.y65{bottom:249.414667pt;}
.ye1{bottom:250.481333pt;}
.y13c{bottom:254.481333pt;}
.yac{bottom:254.881333pt;}
.yf1{bottom:256.214667pt;}
.y82{bottom:261.148000pt;}
.y170{bottom:261.281333pt;}
.ye0{bottom:267.281333pt;}
.y11d{bottom:267.814667pt;}
.yf0{bottom:271.548000pt;}
.yab{bottom:271.681333pt;}
.y115{bottom:275.681333pt;}
.y16f{bottom:276.614667pt;}
.y64{bottom:277.014667pt;}
.y81{bottom:278.748000pt;}
.y13b{bottom:282.081333pt;}
.ydf{bottom:284.214667pt;}
.y11c{bottom:286.214667pt;}
.yef{bottom:287.548000pt;}
.yaa{bottom:288.614667pt;}
.y16e{bottom:291.948000pt;}
.y80{bottom:295.548000pt;}
.yde{bottom:301.014667pt;}
.yee{bottom:302.881333pt;}
.y114{bottom:303.281333pt;}
.y63{bottom:304.614667pt;}
.ya9{bottom:305.414667pt;}
.y16d{bottom:307.281333pt;}
.y13a{bottom:309.681333pt;}
.y7f{bottom:312.481333pt;}
.ydd{bottom:317.948000pt;}
.yed{bottom:318.214667pt;}
.ya8{bottom:322.348000pt;}
.y16c{bottom:322.614667pt;}
.y11b{bottom:323.014667pt;}
.y7e{bottom:329.281333pt;}
.y113{bottom:330.881333pt;}
.y62{bottom:332.214667pt;}
.yec{bottom:333.548000pt;}
.ydc{bottom:335.414667pt;}
.y139{bottom:337.281333pt;}
.y16b{bottom:337.948000pt;}
.ya7{bottom:339.148000pt;}
.y11a{bottom:341.414667pt;}
.y7d{bottom:346.214667pt;}
.yeb{bottom:348.881333pt;}
.ydb{bottom:352.348000pt;}
.y16a{bottom:353.281333pt;}
.ya6{bottom:356.081333pt;}
.y112{bottom:358.481333pt;}
.y61{bottom:359.814667pt;}
.y7c{bottom:363.681333pt;}
.yea{bottom:364.214667pt;}
.y138{bottom:364.881333pt;}
.y169{bottom:368.614667pt;}
.yda{bottom:369.148000pt;}
.ya5{bottom:372.881333pt;}
.y1e{bottom:379.281333pt;}
.ye9{bottom:379.548000pt;}
.y7b{bottom:380.614667pt;}
.y168{bottom:383.948000pt;}
.yd9{bottom:386.081333pt;}
.y60{bottom:387.414667pt;}
.ya4{bottom:390.481333pt;}
.y137{bottom:392.481333pt;}
.y1d{bottom:394.614667pt;}
.ye8{bottom:394.881333pt;}
.y3a{bottom:396.348000pt;}
.y7a{bottom:397.414667pt;}
.y167{bottom:399.281333pt;}
.yd8{bottom:402.881333pt;}
.ya3{bottom:407.281333pt;}
.y1c{bottom:410.081333pt;}
.ye7{bottom:410.214667pt;}
.y111{bottom:413.681333pt;}
.y79{bottom:414.348000pt;}
.y166{bottom:414.614667pt;}
.y5f{bottom:415.014667pt;}
.y39{bottom:415.681333pt;}
.yd7{bottom:419.814667pt;}
.y136{bottom:420.081333pt;}
.ya2{bottom:424.214667pt;}
.y1b{bottom:425.414667pt;}
.ye6{bottom:425.548000pt;}
.y165{bottom:429.948000pt;}
.y78{bottom:431.814667pt;}
.yd6{bottom:436.614667pt;}
.y1a{bottom:440.881333pt;}
.ya1{bottom:441.014667pt;}
.y110{bottom:441.281333pt;}
.y5e{bottom:442.614667pt;}
.y164{bottom:445.281333pt;}
.y135{bottom:447.681333pt;}
.y77{bottom:448.748000pt;}
.yd5{bottom:454.214667pt;}
.y38{bottom:454.348000pt;}
.y19{bottom:456.214667pt;}
.ya0{bottom:457.948000pt;}
.y163{bottom:460.614667pt;}
.y76{bottom:465.548000pt;}
.y10f{bottom:468.881333pt;}
.y5d{bottom:470.214667pt;}
.yd4{bottom:471.014667pt;}
.y18{bottom:471.681333pt;}
.ye5{bottom:472.214667pt;}
.y37{bottom:473.681333pt;}
.y9f{bottom:474.748000pt;}
.y134{bottom:475.281333pt;}
.y162{bottom:475.948000pt;}
.y75{bottom:482.481333pt;}
.y17{bottom:487.014667pt;}
.yd3{bottom:487.948000pt;}
.y161{bottom:491.281333pt;}
.y9e{bottom:491.681333pt;}
.y36{bottom:493.014667pt;}
.y10e{bottom:496.481333pt;}
.y5c{bottom:497.814667pt;}
.y74{bottom:499.281333pt;}
.y16{bottom:502.481333pt;}
.y133{bottom:502.881333pt;}
.yd2{bottom:504.748000pt;}
.y160{bottom:506.614667pt;}
.y9d{bottom:508.481333pt;}
.y35{bottom:512.348000pt;}
.y73{bottom:516.881333pt;}
.y15{bottom:517.814667pt;}
.yd1{bottom:521.681333pt;}
.y15f{bottom:521.948000pt;}
.y10d{bottom:524.081333pt;}
.y5b{bottom:525.414667pt;}
.y9c{bottom:526.081333pt;}
.y34{bottom:531.681333pt;}
.y14{bottom:533.281333pt;}
.y15e{bottom:537.281333pt;}
.yd0{bottom:538.481333pt;}
.y72{bottom:543.814667pt;}
.y13{bottom:548.614667pt;}
.y132{bottom:548.748000pt;}
.y33{bottom:551.014667pt;}
.y10c{bottom:551.681333pt;}
.y15d{bottom:552.614667pt;}
.y5a{bottom:553.014667pt;}
.ycf{bottom:555.414667pt;}
.y12{bottom:564.081333pt;}
.y15c{bottom:567.948000pt;}
.y131{bottom:568.081333pt;}
.y32{bottom:570.348000pt;}
.yce{bottom:572.214667pt;}
.y10b{bottom:579.281333pt;}
.y11{bottom:579.414667pt;}
.y59{bottom:580.614667pt;}
.y15b{bottom:583.281333pt;}
.y130{bottom:587.414667pt;}
.ycd{bottom:589.148000pt;}
.y31{bottom:589.681333pt;}
.y10{bottom:594.881333pt;}
.y15a{bottom:598.614667pt;}
.y71{bottom:599.014667pt;}
.ycc{bottom:605.948000pt;}
.y12f{bottom:606.748000pt;}
.y10a{bottom:606.881333pt;}
.y49{bottom:607.814667pt;}
.y58{bottom:608.214667pt;}
.y30{bottom:609.014667pt;}
.yf{bottom:610.214667pt;}
.y159{bottom:613.948000pt;}
.ycb{bottom:622.881333pt;}
.y12e{bottom:626.081333pt;}
.y70{bottom:626.614667pt;}
.y2f{bottom:628.348000pt;}
.y158{bottom:629.281333pt;}
.y109{bottom:634.481333pt;}
.y57{bottom:635.814667pt;}
.yca{bottom:639.681333pt;}
.ye{bottom:643.814667pt;}
.y157{bottom:644.614667pt;}
.y12d{bottom:645.414667pt;}
.y2e{bottom:647.681333pt;}
.y6f{bottom:654.214667pt;}
.yc9{bottom:656.614667pt;}
.yd{bottom:659.281333pt;}
.y156{bottom:659.948000pt;}
.y108{bottom:662.081333pt;}
.y48{bottom:663.281333pt;}
.y56{bottom:663.414667pt;}
.y12c{bottom:664.748000pt;}
.y2d{bottom:667.014667pt;}
.yc8{bottom:673.414667pt;}
.y155{bottom:675.281333pt;}
.y6e{bottom:681.814667pt;}
.y2c{bottom:686.348000pt;}
.y107{bottom:689.681333pt;}
.yc{bottom:690.081333pt;}
.yc7{bottom:690.348000pt;}
.y154{bottom:690.614667pt;}
.y47{bottom:690.881333pt;}
.y55{bottom:691.014667pt;}
.y12b{bottom:700.214667pt;}
.y2b{bottom:705.681333pt;}
.y153{bottom:705.948000pt;}
.yc6{bottom:707.148000pt;}
.y6d{bottom:709.414667pt;}
.y106{bottom:717.281333pt;}
.y46{bottom:718.481333pt;}
.y54{bottom:718.614667pt;}
.yb{bottom:720.748000pt;}
.y152{bottom:721.281333pt;}
.yc5{bottom:724.081333pt;}
.y2a{bottom:725.014667pt;}
.ya{bottom:736.214667pt;}
.y151{bottom:736.614667pt;}
.y6c{bottom:737.014667pt;}
.yc4{bottom:740.881333pt;}
.y29{bottom:744.348000pt;}
.y105{bottom:744.881333pt;}
.y45{bottom:746.081333pt;}
.y53{bottom:746.214667pt;}
.y150{bottom:751.948000pt;}
.y12a{bottom:755.414667pt;}
.yc3{bottom:757.814667pt;}
.y28{bottom:763.681333pt;}
.y6b{bottom:764.614667pt;}
.y9{bottom:766.881333pt;}
.y14f{bottom:767.281333pt;}
.y104{bottom:772.481333pt;}
.y44{bottom:773.681333pt;}
.y52{bottom:773.814667pt;}
.yc2{bottom:774.614667pt;}
.y8{bottom:782.214667pt;}
.y14e{bottom:782.614667pt;}
.y27{bottom:783.014667pt;}
.yc1{bottom:791.548000pt;}
.y129{bottom:792.214667pt;}
.y7{bottom:797.681333pt;}
.y14d{bottom:797.948000pt;}
.y103{bottom:800.081333pt;}
.y43{bottom:801.281333pt;}
.y51{bottom:801.414667pt;}
.y26{bottom:802.348000pt;}
.yc0{bottom:809.014667pt;}
.y128{bottom:810.614667pt;}
.y14c{bottom:813.281333pt;}
.y9b{bottom:813.852000pt;}
.ybf{bottom:825.948000pt;}
.y9a{bottom:827.585333pt;}
.y102{bottom:827.681333pt;}
.y6{bottom:828.348000pt;}
.y25{bottom:828.614667pt;}
.y42{bottom:828.881333pt;}
.y50{bottom:829.014667pt;}
.y99{bottom:841.452000pt;}
.ybe{bottom:842.748000pt;}
.y5{bottom:843.814667pt;}
.y14b{bottom:843.948000pt;}
.y127{bottom:847.414667pt;}
.y92{bottom:851.452000pt;}
.y98{bottom:855.185333pt;}
.y101{bottom:855.281333pt;}
.y41{bottom:856.481333pt;}
.y4f{bottom:856.614667pt;}
.y14a{bottom:859.281333pt;}
.ybd{bottom:859.681333pt;}
.y24{bottom:860.881333pt;}
.y91{bottom:865.185333pt;}
.y126{bottom:865.814667pt;}
.y97{bottom:869.052000pt;}
.y149{bottom:874.614667pt;}
.y8c{bottom:875.185333pt;}
.ybc{bottom:876.481333pt;}
.y90{bottom:879.052000pt;}
.y23{bottom:880.214667pt;}
.y96{bottom:882.785333pt;}
.y100{bottom:882.881333pt;}
.y40{bottom:884.081333pt;}
.y4e{bottom:884.214667pt;}
.y148{bottom:889.948000pt;}
.y8f{bottom:892.785333pt;}
.ybb{bottom:893.414667pt;}
.y95{bottom:896.652000pt;}
.y22{bottom:899.548000pt;}
.y125{bottom:902.614667pt;}
.y147{bottom:905.281333pt;}
.y8e{bottom:906.652000pt;}
.y94{bottom:910.385333pt;}
.yba{bottom:910.881333pt;}
.y3f{bottom:911.681333pt;}
.y4d{bottom:911.814667pt;}
.y8d{bottom:920.385333pt;}
.y146{bottom:920.614667pt;}
.y124{bottom:921.014667pt;}
.y93{bottom:924.252000pt;}
.yb9{bottom:927.814667pt;}
.y21{bottom:929.014667pt;}
.yff{bottom:934.614667pt;}
.y145{bottom:935.948000pt;}
.y3e{bottom:939.281333pt;}
.y4c{bottom:939.414667pt;}
.yb8{bottom:944.614667pt;}
.y20{bottom:948.881333pt;}
.yfe{bottom:950.614667pt;}
.y144{bottom:951.281333pt;}
.y123{bottom:957.814667pt;}
.yb7{bottom:961.548000pt;}
.yfd{bottom:965.948000pt;}
.y143{bottom:966.614667pt;}
.y8b{bottom:966.785333pt;}
.y3d{bottom:966.881333pt;}
.y4b{bottom:967.014667pt;}
.y1f{bottom:968.881333pt;}
.y6a{bottom:976.214667pt;}
.yb6{bottom:978.348000pt;}
.yfc{bottom:981.281333pt;}
.y142{bottom:981.948000pt;}
.y3c{bottom:994.614667pt;}
.yb5{bottom:995.281333pt;}
.yfb{bottom:996.614667pt;}
.y141{bottom:997.281333pt;}
.y4{bottom:1006.214667pt;}
.y3{bottom:1018.481333pt;}
.y2{bottom:1031.948000pt;}
.h5{height:31.083333pt;}
.hf{height:34.945312pt;}
.h10{height:34.968750pt;}
.h4{height:36.625000pt;}
.h7{height:38.854167pt;}
.h8{height:46.796875pt;}
.h6{height:47.369792pt;}
.hc{height:50.359375pt;}
.ha{height:51.476562pt;}
.h11{height:52.106771pt;}
.h3{height:54.937500pt;}
.hd{height:56.156250pt;}
.hb{height:56.843750pt;}
.he{height:57.824479pt;}
.h9{height:61.580729pt;}
.h12{height:112.809896pt;}
.h2{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.738583pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.733333pt;}
.x6{left:77.600000pt;}
.x35{left:80.666667pt;}
.x20{left:82.800000pt;}
.x8{left:84.400000pt;}
.xe{left:85.466667pt;}
.x53{left:89.333333pt;}
.x4d{left:98.666667pt;}
.x3c{left:102.133333pt;}
.xf{left:108.400000pt;}
.xd{left:112.533333pt;}
.x3d{left:120.800000pt;}
.x7{left:124.933333pt;}
.x5c{left:159.200000pt;}
.x45{left:212.400000pt;}
.x39{left:213.600000pt;}
.x54{left:214.800000pt;}
.x22{left:215.866667pt;}
.x30{left:217.333333pt;}
.x44{left:218.266667pt;}
.x2e{left:220.933333pt;}
.x2d{left:222.400000pt;}
.xa{left:223.600000pt;}
.x2f{left:225.066667pt;}
.x21{left:228.400000pt;}
.x4f{left:230.533333pt;}
.x3e{left:231.733333pt;}
.x10{left:237.066667pt;}
.x38{left:238.266667pt;}
.x23{left:240.133333pt;}
.x37{left:242.933333pt;}
.x36{left:248.266667pt;}
.x4e{left:252.800000pt;}
.x55{left:255.733333pt;}
.x11{left:259.600000pt;}
.xb{left:268.000000pt;}
.x5d{left:297.333333pt;}
.x5{left:308.800000pt;}
.x2{left:312.266667pt;}
.x3{left:335.866667pt;}
.x3f{left:356.800000pt;}
.x18{left:357.733333pt;}
.x25{left:359.466667pt;}
.x56{left:360.400000pt;}
.x14{left:362.133333pt;}
.x15{left:363.733333pt;}
.x50{left:366.133333pt;}
.x3a{left:369.600000pt;}
.x16{left:372.666667pt;}
.x58{left:374.533333pt;}
.x17{left:377.333333pt;}
.x31{left:379.066667pt;}
.x46{left:381.066667pt;}
.x13{left:382.266667pt;}
.x48{left:384.266667pt;}
.x24{left:386.933333pt;}
.x47{left:390.400000pt;}
.x12{left:391.466667pt;}
.x57{left:392.800000pt;}
.x51{left:397.333333pt;}
.x40{left:401.866667pt;}
.x5f{left:452.400000pt;}
.x4{left:476.000000pt;}
.x9{left:478.400000pt;}
.x5e{left:496.400000pt;}
.x3b{left:499.866667pt;}
.x5a{left:500.933333pt;}
.x1d{left:502.000000pt;}
.x42{left:503.200000pt;}
.x27{left:504.400000pt;}
.x19{left:505.866667pt;}
.x2b{left:507.466667pt;}
.x29{left:508.666667pt;}
.x26{left:510.400000pt;}
.x41{left:511.733333pt;}
.x1a{left:512.800000pt;}
.x4b{left:514.133333pt;}
.x33{left:515.600000pt;}
.x4a{left:516.800000pt;}
.x1c{left:518.400000pt;}
.x1b{left:519.466667pt;}
.x32{left:521.733333pt;}
.x1e{left:522.666667pt;}
.x4c{left:525.333333pt;}
.x59{left:526.266667pt;}
.x49{left:529.200000pt;}
.x28{left:530.666667pt;}
.x1f{left:533.733333pt;}
.x2a{left:537.733333pt;}
.xc{left:541.200000pt;}
.x5b{left:542.266667pt;}
.x43{left:552.266667pt;}
.x52{left:560.133333pt;}
.x2c{left:573.466667pt;}
.x34{left:580.800000pt;}
}




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