
    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_810ccef0a7e38bdc5f9621d0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.844727;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_00f3a1cb1d01e85ee8bc4187.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.900391;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_a3dcde6e023e858f49faef60.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.046387;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_eb1fa6e058b966f4af338fff.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7708a6b11ae7709145373935.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941000;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_cd2bf957819dfbf67afbb7f6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942000;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_3ec4a73301f9079fc4abec7f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942000;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_dc3c4a16d51995c1a88012e5.woff2')format("woff");}.ff8{font-family:ff8;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;}
.m2{transform:matrix(0.146818,0.202348,-0.202348,0.146818,0,0);-ms-transform:matrix(0.146818,0.202348,-0.202348,0.146818,0,0);-webkit-transform:matrix(0.146818,0.202348,-0.202348,0.146818,0,0);}
.m1{transform:matrix(0.146821,0.202345,-0.202345,0.146821,0,0);-ms-transform:matrix(0.146821,0.202345,-0.202345,0.146821,0,0);-webkit-transform:matrix(0.146821,0.202345,-0.202345,0.146821,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);}
.m3{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.816000px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.012000px;}
.ls0{letter-spacing:0.024000px;}
.ls5{letter-spacing:0.030000px;}
.ls2{letter-spacing:0.036000px;}
.ls3{letter-spacing:0.048000px;}
.ls8{letter-spacing:3.096000px;}
.ls7{letter-spacing:11.880000px;}
.ls6{letter-spacing:13.752000px;}
.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;}
}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:-12.720000px;}
.ws15{word-spacing:-12.000000px;}
.ws2{word-spacing:0.000000px;}
.ws7{word-spacing:6.984000px;}
.wsd{word-spacing:7.560000px;}
.wse{word-spacing:7.632000px;}
.ws6{word-spacing:12.240000px;}
.ws5{word-spacing:12.312000px;}
.ws9{word-spacing:12.672000px;}
.ws8{word-spacing:12.744000px;}
.ws3{word-spacing:12.888000px;}
.ws14{word-spacing:14.256000px;}
.ws13{word-spacing:14.328000px;}
.wsb{word-spacing:15.048000px;}
.wsa{word-spacing:15.120000px;}
.ws12{word-spacing:19.440000px;}
.ws11{word-spacing:19.512000px;}
.ws10{word-spacing:21.384000px;}
.wsf{word-spacing:21.456000px;}
.ws4{word-spacing:22.104000px;}
.wsc{word-spacing:26.496000px;}
._15{margin-left:-2411.070000px;}
._14{margin-left:-5.328000px;}
._d{margin-left:-3.600000px;}
._4{margin-left:-1.638000px;}
._8{width:1.073880px;}
._0{width:2.435976px;}
._6{width:3.630024px;}
._16{width:4.680000px;}
._11{width:5.688000px;}
._5{width:6.984000px;}
._a{width:8.339976px;}
._f{width:9.456192px;}
._3{width:11.249976px;}
._1{width:12.888000px;}
._e{width:14.040000px;}
._7{width:15.048000px;}
._12{width:16.056000px;}
._c{width:19.446000px;}
._b{width:20.646000px;}
._2{width:22.032000px;}
._1d{width:23.112000px;}
._13{width:24.192000px;}
._10{width:25.344000px;}
._9{width:26.388000px;}
._18{width:27.504000px;}
._1b{width:28.800000px;}
._25{width:30.024000px;}
._1f{width:31.032000px;}
._24{width:33.408000px;}
._20{width:34.488000px;}
._19{width:36.288000px;}
._1a{width:38.232000px;}
._21{width:39.600000px;}
._26{width:48.690000px;}
._27{width:49.860000px;}
._22{width:51.336000px;}
._2f{width:102.240000px;}
._2e{width:110.664000px;}
._1e{width:122.328000px;}
._2b{width:135.720000px;}
._29{width:152.640000px;}
._2d{width:168.768000px;}
._2c{width:236.088000px;}
._28{width:296.556000px;}
._1c{width:512.568000px;}
._23{width:726.750000px;}
._17{width:757.530000px;}
._2a{width:2124.000000px;}
.fc7{color:rgb(5,99,193);}
.fc5{color:rgb(5,99,193);}
.fc3{color:transparent;}
.fc4{color:rgb(214,241,254);}
.fc2{color:rgb(214,241,254);}
.fc1{color:rgb(0,0,255);}
.fcb{color:rgb(33,29,30);}
.fca{color:rgb(35,35,35);}
.fc9{color:rgb(51,51,51);}
.fc8{color:rgb(34,34,34);}
.fc6{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.000000px;}
.fs2{font-size:60.000000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs4{font-size:287.999744px;}
.fs3{font-size:288.007150px;}
.y0{bottom:0.000000px;}
.y92{bottom:5.734506px;}
.y2{bottom:5.734521px;}
.y1{bottom:52.124979px;}
.y76{bottom:96.070500px;}
.y14b{bottom:101.997015px;}
.y108{bottom:103.270455px;}
.y10b{bottom:103.270485px;}
.y90{bottom:103.270500px;}
.y9f{bottom:103.270515px;}
.yf2{bottom:103.270530px;}
.ydc{bottom:118.889985px;}
.y57{bottom:118.890000px;}
.y14a{bottom:122.695515px;}
.y105{bottom:123.969000px;}
.y125{bottom:123.969030px;}
.ydb{bottom:136.889985px;}
.y56{bottom:136.890000px;}
.y75{bottom:137.467500px;}
.y149{bottom:143.394015px;}
.y107{bottom:144.667455px;}
.y10f{bottom:144.667470px;}
.ye1{bottom:144.667485px;}
.y8f{bottom:144.667500px;}
.y9e{bottom:144.667515px;}
.y124{bottom:144.667530px;}
.yda{bottom:154.889985px;}
.y55{bottom:154.890000px;}
.y148{bottom:164.092530px;}
.y152{bottom:165.365955px;}
.y104{bottom:165.366000px;}
.y123{bottom:165.366030px;}
.yd9{bottom:172.889985px;}
.y54{bottom:172.890000px;}
.y74{bottom:178.864500px;}
.y147{bottom:184.791000px;}
.ye7{bottom:186.064455px;}
.y10e{bottom:186.064470px;}
.y8e{bottom:186.064500px;}
.yf1{bottom:186.064515px;}
.yd8{bottom:190.889985px;}
.y53{bottom:190.890000px;}
.y146{bottom:205.489500px;}
.y122{bottom:206.762970px;}
.y103{bottom:206.763000px;}
.y151{bottom:206.763030px;}
.yd7{bottom:208.889985px;}
.y52{bottom:208.890000px;}
.y73{bottom:220.261500px;}
.y145{bottom:226.188000px;}
.yd6{bottom:226.889985px;}
.y51{bottom:226.890000px;}
.y10d{bottom:227.461470px;}
.y9d{bottom:227.461485px;}
.y8d{bottom:227.461500px;}
.yec{bottom:227.461515px;}
.yf0{bottom:227.461530px;}
.yd5{bottom:244.889985px;}
.y50{bottom:244.890000px;}
.y144{bottom:246.886470px;}
.y102{bottom:248.160000px;}
.y121{bottom:248.160030px;}
.y72{bottom:261.658500px;}
.yd4{bottom:262.889985px;}
.y4f{bottom:262.890000px;}
.y143{bottom:267.584970px;}
.ye6{bottom:268.858470px;}
.y8c{bottom:268.858500px;}
.yef{bottom:268.858530px;}
.yd3{bottom:280.889985px;}
.y4e{bottom:280.890000px;}
.y142{bottom:288.283470px;}
.y120{bottom:289.556970px;}
.y150{bottom:289.556985px;}
.y101{bottom:289.557000px;}
.yd2{bottom:298.889985px;}
.y4d{bottom:298.890000px;}
.y71{bottom:303.055500px;}
.y141{bottom:308.981970px;}
.y10c{bottom:310.255470px;}
.y9c{bottom:310.255485px;}
.y8b{bottom:310.255500px;}
.yeb{bottom:310.255515px;}
.yd1{bottom:316.889985px;}
.y4c{bottom:316.890000px;}
.y140{bottom:329.680500px;}
.y14f{bottom:330.953985px;}
.y100{bottom:330.954000px;}
.yd0{bottom:334.889985px;}
.y4b{bottom:334.890000px;}
.y70{bottom:344.452500px;}
.y1b{bottom:346.848000px;}
.y13f{bottom:350.379000px;}
.ye5{bottom:351.652470px;}
.y8a{bottom:351.652500px;}
.yea{bottom:351.652515px;}
.ycf{bottom:352.889985px;}
.y4a{bottom:352.890000px;}
.yce{bottom:370.889985px;}
.y49{bottom:370.890000px;}
.y13e{bottom:371.077515px;}
.yff{bottom:372.351000px;}
.y11f{bottom:372.351030px;}
.y6f{bottom:385.849500px;}
.ycd{bottom:388.889985px;}
.y48{bottom:388.890000px;}
.y13d{bottom:391.776015px;}
.ye0{bottom:393.049485px;}
.y89{bottom:393.049500px;}
.y109{bottom:393.049530px;}
.ycc{bottom:406.889985px;}
.y47{bottom:406.890000px;}
.y13c{bottom:412.474500px;}
.yfe{bottom:413.748000px;}
.y11e{bottom:413.748030px;}
.ycb{bottom:424.889985px;}
.y46{bottom:424.890000px;}
.y6e{bottom:427.246500px;}
.y1a{bottom:429.642000px;}
.y13b{bottom:433.173000px;}
.ye4{bottom:434.446485px;}
.y88{bottom:434.446500px;}
.ye9{bottom:434.446515px;}
.yca{bottom:442.889985px;}
.y45{bottom:442.890000px;}
.y13a{bottom:453.871500px;}
.yfd{bottom:455.144985px;}
.y118{bottom:455.145000px;}
.yc9{bottom:460.889985px;}
.y44{bottom:460.890000px;}
.y6d{bottom:468.643500px;}
.y19{bottom:471.039000px;}
.y139{bottom:474.570015px;}
.ye3{bottom:475.843485px;}
.y87{bottom:475.843500px;}
.ye8{bottom:475.843515px;}
.yc8{bottom:478.889985px;}
.y43{bottom:478.890000px;}
.y138{bottom:495.268500px;}
.y11d{bottom:496.541985px;}
.yfc{bottom:496.542000px;}
.yc7{bottom:496.889985px;}
.y42{bottom:496.890000px;}
.y6c{bottom:510.040500px;}
.y18{bottom:512.436000px;}
.yc6{bottom:514.889985px;}
.y41{bottom:514.890000px;}
.y137{bottom:515.967000px;}
.y10a{bottom:517.240470px;}
.ye2{bottom:517.240485px;}
.y86{bottom:517.240500px;}
.yee{bottom:517.240515px;}
.yc5{bottom:532.889985px;}
.y40{bottom:532.890000px;}
.y136{bottom:536.665530px;}
.yfb{bottom:537.938985px;}
.y117{bottom:537.939000px;}
.y14e{bottom:537.939015px;}
.yc4{bottom:550.889985px;}
.y3f{bottom:550.890000px;}
.y6b{bottom:551.437500px;}
.y17{bottom:553.833000px;}
.y135{bottom:557.364030px;}
.y9b{bottom:558.637485px;}
.y85{bottom:558.637500px;}
.yed{bottom:558.637515px;}
.yc3{bottom:568.889985px;}
.y3e{bottom:568.890000px;}
.y134{bottom:578.062530px;}
.yfa{bottom:579.336000px;}
.yc2{bottom:586.889985px;}
.y3d{bottom:586.890000px;}
.y6a{bottom:592.834500px;}
.y133{bottom:598.761015px;}
.y9a{bottom:600.034485px;}
.y84{bottom:600.034500px;}
.ydf{bottom:600.034515px;}
.yc1{bottom:604.889985px;}
.y3c{bottom:604.890000px;}
.y132{bottom:619.459485px;}
.y11c{bottom:620.732985px;}
.yf9{bottom:620.733000px;}
.y14d{bottom:620.733015px;}
.yc0{bottom:622.889985px;}
.y3b{bottom:622.890000px;}
.y69{bottom:634.231500px;}
.y16{bottom:636.928500px;}
.y131{bottom:640.157985px;}
.ybf{bottom:640.889985px;}
.y3a{bottom:640.890000px;}
.y99{bottom:641.431485px;}
.y83{bottom:641.431500px;}
.yde{bottom:641.431515px;}
.y15{bottom:657.627000px;}
.ybe{bottom:658.889985px;}
.y39{bottom:658.890000px;}
.y130{bottom:660.856485px;}
.yf8{bottom:662.130000px;}
.y68{bottom:675.628500px;}
.ybd{bottom:676.889985px;}
.y38{bottom:676.890000px;}
.y14{bottom:678.325500px;}
.y12f{bottom:681.555015px;}
.y98{bottom:682.828485px;}
.y82{bottom:682.828500px;}
.yf3{bottom:682.828515px;}
.ybc{bottom:694.889985px;}
.y37{bottom:694.890000px;}
.y13{bottom:699.024000px;}
.y12e{bottom:702.253515px;}
.y11b{bottom:703.526985px;}
.yf7{bottom:703.527000px;}
.y14c{bottom:703.527015px;}
.ybb{bottom:712.889985px;}
.y36{bottom:712.890000px;}
.y67{bottom:717.025500px;}
.y12{bottom:719.722500px;}
.y12d{bottom:722.951985px;}
.y97{bottom:724.225485px;}
.y81{bottom:724.225500px;}
.yba{bottom:730.889985px;}
.y35{bottom:730.890000px;}
.y11{bottom:740.421000px;}
.y12c{bottom:743.650500px;}
.yf6{bottom:744.924000px;}
.y11a{bottom:744.924015px;}
.yb9{bottom:748.889985px;}
.y34{bottom:748.890000px;}
.y66{bottom:758.422500px;}
.y10{bottom:761.119500px;}
.y12b{bottom:764.348985px;}
.y96{bottom:765.622485px;}
.y80{bottom:765.622500px;}
.ydd{bottom:765.622515px;}
.yb8{bottom:766.889985px;}
.y33{bottom:766.890000px;}
.yf{bottom:781.818000px;}
.yb7{bottom:784.889985px;}
.y32{bottom:784.890000px;}
.y12a{bottom:785.047485px;}
.yf5{bottom:786.321000px;}
.y119{bottom:786.321015px;}
.y65{bottom:799.819500px;}
.ye{bottom:802.516500px;}
.yb6{bottom:802.889985px;}
.y31{bottom:802.890000px;}
.y129{bottom:805.746000px;}
.y95{bottom:807.019485px;}
.y7f{bottom:807.019500px;}
.yb5{bottom:820.889985px;}
.y30{bottom:820.890000px;}
.yd{bottom:823.215000px;}
.y128{bottom:826.444500px;}
.yf4{bottom:827.718000px;}
.yb4{bottom:838.889985px;}
.y2f{bottom:838.890000px;}
.y64{bottom:841.216500px;}
.yc{bottom:843.913500px;}
.y127{bottom:847.143000px;}
.y94{bottom:848.416485px;}
.y7e{bottom:848.416500px;}
.yb3{bottom:856.889985px;}
.y2e{bottom:856.890000px;}
.yb{bottom:864.612000px;}
.y126{bottom:868.782000px;}
.y116{bottom:869.115000px;}
.yb2{bottom:874.889985px;}
.y2d{bottom:874.890000px;}
.y63{bottom:882.613500px;}
.ya{bottom:885.310500px;}
.y106{bottom:889.813485px;}
.y7d{bottom:889.813500px;}
.yb1{bottom:892.889985px;}
.y2c{bottom:892.890000px;}
.y9{bottom:906.009000px;}
.y115{bottom:910.512000px;}
.yb0{bottom:910.889985px;}
.y2b{bottom:910.890000px;}
.y62{bottom:924.010500px;}
.y8{bottom:926.707500px;}
.yaf{bottom:928.889985px;}
.y2a{bottom:928.890000px;}
.y93{bottom:931.210485px;}
.y7c{bottom:931.210500px;}
.yae{bottom:946.889985px;}
.y29{bottom:946.890000px;}
.y7{bottom:947.406000px;}
.y114{bottom:951.909000px;}
.yad{bottom:964.889985px;}
.y28{bottom:964.890000px;}
.y61{bottom:965.407500px;}
.y6{bottom:968.104500px;}
.y7b{bottom:972.607500px;}
.yac{bottom:982.889985px;}
.y27{bottom:982.890000px;}
.y113{bottom:993.306000px;}
.yab{bottom:1000.889985px;}
.y26{bottom:1000.890000px;}
.y60{bottom:1006.804500px;}
.y5{bottom:1012.501500px;}
.y7a{bottom:1014.004500px;}
.yaa{bottom:1018.889985px;}
.y25{bottom:1018.890000px;}
.y112{bottom:1034.703000px;}
.ya9{bottom:1036.889985px;}
.y24{bottom:1036.890000px;}
.y5f{bottom:1048.201500px;}
.ya8{bottom:1054.889985px;}
.y23{bottom:1054.890000px;}
.y79{bottom:1055.401500px;}
.ya7{bottom:1072.889985px;}
.y22{bottom:1072.890000px;}
.y4{bottom:1075.245000px;}
.y111{bottom:1076.100000px;}
.ya6{bottom:1090.889985px;}
.y21{bottom:1090.890000px;}
.y5e{bottom:1093.198500px;}
.y78{bottom:1096.798500px;}
.ya5{bottom:1108.889985px;}
.y20{bottom:1108.890000px;}
.y3{bottom:1117.393500px;}
.y110{bottom:1117.497000px;}
.ya4{bottom:1126.889985px;}
.y1f{bottom:1126.890000px;}
.y5d{bottom:1138.195500px;}
.ya3{bottom:1144.889985px;}
.y1e{bottom:1144.890000px;}
.ya2{bottom:1162.889985px;}
.y1d{bottom:1162.890000px;}
.ya1{bottom:1180.889985px;}
.y1c{bottom:1180.890000px;}
.y5b{bottom:1181.341500px;}
.y5a{bottom:1199.341500px;}
.y59{bottom:1217.341500px;}
.ya0{bottom:1234.889985px;}
.y77{bottom:1234.890000px;}
.y58{bottom:1235.341500px;}
.y5c{bottom:1286.955900px;}
.y91{bottom:1286.955960px;}
.h1{height:23.772000px;}
.h7{height:43.260000px;}
.h2{height:47.988281px;}
.h9{height:48.761719px;}
.h6{height:49.289062px;}
.h3{height:57.503906px;}
.h4{height:59.800781px;}
.hb{height:61.683187px;}
.h5{height:63.351562px;}
.ha{height:207.647816px;}
.h8{height:207.653155px;}
.h0{height:1263.000000px;}
.w1{width:10.323000px;}
.w2{width:19.446000px;}
.w0{width:892.500000px;}
.x5{left:-48.419700px;}
.x0{left:0.000000px;}
.x3{left:12.000000px;}
.x4{left:77.401500px;}
.x2{left:108.000000px;}
.x9{left:162.000000px;}
.x7{left:765.653998px;}
.x1{left:774.777045px;}
.x8{left:796.455000px;}
.x6{left:804.150000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.392000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.010667pt;}
.ls0{letter-spacing:0.021333pt;}
.ls5{letter-spacing:0.026667pt;}
.ls2{letter-spacing:0.032000pt;}
.ls3{letter-spacing:0.042667pt;}
.ls8{letter-spacing:2.752000pt;}
.ls7{letter-spacing:10.560000pt;}
.ls6{letter-spacing:12.224000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:-11.306667pt;}
.ws15{word-spacing:-10.666667pt;}
.ws2{word-spacing:0.000000pt;}
.ws7{word-spacing:6.208000pt;}
.wsd{word-spacing:6.720000pt;}
.wse{word-spacing:6.784000pt;}
.ws6{word-spacing:10.880000pt;}
.ws5{word-spacing:10.944000pt;}
.ws9{word-spacing:11.264000pt;}
.ws8{word-spacing:11.328000pt;}
.ws3{word-spacing:11.456000pt;}
.ws14{word-spacing:12.672000pt;}
.ws13{word-spacing:12.736000pt;}
.wsb{word-spacing:13.376000pt;}
.wsa{word-spacing:13.440000pt;}
.ws12{word-spacing:17.280000pt;}
.ws11{word-spacing:17.344000pt;}
.ws10{word-spacing:19.008000pt;}
.wsf{word-spacing:19.072000pt;}
.ws4{word-spacing:19.648000pt;}
.wsc{word-spacing:23.552000pt;}
._15{margin-left:-2143.173333pt;}
._14{margin-left:-4.736000pt;}
._d{margin-left:-3.200000pt;}
._4{margin-left:-1.456000pt;}
._8{width:0.954560pt;}
._0{width:2.165312pt;}
._6{width:3.226688pt;}
._16{width:4.160000pt;}
._11{width:5.056000pt;}
._5{width:6.208000pt;}
._a{width:7.413312pt;}
._f{width:8.405504pt;}
._3{width:9.999979pt;}
._1{width:11.456000pt;}
._e{width:12.480000pt;}
._7{width:13.376000pt;}
._12{width:14.272000pt;}
._c{width:17.285333pt;}
._b{width:18.352000pt;}
._2{width:19.584000pt;}
._1d{width:20.544000pt;}
._13{width:21.504000pt;}
._10{width:22.528000pt;}
._9{width:23.456000pt;}
._18{width:24.448000pt;}
._1b{width:25.600000pt;}
._25{width:26.688000pt;}
._1f{width:27.584000pt;}
._24{width:29.696000pt;}
._20{width:30.656000pt;}
._19{width:32.256000pt;}
._1a{width:33.984000pt;}
._21{width:35.200000pt;}
._26{width:43.280000pt;}
._27{width:44.320000pt;}
._22{width:45.632000pt;}
._2f{width:90.880000pt;}
._2e{width:98.368000pt;}
._1e{width:108.736000pt;}
._2b{width:120.640000pt;}
._29{width:135.680000pt;}
._2d{width:150.016000pt;}
._2c{width:209.856000pt;}
._28{width:263.605333pt;}
._1c{width:455.616000pt;}
._23{width:646.000000pt;}
._17{width:673.360000pt;}
._2a{width:1888.000000pt;}
.fs5{font-size:42.666667pt;}
.fs2{font-size:53.333333pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs4{font-size:255.999773pt;}
.fs3{font-size:256.006355pt;}
.y0{bottom:0.000000pt;}
.y92{bottom:5.097339pt;}
.y2{bottom:5.097352pt;}
.y1{bottom:46.333314pt;}
.y76{bottom:85.396000pt;}
.y14b{bottom:90.664013pt;}
.y108{bottom:91.795960pt;}
.y10b{bottom:91.795987pt;}
.y90{bottom:91.796000pt;}
.y9f{bottom:91.796013pt;}
.yf2{bottom:91.796027pt;}
.ydc{bottom:105.679987pt;}
.y57{bottom:105.680000pt;}
.y14a{bottom:109.062680pt;}
.y105{bottom:110.194667pt;}
.y125{bottom:110.194693pt;}
.ydb{bottom:121.679987pt;}
.y56{bottom:121.680000pt;}
.y75{bottom:122.193333pt;}
.y149{bottom:127.461347pt;}
.y107{bottom:128.593293pt;}
.y10f{bottom:128.593307pt;}
.ye1{bottom:128.593320pt;}
.y8f{bottom:128.593333pt;}
.y9e{bottom:128.593347pt;}
.y124{bottom:128.593360pt;}
.yda{bottom:137.679987pt;}
.y55{bottom:137.680000pt;}
.y148{bottom:145.860027pt;}
.y152{bottom:146.991960pt;}
.y104{bottom:146.992000pt;}
.y123{bottom:146.992027pt;}
.yd9{bottom:153.679987pt;}
.y54{bottom:153.680000pt;}
.y74{bottom:158.990667pt;}
.y147{bottom:164.258667pt;}
.ye7{bottom:165.390627pt;}
.y10e{bottom:165.390640pt;}
.y8e{bottom:165.390667pt;}
.yf1{bottom:165.390680pt;}
.yd8{bottom:169.679987pt;}
.y53{bottom:169.680000pt;}
.y146{bottom:182.657333pt;}
.y122{bottom:183.789307pt;}
.y103{bottom:183.789333pt;}
.y151{bottom:183.789360pt;}
.yd7{bottom:185.679987pt;}
.y52{bottom:185.680000pt;}
.y73{bottom:195.788000pt;}
.y145{bottom:201.056000pt;}
.yd6{bottom:201.679987pt;}
.y51{bottom:201.680000pt;}
.y10d{bottom:202.187973pt;}
.y9d{bottom:202.187987pt;}
.y8d{bottom:202.188000pt;}
.yec{bottom:202.188013pt;}
.yf0{bottom:202.188027pt;}
.yd5{bottom:217.679987pt;}
.y50{bottom:217.680000pt;}
.y144{bottom:219.454640pt;}
.y102{bottom:220.586667pt;}
.y121{bottom:220.586693pt;}
.y72{bottom:232.585333pt;}
.yd4{bottom:233.679987pt;}
.y4f{bottom:233.680000pt;}
.y143{bottom:237.853307pt;}
.ye6{bottom:238.985307pt;}
.y8c{bottom:238.985333pt;}
.yef{bottom:238.985360pt;}
.yd3{bottom:249.679987pt;}
.y4e{bottom:249.680000pt;}
.y142{bottom:256.251973pt;}
.y120{bottom:257.383973pt;}
.y150{bottom:257.383987pt;}
.y101{bottom:257.384000pt;}
.yd2{bottom:265.679987pt;}
.y4d{bottom:265.680000pt;}
.y71{bottom:269.382667pt;}
.y141{bottom:274.650640pt;}
.y10c{bottom:275.782640pt;}
.y9c{bottom:275.782653pt;}
.y8b{bottom:275.782667pt;}
.yeb{bottom:275.782680pt;}
.yd1{bottom:281.679987pt;}
.y4c{bottom:281.680000pt;}
.y140{bottom:293.049333pt;}
.y14f{bottom:294.181320pt;}
.y100{bottom:294.181333pt;}
.yd0{bottom:297.679987pt;}
.y4b{bottom:297.680000pt;}
.y70{bottom:306.180000pt;}
.y1b{bottom:308.309333pt;}
.y13f{bottom:311.448000pt;}
.ye5{bottom:312.579973pt;}
.y8a{bottom:312.580000pt;}
.yea{bottom:312.580013pt;}
.ycf{bottom:313.679987pt;}
.y4a{bottom:313.680000pt;}
.yce{bottom:329.679987pt;}
.y49{bottom:329.680000pt;}
.y13e{bottom:329.846680pt;}
.yff{bottom:330.978667pt;}
.y11f{bottom:330.978693pt;}
.y6f{bottom:342.977333pt;}
.ycd{bottom:345.679987pt;}
.y48{bottom:345.680000pt;}
.y13d{bottom:348.245347pt;}
.ye0{bottom:349.377320pt;}
.y89{bottom:349.377333pt;}
.y109{bottom:349.377360pt;}
.ycc{bottom:361.679987pt;}
.y47{bottom:361.680000pt;}
.y13c{bottom:366.644000pt;}
.yfe{bottom:367.776000pt;}
.y11e{bottom:367.776027pt;}
.ycb{bottom:377.679987pt;}
.y46{bottom:377.680000pt;}
.y6e{bottom:379.774667pt;}
.y1a{bottom:381.904000pt;}
.y13b{bottom:385.042667pt;}
.ye4{bottom:386.174653pt;}
.y88{bottom:386.174667pt;}
.ye9{bottom:386.174680pt;}
.yca{bottom:393.679987pt;}
.y45{bottom:393.680000pt;}
.y13a{bottom:403.441333pt;}
.yfd{bottom:404.573320pt;}
.y118{bottom:404.573333pt;}
.yc9{bottom:409.679987pt;}
.y44{bottom:409.680000pt;}
.y6d{bottom:416.572000pt;}
.y19{bottom:418.701333pt;}
.y139{bottom:421.840013pt;}
.ye3{bottom:422.971987pt;}
.y87{bottom:422.972000pt;}
.ye8{bottom:422.972013pt;}
.yc8{bottom:425.679987pt;}
.y43{bottom:425.680000pt;}
.y138{bottom:440.238667pt;}
.y11d{bottom:441.370653pt;}
.yfc{bottom:441.370667pt;}
.yc7{bottom:441.679987pt;}
.y42{bottom:441.680000pt;}
.y6c{bottom:453.369333pt;}
.y18{bottom:455.498667pt;}
.yc6{bottom:457.679987pt;}
.y41{bottom:457.680000pt;}
.y137{bottom:458.637333pt;}
.y10a{bottom:459.769307pt;}
.ye2{bottom:459.769320pt;}
.y86{bottom:459.769333pt;}
.yee{bottom:459.769347pt;}
.yc5{bottom:473.679987pt;}
.y40{bottom:473.680000pt;}
.y136{bottom:477.036027pt;}
.yfb{bottom:478.167987pt;}
.y117{bottom:478.168000pt;}
.y14e{bottom:478.168013pt;}
.yc4{bottom:489.679987pt;}
.y3f{bottom:489.680000pt;}
.y6b{bottom:490.166667pt;}
.y17{bottom:492.296000pt;}
.y135{bottom:495.434693pt;}
.y9b{bottom:496.566653pt;}
.y85{bottom:496.566667pt;}
.yed{bottom:496.566680pt;}
.yc3{bottom:505.679987pt;}
.y3e{bottom:505.680000pt;}
.y134{bottom:513.833360pt;}
.yfa{bottom:514.965333pt;}
.yc2{bottom:521.679987pt;}
.y3d{bottom:521.680000pt;}
.y6a{bottom:526.964000pt;}
.y133{bottom:532.232013pt;}
.y9a{bottom:533.363987pt;}
.y84{bottom:533.364000pt;}
.ydf{bottom:533.364013pt;}
.yc1{bottom:537.679987pt;}
.y3c{bottom:537.680000pt;}
.y132{bottom:550.630653pt;}
.y11c{bottom:551.762653pt;}
.yf9{bottom:551.762667pt;}
.y14d{bottom:551.762680pt;}
.yc0{bottom:553.679987pt;}
.y3b{bottom:553.680000pt;}
.y69{bottom:563.761333pt;}
.y16{bottom:566.158667pt;}
.y131{bottom:569.029320pt;}
.ybf{bottom:569.679987pt;}
.y3a{bottom:569.680000pt;}
.y99{bottom:570.161320pt;}
.y83{bottom:570.161333pt;}
.yde{bottom:570.161347pt;}
.y15{bottom:584.557333pt;}
.ybe{bottom:585.679987pt;}
.y39{bottom:585.680000pt;}
.y130{bottom:587.427987pt;}
.yf8{bottom:588.560000pt;}
.y68{bottom:600.558667pt;}
.ybd{bottom:601.679987pt;}
.y38{bottom:601.680000pt;}
.y14{bottom:602.956000pt;}
.y12f{bottom:605.826680pt;}
.y98{bottom:606.958653pt;}
.y82{bottom:606.958667pt;}
.yf3{bottom:606.958680pt;}
.ybc{bottom:617.679987pt;}
.y37{bottom:617.680000pt;}
.y13{bottom:621.354667pt;}
.y12e{bottom:624.225347pt;}
.y11b{bottom:625.357320pt;}
.yf7{bottom:625.357333pt;}
.y14c{bottom:625.357347pt;}
.ybb{bottom:633.679987pt;}
.y36{bottom:633.680000pt;}
.y67{bottom:637.356000pt;}
.y12{bottom:639.753333pt;}
.y12d{bottom:642.623987pt;}
.y97{bottom:643.755987pt;}
.y81{bottom:643.756000pt;}
.yba{bottom:649.679987pt;}
.y35{bottom:649.680000pt;}
.y11{bottom:658.152000pt;}
.y12c{bottom:661.022667pt;}
.yf6{bottom:662.154667pt;}
.y11a{bottom:662.154680pt;}
.yb9{bottom:665.679987pt;}
.y34{bottom:665.680000pt;}
.y66{bottom:674.153333pt;}
.y10{bottom:676.550667pt;}
.y12b{bottom:679.421320pt;}
.y96{bottom:680.553320pt;}
.y80{bottom:680.553333pt;}
.ydd{bottom:680.553347pt;}
.yb8{bottom:681.679987pt;}
.y33{bottom:681.680000pt;}
.yf{bottom:694.949333pt;}
.yb7{bottom:697.679987pt;}
.y32{bottom:697.680000pt;}
.y12a{bottom:697.819987pt;}
.yf5{bottom:698.952000pt;}
.y119{bottom:698.952013pt;}
.y65{bottom:710.950667pt;}
.ye{bottom:713.348000pt;}
.yb6{bottom:713.679987pt;}
.y31{bottom:713.680000pt;}
.y129{bottom:716.218667pt;}
.y95{bottom:717.350653pt;}
.y7f{bottom:717.350667pt;}
.yb5{bottom:729.679987pt;}
.y30{bottom:729.680000pt;}
.yd{bottom:731.746667pt;}
.y128{bottom:734.617333pt;}
.yf4{bottom:735.749333pt;}
.yb4{bottom:745.679987pt;}
.y2f{bottom:745.680000pt;}
.y64{bottom:747.748000pt;}
.yc{bottom:750.145333pt;}
.y127{bottom:753.016000pt;}
.y94{bottom:754.147987pt;}
.y7e{bottom:754.148000pt;}
.yb3{bottom:761.679987pt;}
.y2e{bottom:761.680000pt;}
.yb{bottom:768.544000pt;}
.y126{bottom:772.250667pt;}
.y116{bottom:772.546667pt;}
.yb2{bottom:777.679987pt;}
.y2d{bottom:777.680000pt;}
.y63{bottom:784.545333pt;}
.ya{bottom:786.942667pt;}
.y106{bottom:790.945320pt;}
.y7d{bottom:790.945333pt;}
.yb1{bottom:793.679987pt;}
.y2c{bottom:793.680000pt;}
.y9{bottom:805.341333pt;}
.y115{bottom:809.344000pt;}
.yb0{bottom:809.679987pt;}
.y2b{bottom:809.680000pt;}
.y62{bottom:821.342667pt;}
.y8{bottom:823.740000pt;}
.yaf{bottom:825.679987pt;}
.y2a{bottom:825.680000pt;}
.y93{bottom:827.742653pt;}
.y7c{bottom:827.742667pt;}
.yae{bottom:841.679987pt;}
.y29{bottom:841.680000pt;}
.y7{bottom:842.138667pt;}
.y114{bottom:846.141333pt;}
.yad{bottom:857.679987pt;}
.y28{bottom:857.680000pt;}
.y61{bottom:858.140000pt;}
.y6{bottom:860.537333pt;}
.y7b{bottom:864.540000pt;}
.yac{bottom:873.679987pt;}
.y27{bottom:873.680000pt;}
.y113{bottom:882.938667pt;}
.yab{bottom:889.679987pt;}
.y26{bottom:889.680000pt;}
.y60{bottom:894.937333pt;}
.y5{bottom:900.001333pt;}
.y7a{bottom:901.337333pt;}
.yaa{bottom:905.679987pt;}
.y25{bottom:905.680000pt;}
.y112{bottom:919.736000pt;}
.ya9{bottom:921.679987pt;}
.y24{bottom:921.680000pt;}
.y5f{bottom:931.734667pt;}
.ya8{bottom:937.679987pt;}
.y23{bottom:937.680000pt;}
.y79{bottom:938.134667pt;}
.ya7{bottom:953.679987pt;}
.y22{bottom:953.680000pt;}
.y4{bottom:955.773333pt;}
.y111{bottom:956.533333pt;}
.ya6{bottom:969.679987pt;}
.y21{bottom:969.680000pt;}
.y5e{bottom:971.732000pt;}
.y78{bottom:974.932000pt;}
.ya5{bottom:985.679987pt;}
.y20{bottom:985.680000pt;}
.y3{bottom:993.238667pt;}
.y110{bottom:993.330667pt;}
.ya4{bottom:1001.679987pt;}
.y1f{bottom:1001.680000pt;}
.y5d{bottom:1011.729333pt;}
.ya3{bottom:1017.679987pt;}
.y1e{bottom:1017.680000pt;}
.ya2{bottom:1033.679987pt;}
.y1d{bottom:1033.680000pt;}
.ya1{bottom:1049.679987pt;}
.y1c{bottom:1049.680000pt;}
.y5b{bottom:1050.081333pt;}
.y5a{bottom:1066.081333pt;}
.y59{bottom:1082.081333pt;}
.ya0{bottom:1097.679987pt;}
.y77{bottom:1097.680000pt;}
.y58{bottom:1098.081333pt;}
.y5c{bottom:1143.960800pt;}
.y91{bottom:1143.960853pt;}
.h1{height:21.130667pt;}
.h7{height:38.453333pt;}
.h2{height:42.656250pt;}
.h9{height:43.343750pt;}
.h6{height:43.812500pt;}
.h3{height:51.114583pt;}
.h4{height:53.156250pt;}
.hb{height:54.829500pt;}
.h5{height:56.312500pt;}
.ha{height:184.575836pt;}
.h8{height:184.580582pt;}
.h0{height:1122.666667pt;}
.w1{width:9.176000pt;}
.w2{width:17.285333pt;}
.w0{width:793.333333pt;}
.x5{left:-43.039733pt;}
.x0{left:0.000000pt;}
.x3{left:10.666667pt;}
.x4{left:68.801333pt;}
.x2{left:96.000000pt;}
.x9{left:144.000000pt;}
.x7{left:680.581331pt;}
.x1{left:688.690706pt;}
.x8{left:707.960000pt;}
.x6{left:714.800000pt;}
}




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