
    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_84df7eb2d2e60e14cc814bd1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.988281;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_50ab03802afc46c24eac895b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.027832;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_a0e2d54a9dd3901f204092ed.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_e1c4be6de7659eae986c10a3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_518db79bf442c0f3efe8b1d6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.149414;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_6cdac339b8edf648d35bfbb4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_39d9371f7e009c5c8945db04.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_83a078b157f176f1d0964bb9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5b6dbc02bd06c4684801fa73.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_675c61c5c8694c7f82cbbd9b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.933594;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_6ae0dc4309adfddbba6ad5eb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.942383;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:ffc;src:url('chunks/assets/font_9e3d8348bb128ccbd9a2cec7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_fa7a2e0754a733349c73d34c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:5.760000px;}
.v2{vertical-align:27.360000px;}
.ls16{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.181200px;}
.lsf{letter-spacing:-0.178800px;}
.ls17{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.132600px;}
.ls15{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.013200px;}
.lsa{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.256200px;}
.ls14{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.302400px;}
.ls3{letter-spacing:0.313800px;}
.ls9{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.538800px;}
.lsd{letter-spacing:0.936000px;}
.lse{letter-spacing:1.440000px;}
.ls4{letter-spacing:1.589760px;}
.ls11{letter-spacing:44.064000px;}
.ls13{letter-spacing:44.784000px;}
.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;}
}
.ws1{word-spacing:-23.636880px;}
.ws11{word-spacing:-18.288000px;}
.ws10{word-spacing:-18.072000px;}
.ws9{word-spacing:-18.000000px;}
.ws12{word-spacing:-17.928000px;}
.ws13{word-spacing:-17.856000px;}
.wsa{word-spacing:-17.784000px;}
.wse{word-spacing:-17.712000px;}
.ws0{word-spacing:-16.566720px;}
.wsc{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.284040px;}
.ws5{word-spacing:-15.226440px;}
.ws6{word-spacing:-14.837640px;}
.ws8{word-spacing:-12.598800px;}
.ws7{word-spacing:-11.878800px;}
.wsb{word-spacing:-10.440000px;}
.wsd{word-spacing:-10.261200px;}
.ws3{word-spacing:-0.096000px;}
.wsf{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
._2{margin-left:-12.682463px;}
._5{margin-left:-10.294943px;}
._3{margin-left:-9.176926px;}
._6{margin-left:-7.792223px;}
._8{margin-left:-6.190943px;}
._4{margin-left:-5.077823px;}
._12{margin-left:-4.062531px;}
._11{margin-left:-3.024000px;}
._1{margin-left:-1.214497px;}
._0{width:1.041840px;}
._7{width:2.519040px;}
._c{width:3.712080px;}
._e{width:5.328000px;}
._14{width:6.336000px;}
._a{width:7.344000px;}
._b{width:8.534160px;}
._13{width:9.825840px;}
._17{width:10.827120px;}
._1a{width:12.329760px;}
._f{width:13.392000px;}
._10{width:14.616000px;}
._18{width:16.272000px;}
._d{width:19.046160px;}
._19{width:20.952000px;}
._16{width:23.040000px;}
._1b{width:24.384000px;}
._1c{width:25.416000px;}
._2b{width:26.592000px;}
._15{width:27.936000px;}
._1d{width:43.920000px;}
._2c{width:47.664000px;}
._2d{width:48.816000px;}
._20{width:58.752000px;}
._21{width:60.578160px;}
._31{width:63.792000px;}
._32{width:64.872000px;}
._28{width:76.320000px;}
._29{width:77.738497px;}
._26{width:80.568000px;}
._27{width:82.380000px;}
._34{width:109.284000px;}
._33{width:110.352000px;}
._24{width:116.568000px;}
._25{width:118.008000px;}
._2e{width:129.744000px;}
._2f{width:130.836000px;}
._22{width:164.952000px;}
._23{width:166.082160px;}
._1e{width:176.904000px;}
._1f{width:178.056000px;}
._30{width:192.600000px;}
._2a{width:233.784000px;}
._9{width:846.156000px;}
.fc4{color:rgb(5,99,193);}
.fc2{color:transparent;}
.fc1{color:rgb(0,89,150);}
.fc3{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fs7{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs8{font-size:95.760000px;}
.fs3{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.yc2{bottom:7.920000px;}
.yc7{bottom:8.100000px;}
.y8e{bottom:10.620000px;}
.y117{bottom:10.665000px;}
.y111{bottom:10.800000px;}
.y1{bottom:32.940000px;}
.yd{bottom:57.600000px;}
.yc{bottom:77.616000px;}
.ybe{bottom:110.376000px;}
.y6e{bottom:115.056000px;}
.yea{bottom:119.736000px;}
.y96{bottom:121.536000px;}
.yb7{bottom:123.516000px;}
.yf3{bottom:125.136000px;}
.y107{bottom:131.256000px;}
.y4c{bottom:131.976000px;}
.yd9{bottom:132.336000px;}
.ybd{bottom:138.816000px;}
.y6d{bottom:146.196000px;}
.ye9{bottom:150.870000px;}
.y76{bottom:151.050000px;}
.y95{bottom:152.490000px;}
.yb6{bottom:154.650000px;}
.yf2{bottom:156.090000px;}
.y106{bottom:162.210000px;}
.y4b{bottom:162.930000px;}
.yd8{bottom:163.290000px;}
.ybc{bottom:167.430000px;}
.ya1{bottom:174.090000px;}
.y6c{bottom:177.150000px;}
.y38{bottom:177.690000px;}
.ye8{bottom:181.830000px;}
.y75{bottom:182.010000px;}
.y94{bottom:183.630000px;}
.yb5{bottom:185.610000px;}
.y10f{bottom:186.870000px;}
.yf1{bottom:187.230000px;}
.ybb{bottom:193.170000px;}
.y105{bottom:193.350000px;}
.y4a{bottom:194.070000px;}
.yd7{bottom:194.430000px;}
.ya0{bottom:205.230000px;}
.y6b{bottom:208.290000px;}
.ye7{bottom:212.970000px;}
.y74{bottom:213.150000px;}
.y93{bottom:214.590000px;}
.yb4{bottom:216.750000px;}
.y10e{bottom:218.010000px;}
.yf0{bottom:218.190000px;}
.y37{bottom:219.810000px;}
.yb{bottom:222.150000px;}
.y104{bottom:224.310000px;}
.y49{bottom:225.030000px;}
.yd6{bottom:225.390000px;}
.y9f{bottom:236.190000px;}
.y6a{bottom:239.250000px;}
.ye6{bottom:243.930000px;}
.y73{bottom:244.110000px;}
.y92{bottom:245.730000px;}
.ya{bottom:246.990000px;}
.yb3{bottom:247.710000px;}
.y10d{bottom:248.970000px;}
.yef{bottom:249.330000px;}
.y103{bottom:255.450000px;}
.y48{bottom:256.170000px;}
.yd5{bottom:256.530000px;}
.y36{bottom:265.890000px;}
.y9e{bottom:267.330000px;}
.y69{bottom:270.390000px;}
.ye5{bottom:275.070000px;}
.y72{bottom:275.250000px;}
.y91{bottom:275.610000px;}
.y9{bottom:276.330000px;}
.y90{bottom:277.770000px;}
.yb2{bottom:278.670000px;}
.y10c{bottom:280.110000px;}
.yee{bottom:280.290000px;}
.y102{bottom:286.410000px;}
.y47{bottom:287.130000px;}
.yd4{bottom:287.490000px;}
.y35{bottom:296.850000px;}
.y9d{bottom:298.290000px;}
.y8{bottom:299.190000px;}
.y68{bottom:301.350000px;}
.y71{bottom:306.210000px;}
.yb1{bottom:309.810000px;}
.y10b{bottom:311.070000px;}
.ye4{bottom:311.250000px;}
.yed{bottom:311.430000px;}
.y8f{bottom:312.510000px;}
.y101{bottom:317.550000px;}
.y46{bottom:318.270000px;}
.y7{bottom:324.030000px;}
.y34{bottom:328.035000px;}
.y9c{bottom:329.475000px;}
.yd3{bottom:329.835000px;}
.ye3{bottom:331.455000px;}
.y67{bottom:332.535000px;}
.y70{bottom:337.395000px;}
.yb0{bottom:340.815000px;}
.yec{bottom:342.435000px;}
.y8d{bottom:347.475000px;}
.y100{bottom:348.555000px;}
.y45{bottom:349.275000px;}
.y10a{bottom:353.415000px;}
.ye2{bottom:357.375000px;}
.y33{bottom:358.995000px;}
.y9b{bottom:360.435000px;}
.y66{bottom:363.495000px;}
.yaf{bottom:371.955000px;}
.yd2{bottom:375.735000px;}
.y6f{bottom:379.695000px;}
.y44{bottom:380.415000px;}
.yeb{bottom:382.575000px;}
.y32{bottom:390.135000px;}
.y9a{bottom:391.395000px;}
.y65{bottom:394.635000px;}
.y109{bottom:399.495000px;}
.y8c{bottom:400.755000px;}
.yae{bottom:402.915000px;}
.yd1{bottom:406.875000px;}
.yff{bottom:410.655000px;}
.y43{bottom:411.375000px;}
.y31{bottom:421.095000px;}
.y64{bottom:425.595000px;}
.y8b{bottom:430.455000px;}
.y99{bottom:433.155000px;}
.yad{bottom:434.055000px;}
.yd0{bottom:437.835000px;}
.yfe{bottom:441.795000px;}
.y42{bottom:442.515000px;}
.y30{bottom:452.235000px;}
.y63{bottom:456.555000px;}
.y8a{bottom:461.595000px;}
.yac{bottom:465.015000px;}
.ycf{bottom:467.715000px;}
.yce{bottom:470.055000px;}
.yfd{bottom:472.755000px;}
.y41{bottom:473.475000px;}
.y2f{bottom:483.195000px;}
.y62{bottom:487.695000px;}
.y98{bottom:490.035000px;}
.y89{bottom:492.555000px;}
.yab{bottom:496.155000px;}
.ycd{bottom:498.315000px;}
.yfc{bottom:503.895000px;}
.y40{bottom:504.615000px;}
.y2e{bottom:514.335000px;}
.y97{bottom:515.775000px;}
.y61{bottom:518.655000px;}
.y88{bottom:523.695000px;}
.ycc{bottom:526.755000px;}
.yaa{bottom:527.115000px;}
.yfb{bottom:534.855000px;}
.y3f{bottom:535.575000px;}
.y2d{bottom:545.295000px;}
.y121{bottom:548.895000px;}
.y60{bottom:549.795000px;}
.y87{bottom:554.655000px;}
.ycb{bottom:555.195000px;}
.ya9{bottom:558.255000px;}
.yfa{bottom:565.995000px;}
.y3e{bottom:566.715000px;}
.y2c{bottom:576.435000px;}
.y120{bottom:578.775000px;}
.y5f{bottom:580.755000px;}
.y11f{bottom:580.935000px;}
.yca{bottom:583.635000px;}
.y86{bottom:585.795000px;}
.ya8{bottom:589.215000px;}
.yf9{bottom:596.985000px;}
.y3d{bottom:597.705000px;}
.y1b{bottom:602.025000px;}
.yba{bottom:611.205000px;}
.y5e{bottom:611.925000px;}
.yc9{bottom:612.105000px;}
.y11e{bottom:615.705000px;}
.y85{bottom:616.785000px;}
.y2b{bottom:618.765000px;}
.ya7{bottom:620.385000px;}
.yf8{bottom:628.125000px;}
.y3c{bottom:628.845000px;}
.yb9{bottom:639.645000px;}
.yc8{bottom:640.545000px;}
.y5d{bottom:642.885000px;}
.y1a{bottom:645.225000px;}
.y84{bottom:647.745000px;}
.y11d{bottom:650.625000px;}
.ya6{bottom:651.345000px;}
.ye1{bottom:652.965000px;}
.yf7{bottom:659.085000px;}
.y3b{bottom:659.805000px;}
.y2a{bottom:664.665000px;}
.yb8{bottom:665.385000px;}
.yc6{bottom:668.985000px;}
.y5c{bottom:674.025000px;}
.y83{bottom:678.885000px;}
.ya5{bottom:682.485000px;}
.ye0{bottom:684.105000px;}
.y11c{bottom:685.365000px;}
.y19{bottom:688.425000px;}
.y3a{bottom:690.945000px;}
.yf6{bottom:695.265000px;}
.yc5{bottom:697.425000px;}
.y5b{bottom:704.985000px;}
.y29{bottom:706.965000px;}
.y82{bottom:709.845000px;}
.ydf{bottom:715.065000px;}
.yf5{bottom:715.425000px;}
.y11b{bottom:720.105000px;}
.y39{bottom:721.905000px;}
.ya4{bottom:724.245000px;}
.yc4{bottom:725.865000px;}
.y18{bottom:726.225000px;}
.y5a{bottom:736.125000px;}
.y81{bottom:740.985000px;}
.yf4{bottom:741.525000px;}
.yde{bottom:746.205000px;}
.ya3{bottom:752.685000px;}
.y28{bottom:753.045000px;}
.yc3{bottom:754.305000px;}
.y11a{bottom:755.025000px;}
.y17{bottom:763.845000px;}
.y59{bottom:767.085000px;}
.y80{bottom:771.945000px;}
.ydd{bottom:777.165000px;}
.y6{bottom:777.705000px;}
.ya2{bottom:778.425000px;}
.yc1{bottom:782.745000px;}
.y27{bottom:784.005000px;}
.y119{bottom:789.765000px;}
.y58{bottom:798.225000px;}
.y16{bottom:801.645000px;}
.y7f{bottom:803.085000px;}
.ydc{bottom:808.305000px;}
.y5{bottom:814.425000px;}
.y26{bottom:815.145000px;}
.yc0{bottom:824.145000px;}
.y118{bottom:824.505000px;}
.y57{bottom:829.185000px;}
.y7e{bottom:834.045000px;}
.y15{bottom:839.265000px;}
.y25{bottom:846.105000px;}
.y4{bottom:851.325000px;}
.ybf{bottom:852.585000px;}
.y116{bottom:859.425000px;}
.y56{bottom:860.325000px;}
.y7d{bottom:865.230000px;}
.ydb{bottom:870.450000px;}
.y14{bottom:877.110000px;}
.y24{bottom:877.290000px;}
.y55{bottom:891.330000px;}
.y115{bottom:894.210000px;}
.y7c{bottom:896.190000px;}
.y23{bottom:908.250000px;}
.yda{bottom:910.410000px;}
.y13{bottom:914.730000px;}
.y54{bottom:922.470000px;}
.y7b{bottom:927.330000px;}
.y114{bottom:928.950000px;}
.y22{bottom:939.390000px;}
.y12{bottom:952.530000px;}
.y53{bottom:953.430000px;}
.y7a{bottom:958.290000px;}
.y3{bottom:958.650000px;}
.y113{bottom:963.870000px;}
.y21{bottom:970.350000px;}
.y2{bottom:979.890000px;}
.y52{bottom:984.570000px;}
.y79{bottom:989.430000px;}
.y11{bottom:990.150000px;}
.y112{bottom:998.610000px;}
.y20{bottom:1001.310000px;}
.y51{bottom:1015.530000px;}
.y78{bottom:1020.390000px;}
.y10{bottom:1027.950000px;}
.y108{bottom:1031.730000px;}
.y1f{bottom:1032.450000px;}
.y110{bottom:1033.350000px;}
.y50{bottom:1046.670000px;}
.y77{bottom:1062.690000px;}
.y1e{bottom:1063.410000px;}
.yf{bottom:1065.570000px;}
.y4f{bottom:1077.630000px;}
.y1d{bottom:1094.550000px;}
.y4e{bottom:1108.770000px;}
.ye{bottom:1124.790000px;}
.y1c{bottom:1136.880000px;}
.y4d{bottom:1139.760000px;}
.hf{height:5.653125px;}
.h12{height:27.540000px;}
.h15{height:27.720000px;}
.h16{height:27.756000px;}
.hd{height:34.020000px;}
.he{height:34.056000px;}
.h1b{height:34.200000px;}
.h2{height:46.629141px;}
.h18{height:50.585625px;}
.h4{height:51.685312px;}
.h6{height:56.179688px;}
.h10{height:64.546875px;}
.hc{height:64.978594px;}
.h14{height:65.010937px;}
.h3{height:65.730234px;}
.h7{height:65.884219px;}
.h13{height:66.757500px;}
.h9{height:67.824844px;}
.h11{height:70.628906px;}
.ha{height:70.664062px;}
.h17{height:72.562500px;}
.h1a{height:74.004654px;}
.hb{height:74.704922px;}
.h8{height:84.898125px;}
.h19{height:93.936445px;}
.h5{height:98.575664px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:58.176000px;}
.w8{width:58.536000px;}
.wa{width:81.540000px;}
.w7{width:82.080000px;}
.w5{width:126.540000px;}
.w6{width:126.756000px;}
.w4{width:173.550000px;}
.w3{width:173.910000px;}
.w9{width:197.490000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x29{left:7.740000px;}
.x31{left:13.500000px;}
.x39{left:15.660000px;}
.x23{left:18.945000px;}
.x38{left:20.160000px;}
.x33{left:22.680000px;}
.x17{left:28.440000px;}
.x28{left:38.340000px;}
.x18{left:41.085000px;}
.x21{left:47.694000px;}
.x26{left:51.840000px;}
.x14{left:54.180000px;}
.x15{left:61.230000px;}
.x12{left:63.210000px;}
.x2b{left:65.340000px;}
.x16{left:69.345000px;}
.x2a{left:73.665000px;}
.x11{left:87.165000px;}
.x5{left:104.976000px;}
.xd{left:106.415987px;}
.x2f{left:111.635987px;}
.xe{left:122.975987px;}
.x1a{left:127.655987px;}
.x30{left:138.455987px;}
.x20{left:148.895987px;}
.xf{left:159.509987px;}
.x4{left:169.050000px;}
.x10{left:184.890000px;}
.x32{left:189.930000px;}
.x2e{left:202.169987px;}
.x1c{left:212.789987px;}
.x22{left:234.390000px;}
.x34{left:249.195000px;}
.x6{left:269.355000px;}
.x2{left:338.115000px;}
.x1{left:358.995000px;}
.x24{left:361.875000px;}
.x3{left:373.215000px;}
.x35{left:447.405000px;}
.x25{left:489.345000px;}
.x36{left:529.665000px;}
.x13{left:533.985000px;}
.x8{left:568.410000px;}
.x37{left:588.570000px;}
.xb{left:590.010000px;}
.x27{left:616.830000px;}
.x2c{left:647.069987px;}
.x1b{left:684.509987px;}
.x2d{left:686.669987px;}
.x1f{left:743.759987px;}
.xa{left:750.790500px;}
.x7{left:759.420000px;}
.x19{left:765.539987px;}
.x1d{left:770.039987px;}
.xc{left:778.499987px;}
.x1e{left:783.719987px;}
.x9{left:818.907000px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:5.120000pt;}
.v2{vertical-align:24.320000pt;}
.ls16{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.161067pt;}
.lsf{letter-spacing:-0.158933pt;}
.ls17{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.117867pt;}
.ls15{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.011733pt;}
.lsa{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.227733pt;}
.ls14{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.268800pt;}
.ls3{letter-spacing:0.278933pt;}
.ls9{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.478933pt;}
.lsd{letter-spacing:0.832000pt;}
.lse{letter-spacing:1.280000pt;}
.ls4{letter-spacing:1.413120pt;}
.ls11{letter-spacing:39.168000pt;}
.ls13{letter-spacing:39.808000pt;}
.ws1{word-spacing:-21.010560pt;}
.ws11{word-spacing:-16.256000pt;}
.ws10{word-spacing:-16.064000pt;}
.ws9{word-spacing:-16.000000pt;}
.ws12{word-spacing:-15.936000pt;}
.ws13{word-spacing:-15.872000pt;}
.wsa{word-spacing:-15.808000pt;}
.wse{word-spacing:-15.744000pt;}
.ws0{word-spacing:-14.725973pt;}
.wsc{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.585813pt;}
.ws5{word-spacing:-13.534613pt;}
.ws6{word-spacing:-13.189013pt;}
.ws8{word-spacing:-11.198933pt;}
.ws7{word-spacing:-10.558933pt;}
.wsb{word-spacing:-9.280000pt;}
.wsd{word-spacing:-9.121067pt;}
.ws3{word-spacing:-0.085333pt;}
.wsf{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
._2{margin-left:-11.273300pt;}
._5{margin-left:-9.151060pt;}
._3{margin-left:-8.157268pt;}
._6{margin-left:-6.926420pt;}
._8{margin-left:-5.503060pt;}
._4{margin-left:-4.513620pt;}
._12{margin-left:-3.611139pt;}
._11{margin-left:-2.688000pt;}
._1{margin-left:-1.079553pt;}
._0{width:0.926080pt;}
._7{width:2.239147pt;}
._c{width:3.299627pt;}
._e{width:4.736000pt;}
._14{width:5.632000pt;}
._a{width:6.528000pt;}
._b{width:7.585920pt;}
._13{width:8.734080pt;}
._17{width:9.624107pt;}
._1a{width:10.959787pt;}
._f{width:11.904000pt;}
._10{width:12.992000pt;}
._18{width:14.464000pt;}
._d{width:16.929920pt;}
._19{width:18.624000pt;}
._16{width:20.480000pt;}
._1b{width:21.674667pt;}
._1c{width:22.592000pt;}
._2b{width:23.637333pt;}
._15{width:24.832000pt;}
._1d{width:39.040000pt;}
._2c{width:42.368000pt;}
._2d{width:43.392000pt;}
._20{width:52.224000pt;}
._21{width:53.847253pt;}
._31{width:56.704000pt;}
._32{width:57.664000pt;}
._28{width:67.840000pt;}
._29{width:69.100886pt;}
._26{width:71.616000pt;}
._27{width:73.226667pt;}
._34{width:97.141333pt;}
._33{width:98.090667pt;}
._24{width:103.616000pt;}
._25{width:104.896000pt;}
._2e{width:115.328000pt;}
._2f{width:116.298667pt;}
._22{width:146.624000pt;}
._23{width:147.628587pt;}
._1e{width:157.248000pt;}
._1f{width:158.272000pt;}
._30{width:171.200000pt;}
._2a{width:207.808000pt;}
._9{width:752.138667pt;}
.fs6{font-size:5.120000pt;}
.fs7{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs8{font-size:85.120000pt;}
.fs3{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.yc2{bottom:7.040000pt;}
.yc7{bottom:7.200000pt;}
.y8e{bottom:9.440000pt;}
.y117{bottom:9.480000pt;}
.y111{bottom:9.600000pt;}
.y1{bottom:29.280000pt;}
.yd{bottom:51.200000pt;}
.yc{bottom:68.992000pt;}
.ybe{bottom:98.112000pt;}
.y6e{bottom:102.272000pt;}
.yea{bottom:106.432000pt;}
.y96{bottom:108.032000pt;}
.yb7{bottom:109.792000pt;}
.yf3{bottom:111.232000pt;}
.y107{bottom:116.672000pt;}
.y4c{bottom:117.312000pt;}
.yd9{bottom:117.632000pt;}
.ybd{bottom:123.392000pt;}
.y6d{bottom:129.952000pt;}
.ye9{bottom:134.106667pt;}
.y76{bottom:134.266667pt;}
.y95{bottom:135.546667pt;}
.yb6{bottom:137.466667pt;}
.yf2{bottom:138.746667pt;}
.y106{bottom:144.186667pt;}
.y4b{bottom:144.826667pt;}
.yd8{bottom:145.146667pt;}
.ybc{bottom:148.826667pt;}
.ya1{bottom:154.746667pt;}
.y6c{bottom:157.466667pt;}
.y38{bottom:157.946667pt;}
.ye8{bottom:161.626667pt;}
.y75{bottom:161.786667pt;}
.y94{bottom:163.226667pt;}
.yb5{bottom:164.986667pt;}
.y10f{bottom:166.106667pt;}
.yf1{bottom:166.426667pt;}
.ybb{bottom:171.706667pt;}
.y105{bottom:171.866667pt;}
.y4a{bottom:172.506667pt;}
.yd7{bottom:172.826667pt;}
.ya0{bottom:182.426667pt;}
.y6b{bottom:185.146667pt;}
.ye7{bottom:189.306667pt;}
.y74{bottom:189.466667pt;}
.y93{bottom:190.746667pt;}
.yb4{bottom:192.666667pt;}
.y10e{bottom:193.786667pt;}
.yf0{bottom:193.946667pt;}
.y37{bottom:195.386667pt;}
.yb{bottom:197.466667pt;}
.y104{bottom:199.386667pt;}
.y49{bottom:200.026667pt;}
.yd6{bottom:200.346667pt;}
.y9f{bottom:209.946667pt;}
.y6a{bottom:212.666667pt;}
.ye6{bottom:216.826667pt;}
.y73{bottom:216.986667pt;}
.y92{bottom:218.426667pt;}
.ya{bottom:219.546667pt;}
.yb3{bottom:220.186667pt;}
.y10d{bottom:221.306667pt;}
.yef{bottom:221.626667pt;}
.y103{bottom:227.066667pt;}
.y48{bottom:227.706667pt;}
.yd5{bottom:228.026667pt;}
.y36{bottom:236.346667pt;}
.y9e{bottom:237.626667pt;}
.y69{bottom:240.346667pt;}
.ye5{bottom:244.506667pt;}
.y72{bottom:244.666667pt;}
.y91{bottom:244.986667pt;}
.y9{bottom:245.626667pt;}
.y90{bottom:246.906667pt;}
.yb2{bottom:247.706667pt;}
.y10c{bottom:248.986667pt;}
.yee{bottom:249.146667pt;}
.y102{bottom:254.586667pt;}
.y47{bottom:255.226667pt;}
.yd4{bottom:255.546667pt;}
.y35{bottom:263.866667pt;}
.y9d{bottom:265.146667pt;}
.y8{bottom:265.946667pt;}
.y68{bottom:267.866667pt;}
.y71{bottom:272.186667pt;}
.yb1{bottom:275.386667pt;}
.y10b{bottom:276.506667pt;}
.ye4{bottom:276.666667pt;}
.yed{bottom:276.826667pt;}
.y8f{bottom:277.786667pt;}
.y101{bottom:282.266667pt;}
.y46{bottom:282.906667pt;}
.y7{bottom:288.026667pt;}
.y34{bottom:291.586667pt;}
.y9c{bottom:292.866667pt;}
.yd3{bottom:293.186667pt;}
.ye3{bottom:294.626667pt;}
.y67{bottom:295.586667pt;}
.y70{bottom:299.906667pt;}
.yb0{bottom:302.946667pt;}
.yec{bottom:304.386667pt;}
.y8d{bottom:308.866667pt;}
.y100{bottom:309.826667pt;}
.y45{bottom:310.466667pt;}
.y10a{bottom:314.146667pt;}
.ye2{bottom:317.666667pt;}
.y33{bottom:319.106667pt;}
.y9b{bottom:320.386667pt;}
.y66{bottom:323.106667pt;}
.yaf{bottom:330.626667pt;}
.yd2{bottom:333.986667pt;}
.y6f{bottom:337.506667pt;}
.y44{bottom:338.146667pt;}
.yeb{bottom:340.066667pt;}
.y32{bottom:346.786667pt;}
.y9a{bottom:347.906667pt;}
.y65{bottom:350.786667pt;}
.y109{bottom:355.106667pt;}
.y8c{bottom:356.226667pt;}
.yae{bottom:358.146667pt;}
.yd1{bottom:361.666667pt;}
.yff{bottom:365.026667pt;}
.y43{bottom:365.666667pt;}
.y31{bottom:374.306667pt;}
.y64{bottom:378.306667pt;}
.y8b{bottom:382.626667pt;}
.y99{bottom:385.026667pt;}
.yad{bottom:385.826667pt;}
.yd0{bottom:389.186667pt;}
.yfe{bottom:392.706667pt;}
.y42{bottom:393.346667pt;}
.y30{bottom:401.986667pt;}
.y63{bottom:405.826667pt;}
.y8a{bottom:410.306667pt;}
.yac{bottom:413.346667pt;}
.ycf{bottom:415.746667pt;}
.yce{bottom:417.826667pt;}
.yfd{bottom:420.226667pt;}
.y41{bottom:420.866667pt;}
.y2f{bottom:429.506667pt;}
.y62{bottom:433.506667pt;}
.y98{bottom:435.586667pt;}
.y89{bottom:437.826667pt;}
.yab{bottom:441.026667pt;}
.ycd{bottom:442.946667pt;}
.yfc{bottom:447.906667pt;}
.y40{bottom:448.546667pt;}
.y2e{bottom:457.186667pt;}
.y97{bottom:458.466667pt;}
.y61{bottom:461.026667pt;}
.y88{bottom:465.506667pt;}
.ycc{bottom:468.226667pt;}
.yaa{bottom:468.546667pt;}
.yfb{bottom:475.426667pt;}
.y3f{bottom:476.066667pt;}
.y2d{bottom:484.706667pt;}
.y121{bottom:487.906667pt;}
.y60{bottom:488.706667pt;}
.y87{bottom:493.026667pt;}
.ycb{bottom:493.506667pt;}
.ya9{bottom:496.226667pt;}
.yfa{bottom:503.106667pt;}
.y3e{bottom:503.746667pt;}
.y2c{bottom:512.386667pt;}
.y120{bottom:514.466667pt;}
.y5f{bottom:516.226667pt;}
.y11f{bottom:516.386667pt;}
.yca{bottom:518.786667pt;}
.y86{bottom:520.706667pt;}
.ya8{bottom:523.746667pt;}
.yf9{bottom:530.653333pt;}
.y3d{bottom:531.293333pt;}
.y1b{bottom:535.133333pt;}
.yba{bottom:543.293333pt;}
.y5e{bottom:543.933333pt;}
.yc9{bottom:544.093333pt;}
.y11e{bottom:547.293333pt;}
.y85{bottom:548.253333pt;}
.y2b{bottom:550.013333pt;}
.ya7{bottom:551.453333pt;}
.yf8{bottom:558.333333pt;}
.y3c{bottom:558.973333pt;}
.yb9{bottom:568.573333pt;}
.yc8{bottom:569.373333pt;}
.y5d{bottom:571.453333pt;}
.y1a{bottom:573.533333pt;}
.y84{bottom:575.773333pt;}
.y11d{bottom:578.333333pt;}
.ya6{bottom:578.973333pt;}
.ye1{bottom:580.413333pt;}
.yf7{bottom:585.853333pt;}
.y3b{bottom:586.493333pt;}
.y2a{bottom:590.813333pt;}
.yb8{bottom:591.453333pt;}
.yc6{bottom:594.653333pt;}
.y5c{bottom:599.133333pt;}
.y83{bottom:603.453333pt;}
.ya5{bottom:606.653333pt;}
.ye0{bottom:608.093333pt;}
.y11c{bottom:609.213333pt;}
.y19{bottom:611.933333pt;}
.y3a{bottom:614.173333pt;}
.yf6{bottom:618.013333pt;}
.yc5{bottom:619.933333pt;}
.y5b{bottom:626.653333pt;}
.y29{bottom:628.413333pt;}
.y82{bottom:630.973333pt;}
.ydf{bottom:635.613333pt;}
.yf5{bottom:635.933333pt;}
.y11b{bottom:640.093333pt;}
.y39{bottom:641.693333pt;}
.ya4{bottom:643.773333pt;}
.yc4{bottom:645.213333pt;}
.y18{bottom:645.533333pt;}
.y5a{bottom:654.333333pt;}
.y81{bottom:658.653333pt;}
.yf4{bottom:659.133333pt;}
.yde{bottom:663.293333pt;}
.ya3{bottom:669.053333pt;}
.y28{bottom:669.373333pt;}
.yc3{bottom:670.493333pt;}
.y11a{bottom:671.133333pt;}
.y17{bottom:678.973333pt;}
.y59{bottom:681.853333pt;}
.y80{bottom:686.173333pt;}
.ydd{bottom:690.813333pt;}
.y6{bottom:691.293333pt;}
.ya2{bottom:691.933333pt;}
.yc1{bottom:695.773333pt;}
.y27{bottom:696.893333pt;}
.y119{bottom:702.013333pt;}
.y58{bottom:709.533333pt;}
.y16{bottom:712.573333pt;}
.y7f{bottom:713.853333pt;}
.ydc{bottom:718.493333pt;}
.y5{bottom:723.933333pt;}
.y26{bottom:724.573333pt;}
.yc0{bottom:732.573333pt;}
.y118{bottom:732.893333pt;}
.y57{bottom:737.053333pt;}
.y7e{bottom:741.373333pt;}
.y15{bottom:746.013333pt;}
.y25{bottom:752.093333pt;}
.y4{bottom:756.733333pt;}
.ybf{bottom:757.853333pt;}
.y116{bottom:763.933333pt;}
.y56{bottom:764.733333pt;}
.y7d{bottom:769.093333pt;}
.ydb{bottom:773.733333pt;}
.y14{bottom:779.653333pt;}
.y24{bottom:779.813333pt;}
.y55{bottom:792.293333pt;}
.y115{bottom:794.853333pt;}
.y7c{bottom:796.613333pt;}
.y23{bottom:807.333333pt;}
.yda{bottom:809.253333pt;}
.y13{bottom:813.093333pt;}
.y54{bottom:819.973333pt;}
.y7b{bottom:824.293333pt;}
.y114{bottom:825.733333pt;}
.y22{bottom:835.013333pt;}
.y12{bottom:846.693333pt;}
.y53{bottom:847.493333pt;}
.y7a{bottom:851.813333pt;}
.y3{bottom:852.133333pt;}
.y113{bottom:856.773333pt;}
.y21{bottom:862.533333pt;}
.y2{bottom:871.013333pt;}
.y52{bottom:875.173333pt;}
.y79{bottom:879.493333pt;}
.y11{bottom:880.133333pt;}
.y112{bottom:887.653333pt;}
.y20{bottom:890.053333pt;}
.y51{bottom:902.693333pt;}
.y78{bottom:907.013333pt;}
.y10{bottom:913.733333pt;}
.y108{bottom:917.093333pt;}
.y1f{bottom:917.733333pt;}
.y110{bottom:918.533333pt;}
.y50{bottom:930.373333pt;}
.y77{bottom:944.613333pt;}
.y1e{bottom:945.253333pt;}
.yf{bottom:947.173333pt;}
.y4f{bottom:957.893333pt;}
.y1d{bottom:972.933333pt;}
.y4e{bottom:985.573333pt;}
.ye{bottom:999.813333pt;}
.y1c{bottom:1010.560000pt;}
.y4d{bottom:1013.120000pt;}
.hf{height:5.025000pt;}
.h12{height:24.480000pt;}
.h15{height:24.640000pt;}
.h16{height:24.672000pt;}
.hd{height:30.240000pt;}
.he{height:30.272000pt;}
.h1b{height:30.400000pt;}
.h2{height:41.448125pt;}
.h18{height:44.965000pt;}
.h4{height:45.942500pt;}
.h6{height:49.937500pt;}
.h10{height:57.375000pt;}
.hc{height:57.758750pt;}
.h14{height:57.787500pt;}
.h3{height:58.426875pt;}
.h7{height:58.563750pt;}
.h13{height:59.340000pt;}
.h9{height:60.288750pt;}
.h11{height:62.781250pt;}
.ha{height:62.812500pt;}
.h17{height:64.500000pt;}
.h1a{height:65.781915pt;}
.hb{height:66.404375pt;}
.h8{height:75.465000pt;}
.h19{height:83.499062pt;}
.h5{height:87.622812pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:51.712000pt;}
.w8{width:52.032000pt;}
.wa{width:72.480000pt;}
.w7{width:72.960000pt;}
.w5{width:112.480000pt;}
.w6{width:112.672000pt;}
.w4{width:154.266667pt;}
.w3{width:154.586667pt;}
.w9{width:175.546667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x29{left:6.880000pt;}
.x31{left:12.000000pt;}
.x39{left:13.920000pt;}
.x23{left:16.840000pt;}
.x38{left:17.920000pt;}
.x33{left:20.160000pt;}
.x17{left:25.280000pt;}
.x28{left:34.080000pt;}
.x18{left:36.520000pt;}
.x21{left:42.394667pt;}
.x26{left:46.080000pt;}
.x14{left:48.160000pt;}
.x15{left:54.426667pt;}
.x12{left:56.186667pt;}
.x2b{left:58.080000pt;}
.x16{left:61.640000pt;}
.x2a{left:65.480000pt;}
.x11{left:77.480000pt;}
.x5{left:93.312000pt;}
.xd{left:94.591988pt;}
.x2f{left:99.231988pt;}
.xe{left:109.311988pt;}
.x1a{left:113.471988pt;}
.x30{left:123.071988pt;}
.x20{left:132.351988pt;}
.xf{left:141.786655pt;}
.x4{left:150.266667pt;}
.x10{left:164.346667pt;}
.x32{left:168.826667pt;}
.x2e{left:179.706655pt;}
.x1c{left:189.146655pt;}
.x22{left:208.346667pt;}
.x34{left:221.506667pt;}
.x6{left:239.426667pt;}
.x2{left:300.546667pt;}
.x1{left:319.106667pt;}
.x24{left:321.666667pt;}
.x3{left:331.746667pt;}
.x35{left:397.693333pt;}
.x25{left:434.973333pt;}
.x36{left:470.813333pt;}
.x13{left:474.653333pt;}
.x8{left:505.253333pt;}
.x37{left:523.173333pt;}
.xb{left:524.453333pt;}
.x27{left:548.293333pt;}
.x2c{left:575.173322pt;}
.x1b{left:608.453322pt;}
.x2d{left:610.373322pt;}
.x1f{left:661.119988pt;}
.xa{left:667.369333pt;}
.x7{left:675.040000pt;}
.x19{left:680.479988pt;}
.x1d{left:684.479988pt;}
.xc{left:691.999988pt;}
.x1e{left:696.639988pt;}
.x9{left:727.917333pt;}
}




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