
    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_906395146731c4cdb7f09fc2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.972168;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_37f9e5c3721a2419b4562040.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_30f81e6562ca5a56a5a6d189.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893066;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_9e86eb39406bf857491f5096.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.035156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_bffb45916d9afc753fba60fe.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.384000;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_32682ce9c50749706eb82899.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.708008;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_a6baf7a00abdf9227fa8b15d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.368000;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_7a2f6104d97b415aa35b6e76.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.374000;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_aa8f0b222422d311fed4c1a7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.975098;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_e0951db13ec632e586323703.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.099609;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_1144e2c784f746986c6882d7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080904,0.236547,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);}
.m1{transform:matrix(0.252676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252676,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-69.120072px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.960022px;}
.ls5{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.139268px;}
.ls4{letter-spacing:0.139336px;}
.ls7{letter-spacing:0.139471px;}
.ls2{letter-spacing:0.304308px;}
.lsb{letter-spacing:0.506601px;}
.ls3{letter-spacing:0.859349px;}
.ls1{letter-spacing:1.113300px;}
.lsc{letter-spacing:23.407049px;}
.lsa{letter-spacing:23.407116px;}
.ls9{letter-spacing:49.327125px;}
.ls6{letter-spacing:1194.835770px;}
.ls0{letter-spacing:1198.652164px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(128,0,0),0 0.015em rgb(128,0,0),0.015em 0 rgb(128,0,0),0 -0.015em  rgb(128,0,0);}
.sc2{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(128,0,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-26.237090px;}
.ws3{word-spacing:-15.565086px;}
.ws2{word-spacing:-15.535688px;}
.ws5{word-spacing:-15.446864px;}
.ws9{word-spacing:-13.385306px;}
.wsa{word-spacing:-13.171626px;}
.ws8{word-spacing:-12.665025px;}
.ws4{word-spacing:-12.469248px;}
.ws6{word-spacing:-10.754859px;}
.ws1{word-spacing:-7.767855px;}
.ws7{word-spacing:0.000000px;}
._3{margin-left:-9.878719px;}
._39{margin-left:-2.423567px;}
._0{margin-left:-1.242855px;}
._1{width:1.205201px;}
._4{width:2.708209px;}
._5{width:4.298288px;}
._6{width:5.706695px;}
._22{width:7.658023px;}
._27{width:9.251933px;}
._c{width:10.979362px;}
._b{width:12.936130px;}
._11{width:14.474735px;}
._3e{width:15.634213px;}
._21{width:16.907856px;}
._10{width:18.241596px;}
._a{width:19.473984px;}
._d{width:20.942107px;}
._2a{width:22.486208px;}
._7{width:23.614731px;}
._24{width:25.402221px;}
._8{width:26.845182px;}
._9{width:28.212808px;}
._13{width:30.181957px;}
._f{width:31.483556px;}
._e{width:32.626400px;}
._1b{width:34.414650px;}
._23{width:35.859607px;}
._19{width:37.494896px;}
._18{width:39.265236px;}
._2c{width:41.352145px;}
._26{width:42.733336px;}
._2b{width:43.814868px;}
._20{width:45.201011px;}
._1a{width:46.721881px;}
._1c{width:47.901622px;}
._30{width:49.259781px;}
._2e{width:50.945918px;}
._2f{width:52.524616px;}
._15{width:54.512057px;}
._16{width:55.883596px;}
._12{width:57.212408px;}
._17{width:58.964358px;}
._2d{width:59.985503px;}
._1e{width:61.521808px;}
._1d{width:62.906212px;}
._1f{width:64.249535px;}
._37{width:65.582570px;}
._36{width:67.580969px;}
._3f{width:69.652052px;}
._29{width:74.022939px;}
._28{width:75.027418px;}
._31{width:83.136561px;}
._32{width:84.387213px;}
._3a{width:87.342363px;}
._3b{width:89.266020px;}
._35{width:101.779386px;}
._40{width:102.975113px;}
._3d{width:106.207921px;}
._3c{width:113.371719px;}
._14{width:154.228353px;}
._38{width:180.992944px;}
._34{width:191.773012px;}
._33{width:193.326095px;}
._2{width:549.540284px;}
._25{width:607.659029px;}
.fc8{color:rgb(128,0,0);}
.fc5{color:rgb(196,188,150);}
.fc7{color:rgb(46,116,181);}
.fc4{color:rgb(255,0,0);}
.fc6{color:transparent;}
.fc3{color:rgb(118,113,113);}
.fc2{color:rgb(127,127,127);}
.fc1{color:rgb(166,166,166);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:31.071420px;}
.fsb{font-size:39.251312px;}
.fs1{font-size:45.256050px;}
.fs9{font-size:45.342719px;}
.fs2{font-size:50.660100px;}
.fsd{font-size:53.541223px;}
.fs3{font-size:56.063700px;}
.fsa{font-size:56.170413px;}
.fs0{font-size:62.142750px;}
.fs8{font-size:62.260346px;}
.fs5{font-size:67.546800px;}
.fsc{font-size:84.433046px;}
.fs4{font-size:120.908250px;}
.fs7{font-size:275.590341px;}
.y7b{bottom:-8.103419px;}
.y0{bottom:0.000000px;}
.y78{bottom:2.518420px;}
.y72{bottom:2.885132px;}
.y74{bottom:3.599789px;}
.y76{bottom:4.142086px;}
.y7f{bottom:6.839950px;}
.y54{bottom:15.120003px;}
.y7e{bottom:30.420044px;}
.y3{bottom:31.500000px;}
.y7d{bottom:47.340019px;}
.y2{bottom:48.240006px;}
.y173{bottom:71.279983px;}
.y140{bottom:71.639992px;}
.y7a{bottom:72.907773px;}
.yf3{bottom:75.779983px;}
.y79{bottom:77.947771px;}
.yca{bottom:78.840019px;}
.ya9{bottom:82.259994px;}
.y172{bottom:85.860008px;}
.y77{bottom:88.566803px;}
.y13c{bottom:89.639992px;}
.yf2{bottom:93.779983px;}
.yc9{bottom:96.659981px;}
.ya8{bottom:99.899986px;}
.y171{bottom:100.440033px;}
.y104{bottom:102.419975px;}
.y13b{bottom:107.460022px;}
.yf1{bottom:111.419975px;}
.yc8{bottom:114.480011px;}
.y170{bottom:115.019989px;}
.y52{bottom:116.820030px;}
.y34{bottom:117.720017px;}
.ya7{bottom:117.899986px;}
.y103{bottom:120.240006px;}
.y13a{bottom:125.279983px;}
.yf0{bottom:129.419975px;}
.y16f{bottom:129.779983px;}
.yc7{bottom:132.480011px;}
.y51{bottom:134.639992px;}
.y33{bottom:135.539977px;}
.ya6{bottom:135.899986px;}
.y102{bottom:138.779983px;}
.y139{bottom:143.279983px;}
.y16e{bottom:144.360008px;}
.yef{bottom:147.419975px;}
.yc6{bottom:150.299973px;}
.y50{bottom:153.179970px;}
.y32{bottom:153.360008px;}
.ya5{bottom:153.720017px;}
.y101{bottom:156.059967px;}
.y16d{bottom:158.940033px;}
.y138{bottom:161.100013px;}
.yee{bottom:165.059967px;}
.yc5{bottom:168.120002px;}
.y4f{bottom:170.279983px;}
.y31{bottom:171.360008px;}
.ya4{bottom:171.539977px;}
.y16c{bottom:173.519989px;}
.y100{bottom:173.879998px;}
.y137{bottom:178.919975px;}
.yed{bottom:183.059967px;}
.yc4{bottom:186.120002px;}
.y4e{bottom:188.279983px;}
.y30{bottom:189.360008px;}
.ya3{bottom:189.539977px;}
.yff{bottom:191.879998px;}
.y136{bottom:196.919975px;}
.yec{bottom:201.059967px;}
.y16b{bottom:202.860008px;}
.yc3{bottom:204.120002px;}
.y4d{bottom:206.820030px;}
.y2f{bottom:207.000000px;}
.ya2{bottom:207.360008px;}
.yfe{bottom:209.700027px;}
.y135{bottom:214.919975px;}
.y16a{bottom:217.620002px;}
.yeb{bottom:218.879998px;}
.yc2{bottom:221.759994px;}
.y4c{bottom:224.100013px;}
.y2e{bottom:225.000000px;}
.ya1{bottom:225.360008px;}
.yfd{bottom:227.519989px;}
.y169{bottom:232.200027px;}
.y134{bottom:232.559967px;}
.yea{bottom:236.700027px;}
.yc1{bottom:239.759994px;}
.y4b{bottom:241.919975px;}
.y2d{bottom:243.000000px;}
.ya0{bottom:243.179970px;}
.yfc{bottom:245.519989px;}
.y168{bottom:246.779983px;}
.y133{bottom:250.559967px;}
.ye9{bottom:254.700027px;}
.yc0{bottom:257.580025px;}
.y4a{bottom:259.919975px;}
.y2c{bottom:260.639992px;}
.y9f{bottom:261.000000px;}
.y167{bottom:261.360008px;}
.yfb{bottom:263.340019px;}
.y132{bottom:268.559967px;}
.ye8{bottom:272.519989px;}
.ybf{bottom:275.399986px;}
.y166{bottom:276.120002px;}
.y49{bottom:277.740006px;}
.y2b{bottom:278.639992px;}
.y9e{bottom:279.000000px;}
.yfa{bottom:281.159981px;}
.y131{bottom:286.200027px;}
.ye7{bottom:290.519989px;}
.y165{bottom:290.700027px;}
.ybe{bottom:293.399986px;}
.y48{bottom:295.740006px;}
.y2a{bottom:296.639992px;}
.y9d{bottom:296.820030px;}
.yf9{bottom:299.159981px;}
.y130{bottom:304.200027px;}
.y164{bottom:305.460022px;}
.ye6{bottom:308.340019px;}
.ybd{bottom:311.220017px;}
.y47{bottom:313.559967px;}
.y29{bottom:314.460022px;}
.y9c{bottom:314.639992px;}
.yf8{bottom:316.620002px;}
.y163{bottom:319.860008px;}
.y13f{bottom:322.200027px;}
.y12f{bottom:322.559967px;}
.ye5{bottom:326.159981px;}
.ybc{bottom:329.220017px;}
.yf7{bottom:331.019989px;}
.y46{bottom:331.379998px;}
.y28{bottom:332.279983px;}
.y9b{bottom:332.639992px;}
.y162{bottom:334.620002px;}
.y12e{bottom:340.019989px;}
.ye4{bottom:344.159981px;}
.yf6{bottom:345.779983px;}
.ybb{bottom:347.039977px;}
.y161{bottom:349.200027px;}
.y45{bottom:349.379998px;}
.y27{bottom:350.279983px;}
.y9a{bottom:350.460022px;}
.yf5{bottom:357.659981px;}
.y12d{bottom:357.840019px;}
.ye3{bottom:361.799973px;}
.y160{bottom:363.960022px;}
.yba{bottom:364.860008px;}
.y44{bottom:367.200027px;}
.y26{bottom:368.100013px;}
.y99{bottom:368.279983px;}
.y53{bottom:374.759994px;}
.y12c{bottom:375.840019px;}
.y15f{bottom:378.539977px;}
.ye2{bottom:379.799973px;}
.yb9{bottom:382.860008px;}
.y43{bottom:385.019989px;}
.y25{bottom:385.919975px;}
.y98{bottom:386.279983px;}
.y15e{bottom:393.120002px;}
.y12b{bottom:393.659981px;}
.ye1{bottom:397.799973px;}
.yb8{bottom:400.860008px;}
.y42{bottom:403.559967px;}
.y24{bottom:403.919975px;}
.y97{bottom:404.100013px;}
.y15d{bottom:407.700027px;}
.y12a{bottom:411.480011px;}
.ye0{bottom:415.620002px;}
.yb7{bottom:418.500000px;}
.y41{bottom:421.019989px;}
.y23{bottom:421.740006px;}
.y96{bottom:421.919975px;}
.y15c{bottom:422.460022px;}
.y129{bottom:429.480011px;}
.ydf{bottom:433.440033px;}
.yb6{bottom:436.500000px;}
.y15b{bottom:437.039977px;}
.y40{bottom:438.659981px;}
.y22{bottom:439.740006px;}
.y95{bottom:439.919975px;}
.y128{bottom:447.299973px;}
.yde{bottom:451.440033px;}
.y15a{bottom:451.799973px;}
.yb5{bottom:454.500000px;}
.y3f{bottom:456.659981px;}
.y21{bottom:457.559967px;}
.y94{bottom:457.740006px;}
.y127{bottom:465.299973px;}
.y159{bottom:466.200027px;}
.ydd{bottom:469.259994px;}
.yb4{bottom:472.139992px;}
.y3e{bottom:474.480011px;}
.y20{bottom:475.379998px;}
.y93{bottom:475.740006px;}
.y158{bottom:480.960022px;}
.y126{bottom:482.940033px;}
.ydc{bottom:487.080025px;}
.yb3{bottom:490.139992px;}
.y3d{bottom:492.299973px;}
.y70{bottom:492.843713px;}
.y1f{bottom:493.379998px;}
.y92{bottom:493.559967px;}
.y157{bottom:495.539977px;}
.y125{bottom:500.940033px;}
.ydb{bottom:505.080025px;}
.yb2{bottom:508.139992px;}
.y3c{bottom:510.299973px;}
.y6f{bottom:510.851276px;}
.y1e{bottom:511.200027px;}
.y91{bottom:511.379998px;}
.y124{bottom:518.940033px;}
.yda{bottom:522.899986px;}
.y156{bottom:524.879998px;}
.yb1{bottom:525.960022px;}
.y3b{bottom:528.120002px;}
.y6e{bottom:528.664105px;}
.y1d{bottom:529.019989px;}
.y90{bottom:529.379998px;}
.y123{bottom:536.759994px;}
.y155{bottom:539.460022px;}
.yd9{bottom:540.899986px;}
.yb0{bottom:543.779983px;}
.y3a{bottom:546.120002px;}
.y6d{bottom:546.671668px;}
.y1c{bottom:547.019989px;}
.y8f{bottom:547.200027px;}
.y154{bottom:554.039977px;}
.y122{bottom:554.580025px;}
.y71{bottom:558.532125px;}
.yd8{bottom:558.720017px;}
.yaf{bottom:561.779983px;}
.y39{bottom:563.940033px;}
.y6c{bottom:564.484496px;}
.y1b{bottom:564.840019px;}
.y8e{bottom:565.019989px;}
.y153{bottom:568.799973px;}
.y13e{bottom:572.580025px;}
.y121{bottom:573.120002px;}
.y195{bottom:574.200027px;}
.yd7{bottom:576.539977px;}
.yae{bottom:579.600013px;}
.y38{bottom:581.759994px;}
.y6b{bottom:582.306833px;}
.y1a{bottom:582.659981px;}
.y8d{bottom:583.019989px;}
.y152{bottom:583.379998px;}
.y73{bottom:584.996840px;}
.y120{bottom:590.399986px;}
.y194{bottom:592.019989px;}
.yd6{bottom:594.539977px;}
.yad{bottom:597.419975px;}
.y151{bottom:598.139992px;}
.y37{bottom:599.759994px;}
.y6a{bottom:600.304934px;}
.y19{bottom:600.659981px;}
.y8c{bottom:601.019989px;}
.y11f{bottom:608.220017px;}
.y193{bottom:609.840019px;}
.yd5{bottom:612.540012px;}
.yac{bottom:615.240006px;}
.y36{bottom:617.579990px;}
.y69{bottom:617.941999px;}
.y8b{bottom:618.660015px;}
.y18{bottom:619.560001px;}
.y11e{bottom:626.220017px;}
.y150{bottom:627.300007px;}
.y192{bottom:627.839985px;}
.yd4{bottom:630.180004px;}
.yab{bottom:633.240006px;}
.y35{bottom:635.399986px;}
.y68{bottom:635.949562px;}
.y8a{bottom:636.660015px;}
.y17{bottom:637.019989px;}
.y14f{bottom:641.879998px;}
.y11d{bottom:644.040012px;}
.y191{bottom:645.660015px;}
.yaa{bottom:647.819995px;}
.yd3{bottom:648.180004px;}
.y67{bottom:653.947662px;}
.y89{bottom:654.660015px;}
.y14e{bottom:656.639992px;}
.y11c{bottom:662.040012px;}
.y190{bottom:663.480011px;}
.yd2{bottom:666.000000px;}
.y14d{bottom:671.220017px;}
.y16{bottom:671.759994px;}
.y66{bottom:671.770000px;}
.y88{bottom:672.480011px;}
.y11b{bottom:679.860008px;}
.y18f{bottom:680.939999px;}
.yd1{bottom:683.819995px;}
.y14c{bottom:686.339985px;}
.y15{bottom:689.220017px;}
.y65{bottom:689.582828px;}
.y87{bottom:690.300007px;}
.y18e{bottom:695.519989px;}
.y11a{bottom:697.680004px;}
.yd0{bottom:701.819995px;}
.y14b{bottom:704.160015px;}
.y64{bottom:707.585660px;}
.y86{bottom:708.300007px;}
.y18d{bottom:710.279983px;}
.y119{bottom:715.680004px;}
.ycf{bottom:719.639992px;}
.y14a{bottom:721.980011px;}
.y14{bottom:723.959988px;}
.yf4{bottom:724.139992px;}
.y18c{bottom:724.860008px;}
.y63{bottom:725.402292px;}
.y85{bottom:726.120002px;}
.y118{bottom:733.500000px;}
.yce{bottom:736.920010px;}
.y149{bottom:738.360008px;}
.y18b{bottom:739.439999px;}
.y62{bottom:743.407025px;}
.y84{bottom:743.939999px;}
.y117{bottom:751.319995px;}
.ycd{bottom:751.680004px;}
.y18a{bottom:754.019989px;}
.y148{bottom:756.180004px;}
.y61{bottom:761.221755px;}
.y83{bottom:761.759994px;}
.ycc{bottom:766.259994px;}
.y189{bottom:768.779983px;}
.y116{bottom:769.319995px;}
.y147{bottom:774.180004px;}
.y13{bottom:775.980011px;}
.ycb{bottom:778.319995px;}
.y60{bottom:779.044046px;}
.y82{bottom:779.759994px;}
.y188{bottom:783.360008px;}
.y115{bottom:787.139992px;}
.y146{bottom:792.000000px;}
.y12{bottom:793.439999px;}
.y5f{bottom:797.041219px;}
.y81{bottom:797.759994px;}
.y187{bottom:798.120002px;}
.y114{bottom:804.959988px;}
.y145{bottom:809.639992px;}
.y11{bottom:810.720017px;}
.y80{bottom:812.339985px;}
.y186{bottom:812.519989px;}
.y5e{bottom:814.863533px;}
.y113{bottom:822.959988px;}
.y144{bottom:826.199993px;}
.y185{bottom:827.279983px;}
.y10{bottom:828.180004px;}
.y5d{bottom:832.685847px;}
.y112{bottom:840.779983px;}
.y184{bottom:841.860008px;}
.y143{bottom:844.019989px;}
.yf{bottom:845.459988px;}
.y5c{bottom:850.682997px;}
.y183{bottom:856.620002px;}
.y111{bottom:858.779983px;}
.y142{bottom:862.022392px;}
.ye{bottom:862.920010px;}
.y5b{bottom:868.680123px;}
.y182{bottom:871.199993px;}
.y110{bottom:876.600013px;}
.y141{bottom:879.300007px;}
.yd{bottom:880.199993px;}
.y181{bottom:885.779983px;}
.y5a{bottom:886.320041px;}
.y10f{bottom:894.420010px;}
.yc{bottom:897.480011px;}
.y180{bottom:900.360008px;}
.y59{bottom:904.324774px;}
.y10e{bottom:912.419992px;}
.yb{bottom:914.939999px;}
.y17f{bottom:915.120002px;}
.y58{bottom:922.139505px;}
.y17e{bottom:929.699993px;}
.y10d{bottom:930.240006px;}
.ya{bottom:932.219999px;}
.y57{bottom:939.961842px;}
.y17d{bottom:944.460004px;}
.y10c{bottom:948.060001px;}
.y9{bottom:949.680004px;}
.y56{bottom:957.958968px;}
.y17c{bottom:958.860008px;}
.y10b{bottom:966.060001px;}
.y8{bottom:967.139992px;}
.y75{bottom:971.099593px;}
.y17b{bottom:973.620002px;}
.y55{bottom:975.781282px;}
.y10a{bottom:984.060001px;}
.y7{bottom:984.240006px;}
.y17a{bottom:988.199993px;}
.y13d{bottom:1001.699993px;}
.y109{bottom:1002.240006px;}
.y179{bottom:1002.960004px;}
.y6{bottom:1006.020006px;}
.y178{bottom:1017.539996px;}
.y108{bottom:1019.699993px;}
.y177{bottom:1032.120002px;}
.y107{bottom:1037.699993px;}
.y5{bottom:1039.500000px;}
.y176{bottom:1046.700002px;}
.y106{bottom:1055.340002px;}
.y175{bottom:1061.459997px;}
.y4{bottom:1072.980002px;}
.y105{bottom:1073.340002px;}
.y174{bottom:1076.040003px;}
.y7c{bottom:1105.379998px;}
.y1{bottom:1123.380001px;}
.h14{height:2.698215px;}
.h12{height:12.960698px;}
.hc{height:14.761126px;}
.he{height:18.363207px;}
.h10{height:18.719149px;}
.hd{height:33.564239px;}
.h13{height:33.942419px;}
.h17{height:38.316648px;}
.h1d{height:40.495779px;}
.hf{height:41.579270px;}
.h1c{height:42.403648px;}
.h1{height:47.001523px;}
.hb{height:47.090466px;}
.h2{height:50.388000px;}
.h5{height:51.065381px;}
.h6{height:51.369341px;}
.h18{height:54.460814px;}
.h7{height:54.460818px;}
.h8{height:55.180697px;}
.h1b{height:55.180832px;}
.h19{height:55.180836px;}
.h1a{height:55.180971px;}
.h3{height:55.762577px;}
.h15{height:61.808975px;}
.h11{height:61.925939px;}
.h9{height:73.440033px;}
.h16{height:83.979548px;}
.h4{height:123.810048px;}
.ha{height:208.442109px;}
.h0{height:1188.000000px;}
.w9{width:2.879633px;}
.we{width:4.681219px;}
.w3{width:5.761937px;}
.w6{width:7.377859px;}
.w7{width:9.006147px;}
.wa{width:13.679513px;}
.w8{width:22.323231px;}
.w4{width:34.023130px;}
.w1{width:38.340001px;}
.w5{width:45.364194px;}
.w2{width:71.279729px;}
.wd{width:98.999733px;}
.wc{width:138.418170px;}
.wb{width:407.519849px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:102.959997px;}
.xd{left:115.018039px;}
.x17{left:128.340002px;}
.xe{left:137.159194px;}
.xf{left:139.861547px;}
.x3{left:141.299998px;}
.x4{left:153.539996px;}
.x10{left:156.238617px;}
.xa{left:157.677598px;}
.x8{left:162.003916px;}
.x23{left:176.939999px;}
.xb{left:191.700728px;}
.x21{left:201.599997px;}
.x1d{left:210.060001px;}
.x9{left:232.923874px;}
.xc{left:237.064922px;}
.x24{left:243.719999px;}
.x2{left:248.939999px;}
.x1e{left:266.400003px;}
.x22{left:289.439999px;}
.x7{left:308.694897px;}
.x18{left:316.259994px;}
.x19{left:318.420010px;}
.x20{left:320.399987px;}
.x1a{left:339.660015px;}
.x1f{left:348.839985px;}
.x1c{left:358.920010px;}
.x25{left:396.899987px;}
.x15{left:439.560001px;}
.x1b{left:441.899987px;}
.x13{left:445.500000px;}
.x6{left:472.139992px;}
.x26{left:497.519989px;}
.x5{left:522.899987px;}
.x11{left:563.581770px;}
.x30{left:581.759994px;}
.x2d{left:602.279983px;}
.x32{left:605.340019px;}
.x29{left:616.500000px;}
.x35{left:626.580025px;}
.x2e{left:637.379998px;}
.x33{left:646.019989px;}
.x34{left:676.080025px;}
.x36{left:689.759994px;}
.x2a{left:693.539978px;}
.x12{left:701.999940px;}
.x2b{left:708.840019px;}
.x27{left:729.899987px;}
.x31{left:792.720017px;}
.x28{left:794.159981px;}
.x2c{left:796.139992px;}
.x2f{left:805.320030px;}
.x16{left:810.539978px;}
.x14{left:814.860008px;}
@media print{
.v1{vertical-align:-61.440064pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:27.520020pt;}
.ls5{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.123794pt;}
.ls4{letter-spacing:0.123854pt;}
.ls7{letter-spacing:0.123974pt;}
.ls2{letter-spacing:0.270496pt;}
.lsb{letter-spacing:0.450312pt;}
.ls3{letter-spacing:0.763866pt;}
.ls1{letter-spacing:0.989600pt;}
.lsc{letter-spacing:20.806266pt;}
.lsa{letter-spacing:20.806326pt;}
.ls9{letter-spacing:43.846334pt;}
.ls6{letter-spacing:1062.076240pt;}
.ls0{letter-spacing:1065.468590pt;}
.ws0{word-spacing:-23.321858pt;}
.ws3{word-spacing:-13.835632pt;}
.ws2{word-spacing:-13.809500pt;}
.ws5{word-spacing:-13.730545pt;}
.ws9{word-spacing:-11.898050pt;}
.wsa{word-spacing:-11.708112pt;}
.ws8{word-spacing:-11.257800pt;}
.ws4{word-spacing:-11.083776pt;}
.ws6{word-spacing:-9.559875pt;}
.ws1{word-spacing:-6.904760pt;}
.ws7{word-spacing:0.000000pt;}
._3{margin-left:-8.781084pt;}
._39{margin-left:-2.154282pt;}
._0{margin-left:-1.104760pt;}
._1{width:1.071289pt;}
._4{width:2.407297pt;}
._5{width:3.820700pt;}
._6{width:5.072618pt;}
._22{width:6.807131pt;}
._27{width:8.223940pt;}
._c{width:9.759433pt;}
._b{width:11.498782pt;}
._11{width:12.866431pt;}
._3e{width:13.897079pt;}
._21{width:15.029205pt;}
._10{width:16.214752pt;}
._a{width:17.310208pt;}
._d{width:18.615206pt;}
._2a{width:19.987741pt;}
._7{width:20.990872pt;}
._24{width:22.579752pt;}
._8{width:23.862384pt;}
._9{width:25.078052pt;}
._13{width:26.828406pt;}
._f{width:27.985383pt;}
._e{width:29.001245pt;}
._1b{width:30.590800pt;}
._23{width:31.875206pt;}
._19{width:33.328797pt;}
._18{width:34.902432pt;}
._2c{width:36.757462pt;}
._26{width:37.985187pt;}
._2b{width:38.946549pt;}
._20{width:40.178676pt;}
._1a{width:41.530561pt;}
._1c{width:42.579220pt;}
._30{width:43.786472pt;}
._2e{width:45.285260pt;}
._2f{width:46.688548pt;}
._15{width:48.455162pt;}
._16{width:49.674308pt;}
._12{width:50.855474pt;}
._17{width:52.412762pt;}
._2d{width:53.320447pt;}
._1e{width:54.686052pt;}
._1d{width:55.916633pt;}
._1f{width:57.110698pt;}
._37{width:58.295618pt;}
._36{width:60.071972pt;}
._3f{width:61.912935pt;}
._29{width:65.798168pt;}
._28{width:66.691038pt;}
._31{width:73.899166pt;}
._32{width:75.010856pt;}
._3a{width:77.637656pt;}
._3b{width:79.347574pt;}
._35{width:90.470566pt;}
._40{width:91.533434pt;}
._3d{width:94.407041pt;}
._3c{width:100.774861pt;}
._14{width:137.091869pt;}
._38{width:160.882617pt;}
._34{width:170.464900pt;}
._33{width:171.845418pt;}
._2{width:488.480253pt;}
._25{width:540.141359pt;}
.fs6{font-size:27.619040pt;}
.fsb{font-size:34.890055pt;}
.fs1{font-size:40.227600pt;}
.fs9{font-size:40.304639pt;}
.fs2{font-size:45.031200pt;}
.fsd{font-size:47.592199pt;}
.fs3{font-size:49.834400pt;}
.fsa{font-size:49.929256pt;}
.fs0{font-size:55.238000pt;}
.fs8{font-size:55.342529pt;}
.fs5{font-size:60.041600pt;}
.fsc{font-size:75.051596pt;}
.fs4{font-size:107.474000pt;}
.fs7{font-size:244.969192pt;}
.y7b{bottom:-7.203039pt;}
.y0{bottom:0.000000pt;}
.y78{bottom:2.238596pt;}
.y72{bottom:2.564562pt;}
.y74{bottom:3.199812pt;}
.y76{bottom:3.681854pt;}
.y7f{bottom:6.079956pt;}
.y54{bottom:13.440003pt;}
.y7e{bottom:27.040039pt;}
.y3{bottom:28.000000pt;}
.y7d{bottom:42.080017pt;}
.y2{bottom:42.880005pt;}
.y173{bottom:63.359985pt;}
.y140{bottom:63.679993pt;}
.y7a{bottom:64.806910pt;}
.yf3{bottom:67.359985pt;}
.y79{bottom:69.286908pt;}
.yca{bottom:70.080017pt;}
.ya9{bottom:73.119995pt;}
.y172{bottom:76.320007pt;}
.y77{bottom:78.726047pt;}
.y13c{bottom:79.679993pt;}
.yf2{bottom:83.359985pt;}
.yc9{bottom:85.919983pt;}
.ya8{bottom:88.799988pt;}
.y171{bottom:89.280029pt;}
.y104{bottom:91.039978pt;}
.y13b{bottom:95.520020pt;}
.yf1{bottom:99.039978pt;}
.yc8{bottom:101.760010pt;}
.y170{bottom:102.239990pt;}
.y52{bottom:103.840027pt;}
.y34{bottom:104.640015pt;}
.ya7{bottom:104.799988pt;}
.y103{bottom:106.880005pt;}
.y13a{bottom:111.359985pt;}
.yf0{bottom:115.039978pt;}
.y16f{bottom:115.359985pt;}
.yc7{bottom:117.760010pt;}
.y51{bottom:119.679993pt;}
.y33{bottom:120.479980pt;}
.ya6{bottom:120.799988pt;}
.y102{bottom:123.359985pt;}
.y139{bottom:127.359985pt;}
.y16e{bottom:128.320007pt;}
.yef{bottom:131.039978pt;}
.yc6{bottom:133.599976pt;}
.y50{bottom:136.159973pt;}
.y32{bottom:136.320007pt;}
.ya5{bottom:136.640015pt;}
.y101{bottom:138.719971pt;}
.y16d{bottom:141.280029pt;}
.y138{bottom:143.200012pt;}
.yee{bottom:146.719971pt;}
.yc5{bottom:149.440002pt;}
.y4f{bottom:151.359985pt;}
.y31{bottom:152.320007pt;}
.ya4{bottom:152.479980pt;}
.y16c{bottom:154.239990pt;}
.y100{bottom:154.559998pt;}
.y137{bottom:159.039978pt;}
.yed{bottom:162.719971pt;}
.yc4{bottom:165.440002pt;}
.y4e{bottom:167.359985pt;}
.y30{bottom:168.320007pt;}
.ya3{bottom:168.479980pt;}
.yff{bottom:170.559998pt;}
.y136{bottom:175.039978pt;}
.yec{bottom:178.719971pt;}
.y16b{bottom:180.320007pt;}
.yc3{bottom:181.440002pt;}
.y4d{bottom:183.840027pt;}
.y2f{bottom:184.000000pt;}
.ya2{bottom:184.320007pt;}
.yfe{bottom:186.400024pt;}
.y135{bottom:191.039978pt;}
.y16a{bottom:193.440002pt;}
.yeb{bottom:194.559998pt;}
.yc2{bottom:197.119995pt;}
.y4c{bottom:199.200012pt;}
.y2e{bottom:200.000000pt;}
.ya1{bottom:200.320007pt;}
.yfd{bottom:202.239990pt;}
.y169{bottom:206.400024pt;}
.y134{bottom:206.719971pt;}
.yea{bottom:210.400024pt;}
.yc1{bottom:213.119995pt;}
.y4b{bottom:215.039978pt;}
.y2d{bottom:216.000000pt;}
.ya0{bottom:216.159973pt;}
.yfc{bottom:218.239990pt;}
.y168{bottom:219.359985pt;}
.y133{bottom:222.719971pt;}
.ye9{bottom:226.400024pt;}
.yc0{bottom:228.960022pt;}
.y4a{bottom:231.039978pt;}
.y2c{bottom:231.679993pt;}
.y9f{bottom:232.000000pt;}
.y167{bottom:232.320007pt;}
.yfb{bottom:234.080017pt;}
.y132{bottom:238.719971pt;}
.ye8{bottom:242.239990pt;}
.ybf{bottom:244.799988pt;}
.y166{bottom:245.440002pt;}
.y49{bottom:246.880005pt;}
.y2b{bottom:247.679993pt;}
.y9e{bottom:248.000000pt;}
.yfa{bottom:249.919983pt;}
.y131{bottom:254.400024pt;}
.ye7{bottom:258.239990pt;}
.y165{bottom:258.400024pt;}
.ybe{bottom:260.799988pt;}
.y48{bottom:262.880005pt;}
.y2a{bottom:263.679993pt;}
.y9d{bottom:263.840027pt;}
.yf9{bottom:265.919983pt;}
.y130{bottom:270.400024pt;}
.y164{bottom:271.520020pt;}
.ye6{bottom:274.080017pt;}
.ybd{bottom:276.640015pt;}
.y47{bottom:278.719971pt;}
.y29{bottom:279.520020pt;}
.y9c{bottom:279.679993pt;}
.yf8{bottom:281.440002pt;}
.y163{bottom:284.320007pt;}
.y13f{bottom:286.400024pt;}
.y12f{bottom:286.719971pt;}
.ye5{bottom:289.919983pt;}
.ybc{bottom:292.640015pt;}
.yf7{bottom:294.239990pt;}
.y46{bottom:294.559998pt;}
.y28{bottom:295.359985pt;}
.y9b{bottom:295.679993pt;}
.y162{bottom:297.440002pt;}
.y12e{bottom:302.239990pt;}
.ye4{bottom:305.919983pt;}
.yf6{bottom:307.359985pt;}
.ybb{bottom:308.479980pt;}
.y161{bottom:310.400024pt;}
.y45{bottom:310.559998pt;}
.y27{bottom:311.359985pt;}
.y9a{bottom:311.520020pt;}
.yf5{bottom:317.919983pt;}
.y12d{bottom:318.080017pt;}
.ye3{bottom:321.599976pt;}
.y160{bottom:323.520020pt;}
.yba{bottom:324.320007pt;}
.y44{bottom:326.400024pt;}
.y26{bottom:327.200012pt;}
.y99{bottom:327.359985pt;}
.y53{bottom:333.119995pt;}
.y12c{bottom:334.080017pt;}
.y15f{bottom:336.479980pt;}
.ye2{bottom:337.599976pt;}
.yb9{bottom:340.320007pt;}
.y43{bottom:342.239990pt;}
.y25{bottom:343.039978pt;}
.y98{bottom:343.359985pt;}
.y15e{bottom:349.440002pt;}
.y12b{bottom:349.919983pt;}
.ye1{bottom:353.599976pt;}
.yb8{bottom:356.320007pt;}
.y42{bottom:358.719971pt;}
.y24{bottom:359.039978pt;}
.y97{bottom:359.200012pt;}
.y15d{bottom:362.400024pt;}
.y12a{bottom:365.760010pt;}
.ye0{bottom:369.440002pt;}
.yb7{bottom:372.000000pt;}
.y41{bottom:374.239990pt;}
.y23{bottom:374.880005pt;}
.y96{bottom:375.039978pt;}
.y15c{bottom:375.520020pt;}
.y129{bottom:381.760010pt;}
.ydf{bottom:385.280029pt;}
.yb6{bottom:388.000000pt;}
.y15b{bottom:388.479980pt;}
.y40{bottom:389.919983pt;}
.y22{bottom:390.880005pt;}
.y95{bottom:391.039978pt;}
.y128{bottom:397.599976pt;}
.yde{bottom:401.280029pt;}
.y15a{bottom:401.599976pt;}
.yb5{bottom:404.000000pt;}
.y3f{bottom:405.919983pt;}
.y21{bottom:406.719971pt;}
.y94{bottom:406.880005pt;}
.y127{bottom:413.599976pt;}
.y159{bottom:414.400024pt;}
.ydd{bottom:417.119995pt;}
.yb4{bottom:419.679993pt;}
.y3e{bottom:421.760010pt;}
.y20{bottom:422.559998pt;}
.y93{bottom:422.880005pt;}
.y158{bottom:427.520020pt;}
.y126{bottom:429.280029pt;}
.ydc{bottom:432.960022pt;}
.yb3{bottom:435.679993pt;}
.y3d{bottom:437.599976pt;}
.y70{bottom:438.083301pt;}
.y1f{bottom:438.559998pt;}
.y92{bottom:438.719971pt;}
.y157{bottom:440.479980pt;}
.y125{bottom:445.280029pt;}
.ydb{bottom:448.960022pt;}
.yb2{bottom:451.679993pt;}
.y3c{bottom:453.599976pt;}
.y6f{bottom:454.090023pt;}
.y1e{bottom:454.400024pt;}
.y91{bottom:454.559998pt;}
.y124{bottom:461.280029pt;}
.yda{bottom:464.799988pt;}
.y156{bottom:466.559998pt;}
.yb1{bottom:467.520020pt;}
.y3b{bottom:469.440002pt;}
.y6e{bottom:469.923648pt;}
.y1d{bottom:470.239990pt;}
.y90{bottom:470.559998pt;}
.y123{bottom:477.119995pt;}
.y155{bottom:479.520020pt;}
.yd9{bottom:480.799988pt;}
.yb0{bottom:483.359985pt;}
.y3a{bottom:485.440002pt;}
.y6d{bottom:485.930371pt;}
.y1c{bottom:486.239990pt;}
.y8f{bottom:486.400024pt;}
.y154{bottom:492.479980pt;}
.y122{bottom:492.960022pt;}
.y71{bottom:496.473000pt;}
.yd8{bottom:496.640015pt;}
.yaf{bottom:499.359985pt;}
.y39{bottom:501.280029pt;}
.y6c{bottom:501.763996pt;}
.y1b{bottom:502.080017pt;}
.y8e{bottom:502.239990pt;}
.y153{bottom:505.599976pt;}
.y13e{bottom:508.960022pt;}
.y121{bottom:509.440002pt;}
.y195{bottom:510.400024pt;}
.yd7{bottom:512.479980pt;}
.yae{bottom:515.200012pt;}
.y38{bottom:517.119995pt;}
.y6b{bottom:517.606074pt;}
.y1a{bottom:517.919983pt;}
.y8d{bottom:518.239990pt;}
.y152{bottom:518.559998pt;}
.y73{bottom:519.997191pt;}
.y120{bottom:524.799988pt;}
.y194{bottom:526.239990pt;}
.yd6{bottom:528.479980pt;}
.yad{bottom:531.039978pt;}
.y151{bottom:531.679993pt;}
.y37{bottom:533.119995pt;}
.y6a{bottom:533.604385pt;}
.y19{bottom:533.919983pt;}
.y8c{bottom:534.239990pt;}
.y11f{bottom:540.640015pt;}
.y193{bottom:542.080017pt;}
.yd5{bottom:544.480011pt;}
.yac{bottom:546.880005pt;}
.y36{bottom:548.959991pt;}
.y69{bottom:549.281777pt;}
.y8b{bottom:549.920013pt;}
.y18{bottom:550.720001pt;}
.y11e{bottom:556.640015pt;}
.y150{bottom:557.600006pt;}
.y192{bottom:558.079987pt;}
.yd4{bottom:560.160004pt;}
.yab{bottom:562.880005pt;}
.y35{bottom:564.799988pt;}
.y68{bottom:565.288500pt;}
.y8a{bottom:565.920013pt;}
.y17{bottom:566.239990pt;}
.y14f{bottom:570.559998pt;}
.y11d{bottom:572.480011pt;}
.y191{bottom:573.920013pt;}
.yaa{bottom:575.839996pt;}
.yd3{bottom:576.160004pt;}
.y67{bottom:581.286811pt;}
.y89{bottom:581.920013pt;}
.y14e{bottom:583.679993pt;}
.y11c{bottom:588.480011pt;}
.y190{bottom:589.760010pt;}
.yd2{bottom:592.000000pt;}
.y14d{bottom:596.640015pt;}
.y16{bottom:597.119995pt;}
.y66{bottom:597.128889pt;}
.y88{bottom:597.760010pt;}
.y11b{bottom:604.320007pt;}
.y18f{bottom:605.279999pt;}
.yd1{bottom:607.839996pt;}
.y14c{bottom:610.079987pt;}
.y15{bottom:612.640015pt;}
.y65{bottom:612.962514pt;}
.y87{bottom:613.600006pt;}
.y18e{bottom:618.239990pt;}
.y11a{bottom:620.160004pt;}
.yd0{bottom:623.839996pt;}
.y14b{bottom:625.920013pt;}
.y64{bottom:628.965031pt;}
.y86{bottom:629.600006pt;}
.y18d{bottom:631.359985pt;}
.y119{bottom:636.160004pt;}
.ycf{bottom:639.679993pt;}
.y14a{bottom:641.760010pt;}
.y14{bottom:643.519989pt;}
.yf4{bottom:643.679993pt;}
.y18c{bottom:644.320007pt;}
.y63{bottom:644.802037pt;}
.y85{bottom:645.440002pt;}
.y118{bottom:652.000000pt;}
.yce{bottom:655.040009pt;}
.y149{bottom:656.320007pt;}
.y18b{bottom:657.279999pt;}
.y62{bottom:660.806245pt;}
.y84{bottom:661.279999pt;}
.y117{bottom:667.839996pt;}
.ycd{bottom:668.160004pt;}
.y18a{bottom:670.239990pt;}
.y148{bottom:672.160004pt;}
.y61{bottom:676.641560pt;}
.y83{bottom:677.119995pt;}
.ycc{bottom:681.119995pt;}
.y189{bottom:683.359985pt;}
.y116{bottom:683.839996pt;}
.y147{bottom:688.160004pt;}
.y13{bottom:689.760010pt;}
.ycb{bottom:691.839996pt;}
.y60{bottom:692.483597pt;}
.y82{bottom:693.119995pt;}
.y188{bottom:696.320007pt;}
.y115{bottom:699.679993pt;}
.y146{bottom:704.000000pt;}
.y12{bottom:705.279999pt;}
.y5f{bottom:708.481083pt;}
.y81{bottom:709.119995pt;}
.y187{bottom:709.440002pt;}
.y114{bottom:715.519989pt;}
.y145{bottom:719.679993pt;}
.y11{bottom:720.640015pt;}
.y80{bottom:722.079987pt;}
.y186{bottom:722.239990pt;}
.y5e{bottom:724.323141pt;}
.y113{bottom:731.519989pt;}
.y144{bottom:734.399994pt;}
.y185{bottom:735.359985pt;}
.y10{bottom:736.160004pt;}
.y5d{bottom:740.165198pt;}
.y112{bottom:747.359985pt;}
.y184{bottom:748.320007pt;}
.y143{bottom:750.239990pt;}
.yf{bottom:751.519989pt;}
.y5c{bottom:756.162664pt;}
.y183{bottom:761.440002pt;}
.y111{bottom:763.359985pt;}
.y142{bottom:766.242127pt;}
.ye{bottom:767.040009pt;}
.y5b{bottom:772.160109pt;}
.y182{bottom:774.399994pt;}
.y110{bottom:779.200012pt;}
.y141{bottom:781.600006pt;}
.yd{bottom:782.399994pt;}
.y181{bottom:787.359985pt;}
.y5a{bottom:787.840036pt;}
.y10f{bottom:795.040009pt;}
.yc{bottom:797.760010pt;}
.y180{bottom:800.320007pt;}
.y59{bottom:803.844244pt;}
.y10e{bottom:811.039993pt;}
.yb{bottom:813.279999pt;}
.y17f{bottom:813.440002pt;}
.y58{bottom:819.679560pt;}
.y17e{bottom:826.399994pt;}
.y10d{bottom:826.880005pt;}
.ya{bottom:828.639999pt;}
.y57{bottom:835.521637pt;}
.y17d{bottom:839.520004pt;}
.y10c{bottom:842.720001pt;}
.y9{bottom:844.160004pt;}
.y56{bottom:851.519083pt;}
.y17c{bottom:852.320007pt;}
.y10b{bottom:858.720001pt;}
.y8{bottom:859.679993pt;}
.y75{bottom:863.199639pt;}
.y17b{bottom:865.440002pt;}
.y55{bottom:867.361140pt;}
.y10a{bottom:874.720001pt;}
.y7{bottom:874.880005pt;}
.y17a{bottom:878.399994pt;}
.y13d{bottom:890.399994pt;}
.y109{bottom:890.880005pt;}
.y179{bottom:891.520004pt;}
.y6{bottom:894.240005pt;}
.y178{bottom:904.479996pt;}
.y108{bottom:906.399994pt;}
.y177{bottom:917.440002pt;}
.y107{bottom:922.399994pt;}
.y5{bottom:924.000000pt;}
.y176{bottom:930.400002pt;}
.y106{bottom:938.080002pt;}
.y175{bottom:943.519997pt;}
.y4{bottom:953.760002pt;}
.y105{bottom:954.080002pt;}
.y174{bottom:956.480003pt;}
.y7c{bottom:982.559998pt;}
.y1{bottom:998.560001pt;}
.h14{height:2.398413pt;}
.h12{height:11.520620pt;}
.hc{height:13.121001pt;}
.he{height:16.322851pt;}
.h10{height:16.639243pt;}
.hd{height:29.834879pt;}
.h13{height:30.171039pt;}
.h17{height:34.059243pt;}
.h1d{height:35.996248pt;}
.hf{height:36.959352pt;}
.h1c{height:37.692132pt;}
.h1{height:41.779132pt;}
.hb{height:41.858192pt;}
.h2{height:44.789333pt;}
.h5{height:45.391450pt;}
.h6{height:45.661637pt;}
.h18{height:48.409612pt;}
.h7{height:48.409616pt;}
.h8{height:49.049508pt;}
.h1b{height:49.049628pt;}
.h19{height:49.049632pt;}
.h1a{height:49.049752pt;}
.h3{height:49.566735pt;}
.h15{height:54.941312pt;}
.h11{height:55.045279pt;}
.h9{height:65.280029pt;}
.h16{height:74.648487pt;}
.h4{height:110.053376pt;}
.ha{height:185.281874pt;}
.h0{height:1056.000000pt;}
.w9{width:2.559674pt;}
.we{width:4.161084pt;}
.w3{width:5.121722pt;}
.w6{width:6.558097pt;}
.w7{width:8.005464pt;}
.wa{width:12.159567pt;}
.w8{width:19.842872pt;}
.w4{width:30.242782pt;}
.w1{width:34.080001pt;}
.w5{width:40.323728pt;}
.w2{width:63.359759pt;}
.wd{width:87.999762pt;}
.wc{width:123.038373pt;}
.wb{width:362.239865pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:91.519997pt;}
.xd{left:102.238257pt;}
.x17{left:114.080002pt;}
.xe{left:121.919283pt;}
.xf{left:124.321375pt;}
.x3{left:125.599998pt;}
.x4{left:136.479996pt;}
.x10{left:138.878771pt;}
.xa{left:140.157865pt;}
.x8{left:144.003481pt;}
.x23{left:157.279999pt;}
.xb{left:170.400647pt;}
.x21{left:179.199997pt;}
.x1d{left:186.720001pt;}
.x9{left:207.043444pt;}
.xc{left:210.724375pt;}
.x24{left:216.639999pt;}
.x2{left:221.279999pt;}
.x1e{left:236.800003pt;}
.x22{left:257.279999pt;}
.x7{left:274.395464pt;}
.x18{left:281.119995pt;}
.x19{left:283.040009pt;}
.x20{left:284.799988pt;}
.x1a{left:301.920013pt;}
.x1f{left:310.079987pt;}
.x1c{left:319.040009pt;}
.x25{left:352.799988pt;}
.x15{left:390.720001pt;}
.x1b{left:392.799988pt;}
.x13{left:396.000000pt;}
.x6{left:419.679993pt;}
.x26{left:442.239990pt;}
.x5{left:464.799988pt;}
.x11{left:500.961574pt;}
.x30{left:517.119995pt;}
.x2d{left:535.359985pt;}
.x32{left:538.080017pt;}
.x29{left:548.000000pt;}
.x35{left:556.960022pt;}
.x2e{left:566.559998pt;}
.x33{left:574.239990pt;}
.x34{left:600.960022pt;}
.x36{left:613.119995pt;}
.x2a{left:616.479980pt;}
.x12{left:623.999947pt;}
.x2b{left:630.080017pt;}
.x27{left:648.799988pt;}
.x31{left:704.640015pt;}
.x28{left:705.919983pt;}
.x2c{left:707.679993pt;}
.x2f{left:715.840027pt;}
.x16{left:720.479980pt;}
.x14{left:724.320007pt;}
}




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