
    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_e1ff48811c7dc9a1d4625736.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.087891;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_ff85938183dcf88a8a108700.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.020508;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_f25183618ea9d05dfeaa7a8d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.087891;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_7e7799a464cfa3eed7641e03.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.091797;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_829f5fbca17775f10937780b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.090332;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_0ca3ce60d5e7135bc9521dee.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.090332;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_992578ca6dd61c8f36feea62.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.102051;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_e9d9953fe48dc47f4b9572fd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.743164;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_29f4a55ee1697218b9fc6fec.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.948242;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_6ca65570eb4f7370c62f8226.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.091797;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_d906fbdb3303bed1ea2304d7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.743164;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);}
.vd{vertical-align:-34.740000px;}
.ve{vertical-align:-26.040000px;}
.v7{vertical-align:-20.160000px;}
.vb{vertical-align:-15.120000px;}
.v2{vertical-align:-9.360000px;}
.v5{vertical-align:-6.780000px;}
.v1{vertical-align:-3.480000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:18.720000px;}
.v8{vertical-align:25.200000px;}
.v6{vertical-align:32.400000px;}
.v3{vertical-align:52.560000px;}
.vc{vertical-align:64.200000px;}
.v9{vertical-align:72.240000px;}
.v4{vertical-align:77.616000px;}
.lsa{letter-spacing:-0.612000px;}
.ls25{letter-spacing:-0.421200px;}
.ls19{letter-spacing:-0.364800px;}
.ls24{letter-spacing:-0.344400px;}
.ls3{letter-spacing:-0.302400px;}
.ls18{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.216000px;}
.ls13{letter-spacing:-0.189000px;}
.ls16{letter-spacing:-0.169200px;}
.ls23{letter-spacing:-0.112800px;}
.ls7{letter-spacing:-0.108000px;}
.ls17{letter-spacing:-0.092400px;}
.ls22{letter-spacing:-0.036000px;}
.ls20{letter-spacing:-0.028200px;}
.ls21{letter-spacing:-0.009480px;}
.ls0{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.020160px;}
.ls14{letter-spacing:0.027480px;}
.ls2{letter-spacing:0.062400px;}
.ls8{letter-spacing:0.072000px;}
.ls12{letter-spacing:0.073800px;}
.ls26{letter-spacing:0.143400px;}
.ls27{letter-spacing:0.171600px;}
.ls5{letter-spacing:0.175800px;}
.ls1b{letter-spacing:0.179280px;}
.ls1c{letter-spacing:0.245400px;}
.ls1a{letter-spacing:0.250560px;}
.lsf{letter-spacing:0.396000px;}
.ls6{letter-spacing:1.440000px;}
.lse{letter-spacing:6.126768px;}
.lsc{letter-spacing:9.006768px;}
.lsb{letter-spacing:31.356000px;}
.ls4{letter-spacing:32.796000px;}
.lsd{letter-spacing:54.396000px;}
.ls11{letter-spacing:72.366768px;}
.ls10{letter-spacing:73.086768px;}
.ls15{letter-spacing:97.560000px;}
.ls1{letter-spacing:163.368000px;}
.ls1f{letter-spacing:1648.026000px;}
.ls1e{letter-spacing:1648.206000px;}
.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;}
}
.ws5{word-spacing:-48.700512px;}
.ws18{word-spacing:-39.024720px;}
.ws6{word-spacing:-34.055280px;}
.ws8{word-spacing:-30.239832px;}
.ws7{word-spacing:-30.064032px;}
.ws3{word-spacing:-24.471120px;}
.ws2{word-spacing:-24.437952px;}
.ws1{word-spacing:-24.408720px;}
.ws4{word-spacing:-24.106320px;}
.ws10{word-spacing:-22.027032px;}
.wsc{word-spacing:-21.996000px;}
.ws17{word-spacing:-21.980712px;}
.ws11{word-spacing:-21.953232px;}
.wsb{word-spacing:-21.924000px;}
.wse{word-spacing:-21.816000px;}
.ws16{word-spacing:-21.764232px;}
.wsd{word-spacing:-21.708000px;}
.wsf{word-spacing:-21.312000px;}
.ws15{word-spacing:-17.100720px;}
.ws21{word-spacing:-16.756320px;}
.ws22{word-spacing:-16.708752px;}
.ws1b{word-spacing:-14.616000px;}
.ws1a{word-spacing:-13.475952px;}
.ws19{word-spacing:-13.446720px;}
.ws1d{word-spacing:-12.131280px;}
.ws25{word-spacing:-10.991232px;}
.ws24{word-spacing:-10.962000px;}
.ws1c{word-spacing:-10.926000px;}
.ws0{word-spacing:0.000000px;}
.ws1f{word-spacing:1.255920px;}
.ws20{word-spacing:1.256160px;}
.ws23{word-spacing:1.376400px;}
.ws9{word-spacing:12.888000px;}
.wsa{word-spacing:15.372000px;}
.ws1e{word-spacing:128.229120px;}
.ws13{word-spacing:423.055440px;}
.ws14{word-spacing:580.325520px;}
.ws12{word-spacing:776.175840px;}
._5{margin-left:-14.394240px;}
._6{margin-left:-11.515392px;}
._7{margin-left:-9.753264px;}
._3{margin-left:-7.678272px;}
._14{margin-left:-5.832000px;}
._2{margin-left:-4.694976px;}
._20{margin-left:-3.641184px;}
._4{margin-left:-2.638944px;}
._0{margin-left:-1.279872px;}
._a{width:1.005120px;}
._1{width:2.020224px;}
._16{width:5.803680px;}
._15{width:9.183936px;}
._8{width:19.323120px;}
._9{width:20.348400px;}
._10{width:29.736000px;}
._11{width:30.862944px;}
._e{width:32.187744px;}
._d{width:38.739648px;}
._f{width:54.164640px;}
._b{width:57.131040px;}
._c{width:58.623840px;}
._17{width:67.968000px;}
._18{width:69.475872px;}
._19{width:73.444464px;}
._12{width:123.036000px;}
._13{width:124.056576px;}
._1f{width:330.684000px;}
._1e{width:606.492000px;}
._1d{width:639.300000px;}
._1c{width:1072.474272px;}
._1b{width:1101.214272px;}
._1a{width:2181.783408px;}
.fc8{color:rgb(129,33,75);}
.fc4{color:rgb(19,80,27);}
.fc2{color:rgb(20,96,92);}
.fc7{color:rgb(64,64,64);}
.fc6{color:rgb(89,89,89);}
.fc5{color:rgb(58,58,58);}
.fc3{color:rgb(38,38,38);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs14{font-size:41.760000px;}
.fs15{font-size:54.000000px;}
.fs16{font-size:54.144000px;}
.fs11{font-size:56.160000px;}
.fs17{font-size:59.760000px;}
.fs12{font-size:63.360000px;}
.fs13{font-size:63.504000px;}
.fsd{font-size:66.240000px;}
.fse{font-size:66.384000px;}
.fsf{font-size:72.000000px;}
.fs10{font-size:72.144000px;}
.fs5{font-size:84.240000px;}
.fs18{font-size:84.384000px;}
.fs1{font-size:102.240000px;}
.fs7{font-size:108.000000px;}
.fsa{font-size:108.144000px;}
.fs8{font-size:120.240000px;}
.fs0{font-size:120.384000px;}
.fs4{font-size:167.760000px;}
.fs9{font-size:167.904000px;}
.fsc{font-size:192.240000px;}
.fsb{font-size:216.000000px;}
.fs6{font-size:216.144000px;}
.fs2{font-size:239.760000px;}
.fs3{font-size:239.904000px;}
.y0{bottom:0.000000px;}
.y5f{bottom:12.705000px;}
.y4a{bottom:12.780000px;}
.y4d{bottom:12.930000px;}
.y66{bottom:13.428000px;}
.y41{bottom:14.580000px;}
.y8f{bottom:16.956000px;}
.ya6{bottom:17.352000px;}
.y44{bottom:18.072000px;}
.y6{bottom:21.564000px;}
.y33{bottom:43.524000px;}
.ya5{bottom:47.730000px;}
.y32{bottom:57.924000px;}
.y3b{bottom:62.928000px;}
.y9c{bottom:65.160000px;}
.y5c{bottom:66.240000px;}
.y74{bottom:69.480000px;}
.y8e{bottom:70.884000px;}
.y91{bottom:72.900000px;}
.y27{bottom:77.364000px;}
.yc2{bottom:82.008000px;}
.y98{bottom:85.350000px;}
.y5b{bottom:86.430000px;}
.y8d{bottom:89.175000px;}
.y1b{bottom:96.948000px;}
.y9b{bottom:104.070000px;}
.y95{bottom:105.045000px;}
.y57{bottom:107.100000px;}
.y82{bottom:109.005000px;}
.y97{bottom:110.670000px;}
.y62{bottom:111.528000px;}
.y9d{bottom:115.170000px;}
.y4b{bottom:123.630000px;}
.y26{bottom:125.964000px;}
.yb3{bottom:126.108000px;}
.y92{bottom:127.080000px;}
.y20{bottom:127.584000px;}
.y56{bottom:129.090000px;}
.yac{bottom:139.608000px;}
.y55{bottom:139.890000px;}
.y9a{bottom:149.070000px;}
.y1a{bottom:150.945000px;}
.y83{bottom:152.385000px;}
.yc1{bottom:154.050000px;}
.y75{bottom:158.190000px;}
.y61{bottom:160.170000px;}
.y54{bottom:161.850000px;}
.yb2{bottom:162.105000px;}
.y9e{bottom:165.165000px;}
.y12{bottom:172.800000px;}
.yb{bottom:173.490000px;}
.y25{bottom:174.570000px;}
.yab{bottom:175.650000px;}
.ye{bottom:175.965000px;}
.y1f{bottom:178.020000px;}
.y15{bottom:178.350000px;}
.y4f{bottom:183.885000px;}
.y7c{bottom:188.565000px;}
.y84{bottom:195.810000px;}
.y94{bottom:198.870000px;}
.y4e{bottom:204.090000px;}
.y19{bottom:204.945000px;}
.y96{bottom:206.355000px;}
.y60{bottom:208.770000px;}
.y76{bottom:212.430000px;}
.y9f{bottom:215.175000px;}
.y78{bottom:221.115000px;}
.y36{bottom:222.555000px;}
.y24{bottom:223.200000px;}
.y65{bottom:225.075000px;}
.y1{bottom:236.130000px;}
.y77{bottom:236.310000px;}
.y85{bottom:239.220000px;}
.y40{bottom:250.380000px;}
.y5a{bottom:251.820000px;}
.y35{bottom:254.985000px;}
.ya0{bottom:265.170000px;}
.yd{bottom:269.385000px;}
.y11{bottom:270.210000px;}
.y23{bottom:271.800000px;}
.y59{bottom:271.980000px;}
.ya{bottom:273.855000px;}
.yb9{bottom:275.370000px;}
.y64{bottom:275.505000px;}
.y53{bottom:276.150000px;}
.y99{bottom:276.375000px;}
.y14{bottom:276.660000px;}
.y48{bottom:282.240000px;}
.y86{bottom:282.600000px;}
.y3f{bottom:282.810000px;}
.y5d{bottom:284.505000px;}
.y34{bottom:287.385000px;}
.y50{bottom:293.655000px;}
.ybe{bottom:294.150000px;}
.y58{bottom:297.720000px;}
.y52{bottom:298.110000px;}
.y51{bottom:303.300000px;}
.y47{bottom:304.740000px;}
.yb8{bottom:307.770000px;}
.ya1{bottom:315.180000px;}
.yae{bottom:318.030000px;}
.y22{bottom:320.400000px;}
.y63{bottom:325.905000px;}
.y87{bottom:326.010000px;}
.ybd{bottom:326.550000px;}
.y18{bottom:327.810000px;}
.y1e{bottom:339.870000px;}
.yb7{bottom:340.170000px;}
.y3d{bottom:343.695000px;}
.yad{bottom:354.030000px;}
.ybc{bottom:358.950000px;}
.ya2{bottom:365.190000px;}
.y88{bottom:369.435000px;}
.yb6{bottom:372.570000px;}
.yc0{bottom:373.755000px;}
.yf{bottom:374.580000px;}
.y10{bottom:375.405000px;}
.y13{bottom:377.130000px;}
.y9{bottom:380.310000px;}
.y7e{bottom:383.865000px;}
.y4{bottom:390.675000px;}
.ybb{bottom:391.395000px;}
.y4c{bottom:395.280000px;}
.y79{bottom:396.900000px;}
.y7d{bottom:399.060000px;}
.y7f{bottom:401.220000px;}
.y7a{bottom:403.410000px;}
.yb5{bottom:404.970000px;}
.y2c{bottom:410.040000px;}
.y89{bottom:412.815000px;}
.ya3{bottom:415.155000px;}
.y3a{bottom:415.470000px;}
.yba{bottom:423.795000px;}
.y31{bottom:424.440000px;}
.yb4{bottom:437.400000px;}
.y39{bottom:447.915000px;}
.y43{bottom:448.020000px;}
.y8a{bottom:456.225000px;}
.y93{bottom:456.375000px;}
.y30{bottom:456.870000px;}
.y2b{bottom:458.640000px;}
.y17{bottom:459.825000px;}
.y3{bottom:462.675000px;}
.ya4{bottom:465.150000px;}
.y8{bottom:474.450000px;}
.yc{bottom:477.510000px;}
.y38{bottom:480.315000px;}
.y80{bottom:488.055000px;}
.y2f{bottom:489.270000px;}
.yaa{bottom:496.770000px;}
.y68{bottom:499.530000px;}
.y8b{bottom:499.650000px;}
.y42{bottom:499.860000px;}
.y1d{bottom:502.710000px;}
.y2a{bottom:507.240000px;}
.y7b{bottom:509.730000px;}
.y37{bottom:512.715000px;}
.y16{bottom:513.870000px;}
.y2e{bottom:521.670000px;}
.y81{bottom:530.850000px;}
.ya9{bottom:532.800000px;}
.yb1{bottom:539.820000px;}
.y8c{bottom:543.030000px;}
.y5e{bottom:549.360000px;}
.y67{bottom:551.370000px;}
.y49{bottom:554.040000px;}
.y29{bottom:555.870000px;}
.y3c{bottom:564.945000px;}
.y3e{bottom:565.890000px;}
.ya8{bottom:568.800000px;}
.yb0{bottom:575.820000px;}
.y7{bottom:582.915000px;}
.y73{bottom:590.010000px;}
.y1c{bottom:596.850000px;}
.y28{bottom:619.770000px;}
.y21{bottom:625.350000px;}
.y2d{bottom:633.885000px;}
.yaf{bottom:637.380000px;}
.y72{bottom:639.030000px;}
.y6d{bottom:640.470000px;}
.ya7{bottom:641.805000px;}
.y6a{bottom:642.030000px;}
.y6f{bottom:642.495000px;}
.y6c{bottom:644.550000px;}
.y90{bottom:644.760000px;}
.y71{bottom:645.120000px;}
.y46{bottom:645.330000px;}
.y2{bottom:662.475000px;}
.y69{bottom:664.170000px;}
.y6e{bottom:664.635000px;}
.y6b{bottom:666.690000px;}
.y70{bottom:667.290000px;}
.ybf{bottom:708.300000px;}
.y5{bottom:729.180000px;}
.y45{bottom:744.300000px;}
.h31{height:46.801758px;}
.h30{height:46.880859px;}
.h36{height:46.926562px;}
.h32{height:51.793945px;}
.h33{height:54.914062px;}
.h29{height:55.006875px;}
.h2b{height:55.131891px;}
.h23{height:56.520000px;}
.h1b{height:56.700000px;}
.h1d{height:56.880000px;}
.h2e{height:57.410156px;}
.h1a{height:57.507187px;}
.h1c{height:57.632203px;}
.h20{height:62.507812px;}
.h21{height:62.632828px;}
.h6{height:72.805078px;}
.h16{height:73.010742px;}
.h26{height:73.134141px;}
.h35{height:73.135547px;}
.h27{height:73.873828px;}
.h2{height:88.361719px;}
.h28{height:93.339844px;}
.h2c{height:93.464297px;}
.hb{height:93.603516px;}
.h24{height:93.728320px;}
.h11{height:93.761719px;}
.h13{height:93.886734px;}
.h25{height:94.907812px;}
.hf{height:97.716797px;}
.h10{height:97.847086px;}
.h8{height:100.731914px;}
.h38{height:103.918359px;}
.h1{height:104.042812px;}
.ha{height:104.211914px;}
.h9{height:104.336719px;}
.h1e{height:104.388047px;}
.h37{height:104.513063px;}
.h14{height:116.210742px;}
.h5{height:144.987891px;}
.h18{height:145.112344px;}
.hd{height:145.397461px;}
.he{height:145.522266px;}
.h15{height:150.626742px;}
.h2d{height:157.539844px;}
.h2a{height:165.579844px;}
.h17{height:166.895859px;}
.h12{height:187.523438px;}
.h7{height:187.648453px;}
.h3{height:207.214453px;}
.h4{height:207.338906px;}
.hc{height:208.276031px;}
.h19{height:314.640000px;}
.h1f{height:334.440000px;}
.h22{height:347.580000px;}
.h34{height:485.460000px;}
.h2f{height:554.940000px;}
.h0{height:810.000000px;}
.w2{width:494.460000px;}
.w3{width:565.560000px;}
.w5{width:616.500000px;}
.w4{width:699.120000px;}
.w7{width:891.900000px;}
.w6{width:1161.180000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x5a{left:9.825000px;}
.x34{left:18.647979px;}
.x59{left:20.880000px;}
.x5{left:28.079979px;}
.x6{left:30.239979px;}
.x1e{left:37.511979px;}
.x13{left:46.727979px;}
.x47{left:52.665000px;}
.x50{left:55.290000px;}
.x7{left:60.047979px;}
.x46{left:67.110000px;}
.x8{left:70.163979px;}
.x23{left:77.219993px;}
.x77{left:82.799979px;}
.x32{left:87.767979px;}
.x68{left:89.279979px;}
.x66{left:94.391979px;}
.x67{left:97.919979px;}
.x19{left:102.491979px;}
.x65{left:105.443979px;}
.x15{left:108.251979px;}
.x69{left:111.059979px;}
.x24{left:114.371979px;}
.x6a{left:117.359979px;}
.x33{left:121.607979px;}
.x9{left:124.307979px;}
.xa{left:126.323979px;}
.x3f{left:128.625000px;}
.x5b{left:130.170000px;}
.x29{left:147.810000px;}
.x1{left:150.119979px;}
.x53{left:151.485000px;}
.x3{left:168.014979px;}
.x56{left:175.065000px;}
.x2d{left:182.730000px;}
.x11{left:192.419979px;}
.x2e{left:232.050000px;}
.x42{left:238.110000px;}
.x2f{left:248.400000px;}
.x5c{left:256.680000px;}
.x4f{left:260.100000px;}
.x5f{left:271.364979px;}
.x30{left:278.640000px;}
.x4e{left:285.089979px;}
.x20{left:289.649993px;}
.x61{left:309.599979px;}
.x1a{left:315.569979px;}
.x1b{left:318.674979px;}
.x62{left:321.479979px;}
.x21{left:331.409993px;}
.x51{left:337.425000px;}
.x26{left:351.795000px;}
.x2b{left:353.340000px;}
.x4d{left:354.569979px;}
.x3e{left:356.189979px;}
.x35{left:358.124979px;}
.x76{left:366.194979px;}
.x22{left:368.429993px;}
.x4c{left:371.415000px;}
.x27{left:373.785000px;}
.x16{left:383.609979px;}
.x14{left:388.769979px;}
.x4{left:397.544979px;}
.x5d{left:400.289979px;}
.x12{left:411.659979px;}
.x28{left:427.425000px;}
.x54{left:432.645000px;}
.x63{left:436.319979px;}
.x5e{left:447.089979px;}
.x1f{left:450.569979px;}
.x3a{left:481.859979px;}
.x2c{left:491.550000px;}
.x64{left:493.949979px;}
.x57{left:499.890000px;}
.x6e{left:508.394979px;}
.xe{left:512.204979px;}
.x39{left:518.249979px;}
.x6d{left:521.174979px;}
.x6c{left:524.954979px;}
.xd{left:539.384979px;}
.x49{left:541.800000px;}
.x6b{left:543.314979px;}
.x6f{left:553.394979px;}
.x48{left:555.660000px;}
.x2{left:562.934979px;}
.x41{left:566.430000px;}
.x10{left:576.509979px;}
.xf{left:579.569979px;}
.x31{left:585.359979px;}
.xb{left:613.724979px;}
.xc{left:617.474979px;}
.x52{left:627.270000px;}
.x60{left:630.899979px;}
.x70{left:657.794979px;}
.x44{left:675.870000px;}
.x55{left:694.155000px;}
.x58{left:789.330000px;}
.x37{left:802.949979px;}
.x1d{left:804.854979px;}
.x18{left:806.729979px;}
.x36{left:834.089979px;}
.x4b{left:855.690000px;}
.x25{left:874.440000px;}
.x4a{left:884.190000px;}
.x40{left:894.750000px;}
.x3c{left:915.329979px;}
.x17{left:936.389979px;}
.x3b{left:946.469979px;}
.x72{left:998.744979px;}
.x74{left:1002.704979px;}
.x43{left:1004.190000px;}
.x1c{left:1010.519979px;}
.x71{left:1014.224979px;}
.x2a{left:1030.709979px;}
.x73{left:1032.944979px;}
.x75{left:1037.984979px;}
.x45{left:1046.010000px;}
.x38{left:1154.519979px;}
.x3d{left:1259.669979px;}
@media print{
.vd{vertical-align:-30.880000pt;}
.ve{vertical-align:-23.146667pt;}
.v7{vertical-align:-17.920000pt;}
.vb{vertical-align:-13.440000pt;}
.v2{vertical-align:-8.320000pt;}
.v5{vertical-align:-6.026667pt;}
.v1{vertical-align:-3.093333pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:16.640000pt;}
.v8{vertical-align:22.400000pt;}
.v6{vertical-align:28.800000pt;}
.v3{vertical-align:46.720000pt;}
.vc{vertical-align:57.066667pt;}
.v9{vertical-align:64.213333pt;}
.v4{vertical-align:68.992000pt;}
.lsa{letter-spacing:-0.544000pt;}
.ls25{letter-spacing:-0.374400pt;}
.ls19{letter-spacing:-0.324267pt;}
.ls24{letter-spacing:-0.306133pt;}
.ls3{letter-spacing:-0.268800pt;}
.ls18{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls13{letter-spacing:-0.168000pt;}
.ls16{letter-spacing:-0.150400pt;}
.ls23{letter-spacing:-0.100267pt;}
.ls7{letter-spacing:-0.096000pt;}
.ls17{letter-spacing:-0.082133pt;}
.ls22{letter-spacing:-0.032000pt;}
.ls20{letter-spacing:-0.025067pt;}
.ls21{letter-spacing:-0.008427pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.017920pt;}
.ls14{letter-spacing:0.024427pt;}
.ls2{letter-spacing:0.055467pt;}
.ls8{letter-spacing:0.064000pt;}
.ls12{letter-spacing:0.065600pt;}
.ls26{letter-spacing:0.127467pt;}
.ls27{letter-spacing:0.152533pt;}
.ls5{letter-spacing:0.156267pt;}
.ls1b{letter-spacing:0.159360pt;}
.ls1c{letter-spacing:0.218133pt;}
.ls1a{letter-spacing:0.222720pt;}
.lsf{letter-spacing:0.352000pt;}
.ls6{letter-spacing:1.280000pt;}
.lse{letter-spacing:5.446016pt;}
.lsc{letter-spacing:8.006016pt;}
.lsb{letter-spacing:27.872000pt;}
.ls4{letter-spacing:29.152000pt;}
.lsd{letter-spacing:48.352000pt;}
.ls11{letter-spacing:64.326016pt;}
.ls10{letter-spacing:64.966016pt;}
.ls15{letter-spacing:86.720000pt;}
.ls1{letter-spacing:145.216000pt;}
.ls1f{letter-spacing:1464.912000pt;}
.ls1e{letter-spacing:1465.072000pt;}
.ws5{word-spacing:-43.289344pt;}
.ws18{word-spacing:-34.688640pt;}
.ws6{word-spacing:-30.271360pt;}
.ws8{word-spacing:-26.879851pt;}
.ws7{word-spacing:-26.723584pt;}
.ws3{word-spacing:-21.752107pt;}
.ws2{word-spacing:-21.722624pt;}
.ws1{word-spacing:-21.696640pt;}
.ws4{word-spacing:-21.427840pt;}
.ws10{word-spacing:-19.579584pt;}
.wsc{word-spacing:-19.552000pt;}
.ws17{word-spacing:-19.538411pt;}
.ws11{word-spacing:-19.513984pt;}
.wsb{word-spacing:-19.488000pt;}
.wse{word-spacing:-19.392000pt;}
.ws16{word-spacing:-19.345984pt;}
.wsd{word-spacing:-19.296000pt;}
.wsf{word-spacing:-18.944000pt;}
.ws15{word-spacing:-15.200640pt;}
.ws21{word-spacing:-14.894507pt;}
.ws22{word-spacing:-14.852224pt;}
.ws1b{word-spacing:-12.992000pt;}
.ws1a{word-spacing:-11.978624pt;}
.ws19{word-spacing:-11.952640pt;}
.ws1d{word-spacing:-10.783360pt;}
.ws25{word-spacing:-9.769984pt;}
.ws24{word-spacing:-9.744000pt;}
.ws1c{word-spacing:-9.712000pt;}
.ws0{word-spacing:0.000000pt;}
.ws1f{word-spacing:1.116373pt;}
.ws20{word-spacing:1.116587pt;}
.ws23{word-spacing:1.223467pt;}
.ws9{word-spacing:11.456000pt;}
.wsa{word-spacing:13.664000pt;}
.ws1e{word-spacing:113.981440pt;}
.ws13{word-spacing:376.049280pt;}
.ws14{word-spacing:515.844907pt;}
.ws12{word-spacing:689.934080pt;}
._5{margin-left:-12.794880pt;}
._6{margin-left:-10.235904pt;}
._7{margin-left:-8.669568pt;}
._3{margin-left:-6.825131pt;}
._14{margin-left:-5.184000pt;}
._2{margin-left:-4.173312pt;}
._20{margin-left:-3.236608pt;}
._4{margin-left:-2.345728pt;}
._0{margin-left:-1.137664pt;}
._a{width:0.893440pt;}
._1{width:1.795755pt;}
._16{width:5.158827pt;}
._15{width:8.163499pt;}
._8{width:17.176107pt;}
._9{width:18.087467pt;}
._10{width:26.432000pt;}
._11{width:27.433728pt;}
._e{width:28.611328pt;}
._d{width:34.435243pt;}
._f{width:48.146347pt;}
._b{width:50.783147pt;}
._c{width:52.110080pt;}
._17{width:60.416000pt;}
._18{width:61.756331pt;}
._19{width:65.283968pt;}
._12{width:109.365333pt;}
._13{width:110.272512pt;}
._1f{width:293.941333pt;}
._1e{width:539.104000pt;}
._1d{width:568.266667pt;}
._1c{width:953.310464pt;}
._1b{width:978.857131pt;}
._1a{width:1939.363029pt;}
.fs14{font-size:37.120000pt;}
.fs15{font-size:48.000000pt;}
.fs16{font-size:48.128000pt;}
.fs11{font-size:49.920000pt;}
.fs17{font-size:53.120000pt;}
.fs12{font-size:56.320000pt;}
.fs13{font-size:56.448000pt;}
.fsd{font-size:58.880000pt;}
.fse{font-size:59.008000pt;}
.fsf{font-size:64.000000pt;}
.fs10{font-size:64.128000pt;}
.fs5{font-size:74.880000pt;}
.fs18{font-size:75.008000pt;}
.fs1{font-size:90.880000pt;}
.fs7{font-size:96.000000pt;}
.fsa{font-size:96.128000pt;}
.fs8{font-size:106.880000pt;}
.fs0{font-size:107.008000pt;}
.fs4{font-size:149.120000pt;}
.fs9{font-size:149.248000pt;}
.fsc{font-size:170.880000pt;}
.fsb{font-size:192.000000pt;}
.fs6{font-size:192.128000pt;}
.fs2{font-size:213.120000pt;}
.fs3{font-size:213.248000pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:11.293333pt;}
.y4a{bottom:11.360000pt;}
.y4d{bottom:11.493333pt;}
.y66{bottom:11.936000pt;}
.y41{bottom:12.960000pt;}
.y8f{bottom:15.072000pt;}
.ya6{bottom:15.424000pt;}
.y44{bottom:16.064000pt;}
.y6{bottom:19.168000pt;}
.y33{bottom:38.688000pt;}
.ya5{bottom:42.426667pt;}
.y32{bottom:51.488000pt;}
.y3b{bottom:55.936000pt;}
.y9c{bottom:57.920000pt;}
.y5c{bottom:58.880000pt;}
.y74{bottom:61.760000pt;}
.y8e{bottom:63.008000pt;}
.y91{bottom:64.800000pt;}
.y27{bottom:68.768000pt;}
.yc2{bottom:72.896000pt;}
.y98{bottom:75.866667pt;}
.y5b{bottom:76.826667pt;}
.y8d{bottom:79.266667pt;}
.y1b{bottom:86.176000pt;}
.y9b{bottom:92.506667pt;}
.y95{bottom:93.373333pt;}
.y57{bottom:95.200000pt;}
.y82{bottom:96.893333pt;}
.y97{bottom:98.373333pt;}
.y62{bottom:99.136000pt;}
.y9d{bottom:102.373333pt;}
.y4b{bottom:109.893333pt;}
.y26{bottom:111.968000pt;}
.yb3{bottom:112.096000pt;}
.y92{bottom:112.960000pt;}
.y20{bottom:113.408000pt;}
.y56{bottom:114.746667pt;}
.yac{bottom:124.096000pt;}
.y55{bottom:124.346667pt;}
.y9a{bottom:132.506667pt;}
.y1a{bottom:134.173333pt;}
.y83{bottom:135.453333pt;}
.yc1{bottom:136.933333pt;}
.y75{bottom:140.613333pt;}
.y61{bottom:142.373333pt;}
.y54{bottom:143.866667pt;}
.yb2{bottom:144.093333pt;}
.y9e{bottom:146.813333pt;}
.y12{bottom:153.600000pt;}
.yb{bottom:154.213333pt;}
.y25{bottom:155.173333pt;}
.yab{bottom:156.133333pt;}
.ye{bottom:156.413333pt;}
.y1f{bottom:158.240000pt;}
.y15{bottom:158.533333pt;}
.y4f{bottom:163.453333pt;}
.y7c{bottom:167.613333pt;}
.y84{bottom:174.053333pt;}
.y94{bottom:176.773333pt;}
.y4e{bottom:181.413333pt;}
.y19{bottom:182.173333pt;}
.y96{bottom:183.426667pt;}
.y60{bottom:185.573333pt;}
.y76{bottom:188.826667pt;}
.y9f{bottom:191.266667pt;}
.y78{bottom:196.546667pt;}
.y36{bottom:197.826667pt;}
.y24{bottom:198.400000pt;}
.y65{bottom:200.066667pt;}
.y1{bottom:209.893333pt;}
.y77{bottom:210.053333pt;}
.y85{bottom:212.640000pt;}
.y40{bottom:222.560000pt;}
.y5a{bottom:223.840000pt;}
.y35{bottom:226.653333pt;}
.ya0{bottom:235.706667pt;}
.yd{bottom:239.453333pt;}
.y11{bottom:240.186667pt;}
.y23{bottom:241.600000pt;}
.y59{bottom:241.760000pt;}
.ya{bottom:243.426667pt;}
.yb9{bottom:244.773333pt;}
.y64{bottom:244.893333pt;}
.y53{bottom:245.466667pt;}
.y99{bottom:245.666667pt;}
.y14{bottom:245.920000pt;}
.y48{bottom:250.880000pt;}
.y86{bottom:251.200000pt;}
.y3f{bottom:251.386667pt;}
.y5d{bottom:252.893333pt;}
.y34{bottom:255.453333pt;}
.y50{bottom:261.026667pt;}
.ybe{bottom:261.466667pt;}
.y58{bottom:264.640000pt;}
.y52{bottom:264.986667pt;}
.y51{bottom:269.600000pt;}
.y47{bottom:270.880000pt;}
.yb8{bottom:273.573333pt;}
.ya1{bottom:280.160000pt;}
.yae{bottom:282.693333pt;}
.y22{bottom:284.800000pt;}
.y63{bottom:289.693333pt;}
.y87{bottom:289.786667pt;}
.ybd{bottom:290.266667pt;}
.y18{bottom:291.386667pt;}
.y1e{bottom:302.106667pt;}
.yb7{bottom:302.373333pt;}
.y3d{bottom:305.506667pt;}
.yad{bottom:314.693333pt;}
.ybc{bottom:319.066667pt;}
.ya2{bottom:324.613333pt;}
.y88{bottom:328.386667pt;}
.yb6{bottom:331.173333pt;}
.yc0{bottom:332.226667pt;}
.yf{bottom:332.960000pt;}
.y10{bottom:333.693333pt;}
.y13{bottom:335.226667pt;}
.y9{bottom:338.053333pt;}
.y7e{bottom:341.213333pt;}
.y4{bottom:347.266667pt;}
.ybb{bottom:347.906667pt;}
.y4c{bottom:351.360000pt;}
.y79{bottom:352.800000pt;}
.y7d{bottom:354.720000pt;}
.y7f{bottom:356.640000pt;}
.y7a{bottom:358.586667pt;}
.yb5{bottom:359.973333pt;}
.y2c{bottom:364.480000pt;}
.y89{bottom:366.946667pt;}
.ya3{bottom:369.026667pt;}
.y3a{bottom:369.306667pt;}
.yba{bottom:376.706667pt;}
.y31{bottom:377.280000pt;}
.yb4{bottom:388.800000pt;}
.y39{bottom:398.146667pt;}
.y43{bottom:398.240000pt;}
.y8a{bottom:405.533333pt;}
.y93{bottom:405.666667pt;}
.y30{bottom:406.106667pt;}
.y2b{bottom:407.680000pt;}
.y17{bottom:408.733333pt;}
.y3{bottom:411.266667pt;}
.ya4{bottom:413.466667pt;}
.y8{bottom:421.733333pt;}
.yc{bottom:424.453333pt;}
.y38{bottom:426.946667pt;}
.y80{bottom:433.826667pt;}
.y2f{bottom:434.906667pt;}
.yaa{bottom:441.573333pt;}
.y68{bottom:444.026667pt;}
.y8b{bottom:444.133333pt;}
.y42{bottom:444.320000pt;}
.y1d{bottom:446.853333pt;}
.y2a{bottom:450.880000pt;}
.y7b{bottom:453.093333pt;}
.y37{bottom:455.746667pt;}
.y16{bottom:456.773333pt;}
.y2e{bottom:463.706667pt;}
.y81{bottom:471.866667pt;}
.ya9{bottom:473.600000pt;}
.yb1{bottom:479.840000pt;}
.y8c{bottom:482.693333pt;}
.y5e{bottom:488.320000pt;}
.y67{bottom:490.106667pt;}
.y49{bottom:492.480000pt;}
.y29{bottom:494.106667pt;}
.y3c{bottom:502.173333pt;}
.y3e{bottom:503.013333pt;}
.ya8{bottom:505.600000pt;}
.yb0{bottom:511.840000pt;}
.y7{bottom:518.146667pt;}
.y73{bottom:524.453333pt;}
.y1c{bottom:530.533333pt;}
.y28{bottom:550.906667pt;}
.y21{bottom:555.866667pt;}
.y2d{bottom:563.453333pt;}
.yaf{bottom:566.560000pt;}
.y72{bottom:568.026667pt;}
.y6d{bottom:569.306667pt;}
.ya7{bottom:570.493333pt;}
.y6a{bottom:570.693333pt;}
.y6f{bottom:571.106667pt;}
.y6c{bottom:572.933333pt;}
.y90{bottom:573.120000pt;}
.y71{bottom:573.440000pt;}
.y46{bottom:573.626667pt;}
.y2{bottom:588.866667pt;}
.y69{bottom:590.373333pt;}
.y6e{bottom:590.786667pt;}
.y6b{bottom:592.613333pt;}
.y70{bottom:593.146667pt;}
.ybf{bottom:629.600000pt;}
.y5{bottom:648.160000pt;}
.y45{bottom:661.600000pt;}
.h31{height:41.601562pt;}
.h30{height:41.671875pt;}
.h36{height:41.712500pt;}
.h32{height:46.039063pt;}
.h33{height:48.812500pt;}
.h29{height:48.895000pt;}
.h2b{height:49.006125pt;}
.h23{height:50.240000pt;}
.h1b{height:50.400000pt;}
.h1d{height:50.560000pt;}
.h2e{height:51.031250pt;}
.h1a{height:51.117500pt;}
.h1c{height:51.228625pt;}
.h20{height:55.562500pt;}
.h21{height:55.673625pt;}
.h6{height:64.715625pt;}
.h16{height:64.898438pt;}
.h26{height:65.008125pt;}
.h35{height:65.009375pt;}
.h27{height:65.665625pt;}
.h2{height:78.543750pt;}
.h28{height:82.968750pt;}
.h2c{height:83.079375pt;}
.hb{height:83.203125pt;}
.h24{height:83.314062pt;}
.h11{height:83.343750pt;}
.h13{height:83.454875pt;}
.h25{height:84.362500pt;}
.hf{height:86.859375pt;}
.h10{height:86.975188pt;}
.h8{height:89.539479pt;}
.h38{height:92.371875pt;}
.h1{height:92.482500pt;}
.ha{height:92.632812pt;}
.h9{height:92.743750pt;}
.h1e{height:92.789375pt;}
.h37{height:92.900500pt;}
.h14{height:103.298437pt;}
.h5{height:128.878125pt;}
.h18{height:128.988750pt;}
.hd{height:129.242188pt;}
.he{height:129.353125pt;}
.h15{height:133.890437pt;}
.h2d{height:140.035417pt;}
.h2a{height:147.182083pt;}
.h17{height:148.351875pt;}
.h12{height:166.687500pt;}
.h7{height:166.798625pt;}
.h3{height:184.190625pt;}
.h4{height:184.301250pt;}
.hc{height:185.134250pt;}
.h19{height:279.680000pt;}
.h1f{height:297.280000pt;}
.h22{height:308.960000pt;}
.h34{height:431.520000pt;}
.h2f{height:493.280000pt;}
.h0{height:720.000000pt;}
.w2{width:439.520000pt;}
.w3{width:502.720000pt;}
.w5{width:548.000000pt;}
.w4{width:621.440000pt;}
.w7{width:792.800000pt;}
.w6{width:1032.160000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x5a{left:8.733333pt;}
.x34{left:16.575981pt;}
.x59{left:18.560000pt;}
.x5{left:24.959981pt;}
.x6{left:26.879981pt;}
.x1e{left:33.343981pt;}
.x13{left:41.535981pt;}
.x47{left:46.813333pt;}
.x50{left:49.146667pt;}
.x7{left:53.375981pt;}
.x46{left:59.653333pt;}
.x8{left:62.367981pt;}
.x23{left:68.639993pt;}
.x77{left:73.599981pt;}
.x32{left:78.015981pt;}
.x68{left:79.359981pt;}
.x66{left:83.903981pt;}
.x67{left:87.039981pt;}
.x19{left:91.103981pt;}
.x65{left:93.727981pt;}
.x15{left:96.223981pt;}
.x69{left:98.719981pt;}
.x24{left:101.663981pt;}
.x6a{left:104.319981pt;}
.x33{left:108.095981pt;}
.x9{left:110.495981pt;}
.xa{left:112.287981pt;}
.x3f{left:114.333333pt;}
.x5b{left:115.706667pt;}
.x29{left:131.386667pt;}
.x1{left:133.439981pt;}
.x53{left:134.653333pt;}
.x3{left:149.346648pt;}
.x56{left:155.613333pt;}
.x2d{left:162.426667pt;}
.x11{left:171.039981pt;}
.x2e{left:206.266667pt;}
.x42{left:211.653333pt;}
.x2f{left:220.800000pt;}
.x5c{left:228.160000pt;}
.x4f{left:231.200000pt;}
.x5f{left:241.213314pt;}
.x30{left:247.680000pt;}
.x4e{left:253.413314pt;}
.x20{left:257.466660pt;}
.x61{left:275.199981pt;}
.x1a{left:280.506648pt;}
.x1b{left:283.266648pt;}
.x62{left:285.759981pt;}
.x21{left:294.586660pt;}
.x51{left:299.933333pt;}
.x26{left:312.706667pt;}
.x2b{left:314.080000pt;}
.x4d{left:315.173314pt;}
.x3e{left:316.613314pt;}
.x35{left:318.333314pt;}
.x76{left:325.506648pt;}
.x22{left:327.493327pt;}
.x4c{left:330.146667pt;}
.x27{left:332.253333pt;}
.x16{left:340.986648pt;}
.x14{left:345.573314pt;}
.x4{left:353.373314pt;}
.x5d{left:355.813314pt;}
.x12{left:365.919981pt;}
.x28{left:379.933333pt;}
.x54{left:384.573333pt;}
.x63{left:387.839981pt;}
.x5e{left:397.413314pt;}
.x1f{left:400.506648pt;}
.x3a{left:428.319981pt;}
.x2c{left:436.933333pt;}
.x64{left:439.066648pt;}
.x57{left:444.346667pt;}
.x6e{left:451.906648pt;}
.xe{left:455.293314pt;}
.x39{left:460.666648pt;}
.x6d{left:463.266648pt;}
.x6c{left:466.626648pt;}
.xd{left:479.453314pt;}
.x49{left:481.600000pt;}
.x6b{left:482.946648pt;}
.x6f{left:491.906648pt;}
.x48{left:493.920000pt;}
.x2{left:500.386648pt;}
.x41{left:503.493333pt;}
.x10{left:512.453314pt;}
.xf{left:515.173314pt;}
.x31{left:520.319981pt;}
.xb{left:545.533314pt;}
.xc{left:548.866648pt;}
.x52{left:557.573333pt;}
.x60{left:560.799981pt;}
.x70{left:584.706648pt;}
.x44{left:600.773333pt;}
.x55{left:617.026667pt;}
.x58{left:701.626667pt;}
.x37{left:713.733314pt;}
.x1d{left:715.426648pt;}
.x18{left:717.093314pt;}
.x36{left:741.413314pt;}
.x4b{left:760.613333pt;}
.x25{left:777.280000pt;}
.x4a{left:785.946667pt;}
.x40{left:795.333333pt;}
.x3c{left:813.626648pt;}
.x17{left:832.346648pt;}
.x3b{left:841.306648pt;}
.x72{left:887.773314pt;}
.x74{left:891.293314pt;}
.x43{left:892.613333pt;}
.x1c{left:898.239981pt;}
.x71{left:901.533314pt;}
.x2a{left:916.186648pt;}
.x73{left:918.173314pt;}
.x75{left:922.653314pt;}
.x45{left:929.786667pt;}
.x38{left:1026.239981pt;}
.x3d{left:1119.706648pt;}
}




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