
    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_af7802402d4dbcc936328dda.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2349d0121e7ccbfef74ed683.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_7c5fb23f07fb54fdbd8ff4b1.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_321c541be9f3c47ae349eee5.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9443384c5c1a60ed9ea4bca8.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_445b009d8dd4c4ce875e7770.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_303c6916c71c85c646da4d14.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7019496217b26568450bd83a.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d6e87a579037fa49d947a23a.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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b5e81bb560c5e16226045e91.woff')format("woff");}.ffa{font-family:ffa;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_4df01dcafe39759d60c52f7f.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_02400cc3d3922ff4ccc303fe.woff')format("woff");}.ffc{font-family:ffc;line-height:1.435059;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_b56a0e0ae3776c387bd8002d.woff')format("woff");}.ffd{font-family:ffd;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-77.040000px;}
.v2{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-1.008000px;}
.ls8{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.612000px;}
.ls11{letter-spacing:-0.540000px;}
.ls16{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.126000px;}
.lsc{letter-spacing:-0.108000px;}
.ls9{letter-spacing:-0.008640px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.017280px;}
.lsa{letter-spacing:0.018000px;}
.lse{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.149760px;}
.ls2{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.360000px;}
.lsb{letter-spacing:11.628000px;}
.ls14{letter-spacing:25.308000px;}
.ls3{letter-spacing:28.062720px;}
.ls10{letter-spacing:52.668000px;}
.lsd{letter-spacing:79.308000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-19.457280px;}
.ws4{word-spacing:-19.440000px;}
.ws2{word-spacing:-16.560000px;}
.ws3{word-spacing:-15.840000px;}
.ws1{word-spacing:-15.199800px;}
.ws0{word-spacing:-14.940000px;}
.wsc{word-spacing:-13.860000px;}
.wse{word-spacing:-13.716000px;}
.wsa{word-spacing:-13.608000px;}
.ws9{word-spacing:-13.500000px;}
.ws7{word-spacing:-13.392000px;}
.wsf{word-spacing:-13.374000px;}
.wsd{word-spacing:-13.284000px;}
.ws10{word-spacing:-13.140000px;}
.wsb{word-spacing:-12.888000px;}
.ws8{word-spacing:-9.000000px;}
.ws6{word-spacing:0.000000px;}
._0{margin-left:-1.134000px;}
._1{width:1.002000px;}
._6{width:2.016240px;}
._e{width:3.058800px;}
._b{width:4.320000px;}
._a{width:5.832000px;}
._c{width:7.128000px;}
._8{width:8.262000px;}
._d{width:10.260000px;}
._15{width:11.442480px;}
._f{width:12.503760px;}
._14{width:14.656080px;}
._10{width:15.955920px;}
._1c{width:17.442000px;}
._9{width:18.576000px;}
._13{width:20.304000px;}
._7{width:21.330000px;}
._11{width:22.896000px;}
._25{width:23.952000px;}
._1a{width:25.164000px;}
._19{width:26.622000px;}
._1e{width:28.620000px;}
._21{width:29.940000px;}
._22{width:31.266000px;}
._23{width:32.670000px;}
._24{width:33.750000px;}
._2a{width:34.992000px;}
._20{width:36.180000px;}
._28{width:37.290000px;}
._27{width:38.664000px;}
._12{width:40.662000px;}
._26{width:42.048000px;}
._1d{width:43.434000px;}
._1b{width:47.574000px;}
._16{width:48.708000px;}
._17{width:50.220000px;}
._18{width:51.840000px;}
._1f{width:54.378000px;}
._33{width:59.424000px;}
._32{width:60.684000px;}
._3{width:78.192000px;}
._31{width:79.542000px;}
._39{width:82.134000px;}
._38{width:83.592000px;}
._3b{width:93.096000px;}
._36{width:104.868000px;}
._35{width:106.380000px;}
._3e{width:112.320000px;}
._3f{width:113.454000px;}
._3a{width:114.480000px;}
._3c{width:115.590000px;}
._2c{width:125.868000px;}
._2e{width:147.954000px;}
._4{width:157.860000px;}
._40{width:163.752000px;}
._29{width:166.536000px;}
._42{width:305.814000px;}
._41{width:307.098000px;}
._43{width:358.668000px;}
._2f{width:412.452000px;}
._2d{width:640.992000px;}
._2b{width:658.956000px;}
._44{width:665.472000px;}
._3d{width:677.160000px;}
._34{width:679.698000px;}
._37{width:712.980000px;}
._30{width:821.682000px;}
._2{width:1032.240000px;}
._5{width:1224.300000px;}
.fc6{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.060000px;}
.y11a{bottom:9.720000px;}
.y13a{bottom:9.750000px;}
.y15c{bottom:9.900000px;}
.y13d{bottom:10.065000px;}
.y120{bottom:10.080000px;}
.y162{bottom:10.125000px;}
.y11c{bottom:10.260000px;}
.y11e{bottom:10.620000px;}
.y140{bottom:13.665000px;}
.y4{bottom:15.660000px;}
.y2{bottom:18.900000px;}
.y13c{bottom:27.885000px;}
.y13f{bottom:31.665000px;}
.y5{bottom:39.780000px;}
.y1{bottom:60.660000px;}
.y3a{bottom:70.590000px;}
.y39{bottom:90.390000px;}
.y2f{bottom:103.140000px;}
.y158{bottom:103.500000px;}
.ya1{bottom:107.100000px;}
.yd4{bottom:108.000000px;}
.y38{bottom:110.370000px;}
.y2c{bottom:112.140000px;}
.y14c{bottom:112.500000px;}
.y93{bottom:116.100000px;}
.y76{bottom:117.000000px;}
.y18c{bottom:118.440000px;}
.y2e{bottom:120.960000px;}
.y157{bottom:121.500000px;}
.ya0{bottom:125.100000px;}
.y1c3{bottom:125.280000px;}
.yd3{bottom:125.820000px;}
.y2b{bottom:129.960000px;}
.y37{bottom:130.170000px;}
.y14b{bottom:130.320000px;}
.y92{bottom:133.920000px;}
.yf6{bottom:134.100000px;}
.y75{bottom:134.820000px;}
.y18b{bottom:136.260000px;}
.y2d{bottom:138.780000px;}
.y156{bottom:139.320000px;}
.y9f{bottom:142.920000px;}
.y1c2{bottom:143.100000px;}
.yd2{bottom:143.640000px;}
.y2a{bottom:147.780000px;}
.y14a{bottom:148.140000px;}
.y36{bottom:149.970000px;}
.y91{bottom:151.740000px;}
.yf5{bottom:151.920000px;}
.y74{bottom:152.640000px;}
.y18a{bottom:154.080000px;}
.y155{bottom:157.140000px;}
.y9e{bottom:160.740000px;}
.yd1{bottom:161.100000px;}
.y29{bottom:165.600000px;}
.y90{bottom:169.560000px;}
.yf4{bottom:169.740000px;}
.y35{bottom:169.770000px;}
.y73{bottom:170.460000px;}
.y149{bottom:174.960000px;}
.y9d{bottom:178.560000px;}
.y1c1{bottom:178.920000px;}
.y189{bottom:180.900000px;}
.y28{bottom:183.420000px;}
.y8f{bottom:187.380000px;}
.yf3{bottom:187.560000px;}
.y72{bottom:188.280000px;}
.y34{bottom:189.615000px;}
.y148{bottom:192.780000px;}
.y9c{bottom:196.380000px;}
.y1c0{bottom:196.740000px;}
.y188{bottom:198.900000px;}
.y27{bottom:201.420000px;}
.y154{bottom:201.780000px;}
.y115{bottom:205.200000px;}
.yf2{bottom:205.410000px;}
.y71{bottom:206.310000px;}
.y33{bottom:209.595000px;}
.y147{bottom:210.810000px;}
.y8e{bottom:214.230000px;}
.y1bf{bottom:214.590000px;}
.y187{bottom:216.750000px;}
.y153{bottom:219.810000px;}
.y26{bottom:221.250000px;}
.yf1{bottom:223.230000px;}
.y70{bottom:224.130000px;}
.y146{bottom:228.630000px;}
.y32{bottom:229.395000px;}
.y8d{bottom:232.230000px;}
.y1be{bottom:232.410000px;}
.y186{bottom:234.570000px;}
.y152{bottom:237.630000px;}
.y114{bottom:241.050000px;}
.yf0{bottom:241.230000px;}
.yd0{bottom:241.590000px;}
.y6f{bottom:241.950000px;}
.y145{bottom:246.450000px;}
.y8c{bottom:250.050000px;}
.y1bd{bottom:250.230000px;}
.y185{bottom:252.390000px;}
.y151{bottom:255.450000px;}
.y113{bottom:258.870000px;}
.yef{bottom:259.050000px;}
.y31{bottom:259.635000px;}
.y6e{bottom:259.770000px;}
.y144{bottom:264.270000px;}
.y8b{bottom:267.870000px;}
.y1bc{bottom:268.230000px;}
.ycf{bottom:268.770000px;}
.y184{bottom:270.210000px;}
.y25{bottom:271.650000px;}
.y150{bottom:273.270000px;}
.y30{bottom:275.220000px;}
.y112{bottom:276.690000px;}
.yee{bottom:276.870000px;}
.y6d{bottom:277.590000px;}
.y143{bottom:282.090000px;}
.y8a{bottom:285.690000px;}
.y1bb{bottom:286.050000px;}
.yce{bottom:286.590000px;}
.y183{bottom:288.210000px;}
.y14f{bottom:291.090000px;}
.y111{bottom:294.510000px;}
.y9b{bottom:294.690000px;}
.y6c{bottom:295.410000px;}
.y3c{bottom:296.850000px;}
.y24{bottom:298.470000px;}
.y142{bottom:299.910000px;}
.y89{bottom:303.510000px;}
.y1ba{bottom:303.870000px;}
.ycd{bottom:304.410000px;}
.y182{bottom:306.030000px;}
.y14e{bottom:308.910000px;}
.yed{bottom:312.150000px;}
.y9a{bottom:312.510000px;}
.y6b{bottom:313.050000px;}
.y141{bottom:317.910000px;}
.y88{bottom:321.510000px;}
.y1b9{bottom:321.690000px;}
.ycc{bottom:322.410000px;}
.y181{bottom:323.850000px;}
.y23{bottom:325.290000px;}
.y3b{bottom:326.010000px;}
.y14d{bottom:326.910000px;}
.y110{bottom:330.330000px;}
.y99{bottom:330.510000px;}
.y6a{bottom:333.210000px;}
.y87{bottom:339.330000px;}
.yec{bottom:339.510000px;}
.y13e{bottom:339.885000px;}
.ycb{bottom:340.230000px;}
.y180{bottom:341.670000px;}
.y98{bottom:348.330000px;}
.y22{bottom:352.290000px;}
.y86{bottom:357.150000px;}
.yeb{bottom:357.330000px;}
.y1b8{bottom:357.510000px;}
.yca{bottom:358.050000px;}
.y17f{bottom:359.490000px;}
.y69{bottom:365.970000px;}
.y97{bottom:366.150000px;}
.y85{bottom:374.610000px;}
.y10f{bottom:374.970000px;}
.yea{bottom:375.150000px;}
.y1b7{bottom:375.330000px;}
.yc9{bottom:375.870000px;}
.y195{bottom:377.310000px;}
.y21{bottom:379.110000px;}
.y68{bottom:383.790000px;}
.y96{bottom:383.970000px;}
.y17e{bottom:386.310000px;}
.y13b{bottom:389.025000px;}
.y10e{bottom:392.790000px;}
.ye9{bottom:392.970000px;}
.y1b6{bottom:393.150000px;}
.yc8{bottom:393.690000px;}
.y194{bottom:395.310000px;}
.y67{bottom:401.610000px;}
.y84{bottom:401.790000px;}
.y17d{bottom:404.310000px;}
.y20{bottom:405.930000px;}
.y10d{bottom:410.610000px;}
.ye8{bottom:410.790000px;}
.y1b5{bottom:410.970000px;}
.yc7{bottom:411.690000px;}
.y193{bottom:413.130000px;}
.y1c4{bottom:419.430000px;}
.y83{bottom:419.610000px;}
.y17c{bottom:422.130000px;}
.y66{bottom:428.610000px;}
.y1b4{bottom:428.790000px;}
.yc6{bottom:429.510000px;}
.y192{bottom:430.590000px;}
.y1f{bottom:433.110000px;}
.y139{bottom:434.385000px;}
.y82{bottom:437.610000px;}
.y17b{bottom:439.950000px;}
.y65{bottom:446.475000px;}
.ye7{bottom:446.655000px;}
.yc5{bottom:447.375000px;}
.y81{bottom:455.475000px;}
.y17a{bottom:457.815000px;}
.y1e{bottom:459.975000px;}
.y64{bottom:464.295000px;}
.ye6{bottom:464.475000px;}
.y1b3{bottom:464.655000px;}
.y138{bottom:467.715000px;}
.y80{bottom:473.295000px;}
.yc4{bottom:474.195000px;}
.y179{bottom:475.635000px;}
.y10c{bottom:482.115000px;}
.ye5{bottom:482.295000px;}
.y1b2{bottom:482.475000px;}
.y1d{bottom:486.795000px;}
.y63{bottom:491.115000px;}
.yc3{bottom:492.015000px;}
.y178{bottom:493.635000px;}
.y137{bottom:494.175000px;}
.y10b{bottom:499.935000px;}
.ye4{bottom:500.115000px;}
.y1b1{bottom:500.295000px;}
.y62{bottom:508.935000px;}
.yc2{bottom:509.835000px;}
.y177{bottom:511.455000px;}
.y1b{bottom:513.795000px;}
.ye3{bottom:517.935000px;}
.y1b0{bottom:518.115000px;}
.y133{bottom:521.355000px;}
.y61{bottom:526.935000px;}
.yc1{bottom:527.835000px;}
.y176{bottom:529.275000px;}
.y10a{bottom:535.755000px;}
.ye2{bottom:535.935000px;}
.y132{bottom:539.175000px;}
.y1a{bottom:540.615000px;}
.y60{bottom:544.755000px;}
.yc0{bottom:545.655000px;}
.y175{bottom:547.095000px;}
.y109{bottom:553.575000px;}
.ye1{bottom:553.755000px;}
.y1af{bottom:553.935000px;}
.y131{bottom:557.175000px;}
.y5f{bottom:562.575000px;}
.ybf{bottom:563.475000px;}
.y174{bottom:564.915000px;}
.y19{bottom:567.075000px;}
.y1c{bottom:567.435000px;}
.y108{bottom:571.395000px;}
.ye0{bottom:571.575000px;}
.y1ae{bottom:571.755000px;}
.y130{bottom:574.995000px;}
.y5e{bottom:580.395000px;}
.ybe{bottom:581.295000px;}
.y173{bottom:582.735000px;}
.y107{bottom:589.215000px;}
.ydf{bottom:589.395000px;}
.y1ad{bottom:589.575000px;}
.y12f{bottom:592.815000px;}
.y18{bottom:595.515000px;}
.y5d{bottom:598.215000px;}
.ybd{bottom:599.115000px;}
.y172{bottom:600.735000px;}
.y106{bottom:606.675000px;}
.y95{bottom:607.215000px;}
.y1ac{bottom:607.395000px;}
.y12e{bottom:610.635000px;}
.y5c{bottom:616.035000px;}
.ybc{bottom:616.755000px;}
.y191{bottom:618.555000px;}
.y17{bottom:621.795000px;}
.y19b{bottom:624.675000px;}
.y94{bottom:625.035000px;}
.y1ab{bottom:625.215000px;}
.y171{bottom:627.555000px;}
.y7f{bottom:634.035000px;}
.y190{bottom:636.375000px;}
.y12d{bottom:637.455000px;}
.y5b{bottom:643.035000px;}
.ybb{bottom:643.935000px;}
.y170{bottom:645.375000px;}
.y7e{bottom:651.855000px;}
.y19a{bottom:652.035000px;}
.y16{bottom:652.755000px;}
.y18f{bottom:654.195000px;}
.y12c{bottom:655.275000px;}
.yde{bottom:660.495000px;}
.y5a{bottom:660.855000px;}
.y1aa{bottom:661.035000px;}
.yba{bottom:661.755000px;}
.y16f{bottom:663.195000px;}
.y7d{bottom:669.675000px;}
.y199{bottom:669.855000px;}
.y18e{bottom:672.015000px;}
.y12b{bottom:673.275000px;}
.y59{bottom:678.705000px;}
.y1a9{bottom:678.885000px;}
.yb9{bottom:679.605000px;}
.y16e{bottom:681.045000px;}
.y7c{bottom:687.525000px;}
.ydd{bottom:687.705000px;}
.y12a{bottom:691.125000px;}
.y58{bottom:696.525000px;}
.y1a8{bottom:696.705000px;}
.yb8{bottom:697.425000px;}
.y16d{bottom:699.045000px;}
.y15{bottom:701.565000px;}
.y105{bottom:705.345000px;}
.ydc{bottom:705.525000px;}
.y129{bottom:708.945000px;}
.y57{bottom:714.345000px;}
.y1a7{bottom:714.525000px;}
.yb7{bottom:715.245000px;}
.y16c{bottom:716.865000px;}
.y104{bottom:723.165000px;}
.ydb{bottom:723.345000px;}
.y128{bottom:726.765000px;}
.y56{bottom:732.165000px;}
.y1a6{bottom:732.345000px;}
.yb6{bottom:733.245000px;}
.y16b{bottom:734.685000px;}
.yda{bottom:741.165000px;}
.y127{bottom:744.585000px;}
.y14{bottom:749.985000px;}
.y55{bottom:750.165000px;}
.y16a{bottom:752.505000px;}
.y103{bottom:758.985000px;}
.yd9{bottom:759.165000px;}
.yb5{bottom:760.065000px;}
.y126{bottom:762.405000px;}
.y54{bottom:767.985000px;}
.y1a5{bottom:768.165000px;}
.y169{bottom:770.325000px;}
.y102{bottom:776.805000px;}
.yd8{bottom:776.985000px;}
.yb4{bottom:777.885000px;}
.y125{bottom:780.405000px;}
.y53{bottom:785.805000px;}
.y1a4{bottom:785.985000px;}
.y168{bottom:788.145000px;}
.y101{bottom:794.625000px;}
.yd7{bottom:794.805000px;}
.yb3{bottom:795.705000px;}
.y124{bottom:798.225000px;}
.y13{bottom:800.565000px;}
.y52{bottom:803.625000px;}
.y1a3{bottom:803.805000px;}
.y167{bottom:806.145000px;}
.y136{bottom:807.225000px;}
.yd6{bottom:812.625000px;}
.yb2{bottom:813.525000px;}
.y123{bottom:816.045000px;}
.y7b{bottom:821.445000px;}
.y1a2{bottom:821.625000px;}
.y166{bottom:823.965000px;}
.y135{bottom:825.045000px;}
.y12{bottom:828.465000px;}
.y51{bottom:830.445000px;}
.yb1{bottom:831.345000px;}
.y122{bottom:833.865000px;}
.y7a{bottom:839.445000px;}
.y165{bottom:841.785000px;}
.y134{bottom:842.865000px;}
.y50{bottom:848.445000px;}
.yb0{bottom:849.345000px;}
.y121{bottom:855.825000px;}
.y79{bottom:857.265000px;}
.y1a1{bottom:857.445000px;}
.y164{bottom:859.245000px;}
.y18d{bottom:859.605000px;}
.y4f{bottom:866.265000px;}
.yaf{bottom:867.165000px;}
.y163{bottom:872.565000px;}
.y11{bottom:874.545000px;}
.y100{bottom:875.085000px;}
.y1a0{bottom:875.265000px;}
.y11f{bottom:883.545000px;}
.y4e{bottom:884.085000px;}
.yae{bottom:884.985000px;}
.yff{bottom:892.905000px;}
.y19f{bottom:893.085000px;}
.y10{bottom:899.745000px;}
.y161{bottom:900.285000px;}
.y4d{bottom:901.905000px;}
.yad{bottom:902.805000px;}
.yfe{bottom:910.770000px;}
.y19e{bottom:910.950000px;}
.y11d{bottom:911.130000px;}
.yf{bottom:919.590000px;}
.y4c{bottom:919.770000px;}
.yac{bottom:920.670000px;}
.y160{bottom:927.870000px;}
.yfd{bottom:928.590000px;}
.y19d{bottom:928.770000px;}
.y4b{bottom:937.590000px;}
.y11b{bottom:939.210000px;}
.ye{bottom:939.570000px;}
.yfc{bottom:946.590000px;}
.yab{bottom:947.670000px;}
.y15f{bottom:955.410000px;}
.y4a{bottom:955.590000px;}
.yd{bottom:959.010000px;}
.y19c{bottom:964.590000px;}
.yaa{bottom:965.490000px;}
.y119{bottom:966.930000px;}
.y49{bottom:973.410000px;}
.yc{bottom:979.170000px;}
.y198{bottom:982.410000px;}
.y15e{bottom:983.130000px;}
.ya9{bottom:983.310000px;}
.y48{bottom:991.230000px;}
.y118{bottom:1000.050000px;}
.y197{bottom:1000.230000px;}
.ya8{bottom:1001.130000px;}
.y47{bottom:1009.050000px;}
.y15d{bottom:1010.670000px;}
.y196{bottom:1018.050000px;}
.ya7{bottom:1018.950000px;}
.yb{bottom:1019.130000px;}
.y117{bottom:1026.510000px;}
.y78{bottom:1026.870000px;}
.ya{bottom:1031.190000px;}
.y46{bottom:1035.870000px;}
.ya6{bottom:1036.770000px;}
.y15b{bottom:1038.210000px;}
.y9{bottom:1043.250000px;}
.yd5{bottom:1044.510000px;}
.y77{bottom:1044.870000px;}
.y45{bottom:1053.870000px;}
.ya5{bottom:1054.770000px;}
.y8{bottom:1055.310000px;}
.yfb{bottom:1062.690000px;}
.y7{bottom:1069.890000px;}
.y15a{bottom:1071.510000px;}
.y44{bottom:1071.690000px;}
.ya4{bottom:1072.590000px;}
.yfa{bottom:1080.510000px;}
.y43{bottom:1089.510000px;}
.ya3{bottom:1090.050000px;}
.y6{bottom:1095.450000px;}
.y159{bottom:1097.970000px;}
.yf9{bottom:1098.330000px;}
.y42{bottom:1107.330000px;}
.ya2{bottom:1110.210000px;}
.yf8{bottom:1116.150000px;}
.y41{bottom:1125.150000px;}
.yf7{bottom:1133.610000px;}
.y40{bottom:1142.970000px;}
.y3f{bottom:1161.000000px;}
.y3e{bottom:1178.820000px;}
.y116{bottom:1196.280000px;}
.y3d{bottom:1196.640000px;}
.h15{height:26.820000px;}
.h1a{height:26.841000px;}
.h18{height:26.856000px;}
.h16{height:27.000000px;}
.h17{height:27.360000px;}
.h2{height:31.135500px;}
.h7{height:40.985156px;}
.h1b{height:44.625000px;}
.h1c{height:48.405000px;}
.h19{height:48.410156px;}
.h14{height:52.971680px;}
.h3{height:52.998047px;}
.hd{height:54.421875px;}
.h13{height:55.503491px;}
.h12{height:56.214844px;}
.h11{height:58.621992px;}
.h8{height:58.651172px;}
.h9{height:60.226875px;}
.hc{height:65.010937px;}
.h4{height:65.884219px;}
.hb{height:66.757500px;}
.h10{height:78.367500px;}
.he{height:80.949375px;}
.ha{height:82.676953px;}
.h5{height:84.898125px;}
.h6{height:90.703125px;}
.hf{height:286.920000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:55.605000px;}
.w11{width:55.650000px;}
.w3{width:80.310000px;}
.wc{width:106.041000px;}
.w5{width:123.862500px;}
.wb{width:137.556000px;}
.w9{width:138.982500px;}
.wd{width:153.930000px;}
.w7{width:199.695000px;}
.we{width:200.725500px;}
.w8{width:208.110000px;}
.wa{width:236.190000px;}
.w6{width:241.410000px;}
.wf{width:466.485000px;}
.w2{width:722.115000px;}
.w4{width:811.620000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:7.560000px;}
.x3{left:8.635500px;}
.x13{left:10.800000px;}
.x12{left:38.340000px;}
.x1{left:45.364500px;}
.x14{left:49.140000px;}
.x5{left:54.000000px;}
.xb{left:56.880000px;}
.x19{left:58.864500px;}
.x11{left:81.000000px;}
.x15{left:107.136000px;}
.xc{left:143.676000px;}
.xe{left:157.710000px;}
.x1a{left:183.450000px;}
.x1e{left:198.390000px;}
.x2{left:222.370500px;}
.x23{left:257.790000px;}
.x22{left:270.795000px;}
.x8{left:281.775000px;}
.x6{left:285.735000px;}
.x9{left:297.795000px;}
.x18{left:302.835000px;}
.xf{left:314.355000px;}
.xd{left:336.315000px;}
.x1d{left:343.155000px;}
.x7{left:364.395000px;}
.xa{left:378.795000px;}
.x17{left:424.875000px;}
.x1f{left:435.315000px;}
.x10{left:473.505000px;}
.x16{left:500.505000px;}
.x26{left:527.505000px;}
.x20{left:573.600000px;}
.x1b{left:626.190000px;}
.x21{left:680.550000px;}
.x24{left:725.010000px;}
.x4{left:767.490000px;}
.x25{left:781.350000px;}
@media print{
.v1{vertical-align:-68.480000pt;}
.v2{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.896000pt;}
.ls8{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.544000pt;}
.ls11{letter-spacing:-0.480000pt;}
.ls16{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.112000pt;}
.lsc{letter-spacing:-0.096000pt;}
.ls9{letter-spacing:-0.007680pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.015360pt;}
.lsa{letter-spacing:0.016000pt;}
.lse{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls2{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.320000pt;}
.lsb{letter-spacing:10.336000pt;}
.ls14{letter-spacing:22.496000pt;}
.ls3{letter-spacing:24.944640pt;}
.ls10{letter-spacing:46.816000pt;}
.lsd{letter-spacing:70.496000pt;}
.ws5{word-spacing:-17.295360pt;}
.ws4{word-spacing:-17.280000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.080000pt;}
.ws1{word-spacing:-13.510933pt;}
.ws0{word-spacing:-13.280000pt;}
.wsc{word-spacing:-12.320000pt;}
.wse{word-spacing:-12.192000pt;}
.wsa{word-spacing:-12.096000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws7{word-spacing:-11.904000pt;}
.wsf{word-spacing:-11.888000pt;}
.wsd{word-spacing:-11.808000pt;}
.ws10{word-spacing:-11.680000pt;}
.wsb{word-spacing:-11.456000pt;}
.ws8{word-spacing:-8.000000pt;}
.ws6{word-spacing:0.000000pt;}
._0{margin-left:-1.008000pt;}
._1{width:0.890667pt;}
._6{width:1.792213pt;}
._e{width:2.718933pt;}
._b{width:3.840000pt;}
._a{width:5.184000pt;}
._c{width:6.336000pt;}
._8{width:7.344000pt;}
._d{width:9.120000pt;}
._15{width:10.171093pt;}
._f{width:11.114453pt;}
._14{width:13.027627pt;}
._10{width:14.183040pt;}
._1c{width:15.504000pt;}
._9{width:16.512000pt;}
._13{width:18.048000pt;}
._7{width:18.960000pt;}
._11{width:20.352000pt;}
._25{width:21.290667pt;}
._1a{width:22.368000pt;}
._19{width:23.664000pt;}
._1e{width:25.440000pt;}
._21{width:26.613333pt;}
._22{width:27.792000pt;}
._23{width:29.040000pt;}
._24{width:30.000000pt;}
._2a{width:31.104000pt;}
._20{width:32.160000pt;}
._28{width:33.146667pt;}
._27{width:34.368000pt;}
._12{width:36.144000pt;}
._26{width:37.376000pt;}
._1d{width:38.608000pt;}
._1b{width:42.288000pt;}
._16{width:43.296000pt;}
._17{width:44.640000pt;}
._18{width:46.080000pt;}
._1f{width:48.336000pt;}
._33{width:52.821333pt;}
._32{width:53.941333pt;}
._3{width:69.504000pt;}
._31{width:70.704000pt;}
._39{width:73.008000pt;}
._38{width:74.304000pt;}
._3b{width:82.752000pt;}
._36{width:93.216000pt;}
._35{width:94.560000pt;}
._3e{width:99.840000pt;}
._3f{width:100.848000pt;}
._3a{width:101.760000pt;}
._3c{width:102.746667pt;}
._2c{width:111.882667pt;}
._2e{width:131.514667pt;}
._4{width:140.320000pt;}
._40{width:145.557333pt;}
._29{width:148.032000pt;}
._42{width:271.834667pt;}
._41{width:272.976000pt;}
._43{width:318.816000pt;}
._2f{width:366.624000pt;}
._2d{width:569.770667pt;}
._2b{width:585.738667pt;}
._44{width:591.530667pt;}
._3d{width:601.920000pt;}
._34{width:604.176000pt;}
._37{width:633.760000pt;}
._30{width:730.384000pt;}
._2{width:917.546667pt;}
._5{width:1088.266667pt;}
.fs8{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.720000pt;}
.y11a{bottom:8.640000pt;}
.y13a{bottom:8.666667pt;}
.y15c{bottom:8.800000pt;}
.y13d{bottom:8.946667pt;}
.y120{bottom:8.960000pt;}
.y162{bottom:9.000000pt;}
.y11c{bottom:9.120000pt;}
.y11e{bottom:9.440000pt;}
.y140{bottom:12.146667pt;}
.y4{bottom:13.920000pt;}
.y2{bottom:16.800000pt;}
.y13c{bottom:24.786667pt;}
.y13f{bottom:28.146667pt;}
.y5{bottom:35.360000pt;}
.y1{bottom:53.920000pt;}
.y3a{bottom:62.746667pt;}
.y39{bottom:80.346667pt;}
.y2f{bottom:91.680000pt;}
.y158{bottom:92.000000pt;}
.ya1{bottom:95.200000pt;}
.yd4{bottom:96.000000pt;}
.y38{bottom:98.106667pt;}
.y2c{bottom:99.680000pt;}
.y14c{bottom:100.000000pt;}
.y93{bottom:103.200000pt;}
.y76{bottom:104.000000pt;}
.y18c{bottom:105.280000pt;}
.y2e{bottom:107.520000pt;}
.y157{bottom:108.000000pt;}
.ya0{bottom:111.200000pt;}
.y1c3{bottom:111.360000pt;}
.yd3{bottom:111.840000pt;}
.y2b{bottom:115.520000pt;}
.y37{bottom:115.706667pt;}
.y14b{bottom:115.840000pt;}
.y92{bottom:119.040000pt;}
.yf6{bottom:119.200000pt;}
.y75{bottom:119.840000pt;}
.y18b{bottom:121.120000pt;}
.y2d{bottom:123.360000pt;}
.y156{bottom:123.840000pt;}
.y9f{bottom:127.040000pt;}
.y1c2{bottom:127.200000pt;}
.yd2{bottom:127.680000pt;}
.y2a{bottom:131.360000pt;}
.y14a{bottom:131.680000pt;}
.y36{bottom:133.306667pt;}
.y91{bottom:134.880000pt;}
.yf5{bottom:135.040000pt;}
.y74{bottom:135.680000pt;}
.y18a{bottom:136.960000pt;}
.y155{bottom:139.680000pt;}
.y9e{bottom:142.880000pt;}
.yd1{bottom:143.200000pt;}
.y29{bottom:147.200000pt;}
.y90{bottom:150.720000pt;}
.yf4{bottom:150.880000pt;}
.y35{bottom:150.906667pt;}
.y73{bottom:151.520000pt;}
.y149{bottom:155.520000pt;}
.y9d{bottom:158.720000pt;}
.y1c1{bottom:159.040000pt;}
.y189{bottom:160.800000pt;}
.y28{bottom:163.040000pt;}
.y8f{bottom:166.560000pt;}
.yf3{bottom:166.720000pt;}
.y72{bottom:167.360000pt;}
.y34{bottom:168.546667pt;}
.y148{bottom:171.360000pt;}
.y9c{bottom:174.560000pt;}
.y1c0{bottom:174.880000pt;}
.y188{bottom:176.800000pt;}
.y27{bottom:179.040000pt;}
.y154{bottom:179.360000pt;}
.y115{bottom:182.400000pt;}
.yf2{bottom:182.586667pt;}
.y71{bottom:183.386667pt;}
.y33{bottom:186.306667pt;}
.y147{bottom:187.386667pt;}
.y8e{bottom:190.426667pt;}
.y1bf{bottom:190.746667pt;}
.y187{bottom:192.666667pt;}
.y153{bottom:195.386667pt;}
.y26{bottom:196.666667pt;}
.yf1{bottom:198.426667pt;}
.y70{bottom:199.226667pt;}
.y146{bottom:203.226667pt;}
.y32{bottom:203.906667pt;}
.y8d{bottom:206.426667pt;}
.y1be{bottom:206.586667pt;}
.y186{bottom:208.506667pt;}
.y152{bottom:211.226667pt;}
.y114{bottom:214.266667pt;}
.yf0{bottom:214.426667pt;}
.yd0{bottom:214.746667pt;}
.y6f{bottom:215.066667pt;}
.y145{bottom:219.066667pt;}
.y8c{bottom:222.266667pt;}
.y1bd{bottom:222.426667pt;}
.y185{bottom:224.346667pt;}
.y151{bottom:227.066667pt;}
.y113{bottom:230.106667pt;}
.yef{bottom:230.266667pt;}
.y31{bottom:230.786667pt;}
.y6e{bottom:230.906667pt;}
.y144{bottom:234.906667pt;}
.y8b{bottom:238.106667pt;}
.y1bc{bottom:238.426667pt;}
.ycf{bottom:238.906667pt;}
.y184{bottom:240.186667pt;}
.y25{bottom:241.466667pt;}
.y150{bottom:242.906667pt;}
.y30{bottom:244.640000pt;}
.y112{bottom:245.946667pt;}
.yee{bottom:246.106667pt;}
.y6d{bottom:246.746667pt;}
.y143{bottom:250.746667pt;}
.y8a{bottom:253.946667pt;}
.y1bb{bottom:254.266667pt;}
.yce{bottom:254.746667pt;}
.y183{bottom:256.186667pt;}
.y14f{bottom:258.746667pt;}
.y111{bottom:261.786667pt;}
.y9b{bottom:261.946667pt;}
.y6c{bottom:262.586667pt;}
.y3c{bottom:263.866667pt;}
.y24{bottom:265.306667pt;}
.y142{bottom:266.586667pt;}
.y89{bottom:269.786667pt;}
.y1ba{bottom:270.106667pt;}
.ycd{bottom:270.586667pt;}
.y182{bottom:272.026667pt;}
.y14e{bottom:274.586667pt;}
.yed{bottom:277.466667pt;}
.y9a{bottom:277.786667pt;}
.y6b{bottom:278.266667pt;}
.y141{bottom:282.586667pt;}
.y88{bottom:285.786667pt;}
.y1b9{bottom:285.946667pt;}
.ycc{bottom:286.586667pt;}
.y181{bottom:287.866667pt;}
.y23{bottom:289.146667pt;}
.y3b{bottom:289.786667pt;}
.y14d{bottom:290.586667pt;}
.y110{bottom:293.626667pt;}
.y99{bottom:293.786667pt;}
.y6a{bottom:296.186667pt;}
.y87{bottom:301.626667pt;}
.yec{bottom:301.786667pt;}
.y13e{bottom:302.120000pt;}
.ycb{bottom:302.426667pt;}
.y180{bottom:303.706667pt;}
.y98{bottom:309.626667pt;}
.y22{bottom:313.146667pt;}
.y86{bottom:317.466667pt;}
.yeb{bottom:317.626667pt;}
.y1b8{bottom:317.786667pt;}
.yca{bottom:318.266667pt;}
.y17f{bottom:319.546667pt;}
.y69{bottom:325.306667pt;}
.y97{bottom:325.466667pt;}
.y85{bottom:332.986667pt;}
.y10f{bottom:333.306667pt;}
.yea{bottom:333.466667pt;}
.y1b7{bottom:333.626667pt;}
.yc9{bottom:334.106667pt;}
.y195{bottom:335.386667pt;}
.y21{bottom:336.986667pt;}
.y68{bottom:341.146667pt;}
.y96{bottom:341.306667pt;}
.y17e{bottom:343.386667pt;}
.y13b{bottom:345.800000pt;}
.y10e{bottom:349.146667pt;}
.ye9{bottom:349.306667pt;}
.y1b6{bottom:349.466667pt;}
.yc8{bottom:349.946667pt;}
.y194{bottom:351.386667pt;}
.y67{bottom:356.986667pt;}
.y84{bottom:357.146667pt;}
.y17d{bottom:359.386667pt;}
.y20{bottom:360.826667pt;}
.y10d{bottom:364.986667pt;}
.ye8{bottom:365.146667pt;}
.y1b5{bottom:365.306667pt;}
.yc7{bottom:365.946667pt;}
.y193{bottom:367.226667pt;}
.y1c4{bottom:372.826667pt;}
.y83{bottom:372.986667pt;}
.y17c{bottom:375.226667pt;}
.y66{bottom:380.986667pt;}
.y1b4{bottom:381.146667pt;}
.yc6{bottom:381.786667pt;}
.y192{bottom:382.746667pt;}
.y1f{bottom:384.986667pt;}
.y139{bottom:386.120000pt;}
.y82{bottom:388.986667pt;}
.y17b{bottom:391.066667pt;}
.y65{bottom:396.866667pt;}
.ye7{bottom:397.026667pt;}
.yc5{bottom:397.666667pt;}
.y81{bottom:404.866667pt;}
.y17a{bottom:406.946667pt;}
.y1e{bottom:408.866667pt;}
.y64{bottom:412.706667pt;}
.ye6{bottom:412.866667pt;}
.y1b3{bottom:413.026667pt;}
.y138{bottom:415.746667pt;}
.y80{bottom:420.706667pt;}
.yc4{bottom:421.506667pt;}
.y179{bottom:422.786667pt;}
.y10c{bottom:428.546667pt;}
.ye5{bottom:428.706667pt;}
.y1b2{bottom:428.866667pt;}
.y1d{bottom:432.706667pt;}
.y63{bottom:436.546667pt;}
.yc3{bottom:437.346667pt;}
.y178{bottom:438.786667pt;}
.y137{bottom:439.266667pt;}
.y10b{bottom:444.386667pt;}
.ye4{bottom:444.546667pt;}
.y1b1{bottom:444.706667pt;}
.y62{bottom:452.386667pt;}
.yc2{bottom:453.186667pt;}
.y177{bottom:454.626667pt;}
.y1b{bottom:456.706667pt;}
.ye3{bottom:460.386667pt;}
.y1b0{bottom:460.546667pt;}
.y133{bottom:463.426667pt;}
.y61{bottom:468.386667pt;}
.yc1{bottom:469.186667pt;}
.y176{bottom:470.466667pt;}
.y10a{bottom:476.226667pt;}
.ye2{bottom:476.386667pt;}
.y132{bottom:479.266667pt;}
.y1a{bottom:480.546667pt;}
.y60{bottom:484.226667pt;}
.yc0{bottom:485.026667pt;}
.y175{bottom:486.306667pt;}
.y109{bottom:492.066667pt;}
.ye1{bottom:492.226667pt;}
.y1af{bottom:492.386667pt;}
.y131{bottom:495.266667pt;}
.y5f{bottom:500.066667pt;}
.ybf{bottom:500.866667pt;}
.y174{bottom:502.146667pt;}
.y19{bottom:504.066667pt;}
.y1c{bottom:504.386667pt;}
.y108{bottom:507.906667pt;}
.ye0{bottom:508.066667pt;}
.y1ae{bottom:508.226667pt;}
.y130{bottom:511.106667pt;}
.y5e{bottom:515.906667pt;}
.ybe{bottom:516.706667pt;}
.y173{bottom:517.986667pt;}
.y107{bottom:523.746667pt;}
.ydf{bottom:523.906667pt;}
.y1ad{bottom:524.066667pt;}
.y12f{bottom:526.946667pt;}
.y18{bottom:529.346667pt;}
.y5d{bottom:531.746667pt;}
.ybd{bottom:532.546667pt;}
.y172{bottom:533.986667pt;}
.y106{bottom:539.266667pt;}
.y95{bottom:539.746667pt;}
.y1ac{bottom:539.906667pt;}
.y12e{bottom:542.786667pt;}
.y5c{bottom:547.586667pt;}
.ybc{bottom:548.226667pt;}
.y191{bottom:549.826667pt;}
.y17{bottom:552.706667pt;}
.y19b{bottom:555.266667pt;}
.y94{bottom:555.586667pt;}
.y1ab{bottom:555.746667pt;}
.y171{bottom:557.826667pt;}
.y7f{bottom:563.586667pt;}
.y190{bottom:565.666667pt;}
.y12d{bottom:566.626667pt;}
.y5b{bottom:571.586667pt;}
.ybb{bottom:572.386667pt;}
.y170{bottom:573.666667pt;}
.y7e{bottom:579.426667pt;}
.y19a{bottom:579.586667pt;}
.y16{bottom:580.226667pt;}
.y18f{bottom:581.506667pt;}
.y12c{bottom:582.466667pt;}
.yde{bottom:587.106667pt;}
.y5a{bottom:587.426667pt;}
.y1aa{bottom:587.586667pt;}
.yba{bottom:588.226667pt;}
.y16f{bottom:589.506667pt;}
.y7d{bottom:595.266667pt;}
.y199{bottom:595.426667pt;}
.y18e{bottom:597.346667pt;}
.y12b{bottom:598.466667pt;}
.y59{bottom:603.293333pt;}
.y1a9{bottom:603.453333pt;}
.yb9{bottom:604.093333pt;}
.y16e{bottom:605.373333pt;}
.y7c{bottom:611.133333pt;}
.ydd{bottom:611.293333pt;}
.y12a{bottom:614.333333pt;}
.y58{bottom:619.133333pt;}
.y1a8{bottom:619.293333pt;}
.yb8{bottom:619.933333pt;}
.y16d{bottom:621.373333pt;}
.y15{bottom:623.613333pt;}
.y105{bottom:626.973333pt;}
.ydc{bottom:627.133333pt;}
.y129{bottom:630.173333pt;}
.y57{bottom:634.973333pt;}
.y1a7{bottom:635.133333pt;}
.yb7{bottom:635.773333pt;}
.y16c{bottom:637.213333pt;}
.y104{bottom:642.813333pt;}
.ydb{bottom:642.973333pt;}
.y128{bottom:646.013333pt;}
.y56{bottom:650.813333pt;}
.y1a6{bottom:650.973333pt;}
.yb6{bottom:651.773333pt;}
.y16b{bottom:653.053333pt;}
.yda{bottom:658.813333pt;}
.y127{bottom:661.853333pt;}
.y14{bottom:666.653333pt;}
.y55{bottom:666.813333pt;}
.y16a{bottom:668.893333pt;}
.y103{bottom:674.653333pt;}
.yd9{bottom:674.813333pt;}
.yb5{bottom:675.613333pt;}
.y126{bottom:677.693333pt;}
.y54{bottom:682.653333pt;}
.y1a5{bottom:682.813333pt;}
.y169{bottom:684.733333pt;}
.y102{bottom:690.493333pt;}
.yd8{bottom:690.653333pt;}
.yb4{bottom:691.453333pt;}
.y125{bottom:693.693333pt;}
.y53{bottom:698.493333pt;}
.y1a4{bottom:698.653333pt;}
.y168{bottom:700.573333pt;}
.y101{bottom:706.333333pt;}
.yd7{bottom:706.493333pt;}
.yb3{bottom:707.293333pt;}
.y124{bottom:709.533333pt;}
.y13{bottom:711.613333pt;}
.y52{bottom:714.333333pt;}
.y1a3{bottom:714.493333pt;}
.y167{bottom:716.573333pt;}
.y136{bottom:717.533333pt;}
.yd6{bottom:722.333333pt;}
.yb2{bottom:723.133333pt;}
.y123{bottom:725.373333pt;}
.y7b{bottom:730.173333pt;}
.y1a2{bottom:730.333333pt;}
.y166{bottom:732.413333pt;}
.y135{bottom:733.373333pt;}
.y12{bottom:736.413333pt;}
.y51{bottom:738.173333pt;}
.yb1{bottom:738.973333pt;}
.y122{bottom:741.213333pt;}
.y7a{bottom:746.173333pt;}
.y165{bottom:748.253333pt;}
.y134{bottom:749.213333pt;}
.y50{bottom:754.173333pt;}
.yb0{bottom:754.973333pt;}
.y121{bottom:760.733333pt;}
.y79{bottom:762.013333pt;}
.y1a1{bottom:762.173333pt;}
.y164{bottom:763.773333pt;}
.y18d{bottom:764.093333pt;}
.y4f{bottom:770.013333pt;}
.yaf{bottom:770.813333pt;}
.y163{bottom:775.613333pt;}
.y11{bottom:777.373333pt;}
.y100{bottom:777.853333pt;}
.y1a0{bottom:778.013333pt;}
.y11f{bottom:785.373333pt;}
.y4e{bottom:785.853333pt;}
.yae{bottom:786.653333pt;}
.yff{bottom:793.693333pt;}
.y19f{bottom:793.853333pt;}
.y10{bottom:799.773333pt;}
.y161{bottom:800.253333pt;}
.y4d{bottom:801.693333pt;}
.yad{bottom:802.493333pt;}
.yfe{bottom:809.573333pt;}
.y19e{bottom:809.733333pt;}
.y11d{bottom:809.893333pt;}
.yf{bottom:817.413333pt;}
.y4c{bottom:817.573333pt;}
.yac{bottom:818.373333pt;}
.y160{bottom:824.773333pt;}
.yfd{bottom:825.413333pt;}
.y19d{bottom:825.573333pt;}
.y4b{bottom:833.413333pt;}
.y11b{bottom:834.853333pt;}
.ye{bottom:835.173333pt;}
.yfc{bottom:841.413333pt;}
.yab{bottom:842.373333pt;}
.y15f{bottom:849.253333pt;}
.y4a{bottom:849.413333pt;}
.yd{bottom:852.453333pt;}
.y19c{bottom:857.413333pt;}
.yaa{bottom:858.213333pt;}
.y119{bottom:859.493333pt;}
.y49{bottom:865.253333pt;}
.yc{bottom:870.373333pt;}
.y198{bottom:873.253333pt;}
.y15e{bottom:873.893333pt;}
.ya9{bottom:874.053333pt;}
.y48{bottom:881.093333pt;}
.y118{bottom:888.933333pt;}
.y197{bottom:889.093333pt;}
.ya8{bottom:889.893333pt;}
.y47{bottom:896.933333pt;}
.y15d{bottom:898.373333pt;}
.y196{bottom:904.933333pt;}
.ya7{bottom:905.733333pt;}
.yb{bottom:905.893333pt;}
.y117{bottom:912.453333pt;}
.y78{bottom:912.773333pt;}
.ya{bottom:916.613333pt;}
.y46{bottom:920.773333pt;}
.ya6{bottom:921.573333pt;}
.y15b{bottom:922.853333pt;}
.y9{bottom:927.333333pt;}
.yd5{bottom:928.453333pt;}
.y77{bottom:928.773333pt;}
.y45{bottom:936.773333pt;}
.ya5{bottom:937.573333pt;}
.y8{bottom:938.053333pt;}
.yfb{bottom:944.613333pt;}
.y7{bottom:951.013333pt;}
.y15a{bottom:952.453333pt;}
.y44{bottom:952.613333pt;}
.ya4{bottom:953.413333pt;}
.yfa{bottom:960.453333pt;}
.y43{bottom:968.453333pt;}
.ya3{bottom:968.933333pt;}
.y6{bottom:973.733333pt;}
.y159{bottom:975.973333pt;}
.yf9{bottom:976.293333pt;}
.y42{bottom:984.293333pt;}
.ya2{bottom:986.853333pt;}
.yf8{bottom:992.133333pt;}
.y41{bottom:1000.133333pt;}
.yf7{bottom:1007.653333pt;}
.y40{bottom:1015.973333pt;}
.y3f{bottom:1032.000000pt;}
.y3e{bottom:1047.840000pt;}
.y116{bottom:1063.360000pt;}
.y3d{bottom:1063.680000pt;}
.h15{height:23.840000pt;}
.h1a{height:23.858667pt;}
.h18{height:23.872000pt;}
.h16{height:24.000000pt;}
.h17{height:24.320000pt;}
.h2{height:27.676000pt;}
.h7{height:36.431250pt;}
.h1b{height:39.666667pt;}
.h1c{height:43.026667pt;}
.h19{height:43.031250pt;}
.h14{height:47.085938pt;}
.h3{height:47.109375pt;}
.hd{height:48.375000pt;}
.h13{height:49.336436pt;}
.h12{height:49.968750pt;}
.h11{height:52.108438pt;}
.h8{height:52.134375pt;}
.h9{height:53.535000pt;}
.hc{height:57.787500pt;}
.h4{height:58.563750pt;}
.hb{height:59.340000pt;}
.h10{height:69.660000pt;}
.he{height:71.955000pt;}
.ha{height:73.490625pt;}
.h5{height:75.465000pt;}
.h6{height:80.625000pt;}
.hf{height:255.040000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:49.426667pt;}
.w11{width:49.466667pt;}
.w3{width:71.386667pt;}
.wc{width:94.258667pt;}
.w5{width:110.100000pt;}
.wb{width:122.272000pt;}
.w9{width:123.540000pt;}
.wd{width:136.826667pt;}
.w7{width:177.506667pt;}
.we{width:178.422667pt;}
.w8{width:184.986667pt;}
.wa{width:209.946667pt;}
.w6{width:214.586667pt;}
.wf{width:414.653333pt;}
.w2{width:641.880000pt;}
.w4{width:721.440000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:6.720000pt;}
.x3{left:7.676000pt;}
.x13{left:9.600000pt;}
.x12{left:34.080000pt;}
.x1{left:40.324000pt;}
.x14{left:43.680000pt;}
.x5{left:48.000000pt;}
.xb{left:50.560000pt;}
.x19{left:52.324000pt;}
.x11{left:72.000000pt;}
.x15{left:95.232000pt;}
.xc{left:127.712000pt;}
.xe{left:140.186667pt;}
.x1a{left:163.066667pt;}
.x1e{left:176.346667pt;}
.x2{left:197.662667pt;}
.x23{left:229.146667pt;}
.x22{left:240.706667pt;}
.x8{left:250.466667pt;}
.x6{left:253.986667pt;}
.x9{left:264.706667pt;}
.x18{left:269.186667pt;}
.xf{left:279.426667pt;}
.xd{left:298.946667pt;}
.x1d{left:305.026667pt;}
.x7{left:323.906667pt;}
.xa{left:336.706667pt;}
.x17{left:377.666667pt;}
.x1f{left:386.946667pt;}
.x10{left:420.893333pt;}
.x16{left:444.893333pt;}
.x26{left:468.893333pt;}
.x20{left:509.866667pt;}
.x1b{left:556.613333pt;}
.x21{left:604.933333pt;}
.x24{left:644.453333pt;}
.x4{left:682.213333pt;}
.x25{left:694.533333pt;}
}




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