
    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_458e06a7742c680c06f2a9ab.woff2')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_54428688e3360d56f76a1260.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_a9adbcba0d1623f4310e5743.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_adcd8addc28d147ebb1058cf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_83be2312b00251a8e2317267.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_18d5e216e7dbd140c77cdeb9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_591d1b9e3ef3f3f8a12799a0.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_68b3c2d95056ca565bd46fe8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.119629;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_78b6f4c941314113c043e966.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ec1a4f5e3fdabe1cd37acec1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.104492;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.244185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244185,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.244792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244792,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(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:-82.800000px;}
.v4{vertical-align:-74.280000px;}
.v2{vertical-align:-72.000000px;}
.v3{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.ls37{letter-spacing:-9.240000px;}
.ls18{letter-spacing:-1.440000px;}
.ls27{letter-spacing:-1.152000px;}
.ls1f{letter-spacing:-0.936000px;}
.ls16{letter-spacing:-0.792000px;}
.lsa{letter-spacing:-0.720000px;}
.ls23{letter-spacing:-0.576000px;}
.ls9{letter-spacing:-0.432000px;}
.ls10{letter-spacing:-0.216000px;}
.ls33{letter-spacing:-0.144000px;}
.ls4{letter-spacing:-0.109200px;}
.lse{letter-spacing:-0.106800px;}
.ls17{letter-spacing:-0.072000px;}
.lsf{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.013440px;}
.ls2{letter-spacing:0.144000px;}
.ls19{letter-spacing:0.216000px;}
.ls13{letter-spacing:0.252000px;}
.ls5{letter-spacing:0.259800px;}
.ls1d{letter-spacing:0.264000px;}
.ls7{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.306600px;}
.ls24{letter-spacing:0.612000px;}
.ls41{letter-spacing:1.296000px;}
.ls32{letter-spacing:1.584000px;}
.ls3c{letter-spacing:1.656000px;}
.ls38{letter-spacing:1.728000px;}
.ls3d{letter-spacing:2.088000px;}
.ls26{letter-spacing:2.304000px;}
.ls39{letter-spacing:2.376000px;}
.ls29{letter-spacing:2.448000px;}
.ls2f{letter-spacing:2.640000px;}
.ls42{letter-spacing:2.664000px;}
.ls43{letter-spacing:2.808000px;}
.ls31{letter-spacing:2.880000px;}
.ls28{letter-spacing:3.024000px;}
.ls34{letter-spacing:3.096000px;}
.ls2e{letter-spacing:3.168000px;}
.ls3e{letter-spacing:3.384000px;}
.ls3b{letter-spacing:3.456000px;}
.ls36{letter-spacing:3.528000px;}
.ls2b{letter-spacing:3.744000px;}
.ls2a{letter-spacing:3.816000px;}
.ls2c{letter-spacing:3.888000px;}
.ls2d{letter-spacing:4.464000px;}
.ls22{letter-spacing:4.986720px;}
.ls20{letter-spacing:9.629280px;}
.ls1c{letter-spacing:10.224000px;}
.ls35{letter-spacing:11.100000px;}
.ls15{letter-spacing:13.104000px;}
.ls12{letter-spacing:13.824000px;}
.ls8{letter-spacing:17.424000px;}
.lsd{letter-spacing:18.144000px;}
.ls3f{letter-spacing:21.024000px;}
.ls21{letter-spacing:21.546720px;}
.ls30{letter-spacing:21.744000px;}
.ls3a{letter-spacing:22.464000px;}
.ls1e{letter-spacing:149.904000px;}
.lsc{letter-spacing:153.360000px;}
.ls14{letter-spacing:172.200000px;}
.ls1b{letter-spacing:201.720000px;}
.ls6{letter-spacing:226.200000px;}
.ls1{letter-spacing:318.360000px;}
.ls1a{letter-spacing:660.540000px;}
.lsb{letter-spacing:663.996000px;}
.ls40{letter-spacing:1834.062720px;}
.ls0{letter-spacing:1864.500000px;}
.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;}
}
.ws0{word-spacing:-66.240000px;}
.ws14{word-spacing:-31.116000px;}
.ws13{word-spacing:-23.904000px;}
.ws11{word-spacing:-23.832000px;}
.ws1e{word-spacing:-23.760000px;}
.ws16{word-spacing:-23.544000px;}
.ws18{word-spacing:-23.472000px;}
.ws15{word-spacing:-23.184000px;}
.ws10{word-spacing:-23.112000px;}
.ws20{word-spacing:-22.896000px;}
.ws21{word-spacing:-22.824000px;}
.ws1f{word-spacing:-22.680000px;}
.ws12{word-spacing:-22.464000px;}
.ws1b{word-spacing:-22.392000px;}
.ws1c{word-spacing:-22.320000px;}
.ws1a{word-spacing:-22.104000px;}
.ws17{word-spacing:-21.744000px;}
.ws19{word-spacing:-21.672000px;}
.ws1d{word-spacing:-21.312000px;}
.ws5{word-spacing:-20.304000px;}
.wse{word-spacing:-20.232000px;}
.wsa{word-spacing:-20.016000px;}
.ws9{word-spacing:-19.944000px;}
.wsf{word-spacing:-19.872000px;}
.ws8{word-spacing:-19.800000px;}
.wsb{word-spacing:-19.584000px;}
.ws6{word-spacing:-19.296000px;}
.ws2{word-spacing:-18.414720px;}
.ws1{word-spacing:-18.305520px;}
.wsd{word-spacing:-17.225280px;}
.ws3{word-spacing:-16.873080px;}
.wsc{word-spacing:-16.613280px;}
.ws7{word-spacing:-16.506480px;}
.ws4{word-spacing:0.000000px;}
._30{margin-left:-11.376000px;}
._31{margin-left:-7.651680px;}
._2b{margin-left:-5.851200px;}
._f{margin-left:-4.619520px;}
._a{margin-left:-3.510720px;}
._9{margin-left:-2.359680px;}
._0{margin-left:-1.010880px;}
._1{width:1.514880px;}
._6{width:3.472320px;}
._17{width:4.584000px;}
._3{width:5.630400px;}
._12{width:7.411200px;}
._7{width:8.544960px;}
._8{width:9.671520px;}
._10{width:11.128320px;}
._13{width:12.167760px;}
._b{width:13.512960px;}
._c{width:14.531520px;}
._16{width:15.862080px;}
._11{width:17.372160px;}
._1a{width:18.552000px;}
._27{width:19.601280px;}
._20{width:21.036000px;}
._5{width:22.718400px;}
._4{width:23.863680px;}
._15{width:25.850640px;}
._14{width:26.856480px;}
._1d{width:28.014720px;}
._d{width:29.278080px;}
._e{width:30.552960px;}
._19{width:32.234880px;}
._18{width:33.408000px;}
._28{width:34.863360px;}
._21{width:36.288000px;}
._1e{width:38.304000px;}
._1f{width:39.616800px;}
._1c{width:41.544000px;}
._1b{width:42.696000px;}
._26{width:44.222400px;}
._25{width:45.298080px;}
._23{width:47.090880px;}
._22{width:48.168000px;}
._24{width:49.176000px;}
._2a{width:57.737760px;}
._29{width:58.968000px;}
._2e{width:61.704000px;}
._2f{width:62.952000px;}
._2d{width:69.408000px;}
._2c{width:70.776000px;}
._2{width:193.961280px;}
.fc3{color:rgb(0,102,255);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:77.400000px;}
.y4{bottom:82.260000px;}
.y3{bottom:101.340000px;}
.y2{bottom:121.320000px;}
.y34{bottom:143.640000px;}
.yc9{bottom:145.080000px;}
.ybc{bottom:147.240000px;}
.y160{bottom:148.140000px;}
.y120{bottom:150.480000px;}
.y193{bottom:155.700000px;}
.y167{bottom:155.880000px;}
.y70{bottom:156.060000px;}
.y55{bottom:158.220000px;}
.y33{bottom:160.920000px;}
.y15f{bottom:161.640000px;}
.yc8{bottom:162.360000px;}
.y125{bottom:165.420000px;}
.y173{bottom:166.140000px;}
.y109{bottom:166.320000px;}
.y19f{bottom:167.040000px;}
.y105{bottom:167.940000px;}
.y12e{bottom:170.640000px;}
.y90{bottom:171.360000px;}
.ya6{bottom:173.700000px;}
.y192{bottom:176.400000px;}
.y32{bottom:178.200000px;}
.yc7{bottom:179.640000px;}
.y11f{bottom:181.440000px;}
.y19b{bottom:182.340000px;}
.y31{bottom:182.700000px;}
.y6f{bottom:187.020000px;}
.y54{bottom:189.180000px;}
.ye8{bottom:191.880000px;}
.y19e{bottom:194.220000px;}
.y30{bottom:195.300000px;}
.y146{bottom:196.200000px;}
.yc6{bottom:196.920000px;}
.y191{bottom:197.100000px;}
.y172{bottom:197.280000px;}
.y108{bottom:197.460000px;}
.y104{bottom:199.080000px;}
.y12d{bottom:201.780000px;}
.y8f{bottom:202.500000px;}
.ya5{bottom:204.660000px;}
.ybb{bottom:209.340000px;}
.y15e{bottom:210.240000px;}
.y2f{bottom:212.580000px;}
.yc5{bottom:214.020000px;}
.y124{bottom:217.080000px;}
.y190{bottom:217.800000px;}
.y166{bottom:217.980000px;}
.y6e{bottom:218.160000px;}
.y53{bottom:220.320000px;}
.ye7{bottom:223.020000px;}
.y171{bottom:228.240000px;}
.y2e{bottom:229.860000px;}
.y103{bottom:230.040000px;}
.yc4{bottom:231.300000px;}
.y12c{bottom:232.740000px;}
.y8e{bottom:233.460000px;}
.y2d{bottom:234.360000px;}
.ya4{bottom:235.800000px;}
.y123{bottom:236.880000px;}
.y18f{bottom:238.530000px;}
.y19a{bottom:238.710000px;}
.yba{bottom:240.330000px;}
.y15d{bottom:241.230000px;}
.y11e{bottom:243.570000px;}
.y2c{bottom:247.890000px;}
.yc3{bottom:248.610000px;}
.y6d{bottom:249.150000px;}
.y52{bottom:251.310000px;}
.ye6{bottom:254.010000px;}
.y170{bottom:259.230000px;}
.y102{bottom:261.210000px;}
.y12b{bottom:263.910000px;}
.y8d{bottom:264.630000px;}
.yc2{bottom:265.890000px;}
.ya3{bottom:266.610000px;}
.y107{bottom:269.850000px;}
.yb9{bottom:271.470000px;}
.y15c{bottom:272.370000px;}
.y11d{bottom:274.710000px;}
.y2b{bottom:277.410000px;}
.y18e{bottom:279.930000px;}
.y165{bottom:280.110000px;}
.y6c{bottom:280.290000px;}
.y51{bottom:282.450000px;}
.ye5{bottom:285.150000px;}
.y16f{bottom:290.370000px;}
.y106{bottom:290.550000px;}
.y101{bottom:292.170000px;}
.y12a{bottom:294.870000px;}
.y8c{bottom:295.590000px;}
.ya2{bottom:299.550000px;}
.y18d{bottom:300.630000px;}
.y199{bottom:300.810000px;}
.yb8{bottom:302.610000px;}
.y15b{bottom:303.330000px;}
.y11c{bottom:305.670000px;}
.y6b{bottom:311.250000px;}
.y50{bottom:313.410000px;}
.y2a{bottom:313.770000px;}
.ye4{bottom:316.110000px;}
.ya1{bottom:319.530000px;}
.y16e{bottom:321.330000px;}
.y198{bottom:321.510000px;}
.y145{bottom:323.130000px;}
.y100{bottom:323.310000px;}
.y8b{bottom:328.530000px;}
.yb7{bottom:333.570000px;}
.y15a{bottom:334.470000px;}
.ya0{bottom:336.810000px;}
.y19d{bottom:342.030000px;}
.yc1{bottom:342.210000px;}
.y6a{bottom:342.390000px;}
.y4f{bottom:344.550000px;}
.y129{bottom:346.710000px;}
.ye3{bottom:347.250000px;}
.y8a{bottom:348.510000px;}
.y29{bottom:350.130000px;}
.y16d{bottom:352.470000px;}
.y9f{bottom:354.090000px;}
.yff{bottom:354.270000px;}
.y144{bottom:354.450000px;}
.y19c{bottom:362.730000px;}
.y197{bottom:362.910000px;}
.y18c{bottom:363.090000px;}
.yb6{bottom:364.710000px;}
.y159{bottom:365.430000px;}
.y89{bottom:365.790000px;}
.y128{bottom:367.410000px;}
.y11b{bottom:367.770000px;}
.y9e{bottom:371.370000px;}
.y69{bottom:373.350000px;}
.y4e{bottom:375.510000px;}
.ye2{bottom:378.210000px;}
.y88{bottom:383.070000px;}
.y16c{bottom:383.430000px;}
.y18b{bottom:383.610000px;}
.yfe{bottom:385.410000px;}
.y28{bottom:386.670000px;}
.y9d{bottom:388.650000px;}
.yb5{bottom:395.670000px;}
.y158{bottom:396.570000px;}
.y11a{bottom:398.910000px;}
.y87{bottom:400.350000px;}
.yc0{bottom:404.310000px;}
.y68{bottom:404.490000px;}
.y175{bottom:404.670000px;}
.y9c{bottom:405.750000px;}
.y4d{bottom:406.650000px;}
.ye1{bottom:409.350000px;}
.y16b{bottom:414.570000px;}
.yfd{bottom:416.370000px;}
.y143{bottom:416.550000px;}
.y86{bottom:417.450000px;}
.y27{bottom:423.030000px;}
.y9b{bottom:423.210000px;}
.y18a{bottom:425.010000px;}
.yb4{bottom:426.810000px;}
.y157{bottom:427.530000px;}
.y119{bottom:429.870000px;}
.y85{bottom:434.730000px;}
.y67{bottom:435.450000px;}
.y4c{bottom:437.610000px;}
.ye0{bottom:440.310000px;}
.y26{bottom:441.930000px;}
.y16a{bottom:445.530000px;}
.y189{bottom:445.710000px;}
.y9a{bottom:445.890000px;}
.yfc{bottom:447.330000px;}
.y142{bottom:447.510000px;}
.yb3{bottom:457.770000px;}
.y156{bottom:458.670000px;}
.y25{bottom:460.830000px;}
.y118{bottom:461.010000px;}
.ybf{bottom:466.410000px;}
.y66{bottom:466.590000px;}
.y4b{bottom:468.795000px;}
.ydf{bottom:471.495000px;}
.y99{bottom:476.895000px;}
.yfb{bottom:478.695000px;}
.y24{bottom:479.955000px;}
.y84{bottom:480.315000px;}
.y141{bottom:484.635000px;}
.y188{bottom:487.155000px;}
.yb2{bottom:488.955000px;}
.y155{bottom:489.675000px;}
.y117{bottom:492.015000px;}
.y169{bottom:497.415000px;}
.y65{bottom:497.595000px;}
.y164{bottom:497.775000px;}
.y23{bottom:498.855000px;}
.y4a{bottom:499.755000px;}
.yde{bottom:502.455000px;}
.y187{bottom:507.855000px;}
.y98{bottom:508.035000px;}
.yfa{bottom:509.655000px;}
.y83{bottom:511.275000px;}
.y22{bottom:517.935000px;}
.yb1{bottom:519.915000px;}
.y154{bottom:520.815000px;}
.y116{bottom:523.155000px;}
.ybe{bottom:528.555000px;}
.y64{bottom:528.735000px;}
.y163{bottom:528.915000px;}
.ydd{bottom:533.595000px;}
.y21{bottom:536.835000px;}
.y168{bottom:538.815000px;}
.y97{bottom:538.995000px;}
.y140{bottom:540.615000px;}
.yf9{bottom:540.795000px;}
.y82{bottom:542.415000px;}
.y186{bottom:549.255000px;}
.yb0{bottom:551.055000px;}
.y49{bottom:551.595000px;}
.y153{bottom:551.775000px;}
.y115{bottom:554.115000px;}
.y20{bottom:555.735000px;}
.ybd{bottom:559.515000px;}
.y63{bottom:559.695000px;}
.y162{bottom:559.875000px;}
.ydc{bottom:564.555000px;}
.y185{bottom:569.955000px;}
.y96{bottom:570.135000px;}
.y48{bottom:571.575000px;}
.yf8{bottom:571.755000px;}
.y13f{bottom:571.935000px;}
.y81{bottom:573.375000px;}
.y1f{bottom:574.815000px;}
.yaf{bottom:582.015000px;}
.y152{bottom:582.735000px;}
.y114{bottom:585.255000px;}
.y47{bottom:588.855000px;}
.y127{bottom:590.655000px;}
.y62{bottom:590.835000px;}
.y1e{bottom:593.895000px;}
.ydb{bottom:595.695000px;}
.y95{bottom:601.095000px;}
.y13e{bottom:602.895000px;}
.y80{bottom:604.515000px;}
.y46{bottom:605.955000px;}
.y184{bottom:611.355000px;}
.yae{bottom:613.155000px;}
.y151{bottom:614.055000px;}
.y113{bottom:616.215000px;}
.y126{bottom:621.615000px;}
.y61{bottom:621.795000px;}
.y45{bottom:623.235000px;}
.yf7{bottom:623.595000px;}
.yda{bottom:626.655000px;}
.y1d{bottom:627.015000px;}
.y183{bottom:632.055000px;}
.y94{bottom:632.235000px;}
.y13d{bottom:634.035000px;}
.y7f{bottom:635.475000px;}
.y44{bottom:640.515000px;}
.yad{bottom:644.115000px;}
.yf6{bottom:644.655000px;}
.y112{bottom:647.355000px;}
.y1c{bottom:647.715000px;}
.y150{bottom:651.315000px;}
.y182{bottom:652.755000px;}
.y60{bottom:652.935000px;}
.y43{bottom:657.795000px;}
.y13c{bottom:664.995000px;}
.y7e{bottom:666.615000px;}
.y14f{bottom:668.595000px;}
.y181{bottom:673.455000px;}
.y196{bottom:673.635000px;}
.y42{bottom:675.075000px;}
.yf5{bottom:676.335000px;}
.yac{bottom:677.055000px;}
.y111{bottom:678.315000px;}
.y5f{bottom:683.895000px;}
.y14e{bottom:685.875000px;}
.yd9{bottom:688.755000px;}
.y1b{bottom:689.115000px;}
.y122{bottom:689.835000px;}
.y180{bottom:694.155000px;}
.y13b{bottom:696.135000px;}
.yab{bottom:697.065000px;}
.y7d{bottom:697.605000px;}
.y14d{bottom:703.005000px;}
.y93{bottom:704.625000px;}
.yf4{bottom:707.325000px;}
.y110{bottom:709.485000px;}
.y1a{bottom:709.845000px;}
.yaa{bottom:714.345000px;}
.y17f{bottom:714.885000px;}
.y5e{bottom:715.065000px;}
.yd8{bottom:719.925000px;}
.y14c{bottom:720.285000px;}
.y41{bottom:720.645000px;}
.y13a{bottom:727.125000px;}
.y7c{bottom:728.745000px;}
.y19{bottom:730.365000px;}
.ya9{bottom:731.625000px;}
.y17e{bottom:735.585000px;}
.y14b{bottom:737.565000px;}
.yf3{bottom:738.465000px;}
.y10f{bottom:740.445000px;}
.y5d{bottom:746.025000px;}
.y161{bottom:746.205000px;}
.yd7{bottom:750.705000px;}
.y40{bottom:751.605000px;}
.y14a{bottom:754.845000px;}
.y17d{bottom:756.285000px;}
.y139{bottom:758.085000px;}
.y7b{bottom:759.705000px;}
.y18{bottom:766.365000px;}
.yf2{bottom:769.425000px;}
.y10e{bottom:771.585000px;}
.y149{bottom:772.125000px;}
.y5c{bottom:776.985000px;}
.yd6{bottom:782.025000px;}
.y3f{bottom:782.745000px;}
.y17{bottom:785.445000px;}
.y7a{bottom:790.845000px;}
.y138{bottom:791.025000px;}
.y17c{bottom:797.685000px;}
.yf1{bottom:800.565000px;}
.y10d{bottom:802.545000px;}
.y16{bottom:804.345000px;}
.y148{bottom:807.405000px;}
.y5b{bottom:808.125000px;}
.y137{bottom:811.005000px;}
.yd5{bottom:812.985000px;}
.y3e{bottom:813.705000px;}
.y195{bottom:818.385000px;}
.y17b{bottom:818.565000px;}
.y79{bottom:821.805000px;}
.y15{bottom:823.425000px;}
.y136{bottom:828.105000px;}
.y10c{bottom:833.685000px;}
.y5a{bottom:839.085000px;}
.y194{bottom:839.265000px;}
.y14{bottom:842.325000px;}
.yd4{bottom:844.125000px;}
.y3d{bottom:844.845000px;}
.y121{bottom:845.025000px;}
.y135{bottom:845.385000px;}
.yf0{bottom:852.225000px;}
.y78{bottom:852.945000px;}
.y17a{bottom:859.785000px;}
.y13{bottom:861.225000px;}
.y134{bottom:862.665000px;}
.y10b{bottom:864.645000px;}
.y59{bottom:870.225000px;}
.yef{bottom:872.205000px;}
.yd3{bottom:875.085000px;}
.y3c{bottom:875.805000px;}
.y133{bottom:879.945000px;}
.y12{bottom:880.305000px;}
.y179{bottom:880.485000px;}
.yee{bottom:889.485000px;}
.y10a{bottom:895.605000px;}
.y132{bottom:897.225000px;}
.y11{bottom:899.205000px;}
.y58{bottom:901.185000px;}
.y77{bottom:904.785000px;}
.yd2{bottom:906.225000px;}
.yed{bottom:906.765000px;}
.y3b{bottom:906.945000px;}
.y131{bottom:914.505000px;}
.y10{bottom:918.285000px;}
.y178{bottom:921.885000px;}
.y76{bottom:922.965000px;}
.yec{bottom:924.045000px;}
.y130{bottom:931.650000px;}
.ya8{bottom:932.190000px;}
.y57{bottom:932.370000px;}
.yd1{bottom:937.230000px;}
.yf{bottom:937.410000px;}
.y3a{bottom:937.950000px;}
.y75{bottom:940.290000px;}
.yeb{bottom:941.370000px;}
.y177{bottom:942.630000px;}
.y12f{bottom:948.930000px;}
.y74{bottom:957.570000px;}
.yea{bottom:958.470000px;}
.ye{bottom:963.150000px;}
.y92{bottom:963.330000px;}
.yd0{bottom:968.190000px;}
.y39{bottom:969.090000px;}
.y73{bottom:974.670000px;}
.yc{bottom:984.030000px;}
.y176{bottom:984.210000px;}
.yd{bottom:989.970000px;}
.y72{bottom:991.950000px;}
.ye9{bottom:993.750000px;}
.ya7{bottom:994.290000px;}
.y91{bottom:994.470000px;}
.y174{bottom:994.650000px;}
.ycf{bottom:1001.310000px;}
.yb{bottom:1004.730000px;}
.ya{bottom:1010.670000px;}
.y38{bottom:1020.750000px;}
.yce{bottom:1021.290000px;}
.y9{bottom:1025.430000px;}
.y71{bottom:1027.230000px;}
.ycd{bottom:1038.570000px;}
.y37{bottom:1041.990000px;}
.y8{bottom:1046.130000px;}
.ycc{bottom:1055.850000px;}
.y56{bottom:1056.570000px;}
.y36{bottom:1062.690000px;}
.y7{bottom:1066.830000px;}
.ycb{bottom:1073.130000px;}
.y6{bottom:1087.530000px;}
.y35{bottom:1088.970000px;}
.yca{bottom:1090.410000px;}
.y147{bottom:1093.470000px;}
.y1{bottom:1108.410000px;}
.h8{height:40.550625px;}
.h6{height:50.312812px;}
.hc{height:51.333750px;}
.hd{height:53.573906px;}
.h4{height:58.651172px;}
.h9{height:62.327813px;}
.ha{height:64.546875px;}
.h2{height:65.010937px;}
.h7{height:69.086250px;}
.hb{height:74.953125px;}
.h5{height:75.093750px;}
.h3{height:82.676953px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w1{width:893.250000px;}
.w3{width:893.339973px;}
.w2{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x2{left:70.919987px;}
.x1{left:106.415987px;}
.xd{left:111.815987px;}
.xe{left:114.875987px;}
.x1a{left:117.035987px;}
.x5{left:119.555987px;}
.x11{left:148.895987px;}
.xb{left:151.949987px;}
.xf{left:167.969987px;}
.x9{left:228.809987px;}
.x10{left:276.554987px;}
.x14{left:281.414973px;}
.x15{left:288.074987px;}
.x3{left:299.954987px;}
.x16{left:311.294973px;}
.x17{left:317.954987px;}
.xc{left:322.454987px;}
.xa{left:446.684987px;}
.x4{left:453.344987px;}
.x12{left:555.404973px;}
.x13{left:562.064987px;}
.x1b{left:587.084987px;}
.x8{left:593.744987px;}
.x18{left:608.189973px;}
.x19{left:614.849987px;}
.x6{left:790.919973px;}
.x7{left:797.579987px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v4{vertical-align:-66.026667pt;}
.v2{vertical-align:-64.000000pt;}
.v3{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.ls37{letter-spacing:-8.213333pt;}
.ls18{letter-spacing:-1.280000pt;}
.ls27{letter-spacing:-1.024000pt;}
.ls1f{letter-spacing:-0.832000pt;}
.ls16{letter-spacing:-0.704000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls23{letter-spacing:-0.512000pt;}
.ls9{letter-spacing:-0.384000pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls33{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:-0.097067pt;}
.lse{letter-spacing:-0.094933pt;}
.ls17{letter-spacing:-0.064000pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.011947pt;}
.ls2{letter-spacing:0.128000pt;}
.ls19{letter-spacing:0.192000pt;}
.ls13{letter-spacing:0.224000pt;}
.ls5{letter-spacing:0.230933pt;}
.ls1d{letter-spacing:0.234667pt;}
.ls7{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.272533pt;}
.ls24{letter-spacing:0.544000pt;}
.ls41{letter-spacing:1.152000pt;}
.ls32{letter-spacing:1.408000pt;}
.ls3c{letter-spacing:1.472000pt;}
.ls38{letter-spacing:1.536000pt;}
.ls3d{letter-spacing:1.856000pt;}
.ls26{letter-spacing:2.048000pt;}
.ls39{letter-spacing:2.112000pt;}
.ls29{letter-spacing:2.176000pt;}
.ls2f{letter-spacing:2.346667pt;}
.ls42{letter-spacing:2.368000pt;}
.ls43{letter-spacing:2.496000pt;}
.ls31{letter-spacing:2.560000pt;}
.ls28{letter-spacing:2.688000pt;}
.ls34{letter-spacing:2.752000pt;}
.ls2e{letter-spacing:2.816000pt;}
.ls3e{letter-spacing:3.008000pt;}
.ls3b{letter-spacing:3.072000pt;}
.ls36{letter-spacing:3.136000pt;}
.ls2b{letter-spacing:3.328000pt;}
.ls2a{letter-spacing:3.392000pt;}
.ls2c{letter-spacing:3.456000pt;}
.ls2d{letter-spacing:3.968000pt;}
.ls22{letter-spacing:4.432640pt;}
.ls20{letter-spacing:8.559360pt;}
.ls1c{letter-spacing:9.088000pt;}
.ls35{letter-spacing:9.866667pt;}
.ls15{letter-spacing:11.648000pt;}
.ls12{letter-spacing:12.288000pt;}
.ls8{letter-spacing:15.488000pt;}
.lsd{letter-spacing:16.128000pt;}
.ls3f{letter-spacing:18.688000pt;}
.ls21{letter-spacing:19.152640pt;}
.ls30{letter-spacing:19.328000pt;}
.ls3a{letter-spacing:19.968000pt;}
.ls1e{letter-spacing:133.248000pt;}
.lsc{letter-spacing:136.320000pt;}
.ls14{letter-spacing:153.066667pt;}
.ls1b{letter-spacing:179.306667pt;}
.ls6{letter-spacing:201.066667pt;}
.ls1{letter-spacing:282.986667pt;}
.ls1a{letter-spacing:587.146667pt;}
.lsb{letter-spacing:590.218667pt;}
.ls40{letter-spacing:1630.277973pt;}
.ls0{letter-spacing:1657.333333pt;}
.ws0{word-spacing:-58.880000pt;}
.ws14{word-spacing:-27.658667pt;}
.ws13{word-spacing:-21.248000pt;}
.ws11{word-spacing:-21.184000pt;}
.ws1e{word-spacing:-21.120000pt;}
.ws16{word-spacing:-20.928000pt;}
.ws18{word-spacing:-20.864000pt;}
.ws15{word-spacing:-20.608000pt;}
.ws10{word-spacing:-20.544000pt;}
.ws20{word-spacing:-20.352000pt;}
.ws21{word-spacing:-20.288000pt;}
.ws1f{word-spacing:-20.160000pt;}
.ws12{word-spacing:-19.968000pt;}
.ws1b{word-spacing:-19.904000pt;}
.ws1c{word-spacing:-19.840000pt;}
.ws1a{word-spacing:-19.648000pt;}
.ws17{word-spacing:-19.328000pt;}
.ws19{word-spacing:-19.264000pt;}
.ws1d{word-spacing:-18.944000pt;}
.ws5{word-spacing:-18.048000pt;}
.wse{word-spacing:-17.984000pt;}
.wsa{word-spacing:-17.792000pt;}
.ws9{word-spacing:-17.728000pt;}
.wsf{word-spacing:-17.664000pt;}
.ws8{word-spacing:-17.600000pt;}
.wsb{word-spacing:-17.408000pt;}
.ws6{word-spacing:-17.152000pt;}
.ws2{word-spacing:-16.368640pt;}
.ws1{word-spacing:-16.271573pt;}
.wsd{word-spacing:-15.311360pt;}
.ws3{word-spacing:-14.998293pt;}
.wsc{word-spacing:-14.767360pt;}
.ws7{word-spacing:-14.672427pt;}
.ws4{word-spacing:0.000000pt;}
._30{margin-left:-10.112000pt;}
._31{margin-left:-6.801493pt;}
._2b{margin-left:-5.201067pt;}
._f{margin-left:-4.106240pt;}
._a{margin-left:-3.120640pt;}
._9{margin-left:-2.097493pt;}
._0{margin-left:-0.898560pt;}
._1{width:1.346560pt;}
._6{width:3.086507pt;}
._17{width:4.074667pt;}
._3{width:5.004800pt;}
._12{width:6.587733pt;}
._7{width:7.595520pt;}
._8{width:8.596907pt;}
._10{width:9.891840pt;}
._13{width:10.815787pt;}
._b{width:12.011520pt;}
._c{width:12.916907pt;}
._16{width:14.099627pt;}
._11{width:15.441920pt;}
._1a{width:16.490667pt;}
._27{width:17.423360pt;}
._20{width:18.698667pt;}
._5{width:20.194133pt;}
._4{width:21.212160pt;}
._15{width:22.978347pt;}
._14{width:23.872427pt;}
._1d{width:24.901973pt;}
._d{width:26.024960pt;}
._e{width:27.158187pt;}
._19{width:28.653227pt;}
._18{width:29.696000pt;}
._28{width:30.989653pt;}
._21{width:32.256000pt;}
._1e{width:34.048000pt;}
._1f{width:35.214933pt;}
._1c{width:36.928000pt;}
._1b{width:37.952000pt;}
._26{width:39.308800pt;}
._25{width:40.264960pt;}
._23{width:41.858560pt;}
._22{width:42.816000pt;}
._24{width:43.712000pt;}
._2a{width:51.322453pt;}
._29{width:52.416000pt;}
._2e{width:54.848000pt;}
._2f{width:55.957333pt;}
._2d{width:61.696000pt;}
._2c{width:62.912000pt;}
._2{width:172.410027pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:68.800000pt;}
.y4{bottom:73.120000pt;}
.y3{bottom:90.080000pt;}
.y2{bottom:107.840000pt;}
.y34{bottom:127.680000pt;}
.yc9{bottom:128.960000pt;}
.ybc{bottom:130.880000pt;}
.y160{bottom:131.680000pt;}
.y120{bottom:133.760000pt;}
.y193{bottom:138.400000pt;}
.y167{bottom:138.560000pt;}
.y70{bottom:138.720000pt;}
.y55{bottom:140.640000pt;}
.y33{bottom:143.040000pt;}
.y15f{bottom:143.680000pt;}
.yc8{bottom:144.320000pt;}
.y125{bottom:147.040000pt;}
.y173{bottom:147.680000pt;}
.y109{bottom:147.840000pt;}
.y19f{bottom:148.480000pt;}
.y105{bottom:149.280000pt;}
.y12e{bottom:151.680000pt;}
.y90{bottom:152.320000pt;}
.ya6{bottom:154.400000pt;}
.y192{bottom:156.800000pt;}
.y32{bottom:158.400000pt;}
.yc7{bottom:159.680000pt;}
.y11f{bottom:161.280000pt;}
.y19b{bottom:162.080000pt;}
.y31{bottom:162.400000pt;}
.y6f{bottom:166.240000pt;}
.y54{bottom:168.160000pt;}
.ye8{bottom:170.560000pt;}
.y19e{bottom:172.640000pt;}
.y30{bottom:173.600000pt;}
.y146{bottom:174.400000pt;}
.yc6{bottom:175.040000pt;}
.y191{bottom:175.200000pt;}
.y172{bottom:175.360000pt;}
.y108{bottom:175.520000pt;}
.y104{bottom:176.960000pt;}
.y12d{bottom:179.360000pt;}
.y8f{bottom:180.000000pt;}
.ya5{bottom:181.920000pt;}
.ybb{bottom:186.080000pt;}
.y15e{bottom:186.880000pt;}
.y2f{bottom:188.960000pt;}
.yc5{bottom:190.240000pt;}
.y124{bottom:192.960000pt;}
.y190{bottom:193.600000pt;}
.y166{bottom:193.760000pt;}
.y6e{bottom:193.920000pt;}
.y53{bottom:195.840000pt;}
.ye7{bottom:198.240000pt;}
.y171{bottom:202.880000pt;}
.y2e{bottom:204.320000pt;}
.y103{bottom:204.480000pt;}
.yc4{bottom:205.600000pt;}
.y12c{bottom:206.880000pt;}
.y8e{bottom:207.520000pt;}
.y2d{bottom:208.320000pt;}
.ya4{bottom:209.600000pt;}
.y123{bottom:210.560000pt;}
.y18f{bottom:212.026667pt;}
.y19a{bottom:212.186667pt;}
.yba{bottom:213.626667pt;}
.y15d{bottom:214.426667pt;}
.y11e{bottom:216.506667pt;}
.y2c{bottom:220.346667pt;}
.yc3{bottom:220.986667pt;}
.y6d{bottom:221.466667pt;}
.y52{bottom:223.386667pt;}
.ye6{bottom:225.786667pt;}
.y170{bottom:230.426667pt;}
.y102{bottom:232.186667pt;}
.y12b{bottom:234.586667pt;}
.y8d{bottom:235.226667pt;}
.yc2{bottom:236.346667pt;}
.ya3{bottom:236.986667pt;}
.y107{bottom:239.866667pt;}
.yb9{bottom:241.306667pt;}
.y15c{bottom:242.106667pt;}
.y11d{bottom:244.186667pt;}
.y2b{bottom:246.586667pt;}
.y18e{bottom:248.826667pt;}
.y165{bottom:248.986667pt;}
.y6c{bottom:249.146667pt;}
.y51{bottom:251.066667pt;}
.ye5{bottom:253.466667pt;}
.y16f{bottom:258.106667pt;}
.y106{bottom:258.266667pt;}
.y101{bottom:259.706667pt;}
.y12a{bottom:262.106667pt;}
.y8c{bottom:262.746667pt;}
.ya2{bottom:266.266667pt;}
.y18d{bottom:267.226667pt;}
.y199{bottom:267.386667pt;}
.yb8{bottom:268.986667pt;}
.y15b{bottom:269.626667pt;}
.y11c{bottom:271.706667pt;}
.y6b{bottom:276.666667pt;}
.y50{bottom:278.586667pt;}
.y2a{bottom:278.906667pt;}
.ye4{bottom:280.986667pt;}
.ya1{bottom:284.026667pt;}
.y16e{bottom:285.626667pt;}
.y198{bottom:285.786667pt;}
.y145{bottom:287.226667pt;}
.y100{bottom:287.386667pt;}
.y8b{bottom:292.026667pt;}
.yb7{bottom:296.506667pt;}
.y15a{bottom:297.306667pt;}
.ya0{bottom:299.386667pt;}
.y19d{bottom:304.026667pt;}
.yc1{bottom:304.186667pt;}
.y6a{bottom:304.346667pt;}
.y4f{bottom:306.266667pt;}
.y129{bottom:308.186667pt;}
.ye3{bottom:308.666667pt;}
.y8a{bottom:309.786667pt;}
.y29{bottom:311.226667pt;}
.y16d{bottom:313.306667pt;}
.y9f{bottom:314.746667pt;}
.yff{bottom:314.906667pt;}
.y144{bottom:315.066667pt;}
.y19c{bottom:322.426667pt;}
.y197{bottom:322.586667pt;}
.y18c{bottom:322.746667pt;}
.yb6{bottom:324.186667pt;}
.y159{bottom:324.826667pt;}
.y89{bottom:325.146667pt;}
.y128{bottom:326.586667pt;}
.y11b{bottom:326.906667pt;}
.y9e{bottom:330.106667pt;}
.y69{bottom:331.866667pt;}
.y4e{bottom:333.786667pt;}
.ye2{bottom:336.186667pt;}
.y88{bottom:340.506667pt;}
.y16c{bottom:340.826667pt;}
.y18b{bottom:340.986667pt;}
.yfe{bottom:342.586667pt;}
.y28{bottom:343.706667pt;}
.y9d{bottom:345.466667pt;}
.yb5{bottom:351.706667pt;}
.y158{bottom:352.506667pt;}
.y11a{bottom:354.586667pt;}
.y87{bottom:355.866667pt;}
.yc0{bottom:359.386667pt;}
.y68{bottom:359.546667pt;}
.y175{bottom:359.706667pt;}
.y9c{bottom:360.666667pt;}
.y4d{bottom:361.466667pt;}
.ye1{bottom:363.866667pt;}
.y16b{bottom:368.506667pt;}
.yfd{bottom:370.106667pt;}
.y143{bottom:370.266667pt;}
.y86{bottom:371.066667pt;}
.y27{bottom:376.026667pt;}
.y9b{bottom:376.186667pt;}
.y18a{bottom:377.786667pt;}
.yb4{bottom:379.386667pt;}
.y157{bottom:380.026667pt;}
.y119{bottom:382.106667pt;}
.y85{bottom:386.426667pt;}
.y67{bottom:387.066667pt;}
.y4c{bottom:388.986667pt;}
.ye0{bottom:391.386667pt;}
.y26{bottom:392.826667pt;}
.y16a{bottom:396.026667pt;}
.y189{bottom:396.186667pt;}
.y9a{bottom:396.346667pt;}
.yfc{bottom:397.626667pt;}
.y142{bottom:397.786667pt;}
.yb3{bottom:406.906667pt;}
.y156{bottom:407.706667pt;}
.y25{bottom:409.626667pt;}
.y118{bottom:409.786667pt;}
.ybf{bottom:414.586667pt;}
.y66{bottom:414.746667pt;}
.y4b{bottom:416.706667pt;}
.ydf{bottom:419.106667pt;}
.y99{bottom:423.906667pt;}
.yfb{bottom:425.506667pt;}
.y24{bottom:426.626667pt;}
.y84{bottom:426.946667pt;}
.y141{bottom:430.786667pt;}
.y188{bottom:433.026667pt;}
.yb2{bottom:434.626667pt;}
.y155{bottom:435.266667pt;}
.y117{bottom:437.346667pt;}
.y169{bottom:442.146667pt;}
.y65{bottom:442.306667pt;}
.y164{bottom:442.466667pt;}
.y23{bottom:443.426667pt;}
.y4a{bottom:444.226667pt;}
.yde{bottom:446.626667pt;}
.y187{bottom:451.426667pt;}
.y98{bottom:451.586667pt;}
.yfa{bottom:453.026667pt;}
.y83{bottom:454.466667pt;}
.y22{bottom:460.386667pt;}
.yb1{bottom:462.146667pt;}
.y154{bottom:462.946667pt;}
.y116{bottom:465.026667pt;}
.ybe{bottom:469.826667pt;}
.y64{bottom:469.986667pt;}
.y163{bottom:470.146667pt;}
.ydd{bottom:474.306667pt;}
.y21{bottom:477.186667pt;}
.y168{bottom:478.946667pt;}
.y97{bottom:479.106667pt;}
.y140{bottom:480.546667pt;}
.yf9{bottom:480.706667pt;}
.y82{bottom:482.146667pt;}
.y186{bottom:488.226667pt;}
.yb0{bottom:489.826667pt;}
.y49{bottom:490.306667pt;}
.y153{bottom:490.466667pt;}
.y115{bottom:492.546667pt;}
.y20{bottom:493.986667pt;}
.ybd{bottom:497.346667pt;}
.y63{bottom:497.506667pt;}
.y162{bottom:497.666667pt;}
.ydc{bottom:501.826667pt;}
.y185{bottom:506.626667pt;}
.y96{bottom:506.786667pt;}
.y48{bottom:508.066667pt;}
.yf8{bottom:508.226667pt;}
.y13f{bottom:508.386667pt;}
.y81{bottom:509.666667pt;}
.y1f{bottom:510.946667pt;}
.yaf{bottom:517.346667pt;}
.y152{bottom:517.986667pt;}
.y114{bottom:520.226667pt;}
.y47{bottom:523.426667pt;}
.y127{bottom:525.026667pt;}
.y62{bottom:525.186667pt;}
.y1e{bottom:527.906667pt;}
.ydb{bottom:529.506667pt;}
.y95{bottom:534.306667pt;}
.y13e{bottom:535.906667pt;}
.y80{bottom:537.346667pt;}
.y46{bottom:538.626667pt;}
.y184{bottom:543.426667pt;}
.yae{bottom:545.026667pt;}
.y151{bottom:545.826667pt;}
.y113{bottom:547.746667pt;}
.y126{bottom:552.546667pt;}
.y61{bottom:552.706667pt;}
.y45{bottom:553.986667pt;}
.yf7{bottom:554.306667pt;}
.yda{bottom:557.026667pt;}
.y1d{bottom:557.346667pt;}
.y183{bottom:561.826667pt;}
.y94{bottom:561.986667pt;}
.y13d{bottom:563.586667pt;}
.y7f{bottom:564.866667pt;}
.y44{bottom:569.346667pt;}
.yad{bottom:572.546667pt;}
.yf6{bottom:573.026667pt;}
.y112{bottom:575.426667pt;}
.y1c{bottom:575.746667pt;}
.y150{bottom:578.946667pt;}
.y182{bottom:580.226667pt;}
.y60{bottom:580.386667pt;}
.y43{bottom:584.706667pt;}
.y13c{bottom:591.106667pt;}
.y7e{bottom:592.546667pt;}
.y14f{bottom:594.306667pt;}
.y181{bottom:598.626667pt;}
.y196{bottom:598.786667pt;}
.y42{bottom:600.066667pt;}
.yf5{bottom:601.186667pt;}
.yac{bottom:601.826667pt;}
.y111{bottom:602.946667pt;}
.y5f{bottom:607.906667pt;}
.y14e{bottom:609.666667pt;}
.yd9{bottom:612.226667pt;}
.y1b{bottom:612.546667pt;}
.y122{bottom:613.186667pt;}
.y180{bottom:617.026667pt;}
.y13b{bottom:618.786667pt;}
.yab{bottom:619.613333pt;}
.y7d{bottom:620.093333pt;}
.y14d{bottom:624.893333pt;}
.y93{bottom:626.333333pt;}
.yf4{bottom:628.733333pt;}
.y110{bottom:630.653333pt;}
.y1a{bottom:630.973333pt;}
.yaa{bottom:634.973333pt;}
.y17f{bottom:635.453333pt;}
.y5e{bottom:635.613333pt;}
.yd8{bottom:639.933333pt;}
.y14c{bottom:640.253333pt;}
.y41{bottom:640.573333pt;}
.y13a{bottom:646.333333pt;}
.y7c{bottom:647.773333pt;}
.y19{bottom:649.213333pt;}
.ya9{bottom:650.333333pt;}
.y17e{bottom:653.853333pt;}
.y14b{bottom:655.613333pt;}
.yf3{bottom:656.413333pt;}
.y10f{bottom:658.173333pt;}
.y5d{bottom:663.133333pt;}
.y161{bottom:663.293333pt;}
.yd7{bottom:667.293333pt;}
.y40{bottom:668.093333pt;}
.y14a{bottom:670.973333pt;}
.y17d{bottom:672.253333pt;}
.y139{bottom:673.853333pt;}
.y7b{bottom:675.293333pt;}
.y18{bottom:681.213333pt;}
.yf2{bottom:683.933333pt;}
.y10e{bottom:685.853333pt;}
.y149{bottom:686.333333pt;}
.y5c{bottom:690.653333pt;}
.yd6{bottom:695.133333pt;}
.y3f{bottom:695.773333pt;}
.y17{bottom:698.173333pt;}
.y7a{bottom:702.973333pt;}
.y138{bottom:703.133333pt;}
.y17c{bottom:709.053333pt;}
.yf1{bottom:711.613333pt;}
.y10d{bottom:713.373333pt;}
.y16{bottom:714.973333pt;}
.y148{bottom:717.693333pt;}
.y5b{bottom:718.333333pt;}
.y137{bottom:720.893333pt;}
.yd5{bottom:722.653333pt;}
.y3e{bottom:723.293333pt;}
.y195{bottom:727.453333pt;}
.y17b{bottom:727.613333pt;}
.y79{bottom:730.493333pt;}
.y15{bottom:731.933333pt;}
.y136{bottom:736.093333pt;}
.y10c{bottom:741.053333pt;}
.y5a{bottom:745.853333pt;}
.y194{bottom:746.013333pt;}
.y14{bottom:748.733333pt;}
.yd4{bottom:750.333333pt;}
.y3d{bottom:750.973333pt;}
.y121{bottom:751.133333pt;}
.y135{bottom:751.453333pt;}
.yf0{bottom:757.533333pt;}
.y78{bottom:758.173333pt;}
.y17a{bottom:764.253333pt;}
.y13{bottom:765.533333pt;}
.y134{bottom:766.813333pt;}
.y10b{bottom:768.573333pt;}
.y59{bottom:773.533333pt;}
.yef{bottom:775.293333pt;}
.yd3{bottom:777.853333pt;}
.y3c{bottom:778.493333pt;}
.y133{bottom:782.173333pt;}
.y12{bottom:782.493333pt;}
.y179{bottom:782.653333pt;}
.yee{bottom:790.653333pt;}
.y10a{bottom:796.093333pt;}
.y132{bottom:797.533333pt;}
.y11{bottom:799.293333pt;}
.y58{bottom:801.053333pt;}
.y77{bottom:804.253333pt;}
.yd2{bottom:805.533333pt;}
.yed{bottom:806.013333pt;}
.y3b{bottom:806.173333pt;}
.y131{bottom:812.893333pt;}
.y10{bottom:816.253333pt;}
.y178{bottom:819.453333pt;}
.y76{bottom:820.413333pt;}
.yec{bottom:821.373333pt;}
.y130{bottom:828.133333pt;}
.ya8{bottom:828.613333pt;}
.y57{bottom:828.773333pt;}
.yd1{bottom:833.093333pt;}
.yf{bottom:833.253333pt;}
.y3a{bottom:833.733333pt;}
.y75{bottom:835.813333pt;}
.yeb{bottom:836.773333pt;}
.y177{bottom:837.893333pt;}
.y12f{bottom:843.493333pt;}
.y74{bottom:851.173333pt;}
.yea{bottom:851.973333pt;}
.ye{bottom:856.133333pt;}
.y92{bottom:856.293333pt;}
.yd0{bottom:860.613333pt;}
.y39{bottom:861.413333pt;}
.y73{bottom:866.373333pt;}
.yc{bottom:874.693333pt;}
.y176{bottom:874.853333pt;}
.yd{bottom:879.973333pt;}
.y72{bottom:881.733333pt;}
.ye9{bottom:883.333333pt;}
.ya7{bottom:883.813333pt;}
.y91{bottom:883.973333pt;}
.y174{bottom:884.133333pt;}
.ycf{bottom:890.053333pt;}
.yb{bottom:893.093333pt;}
.ya{bottom:898.373333pt;}
.y38{bottom:907.333333pt;}
.yce{bottom:907.813333pt;}
.y9{bottom:911.493333pt;}
.y71{bottom:913.093333pt;}
.ycd{bottom:923.173333pt;}
.y37{bottom:926.213333pt;}
.y8{bottom:929.893333pt;}
.ycc{bottom:938.533333pt;}
.y56{bottom:939.173333pt;}
.y36{bottom:944.613333pt;}
.y7{bottom:948.293333pt;}
.ycb{bottom:953.893333pt;}
.y6{bottom:966.693333pt;}
.y35{bottom:967.973333pt;}
.yca{bottom:969.253333pt;}
.y147{bottom:971.973333pt;}
.y1{bottom:985.253333pt;}
.h8{height:36.045000pt;}
.h6{height:44.722500pt;}
.hc{height:45.630000pt;}
.hd{height:47.621250pt;}
.h4{height:52.134375pt;}
.h9{height:55.402500pt;}
.ha{height:57.375000pt;}
.h2{height:57.787500pt;}
.h7{height:61.410000pt;}
.hb{height:66.625000pt;}
.h5{height:66.750000pt;}
.h3{height:73.490625pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w1{width:794.000000pt;}
.w3{width:794.079976pt;}
.w2{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x2{left:63.039988pt;}
.x1{left:94.591988pt;}
.xd{left:99.391988pt;}
.xe{left:102.111988pt;}
.x1a{left:104.031988pt;}
.x5{left:106.271988pt;}
.x11{left:132.351988pt;}
.xb{left:135.066655pt;}
.xf{left:149.306655pt;}
.x9{left:203.386655pt;}
.x10{left:245.826655pt;}
.x14{left:250.146643pt;}
.x15{left:256.066655pt;}
.x3{left:266.626655pt;}
.x16{left:276.706643pt;}
.x17{left:282.626655pt;}
.xc{left:286.626655pt;}
.xa{left:397.053321pt;}
.x4{left:402.973321pt;}
.x12{left:493.693310pt;}
.x13{left:499.613321pt;}
.x1b{left:521.853321pt;}
.x8{left:527.773322pt;}
.x18{left:540.613310pt;}
.x19{left:546.533321pt;}
.x6{left:703.039976pt;}
.x7{left:708.959988pt;}
}




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