
    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_bb38ac979a158beebce11cc1.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.854004;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_7ff36695286f27200681d484.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.091797;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_52fd0ae4575a3c3fa37cb2d1.woff2')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_c37571759ad710bab7a2313f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.978027;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_84e3ffba7c179da834c7c9bb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.978027;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_747534b69fbbb58c47b74219.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.649414;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_b2aac97e5b308dc3cbfe765a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.106934;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_6d7dd5cef5d41d4bbac98cd7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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_decd54a042d9e51a08f1278d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.090332;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_efd8e52451867aa1930c0976.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.854004;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;}
.m2{transform:matrix(0.000000,-0.249879,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249879,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249879,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.249783,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249783,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249783,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249940,0.000000,0.000000,0.250000,0,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(0.250121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250121,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250217,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-14.400000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:2.880000px;}
.v2{vertical-align:14.400000px;}
.v5{vertical-align:17.280000px;}
.v7{vertical-align:42.480000px;}
.v6{vertical-align:45.360000px;}
.v8{vertical-align:50.580000px;}
.v3{vertical-align:54.720000px;}
.va{vertical-align:71.280000px;}
.v9{vertical-align:78.660000px;}
.vb{vertical-align:82.800000px;}
.ls1f{letter-spacing:-1.822397px;}
.ls2a{letter-spacing:-1.818940px;}
.ls2e{letter-spacing:-1.008000px;}
.ls1d{letter-spacing:-0.796302px;}
.ls29{letter-spacing:-0.794485px;}
.ls9{letter-spacing:-0.720000px;}
.ls27{letter-spacing:-0.576000px;}
.ls1c{letter-spacing:-0.536085px;}
.ls28{letter-spacing:-0.534862px;}
.lsa{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.072000px;}
.ls1e{letter-spacing:-0.065739px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.180000px;}
.ls2d{letter-spacing:0.309000px;}
.lsd{letter-spacing:0.360000px;}
.ls26{letter-spacing:0.378600px;}
.ls4{letter-spacing:0.432000px;}
.ls2f{letter-spacing:0.504000px;}
.ls30{letter-spacing:0.720000px;}
.ls2b{letter-spacing:1.224000px;}
.ls23{letter-spacing:1.296000px;}
.ls2c{letter-spacing:1.317600px;}
.ls25{letter-spacing:1.440000px;}
.ls22{letter-spacing:1.512000px;}
.ls21{letter-spacing:2.376000px;}
.ls1a{letter-spacing:4.237200px;}
.ls1b{letter-spacing:4.263840px;}
.ls20{letter-spacing:4.376880px;}
.lsf{letter-spacing:4.437360px;}
.ls0{letter-spacing:5.040000px;}
.ls24{letter-spacing:5.096880px;}
.ls10{letter-spacing:11.160000px;}
.ls11{letter-spacing:12.600000px;}
.ls15{letter-spacing:12.960000px;}
.lsc{letter-spacing:14.317200px;}
.ls1{letter-spacing:15.120000px;}
.ls14{letter-spacing:15.957360px;}
.ls13{letter-spacing:16.056000px;}
.lse{letter-spacing:19.250640px;}
.ls16{letter-spacing:24.576480px;}
.ls18{letter-spacing:27.170640px;}
.ls12{letter-spacing:30.890640px;}
.ls19{letter-spacing:114.717360px;}
.ls17{letter-spacing:225.576000px;}
.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;}
}
.wsa{word-spacing:-21.438600px;}
.ws10{word-spacing:-18.720000px;}
.wse{word-spacing:-18.504000px;}
.ws4{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.928000px;}
.ws9{word-spacing:-17.784000px;}
.wsb{word-spacing:-17.712000px;}
.ws5{word-spacing:-15.840000px;}
.ws8{word-spacing:-15.696000px;}
.ws7{word-spacing:-15.552000px;}
.wsc{word-spacing:-11.555400px;}
.wsf{word-spacing:-11.496466px;}
.ws3{word-spacing:0.000000px;}
.ws6{word-spacing:4.608000px;}
.wsd{word-spacing:10.812960px;}
._1f{margin-left:-11.160000px;}
._20{margin-left:-8.460000px;}
._25{margin-left:-5.216160px;}
._1d{margin-left:-3.840000px;}
._7{margin-left:-2.736000px;}
._0{margin-left:-1.457280px;}
._2{width:1.436400px;}
._b{width:2.437200px;}
._e{width:3.560400px;}
._a{width:5.256000px;}
._14{width:6.264000px;}
._18{width:7.272000px;}
._10{width:8.784000px;}
._d{width:9.917280px;}
._c{width:11.088000px;}
._13{width:12.171600px;}
._2e{width:13.176000px;}
._11{width:14.184000px;}
._12{width:15.516000px;}
._15{width:16.704000px;}
._21{width:17.952000px;}
._16{width:19.584000px;}
._17{width:20.775600px;}
._8{width:22.320000px;}
._9{width:23.556000px;}
._f{width:24.675600px;}
._24{width:25.782000px;}
._28{width:26.884800px;}
._26{width:29.376000px;}
._27{width:30.381120px;}
._19{width:31.536000px;}
._1a{width:32.760000px;}
._1b{width:34.320000px;}
._1c{width:35.321280px;}
._29{width:37.440000px;}
._2a{width:38.736000px;}
._2b{width:39.744000px;}
._2c{width:40.762800px;}
._3{width:42.996240px;}
._5{width:62.148240px;}
._6{width:63.584640px;}
._23{width:95.692377px;}
._22{width:97.102633px;}
._1e{width:103.830720px;}
._1{width:140.096880px;}
._4{width:214.406640px;}
._2d{width:282.096000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,10);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:30.452000px;}
.fs5{font-size:30.521637px;}
.fsb{font-size:30.920493px;}
.fs6{font-size:30.991201px;}
.fsd{font-size:37.479385px;}
.fsc{font-size:37.511964px;}
.fs9{font-size:37.565092px;}
.fs7{font-size:37.583266px;}
.fs8{font-size:38.034656px;}
.fse{font-size:45.985865px;}
.fs4{font-size:51.120000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y12a{bottom:-6.855533px;}
.y0{bottom:0.000000px;}
.y11c{bottom:2.529223px;}
.y10c{bottom:4.042937px;}
.y10e{bottom:4.138729px;}
.y78{bottom:5.400000px;}
.y9b{bottom:6.120000px;}
.yec{bottom:6.622488px;}
.y91{bottom:6.637791px;}
.y95{bottom:8.100000px;}
.y81{bottom:8.280000px;}
.y80{bottom:8.460000px;}
.y7d{bottom:8.820000px;}
.y77{bottom:14.445000px;}
.y99{bottom:16.740000px;}
.y98{bottom:16.920000px;}
.y7c{bottom:17.820000px;}
.y74{bottom:20.925000px;}
.y8f{bottom:24.246428px;}
.yea{bottom:24.893703px;}
.y9a{bottom:27.540000px;}
.y7e{bottom:31.500000px;}
.y73{bottom:32.265000px;}
.y79{bottom:33.525000px;}
.y84{bottom:33.637701px;}
.ydf{bottom:34.263551px;}
.y7b{bottom:38.520000px;}
.y76{bottom:44.145000px;}
.yee{bottom:48.903907px;}
.y93{bottom:57.114416px;}
.y5{bottom:57.960000px;}
.y85{bottom:58.875280px;}
.ye0{bottom:59.445013px;}
.y75{bottom:63.765000px;}
.yed{bottom:64.129907px;}
.y4{bottom:79.956000px;}
.y86{bottom:84.231717px;}
.ye1{bottom:84.743598px;}
.y92{bottom:88.927354px;}
.y3{bottom:100.656000px;}
.y87{bottom:109.470764px;}
.ye2{bottom:109.925060px;}
.y2{bottom:119.556000px;}
.y88{bottom:134.240246px;}
.ye3{bottom:135.106522px;}
.y1{bottom:138.636000px;}
.y90{bottom:152.435838px;}
.yeb{bottom:153.846215px;}
.y89{bottom:159.479293px;}
.ye4{bottom:160.405107px;}
.y32{bottom:160.410000px;}
.yce{bottom:162.030000px;}
.yb8{bottom:164.010000px;}
.y52{bottom:165.990000px;}
.y6a{bottom:173.370000px;}
.y82{bottom:174.450000px;}
.ydd{bottom:175.530000px;}
.y31{bottom:181.110000px;}
.y8a{bottom:184.835730px;}
.ye5{bottom:185.586569px;}
.y10a{bottom:187.950000px;}
.ycd{bottom:192.990000px;}
.y144{bottom:194.430000px;}
.yb7{bottom:195.150000px;}
.y51{bottom:197.130000px;}
.y30{bottom:201.810000px;}
.y69{bottom:204.330000px;}
.ydc{bottom:206.850000px;}
.y8b{bottom:210.074776px;}
.ye6{bottom:210.768030px;}
.y143{bottom:215.130000px;}
.y109{bottom:215.850000px;}
.y129{bottom:215.940000px;}
.y128{bottom:221.385664px;}
.y127{bottom:221.385666px;}
.y126{bottom:221.385667px;}
.y125{bottom:221.385669px;}
.y124{bottom:221.385670px;}
.y123{bottom:221.385672px;}
.y122{bottom:221.385673px;}
.y121{bottom:221.385675px;}
.y120{bottom:221.385677px;}
.y11f{bottom:221.385678px;}
.y11e{bottom:221.385680px;}
.y11d{bottom:221.385681px;}
.y11b{bottom:221.385683px;}
.y2f{bottom:222.510000px;}
.ycc{bottom:224.130000px;}
.yb6{bottom:226.110000px;}
.y50{bottom:228.090000px;}
.y8c{bottom:235.313822px;}
.y68{bottom:235.470000px;}
.y142{bottom:235.830000px;}
.ye7{bottom:236.066615px;}
.y7f{bottom:237.990000px;}
.y2e{bottom:243.210000px;}
.y7a{bottom:254.730000px;}
.ycb{bottom:255.090000px;}
.y141{bottom:256.530000px;}
.yb5{bottom:257.250000px;}
.y4f{bottom:259.230000px;}
.y8d{bottom:260.670260px;}
.ye8{bottom:261.248077px;}
.y2d{bottom:263.910000px;}
.y67{bottom:266.430000px;}
.ydb{bottom:268.950000px;}
.y140{bottom:277.230000px;}
.y2c{bottom:284.610000px;}
.y8e{bottom:285.909306px;}
.yca{bottom:286.230000px;}
.ye9{bottom:286.429539px;}
.yb4{bottom:288.210000px;}
.y4e{bottom:290.190000px;}
.y66{bottom:293.610000px;}
.y13f{bottom:297.930000px;}
.yda{bottom:300.090000px;}
.y2b{bottom:305.310000px;}
.yc9{bottom:317.190000px;}
.y13e{bottom:318.630000px;}
.yb3{bottom:319.350000px;}
.y4d{bottom:321.330000px;}
.y2a{bottom:326.010000px;}
.y72{bottom:327.090000px;}
.yd9{bottom:331.050000px;}
.y11a{bottom:331.498626px;}
.y119{bottom:331.498627px;}
.y118{bottom:331.498629px;}
.y117{bottom:331.498630px;}
.y116{bottom:331.498632px;}
.y115{bottom:331.498633px;}
.y114{bottom:331.498635px;}
.y113{bottom:331.498636px;}
.y112{bottom:331.498638px;}
.y111{bottom:331.498639px;}
.y110{bottom:331.498641px;}
.y10f{bottom:331.498643px;}
.y10d{bottom:331.498644px;}
.y13d{bottom:339.375000px;}
.y29{bottom:346.755000px;}
.y10b{bottom:347.823608px;}
.yc8{bottom:348.375000px;}
.yb2{bottom:350.355000px;}
.y4c{bottom:352.335000px;}
.y13c{bottom:360.075000px;}
.yd8{bottom:362.235000px;}
.y28{bottom:367.455000px;}
.yc7{bottom:379.335000px;}
.y13b{bottom:380.775000px;}
.yb1{bottom:381.495000px;}
.y4b{bottom:383.475000px;}
.y27{bottom:388.155000px;}
.y108{bottom:390.495000px;}
.yd7{bottom:393.195000px;}
.y13a{bottom:401.475000px;}
.y26{bottom:408.855000px;}
.yc6{bottom:410.475000px;}
.yb0{bottom:412.455000px;}
.y107{bottom:414.255000px;}
.y4a{bottom:414.435000px;}
.y139{bottom:422.175000px;}
.yd6{bottom:424.335000px;}
.y25{bottom:429.555000px;}
.y71{bottom:429.915000px;}
.yc5{bottom:441.435000px;}
.y138{bottom:442.875000px;}
.yaf{bottom:443.595000px;}
.yd5{bottom:445.035000px;}
.y49{bottom:445.575000px;}
.y24{bottom:450.255000px;}
.y106{bottom:456.195000px;}
.y70{bottom:460.875000px;}
.yc4{bottom:462.135000px;}
.y137{bottom:463.575000px;}
.y23{bottom:470.955000px;}
.yae{bottom:474.555000px;}
.y48{bottom:476.535000px;}
.yd4{bottom:484.095000px;}
.yde{bottom:484.447995px;}
.y105{bottom:487.155000px;}
.y22{bottom:491.655000px;}
.y6f{bottom:492.015000px;}
.yc3{bottom:501.375000px;}
.yad{bottom:505.515000px;}
.y47{bottom:507.675000px;}
.y21{bottom:512.355000px;}
.y136{bottom:514.875000px;}
.y104{bottom:518.295000px;}
.y6e{bottom:523.335000px;}
.y20{bottom:533.055000px;}
.yac{bottom:536.655000px;}
.y46{bottom:538.635000px;}
.y135{bottom:539.535000px;}
.y103{bottom:549.255000px;}
.y1f{bottom:553.755000px;}
.y6d{bottom:554.655000px;}
.yab{bottom:567.615000px;}
.y45{bottom:569.775000px;}
.y1e{bottom:574.455000px;}
.y102{bottom:580.215000px;}
.y134{bottom:588.855000px;}
.y6c{bottom:593.895000px;}
.y83{bottom:594.052349px;}
.y1d{bottom:595.155000px;}
.y65{bottom:597.135000px;}
.yaa{bottom:598.755000px;}
.y44{bottom:600.735000px;}
.y101{bottom:611.385000px;}
.y1c{bottom:615.885000px;}
.y133{bottom:619.845000px;}
.y64{bottom:620.925000px;}
.ya9{bottom:629.745000px;}
.y43{bottom:631.905000px;}
.y1b{bottom:636.585000px;}
.y100{bottom:642.345000px;}
.y63{bottom:644.685000px;}
.y132{bottom:650.985000px;}
.y1a{bottom:657.285000px;}
.ya8{bottom:660.885000px;}
.y42{bottom:662.865000px;}
.y62{bottom:668.445000px;}
.yff{bottom:673.485000px;}
.y19{bottom:677.985000px;}
.y131{bottom:681.945000px;}
.ya7{bottom:691.845000px;}
.y61{bottom:692.385000px;}
.y41{bottom:694.005000px;}
.y18{bottom:698.685000px;}
.yfe{bottom:704.445000px;}
.y130{bottom:713.085000px;}
.y17{bottom:719.385000px;}
.ya6{bottom:722.985000px;}
.y60{bottom:723.345000px;}
.y40{bottom:724.965000px;}
.yfd{bottom:735.585000px;}
.y16{bottom:740.085000px;}
.y12f{bottom:744.045000px;}
.ya5{bottom:753.945000px;}
.y5f{bottom:754.485000px;}
.y3f{bottom:756.105000px;}
.y15{bottom:760.785000px;}
.yfc{bottom:766.545000px;}
.y152{bottom:767.265000px;}
.y12e{bottom:775.005000px;}
.y14{bottom:781.485000px;}
.ya4{bottom:785.085000px;}
.y5e{bottom:785.445000px;}
.y3e{bottom:787.065000px;}
.y151{bottom:787.965000px;}
.yfb{bottom:797.685000px;}
.yd3{bottom:800.745000px;}
.y13{bottom:802.185000px;}
.y12d{bottom:806.145000px;}
.y150{bottom:808.665000px;}
.ya3{bottom:816.045000px;}
.y5d{bottom:816.405000px;}
.y3d{bottom:818.205000px;}
.y12{bottom:822.885000px;}
.yd2{bottom:824.505000px;}
.yc2{bottom:825.225000px;}
.yfa{bottom:828.645000px;}
.y14f{bottom:829.365000px;}
.y12c{bottom:837.105000px;}
.y11{bottom:843.585000px;}
.ya2{bottom:847.185000px;}
.y5c{bottom:847.545000px;}
.yd1{bottom:848.445000px;}
.y3c{bottom:849.165000px;}
.y14e{bottom:850.065000px;}
.yc1{bottom:856.185000px;}
.yf9{bottom:859.785000px;}
.y10{bottom:864.285000px;}
.y12b{bottom:868.245000px;}
.y14d{bottom:870.810000px;}
.ya1{bottom:878.190000px;}
.y5b{bottom:878.550000px;}
.y3b{bottom:880.350000px;}
.yf{bottom:885.030000px;}
.yf8{bottom:890.790000px;}
.yd0{bottom:891.510000px;}
.yc0{bottom:899.250000px;}
.ye{bottom:906.270000px;}
.ya0{bottom:909.330000px;}
.y6b{bottom:910.590000px;}
.y3a{bottom:911.310000px;}
.y14c{bottom:912.210000px;}
.yf7{bottom:921.930000px;}
.ycf{bottom:922.470000px;}
.y5a{bottom:930.030000px;}
.ybf{bottom:930.390000px;}
.yd{bottom:931.110000px;}
.y14b{bottom:932.910000px;}
.y9f{bottom:940.290000px;}
.y39{bottom:942.450000px;}
.yf6{bottom:952.890000px;}
.y59{bottom:953.610000px;}
.yc{bottom:958.650000px;}
.ybe{bottom:961.350000px;}
.y9e{bottom:971.430000px;}
.y38{bottom:973.410000px;}
.y14a{bottom:974.310000px;}
.yf5{bottom:984.030000px;}
.y58{bottom:984.570000px;}
.yb{bottom:986.370000px;}
.ybd{bottom:992.490000px;}
.y149{bottom:995.010000px;}
.y9d{bottom:1002.390000px;}
.y37{bottom:1004.550000px;}
.ya{bottom:1013.910000px;}
.yf4{bottom:1014.990000px;}
.y57{bottom:1015.710000px;}
.ybc{bottom:1023.450000px;}
.y9c{bottom:1033.530000px;}
.y36{bottom:1035.510000px;}
.y148{bottom:1036.410000px;}
.y9{bottom:1041.450000px;}
.yf3{bottom:1046.130000px;}
.y56{bottom:1046.670000px;}
.y97{bottom:1050.270000px;}
.ybb{bottom:1054.590000px;}
.y147{bottom:1057.110000px;}
.y35{bottom:1066.650000px;}
.y8{bottom:1069.170000px;}
.yf2{bottom:1077.090000px;}
.y55{bottom:1077.810000px;}
.yba{bottom:1085.550000px;}
.y7{bottom:1096.710000px;}
.y96{bottom:1097.070000px;}
.y34{bottom:1097.610000px;}
.y146{bottom:1098.510000px;}
.yf1{bottom:1108.230000px;}
.y54{bottom:1108.770000px;}
.y145{bottom:1119.210000px;}
.y94{bottom:1126.770000px;}
.yf0{bottom:1136.130000px;}
.y33{bottom:1136.850000px;}
.yb9{bottom:1137.030000px;}
.yef{bottom:1139.580000px;}
.y6{bottom:1139.760000px;}
.y53{bottom:1139.940000px;}
.h25{height:16.233030px;}
.h27{height:16.324984px;}
.h1f{height:27.299743px;}
.h17{height:27.362171px;}
.h20{height:27.719739px;}
.h18{height:27.783128px;}
.h13{height:29.700000px;}
.h15{height:29.880000px;}
.h1c{height:29.916000px;}
.h22{height:32.977467px;}
.h21{height:33.006132px;}
.h19{height:33.068870px;}
.h1a{height:33.466040px;}
.h23{height:33.599683px;}
.h1b{height:33.676518px;}
.h29{height:38.867935px;}
.h26{height:41.225609px;}
.h1d{height:46.800000px;}
.h7{height:54.878906px;}
.h2{height:59.383125px;}
.h3{height:60.855469px;}
.h8{height:63.949219px;}
.h6{height:64.546875px;}
.h10{height:72.360000px;}
.h5{height:74.820586px;}
.h2b{height:75.519844px;}
.ha{height:76.536000px;}
.h9{height:79.980469px;}
.h14{height:82.860469px;}
.h4{height:85.052461px;}
.h24{height:93.780469px;}
.h28{height:108.737411px;}
.hd{height:122.460469px;}
.hc{height:125.340469px;}
.hb{height:134.700469px;}
.h2a{height:149.607346px;}
.h11{height:158.460469px;}
.he{height:158.640469px;}
.h12{height:183.346875px;}
.hf{height:187.440469px;}
.h1e{height:296.907045px;}
.h16{height:296.999010px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:49.078144px;}
.w10{width:49.078150px;}
.wb{width:49.101131px;}
.wf{width:49.101137px;}
.wd{width:49.193081px;}
.w11{width:49.193087px;}
.we{width:49.216068px;}
.w12{width:49.216074px;}
.w6{width:53.100000px;}
.w4{width:70.560000px;}
.w5{width:85.140000px;}
.w9{width:448.971340px;}
.w8{width:449.237493px;}
.w7{width:499.785000px;}
.w3{width:567.285000px;}
.wa{width:638.705477px;}
.w13{width:644.002161px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x32{left:-46.181727px;}
.x0{left:0.000000px;}
.x17{left:8.100000px;}
.x1d{left:13.677544px;}
.x2e{left:15.976258px;}
.x1b{left:22.721025px;}
.x1c{left:37.049646px;}
.x12{left:41.400000px;}
.x30{left:45.308213px;}
.x31{left:46.319659px;}
.xa{left:126.534000px;}
.x1{left:127.655987px;}
.x23{left:130.816216px;}
.x3{left:139.895987px;}
.x8{left:164.009987px;}
.x6{left:170.129987px;}
.xb{left:175.899000px;}
.x7{left:180.749987px;}
.x13{left:196.059000px;}
.x1e{left:203.473046px;}
.x18{left:212.790000px;}
.x1a{left:221.891170px;}
.x24{left:224.746095px;}
.x25{left:228.997406px;}
.x14{left:238.359000px;}
.x15{left:249.159000px;}
.x19{left:265.890000px;}
.x4{left:272.189987px;}
.x26{left:278.190485px;}
.xe{left:310.539000px;}
.x16{left:317.379000px;}
.xf{left:321.879000px;}
.x27{left:327.287784px;}
.xc{left:341.709000px;}
.x1f{left:343.118362px;}
.xd{left:344.229000px;}
.x20{left:345.749708px;}
.x10{left:366.189000px;}
.x21{left:367.274987px;}
.x28{left:376.480864px;}
.x29{left:425.559006px;}
.x5{left:446.474987px;}
.x2a{left:474.780820px;}
.x2b{left:523.858963px;}
.x2c{left:572.937105px;}
.x2d{left:622.149341px;}
.x9{left:671.549987px;}
.x11{left:694.950000px;}
.x2f{left:720.420564px;}
.x2{left:765.509987px;}
.x22{left:771.629987px;}
@media print{
.v1{vertical-align:-12.800000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:2.560000pt;}
.v2{vertical-align:12.800000pt;}
.v5{vertical-align:15.360000pt;}
.v7{vertical-align:37.760000pt;}
.v6{vertical-align:40.320000pt;}
.v8{vertical-align:44.960000pt;}
.v3{vertical-align:48.640000pt;}
.va{vertical-align:63.360000pt;}
.v9{vertical-align:69.920000pt;}
.vb{vertical-align:73.600000pt;}
.ls1f{letter-spacing:-1.619908pt;}
.ls2a{letter-spacing:-1.616835pt;}
.ls2e{letter-spacing:-0.896000pt;}
.ls1d{letter-spacing:-0.707824pt;}
.ls29{letter-spacing:-0.706209pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls27{letter-spacing:-0.512000pt;}
.ls1c{letter-spacing:-0.476520pt;}
.ls28{letter-spacing:-0.475433pt;}
.lsa{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.064000pt;}
.ls1e{letter-spacing:-0.058435pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls2d{letter-spacing:0.274667pt;}
.lsd{letter-spacing:0.320000pt;}
.ls26{letter-spacing:0.336533pt;}
.ls4{letter-spacing:0.384000pt;}
.ls2f{letter-spacing:0.448000pt;}
.ls30{letter-spacing:0.640000pt;}
.ls2b{letter-spacing:1.088000pt;}
.ls23{letter-spacing:1.152000pt;}
.ls2c{letter-spacing:1.171200pt;}
.ls25{letter-spacing:1.280000pt;}
.ls22{letter-spacing:1.344000pt;}
.ls21{letter-spacing:2.112000pt;}
.ls1a{letter-spacing:3.766400pt;}
.ls1b{letter-spacing:3.790080pt;}
.ls20{letter-spacing:3.890560pt;}
.lsf{letter-spacing:3.944320pt;}
.ls0{letter-spacing:4.480000pt;}
.ls24{letter-spacing:4.530560pt;}
.ls10{letter-spacing:9.920000pt;}
.ls11{letter-spacing:11.200000pt;}
.ls15{letter-spacing:11.520000pt;}
.lsc{letter-spacing:12.726400pt;}
.ls1{letter-spacing:13.440000pt;}
.ls14{letter-spacing:14.184320pt;}
.ls13{letter-spacing:14.272000pt;}
.lse{letter-spacing:17.111680pt;}
.ls16{letter-spacing:21.845760pt;}
.ls18{letter-spacing:24.151680pt;}
.ls12{letter-spacing:27.458347pt;}
.ls19{letter-spacing:101.970987pt;}
.ls17{letter-spacing:200.512000pt;}
.wsa{word-spacing:-19.056533pt;}
.ws10{word-spacing:-16.640000pt;}
.wse{word-spacing:-16.448000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.936000pt;}
.ws9{word-spacing:-15.808000pt;}
.wsb{word-spacing:-15.744000pt;}
.ws5{word-spacing:-14.080000pt;}
.ws8{word-spacing:-13.952000pt;}
.ws7{word-spacing:-13.824000pt;}
.wsc{word-spacing:-10.271467pt;}
.wsf{word-spacing:-10.219081pt;}
.ws3{word-spacing:0.000000pt;}
.ws6{word-spacing:4.096000pt;}
.wsd{word-spacing:9.611520pt;}
._1f{margin-left:-9.920000pt;}
._20{margin-left:-7.520000pt;}
._25{margin-left:-4.636587pt;}
._1d{margin-left:-3.413333pt;}
._7{margin-left:-2.432000pt;}
._0{margin-left:-1.295360pt;}
._2{width:1.276800pt;}
._b{width:2.166400pt;}
._e{width:3.164800pt;}
._a{width:4.672000pt;}
._14{width:5.568000pt;}
._18{width:6.464000pt;}
._10{width:7.808000pt;}
._d{width:8.815360pt;}
._c{width:9.856000pt;}
._13{width:10.819200pt;}
._2e{width:11.712000pt;}
._11{width:12.608000pt;}
._12{width:13.792000pt;}
._15{width:14.848000pt;}
._21{width:15.957333pt;}
._16{width:17.408000pt;}
._17{width:18.467200pt;}
._8{width:19.840000pt;}
._9{width:20.938667pt;}
._f{width:21.933867pt;}
._24{width:22.917333pt;}
._28{width:23.897600pt;}
._26{width:26.112000pt;}
._27{width:27.005440pt;}
._19{width:28.032000pt;}
._1a{width:29.120000pt;}
._1b{width:30.506667pt;}
._1c{width:31.396693pt;}
._29{width:33.280000pt;}
._2a{width:34.432000pt;}
._2b{width:35.328000pt;}
._2c{width:36.233600pt;}
._3{width:38.218880pt;}
._5{width:55.242880pt;}
._6{width:56.519680pt;}
._23{width:85.059890pt;}
._22{width:86.313452pt;}
._1e{width:92.293973pt;}
._1{width:124.530560pt;}
._4{width:190.583680pt;}
._2d{width:250.752000pt;}
.fsa{font-size:27.068445pt;}
.fs5{font-size:27.130344pt;}
.fsb{font-size:27.484882pt;}
.fs6{font-size:27.547734pt;}
.fsd{font-size:33.315009pt;}
.fsc{font-size:33.343968pt;}
.fs9{font-size:33.391193pt;}
.fs7{font-size:33.407347pt;}
.fs8{font-size:33.808583pt;}
.fse{font-size:40.876324pt;}
.fs4{font-size:45.440000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y12a{bottom:-6.093807pt;}
.y0{bottom:0.000000pt;}
.y11c{bottom:2.248198pt;}
.y10c{bottom:3.593722pt;}
.y10e{bottom:3.678870pt;}
.y78{bottom:4.800000pt;}
.y9b{bottom:5.440000pt;}
.yec{bottom:5.886656pt;}
.y91{bottom:5.900259pt;}
.y95{bottom:7.200000pt;}
.y81{bottom:7.360000pt;}
.y80{bottom:7.520000pt;}
.y7d{bottom:7.840000pt;}
.y77{bottom:12.840000pt;}
.y99{bottom:14.880000pt;}
.y98{bottom:15.040000pt;}
.y7c{bottom:15.840000pt;}
.y74{bottom:18.600000pt;}
.y8f{bottom:21.552380pt;}
.yea{bottom:22.127736pt;}
.y9a{bottom:24.480000pt;}
.y7e{bottom:28.000000pt;}
.y73{bottom:28.680000pt;}
.y79{bottom:29.800000pt;}
.y84{bottom:29.900179pt;}
.ydf{bottom:30.456490pt;}
.y7b{bottom:34.240000pt;}
.y76{bottom:39.240000pt;}
.yee{bottom:43.470139pt;}
.y93{bottom:50.768370pt;}
.y5{bottom:51.520000pt;}
.y85{bottom:52.333582pt;}
.ye0{bottom:52.840011pt;}
.y75{bottom:56.680000pt;}
.yed{bottom:57.004362pt;}
.y4{bottom:71.072000pt;}
.y86{bottom:74.872637pt;}
.ye1{bottom:75.327643pt;}
.y92{bottom:79.046537pt;}
.y3{bottom:89.472000pt;}
.y87{bottom:97.307345pt;}
.ye2{bottom:97.711164pt;}
.y2{bottom:106.272000pt;}
.y88{bottom:119.324663pt;}
.ye3{bottom:120.094686pt;}
.y1{bottom:123.232000pt;}
.y90{bottom:135.498522pt;}
.yeb{bottom:136.752191pt;}
.y89{bottom:141.759371pt;}
.ye4{bottom:142.582317pt;}
.y32{bottom:142.586667pt;}
.yce{bottom:144.026667pt;}
.yb8{bottom:145.786667pt;}
.y52{bottom:147.546667pt;}
.y6a{bottom:154.106667pt;}
.y82{bottom:155.066667pt;}
.ydd{bottom:156.026667pt;}
.y31{bottom:160.986667pt;}
.y8a{bottom:164.298426pt;}
.ye5{bottom:164.965839pt;}
.y10a{bottom:167.066667pt;}
.ycd{bottom:171.546667pt;}
.y144{bottom:172.826667pt;}
.yb7{bottom:173.466667pt;}
.y51{bottom:175.226667pt;}
.y30{bottom:179.386667pt;}
.y69{bottom:181.626667pt;}
.ydc{bottom:183.866667pt;}
.y8b{bottom:186.733134pt;}
.ye6{bottom:187.349360pt;}
.y143{bottom:191.226667pt;}
.y109{bottom:191.866667pt;}
.y129{bottom:191.946667pt;}
.y128{bottom:196.787257pt;}
.y127{bottom:196.787258pt;}
.y126{bottom:196.787260pt;}
.y125{bottom:196.787261pt;}
.y124{bottom:196.787263pt;}
.y123{bottom:196.787264pt;}
.y122{bottom:196.787265pt;}
.y121{bottom:196.787267pt;}
.y120{bottom:196.787268pt;}
.y11f{bottom:196.787269pt;}
.y11e{bottom:196.787271pt;}
.y11d{bottom:196.787272pt;}
.y11b{bottom:196.787274pt;}
.y2f{bottom:197.786667pt;}
.ycc{bottom:199.226667pt;}
.yb6{bottom:200.986667pt;}
.y50{bottom:202.746667pt;}
.y8c{bottom:209.167842pt;}
.y68{bottom:209.306667pt;}
.y142{bottom:209.626667pt;}
.ye7{bottom:209.836991pt;}
.y7f{bottom:211.546667pt;}
.y2e{bottom:216.186667pt;}
.y7a{bottom:226.426667pt;}
.ycb{bottom:226.746667pt;}
.y141{bottom:228.026667pt;}
.yb5{bottom:228.666667pt;}
.y4f{bottom:230.426667pt;}
.y8d{bottom:231.706898pt;}
.ye8{bottom:232.220513pt;}
.y2d{bottom:234.586667pt;}
.y67{bottom:236.826667pt;}
.ydb{bottom:239.066667pt;}
.y140{bottom:246.426667pt;}
.y2c{bottom:252.986667pt;}
.y8e{bottom:254.141605pt;}
.yca{bottom:254.426667pt;}
.ye9{bottom:254.604035pt;}
.yb4{bottom:256.186667pt;}
.y4e{bottom:257.946667pt;}
.y66{bottom:260.986667pt;}
.y13f{bottom:264.826667pt;}
.yda{bottom:266.746667pt;}
.y2b{bottom:271.386667pt;}
.yc9{bottom:281.946667pt;}
.y13e{bottom:283.226667pt;}
.yb3{bottom:283.866667pt;}
.y4d{bottom:285.626667pt;}
.y2a{bottom:289.786667pt;}
.y72{bottom:290.746667pt;}
.yd9{bottom:294.266667pt;}
.y11a{bottom:294.665445pt;}
.y119{bottom:294.665446pt;}
.y118{bottom:294.665448pt;}
.y117{bottom:294.665449pt;}
.y116{bottom:294.665450pt;}
.y115{bottom:294.665452pt;}
.y114{bottom:294.665453pt;}
.y113{bottom:294.665455pt;}
.y112{bottom:294.665456pt;}
.y111{bottom:294.665457pt;}
.y110{bottom:294.665459pt;}
.y10f{bottom:294.665460pt;}
.y10d{bottom:294.665461pt;}
.y13d{bottom:301.666667pt;}
.y29{bottom:308.226667pt;}
.y10b{bottom:309.176540pt;}
.yc8{bottom:309.666667pt;}
.yb2{bottom:311.426667pt;}
.y4c{bottom:313.186667pt;}
.y13c{bottom:320.066667pt;}
.yd8{bottom:321.986667pt;}
.y28{bottom:326.626667pt;}
.yc7{bottom:337.186667pt;}
.y13b{bottom:338.466667pt;}
.yb1{bottom:339.106667pt;}
.y4b{bottom:340.866667pt;}
.y27{bottom:345.026667pt;}
.y108{bottom:347.106667pt;}
.yd7{bottom:349.506667pt;}
.y13a{bottom:356.866667pt;}
.y26{bottom:363.426667pt;}
.yc6{bottom:364.866667pt;}
.yb0{bottom:366.626667pt;}
.y107{bottom:368.226667pt;}
.y4a{bottom:368.386667pt;}
.y139{bottom:375.266667pt;}
.yd6{bottom:377.186667pt;}
.y25{bottom:381.826667pt;}
.y71{bottom:382.146667pt;}
.yc5{bottom:392.386667pt;}
.y138{bottom:393.666667pt;}
.yaf{bottom:394.306667pt;}
.yd5{bottom:395.586667pt;}
.y49{bottom:396.066667pt;}
.y24{bottom:400.226667pt;}
.y106{bottom:405.506667pt;}
.y70{bottom:409.666667pt;}
.yc4{bottom:410.786667pt;}
.y137{bottom:412.066667pt;}
.y23{bottom:418.626667pt;}
.yae{bottom:421.826667pt;}
.y48{bottom:423.586667pt;}
.yd4{bottom:430.306667pt;}
.yde{bottom:430.620440pt;}
.y105{bottom:433.026667pt;}
.y22{bottom:437.026667pt;}
.y6f{bottom:437.346667pt;}
.yc3{bottom:445.666667pt;}
.yad{bottom:449.346667pt;}
.y47{bottom:451.266667pt;}
.y21{bottom:455.426667pt;}
.y136{bottom:457.666667pt;}
.y104{bottom:460.706667pt;}
.y6e{bottom:465.186667pt;}
.y20{bottom:473.826667pt;}
.yac{bottom:477.026667pt;}
.y46{bottom:478.786667pt;}
.y135{bottom:479.586667pt;}
.y103{bottom:488.226667pt;}
.y1f{bottom:492.226667pt;}
.y6d{bottom:493.026667pt;}
.yab{bottom:504.546667pt;}
.y45{bottom:506.466667pt;}
.y1e{bottom:510.626667pt;}
.y102{bottom:515.746667pt;}
.y134{bottom:523.426667pt;}
.y6c{bottom:527.906667pt;}
.y83{bottom:528.046533pt;}
.y1d{bottom:529.026667pt;}
.y65{bottom:530.786667pt;}
.yaa{bottom:532.226667pt;}
.y44{bottom:533.986667pt;}
.y101{bottom:543.453333pt;}
.y1c{bottom:547.453333pt;}
.y133{bottom:550.973333pt;}
.y64{bottom:551.933333pt;}
.ya9{bottom:559.773333pt;}
.y43{bottom:561.693333pt;}
.y1b{bottom:565.853333pt;}
.y100{bottom:570.973333pt;}
.y63{bottom:573.053333pt;}
.y132{bottom:578.653333pt;}
.y1a{bottom:584.253333pt;}
.ya8{bottom:587.453333pt;}
.y42{bottom:589.213333pt;}
.y62{bottom:594.173333pt;}
.yff{bottom:598.653333pt;}
.y19{bottom:602.653333pt;}
.y131{bottom:606.173333pt;}
.ya7{bottom:614.973333pt;}
.y61{bottom:615.453333pt;}
.y41{bottom:616.893333pt;}
.y18{bottom:621.053333pt;}
.yfe{bottom:626.173333pt;}
.y130{bottom:633.853333pt;}
.y17{bottom:639.453333pt;}
.ya6{bottom:642.653333pt;}
.y60{bottom:642.973333pt;}
.y40{bottom:644.413333pt;}
.yfd{bottom:653.853333pt;}
.y16{bottom:657.853333pt;}
.y12f{bottom:661.373333pt;}
.ya5{bottom:670.173333pt;}
.y5f{bottom:670.653333pt;}
.y3f{bottom:672.093333pt;}
.y15{bottom:676.253333pt;}
.yfc{bottom:681.373333pt;}
.y152{bottom:682.013333pt;}
.y12e{bottom:688.893333pt;}
.y14{bottom:694.653333pt;}
.ya4{bottom:697.853333pt;}
.y5e{bottom:698.173333pt;}
.y3e{bottom:699.613333pt;}
.y151{bottom:700.413333pt;}
.yfb{bottom:709.053333pt;}
.yd3{bottom:711.773333pt;}
.y13{bottom:713.053333pt;}
.y12d{bottom:716.573333pt;}
.y150{bottom:718.813333pt;}
.ya3{bottom:725.373333pt;}
.y5d{bottom:725.693333pt;}
.y3d{bottom:727.293333pt;}
.y12{bottom:731.453333pt;}
.yd2{bottom:732.893333pt;}
.yc2{bottom:733.533333pt;}
.yfa{bottom:736.573333pt;}
.y14f{bottom:737.213333pt;}
.y12c{bottom:744.093333pt;}
.y11{bottom:749.853333pt;}
.ya2{bottom:753.053333pt;}
.y5c{bottom:753.373333pt;}
.yd1{bottom:754.173333pt;}
.y3c{bottom:754.813333pt;}
.y14e{bottom:755.613333pt;}
.yc1{bottom:761.053333pt;}
.yf9{bottom:764.253333pt;}
.y10{bottom:768.253333pt;}
.y12b{bottom:771.773333pt;}
.y14d{bottom:774.053333pt;}
.ya1{bottom:780.613333pt;}
.y5b{bottom:780.933333pt;}
.y3b{bottom:782.533333pt;}
.yf{bottom:786.693333pt;}
.yf8{bottom:791.813333pt;}
.yd0{bottom:792.453333pt;}
.yc0{bottom:799.333333pt;}
.ye{bottom:805.573333pt;}
.ya0{bottom:808.293333pt;}
.y6b{bottom:809.413333pt;}
.y3a{bottom:810.053333pt;}
.y14c{bottom:810.853333pt;}
.yf7{bottom:819.493333pt;}
.ycf{bottom:819.973333pt;}
.y5a{bottom:826.693333pt;}
.ybf{bottom:827.013333pt;}
.yd{bottom:827.653333pt;}
.y14b{bottom:829.253333pt;}
.y9f{bottom:835.813333pt;}
.y39{bottom:837.733333pt;}
.yf6{bottom:847.013333pt;}
.y59{bottom:847.653333pt;}
.yc{bottom:852.133333pt;}
.ybe{bottom:854.533333pt;}
.y9e{bottom:863.493333pt;}
.y38{bottom:865.253333pt;}
.y14a{bottom:866.053333pt;}
.yf5{bottom:874.693333pt;}
.y58{bottom:875.173333pt;}
.yb{bottom:876.773333pt;}
.ybd{bottom:882.213333pt;}
.y149{bottom:884.453333pt;}
.y9d{bottom:891.013333pt;}
.y37{bottom:892.933333pt;}
.ya{bottom:901.253333pt;}
.yf4{bottom:902.213333pt;}
.y57{bottom:902.853333pt;}
.ybc{bottom:909.733333pt;}
.y9c{bottom:918.693333pt;}
.y36{bottom:920.453333pt;}
.y148{bottom:921.253333pt;}
.y9{bottom:925.733333pt;}
.yf3{bottom:929.893333pt;}
.y56{bottom:930.373333pt;}
.y97{bottom:933.573333pt;}
.ybb{bottom:937.413333pt;}
.y147{bottom:939.653333pt;}
.y35{bottom:948.133333pt;}
.y8{bottom:950.373333pt;}
.yf2{bottom:957.413333pt;}
.y55{bottom:958.053333pt;}
.yba{bottom:964.933333pt;}
.y7{bottom:974.853333pt;}
.y96{bottom:975.173333pt;}
.y34{bottom:975.653333pt;}
.y146{bottom:976.453333pt;}
.yf1{bottom:985.093333pt;}
.y54{bottom:985.573333pt;}
.y145{bottom:994.853333pt;}
.y94{bottom:1001.573333pt;}
.yf0{bottom:1009.893333pt;}
.y33{bottom:1010.533333pt;}
.yb9{bottom:1010.693333pt;}
.yef{bottom:1012.960000pt;}
.y6{bottom:1013.120000pt;}
.y53{bottom:1013.280000pt;}
.h25{height:14.429360pt;}
.h27{height:14.511096pt;}
.h1f{height:24.266438pt;}
.h17{height:24.321930pt;}
.h20{height:24.639768pt;}
.h18{height:24.696113pt;}
.h13{height:26.400000pt;}
.h15{height:26.560000pt;}
.h1c{height:26.592000pt;}
.h22{height:29.313304pt;}
.h21{height:29.338784pt;}
.h19{height:29.394551pt;}
.h1a{height:29.747591pt;}
.h23{height:29.866385pt;}
.h1b{height:29.934683pt;}
.h29{height:34.549276pt;}
.h26{height:36.644986pt;}
.h1d{height:41.600000pt;}
.h7{height:48.781250pt;}
.h2{height:52.785000pt;}
.h3{height:54.093750pt;}
.h8{height:56.843750pt;}
.h6{height:57.375000pt;}
.h10{height:64.320000pt;}
.h5{height:66.507188pt;}
.h2b{height:67.128750pt;}
.ha{height:68.032000pt;}
.h9{height:71.093750pt;}
.h14{height:73.653750pt;}
.h4{height:75.602187pt;}
.h24{height:83.360417pt;}
.h28{height:96.655476pt;}
.hd{height:108.853750pt;}
.hc{height:111.413750pt;}
.hb{height:119.733750pt;}
.h2a{height:132.984308pt;}
.h11{height:140.853750pt;}
.he{height:141.013750pt;}
.h12{height:162.975000pt;}
.hf{height:166.613750pt;}
.h1e{height:263.917373pt;}
.h16{height:263.999120pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:43.625017pt;}
.w10{width:43.625022pt;}
.wb{width:43.645450pt;}
.wf{width:43.645455pt;}
.wd{width:43.727183pt;}
.w11{width:43.727189pt;}
.we{width:43.747616pt;}
.w12{width:43.747622pt;}
.w6{width:47.200000pt;}
.w4{width:62.720000pt;}
.w5{width:75.680000pt;}
.w9{width:399.085636pt;}
.w8{width:399.322216pt;}
.w7{width:444.253333pt;}
.w3{width:504.253333pt;}
.wa{width:567.738202pt;}
.w13{width:572.446365pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x32{left:-41.050424pt;}
.x0{left:0.000000pt;}
.x17{left:7.200000pt;}
.x1d{left:12.157817pt;}
.x2e{left:14.201118pt;}
.x1b{left:20.196467pt;}
.x1c{left:32.933019pt;}
.x12{left:36.800000pt;}
.x30{left:40.273967pt;}
.x31{left:41.173031pt;}
.xa{left:112.474667pt;}
.x1{left:113.471988pt;}
.x23{left:116.281081pt;}
.x3{left:124.351988pt;}
.x8{left:145.786655pt;}
.x6{left:151.226655pt;}
.xb{left:156.354667pt;}
.x7{left:160.666655pt;}
.x13{left:174.274667pt;}
.x1e{left:180.864930pt;}
.x18{left:189.146667pt;}
.x1a{left:197.236596pt;}
.x24{left:199.774306pt;}
.x25{left:203.553249pt;}
.x14{left:211.874667pt;}
.x15{left:221.474667pt;}
.x19{left:236.346667pt;}
.x4{left:241.946655pt;}
.x26{left:247.280431pt;}
.xe{left:276.034667pt;}
.x16{left:282.114667pt;}
.xf{left:286.114667pt;}
.x27{left:290.922475pt;}
.xc{left:303.741333pt;}
.x1f{left:304.994099pt;}
.xd{left:305.981333pt;}
.x20{left:307.333074pt;}
.x10{left:325.501333pt;}
.x21{left:326.466655pt;}
.x28{left:334.649657pt;}
.x29{left:378.274672pt;}
.x5{left:396.866655pt;}
.x2a{left:422.027396pt;}
.x2b{left:465.652411pt;}
.x2c{left:509.277427pt;}
.x2d{left:553.021637pt;}
.x9{left:596.933322pt;}
.x11{left:617.733333pt;}
.x2f{left:640.373834pt;}
.x2{left:680.453322pt;}
.x22{left:685.893322pt;}
}




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