
    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_f2cbde37fb72a3ce278f71e8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.102000;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_ccb038d86a91fd48779dbf84.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.057129;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_2dade381eaab959f67f0b569.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_d2d98f5c552c466810906abe.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.991211;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_ab4fb39a5d291669a6649f30.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.182617;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_b1f08042d21ccff278d44b9f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_cbd8a984bc1b15386ed870b3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003418;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_b0b921f5ad140a6ba12b4435.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_58aa970a40c0c85a54bf25ff.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.717285;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_6a02ca9e318229c1057bdddb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_98d3c9bfba637f5b22cff9f9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.717285;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_f5a069d9871efd83da1d0612.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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:-14.345706px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.286134px;}
.ls22{letter-spacing:-5.544000px;}
.ls26{letter-spacing:-2.706000px;}
.ls18{letter-spacing:-2.640000px;}
.ls17{letter-spacing:-1.914000px;}
.ls1c{letter-spacing:-1.320000px;}
.ls1b{letter-spacing:-1.161600px;}
.lsf{letter-spacing:-1.056000px;}
.ls5{letter-spacing:-0.990000px;}
.lsd{letter-spacing:-0.528000px;}
.lsc{letter-spacing:-0.013200px;}
.ls10{letter-spacing:-0.012000px;}
.ls3{letter-spacing:-0.005280px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.006600px;}
.ls20{letter-spacing:0.008880px;}
.ls24{letter-spacing:0.010560px;}
.ls13{letter-spacing:0.012000px;}
.ls8{letter-spacing:0.013200px;}
.ls12{letter-spacing:0.264000px;}
.ls1{letter-spacing:0.330000px;}
.ls1e{letter-spacing:0.422400px;}
.ls16{letter-spacing:0.528000px;}
.ls15{letter-spacing:0.594000px;}
.ls4{letter-spacing:0.640200px;}
.ls23{letter-spacing:0.745800px;}
.ls1f{letter-spacing:0.858000px;}
.ls27{letter-spacing:1.320000px;}
.ls6{letter-spacing:1.359600px;}
.ls14{letter-spacing:1.452000px;}
.ls11{letter-spacing:2.265513px;}
.ls1a{letter-spacing:2.917200px;}
.ls9{letter-spacing:4.435200px;}
.ls2{letter-spacing:7.002600px;}
.ls1d{letter-spacing:8.335680px;}
.lse{letter-spacing:11.388000px;}
.ls21{letter-spacing:17.444880px;}
.ls25{letter-spacing:19.131000px;}
.lsb{letter-spacing:20.691000px;}
.ls19{letter-spacing:21.999999px;}
.ls7{letter-spacing:33.679800px;}
.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;}
}
.ws4{word-spacing:-17.859600px;}
.ws6{word-spacing:-16.680000px;}
.wsa{word-spacing:-16.513200px;}
.ws0{word-spacing:-16.500000px;}
.ws9{word-spacing:-16.486800px;}
.wsb{word-spacing:-15.338400px;}
.ws1{word-spacing:-15.000000px;}
.ws7{word-spacing:-13.944000px;}
.wsc{word-spacing:-13.210560px;}
.ws5{word-spacing:-13.200000px;}
.ws3{word-spacing:-13.194720px;}
.ws8{word-spacing:-0.066000px;}
.ws2{word-spacing:0.000000px;}
._21{margin-left:-16.061400px;}
._1f{margin-left:-7.781580px;}
._c{margin-left:-6.661620px;}
._4{margin-left:-5.256000px;}
._22{margin-left:-4.173060px;}
._2{margin-left:-3.096000px;}
._0{margin-left:-1.728000px;}
._3{width:1.440000px;}
._7{width:3.006000px;}
._1{width:4.176000px;}
._f{width:5.724000px;}
._10{width:6.864000px;}
._5{width:8.598000px;}
._9{width:9.918000px;}
._6{width:10.920000px;}
._14{width:12.079020px;}
._e{width:13.173180px;}
._13{width:14.282400px;}
._15{width:15.350400px;}
._a{width:16.410000px;}
._d{width:17.676000px;}
._b{width:19.308000px;}
._11{width:20.604000px;}
._18{width:21.727800px;}
._12{width:22.935000px;}
._1e{width:23.966400px;}
._8{width:25.590000px;}
._1a{width:26.723400px;}
._1d{width:28.275600px;}
._1c{width:29.329200px;}
._20{width:30.355860px;}
._1b{width:31.502400px;}
._17{width:33.017400px;}
._19{width:34.201200px;}
._16{width:35.757600px;}
._23{width:44.380800px;}
.fc2{color:rgb(33,37,41);}
.fc3{color:rgb(146,146,146);}
.fc1{color:rgb(94,94,94);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:40.000002px;}
.fs5{font-size:44.000004px;}
.fs4{font-size:52.800000px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:78.000000px;}
.fs7{font-size:88.002000px;}
.y0{bottom:0.000000px;}
.y123{bottom:1.160100px;}
.y76{bottom:8.285535px;}
.y6f{bottom:8.285550px;}
.y84{bottom:9.000000px;}
.y120{bottom:9.114075px;}
.y1e{bottom:11.550030px;}
.y17d{bottom:15.076170px;}
.y13d{bottom:16.576170px;}
.yc2{bottom:19.160145px;}
.y1c{bottom:21.015750px;}
.y160{bottom:21.076170px;}
.y183{bottom:21.744135px;}
.y92{bottom:25.910160px;}
.y75{bottom:27.785520px;}
.y6e{bottom:27.785550px;}
.y83{bottom:29.660100px;}
.y11f{bottom:30.114030px;}
.y7e{bottom:31.259670px;}
.y17c{bottom:36.076125px;}
.y13c{bottom:37.576125px;}
.y182{bottom:38.244075px;}
.yc1{bottom:38.660175px;}
.y41{bottom:39.076125px;}
.y1b{bottom:40.515795px;}
.y15f{bottom:42.076125px;}
.y91{bottom:45.410145px;}
.y74{bottom:47.285520px;}
.y6d{bottom:47.285550px;}
.yef{bottom:48.884295px;}
.y81{bottom:49.160100px;}
.y11e{bottom:51.114030px;}
.y82{bottom:52.634250px;}
.y181{bottom:54.744075px;}
.y1d{bottom:56.354505px;}
.y17b{bottom:57.076125px;}
.yc0{bottom:58.160175px;}
.y13b{bottom:58.576125px;}
.y1a{bottom:60.015795px;}
.y40{bottom:60.076125px;}
.y15e{bottom:63.076125px;}
.y90{bottom:64.910145px;}
.y18b{bottom:66.006150px;}
.y73{bottom:66.785520px;}
.y6b{bottom:66.785550px;}
.y17f{bottom:68.384295px;}
.y6c{bottom:70.259700px;}
.y11d{bottom:72.114030px;}
.ybf{bottom:77.660175px;}
.y17a{bottom:78.076125px;}
.y19{bottom:79.515795px;}
.y13a{bottom:79.576125px;}
.y3f{bottom:81.076125px;}
.y15d{bottom:84.076125px;}
.y8f{bottom:84.410145px;}
.y71{bottom:86.285520px;}
.y86{bottom:86.285550px;}
.y18a{bottom:87.006150px;}
.y95{bottom:87.884295px;}
.y94{bottom:87.996572px;}
.y7d{bottom:88.293045px;}
.y72{bottom:89.759670px;}
.y87{bottom:89.759700px;}
.y11c{bottom:93.114030px;}
.y18{bottom:99.015795px;}
.y179{bottom:99.076125px;}
.yee{bottom:100.293045px;}
.y139{bottom:100.576125px;}
.y3e{bottom:102.076125px;}
.y8e{bottom:103.910145px;}
.y15c{bottom:105.076125px;}
.y144{bottom:105.785520px;}
.y189{bottom:108.006150px;}
.y7c{bottom:109.293045px;}
.y17e{bottom:113.114595px;}
.y11b{bottom:114.114030px;}
.y17{bottom:118.515795px;}
.ybe{bottom:118.576125px;}
.y178{bottom:120.076125px;}
.yed{bottom:121.293045px;}
.y138{bottom:121.576125px;}
.yf0{bottom:122.738070px;}
.y3d{bottom:123.076125px;}
.y8d{bottom:123.410145px;}
.y70{bottom:123.433680px;}
.y88{bottom:123.809055px;}
.y143{bottom:125.285520px;}
.y15b{bottom:126.076125px;}
.y1f{bottom:127.275975px;}
.y1{bottom:127.559055px;}
.y188{bottom:129.006150px;}
.y7b{bottom:130.293045px;}
.y11a{bottom:135.114030px;}
.y16{bottom:138.015795px;}
.ybd{bottom:139.576125px;}
.y177{bottom:141.076125px;}
.yec{bottom:142.293045px;}
.y137{bottom:142.576125px;}
.y8c{bottom:142.910145px;}
.y3c{bottom:144.076125px;}
.y142{bottom:144.785520px;}
.y15a{bottom:147.076125px;}
.y187{bottom:150.006150px;}
.y7a{bottom:151.293045px;}
.y119{bottom:156.114030px;}
.ybc{bottom:160.576125px;}
.y176{bottom:162.076125px;}
.y8b{bottom:162.410145px;}
.yeb{bottom:163.293045px;}
.y136{bottom:163.576125px;}
.y141{bottom:164.285520px;}
.y3b{bottom:165.076125px;}
.y159{bottom:168.076125px;}
.y186{bottom:171.006150px;}
.y79{bottom:172.293045px;}
.y15{bottom:177.015795px;}
.y118{bottom:177.114030px;}
.ybb{bottom:181.576125px;}
.y89{bottom:181.910145px;}
.y175{bottom:183.076125px;}
.y13f{bottom:183.785520px;}
.yea{bottom:184.293045px;}
.y135{bottom:184.576125px;}
.y8a{bottom:185.384295px;}
.y3a{bottom:186.076125px;}
.y140{bottom:187.259670px;}
.y158{bottom:189.076125px;}
.y185{bottom:192.006150px;}
.y78{bottom:193.293045px;}
.y14{bottom:196.925895px;}
.y117{bottom:198.114030px;}
.yba{bottom:202.576125px;}
.y174{bottom:204.076125px;}
.ye9{bottom:205.293045px;}
.y134{bottom:205.576125px;}
.y39{bottom:207.076125px;}
.y157{bottom:210.076125px;}
.y69{bottom:214.293045px;}
.y13{bottom:216.425895px;}
.y116{bottom:219.114030px;}
.y6a{bottom:220.933650px;}
.yb9{bottom:223.576125px;}
.y173{bottom:225.076125px;}
.ye8{bottom:226.293045px;}
.y133{bottom:226.576125px;}
.y38{bottom:228.076125px;}
.y156{bottom:231.076125px;}
.y68{bottom:235.293045px;}
.y12{bottom:235.925895px;}
.y115{bottom:240.114030px;}
.yb8{bottom:244.576125px;}
.y172{bottom:246.076125px;}
.ye7{bottom:247.293045px;}
.y132{bottom:247.576125px;}
.y37{bottom:249.076125px;}
.y155{bottom:252.076125px;}
.y67{bottom:256.293045px;}
.y93{bottom:260.114595px;}
.y114{bottom:261.114030px;}
.yb7{bottom:265.576125px;}
.y171{bottom:267.076125px;}
.ye6{bottom:268.293045px;}
.y131{bottom:268.576125px;}
.y36{bottom:270.076125px;}
.y154{bottom:273.076125px;}
.y11{bottom:274.925895px;}
.y66{bottom:277.293045px;}
.y113{bottom:282.114030px;}
.yb6{bottom:286.576125px;}
.y170{bottom:288.076125px;}
.ye5{bottom:289.293045px;}
.y130{bottom:289.576125px;}
.y35{bottom:291.076125px;}
.y153{bottom:294.076125px;}
.y10{bottom:294.425895px;}
.y65{bottom:298.293045px;}
.y121{bottom:301.549500px;}
.y112{bottom:303.114030px;}
.yb5{bottom:307.576125px;}
.y122{bottom:308.674950px;}
.y16f{bottom:309.076125px;}
.ye4{bottom:310.293045px;}
.y12f{bottom:310.576125px;}
.y34{bottom:312.076125px;}
.yf{bottom:313.925895px;}
.y152{bottom:315.076125px;}
.y85{bottom:316.933650px;}
.y64{bottom:319.293045px;}
.y111{bottom:324.114030px;}
.yb4{bottom:328.576125px;}
.y16e{bottom:330.076125px;}
.ye3{bottom:331.293045px;}
.y33{bottom:333.076125px;}
.ye{bottom:333.425895px;}
.y151{bottom:336.076125px;}
.y63{bottom:340.293045px;}
.y110{bottom:345.114030px;}
.yb3{bottom:349.576125px;}
.y12e{bottom:350.660175px;}
.y16d{bottom:351.076125px;}
.ye2{bottom:352.293045px;}
.yd{bottom:352.925895px;}
.y32{bottom:354.076125px;}
.y150{bottom:357.076125px;}
.y62{bottom:361.293045px;}
.y10f{bottom:366.114030px;}
.y12d{bottom:370.160175px;}
.yb2{bottom:370.576125px;}
.y16c{bottom:372.076125px;}
.yc{bottom:372.425895px;}
.ye0{bottom:373.293045px;}
.y31{bottom:375.076125px;}
.ye1{bottom:377.114595px;}
.y61{bottom:382.293045px;}
.y10e{bottom:387.114030px;}
.y12c{bottom:389.660175px;}
.yb1{bottom:391.576125px;}
.yb{bottom:391.925895px;}
.y16b{bottom:393.076125px;}
.ydf{bottom:394.293045px;}
.y30{bottom:396.076125px;}
.y14f{bottom:398.660175px;}
.y5f{bottom:403.293045px;}
.y60{bottom:407.114595px;}
.y10d{bottom:408.114030px;}
.y12b{bottom:409.160175px;}
.ya{bottom:411.425895px;}
.yb0{bottom:412.576125px;}
.y80{bottom:414.059100px;}
.y16a{bottom:414.076125px;}
.yde{bottom:415.293045px;}
.y2f{bottom:417.076125px;}
.y14e{bottom:418.160175px;}
.y5e{bottom:424.293045px;}
.y12a{bottom:428.660175px;}
.y10c{bottom:429.114030px;}
.y9{bottom:430.925895px;}
.yaf{bottom:433.576125px;}
.y169{bottom:435.076125px;}
.ydd{bottom:436.293045px;}
.y14d{bottom:437.660175px;}
.y2e{bottom:438.076125px;}
.y5d{bottom:445.293045px;}
.y129{bottom:448.160175px;}
.y10b{bottom:450.114030px;}
.y168{bottom:456.076125px;}
.y14c{bottom:457.160175px;}
.ydc{bottom:457.293045px;}
.y2d{bottom:459.076125px;}
.y5c{bottom:466.293045px;}
.y128{bottom:467.660175px;}
.y10a{bottom:471.114030px;}
.yae{bottom:473.660175px;}
.y14b{bottom:476.660175px;}
.ydb{bottom:478.293045px;}
.y2c{bottom:480.076125px;}
.y5b{bottom:487.293045px;}
.y109{bottom:492.114030px;}
.yad{bottom:493.160175px;}
.y14a{bottom:496.160175px;}
.y167{bottom:497.660175px;}
.yda{bottom:499.293045px;}
.y2b{bottom:501.076125px;}
.y5a{bottom:508.293045px;}
.y127{bottom:508.576125px;}
.yac{bottom:512.660175px;}
.y108{bottom:513.114030px;}
.y149{bottom:515.660175px;}
.y166{bottom:517.160175px;}
.yd9{bottom:520.293045px;}
.y2a{bottom:522.076125px;}
.y59{bottom:529.293045px;}
.y126{bottom:529.576125px;}
.yab{bottom:532.160175px;}
.y107{bottom:534.114030px;}
.y148{bottom:535.160175px;}
.y165{bottom:536.660175px;}
.y8{bottom:540.841845px;}
.yd8{bottom:541.293045px;}
.y29{bottom:543.076125px;}
.y58{bottom:550.293045px;}
.y125{bottom:550.576125px;}
.yaa{bottom:551.660175px;}
.y147{bottom:554.660175px;}
.y106{bottom:555.114030px;}
.y164{bottom:556.160175px;}
.y7{bottom:561.841845px;}
.yd7{bottom:562.293045px;}
.y28{bottom:564.076125px;}
.y57{bottom:571.293045px;}
.y124{bottom:571.576125px;}
.y146{bottom:574.160175px;}
.y77{bottom:575.114595px;}
.y163{bottom:575.660175px;}
.y105{bottom:576.114030px;}
.y6{bottom:582.841845px;}
.yd6{bottom:583.293045px;}
.y27{bottom:585.076125px;}
.y56{bottom:592.293045px;}
.ya9{bottom:592.576125px;}
.y145{bottom:593.660175px;}
.y162{bottom:595.160175px;}
.y104{bottom:597.114030px;}
.yd5{bottom:604.293045px;}
.y26{bottom:606.076125px;}
.y55{bottom:613.293045px;}
.ya8{bottom:613.576125px;}
.y161{bottom:614.660175px;}
.y103{bottom:618.114030px;}
.yd4{bottom:625.293045px;}
.y25{bottom:627.076125px;}
.y54{bottom:634.293045px;}
.ya7{bottom:634.576125px;}
.y102{bottom:639.114030px;}
.y24{bottom:648.076125px;}
.y53{bottom:655.293045px;}
.ya6{bottom:655.576125px;}
.y101{bottom:660.114030px;}
.yd3{bottom:667.293045px;}
.y23{bottom:669.076125px;}
.y52{bottom:676.293045px;}
.ya5{bottom:676.576125px;}
.y100{bottom:681.114030px;}
.yd2{bottom:688.293045px;}
.y22{bottom:690.076125px;}
.y180{bottom:692.085075px;}
.y51{bottom:697.293045px;}
.ya4{bottom:697.576125px;}
.yff{bottom:702.114030px;}
.yd1{bottom:709.293045px;}
.y21{bottom:711.076125px;}
.y5{bottom:712.365795px;}
.y50{bottom:718.293045px;}
.ya3{bottom:718.576125px;}
.yfe{bottom:723.114030px;}
.yd0{bottom:730.293045px;}
.y4{bottom:733.365795px;}
.y4f{bottom:739.293045px;}
.ya2{bottom:739.576125px;}
.y13e{bottom:743.114595px;}
.yfd{bottom:744.114030px;}
.ycf{bottom:751.293045px;}
.y3{bottom:754.365795px;}
.y4e{bottom:760.293045px;}
.ya1{bottom:760.576125px;}
.y7f{bottom:764.114595px;}
.yfc{bottom:765.114030px;}
.yce{bottom:772.293045px;}
.y2{bottom:775.365795px;}
.y4d{bottom:781.293045px;}
.ya0{bottom:781.576125px;}
.yfb{bottom:786.114030px;}
.ycd{bottom:793.293045px;}
.y4c{bottom:802.293045px;}
.y9f{bottom:802.576125px;}
.yfa{bottom:807.114030px;}
.ycc{bottom:814.293045px;}
.y4b{bottom:823.293045px;}
.y9e{bottom:823.576125px;}
.yf9{bottom:828.114030px;}
.ycb{bottom:835.293045px;}
.y4a{bottom:844.293045px;}
.y9d{bottom:844.576125px;}
.yf8{bottom:849.114030px;}
.yca{bottom:855.877095px;}
.y49{bottom:865.293045px;}
.y9c{bottom:865.576125px;}
.y184{bottom:866.095950px;}
.yf7{bottom:870.114030px;}
.yc9{bottom:875.377095px;}
.y48{bottom:886.293045px;}
.y9b{bottom:886.576125px;}
.yf6{bottom:891.114030px;}
.yc8{bottom:894.877095px;}
.y47{bottom:907.293045px;}
.y9a{bottom:907.576125px;}
.yf5{bottom:912.114030px;}
.yc7{bottom:914.377095px;}
.y46{bottom:928.293045px;}
.y99{bottom:928.576125px;}
.yf4{bottom:933.114030px;}
.yc6{bottom:933.877095px;}
.y45{bottom:949.293045px;}
.y98{bottom:949.576125px;}
.yc5{bottom:953.377095px;}
.yf3{bottom:954.114030px;}
.y44{bottom:970.293045px;}
.y97{bottom:970.576125px;}
.yc4{bottom:972.877095px;}
.y20{bottom:973.160175px;}
.yf2{bottom:975.114030px;}
.y42{bottom:991.293045px;}
.y96{bottom:991.576125px;}
.yc3{bottom:992.377095px;}
.y43{bottom:995.114595px;}
.yf1{bottom:996.114030px;}
.h9{height:27.750015px;}
.h10{height:31.191408px;}
.h17{height:32.441403px;}
.he{height:34.310550px;}
.h1d{height:36.000000px;}
.h8{height:39.990234px;}
.hc{height:43.989258px;}
.h7{height:46.787109px;}
.h12{height:47.250735px;}
.h14{height:47.988281px;}
.h20{height:48.243164px;}
.h23{height:48.911133px;}
.h1c{height:49.125360px;}
.h4{height:51.465820px;}
.h5{height:51.987305px;}
.h6{height:54.345703px;}
.ha{height:56.232000px;}
.h21{height:58.653677px;}
.hd{height:59.780273px;}
.h3{height:61.344000px;}
.h1a{height:64.875360px;}
.h13{height:68.625360px;}
.h1f{height:84.375360px;}
.hf{height:86.250735px;}
.h16{height:103.875360px;}
.h11{height:105.750735px;}
.h15{height:201.375300px;}
.h1e{height:203.250750px;}
.h24{height:266.929950px;}
.h22{height:1008.000000px;}
.h19{height:1011.842250px;}
.hb{height:1012.125300px;}
.h2{height:1012.254750px;}
.h18{height:1012.537950px;}
.h1b{height:1017.075750px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w16{width:516.481500px;}
.w8{width:517.257000px;}
.w1a{width:518.313000px;}
.w1b{width:518.527500px;}
.w1e{width:518.956500px;}
.w1d{width:519.006000px;}
.w19{width:519.072000px;}
.w10{width:519.204000px;}
.w17{width:519.352500px;}
.w5{width:519.435000px;}
.w15{width:519.666000px;}
.w3{width:519.682500px;}
.w14{width:519.913500px;}
.we{width:519.996000px;}
.wa{width:520.062000px;}
.wb{width:520.194000px;}
.w11{width:520.639500px;}
.wf{width:520.870500px;}
.w7{width:521.052000px;}
.wc{width:521.118000px;}
.w1f{width:548.262600px;}
.w13{width:549.013350px;}
.w12{width:552.762600px;}
.w6{width:561.013350px;}
.w9{width:561.762600px;}
.w4{width:561.838350px;}
.w18{width:563.620950px;}
.wd{width:567.561450px;}
.w1c{width:567.603300px;}
.w2{width:573.555600px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:4.125000px;}
.x9{left:5.500050px;}
.x1e{left:7.420350px;}
.x10{left:9.125299px;}
.x1b{left:14.125300px;}
.x1c{left:25.797750px;}
.x1f{left:28.680300px;}
.x20{left:37.500000px;}
.xc{left:58.537800px;}
.x15{left:66.130800px;}
.x4{left:100.477350px;}
.x2{left:104.878350px;}
.x3{left:160.192350px;}
.x1d{left:162.658350px;}
.x1{left:164.578650px;}
.xf{left:165.953400px;}
.x17{left:170.078700px;}
.x18{left:171.953400px;}
.x13{left:178.455000px;}
.x5{left:179.794350px;}
.xa{left:186.618750px;}
.x12{left:187.831500px;}
.x1a{left:204.146550px;}
.x14{left:234.427050px;}
.xe{left:258.097650px;}
.x19{left:324.912900px;}
.x8{left:345.027600px;}
.x7{left:382.080000px;}
.x11{left:387.606900px;}
.x6{left:472.217700px;}
.xd{left:474.665250px;}
.x16{left:529.739250px;}
@media print{
.v1{vertical-align:-12.751739pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.587675pt;}
.ls22{letter-spacing:-4.928000pt;}
.ls26{letter-spacing:-2.405333pt;}
.ls18{letter-spacing:-2.346667pt;}
.ls17{letter-spacing:-1.701333pt;}
.ls1c{letter-spacing:-1.173333pt;}
.ls1b{letter-spacing:-1.032533pt;}
.lsf{letter-spacing:-0.938667pt;}
.ls5{letter-spacing:-0.880000pt;}
.lsd{letter-spacing:-0.469333pt;}
.lsc{letter-spacing:-0.011733pt;}
.ls10{letter-spacing:-0.010667pt;}
.ls3{letter-spacing:-0.004693pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.005867pt;}
.ls20{letter-spacing:0.007893pt;}
.ls24{letter-spacing:0.009387pt;}
.ls13{letter-spacing:0.010667pt;}
.ls8{letter-spacing:0.011733pt;}
.ls12{letter-spacing:0.234667pt;}
.ls1{letter-spacing:0.293333pt;}
.ls1e{letter-spacing:0.375467pt;}
.ls16{letter-spacing:0.469333pt;}
.ls15{letter-spacing:0.528000pt;}
.ls4{letter-spacing:0.569067pt;}
.ls23{letter-spacing:0.662933pt;}
.ls1f{letter-spacing:0.762667pt;}
.ls27{letter-spacing:1.173333pt;}
.ls6{letter-spacing:1.208533pt;}
.ls14{letter-spacing:1.290667pt;}
.ls11{letter-spacing:2.013790pt;}
.ls1a{letter-spacing:2.593067pt;}
.ls9{letter-spacing:3.942400pt;}
.ls2{letter-spacing:6.224533pt;}
.ls1d{letter-spacing:7.409493pt;}
.lse{letter-spacing:10.122667pt;}
.ls21{letter-spacing:15.506560pt;}
.ls25{letter-spacing:17.005333pt;}
.lsb{letter-spacing:18.392000pt;}
.ls19{letter-spacing:19.555555pt;}
.ls7{letter-spacing:29.937600pt;}
.ws4{word-spacing:-15.875200pt;}
.ws6{word-spacing:-14.826667pt;}
.wsa{word-spacing:-14.678400pt;}
.ws0{word-spacing:-14.666667pt;}
.ws9{word-spacing:-14.654933pt;}
.wsb{word-spacing:-13.634133pt;}
.ws1{word-spacing:-13.333333pt;}
.ws7{word-spacing:-12.394667pt;}
.wsc{word-spacing:-11.742720pt;}
.ws5{word-spacing:-11.733333pt;}
.ws3{word-spacing:-11.728640pt;}
.ws8{word-spacing:-0.058667pt;}
.ws2{word-spacing:0.000000pt;}
._21{margin-left:-14.276800pt;}
._1f{margin-left:-6.916960pt;}
._c{margin-left:-5.921440pt;}
._4{margin-left:-4.672000pt;}
._22{margin-left:-3.709387pt;}
._2{margin-left:-2.752000pt;}
._0{margin-left:-1.536000pt;}
._3{width:1.280000pt;}
._7{width:2.672000pt;}
._1{width:3.712000pt;}
._f{width:5.088000pt;}
._10{width:6.101333pt;}
._5{width:7.642667pt;}
._9{width:8.816000pt;}
._6{width:9.706667pt;}
._14{width:10.736907pt;}
._e{width:11.709493pt;}
._13{width:12.695467pt;}
._15{width:13.644800pt;}
._a{width:14.586667pt;}
._d{width:15.712000pt;}
._b{width:17.162667pt;}
._11{width:18.314667pt;}
._18{width:19.313600pt;}
._12{width:20.386667pt;}
._1e{width:21.303467pt;}
._8{width:22.746667pt;}
._1a{width:23.754133pt;}
._1d{width:25.133867pt;}
._1c{width:26.070400pt;}
._20{width:26.982987pt;}
._1b{width:28.002133pt;}
._17{width:29.348800pt;}
._19{width:30.401067pt;}
._16{width:31.784533pt;}
._23{width:39.449600pt;}
.fs6{font-size:35.555557pt;}
.fs5{font-size:39.111115pt;}
.fs4{font-size:46.933333pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:69.333333pt;}
.fs7{font-size:78.224000pt;}
.y0{bottom:0.000000pt;}
.y123{bottom:1.031200pt;}
.y76{bottom:7.364920pt;}
.y6f{bottom:7.364933pt;}
.y84{bottom:8.000000pt;}
.y120{bottom:8.101400pt;}
.y1e{bottom:10.266693pt;}
.y17d{bottom:13.401040pt;}
.y13d{bottom:14.734373pt;}
.yc2{bottom:17.031240pt;}
.y1c{bottom:18.680667pt;}
.y160{bottom:18.734373pt;}
.y183{bottom:19.328120pt;}
.y92{bottom:23.031253pt;}
.y75{bottom:24.698240pt;}
.y6e{bottom:24.698267pt;}
.y83{bottom:26.364533pt;}
.y11f{bottom:26.768027pt;}
.y7e{bottom:27.786373pt;}
.y17c{bottom:32.067667pt;}
.y13c{bottom:33.401000pt;}
.y182{bottom:33.994733pt;}
.yc1{bottom:34.364600pt;}
.y41{bottom:34.734333pt;}
.y1b{bottom:36.014040pt;}
.y15f{bottom:37.401000pt;}
.y91{bottom:40.364573pt;}
.y74{bottom:42.031573pt;}
.y6d{bottom:42.031600pt;}
.yef{bottom:43.452707pt;}
.y81{bottom:43.697867pt;}
.y11e{bottom:45.434693pt;}
.y82{bottom:46.786000pt;}
.y181{bottom:48.661400pt;}
.y1d{bottom:50.092893pt;}
.y17b{bottom:50.734333pt;}
.yc0{bottom:51.697933pt;}
.y13b{bottom:52.067667pt;}
.y1a{bottom:53.347373pt;}
.y40{bottom:53.401000pt;}
.y15e{bottom:56.067667pt;}
.y90{bottom:57.697907pt;}
.y18b{bottom:58.672133pt;}
.y73{bottom:59.364907pt;}
.y6b{bottom:59.364933pt;}
.y17f{bottom:60.786040pt;}
.y6c{bottom:62.453067pt;}
.y11d{bottom:64.101360pt;}
.ybf{bottom:69.031267pt;}
.y17a{bottom:69.401000pt;}
.y19{bottom:70.680707pt;}
.y13a{bottom:70.734333pt;}
.y3f{bottom:72.067667pt;}
.y15d{bottom:74.734333pt;}
.y8f{bottom:75.031240pt;}
.y71{bottom:76.698240pt;}
.y86{bottom:76.698267pt;}
.y18a{bottom:77.338800pt;}
.y95{bottom:78.119373pt;}
.y94{bottom:78.219175pt;}
.y7d{bottom:78.482707pt;}
.y72{bottom:79.786373pt;}
.y87{bottom:79.786400pt;}
.y11c{bottom:82.768027pt;}
.y18{bottom:88.014040pt;}
.y179{bottom:88.067667pt;}
.yee{bottom:89.149373pt;}
.y139{bottom:89.401000pt;}
.y3e{bottom:90.734333pt;}
.y8e{bottom:92.364573pt;}
.y15c{bottom:93.401000pt;}
.y144{bottom:94.031573pt;}
.y189{bottom:96.005467pt;}
.y7c{bottom:97.149373pt;}
.y17e{bottom:100.546307pt;}
.y11b{bottom:101.434693pt;}
.y17{bottom:105.347373pt;}
.ybe{bottom:105.401000pt;}
.y178{bottom:106.734333pt;}
.yed{bottom:107.816040pt;}
.y138{bottom:108.067667pt;}
.yf0{bottom:109.100507pt;}
.y3d{bottom:109.401000pt;}
.y8d{bottom:109.697907pt;}
.y70{bottom:109.718827pt;}
.y88{bottom:110.052493pt;}
.y143{bottom:111.364907pt;}
.y15b{bottom:112.067667pt;}
.y1f{bottom:113.134200pt;}
.y1{bottom:113.385827pt;}
.y188{bottom:114.672133pt;}
.y7b{bottom:115.816040pt;}
.y11a{bottom:120.101360pt;}
.y16{bottom:122.680707pt;}
.ybd{bottom:124.067667pt;}
.y177{bottom:125.401000pt;}
.yec{bottom:126.482707pt;}
.y137{bottom:126.734333pt;}
.y8c{bottom:127.031240pt;}
.y3c{bottom:128.067667pt;}
.y142{bottom:128.698240pt;}
.y15a{bottom:130.734333pt;}
.y187{bottom:133.338800pt;}
.y7a{bottom:134.482707pt;}
.y119{bottom:138.768027pt;}
.ybc{bottom:142.734333pt;}
.y176{bottom:144.067667pt;}
.y8b{bottom:144.364573pt;}
.yeb{bottom:145.149373pt;}
.y136{bottom:145.401000pt;}
.y141{bottom:146.031573pt;}
.y3b{bottom:146.734333pt;}
.y159{bottom:149.401000pt;}
.y186{bottom:152.005467pt;}
.y79{bottom:153.149373pt;}
.y15{bottom:157.347373pt;}
.y118{bottom:157.434693pt;}
.ybb{bottom:161.401000pt;}
.y89{bottom:161.697907pt;}
.y175{bottom:162.734333pt;}
.y13f{bottom:163.364907pt;}
.yea{bottom:163.816040pt;}
.y135{bottom:164.067667pt;}
.y8a{bottom:164.786040pt;}
.y3a{bottom:165.401000pt;}
.y140{bottom:166.453040pt;}
.y158{bottom:168.067667pt;}
.y185{bottom:170.672133pt;}
.y78{bottom:171.816040pt;}
.y14{bottom:175.045240pt;}
.y117{bottom:176.101360pt;}
.yba{bottom:180.067667pt;}
.y174{bottom:181.401000pt;}
.ye9{bottom:182.482707pt;}
.y134{bottom:182.734333pt;}
.y39{bottom:184.067667pt;}
.y157{bottom:186.734333pt;}
.y69{bottom:190.482707pt;}
.y13{bottom:192.378573pt;}
.y116{bottom:194.768027pt;}
.y6a{bottom:196.385467pt;}
.yb9{bottom:198.734333pt;}
.y173{bottom:200.067667pt;}
.ye8{bottom:201.149373pt;}
.y133{bottom:201.401000pt;}
.y38{bottom:202.734333pt;}
.y156{bottom:205.401000pt;}
.y68{bottom:209.149373pt;}
.y12{bottom:209.711907pt;}
.y115{bottom:213.434693pt;}
.yb8{bottom:217.401000pt;}
.y172{bottom:218.734333pt;}
.ye7{bottom:219.816040pt;}
.y132{bottom:220.067667pt;}
.y37{bottom:221.401000pt;}
.y155{bottom:224.067667pt;}
.y67{bottom:227.816040pt;}
.y93{bottom:231.212973pt;}
.y114{bottom:232.101360pt;}
.yb7{bottom:236.067667pt;}
.y171{bottom:237.401000pt;}
.ye6{bottom:238.482707pt;}
.y131{bottom:238.734333pt;}
.y36{bottom:240.067667pt;}
.y154{bottom:242.734333pt;}
.y11{bottom:244.378573pt;}
.y66{bottom:246.482707pt;}
.y113{bottom:250.768027pt;}
.yb6{bottom:254.734333pt;}
.y170{bottom:256.067667pt;}
.ye5{bottom:257.149373pt;}
.y130{bottom:257.401000pt;}
.y35{bottom:258.734333pt;}
.y153{bottom:261.401000pt;}
.y10{bottom:261.711907pt;}
.y65{bottom:265.149373pt;}
.y121{bottom:268.044000pt;}
.y112{bottom:269.434693pt;}
.yb5{bottom:273.401000pt;}
.y122{bottom:274.377733pt;}
.y16f{bottom:274.734333pt;}
.ye4{bottom:275.816040pt;}
.y12f{bottom:276.067667pt;}
.y34{bottom:277.401000pt;}
.yf{bottom:279.045240pt;}
.y152{bottom:280.067667pt;}
.y85{bottom:281.718800pt;}
.y64{bottom:283.816040pt;}
.y111{bottom:288.101360pt;}
.yb4{bottom:292.067667pt;}
.y16e{bottom:293.401000pt;}
.ye3{bottom:294.482707pt;}
.y33{bottom:296.067667pt;}
.ye{bottom:296.378573pt;}
.y151{bottom:298.734333pt;}
.y63{bottom:302.482707pt;}
.y110{bottom:306.768027pt;}
.yb3{bottom:310.734333pt;}
.y12e{bottom:311.697933pt;}
.y16d{bottom:312.067667pt;}
.ye2{bottom:313.149373pt;}
.yd{bottom:313.711907pt;}
.y32{bottom:314.734333pt;}
.y150{bottom:317.401000pt;}
.y62{bottom:321.149373pt;}
.y10f{bottom:325.434693pt;}
.y12d{bottom:329.031267pt;}
.yb2{bottom:329.401000pt;}
.y16c{bottom:330.734333pt;}
.yc{bottom:331.045240pt;}
.ye0{bottom:331.816040pt;}
.y31{bottom:333.401000pt;}
.ye1{bottom:335.212973pt;}
.y61{bottom:339.816040pt;}
.y10e{bottom:344.101360pt;}
.y12c{bottom:346.364600pt;}
.yb1{bottom:348.067667pt;}
.yb{bottom:348.378573pt;}
.y16b{bottom:349.401000pt;}
.ydf{bottom:350.482707pt;}
.y30{bottom:352.067667pt;}
.y14f{bottom:354.364600pt;}
.y5f{bottom:358.482707pt;}
.y60{bottom:361.879640pt;}
.y10d{bottom:362.768027pt;}
.y12b{bottom:363.697933pt;}
.ya{bottom:365.711907pt;}
.yb0{bottom:366.734333pt;}
.y80{bottom:368.052533pt;}
.y16a{bottom:368.067667pt;}
.yde{bottom:369.149373pt;}
.y2f{bottom:370.734333pt;}
.y14e{bottom:371.697933pt;}
.y5e{bottom:377.149373pt;}
.y12a{bottom:381.031267pt;}
.y10c{bottom:381.434693pt;}
.y9{bottom:383.045240pt;}
.yaf{bottom:385.401000pt;}
.y169{bottom:386.734333pt;}
.ydd{bottom:387.816040pt;}
.y14d{bottom:389.031267pt;}
.y2e{bottom:389.401000pt;}
.y5d{bottom:395.816040pt;}
.y129{bottom:398.364600pt;}
.y10b{bottom:400.101360pt;}
.y168{bottom:405.401000pt;}
.y14c{bottom:406.364600pt;}
.ydc{bottom:406.482707pt;}
.y2d{bottom:408.067667pt;}
.y5c{bottom:414.482707pt;}
.y128{bottom:415.697933pt;}
.y10a{bottom:418.768027pt;}
.yae{bottom:421.031267pt;}
.y14b{bottom:423.697933pt;}
.ydb{bottom:425.149373pt;}
.y2c{bottom:426.734333pt;}
.y5b{bottom:433.149373pt;}
.y109{bottom:437.434693pt;}
.yad{bottom:438.364600pt;}
.y14a{bottom:441.031267pt;}
.y167{bottom:442.364600pt;}
.yda{bottom:443.816040pt;}
.y2b{bottom:445.401000pt;}
.y5a{bottom:451.816040pt;}
.y127{bottom:452.067667pt;}
.yac{bottom:455.697933pt;}
.y108{bottom:456.101360pt;}
.y149{bottom:458.364600pt;}
.y166{bottom:459.697933pt;}
.yd9{bottom:462.482707pt;}
.y2a{bottom:464.067667pt;}
.y59{bottom:470.482707pt;}
.y126{bottom:470.734333pt;}
.yab{bottom:473.031267pt;}
.y107{bottom:474.768027pt;}
.y148{bottom:475.697933pt;}
.y165{bottom:477.031267pt;}
.y8{bottom:480.748307pt;}
.yd8{bottom:481.149373pt;}
.y29{bottom:482.734333pt;}
.y58{bottom:489.149373pt;}
.y125{bottom:489.401000pt;}
.yaa{bottom:490.364600pt;}
.y147{bottom:493.031267pt;}
.y106{bottom:493.434693pt;}
.y164{bottom:494.364600pt;}
.y7{bottom:499.414973pt;}
.yd7{bottom:499.816040pt;}
.y28{bottom:501.401000pt;}
.y57{bottom:507.816040pt;}
.y124{bottom:508.067667pt;}
.y146{bottom:510.364600pt;}
.y77{bottom:511.212973pt;}
.y163{bottom:511.697933pt;}
.y105{bottom:512.101360pt;}
.y6{bottom:518.081640pt;}
.yd6{bottom:518.482707pt;}
.y27{bottom:520.067667pt;}
.y56{bottom:526.482707pt;}
.ya9{bottom:526.734333pt;}
.y145{bottom:527.697933pt;}
.y162{bottom:529.031267pt;}
.y104{bottom:530.768027pt;}
.yd5{bottom:537.149373pt;}
.y26{bottom:538.734333pt;}
.y55{bottom:545.149373pt;}
.ya8{bottom:545.401000pt;}
.y161{bottom:546.364600pt;}
.y103{bottom:549.434693pt;}
.yd4{bottom:555.816040pt;}
.y25{bottom:557.401000pt;}
.y54{bottom:563.816040pt;}
.ya7{bottom:564.067667pt;}
.y102{bottom:568.101360pt;}
.y24{bottom:576.067667pt;}
.y53{bottom:582.482707pt;}
.ya6{bottom:582.734333pt;}
.y101{bottom:586.768027pt;}
.yd3{bottom:593.149373pt;}
.y23{bottom:594.734333pt;}
.y52{bottom:601.149373pt;}
.ya5{bottom:601.401000pt;}
.y100{bottom:605.434693pt;}
.yd2{bottom:611.816040pt;}
.y22{bottom:613.401000pt;}
.y180{bottom:615.186733pt;}
.y51{bottom:619.816040pt;}
.ya4{bottom:620.067667pt;}
.yff{bottom:624.101360pt;}
.yd1{bottom:630.482707pt;}
.y21{bottom:632.067667pt;}
.y5{bottom:633.214040pt;}
.y50{bottom:638.482707pt;}
.ya3{bottom:638.734333pt;}
.yfe{bottom:642.768027pt;}
.yd0{bottom:649.149373pt;}
.y4{bottom:651.880707pt;}
.y4f{bottom:657.149373pt;}
.ya2{bottom:657.401000pt;}
.y13e{bottom:660.546307pt;}
.yfd{bottom:661.434693pt;}
.ycf{bottom:667.816040pt;}
.y3{bottom:670.547373pt;}
.y4e{bottom:675.816040pt;}
.ya1{bottom:676.067667pt;}
.y7f{bottom:679.212973pt;}
.yfc{bottom:680.101360pt;}
.yce{bottom:686.482707pt;}
.y2{bottom:689.214040pt;}
.y4d{bottom:694.482707pt;}
.ya0{bottom:694.734333pt;}
.yfb{bottom:698.768027pt;}
.ycd{bottom:705.149373pt;}
.y4c{bottom:713.149373pt;}
.y9f{bottom:713.401000pt;}
.yfa{bottom:717.434693pt;}
.ycc{bottom:723.816040pt;}
.y4b{bottom:731.816040pt;}
.y9e{bottom:732.067667pt;}
.yf9{bottom:736.101360pt;}
.ycb{bottom:742.482707pt;}
.y4a{bottom:750.482707pt;}
.y9d{bottom:750.734333pt;}
.yf8{bottom:754.768027pt;}
.yca{bottom:760.779640pt;}
.y49{bottom:769.149373pt;}
.y9c{bottom:769.401000pt;}
.y184{bottom:769.863067pt;}
.yf7{bottom:773.434693pt;}
.yc9{bottom:778.112973pt;}
.y48{bottom:787.816040pt;}
.y9b{bottom:788.067667pt;}
.yf6{bottom:792.101360pt;}
.yc8{bottom:795.446307pt;}
.y47{bottom:806.482707pt;}
.y9a{bottom:806.734333pt;}
.yf5{bottom:810.768027pt;}
.yc7{bottom:812.779640pt;}
.y46{bottom:825.149373pt;}
.y99{bottom:825.401000pt;}
.yf4{bottom:829.434693pt;}
.yc6{bottom:830.112973pt;}
.y45{bottom:843.816040pt;}
.y98{bottom:844.067667pt;}
.yc5{bottom:847.446307pt;}
.yf3{bottom:848.101360pt;}
.y44{bottom:862.482707pt;}
.y97{bottom:862.734333pt;}
.yc4{bottom:864.779640pt;}
.y20{bottom:865.031267pt;}
.yf2{bottom:866.768027pt;}
.y42{bottom:881.149373pt;}
.y96{bottom:881.401000pt;}
.yc3{bottom:882.112973pt;}
.y43{bottom:884.546307pt;}
.yf1{bottom:885.434693pt;}
.h9{height:24.666680pt;}
.h10{height:27.725696pt;}
.h17{height:28.836803pt;}
.he{height:30.498267pt;}
.h1d{height:32.000000pt;}
.h8{height:35.546875pt;}
.hc{height:39.101562pt;}
.h7{height:41.588542pt;}
.h12{height:42.000653pt;}
.h14{height:42.656250pt;}
.h20{height:42.882812pt;}
.h23{height:43.476562pt;}
.h1c{height:43.666987pt;}
.h4{height:45.747396pt;}
.h5{height:46.210938pt;}
.h6{height:48.307292pt;}
.ha{height:49.984000pt;}
.h21{height:52.136602pt;}
.hd{height:53.138021pt;}
.h3{height:54.528000pt;}
.h1a{height:57.666987pt;}
.h13{height:61.000320pt;}
.h1f{height:75.000320pt;}
.hf{height:76.667320pt;}
.h16{height:92.333653pt;}
.h11{height:94.000653pt;}
.h15{height:179.000267pt;}
.h1e{height:180.667333pt;}
.h24{height:237.271067pt;}
.h22{height:896.000000pt;}
.h19{height:899.415333pt;}
.hb{height:899.666933pt;}
.h2{height:899.782000pt;}
.h18{height:900.033733pt;}
.h1b{height:904.067333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w16{width:459.094667pt;}
.w8{width:459.784000pt;}
.w1a{width:460.722667pt;}
.w1b{width:460.913333pt;}
.w1e{width:461.294667pt;}
.w1d{width:461.338667pt;}
.w19{width:461.397333pt;}
.w10{width:461.514667pt;}
.w17{width:461.646667pt;}
.w5{width:461.720000pt;}
.w15{width:461.925333pt;}
.w3{width:461.940000pt;}
.w14{width:462.145333pt;}
.we{width:462.218667pt;}
.wa{width:462.277333pt;}
.wb{width:462.394667pt;}
.w11{width:462.790667pt;}
.wf{width:462.996000pt;}
.w7{width:463.157333pt;}
.wc{width:463.216000pt;}
.w1f{width:487.344533pt;}
.w13{width:488.011867pt;}
.w12{width:491.344533pt;}
.w6{width:498.678533pt;}
.w9{width:499.344533pt;}
.w4{width:499.411867pt;}
.w18{width:500.996400pt;}
.wd{width:504.499067pt;}
.w1c{width:504.536267pt;}
.w2{width:509.827200pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:3.666667pt;}
.x9{left:4.888933pt;}
.x1e{left:6.595867pt;}
.x10{left:8.111377pt;}
.x1b{left:12.555823pt;}
.x1c{left:22.931333pt;}
.x1f{left:25.493600pt;}
.x20{left:33.333333pt;}
.xc{left:52.033600pt;}
.x15{left:58.782933pt;}
.x4{left:89.313200pt;}
.x2{left:93.225200pt;}
.x3{left:142.393200pt;}
.x1d{left:144.585200pt;}
.x1{left:146.292133pt;}
.xf{left:147.514133pt;}
.x17{left:151.181067pt;}
.x18{left:152.847467pt;}
.x13{left:158.626667pt;}
.x5{left:159.817200pt;}
.xa{left:165.883333pt;}
.x12{left:166.961333pt;}
.x1a{left:181.463600pt;}
.x14{left:208.379600pt;}
.xe{left:229.420133pt;}
.x19{left:288.811467pt;}
.x8{left:306.691200pt;}
.x7{left:339.626667pt;}
.x11{left:344.539467pt;}
.x6{left:419.749067pt;}
.xd{left:421.924667pt;}
.x16{left:470.879333pt;}
}




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