
    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_2e57695df2a91be877018ab4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.043000;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_614a5860185bca390a782655.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.007000;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_fa822349645370abf0016a94.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.043000;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_3279d8216d60105b4b50f388.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.001000;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_9a2d2d715f0eb9769e827031.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.945000;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_25cc74774c31a9cf73b8fbd2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.731445;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_77c4fb4e409571db01462d1f.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_b25bfeef1bb346b886b826bb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.400000;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_2fa47a0581233ac52d4f27f5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.400000;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_f5add2562d693174f6a6f4d4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.m2{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:-30.786220px;}
.v2{vertical-align:-17.407180px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:38.901480px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:50.986877px;}
.ls7{letter-spacing:50.987484px;}
.ls9{letter-spacing:51.024210px;}
.ls5{letter-spacing:107.971947px;}
.ls1{letter-spacing:107.981870px;}
.ls6{letter-spacing:107.986152px;}
.ls4{letter-spacing:107.986185px;}
.ls3{letter-spacing:107.986253px;}
.ls2{letter-spacing:108.000354px;}
.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;}
}
.ws1c{word-spacing:-35.250000px;}
.ws13{word-spacing:-34.262999px;}
.ws2{word-spacing:-29.610001px;}
.ws14{word-spacing:-25.536002px;}
.ws17{word-spacing:-23.957875px;}
.wsc{word-spacing:-22.560001px;}
.wse{word-spacing:-22.264198px;}
.ws4{word-spacing:-21.150001px;}
.ws3{word-spacing:-20.748001px;}
.ws18{word-spacing:-20.338787px;}
.ws1b{word-spacing:-20.094000px;}
.ws10{word-spacing:-19.464497px;}
.ws12{word-spacing:-19.464337px;}
.ws5{word-spacing:-19.152001px;}
.wsd{word-spacing:-18.330001px;}
.ws16{word-spacing:-17.968477px;}
.wsf{word-spacing:-17.196078px;}
.ws11{word-spacing:-17.195937px;}
.ws1d{word-spacing:-16.920001px;}
.ws1e{word-spacing:-16.836000px;}
.wsb{word-spacing:-16.215000px;}
.ws6{word-spacing:-15.510001px;}
.ws7{word-spacing:-14.364000px;}
.ws0{word-spacing:-12.690000px;}
.ws8{word-spacing:-12.204000px;}
.wsa{word-spacing:-11.280001px;}
.ws1{word-spacing:0.000000px;}
.ws9{word-spacing:726.047269px;}
.ws15{word-spacing:762.091856px;}
.ws19{word-spacing:762.091888px;}
.ws1a{word-spacing:762.093139px;}
._2{margin-left:-15.793201px;}
._e{margin-left:-14.538000px;}
._13{margin-left:-13.122000px;}
._6{margin-left:-11.340000px;}
._4{margin-left:-8.594400px;}
._c{margin-left:-6.942000px;}
._5{margin-left:-5.256000px;}
._3{margin-left:-3.504000px;}
._1{margin-left:-2.268000px;}
._0{margin-left:-1.026000px;}
._1b{width:1.741801px;}
._14{width:3.439187px;}
._16{width:4.818348px;}
._7{width:14.977170px;}
._17{width:141.922976px;}
._11{width:163.398616px;}
._15{width:252.342845px;}
._10{width:439.939800px;}
._8{width:595.662409px;}
._a{width:626.250299px;}
._b{width:955.808473px;}
._1a{width:1218.932503px;}
._18{width:2127.890633px;}
._d{width:2174.581330px;}
._1d{width:2261.371842px;}
._1c{width:2263.531842px;}
._19{width:2274.007906px;}
._12{width:2276.437933px;}
._f{width:2287.940023px;}
._9{width:2293.664023px;}
.fce{color:rgb(91,59,143);}
.fcd{color:rgb(243,146,0);}
.fc1{color:rgb(127,127,127);}
.fc2{color:rgb(255,255,255);}
.fc4{color:rgb(0,0,0);}
.fcc{color:rgb(89,89,89);}
.fc0{color:rgb(153,153,153);}
.fc3{color:transparent;}
.fc6{color:rgb(239,130,0);}
.fcf{color:rgb(67,67,67);}
.fc5{color:rgb(111,182,64);}
.fca{color:rgb(223,120,0);}
.fc7{color:rgb(96,158,55);}
.fcb{color:rgb(28,126,194);}
.fc8{color:rgb(91,60,144);}
.fc9{color:rgb(91,155,213);}
.fs1{font-size:36.000001px;}
.fsf{font-size:42.000000px;}
.fse{font-size:48.000003px;}
.fs0{font-size:54.000002px;}
.fs19{font-size:56.913005px;}
.fs17{font-size:56.913608px;}
.fs1b{font-size:59.470202px;}
.fs15{font-size:65.099999px;}
.fsd{font-size:66.000004px;}
.fs12{font-size:69.000001px;}
.fsb{font-size:72.000002px;}
.fs1a{font-size:73.174201px;}
.fs18{font-size:73.174799px;}
.fs3{font-size:74.999999px;}
.fs1d{font-size:76.461604px;}
.fs4{font-size:76.500002px;}
.fs9{font-size:78.000005px;}
.fs11{font-size:81.000003px;}
.fs16{font-size:83.699994px;}
.fs6{font-size:84.000000px;}
.fsa{font-size:90.000003px;}
.fsc{font-size:96.000006px;}
.fs14{font-size:97.649999px;}
.fs1c{font-size:101.948403px;}
.fs1f{font-size:102.000000px;}
.fs20{font-size:116.550013px;}
.fs7{font-size:126.000004px;}
.fs8{font-size:145.799996px;}
.fs13{font-size:149.999999px;}
.fs1e{font-size:156.000011px;}
.fs5{font-size:162.000005px;}
.fs2{font-size:175.200009px;}
.fs10{font-size:210.000013px;}
.fs21{font-size:252.000008px;}
.y0{bottom:0.000000px;}
.y4{bottom:17.879855px;}
.y3f{bottom:18.115018px;}
.y14{bottom:28.125204px;}
.y3{bottom:28.679854px;}
.y1{bottom:28.980938px;}
.y2{bottom:32.476999px;}
.y123{bottom:34.921982px;}
.y116{bottom:52.278471px;}
.y32{bottom:61.147083px;}
.y115{bottom:68.478474px;}
.y9{bottom:70.562570px;}
.y57{bottom:75.004937px;}
.y23{bottom:75.636163px;}
.y1e{bottom:76.189483px;}
.ye0{bottom:77.312375px;}
.y31{bottom:77.347086px;}
.y11f{bottom:78.378519px;}
.y8c{bottom:78.380652px;}
.yb2{bottom:88.176617px;}
.y8{bottom:88.562572px;}
.yf4{bottom:91.767190px;}
.ydd{bottom:92.604812px;}
.y11c{bottom:92.621009px;}
.y56{bottom:95.254937px;}
.y67{bottom:96.214934px;}
.y22{bottom:97.011164px;}
.y1d{bottom:97.564484px;}
.yfc{bottom:98.624909px;}
.y77{bottom:98.956086px;}
.ydf{bottom:100.250849px;}
.y8b{bottom:100.332912px;}
.yae{bottom:103.469069px;}
.yc5{bottom:103.877590px;}
.y62{bottom:106.149696px;}
.yc{bottom:107.117376px;}
.y81{bottom:107.659413px;}
.yb1{bottom:111.115105px;}
.yc8{bottom:111.523626px;}
.y30{bottom:111.750543px;}
.yf3{bottom:114.705677px;}
.y9d{bottom:114.927464px;}
.y55{bottom:115.504938px;}
.y4e{bottom:116.719938px;}
.ydc{bottom:117.072501px;}
.y21{bottom:118.386164px;}
.y1c{bottom:118.939484px;}
.yfb{bottom:119.999909px;}
.y8a{bottom:122.285170px;}
.yde{bottom:123.189332px;}
.y66{bottom:123.214935px;}
.y108{bottom:123.909172px;}
.y76{bottom:125.321610px;}
.yad{bottom:126.407542px;}
.yc4{bottom:126.816063px;}
.y2f{bottom:127.950532px;}
.y61{bottom:129.549697px;}
.y80{bottom:129.611851px;}
.yf0{bottom:129.998114px;}
.yb0{bottom:134.053579px;}
.yc7{bottom:134.462100px;}
.yb{bottom:135.182385px;}
.y54{bottom:135.754939px;}
.yf2{bottom:137.644151px;}
.y20{bottom:139.761165px;}
.y1b{bottom:140.314485px;}
.y4d{bottom:140.344939px;}
.yfa{bottom:141.374910px;}
.y9c{bottom:143.727465px;}
.y2e{bottom:144.150544px;}
.y107{bottom:145.284173px;}
.y125{bottom:149.494114px;}
.y65{bottom:150.214939px;}
.yac{bottom:150.875231px;}
.y11e{bottom:151.098510px;}
.yc3{bottom:151.283752px;}
.y75{bottom:151.687110px;}
.y11b{bottom:153.911010px;}
.y13{bottom:154.153684px;}
.yef{bottom:154.465803px;}
.y53{bottom:156.004939px;}
.yaf{bottom:156.992062px;}
.yc6{bottom:157.400583px;}
.yf1{bottom:160.582634px;}
.y1f{bottom:162.441167px;}
.y1a{bottom:162.994487px;}
.ya{bottom:163.247386px;}
.y4c{bottom:163.969940px;}
.y2d{bottom:172.278543px;}
.y9b{bottom:172.527500px;}
.yf9{bottom:174.633691px;}
.y10b{bottom:174.661209px;}
.y52{bottom:176.254940px;}
.y64{bottom:177.214937px;}
.yd8{bottom:177.682846px;}
.y74{bottom:178.052623px;}
.y89{bottom:182.469177px;}
.ydb{bottom:185.328882px;}
.y4b{bottom:187.594940px;}
.y11d{bottom:196.098520px;}
.y51{bottom:196.504937px;}
.y5e{bottom:198.837294px;}
.y11a{bottom:198.911015px;}
.yd7{bottom:200.621319px;}
.y9a{bottom:201.327501px;}
.y126{bottom:201.799225px;}
.y2c{bottom:202.620542px;}
.y73{bottom:204.418123px;}
.y88{bottom:204.421436px;}
.yf8{bottom:205.008692px;}
.y10a{bottom:205.036210px;}
.yc2{bottom:207.719278px;}
.y7f{bottom:207.986185px;}
.yda{bottom:208.267356px;}
.y12{bottom:210.853675px;}
.y4a{bottom:211.624941px;}
.y19{bottom:214.840619px;}
.y50{bottom:216.754938px;}
.y2b{bottom:221.250536px;}
.yd6{bottom:225.089008px;}
.y87{bottom:226.373695px;}
.y7e{bottom:229.938623px;}
.y99{bottom:230.127513px;}
.yc1{bottom:230.657748px;}
.y72{bottom:230.783635px;}
.yd9{bottom:231.205839px;}
.yee{bottom:233.134087px;}
.yf7{bottom:235.383693px;}
.y109{bottom:235.411211px;}
.y4f{bottom:237.004939px;}
.y18{bottom:238.240619px;}
.y2a{bottom:239.880532px;}
.y33{bottom:245.145017px;}
.ybd{bottom:245.950200px;}
.yea{bottom:248.426539px;}
.ya8{bottom:248.473654px;}
.yc0{bottom:253.596235px;}
.yed{bottom:256.072574px;}
.yab{bottom:256.119689px;}
.y71{bottom:257.149125px;}
.y98{bottom:258.927514px;}
.y29{bottom:259.770533px;}
.y7{bottom:262.664235px;}
.y11{bottom:267.553665px;}
.ybc{bottom:268.888673px;}
.ye9{bottom:271.365011px;}
.y110{bottom:271.365334px;}
.ya7{bottom:271.412126px;}
.yf6{bottom:273.219596px;}
.y127{bottom:274.906769px;}
.ybf{bottom:276.534709px;}
.yec{bottom:279.011048px;}
.yaa{bottom:279.058163px;}
.y90{bottom:280.327220px;}
.y45{bottom:282.008262px;}
.y70{bottom:282.761315px;}
.y5b{bottom:282.924563px;}
.y7d{bottom:286.360505px;}
.y97{bottom:287.727515px;}
.y119{bottom:292.309944px;}
.yd5{bottom:293.345389px;}
.ybb{bottom:293.356361px;}
.ye8{bottom:295.832700px;}
.ya6{bottom:295.879815px;}
.y49{bottom:297.549564px;}
.ybe{bottom:299.473192px;}
.yeb{bottom:301.949531px;}
.ya9{bottom:301.996646px;}
.y6f{bottom:305.360327px;}
.y7c{bottom:308.312945px;}
.y86{bottom:308.509939px;}
.yd2{bottom:308.637826px;}
.y44{bottom:309.008263px;}
.y121{bottom:309.319067px;}
.y60{bottom:309.432152px;}
.y6{bottom:309.968237px;}
.y5a{bottom:312.174564px;}
.y10f{bottom:314.565337px;}
.y69{bottom:316.194009px;}
.yd4{bottom:316.283863px;}
.y96{bottom:316.527516px;}
.y8f{bottom:319.693210px;}
.y10{bottom:324.253678px;}
.y102{bottom:325.834191px;}
.y37{bottom:326.361647px;}
.y48{bottom:326.799565px;}
.y6e{bottom:327.959333px;}
.y7b{bottom:330.265384px;}
.y85{bottom:330.462197px;}
.y5f{bottom:332.832152px;}
.yd1{bottom:333.105515px;}
.y43{bottom:336.008260px;}
.y63{bottom:336.660821px;}
.yf5{bottom:338.064010px;}
.yd3{bottom:339.222346px;}
.y34{bottom:339.796031px;}
.y59{bottom:341.424565px;}
.y124{bottom:344.121382px;}
.y95{bottom:345.327528px;}
.y106{bottom:347.167859px;}
.y101{bottom:347.209192px;}
.y6d{bottom:350.558328px;}
.y47{bottom:356.049566px;}
.y5{bottom:357.272235px;}
.y8e{bottom:359.059205px;}
.y68{bottom:359.934009px;}
.y42{bottom:363.008261px;}
.y118{bottom:367.909935px;}
.y105{bottom:368.542860px;}
.y100{bottom:368.584192px;}
.y36{bottom:368.857734px;}
.y114{bottom:369.688380px;}
.y58{bottom:370.674563px;}
.y6c{bottom:373.157329px;}
.y3e{bottom:376.519538px;}
.y10e{bottom:377.151142px;}
.ya5{bottom:378.185764px;}
.yd0{bottom:378.423409px;}
.y120{bottom:379.159058px;}
.y94{bottom:380.427522px;}
.yf{bottom:380.953692px;}
.yb7{bottom:388.022809px;}
.ye4{bottom:389.793436px;}
.y28{bottom:390.463828px;}
.ya1{bottom:393.478216px;}
.ycc{bottom:393.715861px;}
.y104{bottom:393.814804px;}
.yba{bottom:395.668845px;}
.y6b{bottom:396.509624px;}
.ye7{bottom:397.439471px;}
.y8d{bottom:398.425200px;}
.ya4{bottom:401.124251px;}
.ycf{bottom:401.361896px;}
.y5d{bottom:403.906193px;}
.yff{bottom:404.784714px;}
.y7a{bottom:408.639695px;}
.y27{bottom:409.093824px;}
.yb6{bottom:410.961282px;}
.y35{bottom:411.373791px;}
.y84{bottom:412.598441px;}
.ye3{bottom:412.731908px;}
.y117{bottom:412.909940px;}
.y10d{bottom:414.951141px;}
.ya0{bottom:416.416689px;}
.ycb{bottom:416.654334px;}
.y93{bottom:418.227519px;}
.yb9{bottom:418.607319px;}
.ye6{bottom:420.377945px;}
.y16{bottom:421.184406px;}
.y113{bottom:422.407890px;}
.ya3{bottom:424.062725px;}
.y103{bottom:424.189805px;}
.yce{bottom:424.300370px;}
.y46{bottom:425.157868px;}
.y6a{bottom:427.375121px;}
.y26{bottom:428.983824px;}
.y79{bottom:430.592133px;}
.y83{bottom:434.550699px;}
.yfe{bottom:435.159714px;}
.yb5{bottom:435.428971px;}
.ye2{bottom:437.199597px;}
.ye{bottom:437.653693px;}
.y9f{bottom:440.884377px;}
.yca{bottom:441.122022px;}
.yb8{bottom:441.545802px;}
.ye5{bottom:443.316428px;}
.ya2{bottom:447.001208px;}
.ycd{bottom:447.238853px;}
.y10c{bottom:452.751141px;}
.y15{bottom:458.984403px;}
.y39{bottom:463.806817px;}
.y3d{bottom:465.427491px;}
.yfd{bottom:465.534715px;}
.y25{bottom:467.773133px;}
.y78{bottom:467.825972px;}
.y82{bottom:473.034292px;}
.y38{bottom:478.431816px;}
.y3c{bottom:479.827497px;}
.yb4{bottom:479.885615px;}
.y112{bottom:480.727863px;}
.ye1{bottom:481.486051px;}
.y9e{bottom:486.048095px;}
.yc9{bottom:486.048792px;}
.y122{bottom:487.551610px;}
.y41{bottom:490.431608px;}
.y24{bottom:493.693129px;}
.y92{bottom:505.387659px;}
.y3b{bottom:508.627496px;}
.y3a{bottom:512.726127px;}
.y40{bottom:521.754797px;}
.yb3{bottom:522.840456px;}
.yd{bottom:523.758458px;}
.y5c{bottom:524.730456px;}
.y17{bottom:525.070658px;}
.y111{bottom:539.047839px;}
.y91{bottom:544.753655px;}
.h2{height:27.900001px;}
.h11{height:34.062000px;}
.hf{height:38.928002px;}
.h1{height:43.794001px;}
.h1a{height:46.156447px;}
.h18{height:46.156936px;}
.h1c{height:48.230334px;}
.h24{height:53.475001px;}
.he{height:53.526003px;}
.hc{height:55.368002px;}
.h14{height:55.959001px;}
.hb{height:58.392002px;}
.h1b{height:59.344277px;}
.h19{height:59.344762px;}
.h22{height:60.128906px;}
.h4{height:60.825000px;}
.h1e{height:62.010361px;}
.h5{height:62.041502px;}
.h9{height:63.258004px;}
.h13{height:65.691002px;}
.h17{height:67.880695px;}
.ha{height:72.990002px;}
.h10{height:77.829482px;}
.hd{height:77.856005px;}
.h16{height:79.194149px;}
.h1d{height:82.680155px;}
.h21{height:94.522060px;}
.h7{height:102.186003px;}
.h20{height:107.100000px;}
.h8{height:118.243796px;}
.h15{height:121.649999px;}
.h1f{height:126.516009px;}
.h6{height:131.382004px;}
.h3{height:142.087207px;}
.h12{height:170.310010px;}
.h23{height:191.460944px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x63{left:11.839314px;}
.x3b{left:13.585630px;}
.x3c{left:16.520510px;}
.x42{left:18.187429px;}
.x29{left:25.371527px;}
.x1d{left:30.364137px;}
.x34{left:33.100218px;}
.x1c{left:34.334648px;}
.x3f{left:39.097481px;}
.x33{left:42.599411px;}
.x3d{left:46.284411px;}
.xd{left:51.464402px;}
.x4{left:53.007875px;}
.x43{left:54.442905px;}
.x6d{left:57.628940px;}
.x5f{left:60.962600px;}
.xa{left:62.268880px;}
.xc{left:64.135253px;}
.x2a{left:65.961616px;}
.x6e{left:67.854332px;}
.x3e{left:68.861230px;}
.x32{left:78.604005px;}
.x7{left:82.125003px;}
.x2{left:84.375003px;}
.x13{left:86.484155px;}
.x6b{left:87.693904px;}
.x1e{left:89.482772px;}
.x65{left:93.523818px;}
.x40{left:95.630527px;}
.x39{left:105.330716px;}
.x8{left:107.519268px;}
.x2b{left:109.451434px;}
.x14{left:110.901218px;}
.x27{left:113.569462px;}
.x64{left:115.270519px;}
.x28{left:123.693905px;}
.xb{left:132.388193px;}
.x66{left:151.846801px;}
.x12{left:154.114947px;}
.x2f{left:192.522651px;}
.x35{left:194.037239px;}
.x3{left:195.059065px;}
.x62{left:199.725756px;}
.x5b{left:205.242416px;}
.x30{left:209.563666px;}
.x5c{left:223.046028px;}
.x59{left:236.196856px;}
.x6c{left:241.479345px;}
.x31{left:246.522653px;}
.x5a{left:260.870397px;}
.x57{left:262.640554px;}
.x58{left:265.608940px;}
.x41{left:315.154956px;}
.x36{left:355.889599px;}
.x56{left:379.077593px;}
.x53{left:387.979901px;}
.x55{left:401.523639px;}
.x54{left:407.465734px;}
.x52{left:413.802368px;}
.xe{left:429.786759px;}
.x17{left:432.228139px;}
.x19{left:447.861169px;}
.x18{left:453.414184px;}
.x16{left:460.326187px;}
.x15{left:491.288658px;}
.xf{left:508.903160px;}
.x47{left:515.936983px;}
.x49{left:523.507096px;}
.x4a{left:532.163662px;}
.x4b{left:541.451667px;}
.x48{left:554.258268px;}
.x2c{left:562.626549px;}
.x46{left:568.646894px;}
.x68{left:571.383802px;}
.x6a{left:576.960668px;}
.x1f{left:584.586300px;}
.x4c{left:586.316775px;}
.x2d{left:604.119113px;}
.x69{left:620.344887px;}
.x5e{left:657.658484px;}
.x67{left:661.419442px;}
.x4e{left:673.460224px;}
.x50{left:686.735546px;}
.x22{left:695.613834px;}
.x4f{left:701.774584px;}
.x24{left:703.627542px;}
.x44{left:712.012343px;}
.x20{left:714.578831px;}
.x4d{left:715.781549px;}
.x51{left:729.746630px;}
.x5{left:733.241701px;}
.x61{left:737.278809px;}
.x21{left:740.006371px;}
.x23{left:741.061610px;}
.x2e{left:776.912466px;}
.x1a{left:779.983346px;}
.x1b{left:782.350343px;}
.x10{left:797.139785px;}
.x38{left:800.639801px;}
.x37{left:802.284438px;}
.x6{left:825.452014px;}
.x11{left:843.730744px;}
.x1{left:846.921290px;}
.x25{left:999.227394px;}
.x60{left:1008.790986px;}
.x3a{left:1009.951982px;}
.x45{left:1012.206497px;}
.x9{left:1016.580531px;}
.x5d{left:1045.697621px;}
.x26{left:1048.426094px;}
@media print{
.v3{vertical-align:-27.365529pt;}
.v2{vertical-align:-15.473048pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:34.579093pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:45.321668pt;}
.ls7{letter-spacing:45.322208pt;}
.ls9{letter-spacing:45.354853pt;}
.ls5{letter-spacing:95.975064pt;}
.ls1{letter-spacing:95.983884pt;}
.ls6{letter-spacing:95.987691pt;}
.ls4{letter-spacing:95.987720pt;}
.ls3{letter-spacing:95.987780pt;}
.ls2{letter-spacing:96.000315pt;}
.ws1c{word-spacing:-31.333333pt;}
.ws13{word-spacing:-30.455999pt;}
.ws2{word-spacing:-26.320001pt;}
.ws14{word-spacing:-22.698668pt;}
.ws17{word-spacing:-21.295889pt;}
.wsc{word-spacing:-20.053335pt;}
.wse{word-spacing:-19.790399pt;}
.ws4{word-spacing:-18.800001pt;}
.ws3{word-spacing:-18.442668pt;}
.ws18{word-spacing:-18.078921pt;}
.ws1b{word-spacing:-17.861333pt;}
.ws10{word-spacing:-17.301775pt;}
.ws12{word-spacing:-17.301633pt;}
.ws5{word-spacing:-17.024001pt;}
.wsd{word-spacing:-16.293334pt;}
.ws16{word-spacing:-15.971979pt;}
.wsf{word-spacing:-15.285403pt;}
.ws11{word-spacing:-15.285278pt;}
.ws1d{word-spacing:-15.040000pt;}
.ws1e{word-spacing:-14.965333pt;}
.wsb{word-spacing:-14.413333pt;}
.ws6{word-spacing:-13.786667pt;}
.ws7{word-spacing:-12.768000pt;}
.ws0{word-spacing:-11.280000pt;}
.ws8{word-spacing:-10.848000pt;}
.wsa{word-spacing:-10.026667pt;}
.ws1{word-spacing:0.000000pt;}
.ws9{word-spacing:645.375350pt;}
.ws15{word-spacing:677.414983pt;}
.ws19{word-spacing:677.415011pt;}
.ws1a{word-spacing:677.416123pt;}
._2{margin-left:-14.038401pt;}
._e{margin-left:-12.922667pt;}
._13{margin-left:-11.664000pt;}
._6{margin-left:-10.080000pt;}
._4{margin-left:-7.639467pt;}
._c{margin-left:-6.170667pt;}
._5{margin-left:-4.672000pt;}
._3{margin-left:-3.114667pt;}
._1{margin-left:-2.016000pt;}
._0{margin-left:-0.912000pt;}
._1b{width:1.548267pt;}
._14{width:3.057056pt;}
._16{width:4.282976pt;}
._7{width:13.313040pt;}
._17{width:126.153757pt;}
._11{width:145.243214pt;}
._15{width:224.304751pt;}
._10{width:391.057600pt;}
._8{width:529.477697pt;}
._a{width:556.666933pt;}
._b{width:849.607531pt;}
._1a{width:1083.495558pt;}
._18{width:1891.458341pt;}
._d{width:1932.961182pt;}
._1d{width:2010.108304pt;}
._1c{width:2012.028304pt;}
._19{width:2021.340361pt;}
._12{width:2023.500385pt;}
._f{width:2033.724465pt;}
._9{width:2038.812465pt;}
.fs1{font-size:32.000001pt;}
.fsf{font-size:37.333333pt;}
.fse{font-size:42.666669pt;}
.fs0{font-size:48.000002pt;}
.fs19{font-size:50.589338pt;}
.fs17{font-size:50.589874pt;}
.fs1b{font-size:52.862402pt;}
.fs15{font-size:57.866666pt;}
.fsd{font-size:58.666670pt;}
.fs12{font-size:61.333334pt;}
.fsb{font-size:64.000002pt;}
.fs1a{font-size:65.043734pt;}
.fs18{font-size:65.044266pt;}
.fs3{font-size:66.666666pt;}
.fs1d{font-size:67.965870pt;}
.fs4{font-size:68.000002pt;}
.fs9{font-size:69.333338pt;}
.fs11{font-size:72.000002pt;}
.fs16{font-size:74.399994pt;}
.fs6{font-size:74.666666pt;}
.fsa{font-size:80.000003pt;}
.fsc{font-size:85.333339pt;}
.fs14{font-size:86.799999pt;}
.fs1c{font-size:90.620803pt;}
.fs1f{font-size:90.666667pt;}
.fs20{font-size:103.600011pt;}
.fs7{font-size:112.000004pt;}
.fs8{font-size:129.599996pt;}
.fs13{font-size:133.333332pt;}
.fs1e{font-size:138.666676pt;}
.fs5{font-size:144.000005pt;}
.fs2{font-size:155.733341pt;}
.fs10{font-size:186.666678pt;}
.fs21{font-size:224.000007pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:15.893204pt;}
.y3f{bottom:16.102238pt;}
.y14{bottom:25.000182pt;}
.y3{bottom:25.493204pt;}
.y1{bottom:25.760834pt;}
.y2{bottom:28.868444pt;}
.y123{bottom:31.041762pt;}
.y116{bottom:46.469752pt;}
.y32{bottom:54.352962pt;}
.y115{bottom:60.869755pt;}
.y9{bottom:62.722285pt;}
.y57{bottom:66.671055pt;}
.y23{bottom:67.232145pt;}
.y1e{bottom:67.723985pt;}
.ye0{bottom:68.722111pt;}
.y31{bottom:68.752965pt;}
.y11f{bottom:69.669795pt;}
.y8c{bottom:69.671691pt;}
.yb2{bottom:78.379215pt;}
.y8{bottom:78.722286pt;}
.yf4{bottom:81.570835pt;}
.ydd{bottom:82.315388pt;}
.y11c{bottom:82.329785pt;}
.y56{bottom:84.671055pt;}
.y67{bottom:85.524385pt;}
.y22{bottom:86.232145pt;}
.y1d{bottom:86.723985pt;}
.yfc{bottom:87.666586pt;}
.y77{bottom:87.960966pt;}
.ydf{bottom:89.111866pt;}
.y8b{bottom:89.184811pt;}
.yae{bottom:91.972506pt;}
.yc5{bottom:92.335636pt;}
.y62{bottom:94.355286pt;}
.yc{bottom:95.215446pt;}
.y81{bottom:95.697256pt;}
.yb1{bottom:98.768982pt;}
.yc8{bottom:99.132112pt;}
.y30{bottom:99.333816pt;}
.yf3{bottom:101.960602pt;}
.y9d{bottom:102.157746pt;}
.y55{bottom:102.671056pt;}
.y4e{bottom:103.751056pt;}
.ydc{bottom:104.064445pt;}
.y21{bottom:105.232146pt;}
.y1c{bottom:105.723986pt;}
.yfb{bottom:106.666586pt;}
.y8a{bottom:108.697929pt;}
.yde{bottom:109.501628pt;}
.y66{bottom:109.524386pt;}
.y108{bottom:110.141486pt;}
.y76{bottom:111.396986pt;}
.yad{bottom:112.362259pt;}
.yc4{bottom:112.725389pt;}
.y2f{bottom:113.733806pt;}
.y61{bottom:115.155286pt;}
.y80{bottom:115.210534pt;}
.yf0{bottom:115.553879pt;}
.yb0{bottom:119.158737pt;}
.yc7{bottom:119.521867pt;}
.yb{bottom:120.162120pt;}
.y54{bottom:120.671057pt;}
.yf2{bottom:122.350357pt;}
.y20{bottom:124.232147pt;}
.y1b{bottom:124.723987pt;}
.y4d{bottom:124.751057pt;}
.yfa{bottom:125.666587pt;}
.y9c{bottom:127.757747pt;}
.y2e{bottom:128.133817pt;}
.y107{bottom:129.141487pt;}
.y125{bottom:132.883657pt;}
.y65{bottom:133.524390pt;}
.yac{bottom:134.111316pt;}
.y11e{bottom:134.309787pt;}
.yc3{bottom:134.474446pt;}
.y75{bottom:134.832987pt;}
.y11b{bottom:136.809787pt;}
.y13{bottom:137.025497pt;}
.yef{bottom:137.302936pt;}
.y53{bottom:138.671057pt;}
.yaf{bottom:139.548499pt;}
.yc6{bottom:139.911629pt;}
.yf1{bottom:142.740119pt;}
.y1f{bottom:144.392148pt;}
.y1a{bottom:144.883988pt;}
.ya{bottom:145.108787pt;}
.y4c{bottom:145.751057pt;}
.y2d{bottom:153.136483pt;}
.y9b{bottom:153.357778pt;}
.yf9{bottom:155.229948pt;}
.y10b{bottom:155.254408pt;}
.y52{bottom:156.671058pt;}
.y64{bottom:157.524389pt;}
.yd8{bottom:157.940308pt;}
.y74{bottom:158.268998pt;}
.y89{bottom:162.194824pt;}
.ydb{bottom:164.736784pt;}
.y4b{bottom:166.751058pt;}
.y11d{bottom:174.309795pt;}
.y51{bottom:174.671055pt;}
.y5e{bottom:176.744261pt;}
.y11a{bottom:176.809791pt;}
.yd7{bottom:178.330061pt;}
.y9a{bottom:178.957778pt;}
.y126{bottom:179.377088pt;}
.y2c{bottom:180.107148pt;}
.y73{bottom:181.704999pt;}
.y88{bottom:181.707944pt;}
.yf8{bottom:182.229949pt;}
.y10a{bottom:182.254409pt;}
.yc2{bottom:184.639359pt;}
.y7f{bottom:184.876609pt;}
.yda{bottom:185.126539pt;}
.y12{bottom:187.425489pt;}
.y4a{bottom:188.111059pt;}
.y19{bottom:190.969439pt;}
.y50{bottom:192.671056pt;}
.y2b{bottom:196.667143pt;}
.yd6{bottom:200.079118pt;}
.y87{bottom:201.221062pt;}
.y7e{bottom:204.389887pt;}
.y99{bottom:204.557789pt;}
.yc1{bottom:205.029109pt;}
.y72{bottom:205.141009pt;}
.yd9{bottom:205.516301pt;}
.yee{bottom:207.230299pt;}
.yf7{bottom:209.229949pt;}
.y109{bottom:209.254409pt;}
.y4f{bottom:210.671056pt;}
.y18{bottom:211.769439pt;}
.y2a{bottom:213.227140pt;}
.y33{bottom:217.906682pt;}
.ybd{bottom:218.622400pt;}
.yea{bottom:220.823590pt;}
.ya8{bottom:220.865470pt;}
.yc0{bottom:225.418876pt;}
.yed{bottom:227.620066pt;}
.yab{bottom:227.661946pt;}
.y71{bottom:228.577000pt;}
.y98{bottom:230.157790pt;}
.y29{bottom:230.907140pt;}
.y7{bottom:233.479320pt;}
.y11{bottom:237.825480pt;}
.ybc{bottom:239.012153pt;}
.ye9{bottom:241.213343pt;}
.y110{bottom:241.213630pt;}
.ya7{bottom:241.255223pt;}
.yf6{bottom:242.861863pt;}
.y127{bottom:244.361573pt;}
.ybf{bottom:245.808631pt;}
.yec{bottom:248.009821pt;}
.yaa{bottom:248.051701pt;}
.y90{bottom:249.179751pt;}
.y45{bottom:250.674011pt;}
.y70{bottom:251.343391pt;}
.y5b{bottom:251.488501pt;}
.y7d{bottom:254.542671pt;}
.y97{bottom:255.757791pt;}
.y119{bottom:259.831061pt;}
.yd5{bottom:260.751457pt;}
.ybb{bottom:260.761210pt;}
.ye8{bottom:262.962400pt;}
.ya6{bottom:263.004280pt;}
.y49{bottom:264.488501pt;}
.ybe{bottom:266.198393pt;}
.yeb{bottom:268.399583pt;}
.ya9{bottom:268.441463pt;}
.y6f{bottom:271.431401pt;}
.y7c{bottom:274.055951pt;}
.y86{bottom:274.231056pt;}
.yd2{bottom:274.344734pt;}
.y44{bottom:274.674012pt;}
.y121{bottom:274.950282pt;}
.y60{bottom:275.050802pt;}
.y6{bottom:275.527322pt;}
.y5a{bottom:277.488502pt;}
.y10f{bottom:279.613633pt;}
.y69{bottom:281.061342pt;}
.yd4{bottom:281.141212pt;}
.y96{bottom:281.357792pt;}
.y8f{bottom:284.171742pt;}
.y10{bottom:288.225492pt;}
.y102{bottom:289.630392pt;}
.y37{bottom:290.099242pt;}
.y48{bottom:290.488502pt;}
.y6e{bottom:291.519407pt;}
.y7b{bottom:293.569230pt;}
.y85{bottom:293.744175pt;}
.y5f{bottom:295.850802pt;}
.yd1{bottom:296.093791pt;}
.y43{bottom:298.674009pt;}
.y63{bottom:299.254063pt;}
.yf5{bottom:300.501342pt;}
.yd3{bottom:301.530974pt;}
.y34{bottom:302.040916pt;}
.y59{bottom:303.488502pt;}
.y124{bottom:305.885673pt;}
.y95{bottom:306.957803pt;}
.y106{bottom:308.593653pt;}
.y101{bottom:308.630393pt;}
.y6d{bottom:311.607403pt;}
.y47{bottom:316.488503pt;}
.y5{bottom:317.575320pt;}
.y8e{bottom:319.163738pt;}
.y68{bottom:319.941341pt;}
.y42{bottom:322.674010pt;}
.y118{bottom:327.031053pt;}
.y105{bottom:327.593653pt;}
.y100{bottom:327.630393pt;}
.y36{bottom:327.873541pt;}
.y114{bottom:328.611893pt;}
.y58{bottom:329.488500pt;}
.y6c{bottom:331.695403pt;}
.y3e{bottom:334.684033pt;}
.y10e{bottom:335.245459pt;}
.ya5{bottom:336.165123pt;}
.yd0{bottom:336.376363pt;}
.y120{bottom:337.030274pt;}
.y94{bottom:338.157798pt;}
.yf{bottom:338.625504pt;}
.yb7{bottom:344.909164pt;}
.ye4{bottom:346.483054pt;}
.y28{bottom:347.078958pt;}
.ya1{bottom:349.758414pt;}
.ycc{bottom:349.969654pt;}
.y104{bottom:350.057604pt;}
.yba{bottom:351.705640pt;}
.y6b{bottom:352.452999pt;}
.ye7{bottom:353.279530pt;}
.y8d{bottom:354.155733pt;}
.ya4{bottom:356.554890pt;}
.ycf{bottom:356.766130pt;}
.y5d{bottom:359.027727pt;}
.yff{bottom:359.808634pt;}
.y7a{bottom:363.235284pt;}
.y27{bottom:363.638954pt;}
.yb6{bottom:365.298917pt;}
.y35{bottom:365.665592pt;}
.y84{bottom:366.754169pt;}
.ye3{bottom:366.872807pt;}
.y117{bottom:367.031057pt;}
.y10d{bottom:368.845459pt;}
.ya0{bottom:370.148168pt;}
.ycb{bottom:370.359408pt;}
.y93{bottom:371.757795pt;}
.yb9{bottom:372.095395pt;}
.ye6{bottom:373.669285pt;}
.y16{bottom:374.386139pt;}
.y113{bottom:375.473680pt;}
.ya3{bottom:376.944645pt;}
.y103{bottom:377.057605pt;}
.yce{bottom:377.155885pt;}
.y46{bottom:377.918105pt;}
.y6a{bottom:379.888997pt;}
.y26{bottom:381.318955pt;}
.y79{bottom:382.748563pt;}
.y83{bottom:386.267288pt;}
.yfe{bottom:386.808635pt;}
.yb5{bottom:387.047974pt;}
.ye2{bottom:388.621864pt;}
.ye{bottom:389.025505pt;}
.y9f{bottom:391.897224pt;}
.yca{bottom:392.108464pt;}
.yb8{bottom:392.485157pt;}
.ye5{bottom:394.059047pt;}
.ya2{bottom:397.334407pt;}
.ycd{bottom:397.545647pt;}
.y10c{bottom:402.445459pt;}
.y15{bottom:407.986136pt;}
.y39{bottom:412.272726pt;}
.y3d{bottom:413.713325pt;}
.yfd{bottom:413.808636pt;}
.y25{bottom:415.798340pt;}
.y78{bottom:415.845308pt;}
.y82{bottom:420.474926pt;}
.y38{bottom:425.272725pt;}
.y3c{bottom:426.513330pt;}
.yb4{bottom:426.564991pt;}
.y112{bottom:427.313656pt;}
.ye1{bottom:427.987601pt;}
.y9e{bottom:432.042751pt;}
.yc9{bottom:432.043371pt;}
.y122{bottom:433.379209pt;}
.y41{bottom:435.939207pt;}
.y24{bottom:438.838337pt;}
.y92{bottom:449.233475pt;}
.y3b{bottom:452.113330pt;}
.y3a{bottom:455.756557pt;}
.y40{bottom:463.782042pt;}
.yb3{bottom:464.747072pt;}
.yd{bottom:465.563074pt;}
.y5c{bottom:466.427072pt;}
.y17{bottom:466.729474pt;}
.y111{bottom:479.153635pt;}
.y91{bottom:484.225471pt;}
.h2{height:24.800001pt;}
.h11{height:30.277333pt;}
.hf{height:34.602669pt;}
.h1{height:38.928001pt;}
.h1a{height:41.027953pt;}
.h18{height:41.028388pt;}
.h1c{height:42.871408pt;}
.h24{height:47.533334pt;}
.he{height:47.578669pt;}
.hc{height:49.216002pt;}
.h14{height:49.741334pt;}
.hb{height:51.904002pt;}
.h1b{height:52.750468pt;}
.h19{height:52.750900pt;}
.h22{height:53.447916pt;}
.h4{height:54.066666pt;}
.h1e{height:55.120321pt;}
.h5{height:55.148002pt;}
.h9{height:56.229337pt;}
.h13{height:58.392002pt;}
.h17{height:60.338395pt;}
.ha{height:64.880002pt;}
.h10{height:69.181762pt;}
.hd{height:69.205338pt;}
.h16{height:70.394799pt;}
.h1d{height:73.493471pt;}
.h21{height:84.019609pt;}
.h7{height:90.832003pt;}
.h20{height:95.200000pt;}
.h8{height:105.105597pt;}
.h15{height:108.133332pt;}
.h1f{height:112.458675pt;}
.h6{height:116.784004pt;}
.h3{height:126.299740pt;}
.h12{height:151.386676pt;}
.h23{height:170.187505pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x63{left:10.523834pt;}
.x3b{left:12.076116pt;}
.x3c{left:14.684898pt;}
.x42{left:16.166603pt;}
.x29{left:22.552469pt;}
.x1d{left:26.990344pt;}
.x34{left:29.422416pt;}
.x1c{left:30.519687pt;}
.x3f{left:34.753317pt;}
.x33{left:37.866143pt;}
.x3d{left:41.141699pt;}
.xd{left:45.746135pt;}
.x4{left:47.118112pt;}
.x43{left:48.393694pt;}
.x6d{left:51.225725pt;}
.x5f{left:54.188978pt;}
.xa{left:55.350116pt;}
.xc{left:57.009114pt;}
.x2a{left:58.632548pt;}
.x6e{left:60.314962pt;}
.x3e{left:61.209983pt;}
.x32{left:69.870226pt;}
.x7{left:73.000002pt;}
.x2{left:75.000002pt;}
.x13{left:76.874804pt;}
.x6b{left:77.950136pt;}
.x1e{left:79.540242pt;}
.x65{left:83.132283pt;}
.x40{left:85.004913pt;}
.x39{left:93.627303pt;}
.x8{left:95.572683pt;}
.x2b{left:97.290163pt;}
.x14{left:98.578860pt;}
.x27{left:100.950633pt;}
.x64{left:102.462683pt;}
.x28{left:109.950138pt;}
.xb{left:117.678394pt;}
.x66{left:134.974934pt;}
.x12{left:136.991064pt;}
.x2f{left:171.131245pt;}
.x35{left:172.477546pt;}
.x3{left:173.385836pt;}
.x62{left:177.534006pt;}
.x5b{left:182.437703pt;}
.x30{left:186.278814pt;}
.x5c{left:198.263136pt;}
.x59{left:209.952761pt;}
.x6c{left:214.648307pt;}
.x31{left:219.131247pt;}
.x5a{left:231.884797pt;}
.x57{left:233.458270pt;}
.x58{left:236.096836pt;}
.x41{left:280.137739pt;}
.x36{left:316.346310pt;}
.x56{left:336.957861pt;}
.x53{left:344.871023pt;}
.x55{left:356.909901pt;}
.x54{left:362.191764pt;}
.x52{left:367.824327pt;}
.xe{left:382.032674pt;}
.x17{left:384.202790pt;}
.x19{left:398.098817pt;}
.x18{left:403.034830pt;}
.x16{left:409.178833pt;}
.x15{left:436.701029pt;}
.xf{left:452.358364pt;}
.x47{left:458.610652pt;}
.x49{left:465.339641pt;}
.x4a{left:473.034366pt;}
.x4b{left:481.290370pt;}
.x48{left:492.674016pt;}
.x2c{left:500.112488pt;}
.x46{left:505.463906pt;}
.x68{left:507.896713pt;}
.x6a{left:512.853927pt;}
.x1f{left:519.632267pt;}
.x4c{left:521.170467pt;}
.x2d{left:536.994767pt;}
.x69{left:551.417678pt;}
.x5e{left:584.585319pt;}
.x67{left:587.928393pt;}
.x4e{left:598.631310pt;}
.x50{left:610.431597pt;}
.x22{left:618.323408pt;}
.x4f{left:623.799630pt;}
.x24{left:625.446704pt;}
.x44{left:632.899860pt;}
.x20{left:635.181183pt;}
.x4d{left:636.250265pt;}
.x51{left:648.663671pt;}
.x5{left:651.770401pt;}
.x61{left:655.358941pt;}
.x21{left:657.783441pt;}
.x23{left:658.721431pt;}
.x2e{left:690.588859pt;}
.x1a{left:693.318530pt;}
.x1b{left:695.422527pt;}
.x10{left:708.568698pt;}
.x38{left:711.679823pt;}
.x37{left:713.141723pt;}
.x6{left:733.735123pt;}
.x11{left:749.982884pt;}
.x1{left:752.818924pt;}
.x25{left:888.202128pt;}
.x60{left:896.703099pt;}
.x3a{left:897.735095pt;}
.x45{left:899.739109pt;}
.x9{left:903.627139pt;}
.x5d{left:929.508997pt;}
.x26{left:931.934306pt;}
}




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