
    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_6b04762345c91239a8d9a492.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a4d95e01b3b3dc3e344c6819.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5a98706600dbc5b4becbeab9.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_76f899634896f5847da53f01.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2ddfbbf8a6b0b821f982c7b0.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1aae2797768f278fd5dc5316.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.201172;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_059f3057ecb58924cad7c995.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_17b0c25ca6e0043aa6e4c53c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_2542c68d4abe73b05bdef4fd.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.095703;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_bef3095ca9843c684f63d96b.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v3{vertical-align:-82.800000px;}
.v4{vertical-align:-71.640000px;}
.v5{vertical-align:-69.120000px;}
.v7{vertical-align:-27.000000px;}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:27.000000px;}
.v1{vertical-align:29.880000px;}
.ls11{letter-spacing:-1.872000px;}
.ls1f{letter-spacing:-0.413400px;}
.ls1d{letter-spacing:-0.360000px;}
.ls24{letter-spacing:-0.288000px;}
.ls19{letter-spacing:-0.270000px;}
.ls18{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.180000px;}
.ls1e{letter-spacing:-0.153600px;}
.lsc{letter-spacing:-0.085800px;}
.ls20{letter-spacing:-0.072000px;}
.ls34{letter-spacing:-0.053280px;}
.ls10{letter-spacing:-0.036000px;}
.lse{letter-spacing:-0.018000px;}
.lsa{letter-spacing:0.000000px;}
.ls39{letter-spacing:0.013320px;}
.ls9{letter-spacing:0.036000px;}
.ls4{letter-spacing:0.048000px;}
.ls2f{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.072000px;}
.ls16{letter-spacing:0.078600px;}
.ls6{letter-spacing:0.090000px;}
.lsb{letter-spacing:0.105000px;}
.ls1a{letter-spacing:0.139800px;}
.ls2d{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.192000px;}
.ls8{letter-spacing:0.198000px;}
.ls27{letter-spacing:0.264000px;}
.ls17{letter-spacing:0.324000px;}
.ls3a{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.373200px;}
.ls46{letter-spacing:0.432000px;}
.ls37{letter-spacing:0.630000px;}
.ls36{letter-spacing:0.990000px;}
.ls28{letter-spacing:1.800000px;}
.ls2c{letter-spacing:2.250000px;}
.ls5{letter-spacing:4.410000px;}
.ls3b{letter-spacing:5.040000px;}
.ls7{letter-spacing:5.436000px;}
.ls3d{letter-spacing:5.850000px;}
.ls41{letter-spacing:6.930000px;}
.ls40{letter-spacing:7.200000px;}
.ls3f{letter-spacing:7.650000px;}
.ls23{letter-spacing:8.280000px;}
.ls29{letter-spacing:8.730000px;}
.ls22{letter-spacing:9.000000px;}
.ls38{letter-spacing:9.090000px;}
.ls35{letter-spacing:9.360000px;}
.ls26{letter-spacing:10.080000px;}
.ls33{letter-spacing:11.250000px;}
.ls2a{letter-spacing:12.831120px;}
.ls42{letter-spacing:13.050000px;}
.ls44{letter-spacing:15.480000px;}
.ls32{letter-spacing:15.840000px;}
.ls15{letter-spacing:15.930000px;}
.ls1c{letter-spacing:17.640000px;}
.ls2b{letter-spacing:18.720000px;}
.ls14{letter-spacing:20.880000px;}
.ls31{letter-spacing:21.960000px;}
.ls30{letter-spacing:22.410000px;}
.ls25{letter-spacing:22.500000px;}
.ls3e{letter-spacing:24.120000px;}
.ls3{letter-spacing:25.796880px;}
.ls2{letter-spacing:41.636880px;}
.ls1{letter-spacing:41.756880px;}
.ls13{letter-spacing:109.560000px;}
.ls3c{letter-spacing:175.191120px;}
.ls1b{letter-spacing:208.671120px;}
.ls2e{letter-spacing:279.360000px;}
.ls43{letter-spacing:406.920000px;}
.ls45{letter-spacing:826.320000px;}
.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;}
}
.ws10{word-spacing:-65.880000px;}
.ws0{word-spacing:-21.723120px;}
.ws1{word-spacing:-21.637320px;}
.ws13{word-spacing:-18.144000px;}
.ws12{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.928000px;}
.wse{word-spacing:-17.784000px;}
.ws18{word-spacing:-17.712000px;}
.ws14{word-spacing:-17.640000px;}
.ws15{word-spacing:-15.210000px;}
.wsf{word-spacing:-15.169800px;}
.ws17{word-spacing:-15.043320px;}
.ws6{word-spacing:-15.030000px;}
.ws16{word-spacing:-14.976720px;}
.wsc{word-spacing:-14.967480px;}
.ws19{word-spacing:-14.876400px;}
.ws5{word-spacing:-14.850000px;}
.ws1a{word-spacing:-14.616600px;}
.ws2{word-spacing:-14.238000px;}
.ws4{word-spacing:-14.220000px;}
.wsd{word-spacing:-12.528000px;}
.ws8{word-spacing:-12.294000px;}
.ws7{word-spacing:-12.204000px;}
.ws9{word-spacing:-12.168000px;}
.wsa{word-spacing:-9.720000px;}
.wsb{word-spacing:0.000000px;}
._25{margin-left:-18.673320px;}
._39{margin-left:-10.120920px;}
._1f{margin-left:-7.823280px;}
._18{margin-left:-4.734600px;}
._b{margin-left:-3.348000px;}
._6{margin-left:-1.345680px;}
._3{width:1.057320px;}
._2{width:2.114640px;}
._9{width:3.967920px;}
._a{width:5.562000px;}
._e{width:6.853680px;}
._8{width:8.176320px;}
._c{width:9.319680px;}
._10{width:10.519920px;}
._17{width:11.783520px;}
._16{width:13.660680px;}
._1c{width:14.899320px;}
._f{width:16.052040px;}
._12{width:17.103960px;}
._1a{width:18.156240px;}
._13{width:19.368000px;}
._14{width:20.880000px;}
._15{width:21.912000px;}
._19{width:23.567040px;}
._7{width:25.567920px;}
._1b{width:26.640000px;}
._1d{width:28.436760px;}
._1e{width:30.120120px;}
._22{width:31.392000px;}
._2f{width:32.423880px;}
._23{width:33.480000px;}
._24{width:34.678680px;}
._20{width:35.784000px;}
._30{width:36.792000px;}
._28{width:38.664000px;}
._35{width:39.936000px;}
._4{width:41.073960px;}
._5{width:42.116400px;}
._2a{width:43.670160px;}
._2e{width:44.732880px;}
._34{width:46.059120px;}
._31{width:47.376000px;}
._27{width:53.568000px;}
._26{width:55.656000px;}
._33{width:60.912000px;}
._32{width:61.920000px;}
._38{width:66.384000px;}
._37{width:67.824000px;}
._21{width:91.560000px;}
._2b{width:121.502520px;}
._2c{width:122.799480px;}
._2d{width:133.278360px;}
._d{width:243.156000px;}
._29{width:261.360000px;}
._0{width:832.260000px;}
._36{width:1222.671840px;}
._11{width:1256.151600px;}
._1{width:1748.340000px;}
.fc4{color:rgb(31,26,23);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(40,40,40);}
.fc2{color:rgb(102,102,102);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs8{font-size:47.880000px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs6{font-size:60.120000px;}
.fs3{font-size:63.000000px;}
.fs0{font-size:65.880000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000092px;}
.y5{bottom:45.359908px;}
.y4{bottom:60.869908px;}
.y3{bottom:76.439908px;}
.y2d{bottom:96.689908px;}
.yad{bottom:98.039908px;}
.ycd{bottom:101.549908px;}
.ya6{bottom:101.909908px;}
.y2c{bottom:113.969908px;}
.ya5{bottom:114.329908px;}
.yac{bottom:118.739908px;}
.yab{bottom:119.189908px;}
.ycc{bottom:122.249908px;}
.y2b{bottom:131.159908px;}
.yaa{bottom:131.609908px;}
.y11a{bottom:136.019908px;}
.y74{bottom:136.379908px;}
.ya4{bottom:139.439908px;}
.ycb{bottom:142.949908px;}
.y2a{bottom:148.439908px;}
.ya0{bottom:148.799908px;}
.y81{bottom:153.659908px;}
.y119{bottom:156.719908px;}
.ya3{bottom:160.139908px;}
.yca{bottom:163.649908px;}
.y29{bottom:165.719908px;}
.yfa{bottom:166.079908px;}
.y80{bottom:170.939908px;}
.y118{bottom:177.419908px;}
.ya2{bottom:180.839908px;}
.y57{bottom:182.909908px;}
.yfd{bottom:183.359908px;}
.yc9{bottom:184.349908px;}
.y28{bottom:188.129908px;}
.y117{bottom:198.119908px;}
.y56{bottom:200.189908px;}
.y27{bottom:200.549908px;}
.y9f{bottom:201.539908px;}
.yc8{bottom:205.049908px;}
.y94{bottom:205.409908px;}
.yf8{bottom:211.889908px;}
.y55{bottom:217.469908px;}
.y93{bottom:217.829908px;}
.y116{bottom:218.819908px;}
.y9e{bottom:222.239908px;}
.yff{bottom:222.689908px;}
.yc7{bottom:225.749908px;}
.y26{bottom:232.499908px;}
.yf7{bottom:232.589908px;}
.y54{bottom:234.659908px;}
.y101{bottom:235.019908px;}
.y115{bottom:239.519908px;}
.y53{bottom:239.879908px;}
.y92{bottom:242.939908px;}
.yc6{bottom:246.449908px;}
.y25{bottom:248.969908px;}
.yfc{bottom:249.689908px;}
.y52{bottom:251.939908px;}
.yf6{bottom:253.289908px;}
.ye5{bottom:257.159908px;}
.y114{bottom:260.219908px;}
.y91{bottom:263.639908px;}
.y24{bottom:265.439908px;}
.yc5{bottom:267.149908px;}
.y51{bottom:269.219908px;}
.yfb{bottom:270.389908px;}
.yf5{bottom:273.989908px;}
.y7f{bottom:274.439908px;}
.y113{bottom:280.919908px;}
.y23{bottom:281.909908px;}
.y90{bottom:284.339908px;}
.y50{bottom:286.409908px;}
.y9c{bottom:286.769908px;}
.yc4{bottom:287.849908px;}
.ydf{bottom:291.629908px;}
.yf4{bottom:294.689908px;}
.y22{bottom:298.469908px;}
.y112{bottom:301.619908px;}
.y4f{bottom:303.689908px;}
.y103{bottom:304.049908px;}
.y8f{bottom:305.039908px;}
.yc3{bottom:308.549908px;}
.y9a{bottom:308.909908px;}
.ya9{bottom:311.789908px;}
.y21{bottom:314.939908px;}
.yf3{bottom:315.389908px;}
.y4e{bottom:320.969908px;}
.y111{bottom:322.319908px;}
.y8e{bottom:325.739908px;}
.yc2{bottom:329.249908px;}
.y20{bottom:331.409908px;}
.yf2{bottom:336.089908px;}
.y4d{bottom:338.159908px;}
.y110{bottom:343.019908px;}
.y97{bottom:343.379908px;}
.y8d{bottom:346.439908px;}
.y1f{bottom:347.879908px;}
.yc1{bottom:349.949908px;}
.y4c{bottom:355.439908px;}
.y96{bottom:355.799908px;}
.yf1{bottom:356.789908px;}
.yfe{bottom:360.659908px;}
.y10f{bottom:363.719908px;}
.y1e{bottom:364.349908px;}
.y8c{bottom:367.139908px;}
.yc0{bottom:370.649908px;}
.y4b{bottom:372.719908px;}
.y9d{bottom:373.889908px;}
.yf0{bottom:377.489908px;}
.y1d{bottom:380.819908px;}
.y10e{bottom:384.419908px;}
.y8b{bottom:387.839908px;}
.y4a{bottom:389.909908px;}
.ybf{bottom:391.259908px;}
.y102{bottom:394.589908px;}
.y99{bottom:395.129908px;}
.y1c{bottom:397.289908px;}
.yef{bottom:398.189908px;}
.y10d{bottom:405.119908px;}
.y49{bottom:407.189908px;}
.y98{bottom:407.549908px;}
.y8a{bottom:408.539908px;}
.ybe{bottom:411.959908px;}
.y106{bottom:412.409908px;}
.y1b{bottom:413.759908px;}
.yf9{bottom:415.289908px;}
.yee{bottom:418.889908px;}
.y48{bottom:424.469908px;}
.y105{bottom:424.829908px;}
.y89{bottom:429.239908px;}
.ydd{bottom:429.689908px;}
.y1a{bottom:430.229908px;}
.ybd{bottom:432.659908px;}
.y9b{bottom:435.989908px;}
.yed{bottom:438.959908px;}
.y47{bottom:441.659908px;}
.ydc{bottom:442.019908px;}
.y19{bottom:446.339908px;}
.y10c{bottom:446.519908px;}
.y88{bottom:449.969908px;}
.ybc{bottom:453.389908px;}
.yec{bottom:456.269908px;}
.y107{bottom:456.719908px;}
.y46{bottom:458.969908px;}
.y18{bottom:463.649908px;}
.y7e{bottom:464.189908px;}
.y10b{bottom:466.619908px;}
.y87{bottom:470.669908px;}
.yeb{bottom:473.459908px;}
.ybb{bottom:474.089908px;}
.y45{bottom:476.159908px;}
.y95{bottom:477.419908px;}
.y17{bottom:480.929908px;}
.ye4{bottom:481.379908px;}
.y10a{bottom:483.809908px;}
.yea{bottom:490.739908px;}
.y86{bottom:491.369908px;}
.y44{bottom:493.439908px;}
.ye3{bottom:493.799908px;}
.yba{bottom:494.789908px;}
.ya8{bottom:497.399908px;}
.y16{bottom:498.119908px;}
.y109{bottom:501.089908px;}
.ye9{bottom:508.019908px;}
.y43{bottom:510.719908px;}
.y85{bottom:512.069908px;}
.y15{bottom:515.399908px;}
.yb9{bottom:515.489908px;}
.y73{bottom:515.939908px;}
.y108{bottom:518.369908px;}
.ye2{bottom:518.819908px;}
.ye8{bottom:525.209908px;}
.y42{bottom:527.909908px;}
.y14{bottom:532.679908px;}
.y84{bottom:532.769908px;}
.yb8{bottom:536.189908px;}
.ya7{bottom:539.519908px;}
.ye7{bottom:542.489908px;}
.y41{bottom:545.189908px;}
.y7d{bottom:545.549908px;}
.y13{bottom:549.869908px;}
.y40{bottom:550.409908px;}
.y83{bottom:553.469908px;}
.yb7{bottom:556.889908px;}
.ye6{bottom:559.769908px;}
.y100{bottom:560.219908px;}
.y72{bottom:562.469908px;}
.y3f{bottom:562.829908px;}
.y12{bottom:567.149908px;}
.y7c{bottom:574.169908px;}
.yb6{bottom:577.589908px;}
.y71{bottom:579.659908px;}
.yde{bottom:580.919908px;}
.y11{bottom:584.429908px;}
.y70{bottom:584.879908px;}
.y7b{bottom:594.869908px;}
.y6f{bottom:596.939908px;}
.y3d{bottom:597.929908px;}
.yb5{bottom:598.289908px;}
.y10{bottom:601.619908px;}
.y3e{bottom:604.679908px;}
.y6e{bottom:614.219908px;}
.yd9{bottom:614.939908px;}
.y7a{bottom:615.569908px;}
.y3b{bottom:618.629908px;}
.yf{bottom:618.899908px;}
.yb4{bottom:618.989908px;}
.y6d{bottom:619.439908px;}
.ydb{bottom:622.319908px;}
.y3c{bottom:625.379908px;}
.y6c{bottom:631.409908px;}
.yd8{bottom:632.219908px;}
.y79{bottom:636.269908px;}
.ye{bottom:636.809908px;}
.y3a{bottom:639.329908px;}
.yb3{bottom:639.689908px;}
.yda{bottom:643.019908px;}
.y6b{bottom:648.689908px;}
.yd7{bottom:649.409908px;}
.y6a{bottom:653.909908px;}
.y78{bottom:656.969908px;}
.y39{bottom:660.029908px;}
.ye1{bottom:663.719908px;}
.y69{bottom:665.969908px;}
.yd6{bottom:666.689908px;}
.yd{bottom:673.529908px;}
.yb2{bottom:677.039908px;}
.y77{bottom:677.669908px;}
.y38{bottom:680.729908px;}
.y68{bottom:683.159908px;}
.yd5{bottom:683.969908px;}
.ya1{bottom:684.419908px;}
.yb1{bottom:694.319908px;}
.y76{bottom:698.369908px;}
.y67{bottom:700.799908px;}
.yd4{bottom:701.159908px;}
.y37{bottom:701.429908px;}
.yc{bottom:702.869908px;}
.y104{bottom:705.119908px;}
.yb0{bottom:711.509908px;}
.yd3{bottom:718.439908px;}
.y65{bottom:719.069908px;}
.y66{bottom:725.819908px;}
.yaf{bottom:728.789908px;}
.yb{bottom:732.209908px;}
.yd2{bottom:735.629908px;}
.y63{bottom:739.769908px;}
.y36{bottom:742.829908px;}
.yae{bottom:745.979908px;}
.y64{bottom:746.519908px;}
.yd1{bottom:752.909908px;}
.y62{bottom:760.469908px;}
.ya{bottom:761.459908px;}
.y35{bottom:763.529908px;}
.y82{bottom:767.219908px;}
.yd0{bottom:770.189908px;}
.y61{bottom:781.169908px;}
.y34{bottom:784.229908px;}
.ycf{bottom:787.379908px;}
.yce{bottom:787.919908px;}
.y9{bottom:790.799908px;}
.y60{bottom:801.869908px;}
.y75{bottom:808.619908px;}
.y8{bottom:820.049908px;}
.y5e{bottom:822.569908px;}
.y33{bottom:822.659908px;}
.y5f{bottom:829.319908px;}
.y32{bottom:839.159908px;}
.y5c{bottom:843.299908px;}
.y7{bottom:849.419908px;}
.y5d{bottom:850.049908px;}
.y31{bottom:855.629908px;}
.y5a{bottom:863.999908px;}
.y5b{bottom:870.749908px;}
.y30{bottom:872.189908px;}
.y6{bottom:878.669908px;}
.y59{bottom:884.699908px;}
.y2f{bottom:888.659908px;}
.ye0{bottom:891.449908px;}
.y2e{bottom:916.739908px;}
.y58{bottom:917.099908px;}
.y2{bottom:936.809908px;}
.ha{height:38.158594px;}
.h11{height:46.968223px;}
.hc{height:46.991602px;}
.h10{height:52.898555px;}
.h4{height:52.998047px;}
.h9{height:53.709961px;}
.h13{height:53.896641px;}
.h8{height:55.291992px;}
.hd{height:58.975137px;}
.h7{height:59.004492px;}
.h12{height:64.546875px;}
.he{height:64.657617px;}
.h3{height:65.526152px;}
.hf{height:70.628906px;}
.h6{height:70.664062px;}
.hb{height:72.562500px;}
.h14{height:73.991602px;}
.h5{height:95.603730px;}
.h2{height:1020.599908px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w3{width:722.879978px;}
.w2{width:722.879989px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x78{left:63.809989px;}
.x1{left:95.669989px;}
.x7{left:100.529989px;}
.x1a{left:105.419989px;}
.x4d{left:117.029989px;}
.x2{left:127.559989px;}
.x1b{left:139.709978px;}
.x63{left:141.239978px;}
.x1d{left:148.799989px;}
.x1c{left:151.769989px;}
.x64{left:153.299989px;}
.x46{left:159.149978px;}
.xe{left:164.639978px;}
.xf{left:170.669989px;}
.x6d{left:175.169978px;}
.x67{left:181.199978px;}
.x6e{left:187.229989px;}
.x68{left:193.259989px;}
.x4c{left:194.609978px;}
.x3e{left:199.829978px;}
.x2e{left:201.899989px;}
.x2a{left:207.569978px;}
.x60{left:209.999978px;}
.x3f{left:211.889989px;}
.x58{left:217.109978px;}
.x2b{left:219.629989px;}
.x61{left:222.059989px;}
.x51{left:230.159978px;}
.x52{left:242.219989px;}
.x18{left:248.429978px;}
.x19{left:260.489989px;}
.x6a{left:272.189989px;}
.x27{left:283.349978px;}
.x5c{left:287.219978px;}
.x2f{left:289.379978px;}
.x28{left:295.409989px;}
.x5d{left:299.279989px;}
.x30{left:301.439989px;}
.x35{left:304.499978px;}
.x5a{left:310.799978px;}
.x36{left:316.589989px;}
.x5b{left:322.889989px;}
.x49{left:332.339978px;}
.x16{left:333.689978px;}
.x4a{left:344.399989px;}
.x17{left:345.749989px;}
.x53{left:352.049978px;}
.x76{left:362.669978px;}
.x54{left:364.109989px;}
.x77{left:374.729989px;}
.x69{left:376.709989px;}
.x62{left:395.519978px;}
.x39{left:399.209978px;}
.x72{left:405.599978px;}
.x42{left:407.399978px;}
.x3a{left:411.269989px;}
.x73{left:417.659989px;}
.x43{left:419.459989px;}
.x40{left:421.079978px;}
.x6b{left:423.419978px;}
.x4f{left:425.039978px;}
.x65{left:426.659978px;}
.x21{left:431.969978px;}
.x41{left:433.139989px;}
.x6c{left:435.479989px;}
.x50{left:437.099989px;}
.x66{left:438.719989px;}
.x12{left:441.509978px;}
.x22{left:444.029989px;}
.x13{left:447.539989px;}
.x10{left:452.759978px;}
.x47{left:456.539978px;}
.x11{left:458.789989px;}
.x33{left:464.729978px;}
.x25{left:466.709978px;}
.x48{left:468.599989px;}
.x1f{left:470.219989px;}
.x34{left:476.789989px;}
.x26{left:478.769989px;}
.x14{left:480.479978px;}
.x15{left:486.509989px;}
.x4b{left:488.129978px;}
.x5{left:495.149978px;}
.x6{left:501.179989px;}
.x3b{left:502.799978px;}
.x55{left:507.569989px;}
.x5e{left:509.909978px;}
.x3c{left:514.859989px;}
.x29{left:520.799978px;}
.x5f{left:521.969989px;}
.xa{left:526.019978px;}
.xc{left:530.969978px;}
.xb{left:532.079989px;}
.x31{left:533.519978px;}
.x6f{left:535.499978px;}
.xd{left:537.029989px;}
.x4e{left:538.739989px;}
.x32{left:545.579989px;}
.x70{left:547.559989px;}
.x56{left:549.989978px;}
.x44{left:552.599978px;}
.x37{left:557.729978px;}
.x57{left:562.049989px;}
.x45{left:564.659989px;}
.x38{left:569.789989px;}
.x1e{left:574.559978px;}
.x3{left:579.779978px;}
.x4{left:585.809989px;}
.x74{left:587.879978px;}
.x59{left:589.409978px;}
.x2c{left:595.979978px;}
.x71{left:598.229989px;}
.x75{left:599.939989px;}
.x23{left:601.199978px;}
.x3d{left:602.369978px;}
.x2d{left:608.039989px;}
.x24{left:613.259989px;}
.x20{left:615.239978px;}
.x8{left:621.269978px;}
.x9{left:627.299989px;}
@media print{
.v3{vertical-align:-73.600000pt;}
.v4{vertical-align:-63.680000pt;}
.v5{vertical-align:-61.440000pt;}
.v7{vertical-align:-24.000000pt;}
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:24.000000pt;}
.v1{vertical-align:26.560000pt;}
.ls11{letter-spacing:-1.664000pt;}
.ls1f{letter-spacing:-0.367467pt;}
.ls1d{letter-spacing:-0.320000pt;}
.ls24{letter-spacing:-0.256000pt;}
.ls19{letter-spacing:-0.240000pt;}
.ls18{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.160000pt;}
.ls1e{letter-spacing:-0.136533pt;}
.lsc{letter-spacing:-0.076267pt;}
.ls20{letter-spacing:-0.064000pt;}
.ls34{letter-spacing:-0.047360pt;}
.ls10{letter-spacing:-0.032000pt;}
.lse{letter-spacing:-0.016000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls39{letter-spacing:0.011840pt;}
.ls9{letter-spacing:0.032000pt;}
.ls4{letter-spacing:0.042667pt;}
.ls2f{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.064000pt;}
.ls16{letter-spacing:0.069867pt;}
.ls6{letter-spacing:0.080000pt;}
.lsb{letter-spacing:0.093333pt;}
.ls1a{letter-spacing:0.124267pt;}
.ls2d{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.170667pt;}
.ls8{letter-spacing:0.176000pt;}
.ls27{letter-spacing:0.234667pt;}
.ls17{letter-spacing:0.288000pt;}
.ls3a{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.331733pt;}
.ls46{letter-spacing:0.384000pt;}
.ls37{letter-spacing:0.560000pt;}
.ls36{letter-spacing:0.880000pt;}
.ls28{letter-spacing:1.600000pt;}
.ls2c{letter-spacing:2.000000pt;}
.ls5{letter-spacing:3.920000pt;}
.ls3b{letter-spacing:4.480000pt;}
.ls7{letter-spacing:4.832000pt;}
.ls3d{letter-spacing:5.200000pt;}
.ls41{letter-spacing:6.160000pt;}
.ls40{letter-spacing:6.400000pt;}
.ls3f{letter-spacing:6.800000pt;}
.ls23{letter-spacing:7.360000pt;}
.ls29{letter-spacing:7.760000pt;}
.ls22{letter-spacing:8.000000pt;}
.ls38{letter-spacing:8.080000pt;}
.ls35{letter-spacing:8.320000pt;}
.ls26{letter-spacing:8.960000pt;}
.ls33{letter-spacing:10.000000pt;}
.ls2a{letter-spacing:11.405440pt;}
.ls42{letter-spacing:11.600000pt;}
.ls44{letter-spacing:13.760000pt;}
.ls32{letter-spacing:14.080000pt;}
.ls15{letter-spacing:14.160000pt;}
.ls1c{letter-spacing:15.680000pt;}
.ls2b{letter-spacing:16.640000pt;}
.ls14{letter-spacing:18.560000pt;}
.ls31{letter-spacing:19.520000pt;}
.ls30{letter-spacing:19.920000pt;}
.ls25{letter-spacing:20.000000pt;}
.ls3e{letter-spacing:21.440000pt;}
.ls3{letter-spacing:22.930560pt;}
.ls2{letter-spacing:37.010560pt;}
.ls1{letter-spacing:37.117227pt;}
.ls13{letter-spacing:97.386667pt;}
.ls3c{letter-spacing:155.725440pt;}
.ls1b{letter-spacing:185.485440pt;}
.ls2e{letter-spacing:248.320000pt;}
.ls43{letter-spacing:361.706667pt;}
.ls45{letter-spacing:734.506667pt;}
.ws10{word-spacing:-58.560000pt;}
.ws0{word-spacing:-19.309440pt;}
.ws1{word-spacing:-19.233173pt;}
.ws13{word-spacing:-16.128000pt;}
.ws12{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.936000pt;}
.wse{word-spacing:-15.808000pt;}
.ws18{word-spacing:-15.744000pt;}
.ws14{word-spacing:-15.680000pt;}
.ws15{word-spacing:-13.520000pt;}
.wsf{word-spacing:-13.484267pt;}
.ws17{word-spacing:-13.371840pt;}
.ws6{word-spacing:-13.360000pt;}
.ws16{word-spacing:-13.312640pt;}
.wsc{word-spacing:-13.304427pt;}
.ws19{word-spacing:-13.223467pt;}
.ws5{word-spacing:-13.200000pt;}
.ws1a{word-spacing:-12.992533pt;}
.ws2{word-spacing:-12.656000pt;}
.ws4{word-spacing:-12.640000pt;}
.wsd{word-spacing:-11.136000pt;}
.ws8{word-spacing:-10.928000pt;}
.ws7{word-spacing:-10.848000pt;}
.ws9{word-spacing:-10.816000pt;}
.wsa{word-spacing:-8.640000pt;}
.wsb{word-spacing:0.000000pt;}
._25{margin-left:-16.598507pt;}
._39{margin-left:-8.996373pt;}
._1f{margin-left:-6.954027pt;}
._18{margin-left:-4.208533pt;}
._b{margin-left:-2.976000pt;}
._6{margin-left:-1.196160pt;}
._3{width:0.939840pt;}
._2{width:1.879680pt;}
._9{width:3.527040pt;}
._a{width:4.944000pt;}
._e{width:6.092160pt;}
._8{width:7.267840pt;}
._c{width:8.284160pt;}
._10{width:9.351040pt;}
._17{width:10.474240pt;}
._16{width:12.142827pt;}
._1c{width:13.243840pt;}
._f{width:14.268480pt;}
._12{width:15.203520pt;}
._1a{width:16.138880pt;}
._13{width:17.216000pt;}
._14{width:18.560000pt;}
._15{width:19.477333pt;}
._19{width:20.948480pt;}
._7{width:22.727040pt;}
._1b{width:23.680000pt;}
._1d{width:25.277120pt;}
._1e{width:26.773440pt;}
._22{width:27.904000pt;}
._2f{width:28.821227pt;}
._23{width:29.760000pt;}
._24{width:30.825493pt;}
._20{width:31.808000pt;}
._30{width:32.704000pt;}
._28{width:34.368000pt;}
._35{width:35.498667pt;}
._4{width:36.510187pt;}
._5{width:37.436800pt;}
._2a{width:38.817920pt;}
._2e{width:39.762560pt;}
._34{width:40.941440pt;}
._31{width:42.112000pt;}
._27{width:47.616000pt;}
._26{width:49.472000pt;}
._33{width:54.144000pt;}
._32{width:55.040000pt;}
._38{width:59.008000pt;}
._37{width:60.288000pt;}
._21{width:81.386667pt;}
._2b{width:108.002240pt;}
._2c{width:109.155093pt;}
._2d{width:118.469653pt;}
._d{width:216.138667pt;}
._29{width:232.320000pt;}
._0{width:739.786667pt;}
._36{width:1086.819413pt;}
._11{width:1116.579200pt;}
._1{width:1554.080000pt;}
.fs7{font-size:34.560000pt;}
.fs8{font-size:42.560000pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs6{font-size:53.440000pt;}
.fs3{font-size:56.000000pt;}
.fs0{font-size:58.560000pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000081pt;}
.y5{bottom:40.319919pt;}
.y4{bottom:54.106585pt;}
.y3{bottom:67.946585pt;}
.y2d{bottom:85.946585pt;}
.yad{bottom:87.146585pt;}
.ycd{bottom:90.266585pt;}
.ya6{bottom:90.586585pt;}
.y2c{bottom:101.306585pt;}
.ya5{bottom:101.626585pt;}
.yac{bottom:105.546585pt;}
.yab{bottom:105.946585pt;}
.ycc{bottom:108.666585pt;}
.y2b{bottom:116.586585pt;}
.yaa{bottom:116.986585pt;}
.y11a{bottom:120.906585pt;}
.y74{bottom:121.226585pt;}
.ya4{bottom:123.946585pt;}
.ycb{bottom:127.066585pt;}
.y2a{bottom:131.946585pt;}
.ya0{bottom:132.266585pt;}
.y81{bottom:136.586585pt;}
.y119{bottom:139.306585pt;}
.ya3{bottom:142.346585pt;}
.yca{bottom:145.466585pt;}
.y29{bottom:147.306585pt;}
.yfa{bottom:147.626585pt;}
.y80{bottom:151.946585pt;}
.y118{bottom:157.706585pt;}
.ya2{bottom:160.746585pt;}
.y57{bottom:162.586585pt;}
.yfd{bottom:162.986585pt;}
.yc9{bottom:163.866585pt;}
.y28{bottom:167.226585pt;}
.y117{bottom:176.106585pt;}
.y56{bottom:177.946585pt;}
.y27{bottom:178.266585pt;}
.y9f{bottom:179.146585pt;}
.yc8{bottom:182.266585pt;}
.y94{bottom:182.586585pt;}
.yf8{bottom:188.346585pt;}
.y55{bottom:193.306585pt;}
.y93{bottom:193.626585pt;}
.y116{bottom:194.506585pt;}
.y9e{bottom:197.546585pt;}
.yff{bottom:197.946585pt;}
.yc7{bottom:200.666585pt;}
.y26{bottom:206.666585pt;}
.yf7{bottom:206.746585pt;}
.y54{bottom:208.586585pt;}
.y101{bottom:208.906585pt;}
.y115{bottom:212.906585pt;}
.y53{bottom:213.226585pt;}
.y92{bottom:215.946585pt;}
.yc6{bottom:219.066585pt;}
.y25{bottom:221.306585pt;}
.yfc{bottom:221.946585pt;}
.y52{bottom:223.946585pt;}
.yf6{bottom:225.146585pt;}
.ye5{bottom:228.586585pt;}
.y114{bottom:231.306585pt;}
.y91{bottom:234.346585pt;}
.y24{bottom:235.946585pt;}
.yc5{bottom:237.466585pt;}
.y51{bottom:239.306585pt;}
.yfb{bottom:240.346585pt;}
.yf5{bottom:243.546585pt;}
.y7f{bottom:243.946585pt;}
.y113{bottom:249.706585pt;}
.y23{bottom:250.586585pt;}
.y90{bottom:252.746585pt;}
.y50{bottom:254.586585pt;}
.y9c{bottom:254.906585pt;}
.yc4{bottom:255.866585pt;}
.ydf{bottom:259.226585pt;}
.yf4{bottom:261.946585pt;}
.y22{bottom:265.306585pt;}
.y112{bottom:268.106585pt;}
.y4f{bottom:269.946585pt;}
.y103{bottom:270.266585pt;}
.y8f{bottom:271.146585pt;}
.yc3{bottom:274.266585pt;}
.y9a{bottom:274.586585pt;}
.ya9{bottom:277.146585pt;}
.y21{bottom:279.946585pt;}
.yf3{bottom:280.346585pt;}
.y4e{bottom:285.306585pt;}
.y111{bottom:286.506585pt;}
.y8e{bottom:289.546585pt;}
.yc2{bottom:292.666585pt;}
.y20{bottom:294.586585pt;}
.yf2{bottom:298.746585pt;}
.y4d{bottom:300.586585pt;}
.y110{bottom:304.906585pt;}
.y97{bottom:305.226585pt;}
.y8d{bottom:307.946585pt;}
.y1f{bottom:309.226585pt;}
.yc1{bottom:311.066585pt;}
.y4c{bottom:315.946585pt;}
.y96{bottom:316.266585pt;}
.yf1{bottom:317.146585pt;}
.yfe{bottom:320.586585pt;}
.y10f{bottom:323.306585pt;}
.y1e{bottom:323.866585pt;}
.y8c{bottom:326.346585pt;}
.yc0{bottom:329.466585pt;}
.y4b{bottom:331.306585pt;}
.y9d{bottom:332.346585pt;}
.yf0{bottom:335.546585pt;}
.y1d{bottom:338.506585pt;}
.y10e{bottom:341.706585pt;}
.y8b{bottom:344.746585pt;}
.y4a{bottom:346.586585pt;}
.ybf{bottom:347.786585pt;}
.y102{bottom:350.746585pt;}
.y99{bottom:351.226585pt;}
.y1c{bottom:353.146585pt;}
.yef{bottom:353.946585pt;}
.y10d{bottom:360.106585pt;}
.y49{bottom:361.946585pt;}
.y98{bottom:362.266585pt;}
.y8a{bottom:363.146585pt;}
.ybe{bottom:366.186585pt;}
.y106{bottom:366.586585pt;}
.y1b{bottom:367.786585pt;}
.yf9{bottom:369.146585pt;}
.yee{bottom:372.346585pt;}
.y48{bottom:377.306585pt;}
.y105{bottom:377.626585pt;}
.y89{bottom:381.546585pt;}
.ydd{bottom:381.946585pt;}
.y1a{bottom:382.426585pt;}
.ybd{bottom:384.586585pt;}
.y9b{bottom:387.546585pt;}
.yed{bottom:390.186585pt;}
.y47{bottom:392.586585pt;}
.ydc{bottom:392.906585pt;}
.y19{bottom:396.746585pt;}
.y10c{bottom:396.906585pt;}
.y88{bottom:399.973252pt;}
.ybc{bottom:403.013252pt;}
.yec{bottom:405.573252pt;}
.y107{bottom:405.973252pt;}
.y46{bottom:407.973252pt;}
.y18{bottom:412.133252pt;}
.y7e{bottom:412.613252pt;}
.y10b{bottom:414.773252pt;}
.y87{bottom:418.373252pt;}
.yeb{bottom:420.853252pt;}
.ybb{bottom:421.413252pt;}
.y45{bottom:423.253252pt;}
.y95{bottom:424.373252pt;}
.y17{bottom:427.493252pt;}
.ye4{bottom:427.893252pt;}
.y10a{bottom:430.053252pt;}
.yea{bottom:436.213252pt;}
.y86{bottom:436.773252pt;}
.y44{bottom:438.613252pt;}
.ye3{bottom:438.933252pt;}
.yba{bottom:439.813252pt;}
.ya8{bottom:442.133252pt;}
.y16{bottom:442.773252pt;}
.y109{bottom:445.413252pt;}
.ye9{bottom:451.573252pt;}
.y43{bottom:453.973252pt;}
.y85{bottom:455.173252pt;}
.y15{bottom:458.133252pt;}
.yb9{bottom:458.213252pt;}
.y73{bottom:458.613252pt;}
.y108{bottom:460.773252pt;}
.ye2{bottom:461.173252pt;}
.ye8{bottom:466.853252pt;}
.y42{bottom:469.253252pt;}
.y14{bottom:473.493252pt;}
.y84{bottom:473.573252pt;}
.yb8{bottom:476.613252pt;}
.ya7{bottom:479.573252pt;}
.ye7{bottom:482.213252pt;}
.y41{bottom:484.613252pt;}
.y7d{bottom:484.933252pt;}
.y13{bottom:488.773252pt;}
.y40{bottom:489.253252pt;}
.y83{bottom:491.973252pt;}
.yb7{bottom:495.013252pt;}
.ye6{bottom:497.573252pt;}
.y100{bottom:497.973252pt;}
.y72{bottom:499.973252pt;}
.y3f{bottom:500.293252pt;}
.y12{bottom:504.133252pt;}
.y7c{bottom:510.373252pt;}
.yb6{bottom:513.413252pt;}
.y71{bottom:515.253252pt;}
.yde{bottom:516.373252pt;}
.y11{bottom:519.493252pt;}
.y70{bottom:519.893252pt;}
.y7b{bottom:528.773252pt;}
.y6f{bottom:530.613252pt;}
.y3d{bottom:531.493252pt;}
.yb5{bottom:531.813252pt;}
.y10{bottom:534.773252pt;}
.y3e{bottom:537.493252pt;}
.y6e{bottom:545.973252pt;}
.yd9{bottom:546.613252pt;}
.y7a{bottom:547.173252pt;}
.y3b{bottom:549.893252pt;}
.yf{bottom:550.133252pt;}
.yb4{bottom:550.213252pt;}
.y6d{bottom:550.613252pt;}
.ydb{bottom:553.173252pt;}
.y3c{bottom:555.893252pt;}
.y6c{bottom:561.253252pt;}
.yd8{bottom:561.973252pt;}
.y79{bottom:565.573252pt;}
.ye{bottom:566.053252pt;}
.y3a{bottom:568.293252pt;}
.yb3{bottom:568.613252pt;}
.yda{bottom:571.573252pt;}
.y6b{bottom:576.613252pt;}
.yd7{bottom:577.253252pt;}
.y6a{bottom:581.253252pt;}
.y78{bottom:583.973252pt;}
.y39{bottom:586.693252pt;}
.ye1{bottom:589.973252pt;}
.y69{bottom:591.973252pt;}
.yd6{bottom:592.613252pt;}
.yd{bottom:598.693252pt;}
.yb2{bottom:601.813252pt;}
.y77{bottom:602.373252pt;}
.y38{bottom:605.093252pt;}
.y68{bottom:607.253252pt;}
.yd5{bottom:607.973252pt;}
.ya1{bottom:608.373252pt;}
.yb1{bottom:617.173252pt;}
.y76{bottom:620.773252pt;}
.y67{bottom:622.933252pt;}
.yd4{bottom:623.253252pt;}
.y37{bottom:623.493252pt;}
.yc{bottom:624.773252pt;}
.y104{bottom:626.773252pt;}
.yb0{bottom:632.453252pt;}
.yd3{bottom:638.613252pt;}
.y65{bottom:639.173252pt;}
.y66{bottom:645.173252pt;}
.yaf{bottom:647.813252pt;}
.yb{bottom:650.853252pt;}
.yd2{bottom:653.893252pt;}
.y63{bottom:657.573252pt;}
.y36{bottom:660.293252pt;}
.yae{bottom:663.093252pt;}
.y64{bottom:663.573252pt;}
.yd1{bottom:669.253252pt;}
.y62{bottom:675.973252pt;}
.ya{bottom:676.853252pt;}
.y35{bottom:678.693252pt;}
.y82{bottom:681.973252pt;}
.yd0{bottom:684.613252pt;}
.y61{bottom:694.373252pt;}
.y34{bottom:697.093252pt;}
.ycf{bottom:699.893252pt;}
.yce{bottom:700.373252pt;}
.y9{bottom:702.933252pt;}
.y60{bottom:712.773252pt;}
.y75{bottom:718.773252pt;}
.y8{bottom:728.933252pt;}
.y5e{bottom:731.173252pt;}
.y33{bottom:731.253252pt;}
.y5f{bottom:737.173252pt;}
.y32{bottom:745.919919pt;}
.y5c{bottom:749.599919pt;}
.y7{bottom:755.039919pt;}
.y5d{bottom:755.599919pt;}
.y31{bottom:760.559919pt;}
.y5a{bottom:767.999919pt;}
.y5b{bottom:773.999919pt;}
.y30{bottom:775.279919pt;}
.y6{bottom:781.039919pt;}
.y59{bottom:786.399919pt;}
.y2f{bottom:789.919919pt;}
.ye0{bottom:792.399919pt;}
.y2e{bottom:814.879919pt;}
.y58{bottom:815.199919pt;}
.y2{bottom:832.719919pt;}
.ha{height:33.918750pt;}
.h11{height:41.749531pt;}
.hc{height:41.770312pt;}
.h10{height:47.020937pt;}
.h4{height:47.109375pt;}
.h9{height:47.742188pt;}
.h13{height:47.908125pt;}
.h8{height:49.148438pt;}
.hd{height:52.422344pt;}
.h7{height:52.448437pt;}
.h12{height:57.375000pt;}
.he{height:57.473437pt;}
.h3{height:58.245469pt;}
.hf{height:62.781250pt;}
.h6{height:62.812500pt;}
.hb{height:64.500000pt;}
.h14{height:65.770312pt;}
.h5{height:84.981094pt;}
.h2{height:907.199919pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w3{width:642.559981pt;}
.w2{width:642.559990pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x78{left:56.719990pt;}
.x1{left:85.039990pt;}
.x7{left:89.359990pt;}
.x1a{left:93.706657pt;}
.x4d{left:104.026657pt;}
.x2{left:113.386657pt;}
.x1b{left:124.186648pt;}
.x63{left:125.546648pt;}
.x1d{left:132.266657pt;}
.x1c{left:134.906657pt;}
.x64{left:136.266657pt;}
.x46{left:141.466648pt;}
.xe{left:146.346648pt;}
.xf{left:151.706657pt;}
.x6d{left:155.706648pt;}
.x67{left:161.066648pt;}
.x6e{left:166.426657pt;}
.x68{left:171.786657pt;}
.x4c{left:172.986648pt;}
.x3e{left:177.626648pt;}
.x2e{left:179.466657pt;}
.x2a{left:184.506648pt;}
.x60{left:186.666648pt;}
.x3f{left:188.346657pt;}
.x58{left:192.986648pt;}
.x2b{left:195.226657pt;}
.x61{left:197.386657pt;}
.x51{left:204.586648pt;}
.x52{left:215.306657pt;}
.x18{left:220.826648pt;}
.x19{left:231.546657pt;}
.x6a{left:241.946657pt;}
.x27{left:251.866648pt;}
.x5c{left:255.306648pt;}
.x2f{left:257.226648pt;}
.x28{left:262.586657pt;}
.x5d{left:266.026657pt;}
.x30{left:267.946657pt;}
.x35{left:270.666648pt;}
.x5a{left:276.266648pt;}
.x36{left:281.413324pt;}
.x5b{left:287.013324pt;}
.x49{left:295.413314pt;}
.x16{left:296.613314pt;}
.x4a{left:306.133324pt;}
.x17{left:307.333324pt;}
.x53{left:312.933314pt;}
.x76{left:322.373314pt;}
.x54{left:323.653324pt;}
.x77{left:333.093324pt;}
.x69{left:334.853324pt;}
.x62{left:351.573314pt;}
.x39{left:354.853314pt;}
.x72{left:360.533314pt;}
.x42{left:362.133314pt;}
.x3a{left:365.573324pt;}
.x73{left:371.253324pt;}
.x43{left:372.853324pt;}
.x40{left:374.293314pt;}
.x6b{left:376.373314pt;}
.x4f{left:377.813314pt;}
.x65{left:379.253314pt;}
.x21{left:383.973314pt;}
.x41{left:385.013324pt;}
.x6c{left:387.093324pt;}
.x50{left:388.533324pt;}
.x66{left:389.973324pt;}
.x12{left:392.453314pt;}
.x22{left:394.693324pt;}
.x13{left:397.813324pt;}
.x10{left:402.453314pt;}
.x47{left:405.813314pt;}
.x11{left:407.813324pt;}
.x33{left:413.093314pt;}
.x25{left:414.853314pt;}
.x48{left:416.533324pt;}
.x1f{left:417.973324pt;}
.x34{left:423.813324pt;}
.x26{left:425.573324pt;}
.x14{left:427.093314pt;}
.x15{left:432.453324pt;}
.x4b{left:433.893314pt;}
.x5{left:440.133314pt;}
.x6{left:445.493324pt;}
.x3b{left:446.933314pt;}
.x55{left:451.173324pt;}
.x5e{left:453.253314pt;}
.x3c{left:457.653324pt;}
.x29{left:462.933314pt;}
.x5f{left:463.973324pt;}
.xa{left:467.573314pt;}
.xc{left:471.973314pt;}
.xb{left:472.959990pt;}
.x31{left:474.239981pt;}
.x6f{left:475.999981pt;}
.xd{left:477.359990pt;}
.x4e{left:478.879990pt;}
.x32{left:484.959990pt;}
.x70{left:486.719990pt;}
.x56{left:488.879981pt;}
.x44{left:491.199981pt;}
.x37{left:495.759981pt;}
.x57{left:499.599990pt;}
.x45{left:501.919990pt;}
.x38{left:506.479990pt;}
.x1e{left:510.719981pt;}
.x3{left:515.359981pt;}
.x4{left:520.719990pt;}
.x74{left:522.559981pt;}
.x59{left:523.919981pt;}
.x2c{left:529.759981pt;}
.x71{left:531.759990pt;}
.x75{left:533.279990pt;}
.x23{left:534.399981pt;}
.x3d{left:535.439981pt;}
.x2d{left:540.479990pt;}
.x24{left:545.119990pt;}
.x20{left:546.879981pt;}
.x8{left:552.239981pt;}
.x9{left:557.599990pt;}
}




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