
    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_ae16653d89931c6454f47be4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2f0e0e5920c90108c3eb4f2d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_9809b9a942fa8a0d2bf90367.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_6ac93150716683d23e3275b0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.937012;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_aafcc0d478f7e2b21c43b139.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_cdb103666aef421bee22caaf.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.767090;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_4dabf42399daa1e6f8966cc3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.727539;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_ab758f77610c6001257ef75c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.939941;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_c650edb2220e136e4f284242.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_267685e151def89b337cbb79.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.946777;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_7f3316d86dd014b81936840d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_9e7f09a84b6b90b20b1c237c.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_77c4deff6e01fde65a54becd.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.939941;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:fff;src:url('chunks/assets/font_ec71183e8a468b00eb2e9c51.woff2')format("woff");}.fff{font-family:fff;line-height:0.946777;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:-73.440000px;}
.v2{vertical-align:-30.240000px;}
.v4{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:27.360000px;}
.v3{vertical-align:30.240000px;}
.lsc{letter-spacing:-1.206000px;}
.lsa{letter-spacing:-1.068000px;}
.lsd{letter-spacing:-0.966000px;}
.lsb{letter-spacing:-0.768000px;}
.lse{letter-spacing:-0.732000px;}
.ls18{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.504000px;}
.ls6{letter-spacing:-0.463800px;}
.ls10{letter-spacing:-0.457800px;}
.ls5{letter-spacing:-0.454800px;}
.ls8{letter-spacing:-0.432000px;}
.ls16{letter-spacing:-0.152400px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.216000px;}
.ls12{letter-spacing:0.305400px;}
.ls4{letter-spacing:0.429000px;}
.ls1{letter-spacing:0.535680px;}
.ls0{letter-spacing:0.593280px;}
.lsf{letter-spacing:0.708000px;}
.ls2{letter-spacing:0.720000px;}
.ls11{letter-spacing:3.600000px;}
.ls19{letter-spacing:6.600000px;}
.ls15{letter-spacing:49.265280px;}
.ls14{letter-spacing:68.129280px;}
.ls13{letter-spacing:193.836000px;}
.ls17{letter-spacing:195.276000px;}
.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;}
}
.ws7{word-spacing:-16.560000px;}
.ws4{word-spacing:-16.488000px;}
.ws13{word-spacing:-16.407600px;}
.ws5{word-spacing:-15.840000px;}
.ws6{word-spacing:-15.768000px;}
.ws0{word-spacing:-15.399240px;}
.wsf{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.515440px;}
.ws2{word-spacing:-14.506440px;}
.ws11{word-spacing:-13.680000px;}
.wse{word-spacing:-13.074720px;}
.wsd{word-spacing:-12.366720px;}
.wsc{word-spacing:-11.634720px;}
.ws9{word-spacing:-11.598720px;}
.wsb{word-spacing:-11.400720px;}
.ws8{word-spacing:-11.298720px;}
.wsa{word-spacing:-11.160720px;}
.ws12{word-spacing:-10.440000px;}
.ws10{word-spacing:0.000000px;}
.ws3{word-spacing:23.480640px;}
._14{margin-left:-9.630720px;}
._7{margin-left:-3.628800px;}
._1{margin-left:-2.612400px;}
._0{margin-left:-1.483200px;}
._3{width:1.123200px;}
._6{width:2.476800px;}
._8{width:3.603840px;}
._b{width:4.728720px;}
._e{width:5.938080px;}
._a{width:7.087920px;}
._9{width:8.280000px;}
._f{width:10.134720px;}
._10{width:11.664480px;}
._2{width:12.827520px;}
._12{width:13.980000px;}
._11{width:15.307920px;}
._c{width:17.712000px;}
._d{width:18.760800px;}
._4{width:25.223040px;}
._5{width:27.190080px;}
._15{width:29.929440px;}
._13{width:195.276000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(192,0,0);}
.fc4{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:30.240000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:47.520000px;}
.fs3{font-size:54.720000px;}
.fs1{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.yd1{bottom:3.600000px;}
.y2f{bottom:4.320000px;}
.y4{bottom:4.680000px;}
.y143{bottom:5.040000px;}
.y112{bottom:5.400000px;}
.y2e{bottom:19.080000px;}
.yfc{bottom:23.400000px;}
.y97{bottom:44.640000px;}
.y64{bottom:45.720000px;}
.y123{bottom:47.880000px;}
.y2{bottom:57.240000px;}
.ycb{bottom:57.960000px;}
.y1{bottom:76.320000px;}
.y141{bottom:88.236000px;}
.y63{bottom:110.196000px;}
.y140{bottom:110.916000px;}
.yca{bottom:115.596000px;}
.y95{bottom:120.636000px;}
.y122{bottom:123.156000px;}
.y2d{bottom:125.676000px;}
.y62{bottom:129.276000px;}
.y13f{bottom:132.516000px;}
.yc9{bottom:134.316000px;}
.yf8{bottom:136.836000px;}
.y94{bottom:139.716000px;}
.y121{bottom:142.236000px;}
.y2c{bottom:145.116000px;}
.y61{bottom:148.356000px;}
.yc8{bottom:153.390000px;}
.y13e{bottom:154.470000px;}
.yf7{bottom:156.270000px;}
.y93{bottom:158.430000px;}
.y120{bottom:161.310000px;}
.y2b{bottom:164.190000px;}
.y60{bottom:167.430000px;}
.yc7{bottom:172.470000px;}
.yf6{bottom:176.070000px;}
.y92{bottom:177.510000px;}
.y11f{bottom:180.030000px;}
.y16c{bottom:181.830000px;}
.y2a{bottom:182.910000px;}
.y5f{bottom:186.150000px;}
.yc6{bottom:191.550000px;}
.yf5{bottom:195.870000px;}
.y91{bottom:196.590000px;}
.y13d{bottom:198.030000px;}
.y11e{bottom:199.110000px;}
.y16b{bottom:200.910000px;}
.y29{bottom:201.990000px;}
.y5e{bottom:205.275000px;}
.yc5{bottom:210.315000px;}
.y90{bottom:215.355000px;}
.yf4{bottom:215.715000px;}
.y11d{bottom:218.235000px;}
.y16a{bottom:219.675000px;}
.y13c{bottom:220.035000px;}
.y28{bottom:221.115000px;}
.y5d{bottom:224.355000px;}
.yc4{bottom:229.395000px;}
.y8f{bottom:234.435000px;}
.yf3{bottom:235.515000px;}
.y11c{bottom:237.315000px;}
.y169{bottom:238.755000px;}
.y13b{bottom:239.115000px;}
.y27{bottom:239.835000px;}
.y5c{bottom:243.075000px;}
.yc3{bottom:248.475000px;}
.y8e{bottom:253.515000px;}
.y13a{bottom:254.955000px;}
.y11b{bottom:256.035000px;}
.y168{bottom:257.835000px;}
.yf2{bottom:258.555000px;}
.y26{bottom:258.915000px;}
.y5b{bottom:262.155000px;}
.yc2{bottom:267.195000px;}
.y8d{bottom:272.235000px;}
.y139{bottom:274.755000px;}
.y11a{bottom:275.115000px;}
.y167{bottom:276.915000px;}
.yf1{bottom:277.635000px;}
.y25{bottom:277.995000px;}
.y5a{bottom:281.235000px;}
.yc1{bottom:286.275000px;}
.y8c{bottom:291.315000px;}
.y119{bottom:294.195000px;}
.y138{bottom:294.555000px;}
.y166{bottom:295.635000px;}
.yf0{bottom:296.715000px;}
.y24{bottom:297.075000px;}
.y59{bottom:299.955000px;}
.yc0{bottom:305.355000px;}
.y8b{bottom:310.395000px;}
.y118{bottom:312.915000px;}
.y165{bottom:314.715000px;}
.y137{bottom:315.075000px;}
.yef{bottom:315.435000px;}
.y23{bottom:315.795000px;}
.y58{bottom:319.035000px;}
.ybf{bottom:324.105000px;}
.y8a{bottom:329.505000px;}
.y117{bottom:332.025000px;}
.y164{bottom:333.825000px;}
.yee{bottom:334.545000px;}
.y22{bottom:334.905000px;}
.y57{bottom:338.145000px;}
.ybe{bottom:343.185000px;}
.y89{bottom:348.225000px;}
.y116{bottom:351.105000px;}
.y163{bottom:352.545000px;}
.yed{bottom:353.625000px;}
.y21{bottom:353.985000px;}
.y136{bottom:354.345000px;}
.y56{bottom:357.225000px;}
.ybd{bottom:362.265000px;}
.y88{bottom:367.305000px;}
.y115{bottom:369.825000px;}
.y162{bottom:371.625000px;}
.y20{bottom:372.705000px;}
.y55{bottom:375.945000px;}
.y135{bottom:377.745000px;}
.ybc{bottom:381.345000px;}
.y87{bottom:386.385000px;}
.y114{bottom:388.905000px;}
.y161{bottom:390.705000px;}
.yec{bottom:391.425000px;}
.y1f{bottom:391.785000px;}
.y54{bottom:395.025000px;}
.y134{bottom:396.825000px;}
.ybb{bottom:400.065000px;}
.y86{bottom:405.105000px;}
.y160{bottom:409.785000px;}
.yeb{bottom:410.505000px;}
.y1e{bottom:411.585000px;}
.y53{bottom:414.105000px;}
.y133{bottom:415.905000px;}
.yba{bottom:419.145000px;}
.y85{bottom:424.185000px;}
.y113{bottom:424.905000px;}
.y15f{bottom:428.505000px;}
.yea{bottom:429.585000px;}
.y1d{bottom:431.025000px;}
.y52{bottom:432.825000px;}
.y132{bottom:434.625000px;}
.yb9{bottom:438.270000px;}
.y84{bottom:443.310000px;}
.y111{bottom:444.750000px;}
.y15e{bottom:447.630000px;}
.ye9{bottom:448.350000px;}
.y51{bottom:451.950000px;}
.y131{bottom:453.750000px;}
.y1c{bottom:457.350000px;}
.yb8{bottom:458.790000px;}
.y83{bottom:462.390000px;}
.ye8{bottom:464.550000px;}
.y110{bottom:465.990000px;}
.y15d{bottom:466.710000px;}
.y50{bottom:471.030000px;}
.y130{bottom:472.830000px;}
.y1b{bottom:475.710000px;}
.yb7{bottom:477.870000px;}
.y82{bottom:481.110000px;}
.ye7{bottom:484.350000px;}
.y15c{bottom:485.430000px;}
.y10f{bottom:485.790000px;}
.y4f{bottom:489.750000px;}
.y12f{bottom:491.550000px;}
.y1a{bottom:494.790000px;}
.yb6{bottom:496.950000px;}
.y81{bottom:500.190000px;}
.ye6{bottom:504.150000px;}
.y15b{bottom:504.510000px;}
.y10e{bottom:505.590000px;}
.y4e{bottom:508.830000px;}
.y12e{bottom:510.630000px;}
.y19{bottom:513.870000px;}
.yb5{bottom:515.670000px;}
.y80{bottom:519.270000px;}
.y15a{bottom:523.590000px;}
.ye5{bottom:523.950000px;}
.y4d{bottom:527.910000px;}
.y10d{bottom:528.990000px;}
.y12d{bottom:529.710000px;}
.y18{bottom:532.590000px;}
.yb4{bottom:534.750000px;}
.y7f{bottom:537.990000px;}
.y159{bottom:542.310000px;}
.ye4{bottom:543.390000px;}
.y4c{bottom:546.990000px;}
.y10c{bottom:547.710000px;}
.y12c{bottom:548.430000px;}
.y17{bottom:551.670000px;}
.yb3{bottom:553.860000px;}
.y7e{bottom:557.100000px;}
.y158{bottom:561.420000px;}
.ye3{bottom:563.220000px;}
.y16{bottom:564.300000px;}
.y4b{bottom:565.740000px;}
.y10b{bottom:566.820000px;}
.y12b{bottom:567.540000px;}
.yb2{bottom:572.580000px;}
.y157{bottom:583.020000px;}
.y4a{bottom:584.820000px;}
.y10a{bottom:585.900000px;}
.ye2{bottom:586.620000px;}
.y7d{bottom:588.060000px;}
.yb1{bottom:591.660000px;}
.y15{bottom:592.020000px;}
.y49{bottom:603.900000px;}
.y109{bottom:604.980000px;}
.ye1{bottom:605.700000px;}
.y7c{bottom:607.140000px;}
.yb0{bottom:610.740000px;}
.y14{bottom:612.900000px;}
.y48{bottom:622.620000px;}
.y108{bottom:623.700000px;}
.y13{bottom:624.060000px;}
.ye0{bottom:624.420000px;}
.y7b{bottom:625.860000px;}
.yaf{bottom:629.460000px;}
.y12a{bottom:640.620000px;}
.y47{bottom:641.700000px;}
.y107{bottom:642.780000px;}
.y156{bottom:643.140000px;}
.ydf{bottom:643.500000px;}
.y7a{bottom:644.940000px;}
.yae{bottom:648.540000px;}
.y12{bottom:650.700000px;}
.y129{bottom:660.420000px;}
.y46{bottom:660.780000px;}
.y106{bottom:661.860000px;}
.y11{bottom:662.220000px;}
.yde{bottom:662.580000px;}
.y79{bottom:664.020000px;}
.yad{bottom:667.620000px;}
.y45{bottom:679.890000px;}
.y128{bottom:680.250000px;}
.y105{bottom:680.610000px;}
.y155{bottom:680.970000px;}
.y10{bottom:681.330000px;}
.y78{bottom:683.130000px;}
.yac{bottom:686.730000px;}
.y44{bottom:698.610000px;}
.y104{bottom:699.690000px;}
.y154{bottom:700.050000px;}
.ydd{bottom:700.410000px;}
.y77{bottom:701.850000px;}
.yf{bottom:704.010000px;}
.yab{bottom:705.450000px;}
.y43{bottom:717.690000px;}
.y103{bottom:718.770000px;}
.y153{bottom:719.130000px;}
.ydc{bottom:719.490000px;}
.y76{bottom:720.930000px;}
.yaa{bottom:724.530000px;}
.ye{bottom:729.570000px;}
.y102{bottom:734.970000px;}
.y42{bottom:736.770000px;}
.y152{bottom:737.850000px;}
.ydb{bottom:738.570000px;}
.y127{bottom:739.290000px;}
.y75{bottom:740.010000px;}
.ya9{bottom:743.610000px;}
.y101{bottom:754.410000px;}
.yd{bottom:755.130000px;}
.y41{bottom:755.490000px;}
.y151{bottom:756.930000px;}
.yda{bottom:757.290000px;}
.y74{bottom:758.730000px;}
.ya8{bottom:762.330000px;}
.y126{bottom:762.690000px;}
.y100{bottom:774.210000px;}
.y40{bottom:774.570000px;}
.y150{bottom:776.010000px;}
.yd9{bottom:776.370000px;}
.y73{bottom:777.810000px;}
.yc{bottom:779.250000px;}
.ya7{bottom:781.410000px;}
.y125{bottom:781.770000px;}
.y3f{bottom:793.695000px;}
.yff{bottom:794.055000px;}
.y14f{bottom:794.775000px;}
.yd8{bottom:795.495000px;}
.y72{bottom:796.935000px;}
.ya6{bottom:800.535000px;}
.yb{bottom:810.615000px;}
.y3e{bottom:812.415000px;}
.yfe{bottom:813.855000px;}
.yd7{bottom:814.215000px;}
.y71{bottom:816.015000px;}
.ya5{bottom:819.615000px;}
.yd6{bottom:830.415000px;}
.y3d{bottom:831.495000px;}
.y14e{bottom:832.935000px;}
.yfb{bottom:833.295000px;}
.y70{bottom:834.735000px;}
.ya4{bottom:838.335000px;}
.y124{bottom:838.695000px;}
.yd5{bottom:850.215000px;}
.y3c{bottom:850.575000px;}
.y14d{bottom:852.015000px;}
.yfd{bottom:853.095000px;}
.y6f{bottom:853.815000px;}
.ya3{bottom:857.415000px;}
.y3b{bottom:869.655000px;}
.yd4{bottom:870.015000px;}
.y14c{bottom:870.735000px;}
.ya{bottom:871.095000px;}
.y6e{bottom:872.895000px;}
.ya2{bottom:876.495000px;}
.y9{bottom:882.255000px;}
.y3a{bottom:888.375000px;}
.yd3{bottom:889.815000px;}
.y6d{bottom:891.615000px;}
.ya1{bottom:895.215000px;}
.yfa{bottom:895.575000px;}
.y39{bottom:907.485000px;}
.y8{bottom:908.205000px;}
.y14b{bottom:908.925000px;}
.yd2{bottom:909.285000px;}
.y6c{bottom:910.725000px;}
.ya0{bottom:914.325000px;}
.y38{bottom:926.925000px;}
.y14a{bottom:927.645000px;}
.yd0{bottom:929.085000px;}
.y7{bottom:931.605000px;}
.y9f{bottom:933.405000px;}
.y37{bottom:945.645000px;}
.y149{bottom:946.725000px;}
.y6b{bottom:950.685000px;}
.y9e{bottom:952.125000px;}
.ycf{bottom:952.485000px;}
.y6{bottom:953.565000px;}
.y36{bottom:965.085000px;}
.y148{bottom:965.805000px;}
.y6a{bottom:969.765000px;}
.y9d{bottom:971.205000px;}
.yce{bottom:971.565000px;}
.y5{bottom:972.285000px;}
.y147{bottom:984.525000px;}
.y35{bottom:985.245000px;}
.y69{bottom:988.485000px;}
.y9c{bottom:990.285000px;}
.y146{bottom:1003.605000px;}
.y34{bottom:1005.405000px;}
.y68{bottom:1007.565000px;}
.y9b{bottom:1009.365000px;}
.y145{bottom:1022.730000px;}
.y33{bottom:1025.610000px;}
.y67{bottom:1026.690000px;}
.y9a{bottom:1028.130000px;}
.ycd{bottom:1028.490000px;}
.y144{bottom:1044.330000px;}
.y32{bottom:1045.770000px;}
.y99{bottom:1047.210000px;}
.y66{bottom:1064.850000px;}
.y31{bottom:1065.930000px;}
.y98{bottom:1066.290000px;}
.y3{bottom:1094.010000px;}
.y30{bottom:1097.610000px;}
.yf9{bottom:1104.090000px;}
.y65{bottom:1106.970000px;}
.y142{bottom:1107.330000px;}
.ycc{bottom:1108.410000px;}
.y96{bottom:1109.130000px;}
.h12{height:18.000000px;}
.h19{height:18.720000px;}
.h18{height:18.756000px;}
.h17{height:19.080000px;}
.h1a{height:19.116000px;}
.h2{height:19.440000px;}
.h1d{height:19.800000px;}
.h1c{height:20.520000px;}
.h8{height:22.960547px;}
.hd{height:30.239297px;}
.h11{height:36.641953px;}
.h1b{height:38.880000px;}
.h7{height:41.547656px;}
.hf{height:41.696016px;}
.h9{height:45.921094px;}
.hc{height:47.965781px;}
.h13{height:48.013594px;}
.h14{height:48.224531px;}
.hb{height:51.539062px;}
.h16{height:52.417969px;}
.h4{height:53.067656px;}
.h1{height:58.121719px;}
.he{height:60.479297px;}
.h10{height:63.175781px;}
.h15{height:64.001953px;}
.h6{height:65.884219px;}
.h3{height:67.824844px;}
.h5{height:73.722656px;}
.ha{height:85.518281px;}
.h0{height:1188.000000px;}
.wf{width:40.356000px;}
.w17{width:41.760000px;}
.w13{width:43.200000px;}
.wc{width:46.080000px;}
.wb{width:48.276000px;}
.w12{width:52.596000px;}
.w1e{width:61.596000px;}
.w1c{width:63.000000px;}
.w9{width:63.036000px;}
.w15{width:63.756000px;}
.w22{width:72.036000px;}
.w16{width:73.116000px;}
.wa{width:73.476000px;}
.w1a{width:73.800000px;}
.w7{width:73.836000px;}
.w1f{width:76.716000px;}
.w10{width:84.276000px;}
.w21{width:84.636000px;}
.w20{width:93.276000px;}
.w19{width:95.076000px;}
.w1b{width:97.632000px;}
.w14{width:105.516000px;}
.w8{width:108.396000px;}
.w5{width:137.196000px;}
.w3{width:142.992000px;}
.wd{width:147.996000px;}
.w11{width:149.796000px;}
.we{width:160.275000px;}
.w1d{width:221.145000px;}
.w6{width:233.385000px;}
.w18{width:265.425000px;}
.w4{width:558.930000px;}
.w2{width:559.290000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:1.440000px;}
.x16{left:7.560000px;}
.x2{left:106.235986px;}
.xb{left:111.995986px;}
.xd{left:113.796000px;}
.xe{left:116.315986px;}
.x14{left:132.911986px;}
.x1d{left:147.312000px;}
.x13{left:148.751986px;}
.x24{left:157.755000px;}
.x10{left:159.194986px;}
.xf{left:160.274986px;}
.x15{left:168.555000px;}
.x12{left:169.994986px;}
.x3{left:171.435000px;}
.x11{left:175.755000px;}
.x2f{left:191.234986px;}
.xc{left:279.824986px;}
.x8{left:294.944986px;}
.x1e{left:296.025000px;}
.x17{left:306.465000px;}
.x22{left:359.790000px;}
.x7{left:362.669986px;}
.x1a{left:370.590000px;}
.x2d{left:391.830000px;}
.x6{left:397.229986px;}
.x23{left:413.100000px;}
.x27{left:423.540000px;}
.x1b{left:444.780000px;}
.x2e{left:455.580000px;}
.x1f{left:457.020000px;}
.x9{left:459.179986px;}
.xa{left:486.179986px;}
.x1c{left:493.770000px;}
.x20{left:498.090000px;}
.x29{left:508.890000px;}
.x2a{left:528.330000px;}
.x18{left:540.570000px;}
.x25{left:572.610000px;}
.x21{left:583.095000px;}
.x2b{left:590.655000px;}
.x19{left:615.135000px;}
.x26{left:636.375000px;}
.x28{left:657.615000px;}
.x5{left:659.414986px;}
.x2c{left:668.085000px;}
.x1{left:779.009986px;}
@media print{
.v1{vertical-align:-65.280000pt;}
.v2{vertical-align:-26.880000pt;}
.v4{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:24.320000pt;}
.v3{vertical-align:26.880000pt;}
.lsc{letter-spacing:-1.072000pt;}
.lsa{letter-spacing:-0.949333pt;}
.lsd{letter-spacing:-0.858667pt;}
.lsb{letter-spacing:-0.682667pt;}
.lse{letter-spacing:-0.650667pt;}
.ls18{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.448000pt;}
.ls6{letter-spacing:-0.412267pt;}
.ls10{letter-spacing:-0.406933pt;}
.ls5{letter-spacing:-0.404267pt;}
.ls8{letter-spacing:-0.384000pt;}
.ls16{letter-spacing:-0.135467pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.192000pt;}
.ls12{letter-spacing:0.271467pt;}
.ls4{letter-spacing:0.381333pt;}
.ls1{letter-spacing:0.476160pt;}
.ls0{letter-spacing:0.527360pt;}
.lsf{letter-spacing:0.629333pt;}
.ls2{letter-spacing:0.640000pt;}
.ls11{letter-spacing:3.200000pt;}
.ls19{letter-spacing:5.866667pt;}
.ls15{letter-spacing:43.791360pt;}
.ls14{letter-spacing:60.559360pt;}
.ls13{letter-spacing:172.298667pt;}
.ls17{letter-spacing:173.578667pt;}
.ws7{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.656000pt;}
.ws13{word-spacing:-14.584533pt;}
.ws5{word-spacing:-14.080000pt;}
.ws6{word-spacing:-14.016000pt;}
.ws0{word-spacing:-13.688213pt;}
.wsf{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.902613pt;}
.ws2{word-spacing:-12.894613pt;}
.ws11{word-spacing:-12.160000pt;}
.wse{word-spacing:-11.621973pt;}
.wsd{word-spacing:-10.992640pt;}
.wsc{word-spacing:-10.341973pt;}
.ws9{word-spacing:-10.309973pt;}
.wsb{word-spacing:-10.133973pt;}
.ws8{word-spacing:-10.043307pt;}
.wsa{word-spacing:-9.920640pt;}
.ws12{word-spacing:-9.280000pt;}
.ws10{word-spacing:0.000000pt;}
.ws3{word-spacing:20.871680pt;}
._14{margin-left:-8.560640pt;}
._7{margin-left:-3.225600pt;}
._1{margin-left:-2.322133pt;}
._0{margin-left:-1.318400pt;}
._3{width:0.998400pt;}
._6{width:2.201600pt;}
._8{width:3.203413pt;}
._b{width:4.203307pt;}
._e{width:5.278293pt;}
._a{width:6.300373pt;}
._9{width:7.360000pt;}
._f{width:9.008640pt;}
._10{width:10.368427pt;}
._2{width:11.402240pt;}
._12{width:12.426667pt;}
._11{width:13.607040pt;}
._c{width:15.744000pt;}
._d{width:16.676267pt;}
._4{width:22.420480pt;}
._5{width:24.168960pt;}
._15{width:26.603947pt;}
._13{width:173.578667pt;}
.fs4{font-size:26.880000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:42.240000pt;}
.fs3{font-size:48.640000pt;}
.fs1{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.yd1{bottom:3.200000pt;}
.y2f{bottom:3.840000pt;}
.y4{bottom:4.160000pt;}
.y143{bottom:4.480000pt;}
.y112{bottom:4.800000pt;}
.y2e{bottom:16.960000pt;}
.yfc{bottom:20.800000pt;}
.y97{bottom:39.680000pt;}
.y64{bottom:40.640000pt;}
.y123{bottom:42.560000pt;}
.y2{bottom:50.880000pt;}
.ycb{bottom:51.520000pt;}
.y1{bottom:67.840000pt;}
.y141{bottom:78.432000pt;}
.y63{bottom:97.952000pt;}
.y140{bottom:98.592000pt;}
.yca{bottom:102.752000pt;}
.y95{bottom:107.232000pt;}
.y122{bottom:109.472000pt;}
.y2d{bottom:111.712000pt;}
.y62{bottom:114.912000pt;}
.y13f{bottom:117.792000pt;}
.yc9{bottom:119.392000pt;}
.yf8{bottom:121.632000pt;}
.y94{bottom:124.192000pt;}
.y121{bottom:126.432000pt;}
.y2c{bottom:128.992000pt;}
.y61{bottom:131.872000pt;}
.yc8{bottom:136.346667pt;}
.y13e{bottom:137.306667pt;}
.yf7{bottom:138.906667pt;}
.y93{bottom:140.826667pt;}
.y120{bottom:143.386667pt;}
.y2b{bottom:145.946667pt;}
.y60{bottom:148.826667pt;}
.yc7{bottom:153.306667pt;}
.yf6{bottom:156.506667pt;}
.y92{bottom:157.786667pt;}
.y11f{bottom:160.026667pt;}
.y16c{bottom:161.626667pt;}
.y2a{bottom:162.586667pt;}
.y5f{bottom:165.466667pt;}
.yc6{bottom:170.266667pt;}
.yf5{bottom:174.106667pt;}
.y91{bottom:174.746667pt;}
.y13d{bottom:176.026667pt;}
.y11e{bottom:176.986667pt;}
.y16b{bottom:178.586667pt;}
.y29{bottom:179.546667pt;}
.y5e{bottom:182.466667pt;}
.yc5{bottom:186.946667pt;}
.y90{bottom:191.426667pt;}
.yf4{bottom:191.746667pt;}
.y11d{bottom:193.986667pt;}
.y16a{bottom:195.266667pt;}
.y13c{bottom:195.586667pt;}
.y28{bottom:196.546667pt;}
.y5d{bottom:199.426667pt;}
.yc4{bottom:203.906667pt;}
.y8f{bottom:208.386667pt;}
.yf3{bottom:209.346667pt;}
.y11c{bottom:210.946667pt;}
.y169{bottom:212.226667pt;}
.y13b{bottom:212.546667pt;}
.y27{bottom:213.186667pt;}
.y5c{bottom:216.066667pt;}
.yc3{bottom:220.866667pt;}
.y8e{bottom:225.346667pt;}
.y13a{bottom:226.626667pt;}
.y11b{bottom:227.586667pt;}
.y168{bottom:229.186667pt;}
.yf2{bottom:229.826667pt;}
.y26{bottom:230.146667pt;}
.y5b{bottom:233.026667pt;}
.yc2{bottom:237.506667pt;}
.y8d{bottom:241.986667pt;}
.y139{bottom:244.226667pt;}
.y11a{bottom:244.546667pt;}
.y167{bottom:246.146667pt;}
.yf1{bottom:246.786667pt;}
.y25{bottom:247.106667pt;}
.y5a{bottom:249.986667pt;}
.yc1{bottom:254.466667pt;}
.y8c{bottom:258.946667pt;}
.y119{bottom:261.506667pt;}
.y138{bottom:261.826667pt;}
.y166{bottom:262.786667pt;}
.yf0{bottom:263.746667pt;}
.y24{bottom:264.066667pt;}
.y59{bottom:266.626667pt;}
.yc0{bottom:271.426667pt;}
.y8b{bottom:275.906667pt;}
.y118{bottom:278.146667pt;}
.y165{bottom:279.746667pt;}
.y137{bottom:280.066667pt;}
.yef{bottom:280.386667pt;}
.y23{bottom:280.706667pt;}
.y58{bottom:283.586667pt;}
.ybf{bottom:288.093333pt;}
.y8a{bottom:292.893333pt;}
.y117{bottom:295.133333pt;}
.y164{bottom:296.733333pt;}
.yee{bottom:297.373333pt;}
.y22{bottom:297.693333pt;}
.y57{bottom:300.573333pt;}
.ybe{bottom:305.053333pt;}
.y89{bottom:309.533333pt;}
.y116{bottom:312.093333pt;}
.y163{bottom:313.373333pt;}
.yed{bottom:314.333333pt;}
.y21{bottom:314.653333pt;}
.y136{bottom:314.973333pt;}
.y56{bottom:317.533333pt;}
.ybd{bottom:322.013333pt;}
.y88{bottom:326.493333pt;}
.y115{bottom:328.733333pt;}
.y162{bottom:330.333333pt;}
.y20{bottom:331.293333pt;}
.y55{bottom:334.173333pt;}
.y135{bottom:335.773333pt;}
.ybc{bottom:338.973333pt;}
.y87{bottom:343.453333pt;}
.y114{bottom:345.693333pt;}
.y161{bottom:347.293333pt;}
.yec{bottom:347.933333pt;}
.y1f{bottom:348.253333pt;}
.y54{bottom:351.133333pt;}
.y134{bottom:352.733333pt;}
.ybb{bottom:355.613333pt;}
.y86{bottom:360.093333pt;}
.y160{bottom:364.253333pt;}
.yeb{bottom:364.893333pt;}
.y1e{bottom:365.853333pt;}
.y53{bottom:368.093333pt;}
.y133{bottom:369.693333pt;}
.yba{bottom:372.573333pt;}
.y85{bottom:377.053333pt;}
.y113{bottom:377.693333pt;}
.y15f{bottom:380.893333pt;}
.yea{bottom:381.853333pt;}
.y1d{bottom:383.133333pt;}
.y52{bottom:384.733333pt;}
.y132{bottom:386.333333pt;}
.yb9{bottom:389.573333pt;}
.y84{bottom:394.053333pt;}
.y111{bottom:395.333333pt;}
.y15e{bottom:397.893333pt;}
.ye9{bottom:398.533333pt;}
.y51{bottom:401.733333pt;}
.y131{bottom:403.333333pt;}
.y1c{bottom:406.533333pt;}
.yb8{bottom:407.813333pt;}
.y83{bottom:411.013333pt;}
.ye8{bottom:412.933333pt;}
.y110{bottom:414.213333pt;}
.y15d{bottom:414.853333pt;}
.y50{bottom:418.693333pt;}
.y130{bottom:420.293333pt;}
.y1b{bottom:422.853333pt;}
.yb7{bottom:424.773333pt;}
.y82{bottom:427.653333pt;}
.ye7{bottom:430.533333pt;}
.y15c{bottom:431.493333pt;}
.y10f{bottom:431.813333pt;}
.y4f{bottom:435.333333pt;}
.y12f{bottom:436.933333pt;}
.y1a{bottom:439.813333pt;}
.yb6{bottom:441.733333pt;}
.y81{bottom:444.613333pt;}
.ye6{bottom:448.133333pt;}
.y15b{bottom:448.453333pt;}
.y10e{bottom:449.413333pt;}
.y4e{bottom:452.293333pt;}
.y12e{bottom:453.893333pt;}
.y19{bottom:456.773333pt;}
.yb5{bottom:458.373333pt;}
.y80{bottom:461.573333pt;}
.y15a{bottom:465.413333pt;}
.ye5{bottom:465.733333pt;}
.y4d{bottom:469.253333pt;}
.y10d{bottom:470.213333pt;}
.y12d{bottom:470.853333pt;}
.y18{bottom:473.413333pt;}
.yb4{bottom:475.333333pt;}
.y7f{bottom:478.213333pt;}
.y159{bottom:482.053333pt;}
.ye4{bottom:483.013333pt;}
.y4c{bottom:486.213333pt;}
.y10c{bottom:486.853333pt;}
.y12c{bottom:487.493333pt;}
.y17{bottom:490.373333pt;}
.yb3{bottom:492.320000pt;}
.y7e{bottom:495.200000pt;}
.y158{bottom:499.040000pt;}
.ye3{bottom:500.640000pt;}
.y16{bottom:501.600000pt;}
.y4b{bottom:502.880000pt;}
.y10b{bottom:503.840000pt;}
.y12b{bottom:504.480000pt;}
.yb2{bottom:508.960000pt;}
.y157{bottom:518.240000pt;}
.y4a{bottom:519.840000pt;}
.y10a{bottom:520.800000pt;}
.ye2{bottom:521.440000pt;}
.y7d{bottom:522.720000pt;}
.yb1{bottom:525.920000pt;}
.y15{bottom:526.240000pt;}
.y49{bottom:536.800000pt;}
.y109{bottom:537.760000pt;}
.ye1{bottom:538.400000pt;}
.y7c{bottom:539.680000pt;}
.yb0{bottom:542.880000pt;}
.y14{bottom:544.800000pt;}
.y48{bottom:553.440000pt;}
.y108{bottom:554.400000pt;}
.y13{bottom:554.720000pt;}
.ye0{bottom:555.040000pt;}
.y7b{bottom:556.320000pt;}
.yaf{bottom:559.520000pt;}
.y12a{bottom:569.440000pt;}
.y47{bottom:570.400000pt;}
.y107{bottom:571.360000pt;}
.y156{bottom:571.680000pt;}
.ydf{bottom:572.000000pt;}
.y7a{bottom:573.280000pt;}
.yae{bottom:576.480000pt;}
.y12{bottom:578.400000pt;}
.y129{bottom:587.040000pt;}
.y46{bottom:587.360000pt;}
.y106{bottom:588.320000pt;}
.y11{bottom:588.640000pt;}
.yde{bottom:588.960000pt;}
.y79{bottom:590.240000pt;}
.yad{bottom:593.440000pt;}
.y45{bottom:604.346667pt;}
.y128{bottom:604.666667pt;}
.y105{bottom:604.986667pt;}
.y155{bottom:605.306667pt;}
.y10{bottom:605.626667pt;}
.y78{bottom:607.226667pt;}
.yac{bottom:610.426667pt;}
.y44{bottom:620.986667pt;}
.y104{bottom:621.946667pt;}
.y154{bottom:622.266667pt;}
.ydd{bottom:622.586667pt;}
.y77{bottom:623.866667pt;}
.yf{bottom:625.786667pt;}
.yab{bottom:627.066667pt;}
.y43{bottom:637.946667pt;}
.y103{bottom:638.906667pt;}
.y153{bottom:639.226667pt;}
.ydc{bottom:639.546667pt;}
.y76{bottom:640.826667pt;}
.yaa{bottom:644.026667pt;}
.ye{bottom:648.506667pt;}
.y102{bottom:653.306667pt;}
.y42{bottom:654.906667pt;}
.y152{bottom:655.866667pt;}
.ydb{bottom:656.506667pt;}
.y127{bottom:657.146667pt;}
.y75{bottom:657.786667pt;}
.ya9{bottom:660.986667pt;}
.y101{bottom:670.586667pt;}
.yd{bottom:671.226667pt;}
.y41{bottom:671.546667pt;}
.y151{bottom:672.826667pt;}
.yda{bottom:673.146667pt;}
.y74{bottom:674.426667pt;}
.ya8{bottom:677.626667pt;}
.y126{bottom:677.946667pt;}
.y100{bottom:688.186667pt;}
.y40{bottom:688.506667pt;}
.y150{bottom:689.786667pt;}
.yd9{bottom:690.106667pt;}
.y73{bottom:691.386667pt;}
.yc{bottom:692.666667pt;}
.ya7{bottom:694.586667pt;}
.y125{bottom:694.906667pt;}
.y3f{bottom:705.506667pt;}
.yff{bottom:705.826667pt;}
.y14f{bottom:706.466667pt;}
.yd8{bottom:707.106667pt;}
.y72{bottom:708.386667pt;}
.ya6{bottom:711.586667pt;}
.yb{bottom:720.546667pt;}
.y3e{bottom:722.146667pt;}
.yfe{bottom:723.426667pt;}
.yd7{bottom:723.746667pt;}
.y71{bottom:725.346667pt;}
.ya5{bottom:728.546667pt;}
.yd6{bottom:738.146667pt;}
.y3d{bottom:739.106667pt;}
.y14e{bottom:740.386667pt;}
.yfb{bottom:740.706667pt;}
.y70{bottom:741.986667pt;}
.ya4{bottom:745.186667pt;}
.y124{bottom:745.506667pt;}
.yd5{bottom:755.746667pt;}
.y3c{bottom:756.066667pt;}
.y14d{bottom:757.346667pt;}
.yfd{bottom:758.306667pt;}
.y6f{bottom:758.946667pt;}
.ya3{bottom:762.146667pt;}
.y3b{bottom:773.026667pt;}
.yd4{bottom:773.346667pt;}
.y14c{bottom:773.986667pt;}
.ya{bottom:774.306667pt;}
.y6e{bottom:775.906667pt;}
.ya2{bottom:779.106667pt;}
.y9{bottom:784.226667pt;}
.y3a{bottom:789.666667pt;}
.yd3{bottom:790.946667pt;}
.y6d{bottom:792.546667pt;}
.ya1{bottom:795.746667pt;}
.yfa{bottom:796.066667pt;}
.y39{bottom:806.653333pt;}
.y8{bottom:807.293333pt;}
.y14b{bottom:807.933333pt;}
.yd2{bottom:808.253333pt;}
.y6c{bottom:809.533333pt;}
.ya0{bottom:812.733333pt;}
.y38{bottom:823.933333pt;}
.y14a{bottom:824.573333pt;}
.yd0{bottom:825.853333pt;}
.y7{bottom:828.093333pt;}
.y9f{bottom:829.693333pt;}
.y37{bottom:840.573333pt;}
.y149{bottom:841.533333pt;}
.y6b{bottom:845.053333pt;}
.y9e{bottom:846.333333pt;}
.ycf{bottom:846.653333pt;}
.y6{bottom:847.613333pt;}
.y36{bottom:857.853333pt;}
.y148{bottom:858.493333pt;}
.y6a{bottom:862.013333pt;}
.y9d{bottom:863.293333pt;}
.yce{bottom:863.613333pt;}
.y5{bottom:864.253333pt;}
.y147{bottom:875.133333pt;}
.y35{bottom:875.773333pt;}
.y69{bottom:878.653333pt;}
.y9c{bottom:880.253333pt;}
.y146{bottom:892.093333pt;}
.y34{bottom:893.693333pt;}
.y68{bottom:895.613333pt;}
.y9b{bottom:897.213333pt;}
.y145{bottom:909.093333pt;}
.y33{bottom:911.653333pt;}
.y67{bottom:912.613333pt;}
.y9a{bottom:913.893333pt;}
.ycd{bottom:914.213333pt;}
.y144{bottom:928.293333pt;}
.y32{bottom:929.573333pt;}
.y99{bottom:930.853333pt;}
.y66{bottom:946.533333pt;}
.y31{bottom:947.493333pt;}
.y98{bottom:947.813333pt;}
.y3{bottom:972.453333pt;}
.y30{bottom:975.653333pt;}
.yf9{bottom:981.413333pt;}
.y65{bottom:983.973333pt;}
.y142{bottom:984.293333pt;}
.ycc{bottom:985.253333pt;}
.y96{bottom:985.893333pt;}
.h12{height:16.000000pt;}
.h19{height:16.640000pt;}
.h18{height:16.672000pt;}
.h17{height:16.960000pt;}
.h1a{height:16.992000pt;}
.h2{height:17.280000pt;}
.h1d{height:17.600000pt;}
.h1c{height:18.240000pt;}
.h8{height:20.409375pt;}
.hd{height:26.879375pt;}
.h11{height:32.570625pt;}
.h1b{height:34.560000pt;}
.h7{height:36.931250pt;}
.hf{height:37.063125pt;}
.h9{height:40.818750pt;}
.hc{height:42.636250pt;}
.h13{height:42.678750pt;}
.h14{height:42.866250pt;}
.hb{height:45.812500pt;}
.h16{height:46.593750pt;}
.h4{height:47.171250pt;}
.h1{height:51.663750pt;}
.he{height:53.759375pt;}
.h10{height:56.156250pt;}
.h15{height:56.890625pt;}
.h6{height:58.563750pt;}
.h3{height:60.288750pt;}
.h5{height:65.531250pt;}
.ha{height:76.016250pt;}
.h0{height:1056.000000pt;}
.wf{width:35.872000pt;}
.w17{width:37.120000pt;}
.w13{width:38.400000pt;}
.wc{width:40.960000pt;}
.wb{width:42.912000pt;}
.w12{width:46.752000pt;}
.w1e{width:54.752000pt;}
.w1c{width:56.000000pt;}
.w9{width:56.032000pt;}
.w15{width:56.672000pt;}
.w22{width:64.032000pt;}
.w16{width:64.992000pt;}
.wa{width:65.312000pt;}
.w1a{width:65.600000pt;}
.w7{width:65.632000pt;}
.w1f{width:68.192000pt;}
.w10{width:74.912000pt;}
.w21{width:75.232000pt;}
.w20{width:82.912000pt;}
.w19{width:84.512000pt;}
.w1b{width:86.784000pt;}
.w14{width:93.792000pt;}
.w8{width:96.352000pt;}
.w5{width:121.952000pt;}
.w3{width:127.104000pt;}
.wd{width:131.552000pt;}
.w11{width:133.152000pt;}
.we{width:142.466667pt;}
.w1d{width:196.573333pt;}
.w6{width:207.453333pt;}
.w18{width:235.933333pt;}
.w4{width:496.826667pt;}
.w2{width:497.146667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:1.280000pt;}
.x16{left:6.720000pt;}
.x2{left:94.431988pt;}
.xb{left:99.551988pt;}
.xd{left:101.152000pt;}
.xe{left:103.391988pt;}
.x14{left:118.143988pt;}
.x1d{left:130.944000pt;}
.x13{left:132.223988pt;}
.x24{left:140.226667pt;}
.x10{left:141.506655pt;}
.xf{left:142.466655pt;}
.x15{left:149.826667pt;}
.x12{left:151.106655pt;}
.x3{left:152.386667pt;}
.x11{left:156.226667pt;}
.x2f{left:169.986655pt;}
.xc{left:248.733321pt;}
.x8{left:262.173321pt;}
.x1e{left:263.133333pt;}
.x17{left:272.413333pt;}
.x22{left:319.813333pt;}
.x7{left:322.373321pt;}
.x1a{left:329.413333pt;}
.x2d{left:348.293333pt;}
.x6{left:353.093321pt;}
.x23{left:367.200000pt;}
.x27{left:376.480000pt;}
.x1b{left:395.360000pt;}
.x2e{left:404.960000pt;}
.x1f{left:406.240000pt;}
.x9{left:408.159988pt;}
.xa{left:432.159988pt;}
.x1c{left:438.906667pt;}
.x20{left:442.746667pt;}
.x29{left:452.346667pt;}
.x2a{left:469.626667pt;}
.x18{left:480.506667pt;}
.x25{left:508.986667pt;}
.x21{left:518.306667pt;}
.x2b{left:525.026667pt;}
.x19{left:546.786667pt;}
.x26{left:565.666667pt;}
.x28{left:584.546667pt;}
.x5{left:586.146655pt;}
.x2c{left:593.853333pt;}
.x1{left:692.453321pt;}
}




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