
    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_1747cbf7fcfeeaf01042595d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_246228afb5258efc1a89f392.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_099800e2bfd7f8e9d8aef726.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5cac0bdf9b0d4e068f3db7df.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.729980;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_04389f89d7ee4b3ebca55138.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_9ecf4400080e5bdc7a708cb6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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_b58c48aa7d7f14134206df87.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_12e10738252175e98f268d8d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.120605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f7a6a924e9648147daeea235.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6d963569b87de4fc20967f28.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.999512;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_343c1be002489569e024d47b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_636de8fe2e9dcac3c786d1e0.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_58df16868a6d713b544399b6.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.372070;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:ffe;src:url('chunks/assets/font_6725a69c10ad5adba15c1c2b.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.401855;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:fff;src:url('chunks/assets/font_476e0fb72570b16fa35a8a61.woff2')format("woff");}.fff{font-family:fff;line-height:0.962402;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);}
.v5{vertical-align:-70.680000px;}
.v3{vertical-align:-66.960000px;}
.v2{vertical-align:-18.000000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls12{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.259800px;}
.ls7{letter-spacing:-0.234000px;}
.lsb{letter-spacing:-0.206400px;}
.ls14{letter-spacing:-0.106800px;}
.ls15{letter-spacing:-0.053280px;}
.ls8{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.053280px;}
.ls19{letter-spacing:0.106560px;}
.ls10{letter-spacing:0.108000px;}
.lsa{letter-spacing:0.126000px;}
.ls1a{letter-spacing:0.135600px;}
.ls16{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.256200px;}
.ls6{letter-spacing:0.259800px;}
.lsc{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.720000px;}
.ls1b{letter-spacing:19.548000px;}
.ls13{letter-spacing:69.786720px;}
.ls4{letter-spacing:78.426720px;}
.ls1{letter-spacing:113.904000px;}
.ls18{letter-spacing:286.920000px;}
.lsf{letter-spacing:352.440000px;}
.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;}
}
.ws12{word-spacing:-59.760000px;}
.ws13{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.000000px;}
.ws10{word-spacing:-16.506480px;}
.wsc{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.238800px;}
.wsb{word-spacing:-15.226440px;}
.ws7{word-spacing:-15.199800px;}
.ws15{word-spacing:-15.012000px;}
.ws14{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.wse{word-spacing:-14.922000px;}
.ws0{word-spacing:-14.680200px;}
.wsd{word-spacing:-14.580000px;}
.ws11{word-spacing:-13.860000px;}
.ws3{word-spacing:-13.500000px;}
.ws9{word-spacing:-12.204000px;}
.wsa{word-spacing:-12.186000px;}
.ws8{word-spacing:-11.970000px;}
.ws1{word-spacing:-9.720000px;}
.ws2{word-spacing:-9.000000px;}
.ws5{word-spacing:0.000000px;}
._d{margin-left:-3.560400px;}
._8{margin-left:-2.538000px;}
._0{margin-left:-1.095120px;}
._1{width:1.239840px;}
._7{width:2.862000px;}
._4{width:4.173120px;}
._2{width:5.454000px;}
._3{width:6.765120px;}
._5{width:8.478000px;}
._10{width:9.576720px;}
._a{width:10.577520px;}
._9{width:12.011760px;}
._e{width:13.824000px;}
._6{width:15.284160px;}
._11{width:16.523280px;}
._16{width:19.848240px;}
._15{width:21.006000px;}
._12{width:23.784480px;}
._14{width:46.074960px;}
._f{width:58.340880px;}
._b{width:78.606720px;}
._c{width:109.872000px;}
._13{width:144.160560px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fs2{font-size:38.880000px;}
.fs7{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yac{bottom:3.600000px;}
.y48{bottom:3.780000px;}
.y114{bottom:4.500000px;}
.y127{bottom:4.680000px;}
.y119{bottom:10.425000px;}
.y11e{bottom:11.145000px;}
.y147{bottom:11.160000px;}
.y11c{bottom:11.325000px;}
.ya9{bottom:17.460000px;}
.y49{bottom:17.640000px;}
.y4b{bottom:20.160000px;}
.yab{bottom:20.205000px;}
.y47{bottom:20.340000px;}
.y143{bottom:20.880000px;}
.y141{bottom:21.060000px;}
.y129{bottom:24.870000px;}
.y118{bottom:25.050000px;}
.y113{bottom:25.200000px;}
.y11b{bottom:28.425000px;}
.y146{bottom:28.440000px;}
.y15d{bottom:38.205000px;}
.y140{bottom:38.340000px;}
.y145{bottom:45.720000px;}
.y1b2{bottom:224.490000px;}
.y198{bottom:227.730000px;}
.y25{bottom:231.510000px;}
.ya5{bottom:232.230000px;}
.y136{bottom:234.210000px;}
.ya1{bottom:235.290000px;}
.y11d{bottom:236.025000px;}
.y165{bottom:238.170000px;}
.y1b1{bottom:241.050000px;}
.y197{bottom:245.730000px;}
.y24{bottom:249.510000px;}
.ya4{bottom:250.230000px;}
.y135{bottom:251.490000px;}
.ya0{bottom:253.290000px;}
.y8b{bottom:254.730000px;}
.y102{bottom:256.170000px;}
.y1b0{bottom:257.430000px;}
.y168{bottom:259.050000px;}
.ycd{bottom:260.130000px;}
.y196{bottom:263.730000px;}
.y23{bottom:267.510000px;}
.ya3{bottom:268.230000px;}
.y134{bottom:268.770000px;}
.y11a{bottom:268.965000px;}
.y9f{bottom:271.290000px;}
.y8a{bottom:272.730000px;}
.y1af{bottom:273.990000px;}
.y101{bottom:274.170000px;}
.ycc{bottom:278.130000px;}
.y157{bottom:279.390000px;}
.y167{bottom:281.190000px;}
.y195{bottom:281.730000px;}
.y22{bottom:285.510000px;}
.y173{bottom:285.870000px;}
.y133{bottom:286.050000px;}
.yd9{bottom:286.230000px;}
.y9e{bottom:289.290000px;}
.y1ae{bottom:290.550000px;}
.y89{bottom:290.730000px;}
.y100{bottom:292.170000px;}
.y4f{bottom:292.530000px;}
.ycb{bottom:296.130000px;}
.y156{bottom:297.390000px;}
.ya2{bottom:298.110000px;}
.y194{bottom:299.730000px;}
.y132{bottom:303.150000px;}
.y21{bottom:303.510000px;}
.y172{bottom:303.870000px;}
.yd8{bottom:304.230000px;}
.y1ad{bottom:306.930000px;}
.y9d{bottom:307.290000px;}
.y88{bottom:308.730000px;}
.y4e{bottom:309.630000px;}
.yff{bottom:310.170000px;}
.yca{bottom:313.770000px;}
.y155{bottom:315.390000px;}
.y193{bottom:317.730000px;}
.y117{bottom:319.185000px;}
.y171{bottom:321.870000px;}
.yd7{bottom:322.230000px;}
.y1ac{bottom:323.130000px;}
.y9c{bottom:325.290000px;}
.y87{bottom:326.730000px;}
.y4d{bottom:326.910000px;}
.yfe{bottom:328.170000px;}
.yc9{bottom:332.130000px;}
.y154{bottom:333.390000px;}
.y192{bottom:335.730000px;}
.y20{bottom:339.915000px;}
.y1ab{bottom:340.095000px;}
.yd6{bottom:340.275000px;}
.y131{bottom:341.535000px;}
.y61{bottom:341.715000px;}
.y9b{bottom:343.335000px;}
.y86{bottom:344.775000px;}
.yfd{bottom:346.215000px;}
.yc8{bottom:350.175000px;}
.y153{bottom:351.435000px;}
.y191{bottom:353.775000px;}
.y1aa{bottom:356.835000px;}
.y170{bottom:357.915000px;}
.yd5{bottom:358.275000px;}
.y60{bottom:360.795000px;}
.y9a{bottom:361.335000px;}
.y85{bottom:362.775000px;}
.yfc{bottom:364.215000px;}
.y4c{bottom:365.115000px;}
.y116{bottom:366.015000px;}
.yc7{bottom:368.175000px;}
.y152{bottom:369.435000px;}
.y190{bottom:371.775000px;}
.y1a9{bottom:374.475000px;}
.y16f{bottom:375.915000px;}
.y99{bottom:379.335000px;}
.y5f{bottom:379.695000px;}
.y4a{bottom:380.235000px;}
.y84{bottom:380.775000px;}
.yfb{bottom:382.215000px;}
.y115{bottom:384.015000px;}
.yc6{bottom:386.175000px;}
.y151{bottom:387.075000px;}
.yd4{bottom:388.155000px;}
.y1f{bottom:388.875000px;}
.y18f{bottom:389.775000px;}
.y1a8{bottom:391.035000px;}
.y16e{bottom:393.915000px;}
.y130{bottom:396.975000px;}
.y98{bottom:397.335000px;}
.y83{bottom:398.775000px;}
.y5e{bottom:399.135000px;}
.yfa{bottom:400.215000px;}
.y112{bottom:402.015000px;}
.yc5{bottom:404.175000px;}
.y150{bottom:405.075000px;}
.y1e{bottom:405.255000px;}
.y1a7{bottom:407.595000px;}
.y18e{bottom:407.775000px;}
.y16d{bottom:408.315000px;}
.y46{bottom:413.895000px;}
.y97{bottom:415.335000px;}
.y82{bottom:416.775000px;}
.yf9{bottom:418.215000px;}
.yc4{bottom:422.175000px;}
.y14f{bottom:423.435000px;}
.y1a6{bottom:423.975000px;}
.y18d{bottom:425.775000px;}
.y96{bottom:433.335000px;}
.y81{bottom:434.775000px;}
.y12f{bottom:435.315000px;}
.yf8{bottom:436.215000px;}
.y1d{bottom:438.375000px;}
.yc3{bottom:440.175000px;}
.y5d{bottom:440.535000px;}
.y14e{bottom:441.435000px;}
.y18c{bottom:443.775000px;}
.y45{bottom:450.975000px;}
.y95{bottom:451.335000px;}
.y80{bottom:452.775000px;}
.yf7{bottom:454.215000px;}
.y1c{bottom:454.755000px;}
.y1a5{bottom:457.095000px;}
.y5c{bottom:457.815000px;}
.yc2{bottom:458.175000px;}
.y14d{bottom:459.435000px;}
.y18b{bottom:461.775000px;}
.y44{bottom:467.535000px;}
.y111{bottom:468.795000px;}
.y94{bottom:469.335000px;}
.y7f{bottom:470.775000px;}
.y1b{bottom:471.315000px;}
.yf6{bottom:472.215000px;}
.y12e{bottom:473.475000px;}
.yc1{bottom:475.815000px;}
.y14c{bottom:477.435000px;}
.y18a{bottom:479.775000px;}
.y43{bottom:484.275000px;}
.y110{bottom:486.615000px;}
.yd3{bottom:486.975000px;}
.y93{bottom:487.335000px;}
.y1a{bottom:487.875000px;}
.y7e{bottom:488.775000px;}
.y1a4{bottom:490.035000px;}
.yf5{bottom:490.215000px;}
.yc0{bottom:494.175000px;}
.y5b{bottom:495.975000px;}
.y189{bottom:497.775000px;}
.y42{bottom:502.275000px;}
.y19{bottom:504.255000px;}
.y92{bottom:505.335000px;}
.y1a3{bottom:506.595000px;}
.y7d{bottom:506.775000px;}
.yf4{bottom:508.215000px;}
.y12d{bottom:511.815000px;}
.ybf{bottom:512.175000px;}
.y5a{bottom:513.255000px;}
.y188{bottom:515.775000px;}
.y14b{bottom:516.675000px;}
.y41{bottom:520.275000px;}
.y18{bottom:520.815000px;}
.y1a2{bottom:522.975000px;}
.y91{bottom:523.335000px;}
.y7c{bottom:524.775000px;}
.yf3{bottom:526.215000px;}
.y10f{bottom:527.835000px;}
.y12c{bottom:528.915000px;}
.ybe{bottom:530.175000px;}
.y59{bottom:530.535000px;}
.y187{bottom:533.775000px;}
.y14a{bottom:534.495000px;}
.y17{bottom:537.375000px;}
.y40{bottom:538.275000px;}
.y1a1{bottom:539.535000px;}
.y90{bottom:541.335000px;}
.y7b{bottom:542.775000px;}
.yf2{bottom:544.215000px;}
.y10e{bottom:545.835000px;}
.y12b{bottom:546.195000px;}
.y58{bottom:547.815000px;}
.ybd{bottom:548.175000px;}
.y186{bottom:551.775000px;}
.y149{bottom:552.495000px;}
.y16{bottom:553.755000px;}
.y1a0{bottom:556.095000px;}
.y8f{bottom:559.335000px;}
.y7a{bottom:560.775000px;}
.yf1{bottom:562.215000px;}
.y12a{bottom:563.475000px;}
.y10d{bottom:563.835000px;}
.y57{bottom:564.915000px;}
.ybc{bottom:566.175000px;}
.y3f{bottom:568.155000px;}
.y15{bottom:570.315000px;}
.y148{bottom:570.675000px;}
.y19f{bottom:572.475000px;}
.yd2{bottom:576.975000px;}
.y8e{bottom:577.335000px;}
.y79{bottom:578.775000px;}
.yf0{bottom:580.215000px;}
.y185{bottom:581.655000px;}
.y10c{bottom:581.835000px;}
.y56{bottom:582.195000px;}
.ybb{bottom:584.175000px;}
.y3e{bottom:585.975000px;}
.y14{bottom:586.875000px;}
.y19e{bottom:589.035000px;}
.y8d{bottom:595.335000px;}
.y78{bottom:596.775000px;}
.y164{bottom:598.215000px;}
.y128{bottom:598.755000px;}
.y55{bottom:599.475000px;}
.y10b{bottom:599.835000px;}
.yba{bottom:602.175000px;}
.y13{bottom:603.255000px;}
.y19d{bottom:605.625000px;}
.y144{bottom:606.705000px;}
.yef{bottom:610.125000px;}
.y166{bottom:613.005000px;}
.y8c{bottom:613.365000px;}
.y77{bottom:614.805000px;}
.y163{bottom:616.245000px;}
.y54{bottom:616.785000px;}
.y10a{bottom:617.865000px;}
.y12{bottom:619.845000px;}
.yb9{bottom:620.205000px;}
.y19c{bottom:622.005000px;}
.y184{bottom:626.865000px;}
.yee{bottom:627.945000px;}
.y3d{bottom:631.365000px;}
.y76{bottom:632.805000px;}
.y162{bottom:634.245000px;}
.y109{bottom:635.865000px;}
.y11{bottom:636.405000px;}
.yb8{bottom:638.205000px;}
.y19b{bottom:638.565000px;}
.y183{bottom:644.865000px;}
.y3c{bottom:649.365000px;}
.y75{bottom:650.805000px;}
.y10{bottom:652.785000px;}
.y108{bottom:653.865000px;}
.y53{bottom:654.945000px;}
.y19a{bottom:655.125000px;}
.yb7{bottom:656.205000px;}
.y182{bottom:662.865000px;}
.y161{bottom:664.125000px;}
.y126{bottom:666.825000px;}
.y3b{bottom:667.365000px;}
.y74{bottom:668.805000px;}
.yf{bottom:669.345000px;}
.y107{bottom:671.865000px;}
.y52{bottom:672.765000px;}
.yed{bottom:673.305000px;}
.yb6{bottom:674.205000px;}
.y181{bottom:680.865000px;}
.yd1{bottom:685.005000px;}
.y3a{bottom:685.365000px;}
.ye{bottom:685.905000px;}
.y73{bottom:686.805000px;}
.y16c{bottom:688.605000px;}
.y106{bottom:689.865000px;}
.y199{bottom:690.225000px;}
.yec{bottom:691.305000px;}
.yb5{bottom:692.205000px;}
.y180{bottom:698.865000px;}
.yd{bottom:702.285000px;}
.y39{bottom:703.365000px;}
.y72{bottom:704.805000px;}
.y16b{bottom:706.605000px;}
.y105{bottom:707.865000px;}
.y160{bottom:708.945000px;}
.yeb{bottom:709.305000px;}
.y142{bottom:709.485000px;}
.yb4{bottom:710.205000px;}
.y17f{bottom:716.865000px;}
.y51{bottom:718.305000px;}
.yc{bottom:718.845000px;}
.y38{bottom:721.365000px;}
.y71{bottom:722.805000px;}
.y16a{bottom:724.605000px;}
.y104{bottom:725.865000px;}
.y15f{bottom:726.945000px;}
.yea{bottom:727.305000px;}
.yb3{bottom:728.205000px;}
.y17e{bottom:734.865000px;}
.yb{bottom:735.405000px;}
.y125{bottom:736.305000px;}
.y37{bottom:739.365000px;}
.y70{bottom:740.805000px;}
.y13f{bottom:744.585000px;}
.ye9{bottom:745.305000px;}
.yb2{bottom:746.205000px;}
.ya{bottom:751.785000px;}
.y17d{bottom:752.865000px;}
.y124{bottom:754.305000px;}
.y50{bottom:756.105000px;}
.yd0{bottom:757.005000px;}
.y36{bottom:757.365000px;}
.y6f{bottom:758.805000px;}
.y103{bottom:762.225000px;}
.ye8{bottom:763.305000px;}
.yb1{bottom:764.205000px;}
.y169{bottom:766.185000px;}
.y9{bottom:768.345000px;}
.y17c{bottom:770.865000px;}
.y123{bottom:772.305000px;}
.y35{bottom:775.365000px;}
.y6e{bottom:776.805000px;}
.y15e{bottom:778.425000px;}
.ye7{bottom:781.305000px;}
.yb0{bottom:782.205000px;}
.y8{bottom:784.725000px;}
.y17b{bottom:788.865000px;}
.y122{bottom:790.305000px;}
.y34{bottom:793.365000px;}
.y6d{bottom:794.805000px;}
.ye6{bottom:799.305000px;}
.yaf{bottom:800.205000px;}
.y17a{bottom:806.865000px;}
.y33{bottom:811.365000px;}
.y6c{bottom:812.805000px;}
.ye5{bottom:817.305000px;}
.yae{bottom:818.205000px;}
.y13e{bottom:821.805000px;}
.y179{bottom:824.865000px;}
.ycf{bottom:829.005000px;}
.y32{bottom:829.365000px;}
.y6b{bottom:830.805000px;}
.y121{bottom:834.945000px;}
.ye4{bottom:835.305000px;}
.yad{bottom:836.205000px;}
.y13d{bottom:838.905000px;}
.y178{bottom:842.865000px;}
.y15c{bottom:845.925000px;}
.y7{bottom:846.105000px;}
.y31{bottom:847.365000px;}
.y6a{bottom:848.805000px;}
.yaa{bottom:851.325000px;}
.ye3{bottom:853.305000px;}
.y177{bottom:860.865000px;}
.y6{bottom:863.385000px;}
.y30{bottom:865.365000px;}
.y69{bottom:866.805000px;}
.ye2{bottom:871.350000px;}
.y13c{bottom:877.470000px;}
.y176{bottom:878.910000px;}
.y120{bottom:880.350000px;}
.y2f{bottom:883.410000px;}
.y5{bottom:883.950000px;}
.y68{bottom:884.850000px;}
.ya8{bottom:885.030000px;}
.ye1{bottom:889.350000px;}
.y13b{bottom:895.290000px;}
.y175{bottom:896.910000px;}
.y15b{bottom:898.530000px;}
.y2e{bottom:901.410000px;}
.ye0{bottom:907.350000px;}
.y4{bottom:911.130000px;}
.y67{bottom:914.730000px;}
.y174{bottom:914.910000px;}
.yce{bottom:919.050000px;}
.y2d{bottom:919.410000px;}
.y11f{bottom:919.590000px;}
.ya7{bottom:922.290000px;}
.ydf{bottom:925.350000px;}
.y66{bottom:932.910000px;}
.y15a{bottom:933.630000px;}
.y13a{bottom:934.530000px;}
.y2c{bottom:937.410000px;}
.ya6{bottom:940.110000px;}
.yde{bottom:943.350000px;}
.y65{bottom:950.910000px;}
.y2b{bottom:955.410000px;}
.ydd{bottom:961.350000px;}
.y3{bottom:965.490000px;}
.y64{bottom:968.910000px;}
.y139{bottom:972.690000px;}
.y2a{bottom:973.410000px;}
.ydc{bottom:979.350000px;}
.y63{bottom:986.910000px;}
.y138{bottom:989.970000px;}
.y29{bottom:991.410000px;}
.y2{bottom:992.490000px;}
.ydb{bottom:997.350000px;}
.y28{bottom:1009.410000px;}
.y159{bottom:1010.670000px;}
.y1{bottom:1019.490000px;}
.y62{bottom:1023.270000px;}
.yda{bottom:1027.230000px;}
.y27{bottom:1027.410000px;}
.y158{bottom:1027.950000px;}
.y137{bottom:1028.310000px;}
.y26{bottom:1069.530000px;}
.h1b{height:17.265000px;}
.h1e{height:32.205000px;}
.h10{height:32.925000px;}
.h17{height:32.962500px;}
.hd{height:33.105000px;}
.h25{height:34.365000px;}
.h22{height:34.380000px;}
.h4{height:35.332031px;}
.h5{height:35.991211px;}
.h19{height:41.385000px;}
.h1c{height:46.101000px;}
.h1f{height:47.160000px;}
.h14{height:49.255313px;}
.h1d{height:49.485000px;}
.h26{height:51.682500px;}
.h24{height:51.825000px;}
.h21{height:51.840000px;}
.h16{height:52.971680px;}
.h6{height:52.998047px;}
.ha{height:53.573906px;}
.he{height:53.709961px;}
.h7{height:54.421875px;}
.h27{height:56.320312px;}
.h13{height:58.621992px;}
.h9{height:58.651172px;}
.h15{height:59.019609px;}
.h3{height:59.038594px;}
.h18{height:59.614102px;}
.hc{height:60.226875px;}
.hb{height:62.327813px;}
.h12{height:64.978594px;}
.h28{height:65.010937px;}
.hf{height:65.884219px;}
.h23{height:66.780000px;}
.h20{height:67.350000px;}
.h1a{height:70.664062px;}
.h11{height:72.562500px;}
.h8{height:75.093750px;}
.h2{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:34.941000px;}
.w10{width:36.381000px;}
.w7{width:41.025000px;}
.w4{width:41.040000px;}
.w11{width:41.076000px;}
.w8{width:41.205000px;}
.w5{width:41.220000px;}
.w12{width:41.241000px;}
.w6{width:41.256000px;}
.wa{width:41.385000px;}
.w9{width:41.421000px;}
.w2{width:62.805000px;}
.w19{width:72.180000px;}
.w17{width:76.341000px;}
.wf{width:82.965000px;}
.w1c{width:83.721000px;}
.w14{width:88.200000px;}
.we{width:92.361000px;}
.w13{width:98.841000px;}
.w1a{width:104.796000px;}
.w15{width:106.416000px;}
.w18{width:115.941000px;}
.wc{width:116.280000px;}
.w16{width:144.885000px;}
.wb{width:147.801000px;}
.w1b{width:150.825000px;}
.wd{width:158.790000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:7.725000px;}
.x39{left:9.345000px;}
.x40{left:10.620000px;}
.x23{left:11.685000px;}
.x34{left:13.680000px;}
.x3e{left:14.760000px;}
.x42{left:16.905000px;}
.x28{left:18.360000px;}
.x1e{left:19.605000px;}
.x20{left:21.600000px;}
.x29{left:24.825000px;}
.x2b{left:26.820000px;}
.x26{left:28.785000px;}
.x35{left:30.780000px;}
.x24{left:32.745000px;}
.x3b{left:34.380000px;}
.x3a{left:36.000000px;}
.x2c{left:37.245000px;}
.x33{left:38.505000px;}
.x21{left:42.120000px;}
.x25{left:43.920000px;}
.x2d{left:48.270000px;}
.x27{left:52.725000px;}
.x2a{left:56.160000px;}
.x2f{left:166.185000px;}
.x9{left:187.050000px;}
.x4a{left:193.890000px;}
.x47{left:196.410000px;}
.x2{left:197.850000px;}
.xa{left:204.150000px;}
.x31{left:206.850000px;}
.x5{left:212.070000px;}
.x3c{left:215.850000px;}
.x1b{left:221.430000px;}
.x8{left:229.530000px;}
.x1{left:238.350000px;}
.x45{left:248.610000px;}
.x30{left:249.885000px;}
.xe{left:251.325000px;}
.x4b{left:258.150000px;}
.xf{left:286.995000px;}
.x3d{left:304.455000px;}
.x48{left:307.335000px;}
.x4{left:327.135000px;}
.x10{left:328.755000px;}
.x1f{left:336.315000px;}
.x6{left:345.135000px;}
.x1d{left:347.655000px;}
.xb{left:348.735000px;}
.x32{left:352.695000px;}
.x43{left:365.115000px;}
.x46{left:367.095000px;}
.x11{left:370.515000px;}
.x36{left:376.275000px;}
.x3f{left:377.535000px;}
.xc{left:383.655000px;}
.x1c{left:385.275000px;}
.x3{left:391.575000px;}
.x12{left:412.455000px;}
.x7{left:446.475000px;}
.x13{left:454.215000px;}
.x37{left:483.420000px;}
.x14{left:496.200000px;}
.x15{left:537.960000px;}
.x16{left:579.900000px;}
.x22{left:612.840000px;}
.x17{left:621.660000px;}
.x38{left:629.040000px;}
.x41{left:634.620000px;}
.x18{left:663.990000px;}
.x2e{left:692.610000px;}
.x1a{left:696.210000px;}
.x19{left:699.270000px;}
.x49{left:702.150000px;}
.x44{left:723.930000px;}
@media print{
.v5{vertical-align:-62.826667pt;}
.v3{vertical-align:-59.520000pt;}
.v2{vertical-align:-16.000000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls12{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.230933pt;}
.ls7{letter-spacing:-0.208000pt;}
.lsb{letter-spacing:-0.183467pt;}
.ls14{letter-spacing:-0.094933pt;}
.ls15{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.047360pt;}
.ls19{letter-spacing:0.094720pt;}
.ls10{letter-spacing:0.096000pt;}
.lsa{letter-spacing:0.112000pt;}
.ls1a{letter-spacing:0.120533pt;}
.ls16{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.227733pt;}
.ls6{letter-spacing:0.230933pt;}
.lsc{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.640000pt;}
.ls1b{letter-spacing:17.376000pt;}
.ls13{letter-spacing:62.032640pt;}
.ls4{letter-spacing:69.712640pt;}
.ls1{letter-spacing:101.248000pt;}
.ls18{letter-spacing:255.040000pt;}
.lsf{letter-spacing:313.280000pt;}
.ws12{word-spacing:-53.120000pt;}
.ws13{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws10{word-spacing:-14.672427pt;}
.wsc{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.545600pt;}
.wsb{word-spacing:-13.534613pt;}
.ws7{word-spacing:-13.510933pt;}
.ws15{word-spacing:-13.344000pt;}
.ws14{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.264000pt;}
.ws0{word-spacing:-13.049067pt;}
.wsd{word-spacing:-12.960000pt;}
.ws11{word-spacing:-12.320000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws9{word-spacing:-10.848000pt;}
.wsa{word-spacing:-10.832000pt;}
.ws8{word-spacing:-10.640000pt;}
.ws1{word-spacing:-8.640000pt;}
.ws2{word-spacing:-8.000000pt;}
.ws5{word-spacing:0.000000pt;}
._d{margin-left:-3.164800pt;}
._8{margin-left:-2.256000pt;}
._0{margin-left:-0.973440pt;}
._1{width:1.102080pt;}
._7{width:2.544000pt;}
._4{width:3.709440pt;}
._2{width:4.848000pt;}
._3{width:6.013440pt;}
._5{width:7.536000pt;}
._10{width:8.512640pt;}
._a{width:9.402240pt;}
._9{width:10.677120pt;}
._e{width:12.288000pt;}
._6{width:13.585920pt;}
._11{width:14.687360pt;}
._16{width:17.642880pt;}
._15{width:18.672000pt;}
._12{width:21.141760pt;}
._14{width:40.955520pt;}
._f{width:51.858560pt;}
._b{width:69.872640pt;}
._c{width:97.664000pt;}
._13{width:128.142720pt;}
.fs3{font-size:32.000000pt;}
.fs2{font-size:34.560000pt;}
.fs7{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yac{bottom:3.200000pt;}
.y48{bottom:3.360000pt;}
.y114{bottom:4.000000pt;}
.y127{bottom:4.160000pt;}
.y119{bottom:9.266667pt;}
.y11e{bottom:9.906667pt;}
.y147{bottom:9.920000pt;}
.y11c{bottom:10.066667pt;}
.ya9{bottom:15.520000pt;}
.y49{bottom:15.680000pt;}
.y4b{bottom:17.920000pt;}
.yab{bottom:17.960000pt;}
.y47{bottom:18.080000pt;}
.y143{bottom:18.560000pt;}
.y141{bottom:18.720000pt;}
.y129{bottom:22.106667pt;}
.y118{bottom:22.266667pt;}
.y113{bottom:22.400000pt;}
.y11b{bottom:25.266667pt;}
.y146{bottom:25.280000pt;}
.y15d{bottom:33.960000pt;}
.y140{bottom:34.080000pt;}
.y145{bottom:40.640000pt;}
.y1b2{bottom:199.546667pt;}
.y198{bottom:202.426667pt;}
.y25{bottom:205.786667pt;}
.ya5{bottom:206.426667pt;}
.y136{bottom:208.186667pt;}
.ya1{bottom:209.146667pt;}
.y11d{bottom:209.800000pt;}
.y165{bottom:211.706667pt;}
.y1b1{bottom:214.266667pt;}
.y197{bottom:218.426667pt;}
.y24{bottom:221.786667pt;}
.ya4{bottom:222.426667pt;}
.y135{bottom:223.546667pt;}
.ya0{bottom:225.146667pt;}
.y8b{bottom:226.426667pt;}
.y102{bottom:227.706667pt;}
.y1b0{bottom:228.826667pt;}
.y168{bottom:230.266667pt;}
.ycd{bottom:231.226667pt;}
.y196{bottom:234.426667pt;}
.y23{bottom:237.786667pt;}
.ya3{bottom:238.426667pt;}
.y134{bottom:238.906667pt;}
.y11a{bottom:239.080000pt;}
.y9f{bottom:241.146667pt;}
.y8a{bottom:242.426667pt;}
.y1af{bottom:243.546667pt;}
.y101{bottom:243.706667pt;}
.ycc{bottom:247.226667pt;}
.y157{bottom:248.346667pt;}
.y167{bottom:249.946667pt;}
.y195{bottom:250.426667pt;}
.y22{bottom:253.786667pt;}
.y173{bottom:254.106667pt;}
.y133{bottom:254.266667pt;}
.yd9{bottom:254.426667pt;}
.y9e{bottom:257.146667pt;}
.y1ae{bottom:258.266667pt;}
.y89{bottom:258.426667pt;}
.y100{bottom:259.706667pt;}
.y4f{bottom:260.026667pt;}
.ycb{bottom:263.226667pt;}
.y156{bottom:264.346667pt;}
.ya2{bottom:264.986667pt;}
.y194{bottom:266.426667pt;}
.y132{bottom:269.466667pt;}
.y21{bottom:269.786667pt;}
.y172{bottom:270.106667pt;}
.yd8{bottom:270.426667pt;}
.y1ad{bottom:272.826667pt;}
.y9d{bottom:273.146667pt;}
.y88{bottom:274.426667pt;}
.y4e{bottom:275.226667pt;}
.yff{bottom:275.706667pt;}
.yca{bottom:278.906667pt;}
.y155{bottom:280.346667pt;}
.y193{bottom:282.426667pt;}
.y117{bottom:283.720000pt;}
.y171{bottom:286.106667pt;}
.yd7{bottom:286.426667pt;}
.y1ac{bottom:287.226667pt;}
.y9c{bottom:289.146667pt;}
.y87{bottom:290.426667pt;}
.y4d{bottom:290.586667pt;}
.yfe{bottom:291.706667pt;}
.yc9{bottom:295.226667pt;}
.y154{bottom:296.346667pt;}
.y192{bottom:298.426667pt;}
.y20{bottom:302.146667pt;}
.y1ab{bottom:302.306667pt;}
.yd6{bottom:302.466667pt;}
.y131{bottom:303.586667pt;}
.y61{bottom:303.746667pt;}
.y9b{bottom:305.186667pt;}
.y86{bottom:306.466667pt;}
.yfd{bottom:307.746667pt;}
.yc8{bottom:311.266667pt;}
.y153{bottom:312.386667pt;}
.y191{bottom:314.466667pt;}
.y1aa{bottom:317.186667pt;}
.y170{bottom:318.146667pt;}
.yd5{bottom:318.466667pt;}
.y60{bottom:320.706667pt;}
.y9a{bottom:321.186667pt;}
.y85{bottom:322.466667pt;}
.yfc{bottom:323.746667pt;}
.y4c{bottom:324.546667pt;}
.y116{bottom:325.346667pt;}
.yc7{bottom:327.266667pt;}
.y152{bottom:328.386667pt;}
.y190{bottom:330.466667pt;}
.y1a9{bottom:332.866667pt;}
.y16f{bottom:334.146667pt;}
.y99{bottom:337.186667pt;}
.y5f{bottom:337.506667pt;}
.y4a{bottom:337.986667pt;}
.y84{bottom:338.466667pt;}
.yfb{bottom:339.746667pt;}
.y115{bottom:341.346667pt;}
.yc6{bottom:343.266667pt;}
.y151{bottom:344.066667pt;}
.yd4{bottom:345.026667pt;}
.y1f{bottom:345.666667pt;}
.y18f{bottom:346.466667pt;}
.y1a8{bottom:347.586667pt;}
.y16e{bottom:350.146667pt;}
.y130{bottom:352.866667pt;}
.y98{bottom:353.186667pt;}
.y83{bottom:354.466667pt;}
.y5e{bottom:354.786667pt;}
.yfa{bottom:355.746667pt;}
.y112{bottom:357.346667pt;}
.yc5{bottom:359.266667pt;}
.y150{bottom:360.066667pt;}
.y1e{bottom:360.226667pt;}
.y1a7{bottom:362.306667pt;}
.y18e{bottom:362.466667pt;}
.y16d{bottom:362.946667pt;}
.y46{bottom:367.906667pt;}
.y97{bottom:369.186667pt;}
.y82{bottom:370.466667pt;}
.yf9{bottom:371.746667pt;}
.yc4{bottom:375.266667pt;}
.y14f{bottom:376.386667pt;}
.y1a6{bottom:376.866667pt;}
.y18d{bottom:378.466667pt;}
.y96{bottom:385.186667pt;}
.y81{bottom:386.466667pt;}
.y12f{bottom:386.946667pt;}
.yf8{bottom:387.746667pt;}
.y1d{bottom:389.666667pt;}
.yc3{bottom:391.266667pt;}
.y5d{bottom:391.586667pt;}
.y14e{bottom:392.386667pt;}
.y18c{bottom:394.466667pt;}
.y45{bottom:400.866667pt;}
.y95{bottom:401.186667pt;}
.y80{bottom:402.466667pt;}
.yf7{bottom:403.746667pt;}
.y1c{bottom:404.226667pt;}
.y1a5{bottom:406.306667pt;}
.y5c{bottom:406.946667pt;}
.yc2{bottom:407.266667pt;}
.y14d{bottom:408.386667pt;}
.y18b{bottom:410.466667pt;}
.y44{bottom:415.586667pt;}
.y111{bottom:416.706667pt;}
.y94{bottom:417.186667pt;}
.y7f{bottom:418.466667pt;}
.y1b{bottom:418.946667pt;}
.yf6{bottom:419.746667pt;}
.y12e{bottom:420.866667pt;}
.yc1{bottom:422.946667pt;}
.y14c{bottom:424.386667pt;}
.y18a{bottom:426.466667pt;}
.y43{bottom:430.466667pt;}
.y110{bottom:432.546667pt;}
.yd3{bottom:432.866667pt;}
.y93{bottom:433.186667pt;}
.y1a{bottom:433.666667pt;}
.y7e{bottom:434.466667pt;}
.y1a4{bottom:435.586667pt;}
.yf5{bottom:435.746667pt;}
.yc0{bottom:439.266667pt;}
.y5b{bottom:440.866667pt;}
.y189{bottom:442.466667pt;}
.y42{bottom:446.466667pt;}
.y19{bottom:448.226667pt;}
.y92{bottom:449.186667pt;}
.y1a3{bottom:450.306667pt;}
.y7d{bottom:450.466667pt;}
.yf4{bottom:451.746667pt;}
.y12d{bottom:454.946667pt;}
.ybf{bottom:455.266667pt;}
.y5a{bottom:456.226667pt;}
.y188{bottom:458.466667pt;}
.y14b{bottom:459.266667pt;}
.y41{bottom:462.466667pt;}
.y18{bottom:462.946667pt;}
.y1a2{bottom:464.866667pt;}
.y91{bottom:465.186667pt;}
.y7c{bottom:466.466667pt;}
.yf3{bottom:467.746667pt;}
.y10f{bottom:469.186667pt;}
.y12c{bottom:470.146667pt;}
.ybe{bottom:471.266667pt;}
.y59{bottom:471.586667pt;}
.y187{bottom:474.466667pt;}
.y14a{bottom:475.106667pt;}
.y17{bottom:477.666667pt;}
.y40{bottom:478.466667pt;}
.y1a1{bottom:479.586667pt;}
.y90{bottom:481.186667pt;}
.y7b{bottom:482.466667pt;}
.yf2{bottom:483.746667pt;}
.y10e{bottom:485.186667pt;}
.y12b{bottom:485.506667pt;}
.y58{bottom:486.946667pt;}
.ybd{bottom:487.266667pt;}
.y186{bottom:490.466667pt;}
.y149{bottom:491.106667pt;}
.y16{bottom:492.226667pt;}
.y1a0{bottom:494.306667pt;}
.y8f{bottom:497.186667pt;}
.y7a{bottom:498.466667pt;}
.yf1{bottom:499.746667pt;}
.y12a{bottom:500.866667pt;}
.y10d{bottom:501.186667pt;}
.y57{bottom:502.146667pt;}
.ybc{bottom:503.266667pt;}
.y3f{bottom:505.026667pt;}
.y15{bottom:506.946667pt;}
.y148{bottom:507.266667pt;}
.y19f{bottom:508.866667pt;}
.yd2{bottom:512.866667pt;}
.y8e{bottom:513.186667pt;}
.y79{bottom:514.466667pt;}
.yf0{bottom:515.746667pt;}
.y185{bottom:517.026667pt;}
.y10c{bottom:517.186667pt;}
.y56{bottom:517.506667pt;}
.ybb{bottom:519.266667pt;}
.y3e{bottom:520.866667pt;}
.y14{bottom:521.666667pt;}
.y19e{bottom:523.586667pt;}
.y8d{bottom:529.186667pt;}
.y78{bottom:530.466667pt;}
.y164{bottom:531.746667pt;}
.y128{bottom:532.226667pt;}
.y55{bottom:532.866667pt;}
.y10b{bottom:533.186667pt;}
.yba{bottom:535.266667pt;}
.y13{bottom:536.226667pt;}
.y19d{bottom:538.333333pt;}
.y144{bottom:539.293333pt;}
.yef{bottom:542.333333pt;}
.y166{bottom:544.893333pt;}
.y8c{bottom:545.213333pt;}
.y77{bottom:546.493333pt;}
.y163{bottom:547.773333pt;}
.y54{bottom:548.253333pt;}
.y10a{bottom:549.213333pt;}
.y12{bottom:550.973333pt;}
.yb9{bottom:551.293333pt;}
.y19c{bottom:552.893333pt;}
.y184{bottom:557.213333pt;}
.yee{bottom:558.173333pt;}
.y3d{bottom:561.213333pt;}
.y76{bottom:562.493333pt;}
.y162{bottom:563.773333pt;}
.y109{bottom:565.213333pt;}
.y11{bottom:565.693333pt;}
.yb8{bottom:567.293333pt;}
.y19b{bottom:567.613333pt;}
.y183{bottom:573.213333pt;}
.y3c{bottom:577.213333pt;}
.y75{bottom:578.493333pt;}
.y10{bottom:580.253333pt;}
.y108{bottom:581.213333pt;}
.y53{bottom:582.173333pt;}
.y19a{bottom:582.333333pt;}
.yb7{bottom:583.293333pt;}
.y182{bottom:589.213333pt;}
.y161{bottom:590.333333pt;}
.y126{bottom:592.733333pt;}
.y3b{bottom:593.213333pt;}
.y74{bottom:594.493333pt;}
.yf{bottom:594.973333pt;}
.y107{bottom:597.213333pt;}
.y52{bottom:598.013333pt;}
.yed{bottom:598.493333pt;}
.yb6{bottom:599.293333pt;}
.y181{bottom:605.213333pt;}
.yd1{bottom:608.893333pt;}
.y3a{bottom:609.213333pt;}
.ye{bottom:609.693333pt;}
.y73{bottom:610.493333pt;}
.y16c{bottom:612.093333pt;}
.y106{bottom:613.213333pt;}
.y199{bottom:613.533333pt;}
.yec{bottom:614.493333pt;}
.yb5{bottom:615.293333pt;}
.y180{bottom:621.213333pt;}
.yd{bottom:624.253333pt;}
.y39{bottom:625.213333pt;}
.y72{bottom:626.493333pt;}
.y16b{bottom:628.093333pt;}
.y105{bottom:629.213333pt;}
.y160{bottom:630.173333pt;}
.yeb{bottom:630.493333pt;}
.y142{bottom:630.653333pt;}
.yb4{bottom:631.293333pt;}
.y17f{bottom:637.213333pt;}
.y51{bottom:638.493333pt;}
.yc{bottom:638.973333pt;}
.y38{bottom:641.213333pt;}
.y71{bottom:642.493333pt;}
.y16a{bottom:644.093333pt;}
.y104{bottom:645.213333pt;}
.y15f{bottom:646.173333pt;}
.yea{bottom:646.493333pt;}
.yb3{bottom:647.293333pt;}
.y17e{bottom:653.213333pt;}
.yb{bottom:653.693333pt;}
.y125{bottom:654.493333pt;}
.y37{bottom:657.213333pt;}
.y70{bottom:658.493333pt;}
.y13f{bottom:661.853333pt;}
.ye9{bottom:662.493333pt;}
.yb2{bottom:663.293333pt;}
.ya{bottom:668.253333pt;}
.y17d{bottom:669.213333pt;}
.y124{bottom:670.493333pt;}
.y50{bottom:672.093333pt;}
.yd0{bottom:672.893333pt;}
.y36{bottom:673.213333pt;}
.y6f{bottom:674.493333pt;}
.y103{bottom:677.533333pt;}
.ye8{bottom:678.493333pt;}
.yb1{bottom:679.293333pt;}
.y169{bottom:681.053333pt;}
.y9{bottom:682.973333pt;}
.y17c{bottom:685.213333pt;}
.y123{bottom:686.493333pt;}
.y35{bottom:689.213333pt;}
.y6e{bottom:690.493333pt;}
.y15e{bottom:691.933333pt;}
.ye7{bottom:694.493333pt;}
.yb0{bottom:695.293333pt;}
.y8{bottom:697.533333pt;}
.y17b{bottom:701.213333pt;}
.y122{bottom:702.493333pt;}
.y34{bottom:705.213333pt;}
.y6d{bottom:706.493333pt;}
.ye6{bottom:710.493333pt;}
.yaf{bottom:711.293333pt;}
.y17a{bottom:717.213333pt;}
.y33{bottom:721.213333pt;}
.y6c{bottom:722.493333pt;}
.ye5{bottom:726.493333pt;}
.yae{bottom:727.293333pt;}
.y13e{bottom:730.493333pt;}
.y179{bottom:733.213333pt;}
.ycf{bottom:736.893333pt;}
.y32{bottom:737.213333pt;}
.y6b{bottom:738.493333pt;}
.y121{bottom:742.173333pt;}
.ye4{bottom:742.493333pt;}
.yad{bottom:743.293333pt;}
.y13d{bottom:745.693333pt;}
.y178{bottom:749.213333pt;}
.y15c{bottom:751.933333pt;}
.y7{bottom:752.093333pt;}
.y31{bottom:753.213333pt;}
.y6a{bottom:754.493333pt;}
.yaa{bottom:756.733333pt;}
.ye3{bottom:758.493333pt;}
.y177{bottom:765.213333pt;}
.y6{bottom:767.453333pt;}
.y30{bottom:769.213333pt;}
.y69{bottom:770.493333pt;}
.ye2{bottom:774.533333pt;}
.y13c{bottom:779.973333pt;}
.y176{bottom:781.253333pt;}
.y120{bottom:782.533333pt;}
.y2f{bottom:785.253333pt;}
.y5{bottom:785.733333pt;}
.y68{bottom:786.533333pt;}
.ya8{bottom:786.693333pt;}
.ye1{bottom:790.533333pt;}
.y13b{bottom:795.813333pt;}
.y175{bottom:797.253333pt;}
.y15b{bottom:798.693333pt;}
.y2e{bottom:801.253333pt;}
.ye0{bottom:806.533333pt;}
.y4{bottom:809.893333pt;}
.y67{bottom:813.093333pt;}
.y174{bottom:813.253333pt;}
.yce{bottom:816.933333pt;}
.y2d{bottom:817.253333pt;}
.y11f{bottom:817.413333pt;}
.ya7{bottom:819.813333pt;}
.ydf{bottom:822.533333pt;}
.y66{bottom:829.253333pt;}
.y15a{bottom:829.893333pt;}
.y13a{bottom:830.693333pt;}
.y2c{bottom:833.253333pt;}
.ya6{bottom:835.653333pt;}
.yde{bottom:838.533333pt;}
.y65{bottom:845.253333pt;}
.y2b{bottom:849.253333pt;}
.ydd{bottom:854.533333pt;}
.y3{bottom:858.213333pt;}
.y64{bottom:861.253333pt;}
.y139{bottom:864.613333pt;}
.y2a{bottom:865.253333pt;}
.ydc{bottom:870.533333pt;}
.y63{bottom:877.253333pt;}
.y138{bottom:879.973333pt;}
.y29{bottom:881.253333pt;}
.y2{bottom:882.213333pt;}
.ydb{bottom:886.533333pt;}
.y28{bottom:897.253333pt;}
.y159{bottom:898.373333pt;}
.y1{bottom:906.213333pt;}
.y62{bottom:909.573333pt;}
.yda{bottom:913.093333pt;}
.y27{bottom:913.253333pt;}
.y158{bottom:913.733333pt;}
.y137{bottom:914.053333pt;}
.y26{bottom:950.693333pt;}
.h1b{height:15.346667pt;}
.h1e{height:28.626667pt;}
.h10{height:29.266667pt;}
.h17{height:29.300000pt;}
.hd{height:29.426667pt;}
.h25{height:30.546667pt;}
.h22{height:30.560000pt;}
.h4{height:31.406250pt;}
.h5{height:31.992188pt;}
.h19{height:36.786667pt;}
.h1c{height:40.978667pt;}
.h1f{height:41.920000pt;}
.h14{height:43.782500pt;}
.h1d{height:43.986667pt;}
.h26{height:45.940000pt;}
.h24{height:46.066667pt;}
.h21{height:46.080000pt;}
.h16{height:47.085938pt;}
.h6{height:47.109375pt;}
.ha{height:47.621250pt;}
.he{height:47.742188pt;}
.h7{height:48.375000pt;}
.h27{height:50.062500pt;}
.h13{height:52.108438pt;}
.h9{height:52.134375pt;}
.h15{height:52.461875pt;}
.h3{height:52.478750pt;}
.h18{height:52.990313pt;}
.hc{height:53.535000pt;}
.hb{height:55.402500pt;}
.h12{height:57.758750pt;}
.h28{height:57.787500pt;}
.hf{height:58.563750pt;}
.h23{height:59.360000pt;}
.h20{height:59.866667pt;}
.h1a{height:62.812500pt;}
.h11{height:64.500000pt;}
.h8{height:66.750000pt;}
.h2{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:31.058667pt;}
.w10{width:32.338667pt;}
.w7{width:36.466667pt;}
.w4{width:36.480000pt;}
.w11{width:36.512000pt;}
.w8{width:36.626667pt;}
.w5{width:36.640000pt;}
.w12{width:36.658667pt;}
.w6{width:36.672000pt;}
.wa{width:36.786667pt;}
.w9{width:36.818667pt;}
.w2{width:55.826667pt;}
.w19{width:64.160000pt;}
.w17{width:67.858667pt;}
.wf{width:73.746667pt;}
.w1c{width:74.418667pt;}
.w14{width:78.400000pt;}
.we{width:82.098667pt;}
.w13{width:87.858667pt;}
.w1a{width:93.152000pt;}
.w15{width:94.592000pt;}
.w18{width:103.058667pt;}
.wc{width:103.360000pt;}
.w16{width:128.786667pt;}
.wb{width:131.378667pt;}
.w1b{width:134.066667pt;}
.wd{width:141.146667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:6.866667pt;}
.x39{left:8.306667pt;}
.x40{left:9.440000pt;}
.x23{left:10.386667pt;}
.x34{left:12.160000pt;}
.x3e{left:13.120000pt;}
.x42{left:15.026667pt;}
.x28{left:16.320000pt;}
.x1e{left:17.426667pt;}
.x20{left:19.200000pt;}
.x29{left:22.066667pt;}
.x2b{left:23.840000pt;}
.x26{left:25.586667pt;}
.x35{left:27.360000pt;}
.x24{left:29.106667pt;}
.x3b{left:30.560000pt;}
.x3a{left:32.000000pt;}
.x2c{left:33.106667pt;}
.x33{left:34.226667pt;}
.x21{left:37.440000pt;}
.x25{left:39.040000pt;}
.x2d{left:42.906667pt;}
.x27{left:46.866667pt;}
.x2a{left:49.920000pt;}
.x2f{left:147.720000pt;}
.x9{left:166.266667pt;}
.x4a{left:172.346667pt;}
.x47{left:174.586667pt;}
.x2{left:175.866667pt;}
.xa{left:181.466667pt;}
.x31{left:183.866667pt;}
.x5{left:188.506667pt;}
.x3c{left:191.866667pt;}
.x1b{left:196.826667pt;}
.x8{left:204.026667pt;}
.x1{left:211.866667pt;}
.x45{left:220.986667pt;}
.x30{left:222.120000pt;}
.xe{left:223.400000pt;}
.x4b{left:229.466667pt;}
.xf{left:255.106667pt;}
.x3d{left:270.626667pt;}
.x48{left:273.186667pt;}
.x4{left:290.786667pt;}
.x10{left:292.226667pt;}
.x1f{left:298.946667pt;}
.x6{left:306.786667pt;}
.x1d{left:309.026667pt;}
.xb{left:309.986667pt;}
.x32{left:313.506667pt;}
.x43{left:324.546667pt;}
.x46{left:326.306667pt;}
.x11{left:329.346667pt;}
.x36{left:334.466667pt;}
.x3f{left:335.586667pt;}
.xc{left:341.026667pt;}
.x1c{left:342.466667pt;}
.x3{left:348.066667pt;}
.x12{left:366.626667pt;}
.x7{left:396.866667pt;}
.x13{left:403.746667pt;}
.x37{left:429.706667pt;}
.x14{left:441.066667pt;}
.x15{left:478.186667pt;}
.x16{left:515.466667pt;}
.x22{left:544.746667pt;}
.x17{left:552.586667pt;}
.x38{left:559.146667pt;}
.x41{left:564.106667pt;}
.x18{left:590.213333pt;}
.x2e{left:615.653333pt;}
.x1a{left:618.853333pt;}
.x19{left:621.573333pt;}
.x49{left:624.133333pt;}
.x44{left:643.493333pt;}
}




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