
    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_291a3d7aa572e02f3dd44f30.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2f9c95cc087e083c3006bb51.woff')format("woff");}.ff2{font-family:ff2;line-height:1.372070;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_49394186b066433e8e0e57ff.woff')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_5cb7f372b6e8d03df61b6270.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_e6928e3526574d6c218e12fc.woff')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_18e4ce227342a0189dbe8798.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2960143b05abbe9fca689028.woff')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_3099e8bbb8298a11c7fb1363.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_c0ce19cd857241b40a89efd7.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b9373a39d3ae10b582071dc9.woff')format("woff");}.ffa{font-family:ffa;line-height:0.978027;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);}
.v1{vertical-align:-84.240000px;}
.v2{vertical-align:-82.776000px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.216000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.120000px;}
.lsb{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.432000px;}
.lsd{letter-spacing:0.864000px;}
.ls3{letter-spacing:5.040000px;}
.ls5{letter-spacing:7.920000px;}
.ls7{letter-spacing:17.280000px;}
.ls8{letter-spacing:22.440000px;}
.ls0{letter-spacing:1577.796000px;}
.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;}
}
.ws5{word-spacing:-72.000000px;}
.ws7{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.784000px;}
.ws9{word-spacing:-17.712000px;}
.ws1{word-spacing:-17.614080px;}
.ws4{word-spacing:-16.560000px;}
.ws6{word-spacing:-16.488000px;}
.ws0{word-spacing:-0.059760px;}
.ws3{word-spacing:0.000000px;}
._1c{margin-left:-14.400000px;}
._1f{margin-left:-5.224080px;}
._11{margin-left:-4.176000px;}
._2{margin-left:-2.274480px;}
._0{margin-left:-1.183920px;}
._1{width:1.092000px;}
._3{width:2.222400px;}
._5{width:3.386400px;}
._4{width:4.831200px;}
._b{width:6.536400px;}
._a{width:7.951920px;}
._7{width:9.768240px;}
._6{width:10.903920px;}
._e{width:12.384000px;}
._f{width:13.680000px;}
._8{width:15.552000px;}
._9{width:16.764000px;}
._15{width:19.224000px;}
._1b{width:20.280000px;}
._13{width:21.324000px;}
._12{width:22.896000px;}
._17{width:23.934480px;}
._c{width:25.056000px;}
._d{width:26.064000px;}
._19{width:27.504000px;}
._1a{width:29.076000px;}
._20{width:31.176000px;}
._10{width:32.232000px;}
._1d{width:33.480000px;}
._1e{width:34.591920px;}
._16{width:41.215920px;}
._18{width:45.792000px;}
._14{width:197.976000px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fc2{color:rgb(17,85,204);}
.fc1{color:rgb(5,99,193);}
.fc3{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.760000px;}
.fs2{font-size:63.360000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:108.000000px;}
.y70{bottom:-15.675000px;}
.y0{bottom:0.000000px;}
.ya8{bottom:4.140000px;}
.y6f{bottom:5.385000px;}
.y6{bottom:56.700000px;}
.y5{bottom:75.960000px;}
.y6d{bottom:111.960000px;}
.y11d{bottom:113.040000px;}
.y177{bottom:114.840000px;}
.y157{bottom:117.540000px;}
.y127{bottom:119.160000px;}
.y62{bottom:121.860000px;}
.ye7{bottom:125.640000px;}
.ya6{bottom:128.160000px;}
.y33{bottom:128.340000px;}
.y6c{bottom:132.660000px;}
.y11c{bottom:133.740000px;}
.y176{bottom:135.576000px;}
.y61{bottom:142.596000px;}
.ye6{bottom:146.376000px;}
.y13c{bottom:147.996000px;}
.ya5{bottom:148.896000px;}
.y32{bottom:149.076000px;}
.yd4{bottom:151.230000px;}
.y6b{bottom:153.390000px;}
.y10c{bottom:153.930000px;}
.y11b{bottom:154.470000px;}
.y175{bottom:156.270000px;}
.y156{bottom:159.330000px;}
.y126{bottom:160.590000px;}
.y60{bottom:163.290000px;}
.y91{bottom:165.630000px;}
.ye5{bottom:167.070000px;}
.y13b{bottom:168.690000px;}
.ya4{bottom:169.590000px;}
.y31{bottom:169.770000px;}
.yd3{bottom:171.930000px;}
.y6a{bottom:174.090000px;}
.y10b{bottom:174.630000px;}
.y11a{bottom:175.170000px;}
.y174{bottom:176.970000px;}
.y155{bottom:180.030000px;}
.y125{bottom:181.290000px;}
.y5f{bottom:183.990000px;}
.y90{bottom:186.330000px;}
.ye4{bottom:187.770000px;}
.y13a{bottom:189.390000px;}
.ya3{bottom:190.290000px;}
.y30{bottom:190.470000px;}
.yd2{bottom:192.630000px;}
.y69{bottom:194.790000px;}
.y10a{bottom:195.330000px;}
.y119{bottom:195.870000px;}
.y181{bottom:198.030000px;}
.y154{bottom:200.730000px;}
.y124{bottom:201.990000px;}
.y5e{bottom:204.690000px;}
.y8f{bottom:207.030000px;}
.ye3{bottom:208.470000px;}
.y139{bottom:210.090000px;}
.ya2{bottom:210.990000px;}
.y2f{bottom:211.170000px;}
.yd1{bottom:213.330000px;}
.y68{bottom:215.490000px;}
.y109{bottom:216.030000px;}
.y118{bottom:216.570000px;}
.y173{bottom:218.730000px;}
.y123{bottom:222.690000px;}
.y5d{bottom:225.390000px;}
.y8e{bottom:227.730000px;}
.ye2{bottom:229.170000px;}
.y138{bottom:230.790000px;}
.ya1{bottom:231.690000px;}
.y2e{bottom:231.870000px;}
.yd0{bottom:234.030000px;}
.y67{bottom:236.190000px;}
.y108{bottom:236.730000px;}
.y117{bottom:237.270000px;}
.y18e{bottom:239.430000px;}
.y180{bottom:239.790000px;}
.y153{bottom:242.490000px;}
.y122{bottom:243.390000px;}
.y5c{bottom:246.090000px;}
.y8d{bottom:248.430000px;}
.ye1{bottom:249.870000px;}
.y137{bottom:251.490000px;}
.y2d{bottom:252.210000px;}
.ya0{bottom:252.390000px;}
.y66{bottom:252.570000px;}
.ycf{bottom:254.730000px;}
.y107{bottom:257.430000px;}
.y116{bottom:257.970000px;}
.y172{bottom:260.490000px;}
.y121{bottom:264.090000px;}
.y5b{bottom:266.790000px;}
.y8c{bottom:269.130000px;}
.y6e{bottom:269.145000px;}
.ye0{bottom:270.570000px;}
.y136{bottom:272.190000px;}
.y9f{bottom:273.090000px;}
.y2c{bottom:273.270000px;}
.yce{bottom:275.430000px;}
.y106{bottom:278.130000px;}
.y115{bottom:278.670000px;}
.y171{bottom:281.190000px;}
.y152{bottom:284.070000px;}
.y120{bottom:284.790000px;}
.y8b{bottom:289.830000px;}
.ydf{bottom:291.270000px;}
.y135{bottom:292.890000px;}
.y9e{bottom:293.790000px;}
.y2b{bottom:293.970000px;}
.y5a{bottom:296.130000px;}
.y105{bottom:298.830000px;}
.y114{bottom:299.370000px;}
.y170{bottom:301.890000px;}
.y151{bottom:304.770000px;}
.y11f{bottom:305.490000px;}
.y8a{bottom:310.530000px;}
.yde{bottom:311.970000px;}
.y134{bottom:313.590000px;}
.y9d{bottom:314.490000px;}
.y2a{bottom:314.670000px;}
.ycd{bottom:316.830000px;}
.y104{bottom:319.530000px;}
.y113{bottom:320.070000px;}
.y16f{bottom:322.590000px;}
.y18d{bottom:322.770000px;}
.y150{bottom:325.470000px;}
.y59{bottom:326.190000px;}
.y89{bottom:331.230000px;}
.ydd{bottom:332.670000px;}
.y9c{bottom:335.190000px;}
.y29{bottom:335.370000px;}
.ycc{bottom:337.530000px;}
.y103{bottom:340.230000px;}
.y112{bottom:340.770000px;}
.y133{bottom:342.930000px;}
.y17f{bottom:343.470000px;}
.y58{bottom:346.890000px;}
.y88{bottom:351.930000px;}
.ydc{bottom:353.370000px;}
.y28{bottom:355.710000px;}
.y9b{bottom:355.890000px;}
.ycb{bottom:358.230000px;}
.y102{bottom:360.930000px;}
.y111{bottom:361.470000px;}
.y16e{bottom:364.170000px;}
.y14f{bottom:367.230000px;}
.y57{bottom:367.590000px;}
.y87{bottom:372.630000px;}
.y132{bottom:372.990000px;}
.ydb{bottom:374.070000px;}
.y9a{bottom:376.590000px;}
.y27{bottom:376.770000px;}
.yca{bottom:378.930000px;}
.y101{bottom:381.630000px;}
.y110{bottom:382.170000px;}
.y18c{bottom:384.870000px;}
.y17e{bottom:385.230000px;}
.y56{bottom:388.335000px;}
.y86{bottom:393.375000px;}
.yda{bottom:394.815000px;}
.y99{bottom:397.335000px;}
.y26{bottom:397.515000px;}
.yc9{bottom:399.675000px;}
.y100{bottom:402.375000px;}
.y131{bottom:402.735000px;}
.y10f{bottom:402.915000px;}
.y16d{bottom:405.975000px;}
.y55{bottom:409.035000px;}
.y85{bottom:414.075000px;}
.yd9{bottom:415.515000px;}
.y25{bottom:418.215000px;}
.yc8{bottom:420.375000px;}
.yff{bottom:423.075000px;}
.y130{bottom:423.435000px;}
.y10e{bottom:423.615000px;}
.y16c{bottom:426.675000px;}
.y98{bottom:427.035000px;}
.y54{bottom:429.735000px;}
.y84{bottom:434.775000px;}
.yd8{bottom:436.215000px;}
.y24{bottom:438.915000px;}
.yc7{bottom:441.075000px;}
.yfe{bottom:443.775000px;}
.y12f{bottom:444.135000px;}
.y16b{bottom:447.375000px;}
.y53{bottom:450.435000px;}
.y83{bottom:455.475000px;}
.y23{bottom:459.615000px;}
.yc6{bottom:461.775000px;}
.yfd{bottom:464.475000px;}
.y12e{bottom:464.835000px;}
.y97{bottom:465.735000px;}
.yd7{bottom:465.915000px;}
.y16a{bottom:468.075000px;}
.y17d{bottom:468.435000px;}
.y52{bottom:471.135000px;}
.y82{bottom:476.175000px;}
.y10d{bottom:476.895000px;}
.y22{bottom:479.955000px;}
.yc5{bottom:482.475000px;}
.yfc{bottom:485.175000px;}
.y12d{bottom:485.535000px;}
.y96{bottom:486.435000px;}
.y18b{bottom:489.135000px;}
.y51{bottom:491.835000px;}
.y14e{bottom:492.015000px;}
.y81{bottom:496.875000px;}
.y21{bottom:501.015000px;}
.yc4{bottom:503.175000px;}
.yd6{bottom:504.615000px;}
.yfb{bottom:505.875000px;}
.y12c{bottom:506.235000px;}
.y95{bottom:507.135000px;}
.y169{bottom:509.835000px;}
.y17c{bottom:510.015000px;}
.y50{bottom:512.535000px;}
.y80{bottom:517.575000px;}
.yd5{bottom:520.995000px;}
.y20{bottom:521.715000px;}
.yc3{bottom:523.875000px;}
.yfa{bottom:526.575000px;}
.y12b{bottom:526.935000px;}
.y94{bottom:527.835000px;}
.y18a{bottom:530.535000px;}
.y17b{bottom:530.715000px;}
.y4f{bottom:533.235000px;}
.y14d{bottom:533.775000px;}
.y7f{bottom:538.275000px;}
.y1f{bottom:542.415000px;}
.yc2{bottom:544.575000px;}
.yf9{bottom:547.275000px;}
.y12a{bottom:547.635000px;}
.y93{bottom:548.535000px;}
.y168{bottom:551.415000px;}
.y4e{bottom:553.935000px;}
.y14c{bottom:554.475000px;}
.y7e{bottom:558.975000px;}
.ya7{bottom:561.675000px;}
.y1e{bottom:563.115000px;}
.yc1{bottom:565.275000px;}
.yf8{bottom:567.975000px;}
.y129{bottom:568.335000px;}
.y92{bottom:569.235000px;}
.y167{bottom:572.115000px;}
.y4d{bottom:574.635000px;}
.y14b{bottom:575.175000px;}
.y7d{bottom:579.675000px;}
.y1d{bottom:583.815000px;}
.yc0{bottom:585.975000px;}
.yf7{bottom:588.675000px;}
.y191{bottom:592.815000px;}
.y4c{bottom:595.335000px;}
.y128{bottom:597.675000px;}
.y7c{bottom:600.735000px;}
.y1c{bottom:604.155000px;}
.ybf{bottom:606.675000px;}
.yf6{bottom:609.375000px;}
.y166{bottom:613.875000px;}
.y4b{bottom:616.035000px;}
.y14a{bottom:616.935000px;}
.y7b{bottom:621.435000px;}
.y1b{bottom:625.215000px;}
.ybe{bottom:627.375000px;}
.yf5{bottom:630.075000px;}
.y189{bottom:634.575000px;}
.y4a{bottom:636.735000px;}
.y65{bottom:639.435000px;}
.y7a{bottom:642.165000px;}
.y1a{bottom:645.945000px;}
.ybd{bottom:648.105000px;}
.yf4{bottom:651.165000px;}
.y188{bottom:655.305000px;}
.y165{bottom:655.665000px;}
.y49{bottom:657.465000px;}
.y149{bottom:658.545000px;}
.y64{bottom:660.165000px;}
.y79{bottom:662.865000px;}
.y19{bottom:666.645000px;}
.ybc{bottom:669.165000px;}
.yf3{bottom:671.865000px;}
.y164{bottom:676.365000px;}
.y48{bottom:677.805000px;}
.y11e{bottom:678.165000px;}
.y148{bottom:679.245000px;}
.y78{bottom:683.565000px;}
.y18{bottom:687.345000px;}
.ybb{bottom:689.865000px;}
.yf2{bottom:692.565000px;}
.y163{bottom:697.065000px;}
.y47{bottom:698.865000px;}
.y147{bottom:699.945000px;}
.y77{bottom:704.265000px;}
.y17{bottom:708.045000px;}
.yba{bottom:710.565000px;}
.yf1{bottom:713.265000px;}
.y162{bottom:717.765000px;}
.y46{bottom:719.565000px;}
.y146{bottom:720.645000px;}
.y76{bottom:724.965000px;}
.y16{bottom:728.745000px;}
.yb9{bottom:731.265000px;}
.yf0{bottom:733.965000px;}
.y190{bottom:738.465000px;}
.y17a{bottom:738.645000px;}
.y45{bottom:740.265000px;}
.y75{bottom:745.665000px;}
.y15{bottom:749.445000px;}
.yb8{bottom:751.965000px;}
.yef{bottom:754.665000px;}
.y161{bottom:759.345000px;}
.y44{bottom:760.965000px;}
.y145{bottom:762.405000px;}
.y74{bottom:766.365000px;}
.y14{bottom:769.785000px;}
.yb7{bottom:772.665000px;}
.yee{bottom:775.365000px;}
.y187{bottom:780.045000px;}
.y179{bottom:780.405000px;}
.y43{bottom:781.665000px;}
.y73{bottom:787.065000px;}
.y13{bottom:790.845000px;}
.yb6{bottom:793.365000px;}
.yed{bottom:796.065000px;}
.y186{bottom:800.745000px;}
.y160{bottom:801.105000px;}
.y42{bottom:802.365000px;}
.y144{bottom:804.165000px;}
.y12{bottom:811.545000px;}
.yb5{bottom:814.065000px;}
.y72{bottom:816.765000px;}
.y15f{bottom:821.805000px;}
.y41{bottom:823.065000px;}
.y143{bottom:824.865000px;}
.y11{bottom:832.245000px;}
.yb4{bottom:834.765000px;}
.yec{bottom:837.465000px;}
.y15e{bottom:842.505000px;}
.y40{bottom:843.765000px;}
.y142{bottom:845.565000px;}
.y71{bottom:846.105000px;}
.y10{bottom:852.945000px;}
.yb3{bottom:855.465000px;}
.yeb{bottom:858.165000px;}
.y18f{bottom:863.205000px;}
.y3f{bottom:864.465000px;}
.yf{bottom:873.645000px;}
.yb2{bottom:876.165000px;}
.yea{bottom:878.865000px;}
.y15d{bottom:884.265000px;}
.y3e{bottom:885.165000px;}
.y141{bottom:886.785000px;}
.ye{bottom:894.390000px;}
.yb1{bottom:896.910000px;}
.ye9{bottom:899.610000px;}
.y185{bottom:905.010000px;}
.y3d{bottom:905.910000px;}
.yb0{bottom:917.610000px;}
.y184{bottom:925.710000px;}
.y15c{bottom:925.890000px;}
.y3c{bottom:926.610000px;}
.ye8{bottom:928.950000px;}
.yd{bottom:935.790000px;}
.yaf{bottom:938.310000px;}
.y15b{bottom:946.590000px;}
.y3b{bottom:947.310000px;}
.y140{bottom:949.650000px;}
.yc{bottom:956.490000px;}
.yae{bottom:959.010000px;}
.y15a{bottom:967.290000px;}
.y3a{bottom:968.010000px;}
.y13f{bottom:970.350000px;}
.yad{bottom:979.710000px;}
.yb{bottom:980.610000px;}
.y159{bottom:987.990000px;}
.y178{bottom:988.350000px;}
.y39{bottom:988.710000px;}
.yac{bottom:1000.410000px;}
.ya{bottom:1004.730000px;}
.y183{bottom:1009.050000px;}
.y38{bottom:1009.410000px;}
.y13e{bottom:1011.750000px;}
.yab{bottom:1021.110000px;}
.y9{bottom:1027.050000px;}
.y158{bottom:1029.750000px;}
.y37{bottom:1030.110000px;}
.y13d{bottom:1041.450000px;}
.yaa{bottom:1041.810000px;}
.y182{bottom:1050.450000px;}
.y36{bottom:1050.810000px;}
.y8{bottom:1058.010000px;}
.ya9{bottom:1062.330000px;}
.y35{bottom:1071.330000px;}
.y7{bottom:1091.130000px;}
.y34{bottom:1091.670000px;}
.y63{bottom:1092.030000px;}
.y4{bottom:1111.830000px;}
.y3{bottom:1130.550000px;}
.y2{bottom:1151.460000px;}
.y1{bottom:1172.160000px;}
.hd{height:19.065000px;}
.hb{height:20.325000px;}
.h3{height:59.614102px;}
.ha{height:64.546875px;}
.h5{height:66.082500px;}
.hc{height:66.757500px;}
.h7{height:70.628906px;}
.h2{height:70.664062px;}
.h4{height:71.613281px;}
.h9{height:72.562500px;}
.h8{height:82.635820px;}
.h6{height:108.843750px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:150.501000px;}
.w3{width:268.401000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x26{left:10.791000px;}
.x2{left:106.416000px;}
.x25{left:110.745000px;}
.x5{left:121.176000px;}
.x13{left:122.976000px;}
.xb{left:126.036000px;}
.xa{left:127.476000px;}
.x8{left:129.096000px;}
.x24{left:159.510000px;}
.x11{left:169.950000px;}
.x12{left:189.210000px;}
.x1b{left:203.250000px;}
.x22{left:217.650000px;}
.x21{left:218.730000px;}
.x3{left:234.030000px;}
.x6{left:235.830000px;}
.x1{left:255.990000px;}
.x1e{left:261.435000px;}
.x19{left:283.395000px;}
.x18{left:351.075000px;}
.xc{left:383.835000px;}
.x27{left:391.935000px;}
.x9{left:423.075000px;}
.x7{left:446.325000px;}
.x20{left:456.765000px;}
.x1a{left:483.765000px;}
.xd{left:499.785000px;}
.x15{left:503.745000px;}
.x10{left:559.725000px;}
.x1f{left:577.365000px;}
.x16{left:590.865000px;}
.x17{left:593.385000px;}
.x23{left:620.790000px;}
.xe{left:623.850000px;}
.x14{left:643.830000px;}
.x1d{left:645.810000px;}
.x1c{left:725.370000px;}
.x28{left:768.210000px;}
.x4{left:777.210000px;}
.xf{left:786.420000px;}
@media print{
.v1{vertical-align:-74.880000pt;}
.v2{vertical-align:-73.578667pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.106667pt;}
.lsb{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.384000pt;}
.lsd{letter-spacing:0.768000pt;}
.ls3{letter-spacing:4.480000pt;}
.ls5{letter-spacing:7.040000pt;}
.ls7{letter-spacing:15.360000pt;}
.ls8{letter-spacing:19.946667pt;}
.ls0{letter-spacing:1402.485333pt;}
.ws5{word-spacing:-64.000000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws9{word-spacing:-15.744000pt;}
.ws1{word-spacing:-15.656960pt;}
.ws4{word-spacing:-14.720000pt;}
.ws6{word-spacing:-14.656000pt;}
.ws0{word-spacing:-0.053120pt;}
.ws3{word-spacing:0.000000pt;}
._1c{margin-left:-12.800000pt;}
._1f{margin-left:-4.643627pt;}
._11{margin-left:-3.712000pt;}
._2{margin-left:-2.021760pt;}
._0{margin-left:-1.052373pt;}
._1{width:0.970667pt;}
._3{width:1.975467pt;}
._5{width:3.010133pt;}
._4{width:4.294400pt;}
._b{width:5.810133pt;}
._a{width:7.068373pt;}
._7{width:8.682880pt;}
._6{width:9.692373pt;}
._e{width:11.008000pt;}
._f{width:12.160000pt;}
._8{width:13.824000pt;}
._9{width:14.901333pt;}
._15{width:17.088000pt;}
._1b{width:18.026667pt;}
._13{width:18.954667pt;}
._12{width:20.352000pt;}
._17{width:21.275093pt;}
._c{width:22.272000pt;}
._d{width:23.168000pt;}
._19{width:24.448000pt;}
._1a{width:25.845333pt;}
._20{width:27.712000pt;}
._10{width:28.650667pt;}
._1d{width:29.760000pt;}
._1e{width:30.748373pt;}
._16{width:36.636373pt;}
._18{width:40.704000pt;}
._14{width:175.978667pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:56.320000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:96.000000pt;}
.y70{bottom:-13.933333pt;}
.y0{bottom:0.000000pt;}
.ya8{bottom:3.680000pt;}
.y6f{bottom:4.786667pt;}
.y6{bottom:50.400000pt;}
.y5{bottom:67.520000pt;}
.y6d{bottom:99.520000pt;}
.y11d{bottom:100.480000pt;}
.y177{bottom:102.080000pt;}
.y157{bottom:104.480000pt;}
.y127{bottom:105.920000pt;}
.y62{bottom:108.320000pt;}
.ye7{bottom:111.680000pt;}
.ya6{bottom:113.920000pt;}
.y33{bottom:114.080000pt;}
.y6c{bottom:117.920000pt;}
.y11c{bottom:118.880000pt;}
.y176{bottom:120.512000pt;}
.y61{bottom:126.752000pt;}
.ye6{bottom:130.112000pt;}
.y13c{bottom:131.552000pt;}
.ya5{bottom:132.352000pt;}
.y32{bottom:132.512000pt;}
.yd4{bottom:134.426667pt;}
.y6b{bottom:136.346667pt;}
.y10c{bottom:136.826667pt;}
.y11b{bottom:137.306667pt;}
.y175{bottom:138.906667pt;}
.y156{bottom:141.626667pt;}
.y126{bottom:142.746667pt;}
.y60{bottom:145.146667pt;}
.y91{bottom:147.226667pt;}
.ye5{bottom:148.506667pt;}
.y13b{bottom:149.946667pt;}
.ya4{bottom:150.746667pt;}
.y31{bottom:150.906667pt;}
.yd3{bottom:152.826667pt;}
.y6a{bottom:154.746667pt;}
.y10b{bottom:155.226667pt;}
.y11a{bottom:155.706667pt;}
.y174{bottom:157.306667pt;}
.y155{bottom:160.026667pt;}
.y125{bottom:161.146667pt;}
.y5f{bottom:163.546667pt;}
.y90{bottom:165.626667pt;}
.ye4{bottom:166.906667pt;}
.y13a{bottom:168.346667pt;}
.ya3{bottom:169.146667pt;}
.y30{bottom:169.306667pt;}
.yd2{bottom:171.226667pt;}
.y69{bottom:173.146667pt;}
.y10a{bottom:173.626667pt;}
.y119{bottom:174.106667pt;}
.y181{bottom:176.026667pt;}
.y154{bottom:178.426667pt;}
.y124{bottom:179.546667pt;}
.y5e{bottom:181.946667pt;}
.y8f{bottom:184.026667pt;}
.ye3{bottom:185.306667pt;}
.y139{bottom:186.746667pt;}
.ya2{bottom:187.546667pt;}
.y2f{bottom:187.706667pt;}
.yd1{bottom:189.626667pt;}
.y68{bottom:191.546667pt;}
.y109{bottom:192.026667pt;}
.y118{bottom:192.506667pt;}
.y173{bottom:194.426667pt;}
.y123{bottom:197.946667pt;}
.y5d{bottom:200.346667pt;}
.y8e{bottom:202.426667pt;}
.ye2{bottom:203.706667pt;}
.y138{bottom:205.146667pt;}
.ya1{bottom:205.946667pt;}
.y2e{bottom:206.106667pt;}
.yd0{bottom:208.026667pt;}
.y67{bottom:209.946667pt;}
.y108{bottom:210.426667pt;}
.y117{bottom:210.906667pt;}
.y18e{bottom:212.826667pt;}
.y180{bottom:213.146667pt;}
.y153{bottom:215.546667pt;}
.y122{bottom:216.346667pt;}
.y5c{bottom:218.746667pt;}
.y8d{bottom:220.826667pt;}
.ye1{bottom:222.106667pt;}
.y137{bottom:223.546667pt;}
.y2d{bottom:224.186667pt;}
.ya0{bottom:224.346667pt;}
.y66{bottom:224.506667pt;}
.ycf{bottom:226.426667pt;}
.y107{bottom:228.826667pt;}
.y116{bottom:229.306667pt;}
.y172{bottom:231.546667pt;}
.y121{bottom:234.746667pt;}
.y5b{bottom:237.146667pt;}
.y8c{bottom:239.226667pt;}
.y6e{bottom:239.240000pt;}
.ye0{bottom:240.506667pt;}
.y136{bottom:241.946667pt;}
.y9f{bottom:242.746667pt;}
.y2c{bottom:242.906667pt;}
.yce{bottom:244.826667pt;}
.y106{bottom:247.226667pt;}
.y115{bottom:247.706667pt;}
.y171{bottom:249.946667pt;}
.y152{bottom:252.506667pt;}
.y120{bottom:253.146667pt;}
.y8b{bottom:257.626667pt;}
.ydf{bottom:258.906667pt;}
.y135{bottom:260.346667pt;}
.y9e{bottom:261.146667pt;}
.y2b{bottom:261.306667pt;}
.y5a{bottom:263.226667pt;}
.y105{bottom:265.626667pt;}
.y114{bottom:266.106667pt;}
.y170{bottom:268.346667pt;}
.y151{bottom:270.906667pt;}
.y11f{bottom:271.546667pt;}
.y8a{bottom:276.026667pt;}
.yde{bottom:277.306667pt;}
.y134{bottom:278.746667pt;}
.y9d{bottom:279.546667pt;}
.y2a{bottom:279.706667pt;}
.ycd{bottom:281.626667pt;}
.y104{bottom:284.026667pt;}
.y113{bottom:284.506667pt;}
.y16f{bottom:286.746667pt;}
.y18d{bottom:286.906667pt;}
.y150{bottom:289.306667pt;}
.y59{bottom:289.946667pt;}
.y89{bottom:294.426667pt;}
.ydd{bottom:295.706667pt;}
.y9c{bottom:297.946667pt;}
.y29{bottom:298.106667pt;}
.ycc{bottom:300.026667pt;}
.y103{bottom:302.426667pt;}
.y112{bottom:302.906667pt;}
.y133{bottom:304.826667pt;}
.y17f{bottom:305.306667pt;}
.y58{bottom:308.346667pt;}
.y88{bottom:312.826667pt;}
.ydc{bottom:314.106667pt;}
.y28{bottom:316.186667pt;}
.y9b{bottom:316.346667pt;}
.ycb{bottom:318.426667pt;}
.y102{bottom:320.826667pt;}
.y111{bottom:321.306667pt;}
.y16e{bottom:323.706667pt;}
.y14f{bottom:326.426667pt;}
.y57{bottom:326.746667pt;}
.y87{bottom:331.226667pt;}
.y132{bottom:331.546667pt;}
.ydb{bottom:332.506667pt;}
.y9a{bottom:334.746667pt;}
.y27{bottom:334.906667pt;}
.yca{bottom:336.826667pt;}
.y101{bottom:339.226667pt;}
.y110{bottom:339.706667pt;}
.y18c{bottom:342.106667pt;}
.y17e{bottom:342.426667pt;}
.y56{bottom:345.186667pt;}
.y86{bottom:349.666667pt;}
.yda{bottom:350.946667pt;}
.y99{bottom:353.186667pt;}
.y26{bottom:353.346667pt;}
.yc9{bottom:355.266667pt;}
.y100{bottom:357.666667pt;}
.y131{bottom:357.986667pt;}
.y10f{bottom:358.146667pt;}
.y16d{bottom:360.866667pt;}
.y55{bottom:363.586667pt;}
.y85{bottom:368.066667pt;}
.yd9{bottom:369.346667pt;}
.y25{bottom:371.746667pt;}
.yc8{bottom:373.666667pt;}
.yff{bottom:376.066667pt;}
.y130{bottom:376.386667pt;}
.y10e{bottom:376.546667pt;}
.y16c{bottom:379.266667pt;}
.y98{bottom:379.586667pt;}
.y54{bottom:381.986667pt;}
.y84{bottom:386.466667pt;}
.yd8{bottom:387.746667pt;}
.y24{bottom:390.146667pt;}
.yc7{bottom:392.066667pt;}
.yfe{bottom:394.466667pt;}
.y12f{bottom:394.786667pt;}
.y16b{bottom:397.666667pt;}
.y53{bottom:400.386667pt;}
.y83{bottom:404.866667pt;}
.y23{bottom:408.546667pt;}
.yc6{bottom:410.466667pt;}
.yfd{bottom:412.866667pt;}
.y12e{bottom:413.186667pt;}
.y97{bottom:413.986667pt;}
.yd7{bottom:414.146667pt;}
.y16a{bottom:416.066667pt;}
.y17d{bottom:416.386667pt;}
.y52{bottom:418.786667pt;}
.y82{bottom:423.266667pt;}
.y10d{bottom:423.906667pt;}
.y22{bottom:426.626667pt;}
.yc5{bottom:428.866667pt;}
.yfc{bottom:431.266667pt;}
.y12d{bottom:431.586667pt;}
.y96{bottom:432.386667pt;}
.y18b{bottom:434.786667pt;}
.y51{bottom:437.186667pt;}
.y14e{bottom:437.346667pt;}
.y81{bottom:441.666667pt;}
.y21{bottom:445.346667pt;}
.yc4{bottom:447.266667pt;}
.yd6{bottom:448.546667pt;}
.yfb{bottom:449.666667pt;}
.y12c{bottom:449.986667pt;}
.y95{bottom:450.786667pt;}
.y169{bottom:453.186667pt;}
.y17c{bottom:453.346667pt;}
.y50{bottom:455.586667pt;}
.y80{bottom:460.066667pt;}
.yd5{bottom:463.106667pt;}
.y20{bottom:463.746667pt;}
.yc3{bottom:465.666667pt;}
.yfa{bottom:468.066667pt;}
.y12b{bottom:468.386667pt;}
.y94{bottom:469.186667pt;}
.y18a{bottom:471.586667pt;}
.y17b{bottom:471.746667pt;}
.y4f{bottom:473.986667pt;}
.y14d{bottom:474.466667pt;}
.y7f{bottom:478.466667pt;}
.y1f{bottom:482.146667pt;}
.yc2{bottom:484.066667pt;}
.yf9{bottom:486.466667pt;}
.y12a{bottom:486.786667pt;}
.y93{bottom:487.586667pt;}
.y168{bottom:490.146667pt;}
.y4e{bottom:492.386667pt;}
.y14c{bottom:492.866667pt;}
.y7e{bottom:496.866667pt;}
.ya7{bottom:499.266667pt;}
.y1e{bottom:500.546667pt;}
.yc1{bottom:502.466667pt;}
.yf8{bottom:504.866667pt;}
.y129{bottom:505.186667pt;}
.y92{bottom:505.986667pt;}
.y167{bottom:508.546667pt;}
.y4d{bottom:510.786667pt;}
.y14b{bottom:511.266667pt;}
.y7d{bottom:515.266667pt;}
.y1d{bottom:518.946667pt;}
.yc0{bottom:520.866667pt;}
.yf7{bottom:523.266667pt;}
.y191{bottom:526.946667pt;}
.y4c{bottom:529.186667pt;}
.y128{bottom:531.266667pt;}
.y7c{bottom:533.986667pt;}
.y1c{bottom:537.026667pt;}
.ybf{bottom:539.266667pt;}
.yf6{bottom:541.666667pt;}
.y166{bottom:545.666667pt;}
.y4b{bottom:547.586667pt;}
.y14a{bottom:548.386667pt;}
.y7b{bottom:552.386667pt;}
.y1b{bottom:555.746667pt;}
.ybe{bottom:557.666667pt;}
.yf5{bottom:560.066667pt;}
.y189{bottom:564.066667pt;}
.y4a{bottom:565.986667pt;}
.y65{bottom:568.386667pt;}
.y7a{bottom:570.813333pt;}
.y1a{bottom:574.173333pt;}
.ybd{bottom:576.093333pt;}
.yf4{bottom:578.813333pt;}
.y188{bottom:582.493333pt;}
.y165{bottom:582.813333pt;}
.y49{bottom:584.413333pt;}
.y149{bottom:585.373333pt;}
.y64{bottom:586.813333pt;}
.y79{bottom:589.213333pt;}
.y19{bottom:592.573333pt;}
.ybc{bottom:594.813333pt;}
.yf3{bottom:597.213333pt;}
.y164{bottom:601.213333pt;}
.y48{bottom:602.493333pt;}
.y11e{bottom:602.813333pt;}
.y148{bottom:603.773333pt;}
.y78{bottom:607.613333pt;}
.y18{bottom:610.973333pt;}
.ybb{bottom:613.213333pt;}
.yf2{bottom:615.613333pt;}
.y163{bottom:619.613333pt;}
.y47{bottom:621.213333pt;}
.y147{bottom:622.173333pt;}
.y77{bottom:626.013333pt;}
.y17{bottom:629.373333pt;}
.yba{bottom:631.613333pt;}
.yf1{bottom:634.013333pt;}
.y162{bottom:638.013333pt;}
.y46{bottom:639.613333pt;}
.y146{bottom:640.573333pt;}
.y76{bottom:644.413333pt;}
.y16{bottom:647.773333pt;}
.yb9{bottom:650.013333pt;}
.yf0{bottom:652.413333pt;}
.y190{bottom:656.413333pt;}
.y17a{bottom:656.573333pt;}
.y45{bottom:658.013333pt;}
.y75{bottom:662.813333pt;}
.y15{bottom:666.173333pt;}
.yb8{bottom:668.413333pt;}
.yef{bottom:670.813333pt;}
.y161{bottom:674.973333pt;}
.y44{bottom:676.413333pt;}
.y145{bottom:677.693333pt;}
.y74{bottom:681.213333pt;}
.y14{bottom:684.253333pt;}
.yb7{bottom:686.813333pt;}
.yee{bottom:689.213333pt;}
.y187{bottom:693.373333pt;}
.y179{bottom:693.693333pt;}
.y43{bottom:694.813333pt;}
.y73{bottom:699.613333pt;}
.y13{bottom:702.973333pt;}
.yb6{bottom:705.213333pt;}
.yed{bottom:707.613333pt;}
.y186{bottom:711.773333pt;}
.y160{bottom:712.093333pt;}
.y42{bottom:713.213333pt;}
.y144{bottom:714.813333pt;}
.y12{bottom:721.373333pt;}
.yb5{bottom:723.613333pt;}
.y72{bottom:726.013333pt;}
.y15f{bottom:730.493333pt;}
.y41{bottom:731.613333pt;}
.y143{bottom:733.213333pt;}
.y11{bottom:739.773333pt;}
.yb4{bottom:742.013333pt;}
.yec{bottom:744.413333pt;}
.y15e{bottom:748.893333pt;}
.y40{bottom:750.013333pt;}
.y142{bottom:751.613333pt;}
.y71{bottom:752.093333pt;}
.y10{bottom:758.173333pt;}
.yb3{bottom:760.413333pt;}
.yeb{bottom:762.813333pt;}
.y18f{bottom:767.293333pt;}
.y3f{bottom:768.413333pt;}
.yf{bottom:776.573333pt;}
.yb2{bottom:778.813333pt;}
.yea{bottom:781.213333pt;}
.y15d{bottom:786.013333pt;}
.y3e{bottom:786.813333pt;}
.y141{bottom:788.253333pt;}
.ye{bottom:795.013333pt;}
.yb1{bottom:797.253333pt;}
.ye9{bottom:799.653333pt;}
.y185{bottom:804.453333pt;}
.y3d{bottom:805.253333pt;}
.yb0{bottom:815.653333pt;}
.y184{bottom:822.853333pt;}
.y15c{bottom:823.013333pt;}
.y3c{bottom:823.653333pt;}
.ye8{bottom:825.733333pt;}
.yd{bottom:831.813333pt;}
.yaf{bottom:834.053333pt;}
.y15b{bottom:841.413333pt;}
.y3b{bottom:842.053333pt;}
.y140{bottom:844.133333pt;}
.yc{bottom:850.213333pt;}
.yae{bottom:852.453333pt;}
.y15a{bottom:859.813333pt;}
.y3a{bottom:860.453333pt;}
.y13f{bottom:862.533333pt;}
.yad{bottom:870.853333pt;}
.yb{bottom:871.653333pt;}
.y159{bottom:878.213333pt;}
.y178{bottom:878.533333pt;}
.y39{bottom:878.853333pt;}
.yac{bottom:889.253333pt;}
.ya{bottom:893.093333pt;}
.y183{bottom:896.933333pt;}
.y38{bottom:897.253333pt;}
.y13e{bottom:899.333333pt;}
.yab{bottom:907.653333pt;}
.y9{bottom:912.933333pt;}
.y158{bottom:915.333333pt;}
.y37{bottom:915.653333pt;}
.y13d{bottom:925.733333pt;}
.yaa{bottom:926.053333pt;}
.y182{bottom:933.733333pt;}
.y36{bottom:934.053333pt;}
.y8{bottom:940.453333pt;}
.ya9{bottom:944.293333pt;}
.y35{bottom:952.293333pt;}
.y7{bottom:969.893333pt;}
.y34{bottom:970.373333pt;}
.y63{bottom:970.693333pt;}
.y4{bottom:988.293333pt;}
.y3{bottom:1004.933333pt;}
.y2{bottom:1023.520000pt;}
.y1{bottom:1041.920000pt;}
.hd{height:16.946667pt;}
.hb{height:18.066667pt;}
.h3{height:52.990313pt;}
.ha{height:57.375000pt;}
.h5{height:58.740000pt;}
.hc{height:59.340000pt;}
.h7{height:62.781250pt;}
.h2{height:62.812500pt;}
.h4{height:63.656250pt;}
.h9{height:64.500000pt;}
.h8{height:73.454062pt;}
.h6{height:96.750000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:133.778667pt;}
.w3{width:238.578667pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x26{left:9.592000pt;}
.x2{left:94.592000pt;}
.x25{left:98.440000pt;}
.x5{left:107.712000pt;}
.x13{left:109.312000pt;}
.xb{left:112.032000pt;}
.xa{left:113.312000pt;}
.x8{left:114.752000pt;}
.x24{left:141.786667pt;}
.x11{left:151.066667pt;}
.x12{left:168.186667pt;}
.x1b{left:180.666667pt;}
.x22{left:193.466667pt;}
.x21{left:194.426667pt;}
.x3{left:208.026667pt;}
.x6{left:209.626667pt;}
.x1{left:227.546667pt;}
.x1e{left:232.386667pt;}
.x19{left:251.906667pt;}
.x18{left:312.066667pt;}
.xc{left:341.186667pt;}
.x27{left:348.386667pt;}
.x9{left:376.066667pt;}
.x7{left:396.733333pt;}
.x20{left:406.013333pt;}
.x1a{left:430.013333pt;}
.xd{left:444.253333pt;}
.x15{left:447.773333pt;}
.x10{left:497.533333pt;}
.x1f{left:513.213333pt;}
.x16{left:525.213333pt;}
.x17{left:527.453333pt;}
.x23{left:551.813333pt;}
.xe{left:554.533333pt;}
.x14{left:572.293333pt;}
.x1d{left:574.053333pt;}
.x1c{left:644.773333pt;}
.x28{left:682.853333pt;}
.x4{left:690.853333pt;}
.xf{left:699.040000pt;}
}




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