
    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_785cc33c031ac053b021bc9c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.932000;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_36c5209f9b28424af120f96e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.971191;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_391dd286bce3d77a2fceea65.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.966309;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_62707aef225dec05ea853888.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.971191;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_9d217b812395d863572adc0e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.969000;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_d7122df04af8dee39c7a4273.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.969000;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_68ac097896f23a3446cbfc1a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.675781;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_0aacdcaa866f9d4ca7e6a25a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893555;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_b9de8838d2da255b876753dd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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_c4656a84bef9ec783da483b9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_6bc941128139e4f91f57c26e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.677246;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_9f26a10be5569a62a85ce68d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.750000;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_107c506381332aa75c749982.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.691406;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_3fe8af5b4b04319a4f4402b6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;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_56d102d1f953eca4754fbbec.woff2')format("woff");}.fff{font-family:fff;line-height:0.893555;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:ff10;src:url('chunks/assets/font_ccabeb54142d756902cc9c3e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910156;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:ff11;src:url('chunks/assets/font_ccde62bb1c4916e305111044.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.706055;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.155792,0.195522,-0.195522,0.155792,0,0);-ms-transform:matrix(0.155792,0.195522,-0.195522,0.155792,0,0);-webkit-transform:matrix(0.155792,0.195522,-0.195522,0.155792,0,0);}
.m0{transform:matrix(0.155795,0.195519,-0.195519,0.155795,0,0);-ms-transform:matrix(0.155795,0.195519,-0.195519,0.155795,0,0);-webkit-transform:matrix(0.155795,0.195519,-0.195519,0.155795,0,0);}
.m1{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);}
.m3{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);}
.v2{vertical-align:-18.180000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.816000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.792000px;}
.lse{letter-spacing:1.215000px;}
.lsc{letter-spacing:1.224000px;}
.ls3{letter-spacing:3.600000px;}
.lsa{letter-spacing:5.832000px;}
.ls9{letter-spacing:6.984000px;}
.ls2{letter-spacing:7.704000px;}
.ls7{letter-spacing:10.008000px;}
.lsb{letter-spacing:10.164000px;}
.ls5{letter-spacing:12.744000px;}
.ls6{letter-spacing:28.512000px;}
.ls8{letter-spacing:36.216000px;}
.lsd{letter-spacing:39.600000px;}
.ls4{letter-spacing:68.472000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-18.000000px;}
.ws0{word-spacing:-17.952000px;}
.ws5{word-spacing:-16.500000px;}
.ws3{word-spacing:-12.000000px;}
.ws4{word-spacing:-9.750000px;}
.ws1{word-spacing:0.000000px;}
._20{margin-left:-2.088000px;}
._13{margin-left:-1.008000px;}
._0{width:1.512000px;}
._4{width:2.592000px;}
._7{width:3.600000px;}
._8{width:4.608000px;}
._3{width:6.336000px;}
._2{width:7.776000px;}
._1{width:8.784000px;}
._d{width:10.296000px;}
._5{width:11.376000px;}
._9{width:12.384000px;}
._6{width:13.464000px;}
._15{width:14.688000px;}
._12{width:16.056000px;}
._1b{width:17.688000px;}
._b{width:19.440000px;}
._f{width:20.736000px;}
._16{width:21.960000px;}
._c{width:23.112000px;}
._10{width:24.120000px;}
._e{width:25.848000px;}
._17{width:26.856000px;}
._a{width:28.728000px;}
._14{width:29.808000px;}
._11{width:30.816000px;}
._18{width:32.184000px;}
._1d{width:33.264000px;}
._1f{width:34.344000px;}
._1a{width:36.216000px;}
._1c{width:37.440000px;}
._19{width:38.448000px;}
._22{width:39.528000px;}
._24{width:40.536000px;}
._1e{width:50.544000px;}
._23{width:56.160000px;}
._21{width:977.112000px;}
.fc4{color:transparent;}
.fc6{color:rgb(102,102,102);}
.fc3{color:rgb(101,101,101);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(43,43,43);}
.fc5{color:rgb(214,241,254);}
.fc0{color:rgb(214,241,254);}
.fs8{font-size:39.000000px;}
.fs7{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fs3{font-size:60.000000px;}
.fs9{font-size:63.000000px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:84.000000px;}
.fs5{font-size:288.000809px;}
.fs0{font-size:288.008445px;}
.y0{bottom:0.000000px;}
.y4{bottom:4.965000px;}
.y6{bottom:10.327499px;}
.y8{bottom:10.327500px;}
.ya{bottom:10.327502px;}
.y16a{bottom:13.945499px;}
.y168{bottom:14.695499px;}
.y166{bottom:17.246999px;}
.yc{bottom:18.075000px;}
.y3{bottom:25.018500px;}
.yd{bottom:25.822500px;}
.y165{bottom:37.945499px;}
.y70{bottom:43.889985px;}
.ye{bottom:48.000000px;}
.y14{bottom:60.615002px;}
.y6f{bottom:61.889985px;}
.y6e{bottom:79.889985px;}
.y6d{bottom:97.889985px;}
.ye8{bottom:115.789530px;}
.y6c{bottom:115.889985px;}
.ybe{bottom:128.452545px;}
.y9c{bottom:131.035470px;}
.yd2{bottom:131.035515px;}
.y142{bottom:131.035530px;}
.y13f{bottom:132.760530px;}
.y12d{bottom:132.762000px;}
.y6b{bottom:133.889985px;}
.y14b{bottom:139.320030px;}
.y161{bottom:141.406515px;}
.y100{bottom:146.234970px;}
.ybd{bottom:149.151030px;}
.y9b{bottom:151.733970px;}
.yd1{bottom:151.734015px;}
.y139{bottom:151.734030px;}
.y6a{bottom:151.889985px;}
.y14a{bottom:160.018530px;}
.y160{bottom:162.105015px;}
.yff{bottom:165.208470px;}
.ybc{bottom:169.849500px;}
.y69{bottom:169.889985px;}
.y9a{bottom:172.432470px;}
.yd0{bottom:172.432500px;}
.yef{bottom:172.432530px;}
.y13e{bottom:173.832000px;}
.y12c{bottom:174.159000px;}
.y149{bottom:180.717045px;}
.y15f{bottom:182.803470px;}
.yfe{bottom:184.181970px;}
.y68{bottom:187.889985px;}
.ybb{bottom:190.548015px;}
.y99{bottom:193.130970px;}
.y13d{bottom:193.130985px;}
.ycf{bottom:193.131015px;}
.y141{bottom:193.131045px;}
.y12b{bottom:194.857515px;}
.yfd{bottom:203.480970px;}
.y15e{bottom:203.501970px;}
.y148{bottom:204.518985px;}
.y67{bottom:205.889985px;}
.yba{bottom:211.246515px;}
.y98{bottom:213.829470px;}
.y13c{bottom:213.829485px;}
.ye1{bottom:213.829500px;}
.yce{bottom:213.829515px;}
.y138{bottom:213.829530px;}
.y12a{bottom:215.556015px;}
.y66{bottom:223.889985px;}
.yfc{bottom:224.179485px;}
.y15d{bottom:224.200470px;}
.y147{bottom:228.320985px;}
.yb9{bottom:231.945000px;}
.ye0{bottom:234.528000px;}
.y97{bottom:234.528015px;}
.y140{bottom:234.528030px;}
.y129{bottom:236.254515px;}
.y65{bottom:241.889985px;}
.yfb{bottom:244.877985px;}
.y15c{bottom:244.899015px;}
.y146{bottom:252.123030px;}
.yb8{bottom:252.643500px;}
.y96{bottom:255.226500px;}
.ycd{bottom:255.226515px;}
.yee{bottom:255.226530px;}
.y128{bottom:256.953000px;}
.y64{bottom:259.889985px;}
.yfa{bottom:265.576485px;}
.y15b{bottom:265.597515px;}
.yb7{bottom:273.342015px;}
.ycc{bottom:275.925000px;}
.y95{bottom:275.925015px;}
.y137{bottom:275.925030px;}
.y127{bottom:277.326000px;}
.y63{bottom:277.889985px;}
.yf9{bottom:286.274985px;}
.y15a{bottom:286.296015px;}
.yb6{bottom:294.040515px;}
.y62{bottom:295.889985px;}
.y126{bottom:296.299500px;}
.y13b{bottom:296.623500px;}
.y94{bottom:296.623515px;}
.y136{bottom:296.623530px;}
.yf8{bottom:306.973485px;}
.y159{bottom:306.994515px;}
.y61{bottom:313.889985px;}
.yb5{bottom:314.739000px;}
.y125{bottom:315.273000px;}
.y93{bottom:317.322000px;}
.ycb{bottom:317.322015px;}
.y135{bottom:317.322030px;}
.yf7{bottom:327.346500px;}
.y158{bottom:327.693015px;}
.y60{bottom:331.889985px;}
.y124{bottom:334.246515px;}
.yb4{bottom:335.437515px;}
.ydf{bottom:338.020470px;}
.y92{bottom:338.020500px;}
.yca{bottom:338.020515px;}
.y134{bottom:338.020530px;}
.y33{bottom:341.469000px;}
.yf6{bottom:346.320000px;}
.y157{bottom:348.391515px;}
.y5f{bottom:349.889985px;}
.y123{bottom:353.220000px;}
.yb3{bottom:356.136000px;}
.yde{bottom:358.718970px;}
.y145{bottom:358.718985px;}
.ye7{bottom:358.719000px;}
.y91{bottom:358.719015px;}
.y32{bottom:362.167485px;}
.yf5{bottom:365.293500px;}
.y5e{bottom:367.889985px;}
.y156{bottom:369.090015px;}
.y122{bottom:372.193500px;}
.yb2{bottom:376.834515px;}
.ydd{bottom:379.417485px;}
.y90{bottom:379.417515px;}
.y31{bottom:382.865985px;}
.yf4{bottom:384.267000px;}
.y5d{bottom:385.889985px;}
.y155{bottom:389.788515px;}
.y121{bottom:391.167000px;}
.yb1{bottom:397.533015px;}
.ydc{bottom:400.115985px;}
.y8f{bottom:400.116000px;}
.yed{bottom:400.116015px;}
.yc9{bottom:400.116030px;}
.yf3{bottom:403.240500px;}
.y30{bottom:403.564515px;}
.y5c{bottom:403.889985px;}
.y120{bottom:410.466015px;}
.y154{bottom:410.487030px;}
.yb0{bottom:418.231515px;}
.ydb{bottom:420.814470px;}
.ye6{bottom:420.814500px;}
.y8e{bottom:420.814515px;}
.y5b{bottom:421.889985px;}
.yf2{bottom:422.214000px;}
.y2f{bottom:424.263015px;}
.y11f{bottom:431.164515px;}
.y153{bottom:431.185530px;}
.yaf{bottom:438.930015px;}
.y5a{bottom:439.889985px;}
.yda{bottom:441.512985px;}
.y8d{bottom:441.513000px;}
.yc8{bottom:441.513015px;}
.y133{bottom:441.513030px;}
.y2e{bottom:444.961515px;}
.y11e{bottom:451.863015px;}
.y152{bottom:451.884015px;}
.y59{bottom:457.889985px;}
.yae{bottom:459.628515px;}
.yd9{bottom:462.211470px;}
.ye5{bottom:462.211485px;}
.y8c{bottom:462.211515px;}
.y132{bottom:462.211530px;}
.y2d{bottom:465.660015px;}
.y11d{bottom:472.236030px;}
.y58{bottom:475.889985px;}
.yd8{bottom:482.909985px;}
.yc7{bottom:482.910000px;}
.y8b{bottom:482.910015px;}
.y131{bottom:482.910030px;}
.y2c{bottom:486.358515px;}
.y151{bottom:490.686015px;}
.y11c{bottom:491.209515px;}
.y57{bottom:493.889985px;}
.yad{bottom:501.025500px;}
.yd7{bottom:503.608485px;}
.ye4{bottom:503.608500px;}
.y8a{bottom:503.608515px;}
.y130{bottom:503.608530px;}
.y2b{bottom:507.057015px;}
.y11b{bottom:510.183015px;}
.y56{bottom:511.889985px;}
.y150{bottom:514.488015px;}
.yd6{bottom:524.306985px;}
.y144{bottom:524.307000px;}
.y89{bottom:524.307015px;}
.y2a{bottom:527.755515px;}
.y11a{bottom:529.156530px;}
.y55{bottom:529.889985px;}
.y14f{bottom:538.290015px;}
.yd5{bottom:545.005485px;}
.ye3{bottom:545.005500px;}
.y88{bottom:545.005515px;}
.y54{bottom:547.889985px;}
.y29{bottom:548.454000px;}
.y119{bottom:548.455515px;}
.y14e{bottom:562.092015px;}
.yac{bottom:563.120985px;}
.yd4{bottom:565.703985px;}
.y87{bottom:565.704000px;}
.yec{bottom:565.704015px;}
.y53{bottom:565.889985px;}
.y28{bottom:569.152515px;}
.y118{bottom:569.154000px;}
.yab{bottom:583.819500px;}
.y52{bottom:583.889985px;}
.y14d{bottom:585.894015px;}
.y12f{bottom:586.402485px;}
.y86{bottom:586.402500px;}
.yc6{bottom:586.402515px;}
.y27{bottom:589.851000px;}
.y117{bottom:589.852500px;}
.y51{bottom:601.889985px;}
.yaa{bottom:604.518000px;}
.yf1{bottom:607.100985px;}
.y85{bottom:607.101000px;}
.yc5{bottom:607.101015px;}
.y26{bottom:610.549500px;}
.y116{bottom:610.551015px;}
.y50{bottom:619.889985px;}
.y14c{bottom:624.696000px;}
.ya9{bottom:625.216500px;}
.y12e{bottom:627.799485px;}
.y84{bottom:627.799500px;}
.y25{bottom:631.248015px;}
.y115{bottom:631.249515px;}
.y4f{bottom:637.889985px;}
.ya8{bottom:645.915000px;}
.yd3{bottom:648.497985px;}
.y83{bottom:648.498000px;}
.yc4{bottom:648.498015px;}
.y24{bottom:651.946515px;}
.y114{bottom:651.948000px;}
.y4e{bottom:655.889985px;}
.ya7{bottom:666.613500px;}
.y82{bottom:669.196500px;}
.yeb{bottom:669.196515px;}
.y23{bottom:672.645015px;}
.y113{bottom:672.646515px;}
.y4d{bottom:673.889985px;}
.y16f{bottom:674.643001px;}
.yf0{bottom:689.894985px;}
.y81{bottom:689.895000px;}
.yc3{bottom:689.895015px;}
.y4c{bottom:691.889985px;}
.y22{bottom:693.343515px;}
.y112{bottom:693.345000px;}
.ya6{bottom:708.010515px;}
.y4b{bottom:709.889985px;}
.y16e{bottom:709.893001px;}
.y80{bottom:710.593500px;}
.yc2{bottom:710.593515px;}
.y170{bottom:711.559500px;}
.y21{bottom:714.042000px;}
.y111{bottom:714.043515px;}
.yb{bottom:723.699000px;}
.y4a{bottom:727.889985px;}
.ya5{bottom:728.709015px;}
.y7f{bottom:731.292000px;}
.yc1{bottom:731.292015px;}
.y20{bottom:734.740500px;}
.y110{bottom:734.742015px;}
.y16d{bottom:745.143001px;}
.y49{bottom:745.889985px;}
.ya4{bottom:750.699015px;}
.y7e{bottom:751.990500px;}
.yc0{bottom:751.990515px;}
.y1f{bottom:755.439000px;}
.y10f{bottom:755.440515px;}
.y48{bottom:763.889985px;}
.y9{bottom:768.113998px;}
.ya3{bottom:771.397515px;}
.y7d{bottom:772.689000px;}
.ybf{bottom:772.689015px;}
.y1e{bottom:776.137500px;}
.y10e{bottom:776.139015px;}
.y16c{bottom:780.393001px;}
.y47{bottom:781.889985px;}
.y7c{bottom:793.387500px;}
.ye2{bottom:793.387515px;}
.y1d{bottom:796.836000px;}
.y10d{bottom:796.837515px;}
.y7{bottom:797.034000px;}
.y46{bottom:799.889985px;}
.ya2{bottom:814.086000px;}
.y7b{bottom:814.086015px;}
.y16b{bottom:815.643001px;}
.y1c{bottom:817.534500px;}
.y10c{bottom:817.536015px;}
.y45{bottom:817.889985px;}
.y5{bottom:825.954001px;}
.ya1{bottom:834.784485px;}
.y7a{bottom:834.784500px;}
.yea{bottom:834.784515px;}
.y44{bottom:835.889985px;}
.y1b{bottom:838.233015px;}
.y10b{bottom:838.234500px;}
.y169{bottom:850.893001px;}
.y43{bottom:853.889985px;}
.y79{bottom:855.483000px;}
.ya0{bottom:855.483015px;}
.y1a{bottom:858.931515px;}
.y10a{bottom:858.933000px;}
.y42{bottom:871.889985px;}
.y78{bottom:876.181500px;}
.ye9{bottom:876.181515px;}
.y2{bottom:876.435000px;}
.y19{bottom:879.630015px;}
.y109{bottom:879.631500px;}
.y167{bottom:886.143001px;}
.y41{bottom:889.889985px;}
.y77{bottom:896.880000px;}
.y143{bottom:896.880015px;}
.y18{bottom:900.328500px;}
.y108{bottom:900.330000px;}
.y40{bottom:907.889985px;}
.y76{bottom:917.578500px;}
.y13a{bottom:917.578515px;}
.y17{bottom:921.027000px;}
.y107{bottom:921.028500px;}
.y164{bottom:923.643001px;}
.y3f{bottom:925.889985px;}
.y9f{bottom:938.277000px;}
.y75{bottom:938.277015px;}
.y106{bottom:941.727000px;}
.y1{bottom:943.680900px;}
.y12{bottom:943.680915px;}
.y3e{bottom:943.889985px;}
.y9e{bottom:958.975500px;}
.y74{bottom:958.975515px;}
.y3d{bottom:961.889985px;}
.y105{bottom:962.425500px;}
.y162{bottom:975.991500px;}
.y73{bottom:979.674000px;}
.y3c{bottom:979.889985px;}
.y104{bottom:983.124000px;}
.y16{bottom:990.670500px;}
.y3b{bottom:997.889985px;}
.y72{bottom:1000.372500px;}
.y103{bottom:1003.822500px;}
.y163{bottom:1010.485500px;}
.y15{bottom:1014.819000px;}
.y3a{bottom:1015.889985px;}
.y9d{bottom:1021.071000px;}
.y102{bottom:1024.195500px;}
.y39{bottom:1033.889985px;}
.y71{bottom:1041.769500px;}
.y101{bottom:1043.169000px;}
.y38{bottom:1051.889985px;}
.y13{bottom:1058.573998px;}
.y37{bottom:1069.889985px;}
.y36{bottom:1087.889985px;}
.y35{bottom:1105.889985px;}
.y11{bottom:1109.325000px;}
.y10{bottom:1130.925000px;}
.y34{bottom:1159.889985px;}
.yf{bottom:1159.890000px;}
.h11{height:27.098145px;}
.h4{height:30.795000px;}
.h16{height:38.250000px;}
.h5{height:38.748047px;}
.h6{height:38.997070px;}
.h15{height:39.000000px;}
.h2{height:43.107000px;}
.h8{height:43.260000px;}
.hc{height:43.989258px;}
.h12{height:45.858398px;}
.h7{height:46.290000px;}
.he{height:48.796875px;}
.h13{height:49.992188px;}
.hf{height:50.027344px;}
.h3{height:50.466797px;}
.h9{height:51.264000px;}
.h10{height:55.167562px;}
.hd{height:56.929688px;}
.h14{height:62.250000px;}
.hb{height:76.326000px;}
.ha{height:207.648583px;}
.h1{height:207.654089px;}
.h0{height:1188.000000px;}
.w6{width:28.200000px;}
.w5{width:138.300000px;}
.w2{width:209.775000px;}
.w3{width:486.975000px;}
.w4{width:498.375000px;}
.w1{width:565.500000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:7.087491px;}
.x3{left:10.900500px;}
.x13{left:12.000000px;}
.x20{left:41.166002px;}
.x22{left:60.150002px;}
.x23{left:64.650002px;}
.x1d{left:85.050000px;}
.xa{left:91.741500px;}
.x21{left:93.750001px;}
.x12{left:108.000000px;}
.x5{left:111.562500px;}
.x9{left:113.281500px;}
.xe{left:115.855500px;}
.x1e{left:118.950000px;}
.xb{left:134.722500px;}
.x10{left:141.237000px;}
.x14{left:144.000000px;}
.x19{left:148.500000px;}
.x6{left:150.628500px;}
.x1{left:161.304600px;}
.x4{left:169.569000px;}
.x16{left:171.000000px;}
.x2{left:176.250000px;}
.x17{left:198.000000px;}
.x1c{left:205.800000px;}
.x18{left:303.599985px;}
.x7{left:319.462509px;}
.xc{left:336.367500px;}
.xd{left:365.820000px;}
.x11{left:386.260500px;}
.x1a{left:440.887500px;}
.xf{left:445.068015px;}
.x1f{left:614.324983px;}
.x1b{left:821.955000px;}
.x15{left:829.650015px;}
@media print{
.v2{vertical-align:-16.160000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.392000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.704000pt;}
.lse{letter-spacing:1.080000pt;}
.lsc{letter-spacing:1.088000pt;}
.ls3{letter-spacing:3.200000pt;}
.lsa{letter-spacing:5.184000pt;}
.ls9{letter-spacing:6.208000pt;}
.ls2{letter-spacing:6.848000pt;}
.ls7{letter-spacing:8.896000pt;}
.lsb{letter-spacing:9.034667pt;}
.ls5{letter-spacing:11.328000pt;}
.ls6{letter-spacing:25.344000pt;}
.ls8{letter-spacing:32.192000pt;}
.lsd{letter-spacing:35.200000pt;}
.ls4{letter-spacing:60.864000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws0{word-spacing:-15.957333pt;}
.ws5{word-spacing:-14.666667pt;}
.ws3{word-spacing:-10.666667pt;}
.ws4{word-spacing:-8.666667pt;}
.ws1{word-spacing:0.000000pt;}
._20{margin-left:-1.856000pt;}
._13{margin-left:-0.896000pt;}
._0{width:1.344000pt;}
._4{width:2.304000pt;}
._7{width:3.200000pt;}
._8{width:4.096000pt;}
._3{width:5.632000pt;}
._2{width:6.912000pt;}
._1{width:7.808000pt;}
._d{width:9.152000pt;}
._5{width:10.112000pt;}
._9{width:11.008000pt;}
._6{width:11.968000pt;}
._15{width:13.056000pt;}
._12{width:14.272000pt;}
._1b{width:15.722667pt;}
._b{width:17.280000pt;}
._f{width:18.432000pt;}
._16{width:19.520000pt;}
._c{width:20.544000pt;}
._10{width:21.440000pt;}
._e{width:22.976000pt;}
._17{width:23.872000pt;}
._a{width:25.536000pt;}
._14{width:26.496000pt;}
._11{width:27.392000pt;}
._18{width:28.608000pt;}
._1d{width:29.568000pt;}
._1f{width:30.528000pt;}
._1a{width:32.192000pt;}
._1c{width:33.280000pt;}
._19{width:34.176000pt;}
._22{width:35.136000pt;}
._24{width:36.032000pt;}
._1e{width:44.928000pt;}
._23{width:49.920000pt;}
._21{width:868.544000pt;}
.fs8{font-size:34.666667pt;}
.fs7{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fs3{font-size:53.333333pt;}
.fs9{font-size:56.000000pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:74.666667pt;}
.fs5{font-size:256.000719pt;}
.fs0{font-size:256.007507pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:4.413333pt;}
.y6{bottom:9.179999pt;}
.y8{bottom:9.180000pt;}
.ya{bottom:9.180001pt;}
.y16a{bottom:12.395999pt;}
.y168{bottom:13.062665pt;}
.y166{bottom:15.330665pt;}
.yc{bottom:16.066666pt;}
.y3{bottom:22.238667pt;}
.yd{bottom:22.953333pt;}
.y165{bottom:33.729332pt;}
.y70{bottom:39.013320pt;}
.ye{bottom:42.666667pt;}
.y14{bottom:53.880002pt;}
.y6f{bottom:55.013320pt;}
.y6e{bottom:71.013320pt;}
.y6d{bottom:87.013320pt;}
.ye8{bottom:102.924027pt;}
.y6c{bottom:103.013320pt;}
.ybe{bottom:114.180040pt;}
.y9c{bottom:116.475973pt;}
.yd2{bottom:116.476013pt;}
.y142{bottom:116.476027pt;}
.y13f{bottom:118.009360pt;}
.y12d{bottom:118.010667pt;}
.y6b{bottom:119.013320pt;}
.y14b{bottom:123.840027pt;}
.y161{bottom:125.694680pt;}
.y100{bottom:129.986640pt;}
.ybd{bottom:132.578693pt;}
.y9b{bottom:134.874640pt;}
.yd1{bottom:134.874680pt;}
.y139{bottom:134.874693pt;}
.y6a{bottom:135.013320pt;}
.y14a{bottom:142.238693pt;}
.y160{bottom:144.093347pt;}
.yff{bottom:146.851973pt;}
.ybc{bottom:150.977333pt;}
.y69{bottom:151.013320pt;}
.y9a{bottom:153.273307pt;}
.yd0{bottom:153.273333pt;}
.yef{bottom:153.273360pt;}
.y13e{bottom:154.517333pt;}
.y12c{bottom:154.808000pt;}
.y149{bottom:160.637373pt;}
.y15f{bottom:162.491973pt;}
.yfe{bottom:163.717307pt;}
.y68{bottom:167.013320pt;}
.ybb{bottom:169.376013pt;}
.y99{bottom:171.671973pt;}
.y13d{bottom:171.671987pt;}
.ycf{bottom:171.672013pt;}
.y141{bottom:171.672040pt;}
.y12b{bottom:173.206680pt;}
.yfd{bottom:180.871973pt;}
.y15e{bottom:180.890640pt;}
.y148{bottom:181.794653pt;}
.y67{bottom:183.013320pt;}
.yba{bottom:187.774680pt;}
.y98{bottom:190.070640pt;}
.y13c{bottom:190.070653pt;}
.ye1{bottom:190.070667pt;}
.yce{bottom:190.070680pt;}
.y138{bottom:190.070693pt;}
.y12a{bottom:191.605347pt;}
.y66{bottom:199.013320pt;}
.yfc{bottom:199.270653pt;}
.y15d{bottom:199.289307pt;}
.y147{bottom:202.951987pt;}
.yb9{bottom:206.173333pt;}
.ye0{bottom:208.469333pt;}
.y97{bottom:208.469347pt;}
.y140{bottom:208.469360pt;}
.y129{bottom:210.004013pt;}
.y65{bottom:215.013320pt;}
.yfb{bottom:217.669320pt;}
.y15c{bottom:217.688013pt;}
.y146{bottom:224.109360pt;}
.yb8{bottom:224.572000pt;}
.y96{bottom:226.868000pt;}
.ycd{bottom:226.868013pt;}
.yee{bottom:226.868027pt;}
.y128{bottom:228.402667pt;}
.y64{bottom:231.013320pt;}
.yfa{bottom:236.067987pt;}
.y15b{bottom:236.086680pt;}
.yb7{bottom:242.970680pt;}
.ycc{bottom:245.266667pt;}
.y95{bottom:245.266680pt;}
.y137{bottom:245.266693pt;}
.y127{bottom:246.512000pt;}
.y63{bottom:247.013320pt;}
.yf9{bottom:254.466653pt;}
.y15a{bottom:254.485347pt;}
.yb6{bottom:261.369347pt;}
.y62{bottom:263.013320pt;}
.y126{bottom:263.377333pt;}
.y13b{bottom:263.665333pt;}
.y94{bottom:263.665347pt;}
.y136{bottom:263.665360pt;}
.yf8{bottom:272.865320pt;}
.y159{bottom:272.884013pt;}
.y61{bottom:279.013320pt;}
.yb5{bottom:279.768000pt;}
.y125{bottom:280.242667pt;}
.y93{bottom:282.064000pt;}
.ycb{bottom:282.064013pt;}
.y135{bottom:282.064027pt;}
.yf7{bottom:290.974667pt;}
.y158{bottom:291.282680pt;}
.y60{bottom:295.013320pt;}
.y124{bottom:297.108013pt;}
.yb4{bottom:298.166680pt;}
.ydf{bottom:300.462640pt;}
.y92{bottom:300.462667pt;}
.yca{bottom:300.462680pt;}
.y134{bottom:300.462693pt;}
.y33{bottom:303.528000pt;}
.yf6{bottom:307.840000pt;}
.y157{bottom:309.681347pt;}
.y5f{bottom:311.013320pt;}
.y123{bottom:313.973333pt;}
.yb3{bottom:316.565333pt;}
.yde{bottom:318.861307pt;}
.y145{bottom:318.861320pt;}
.ye7{bottom:318.861333pt;}
.y91{bottom:318.861347pt;}
.y32{bottom:321.926653pt;}
.yf5{bottom:324.705333pt;}
.y5e{bottom:327.013320pt;}
.y156{bottom:328.080013pt;}
.y122{bottom:330.838667pt;}
.yb2{bottom:334.964013pt;}
.ydd{bottom:337.259987pt;}
.y90{bottom:337.260013pt;}
.y31{bottom:340.325320pt;}
.yf4{bottom:341.570667pt;}
.y5d{bottom:343.013320pt;}
.y155{bottom:346.478680pt;}
.y121{bottom:347.704000pt;}
.yb1{bottom:353.362680pt;}
.ydc{bottom:355.658653pt;}
.y8f{bottom:355.658667pt;}
.yed{bottom:355.658680pt;}
.yc9{bottom:355.658693pt;}
.yf3{bottom:358.436000pt;}
.y30{bottom:358.724013pt;}
.y5c{bottom:359.013320pt;}
.y120{bottom:364.858680pt;}
.y154{bottom:364.877360pt;}
.yb0{bottom:371.761347pt;}
.ydb{bottom:374.057307pt;}
.ye6{bottom:374.057333pt;}
.y8e{bottom:374.057347pt;}
.y5b{bottom:375.013320pt;}
.yf2{bottom:375.301333pt;}
.y2f{bottom:377.122680pt;}
.y11f{bottom:383.257347pt;}
.y153{bottom:383.276027pt;}
.yaf{bottom:390.160013pt;}
.y5a{bottom:391.013320pt;}
.yda{bottom:392.455987pt;}
.y8d{bottom:392.456000pt;}
.yc8{bottom:392.456013pt;}
.y133{bottom:392.456027pt;}
.y2e{bottom:395.521347pt;}
.y11e{bottom:401.656013pt;}
.y152{bottom:401.674680pt;}
.y59{bottom:407.013320pt;}
.yae{bottom:408.558680pt;}
.yd9{bottom:410.854640pt;}
.ye5{bottom:410.854653pt;}
.y8c{bottom:410.854680pt;}
.y132{bottom:410.854693pt;}
.y2d{bottom:413.920013pt;}
.y11d{bottom:419.765360pt;}
.y58{bottom:423.013320pt;}
.yd8{bottom:429.253320pt;}
.yc7{bottom:429.253333pt;}
.y8b{bottom:429.253347pt;}
.y131{bottom:429.253360pt;}
.y2c{bottom:432.318680pt;}
.y151{bottom:436.165347pt;}
.y11c{bottom:436.630680pt;}
.y57{bottom:439.013320pt;}
.yad{bottom:445.356000pt;}
.yd7{bottom:447.651987pt;}
.ye4{bottom:447.652000pt;}
.y8a{bottom:447.652013pt;}
.y130{bottom:447.652027pt;}
.y2b{bottom:450.717347pt;}
.y11b{bottom:453.496013pt;}
.y56{bottom:455.013320pt;}
.y150{bottom:457.322680pt;}
.yd6{bottom:466.050653pt;}
.y144{bottom:466.050667pt;}
.y89{bottom:466.050680pt;}
.y2a{bottom:469.116013pt;}
.y11a{bottom:470.361360pt;}
.y55{bottom:471.013320pt;}
.y14f{bottom:478.480013pt;}
.yd5{bottom:484.449320pt;}
.ye3{bottom:484.449333pt;}
.y88{bottom:484.449347pt;}
.y54{bottom:487.013320pt;}
.y29{bottom:487.514667pt;}
.y119{bottom:487.516013pt;}
.y14e{bottom:499.637347pt;}
.yac{bottom:500.551987pt;}
.yd4{bottom:502.847987pt;}
.y87{bottom:502.848000pt;}
.yec{bottom:502.848013pt;}
.y53{bottom:503.013320pt;}
.y28{bottom:505.913347pt;}
.y118{bottom:505.914667pt;}
.yab{bottom:518.950667pt;}
.y52{bottom:519.013320pt;}
.y14d{bottom:520.794680pt;}
.y12f{bottom:521.246653pt;}
.y86{bottom:521.246667pt;}
.yc6{bottom:521.246680pt;}
.y27{bottom:524.312000pt;}
.y117{bottom:524.313333pt;}
.y51{bottom:535.013320pt;}
.yaa{bottom:537.349333pt;}
.yf1{bottom:539.645320pt;}
.y85{bottom:539.645333pt;}
.yc5{bottom:539.645347pt;}
.y26{bottom:542.710667pt;}
.y116{bottom:542.712013pt;}
.y50{bottom:551.013320pt;}
.y14c{bottom:555.285333pt;}
.ya9{bottom:555.748000pt;}
.y12e{bottom:558.043987pt;}
.y84{bottom:558.044000pt;}
.y25{bottom:561.109347pt;}
.y115{bottom:561.110680pt;}
.y4f{bottom:567.013320pt;}
.ya8{bottom:574.146667pt;}
.yd3{bottom:576.442653pt;}
.y83{bottom:576.442667pt;}
.yc4{bottom:576.442680pt;}
.y24{bottom:579.508013pt;}
.y114{bottom:579.509333pt;}
.y4e{bottom:583.013320pt;}
.ya7{bottom:592.545333pt;}
.y82{bottom:594.841333pt;}
.yeb{bottom:594.841347pt;}
.y23{bottom:597.906680pt;}
.y113{bottom:597.908013pt;}
.y4d{bottom:599.013320pt;}
.y16f{bottom:599.682668pt;}
.yf0{bottom:613.239987pt;}
.y81{bottom:613.240000pt;}
.yc3{bottom:613.240013pt;}
.y4c{bottom:615.013320pt;}
.y22{bottom:616.305347pt;}
.y112{bottom:616.306667pt;}
.ya6{bottom:629.342680pt;}
.y4b{bottom:631.013320pt;}
.y16e{bottom:631.016001pt;}
.y80{bottom:631.638667pt;}
.yc2{bottom:631.638680pt;}
.y170{bottom:632.497333pt;}
.y21{bottom:634.704000pt;}
.y111{bottom:634.705347pt;}
.yb{bottom:643.288000pt;}
.y4a{bottom:647.013320pt;}
.ya5{bottom:647.741347pt;}
.y7f{bottom:650.037333pt;}
.yc1{bottom:650.037347pt;}
.y20{bottom:653.102667pt;}
.y110{bottom:653.104013pt;}
.y16d{bottom:662.349335pt;}
.y49{bottom:663.013320pt;}
.ya4{bottom:667.288013pt;}
.y7e{bottom:668.436000pt;}
.yc0{bottom:668.436013pt;}
.y1f{bottom:671.501333pt;}
.y10f{bottom:671.502680pt;}
.y48{bottom:679.013320pt;}
.y9{bottom:682.767999pt;}
.ya3{bottom:685.686680pt;}
.y7d{bottom:686.834667pt;}
.ybf{bottom:686.834680pt;}
.y1e{bottom:689.900000pt;}
.y10e{bottom:689.901347pt;}
.y16c{bottom:693.682668pt;}
.y47{bottom:695.013320pt;}
.y7c{bottom:705.233333pt;}
.ye2{bottom:705.233347pt;}
.y1d{bottom:708.298667pt;}
.y10d{bottom:708.300013pt;}
.y7{bottom:708.474666pt;}
.y46{bottom:711.013320pt;}
.ya2{bottom:723.632000pt;}
.y7b{bottom:723.632013pt;}
.y16b{bottom:725.016001pt;}
.y1c{bottom:726.697333pt;}
.y10c{bottom:726.698680pt;}
.y45{bottom:727.013320pt;}
.y5{bottom:734.181334pt;}
.ya1{bottom:742.030653pt;}
.y7a{bottom:742.030667pt;}
.yea{bottom:742.030680pt;}
.y44{bottom:743.013320pt;}
.y1b{bottom:745.096013pt;}
.y10b{bottom:745.097333pt;}
.y169{bottom:756.349335pt;}
.y43{bottom:759.013320pt;}
.y79{bottom:760.429333pt;}
.ya0{bottom:760.429347pt;}
.y1a{bottom:763.494680pt;}
.y10a{bottom:763.496000pt;}
.y42{bottom:775.013320pt;}
.y78{bottom:778.828000pt;}
.ye9{bottom:778.828013pt;}
.y2{bottom:779.053333pt;}
.y19{bottom:781.893347pt;}
.y109{bottom:781.894667pt;}
.y167{bottom:787.682668pt;}
.y41{bottom:791.013320pt;}
.y77{bottom:797.226667pt;}
.y143{bottom:797.226680pt;}
.y18{bottom:800.292000pt;}
.y108{bottom:800.293333pt;}
.y40{bottom:807.013320pt;}
.y76{bottom:815.625333pt;}
.y13a{bottom:815.625347pt;}
.y17{bottom:818.690667pt;}
.y107{bottom:818.692000pt;}
.y164{bottom:821.016001pt;}
.y3f{bottom:823.013320pt;}
.y9f{bottom:834.024000pt;}
.y75{bottom:834.024013pt;}
.y106{bottom:837.090667pt;}
.y1{bottom:838.827467pt;}
.y12{bottom:838.827480pt;}
.y3e{bottom:839.013320pt;}
.y9e{bottom:852.422667pt;}
.y74{bottom:852.422680pt;}
.y3d{bottom:855.013320pt;}
.y105{bottom:855.489333pt;}
.y162{bottom:867.548000pt;}
.y73{bottom:870.821333pt;}
.y3c{bottom:871.013320pt;}
.y104{bottom:873.888000pt;}
.y16{bottom:880.596000pt;}
.y3b{bottom:887.013320pt;}
.y72{bottom:889.220000pt;}
.y103{bottom:892.286667pt;}
.y163{bottom:898.209333pt;}
.y15{bottom:902.061333pt;}
.y3a{bottom:903.013320pt;}
.y9d{bottom:907.618667pt;}
.y102{bottom:910.396000pt;}
.y39{bottom:919.013320pt;}
.y71{bottom:926.017333pt;}
.y101{bottom:927.261333pt;}
.y38{bottom:935.013320pt;}
.y13{bottom:940.954665pt;}
.y37{bottom:951.013320pt;}
.y36{bottom:967.013320pt;}
.y35{bottom:983.013320pt;}
.y11{bottom:986.066667pt;}
.y10{bottom:1005.266667pt;}
.y34{bottom:1031.013320pt;}
.yf{bottom:1031.013333pt;}
.h11{height:24.087240pt;}
.h4{height:27.373333pt;}
.h16{height:34.000000pt;}
.h5{height:34.442708pt;}
.h6{height:34.664062pt;}
.h15{height:34.666667pt;}
.h2{height:38.317333pt;}
.h8{height:38.453333pt;}
.hc{height:39.101562pt;}
.h12{height:40.763021pt;}
.h7{height:41.146667pt;}
.he{height:43.375000pt;}
.h13{height:44.437500pt;}
.hf{height:44.468750pt;}
.h3{height:44.859375pt;}
.h9{height:45.568000pt;}
.h10{height:49.037833pt;}
.hd{height:50.604167pt;}
.h14{height:55.333333pt;}
.hb{height:67.845333pt;}
.ha{height:184.576518pt;}
.h1{height:184.581413pt;}
.h0{height:1056.000000pt;}
.w6{width:25.066667pt;}
.w5{width:122.933333pt;}
.w2{width:186.466667pt;}
.w3{width:432.866667pt;}
.w4{width:443.000000pt;}
.w1{width:502.666667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.299992pt;}
.x3{left:9.689333pt;}
.x13{left:10.666667pt;}
.x20{left:36.592002pt;}
.x22{left:53.466668pt;}
.x23{left:57.466668pt;}
.x1d{left:75.600000pt;}
.xa{left:81.548000pt;}
.x21{left:83.333335pt;}
.x12{left:96.000000pt;}
.x5{left:99.166667pt;}
.x9{left:100.694667pt;}
.xe{left:102.982667pt;}
.x1e{left:105.733334pt;}
.xb{left:119.753333pt;}
.x10{left:125.544000pt;}
.x14{left:128.000000pt;}
.x19{left:132.000000pt;}
.x6{left:133.892000pt;}
.x1{left:143.381867pt;}
.x4{left:150.728000pt;}
.x16{left:152.000000pt;}
.x2{left:156.666667pt;}
.x17{left:176.000000pt;}
.x1c{left:182.933333pt;}
.x18{left:269.866653pt;}
.x7{left:283.966675pt;}
.xc{left:298.993333pt;}
.xd{left:325.173333pt;}
.x11{left:343.342667pt;}
.x1a{left:391.900000pt;}
.xf{left:395.616013pt;}
.x1f{left:546.066652pt;}
.x1b{left:730.626667pt;}
.x15{left:737.466680pt;}
}




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