
    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_f2e1236fbeda4d78740ad760.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003418;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_f4b29abe8366a3bb043e2bc2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.012207;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_36f50782fe236fe712f616cf.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.014160;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_3f87258d5e133e21fcc3788c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.012207;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_d76f641bedf75c591bfd6fe2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.800781;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_0a113ea5c177109c85033129.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003418;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_07a491e93bece320523ffb42.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_7ec254fd2c5e2982235c9712.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.897461;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_cbb0d0b69852604c1d476552.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_520195659d04e85beb02a0b9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.883832;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_69db87e462b2dfd65ae61908.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.911133;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);}
.v2{vertical-align:-15.600000px;}
.v3{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.600000px;}
.v4{vertical-align:48.000000px;}
.ls27{letter-spacing:-1.212000px;}
.lsd{letter-spacing:-0.900000px;}
.ls9{letter-spacing:-0.804000px;}
.ls1f{letter-spacing:-0.780000px;}
.ls28{letter-spacing:-0.684000px;}
.ls1a{letter-spacing:-0.660000px;}
.ls7{letter-spacing:-0.600000px;}
.lse{letter-spacing:-0.456000px;}
.lsc{letter-spacing:-0.450000px;}
.ls14{letter-spacing:-0.384000px;}
.ls16{letter-spacing:-0.360000px;}
.ls1e{letter-spacing:-0.300000px;}
.lsb{letter-spacing:-0.132000px;}
.ls29{letter-spacing:-0.072000px;}
.ls8{letter-spacing:-0.024000px;}
.ls6{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.060000px;}
.ls10{letter-spacing:0.120000px;}
.ls11{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.300000px;}
.ls21{letter-spacing:0.360000px;}
.ls22{letter-spacing:0.396000px;}
.ls20{letter-spacing:0.420000px;}
.ls23{letter-spacing:0.450000px;}
.ls1b{letter-spacing:0.498000px;}
.ls1c{letter-spacing:0.516000px;}
.ls19{letter-spacing:0.540000px;}
.ls1{letter-spacing:0.600000px;}
.lsa{letter-spacing:0.654000px;}
.ls1d{letter-spacing:0.780000px;}
.ls25{letter-spacing:1.200000px;}
.ls5{letter-spacing:1.500000px;}
.ls15{letter-spacing:1.800000px;}
.ls13{letter-spacing:4.200000px;}
.ls26{letter-spacing:10.500000px;}
.ls3{letter-spacing:10.800000px;}
.lsf{letter-spacing:45.900000px;}
.ls24{letter-spacing:47.700000px;}
.ls0{letter-spacing:56.160000px;}
.ls17{letter-spacing:64.920000px;}
.ls18{letter-spacing:341.880000px;}
.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;}
}
.wsc{word-spacing:-60.000000px;}
.ws1d{word-spacing:-54.000000px;}
.ws13{word-spacing:-15.780000px;}
.ws17{word-spacing:-15.420000px;}
.ws16{word-spacing:-15.180000px;}
.wsd{word-spacing:-15.120000px;}
.wsa{word-spacing:-15.000000px;}
.ws14{word-spacing:-14.700000px;}
.wsb{word-spacing:-14.640000px;}
.wse{word-spacing:-14.340000px;}
.ws15{word-spacing:-14.220000px;}
.ws12{word-spacing:-14.100000px;}
.ws1b{word-spacing:-14.040000px;}
.ws11{word-spacing:-14.016000px;}
.ws10{word-spacing:-13.998000px;}
.ws18{word-spacing:-13.950000px;}
.ws1a{word-spacing:-13.896000px;}
.wsf{word-spacing:-13.500000px;}
.ws1f{word-spacing:-13.428000px;}
.ws19{word-spacing:-12.900000px;}
.ws1e{word-spacing:-12.816000px;}
.ws0{word-spacing:-12.300000px;}
.ws1c{word-spacing:-12.288000px;}
.ws2{word-spacing:-12.000000px;}
.ws9{word-spacing:-11.616000px;}
.ws4{word-spacing:-11.154000px;}
.ws3{word-spacing:-10.500000px;}
.ws5{word-spacing:-10.368000px;}
.ws6{word-spacing:-10.050000px;}
.ws7{word-spacing:-10.044000px;}
.ws1{word-spacing:-9.000000px;}
.ws8{word-spacing:0.000000px;}
._25{margin-left:-11.124000px;}
._c{margin-left:-3.996000px;}
._b{margin-left:-2.754000px;}
._1{margin-left:-1.056000px;}
._0{width:1.188000px;}
._5{width:2.196000px;}
._8{width:3.402000px;}
._7{width:5.076000px;}
._9{width:6.540000px;}
._a{width:7.548000px;}
._e{width:9.264000px;}
._16{width:10.524000px;}
._14{width:11.760000px;}
._17{width:13.392000px;}
._1e{width:15.036000px;}
._11{width:16.080000px;}
._12{width:18.060000px;}
._f{width:19.320000px;}
._10{width:20.754000px;}
._3{width:22.200000px;}
._d{width:23.778000px;}
._19{width:25.002000px;}
._6{width:26.400000px;}
._18{width:28.648650px;}
._20{width:30.132000px;}
._26{width:31.134000px;}
._4{width:37.500000px;}
._13{width:39.102000px;}
._1f{width:48.504000px;}
._21{width:55.512000px;}
._22{width:56.844000px;}
._23{width:58.026000px;}
._24{width:59.106000px;}
._1a{width:73.350000px;}
._1c{width:88.020000px;}
._1d{width:89.346000px;}
._1b{width:122.580000px;}
._2{width:345.024000px;}
._15{width:1885.962000px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc5{color:rgb(255,255,255);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:30.000000px;}
.fs5{font-size:36.000000px;}
.fs8{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs1{font-size:51.600000px;}
.fs7{font-size:54.000000px;}
.fs9{font-size:54.150000px;}
.fs2{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fsb{font-size:72.000000px;}
.fsa{font-size:84.000000px;}
.fsc{font-size:84.150000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y4e{bottom:3.000000px;}
.yd6{bottom:9.495000px;}
.y3{bottom:9.585000px;}
.ydc{bottom:12.780000px;}
.ye0{bottom:13.725000px;}
.ye3{bottom:15.195000px;}
.y4{bottom:20.385000px;}
.y4d{bottom:21.037500px;}
.yd9{bottom:25.380000px;}
.y2{bottom:28.500000px;}
.y7{bottom:28.837500px;}
.yd5{bottom:33.825000px;}
.ydb{bottom:36.825000px;}
.yde{bottom:38.025000px;}
.y4c{bottom:39.037500px;}
.ye2{bottom:41.025000px;}
.y6{bottom:42.637500px;}
.y54{bottom:46.837500px;}
.yb3{bottom:51.825000px;}
.yb2{bottom:51.870000px;}
.y4b{bottom:57.037500px;}
.yb0{bottom:64.155000px;}
.yad{bottom:64.425000px;}
.y53{bottom:64.837500px;}
.y4a{bottom:75.037500px;}
.y52{bottom:80.737500px;}
.y49{bottom:93.037500px;}
.y161{bottom:95.437500px;}
.y89{bottom:97.837500px;}
.yd3{bottom:101.137500px;}
.y11d{bottom:102.337500px;}
.y48{bottom:108.037500px;}
.y88{bottom:117.337500px;}
.ya9{bottom:118.537500px;}
.y160{bottom:119.737500px;}
.yd2{bottom:120.337500px;}
.y11c{bottom:121.837500px;}
.y136{bottom:123.337500px;}
.y33{bottom:125.737500px;}
.y87{bottom:136.537500px;}
.ya8{bottom:138.037500px;}
.yd1{bottom:139.537500px;}
.y11b{bottom:141.037500px;}
.y15f{bottom:144.337500px;}
.y34{bottom:145.237500px;}
.y32{bottom:145.837500px;}
.y135{bottom:147.637500px;}
.y47{bottom:151.537500px;}
.y86{bottom:155.745000px;}
.ya7{bottom:157.245000px;}
.yd0{bottom:158.730000px;}
.y11a{bottom:160.245000px;}
.y46{bottom:168.037500px;}
.y15e{bottom:168.675000px;}
.y134{bottom:171.975000px;}
.y85{bottom:174.975000px;}
.ya6{bottom:176.475000px;}
.ycf{bottom:177.975000px;}
.y119{bottom:179.475000px;}
.y31{bottom:183.075000px;}
.y45{bottom:184.237500px;}
.y15d{bottom:193.275000px;}
.y84{bottom:194.175000px;}
.ya5{bottom:195.675000px;}
.y133{bottom:196.575000px;}
.yce{bottom:197.175000px;}
.y118{bottom:198.675000px;}
.y44{bottom:200.467500px;}
.y30{bottom:202.575000px;}
.y83{bottom:213.375000px;}
.ya4{bottom:214.875000px;}
.ycd{bottom:216.375000px;}
.y15c{bottom:217.575000px;}
.y117{bottom:217.875000px;}
.y132{bottom:220.875000px;}
.y2f{bottom:222.075000px;}
.y43{bottom:232.567500px;}
.y82{bottom:232.575000px;}
.ya3{bottom:234.075000px;}
.ycc{bottom:235.575000px;}
.y116{bottom:237.075000px;}
.y2e{bottom:241.575000px;}
.y15b{bottom:242.175000px;}
.y131{bottom:245.475000px;}
.y42{bottom:250.582500px;}
.y81{bottom:251.775000px;}
.ya2{bottom:253.275000px;}
.ycb{bottom:255.075000px;}
.y115{bottom:256.275000px;}
.y2d{bottom:261.075000px;}
.y15a{bottom:266.475000px;}
.y41{bottom:268.582500px;}
.y130{bottom:269.775000px;}
.y80{bottom:270.975000px;}
.ya1{bottom:272.475000px;}
.yca{bottom:274.275000px;}
.y114{bottom:275.475000px;}
.y2c{bottom:280.575000px;}
.y40{bottom:286.582500px;}
.y7f{bottom:290.175000px;}
.y159{bottom:291.075000px;}
.ya0{bottom:291.675000px;}
.yc9{bottom:293.475000px;}
.y12f{bottom:294.375000px;}
.y113{bottom:294.675000px;}
.y2b{bottom:300.075000px;}
.y3f{bottom:304.582500px;}
.y7e{bottom:309.375000px;}
.y9f{bottom:310.875000px;}
.yc8{bottom:312.675000px;}
.y112{bottom:313.875000px;}
.y158{bottom:315.375000px;}
.y12e{bottom:318.675000px;}
.y2a{bottom:319.575000px;}
.y7d{bottom:328.575000px;}
.y9e{bottom:330.075000px;}
.y3e{bottom:331.582500px;}
.yc7{bottom:331.875000px;}
.y111{bottom:333.120000px;}
.y29{bottom:339.120000px;}
.y157{bottom:340.605000px;}
.y12d{bottom:345.120000px;}
.yeb{bottom:348.120000px;}
.y9d{bottom:349.320000px;}
.yc6{bottom:351.105000px;}
.y7c{bottom:352.005000px;}
.y110{bottom:352.620000px;}
.y3d{bottom:358.612500px;}
.y28{bottom:358.620000px;}
.y156{bottom:364.305000px;}
.y7b{bottom:367.320000px;}
.y9c{bottom:368.820000px;}
.yc5{bottom:370.320000px;}
.y10f{bottom:371.805000px;}
.y3c{bottom:376.612500px;}
.y27{bottom:378.105000px;}
.y12c{bottom:381.405000px;}
.y7a{bottom:386.505000px;}
.y9b{bottom:388.005000px;}
.y155{bottom:388.920000px;}
.yc4{bottom:389.505000px;}
.y10e{bottom:391.005000px;}
.y3b{bottom:394.612500px;}
.y26{bottom:397.605000px;}
.y79{bottom:405.705000px;}
.y9a{bottom:407.205000px;}
.yc3{bottom:408.705000px;}
.y10d{bottom:410.205000px;}
.y3a{bottom:412.612500px;}
.y154{bottom:413.205000px;}
.y12b{bottom:416.820000px;}
.y25{bottom:417.105000px;}
.y78{bottom:424.905000px;}
.y99{bottom:426.405000px;}
.yc2{bottom:427.905000px;}
.y10c{bottom:429.420000px;}
.y39{bottom:430.612500px;}
.y12a{bottom:434.505000px;}
.y24{bottom:436.620000px;}
.y153{bottom:437.820000px;}
.y77{bottom:444.105000px;}
.y98{bottom:445.605000px;}
.yc1{bottom:447.120000px;}
.y38{bottom:448.612500px;}
.y10b{bottom:448.620000px;}
.y23{bottom:456.120000px;}
.y152{bottom:462.120000px;}
.y76{bottom:463.320000px;}
.yc0{bottom:466.320000px;}
.y37{bottom:466.612500px;}
.y10a{bottom:467.820000px;}
.y129{bottom:469.620000px;}
.y22{bottom:475.620000px;}
.y75{bottom:482.505000px;}
.y97{bottom:482.820000px;}
.y36{bottom:484.612500px;}
.ybf{bottom:485.820000px;}
.y151{bottom:486.705000px;}
.y109{bottom:487.005000px;}
.y21{bottom:495.105000px;}
.y74{bottom:501.750000px;}
.y96{bottom:502.050000px;}
.y35{bottom:502.612500px;}
.ybe{bottom:505.050000px;}
.y108{bottom:506.250000px;}
.y150{bottom:511.050000px;}
.y20{bottom:514.650000px;}
.y73{bottom:520.950000px;}
.ybd{bottom:524.250000px;}
.y95{bottom:525.150000px;}
.y107{bottom:525.450000px;}
.y1f{bottom:534.150000px;}
.y14f{bottom:535.650000px;}
.y72{bottom:540.150000px;}
.y94{bottom:540.450000px;}
.ybc{bottom:543.450000px;}
.y106{bottom:544.650000px;}
.y1e{bottom:553.650000px;}
.y71{bottom:559.350000px;}
.y93{bottom:559.650000px;}
.y14e{bottom:559.950000px;}
.ybb{bottom:567.150000px;}
.y105{bottom:568.350000px;}
.y1d{bottom:573.150000px;}
.y128{bottom:575.250000px;}
.y70{bottom:578.850000px;}
.y14d{bottom:584.550000px;}
.yba{bottom:586.350000px;}
.y1c{bottom:592.650000px;}
.y127{bottom:592.950000px;}
.y6f{bottom:598.050000px;}
.y104{bottom:605.850000px;}
.y14c{bottom:608.850000px;}
.y1b{bottom:612.150000px;}
.y6e{bottom:617.250000px;}
.y92{bottom:617.550000px;}
.yb9{bottom:622.950000px;}
.y103{bottom:625.050000px;}
.y126{bottom:628.050000px;}
.y1a{bottom:631.650000px;}
.y14b{bottom:633.450000px;}
.y6d{bottom:636.450000px;}
.y91{bottom:636.750000px;}
.yb8{bottom:640.650000px;}
.y102{bottom:644.250000px;}
.y125{bottom:645.450000px;}
.y19{bottom:651.150000px;}
.y6c{bottom:655.650000px;}
.y90{bottom:655.950000px;}
.y14a{bottom:657.750000px;}
.y124{bottom:662.850000px;}
.y101{bottom:663.450000px;}
.y18{bottom:670.650000px;}
.y6b{bottom:674.880000px;}
.y8f{bottom:675.195000px;}
.y149{bottom:682.380000px;}
.y100{bottom:682.680000px;}
.y17{bottom:690.195000px;}
.y6a{bottom:694.080000px;}
.y8e{bottom:694.380000px;}
.y123{bottom:698.595000px;}
.yff{bottom:701.880000px;}
.y148{bottom:706.695000px;}
.y16{bottom:709.680000px;}
.y69{bottom:713.280000px;}
.y8d{bottom:713.595000px;}
.y122{bottom:717.780000px;}
.yfe{bottom:721.080000px;}
.y15{bottom:729.195000px;}
.y147{bottom:731.280000px;}
.y68{bottom:732.480000px;}
.y121{bottom:736.995000px;}
.y8c{bottom:737.280000px;}
.yfd{bottom:740.280000px;}
.y14{bottom:748.680000px;}
.yea{bottom:751.680000px;}
.y146{bottom:755.580000px;}
.y67{bottom:756.195000px;}
.y8b{bottom:756.480000px;}
.yfc{bottom:759.480000px;}
.yd8{bottom:766.200000px;}
.y13{bottom:768.480000px;}
.ye9{bottom:770.880000px;}
.y66{bottom:775.380000px;}
.yfb{bottom:778.695000px;}
.y145{bottom:780.195000px;}
.ye8{bottom:790.080000px;}
.yd7{bottom:791.580000px;}
.y8a{bottom:793.380000px;}
.y120{bottom:794.580000px;}
.yfa{bottom:797.880000px;}
.y144{bottom:804.495000px;}
.y12{bottom:805.695000px;}
.ye7{bottom:809.580000px;}
.y65{bottom:812.580000px;}
.ye1{bottom:813.300000px;}
.y11f{bottom:814.080000px;}
.yf9{bottom:817.080000px;}
.yd4{bottom:820.500000px;}
.y11{bottom:824.580000px;}
.y143{bottom:829.080000px;}
.yda{bottom:829.800000px;}
.y64{bottom:832.080000px;}
.ye6{bottom:833.295000px;}
.yf8{bottom:836.580000px;}
.y10{bottom:840.825000px;}
.y63{bottom:851.325000px;}
.ye5{bottom:852.525000px;}
.y142{bottom:853.425000px;}
.yf7{bottom:855.825000px;}
.yf{bottom:857.025000px;}
.y62{bottom:870.525000px;}
.ye{bottom:873.225000px;}
.yf6{bottom:875.025000px;}
.y11e{bottom:876.225000px;}
.y141{bottom:878.025000px;}
.yab{bottom:883.125000px;}
.y61{bottom:889.725000px;}
.ydd{bottom:892.200000px;}
.yf5{bottom:894.225000px;}
.yac{bottom:894.900000px;}
.y140{bottom:902.325000px;}
.ydf{bottom:905.925000px;}
.yaa{bottom:907.125000px;}
.y60{bottom:908.925000px;}
.yf4{bottom:913.425000px;}
.yd{bottom:914.625000px;}
.y13f{bottom:926.925000px;}
.y5f{bottom:928.125000px;}
.yf3{bottom:932.625000px;}
.yc{bottom:934.725000px;}
.yae{bottom:935.325000px;}
.y5e{bottom:947.325000px;}
.y13e{bottom:951.225000px;}
.yf2{bottom:951.825000px;}
.y5d{bottom:966.525000px;}
.yf1{bottom:971.025000px;}
.y13d{bottom:975.825000px;}
.yb{bottom:985.425000px;}
.y5c{bottom:985.725000px;}
.yf0{bottom:990.225000px;}
.y13c{bottom:1000.125000px;}
.ye4{bottom:1004.925000px;}
.y5b{bottom:1008.825000px;}
.yef{bottom:1009.455000px;}
.ya{bottom:1022.070000px;}
.y5a{bottom:1024.155000px;}
.y13b{bottom:1024.755000px;}
.yaf{bottom:1025.700000px;}
.yee{bottom:1028.670000px;}
.yb7{bottom:1029.855000px;}
.y59{bottom:1043.355000px;}
.yed{bottom:1047.855000px;}
.y13a{bottom:1049.070000px;}
.yb6{bottom:1049.355000px;}
.y9{bottom:1058.355000px;}
.y58{bottom:1062.855000px;}
.yb1{bottom:1065.570000px;}
.yec{bottom:1067.355000px;}
.y139{bottom:1073.655000px;}
.y57{bottom:1082.070000px;}
.yb5{bottom:1086.570000px;}
.y8{bottom:1091.370000px;}
.y138{bottom:1097.955000px;}
.y56{bottom:1101.255000px;}
.yb4{bottom:1105.755000px;}
.y137{bottom:1122.570000px;}
.y55{bottom:1124.955000px;}
.y5{bottom:1128.255000px;}
.y1{bottom:1134.570000px;}
.y51{bottom:1144.455000px;}
.y50{bottom:1163.655000px;}
.y4f{bottom:1173.570000px;}
.ha{height:22.965938px;}
.h9{height:23.085938px;}
.h14{height:28.257422px;}
.h16{height:28.317422px;}
.h17{height:28.374609px;}
.h10{height:30.700195px;}
.hf{height:30.802734px;}
.h11{height:33.632812px;}
.h12{height:35.085938px;}
.h6{height:35.179688px;}
.hb{height:35.203125px;}
.hd{height:39.471680px;}
.h1c{height:39.581323px;}
.hc{height:39.603516px;}
.h24{height:43.664062px;}
.h5{height:43.857422px;}
.h7{height:43.974609px;}
.h4{height:44.003906px;}
.h3{height:48.404297px;}
.h15{height:50.566406px;}
.h1b{height:51.300000px;}
.h2{height:51.637500px;}
.h1f{height:52.804688px;}
.h20{height:54.300000px;}
.h1e{height:56.700000px;}
.h21{height:57.000000px;}
.h22{height:58.500000px;}
.h1d{height:61.400391px;}
.h23{height:61.510034px;}
.h18{height:61.670545px;}
.h13{height:62.460938px;}
.h8{height:79.207031px;}
.h1a{height:87.603516px;}
.h19{height:109.500000px;}
.he{height:517.620000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.wc{width:122.400000px;}
.w4{width:126.675000px;}
.wb{width:135.000000px;}
.w9{width:150.300000px;}
.w8{width:155.400000px;}
.w7{width:156.000000px;}
.wa{width:156.900000px;}
.w6{width:180.975000px;}
.w3{width:339.975000px;}
.w2{width:372.450000px;}
.w5{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:3.375000px;}
.x19{left:9.525000px;}
.x14{left:11.520000px;}
.x11{left:12.675000px;}
.x1{left:54.000000px;}
.x7{left:81.637500px;}
.x22{left:85.980000px;}
.x1e{left:136.050000px;}
.x17{left:140.025000px;}
.x3{left:170.130000px;}
.x9{left:230.774987px;}
.x5{left:249.674987px;}
.x6{left:250.874987px;}
.x10{left:267.600000px;}
.xb{left:276.674987px;}
.xc{left:281.474987px;}
.x1a{left:284.700000px;}
.xd{left:303.719987px;}
.x1d{left:309.000000px;}
.x1c{left:323.504987px;}
.x12{left:325.319987px;}
.x13{left:383.700000px;}
.x2{left:426.450000px;}
.x15{left:431.249987px;}
.x8{left:469.649987px;}
.x1f{left:480.600000px;}
.xe{left:488.849987px;}
.x20{left:516.300000px;}
.xf{left:519.449987px;}
.x16{left:564.600000px;}
.x21{left:566.294987px;}
.x23{left:674.400000px;}
.x18{left:681.000000px;}
.xa{left:694.724987px;}
.x24{left:717.524987px;}
.x4{left:766.425000px;}
@media print{
.v2{vertical-align:-13.866667pt;}
.v3{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.866667pt;}
.v4{vertical-align:42.666667pt;}
.ls27{letter-spacing:-1.077333pt;}
.lsd{letter-spacing:-0.800000pt;}
.ls9{letter-spacing:-0.714667pt;}
.ls1f{letter-spacing:-0.693333pt;}
.ls28{letter-spacing:-0.608000pt;}
.ls1a{letter-spacing:-0.586667pt;}
.ls7{letter-spacing:-0.533333pt;}
.lse{letter-spacing:-0.405333pt;}
.lsc{letter-spacing:-0.400000pt;}
.ls14{letter-spacing:-0.341333pt;}
.ls16{letter-spacing:-0.320000pt;}
.ls1e{letter-spacing:-0.266667pt;}
.lsb{letter-spacing:-0.117333pt;}
.ls29{letter-spacing:-0.064000pt;}
.ls8{letter-spacing:-0.021333pt;}
.ls6{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.053333pt;}
.ls10{letter-spacing:0.106667pt;}
.ls11{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.266667pt;}
.ls21{letter-spacing:0.320000pt;}
.ls22{letter-spacing:0.352000pt;}
.ls20{letter-spacing:0.373333pt;}
.ls23{letter-spacing:0.400000pt;}
.ls1b{letter-spacing:0.442667pt;}
.ls1c{letter-spacing:0.458667pt;}
.ls19{letter-spacing:0.480000pt;}
.ls1{letter-spacing:0.533333pt;}
.lsa{letter-spacing:0.581333pt;}
.ls1d{letter-spacing:0.693333pt;}
.ls25{letter-spacing:1.066667pt;}
.ls5{letter-spacing:1.333333pt;}
.ls15{letter-spacing:1.600000pt;}
.ls13{letter-spacing:3.733333pt;}
.ls26{letter-spacing:9.333333pt;}
.ls3{letter-spacing:9.600000pt;}
.lsf{letter-spacing:40.800000pt;}
.ls24{letter-spacing:42.400000pt;}
.ls0{letter-spacing:49.920000pt;}
.ls17{letter-spacing:57.706667pt;}
.ls18{letter-spacing:303.893333pt;}
.wsc{word-spacing:-53.333333pt;}
.ws1d{word-spacing:-48.000000pt;}
.ws13{word-spacing:-14.026667pt;}
.ws17{word-spacing:-13.706667pt;}
.ws16{word-spacing:-13.493333pt;}
.wsd{word-spacing:-13.440000pt;}
.wsa{word-spacing:-13.333333pt;}
.ws14{word-spacing:-13.066667pt;}
.wsb{word-spacing:-13.013333pt;}
.wse{word-spacing:-12.746667pt;}
.ws15{word-spacing:-12.640000pt;}
.ws12{word-spacing:-12.533333pt;}
.ws1b{word-spacing:-12.480000pt;}
.ws11{word-spacing:-12.458667pt;}
.ws10{word-spacing:-12.442667pt;}
.ws18{word-spacing:-12.400000pt;}
.ws1a{word-spacing:-12.352000pt;}
.wsf{word-spacing:-12.000000pt;}
.ws1f{word-spacing:-11.936000pt;}
.ws19{word-spacing:-11.466667pt;}
.ws1e{word-spacing:-11.392000pt;}
.ws0{word-spacing:-10.933333pt;}
.ws1c{word-spacing:-10.922667pt;}
.ws2{word-spacing:-10.666667pt;}
.ws9{word-spacing:-10.325333pt;}
.ws4{word-spacing:-9.914667pt;}
.ws3{word-spacing:-9.333333pt;}
.ws5{word-spacing:-9.216000pt;}
.ws6{word-spacing:-8.933333pt;}
.ws7{word-spacing:-8.928000pt;}
.ws1{word-spacing:-8.000000pt;}
.ws8{word-spacing:0.000000pt;}
._25{margin-left:-9.888000pt;}
._c{margin-left:-3.552000pt;}
._b{margin-left:-2.448000pt;}
._1{margin-left:-0.938667pt;}
._0{width:1.056000pt;}
._5{width:1.952000pt;}
._8{width:3.024000pt;}
._7{width:4.512000pt;}
._9{width:5.813333pt;}
._a{width:6.709333pt;}
._e{width:8.234667pt;}
._16{width:9.354667pt;}
._14{width:10.453333pt;}
._17{width:11.904000pt;}
._1e{width:13.365333pt;}
._11{width:14.293333pt;}
._12{width:16.053333pt;}
._f{width:17.173333pt;}
._10{width:18.448000pt;}
._3{width:19.733333pt;}
._d{width:21.136000pt;}
._19{width:22.224000pt;}
._6{width:23.466667pt;}
._18{width:25.465467pt;}
._20{width:26.784000pt;}
._26{width:27.674667pt;}
._4{width:33.333333pt;}
._13{width:34.757333pt;}
._1f{width:43.114667pt;}
._21{width:49.344000pt;}
._22{width:50.528000pt;}
._23{width:51.578667pt;}
._24{width:52.538667pt;}
._1a{width:65.200000pt;}
._1c{width:78.240000pt;}
._1d{width:79.418667pt;}
._1b{width:108.960000pt;}
._2{width:306.688000pt;}
._15{width:1676.410667pt;}
.fs6{font-size:26.666667pt;}
.fs5{font-size:32.000000pt;}
.fs8{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs1{font-size:45.866667pt;}
.fs7{font-size:48.000000pt;}
.fs9{font-size:48.133333pt;}
.fs2{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fsb{font-size:64.000000pt;}
.fsa{font-size:74.666667pt;}
.fsc{font-size:74.800000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:2.666667pt;}
.yd6{bottom:8.440000pt;}
.y3{bottom:8.520000pt;}
.ydc{bottom:11.360000pt;}
.ye0{bottom:12.200000pt;}
.ye3{bottom:13.506667pt;}
.y4{bottom:18.120000pt;}
.y4d{bottom:18.700000pt;}
.yd9{bottom:22.560000pt;}
.y2{bottom:25.333333pt;}
.y7{bottom:25.633333pt;}
.yd5{bottom:30.066667pt;}
.ydb{bottom:32.733333pt;}
.yde{bottom:33.800000pt;}
.y4c{bottom:34.700000pt;}
.ye2{bottom:36.466667pt;}
.y6{bottom:37.900000pt;}
.y54{bottom:41.633333pt;}
.yb3{bottom:46.066667pt;}
.yb2{bottom:46.106667pt;}
.y4b{bottom:50.700000pt;}
.yb0{bottom:57.026667pt;}
.yad{bottom:57.266667pt;}
.y53{bottom:57.633333pt;}
.y4a{bottom:66.700000pt;}
.y52{bottom:71.766667pt;}
.y49{bottom:82.700000pt;}
.y161{bottom:84.833333pt;}
.y89{bottom:86.966667pt;}
.yd3{bottom:89.900000pt;}
.y11d{bottom:90.966667pt;}
.y48{bottom:96.033333pt;}
.y88{bottom:104.300000pt;}
.ya9{bottom:105.366667pt;}
.y160{bottom:106.433333pt;}
.yd2{bottom:106.966667pt;}
.y11c{bottom:108.300000pt;}
.y136{bottom:109.633333pt;}
.y33{bottom:111.766667pt;}
.y87{bottom:121.366667pt;}
.ya8{bottom:122.700000pt;}
.yd1{bottom:124.033333pt;}
.y11b{bottom:125.366667pt;}
.y15f{bottom:128.300000pt;}
.y34{bottom:129.100000pt;}
.y32{bottom:129.633333pt;}
.y135{bottom:131.233333pt;}
.y47{bottom:134.700000pt;}
.y86{bottom:138.440000pt;}
.ya7{bottom:139.773333pt;}
.yd0{bottom:141.093333pt;}
.y11a{bottom:142.440000pt;}
.y46{bottom:149.366667pt;}
.y15e{bottom:149.933333pt;}
.y134{bottom:152.866667pt;}
.y85{bottom:155.533333pt;}
.ya6{bottom:156.866667pt;}
.ycf{bottom:158.200000pt;}
.y119{bottom:159.533333pt;}
.y31{bottom:162.733333pt;}
.y45{bottom:163.766667pt;}
.y15d{bottom:171.800000pt;}
.y84{bottom:172.600000pt;}
.ya5{bottom:173.933333pt;}
.y133{bottom:174.733333pt;}
.yce{bottom:175.266667pt;}
.y118{bottom:176.600000pt;}
.y44{bottom:178.193333pt;}
.y30{bottom:180.066667pt;}
.y83{bottom:189.666667pt;}
.ya4{bottom:191.000000pt;}
.ycd{bottom:192.333333pt;}
.y15c{bottom:193.400000pt;}
.y117{bottom:193.666667pt;}
.y132{bottom:196.333333pt;}
.y2f{bottom:197.400000pt;}
.y43{bottom:206.726667pt;}
.y82{bottom:206.733333pt;}
.ya3{bottom:208.066667pt;}
.ycc{bottom:209.400000pt;}
.y116{bottom:210.733333pt;}
.y2e{bottom:214.733333pt;}
.y15b{bottom:215.266667pt;}
.y131{bottom:218.200000pt;}
.y42{bottom:222.740000pt;}
.y81{bottom:223.800000pt;}
.ya2{bottom:225.133333pt;}
.ycb{bottom:226.733333pt;}
.y115{bottom:227.800000pt;}
.y2d{bottom:232.066667pt;}
.y15a{bottom:236.866667pt;}
.y41{bottom:238.740000pt;}
.y130{bottom:239.800000pt;}
.y80{bottom:240.866667pt;}
.ya1{bottom:242.200000pt;}
.yca{bottom:243.800000pt;}
.y114{bottom:244.866667pt;}
.y2c{bottom:249.400000pt;}
.y40{bottom:254.740000pt;}
.y7f{bottom:257.933333pt;}
.y159{bottom:258.733333pt;}
.ya0{bottom:259.266667pt;}
.yc9{bottom:260.866667pt;}
.y12f{bottom:261.666667pt;}
.y113{bottom:261.933333pt;}
.y2b{bottom:266.733333pt;}
.y3f{bottom:270.740000pt;}
.y7e{bottom:275.000000pt;}
.y9f{bottom:276.333333pt;}
.yc8{bottom:277.933333pt;}
.y112{bottom:279.000000pt;}
.y158{bottom:280.333333pt;}
.y12e{bottom:283.266667pt;}
.y2a{bottom:284.066667pt;}
.y7d{bottom:292.066667pt;}
.y9e{bottom:293.400000pt;}
.y3e{bottom:294.740000pt;}
.yc7{bottom:295.000000pt;}
.y111{bottom:296.106667pt;}
.y29{bottom:301.440000pt;}
.y157{bottom:302.760000pt;}
.y12d{bottom:306.773333pt;}
.yeb{bottom:309.440000pt;}
.y9d{bottom:310.506667pt;}
.yc6{bottom:312.093333pt;}
.y7c{bottom:312.893333pt;}
.y110{bottom:313.440000pt;}
.y3d{bottom:318.766667pt;}
.y28{bottom:318.773333pt;}
.y156{bottom:323.826667pt;}
.y7b{bottom:326.506667pt;}
.y9c{bottom:327.840000pt;}
.yc5{bottom:329.173333pt;}
.y10f{bottom:330.493333pt;}
.y3c{bottom:334.766667pt;}
.y27{bottom:336.093333pt;}
.y12c{bottom:339.026667pt;}
.y7a{bottom:343.560000pt;}
.y9b{bottom:344.893333pt;}
.y155{bottom:345.706667pt;}
.yc4{bottom:346.226667pt;}
.y10e{bottom:347.560000pt;}
.y3b{bottom:350.766667pt;}
.y26{bottom:353.426667pt;}
.y79{bottom:360.626667pt;}
.y9a{bottom:361.960000pt;}
.yc3{bottom:363.293333pt;}
.y10d{bottom:364.626667pt;}
.y3a{bottom:366.766667pt;}
.y154{bottom:367.293333pt;}
.y12b{bottom:370.506667pt;}
.y25{bottom:370.760000pt;}
.y78{bottom:377.693333pt;}
.y99{bottom:379.026667pt;}
.yc2{bottom:380.360000pt;}
.y10c{bottom:381.706667pt;}
.y39{bottom:382.766667pt;}
.y12a{bottom:386.226667pt;}
.y24{bottom:388.106667pt;}
.y153{bottom:389.173333pt;}
.y77{bottom:394.760000pt;}
.y98{bottom:396.093333pt;}
.yc1{bottom:397.440000pt;}
.y38{bottom:398.766667pt;}
.y10b{bottom:398.773333pt;}
.y23{bottom:405.440000pt;}
.y152{bottom:410.773333pt;}
.y76{bottom:411.840000pt;}
.yc0{bottom:414.506667pt;}
.y37{bottom:414.766667pt;}
.y10a{bottom:415.840000pt;}
.y129{bottom:417.440000pt;}
.y22{bottom:422.773333pt;}
.y75{bottom:428.893333pt;}
.y97{bottom:429.173333pt;}
.y36{bottom:430.766667pt;}
.ybf{bottom:431.840000pt;}
.y151{bottom:432.626667pt;}
.y109{bottom:432.893333pt;}
.y21{bottom:440.093333pt;}
.y74{bottom:446.000000pt;}
.y96{bottom:446.266667pt;}
.y35{bottom:446.766667pt;}
.ybe{bottom:448.933333pt;}
.y108{bottom:450.000000pt;}
.y150{bottom:454.266667pt;}
.y20{bottom:457.466667pt;}
.y73{bottom:463.066667pt;}
.ybd{bottom:466.000000pt;}
.y95{bottom:466.800000pt;}
.y107{bottom:467.066667pt;}
.y1f{bottom:474.800000pt;}
.y14f{bottom:476.133333pt;}
.y72{bottom:480.133333pt;}
.y94{bottom:480.400000pt;}
.ybc{bottom:483.066667pt;}
.y106{bottom:484.133333pt;}
.y1e{bottom:492.133333pt;}
.y71{bottom:497.200000pt;}
.y93{bottom:497.466667pt;}
.y14e{bottom:497.733333pt;}
.ybb{bottom:504.133333pt;}
.y105{bottom:505.200000pt;}
.y1d{bottom:509.466667pt;}
.y128{bottom:511.333333pt;}
.y70{bottom:514.533333pt;}
.y14d{bottom:519.600000pt;}
.yba{bottom:521.200000pt;}
.y1c{bottom:526.800000pt;}
.y127{bottom:527.066667pt;}
.y6f{bottom:531.600000pt;}
.y104{bottom:538.533333pt;}
.y14c{bottom:541.200000pt;}
.y1b{bottom:544.133333pt;}
.y6e{bottom:548.666667pt;}
.y92{bottom:548.933333pt;}
.yb9{bottom:553.733333pt;}
.y103{bottom:555.600000pt;}
.y126{bottom:558.266667pt;}
.y1a{bottom:561.466667pt;}
.y14b{bottom:563.066667pt;}
.y6d{bottom:565.733333pt;}
.y91{bottom:566.000000pt;}
.yb8{bottom:569.466667pt;}
.y102{bottom:572.666667pt;}
.y125{bottom:573.733333pt;}
.y19{bottom:578.800000pt;}
.y6c{bottom:582.800000pt;}
.y90{bottom:583.066667pt;}
.y14a{bottom:584.666667pt;}
.y124{bottom:589.200000pt;}
.y101{bottom:589.733333pt;}
.y18{bottom:596.133333pt;}
.y6b{bottom:599.893333pt;}
.y8f{bottom:600.173333pt;}
.y149{bottom:606.560000pt;}
.y100{bottom:606.826667pt;}
.y17{bottom:613.506667pt;}
.y6a{bottom:616.960000pt;}
.y8e{bottom:617.226667pt;}
.y123{bottom:620.973333pt;}
.yff{bottom:623.893333pt;}
.y148{bottom:628.173333pt;}
.y16{bottom:630.826667pt;}
.y69{bottom:634.026667pt;}
.y8d{bottom:634.306667pt;}
.y122{bottom:638.026667pt;}
.yfe{bottom:640.960000pt;}
.y15{bottom:648.173333pt;}
.y147{bottom:650.026667pt;}
.y68{bottom:651.093333pt;}
.y121{bottom:655.106667pt;}
.y8c{bottom:655.360000pt;}
.yfd{bottom:658.026667pt;}
.y14{bottom:665.493333pt;}
.yea{bottom:668.160000pt;}
.y146{bottom:671.626667pt;}
.y67{bottom:672.173333pt;}
.y8b{bottom:672.426667pt;}
.yfc{bottom:675.093333pt;}
.yd8{bottom:681.066667pt;}
.y13{bottom:683.093333pt;}
.ye9{bottom:685.226667pt;}
.y66{bottom:689.226667pt;}
.yfb{bottom:692.173333pt;}
.y145{bottom:693.506667pt;}
.ye8{bottom:702.293333pt;}
.yd7{bottom:703.626667pt;}
.y8a{bottom:705.226667pt;}
.y120{bottom:706.293333pt;}
.yfa{bottom:709.226667pt;}
.y144{bottom:715.106667pt;}
.y12{bottom:716.173333pt;}
.ye7{bottom:719.626667pt;}
.y65{bottom:722.293333pt;}
.ye1{bottom:722.933333pt;}
.y11f{bottom:723.626667pt;}
.yf9{bottom:726.293333pt;}
.yd4{bottom:729.333333pt;}
.y11{bottom:732.960000pt;}
.y143{bottom:736.960000pt;}
.yda{bottom:737.600000pt;}
.y64{bottom:739.626667pt;}
.ye6{bottom:740.706667pt;}
.yf8{bottom:743.626667pt;}
.y10{bottom:747.400000pt;}
.y63{bottom:756.733333pt;}
.ye5{bottom:757.800000pt;}
.y142{bottom:758.600000pt;}
.yf7{bottom:760.733333pt;}
.yf{bottom:761.800000pt;}
.y62{bottom:773.800000pt;}
.ye{bottom:776.200000pt;}
.yf6{bottom:777.800000pt;}
.y11e{bottom:778.866667pt;}
.y141{bottom:780.466667pt;}
.yab{bottom:785.000000pt;}
.y61{bottom:790.866667pt;}
.ydd{bottom:793.066667pt;}
.yf5{bottom:794.866667pt;}
.yac{bottom:795.466667pt;}
.y140{bottom:802.066667pt;}
.ydf{bottom:805.266667pt;}
.yaa{bottom:806.333333pt;}
.y60{bottom:807.933333pt;}
.yf4{bottom:811.933333pt;}
.yd{bottom:813.000000pt;}
.y13f{bottom:823.933333pt;}
.y5f{bottom:825.000000pt;}
.yf3{bottom:829.000000pt;}
.yc{bottom:830.866667pt;}
.yae{bottom:831.400000pt;}
.y5e{bottom:842.066667pt;}
.y13e{bottom:845.533333pt;}
.yf2{bottom:846.066667pt;}
.y5d{bottom:859.133333pt;}
.yf1{bottom:863.133333pt;}
.y13d{bottom:867.400000pt;}
.yb{bottom:875.933333pt;}
.y5c{bottom:876.200000pt;}
.yf0{bottom:880.200000pt;}
.y13c{bottom:889.000000pt;}
.ye4{bottom:893.266667pt;}
.y5b{bottom:896.733333pt;}
.yef{bottom:897.293333pt;}
.ya{bottom:908.506667pt;}
.y5a{bottom:910.360000pt;}
.y13b{bottom:910.893333pt;}
.yaf{bottom:911.733333pt;}
.yee{bottom:914.373333pt;}
.yb7{bottom:915.426667pt;}
.y59{bottom:927.426667pt;}
.yed{bottom:931.426667pt;}
.y13a{bottom:932.506667pt;}
.yb6{bottom:932.760000pt;}
.y9{bottom:940.760000pt;}
.y58{bottom:944.760000pt;}
.yb1{bottom:947.173333pt;}
.yec{bottom:948.760000pt;}
.y139{bottom:954.360000pt;}
.y57{bottom:961.840000pt;}
.yb5{bottom:965.840000pt;}
.y8{bottom:970.106667pt;}
.y138{bottom:975.960000pt;}
.y56{bottom:978.893333pt;}
.yb4{bottom:982.893333pt;}
.y137{bottom:997.840000pt;}
.y55{bottom:999.960000pt;}
.y5{bottom:1002.893333pt;}
.y1{bottom:1008.506667pt;}
.y51{bottom:1017.293333pt;}
.y50{bottom:1034.360000pt;}
.y4f{bottom:1043.173333pt;}
.ha{height:20.414167pt;}
.h9{height:20.520833pt;}
.h14{height:25.117708pt;}
.h16{height:25.171042pt;}
.h17{height:25.221875pt;}
.h10{height:27.289062pt;}
.hf{height:27.380208pt;}
.h11{height:29.895833pt;}
.h12{height:31.187500pt;}
.h6{height:31.270833pt;}
.hb{height:31.291667pt;}
.hd{height:35.085938pt;}
.h1c{height:35.183398pt;}
.hc{height:35.203125pt;}
.h24{height:38.812500pt;}
.h5{height:38.984375pt;}
.h7{height:39.088542pt;}
.h4{height:39.114583pt;}
.h3{height:43.026042pt;}
.h15{height:44.947917pt;}
.h1b{height:45.600000pt;}
.h2{height:45.900000pt;}
.h1f{height:46.937500pt;}
.h20{height:48.266667pt;}
.h1e{height:50.400000pt;}
.h21{height:50.666667pt;}
.h22{height:52.000000pt;}
.h1d{height:54.578125pt;}
.h23{height:54.675586pt;}
.h18{height:54.818262pt;}
.h13{height:55.520833pt;}
.h8{height:70.406250pt;}
.h1a{height:77.869792pt;}
.h19{height:97.333333pt;}
.he{height:460.106667pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.wc{width:108.800000pt;}
.w4{width:112.600000pt;}
.wb{width:120.000000pt;}
.w9{width:133.600000pt;}
.w8{width:138.133333pt;}
.w7{width:138.666667pt;}
.wa{width:139.466667pt;}
.w6{width:160.866667pt;}
.w3{width:302.200000pt;}
.w2{width:331.066667pt;}
.w5{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:3.000000pt;}
.x19{left:8.466667pt;}
.x14{left:10.240000pt;}
.x11{left:11.266667pt;}
.x1{left:48.000000pt;}
.x7{left:72.566667pt;}
.x22{left:76.426667pt;}
.x1e{left:120.933333pt;}
.x17{left:124.466667pt;}
.x3{left:151.226667pt;}
.x9{left:205.133322pt;}
.x5{left:221.933322pt;}
.x6{left:222.999988pt;}
.x10{left:237.866667pt;}
.xb{left:245.933322pt;}
.xc{left:250.199988pt;}
.x1a{left:253.066667pt;}
.xd{left:269.973322pt;}
.x1d{left:274.666667pt;}
.x1c{left:287.559988pt;}
.x12{left:289.173322pt;}
.x13{left:341.066667pt;}
.x2{left:379.066667pt;}
.x15{left:383.333322pt;}
.x8{left:417.466655pt;}
.x1f{left:427.200000pt;}
.xe{left:434.533322pt;}
.x20{left:458.933333pt;}
.xf{left:461.733322pt;}
.x16{left:501.866667pt;}
.x21{left:503.373322pt;}
.x23{left:599.466667pt;}
.x18{left:605.333333pt;}
.xa{left:617.533322pt;}
.x24{left:637.799988pt;}
.x4{left:681.266667pt;}
}




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