
    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_7ef3fc4813c488c4578099bc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.109375;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_aca1696f3dc1d6a77fb730ee.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_42e121a71e7201d63f4ed752.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.030762;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_1cba1bfc639d38e8f115520b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_b5bc7dd47a14e4083521ff47.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.109375;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_744981af1178c890019f0fe0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.076172;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_742b1c0e0f10c07a48df67e8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.030762;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_616135ba1749fe16678477e0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.747559;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);}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-2.064000px;}
.ls13{letter-spacing:-2.016000px;}
.ls7{letter-spacing:-1.956000px;}
.ls9{letter-spacing:-1.818000px;}
.ls28{letter-spacing:-1.782000px;}
.lsd{letter-spacing:-1.704000px;}
.ls16{letter-spacing:-1.536000px;}
.lsb{letter-spacing:-1.512000px;}
.ls14{letter-spacing:-1.500000px;}
.ls2e{letter-spacing:-1.326000px;}
.ls22{letter-spacing:-1.236000px;}
.ls29{letter-spacing:-1.194000px;}
.ls18{letter-spacing:-1.176000px;}
.ls15{letter-spacing:-1.140000px;}
.ls23{letter-spacing:-0.876000px;}
.ls2{letter-spacing:-0.672000px;}
.lse{letter-spacing:-0.624000px;}
.ls5{letter-spacing:-0.612000px;}
.ls10{letter-spacing:-0.573000px;}
.ls2b{letter-spacing:-0.475200px;}
.ls3{letter-spacing:-0.406200px;}
.lsa{letter-spacing:-0.380400px;}
.lsc{letter-spacing:-0.339600px;}
.ls19{letter-spacing:-0.262200px;}
.ls4{letter-spacing:-0.164400px;}
.ls11{letter-spacing:-0.097800px;}
.ls20{letter-spacing:-0.057600px;}
.ls2d{letter-spacing:-0.020160px;}
.ls1a{letter-spacing:-0.015840px;}
.ls1{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.020160px;}
.ls1e{letter-spacing:0.057600px;}
.ls2f{letter-spacing:0.075000px;}
.ls1f{letter-spacing:0.106800px;}
.ls8{letter-spacing:0.115200px;}
.ls21{letter-spacing:0.204600px;}
.ls2a{letter-spacing:0.244800px;}
.ls1c{letter-spacing:0.253200px;}
.ls1b{letter-spacing:0.302400px;}
.ls24{letter-spacing:0.417600px;}
.ls17{letter-spacing:0.457800px;}
.ls1d{letter-spacing:0.457920px;}
.ls12{letter-spacing:0.466800px;}
.ls6{letter-spacing:0.612000px;}
.ls0{letter-spacing:0.792000px;}
.ls25{letter-spacing:6.480000px;}
.ls27{letter-spacing:149.112000px;}
.ls26{letter-spacing:149.292000px;}
.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;}
}
.wsc{word-spacing:-15.370800px;}
.ws11{word-spacing:-15.361800px;}
.ws1a{word-spacing:-15.321600px;}
.ws14{word-spacing:-15.206400px;}
.ws15{word-spacing:-15.157200px;}
.ws17{word-spacing:-15.108600px;}
.ws8{word-spacing:-14.904000px;}
.ws16{word-spacing:-14.846400px;}
.wsb{word-spacing:-14.806200px;}
.wsa{word-spacing:-14.331000px;}
.ws19{word-spacing:-14.028000px;}
.wsf{word-spacing:-13.764000px;}
.ws12{word-spacing:-13.728000px;}
.ws1e{word-spacing:-13.683000px;}
.ws18{word-spacing:-13.668000px;}
.ws5{word-spacing:-13.608000px;}
.ws1d{word-spacing:-13.587840px;}
.wse{word-spacing:-13.404000px;}
.ws10{word-spacing:-13.368000px;}
.ws7{word-spacing:-13.268400px;}
.ws1c{word-spacing:-13.132800px;}
.ws4{word-spacing:-12.948000px;}
.wsd{word-spacing:-12.888000px;}
.ws6{word-spacing:-12.096000px;}
.ws1b{word-spacing:-11.826000px;}
.ws2{word-spacing:-10.692000px;}
.ws13{word-spacing:-10.676160px;}
.ws3{word-spacing:-10.527600px;}
.ws1{word-spacing:-9.396000px;}
.ws0{word-spacing:-8.989800px;}
.ws9{word-spacing:0.000000px;}
._4{margin-left:-8.989920px;}
._9{margin-left:-5.433120px;}
._7{margin-left:-4.046880px;}
._2{margin-left:-2.255040px;}
._0{margin-left:-1.252800px;}
._1{width:1.087680px;}
._3{width:2.099760px;}
._5{width:3.127200px;}
._6{width:4.402800px;}
._8{width:5.581920px;}
._b{width:6.665280px;}
._a{width:8.277120px;}
._e{width:10.080000px;}
._d{width:11.169600px;}
._c{width:13.118400px;}
._15{width:14.834880px;}
._f{width:16.427520px;}
._16{width:17.986080px;}
._1c{width:22.836480px;}
._1b{width:24.572160px;}
._1a{width:26.040960px;}
._18{width:29.039040px;}
._26{width:58.289280px;}
._22{width:59.639040px;}
._27{width:62.044320px;}
._1d{width:78.706080px;}
._2b{width:80.336640px;}
._1e{width:86.140800px;}
._1f{width:87.400800px;}
._19{width:99.990720px;}
._17{width:138.358080px;}
._10{width:148.133760px;}
._11{width:149.732160px;}
._20{width:176.316480px;}
._13{width:203.109120px;}
._14{width:204.552960px;}
._2a{width:212.743680px;}
._28{width:232.848960px;}
._29{width:233.931360px;}
._23{width:410.302560px;}
._12{width:411.851520px;}
._25{width:438.108480px;}
._24{width:440.174400px;}
._21{width:723.098880px;}
.fc3{color:transparent;}
.fc1{color:rgb(146,208,80);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:41.760000px;}
.fs1{font-size:47.520000px;}
.fs3{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.ya9{bottom:3.960000px;}
.yab{bottom:4.320000px;}
.ybe{bottom:4.680000px;}
.y177{bottom:5.040000px;}
.y17c{bottom:8.640000px;}
.ycb{bottom:10.800000px;}
.yb1{bottom:11.160000px;}
.ybc{bottom:11.520000px;}
.yb4{bottom:11.550000px;}
.y178{bottom:17.280000px;}
.y17a{bottom:17.325000px;}
.ya8{bottom:17.640000px;}
.yb0{bottom:18.000000px;}
.yeb{bottom:18.039000px;}
.ybd{bottom:18.360000px;}
.yb3{bottom:25.590000px;}
.yea{bottom:31.320000px;}
.ye3{bottom:31.680000px;}
.ye5{bottom:31.710000px;}
.yad{bottom:33.150000px;}
.yde{bottom:38.520000px;}
.ye8{bottom:39.279000px;}
.yb7{bottom:39.960000px;}
.ye2{bottom:45.360000px;}
.y3{bottom:46.116000px;}
.yc1{bottom:47.880000px;}
.ydd{bottom:52.200000px;}
.ye7{bottom:52.959000px;}
.ye1{bottom:59.040000px;}
.yc0{bottom:61.560000px;}
.ye0{bottom:72.720000px;}
.ydb{bottom:73.470000px;}
.ydf{bottom:86.760000px;}
.yda{bottom:87.150000px;}
.yec{bottom:90.396000px;}
.y120{bottom:92.556000px;}
.y15d{bottom:99.756000px;}
.yef{bottom:103.356000px;}
.yd5{bottom:104.076000px;}
.yed{bottom:105.156000px;}
.y3f{bottom:105.876000px;}
.y54{bottom:107.676000px;}
.y11f{bottom:109.836000px;}
.y15c{bottom:116.676000px;}
.ya6{bottom:122.076000px;}
.yd4{bottom:123.156000px;}
.y8a{bottom:123.876000px;}
.y3e{bottom:124.956000px;}
.y53{bottom:126.756000px;}
.y11e{bottom:127.116000px;}
.ye6{bottom:132.156000px;}
.y15b{bottom:133.956000px;}
.yee{bottom:139.716000px;}
.ya5{bottom:141.156000px;}
.yd3{bottom:141.876000px;}
.y89{bottom:142.956000px;}
.y3d{bottom:143.676000px;}
.y11d{bottom:144.036000px;}
.y52{bottom:145.512000px;}
.y15a{bottom:151.275000px;}
.ya4{bottom:159.915000px;}
.ye9{bottom:160.635000px;}
.yd2{bottom:160.995000px;}
.y11c{bottom:161.355000px;}
.y88{bottom:161.715000px;}
.y3c{bottom:162.795000px;}
.y51{bottom:164.595000px;}
.y159{bottom:168.555000px;}
.y11b{bottom:178.635000px;}
.ya3{bottom:178.995000px;}
.yd1{bottom:179.715000px;}
.y87{bottom:180.795000px;}
.y3b{bottom:181.515000px;}
.y50{bottom:183.315000px;}
.y158{bottom:185.475000px;}
.y11a{bottom:195.915000px;}
.ya2{bottom:197.715000px;}
.yd0{bottom:198.795000px;}
.y86{bottom:199.515000px;}
.y3a{bottom:200.595000px;}
.y4f{bottom:202.395000px;}
.y157{bottom:202.755000px;}
.y119{bottom:212.835000px;}
.ya1{bottom:216.795000px;}
.ycf{bottom:217.515000px;}
.y85{bottom:218.595000px;}
.y39{bottom:219.315000px;}
.y156{bottom:220.035000px;}
.y4e{bottom:221.115000px;}
.y118{bottom:230.115000px;}
.yd9{bottom:230.835000px;}
.ya0{bottom:235.875000px;}
.yce{bottom:236.595000px;}
.y155{bottom:237.315000px;}
.y84{bottom:237.675000px;}
.y38{bottom:238.395000px;}
.y4d{bottom:240.195000px;}
.y117{bottom:247.395000px;}
.yf0{bottom:253.515000px;}
.y154{bottom:254.235000px;}
.y9f{bottom:254.595000px;}
.ycd{bottom:255.315000px;}
.y83{bottom:256.395000px;}
.y37{bottom:257.475000px;}
.y183{bottom:258.195000px;}
.ye4{bottom:258.915000px;}
.y4c{bottom:259.275000px;}
.y116{bottom:264.675000px;}
.y153{bottom:271.515000px;}
.y9e{bottom:273.675000px;}
.ycc{bottom:274.395000px;}
.y82{bottom:275.475000px;}
.y36{bottom:276.195000px;}
.y182{bottom:276.915000px;}
.y4b{bottom:278.025000px;}
.y115{bottom:281.625000px;}
.yc9{bottom:288.465000px;}
.y152{bottom:288.825000px;}
.y9d{bottom:292.425000px;}
.y81{bottom:294.225000px;}
.y35{bottom:295.305000px;}
.y181{bottom:296.025000px;}
.y4a{bottom:297.105000px;}
.y114{bottom:298.905000px;}
.ydc{bottom:301.065000px;}
.yca{bottom:303.225000px;}
.y151{bottom:306.105000px;}
.y9c{bottom:311.505000px;}
.y80{bottom:313.305000px;}
.y34{bottom:314.025000px;}
.y180{bottom:314.745000px;}
.y49{bottom:315.825000px;}
.y113{bottom:316.185000px;}
.y150{bottom:323.025000px;}
.y9b{bottom:330.225000px;}
.ybf{bottom:331.305000px;}
.y7f{bottom:332.025000px;}
.y33{bottom:333.105000px;}
.y112{bottom:333.465000px;}
.y17f{bottom:333.825000px;}
.y48{bottom:334.905000px;}
.y14f{bottom:340.305000px;}
.yc8{bottom:345.705000px;}
.y9a{bottom:349.305000px;}
.y111{bottom:350.385000px;}
.y7e{bottom:351.105000px;}
.y32{bottom:351.825000px;}
.y17e{bottom:352.545000px;}
.y47{bottom:353.625000px;}
.y14e{bottom:357.585000px;}
.yc7{bottom:360.465000px;}
.y110{bottom:367.665000px;}
.y99{bottom:368.025000px;}
.y7d{bottom:369.825000px;}
.y31{bottom:370.905000px;}
.y17d{bottom:371.265000px;}
.y46{bottom:372.705000px;}
.yc6{bottom:374.865000px;}
.y17b{bottom:383.505000px;}
.y10f{bottom:384.945000px;}
.y98{bottom:387.105000px;}
.y7c{bottom:388.905000px;}
.yc5{bottom:389.265000px;}
.y30{bottom:389.625000px;}
.y45{bottom:391.425000px;}
.y14d{bottom:391.785000px;}
.yd8{bottom:398.265000px;}
.y179{bottom:400.425000px;}
.y10e{bottom:402.225000px;}
.yc4{bottom:403.665000px;}
.y97{bottom:405.825000px;}
.y7b{bottom:407.625000px;}
.y2f{bottom:408.705000px;}
.y14c{bottom:409.110000px;}
.y44{bottom:410.550000px;}
.yd7{bottom:412.710000px;}
.y176{bottom:417.750000px;}
.yc3{bottom:418.470000px;}
.y10d{bottom:419.190000px;}
.y96{bottom:424.950000px;}
.y14b{bottom:426.390000px;}
.y7a{bottom:426.750000px;}
.y2e{bottom:427.470000px;}
.y43{bottom:429.270000px;}
.yc2{bottom:432.870000px;}
.y10c{bottom:436.470000px;}
.y175{bottom:440.070000px;}
.y95{bottom:443.670000px;}
.y79{bottom:445.470000px;}
.y2d{bottom:446.550000px;}
.yb6{bottom:447.270000px;}
.y42{bottom:448.350000px;}
.y10b{bottom:453.750000px;}
.y174{bottom:457.350000px;}
.y14a{bottom:460.590000px;}
.ybb{bottom:462.030000px;}
.y94{bottom:462.750000px;}
.y78{bottom:464.550000px;}
.y2c{bottom:465.270000px;}
.y41{bottom:467.070000px;}
.y10a{bottom:471.030000px;}
.y173{bottom:474.270000px;}
.yba{bottom:476.430000px;}
.y149{bottom:477.870000px;}
.y93{bottom:481.470000px;}
.y2b{bottom:482.910000px;}
.y77{bottom:483.270000px;}
.y40{bottom:486.150000px;}
.y109{bottom:487.950000px;}
.yb9{bottom:490.830000px;}
.y172{bottom:491.550000px;}
.y148{bottom:495.150000px;}
.y92{bottom:500.550000px;}
.y76{bottom:502.350000px;}
.y2a{bottom:504.870000px;}
.yb8{bottom:505.230000px;}
.y171{bottom:509.190000px;}
.y147{bottom:512.430000px;}
.y91{bottom:519.270000px;}
.y75{bottom:521.070000px;}
.y108{bottom:522.510000px;}
.y29{bottom:523.950000px;}
.y170{bottom:527.910000px;}
.y146{bottom:529.350000px;}
.yac{bottom:533.670000px;}
.y90{bottom:538.350000px;}
.y107{bottom:539.790000px;}
.y74{bottom:540.150000px;}
.y28{bottom:542.340000px;}
.y145{bottom:546.660000px;}
.yb5{bottom:548.100000px;}
.y106{bottom:556.740000px;}
.y8f{bottom:557.100000px;}
.y73{bottom:558.900000px;}
.y27{bottom:559.620000px;}
.y16f{bottom:562.140000px;}
.yb2{bottom:562.860000px;}
.y144{bottom:563.940000px;}
.y105{bottom:574.020000px;}
.y8e{bottom:576.180000px;}
.y26{bottom:576.900000px;}
.yaf{bottom:577.260000px;}
.y72{bottom:577.980000px;}
.y16e{bottom:579.420000px;}
.y143{bottom:581.220000px;}
.y104{bottom:591.300000px;}
.yae{bottom:591.660000px;}
.y25{bottom:594.900000px;}
.y8d{bottom:595.260000px;}
.y71{bottom:596.700000px;}
.y142{bottom:598.140000px;}
.yaa{bottom:606.060000px;}
.y103{bottom:608.580000px;}
.y24{bottom:611.820000px;}
.yd6{bottom:612.900000px;}
.y16d{bottom:613.620000px;}
.y8c{bottom:613.980000px;}
.y141{bottom:615.420000px;}
.y70{bottom:615.780000px;}
.ya7{bottom:620.820000px;}
.y102{bottom:625.500000px;}
.y23{bottom:629.100000px;}
.y16c{bottom:630.900000px;}
.y8b{bottom:631.620000px;}
.y140{bottom:632.700000px;}
.y6f{bottom:634.860000px;}
.y101{bottom:642.780000px;}
.y22{bottom:646.380000px;}
.y16b{bottom:648.180000px;}
.y13f{bottom:649.980000px;}
.y6e{bottom:653.580000px;}
.y100{bottom:660.060000px;}
.y21{bottom:663.660000px;}
.y16a{bottom:665.460000px;}
.y13e{bottom:666.900000px;}
.y6d{bottom:672.660000px;}
.yff{bottom:677.370000px;}
.y20{bottom:680.610000px;}
.y169{bottom:682.410000px;}
.y13d{bottom:684.210000px;}
.y6c{bottom:691.410000px;}
.yfe{bottom:694.290000px;}
.y1f{bottom:697.890000px;}
.y168{bottom:699.690000px;}
.y13c{bottom:701.490000px;}
.y6b{bottom:710.490000px;}
.yfd{bottom:711.570000px;}
.y1e{bottom:715.170000px;}
.y167{bottom:716.970000px;}
.y13b{bottom:718.770000px;}
.yfc{bottom:728.850000px;}
.y6a{bottom:729.210000px;}
.y1d{bottom:732.450000px;}
.y166{bottom:734.250000px;}
.y13a{bottom:735.690000px;}
.yfb{bottom:746.130000px;}
.y69{bottom:748.290000px;}
.y1c{bottom:749.370000px;}
.y165{bottom:751.170000px;}
.y139{bottom:752.970000px;}
.yfa{bottom:762.330000px;}
.y1b{bottom:766.650000px;}
.y68{bottom:767.010000px;}
.y164{bottom:768.450000px;}
.y138{bottom:770.250000px;}
.y1a{bottom:783.930000px;}
.yf9{bottom:784.290000px;}
.y163{bottom:785.730000px;}
.y67{bottom:786.090000px;}
.y137{bottom:787.530000px;}
.y19{bottom:801.210000px;}
.yf8{bottom:803.010000px;}
.y136{bottom:804.450000px;}
.y66{bottom:804.810000px;}
.y18{bottom:818.175000px;}
.y162{bottom:819.975000px;}
.y135{bottom:821.775000px;}
.yf7{bottom:822.135000px;}
.y65{bottom:823.935000px;}
.y17{bottom:835.455000px;}
.y161{bottom:837.255000px;}
.y134{bottom:839.055000px;}
.yf6{bottom:840.855000px;}
.y64{bottom:842.655000px;}
.y16{bottom:852.735000px;}
.y160{bottom:854.535000px;}
.y133{bottom:856.335000px;}
.yf5{bottom:859.935000px;}
.y63{bottom:861.735000px;}
.y15{bottom:870.015000px;}
.y15f{bottom:871.815000px;}
.y132{bottom:873.255000px;}
.yf4{bottom:878.655000px;}
.y62{bottom:880.455000px;}
.y14{bottom:886.935000px;}
.y15e{bottom:888.735000px;}
.y131{bottom:890.535000px;}
.yf3{bottom:897.735000px;}
.y61{bottom:899.535000px;}
.y13{bottom:904.215000px;}
.y130{bottom:907.815000px;}
.yf2{bottom:916.455000px;}
.y60{bottom:918.255000px;}
.y12{bottom:921.495000px;}
.y12f{bottom:925.095000px;}
.yf1{bottom:934.095000px;}
.y5f{bottom:937.365000px;}
.y11{bottom:938.805000px;}
.y12e{bottom:942.045000px;}
.y10{bottom:955.725000px;}
.y5e{bottom:956.085000px;}
.y12d{bottom:959.325000px;}
.yf{bottom:973.005000px;}
.y5d{bottom:975.165000px;}
.y12c{bottom:976.605000px;}
.ye{bottom:990.285000px;}
.y12b{bottom:993.885000px;}
.y5c{bottom:994.245000px;}
.yd{bottom:1007.565000px;}
.y12a{bottom:1010.805000px;}
.y5b{bottom:1012.965000px;}
.yc{bottom:1024.485000px;}
.y129{bottom:1028.085000px;}
.y5a{bottom:1032.045000px;}
.yb{bottom:1041.765000px;}
.y128{bottom:1045.365000px;}
.y59{bottom:1050.765000px;}
.ya{bottom:1059.045000px;}
.y127{bottom:1062.645000px;}
.y58{bottom:1069.890000px;}
.y9{bottom:1076.370000px;}
.y126{bottom:1079.610000px;}
.y57{bottom:1088.610000px;}
.y8{bottom:1093.290000px;}
.y125{bottom:1096.890000px;}
.y56{bottom:1107.690000px;}
.y7{bottom:1110.570000px;}
.y124{bottom:1114.170000px;}
.y55{bottom:1126.410000px;}
.y6{bottom:1127.850000px;}
.y123{bottom:1131.450000px;}
.y5{bottom:1145.490000px;}
.y122{bottom:1148.370000px;}
.y4{bottom:1164.210000px;}
.y121{bottom:1165.650000px;}
.y2{bottom:1199.490000px;}
.y1{bottom:1211.760000px;}
.hd{height:13.680000px;}
.h15{height:13.680150px;}
.h10{height:13.716000px;}
.hb{height:14.040000px;}
.h16{height:14.076000px;}
.h21{height:16.920000px;}
.h1f{height:17.280000px;}
.h20{height:17.316000px;}
.ha{height:27.360000px;}
.h12{height:27.720000px;}
.h1e{height:27.756000px;}
.he{height:28.080000px;}
.h13{height:28.440000px;}
.h17{height:28.476000px;}
.h3{height:31.320000px;}
.h2{height:33.664922px;}
.h4{height:38.308359px;}
.h1d{height:41.040000px;}
.h1b{height:41.436000px;}
.h18{height:42.120000px;}
.hf{height:42.876000px;}
.h7{height:45.360000px;}
.h6{height:48.756094px;}
.h5{height:49.680000px;}
.h8{height:49.992188px;}
.h9{height:53.399531px;}
.hc{height:71.676000px;}
.h11{height:85.680000px;}
.h1a{height:96.480000px;}
.h1c{height:97.956000px;}
.h14{height:115.236000px;}
.h19{height:166.710000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wf{width:0.719970px;}
.we{width:1.080045px;}
.w5{width:42.516000px;}
.wa{width:95.832000px;}
.w4{width:117.036000px;}
.wd{width:157.755000px;}
.w8{width:159.555000px;}
.w6{width:169.995000px;}
.wb{width:191.595000px;}
.w9{width:297.825000px;}
.wc{width:372.060000px;}
.w7{width:393.660000px;}
.w3{width:723.210000px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x14{left:2.160000px;}
.x25{left:3.960000px;}
.x2d{left:5.760000px;}
.x1f{left:7.920000px;}
.x11{left:9.360000px;}
.x16{left:11.160000px;}
.xf{left:12.240000px;}
.x21{left:14.040000px;}
.xa{left:15.510000px;}
.x10{left:18.390000px;}
.x15{left:20.880000px;}
.x13{left:25.200000px;}
.x8{left:28.800000px;}
.x33{left:30.240000px;}
.x1c{left:31.320000px;}
.x36{left:33.480000px;}
.x1a{left:34.560000px;}
.x18{left:37.440000px;}
.x20{left:40.320000px;}
.x32{left:42.525000px;}
.x3b{left:45.045000px;}
.x38{left:47.520000px;}
.x35{left:48.996000px;}
.x27{left:51.885000px;}
.x28{left:56.190000px;}
.x1d{left:57.270000px;}
.x1e{left:58.356000px;}
.xc{left:60.885000px;}
.x37{left:64.830000px;}
.x12{left:66.645000px;}
.x29{left:70.959000px;}
.x24{left:73.470000px;}
.x3a{left:76.350000px;}
.x1{left:84.995987px;}
.x34{left:87.510000px;}
.x2e{left:103.350000px;}
.x19{left:104.430000px;}
.x5{left:106.235987px;}
.x26{left:107.670000px;}
.x30{left:110.910000px;}
.x2f{left:112.350000px;}
.x31{left:114.150000px;}
.x41{left:116.355000px;}
.x3d{left:118.515000px;}
.x2{left:125.711987px;}
.x2b{left:126.750000px;}
.x39{left:130.350000px;}
.x1b{left:132.915000px;}
.x42{left:142.275000px;}
.x22{left:149.115000px;}
.x23{left:156.315000px;}
.x4{left:160.994987px;}
.xe{left:176.115000px;}
.x17{left:180.435000px;}
.x9{left:202.035000px;}
.x3{left:220.784987px;}
.xb{left:244.545000px;}
.x2a{left:254.985000px;}
.x3c{left:276.585000px;}
.xd{left:414.540000px;}
.x6{left:457.019987px;}
.x7{left:478.289987px;}
.x3e{left:648.645000px;}
.x2c{left:712.365000px;}
.x3f{left:806.400000px;}
.x40{left:807.480000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-1.834667pt;}
.ls13{letter-spacing:-1.792000pt;}
.ls7{letter-spacing:-1.738667pt;}
.ls9{letter-spacing:-1.616000pt;}
.ls28{letter-spacing:-1.584000pt;}
.lsd{letter-spacing:-1.514667pt;}
.ls16{letter-spacing:-1.365333pt;}
.lsb{letter-spacing:-1.344000pt;}
.ls14{letter-spacing:-1.333333pt;}
.ls2e{letter-spacing:-1.178667pt;}
.ls22{letter-spacing:-1.098667pt;}
.ls29{letter-spacing:-1.061333pt;}
.ls18{letter-spacing:-1.045333pt;}
.ls15{letter-spacing:-1.013333pt;}
.ls23{letter-spacing:-0.778667pt;}
.ls2{letter-spacing:-0.597333pt;}
.lse{letter-spacing:-0.554667pt;}
.ls5{letter-spacing:-0.544000pt;}
.ls10{letter-spacing:-0.509333pt;}
.ls2b{letter-spacing:-0.422400pt;}
.ls3{letter-spacing:-0.361067pt;}
.lsa{letter-spacing:-0.338133pt;}
.lsc{letter-spacing:-0.301867pt;}
.ls19{letter-spacing:-0.233067pt;}
.ls4{letter-spacing:-0.146133pt;}
.ls11{letter-spacing:-0.086933pt;}
.ls20{letter-spacing:-0.051200pt;}
.ls2d{letter-spacing:-0.017920pt;}
.ls1a{letter-spacing:-0.014080pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.017920pt;}
.ls1e{letter-spacing:0.051200pt;}
.ls2f{letter-spacing:0.066667pt;}
.ls1f{letter-spacing:0.094933pt;}
.ls8{letter-spacing:0.102400pt;}
.ls21{letter-spacing:0.181867pt;}
.ls2a{letter-spacing:0.217600pt;}
.ls1c{letter-spacing:0.225067pt;}
.ls1b{letter-spacing:0.268800pt;}
.ls24{letter-spacing:0.371200pt;}
.ls17{letter-spacing:0.406933pt;}
.ls1d{letter-spacing:0.407040pt;}
.ls12{letter-spacing:0.414933pt;}
.ls6{letter-spacing:0.544000pt;}
.ls0{letter-spacing:0.704000pt;}
.ls25{letter-spacing:5.760000pt;}
.ls27{letter-spacing:132.544000pt;}
.ls26{letter-spacing:132.704000pt;}
.wsc{word-spacing:-13.662933pt;}
.ws11{word-spacing:-13.654933pt;}
.ws1a{word-spacing:-13.619200pt;}
.ws14{word-spacing:-13.516800pt;}
.ws15{word-spacing:-13.473067pt;}
.ws17{word-spacing:-13.429867pt;}
.ws8{word-spacing:-13.248000pt;}
.ws16{word-spacing:-13.196800pt;}
.wsb{word-spacing:-13.161067pt;}
.wsa{word-spacing:-12.738667pt;}
.ws19{word-spacing:-12.469333pt;}
.wsf{word-spacing:-12.234667pt;}
.ws12{word-spacing:-12.202667pt;}
.ws1e{word-spacing:-12.162667pt;}
.ws18{word-spacing:-12.149333pt;}
.ws5{word-spacing:-12.096000pt;}
.ws1d{word-spacing:-12.078080pt;}
.wse{word-spacing:-11.914667pt;}
.ws10{word-spacing:-11.882667pt;}
.ws7{word-spacing:-11.794133pt;}
.ws1c{word-spacing:-11.673600pt;}
.ws4{word-spacing:-11.509333pt;}
.wsd{word-spacing:-11.456000pt;}
.ws6{word-spacing:-10.752000pt;}
.ws1b{word-spacing:-10.512000pt;}
.ws2{word-spacing:-9.504000pt;}
.ws13{word-spacing:-9.489920pt;}
.ws3{word-spacing:-9.357867pt;}
.ws1{word-spacing:-8.352000pt;}
.ws0{word-spacing:-7.990933pt;}
.ws9{word-spacing:0.000000pt;}
._4{margin-left:-7.991040pt;}
._9{margin-left:-4.829440pt;}
._7{margin-left:-3.597227pt;}
._2{margin-left:-2.004480pt;}
._0{margin-left:-1.113600pt;}
._1{width:0.966827pt;}
._3{width:1.866453pt;}
._5{width:2.779733pt;}
._6{width:3.913600pt;}
._8{width:4.961707pt;}
._b{width:5.924693pt;}
._a{width:7.357440pt;}
._e{width:8.960000pt;}
._d{width:9.928533pt;}
._c{width:11.660800pt;}
._15{width:13.186560pt;}
._f{width:14.602240pt;}
._16{width:15.987627pt;}
._1c{width:20.299093pt;}
._1b{width:21.841920pt;}
._1a{width:23.147520pt;}
._18{width:25.812480pt;}
._26{width:51.812693pt;}
._22{width:53.012480pt;}
._27{width:55.150507pt;}
._1d{width:69.960960pt;}
._2b{width:71.410347pt;}
._1e{width:76.569600pt;}
._1f{width:77.689600pt;}
._19{width:88.880640pt;}
._17{width:122.984960pt;}
._10{width:131.674453pt;}
._11{width:133.095253pt;}
._20{width:156.725760pt;}
._13{width:180.541440pt;}
._14{width:181.824853pt;}
._2a{width:189.105493pt;}
._28{width:206.976853pt;}
._29{width:207.938987pt;}
._23{width:364.713387pt;}
._12{width:366.090240pt;}
._25{width:389.429760pt;}
._24{width:391.266133pt;}
._21{width:642.754560pt;}
.fs0{font-size:37.120000pt;}
.fs1{font-size:42.240000pt;}
.fs3{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.ya9{bottom:3.520000pt;}
.yab{bottom:3.840000pt;}
.ybe{bottom:4.160000pt;}
.y177{bottom:4.480000pt;}
.y17c{bottom:7.680000pt;}
.ycb{bottom:9.600000pt;}
.yb1{bottom:9.920000pt;}
.ybc{bottom:10.240000pt;}
.yb4{bottom:10.266667pt;}
.y178{bottom:15.360000pt;}
.y17a{bottom:15.400000pt;}
.ya8{bottom:15.680000pt;}
.yb0{bottom:16.000000pt;}
.yeb{bottom:16.034667pt;}
.ybd{bottom:16.320000pt;}
.yb3{bottom:22.746667pt;}
.yea{bottom:27.840000pt;}
.ye3{bottom:28.160000pt;}
.ye5{bottom:28.186667pt;}
.yad{bottom:29.466667pt;}
.yde{bottom:34.240000pt;}
.ye8{bottom:34.914667pt;}
.yb7{bottom:35.520000pt;}
.ye2{bottom:40.320000pt;}
.y3{bottom:40.992000pt;}
.yc1{bottom:42.560000pt;}
.ydd{bottom:46.400000pt;}
.ye7{bottom:47.074667pt;}
.ye1{bottom:52.480000pt;}
.yc0{bottom:54.720000pt;}
.ye0{bottom:64.640000pt;}
.ydb{bottom:65.306667pt;}
.ydf{bottom:77.120000pt;}
.yda{bottom:77.466667pt;}
.yec{bottom:80.352000pt;}
.y120{bottom:82.272000pt;}
.y15d{bottom:88.672000pt;}
.yef{bottom:91.872000pt;}
.yd5{bottom:92.512000pt;}
.yed{bottom:93.472000pt;}
.y3f{bottom:94.112000pt;}
.y54{bottom:95.712000pt;}
.y11f{bottom:97.632000pt;}
.y15c{bottom:103.712000pt;}
.ya6{bottom:108.512000pt;}
.yd4{bottom:109.472000pt;}
.y8a{bottom:110.112000pt;}
.y3e{bottom:111.072000pt;}
.y53{bottom:112.672000pt;}
.y11e{bottom:112.992000pt;}
.ye6{bottom:117.472000pt;}
.y15b{bottom:119.072000pt;}
.yee{bottom:124.192000pt;}
.ya5{bottom:125.472000pt;}
.yd3{bottom:126.112000pt;}
.y89{bottom:127.072000pt;}
.y3d{bottom:127.712000pt;}
.y11d{bottom:128.032000pt;}
.y52{bottom:129.344000pt;}
.y15a{bottom:134.466667pt;}
.ya4{bottom:142.146667pt;}
.ye9{bottom:142.786667pt;}
.yd2{bottom:143.106667pt;}
.y11c{bottom:143.426667pt;}
.y88{bottom:143.746667pt;}
.y3c{bottom:144.706667pt;}
.y51{bottom:146.306667pt;}
.y159{bottom:149.826667pt;}
.y11b{bottom:158.786667pt;}
.ya3{bottom:159.106667pt;}
.yd1{bottom:159.746667pt;}
.y87{bottom:160.706667pt;}
.y3b{bottom:161.346667pt;}
.y50{bottom:162.946667pt;}
.y158{bottom:164.866667pt;}
.y11a{bottom:174.146667pt;}
.ya2{bottom:175.746667pt;}
.yd0{bottom:176.706667pt;}
.y86{bottom:177.346667pt;}
.y3a{bottom:178.306667pt;}
.y4f{bottom:179.906667pt;}
.y157{bottom:180.226667pt;}
.y119{bottom:189.186667pt;}
.ya1{bottom:192.706667pt;}
.ycf{bottom:193.346667pt;}
.y85{bottom:194.306667pt;}
.y39{bottom:194.946667pt;}
.y156{bottom:195.586667pt;}
.y4e{bottom:196.546667pt;}
.y118{bottom:204.546667pt;}
.yd9{bottom:205.186667pt;}
.ya0{bottom:209.666667pt;}
.yce{bottom:210.306667pt;}
.y155{bottom:210.946667pt;}
.y84{bottom:211.266667pt;}
.y38{bottom:211.906667pt;}
.y4d{bottom:213.506667pt;}
.y117{bottom:219.906667pt;}
.yf0{bottom:225.346667pt;}
.y154{bottom:225.986667pt;}
.y9f{bottom:226.306667pt;}
.ycd{bottom:226.946667pt;}
.y83{bottom:227.906667pt;}
.y37{bottom:228.866667pt;}
.y183{bottom:229.506667pt;}
.ye4{bottom:230.146667pt;}
.y4c{bottom:230.466667pt;}
.y116{bottom:235.266667pt;}
.y153{bottom:241.346667pt;}
.y9e{bottom:243.266667pt;}
.ycc{bottom:243.906667pt;}
.y82{bottom:244.866667pt;}
.y36{bottom:245.506667pt;}
.y182{bottom:246.146667pt;}
.y4b{bottom:247.133333pt;}
.y115{bottom:250.333333pt;}
.yc9{bottom:256.413333pt;}
.y152{bottom:256.733333pt;}
.y9d{bottom:259.933333pt;}
.y81{bottom:261.533333pt;}
.y35{bottom:262.493333pt;}
.y181{bottom:263.133333pt;}
.y4a{bottom:264.093333pt;}
.y114{bottom:265.693333pt;}
.ydc{bottom:267.613333pt;}
.yca{bottom:269.533333pt;}
.y151{bottom:272.093333pt;}
.y9c{bottom:276.893333pt;}
.y80{bottom:278.493333pt;}
.y34{bottom:279.133333pt;}
.y180{bottom:279.773333pt;}
.y49{bottom:280.733333pt;}
.y113{bottom:281.053333pt;}
.y150{bottom:287.133333pt;}
.y9b{bottom:293.533333pt;}
.ybf{bottom:294.493333pt;}
.y7f{bottom:295.133333pt;}
.y33{bottom:296.093333pt;}
.y112{bottom:296.413333pt;}
.y17f{bottom:296.733333pt;}
.y48{bottom:297.693333pt;}
.y14f{bottom:302.493333pt;}
.yc8{bottom:307.293333pt;}
.y9a{bottom:310.493333pt;}
.y111{bottom:311.453333pt;}
.y7e{bottom:312.093333pt;}
.y32{bottom:312.733333pt;}
.y17e{bottom:313.373333pt;}
.y47{bottom:314.333333pt;}
.y14e{bottom:317.853333pt;}
.yc7{bottom:320.413333pt;}
.y110{bottom:326.813333pt;}
.y99{bottom:327.133333pt;}
.y7d{bottom:328.733333pt;}
.y31{bottom:329.693333pt;}
.y17d{bottom:330.013333pt;}
.y46{bottom:331.293333pt;}
.yc6{bottom:333.213333pt;}
.y17b{bottom:340.893333pt;}
.y10f{bottom:342.173333pt;}
.y98{bottom:344.093333pt;}
.y7c{bottom:345.693333pt;}
.yc5{bottom:346.013333pt;}
.y30{bottom:346.333333pt;}
.y45{bottom:347.933333pt;}
.y14d{bottom:348.253333pt;}
.yd8{bottom:354.013333pt;}
.y179{bottom:355.933333pt;}
.y10e{bottom:357.533333pt;}
.yc4{bottom:358.813333pt;}
.y97{bottom:360.733333pt;}
.y7b{bottom:362.333333pt;}
.y2f{bottom:363.293333pt;}
.y14c{bottom:363.653333pt;}
.y44{bottom:364.933333pt;}
.yd7{bottom:366.853333pt;}
.y176{bottom:371.333333pt;}
.yc3{bottom:371.973333pt;}
.y10d{bottom:372.613333pt;}
.y96{bottom:377.733333pt;}
.y14b{bottom:379.013333pt;}
.y7a{bottom:379.333333pt;}
.y2e{bottom:379.973333pt;}
.y43{bottom:381.573333pt;}
.yc2{bottom:384.773333pt;}
.y10c{bottom:387.973333pt;}
.y175{bottom:391.173333pt;}
.y95{bottom:394.373333pt;}
.y79{bottom:395.973333pt;}
.y2d{bottom:396.933333pt;}
.yb6{bottom:397.573333pt;}
.y42{bottom:398.533333pt;}
.y10b{bottom:403.333333pt;}
.y174{bottom:406.533333pt;}
.y14a{bottom:409.413333pt;}
.ybb{bottom:410.693333pt;}
.y94{bottom:411.333333pt;}
.y78{bottom:412.933333pt;}
.y2c{bottom:413.573333pt;}
.y41{bottom:415.173333pt;}
.y10a{bottom:418.693333pt;}
.y173{bottom:421.573333pt;}
.yba{bottom:423.493333pt;}
.y149{bottom:424.773333pt;}
.y93{bottom:427.973333pt;}
.y2b{bottom:429.253333pt;}
.y77{bottom:429.573333pt;}
.y40{bottom:432.133333pt;}
.y109{bottom:433.733333pt;}
.yb9{bottom:436.293333pt;}
.y172{bottom:436.933333pt;}
.y148{bottom:440.133333pt;}
.y92{bottom:444.933333pt;}
.y76{bottom:446.533333pt;}
.y2a{bottom:448.773333pt;}
.yb8{bottom:449.093333pt;}
.y171{bottom:452.613333pt;}
.y147{bottom:455.493333pt;}
.y91{bottom:461.573333pt;}
.y75{bottom:463.173333pt;}
.y108{bottom:464.453333pt;}
.y29{bottom:465.733333pt;}
.y170{bottom:469.253333pt;}
.y146{bottom:470.533333pt;}
.yac{bottom:474.373333pt;}
.y90{bottom:478.533333pt;}
.y107{bottom:479.813333pt;}
.y74{bottom:480.133333pt;}
.y28{bottom:482.080000pt;}
.y145{bottom:485.920000pt;}
.yb5{bottom:487.200000pt;}
.y106{bottom:494.880000pt;}
.y8f{bottom:495.200000pt;}
.y73{bottom:496.800000pt;}
.y27{bottom:497.440000pt;}
.y16f{bottom:499.680000pt;}
.yb2{bottom:500.320000pt;}
.y144{bottom:501.280000pt;}
.y105{bottom:510.240000pt;}
.y8e{bottom:512.160000pt;}
.y26{bottom:512.800000pt;}
.yaf{bottom:513.120000pt;}
.y72{bottom:513.760000pt;}
.y16e{bottom:515.040000pt;}
.y143{bottom:516.640000pt;}
.y104{bottom:525.600000pt;}
.yae{bottom:525.920000pt;}
.y25{bottom:528.800000pt;}
.y8d{bottom:529.120000pt;}
.y71{bottom:530.400000pt;}
.y142{bottom:531.680000pt;}
.yaa{bottom:538.720000pt;}
.y103{bottom:540.960000pt;}
.y24{bottom:543.840000pt;}
.yd6{bottom:544.800000pt;}
.y16d{bottom:545.440000pt;}
.y8c{bottom:545.760000pt;}
.y141{bottom:547.040000pt;}
.y70{bottom:547.360000pt;}
.ya7{bottom:551.840000pt;}
.y102{bottom:556.000000pt;}
.y23{bottom:559.200000pt;}
.y16c{bottom:560.800000pt;}
.y8b{bottom:561.440000pt;}
.y140{bottom:562.400000pt;}
.y6f{bottom:564.320000pt;}
.y101{bottom:571.360000pt;}
.y22{bottom:574.560000pt;}
.y16b{bottom:576.160000pt;}
.y13f{bottom:577.760000pt;}
.y6e{bottom:580.960000pt;}
.y100{bottom:586.720000pt;}
.y21{bottom:589.920000pt;}
.y16a{bottom:591.520000pt;}
.y13e{bottom:592.800000pt;}
.y6d{bottom:597.920000pt;}
.yff{bottom:602.106667pt;}
.y20{bottom:604.986667pt;}
.y169{bottom:606.586667pt;}
.y13d{bottom:608.186667pt;}
.y6c{bottom:614.586667pt;}
.yfe{bottom:617.146667pt;}
.y1f{bottom:620.346667pt;}
.y168{bottom:621.946667pt;}
.y13c{bottom:623.546667pt;}
.y6b{bottom:631.546667pt;}
.yfd{bottom:632.506667pt;}
.y1e{bottom:635.706667pt;}
.y167{bottom:637.306667pt;}
.y13b{bottom:638.906667pt;}
.yfc{bottom:647.866667pt;}
.y6a{bottom:648.186667pt;}
.y1d{bottom:651.066667pt;}
.y166{bottom:652.666667pt;}
.y13a{bottom:653.946667pt;}
.yfb{bottom:663.226667pt;}
.y69{bottom:665.146667pt;}
.y1c{bottom:666.106667pt;}
.y165{bottom:667.706667pt;}
.y139{bottom:669.306667pt;}
.yfa{bottom:677.626667pt;}
.y1b{bottom:681.466667pt;}
.y68{bottom:681.786667pt;}
.y164{bottom:683.066667pt;}
.y138{bottom:684.666667pt;}
.y1a{bottom:696.826667pt;}
.yf9{bottom:697.146667pt;}
.y163{bottom:698.426667pt;}
.y67{bottom:698.746667pt;}
.y137{bottom:700.026667pt;}
.y19{bottom:712.186667pt;}
.yf8{bottom:713.786667pt;}
.y136{bottom:715.066667pt;}
.y66{bottom:715.386667pt;}
.y18{bottom:727.266667pt;}
.y162{bottom:728.866667pt;}
.y135{bottom:730.466667pt;}
.yf7{bottom:730.786667pt;}
.y65{bottom:732.386667pt;}
.y17{bottom:742.626667pt;}
.y161{bottom:744.226667pt;}
.y134{bottom:745.826667pt;}
.yf6{bottom:747.426667pt;}
.y64{bottom:749.026667pt;}
.y16{bottom:757.986667pt;}
.y160{bottom:759.586667pt;}
.y133{bottom:761.186667pt;}
.yf5{bottom:764.386667pt;}
.y63{bottom:765.986667pt;}
.y15{bottom:773.346667pt;}
.y15f{bottom:774.946667pt;}
.y132{bottom:776.226667pt;}
.yf4{bottom:781.026667pt;}
.y62{bottom:782.626667pt;}
.y14{bottom:788.386667pt;}
.y15e{bottom:789.986667pt;}
.y131{bottom:791.586667pt;}
.yf3{bottom:797.986667pt;}
.y61{bottom:799.586667pt;}
.y13{bottom:803.746667pt;}
.y130{bottom:806.946667pt;}
.yf2{bottom:814.626667pt;}
.y60{bottom:816.226667pt;}
.y12{bottom:819.106667pt;}
.y12f{bottom:822.306667pt;}
.yf1{bottom:830.306667pt;}
.y5f{bottom:833.213333pt;}
.y11{bottom:834.493333pt;}
.y12e{bottom:837.373333pt;}
.y10{bottom:849.533333pt;}
.y5e{bottom:849.853333pt;}
.y12d{bottom:852.733333pt;}
.yf{bottom:864.893333pt;}
.y5d{bottom:866.813333pt;}
.y12c{bottom:868.093333pt;}
.ye{bottom:880.253333pt;}
.y12b{bottom:883.453333pt;}
.y5c{bottom:883.773333pt;}
.yd{bottom:895.613333pt;}
.y12a{bottom:898.493333pt;}
.y5b{bottom:900.413333pt;}
.yc{bottom:910.653333pt;}
.y129{bottom:913.853333pt;}
.y5a{bottom:917.373333pt;}
.yb{bottom:926.013333pt;}
.y128{bottom:929.213333pt;}
.y59{bottom:934.013333pt;}
.ya{bottom:941.373333pt;}
.y127{bottom:944.573333pt;}
.y58{bottom:951.013333pt;}
.y9{bottom:956.773333pt;}
.y126{bottom:959.653333pt;}
.y57{bottom:967.653333pt;}
.y8{bottom:971.813333pt;}
.y125{bottom:975.013333pt;}
.y56{bottom:984.613333pt;}
.y7{bottom:987.173333pt;}
.y124{bottom:990.373333pt;}
.y55{bottom:1001.253333pt;}
.y6{bottom:1002.533333pt;}
.y123{bottom:1005.733333pt;}
.y5{bottom:1018.213333pt;}
.y122{bottom:1020.773333pt;}
.y4{bottom:1034.853333pt;}
.y121{bottom:1036.133333pt;}
.y2{bottom:1066.213333pt;}
.y1{bottom:1077.120000pt;}
.hd{height:12.160000pt;}
.h15{height:12.160133pt;}
.h10{height:12.192000pt;}
.hb{height:12.480000pt;}
.h16{height:12.512000pt;}
.h21{height:15.040000pt;}
.h1f{height:15.360000pt;}
.h20{height:15.392000pt;}
.ha{height:24.320000pt;}
.h12{height:24.640000pt;}
.h1e{height:24.672000pt;}
.he{height:24.960000pt;}
.h13{height:25.280000pt;}
.h17{height:25.312000pt;}
.h3{height:27.840000pt;}
.h2{height:29.924375pt;}
.h4{height:34.051875pt;}
.h1d{height:36.480000pt;}
.h1b{height:36.832000pt;}
.h18{height:37.440000pt;}
.hf{height:38.112000pt;}
.h7{height:40.320000pt;}
.h6{height:43.338750pt;}
.h5{height:44.160000pt;}
.h8{height:44.437500pt;}
.h9{height:47.466250pt;}
.hc{height:63.712000pt;}
.h11{height:76.160000pt;}
.h1a{height:85.760000pt;}
.h1c{height:87.072000pt;}
.h14{height:102.432000pt;}
.h19{height:148.186667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wf{width:0.639973pt;}
.we{width:0.960040pt;}
.w5{width:37.792000pt;}
.wa{width:85.184000pt;}
.w4{width:104.032000pt;}
.wd{width:140.226667pt;}
.w8{width:141.826667pt;}
.w6{width:151.106667pt;}
.wb{width:170.306667pt;}
.w9{width:264.733333pt;}
.wc{width:330.720000pt;}
.w7{width:349.920000pt;}
.w3{width:642.853333pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x14{left:1.920000pt;}
.x25{left:3.520000pt;}
.x2d{left:5.120000pt;}
.x1f{left:7.040000pt;}
.x11{left:8.320000pt;}
.x16{left:9.920000pt;}
.xf{left:10.880000pt;}
.x21{left:12.480000pt;}
.xa{left:13.786667pt;}
.x10{left:16.346667pt;}
.x15{left:18.560000pt;}
.x13{left:22.400000pt;}
.x8{left:25.600000pt;}
.x33{left:26.880000pt;}
.x1c{left:27.840000pt;}
.x36{left:29.760000pt;}
.x1a{left:30.720000pt;}
.x18{left:33.280000pt;}
.x20{left:35.840000pt;}
.x32{left:37.800000pt;}
.x3b{left:40.040000pt;}
.x38{left:42.240000pt;}
.x35{left:43.552000pt;}
.x27{left:46.120000pt;}
.x28{left:49.946667pt;}
.x1d{left:50.906667pt;}
.x1e{left:51.872000pt;}
.xc{left:54.120000pt;}
.x37{left:57.626667pt;}
.x12{left:59.240000pt;}
.x29{left:63.074667pt;}
.x24{left:65.306667pt;}
.x3a{left:67.866667pt;}
.x1{left:75.551988pt;}
.x34{left:77.786667pt;}
.x2e{left:91.866667pt;}
.x19{left:92.826667pt;}
.x5{left:94.431988pt;}
.x26{left:95.706667pt;}
.x30{left:98.586667pt;}
.x2f{left:99.866667pt;}
.x31{left:101.466667pt;}
.x41{left:103.426667pt;}
.x3d{left:105.346667pt;}
.x2{left:111.743988pt;}
.x2b{left:112.666667pt;}
.x39{left:115.866667pt;}
.x1b{left:118.146667pt;}
.x42{left:126.466667pt;}
.x22{left:132.546667pt;}
.x23{left:138.946667pt;}
.x4{left:143.106655pt;}
.xe{left:156.546667pt;}
.x17{left:160.386667pt;}
.x9{left:179.586667pt;}
.x3{left:196.253322pt;}
.xb{left:217.373333pt;}
.x2a{left:226.653333pt;}
.x3c{left:245.853333pt;}
.xd{left:368.480000pt;}
.x6{left:406.239988pt;}
.x7{left:425.146655pt;}
.x3e{left:576.573333pt;}
.x2c{left:633.213333pt;}
.x3f{left:716.800000pt;}
.x40{left:717.760000pt;}
}




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