
    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_9013eadb80fa6aa9d6a16cbc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_9585088fb094f6d4743fa1b5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_6eca9301f3bd7c3357e64baf.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_208420c167c0a1cd2f85df69.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.937500;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_3fd3297e6ee39db6711fafef.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d3dfa2dc549d4992b4f8ba2f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_349430cae2991374b709314e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_dcc4b5aa8c5a05b99bb28e8b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls5{letter-spacing:-0.648000px;}
.ls8{letter-spacing:-0.216000px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.256200px;}
.ls9{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.720000px;}
.ls2{letter-spacing:33.984000px;}
.ls6{letter-spacing:54.864000px;}
.ls4{letter-spacing:64.224000px;}
.ls3{letter-spacing:87.984000px;}
.ls1{letter-spacing:846.156000px;}
.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;}
}
.ws2{word-spacing:-72.000000px;}
.ws6{word-spacing:-18.720000px;}
.ws4{word-spacing:-18.288000px;}
.ws5{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:-15.226440px;}
.ws0{word-spacing:0.000000px;}
._12{margin-left:-2.357760px;}
._0{margin-left:-1.324800px;}
._1{width:1.274880px;}
._4{width:2.620800px;}
._8{width:3.635520px;}
._9{width:4.910400px;}
._10{width:6.192000px;}
._e{width:7.704000px;}
._5{width:8.712000px;}
._3{width:9.864000px;}
._2{width:10.872000px;}
._f{width:12.390720px;}
._6{width:13.752000px;}
._7{width:15.120000px;}
._13{width:16.200000px;}
._19{width:19.368000px;}
._11{width:20.496000px;}
._a{width:22.320000px;}
._b{width:23.433120px;}
._1c{width:24.480000px;}
._18{width:25.697760px;}
._17{width:27.144000px;}
._14{width:28.440000px;}
._15{width:29.520000px;}
._16{width:30.816000px;}
._1a{width:32.544000px;}
._1b{width:33.768000px;}
._1d{width:35.640000px;}
._1f{width:36.957120px;}
._1e{width:38.232000px;}
._c{width:839.748000px;}
._d{width:847.884000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:54.000000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:108.000000px;}
.fs1{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:17.280000px;}
.y1c{bottom:50.034000px;}
.y1f{bottom:57.636000px;}
.y1e{bottom:77.796000px;}
.y1b{bottom:82.434000px;}
.y197{bottom:106.236000px;}
.y1a{bottom:115.014000px;}
.yc8{bottom:115.596000px;}
.y1a0{bottom:115.956000px;}
.y19c{bottom:116.856000px;}
.y1ce{bottom:117.216000px;}
.y41{bottom:119.196000px;}
.y13e{bottom:122.256000px;}
.yaf{bottom:122.796000px;}
.y1{bottom:126.756000px;}
.y7b{bottom:127.656000px;}
.y57{bottom:129.996000px;}
.yf6{bottom:132.336000px;}
.y186{bottom:133.416000px;}
.yd5{bottom:133.596000px;}
.y1ad{bottom:134.496000px;}
.y1c5{bottom:136.656000px;}
.y1a7{bottom:138.096000px;}
.y196{bottom:141.336000px;}
.yc7{bottom:146.556000px;}
.y19f{bottom:147.096000px;}
.y19{bottom:147.459000px;}
.y1cd{bottom:148.716000px;}
.y7a{bottom:149.616000px;}
.y13d{bottom:153.390000px;}
.yae{bottom:153.930000px;}
.y109{bottom:154.830000px;}
.y9d{bottom:155.010000px;}
.y122{bottom:158.790000px;}
.y198{bottom:158.970000px;}
.yf5{bottom:163.470000px;}
.y185{bottom:164.550000px;}
.y1ac{bottom:165.630000px;}
.yd4{bottom:165.990000px;}
.y1c4{bottom:167.790000px;}
.y40{bottom:168.870000px;}
.y1a6{bottom:169.050000px;}
.y79{bottom:171.570000px;}
.y195{bottom:172.470000px;}
.y19e{bottom:173.730000px;}
.y56{bottom:177.510000px;}
.yc6{bottom:177.690000px;}
.y1cc{bottom:179.670000px;}
.y18{bottom:180.039000px;}
.y152{bottom:183.810000px;}
.yad{bottom:184.890000px;}
.y9c{bottom:185.970000px;}
.y121{bottom:189.750000px;}
.y78{bottom:193.530000px;}
.yf4{bottom:194.430000px;}
.y184{bottom:195.510000px;}
.y1ab{bottom:196.590000px;}
.yd3{bottom:198.390000px;}
.y1a5{bottom:200.190000px;}
.y3f{bottom:201.630000px;}
.y15b{bottom:203.430000px;}
.y13c{bottom:203.610000px;}
.y194{bottom:204.690000px;}
.y108{bottom:206.850000px;}
.y19b{bottom:208.470000px;}
.yc5{bottom:208.650000px;}
.y1c3{bottom:210.810000px;}
.y17{bottom:212.439000px;}
.y77{bottom:215.490000px;}
.yac{bottom:216.030000px;}
.y151{bottom:216.210000px;}
.y9b{bottom:217.110000px;}
.y55{bottom:225.030000px;}
.yf3{bottom:225.570000px;}
.y183{bottom:226.650000px;}
.y1aa{bottom:227.730000px;}
.yd2{bottom:230.610000px;}
.y1a4{bottom:231.150000px;}
.y120{bottom:232.770000px;}
.y3e{bottom:234.570000px;}
.y193{bottom:235.830000px;}
.y76{bottom:237.450000px;}
.y19a{bottom:239.610000px;}
.yc4{bottom:239.790000px;}
.y1c2{bottom:241.770000px;}
.y16{bottom:245.019000px;}
.yab{bottom:246.990000px;}
.y9a{bottom:248.070000px;}
.y150{bottom:248.430000px;}
.yf2{bottom:256.530000px;}
.y182{bottom:257.610000px;}
.y1a9{bottom:258.690000px;}
.y107{bottom:258.870000px;}
.y75{bottom:259.410000px;}
.y1a3{bottom:262.290000px;}
.yd1{bottom:263.010000px;}
.y11f{bottom:263.910000px;}
.y175{bottom:265.530000px;}
.y13b{bottom:265.710000px;}
.y199{bottom:266.430000px;}
.y15a{bottom:266.790000px;}
.y3d{bottom:267.510000px;}
.yc3{bottom:270.750000px;}
.y54{bottom:272.550000px;}
.y1c1{bottom:272.955000px;}
.y15{bottom:277.419000px;}
.yaa{bottom:278.175000px;}
.y99{bottom:279.255000px;}
.y14f{bottom:280.875000px;}
.y74{bottom:281.415000px;}
.y19d{bottom:285.015000px;}
.yf1{bottom:287.715000px;}
.y181{bottom:288.795000px;}
.y1a8{bottom:289.875000px;}
.y106{bottom:290.055000px;}
.y1a2{bottom:293.295000px;}
.y11e{bottom:294.915000px;}
.yd0{bottom:295.455000px;}
.y174{bottom:296.715000px;}
.y159{bottom:297.975000px;}
.y3c{bottom:300.675000px;}
.yc2{bottom:301.755000px;}
.y73{bottom:303.375000px;}
.y1c0{bottom:303.915000px;}
.ya9{bottom:309.135000px;}
.y14{bottom:309.819000px;}
.y98{bottom:310.215000px;}
.y14e{bottom:311.835000px;}
.y13a{bottom:315.795000px;}
.yf0{bottom:318.675000px;}
.y180{bottom:319.755000px;}
.y1a1{bottom:320.115000px;}
.y53{bottom:320.295000px;}
.y72{bottom:325.335000px;}
.y11d{bottom:326.055000px;}
.ycf{bottom:327.675000px;}
.y192{bottom:328.935000px;}
.y158{bottom:329.115000px;}
.yc1{bottom:332.895000px;}
.y3b{bottom:333.615000px;}
.y1bf{bottom:335.055000px;}
.ya8{bottom:340.275000px;}
.y97{bottom:341.355000px;}
.y105{bottom:342.075000px;}
.y13{bottom:342.399000px;}
.y14d{bottom:342.975000px;}
.y139{bottom:346.935000px;}
.y71{bottom:347.295000px;}
.yef{bottom:349.635000px;}
.y17f{bottom:350.895000px;}
.y11c{bottom:357.015000px;}
.y173{bottom:358.815000px;}
.yce{bottom:360.075000px;}
.y157{bottom:361.335000px;}
.yc0{bottom:363.855000px;}
.y1be{bottom:366.015000px;}
.y3a{bottom:366.555000px;}
.y52{bottom:367.815000px;}
.y70{bottom:369.255000px;}
.ya7{bottom:371.235000px;}
.y96{bottom:372.315000px;}
.y104{bottom:373.035000px;}
.y14c{bottom:373.935000px;}
.y12{bottom:374.799000px;}
.y138{bottom:377.895000px;}
.yee{bottom:380.775000px;}
.y17e{bottom:381.855000px;}
.y172{bottom:389.775000px;}
.y191{bottom:391.035000px;}
.y6f{bottom:391.215000px;}
.ycd{bottom:392.475000px;}
.ybf{bottom:394.995000px;}
.y1cb{bottom:397.155000px;}
.y39{bottom:399.495000px;}
.y11b{bottom:400.035000px;}
.ya6{bottom:402.375000px;}
.y95{bottom:403.455000px;}
.y103{bottom:404.175000px;}
.y14b{bottom:405.075000px;}
.y11{bottom:407.379000px;}
.y1bd{bottom:409.035000px;}
.yed{bottom:411.735000px;}
.y17d{bottom:412.995000px;}
.y6e{bottom:413.355000px;}
.y1d3{bottom:414.795000px;}
.y51{bottom:415.335000px;}
.y171{bottom:422.175000px;}
.y156{bottom:423.435000px;}
.ycc{bottom:424.695000px;}
.ybe{bottom:425.955000px;}
.y137{bottom:428.115000px;}
.y11a{bottom:431.175000px;}
.y38{bottom:432.435000px;}
.ya5{bottom:433.335000px;}
.y94{bottom:434.415000px;}
.y102{bottom:435.135000px;}
.y6d{bottom:435.315000px;}
.y14a{bottom:436.035000px;}
.y10{bottom:439.809000px;}
.y1bc{bottom:440.175000px;}
.yec{bottom:442.875000px;}
.y17c{bottom:443.955000px;}
.y1d2{bottom:446.115000px;}
.y170{bottom:453.135000px;}
.y155{bottom:455.835000px;}
.ybd{bottom:457.095000px;}
.y6c{bottom:457.275000px;}
.y136{bottom:459.255000px;}
.y119{bottom:462.135000px;}
.y50{bottom:462.855000px;}
.ya4{bottom:464.295000px;}
.y37{bottom:465.375000px;}
.y93{bottom:465.555000px;}
.y101{bottom:466.275000px;}
.y149{bottom:467.175000px;}
.y1bb{bottom:471.135000px;}
.yeb{bottom:473.835000px;}
.y17b{bottom:475.095000px;}
.yf{bottom:476.529000px;}
.y1d1{bottom:477.255000px;}
.y6b{bottom:479.235000px;}
.y16f{bottom:484.275000px;}
.y154{bottom:486.795000px;}
.ybc{bottom:488.055000px;}
.y135{bottom:490.215000px;}
.ya3{bottom:495.435000px;}
.y92{bottom:496.515000px;}
.y148{bottom:498.135000px;}
.y36{bottom:498.315000px;}
.y1ba{bottom:502.275000px;}
.yea{bottom:504.975000px;}
.y118{bottom:505.155000px;}
.y17a{bottom:506.055000px;}
.y1d0{bottom:508.215000px;}
.y4f{bottom:510.555000px;}
.y16e{bottom:515.235000px;}
.y100{bottom:518.295000px;}
.ycb{bottom:518.835000px;}
.ybb{bottom:519.195000px;}
.ye{bottom:525.669000px;}
.ya2{bottom:526.395000px;}
.y91{bottom:527.655000px;}
.y147{bottom:528.915000px;}
.y35{bottom:531.255000px;}
.y134{bottom:533.235000px;}
.ye9{bottom:535.935000px;}
.y117{bottom:536.295000px;}
.y179{bottom:537.195000px;}
.y1cf{bottom:539.355000px;}
.y6a{bottom:541.695000px;}
.y16d{bottom:546.375000px;}
.yff{bottom:549.255000px;}
.yca{bottom:549.795000px;}
.yba{bottom:550.155000px;}
.ya1{bottom:554.835000px;}
.y4e{bottom:558.105000px;}
.y90{bottom:558.645000px;}
.y146{bottom:559.905000px;}
.y34{bottom:564.225000px;}
.y133{bottom:564.405000px;}
.ye8{bottom:567.105000px;}
.y116{bottom:567.285000px;}
.y178{bottom:568.185000px;}
.yd{bottom:570.669000px;}
.y69{bottom:572.685000px;}
.y1b9{bottom:576.285000px;}
.y16c{bottom:577.365000px;}
.ya0{bottom:579.525000px;}
.yfe{bottom:580.425000px;}
.yc9{bottom:580.965000px;}
.yb9{bottom:581.325000px;}
.y8f{bottom:589.785000px;}
.y145{bottom:591.405000px;}
.y132{bottom:595.365000px;}
.y33{bottom:597.165000px;}
.ye7{bottom:598.065000px;}
.y115{bottom:598.425000px;}
.y177{bottom:599.325000px;}
.y9f{bottom:602.745000px;}
.yc{bottom:603.249000px;}
.y68{bottom:603.825000px;}
.y4d{bottom:605.625000px;}
.y1b8{bottom:607.425000px;}
.y16b{bottom:608.505000px;}
.yfd{bottom:611.385000px;}
.yb8{bottom:612.285000px;}
.y8e{bottom:620.745000px;}
.y144{bottom:622.365000px;}
.y131{bottom:626.505000px;}
.ye6{bottom:629.205000px;}
.y32{bottom:630.285000px;}
.y67{bottom:634.785000px;}
.yb{bottom:635.649000px;}
.y1b7{bottom:638.385000px;}
.y16a{bottom:639.465000px;}
.y114{bottom:641.445000px;}
.yb7{bottom:643.425000px;}
.y8d{bottom:651.885000px;}
.y4c{bottom:653.325000px;}
.y143{bottom:653.505000px;}
.y176{bottom:657.105000px;}
.y130{bottom:657.465000px;}
.ye5{bottom:660.165000px;}
.y31{bottom:663.225000px;}
.yfc{bottom:663.405000px;}
.y66{bottom:665.925000px;}
.ya{bottom:668.229000px;}
.y1b6{bottom:669.525000px;}
.y169{bottom:670.605000px;}
.y113{bottom:672.405000px;}
.yb6{bottom:674.385000px;}
.y1ca{bottom:681.405000px;}
.y8c{bottom:682.845000px;}
.y142{bottom:684.465000px;}
.y12f{bottom:688.605000px;}
.ye4{bottom:691.305000px;}
.yfb{bottom:694.545000px;}
.y65{bottom:696.885000px;}
.y1b5{bottom:700.485000px;}
.y9{bottom:700.629000px;}
.y4b{bottom:700.845000px;}
.y168{bottom:701.565000px;}
.y30{bottom:703.545000px;}
.yb5{bottom:705.525000px;}
.y1c9{bottom:712.545000px;}
.y8b{bottom:713.985000px;}
.y141{bottom:715.605000px;}
.ye3{bottom:721.905000px;}
.y64{bottom:728.025000px;}
.y12e{bottom:731.625000px;}
.y167{bottom:732.705000px;}
.y8{bottom:733.254000px;}
.y112{bottom:734.505000px;}
.y2f{bottom:734.685000px;}
.y188{bottom:736.125000px;}
.yb4{bottom:736.485000px;}
.y1b4{bottom:743.505000px;}
.y8a{bottom:744.945000px;}
.yfa{bottom:746.565000px;}
.y4a{bottom:748.365000px;}
.ye2{bottom:753.045000px;}
.y2e{bottom:758.265000px;}
.y63{bottom:758.985000px;}
.y12d{bottom:762.585000px;}
.y166{bottom:763.665000px;}
.y7{bottom:765.654000px;}
.y187{bottom:767.265000px;}
.yb3{bottom:767.625000px;}
.y1b3{bottom:774.645000px;}
.y89{bottom:776.085000px;}
.yf9{bottom:777.705000px;}
.ye1{bottom:784.005000px;}
.y1c8{bottom:786.705000px;}
.y12c{bottom:793.725000px;}
.y165{bottom:794.805000px;}
.y49{bottom:795.885000px;}
.y6{bottom:798.054000px;}
.y2d{bottom:798.585000px;}
.y62{bottom:802.005000px;}
.y1b2{bottom:805.605000px;}
.y88{bottom:807.045000px;}
.yf8{bottom:808.665000px;}
.ye0{bottom:815.505000px;}
.y1c7{bottom:817.665000px;}
.y12b{bottom:824.685000px;}
.y61{bottom:825.045000px;}
.y164{bottom:827.025000px;}
.y190{bottom:827.205000px;}
.yb2{bottom:829.365000px;}
.y2c{bottom:829.725000px;}
.y5{bottom:830.634000px;}
.y1b1{bottom:836.745000px;}
.y87{bottom:838.185000px;}
.yf7{bottom:839.850000px;}
.y48{bottom:843.630000px;}
.ydf{bottom:847.950000px;}
.y1c6{bottom:848.850000px;}
.y163{bottom:857.850000px;}
.y18f{bottom:859.470000px;}
.y2b{bottom:860.730000px;}
.y4{bottom:862.674000px;}
.y12a{bottom:867.750000px;}
.y86{bottom:869.190000px;}
.y111{bottom:870.810000px;}
.y60{bottom:875.850000px;}
.y1b0{bottom:879.810000px;}
.yde{bottom:880.170000px;}
.y162{bottom:889.170000px;}
.y18e{bottom:890.610000px;}
.y47{bottom:891.150000px;}
.y3{bottom:891.474000px;}
.y2a{bottom:891.870000px;}
.y129{bottom:898.890000px;}
.y85{bottom:900.330000px;}
.y140{bottom:901.590000px;}
.y110{bottom:901.950000px;}
.y1af{bottom:910.950000px;}
.ydd{bottom:912.570000px;}
.y5f{bottom:919.410000px;}
.y161{bottom:920.310000px;}
.y18d{bottom:921.570000px;}
.y29{bottom:922.830000px;}
.y128{bottom:929.850000px;}
.y84{bottom:931.290000px;}
.y13f{bottom:932.550000px;}
.y10f{bottom:932.910000px;}
.y46{bottom:938.670000px;}
.y1ae{bottom:941.910000px;}
.ydc{bottom:944.970000px;}
.y5e{bottom:950.190000px;}
.y160{bottom:951.270000px;}
.y18c{bottom:952.530000px;}
.y28{bottom:953.970000px;}
.y83{bottom:962.430000px;}
.y10e{bottom:963.870000px;}
.y127{bottom:972.870000px;}
.ydb{bottom:977.190000px;}
.y5d{bottom:981.330000px;}
.y15f{bottom:982.410000px;}
.y18b{bottom:983.670000px;}
.y27{bottom:984.930000px;}
.y45{bottom:986.190000px;}
.y82{bottom:993.390000px;}
.y10d{bottom:995.010000px;}
.y126{bottom:1004.010000px;}
.yda{bottom:1009.590000px;}
.y5c{bottom:1012.290000px;}
.y15e{bottom:1013.370000px;}
.y18a{bottom:1014.630000px;}
.y153{bottom:1015.710000px;}
.y26{bottom:1016.070000px;}
.y81{bottom:1024.530000px;}
.y10c{bottom:1025.970000px;}
.y2{bottom:1032.444000px;}
.y44{bottom:1033.890000px;}
.y125{bottom:1034.970000px;}
.yd9{bottom:1041.990000px;}
.y5b{bottom:1043.430000px;}
.y15d{bottom:1044.510000px;}
.y189{bottom:1045.770000px;}
.y25{bottom:1047.030000px;}
.y80{bottom:1055.490000px;}
.y10b{bottom:1057.110000px;}
.y124{bottom:1066.110000px;}
.yd8{bottom:1074.210000px;}
.y5a{bottom:1074.390000px;}
.y15c{bottom:1076.730000px;}
.yb1{bottom:1077.810000px;}
.y24{bottom:1078.170000px;}
.y43{bottom:1081.410000px;}
.y7f{bottom:1086.450000px;}
.y10a{bottom:1088.070000px;}
.y123{bottom:1097.070000px;}
.y59{bottom:1105.530000px;}
.yd7{bottom:1106.610000px;}
.y21{bottom:1107.870000px;}
.yb0{bottom:1108.770000px;}
.y23{bottom:1109.130000px;}
.y7d{bottom:1117.770000px;}
.y7e{bottom:1118.850000px;}
.y42{bottom:1131.120000px;}
.yd6{bottom:1139.040000px;}
.y7c{bottom:1139.580000px;}
.y22{bottom:1139.940000px;}
.y58{bottom:1140.120000px;}
.y9e{bottom:1140.300000px;}
.y20{bottom:1141.200000px;}
.he{height:41.000977px;}
.hc{height:50.035781px;}
.h6{height:50.294531px;}
.hf{height:52.998047px;}
.hd{height:54.386719px;}
.h9{height:64.546875px;}
.h4{height:65.010937px;}
.h3{height:66.757500px;}
.h8{height:70.664062px;}
.h7{height:72.562500px;}
.h10{height:74.004654px;}
.hb{height:74.953125px;}
.ha{height:81.580078px;}
.h5{height:118.008984px;}
.h2{height:1047.750000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:647.565000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:7.740000px;}
.x5{left:95.574000px;}
.x1{left:119.916000px;}
.x8{left:124.194000px;}
.xe{left:127.656000px;}
.x9{left:137.154000px;}
.xf{left:154.650000px;}
.x4{left:175.719000px;}
.x10{left:181.650000px;}
.xb{left:203.619000px;}
.xa{left:209.919000px;}
.x7{left:226.839000px;}
.x11{left:235.650000px;}
.xc{left:285.339000px;}
.x6{left:323.859000px;}
.x3{left:391.389000px;}
.x14{left:443.235000px;}
.x13{left:748.770000px;}
.xd{left:757.230000px;}
.x12{left:765.510000px;}
.x15{left:819.510000px;}
.x17{left:842.370000px;}
.x16{left:865.620000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.576000pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.227733pt;}
.ls9{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.640000pt;}
.ls2{letter-spacing:30.208000pt;}
.ls6{letter-spacing:48.768000pt;}
.ls4{letter-spacing:57.088000pt;}
.ls3{letter-spacing:78.208000pt;}
.ls1{letter-spacing:752.138667pt;}
.ws2{word-spacing:-64.000000pt;}
.ws6{word-spacing:-16.640000pt;}
.ws4{word-spacing:-16.256000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:-13.534613pt;}
.ws0{word-spacing:0.000000pt;}
._12{margin-left:-2.095787pt;}
._0{margin-left:-1.177600pt;}
._1{width:1.133227pt;}
._4{width:2.329600pt;}
._8{width:3.231573pt;}
._9{width:4.364800pt;}
._10{width:5.504000pt;}
._e{width:6.848000pt;}
._5{width:7.744000pt;}
._3{width:8.768000pt;}
._2{width:9.664000pt;}
._f{width:11.013973pt;}
._6{width:12.224000pt;}
._7{width:13.440000pt;}
._13{width:14.400000pt;}
._19{width:17.216000pt;}
._11{width:18.218667pt;}
._a{width:19.840000pt;}
._b{width:20.829440pt;}
._1c{width:21.760000pt;}
._18{width:22.842453pt;}
._17{width:24.128000pt;}
._14{width:25.280000pt;}
._15{width:26.240000pt;}
._16{width:27.392000pt;}
._1a{width:28.928000pt;}
._1b{width:30.016000pt;}
._1d{width:31.680000pt;}
._1f{width:32.850773pt;}
._1e{width:33.984000pt;}
._c{width:746.442667pt;}
._d{width:753.674667pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:96.000000pt;}
.fs1{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:15.360000pt;}
.y1c{bottom:44.474667pt;}
.y1f{bottom:51.232000pt;}
.y1e{bottom:69.152000pt;}
.y1b{bottom:73.274667pt;}
.y197{bottom:94.432000pt;}
.y1a{bottom:102.234667pt;}
.yc8{bottom:102.752000pt;}
.y1a0{bottom:103.072000pt;}
.y19c{bottom:103.872000pt;}
.y1ce{bottom:104.192000pt;}
.y41{bottom:105.952000pt;}
.y13e{bottom:108.672000pt;}
.yaf{bottom:109.152000pt;}
.y1{bottom:112.672000pt;}
.y7b{bottom:113.472000pt;}
.y57{bottom:115.552000pt;}
.yf6{bottom:117.632000pt;}
.y186{bottom:118.592000pt;}
.yd5{bottom:118.752000pt;}
.y1ad{bottom:119.552000pt;}
.y1c5{bottom:121.472000pt;}
.y1a7{bottom:122.752000pt;}
.y196{bottom:125.632000pt;}
.yc7{bottom:130.272000pt;}
.y19f{bottom:130.752000pt;}
.y19{bottom:131.074667pt;}
.y1cd{bottom:132.192000pt;}
.y7a{bottom:132.992000pt;}
.y13d{bottom:136.346667pt;}
.yae{bottom:136.826667pt;}
.y109{bottom:137.626667pt;}
.y9d{bottom:137.786667pt;}
.y122{bottom:141.146667pt;}
.y198{bottom:141.306667pt;}
.yf5{bottom:145.306667pt;}
.y185{bottom:146.266667pt;}
.y1ac{bottom:147.226667pt;}
.yd4{bottom:147.546667pt;}
.y1c4{bottom:149.146667pt;}
.y40{bottom:150.106667pt;}
.y1a6{bottom:150.266667pt;}
.y79{bottom:152.506667pt;}
.y195{bottom:153.306667pt;}
.y19e{bottom:154.426667pt;}
.y56{bottom:157.786667pt;}
.yc6{bottom:157.946667pt;}
.y1cc{bottom:159.706667pt;}
.y18{bottom:160.034667pt;}
.y152{bottom:163.386667pt;}
.yad{bottom:164.346667pt;}
.y9c{bottom:165.306667pt;}
.y121{bottom:168.666667pt;}
.y78{bottom:172.026667pt;}
.yf4{bottom:172.826667pt;}
.y184{bottom:173.786667pt;}
.y1ab{bottom:174.746667pt;}
.yd3{bottom:176.346667pt;}
.y1a5{bottom:177.946667pt;}
.y3f{bottom:179.226667pt;}
.y15b{bottom:180.826667pt;}
.y13c{bottom:180.986667pt;}
.y194{bottom:181.946667pt;}
.y108{bottom:183.866667pt;}
.y19b{bottom:185.306667pt;}
.yc5{bottom:185.466667pt;}
.y1c3{bottom:187.386667pt;}
.y17{bottom:188.834667pt;}
.y77{bottom:191.546667pt;}
.yac{bottom:192.026667pt;}
.y151{bottom:192.186667pt;}
.y9b{bottom:192.986667pt;}
.y55{bottom:200.026667pt;}
.yf3{bottom:200.506667pt;}
.y183{bottom:201.466667pt;}
.y1aa{bottom:202.426667pt;}
.yd2{bottom:204.986667pt;}
.y1a4{bottom:205.466667pt;}
.y120{bottom:206.906667pt;}
.y3e{bottom:208.506667pt;}
.y193{bottom:209.626667pt;}
.y76{bottom:211.066667pt;}
.y19a{bottom:212.986667pt;}
.yc4{bottom:213.146667pt;}
.y1c2{bottom:214.906667pt;}
.y16{bottom:217.794667pt;}
.yab{bottom:219.546667pt;}
.y9a{bottom:220.506667pt;}
.y150{bottom:220.826667pt;}
.yf2{bottom:228.026667pt;}
.y182{bottom:228.986667pt;}
.y1a9{bottom:229.946667pt;}
.y107{bottom:230.106667pt;}
.y75{bottom:230.586667pt;}
.y1a3{bottom:233.146667pt;}
.yd1{bottom:233.786667pt;}
.y11f{bottom:234.586667pt;}
.y175{bottom:236.026667pt;}
.y13b{bottom:236.186667pt;}
.y199{bottom:236.826667pt;}
.y15a{bottom:237.146667pt;}
.y3d{bottom:237.786667pt;}
.yc3{bottom:240.666667pt;}
.y54{bottom:242.266667pt;}
.y1c1{bottom:242.626667pt;}
.y15{bottom:246.594667pt;}
.yaa{bottom:247.266667pt;}
.y99{bottom:248.226667pt;}
.y14f{bottom:249.666667pt;}
.y74{bottom:250.146667pt;}
.y19d{bottom:253.346667pt;}
.yf1{bottom:255.746667pt;}
.y181{bottom:256.706667pt;}
.y1a8{bottom:257.666667pt;}
.y106{bottom:257.826667pt;}
.y1a2{bottom:260.706667pt;}
.y11e{bottom:262.146667pt;}
.yd0{bottom:262.626667pt;}
.y174{bottom:263.746667pt;}
.y159{bottom:264.866667pt;}
.y3c{bottom:267.266667pt;}
.yc2{bottom:268.226667pt;}
.y73{bottom:269.666667pt;}
.y1c0{bottom:270.146667pt;}
.ya9{bottom:274.786667pt;}
.y14{bottom:275.394667pt;}
.y98{bottom:275.746667pt;}
.y14e{bottom:277.186667pt;}
.y13a{bottom:280.706667pt;}
.yf0{bottom:283.266667pt;}
.y180{bottom:284.226667pt;}
.y1a1{bottom:284.546667pt;}
.y53{bottom:284.706667pt;}
.y72{bottom:289.186667pt;}
.y11d{bottom:289.826667pt;}
.ycf{bottom:291.266667pt;}
.y192{bottom:292.386667pt;}
.y158{bottom:292.546667pt;}
.yc1{bottom:295.906667pt;}
.y3b{bottom:296.546667pt;}
.y1bf{bottom:297.826667pt;}
.ya8{bottom:302.466667pt;}
.y97{bottom:303.426667pt;}
.y105{bottom:304.066667pt;}
.y13{bottom:304.354667pt;}
.y14d{bottom:304.866667pt;}
.y139{bottom:308.386667pt;}
.y71{bottom:308.706667pt;}
.yef{bottom:310.786667pt;}
.y17f{bottom:311.906667pt;}
.y11c{bottom:317.346667pt;}
.y173{bottom:318.946667pt;}
.yce{bottom:320.066667pt;}
.y157{bottom:321.186667pt;}
.yc0{bottom:323.426667pt;}
.y1be{bottom:325.346667pt;}
.y3a{bottom:325.826667pt;}
.y52{bottom:326.946667pt;}
.y70{bottom:328.226667pt;}
.ya7{bottom:329.986667pt;}
.y96{bottom:330.946667pt;}
.y104{bottom:331.586667pt;}
.y14c{bottom:332.386667pt;}
.y12{bottom:333.154667pt;}
.y138{bottom:335.906667pt;}
.yee{bottom:338.466667pt;}
.y17e{bottom:339.426667pt;}
.y172{bottom:346.466667pt;}
.y191{bottom:347.586667pt;}
.y6f{bottom:347.746667pt;}
.ycd{bottom:348.866667pt;}
.ybf{bottom:351.106667pt;}
.y1cb{bottom:353.026667pt;}
.y39{bottom:355.106667pt;}
.y11b{bottom:355.586667pt;}
.ya6{bottom:357.666667pt;}
.y95{bottom:358.626667pt;}
.y103{bottom:359.266667pt;}
.y14b{bottom:360.066667pt;}
.y11{bottom:362.114667pt;}
.y1bd{bottom:363.586667pt;}
.yed{bottom:365.986667pt;}
.y17d{bottom:367.106667pt;}
.y6e{bottom:367.426667pt;}
.y1d3{bottom:368.706667pt;}
.y51{bottom:369.186667pt;}
.y171{bottom:375.266667pt;}
.y156{bottom:376.386667pt;}
.ycc{bottom:377.506667pt;}
.ybe{bottom:378.626667pt;}
.y137{bottom:380.546667pt;}
.y11a{bottom:383.266667pt;}
.y38{bottom:384.386667pt;}
.ya5{bottom:385.186667pt;}
.y94{bottom:386.146667pt;}
.y102{bottom:386.786667pt;}
.y6d{bottom:386.946667pt;}
.y14a{bottom:387.586667pt;}
.y10{bottom:390.941333pt;}
.y1bc{bottom:391.266667pt;}
.yec{bottom:393.666667pt;}
.y17c{bottom:394.626667pt;}
.y1d2{bottom:396.546667pt;}
.y170{bottom:402.786667pt;}
.y155{bottom:405.186667pt;}
.ybd{bottom:406.306667pt;}
.y6c{bottom:406.466667pt;}
.y136{bottom:408.226667pt;}
.y119{bottom:410.786667pt;}
.y50{bottom:411.426667pt;}
.ya4{bottom:412.706667pt;}
.y37{bottom:413.666667pt;}
.y93{bottom:413.826667pt;}
.y101{bottom:414.466667pt;}
.y149{bottom:415.266667pt;}
.y1bb{bottom:418.786667pt;}
.yeb{bottom:421.186667pt;}
.y17b{bottom:422.306667pt;}
.yf{bottom:423.581333pt;}
.y1d1{bottom:424.226667pt;}
.y6b{bottom:425.986667pt;}
.y16f{bottom:430.466667pt;}
.y154{bottom:432.706667pt;}
.ybc{bottom:433.826667pt;}
.y135{bottom:435.746667pt;}
.ya3{bottom:440.386667pt;}
.y92{bottom:441.346667pt;}
.y148{bottom:442.786667pt;}
.y36{bottom:442.946667pt;}
.y1ba{bottom:446.466667pt;}
.yea{bottom:448.866667pt;}
.y118{bottom:449.026667pt;}
.y17a{bottom:449.826667pt;}
.y1d0{bottom:451.746667pt;}
.y4f{bottom:453.826667pt;}
.y16e{bottom:457.986667pt;}
.y100{bottom:460.706667pt;}
.ycb{bottom:461.186667pt;}
.ybb{bottom:461.506667pt;}
.ye{bottom:467.261333pt;}
.ya2{bottom:467.906667pt;}
.y91{bottom:469.026667pt;}
.y147{bottom:470.146667pt;}
.y35{bottom:472.226667pt;}
.y134{bottom:473.986667pt;}
.ye9{bottom:476.386667pt;}
.y117{bottom:476.706667pt;}
.y179{bottom:477.506667pt;}
.y1cf{bottom:479.426667pt;}
.y6a{bottom:481.506667pt;}
.y16d{bottom:485.666667pt;}
.yff{bottom:488.226667pt;}
.yca{bottom:488.706667pt;}
.yba{bottom:489.026667pt;}
.ya1{bottom:493.186667pt;}
.y4e{bottom:496.093333pt;}
.y90{bottom:496.573333pt;}
.y146{bottom:497.693333pt;}
.y34{bottom:501.533333pt;}
.y133{bottom:501.693333pt;}
.ye8{bottom:504.093333pt;}
.y116{bottom:504.253333pt;}
.y178{bottom:505.053333pt;}
.yd{bottom:507.261333pt;}
.y69{bottom:509.053333pt;}
.y1b9{bottom:512.253333pt;}
.y16c{bottom:513.213333pt;}
.ya0{bottom:515.133333pt;}
.yfe{bottom:515.933333pt;}
.yc9{bottom:516.413333pt;}
.yb9{bottom:516.733333pt;}
.y8f{bottom:524.253333pt;}
.y145{bottom:525.693333pt;}
.y132{bottom:529.213333pt;}
.y33{bottom:530.813333pt;}
.ye7{bottom:531.613333pt;}
.y115{bottom:531.933333pt;}
.y177{bottom:532.733333pt;}
.y9f{bottom:535.773333pt;}
.yc{bottom:536.221333pt;}
.y68{bottom:536.733333pt;}
.y4d{bottom:538.333333pt;}
.y1b8{bottom:539.933333pt;}
.y16b{bottom:540.893333pt;}
.yfd{bottom:543.453333pt;}
.yb8{bottom:544.253333pt;}
.y8e{bottom:551.773333pt;}
.y144{bottom:553.213333pt;}
.y131{bottom:556.893333pt;}
.ye6{bottom:559.293333pt;}
.y32{bottom:560.253333pt;}
.y67{bottom:564.253333pt;}
.yb{bottom:565.021333pt;}
.y1b7{bottom:567.453333pt;}
.y16a{bottom:568.413333pt;}
.y114{bottom:570.173333pt;}
.yb7{bottom:571.933333pt;}
.y8d{bottom:579.453333pt;}
.y4c{bottom:580.733333pt;}
.y143{bottom:580.893333pt;}
.y176{bottom:584.093333pt;}
.y130{bottom:584.413333pt;}
.ye5{bottom:586.813333pt;}
.y31{bottom:589.533333pt;}
.yfc{bottom:589.693333pt;}
.y66{bottom:591.933333pt;}
.ya{bottom:593.981333pt;}
.y1b6{bottom:595.133333pt;}
.y169{bottom:596.093333pt;}
.y113{bottom:597.693333pt;}
.yb6{bottom:599.453333pt;}
.y1ca{bottom:605.693333pt;}
.y8c{bottom:606.973333pt;}
.y142{bottom:608.413333pt;}
.y12f{bottom:612.093333pt;}
.ye4{bottom:614.493333pt;}
.yfb{bottom:617.373333pt;}
.y65{bottom:619.453333pt;}
.y1b5{bottom:622.653333pt;}
.y9{bottom:622.781333pt;}
.y4b{bottom:622.973333pt;}
.y168{bottom:623.613333pt;}
.y30{bottom:625.373333pt;}
.yb5{bottom:627.133333pt;}
.y1c9{bottom:633.373333pt;}
.y8b{bottom:634.653333pt;}
.y141{bottom:636.093333pt;}
.ye3{bottom:641.693333pt;}
.y64{bottom:647.133333pt;}
.y12e{bottom:650.333333pt;}
.y167{bottom:651.293333pt;}
.y8{bottom:651.781333pt;}
.y112{bottom:652.893333pt;}
.y2f{bottom:653.053333pt;}
.y188{bottom:654.333333pt;}
.yb4{bottom:654.653333pt;}
.y1b4{bottom:660.893333pt;}
.y8a{bottom:662.173333pt;}
.yfa{bottom:663.613333pt;}
.y4a{bottom:665.213333pt;}
.ye2{bottom:669.373333pt;}
.y2e{bottom:674.013333pt;}
.y63{bottom:674.653333pt;}
.y12d{bottom:677.853333pt;}
.y166{bottom:678.813333pt;}
.y7{bottom:680.581333pt;}
.y187{bottom:682.013333pt;}
.yb3{bottom:682.333333pt;}
.y1b3{bottom:688.573333pt;}
.y89{bottom:689.853333pt;}
.yf9{bottom:691.293333pt;}
.ye1{bottom:696.893333pt;}
.y1c8{bottom:699.293333pt;}
.y12c{bottom:705.533333pt;}
.y165{bottom:706.493333pt;}
.y49{bottom:707.453333pt;}
.y6{bottom:709.381333pt;}
.y2d{bottom:709.853333pt;}
.y62{bottom:712.893333pt;}
.y1b2{bottom:716.093333pt;}
.y88{bottom:717.373333pt;}
.yf8{bottom:718.813333pt;}
.ye0{bottom:724.893333pt;}
.y1c7{bottom:726.813333pt;}
.y12b{bottom:733.053333pt;}
.y61{bottom:733.373333pt;}
.y164{bottom:735.133333pt;}
.y190{bottom:735.293333pt;}
.yb2{bottom:737.213333pt;}
.y2c{bottom:737.533333pt;}
.y5{bottom:738.341333pt;}
.y1b1{bottom:743.773333pt;}
.y87{bottom:745.053333pt;}
.yf7{bottom:746.533333pt;}
.y48{bottom:749.893333pt;}
.ydf{bottom:753.733333pt;}
.y1c6{bottom:754.533333pt;}
.y163{bottom:762.533333pt;}
.y18f{bottom:763.973333pt;}
.y2b{bottom:765.093333pt;}
.y4{bottom:766.821333pt;}
.y12a{bottom:771.333333pt;}
.y86{bottom:772.613333pt;}
.y111{bottom:774.053333pt;}
.y60{bottom:778.533333pt;}
.y1b0{bottom:782.053333pt;}
.yde{bottom:782.373333pt;}
.y162{bottom:790.373333pt;}
.y18e{bottom:791.653333pt;}
.y47{bottom:792.133333pt;}
.y3{bottom:792.421333pt;}
.y2a{bottom:792.773333pt;}
.y129{bottom:799.013333pt;}
.y85{bottom:800.293333pt;}
.y140{bottom:801.413333pt;}
.y110{bottom:801.733333pt;}
.y1af{bottom:809.733333pt;}
.ydd{bottom:811.173333pt;}
.y5f{bottom:817.253333pt;}
.y161{bottom:818.053333pt;}
.y18d{bottom:819.173333pt;}
.y29{bottom:820.293333pt;}
.y128{bottom:826.533333pt;}
.y84{bottom:827.813333pt;}
.y13f{bottom:828.933333pt;}
.y10f{bottom:829.253333pt;}
.y46{bottom:834.373333pt;}
.y1ae{bottom:837.253333pt;}
.ydc{bottom:839.973333pt;}
.y5e{bottom:844.613333pt;}
.y160{bottom:845.573333pt;}
.y18c{bottom:846.693333pt;}
.y28{bottom:847.973333pt;}
.y83{bottom:855.493333pt;}
.y10e{bottom:856.773333pt;}
.y127{bottom:864.773333pt;}
.ydb{bottom:868.613333pt;}
.y5d{bottom:872.293333pt;}
.y15f{bottom:873.253333pt;}
.y18b{bottom:874.373333pt;}
.y27{bottom:875.493333pt;}
.y45{bottom:876.613333pt;}
.y82{bottom:883.013333pt;}
.y10d{bottom:884.453333pt;}
.y126{bottom:892.453333pt;}
.yda{bottom:897.413333pt;}
.y5c{bottom:899.813333pt;}
.y15e{bottom:900.773333pt;}
.y18a{bottom:901.893333pt;}
.y153{bottom:902.853333pt;}
.y26{bottom:903.173333pt;}
.y81{bottom:910.693333pt;}
.y10c{bottom:911.973333pt;}
.y2{bottom:917.728000pt;}
.y44{bottom:919.013333pt;}
.y125{bottom:919.973333pt;}
.yd9{bottom:926.213333pt;}
.y5b{bottom:927.493333pt;}
.y15d{bottom:928.453333pt;}
.y189{bottom:929.573333pt;}
.y25{bottom:930.693333pt;}
.y80{bottom:938.213333pt;}
.y10b{bottom:939.653333pt;}
.y124{bottom:947.653333pt;}
.yd8{bottom:954.853333pt;}
.y5a{bottom:955.013333pt;}
.y15c{bottom:957.093333pt;}
.yb1{bottom:958.053333pt;}
.y24{bottom:958.373333pt;}
.y43{bottom:961.253333pt;}
.y7f{bottom:965.733333pt;}
.y10a{bottom:967.173333pt;}
.y123{bottom:975.173333pt;}
.y59{bottom:982.693333pt;}
.yd7{bottom:983.653333pt;}
.y21{bottom:984.773333pt;}
.yb0{bottom:985.573333pt;}
.y23{bottom:985.893333pt;}
.y7d{bottom:993.573333pt;}
.y7e{bottom:994.533333pt;}
.y42{bottom:1005.440000pt;}
.yd6{bottom:1012.480000pt;}
.y7c{bottom:1012.960000pt;}
.y22{bottom:1013.280000pt;}
.y58{bottom:1013.440000pt;}
.y9e{bottom:1013.600000pt;}
.y20{bottom:1014.400000pt;}
.he{height:36.445312pt;}
.hc{height:44.476250pt;}
.h6{height:44.706250pt;}
.hf{height:47.109375pt;}
.hd{height:48.343750pt;}
.h9{height:57.375000pt;}
.h4{height:57.787500pt;}
.h3{height:59.340000pt;}
.h8{height:62.812500pt;}
.h7{height:64.500000pt;}
.h10{height:65.781915pt;}
.hb{height:66.625000pt;}
.ha{height:72.515625pt;}
.h5{height:104.896875pt;}
.h2{height:931.333333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:575.613333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:6.880000pt;}
.x5{left:84.954667pt;}
.x1{left:106.592000pt;}
.x8{left:110.394667pt;}
.xe{left:113.472000pt;}
.x9{left:121.914667pt;}
.xf{left:137.466667pt;}
.x4{left:156.194667pt;}
.x10{left:161.466667pt;}
.xb{left:180.994667pt;}
.xa{left:186.594667pt;}
.x7{left:201.634667pt;}
.x11{left:209.466667pt;}
.xc{left:253.634667pt;}
.x6{left:287.874667pt;}
.x3{left:347.901333pt;}
.x14{left:393.986667pt;}
.x13{left:665.573333pt;}
.xd{left:673.093333pt;}
.x12{left:680.453333pt;}
.x15{left:728.453333pt;}
.x17{left:748.773333pt;}
.x16{left:769.440000pt;}
}




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