
    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_d36316974a291d6c9e1836bb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_ee24ef5f808b20d44ab6c715.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_ce42c5f8dcf28d3d9bde6903.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.886719;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_e272852b8b4244232fbf63a3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.035156;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_7792b8134c0a3205ff2d8f5a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005859;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_c7d399a1c0c910f720f27e51.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.056641;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_0ecc6445c631882d4893c589.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b0dc2648e771fd37c062be5d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.854980;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_1e428117fc250d7041edaa2d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.875488;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_73ba2dc8dfc7d346232636a5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffb{font-family:ffb;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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_a6c0b46a0abe8d8bb78cfa18.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.936035;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);}
.v5{vertical-align:-20.880000px;}
.v3{vertical-align:-5.760000px;}
.v2{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v4{vertical-align:20.880000px;}
.ls13{letter-spacing:-1.008000px;}
.ls18{letter-spacing:-0.864000px;}
.ls7{letter-spacing:-0.792000px;}
.ls15{letter-spacing:-0.630000px;}
.ls14{letter-spacing:-0.396000px;}
.lse{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.288000px;}
.ls17{letter-spacing:-0.255600px;}
.ls2{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.085200px;}
.ls1{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.130800px;}
.lsa{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.229200px;}
.lsf{letter-spacing:0.288000px;}
.ls12{letter-spacing:0.324000px;}
.ls4{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.432000px;}
.ls5{letter-spacing:1.008000px;}
.ls0{letter-spacing:4.452000px;}
.ls11{letter-spacing:54.840000px;}
.ls10{letter-spacing:101.640000px;}
.ls9{letter-spacing:115.194720px;}
.lsc{letter-spacing:141.240000px;}
.ls3{letter-spacing:143.803200px;}
.ls16{letter-spacing:162.840000px;}
.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;}
.ws0{word-spacing:-36.907200px;}
.wsa{word-spacing:-36.000000px;}
.wsb{word-spacing:-23.328000px;}
.ws1{word-spacing:-22.984800px;}
.ws13{word-spacing:-18.663600px;}
.ws11{word-spacing:-18.277200px;}
.wsd{word-spacing:-17.524800px;}
.ws6{word-spacing:-16.200000px;}
.wsc{word-spacing:-15.984000px;}
.ws4{word-spacing:-15.840000px;}
.ws3{word-spacing:-15.624000px;}
.ws9{word-spacing:-15.552000px;}
.ws12{word-spacing:-14.976000px;}
.wsf{word-spacing:-12.204000px;}
.wse{word-spacing:-11.484000px;}
.ws8{word-spacing:-10.612800px;}
.ws7{word-spacing:-10.527600px;}
.ws10{word-spacing:-0.072000px;}
.ws5{word-spacing:0.000000px;}
._16{margin-left:-15.360000px;}
._f{margin-left:-14.259600px;}
._0{margin-left:-12.749760px;}
._15{margin-left:-9.492000px;}
._14{margin-left:-8.362320px;}
._5{margin-left:-7.213680px;}
._4{margin-left:-5.871600px;}
._2{margin-left:-3.690720px;}
._1{margin-left:-2.684160px;}
._8{margin-left:-1.379760px;}
._c{width:1.091760px;}
._18{width:2.616000px;}
._9{width:3.959280px;}
._a{width:5.307120px;}
._b{width:6.950640px;}
._20{width:7.992000px;}
._1f{width:9.216000px;}
._22{width:10.800000px;}
._21{width:11.952000px;}
._27{width:12.960000px;}
._28{width:14.220000px;}
._3{width:15.769440px;}
._11{width:16.848000px;}
._1a{width:18.072000px;}
._17{width:19.080000px;}
._d{width:20.520000px;}
._e{width:21.708720px;}
._1b{width:22.824000px;}
._6{width:24.492960px;}
._2c{width:25.560000px;}
._7{width:26.774640px;}
._29{width:28.152000px;}
._2e{width:29.952000px;}
._2f{width:30.960000px;}
._23{width:32.688000px;}
._24{width:33.744480px;}
._2d{width:34.776000px;}
._2a{width:36.864000px;}
._2b{width:38.088000px;}
._12{width:46.872000px;}
._25{width:80.309040px;}
._10{width:90.792000px;}
._13{width:94.320000px;}
._31{width:130.248000px;}
._30{width:131.328000px;}
._1d{width:140.316480px;}
._26{width:180.120000px;}
._1c{width:280.752480px;}
._1e{width:316.728000px;}
._19{width:843.088800px;}
.fc3{color:rgb(15,71,97);}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y26{bottom:3.960000px;}
.y1f{bottom:5.400000px;}
.y66{bottom:6.840000px;}
.y5f{bottom:7.020000px;}
.y25{bottom:25.200000px;}
.y61{bottom:26.460000px;}
.y64{bottom:26.490000px;}
.y24{bottom:46.260000px;}
.y3{bottom:57.780000px;}
.y23{bottom:67.320000px;}
.y22{bottom:88.380000px;}
.y21{bottom:109.620000px;}
.yb5{bottom:111.996000px;}
.y3d{bottom:118.116000px;}
.y158{bottom:119.376000px;}
.y117{bottom:127.836000px;}
.y95{bottom:131.616000px;}
.y174{bottom:132.876000px;}
.yf7{bottom:136.476000px;}
.yb4{bottom:137.196000px;}
.y1c{bottom:140.436000px;}
.y157{bottom:144.756000px;}
.y3c{bottom:149.796000px;}
.y116{bottom:151.950000px;}
.y94{bottom:155.910000px;}
.y173{bottom:156.990000px;}
.y73{bottom:160.230000px;}
.yf6{bottom:160.590000px;}
.yb3{bottom:162.570000px;}
.y1b{bottom:164.550000px;}
.y156{bottom:169.950000px;}
.y115{bottom:177.330000px;}
.y93{bottom:180.210000px;}
.y3b{bottom:181.650000px;}
.y72{bottom:184.530000px;}
.yf5{bottom:185.970000px;}
.yb2{bottom:186.870000px;}
.y138{bottom:188.850000px;}
.y18e{bottom:189.210000px;}
.y172{bottom:189.570000px;}
.y155{bottom:195.330000px;}
.y1a8{bottom:197.670000px;}
.yd3{bottom:199.290000px;}
.y1a{bottom:200.910000px;}
.y114{bottom:201.450000px;}
.y71{bottom:208.830000px;}
.yb1{bottom:210.990000px;}
.yf4{bottom:211.350000px;}
.y92{bottom:211.530000px;}
.y137{bottom:213.150000px;}
.y3a{bottom:213.330000px;}
.y18d{bottom:213.510000px;}
.y154{bottom:219.450000px;}
.y1a7{bottom:223.050000px;}
.yd2{bottom:224.670000px;}
.y19{bottom:225.210000px;}
.y113{bottom:226.830000px;}
.y171{bottom:228.630000px;}
.y70{bottom:233.130000px;}
.yf3{bottom:235.470000px;}
.y136{bottom:237.270000px;}
.y18c{bottom:237.630000px;}
.yb0{bottom:243.570000px;}
.y153{bottom:244.650000px;}
.y39{bottom:245.190000px;}
.y1a6{bottom:247.170000px;}
.yd1{bottom:248.790000px;}
.y91{bottom:250.770000px;}
.y112{bottom:252.030000px;}
.y170{bottom:252.930000px;}
.y6f{bottom:257.250000px;}
.yf2{bottom:259.770000px;}
.y135{bottom:262.650000px;}
.y18{bottom:263.010000px;}
.y152{bottom:270.030000px;}
.y1a5{bottom:272.370000px;}
.yd0{bottom:274.170000px;}
.y90{bottom:275.070000px;}
.y111{bottom:276.330000px;}
.y38{bottom:276.870000px;}
.y16f{bottom:277.230000px;}
.yaf{bottom:282.630000px;}
.yf1{bottom:284.970000px;}
.y134{bottom:286.950000px;}
.y18b{bottom:288.210000px;}
.y17{bottom:289.830000px;}
.y6e{bottom:293.610000px;}
.y151{bottom:295.230000px;}
.y1a4{bottom:297.750000px;}
.ycf{bottom:298.470000px;}
.y8f{bottom:299.370000px;}
.y37{bottom:301.170000px;}
.y16e{bottom:301.350000px;}
.y110{bottom:301.530000px;}
.yae{bottom:307.830000px;}
.yf0{bottom:309.270000px;}
.y133{bottom:311.070000px;}
.y18a{bottom:312.510000px;}
.y16{bottom:315.210000px;}
.y6d{bottom:317.955000px;}
.y150{bottom:320.655000px;}
.y1a3{bottom:322.095000px;}
.yce{bottom:322.635000px;}
.y8e{bottom:323.535000px;}
.y10f{bottom:325.875000px;}
.yad{bottom:332.175000px;}
.y36{bottom:333.075000px;}
.yef{bottom:333.615000px;}
.y16d{bottom:333.975000px;}
.y132{bottom:335.415000px;}
.y189{bottom:337.935000px;}
.y15{bottom:339.375000px;}
.y14f{bottom:344.775000px;}
.y1a2{bottom:346.395000px;}
.ycd{bottom:346.935000px;}
.y8d{bottom:347.835000px;}
.y6c{bottom:349.455000px;}
.yac{bottom:356.475000px;}
.yee{bottom:357.735000px;}
.y10e{bottom:358.275000px;}
.y131{bottom:360.795000px;}
.y188{bottom:362.055000px;}
.y35{bottom:364.755000px;}
.y14e{bottom:370.155000px;}
.y1a1{bottom:370.695000px;}
.y8c{bottom:372.135000px;}
.ycc{bottom:372.315000px;}
.y16c{bottom:373.035000px;}
.y14{bottom:375.735000px;}
.yab{bottom:381.675000px;}
.yed{bottom:383.115000px;}
.y130{bottom:384.915000px;}
.y187{bottom:386.355000px;}
.y6b{bottom:390.855000px;}
.y14d{bottom:394.455000px;}
.y1a0{bottom:394.815000px;}
.y8b{bottom:396.435000px;}
.y34{bottom:396.615000px;}
.y10d{bottom:397.335000px;}
.yaa{bottom:405.975000px;}
.yec{bottom:408.495000px;}
.y12f{bottom:409.215000px;}
.y186{bottom:410.655000px;}
.y13{bottom:411.915000px;}
.y14c{bottom:418.575000px;}
.y19f{bottom:420.015000px;}
.y8a{bottom:420.735000px;}
.y16b{bottom:421.635000px;}
.y10c{bottom:422.715000px;}
.y33{bottom:428.295000px;}
.ya9{bottom:430.275000px;}
.yeb{bottom:432.615000px;}
.y6a{bottom:432.795000px;}
.y50{bottom:433.155000px;}
.y12e{bottom:433.515000px;}
.y185{bottom:435.855000px;}
.y89{bottom:445.035000px;}
.y16a{bottom:445.755000px;}
.ycb{bottom:446.115000px;}
.y10b{bottom:447.015000px;}
.y12{bottom:448.275000px;}
.y69{bottom:450.615000px;}
.y14b{bottom:451.155000px;}
.y19e{bottom:452.595000px;}
.ya8{bottom:455.475000px;}
.yea{bottom:456.915000px;}
.y12d{bottom:457.815000px;}
.y32{bottom:460.155000px;}
.y88{bottom:469.155000px;}
.yca{bottom:470.235000px;}
.y4f{bottom:470.595000px;}
.y68{bottom:470.955000px;}
.y10a{bottom:471.315000px;}
.y169{bottom:478.335000px;}
.y14a{bottom:479.415000px;}
.ya7{bottom:479.775000px;}
.y12c{bottom:481.935000px;}
.y11{bottom:484.455000px;}
.ye9{bottom:489.315000px;}
.y67{bottom:491.295000px;}
.y19d{bottom:491.655000px;}
.y31{bottom:491.835000px;}
.y87{bottom:493.455000px;}
.yc9{bottom:494.535000px;}
.y109{bottom:495.435000px;}
.y4e{bottom:502.455000px;}
.ya6{bottom:505.155000px;}
.y12b{bottom:507.315000px;}
.y184{bottom:508.575000px;}
.y65{bottom:511.635000px;}
.y19c{bottom:515.955000px;}
.y30{bottom:516.135000px;}
.y168{bottom:517.575000px;}
.y86{bottom:517.755000px;}
.y149{bottom:518.475000px;}
.y10{bottom:520.815000px;}
.yc8{bottom:526.935000px;}
.ye8{bottom:528.555000px;}
.ya5{bottom:529.275000px;}
.y12a{bottom:531.435000px;}
.y183{bottom:533.955000px;}
.y4d{bottom:534.135000px;}
.y167{bottom:541.695000px;}
.y85{bottom:542.055000px;}
.y148{bottom:543.855000px;}
.y108{bottom:546.015000px;}
.y2f{bottom:547.815000px;}
.y19b{bottom:548.355000px;}
.y63{bottom:551.415000px;}
.ye7{bottom:552.855000px;}
.y129{bottom:556.815000px;}
.yf{bottom:556.995000px;}
.y182{bottom:558.255000px;}
.ya4{bottom:561.675000px;}
.y4c{bottom:565.995000px;}
.y147{bottom:569.085000px;}
.y107{bottom:570.345000px;}
.y166{bottom:574.305000px;}
.ye6{bottom:577.185000px;}
.y84{bottom:578.265000px;}
.y2e{bottom:579.705000px;}
.y128{bottom:581.145000px;}
.y181{bottom:582.405000px;}
.y19a{bottom:587.625000px;}
.y62{bottom:591.225000px;}
.yc7{bottom:591.405000px;}
.ye{bottom:593.385000px;}
.y4b{bottom:597.705000px;}
.ya3{bottom:600.945000px;}
.ye5{bottom:601.305000px;}
.y83{bottom:602.565000px;}
.y106{bottom:602.745000px;}
.y127{bottom:606.345000px;}
.y180{bottom:607.785000px;}
.y2d{bottom:611.385000px;}
.y60{bottom:611.565000px;}
.y199{bottom:611.925000px;}
.y165{bottom:615.705000px;}
.yc6{bottom:616.605000px;}
.y146{bottom:617.685000px;}
.ya2{bottom:625.065000px;}
.ye4{bottom:626.685000px;}
.y82{bottom:626.865000px;}
.yd{bottom:629.565000px;}
.y126{bottom:630.645000px;}
.y17f{bottom:631.905000px;}
.y198{bottom:636.045000px;}
.yc5{bottom:640.905000px;}
.y145{bottom:641.805000px;}
.y105{bottom:641.985000px;}
.y2c{bottom:643.245000px;}
.ya1{bottom:650.445000px;}
.ye3{bottom:650.805000px;}
.y81{bottom:651.165000px;}
.y5e{bottom:651.345000px;}
.y125{bottom:656.025000px;}
.y17e{bottom:657.285000px;}
.y164{bottom:657.465000px;}
.y4a{bottom:661.245000px;}
.yc{bottom:665.925000px;}
.y104{bottom:666.105000px;}
.yc4{bottom:666.285000px;}
.y144{bottom:667.185000px;}
.y197{bottom:668.625000px;}
.ya0{bottom:674.565000px;}
.y2b{bottom:674.925000px;}
.y80{bottom:675.465000px;}
.ye2{bottom:676.185000px;}
.y5d{bottom:678.705000px;}
.y124{bottom:680.145000px;}
.y17d{bottom:681.585000px;}
.y163{bottom:689.145000px;}
.yc3{bottom:690.405000px;}
.y103{bottom:691.485000px;}
.y49{bottom:693.105000px;}
.y7f{bottom:699.585000px;}
.y9f{bottom:699.945000px;}
.ye1{bottom:700.305000px;}
.yb{bottom:703.365000px;}
.y123{bottom:704.445000px;}
.y2a{bottom:706.785000px;}
.y196{bottom:707.685000px;}
.y5c{bottom:710.385000px;}
.y17c{bottom:713.985000px;}
.y162{bottom:714.345000px;}
.yc2{bottom:714.705000px;}
.y102{bottom:715.785000px;}
.y143{bottom:716.685000px;}
.y7e{bottom:723.885000px;}
.y48{bottom:724.785000px;}
.y9e{bottom:725.145000px;}
.ye0{bottom:725.685000px;}
.y122{bottom:728.745000px;}
.y195{bottom:731.985000px;}
.y5b{bottom:734.685000px;}
.y161{bottom:739.725000px;}
.y101{bottom:739.905000px;}
.yc1{bottom:740.085000px;}
.y142{bottom:740.985000px;}
.ya{bottom:742.425000px;}
.y29{bottom:743.505000px;}
.ydf{bottom:749.985000px;}
.y17b{bottom:753.225000px;}
.y121{bottom:753.945000px;}
.y7d{bottom:755.385000px;}
.y194{bottom:756.285000px;}
.y47{bottom:756.645000px;}
.y9d{bottom:757.545000px;}
.y5a{bottom:758.985000px;}
.y160{bottom:764.025000px;}
.yc0{bottom:764.205000px;}
.y100{bottom:765.285000px;}
.y141{bottom:766.185000px;}
.yde{bottom:774.105000px;}
.y17a{bottom:777.525000px;}
.y120{bottom:779.325000px;}
.y9{bottom:779.865000px;}
.y193{bottom:780.405000px;}
.y46{bottom:780.765000px;}
.y59{bottom:783.285000px;}
.y15f{bottom:788.145000px;}
.yff{bottom:789.405000px;}
.ybf{bottom:789.585000px;}
.y140{bottom:791.565000px;}
.y28{bottom:791.745000px;}
.y7c{bottom:794.445000px;}
.y9c{bottom:796.605000px;}
.ydd{bottom:799.485000px;}
.y179{bottom:801.645000px;}
.y11f{bottom:803.625000px;}
.y192{bottom:805.785000px;}
.y58{bottom:807.405000px;}
.y27{bottom:809.565000px;}
.y45{bottom:812.625000px;}
.y15e{bottom:813.525000px;}
.ybe{bottom:813.705000px;}
.yfe{bottom:814.785000px;}
.y8{bottom:815.145000px;}
.y13f{bottom:815.865000px;}
.y7b{bottom:818.745000px;}
.ydc{bottom:823.830000px;}
.y178{bottom:827.070000px;}
.y11e{bottom:827.790000px;}
.y9b{bottom:828.330000px;}
.y191{bottom:829.950000px;}
.y57{bottom:831.750000px;}
.y20{bottom:832.830000px;}
.y15d{bottom:837.870000px;}
.ybd{bottom:839.130000px;}
.y13e{bottom:840.030000px;}
.y44{bottom:844.350000px;}
.ydb{bottom:848.130000px;}
.y7a{bottom:850.290000px;}
.y177{bottom:851.190000px;}
.y11d{bottom:852.090000px;}
.y9a{bottom:852.630000px;}
.y190{bottom:855.330000px;}
.y56{bottom:856.050000px;}
.y15c{bottom:861.990000px;}
.yfd{bottom:863.250000px;}
.ybc{bottom:863.430000px;}
.y7{bottom:864.510000px;}
.yda{bottom:872.430000px;}
.y13d{bottom:872.610000px;}
.y43{bottom:876.210000px;}
.y18f{bottom:879.450000px;}
.y55{bottom:880.170000px;}
.y176{bottom:883.770000px;}
.y99{bottom:885.210000px;}
.y15b{bottom:887.370000px;}
.ybb{bottom:887.550000px;}
.yfc{bottom:888.630000px;}
.y79{bottom:889.350000px;}
.y1aa{bottom:895.290000px;}
.yd9{bottom:896.550000px;}
.y11c{bottom:901.590000px;}
.y42{bottom:907.890000px;}
.y13c{bottom:911.670000px;}
.y54{bottom:911.850000px;}
.y175{bottom:912.030000px;}
.yfb{bottom:912.750000px;}
.y78{bottom:913.650000px;}
.y6{bottom:913.830000px;}
.y98{bottom:917.610000px;}
.y1a9{bottom:919.410000px;}
.yba{bottom:920.130000px;}
.yd8{bottom:921.750000px;}
.y11b{bottom:926.970000px;}
.y13b{bottom:935.970000px;}
.y53{bottom:936.150000px;}
.y15a{bottom:936.870000px;}
.y77{bottom:937.950000px;}
.y41{bottom:939.750000px;}
.yfa{bottom:945.330000px;}
.yd7{bottom:947.130000px;}
.y11a{bottom:951.090000px;}
.yb9{bottom:959.190000px;}
.y97{bottom:959.370000px;}
.y13a{bottom:960.090000px;}
.y1e{bottom:960.270000px;}
.y52{bottom:960.450000px;}
.y159{bottom:961.170000px;}
.y76{bottom:962.250000px;}
.y5{bottom:962.970000px;}
.yd6{bottom:971.250000px;}
.y40{bottom:971.430000px;}
.y119{bottom:975.390000px;}
.y96{bottom:978.990000px;}
.yf9{bottom:984.390000px;}
.yb8{bottom:984.570000px;}
.y139{bottom:985.470000px;}
.y75{bottom:986.550000px;}
.y51{bottom:993.030000px;}
.y118{bottom:999.690000px;}
.y3f{bottom:1003.290000px;}
.yd5{bottom:1003.830000px;}
.yb7{bottom:1008.690000px;}
.yf8{bottom:1009.770000px;}
.y74{bottom:1010.670000px;}
.y1d{bottom:1012.110000px;}
.y4{bottom:1012.290000px;}
.yd4{bottom:1032.090000px;}
.yb6{bottom:1033.890000px;}
.y3e{bottom:1034.970000px;}
.y2{bottom:1056.030000px;}
.y1{bottom:1073.160000px;}
.hb{height:19.620000px;}
.h4{height:22.500000px;}
.h6{height:22.536000px;}
.hc{height:39.060000px;}
.hd{height:39.096000px;}
.ha{height:39.830273px;}
.h1{height:60.960938px;}
.h3{height:71.324297px;}
.he{height:74.004654px;}
.h8{height:81.078047px;}
.h7{height:98.051133px;}
.h9{height:98.426190px;}
.h5{height:126.720000px;}
.h2{height:142.038984px;}
.h0{height:1188.000000px;}
.w2{width:174.780000px;}
.w3{width:174.810000px;}
.w4{width:238.710000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.x4{left:100.296000px;}
.x2{left:108.035986px;}
.x9{left:124.595986px;}
.xe{left:135.035986px;}
.xa{left:140.975986px;}
.xd{left:161.129986px;}
.x1{left:266.609986px;}
.x6{left:275.790000px;}
.x3{left:322.814986px;}
.xb{left:339.735000px;}
.x7{left:451.335000px;}
.xc{left:579.165000px;}
.x8{left:626.865000px;}
@media print{
.v5{vertical-align:-18.560000pt;}
.v3{vertical-align:-5.120000pt;}
.v2{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v4{vertical-align:18.560000pt;}
.ls13{letter-spacing:-0.896000pt;}
.ls18{letter-spacing:-0.768000pt;}
.ls7{letter-spacing:-0.704000pt;}
.ls15{letter-spacing:-0.560000pt;}
.ls14{letter-spacing:-0.352000pt;}
.lse{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls17{letter-spacing:-0.227200pt;}
.ls2{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.075733pt;}
.ls1{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.116267pt;}
.lsa{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.203733pt;}
.lsf{letter-spacing:0.256000pt;}
.ls12{letter-spacing:0.288000pt;}
.ls4{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.896000pt;}
.ls0{letter-spacing:3.957333pt;}
.ls11{letter-spacing:48.746667pt;}
.ls10{letter-spacing:90.346667pt;}
.ls9{letter-spacing:102.395307pt;}
.lsc{letter-spacing:125.546667pt;}
.ls3{letter-spacing:127.825067pt;}
.ls16{letter-spacing:144.746667pt;}
.ws2{word-spacing:-64.000000pt;}
.ws0{word-spacing:-32.806400pt;}
.wsa{word-spacing:-32.000000pt;}
.wsb{word-spacing:-20.736000pt;}
.ws1{word-spacing:-20.430933pt;}
.ws13{word-spacing:-16.589867pt;}
.ws11{word-spacing:-16.246400pt;}
.wsd{word-spacing:-15.577600pt;}
.ws6{word-spacing:-14.400000pt;}
.wsc{word-spacing:-14.208000pt;}
.ws4{word-spacing:-14.080000pt;}
.ws3{word-spacing:-13.888000pt;}
.ws9{word-spacing:-13.824000pt;}
.ws12{word-spacing:-13.312000pt;}
.wsf{word-spacing:-10.848000pt;}
.wse{word-spacing:-10.208000pt;}
.ws8{word-spacing:-9.433600pt;}
.ws7{word-spacing:-9.357867pt;}
.ws10{word-spacing:-0.064000pt;}
.ws5{word-spacing:0.000000pt;}
._16{margin-left:-13.653333pt;}
._f{margin-left:-12.675200pt;}
._0{margin-left:-11.333120pt;}
._15{margin-left:-8.437333pt;}
._14{margin-left:-7.433173pt;}
._5{margin-left:-6.412160pt;}
._4{margin-left:-5.219200pt;}
._2{margin-left:-3.280640pt;}
._1{margin-left:-2.385920pt;}
._8{margin-left:-1.226453pt;}
._c{width:0.970453pt;}
._18{width:2.325333pt;}
._9{width:3.519360pt;}
._a{width:4.717440pt;}
._b{width:6.178347pt;}
._20{width:7.104000pt;}
._1f{width:8.192000pt;}
._22{width:9.600000pt;}
._21{width:10.624000pt;}
._27{width:11.520000pt;}
._28{width:12.640000pt;}
._3{width:14.017280pt;}
._11{width:14.976000pt;}
._1a{width:16.064000pt;}
._17{width:16.960000pt;}
._d{width:18.240000pt;}
._e{width:19.296640pt;}
._1b{width:20.288000pt;}
._6{width:21.771520pt;}
._2c{width:22.720000pt;}
._7{width:23.799680pt;}
._29{width:25.024000pt;}
._2e{width:26.624000pt;}
._2f{width:27.520000pt;}
._23{width:29.056000pt;}
._24{width:29.995093pt;}
._2d{width:30.912000pt;}
._2a{width:32.768000pt;}
._2b{width:33.856000pt;}
._12{width:41.664000pt;}
._25{width:71.385813pt;}
._10{width:80.704000pt;}
._13{width:83.840000pt;}
._31{width:115.776000pt;}
._30{width:116.736000pt;}
._1d{width:124.725760pt;}
._26{width:160.106667pt;}
._1c{width:249.557760pt;}
._1e{width:281.536000pt;}
._19{width:749.412267pt;}
.fs7{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:3.520000pt;}
.y1f{bottom:4.800000pt;}
.y66{bottom:6.080000pt;}
.y5f{bottom:6.240000pt;}
.y25{bottom:22.400000pt;}
.y61{bottom:23.520000pt;}
.y64{bottom:23.546667pt;}
.y24{bottom:41.120000pt;}
.y3{bottom:51.360000pt;}
.y23{bottom:59.840000pt;}
.y22{bottom:78.560000pt;}
.y21{bottom:97.440000pt;}
.yb5{bottom:99.552000pt;}
.y3d{bottom:104.992000pt;}
.y158{bottom:106.112000pt;}
.y117{bottom:113.632000pt;}
.y95{bottom:116.992000pt;}
.y174{bottom:118.112000pt;}
.yf7{bottom:121.312000pt;}
.yb4{bottom:121.952000pt;}
.y1c{bottom:124.832000pt;}
.y157{bottom:128.672000pt;}
.y3c{bottom:133.152000pt;}
.y116{bottom:135.066667pt;}
.y94{bottom:138.586667pt;}
.y173{bottom:139.546667pt;}
.y73{bottom:142.426667pt;}
.yf6{bottom:142.746667pt;}
.yb3{bottom:144.506667pt;}
.y1b{bottom:146.266667pt;}
.y156{bottom:151.066667pt;}
.y115{bottom:157.626667pt;}
.y93{bottom:160.186667pt;}
.y3b{bottom:161.466667pt;}
.y72{bottom:164.026667pt;}
.yf5{bottom:165.306667pt;}
.yb2{bottom:166.106667pt;}
.y138{bottom:167.866667pt;}
.y18e{bottom:168.186667pt;}
.y172{bottom:168.506667pt;}
.y155{bottom:173.626667pt;}
.y1a8{bottom:175.706667pt;}
.yd3{bottom:177.146667pt;}
.y1a{bottom:178.586667pt;}
.y114{bottom:179.066667pt;}
.y71{bottom:185.626667pt;}
.yb1{bottom:187.546667pt;}
.yf4{bottom:187.866667pt;}
.y92{bottom:188.026667pt;}
.y137{bottom:189.466667pt;}
.y3a{bottom:189.626667pt;}
.y18d{bottom:189.786667pt;}
.y154{bottom:195.066667pt;}
.y1a7{bottom:198.266667pt;}
.yd2{bottom:199.706667pt;}
.y19{bottom:200.186667pt;}
.y113{bottom:201.626667pt;}
.y171{bottom:203.226667pt;}
.y70{bottom:207.226667pt;}
.yf3{bottom:209.306667pt;}
.y136{bottom:210.906667pt;}
.y18c{bottom:211.226667pt;}
.yb0{bottom:216.506667pt;}
.y153{bottom:217.466667pt;}
.y39{bottom:217.946667pt;}
.y1a6{bottom:219.706667pt;}
.yd1{bottom:221.146667pt;}
.y91{bottom:222.906667pt;}
.y112{bottom:224.026667pt;}
.y170{bottom:224.826667pt;}
.y6f{bottom:228.666667pt;}
.yf2{bottom:230.906667pt;}
.y135{bottom:233.466667pt;}
.y18{bottom:233.786667pt;}
.y152{bottom:240.026667pt;}
.y1a5{bottom:242.106667pt;}
.yd0{bottom:243.706667pt;}
.y90{bottom:244.506667pt;}
.y111{bottom:245.626667pt;}
.y38{bottom:246.106667pt;}
.y16f{bottom:246.426667pt;}
.yaf{bottom:251.226667pt;}
.yf1{bottom:253.306667pt;}
.y134{bottom:255.066667pt;}
.y18b{bottom:256.186667pt;}
.y17{bottom:257.626667pt;}
.y6e{bottom:260.986667pt;}
.y151{bottom:262.426667pt;}
.y1a4{bottom:264.666667pt;}
.ycf{bottom:265.306667pt;}
.y8f{bottom:266.106667pt;}
.y37{bottom:267.706667pt;}
.y16e{bottom:267.866667pt;}
.y110{bottom:268.026667pt;}
.yae{bottom:273.626667pt;}
.yf0{bottom:274.906667pt;}
.y133{bottom:276.506667pt;}
.y18a{bottom:277.786667pt;}
.y16{bottom:280.186667pt;}
.y6d{bottom:282.626667pt;}
.y150{bottom:285.026667pt;}
.y1a3{bottom:286.306667pt;}
.yce{bottom:286.786667pt;}
.y8e{bottom:287.586667pt;}
.y10f{bottom:289.666667pt;}
.yad{bottom:295.266667pt;}
.y36{bottom:296.066667pt;}
.yef{bottom:296.546667pt;}
.y16d{bottom:296.866667pt;}
.y132{bottom:298.146667pt;}
.y189{bottom:300.386667pt;}
.y15{bottom:301.666667pt;}
.y14f{bottom:306.466667pt;}
.y1a2{bottom:307.906667pt;}
.ycd{bottom:308.386667pt;}
.y8d{bottom:309.186667pt;}
.y6c{bottom:310.626667pt;}
.yac{bottom:316.866667pt;}
.yee{bottom:317.986667pt;}
.y10e{bottom:318.466667pt;}
.y131{bottom:320.706667pt;}
.y188{bottom:321.826667pt;}
.y35{bottom:324.226667pt;}
.y14e{bottom:329.026667pt;}
.y1a1{bottom:329.506667pt;}
.y8c{bottom:330.786667pt;}
.ycc{bottom:330.946667pt;}
.y16c{bottom:331.586667pt;}
.y14{bottom:333.986667pt;}
.yab{bottom:339.266667pt;}
.yed{bottom:340.546667pt;}
.y130{bottom:342.146667pt;}
.y187{bottom:343.426667pt;}
.y6b{bottom:347.426667pt;}
.y14d{bottom:350.626667pt;}
.y1a0{bottom:350.946667pt;}
.y8b{bottom:352.386667pt;}
.y34{bottom:352.546667pt;}
.y10d{bottom:353.186667pt;}
.yaa{bottom:360.866667pt;}
.yec{bottom:363.106667pt;}
.y12f{bottom:363.746667pt;}
.y186{bottom:365.026667pt;}
.y13{bottom:366.146667pt;}
.y14c{bottom:372.066667pt;}
.y19f{bottom:373.346667pt;}
.y8a{bottom:373.986667pt;}
.y16b{bottom:374.786667pt;}
.y10c{bottom:375.746667pt;}
.y33{bottom:380.706667pt;}
.ya9{bottom:382.466667pt;}
.yeb{bottom:384.546667pt;}
.y6a{bottom:384.706667pt;}
.y50{bottom:385.026667pt;}
.y12e{bottom:385.346667pt;}
.y185{bottom:387.426667pt;}
.y89{bottom:395.586667pt;}
.y16a{bottom:396.226667pt;}
.ycb{bottom:396.546667pt;}
.y10b{bottom:397.346667pt;}
.y12{bottom:398.466667pt;}
.y69{bottom:400.546667pt;}
.y14b{bottom:401.026667pt;}
.y19e{bottom:402.306667pt;}
.ya8{bottom:404.866667pt;}
.yea{bottom:406.146667pt;}
.y12d{bottom:406.946667pt;}
.y32{bottom:409.026667pt;}
.y88{bottom:417.026667pt;}
.yca{bottom:417.986667pt;}
.y4f{bottom:418.306667pt;}
.y68{bottom:418.626667pt;}
.y10a{bottom:418.946667pt;}
.y169{bottom:425.186667pt;}
.y14a{bottom:426.146667pt;}
.ya7{bottom:426.466667pt;}
.y12c{bottom:428.386667pt;}
.y11{bottom:430.626667pt;}
.ye9{bottom:434.946667pt;}
.y67{bottom:436.706667pt;}
.y19d{bottom:437.026667pt;}
.y31{bottom:437.186667pt;}
.y87{bottom:438.626667pt;}
.yc9{bottom:439.586667pt;}
.y109{bottom:440.386667pt;}
.y4e{bottom:446.626667pt;}
.ya6{bottom:449.026667pt;}
.y12b{bottom:450.946667pt;}
.y184{bottom:452.066667pt;}
.y65{bottom:454.786667pt;}
.y19c{bottom:458.626667pt;}
.y30{bottom:458.786667pt;}
.y168{bottom:460.066667pt;}
.y86{bottom:460.226667pt;}
.y149{bottom:460.866667pt;}
.y10{bottom:462.946667pt;}
.yc8{bottom:468.386667pt;}
.ye8{bottom:469.826667pt;}
.ya5{bottom:470.466667pt;}
.y12a{bottom:472.386667pt;}
.y183{bottom:474.626667pt;}
.y4d{bottom:474.786667pt;}
.y167{bottom:481.506667pt;}
.y85{bottom:481.826667pt;}
.y148{bottom:483.426667pt;}
.y108{bottom:485.346667pt;}
.y2f{bottom:486.946667pt;}
.y19b{bottom:487.426667pt;}
.y63{bottom:490.146667pt;}
.ye7{bottom:491.426667pt;}
.y129{bottom:494.946667pt;}
.yf{bottom:495.106667pt;}
.y182{bottom:496.226667pt;}
.ya4{bottom:499.266667pt;}
.y4c{bottom:503.106667pt;}
.y147{bottom:505.853333pt;}
.y107{bottom:506.973333pt;}
.y166{bottom:510.493333pt;}
.ye6{bottom:513.053333pt;}
.y84{bottom:514.013333pt;}
.y2e{bottom:515.293333pt;}
.y128{bottom:516.573333pt;}
.y181{bottom:517.693333pt;}
.y19a{bottom:522.333333pt;}
.y62{bottom:525.533333pt;}
.yc7{bottom:525.693333pt;}
.ye{bottom:527.453333pt;}
.y4b{bottom:531.293333pt;}
.ya3{bottom:534.173333pt;}
.ye5{bottom:534.493333pt;}
.y83{bottom:535.613333pt;}
.y106{bottom:535.773333pt;}
.y127{bottom:538.973333pt;}
.y180{bottom:540.253333pt;}
.y2d{bottom:543.453333pt;}
.y60{bottom:543.613333pt;}
.y199{bottom:543.933333pt;}
.y165{bottom:547.293333pt;}
.yc6{bottom:548.093333pt;}
.y146{bottom:549.053333pt;}
.ya2{bottom:555.613333pt;}
.ye4{bottom:557.053333pt;}
.y82{bottom:557.213333pt;}
.yd{bottom:559.613333pt;}
.y126{bottom:560.573333pt;}
.y17f{bottom:561.693333pt;}
.y198{bottom:565.373333pt;}
.yc5{bottom:569.693333pt;}
.y145{bottom:570.493333pt;}
.y105{bottom:570.653333pt;}
.y2c{bottom:571.773333pt;}
.ya1{bottom:578.173333pt;}
.ye3{bottom:578.493333pt;}
.y81{bottom:578.813333pt;}
.y5e{bottom:578.973333pt;}
.y125{bottom:583.133333pt;}
.y17e{bottom:584.253333pt;}
.y164{bottom:584.413333pt;}
.y4a{bottom:587.773333pt;}
.yc{bottom:591.933333pt;}
.y104{bottom:592.093333pt;}
.yc4{bottom:592.253333pt;}
.y144{bottom:593.053333pt;}
.y197{bottom:594.333333pt;}
.ya0{bottom:599.613333pt;}
.y2b{bottom:599.933333pt;}
.y80{bottom:600.413333pt;}
.ye2{bottom:601.053333pt;}
.y5d{bottom:603.293333pt;}
.y124{bottom:604.573333pt;}
.y17d{bottom:605.853333pt;}
.y163{bottom:612.573333pt;}
.yc3{bottom:613.693333pt;}
.y103{bottom:614.653333pt;}
.y49{bottom:616.093333pt;}
.y7f{bottom:621.853333pt;}
.y9f{bottom:622.173333pt;}
.ye1{bottom:622.493333pt;}
.yb{bottom:625.213333pt;}
.y123{bottom:626.173333pt;}
.y2a{bottom:628.253333pt;}
.y196{bottom:629.053333pt;}
.y5c{bottom:631.453333pt;}
.y17c{bottom:634.653333pt;}
.y162{bottom:634.973333pt;}
.yc2{bottom:635.293333pt;}
.y102{bottom:636.253333pt;}
.y143{bottom:637.053333pt;}
.y7e{bottom:643.453333pt;}
.y48{bottom:644.253333pt;}
.y9e{bottom:644.573333pt;}
.ye0{bottom:645.053333pt;}
.y122{bottom:647.773333pt;}
.y195{bottom:650.653333pt;}
.y5b{bottom:653.053333pt;}
.y161{bottom:657.533333pt;}
.y101{bottom:657.693333pt;}
.yc1{bottom:657.853333pt;}
.y142{bottom:658.653333pt;}
.ya{bottom:659.933333pt;}
.y29{bottom:660.893333pt;}
.ydf{bottom:666.653333pt;}
.y17b{bottom:669.533333pt;}
.y121{bottom:670.173333pt;}
.y7d{bottom:671.453333pt;}
.y194{bottom:672.253333pt;}
.y47{bottom:672.573333pt;}
.y9d{bottom:673.373333pt;}
.y5a{bottom:674.653333pt;}
.y160{bottom:679.133333pt;}
.yc0{bottom:679.293333pt;}
.y100{bottom:680.253333pt;}
.y141{bottom:681.053333pt;}
.yde{bottom:688.093333pt;}
.y17a{bottom:691.133333pt;}
.y120{bottom:692.733333pt;}
.y9{bottom:693.213333pt;}
.y193{bottom:693.693333pt;}
.y46{bottom:694.013333pt;}
.y59{bottom:696.253333pt;}
.y15f{bottom:700.573333pt;}
.yff{bottom:701.693333pt;}
.ybf{bottom:701.853333pt;}
.y140{bottom:703.613333pt;}
.y28{bottom:703.773333pt;}
.y7c{bottom:706.173333pt;}
.y9c{bottom:708.093333pt;}
.ydd{bottom:710.653333pt;}
.y179{bottom:712.573333pt;}
.y11f{bottom:714.333333pt;}
.y192{bottom:716.253333pt;}
.y58{bottom:717.693333pt;}
.y27{bottom:719.613333pt;}
.y45{bottom:722.333333pt;}
.y15e{bottom:723.133333pt;}
.ybe{bottom:723.293333pt;}
.yfe{bottom:724.253333pt;}
.y8{bottom:724.573333pt;}
.y13f{bottom:725.213333pt;}
.y7b{bottom:727.773333pt;}
.ydc{bottom:732.293333pt;}
.y178{bottom:735.173333pt;}
.y11e{bottom:735.813333pt;}
.y9b{bottom:736.293333pt;}
.y191{bottom:737.733333pt;}
.y57{bottom:739.333333pt;}
.y20{bottom:740.293333pt;}
.y15d{bottom:744.773333pt;}
.ybd{bottom:745.893333pt;}
.y13e{bottom:746.693333pt;}
.y44{bottom:750.533333pt;}
.ydb{bottom:753.893333pt;}
.y7a{bottom:755.813333pt;}
.y177{bottom:756.613333pt;}
.y11d{bottom:757.413333pt;}
.y9a{bottom:757.893333pt;}
.y190{bottom:760.293333pt;}
.y56{bottom:760.933333pt;}
.y15c{bottom:766.213333pt;}
.yfd{bottom:767.333333pt;}
.ybc{bottom:767.493333pt;}
.y7{bottom:768.453333pt;}
.yda{bottom:775.493333pt;}
.y13d{bottom:775.653333pt;}
.y43{bottom:778.853333pt;}
.y18f{bottom:781.733333pt;}
.y55{bottom:782.373333pt;}
.y176{bottom:785.573333pt;}
.y99{bottom:786.853333pt;}
.y15b{bottom:788.773333pt;}
.ybb{bottom:788.933333pt;}
.yfc{bottom:789.893333pt;}
.y79{bottom:790.533333pt;}
.y1aa{bottom:795.813333pt;}
.yd9{bottom:796.933333pt;}
.y11c{bottom:801.413333pt;}
.y42{bottom:807.013333pt;}
.y13c{bottom:810.373333pt;}
.y54{bottom:810.533333pt;}
.y175{bottom:810.693333pt;}
.yfb{bottom:811.333333pt;}
.y78{bottom:812.133333pt;}
.y6{bottom:812.293333pt;}
.y98{bottom:815.653333pt;}
.y1a9{bottom:817.253333pt;}
.yba{bottom:817.893333pt;}
.yd8{bottom:819.333333pt;}
.y11b{bottom:823.973333pt;}
.y13b{bottom:831.973333pt;}
.y53{bottom:832.133333pt;}
.y15a{bottom:832.773333pt;}
.y77{bottom:833.733333pt;}
.y41{bottom:835.333333pt;}
.yfa{bottom:840.293333pt;}
.yd7{bottom:841.893333pt;}
.y11a{bottom:845.413333pt;}
.yb9{bottom:852.613333pt;}
.y97{bottom:852.773333pt;}
.y13a{bottom:853.413333pt;}
.y1e{bottom:853.573333pt;}
.y52{bottom:853.733333pt;}
.y159{bottom:854.373333pt;}
.y76{bottom:855.333333pt;}
.y5{bottom:855.973333pt;}
.yd6{bottom:863.333333pt;}
.y40{bottom:863.493333pt;}
.y119{bottom:867.013333pt;}
.y96{bottom:870.213333pt;}
.yf9{bottom:875.013333pt;}
.yb8{bottom:875.173333pt;}
.y139{bottom:875.973333pt;}
.y75{bottom:876.933333pt;}
.y51{bottom:882.693333pt;}
.y118{bottom:888.613333pt;}
.y3f{bottom:891.813333pt;}
.yd5{bottom:892.293333pt;}
.yb7{bottom:896.613333pt;}
.yf8{bottom:897.573333pt;}
.y74{bottom:898.373333pt;}
.y1d{bottom:899.653333pt;}
.y4{bottom:899.813333pt;}
.yd4{bottom:917.413333pt;}
.yb6{bottom:919.013333pt;}
.y3e{bottom:919.973333pt;}
.y2{bottom:938.693333pt;}
.y1{bottom:953.920000pt;}
.hb{height:17.440000pt;}
.h4{height:20.000000pt;}
.h6{height:20.032000pt;}
.hc{height:34.720000pt;}
.hd{height:34.752000pt;}
.ha{height:35.404688pt;}
.h1{height:54.187500pt;}
.h3{height:63.399375pt;}
.he{height:65.781915pt;}
.h8{height:72.069375pt;}
.h7{height:87.156562pt;}
.h9{height:87.489947pt;}
.h5{height:112.640000pt;}
.h2{height:126.256875pt;}
.h0{height:1056.000000pt;}
.w2{width:155.360000pt;}
.w3{width:155.386667pt;}
.w4{width:212.186667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.x4{left:89.152000pt;}
.x2{left:96.031988pt;}
.x9{left:110.751988pt;}
.xe{left:120.031988pt;}
.xa{left:125.311988pt;}
.xd{left:143.226655pt;}
.x1{left:236.986655pt;}
.x6{left:245.146667pt;}
.x3{left:286.946655pt;}
.xb{left:301.986667pt;}
.x7{left:401.186667pt;}
.xc{left:514.813333pt;}
.x8{left:557.213333pt;}
}




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