
    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_6112710d2a19d429ca0e66bf.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_020d6e3f3b054f94a3c39c44.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_fc6b0307fae024716b507139.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.937012;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_ef7d57238187feb78433957b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_38719b6855e7d1c919374a3e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_cfc71e7b31b37e521264fa2f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_8d0873596a0b226af1e66dd5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_19a4cfb745df6ed44048f9e5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.117188;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_fc24df94da6b3ef969529189.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_b942e34cf9906a1cfe6bb806.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_80b1065a520e6699dfb5bfe0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.758789;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_f27b8450f809c61c72d8480b.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_c9af61a1b1274af2e96c1632.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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;}
.ls1d{letter-spacing:-1.440000px;}
.ls22{letter-spacing:-0.720000px;}
.ls21{letter-spacing:-0.576000px;}
.ls3{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.216000px;}
.ls1b{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.023040px;}
.ls1{letter-spacing:0.054720px;}
.ls20{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.245520px;}
.ls10{letter-spacing:0.288000px;}
.ls1e{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.432000px;}
.ls13{letter-spacing:0.720000px;}
.ls17{letter-spacing:0.792000px;}
.ls1c{letter-spacing:2.880000px;}
.ls9{letter-spacing:4.320000px;}
.lsa{letter-spacing:5.040000px;}
.ls11{letter-spacing:5.760000px;}
.ls1a{letter-spacing:12.960000px;}
.ls19{letter-spacing:23.040000px;}
.ls12{letter-spacing:25.920000px;}
.ls16{letter-spacing:29.520000px;}
.ls15{letter-spacing:84.384000px;}
.ls14{letter-spacing:104.544000px;}
.lse{letter-spacing:124.704000px;}
.lsc{letter-spacing:129.024000px;}
.ls7{letter-spacing:131.904000px;}
.ls8{letter-spacing:134.784000px;}
.ls1f{letter-spacing:182.304000px;}
.ls4{letter-spacing:188.064000px;}
.ls6{letter-spacing:188.784000px;}
.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;}
}
.ws5{word-spacing:-72.000000px;}
.ws0{word-spacing:-54.000000px;}
.wsb{word-spacing:-24.300000px;}
.ws1{word-spacing:-21.641760px;}
.ws7{word-spacing:-18.288000px;}
.ws9{word-spacing:-18.216000px;}
.ws4{word-spacing:-18.144000px;}
.wsc{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.928000px;}
.ws6{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.712000px;}
.ws2{word-spacing:0.000000px;}
._1b{margin-left:-2.286240px;}
._3{margin-left:-1.192320px;}
._0{width:1.053360px;}
._1{width:2.495280px;}
._1a{width:4.392000px;}
._6{width:5.520000px;}
._12{width:6.576000px;}
._b{width:7.584000px;}
._10{width:9.288000px;}
._11{width:10.656000px;}
._19{width:11.808000px;}
._1c{width:12.816000px;}
._c{width:14.040000px;}
._d{width:15.048000px;}
._f{width:16.600320px;}
._13{width:19.008000px;}
._7{width:20.592000px;}
._8{width:22.008000px;}
._20{width:23.496000px;}
._22{width:24.552000px;}
._21{width:25.728000px;}
._a{width:27.000000px;}
._9{width:28.264320px;}
._1f{width:29.320320px;}
._5{width:30.384000px;}
._14{width:31.706640px;}
._e{width:32.976000px;}
._1d{width:34.128000px;}
._1e{width:35.201280px;}
._23{width:36.576000px;}
._24{width:38.016000px;}
._15{width:39.600000px;}
._16{width:40.968000px;}
._2a{width:42.048000px;}
._2c{width:43.082640px;}
._28{width:44.568000px;}
._29{width:45.720000px;}
._27{width:46.728000px;}
._2b{width:49.320000px;}
._26{width:52.428000px;}
._17{width:58.824000px;}
._18{width:60.048000px;}
._2d{width:144.000000px;}
._2e{width:187.200000px;}
._2{width:351.956400px;}
._25{width:1158.492480px;}
._4{width:1195.212480px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,128);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.fs0{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y1b{bottom:57.636000px;}
.y1a{bottom:76.896000px;}
.y19{bottom:96.156000px;}
.y51{bottom:125.136000px;}
.y116{bottom:125.676000px;}
.yd3{bottom:128.196000px;}
.y95{bottom:129.456000px;}
.y10e{bottom:131.796000px;}
.yd8{bottom:137.196000px;}
.yb3{bottom:139.356000px;}
.y1a0{bottom:142.956000px;}
.y82{bottom:143.136000px;}
.y177{bottom:145.656000px;}
.y5f{bottom:146.196000px;}
.y16{bottom:148.896000px;}
.y33{bottom:150.510000px;}
.y1b3{bottom:150.870000px;}
.y11c{bottom:152.130000px;}
.yc3{bottom:154.470000px;}
.ya7{bottom:157.890000px;}
.y111{bottom:158.070000px;}
.yf4{bottom:163.290000px;}
.y13a{bottom:165.990000px;}
.y50{bottom:166.530000px;}
.y115{bottom:167.070000px;}
.yd2{bottom:169.590000px;}
.y94{bottom:170.850000px;}
.y117{bottom:173.010000px;}
.y10d{bottom:173.190000px;}
.y12e{bottom:177.150000px;}
.yd7{bottom:178.590000px;}
.y185{bottom:180.930000px;}
.y6e{bottom:184.350000px;}
.y81{bottom:184.530000px;}
.y176{bottom:187.050000px;}
.y5e{bottom:187.590000px;}
.y101{bottom:187.950000px;}
.y32{bottom:191.910000px;}
.y145{bottom:192.090000px;}
.y1ad{bottom:192.270000px;}
.y15{bottom:192.450000px;}
.y11d{bottom:193.350000px;}
.y11b{bottom:193.530000px;}
.yb2{bottom:195.690000px;}
.yc2{bottom:195.870000px;}
.ycb{bottom:199.290000px;}
.y110{bottom:199.470000px;}
.y18f{bottom:203.790000px;}
.yf3{bottom:204.870000px;}
.y149{bottom:207.210000px;}
.y139{bottom:207.390000px;}
.y114{bottom:208.470000px;}
.y1a2{bottom:210.810000px;}
.yd1{bottom:210.990000px;}
.ya6{bottom:214.230000px;}
.y10c{bottom:214.590000px;}
.y160{bottom:215.130000px;}
.yd6{bottom:219.990000px;}
.y184{bottom:222.330000px;}
.y6d{bottom:225.930000px;}
.y93{bottom:227.370000px;}
.y175{bottom:228.450000px;}
.y4f{bottom:228.990000px;}
.y14{bottom:229.350000px;}
.y100{bottom:229.530000px;}
.y12d{bottom:233.490000px;}
.y144{bottom:233.670000px;}
.y11a{bottom:234.930000px;}
.yc1{bottom:237.270000px;}
.yca{bottom:240.870000px;}
.y18e{bottom:245.010000px;}
.yf2{bottom:246.270000px;}
.y31{bottom:248.250000px;}
.y1b2{bottom:248.610000px;}
.y138{bottom:248.790000px;}
.y11e{bottom:249.690000px;}
.y113{bottom:249.870000px;}
.yb1{bottom:252.210000px;}
.yd0{bottom:252.390000px;}
.y10b{bottom:255.990000px;}
.y15f{bottom:258.870000px;}
.ye6{bottom:261.390000px;}
.y183{bottom:263.550000px;}
.y197{bottom:263.730000px;}
.y13{bottom:266.250000px;}
.y80{bottom:267.330000px;}
.y92{bottom:268.770000px;}
.y174{bottom:269.850000px;}
.y4e{bottom:270.390000px;}
.ya5{bottom:270.750000px;}
.yff{bottom:270.930000px;}
.y1ac{bottom:275.115000px;}
.y119{bottom:276.375000px;}
.yc0{bottom:278.715000px;}
.y6c{bottom:282.135000px;}
.yc9{bottom:282.315000px;}
.yf1{bottom:287.715000px;}
.y30{bottom:289.875000px;}
.y12c{bottom:290.055000px;}
.y143{bottom:290.235000px;}
.y112{bottom:291.315000px;}
.yb0{bottom:293.835000px;}
.y15e{bottom:295.635000px;}
.y10a{bottom:297.435000px;}
.y18d{bottom:301.575000px;}
.ye5{bottom:302.835000px;}
.y12{bottom:303.015000px;}
.y137{bottom:304.995000px;}
.y196{bottom:305.175000px;}
.y19f{bottom:308.595000px;}
.y7f{bottom:308.775000px;}
.y173{bottom:311.295000px;}
.y4d{bottom:311.835000px;}
.yfe{bottom:312.375000px;}
.y1ab{bottom:316.515000px;}
.y118{bottom:317.775000px;}
.y180{bottom:320.115000px;}
.y6b{bottom:323.715000px;}
.y91{bottom:325.155000px;}
.ya4{bottom:327.135000px;}
.yf0{bottom:329.115000px;}
.y2f{bottom:331.275000px;}
.y142{bottom:331.635000px;}
.y15d{bottom:332.535000px;}
.y5d{bottom:332.715000px;}
.y17b{bottom:335.055000px;}
.yaf{bottom:335.235000px;}
.y109{bottom:338.835000px;}
.y11{bottom:339.915000px;}
.y18c{bottom:342.795000px;}
.ye4{bottom:344.235000px;}
.y12b{bottom:346.395000px;}
.y136{bottom:346.575000px;}
.y1a1{bottom:349.995000px;}
.y7e{bottom:350.175000px;}
.y4c{bottom:353.235000px;}
.yfd{bottom:353.775000px;}
.y1aa{bottom:357.915000px;}
.y17f{bottom:361.515000px;}
.y6a{bottom:365.115000px;}
.y90{bottom:366.555000px;}
.y172{bottom:367.815000px;}
.y15c{bottom:369.255000px;}
.yef{bottom:370.515000px;}
.y2e{bottom:372.675000px;}
.y1b0{bottom:373.035000px;}
.y5c{bottom:374.115000px;}
.y19c{bottom:376.095000px;}
.y10{bottom:376.275000px;}
.yae{bottom:376.635000px;}
.y108{bottom:380.235000px;}
.ya3{bottom:383.475000px;}
.ye3{bottom:385.635000px;}
.y141{bottom:387.795000px;}
.y12a{bottom:387.975000px;}
.ycf{bottom:391.035000px;}
.y7d{bottom:391.575000px;}
.y4b{bottom:394.635000px;}
.yfc{bottom:395.175000px;}
.y18b{bottom:399.315000px;}
.y17e{bottom:402.915000px;}
.y15b{bottom:406.155000px;}
.y69{bottom:406.515000px;}
.y171{bottom:409.215000px;}
.yee{bottom:411.915000px;}
.y2d{bottom:413.895000px;}
.y1a9{bottom:414.255000px;}
.y5b{bottom:415.515000px;}
.ybf{bottom:418.035000px;}
.yf{bottom:420.555000px;}
.y1a3{bottom:421.455000px;}
.y107{bottom:421.635000px;}
.y8f{bottom:423.075000px;}
.ye2{bottom:427.035000px;}
.y148{bottom:429.195000px;}
.y129{bottom:429.375000px;}
.yad{bottom:432.795000px;}
.y7c{bottom:432.975000px;}
.y4a{bottom:436.035000px;}
.yfb{bottom:436.575000px;}
.ya2{bottom:439.995000px;}
.y15a{bottom:441.975000px;}
.y135{bottom:444.135000px;}
.y17d{bottom:444.315000px;}
.y68{bottom:447.915000px;}
.y170{bottom:450.615000px;}
.yed{bottom:453.315000px;}
.y2c{bottom:455.295000px;}
.y18a{bottom:455.655000px;}
.y5a{bottom:456.915000px;}
.ybe{bottom:459.435000px;}
.y106{bottom:463.035000px;}
.ye{bottom:465.735000px;}
.ye1{bottom:468.255000px;}
.y1a8{bottom:470.595000px;}
.y128{bottom:470.775000px;}
.y7b{bottom:474.375000px;}
.y49{bottom:477.435000px;}
.yfa{bottom:477.975000px;}
.y8e{bottom:479.595000px;}
.y159{bottom:484.635000px;}
.y1b1{bottom:485.535000px;}
.y134{bottom:485.715000px;}
.y67{bottom:489.315000px;}
.y16f{bottom:492.015000px;}
.yec{bottom:494.715000px;}
.ya1{bottom:496.335000px;}
.y2b{bottom:496.695000px;}
.y59{bottom:498.315000px;}
.y17c{bottom:500.655000px;}
.ybd{bottom:500.835000px;}
.y105{bottom:504.435000px;}
.y19b{bottom:511.995000px;}
.y140{bottom:512.175000px;}
.yd{bottom:512.895000px;}
.y7a{bottom:515.595000px;}
.yac{bottom:515.775000px;}
.y48{bottom:518.835000px;}
.yf9{bottom:519.375000px;}
.y8d{bottom:520.995000px;}
.ye0{bottom:524.775000px;}
.y127{bottom:526.935000px;}
.y133{bottom:527.115000px;}
.y158{bottom:527.835000px;}
.y66{bottom:530.715000px;}
.y16e{bottom:533.415000px;}
.yeb{bottom:536.115000px;}
.y2a{bottom:538.095000px;}
.y58{bottom:539.715000px;}
.y182{bottom:542.055000px;}
.ybc{bottom:542.235000px;}
.y104{bottom:545.835000px;}
.ya0{bottom:552.855000px;}
.y189{bottom:553.395000px;}
.yc{bottom:557.205000px;}
.yf8{bottom:560.805000px;}
.y8c{bottom:562.425000px;}
.ydf{bottom:566.205000px;}
.y13f{bottom:568.365000px;}
.y126{bottom:568.545000px;}
.y65{bottom:572.145000px;}
.y157{bottom:573.225000px;}
.y16d{bottom:574.845000px;}
.yea{bottom:577.545000px;}
.y29{bottom:579.525000px;}
.y47{bottom:581.145000px;}
.y132{bottom:582.945000px;}
.y147{bottom:583.305000px;}
.ybb{bottom:583.485000px;}
.y103{bottom:587.265000px;}
.y9f{bottom:594.285000px;}
.y17a{bottom:598.425000px;}
.yab{bottom:598.605000px;}
.yb{bottom:600.765000px;}
.yf7{bottom:602.205000px;}
.yde{bottom:607.605000px;}
.y1a7{bottom:609.765000px;}
.y125{bottom:609.945000px;}
.y11f{bottom:613.365000px;}
.y64{bottom:613.545000px;}
.y156{bottom:615.705000px;}
.y16c{bottom:616.065000px;}
.y8b{bottom:618.945000px;}
.y46{bottom:622.545000px;}
.y1b5{bottom:624.705000px;}
.yba{bottom:624.885000px;}
.ya{bottom:628.485000px;}
.y28{bottom:635.865000px;}
.y131{bottom:639.825000px;}
.y1a5{bottom:640.005000px;}
.y155{bottom:643.425000px;}
.yf6{bottom:643.605000px;}
.ydd{bottom:649.005000px;}
.y9e{bottom:650.625000px;}
.y124{bottom:651.345000px;}
.yaa{bottom:654.765000px;}
.y79{bottom:654.945000px;}
.y8a{bottom:660.345000px;}
.y45{bottom:663.945000px;}
.y13e{bottom:666.105000px;}
.y1a6{bottom:666.285000px;}
.y63{bottom:669.705000px;}
.yc8{bottom:669.885000px;}
.y9{bottom:670.965000px;}
.y16b{bottom:672.585000px;}
.y27{bottom:677.445000px;}
.y146{bottom:681.225000px;}
.yb9{bottom:681.405000px;}
.yf5{bottom:685.005000px;}
.y154{bottom:686.085000px;}
.ydc{bottom:690.405000px;}
.y9d{bottom:692.205000px;}
.y188{bottom:692.565000px;}
.y195{bottom:692.745000px;}
.y181{bottom:695.805000px;}
.y130{bottom:696.165000px;}
.y78{bottom:696.345000px;}
.y89{bottom:701.565000px;}
.ye9{bottom:701.745000px;}
.y44{bottom:705.345000px;}
.y123{bottom:707.505000px;}
.y13d{bottom:707.685000px;}
.y62{bottom:711.285000px;}
.y8{bottom:713.625000px;}
.y16a{bottom:713.985000px;}
.y26{bottom:718.845000px;}
.yb8{bottom:722.805000px;}
.y57{bottom:726.405000px;}
.y153{bottom:728.565000px;}
.ydb{bottom:731.805000px;}
.y19a{bottom:733.965000px;}
.y194{bottom:734.145000px;}
.y77{bottom:737.745000px;}
.y43{bottom:746.745000px;}
.y9c{bottom:748.545000px;}
.y122{bottom:749.085000px;}
.y61{bottom:752.685000px;}
.y169{bottom:755.385000px;}
.y7{bottom:756.285000px;}
.ye8{bottom:757.725000px;}
.y25{bottom:760.245000px;}
.y1b4{bottom:764.025000px;}
.y88{bottom:764.205000px;}
.y102{bottom:767.625000px;}
.y56{bottom:767.805000px;}
.y152{bottom:771.225000px;}
.yda{bottom:773.205000px;}
.y193{bottom:775.545000px;}
.y19e{bottom:778.965000px;}
.y76{bottom:779.145000px;}
.y42{bottom:788.145000px;}
.y9b{bottom:790.125000px;}
.y187{bottom:790.485000px;}
.yd5{bottom:793.545000px;}
.y60{bottom:794.085000px;}
.y168{bottom:796.785000px;}
.y6{bottom:798.765000px;}
.y24{bottom:801.645000px;}
.y121{bottom:805.065000px;}
.y87{bottom:805.425000px;}
.yb7{bottom:805.605000px;}
.y3b{bottom:808.485000px;}
.y55{bottom:809.205000px;}
.y151{bottom:813.885000px;}
.ye7{bottom:814.605000px;}
.y192{bottom:816.765000px;}
.y14b{bottom:820.365000px;}
.y75{bottom:820.545000px;}
.yd9{bottom:829.005000px;}
.y41{bottom:829.545000px;}
.y19d{bottom:835.125000px;}
.yc7{bottom:835.485000px;}
.y167{bottom:838.185000px;}
.y5{bottom:841.470000px;}
.y23{bottom:843.090000px;}
.y9a{bottom:846.690000px;}
.y1af{bottom:846.870000px;}
.yb6{bottom:847.050000px;}
.yd4{bottom:850.470000px;}
.y54{bottom:850.650000px;}
.y150{bottom:856.410000px;}
.yce{bottom:861.810000px;}
.y74{bottom:861.990000px;}
.y3a{bottom:870.990000px;}
.y191{bottom:872.970000px;}
.y12f{bottom:876.750000px;}
.yc6{bottom:876.930000px;}
.y166{bottom:879.630000px;}
.y22{bottom:884.490000px;}
.y13c{bottom:888.270000px;}
.yb5{bottom:888.450000px;}
.y4{bottom:890.070000px;}
.y53{bottom:892.050000px;}
.y99{bottom:903.030000px;}
.y73{bottom:903.390000px;}
.y14f{bottom:905.010000px;}
.y39{bottom:912.390000px;}
.ycd{bottom:917.970000px;}
.y120{bottom:918.150000px;}
.yc5{bottom:918.330000px;}
.y165{bottom:921.030000px;}
.y21{bottom:925.890000px;}
.y190{bottom:929.310000px;}
.y199{bottom:929.670000px;}
.y1ae{bottom:929.850000px;}
.y52{bottom:933.450000px;}
.yb4{bottom:944.250000px;}
.y13b{bottom:944.610000px;}
.y72{bottom:944.790000px;}
.y3{bottom:952.170000px;}
.y40{bottom:953.790000px;}
.y98{bottom:959.550000px;}
.yc4{bottom:959.730000px;}
.y164{bottom:962.430000px;}
.y14e{bottom:967.110000px;}
.y20{bottom:967.290000px;}
.ycc{bottom:974.670000px;}
.y38{bottom:974.850000px;}
.y198{bottom:985.650000px;}
.y186{bottom:986.010000px;}
.y86{bottom:986.190000px;}
.y3f{bottom:995.190000px;}
.y71{bottom:1000.950000px;}
.y10f{bottom:1001.130000px;}
.y163{bottom:1003.830000px;}
.y1f{bottom:1008.690000px;}
.y2{bottom:1014.090000px;}
.y14a{bottom:1016.070000px;}
.y37{bottom:1016.250000px;}
.ya9{bottom:1027.590000px;}
.y14d{bottom:1029.210000px;}
.y3e{bottom:1036.590000px;}
.y1a4{bottom:1042.170000px;}
.y85{bottom:1042.350000px;}
.y70{bottom:1042.530000px;}
.y162{bottom:1045.050000px;}
.y1e{bottom:1050.090000px;}
.y97{bottom:1057.470000px;}
.y36{bottom:1057.650000px;}
.y179{bottom:1068.810000px;}
.y3d{bottom:1077.990000px;}
.ya8{bottom:1083.390000px;}
.y84{bottom:1083.930000px;}
.y1{bottom:1091.310000px;}
.y6f{bottom:1098.870000px;}
.y35{bottom:1099.050000px;}
.y161{bottom:1101.210000px;}
.y1d{bottom:1105.890000px;}
.y14c{bottom:1106.430000px;}
.y178{bottom:1125.000000px;}
.y83{bottom:1139.940000px;}
.y3c{bottom:1140.120000px;}
.y96{bottom:1140.300000px;}
.y34{bottom:1140.480000px;}
.y1c{bottom:1141.740000px;}
.y18{bottom:1177.020000px;}
.y17{bottom:1196.100000px;}
.h8{height:43.506914px;}
.h9{height:50.294531px;}
.ha{height:57.636562px;}
.hd{height:64.546875px;}
.h11{height:64.898438px;}
.h7{height:65.010937px;}
.h10{height:70.628906px;}
.hc{height:70.664062px;}
.hb{height:72.562500px;}
.h5{height:72.708398px;}
.hf{height:74.953125px;}
.he{height:75.093750px;}
.h6{height:82.001953px;}
.h4{height:93.983203px;}
.h12{height:105.996094px;}
.h3{height:193.640625px;}
.h2{height:211.992188px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.656000px;}
.x2{left:142.056000px;}
.x17{left:169.050000px;}
.xb{left:180.750000px;}
.x13{left:182.730000px;}
.x12{left:188.490000px;}
.x6{left:192.450000px;}
.x18{left:195.150000px;}
.x11{left:207.750000px;}
.xe{left:215.310000px;}
.xd{left:220.350000px;}
.xc{left:225.390000px;}
.x3{left:233.490000px;}
.xf{left:234.750000px;}
.x10{left:260.850000px;}
.x14{left:273.270000px;}
.x19{left:289.650000px;}
.xa{left:294.150000px;}
.x16{left:298.515000px;}
.x9{left:324.975000px;}
.x4{left:340.095000px;}
.x7{left:398.775000px;}
.x8{left:408.855000px;}
.x15{left:422.535000px;}
.x5{left:446.475000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1d{letter-spacing:-1.280000pt;}
.ls22{letter-spacing:-0.640000pt;}
.ls21{letter-spacing:-0.512000pt;}
.ls3{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls1b{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.020480pt;}
.ls1{letter-spacing:0.048640pt;}
.ls20{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.218240pt;}
.ls10{letter-spacing:0.256000pt;}
.ls1e{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.384000pt;}
.ls13{letter-spacing:0.640000pt;}
.ls17{letter-spacing:0.704000pt;}
.ls1c{letter-spacing:2.560000pt;}
.ls9{letter-spacing:3.840000pt;}
.lsa{letter-spacing:4.480000pt;}
.ls11{letter-spacing:5.120000pt;}
.ls1a{letter-spacing:11.520000pt;}
.ls19{letter-spacing:20.480000pt;}
.ls12{letter-spacing:23.040000pt;}
.ls16{letter-spacing:26.240000pt;}
.ls15{letter-spacing:75.008000pt;}
.ls14{letter-spacing:92.928000pt;}
.lse{letter-spacing:110.848000pt;}
.lsc{letter-spacing:114.688000pt;}
.ls7{letter-spacing:117.248000pt;}
.ls8{letter-spacing:119.808000pt;}
.ls1f{letter-spacing:162.048000pt;}
.ls4{letter-spacing:167.168000pt;}
.ls6{letter-spacing:167.808000pt;}
.ws5{word-spacing:-64.000000pt;}
.ws0{word-spacing:-48.000000pt;}
.wsb{word-spacing:-21.600000pt;}
.ws1{word-spacing:-19.237120pt;}
.ws7{word-spacing:-16.256000pt;}
.ws9{word-spacing:-16.192000pt;}
.ws4{word-spacing:-16.128000pt;}
.wsc{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.936000pt;}
.ws6{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws2{word-spacing:0.000000pt;}
._1b{margin-left:-2.032213pt;}
._3{margin-left:-1.059840pt;}
._0{width:0.936320pt;}
._1{width:2.218027pt;}
._1a{width:3.904000pt;}
._6{width:4.906667pt;}
._12{width:5.845333pt;}
._b{width:6.741333pt;}
._10{width:8.256000pt;}
._11{width:9.472000pt;}
._19{width:10.496000pt;}
._1c{width:11.392000pt;}
._c{width:12.480000pt;}
._d{width:13.376000pt;}
._f{width:14.755840pt;}
._13{width:16.896000pt;}
._7{width:18.304000pt;}
._8{width:19.562667pt;}
._20{width:20.885333pt;}
._22{width:21.824000pt;}
._21{width:22.869333pt;}
._a{width:24.000000pt;}
._9{width:25.123840pt;}
._1f{width:26.062507pt;}
._5{width:27.008000pt;}
._14{width:28.183680pt;}
._e{width:29.312000pt;}
._1d{width:30.336000pt;}
._1e{width:31.290027pt;}
._23{width:32.512000pt;}
._24{width:33.792000pt;}
._15{width:35.200000pt;}
._16{width:36.416000pt;}
._2a{width:37.376000pt;}
._2c{width:38.295680pt;}
._28{width:39.616000pt;}
._29{width:40.640000pt;}
._27{width:41.536000pt;}
._2b{width:43.840000pt;}
._26{width:46.602667pt;}
._17{width:52.288000pt;}
._18{width:53.376000pt;}
._2d{width:128.000000pt;}
._2e{width:166.400000pt;}
._2{width:312.850133pt;}
._25{width:1029.771093pt;}
._4{width:1062.411093pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.fs0{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:51.232000pt;}
.y1a{bottom:68.352000pt;}
.y19{bottom:85.472000pt;}
.y51{bottom:111.232000pt;}
.y116{bottom:111.712000pt;}
.yd3{bottom:113.952000pt;}
.y95{bottom:115.072000pt;}
.y10e{bottom:117.152000pt;}
.yd8{bottom:121.952000pt;}
.yb3{bottom:123.872000pt;}
.y1a0{bottom:127.072000pt;}
.y82{bottom:127.232000pt;}
.y177{bottom:129.472000pt;}
.y5f{bottom:129.952000pt;}
.y16{bottom:132.352000pt;}
.y33{bottom:133.786667pt;}
.y1b3{bottom:134.106667pt;}
.y11c{bottom:135.226667pt;}
.yc3{bottom:137.306667pt;}
.ya7{bottom:140.346667pt;}
.y111{bottom:140.506667pt;}
.yf4{bottom:145.146667pt;}
.y13a{bottom:147.546667pt;}
.y50{bottom:148.026667pt;}
.y115{bottom:148.506667pt;}
.yd2{bottom:150.746667pt;}
.y94{bottom:151.866667pt;}
.y117{bottom:153.786667pt;}
.y10d{bottom:153.946667pt;}
.y12e{bottom:157.466667pt;}
.yd7{bottom:158.746667pt;}
.y185{bottom:160.826667pt;}
.y6e{bottom:163.866667pt;}
.y81{bottom:164.026667pt;}
.y176{bottom:166.266667pt;}
.y5e{bottom:166.746667pt;}
.y101{bottom:167.066667pt;}
.y32{bottom:170.586667pt;}
.y145{bottom:170.746667pt;}
.y1ad{bottom:170.906667pt;}
.y15{bottom:171.066667pt;}
.y11d{bottom:171.866667pt;}
.y11b{bottom:172.026667pt;}
.yb2{bottom:173.946667pt;}
.yc2{bottom:174.106667pt;}
.ycb{bottom:177.146667pt;}
.y110{bottom:177.306667pt;}
.y18f{bottom:181.146667pt;}
.yf3{bottom:182.106667pt;}
.y149{bottom:184.186667pt;}
.y139{bottom:184.346667pt;}
.y114{bottom:185.306667pt;}
.y1a2{bottom:187.386667pt;}
.yd1{bottom:187.546667pt;}
.ya6{bottom:190.426667pt;}
.y10c{bottom:190.746667pt;}
.y160{bottom:191.226667pt;}
.yd6{bottom:195.546667pt;}
.y184{bottom:197.626667pt;}
.y6d{bottom:200.826667pt;}
.y93{bottom:202.106667pt;}
.y175{bottom:203.066667pt;}
.y4f{bottom:203.546667pt;}
.y14{bottom:203.866667pt;}
.y100{bottom:204.026667pt;}
.y12d{bottom:207.546667pt;}
.y144{bottom:207.706667pt;}
.y11a{bottom:208.826667pt;}
.yc1{bottom:210.906667pt;}
.yca{bottom:214.106667pt;}
.y18e{bottom:217.786667pt;}
.yf2{bottom:218.906667pt;}
.y31{bottom:220.666667pt;}
.y1b2{bottom:220.986667pt;}
.y138{bottom:221.146667pt;}
.y11e{bottom:221.946667pt;}
.y113{bottom:222.106667pt;}
.yb1{bottom:224.186667pt;}
.yd0{bottom:224.346667pt;}
.y10b{bottom:227.546667pt;}
.y15f{bottom:230.106667pt;}
.ye6{bottom:232.346667pt;}
.y183{bottom:234.266667pt;}
.y197{bottom:234.426667pt;}
.y13{bottom:236.666667pt;}
.y80{bottom:237.626667pt;}
.y92{bottom:238.906667pt;}
.y174{bottom:239.866667pt;}
.y4e{bottom:240.346667pt;}
.ya5{bottom:240.666667pt;}
.yff{bottom:240.826667pt;}
.y1ac{bottom:244.546667pt;}
.y119{bottom:245.666667pt;}
.yc0{bottom:247.746667pt;}
.y6c{bottom:250.786667pt;}
.yc9{bottom:250.946667pt;}
.yf1{bottom:255.746667pt;}
.y30{bottom:257.666667pt;}
.y12c{bottom:257.826667pt;}
.y143{bottom:257.986667pt;}
.y112{bottom:258.946667pt;}
.yb0{bottom:261.186667pt;}
.y15e{bottom:262.786667pt;}
.y10a{bottom:264.386667pt;}
.y18d{bottom:268.066667pt;}
.ye5{bottom:269.186667pt;}
.y12{bottom:269.346667pt;}
.y137{bottom:271.106667pt;}
.y196{bottom:271.266667pt;}
.y19f{bottom:274.306667pt;}
.y7f{bottom:274.466667pt;}
.y173{bottom:276.706667pt;}
.y4d{bottom:277.186667pt;}
.yfe{bottom:277.666667pt;}
.y1ab{bottom:281.346667pt;}
.y118{bottom:282.466667pt;}
.y180{bottom:284.546667pt;}
.y6b{bottom:287.746667pt;}
.y91{bottom:289.026667pt;}
.ya4{bottom:290.786667pt;}
.yf0{bottom:292.546667pt;}
.y2f{bottom:294.466667pt;}
.y142{bottom:294.786667pt;}
.y15d{bottom:295.586667pt;}
.y5d{bottom:295.746667pt;}
.y17b{bottom:297.826667pt;}
.yaf{bottom:297.986667pt;}
.y109{bottom:301.186667pt;}
.y11{bottom:302.146667pt;}
.y18c{bottom:304.706667pt;}
.ye4{bottom:305.986667pt;}
.y12b{bottom:307.906667pt;}
.y136{bottom:308.066667pt;}
.y1a1{bottom:311.106667pt;}
.y7e{bottom:311.266667pt;}
.y4c{bottom:313.986667pt;}
.yfd{bottom:314.466667pt;}
.y1aa{bottom:318.146667pt;}
.y17f{bottom:321.346667pt;}
.y6a{bottom:324.546667pt;}
.y90{bottom:325.826667pt;}
.y172{bottom:326.946667pt;}
.y15c{bottom:328.226667pt;}
.yef{bottom:329.346667pt;}
.y2e{bottom:331.266667pt;}
.y1b0{bottom:331.586667pt;}
.y5c{bottom:332.546667pt;}
.y19c{bottom:334.306667pt;}
.y10{bottom:334.466667pt;}
.yae{bottom:334.786667pt;}
.y108{bottom:337.986667pt;}
.ya3{bottom:340.866667pt;}
.ye3{bottom:342.786667pt;}
.y141{bottom:344.706667pt;}
.y12a{bottom:344.866667pt;}
.ycf{bottom:347.586667pt;}
.y7d{bottom:348.066667pt;}
.y4b{bottom:350.786667pt;}
.yfc{bottom:351.266667pt;}
.y18b{bottom:354.946667pt;}
.y17e{bottom:358.146667pt;}
.y15b{bottom:361.026667pt;}
.y69{bottom:361.346667pt;}
.y171{bottom:363.746667pt;}
.yee{bottom:366.146667pt;}
.y2d{bottom:367.906667pt;}
.y1a9{bottom:368.226667pt;}
.y5b{bottom:369.346667pt;}
.ybf{bottom:371.586667pt;}
.yf{bottom:373.826667pt;}
.y1a3{bottom:374.626667pt;}
.y107{bottom:374.786667pt;}
.y8f{bottom:376.066667pt;}
.ye2{bottom:379.586667pt;}
.y148{bottom:381.506667pt;}
.y129{bottom:381.666667pt;}
.yad{bottom:384.706667pt;}
.y7c{bottom:384.866667pt;}
.y4a{bottom:387.586667pt;}
.yfb{bottom:388.066667pt;}
.ya2{bottom:391.106667pt;}
.y15a{bottom:392.866667pt;}
.y135{bottom:394.786667pt;}
.y17d{bottom:394.946667pt;}
.y68{bottom:398.146667pt;}
.y170{bottom:400.546667pt;}
.yed{bottom:402.946667pt;}
.y2c{bottom:404.706667pt;}
.y18a{bottom:405.026667pt;}
.y5a{bottom:406.146667pt;}
.ybe{bottom:408.386667pt;}
.y106{bottom:411.586667pt;}
.ye{bottom:413.986667pt;}
.ye1{bottom:416.226667pt;}
.y1a8{bottom:418.306667pt;}
.y128{bottom:418.466667pt;}
.y7b{bottom:421.666667pt;}
.y49{bottom:424.386667pt;}
.yfa{bottom:424.866667pt;}
.y8e{bottom:426.306667pt;}
.y159{bottom:430.786667pt;}
.y1b1{bottom:431.586667pt;}
.y134{bottom:431.746667pt;}
.y67{bottom:434.946667pt;}
.y16f{bottom:437.346667pt;}
.yec{bottom:439.746667pt;}
.ya1{bottom:441.186667pt;}
.y2b{bottom:441.506667pt;}
.y59{bottom:442.946667pt;}
.y17c{bottom:445.026667pt;}
.ybd{bottom:445.186667pt;}
.y105{bottom:448.386667pt;}
.y19b{bottom:455.106667pt;}
.y140{bottom:455.266667pt;}
.yd{bottom:455.906667pt;}
.y7a{bottom:458.306667pt;}
.yac{bottom:458.466667pt;}
.y48{bottom:461.186667pt;}
.yf9{bottom:461.666667pt;}
.y8d{bottom:463.106667pt;}
.ye0{bottom:466.466667pt;}
.y127{bottom:468.386667pt;}
.y133{bottom:468.546667pt;}
.y158{bottom:469.186667pt;}
.y66{bottom:471.746667pt;}
.y16e{bottom:474.146667pt;}
.yeb{bottom:476.546667pt;}
.y2a{bottom:478.306667pt;}
.y58{bottom:479.746667pt;}
.y182{bottom:481.826667pt;}
.ybc{bottom:481.986667pt;}
.y104{bottom:485.186667pt;}
.ya0{bottom:491.426667pt;}
.y189{bottom:491.906667pt;}
.yc{bottom:495.293333pt;}
.yf8{bottom:498.493333pt;}
.y8c{bottom:499.933333pt;}
.ydf{bottom:503.293333pt;}
.y13f{bottom:505.213333pt;}
.y126{bottom:505.373333pt;}
.y65{bottom:508.573333pt;}
.y157{bottom:509.533333pt;}
.y16d{bottom:510.973333pt;}
.yea{bottom:513.373333pt;}
.y29{bottom:515.133333pt;}
.y47{bottom:516.573333pt;}
.y132{bottom:518.173333pt;}
.y147{bottom:518.493333pt;}
.ybb{bottom:518.653333pt;}
.y103{bottom:522.013333pt;}
.y9f{bottom:528.253333pt;}
.y17a{bottom:531.933333pt;}
.yab{bottom:532.093333pt;}
.yb{bottom:534.013333pt;}
.yf7{bottom:535.293333pt;}
.yde{bottom:540.093333pt;}
.y1a7{bottom:542.013333pt;}
.y125{bottom:542.173333pt;}
.y11f{bottom:545.213333pt;}
.y64{bottom:545.373333pt;}
.y156{bottom:547.293333pt;}
.y16c{bottom:547.613333pt;}
.y8b{bottom:550.173333pt;}
.y46{bottom:553.373333pt;}
.y1b5{bottom:555.293333pt;}
.yba{bottom:555.453333pt;}
.ya{bottom:558.653333pt;}
.y28{bottom:565.213333pt;}
.y131{bottom:568.733333pt;}
.y1a5{bottom:568.893333pt;}
.y155{bottom:571.933333pt;}
.yf6{bottom:572.093333pt;}
.ydd{bottom:576.893333pt;}
.y9e{bottom:578.333333pt;}
.y124{bottom:578.973333pt;}
.yaa{bottom:582.013333pt;}
.y79{bottom:582.173333pt;}
.y8a{bottom:586.973333pt;}
.y45{bottom:590.173333pt;}
.y13e{bottom:592.093333pt;}
.y1a6{bottom:592.253333pt;}
.y63{bottom:595.293333pt;}
.yc8{bottom:595.453333pt;}
.y9{bottom:596.413333pt;}
.y16b{bottom:597.853333pt;}
.y27{bottom:602.173333pt;}
.y146{bottom:605.533333pt;}
.yb9{bottom:605.693333pt;}
.yf5{bottom:608.893333pt;}
.y154{bottom:609.853333pt;}
.ydc{bottom:613.693333pt;}
.y9d{bottom:615.293333pt;}
.y188{bottom:615.613333pt;}
.y195{bottom:615.773333pt;}
.y181{bottom:618.493333pt;}
.y130{bottom:618.813333pt;}
.y78{bottom:618.973333pt;}
.y89{bottom:623.613333pt;}
.ye9{bottom:623.773333pt;}
.y44{bottom:626.973333pt;}
.y123{bottom:628.893333pt;}
.y13d{bottom:629.053333pt;}
.y62{bottom:632.253333pt;}
.y8{bottom:634.333333pt;}
.y16a{bottom:634.653333pt;}
.y26{bottom:638.973333pt;}
.yb8{bottom:642.493333pt;}
.y57{bottom:645.693333pt;}
.y153{bottom:647.613333pt;}
.ydb{bottom:650.493333pt;}
.y19a{bottom:652.413333pt;}
.y194{bottom:652.573333pt;}
.y77{bottom:655.773333pt;}
.y43{bottom:663.773333pt;}
.y9c{bottom:665.373333pt;}
.y122{bottom:665.853333pt;}
.y61{bottom:669.053333pt;}
.y169{bottom:671.453333pt;}
.y7{bottom:672.253333pt;}
.ye8{bottom:673.533333pt;}
.y25{bottom:675.773333pt;}
.y1b4{bottom:679.133333pt;}
.y88{bottom:679.293333pt;}
.y102{bottom:682.333333pt;}
.y56{bottom:682.493333pt;}
.y152{bottom:685.533333pt;}
.yda{bottom:687.293333pt;}
.y193{bottom:689.373333pt;}
.y19e{bottom:692.413333pt;}
.y76{bottom:692.573333pt;}
.y42{bottom:700.573333pt;}
.y9b{bottom:702.333333pt;}
.y187{bottom:702.653333pt;}
.yd5{bottom:705.373333pt;}
.y60{bottom:705.853333pt;}
.y168{bottom:708.253333pt;}
.y6{bottom:710.013333pt;}
.y24{bottom:712.573333pt;}
.y121{bottom:715.613333pt;}
.y87{bottom:715.933333pt;}
.yb7{bottom:716.093333pt;}
.y3b{bottom:718.653333pt;}
.y55{bottom:719.293333pt;}
.y151{bottom:723.453333pt;}
.ye7{bottom:724.093333pt;}
.y192{bottom:726.013333pt;}
.y14b{bottom:729.213333pt;}
.y75{bottom:729.373333pt;}
.yd9{bottom:736.893333pt;}
.y41{bottom:737.373333pt;}
.y19d{bottom:742.333333pt;}
.yc7{bottom:742.653333pt;}
.y167{bottom:745.053333pt;}
.y5{bottom:747.973333pt;}
.y23{bottom:749.413333pt;}
.y9a{bottom:752.613333pt;}
.y1af{bottom:752.773333pt;}
.yb6{bottom:752.933333pt;}
.yd4{bottom:755.973333pt;}
.y54{bottom:756.133333pt;}
.y150{bottom:761.253333pt;}
.yce{bottom:766.053333pt;}
.y74{bottom:766.213333pt;}
.y3a{bottom:774.213333pt;}
.y191{bottom:775.973333pt;}
.y12f{bottom:779.333333pt;}
.yc6{bottom:779.493333pt;}
.y166{bottom:781.893333pt;}
.y22{bottom:786.213333pt;}
.y13c{bottom:789.573333pt;}
.yb5{bottom:789.733333pt;}
.y4{bottom:791.173333pt;}
.y53{bottom:792.933333pt;}
.y99{bottom:802.693333pt;}
.y73{bottom:803.013333pt;}
.y14f{bottom:804.453333pt;}
.y39{bottom:811.013333pt;}
.ycd{bottom:815.973333pt;}
.y120{bottom:816.133333pt;}
.yc5{bottom:816.293333pt;}
.y165{bottom:818.693333pt;}
.y21{bottom:823.013333pt;}
.y190{bottom:826.053333pt;}
.y199{bottom:826.373333pt;}
.y1ae{bottom:826.533333pt;}
.y52{bottom:829.733333pt;}
.yb4{bottom:839.333333pt;}
.y13b{bottom:839.653333pt;}
.y72{bottom:839.813333pt;}
.y3{bottom:846.373333pt;}
.y40{bottom:847.813333pt;}
.y98{bottom:852.933333pt;}
.yc4{bottom:853.093333pt;}
.y164{bottom:855.493333pt;}
.y14e{bottom:859.653333pt;}
.y20{bottom:859.813333pt;}
.ycc{bottom:866.373333pt;}
.y38{bottom:866.533333pt;}
.y198{bottom:876.133333pt;}
.y186{bottom:876.453333pt;}
.y86{bottom:876.613333pt;}
.y3f{bottom:884.613333pt;}
.y71{bottom:889.733333pt;}
.y10f{bottom:889.893333pt;}
.y163{bottom:892.293333pt;}
.y1f{bottom:896.613333pt;}
.y2{bottom:901.413333pt;}
.y14a{bottom:903.173333pt;}
.y37{bottom:903.333333pt;}
.ya9{bottom:913.413333pt;}
.y14d{bottom:914.853333pt;}
.y3e{bottom:921.413333pt;}
.y1a4{bottom:926.373333pt;}
.y85{bottom:926.533333pt;}
.y70{bottom:926.693333pt;}
.y162{bottom:928.933333pt;}
.y1e{bottom:933.413333pt;}
.y97{bottom:939.973333pt;}
.y36{bottom:940.133333pt;}
.y179{bottom:950.053333pt;}
.y3d{bottom:958.213333pt;}
.ya8{bottom:963.013333pt;}
.y84{bottom:963.493333pt;}
.y1{bottom:970.053333pt;}
.y6f{bottom:976.773333pt;}
.y35{bottom:976.933333pt;}
.y161{bottom:978.853333pt;}
.y1d{bottom:983.013333pt;}
.y14c{bottom:983.493333pt;}
.y178{bottom:1000.000000pt;}
.y83{bottom:1013.280000pt;}
.y3c{bottom:1013.440000pt;}
.y96{bottom:1013.600000pt;}
.y34{bottom:1013.760000pt;}
.y1c{bottom:1014.880000pt;}
.y18{bottom:1046.240000pt;}
.y17{bottom:1063.200000pt;}
.h8{height:38.672812pt;}
.h9{height:44.706250pt;}
.ha{height:51.232500pt;}
.hd{height:57.375000pt;}
.h11{height:57.687500pt;}
.h7{height:57.787500pt;}
.h10{height:62.781250pt;}
.hc{height:62.812500pt;}
.hb{height:64.500000pt;}
.h5{height:64.629688pt;}
.hf{height:66.625000pt;}
.he{height:66.750000pt;}
.h6{height:72.890625pt;}
.h4{height:83.540625pt;}
.h12{height:94.218750pt;}
.h3{height:172.125000pt;}
.h2{height:188.437500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.472000pt;}
.x2{left:126.272000pt;}
.x17{left:150.266667pt;}
.xb{left:160.666667pt;}
.x13{left:162.426667pt;}
.x12{left:167.546667pt;}
.x6{left:171.066667pt;}
.x18{left:173.466667pt;}
.x11{left:184.666667pt;}
.xe{left:191.386667pt;}
.xd{left:195.866667pt;}
.xc{left:200.346667pt;}
.x3{left:207.546667pt;}
.xf{left:208.666667pt;}
.x10{left:231.866667pt;}
.x14{left:242.906667pt;}
.x19{left:257.466667pt;}
.xa{left:261.466667pt;}
.x16{left:265.346667pt;}
.x9{left:288.866667pt;}
.x4{left:302.306667pt;}
.x7{left:354.466667pt;}
.x8{left:363.426667pt;}
.x15{left:375.586667pt;}
.x5{left:396.866667pt;}
}




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