
    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_6c74192b9ce6ff283f6e3f31.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_0245c6992357401f8c30c33c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_e76dcb6ccebb1702ec6b61e3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_84f236a3ea55d69fb81bc25c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_156cc3bde818d205f0fb425b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.962402;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_af4f755f72c8d59a2e464e17.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.964844;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_762810e80d297f5fe01fa776.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.964844;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_ce6f06f9a12d50405d9b7069.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1bcc0c4fe673bd18114f63ac.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_585162a4a000127e3bef2a77.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_5dad460e72789a5ad4f05cf4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.916016;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_51d155859e20a9e3a51dedb9.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_afa2e41edd60d903c7cbd69e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_a9bcbd699b6897231f2d90b1.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_540f3f2956ddc7ae95e45d4e.woff2')format("woff");}.fff{font-family:fff;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-1.440000px;}
.lsd{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.720000px;}
.ls6{letter-spacing:4.302000px;}
.ls1{letter-spacing:4.914000px;}
.ls2{letter-spacing:9.360000px;}
.lsc{letter-spacing:33.960000px;}
.ls8{letter-spacing:143.976000px;}
.lsa{letter-spacing:172.776000px;}
.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;}
}
.ws7{word-spacing:-63.360000px;}
.ws0{word-spacing:-55.296000px;}
.ws5{word-spacing:-36.000000px;}
.ws2{word-spacing:-23.976000px;}
.wsa{word-spacing:-23.940000px;}
.ws3{word-spacing:-22.284000px;}
.ws4{word-spacing:-19.900080px;}
.wsc{word-spacing:-18.144000px;}
.ws8{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.784000px;}
.wsb{word-spacing:-17.712000px;}
.ws1{word-spacing:-16.613280px;}
.ws6{word-spacing:-15.840000px;}
.ws9{word-spacing:0.000000px;}
._48{margin-left:-9.601440px;}
._a{margin-left:-8.255520px;}
._8{margin-left:-6.650160px;}
._12{margin-left:-5.112000px;}
._4{margin-left:-3.918720px;}
._9{margin-left:-2.524080px;}
._0{margin-left:-1.248000px;}
._2{width:1.314720px;}
._3{width:3.312000px;}
._6{width:4.430880px;}
._5{width:5.795280px;}
._e{width:6.897360px;}
._7{width:8.320320px;}
._f{width:9.432000px;}
._1a{width:11.018640px;}
._11{width:12.696000px;}
._13{width:14.256000px;}
._10{width:15.288000px;}
._14{width:16.608000px;}
._1{width:18.000000px;}
._17{width:19.481280px;}
._18{width:20.664000px;}
._d{width:21.709920px;}
._15{width:22.896000px;}
._16{width:24.144000px;}
._19{width:25.342560px;}
._24{width:26.448000px;}
._c{width:27.648000px;}
._b{width:29.087040px;}
._22{width:30.225360px;}
._1b{width:31.464000px;}
._23{width:32.760000px;}
._25{width:34.656000px;}
._1f{width:38.825280px;}
._1e{width:39.984000px;}
._27{width:41.088000px;}
._26{width:42.120000px;}
._36{width:44.088000px;}
._30{width:48.024000px;}
._44{width:49.320000px;}
._41{width:52.924080px;}
._52{width:57.605280px;}
._50{width:59.184000px;}
._51{width:60.192000px;}
._1c{width:63.792000px;}
._43{width:69.516000px;}
._3a{width:72.528960px;}
._39{width:74.092080px;}
._3f{width:76.392000px;}
._4a{width:80.280000px;}
._49{width:81.936000px;}
._35{width:83.304000px;}
._2f{width:86.436000px;}
._2c{width:88.956000px;}
._38{width:90.144000px;}
._2b{width:93.984000px;}
._37{width:98.460000px;}
._3e{width:106.308000px;}
._2a{width:117.218160px;}
._31{width:118.800000px;}
._4b{width:119.988000px;}
._3d{width:121.176000px;}
._29{width:122.947680px;}
._28{width:124.226160px;}
._42{width:126.468000px;}
._45{width:128.880000px;}
._46{width:130.128720px;}
._47{width:131.619840px;}
._2e{width:139.992000px;}
._34{width:154.176000px;}
._3b{width:158.066160px;}
._33{width:159.984000px;}
._4d{width:161.496000px;}
._4e{width:162.678720px;}
._4f{width:166.032000px;}
._2d{width:171.864000px;}
._40{width:182.556000px;}
._53{width:186.146160px;}
._3c{width:221.904000px;}
._32{width:255.132000px;}
._1d{width:457.992000px;}
._4c{width:460.224000px;}
._20{width:997.992000px;}
._21{width:1004.472000px;}
.fc6{color:transparent;}
.fc5{color:rgb(247,202,172);}
.fc7{color:rgb(5,99,193);}
.fc4{color:rgb(0,32,96);}
.fc2{color:rgb(112,48,160);}
.fc3{color:rgb(89,89,89);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs8{font-size:63.360000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs9{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.fs6{font-size:120.240000px;}
.fs5{font-size:144.000000px;}
.fs4{font-size:216.000000px;}
.yc{bottom:-141.465000px;}
.yb{bottom:-71.625000px;}
.ya{bottom:-27.165000px;}
.y0{bottom:0.000000px;}
.ya9{bottom:4.131000px;}
.ye9{bottom:4.140000px;}
.ybd{bottom:4.485000px;}
.yb2{bottom:4.500000px;}
.yba{bottom:24.825000px;}
.ya8{bottom:24.831000px;}
.yb6{bottom:24.840000px;}
.yef{bottom:24.870000px;}
.ye8{bottom:24.885000px;}
.ybc{bottom:25.185000px;}
.yb1{bottom:25.200000px;}
.yf1{bottom:25.230000px;}
.y9{bottom:27.225000px;}
.ya7{bottom:45.525000px;}
.yad{bottom:45.540000px;}
.yee{bottom:45.570000px;}
.ye7{bottom:45.585000px;}
.ybb{bottom:45.885000px;}
.yb0{bottom:45.900000px;}
.yf0{bottom:45.930000px;}
.y4{bottom:58.716000px;}
.y8{bottom:62.685000px;}
.yac{bottom:66.240000px;}
.yb5{bottom:66.285000px;}
.yaf{bottom:66.600000px;}
.yb7{bottom:66.645000px;}
.y3{bottom:79.416000px;}
.yab{bottom:86.940000px;}
.yae{bottom:87.300000px;}
.y7{bottom:93.105000px;}
.y2{bottom:97.956000px;}
.ya6{bottom:120.285000px;}
.y6{bottom:122.445000px;}
.y131{bottom:126.756000px;}
.y2d{bottom:129.996000px;}
.y76{bottom:130.716000px;}
.y14f{bottom:134.856000px;}
.y10d{bottom:139.536000px;}
.ycf{bottom:139.896000px;}
.y60{bottom:142.776000px;}
.ye0{bottom:142.956000px;}
.y130{bottom:150.690000px;}
.y160{bottom:150.870000px;}
.y2c{bottom:153.750000px;}
.y75{bottom:154.650000px;}
.y14e{bottom:158.790000px;}
.y94{bottom:162.930000px;}
.y10c{bottom:163.290000px;}
.yce{bottom:163.830000px;}
.yff{bottom:165.450000px;}
.y5f{bottom:166.710000px;}
.ydf{bottom:166.890000px;}
.y12f{bottom:174.810000px;}
.y2b{bottom:177.690000px;}
.y4f{bottom:178.950000px;}
.y14d{bottom:182.730000px;}
.y93{bottom:186.690000px;}
.y10b{bottom:187.230000px;}
.yfe{bottom:189.210000px;}
.y117{bottom:190.650000px;}
.y74{bottom:190.830000px;}
.y12e{bottom:198.750000px;}
.ycd{bottom:200.010000px;}
.y4e{bottom:202.710000px;}
.y5e{bottom:202.890000px;}
.yde{bottom:203.070000px;}
.y14c{bottom:206.670000px;}
.y92{bottom:210.630000px;}
.y10a{bottom:211.170000px;}
.yfd{bottom:213.330000px;}
.y2a{bottom:213.870000px;}
.y73{bottom:214.770000px;}
.y12d{bottom:222.690000px;}
.ycc{bottom:223.770000px;}
.y4d{bottom:226.650000px;}
.ydd{bottom:226.830000px;}
.y14b{bottom:230.790000px;}
.y109{bottom:235.110000px;}
.yfc{bottom:237.270000px;}
.y29{bottom:237.630000px;}
.y72{bottom:238.710000px;}
.y12c{bottom:246.630000px;}
.y91{bottom:246.810000px;}
.ycb{bottom:247.890000px;}
.ya5{bottom:250.230000px;}
.y4c{bottom:250.770000px;}
.ydc{bottom:250.950000px;}
.y14a{bottom:254.730000px;}
.yfb{bottom:261.210000px;}
.y28{bottom:261.750000px;}
.y71{bottom:262.650000px;}
.y5d{bottom:262.830000px;}
.y90{bottom:270.570000px;}
.y15f{bottom:270.750000px;}
.y108{bottom:271.290000px;}
.yca{bottom:271.830000px;}
.y4b{bottom:274.710000px;}
.ydb{bottom:274.890000px;}
.y149{bottom:278.670000px;}
.y12b{bottom:282.810000px;}
.yfa{bottom:285.150000px;}
.y27{bottom:285.690000px;}
.y5c{bottom:286.590000px;}
.ya4{bottom:286.770000px;}
.y15e{bottom:294.690000px;}
.y107{bottom:295.050000px;}
.yc9{bottom:295.770000px;}
.y4a{bottom:298.650000px;}
.y70{bottom:298.830000px;}
.y148{bottom:302.610000px;}
.y12a{bottom:306.570000px;}
.y8f{bottom:306.750000px;}
.y26{bottom:309.675000px;}
.ya3{bottom:310.575000px;}
.y15d{bottom:318.675000px;}
.y106{bottom:319.215000px;}
.yf9{bottom:321.375000px;}
.y49{bottom:322.635000px;}
.y5b{bottom:322.815000px;}
.y147{bottom:326.595000px;}
.y8e{bottom:330.555000px;}
.y129{bottom:330.735000px;}
.yc8{bottom:331.995000px;}
.y25{bottom:333.615000px;}
.ya2{bottom:334.695000px;}
.yda{bottom:335.055000px;}
.y15c{bottom:342.615000px;}
.y105{bottom:343.155000px;}
.yf8{bottom:345.135000px;}
.y48{bottom:346.575000px;}
.y146{bottom:350.715000px;}
.y8d{bottom:354.495000px;}
.y128{bottom:354.675000px;}
.yc7{bottom:355.755000px;}
.y24{bottom:357.555000px;}
.ya1{bottom:358.635000px;}
.yd9{bottom:358.815000px;}
.y15b{bottom:366.735000px;}
.yf7{bottom:369.075000px;}
.y6f{bottom:370.515000px;}
.y47{bottom:370.695000px;}
.y145{bottom:374.655000px;}
.y127{bottom:378.615000px;}
.y104{bottom:379.335000px;}
.yc6{bottom:379.695000px;}
.y23{bottom:381.675000px;}
.ya0{bottom:382.575000px;}
.yd8{bottom:382.755000px;}
.y8c{bottom:390.675000px;}
.yf6{bottom:393.195000px;}
.y46{bottom:394.635000px;}
.y144{bottom:398.595000px;}
.y126{bottom:402.555000px;}
.yc5{bottom:403.635000px;}
.y22{bottom:405.615000px;}
.y5a{bottom:406.695000px;}
.yd7{bottom:406.875000px;}
.y8b{bottom:414.435000px;}
.y15a{bottom:414.615000px;}
.y103{bottom:414.975000px;}
.yf5{bottom:417.135000px;}
.y6e{bottom:418.575000px;}
.y9f{bottom:418.755000px;}
.y143{bottom:422.535000px;}
.y125{bottom:426.495000px;}
.yc4{bottom:427.755000px;}
.y21{bottom:429.555000px;}
.y59{bottom:430.635000px;}
.y45{bottom:430.815000px;}
.y159{bottom:438.555000px;}
.y9e{bottom:442.515000px;}
.y142{bottom:446.475000px;}
.y102{bottom:446.835000px;}
.y8a{bottom:450.615000px;}
.yc3{bottom:451.695000px;}
.yf4{bottom:453.315000px;}
.y20{bottom:453.495000px;}
.y44{bottom:454.575000px;}
.y6d{bottom:454.755000px;}
.y137{bottom:462.315000px;}
.y158{bottom:462.495000px;}
.y9d{bottom:466.455000px;}
.y141{bottom:470.595000px;}
.yc2{bottom:475.635000px;}
.y1f{bottom:477.435000px;}
.y43{bottom:478.515000px;}
.y89{bottom:486.615000px;}
.yf3{bottom:488.775000px;}
.y9c{bottom:490.575000px;}
.y58{bottom:490.755000px;}
.yd6{bottom:490.935000px;}
.y140{bottom:494.535000px;}
.y136{bottom:498.675000px;}
.yc1{bottom:499.575000px;}
.y1e{bottom:501.555000px;}
.y6c{bottom:502.095000px;}
.y42{bottom:502.455000px;}
.yf2{bottom:506.235000px;}
.y157{bottom:510.555000px;}
.y57{bottom:514.515000px;}
.yd5{bottom:514.695000px;}
.y135{bottom:522.435000px;}
.y88{bottom:522.615000px;}
.y1d{bottom:525.495000px;}
.y41{bottom:526.575000px;}
.y13f{bottom:532.515000px;}
.y156{bottom:534.495000px;}
.yc0{bottom:535.755000px;}
.y9b{bottom:538.455000px;}
.y6b{bottom:538.635000px;}
.y87{bottom:546.375000px;}
.yed{bottom:548.355000px;}
.y1c{bottom:549.435000px;}
.y40{bottom:550.515000px;}
.y56{bottom:550.695000px;}
.y155{bottom:558.435000px;}
.ybf{bottom:559.515000px;}
.y6a{bottom:562.425000px;}
.y86{bottom:570.345000px;}
.y124{bottom:570.525000px;}
.y1b{bottom:573.405000px;}
.y3f{bottom:574.485000px;}
.y13e{bottom:574.665000px;}
.yd4{bottom:582.405000px;}
.y69{bottom:586.365000px;}
.y116{bottom:586.545000px;}
.y123{bottom:594.465000px;}
.ybe{bottom:595.365000px;}
.y1a{bottom:597.345000px;}
.y3e{bottom:598.425000px;}
.y9a{bottom:598.605000px;}
.y85{bottom:606.525000px;}
.y68{bottom:610.485000px;}
.yec{bottom:611.205000px;}
.yb9{bottom:612.660000px;}
.y122{bottom:618.405000px;}
.y19{bottom:621.465000px;}
.y3d{bottom:622.365000px;}
.y84{bottom:630.285000px;}
.y154{bottom:630.465000px;}
.y67{bottom:634.425000px;}
.y121{bottom:642.345000px;}
.y162{bottom:642.525000px;}
.y18{bottom:645.405000px;}
.y99{bottom:646.305000px;}
.y3c{bottom:646.485000px;}
.y153{bottom:654.405000px;}
.y66{bottom:658.365000px;}
.y120{bottom:666.285000px;}
.y83{bottom:666.465000px;}
.y17{bottom:669.345000px;}
.y3b{bottom:670.425000px;}
.yeb{bottom:674.025000px;}
.yb8{bottom:675.465000px;}
.y152{bottom:678.345000px;}
.y161{bottom:678.525000px;}
.y115{bottom:682.305000px;}
.y82{bottom:690.225000px;}
.y11f{bottom:690.405000px;}
.y16{bottom:693.285000px;}
.y55{bottom:694.365000px;}
.y65{bottom:694.545000px;}
.y151{bottom:702.285000px;}
.y134{bottom:702.465000px;}
.y114{bottom:706.245000px;}
.y3a{bottom:706.605000px;}
.y15{bottom:717.225000px;}
.y54{bottom:718.305000px;}
.y133{bottom:726.225000px;}
.y81{bottom:726.405000px;}
.y39{bottom:730.365000px;}
.y64{bottom:730.545000px;}
.yea{bottom:736.860000px;}
.y14{bottom:741.345000px;}
.y53{bottom:742.245000px;}
.y80{bottom:750.345000px;}
.y38{bottom:754.305000px;}
.yb4{bottom:759.165000px;}
.y13{bottom:765.285000px;}
.y98{bottom:766.185000px;}
.y11e{bottom:774.285000px;}
.y37{bottom:778.245000px;}
.y52{bottom:778.425000px;}
.y7f{bottom:786.345000px;}
.y12{bottom:790.125000px;}
.y13d{bottom:790.305000px;}
.y113{bottom:792.285000px;}
.y11d{bottom:798.225000px;}
.ye6{bottom:799.665000px;}
.y36{bottom:802.185000px;}
.y97{bottom:802.365000px;}
.y7e{bottom:810.285000px;}
.y13c{bottom:814.290000px;}
.y11c{bottom:822.210000px;}
.y63{bottom:826.170000px;}
.y35{bottom:826.350000px;}
.y11{bottom:828.150000px;}
.y112{bottom:834.450000px;}
.y101{bottom:838.050000px;}
.y13b{bottom:838.230000px;}
.yd3{bottom:838.410000px;}
.yb3{bottom:842.730000px;}
.y11b{bottom:846.150000px;}
.y7d{bottom:846.330000px;}
.y34{bottom:850.290000px;}
.y111{bottom:858.210000px;}
.y10{bottom:861.090000px;}
.yd2{bottom:862.170000px;}
.y96{bottom:862.350000px;}
.y7c{bottom:870.270000px;}
.y33{bottom:874.230000px;}
.y100{bottom:874.410000px;}
.y110{bottom:882.150000px;}
.ye5{bottom:882.330000px;}
.yd1{bottom:885.750000px;}
.y13a{bottom:886.110000px;}
.y11a{bottom:894.210000px;}
.y32{bottom:898.170000px;}
.y95{bottom:898.350000px;}
.ye4{bottom:905.910000px;}
.y7b{bottom:906.450000px;}
.y62{bottom:910.050000px;}
.y139{bottom:910.230000px;}
.yf{bottom:911.130000px;}
.y150{bottom:918.150000px;}
.y10f{bottom:918.330000px;}
.y31{bottom:922.110000px;}
.yd0{bottom:922.290000px;}
.yaa{bottom:926.250000px;}
.y119{bottom:930.030000px;}
.y7a{bottom:930.210000px;}
.y132{bottom:930.390000px;}
.y10e{bottom:942.090000px;}
.ye3{bottom:942.270000px;}
.y30{bottom:946.230000px;}
.y61{bottom:946.410000px;}
.y138{bottom:948.210000px;}
.y79{bottom:953.790000px;}
.ye{bottom:954.690000px;}
.ye2{bottom:966.210000px;}
.y118{bottom:966.390000px;}
.y2f{bottom:970.170000px;}
.ye1{bottom:990.150000px;}
.y78{bottom:990.330000px;}
.y51{bottom:994.110000px;}
.yd{bottom:996.810000px;}
.y2e{bottom:1008.150000px;}
.y77{bottom:1014.090000px;}
.y50{bottom:1018.050000px;}
.y5{bottom:1035.855000px;}
.y1{bottom:1051.170000px;}
.h5{height:40.737305px;}
.h1e{height:41.385000px;}
.h6{height:45.082617px;}
.hf{height:50.273438px;}
.h15{height:50.800781px;}
.h4{height:54.316406px;}
.h13{height:59.343750px;}
.he{height:59.436914px;}
.h1a{height:62.085000px;}
.h14{height:62.091000px;}
.h1c{height:62.100000px;}
.h1b{height:62.122500px;}
.h1d{height:62.130000px;}
.hc{height:62.184375px;}
.hd{height:65.958750px;}
.h10{height:70.664062px;}
.h1{height:71.613281px;}
.h2{height:73.722656px;}
.h1f{height:74.004654px;}
.h12{height:74.953125px;}
.hb{height:82.676953px;}
.h17{height:82.785000px;}
.h19{height:82.800000px;}
.h18{height:82.822500px;}
.h11{height:99.687656px;}
.h9{height:101.601562px;}
.h16{height:103.485000px;}
.h7{height:112.429688px;}
.ha{height:125.171719px;}
.h3{height:142.245000px;}
.h8{height:224.859375px;}
.h0{height:1188.000000px;}
.w3{width:114.321000px;}
.wa{width:115.365000px;}
.w4{width:116.136000px;}
.w9{width:120.096000px;}
.wb{width:140.421000px;}
.w8{width:149.601000px;}
.w6{width:150.675000px;}
.w2{width:153.171000px;}
.w5{width:163.425000px;}
.w7{width:172.251000px;}
.w1{width:681.795000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xf{left:7.731000px;}
.x4{left:10.980000px;}
.x3{left:56.340000px;}
.x2{left:108.036000px;}
.x9{left:111.456000px;}
.x1b{left:135.036000px;}
.x1c{left:162.030000px;}
.x7{left:166.530000px;}
.xc{left:173.730000px;}
.x6{left:216.030000px;}
.xa{left:221.430000px;}
.x10{left:262.665000px;}
.x16{left:281.745000px;}
.x5{left:283.755000px;}
.x8{left:340.815000px;}
.xd{left:343.155000px;}
.xb{left:372.495000px;}
.x11{left:377.715000px;}
.x17{left:432.075000px;}
.x12{left:494.580000px;}
.x18{left:552.900000px;}
.x13{left:658.740000px;}
.x15{left:669.345000px;}
.x1{left:751.650000px;}
.x19{left:757.230000px;}
.x14{left:766.230000px;}
.xe{left:782.250000px;}
.x1a{left:809.970000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-1.280000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.640000pt;}
.ls6{letter-spacing:3.824000pt;}
.ls1{letter-spacing:4.368000pt;}
.ls2{letter-spacing:8.320000pt;}
.lsc{letter-spacing:30.186667pt;}
.ls8{letter-spacing:127.978667pt;}
.lsa{letter-spacing:153.578667pt;}
.ws7{word-spacing:-56.320000pt;}
.ws0{word-spacing:-49.152000pt;}
.ws5{word-spacing:-32.000000pt;}
.ws2{word-spacing:-21.312000pt;}
.wsa{word-spacing:-21.280000pt;}
.ws3{word-spacing:-19.808000pt;}
.ws4{word-spacing:-17.688960pt;}
.wsc{word-spacing:-16.128000pt;}
.ws8{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.808000pt;}
.wsb{word-spacing:-15.744000pt;}
.ws1{word-spacing:-14.767360pt;}
.ws6{word-spacing:-14.080000pt;}
.ws9{word-spacing:0.000000pt;}
._48{margin-left:-8.534613pt;}
._a{margin-left:-7.338240pt;}
._8{margin-left:-5.911253pt;}
._12{margin-left:-4.544000pt;}
._4{margin-left:-3.483307pt;}
._9{margin-left:-2.243627pt;}
._0{margin-left:-1.109333pt;}
._2{width:1.168640pt;}
._3{width:2.944000pt;}
._6{width:3.938560pt;}
._5{width:5.151360pt;}
._e{width:6.130987pt;}
._7{width:7.395840pt;}
._f{width:8.384000pt;}
._1a{width:9.794347pt;}
._11{width:11.285333pt;}
._13{width:12.672000pt;}
._10{width:13.589333pt;}
._14{width:14.762667pt;}
._1{width:16.000000pt;}
._17{width:17.316693pt;}
._18{width:18.368000pt;}
._d{width:19.297707pt;}
._15{width:20.352000pt;}
._16{width:21.461333pt;}
._19{width:22.526720pt;}
._24{width:23.509333pt;}
._c{width:24.576000pt;}
._b{width:25.855147pt;}
._22{width:26.866987pt;}
._1b{width:27.968000pt;}
._23{width:29.120000pt;}
._25{width:30.805333pt;}
._1f{width:34.511360pt;}
._1e{width:35.541333pt;}
._27{width:36.522667pt;}
._26{width:37.440000pt;}
._36{width:39.189333pt;}
._30{width:42.688000pt;}
._44{width:43.840000pt;}
._41{width:47.043627pt;}
._52{width:51.204693pt;}
._50{width:52.608000pt;}
._51{width:53.504000pt;}
._1c{width:56.704000pt;}
._43{width:61.792000pt;}
._3a{width:64.470187pt;}
._39{width:65.859627pt;}
._3f{width:67.904000pt;}
._4a{width:71.360000pt;}
._49{width:72.832000pt;}
._35{width:74.048000pt;}
._2f{width:76.832000pt;}
._2c{width:79.072000pt;}
._38{width:80.128000pt;}
._2b{width:83.541333pt;}
._37{width:87.520000pt;}
._3e{width:94.496000pt;}
._2a{width:104.193920pt;}
._31{width:105.600000pt;}
._4b{width:106.656000pt;}
._3d{width:107.712000pt;}
._29{width:109.286827pt;}
._28{width:110.423253pt;}
._42{width:112.416000pt;}
._45{width:114.560000pt;}
._46{width:115.669973pt;}
._47{width:116.995413pt;}
._2e{width:124.437333pt;}
._34{width:137.045333pt;}
._3b{width:140.503253pt;}
._33{width:142.208000pt;}
._4d{width:143.552000pt;}
._4e{width:144.603307pt;}
._4f{width:147.584000pt;}
._2d{width:152.768000pt;}
._40{width:162.272000pt;}
._53{width:165.463253pt;}
._3c{width:197.248000pt;}
._32{width:226.784000pt;}
._1d{width:407.104000pt;}
._4c{width:409.088000pt;}
._20{width:887.104000pt;}
._21{width:892.864000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs8{font-size:56.320000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs9{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.fs6{font-size:106.880000pt;}
.fs5{font-size:128.000000pt;}
.fs4{font-size:192.000000pt;}
.yc{bottom:-125.746667pt;}
.yb{bottom:-63.666667pt;}
.ya{bottom:-24.146667pt;}
.y0{bottom:0.000000pt;}
.ya9{bottom:3.672000pt;}
.ye9{bottom:3.680000pt;}
.ybd{bottom:3.986667pt;}
.yb2{bottom:4.000000pt;}
.yba{bottom:22.066667pt;}
.ya8{bottom:22.072000pt;}
.yb6{bottom:22.080000pt;}
.yef{bottom:22.106667pt;}
.ye8{bottom:22.120000pt;}
.ybc{bottom:22.386667pt;}
.yb1{bottom:22.400000pt;}
.yf1{bottom:22.426667pt;}
.y9{bottom:24.200000pt;}
.ya7{bottom:40.466667pt;}
.yad{bottom:40.480000pt;}
.yee{bottom:40.506667pt;}
.ye7{bottom:40.520000pt;}
.ybb{bottom:40.786667pt;}
.yb0{bottom:40.800000pt;}
.yf0{bottom:40.826667pt;}
.y4{bottom:52.192000pt;}
.y8{bottom:55.720000pt;}
.yac{bottom:58.880000pt;}
.yb5{bottom:58.920000pt;}
.yaf{bottom:59.200000pt;}
.yb7{bottom:59.240000pt;}
.y3{bottom:70.592000pt;}
.yab{bottom:77.280000pt;}
.yae{bottom:77.600000pt;}
.y7{bottom:82.760000pt;}
.y2{bottom:87.072000pt;}
.ya6{bottom:106.920000pt;}
.y6{bottom:108.840000pt;}
.y131{bottom:112.672000pt;}
.y2d{bottom:115.552000pt;}
.y76{bottom:116.192000pt;}
.y14f{bottom:119.872000pt;}
.y10d{bottom:124.032000pt;}
.ycf{bottom:124.352000pt;}
.y60{bottom:126.912000pt;}
.ye0{bottom:127.072000pt;}
.y130{bottom:133.946667pt;}
.y160{bottom:134.106667pt;}
.y2c{bottom:136.666667pt;}
.y75{bottom:137.466667pt;}
.y14e{bottom:141.146667pt;}
.y94{bottom:144.826667pt;}
.y10c{bottom:145.146667pt;}
.yce{bottom:145.626667pt;}
.yff{bottom:147.066667pt;}
.y5f{bottom:148.186667pt;}
.ydf{bottom:148.346667pt;}
.y12f{bottom:155.386667pt;}
.y2b{bottom:157.946667pt;}
.y4f{bottom:159.066667pt;}
.y14d{bottom:162.426667pt;}
.y93{bottom:165.946667pt;}
.y10b{bottom:166.426667pt;}
.yfe{bottom:168.186667pt;}
.y117{bottom:169.466667pt;}
.y74{bottom:169.626667pt;}
.y12e{bottom:176.666667pt;}
.ycd{bottom:177.786667pt;}
.y4e{bottom:180.186667pt;}
.y5e{bottom:180.346667pt;}
.yde{bottom:180.506667pt;}
.y14c{bottom:183.706667pt;}
.y92{bottom:187.226667pt;}
.y10a{bottom:187.706667pt;}
.yfd{bottom:189.626667pt;}
.y2a{bottom:190.106667pt;}
.y73{bottom:190.906667pt;}
.y12d{bottom:197.946667pt;}
.ycc{bottom:198.906667pt;}
.y4d{bottom:201.466667pt;}
.ydd{bottom:201.626667pt;}
.y14b{bottom:205.146667pt;}
.y109{bottom:208.986667pt;}
.yfc{bottom:210.906667pt;}
.y29{bottom:211.226667pt;}
.y72{bottom:212.186667pt;}
.y12c{bottom:219.226667pt;}
.y91{bottom:219.386667pt;}
.ycb{bottom:220.346667pt;}
.ya5{bottom:222.426667pt;}
.y4c{bottom:222.906667pt;}
.ydc{bottom:223.066667pt;}
.y14a{bottom:226.426667pt;}
.yfb{bottom:232.186667pt;}
.y28{bottom:232.666667pt;}
.y71{bottom:233.466667pt;}
.y5d{bottom:233.626667pt;}
.y90{bottom:240.506667pt;}
.y15f{bottom:240.666667pt;}
.y108{bottom:241.146667pt;}
.yca{bottom:241.626667pt;}
.y4b{bottom:244.186667pt;}
.ydb{bottom:244.346667pt;}
.y149{bottom:247.706667pt;}
.y12b{bottom:251.386667pt;}
.yfa{bottom:253.466667pt;}
.y27{bottom:253.946667pt;}
.y5c{bottom:254.746667pt;}
.ya4{bottom:254.906667pt;}
.y15e{bottom:261.946667pt;}
.y107{bottom:262.266667pt;}
.yc9{bottom:262.906667pt;}
.y4a{bottom:265.466667pt;}
.y70{bottom:265.626667pt;}
.y148{bottom:268.986667pt;}
.y12a{bottom:272.506667pt;}
.y8f{bottom:272.666667pt;}
.y26{bottom:275.266667pt;}
.ya3{bottom:276.066667pt;}
.y15d{bottom:283.266667pt;}
.y106{bottom:283.746667pt;}
.yf9{bottom:285.666667pt;}
.y49{bottom:286.786667pt;}
.y5b{bottom:286.946667pt;}
.y147{bottom:290.306667pt;}
.y8e{bottom:293.826667pt;}
.y129{bottom:293.986667pt;}
.yc8{bottom:295.106667pt;}
.y25{bottom:296.546667pt;}
.ya2{bottom:297.506667pt;}
.yda{bottom:297.826667pt;}
.y15c{bottom:304.546667pt;}
.y105{bottom:305.026667pt;}
.yf8{bottom:306.786667pt;}
.y48{bottom:308.066667pt;}
.y146{bottom:311.746667pt;}
.y8d{bottom:315.106667pt;}
.y128{bottom:315.266667pt;}
.yc7{bottom:316.226667pt;}
.y24{bottom:317.826667pt;}
.ya1{bottom:318.786667pt;}
.yd9{bottom:318.946667pt;}
.y15b{bottom:325.986667pt;}
.yf7{bottom:328.066667pt;}
.y6f{bottom:329.346667pt;}
.y47{bottom:329.506667pt;}
.y145{bottom:333.026667pt;}
.y127{bottom:336.546667pt;}
.y104{bottom:337.186667pt;}
.yc6{bottom:337.506667pt;}
.y23{bottom:339.266667pt;}
.ya0{bottom:340.066667pt;}
.yd8{bottom:340.226667pt;}
.y8c{bottom:347.266667pt;}
.yf6{bottom:349.506667pt;}
.y46{bottom:350.786667pt;}
.y144{bottom:354.306667pt;}
.y126{bottom:357.826667pt;}
.yc5{bottom:358.786667pt;}
.y22{bottom:360.546667pt;}
.y5a{bottom:361.506667pt;}
.yd7{bottom:361.666667pt;}
.y8b{bottom:368.386667pt;}
.y15a{bottom:368.546667pt;}
.y103{bottom:368.866667pt;}
.yf5{bottom:370.786667pt;}
.y6e{bottom:372.066667pt;}
.y9f{bottom:372.226667pt;}
.y143{bottom:375.586667pt;}
.y125{bottom:379.106667pt;}
.yc4{bottom:380.226667pt;}
.y21{bottom:381.826667pt;}
.y59{bottom:382.786667pt;}
.y45{bottom:382.946667pt;}
.y159{bottom:389.826667pt;}
.y9e{bottom:393.346667pt;}
.y142{bottom:396.866667pt;}
.y102{bottom:397.186667pt;}
.y8a{bottom:400.546667pt;}
.yc3{bottom:401.506667pt;}
.yf4{bottom:402.946667pt;}
.y20{bottom:403.106667pt;}
.y44{bottom:404.066667pt;}
.y6d{bottom:404.226667pt;}
.y137{bottom:410.946667pt;}
.y158{bottom:411.106667pt;}
.y9d{bottom:414.626667pt;}
.y141{bottom:418.306667pt;}
.yc2{bottom:422.786667pt;}
.y1f{bottom:424.386667pt;}
.y43{bottom:425.346667pt;}
.y89{bottom:432.546667pt;}
.yf3{bottom:434.466667pt;}
.y9c{bottom:436.066667pt;}
.y58{bottom:436.226667pt;}
.yd6{bottom:436.386667pt;}
.y140{bottom:439.586667pt;}
.y136{bottom:443.266667pt;}
.yc1{bottom:444.066667pt;}
.y1e{bottom:445.826667pt;}
.y6c{bottom:446.306667pt;}
.y42{bottom:446.626667pt;}
.yf2{bottom:449.986667pt;}
.y157{bottom:453.826667pt;}
.y57{bottom:457.346667pt;}
.yd5{bottom:457.506667pt;}
.y135{bottom:464.386667pt;}
.y88{bottom:464.546667pt;}
.y1d{bottom:467.106667pt;}
.y41{bottom:468.066667pt;}
.y13f{bottom:473.346667pt;}
.y156{bottom:475.106667pt;}
.yc0{bottom:476.226667pt;}
.y9b{bottom:478.626667pt;}
.y6b{bottom:478.786667pt;}
.y87{bottom:485.666667pt;}
.yed{bottom:487.426667pt;}
.y1c{bottom:488.386667pt;}
.y40{bottom:489.346667pt;}
.y56{bottom:489.506667pt;}
.y155{bottom:496.386667pt;}
.ybf{bottom:497.346667pt;}
.y6a{bottom:499.933333pt;}
.y86{bottom:506.973333pt;}
.y124{bottom:507.133333pt;}
.y1b{bottom:509.693333pt;}
.y3f{bottom:510.653333pt;}
.y13e{bottom:510.813333pt;}
.yd4{bottom:517.693333pt;}
.y69{bottom:521.213333pt;}
.y116{bottom:521.373333pt;}
.y123{bottom:528.413333pt;}
.ybe{bottom:529.213333pt;}
.y1a{bottom:530.973333pt;}
.y3e{bottom:531.933333pt;}
.y9a{bottom:532.093333pt;}
.y85{bottom:539.133333pt;}
.y68{bottom:542.653333pt;}
.yec{bottom:543.293333pt;}
.yb9{bottom:544.586667pt;}
.y122{bottom:549.693333pt;}
.y19{bottom:552.413333pt;}
.y3d{bottom:553.213333pt;}
.y84{bottom:560.253333pt;}
.y154{bottom:560.413333pt;}
.y67{bottom:563.933333pt;}
.y121{bottom:570.973333pt;}
.y162{bottom:571.133333pt;}
.y18{bottom:573.693333pt;}
.y99{bottom:574.493333pt;}
.y3c{bottom:574.653333pt;}
.y153{bottom:581.693333pt;}
.y66{bottom:585.213333pt;}
.y120{bottom:592.253333pt;}
.y83{bottom:592.413333pt;}
.y17{bottom:594.973333pt;}
.y3b{bottom:595.933333pt;}
.yeb{bottom:599.133333pt;}
.yb8{bottom:600.413333pt;}
.y152{bottom:602.973333pt;}
.y161{bottom:603.133333pt;}
.y115{bottom:606.493333pt;}
.y82{bottom:613.533333pt;}
.y11f{bottom:613.693333pt;}
.y16{bottom:616.253333pt;}
.y55{bottom:617.213333pt;}
.y65{bottom:617.373333pt;}
.y151{bottom:624.253333pt;}
.y134{bottom:624.413333pt;}
.y114{bottom:627.773333pt;}
.y3a{bottom:628.093333pt;}
.y15{bottom:637.533333pt;}
.y54{bottom:638.493333pt;}
.y133{bottom:645.533333pt;}
.y81{bottom:645.693333pt;}
.y39{bottom:649.213333pt;}
.y64{bottom:649.373333pt;}
.yea{bottom:654.986667pt;}
.y14{bottom:658.973333pt;}
.y53{bottom:659.773333pt;}
.y80{bottom:666.973333pt;}
.y38{bottom:670.493333pt;}
.yb4{bottom:674.813333pt;}
.y13{bottom:680.253333pt;}
.y98{bottom:681.053333pt;}
.y11e{bottom:688.253333pt;}
.y37{bottom:691.773333pt;}
.y52{bottom:691.933333pt;}
.y7f{bottom:698.973333pt;}
.y12{bottom:702.333333pt;}
.y13d{bottom:702.493333pt;}
.y113{bottom:704.253333pt;}
.y11d{bottom:709.533333pt;}
.ye6{bottom:710.813333pt;}
.y36{bottom:713.053333pt;}
.y97{bottom:713.213333pt;}
.y7e{bottom:720.253333pt;}
.y13c{bottom:723.813333pt;}
.y11c{bottom:730.853333pt;}
.y63{bottom:734.373333pt;}
.y35{bottom:734.533333pt;}
.y11{bottom:736.133333pt;}
.y112{bottom:741.733333pt;}
.y101{bottom:744.933333pt;}
.y13b{bottom:745.093333pt;}
.yd3{bottom:745.253333pt;}
.yb3{bottom:749.093333pt;}
.y11b{bottom:752.133333pt;}
.y7d{bottom:752.293333pt;}
.y34{bottom:755.813333pt;}
.y111{bottom:762.853333pt;}
.y10{bottom:765.413333pt;}
.yd2{bottom:766.373333pt;}
.y96{bottom:766.533333pt;}
.y7c{bottom:773.573333pt;}
.y33{bottom:777.093333pt;}
.y100{bottom:777.253333pt;}
.y110{bottom:784.133333pt;}
.ye5{bottom:784.293333pt;}
.yd1{bottom:787.333333pt;}
.y13a{bottom:787.653333pt;}
.y11a{bottom:794.853333pt;}
.y32{bottom:798.373333pt;}
.y95{bottom:798.533333pt;}
.ye4{bottom:805.253333pt;}
.y7b{bottom:805.733333pt;}
.y62{bottom:808.933333pt;}
.y139{bottom:809.093333pt;}
.yf{bottom:809.893333pt;}
.y150{bottom:816.133333pt;}
.y10f{bottom:816.293333pt;}
.y31{bottom:819.653333pt;}
.yd0{bottom:819.813333pt;}
.yaa{bottom:823.333333pt;}
.y119{bottom:826.693333pt;}
.y7a{bottom:826.853333pt;}
.y132{bottom:827.013333pt;}
.y10e{bottom:837.413333pt;}
.ye3{bottom:837.573333pt;}
.y30{bottom:841.093333pt;}
.y61{bottom:841.253333pt;}
.y138{bottom:842.853333pt;}
.y79{bottom:847.813333pt;}
.ye{bottom:848.613333pt;}
.ye2{bottom:858.853333pt;}
.y118{bottom:859.013333pt;}
.y2f{bottom:862.373333pt;}
.ye1{bottom:880.133333pt;}
.y78{bottom:880.293333pt;}
.y51{bottom:883.653333pt;}
.yd{bottom:886.053333pt;}
.y2e{bottom:896.133333pt;}
.y77{bottom:901.413333pt;}
.y50{bottom:904.933333pt;}
.y5{bottom:920.760000pt;}
.y1{bottom:934.373333pt;}
.h5{height:36.210938pt;}
.h1e{height:36.786667pt;}
.h6{height:40.073438pt;}
.hf{height:44.687500pt;}
.h15{height:45.156250pt;}
.h4{height:48.281250pt;}
.h13{height:52.750000pt;}
.he{height:52.832812pt;}
.h1a{height:55.186667pt;}
.h14{height:55.192000pt;}
.h1c{height:55.200000pt;}
.h1b{height:55.220000pt;}
.h1d{height:55.226667pt;}
.hc{height:55.275000pt;}
.hd{height:58.630000pt;}
.h10{height:62.812500pt;}
.h1{height:63.656250pt;}
.h2{height:65.531250pt;}
.h1f{height:65.781915pt;}
.h12{height:66.625000pt;}
.hb{height:73.490625pt;}
.h17{height:73.586667pt;}
.h19{height:73.600000pt;}
.h18{height:73.620000pt;}
.h11{height:88.611250pt;}
.h9{height:90.312500pt;}
.h16{height:91.986667pt;}
.h7{height:99.937500pt;}
.ha{height:111.263750pt;}
.h3{height:126.440000pt;}
.h8{height:199.875000pt;}
.h0{height:1056.000000pt;}
.w3{width:101.618667pt;}
.wa{width:102.546667pt;}
.w4{width:103.232000pt;}
.w9{width:106.752000pt;}
.wb{width:124.818667pt;}
.w8{width:132.978667pt;}
.w6{width:133.933333pt;}
.w2{width:136.152000pt;}
.w5{width:145.266667pt;}
.w7{width:153.112000pt;}
.w1{width:606.040000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xf{left:6.872000pt;}
.x4{left:9.760000pt;}
.x3{left:50.080000pt;}
.x2{left:96.032000pt;}
.x9{left:99.072000pt;}
.x1b{left:120.032000pt;}
.x1c{left:144.026667pt;}
.x7{left:148.026667pt;}
.xc{left:154.426667pt;}
.x6{left:192.026667pt;}
.xa{left:196.826667pt;}
.x10{left:233.480000pt;}
.x16{left:250.440000pt;}
.x5{left:252.226667pt;}
.x8{left:302.946667pt;}
.xd{left:305.026667pt;}
.xb{left:331.106667pt;}
.x11{left:335.746667pt;}
.x17{left:384.066667pt;}
.x12{left:439.626667pt;}
.x18{left:491.466667pt;}
.x13{left:585.546667pt;}
.x15{left:594.973333pt;}
.x1{left:668.133333pt;}
.x19{left:673.093333pt;}
.x14{left:681.093333pt;}
.xe{left:695.333333pt;}
.x1a{left:719.973333pt;}
}




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