
    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_8a6f4cb8b3ad4b15db7b5d2a.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_41ffee7893f7b5ced411fa75.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_3ad94c3ee1bcf192d9041b6c.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_1a137b9116d663a1aafd0a93.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f5e1671f8644ee096a5650d2.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_680da77c18ebaa5f1c95b41d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e1186b88c930186f36c4234b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5b37aa4fea1c88aa0f816f58.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v1{vertical-align:-61.920000px;}
.v4{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:29.880000px;}
.ls9{letter-spacing:-1.872000px;}
.ls6{letter-spacing:-1.662000px;}
.ls10{letter-spacing:-0.513600px;}
.ls27{letter-spacing:-0.413400px;}
.ls22{letter-spacing:-0.360000px;}
.ls21{letter-spacing:-0.288000px;}
.ls20{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.180000px;}
.lsf{letter-spacing:-0.153600px;}
.lsa{letter-spacing:-0.144000px;}
.ls1c{letter-spacing:-0.114600px;}
.ls15{letter-spacing:-0.053280px;}
.ls1d{letter-spacing:-0.041760px;}
.ls8{letter-spacing:-0.018000px;}
.ls13{letter-spacing:-0.013320px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.078600px;}
.ls1b{letter-spacing:0.090000px;}
.ls4{letter-spacing:0.120000px;}
.ls14{letter-spacing:0.139800px;}
.lsd{letter-spacing:0.140040px;}
.lsc{letter-spacing:0.144000px;}
.ls1a{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.lse{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.432000px;}
.ls1e{letter-spacing:0.450000px;}
.ls29{letter-spacing:0.504000px;}
.ls18{letter-spacing:0.810000px;}
.ls2c{letter-spacing:1.170000px;}
.ls28{letter-spacing:1.440000px;}
.ls26{letter-spacing:1.530000px;}
.ls17{letter-spacing:4.050000px;}
.ls11{letter-spacing:5.940000px;}
.ls2e{letter-spacing:6.210000px;}
.ls19{letter-spacing:7.650000px;}
.ls2d{letter-spacing:19.080000px;}
.ls2b{letter-spacing:27.144000px;}
.ls25{letter-spacing:27.864000px;}
.ls2a{letter-spacing:31.464000px;}
.ls23{letter-spacing:32.184000px;}
.ls24{letter-spacing:44.784000px;}
.ls16{letter-spacing:54.864000px;}
.ls1f{letter-spacing:109.440000px;}
.ls3{letter-spacing:109.800000px;}
.ls0{letter-spacing:411.660000px;}
.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;}
}
.ws12{word-spacing:-72.000000px;}
.wsc{word-spacing:-18.144000px;}
.ws14{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.ws18{word-spacing:-17.784000px;}
.ws19{word-spacing:-17.712000px;}
.ws15{word-spacing:-17.640000px;}
.ws6{word-spacing:-15.210000px;}
.ws13{word-spacing:-15.183600px;}
.ws10{word-spacing:-15.169800px;}
.ws4{word-spacing:-15.030000px;}
.wsf{word-spacing:-15.016680px;}
.ws11{word-spacing:-14.976720px;}
.wsb{word-spacing:-14.967480px;}
.wsd{word-spacing:-14.876400px;}
.ws5{word-spacing:-14.850000px;}
.ws17{word-spacing:-14.616600px;}
.wse{word-spacing:-14.516400px;}
.ws0{word-spacing:-14.238000px;}
.ws2{word-spacing:-14.220000px;}
.ws3{word-spacing:-12.558000px;}
.ws7{word-spacing:-12.204000px;}
.ws9{word-spacing:-9.720000px;}
.ws16{word-spacing:-0.072000px;}
.wsa{word-spacing:0.000000px;}
._1b{margin-left:-4.935600px;}
._1a{margin-left:-3.616200px;}
._6{margin-left:-2.514600px;}
._5{margin-left:-1.249560px;}
._b{width:1.093320px;}
._7{width:2.284560px;}
._8{width:3.306600px;}
._c{width:4.752000px;}
._d{width:5.904000px;}
._1c{width:7.200000px;}
._1d{width:8.280000px;}
._e{width:9.360000px;}
._22{width:11.232000px;}
._18{width:12.240000px;}
._17{width:13.320000px;}
._19{width:14.328000px;}
._15{width:15.984000px;}
._29{width:16.992000px;}
._a{width:18.223560px;}
._9{width:19.314000px;}
._23{width:20.376000px;}
._16{width:22.176000px;}
._13{width:23.905560px;}
._12{width:24.984000px;}
._2d{width:25.996680px;}
._14{width:27.000000px;}
._26{width:28.873560px;}
._25{width:29.952000px;}
._1e{width:31.032000px;}
._2a{width:32.040000px;}
._3{width:33.257520px;}
._2{width:34.314840px;}
._4{width:36.017160px;}
._28{width:38.113560px;}
._27{width:39.456000px;}
._1f{width:42.985800px;}
._2b{width:47.880000px;}
._20{width:50.901240px;}
._24{width:57.655080px;}
._2c{width:75.971400px;}
._10{width:88.973880px;}
._11{width:194.991120px;}
._f{width:243.036000px;}
._0{width:805.620000px;}
._21{width:1589.031840px;}
._1{width:1748.580000px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(127,127,127);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs9{font-size:42.120000px;}
.fs7{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;}
.y4{bottom:45.359908px;}
.y81{bottom:60.929908px;}
.y3{bottom:76.409908px;}
.y40{bottom:109.439908px;}
.y3f{bottom:114.659908px;}
.y3e{bottom:126.719908px;}
.y10f{bottom:127.079908px;}
.ycb{bottom:131.939908px;}
.y7f{bottom:143.999908px;}
.y103{bottom:144.359908px;}
.y3d{bottom:149.219908px;}
.y7e{bottom:161.189908px;}
.y3c{bottom:161.549908px;}
.y102{bottom:161.639908px;}
.yca{bottom:166.409908px;}
.y7d{bottom:178.469908px;}
.ye9{bottom:178.829908px;}
.y10e{bottom:181.169908px;}
.y101{bottom:182.339908px;}
.yff{bottom:183.689908px;}
.y7c{bottom:195.749908px;}
.y3b{bottom:196.829908px;}
.yc9{bottom:200.969908px;}
.y10a{bottom:201.869908px;}
.ye8{bottom:203.039908px;}
.y7b{bottom:212.939908px;}
.y113{bottom:213.299908px;}
.y3a{bottom:217.529908px;}
.yb1{bottom:218.159908px;}
.y109{bottom:222.569908px;}
.ye7{bottom:223.739908px;}
.y7a{bottom:230.219908px;}
.yfe{bottom:230.579908px;}
.yc8{bottom:235.439908px;}
.y39{bottom:238.229908px;}
.y108{bottom:243.269908px;}
.ye6{bottom:244.439908px;}
.y79{bottom:247.499908px;}
.y38{bottom:258.929908px;}
.yfd{bottom:263.969908px;}
.y78{bottom:264.689908px;}
.ye5{bottom:265.139908px;}
.yc7{bottom:269.909908px;}
.y37{bottom:279.629908px;}
.y77{bottom:281.969908px;}
.y116{bottom:282.329908px;}
.yfc{bottom:284.669908px;}
.ye4{bottom:285.839908px;}
.yc6{bottom:287.189908px;}
.y100{bottom:292.589908px;}
.y76{bottom:299.159908px;}
.y36{bottom:300.329908px;}
.yb0{bottom:304.379908px;}
.yfb{bottom:305.369908px;}
.ye3{bottom:306.449908px;}
.y75{bottom:316.439908px;}
.yaf{bottom:316.799908px;}
.y35{bottom:321.029908px;}
.y74{bottom:321.659908px;}
.y107{bottom:325.979908px;}
.yfa{bottom:326.069908px;}
.ye2{bottom:327.149908px;}
.y10d{bottom:332.729908px;}
.y73{bottom:333.719908px;}
.y11e{bottom:338.939908px;}
.y34{bottom:341.729908px;}
.y10c{bottom:346.679908px;}
.yf9{bottom:346.769908px;}
.ye1{bottom:347.849908px;}
.y72{bottom:350.909908px;}
.y11d{bottom:351.359908px;}
.y33{bottom:362.429908px;}
.yad{bottom:367.379908px;}
.yf8{bottom:367.469908px;}
.y71{bottom:368.189908px;}
.ye0{bottom:368.549908px;}
.yae{bottom:374.129908px;}
.y32{bottom:383.159908px;}
.yc5{bottom:385.409908px;}
.y70{bottom:385.499908px;}
.yac{bottom:388.109908px;}
.yf7{bottom:388.199908px;}
.ydf{bottom:389.279908px;}
.y6f{bottom:402.689908px;}
.y30{bottom:403.859908px;}
.yc4{bottom:406.109908px;}
.y106{bottom:408.809908px;}
.yf6{bottom:408.899908px;}
.yde{bottom:409.979908px;}
.y31{bottom:410.609908px;}
.y118{bottom:415.559908px;}
.y6e{bottom:419.969908px;}
.y2f{bottom:424.559908px;}
.y6d{bottom:425.189908px;}
.yc3{bottom:426.809908px;}
.yab{bottom:429.509908px;}
.yf5{bottom:429.599908px;}
.ydd{bottom:430.679908px;}
.yd7{bottom:437.249908px;}
.y6c{bottom:437.609908px;}
.y2e{bottom:445.259908px;}
.yc2{bottom:447.509908px;}
.yaa{bottom:450.209908px;}
.yf4{bottom:450.299908px;}
.ydc{bottom:451.379908px;}
.yd6{bottom:454.439908px;}
.y2d{bottom:465.959908px;}
.yc1{bottom:468.209908px;}
.ya9{bottom:470.909908px;}
.yf3{bottom:470.999908px;}
.yd5{bottom:471.719908px;}
.y6b{bottom:472.079908px;}
.y2c{bottom:486.659908px;}
.ybf{bottom:488.909908px;}
.yd4{bottom:488.999908px;}
.ya8{bottom:491.609908px;}
.yf2{bottom:491.699908px;}
.y6a{bottom:492.779908px;}
.yd3{bottom:494.219908px;}
.yc0{bottom:495.659908px;}
.y112{bottom:498.359908px;}
.ydb{bottom:499.529908px;}
.yd2{bottom:506.549908px;}
.y2b{bottom:507.359908px;}
.ybe{bottom:509.699908px;}
.ya7{bottom:512.309908px;}
.yf1{bottom:512.939908px;}
.y69{bottom:513.479908px;}
.yda{bottom:520.229908px;}
.y2a{bottom:528.059908px;}
.ybc{bottom:531.659908px;}
.yf0{bottom:532.469908px;}
.ya6{bottom:533.009908px;}
.y68{bottom:534.179908px;}
.ybd{bottom:538.409908px;}
.ybb{bottom:552.359908px;}
.yef{bottom:553.169908px;}
.ya5{bottom:553.709908px;}
.y67{bottom:554.879908px;}
.y10b{bottom:561.629908px;}
.y29{bottom:569.459908px;}
.yb9{bottom:574.319908px;}
.ya4{bottom:574.409908px;}
.y65{bottom:575.579908px;}
.yee{bottom:580.439908px;}
.yba{bottom:581.069908px;}
.y66{bottom:582.329908px;}
.y28{bottom:590.159908px;}
.yb8{bottom:595.019908px;}
.ya3{bottom:595.109908px;}
.y64{bottom:596.279908px;}
.y27{bottom:610.859908px;}
.ya2{bottom:615.809908px;}
.y63{bottom:616.979908px;}
.ya1{bottom:636.509908px;}
.y26{bottom:637.229908px;}
.yb7{bottom:637.679908px;}
.y25{bottom:653.699908px;}
.ya0{bottom:657.209908px;}
.y62{bottom:658.379908px;}
.y24{bottom:670.259908px;}
.y9f{bottom:677.909908px;}
.y61{bottom:679.079908px;}
.yd1{bottom:684.659908px;}
.y23{bottom:686.729908px;}
.y9e{bottom:698.609908px;}
.y60{bottom:699.779908px;}
.y22{bottom:703.199908px;}
.yb6{bottom:706.529908px;}
.y9d{bottom:719.309908px;}
.y21{bottom:719.669908px;}
.y5f{bottom:720.479908px;}
.y105{bottom:726.059908px;}
.y20{bottom:736.139908px;}
.y9c{bottom:740.009908px;}
.y5e{bottom:741.179908px;}
.y1f{bottom:752.609908px;}
.y9b{bottom:760.709908px;}
.y5d{bottom:761.879908px;}
.yd0{bottom:767.459908px;}
.y1e{bottom:769.079908px;}
.y9a{bottom:781.409908px;}
.y5c{bottom:782.579908px;}
.y1d{bottom:785.549908px;}
.y117{bottom:789.329908px;}
.y1c{bottom:802.049908px;}
.y99{bottom:802.139908px;}
.y5a{bottom:803.309908px;}
.yed{bottom:808.889908px;}
.y5b{bottom:810.059908px;}
.y1b{bottom:818.519908px;}
.y98{bottom:822.839908px;}
.y59{bottom:824.009908px;}
.y1a{bottom:835.079908px;}
.y97{bottom:843.539908px;}
.y58{bottom:844.709908px;}
.yb5{bottom:851.459908px;}
.y19{bottom:851.549908px;}
.y96{bottom:864.239908px;}
.y57{bottom:865.409908px;}
.y18{bottom:868.019908px;}
.y111{bottom:870.989908px;}
.y17{bottom:884.489908px;}
.y95{bottom:884.939908px;}
.y56{bottom:886.109908px;}
.y16{bottom:900.599908px;}
.y94{bottom:905.639908px;}
.y55{bottom:906.809908px;}
.y11c{bottom:913.559908px;}
.y15{bottom:917.879908px;}
.y93{bottom:926.339908px;}
.y53{bottom:927.509908px;}
.y54{bottom:934.259908px;}
.y14{bottom:935.069908px;}
.y92{bottom:947.039908px;}
.y52{bottom:948.209908px;}
.y13{bottom:952.349908px;}
.y110{bottom:953.789908px;}
.yb4{bottom:954.959908px;}
.y91{bottom:967.739908px;}
.y51{bottom:968.909908px;}
.y12{bottom:969.629908px;}
.y11b{bottom:975.659908px;}
.y11{bottom:986.819908px;}
.y90{bottom:988.439908px;}
.y50{bottom:989.609908px;}
.yec{bottom:995.189908px;}
.y10{bottom:1004.099908px;}
.y8f{bottom:1009.139908px;}
.y4f{bottom:1010.309908px;}
.yeb{bottom:1015.889908px;}
.y115{bottom:1017.059908px;}
.yf{bottom:1021.289908px;}
.y8e{bottom:1029.839908px;}
.y4e{bottom:1031.009908px;}
.yea{bottom:1036.589908px;}
.yb3{bottom:1037.759908px;}
.ye{bottom:1038.569908px;}
.y8d{bottom:1050.539908px;}
.y4d{bottom:1051.709908px;}
.yd{bottom:1055.849908px;}
.y104{bottom:1057.289908px;}
.y8c{bottom:1071.239908px;}
.y4c{bottom:1072.409908px;}
.yc{bottom:1073.039908px;}
.yb{bottom:1090.949908px;}
.y8b{bottom:1091.939908px;}
.y4b{bottom:1093.109908px;}
.y8a{bottom:1112.639908px;}
.y4a{bottom:1113.809908px;}
.ycf{bottom:1119.389908px;}
.ya{bottom:1127.759908px;}
.y89{bottom:1133.339908px;}
.y49{bottom:1134.509908px;}
.y11a{bottom:1141.259908px;}
.y88{bottom:1154.039908px;}
.y48{bottom:1155.209908px;}
.y9{bottom:1157.099908px;}
.y87{bottom:1174.739908px;}
.y47{bottom:1175.909908px;}
.yd9{bottom:1182.659908px;}
.y8{bottom:1186.349908px;}
.y85{bottom:1195.439908px;}
.y46{bottom:1196.609908px;}
.y86{bottom:1202.189908px;}
.y7{bottom:1215.719908px;}
.ycd{bottom:1216.169908px;}
.y45{bottom:1217.339908px;}
.yce{bottom:1222.919908px;}
.yb2{bottom:1224.089908px;}
.y84{bottom:1236.869908px;}
.y44{bottom:1238.039908px;}
.y119{bottom:1243.619908px;}
.y6{bottom:1244.969908px;}
.y83{bottom:1257.569908px;}
.y43{bottom:1258.739908px;}
.yd8{bottom:1265.489908px;}
.y5{bottom:1274.309908px;}
.y82{bottom:1278.269908px;}
.y42{bottom:1279.439908px;}
.ycc{bottom:1285.019908px;}
.y114{bottom:1286.189908px;}
.y80{bottom:1299.509908px;}
.y41{bottom:1299.869908px;}
.y2{bottom:1319.579908px;}
.hc{height:38.158594px;}
.h10{height:41.893770px;}
.hb{height:46.991602px;}
.h4{height:52.998047px;}
.h9{height:53.709961px;}
.h8{height:55.291992px;}
.h7{height:59.004492px;}
.he{height:64.546875px;}
.hd{height:64.657617px;}
.h3{height:65.526152px;}
.h11{height:67.456230px;}
.h12{height:70.628906px;}
.h6{height:70.664062px;}
.ha{height:72.562500px;}
.hf{height:74.004654px;}
.h5{height:95.603730px;}
.h1{height:1403.250000px;}
.h2{height:1403.369908px;}
.h0{height:1403.370000px;}
.w3{width:893.069973px;}
.w2{width:893.069987px;}
.w0{width:893.070000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5e{left:95.759987px;}
.x1{left:127.649987px;}
.x6{left:132.509987px;}
.x1f{left:137.369987px;}
.x53{left:154.469987px;}
.x3{left:159.599987px;}
.x55{left:163.649973px;}
.x12{left:172.649973px;}
.x56{left:175.709987px;}
.x13{left:178.679987px;}
.x59{left:180.569973px;}
.x7{left:181.649987px;}
.x5b{left:184.619973px;}
.x18{left:186.599987px;}
.x3b{left:191.639987px;}
.x2f{left:193.259987px;}
.x5c{left:196.679987px;}
.x8{left:198.389973px;}
.x5a{left:203.159987px;}
.x9{left:204.419987px;}
.xe{left:223.589973px;}
.xf{left:229.619987px;}
.x2{left:233.939987px;}
.x57{left:235.649973px;}
.x58{left:247.709987px;}
.x2a{left:259.229973px;}
.x42{left:270.119973px;}
.x26{left:271.379973px;}
.x3d{left:282.089973px;}
.x27{left:283.439987px;}
.x3e{left:294.149987px;}
.x4e{left:303.059973px;}
.x4f{left:315.119987px;}
.x20{left:334.829973px;}
.x24{left:342.839973px;}
.x19{left:347.069973px;}
.x16{left:349.049973px;}
.x25{left:354.899987px;}
.x1a{left:359.129987px;}
.x17{left:361.109987px;}
.x36{left:364.529973px;}
.x51{left:367.319973px;}
.x28{left:374.609973px;}
.x37{left:376.589987px;}
.x52{left:379.379987px;}
.x29{left:386.699987px;}
.x5d{left:391.919987px;}
.x3c{left:398.759987px;}
.x1d{left:406.049973px;}
.x1e{left:418.109987px;}
.x45{left:427.019973px;}
.x39{left:428.639973px;}
.x41{left:431.249973px;}
.x46{left:439.079987px;}
.x3a{left:440.699987px;}
.x30{left:443.399973px;}
.x31{left:455.459987px;}
.x38{left:463.379973px;}
.x3f{left:468.599973px;}
.x32{left:474.629973px;}
.x40{left:480.659987px;}
.x33{left:486.689987px;}
.x2d{left:504.689973px;}
.x2e{left:516.749987px;}
.x49{left:521.519973px;}
.x4a{left:533.579987px;}
.x4c{left:539.699973px;}
.x14{left:546.089973px;}
.x4b{left:548.879973px;}
.x4d{left:551.759987px;}
.x15{left:558.149987px;}
.x1b{left:560.579973px;}
.x1c{left:572.639987px;}
.xc{left:581.369973px;}
.xd{left:587.399987px;}
.x10{left:616.199973px;}
.x11{left:622.229987px;}
.x43{left:633.299973px;}
.x44{left:645.389987px;}
.x4{left:661.229973px;}
.x5{left:667.259987px;}
.x23{left:673.379987px;}
.xa{left:721.349973px;}
.xb{left:727.379987px;}
.x34{left:731.879973px;}
.x54{left:733.049987px;}
.x2b{left:735.569973px;}
.x50{left:738.899987px;}
.x35{left:742.499987px;}
.x2c{left:747.629987px;}
.x21{left:749.069973px;}
.x47{left:753.569973px;}
.x22{left:761.129987px;}
.x48{left:765.629987px;}
@media print{
.v3{vertical-align:-73.600000pt;}
.v1{vertical-align:-55.040000pt;}
.v4{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.560000pt;}
.ls9{letter-spacing:-1.664000pt;}
.ls6{letter-spacing:-1.477333pt;}
.ls10{letter-spacing:-0.456533pt;}
.ls27{letter-spacing:-0.367467pt;}
.ls22{letter-spacing:-0.320000pt;}
.ls21{letter-spacing:-0.256000pt;}
.ls20{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.160000pt;}
.lsf{letter-spacing:-0.136533pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls1c{letter-spacing:-0.101867pt;}
.ls15{letter-spacing:-0.047360pt;}
.ls1d{letter-spacing:-0.037120pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls13{letter-spacing:-0.011840pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.069867pt;}
.ls1b{letter-spacing:0.080000pt;}
.ls4{letter-spacing:0.106667pt;}
.ls14{letter-spacing:0.124267pt;}
.lsd{letter-spacing:0.124480pt;}
.lsc{letter-spacing:0.128000pt;}
.ls1a{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.384000pt;}
.ls1e{letter-spacing:0.400000pt;}
.ls29{letter-spacing:0.448000pt;}
.ls18{letter-spacing:0.720000pt;}
.ls2c{letter-spacing:1.040000pt;}
.ls28{letter-spacing:1.280000pt;}
.ls26{letter-spacing:1.360000pt;}
.ls17{letter-spacing:3.600000pt;}
.ls11{letter-spacing:5.280000pt;}
.ls2e{letter-spacing:5.520000pt;}
.ls19{letter-spacing:6.800000pt;}
.ls2d{letter-spacing:16.960000pt;}
.ls2b{letter-spacing:24.128000pt;}
.ls25{letter-spacing:24.768000pt;}
.ls2a{letter-spacing:27.968000pt;}
.ls23{letter-spacing:28.608000pt;}
.ls24{letter-spacing:39.808000pt;}
.ls16{letter-spacing:48.768000pt;}
.ls1f{letter-spacing:97.280000pt;}
.ls3{letter-spacing:97.600000pt;}
.ls0{letter-spacing:365.920000pt;}
.ws12{word-spacing:-64.000000pt;}
.wsc{word-spacing:-16.128000pt;}
.ws14{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.ws18{word-spacing:-15.808000pt;}
.ws19{word-spacing:-15.744000pt;}
.ws15{word-spacing:-15.680000pt;}
.ws6{word-spacing:-13.520000pt;}
.ws13{word-spacing:-13.496533pt;}
.ws10{word-spacing:-13.484267pt;}
.ws4{word-spacing:-13.360000pt;}
.wsf{word-spacing:-13.348160pt;}
.ws11{word-spacing:-13.312640pt;}
.wsb{word-spacing:-13.304427pt;}
.wsd{word-spacing:-13.223467pt;}
.ws5{word-spacing:-13.200000pt;}
.ws17{word-spacing:-12.992533pt;}
.wse{word-spacing:-12.903467pt;}
.ws0{word-spacing:-12.656000pt;}
.ws2{word-spacing:-12.640000pt;}
.ws3{word-spacing:-11.162667pt;}
.ws7{word-spacing:-10.848000pt;}
.ws9{word-spacing:-8.640000pt;}
.ws16{word-spacing:-0.064000pt;}
.wsa{word-spacing:0.000000pt;}
._1b{margin-left:-4.387200pt;}
._1a{margin-left:-3.214400pt;}
._6{margin-left:-2.235200pt;}
._5{margin-left:-1.110720pt;}
._b{width:0.971840pt;}
._7{width:2.030720pt;}
._8{width:2.939200pt;}
._c{width:4.224000pt;}
._d{width:5.248000pt;}
._1c{width:6.400000pt;}
._1d{width:7.360000pt;}
._e{width:8.320000pt;}
._22{width:9.984000pt;}
._18{width:10.880000pt;}
._17{width:11.840000pt;}
._19{width:12.736000pt;}
._15{width:14.208000pt;}
._29{width:15.104000pt;}
._a{width:16.198720pt;}
._9{width:17.168000pt;}
._23{width:18.112000pt;}
._16{width:19.712000pt;}
._13{width:21.249387pt;}
._12{width:22.208000pt;}
._2d{width:23.108160pt;}
._14{width:24.000000pt;}
._26{width:25.665387pt;}
._25{width:26.624000pt;}
._1e{width:27.584000pt;}
._2a{width:28.480000pt;}
._3{width:29.562240pt;}
._2{width:30.502080pt;}
._4{width:32.015253pt;}
._28{width:33.878720pt;}
._27{width:35.072000pt;}
._1f{width:38.209600pt;}
._2b{width:42.560000pt;}
._20{width:45.245547pt;}
._24{width:51.248960pt;}
._2c{width:67.530133pt;}
._10{width:79.087893pt;}
._11{width:173.325440pt;}
._f{width:216.032000pt;}
._0{width:716.106667pt;}
._21{width:1412.472747pt;}
._1{width:1554.293333pt;}
.fs8{font-size:34.560000pt;}
.fs9{font-size:37.440000pt;}
.fs7{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;}
.y4{bottom:40.319919pt;}
.y81{bottom:54.159919pt;}
.y3{bottom:67.919919pt;}
.y40{bottom:97.279919pt;}
.y3f{bottom:101.919919pt;}
.y3e{bottom:112.639919pt;}
.y10f{bottom:112.959919pt;}
.ycb{bottom:117.279919pt;}
.y7f{bottom:127.999919pt;}
.y103{bottom:128.319919pt;}
.y3d{bottom:132.639919pt;}
.y7e{bottom:143.279919pt;}
.y3c{bottom:143.599919pt;}
.y102{bottom:143.679919pt;}
.yca{bottom:147.919919pt;}
.y7d{bottom:158.639919pt;}
.ye9{bottom:158.959919pt;}
.y10e{bottom:161.039919pt;}
.y101{bottom:162.079919pt;}
.yff{bottom:163.279919pt;}
.y7c{bottom:173.999919pt;}
.y3b{bottom:174.959919pt;}
.yc9{bottom:178.639919pt;}
.y10a{bottom:179.439919pt;}
.ye8{bottom:180.479919pt;}
.y7b{bottom:189.279919pt;}
.y113{bottom:189.599919pt;}
.y3a{bottom:193.359919pt;}
.yb1{bottom:193.919919pt;}
.y109{bottom:197.839919pt;}
.ye7{bottom:198.879919pt;}
.y7a{bottom:204.639919pt;}
.yfe{bottom:204.959919pt;}
.yc8{bottom:209.279919pt;}
.y39{bottom:211.759919pt;}
.y108{bottom:216.239919pt;}
.ye6{bottom:217.279919pt;}
.y79{bottom:219.999919pt;}
.y38{bottom:230.159919pt;}
.yfd{bottom:234.639919pt;}
.y78{bottom:235.279919pt;}
.ye5{bottom:235.679919pt;}
.yc7{bottom:239.919919pt;}
.y37{bottom:248.559919pt;}
.y77{bottom:250.639919pt;}
.y116{bottom:250.959919pt;}
.yfc{bottom:253.039919pt;}
.ye4{bottom:254.079919pt;}
.yc6{bottom:255.279919pt;}
.y100{bottom:260.079919pt;}
.y76{bottom:265.919919pt;}
.y36{bottom:266.959919pt;}
.yb0{bottom:270.559919pt;}
.yfb{bottom:271.439919pt;}
.ye3{bottom:272.399919pt;}
.y75{bottom:281.279919pt;}
.yaf{bottom:281.599919pt;}
.y35{bottom:285.359919pt;}
.y74{bottom:285.919919pt;}
.y107{bottom:289.759919pt;}
.yfa{bottom:289.839919pt;}
.ye2{bottom:290.799919pt;}
.y10d{bottom:295.759919pt;}
.y73{bottom:296.639919pt;}
.y11e{bottom:301.279919pt;}
.y34{bottom:303.759919pt;}
.y10c{bottom:308.159919pt;}
.yf9{bottom:308.239919pt;}
.ye1{bottom:309.199919pt;}
.y72{bottom:311.919919pt;}
.y11d{bottom:312.319919pt;}
.y33{bottom:322.159919pt;}
.yad{bottom:326.559919pt;}
.yf8{bottom:326.639919pt;}
.y71{bottom:327.279919pt;}
.ye0{bottom:327.599919pt;}
.yae{bottom:332.559919pt;}
.y32{bottom:340.586585pt;}
.yc5{bottom:342.586585pt;}
.y70{bottom:342.666585pt;}
.yac{bottom:344.986585pt;}
.yf7{bottom:345.066585pt;}
.ydf{bottom:346.026585pt;}
.y6f{bottom:357.946585pt;}
.y30{bottom:358.986585pt;}
.yc4{bottom:360.986585pt;}
.y106{bottom:363.386585pt;}
.yf6{bottom:363.466585pt;}
.yde{bottom:364.426585pt;}
.y31{bottom:364.986585pt;}
.y118{bottom:369.386585pt;}
.y6e{bottom:373.306585pt;}
.y2f{bottom:377.386585pt;}
.y6d{bottom:377.946585pt;}
.yc3{bottom:379.386585pt;}
.yab{bottom:381.786585pt;}
.yf5{bottom:381.866585pt;}
.ydd{bottom:382.826585pt;}
.yd7{bottom:388.666585pt;}
.y6c{bottom:388.986585pt;}
.y2e{bottom:395.786585pt;}
.yc2{bottom:397.786585pt;}
.yaa{bottom:400.186585pt;}
.yf4{bottom:400.266585pt;}
.ydc{bottom:401.226585pt;}
.yd6{bottom:403.946585pt;}
.y2d{bottom:414.186585pt;}
.yc1{bottom:416.186585pt;}
.ya9{bottom:418.586585pt;}
.yf3{bottom:418.666585pt;}
.yd5{bottom:419.306585pt;}
.y6b{bottom:419.626585pt;}
.y2c{bottom:432.586585pt;}
.ybf{bottom:434.586585pt;}
.yd4{bottom:434.666585pt;}
.ya8{bottom:436.986585pt;}
.yf2{bottom:437.066585pt;}
.y6a{bottom:438.026585pt;}
.yd3{bottom:439.306585pt;}
.yc0{bottom:440.586585pt;}
.y112{bottom:442.986585pt;}
.ydb{bottom:444.026585pt;}
.yd2{bottom:450.266585pt;}
.y2b{bottom:450.986585pt;}
.ybe{bottom:453.066585pt;}
.ya7{bottom:455.386585pt;}
.yf1{bottom:455.946585pt;}
.y69{bottom:456.426585pt;}
.yda{bottom:462.426585pt;}
.y2a{bottom:469.386585pt;}
.ybc{bottom:472.586585pt;}
.yf0{bottom:473.306585pt;}
.ya6{bottom:473.786585pt;}
.y68{bottom:474.826585pt;}
.ybd{bottom:478.586585pt;}
.ybb{bottom:490.986585pt;}
.yef{bottom:491.706585pt;}
.ya5{bottom:492.186585pt;}
.y67{bottom:493.226585pt;}
.y10b{bottom:499.226585pt;}
.y29{bottom:506.186585pt;}
.yb9{bottom:510.506585pt;}
.ya4{bottom:510.586585pt;}
.y65{bottom:511.626585pt;}
.yee{bottom:515.946585pt;}
.yba{bottom:516.506585pt;}
.y66{bottom:517.626585pt;}
.y28{bottom:524.586585pt;}
.yb8{bottom:528.906585pt;}
.ya3{bottom:528.986585pt;}
.y64{bottom:530.026585pt;}
.y27{bottom:542.986585pt;}
.ya2{bottom:547.386585pt;}
.y63{bottom:548.426585pt;}
.ya1{bottom:565.786585pt;}
.y26{bottom:566.426585pt;}
.yb7{bottom:566.826585pt;}
.y25{bottom:581.066585pt;}
.ya0{bottom:584.186585pt;}
.y62{bottom:585.226585pt;}
.y24{bottom:595.786585pt;}
.y9f{bottom:602.586585pt;}
.y61{bottom:603.626585pt;}
.yd1{bottom:608.586585pt;}
.y23{bottom:610.426585pt;}
.y9e{bottom:620.986585pt;}
.y60{bottom:622.026585pt;}
.y22{bottom:625.066585pt;}
.yb6{bottom:628.026585pt;}
.y9d{bottom:639.386585pt;}
.y21{bottom:639.706585pt;}
.y5f{bottom:640.426585pt;}
.y105{bottom:645.386585pt;}
.y20{bottom:654.346585pt;}
.y9c{bottom:657.786585pt;}
.y5e{bottom:658.826585pt;}
.y1f{bottom:668.986585pt;}
.y9b{bottom:676.186585pt;}
.y5d{bottom:677.226585pt;}
.yd0{bottom:682.186585pt;}
.y1e{bottom:683.626585pt;}
.y9a{bottom:694.586585pt;}
.y5c{bottom:695.626585pt;}
.y1d{bottom:698.266585pt;}
.y117{bottom:701.626585pt;}
.y1c{bottom:712.933252pt;}
.y99{bottom:713.013252pt;}
.y5a{bottom:714.053252pt;}
.yed{bottom:719.013252pt;}
.y5b{bottom:720.053252pt;}
.y1b{bottom:727.573252pt;}
.y98{bottom:731.413252pt;}
.y59{bottom:732.453252pt;}
.y1a{bottom:742.293252pt;}
.y97{bottom:749.813252pt;}
.y58{bottom:750.853252pt;}
.yb5{bottom:756.853252pt;}
.y19{bottom:756.933252pt;}
.y96{bottom:768.213252pt;}
.y57{bottom:769.253252pt;}
.y18{bottom:771.573252pt;}
.y111{bottom:774.213252pt;}
.y17{bottom:786.213252pt;}
.y95{bottom:786.613252pt;}
.y56{bottom:787.653252pt;}
.y16{bottom:800.533252pt;}
.y94{bottom:805.013252pt;}
.y55{bottom:806.053252pt;}
.y11c{bottom:812.053252pt;}
.y15{bottom:815.893252pt;}
.y93{bottom:823.413252pt;}
.y53{bottom:824.453252pt;}
.y54{bottom:830.453252pt;}
.y14{bottom:831.173252pt;}
.y92{bottom:841.813252pt;}
.y52{bottom:842.853252pt;}
.y13{bottom:846.533252pt;}
.y110{bottom:847.813252pt;}
.yb4{bottom:848.853252pt;}
.y91{bottom:860.213252pt;}
.y51{bottom:861.253252pt;}
.y12{bottom:861.893252pt;}
.y11b{bottom:867.253252pt;}
.y11{bottom:877.173252pt;}
.y90{bottom:878.613252pt;}
.y50{bottom:879.653252pt;}
.yec{bottom:884.613252pt;}
.y10{bottom:892.533252pt;}
.y8f{bottom:897.013252pt;}
.y4f{bottom:898.053252pt;}
.yeb{bottom:903.013252pt;}
.y115{bottom:904.053252pt;}
.yf{bottom:907.813252pt;}
.y8e{bottom:915.413252pt;}
.y4e{bottom:916.453252pt;}
.yea{bottom:921.413252pt;}
.yb3{bottom:922.453252pt;}
.ye{bottom:923.173252pt;}
.y8d{bottom:933.813252pt;}
.y4d{bottom:934.853252pt;}
.yd{bottom:938.533252pt;}
.y104{bottom:939.813252pt;}
.y8c{bottom:952.213252pt;}
.y4c{bottom:953.253252pt;}
.yc{bottom:953.813252pt;}
.yb{bottom:969.733252pt;}
.y8b{bottom:970.613252pt;}
.y4b{bottom:971.653252pt;}
.y8a{bottom:989.013252pt;}
.y4a{bottom:990.053252pt;}
.ycf{bottom:995.013252pt;}
.ya{bottom:1002.453252pt;}
.y89{bottom:1007.413252pt;}
.y49{bottom:1008.453252pt;}
.y11a{bottom:1014.453252pt;}
.y88{bottom:1025.813252pt;}
.y48{bottom:1026.853252pt;}
.y9{bottom:1028.533252pt;}
.y87{bottom:1044.213252pt;}
.y47{bottom:1045.253252pt;}
.yd9{bottom:1051.253252pt;}
.y8{bottom:1054.533252pt;}
.y85{bottom:1062.613252pt;}
.y46{bottom:1063.653252pt;}
.y86{bottom:1068.613252pt;}
.y7{bottom:1080.639919pt;}
.ycd{bottom:1081.039919pt;}
.y45{bottom:1082.079919pt;}
.yce{bottom:1087.039919pt;}
.yb2{bottom:1088.079919pt;}
.y84{bottom:1099.439919pt;}
.y44{bottom:1100.479919pt;}
.y119{bottom:1105.439919pt;}
.y6{bottom:1106.639919pt;}
.y83{bottom:1117.839919pt;}
.y43{bottom:1118.879919pt;}
.yd8{bottom:1124.879919pt;}
.y5{bottom:1132.719919pt;}
.y82{bottom:1136.239919pt;}
.y42{bottom:1137.279919pt;}
.ycc{bottom:1142.239919pt;}
.y114{bottom:1143.279919pt;}
.y80{bottom:1155.119919pt;}
.y41{bottom:1155.439919pt;}
.y2{bottom:1172.959919pt;}
.hc{height:33.918750pt;}
.h10{height:37.238906pt;}
.hb{height:41.770312pt;}
.h4{height:47.109375pt;}
.h9{height:47.742188pt;}
.h8{height:49.148438pt;}
.h7{height:52.448437pt;}
.he{height:57.375000pt;}
.hd{height:57.473437pt;}
.h3{height:58.245469pt;}
.h11{height:59.961094pt;}
.h12{height:62.781250pt;}
.h6{height:62.812500pt;}
.ha{height:64.500000pt;}
.hf{height:65.781915pt;}
.h5{height:84.981094pt;}
.h1{height:1247.333333pt;}
.h2{height:1247.439919pt;}
.h0{height:1247.440000pt;}
.w3{width:793.839976pt;}
.w2{width:793.839988pt;}
.w0{width:793.840000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5e{left:85.119988pt;}
.x1{left:113.466655pt;}
.x6{left:117.786655pt;}
.x1f{left:122.106655pt;}
.x53{left:137.306655pt;}
.x3{left:141.866655pt;}
.x55{left:145.466643pt;}
.x12{left:153.466643pt;}
.x56{left:156.186655pt;}
.x13{left:158.826655pt;}
.x59{left:160.506643pt;}
.x7{left:161.466655pt;}
.x5b{left:164.106643pt;}
.x18{left:165.866655pt;}
.x3b{left:170.346655pt;}
.x2f{left:171.786655pt;}
.x5c{left:174.826655pt;}
.x8{left:176.346643pt;}
.x5a{left:180.586655pt;}
.x9{left:181.706655pt;}
.xe{left:198.746643pt;}
.xf{left:204.106655pt;}
.x2{left:207.946655pt;}
.x57{left:209.466643pt;}
.x58{left:220.186655pt;}
.x2a{left:230.426643pt;}
.x42{left:240.106643pt;}
.x26{left:241.226643pt;}
.x3d{left:250.746643pt;}
.x27{left:251.946655pt;}
.x3e{left:261.466655pt;}
.x4e{left:269.386643pt;}
.x4f{left:280.106655pt;}
.x20{left:297.626643pt;}
.x24{left:304.746643pt;}
.x19{left:308.506643pt;}
.x16{left:310.266643pt;}
.x25{left:315.466655pt;}
.x1a{left:319.226655pt;}
.x17{left:320.986655pt;}
.x36{left:324.026643pt;}
.x51{left:326.506643pt;}
.x28{left:332.986643pt;}
.x37{left:334.746655pt;}
.x52{left:337.226655pt;}
.x29{left:343.733322pt;}
.x5d{left:348.373322pt;}
.x3c{left:354.453322pt;}
.x1d{left:360.933310pt;}
.x1e{left:371.653322pt;}
.x45{left:379.573310pt;}
.x39{left:381.013310pt;}
.x41{left:383.333310pt;}
.x46{left:390.293322pt;}
.x3a{left:391.733322pt;}
.x30{left:394.133310pt;}
.x31{left:404.853322pt;}
.x38{left:411.893310pt;}
.x3f{left:416.533310pt;}
.x32{left:421.893310pt;}
.x40{left:427.253322pt;}
.x33{left:432.613322pt;}
.x2d{left:448.613310pt;}
.x2e{left:459.333322pt;}
.x49{left:463.573310pt;}
.x4a{left:474.293322pt;}
.x4c{left:479.733310pt;}
.x14{left:485.413310pt;}
.x4b{left:487.893310pt;}
.x4d{left:490.453322pt;}
.x15{left:496.133322pt;}
.x1b{left:498.293310pt;}
.x1c{left:509.013322pt;}
.xc{left:516.773310pt;}
.xd{left:522.133322pt;}
.x10{left:547.733310pt;}
.x11{left:553.093322pt;}
.x43{left:562.933310pt;}
.x44{left:573.679988pt;}
.x4{left:587.759976pt;}
.x5{left:593.119988pt;}
.x23{left:598.559988pt;}
.xa{left:641.199976pt;}
.xb{left:646.559988pt;}
.x34{left:650.559976pt;}
.x54{left:651.599988pt;}
.x2b{left:653.839976pt;}
.x50{left:656.799988pt;}
.x35{left:659.999988pt;}
.x2c{left:664.559988pt;}
.x21{left:665.839976pt;}
.x47{left:669.839976pt;}
.x22{left:676.559988pt;}
.x48{left:680.559988pt;}
}




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