
    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_f21a300064f6907994fe7cf6.woff')format("woff");}.ff1{font-family:ff1;line-height:1.073242;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_f6b3532ad00fa1a9803ab907.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_698c95c8820231579e54ed41.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_bc018873842da6d269cd6ef0.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_fd2398da2c8d7834c6cf5dde.woff')format("woff");}.ff5{font-family:ff5;line-height:1.065430;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_56ae0b9f44f398c26902a571.woff')format("woff");}.ff6{font-family:ff6;line-height:1.050293;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_4bbf4d6b01c63ca8204f5155.woff')format("woff");}.ff7{font-family:ff7;line-height:0.854980;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_83a062efebda2d4641eba8f1.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_61f01dbdd4a09f956cfd6e6f.woff')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-75.060000px;}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls1f{letter-spacing:-4.950000px;}
.ls20{letter-spacing:-4.632000px;}
.lsf{letter-spacing:-2.070000px;}
.ls18{letter-spacing:-1.440000px;}
.lsa{letter-spacing:-1.254000px;}
.lse{letter-spacing:-1.128000px;}
.lsb{letter-spacing:-0.942000px;}
.ls11{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.313800px;}
.ls3{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.184200px;}
.ls1{letter-spacing:0.218880px;}
.lsd{letter-spacing:0.498000px;}
.ls2{letter-spacing:0.547200px;}
.ls0{letter-spacing:0.720000px;}
.ls16{letter-spacing:0.840000px;}
.ls4{letter-spacing:2.160000px;}
.ls7{letter-spacing:6.480000px;}
.ls10{letter-spacing:7.920000px;}
.ls15{letter-spacing:9.360000px;}
.ls1d{letter-spacing:12.240000px;}
.ls14{letter-spacing:16.560000px;}
.ls12{letter-spacing:18.012000px;}
.ls8{letter-spacing:19.440000px;}
.ls17{letter-spacing:22.320000px;}
.ls13{letter-spacing:23.760000px;}
.ls19{letter-spacing:26.640000px;}
.ls6{letter-spacing:32.400000px;}
.ls1c{letter-spacing:38.280000px;}
.ls9{letter-spacing:59.760000px;}
.ls1a{letter-spacing:212.400000px;}
.ls1b{letter-spacing:231.171840px;}
.ls5{letter-spacing:357.996000px;}
.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;}
}
.ws2{word-spacing:-33.050880px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-16.560000px;}
.wsb{word-spacing:-15.120000px;}
.ws5{word-spacing:-14.227200px;}
.wsd{word-spacing:-14.178000px;}
.wse{word-spacing:-13.864200px;}
.ws4{word-spacing:-13.680000px;}
.ws9{word-spacing:-13.366200px;}
.ws8{word-spacing:-12.738000px;}
.ws10{word-spacing:-12.426000px;}
.wsc{word-spacing:-12.240000px;}
.ws1{word-spacing:-11.880000px;}
.wsa{word-spacing:-11.610000px;}
.wsf{word-spacing:-9.048000px;}
.ws3{word-spacing:-0.054720px;}
.ws7{word-spacing:0.000000px;}
._56{margin-left:-10.172160px;}
._57{margin-left:-8.594400px;}
._58{margin-left:-6.819840px;}
._55{margin-left:-5.650320px;}
._4{margin-left:-3.657600px;}
._1{margin-left:-1.753920px;}
._0{width:1.085760px;}
._2{width:2.088000px;}
._d{width:3.138720px;}
._3{width:4.190400px;}
._9{width:5.486880px;}
._a{width:6.952320px;}
._11{width:8.487360px;}
._c{width:9.743040px;}
._b{width:10.783200px;}
._1e{width:12.172320px;}
._16{width:14.824320px;}
._23{width:16.371840px;}
._25{width:18.021600px;}
._26{width:19.087200px;}
._15{width:20.116320px;}
._14{width:21.291840px;}
._2a{width:22.446720px;}
._6{width:24.367680px;}
._5{width:25.505280px;}
._22{width:27.144960px;}
._21{width:28.295040px;}
._2b{width:30.084480px;}
._28{width:31.207680px;}
._27{width:32.400000px;}
._13{width:34.367040px;}
._12{width:35.694720px;}
._2d{width:36.740160px;}
._2c{width:37.978560px;}
._4b{width:39.346560px;}
._37{width:40.717440px;}
._38{width:41.742720px;}
._19{width:43.833600px;}
._18{width:45.149760px;}
._17{width:46.244160px;}
._1c{width:47.502720px;}
._1d{width:49.086720px;}
._1a{width:50.290560px;}
._1b{width:51.563520px;}
._2f{width:53.058240px;}
._10{width:54.794880px;}
._8{width:56.612160px;}
._7{width:57.902400px;}
._4d{width:58.938240px;}
._31{width:60.341760px;}
._32{width:61.836480px;}
._35{width:63.216000px;}
._34{width:64.298880px;}
._4c{width:69.552000px;}
._44{width:70.903200px;}
._3e{width:73.097280px;}
._3d{width:74.764800px;}
._48{width:79.562880px;}
._e{width:94.458240px;}
._f{width:96.050400px;}
._40{width:99.221760px;}
._41{width:101.004480px;}
._2e{width:114.417120px;}
._24{width:125.038080px;}
._30{width:126.115200px;}
._29{width:128.050560px;}
._42{width:132.166080px;}
._43{width:133.416000px;}
._3c{width:134.841600px;}
._3b{width:136.800000px;}
._20{width:138.176640px;}
._1f{width:139.213440px;}
._3a{width:151.908480px;}
._4a{width:162.751680px;}
._4e{width:206.472960px;}
._50{width:212.774400px;}
._4f{width:214.079040px;}
._51{width:218.183520px;}
._39{width:219.594240px;}
._3f{width:244.506240px;}
._33{width:349.992000px;}
._47{width:386.830080px;}
._45{width:397.488960px;}
._46{width:399.087360px;}
._52{width:410.307840px;}
._53{width:411.672960px;}
._36{width:606.554880px;}
._54{width:787.720320px;}
._49{width:842.866560px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:47.520000px;}
.fs4{font-size:54.720000px;}
.fs3{font-size:60.480000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y36{bottom:155.190000px;}
.y51{bottom:160.230000px;}
.yf9{bottom:160.590000px;}
.y35{bottom:170.670000px;}
.y1bc{bottom:172.110000px;}
.yba{bottom:175.350000px;}
.y50{bottom:175.710000px;}
.yf8{bottom:176.430000px;}
.y17f{bottom:185.430000px;}
.y34{bottom:186.150000px;}
.y1bb{bottom:187.590000px;}
.y13f{bottom:189.030000px;}
.yb9{bottom:190.830000px;}
.y4f{bottom:191.190000px;}
.ye3{bottom:191.550000px;}
.yf7{bottom:193.350000px;}
.y17e{bottom:200.955000px;}
.y33{bottom:201.675000px;}
.y1ba{bottom:203.115000px;}
.y13e{bottom:204.555000px;}
.y10d{bottom:205.995000px;}
.y4e{bottom:206.715000px;}
.yf6{bottom:208.875000px;}
.y17d{bottom:216.435000px;}
.y32{bottom:217.155000px;}
.y1b9{bottom:218.595000px;}
.y13d{bottom:220.035000px;}
.ye2{bottom:221.475000px;}
.y4d{bottom:222.195000px;}
.yb8{bottom:223.635000px;}
.yf5{bottom:224.355000px;}
.y17c{bottom:232.275000px;}
.y31{bottom:232.995000px;}
.y1b8{bottom:234.075000px;}
.y13c{bottom:235.875000px;}
.y4c{bottom:237.675000px;}
.yb7{bottom:239.115000px;}
.y8a{bottom:239.835000px;}
.y15b{bottom:245.955000px;}
.y17b{bottom:247.755000px;}
.y30{bottom:248.475000px;}
.y1b7{bottom:249.555000px;}
.y13b{bottom:251.355000px;}
.y4b{bottom:253.155000px;}
.ye1{bottom:253.515000px;}
.yb6{bottom:254.595000px;}
.y89{bottom:255.315000px;}
.yf4{bottom:255.675000px;}
.y15a{bottom:261.435000px;}
.y17a{bottom:263.235000px;}
.y2f{bottom:263.955000px;}
.y1b6{bottom:265.395000px;}
.y13a{bottom:266.835000px;}
.y4a{bottom:268.995000px;}
.yb5{bottom:270.075000px;}
.y88{bottom:270.795000px;}
.yf3{bottom:271.155000px;}
.y159{bottom:277.275000px;}
.y179{bottom:278.715000px;}
.y2e{bottom:279.435000px;}
.y1b5{bottom:280.875000px;}
.y139{bottom:282.315000px;}
.y49{bottom:284.475000px;}
.yb4{bottom:285.555000px;}
.y87{bottom:286.275000px;}
.y158{bottom:292.755000px;}
.y178{bottom:294.195000px;}
.y1b4{bottom:296.355000px;}
.y138{bottom:297.795000px;}
.y48{bottom:299.955000px;}
.ye0{bottom:300.315000px;}
.yb3{bottom:301.035000px;}
.y86{bottom:301.755000px;}
.y2d{bottom:304.275000px;}
.yf2{bottom:304.635000px;}
.y157{bottom:308.235000px;}
.y177{bottom:309.675000px;}
.y1b3{bottom:311.835000px;}
.y137{bottom:313.275000px;}
.y47{bottom:315.435000px;}
.ydf{bottom:315.795000px;}
.yb2{bottom:316.515000px;}
.y85{bottom:317.595000px;}
.y10c{bottom:319.035000px;}
.y129{bottom:322.665000px;}
.y156{bottom:323.745000px;}
.y176{bottom:325.185000px;}
.yf1{bottom:325.905000px;}
.y1b2{bottom:327.345000px;}
.y2c{bottom:328.785000px;}
.y46{bottom:330.945000px;}
.yde{bottom:331.305000px;}
.yb1{bottom:332.385000px;}
.y84{bottom:333.105000px;}
.y128{bottom:338.145000px;}
.y155{bottom:339.225000px;}
.y10b{bottom:340.305000px;}
.y175{bottom:340.665000px;}
.y1b1{bottom:342.825000px;}
.y136{bottom:344.265000px;}
.y2b{bottom:344.625000px;}
.y45{bottom:346.425000px;}
.ydd{bottom:346.785000px;}
.yb0{bottom:347.865000px;}
.y83{bottom:348.585000px;}
.y127{bottom:353.625000px;}
.y154{bottom:354.705000px;}
.y174{bottom:356.505000px;}
.y1b0{bottom:358.305000px;}
.y2a{bottom:360.105000px;}
.y44{bottom:361.905000px;}
.ydc{bottom:362.265000px;}
.yaf{bottom:363.345000px;}
.y82{bottom:364.425000px;}
.y126{bottom:369.105000px;}
.y153{bottom:370.185000px;}
.y173{bottom:371.985000px;}
.y1af{bottom:373.785000px;}
.y29{bottom:375.585000px;}
.y43{bottom:377.385000px;}
.ydb{bottom:377.745000px;}
.yae{bottom:378.825000px;}
.y81{bottom:381.345000px;}
.y125{bottom:384.585000px;}
.y152{bottom:385.665000px;}
.y172{bottom:387.465000px;}
.y1ae{bottom:389.625000px;}
.y28{bottom:391.065000px;}
.y42{bottom:392.865000px;}
.yda{bottom:393.225000px;}
.yad{bottom:394.305000px;}
.y80{bottom:396.825000px;}
.y151{bottom:401.505000px;}
.y171{bottom:402.945000px;}
.y1ad{bottom:405.105000px;}
.y27{bottom:406.545000px;}
.y41{bottom:408.705000px;}
.yac{bottom:409.785000px;}
.y7f{bottom:412.305000px;}
.y124{bottom:418.065000px;}
.y170{bottom:418.425000px;}
.y1ac{bottom:420.585000px;}
.y26{bottom:422.025000px;}
.y40{bottom:424.185000px;}
.yd9{bottom:424.545000px;}
.yab{bottom:425.265000px;}
.y7e{bottom:427.785000px;}
.y16f{bottom:433.905000px;}
.y1ab{bottom:436.065000px;}
.y25{bottom:437.505000px;}
.y123{bottom:439.305000px;}
.y3f{bottom:439.665000px;}
.yd8{bottom:440.025000px;}
.yaa{bottom:440.745000px;}
.y7d{bottom:443.265000px;}
.y16e{bottom:449.430000px;}
.y1aa{bottom:451.590000px;}
.y24{bottom:453.030000px;}
.y150{bottom:454.830000px;}
.y3e{bottom:455.190000px;}
.yd7{bottom:455.550000px;}
.ya9{bottom:456.270000px;}
.y7c{bottom:458.790000px;}
.y16d{bottom:464.910000px;}
.y1a9{bottom:467.070000px;}
.y23{bottom:468.510000px;}
.y14f{bottom:470.310000px;}
.y3d{bottom:470.670000px;}
.yd6{bottom:471.030000px;}
.ya8{bottom:472.110000px;}
.y7b{bottom:474.630000px;}
.y16c{bottom:480.750000px;}
.y1a8{bottom:482.550000px;}
.y22{bottom:484.350000px;}
.y14e{bottom:486.150000px;}
.yd5{bottom:486.510000px;}
.ya7{bottom:487.590000px;}
.y7a{bottom:490.110000px;}
.y3c{bottom:495.510000px;}
.y16b{bottom:496.230000px;}
.y1a7{bottom:498.030000px;}
.y21{bottom:499.830000px;}
.y135{bottom:500.190000px;}
.y14d{bottom:501.630000px;}
.yd4{bottom:502.350000px;}
.ya6{bottom:503.070000px;}
.y79{bottom:505.590000px;}
.y16a{bottom:511.710000px;}
.y1a6{bottom:513.510000px;}
.y20{bottom:515.310000px;}
.y14c{bottom:517.110000px;}
.ya5{bottom:518.550000px;}
.yd3{bottom:519.270000px;}
.y78{bottom:521.070000px;}
.y3b{bottom:527.550000px;}
.y1a5{bottom:529.350000px;}
.y169{bottom:529.710000px;}
.y1f{bottom:530.790000px;}
.ya4{bottom:534.030000px;}
.yd2{bottom:534.750000px;}
.y134{bottom:535.110000px;}
.y77{bottom:536.550000px;}
.y1a4{bottom:544.830000px;}
.y1e{bottom:546.270000px;}
.ya3{bottom:549.510000px;}
.yd1{bottom:550.230000px;}
.y14b{bottom:550.590000px;}
.y76{bottom:552.030000px;}
.y133{bottom:556.350000px;}
.y1a3{bottom:560.310000px;}
.y1d{bottom:561.750000px;}
.ya2{bottom:564.990000px;}
.yd0{bottom:565.710000px;}
.y75{bottom:567.510000px;}
.y14a{bottom:571.830000px;}
.yf0{bottom:574.380000px;}
.y1a2{bottom:575.820000px;}
.y1c{bottom:577.260000px;}
.ya1{bottom:580.500000px;}
.ycf{bottom:581.580000px;}
.y74{bottom:583.020000px;}
.y168{bottom:583.380000px;}
.y1a1{bottom:591.300000px;}
.y1b{bottom:592.740000px;}
.ya0{bottom:596.340000px;}
.yce{bottom:597.060000px;}
.y73{bottom:598.860000px;}
.y1a0{bottom:606.780000px;}
.yef{bottom:607.860000px;}
.y3a{bottom:608.220000px;}
.y1a{bottom:608.580000px;}
.y9f{bottom:611.820000px;}
.ycd{bottom:612.540000px;}
.y72{bottom:614.340000px;}
.y19f{bottom:622.260000px;}
.yee{bottom:623.340000px;}
.y39{bottom:623.700000px;}
.y19{bottom:624.060000px;}
.y10a{bottom:625.860000px;}
.y9e{bottom:627.300000px;}
.ycc{bottom:628.020000px;}
.y71{bottom:629.820000px;}
.y122{bottom:631.980000px;}
.y19e{bottom:637.740000px;}
.yed{bottom:639.180000px;}
.y18{bottom:639.540000px;}
.y109{bottom:641.340000px;}
.y9d{bottom:643.140000px;}
.ycb{bottom:643.500000px;}
.y70{bottom:645.300000px;}
.y121{bottom:647.460000px;}
.y19d{bottom:653.580000px;}
.yec{bottom:654.660000px;}
.y17{bottom:655.020000px;}
.y108{bottom:657.180000px;}
.yca{bottom:658.980000px;}
.y9c{bottom:660.060000px;}
.y6f{bottom:660.780000px;}
.y120{bottom:662.940000px;}
.y19c{bottom:669.060000px;}
.yeb{bottom:670.140000px;}
.y16{bottom:670.500000px;}
.y107{bottom:672.660000px;}
.yc9{bottom:674.460000px;}
.y9b{bottom:675.540000px;}
.y6e{bottom:676.260000px;}
.y11f{bottom:678.420000px;}
.y19b{bottom:684.540000px;}
.yea{bottom:685.620000px;}
.y38{bottom:685.980000px;}
.y106{bottom:688.140000px;}
.yc8{bottom:689.940000px;}
.y9a{bottom:691.020000px;}
.y167{bottom:691.740000px;}
.y6d{bottom:692.100000px;}
.y11e{bottom:693.900000px;}
.y15{bottom:695.340000px;}
.y19a{bottom:700.050000px;}
.ye9{bottom:701.130000px;}
.y105{bottom:703.650000px;}
.y37{bottom:704.370000px;}
.yc7{bottom:705.810000px;}
.y99{bottom:706.530000px;}
.y166{bottom:707.250000px;}
.y6c{bottom:709.050000px;}
.y11d{bottom:709.410000px;}
.y199{bottom:715.530000px;}
.ye8{bottom:716.610000px;}
.y104{bottom:719.130000px;}
.y98{bottom:722.010000px;}
.y165{bottom:723.090000px;}
.y6b{bottom:724.530000px;}
.y11c{bottom:724.890000px;}
.y198{bottom:731.010000px;}
.ye7{bottom:732.090000px;}
.y103{bottom:734.610000px;}
.y14{bottom:735.690000px;}
.y97{bottom:737.490000px;}
.y164{bottom:738.570000px;}
.yc6{bottom:739.290000px;}
.y6a{bottom:740.010000px;}
.y11b{bottom:740.370000px;}
.y197{bottom:746.490000px;}
.ye6{bottom:747.570000px;}
.y102{bottom:750.090000px;}
.y13{bottom:751.170000px;}
.y96{bottom:753.330000px;}
.y163{bottom:754.050000px;}
.yc5{bottom:754.770000px;}
.y69{bottom:755.850000px;}
.y11a{bottom:756.210000px;}
.y196{bottom:761.970000px;}
.ye5{bottom:763.050000px;}
.y101{bottom:765.570000px;}
.y12{bottom:766.290000px;}
.y95{bottom:768.810000px;}
.y162{bottom:769.530000px;}
.y68{bottom:771.330000px;}
.y119{bottom:771.690000px;}
.yc4{bottom:776.010000px;}
.y195{bottom:777.810000px;}
.y100{bottom:781.050000px;}
.y11{bottom:781.770000px;}
.y94{bottom:784.290000px;}
.y161{bottom:785.010000px;}
.y67{bottom:786.810000px;}
.y118{bottom:787.170000px;}
.y149{bottom:788.970000px;}
.y194{bottom:793.290000px;}
.y132{bottom:796.530000px;}
.y10{bottom:796.890000px;}
.y93{bottom:799.770000px;}
.y160{bottom:800.490000px;}
.y66{bottom:802.650000px;}
.y148{bottom:804.450000px;}
.y193{bottom:808.770000px;}
.y131{bottom:812.010000px;}
.yff{bottom:812.370000px;}
.yf{bottom:812.730000px;}
.y92{bottom:815.250000px;}
.y15f{bottom:815.970000px;}
.ye4{bottom:818.130000px;}
.y147{bottom:819.930000px;}
.y192{bottom:824.250000px;}
.y130{bottom:827.535000px;}
.yfe{bottom:827.895000px;}
.ye{bottom:828.255000px;}
.y91{bottom:830.775000px;}
.y15e{bottom:831.495000px;}
.y117{bottom:833.655000px;}
.y146{bottom:835.455000px;}
.y191{bottom:839.775000px;}
.y65{bottom:840.135000px;}
.y12f{bottom:843.015000px;}
.y90{bottom:846.255000px;}
.y116{bottom:849.135000px;}
.y145{bottom:850.935000px;}
.y190{bottom:855.255000px;}
.y64{bottom:855.615000px;}
.yd{bottom:855.975000px;}
.y12e{bottom:858.495000px;}
.yfd{bottom:861.375000px;}
.y8f{bottom:861.735000px;}
.y115{bottom:864.615000px;}
.y15d{bottom:865.335000px;}
.y144{bottom:866.415000px;}
.yc{bottom:869.655000px;}
.y18f{bottom:870.735000px;}
.y63{bottom:871.455000px;}
.y12d{bottom:873.975000px;}
.y114{bottom:880.455000px;}
.y143{bottom:881.895000px;}
.yfc{bottom:882.615000px;}
.y18e{bottom:886.215000px;}
.y15c{bottom:886.575000px;}
.y62{bottom:886.935000px;}
.y12c{bottom:889.815000px;}
.y8e{bottom:895.575000px;}
.y113{bottom:895.935000px;}
.y142{bottom:897.735000px;}
.yb{bottom:899.175000px;}
.y18d{bottom:902.055000px;}
.y61{bottom:902.415000px;}
.y8d{bottom:911.055000px;}
.y112{bottom:911.415000px;}
.ya{bottom:916.455000px;}
.y18c{bottom:917.535000px;}
.y60{bottom:917.895000px;}
.y12b{bottom:926.175000px;}
.y111{bottom:926.895000px;}
.y141{bottom:931.215000px;}
.y8c{bottom:932.295000px;}
.y18b{bottom:933.015000px;}
.y5f{bottom:933.375000px;}
.y110{bottom:942.375000px;}
.y9{bottom:943.815000px;}
.y12a{bottom:947.055000px;}
.y18a{bottom:948.495000px;}
.y5e{bottom:948.855000px;}
.y140{bottom:952.485000px;}
.y8{bottom:957.885000px;}
.y189{bottom:964.005000px;}
.y5d{bottom:964.365000px;}
.y10f{bottom:973.365000px;}
.y7{bottom:978.405000px;}
.y188{bottom:979.485000px;}
.y5c{bottom:979.845000px;}
.y10e{bottom:988.845000px;}
.y187{bottom:994.965000px;}
.y5b{bottom:995.325000px;}
.y6{bottom:999.285000px;}
.yc3{bottom:1004.325000px;}
.y186{bottom:1010.445000px;}
.y5a{bottom:1011.165000px;}
.y5{bottom:1020.165000px;}
.y185{bottom:1025.925000px;}
.y59{bottom:1026.645000px;}
.yc2{bottom:1035.645000px;}
.y184{bottom:1041.765000px;}
.y58{bottom:1042.125000px;}
.y4{bottom:1044.285000px;}
.yc1{bottom:1051.125000px;}
.y183{bottom:1057.245000px;}
.y57{bottom:1057.605000px;}
.yc0{bottom:1066.605000px;}
.y3{bottom:1068.405000px;}
.y182{bottom:1072.725000px;}
.y56{bottom:1073.085000px;}
.ybf{bottom:1082.130000px;}
.y181{bottom:1088.250000px;}
.y55{bottom:1088.610000px;}
.y2{bottom:1092.570000px;}
.ybe{bottom:1097.610000px;}
.y54{bottom:1104.090000px;}
.y180{bottom:1106.970000px;}
.yfb{bottom:1110.210000px;}
.ybd{bottom:1113.090000px;}
.y1{bottom:1116.690000px;}
.y53{bottom:1119.570000px;}
.yfa{bottom:1127.490000px;}
.ybc{bottom:1128.570000px;}
.y8b{bottom:1142.970000px;}
.y52{bottom:1143.690000px;}
.ybb{bottom:1144.410000px;}
.h9{height:36.471094px;}
.h8{height:40.310156px;}
.hc{height:45.662344px;}
.h11{height:46.490625px;}
.h6{height:46.638281px;}
.hf{height:53.677969px;}
.hb{height:53.704687px;}
.hd{height:55.147500px;}
.h10{height:56.243537px;}
.he{height:59.357813px;}
.h7{height:60.082031px;}
.ha{height:66.757500px;}
.h4{height:70.664062px;}
.h2{height:71.611875px;}
.h5{height:73.998281px;}
.h3{height:84.172500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:84.995987px;}
.x15{left:106.595987px;}
.x7{left:114.515987px;}
.x1a{left:140.111987px;}
.x21{left:146.231987px;}
.x1e{left:151.634987px;}
.x9{left:162.434987px;}
.xa{left:172.154987px;}
.x1{left:182.594987px;}
.x4{left:186.194987px;}
.x1c{left:197.354987px;}
.x16{left:208.154987px;}
.x5{left:213.554987px;}
.xf{left:222.584987px;}
.xd{left:229.784987px;}
.x2{left:254.264987px;}
.xb{left:289.544987px;}
.x8{left:343.229987px;}
.xc{left:345.029987px;}
.x14{left:425.339987px;}
.x6{left:446.579987px;}
.x1b{left:449.819987px;}
.x3{left:462.059987px;}
.x10{left:467.819987px;}
.x13{left:489.449987px;}
.x23{left:496.649987px;}
.x1d{left:534.089987px;}
.x19{left:535.169987px;}
.x18{left:543.089987px;}
.x20{left:565.409987px;}
.x1f{left:569.369987px;}
.x22{left:598.214987px;}
.x11{left:611.894987px;}
.x12{left:807.449987px;}
.x17{left:820.049987px;}
@media print{
.v3{vertical-align:-66.720000pt;}
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls1f{letter-spacing:-4.400000pt;}
.ls20{letter-spacing:-4.117333pt;}
.lsf{letter-spacing:-1.840000pt;}
.ls18{letter-spacing:-1.280000pt;}
.lsa{letter-spacing:-1.114667pt;}
.lse{letter-spacing:-1.002667pt;}
.lsb{letter-spacing:-0.837333pt;}
.ls11{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.278933pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.163733pt;}
.ls1{letter-spacing:0.194560pt;}
.lsd{letter-spacing:0.442667pt;}
.ls2{letter-spacing:0.486400pt;}
.ls0{letter-spacing:0.640000pt;}
.ls16{letter-spacing:0.746667pt;}
.ls4{letter-spacing:1.920000pt;}
.ls7{letter-spacing:5.760000pt;}
.ls10{letter-spacing:7.040000pt;}
.ls15{letter-spacing:8.320000pt;}
.ls1d{letter-spacing:10.880000pt;}
.ls14{letter-spacing:14.720000pt;}
.ls12{letter-spacing:16.010667pt;}
.ls8{letter-spacing:17.280000pt;}
.ls17{letter-spacing:19.840000pt;}
.ls13{letter-spacing:21.120000pt;}
.ls19{letter-spacing:23.680000pt;}
.ls6{letter-spacing:28.800000pt;}
.ls1c{letter-spacing:34.026667pt;}
.ls9{letter-spacing:53.120000pt;}
.ls1a{letter-spacing:188.800000pt;}
.ls1b{letter-spacing:205.486080pt;}
.ls5{letter-spacing:318.218667pt;}
.ws2{word-spacing:-29.378560pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-14.720000pt;}
.wsb{word-spacing:-13.440000pt;}
.ws5{word-spacing:-12.646400pt;}
.wsd{word-spacing:-12.602667pt;}
.wse{word-spacing:-12.323733pt;}
.ws4{word-spacing:-12.160000pt;}
.ws9{word-spacing:-11.881067pt;}
.ws8{word-spacing:-11.322667pt;}
.ws10{word-spacing:-11.045333pt;}
.wsc{word-spacing:-10.880000pt;}
.ws1{word-spacing:-10.560000pt;}
.wsa{word-spacing:-10.320000pt;}
.wsf{word-spacing:-8.042667pt;}
.ws3{word-spacing:-0.048640pt;}
.ws7{word-spacing:0.000000pt;}
._56{margin-left:-9.041920pt;}
._57{margin-left:-7.639467pt;}
._58{margin-left:-6.062080pt;}
._55{margin-left:-5.022507pt;}
._4{margin-left:-3.251200pt;}
._1{margin-left:-1.559040pt;}
._0{width:0.965120pt;}
._2{width:1.856000pt;}
._d{width:2.789973pt;}
._3{width:3.724800pt;}
._9{width:4.877227pt;}
._a{width:6.179840pt;}
._11{width:7.544320pt;}
._c{width:8.660480pt;}
._b{width:9.585067pt;}
._1e{width:10.819840pt;}
._16{width:13.177173pt;}
._23{width:14.552747pt;}
._25{width:16.019200pt;}
._26{width:16.966400pt;}
._15{width:17.881173pt;}
._14{width:18.926080pt;}
._2a{width:19.952640pt;}
._6{width:21.660160pt;}
._5{width:22.671360pt;}
._22{width:24.128853pt;}
._21{width:25.151147pt;}
._2b{width:26.741760pt;}
._28{width:27.740160pt;}
._27{width:28.800000pt;}
._13{width:30.548480pt;}
._12{width:31.728640pt;}
._2d{width:32.657920pt;}
._2c{width:33.758720pt;}
._4b{width:34.974720pt;}
._37{width:36.193280pt;}
._38{width:37.104640pt;}
._19{width:38.963200pt;}
._18{width:40.133120pt;}
._17{width:41.105920pt;}
._1c{width:42.224640pt;}
._1d{width:43.632640pt;}
._1a{width:44.702720pt;}
._1b{width:45.834240pt;}
._2f{width:47.162880pt;}
._10{width:48.706560pt;}
._8{width:50.321920pt;}
._7{width:51.468800pt;}
._4d{width:52.389547pt;}
._31{width:53.637120pt;}
._32{width:54.965760pt;}
._35{width:56.192000pt;}
._34{width:57.154560pt;}
._4c{width:61.824000pt;}
._44{width:63.025067pt;}
._3e{width:64.975360pt;}
._3d{width:66.457600pt;}
._48{width:70.722560pt;}
._e{width:83.962880pt;}
._f{width:85.378133pt;}
._40{width:88.197120pt;}
._41{width:89.781760pt;}
._2e{width:101.704107pt;}
._24{width:111.144960pt;}
._30{width:112.102400pt;}
._29{width:113.822720pt;}
._42{width:117.480960pt;}
._43{width:118.592000pt;}
._3c{width:119.859200pt;}
._3b{width:121.600000pt;}
._20{width:122.823680pt;}
._1f{width:123.745280pt;}
._3a{width:135.029760pt;}
._4a{width:144.668160pt;}
._4e{width:183.531520pt;}
._50{width:189.132800pt;}
._4f{width:190.292480pt;}
._51{width:193.940907pt;}
._39{width:195.194880pt;}
._3f{width:217.338880pt;}
._33{width:311.104000pt;}
._47{width:343.848960pt;}
._45{width:353.323520pt;}
._46{width:354.744320pt;}
._52{width:364.718080pt;}
._53{width:365.931520pt;}
._36{width:539.159893pt;}
._54{width:700.195840pt;}
._49{width:749.214720pt;}
.fs2{font-size:42.240000pt;}
.fs4{font-size:48.640000pt;}
.fs3{font-size:53.760000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:137.946667pt;}
.y51{bottom:142.426667pt;}
.yf9{bottom:142.746667pt;}
.y35{bottom:151.706667pt;}
.y1bc{bottom:152.986667pt;}
.yba{bottom:155.866667pt;}
.y50{bottom:156.186667pt;}
.yf8{bottom:156.826667pt;}
.y17f{bottom:164.826667pt;}
.y34{bottom:165.466667pt;}
.y1bb{bottom:166.746667pt;}
.y13f{bottom:168.026667pt;}
.yb9{bottom:169.626667pt;}
.y4f{bottom:169.946667pt;}
.ye3{bottom:170.266667pt;}
.yf7{bottom:171.866667pt;}
.y17e{bottom:178.626667pt;}
.y33{bottom:179.266667pt;}
.y1ba{bottom:180.546667pt;}
.y13e{bottom:181.826667pt;}
.y10d{bottom:183.106667pt;}
.y4e{bottom:183.746667pt;}
.yf6{bottom:185.666667pt;}
.y17d{bottom:192.386667pt;}
.y32{bottom:193.026667pt;}
.y1b9{bottom:194.306667pt;}
.y13d{bottom:195.586667pt;}
.ye2{bottom:196.866667pt;}
.y4d{bottom:197.506667pt;}
.yb8{bottom:198.786667pt;}
.yf5{bottom:199.426667pt;}
.y17c{bottom:206.466667pt;}
.y31{bottom:207.106667pt;}
.y1b8{bottom:208.066667pt;}
.y13c{bottom:209.666667pt;}
.y4c{bottom:211.266667pt;}
.yb7{bottom:212.546667pt;}
.y8a{bottom:213.186667pt;}
.y15b{bottom:218.626667pt;}
.y17b{bottom:220.226667pt;}
.y30{bottom:220.866667pt;}
.y1b7{bottom:221.826667pt;}
.y13b{bottom:223.426667pt;}
.y4b{bottom:225.026667pt;}
.ye1{bottom:225.346667pt;}
.yb6{bottom:226.306667pt;}
.y89{bottom:226.946667pt;}
.yf4{bottom:227.266667pt;}
.y15a{bottom:232.386667pt;}
.y17a{bottom:233.986667pt;}
.y2f{bottom:234.626667pt;}
.y1b6{bottom:235.906667pt;}
.y13a{bottom:237.186667pt;}
.y4a{bottom:239.106667pt;}
.yb5{bottom:240.066667pt;}
.y88{bottom:240.706667pt;}
.yf3{bottom:241.026667pt;}
.y159{bottom:246.466667pt;}
.y179{bottom:247.746667pt;}
.y2e{bottom:248.386667pt;}
.y1b5{bottom:249.666667pt;}
.y139{bottom:250.946667pt;}
.y49{bottom:252.866667pt;}
.yb4{bottom:253.826667pt;}
.y87{bottom:254.466667pt;}
.y158{bottom:260.226667pt;}
.y178{bottom:261.506667pt;}
.y1b4{bottom:263.426667pt;}
.y138{bottom:264.706667pt;}
.y48{bottom:266.626667pt;}
.ye0{bottom:266.946667pt;}
.yb3{bottom:267.586667pt;}
.y86{bottom:268.226667pt;}
.y2d{bottom:270.466667pt;}
.yf2{bottom:270.786667pt;}
.y157{bottom:273.986667pt;}
.y177{bottom:275.266667pt;}
.y1b3{bottom:277.186667pt;}
.y137{bottom:278.466667pt;}
.y47{bottom:280.386667pt;}
.ydf{bottom:280.706667pt;}
.yb2{bottom:281.346667pt;}
.y85{bottom:282.306667pt;}
.y10c{bottom:283.586667pt;}
.y129{bottom:286.813333pt;}
.y156{bottom:287.773333pt;}
.y176{bottom:289.053333pt;}
.yf1{bottom:289.693333pt;}
.y1b2{bottom:290.973333pt;}
.y2c{bottom:292.253333pt;}
.y46{bottom:294.173333pt;}
.yde{bottom:294.493333pt;}
.yb1{bottom:295.453333pt;}
.y84{bottom:296.093333pt;}
.y128{bottom:300.573333pt;}
.y155{bottom:301.533333pt;}
.y10b{bottom:302.493333pt;}
.y175{bottom:302.813333pt;}
.y1b1{bottom:304.733333pt;}
.y136{bottom:306.013333pt;}
.y2b{bottom:306.333333pt;}
.y45{bottom:307.933333pt;}
.ydd{bottom:308.253333pt;}
.yb0{bottom:309.213333pt;}
.y83{bottom:309.853333pt;}
.y127{bottom:314.333333pt;}
.y154{bottom:315.293333pt;}
.y174{bottom:316.893333pt;}
.y1b0{bottom:318.493333pt;}
.y2a{bottom:320.093333pt;}
.y44{bottom:321.693333pt;}
.ydc{bottom:322.013333pt;}
.yaf{bottom:322.973333pt;}
.y82{bottom:323.933333pt;}
.y126{bottom:328.093333pt;}
.y153{bottom:329.053333pt;}
.y173{bottom:330.653333pt;}
.y1af{bottom:332.253333pt;}
.y29{bottom:333.853333pt;}
.y43{bottom:335.453333pt;}
.ydb{bottom:335.773333pt;}
.yae{bottom:336.733333pt;}
.y81{bottom:338.973333pt;}
.y125{bottom:341.853333pt;}
.y152{bottom:342.813333pt;}
.y172{bottom:344.413333pt;}
.y1ae{bottom:346.333333pt;}
.y28{bottom:347.613333pt;}
.y42{bottom:349.213333pt;}
.yda{bottom:349.533333pt;}
.yad{bottom:350.493333pt;}
.y80{bottom:352.733333pt;}
.y151{bottom:356.893333pt;}
.y171{bottom:358.173333pt;}
.y1ad{bottom:360.093333pt;}
.y27{bottom:361.373333pt;}
.y41{bottom:363.293333pt;}
.yac{bottom:364.253333pt;}
.y7f{bottom:366.493333pt;}
.y124{bottom:371.613333pt;}
.y170{bottom:371.933333pt;}
.y1ac{bottom:373.853333pt;}
.y26{bottom:375.133333pt;}
.y40{bottom:377.053333pt;}
.yd9{bottom:377.373333pt;}
.yab{bottom:378.013333pt;}
.y7e{bottom:380.253333pt;}
.y16f{bottom:385.693333pt;}
.y1ab{bottom:387.613333pt;}
.y25{bottom:388.893333pt;}
.y123{bottom:390.493333pt;}
.y3f{bottom:390.813333pt;}
.yd8{bottom:391.133333pt;}
.yaa{bottom:391.773333pt;}
.y7d{bottom:394.013333pt;}
.y16e{bottom:399.493333pt;}
.y1aa{bottom:401.413333pt;}
.y24{bottom:402.693333pt;}
.y150{bottom:404.293333pt;}
.y3e{bottom:404.613333pt;}
.yd7{bottom:404.933333pt;}
.ya9{bottom:405.573333pt;}
.y7c{bottom:407.813333pt;}
.y16d{bottom:413.253333pt;}
.y1a9{bottom:415.173333pt;}
.y23{bottom:416.453333pt;}
.y14f{bottom:418.053333pt;}
.y3d{bottom:418.373333pt;}
.yd6{bottom:418.693333pt;}
.ya8{bottom:419.653333pt;}
.y7b{bottom:421.893333pt;}
.y16c{bottom:427.333333pt;}
.y1a8{bottom:428.933333pt;}
.y22{bottom:430.533333pt;}
.y14e{bottom:432.133333pt;}
.yd5{bottom:432.453333pt;}
.ya7{bottom:433.413333pt;}
.y7a{bottom:435.653333pt;}
.y3c{bottom:440.453333pt;}
.y16b{bottom:441.093333pt;}
.y1a7{bottom:442.693333pt;}
.y21{bottom:444.293333pt;}
.y135{bottom:444.613333pt;}
.y14d{bottom:445.893333pt;}
.yd4{bottom:446.533333pt;}
.ya6{bottom:447.173333pt;}
.y79{bottom:449.413333pt;}
.y16a{bottom:454.853333pt;}
.y1a6{bottom:456.453333pt;}
.y20{bottom:458.053333pt;}
.y14c{bottom:459.653333pt;}
.ya5{bottom:460.933333pt;}
.yd3{bottom:461.573333pt;}
.y78{bottom:463.173333pt;}
.y3b{bottom:468.933333pt;}
.y1a5{bottom:470.533333pt;}
.y169{bottom:470.853333pt;}
.y1f{bottom:471.813333pt;}
.ya4{bottom:474.693333pt;}
.yd2{bottom:475.333333pt;}
.y134{bottom:475.653333pt;}
.y77{bottom:476.933333pt;}
.y1a4{bottom:484.293333pt;}
.y1e{bottom:485.573333pt;}
.ya3{bottom:488.453333pt;}
.yd1{bottom:489.093333pt;}
.y14b{bottom:489.413333pt;}
.y76{bottom:490.693333pt;}
.y133{bottom:494.533333pt;}
.y1a3{bottom:498.053333pt;}
.y1d{bottom:499.333333pt;}
.ya2{bottom:502.213333pt;}
.yd0{bottom:502.853333pt;}
.y75{bottom:504.453333pt;}
.y14a{bottom:508.293333pt;}
.yf0{bottom:510.560000pt;}
.y1a2{bottom:511.840000pt;}
.y1c{bottom:513.120000pt;}
.ya1{bottom:516.000000pt;}
.ycf{bottom:516.960000pt;}
.y74{bottom:518.240000pt;}
.y168{bottom:518.560000pt;}
.y1a1{bottom:525.600000pt;}
.y1b{bottom:526.880000pt;}
.ya0{bottom:530.080000pt;}
.yce{bottom:530.720000pt;}
.y73{bottom:532.320000pt;}
.y1a0{bottom:539.360000pt;}
.yef{bottom:540.320000pt;}
.y3a{bottom:540.640000pt;}
.y1a{bottom:540.960000pt;}
.y9f{bottom:543.840000pt;}
.ycd{bottom:544.480000pt;}
.y72{bottom:546.080000pt;}
.y19f{bottom:553.120000pt;}
.yee{bottom:554.080000pt;}
.y39{bottom:554.400000pt;}
.y19{bottom:554.720000pt;}
.y10a{bottom:556.320000pt;}
.y9e{bottom:557.600000pt;}
.ycc{bottom:558.240000pt;}
.y71{bottom:559.840000pt;}
.y122{bottom:561.760000pt;}
.y19e{bottom:566.880000pt;}
.yed{bottom:568.160000pt;}
.y18{bottom:568.480000pt;}
.y109{bottom:570.080000pt;}
.y9d{bottom:571.680000pt;}
.ycb{bottom:572.000000pt;}
.y70{bottom:573.600000pt;}
.y121{bottom:575.520000pt;}
.y19d{bottom:580.960000pt;}
.yec{bottom:581.920000pt;}
.y17{bottom:582.240000pt;}
.y108{bottom:584.160000pt;}
.yca{bottom:585.760000pt;}
.y9c{bottom:586.720000pt;}
.y6f{bottom:587.360000pt;}
.y120{bottom:589.280000pt;}
.y19c{bottom:594.720000pt;}
.yeb{bottom:595.680000pt;}
.y16{bottom:596.000000pt;}
.y107{bottom:597.920000pt;}
.yc9{bottom:599.520000pt;}
.y9b{bottom:600.480000pt;}
.y6e{bottom:601.120000pt;}
.y11f{bottom:603.040000pt;}
.y19b{bottom:608.480000pt;}
.yea{bottom:609.440000pt;}
.y38{bottom:609.760000pt;}
.y106{bottom:611.680000pt;}
.yc8{bottom:613.280000pt;}
.y9a{bottom:614.240000pt;}
.y167{bottom:614.880000pt;}
.y6d{bottom:615.200000pt;}
.y11e{bottom:616.800000pt;}
.y15{bottom:618.080000pt;}
.y19a{bottom:622.266667pt;}
.ye9{bottom:623.226667pt;}
.y105{bottom:625.466667pt;}
.y37{bottom:626.106667pt;}
.yc7{bottom:627.386667pt;}
.y99{bottom:628.026667pt;}
.y166{bottom:628.666667pt;}
.y6c{bottom:630.266667pt;}
.y11d{bottom:630.586667pt;}
.y199{bottom:636.026667pt;}
.ye8{bottom:636.986667pt;}
.y104{bottom:639.226667pt;}
.y98{bottom:641.786667pt;}
.y165{bottom:642.746667pt;}
.y6b{bottom:644.026667pt;}
.y11c{bottom:644.346667pt;}
.y198{bottom:649.786667pt;}
.ye7{bottom:650.746667pt;}
.y103{bottom:652.986667pt;}
.y14{bottom:653.946667pt;}
.y97{bottom:655.546667pt;}
.y164{bottom:656.506667pt;}
.yc6{bottom:657.146667pt;}
.y6a{bottom:657.786667pt;}
.y11b{bottom:658.106667pt;}
.y197{bottom:663.546667pt;}
.ye6{bottom:664.506667pt;}
.y102{bottom:666.746667pt;}
.y13{bottom:667.706667pt;}
.y96{bottom:669.626667pt;}
.y163{bottom:670.266667pt;}
.yc5{bottom:670.906667pt;}
.y69{bottom:671.866667pt;}
.y11a{bottom:672.186667pt;}
.y196{bottom:677.306667pt;}
.ye5{bottom:678.266667pt;}
.y101{bottom:680.506667pt;}
.y12{bottom:681.146667pt;}
.y95{bottom:683.386667pt;}
.y162{bottom:684.026667pt;}
.y68{bottom:685.626667pt;}
.y119{bottom:685.946667pt;}
.yc4{bottom:689.786667pt;}
.y195{bottom:691.386667pt;}
.y100{bottom:694.266667pt;}
.y11{bottom:694.906667pt;}
.y94{bottom:697.146667pt;}
.y161{bottom:697.786667pt;}
.y67{bottom:699.386667pt;}
.y118{bottom:699.706667pt;}
.y149{bottom:701.306667pt;}
.y194{bottom:705.146667pt;}
.y132{bottom:708.026667pt;}
.y10{bottom:708.346667pt;}
.y93{bottom:710.906667pt;}
.y160{bottom:711.546667pt;}
.y66{bottom:713.466667pt;}
.y148{bottom:715.066667pt;}
.y193{bottom:718.906667pt;}
.y131{bottom:721.786667pt;}
.yff{bottom:722.106667pt;}
.yf{bottom:722.426667pt;}
.y92{bottom:724.666667pt;}
.y15f{bottom:725.306667pt;}
.ye4{bottom:727.226667pt;}
.y147{bottom:728.826667pt;}
.y192{bottom:732.666667pt;}
.y130{bottom:735.586667pt;}
.yfe{bottom:735.906667pt;}
.ye{bottom:736.226667pt;}
.y91{bottom:738.466667pt;}
.y15e{bottom:739.106667pt;}
.y117{bottom:741.026667pt;}
.y146{bottom:742.626667pt;}
.y191{bottom:746.466667pt;}
.y65{bottom:746.786667pt;}
.y12f{bottom:749.346667pt;}
.y90{bottom:752.226667pt;}
.y116{bottom:754.786667pt;}
.y145{bottom:756.386667pt;}
.y190{bottom:760.226667pt;}
.y64{bottom:760.546667pt;}
.yd{bottom:760.866667pt;}
.y12e{bottom:763.106667pt;}
.yfd{bottom:765.666667pt;}
.y8f{bottom:765.986667pt;}
.y115{bottom:768.546667pt;}
.y15d{bottom:769.186667pt;}
.y144{bottom:770.146667pt;}
.yc{bottom:773.026667pt;}
.y18f{bottom:773.986667pt;}
.y63{bottom:774.626667pt;}
.y12d{bottom:776.866667pt;}
.y114{bottom:782.626667pt;}
.y143{bottom:783.906667pt;}
.yfc{bottom:784.546667pt;}
.y18e{bottom:787.746667pt;}
.y15c{bottom:788.066667pt;}
.y62{bottom:788.386667pt;}
.y12c{bottom:790.946667pt;}
.y8e{bottom:796.066667pt;}
.y113{bottom:796.386667pt;}
.y142{bottom:797.986667pt;}
.yb{bottom:799.266667pt;}
.y18d{bottom:801.826667pt;}
.y61{bottom:802.146667pt;}
.y8d{bottom:809.826667pt;}
.y112{bottom:810.146667pt;}
.ya{bottom:814.626667pt;}
.y18c{bottom:815.586667pt;}
.y60{bottom:815.906667pt;}
.y12b{bottom:823.266667pt;}
.y111{bottom:823.906667pt;}
.y141{bottom:827.746667pt;}
.y8c{bottom:828.706667pt;}
.y18b{bottom:829.346667pt;}
.y5f{bottom:829.666667pt;}
.y110{bottom:837.666667pt;}
.y9{bottom:838.946667pt;}
.y12a{bottom:841.826667pt;}
.y18a{bottom:843.106667pt;}
.y5e{bottom:843.426667pt;}
.y140{bottom:846.653333pt;}
.y8{bottom:851.453333pt;}
.y189{bottom:856.893333pt;}
.y5d{bottom:857.213333pt;}
.y10f{bottom:865.213333pt;}
.y7{bottom:869.693333pt;}
.y188{bottom:870.653333pt;}
.y5c{bottom:870.973333pt;}
.y10e{bottom:878.973333pt;}
.y187{bottom:884.413333pt;}
.y5b{bottom:884.733333pt;}
.y6{bottom:888.253333pt;}
.yc3{bottom:892.733333pt;}
.y186{bottom:898.173333pt;}
.y5a{bottom:898.813333pt;}
.y5{bottom:906.813333pt;}
.y185{bottom:911.933333pt;}
.y59{bottom:912.573333pt;}
.yc2{bottom:920.573333pt;}
.y184{bottom:926.013333pt;}
.y58{bottom:926.333333pt;}
.y4{bottom:928.253333pt;}
.yc1{bottom:934.333333pt;}
.y183{bottom:939.773333pt;}
.y57{bottom:940.093333pt;}
.yc0{bottom:948.093333pt;}
.y3{bottom:949.693333pt;}
.y182{bottom:953.533333pt;}
.y56{bottom:953.853333pt;}
.ybf{bottom:961.893333pt;}
.y181{bottom:967.333333pt;}
.y55{bottom:967.653333pt;}
.y2{bottom:971.173333pt;}
.ybe{bottom:975.653333pt;}
.y54{bottom:981.413333pt;}
.y180{bottom:983.973333pt;}
.yfb{bottom:986.853333pt;}
.ybd{bottom:989.413333pt;}
.y1{bottom:992.613333pt;}
.y53{bottom:995.173333pt;}
.yfa{bottom:1002.213333pt;}
.ybc{bottom:1003.173333pt;}
.y8b{bottom:1015.973333pt;}
.y52{bottom:1016.613333pt;}
.ybb{bottom:1017.253333pt;}
.h9{height:32.418750pt;}
.h8{height:35.831250pt;}
.hc{height:40.588750pt;}
.h11{height:41.325000pt;}
.h6{height:41.456250pt;}
.hf{height:47.713750pt;}
.hb{height:47.737500pt;}
.hd{height:49.020000pt;}
.h10{height:49.994255pt;}
.he{height:52.762500pt;}
.h7{height:53.406250pt;}
.ha{height:59.340000pt;}
.h4{height:62.812500pt;}
.h2{height:63.655000pt;}
.h5{height:65.776250pt;}
.h3{height:74.820000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:75.551988pt;}
.x15{left:94.751988pt;}
.x7{left:101.791988pt;}
.x1a{left:124.543988pt;}
.x21{left:129.983988pt;}
.x1e{left:134.786655pt;}
.x9{left:144.386655pt;}
.xa{left:153.026655pt;}
.x1{left:162.306655pt;}
.x4{left:165.506655pt;}
.x1c{left:175.426655pt;}
.x16{left:185.026655pt;}
.x5{left:189.826655pt;}
.xf{left:197.853322pt;}
.xd{left:204.253322pt;}
.x2{left:226.013322pt;}
.xb{left:257.373322pt;}
.x8{left:305.093322pt;}
.xc{left:306.693322pt;}
.x14{left:378.079988pt;}
.x6{left:396.959988pt;}
.x1b{left:399.839988pt;}
.x3{left:410.719988pt;}
.x10{left:415.839988pt;}
.x13{left:435.066655pt;}
.x23{left:441.466655pt;}
.x1d{left:474.746655pt;}
.x19{left:475.706655pt;}
.x18{left:482.746655pt;}
.x20{left:502.586655pt;}
.x1f{left:506.106655pt;}
.x22{left:531.746655pt;}
.x11{left:543.906655pt;}
.x12{left:717.733322pt;}
.x17{left:728.933322pt;}
}




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