
    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_e959e5efb986f88279538900.woff')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_e930a95f89395c86fd0cff29.woff')format("woff");}.ff2{font-family:ff2;line-height:1.097168;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_7ef86bf7725dc02f930cd74a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_4f50fdee3d4c78eb0b01c63a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_68cda42377df2b621f111c3d.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_42b3cacfb99ca5fd2e5816e3.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_618b5f32db1bdd10fde5eae8.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_85102d8824aab593833f68dc.woff')format("woff");}.ff8{font-family:ff8;line-height:0.964355;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_ae3de6782fe0004db869bba8.woff')format("woff");}.ff9{font-family:ff9;line-height:2.230469;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_4f31d9b1a4a18e4795729ded.woff')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_2ab989464bdd32b5a39bf8f8.woff')format("woff");}.ffb{font-family:ffb;line-height:2.230469;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_3029c839b51839a6a4b4d4df.woff')format("woff");}.ffc{font-family:ffc;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.vf{vertical-align:-27.000000px;}
.v7{vertical-align:-19.200000px;}
.v1{vertical-align:-14.400000px;}
.v6{vertical-align:-3.600000px;}
.v4{vertical-align:-2.340000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.400000px;}
.vd{vertical-align:5.400000px;}
.v2{vertical-align:14.400000px;}
.v3{vertical-align:16.800000px;}
.v11{vertical-align:26.400000px;}
.vb{vertical-align:36.000000px;}
.va{vertical-align:44.340000px;}
.v9{vertical-align:45.600000px;}
.ve{vertical-align:46.800000px;}
.vc{vertical-align:54.600000px;}
.v8{vertical-align:56.430000px;}
.v10{vertical-align:115.200000px;}
.ls8{letter-spacing:-3.000000px;}
.lsa{letter-spacing:-2.994000px;}
.ls7{letter-spacing:-2.988000px;}
.ls9{letter-spacing:-2.700000px;}
.ls3d{letter-spacing:-0.288000px;}
.ls19{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.168000px;}
.ls1a{letter-spacing:-0.129000px;}
.ls6{letter-spacing:-0.012000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.024000px;}
.ls1e{letter-spacing:0.060000px;}
.ls39{letter-spacing:0.072000px;}
.ls38{letter-spacing:0.084000px;}
.ls25{letter-spacing:0.090000px;}
.ls0{letter-spacing:0.120000px;}
.lse{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.150000px;}
.ls21{letter-spacing:0.180000px;}
.ls3c{letter-spacing:0.192000px;}
.ls11{letter-spacing:0.204000px;}
.lsb{letter-spacing:0.216000px;}
.ls35{letter-spacing:0.240000px;}
.ls20{letter-spacing:0.270000px;}
.ls2{letter-spacing:0.300000px;}
.ls17{letter-spacing:0.336000px;}
.ls47{letter-spacing:0.384000px;}
.lsf{letter-spacing:0.540000px;}
.ls3b{letter-spacing:0.600000px;}
.ls23{letter-spacing:0.720000px;}
.ls3e{letter-spacing:0.936000px;}
.ls2f{letter-spacing:1.056000px;}
.ls27{letter-spacing:1.086000px;}
.ls14{letter-spacing:1.200000px;}
.ls1c{letter-spacing:1.950000px;}
.ls43{letter-spacing:2.040000px;}
.ls2e{letter-spacing:2.064000px;}
.ls2a{letter-spacing:2.094000px;}
.ls2d{letter-spacing:2.499000px;}
.ls28{letter-spacing:2.871000px;}
.ls29{letter-spacing:3.411000px;}
.ls32{letter-spacing:3.600000px;}
.ls24{letter-spacing:4.317000px;}
.ls1f{letter-spacing:4.377000px;}
.ls1d{letter-spacing:4.659000px;}
.ls15{letter-spacing:4.899000px;}
.ls31{letter-spacing:5.400000px;}
.ls2b{letter-spacing:7.320000px;}
.ls30{letter-spacing:10.740000px;}
.ls46{letter-spacing:12.000000px;}
.ls26{letter-spacing:15.720000px;}
.ls37{letter-spacing:15.816000px;}
.ls2c{letter-spacing:15.852000px;}
.ls22{letter-spacing:16.320000px;}
.ls45{letter-spacing:16.392000px;}
.ls36{letter-spacing:16.560000px;}
.ls12{letter-spacing:18.000000px;}
.ls42{letter-spacing:19.131000px;}
.ls3a{letter-spacing:20.016000px;}
.ls34{letter-spacing:20.400000px;}
.ls44{letter-spacing:24.600000px;}
.ls3f{letter-spacing:24.699000px;}
.ls16{letter-spacing:24.759000px;}
.ls10{letter-spacing:25.260000px;}
.ls18{letter-spacing:30.000000px;}
.ls33{letter-spacing:31.800000px;}
.ls13{letter-spacing:34.200000px;}
.lsd{letter-spacing:36.000000px;}
.ls1b{letter-spacing:77.460000px;}
.ls41{letter-spacing:103.752000px;}
.ls40{letter-spacing:192.756000px;}
.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;}
}
.ws10{word-spacing:-31.692000px;}
.ws11{word-spacing:-18.192000px;}
.wsb{word-spacing:-18.024000px;}
.ws9{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.784000px;}
.wsd{word-spacing:-15.840000px;}
.ws15{word-spacing:-15.624000px;}
.ws12{word-spacing:-15.552000px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.524000px;}
.ws2{word-spacing:-13.512000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.488000px;}
.wse{word-spacing:-11.220000px;}
.wsf{word-spacing:-11.091000px;}
.ws6{word-spacing:-10.512000px;}
.ws8{word-spacing:-10.506000px;}
.ws7{word-spacing:-10.500000px;}
.wsa{word-spacing:0.000000px;}
.ws14{word-spacing:102.849000px;}
.ws13{word-spacing:103.509000px;}
.ws16{word-spacing:208.851000px;}
._58{margin-left:-19.416000px;}
._50{margin-left:-15.936000px;}
._54{margin-left:-10.476000px;}
._40{margin-left:-4.824000px;}
._2{margin-left:-3.240000px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._0{width:1.050000px;}
._7{width:2.664000px;}
._8{width:3.702000px;}
._6{width:4.896000px;}
._15{width:6.048000px;}
._9{width:7.272000px;}
._a{width:8.640000px;}
._27{width:10.134000px;}
._5{width:11.682000px;}
._4{width:13.146000px;}
._57{width:14.154000px;}
._36{width:15.192000px;}
._18{width:16.344000px;}
._4f{width:17.640000px;}
._f{width:19.152000px;}
._b{width:20.304000px;}
._c{width:21.744000px;}
._10{width:23.400000px;}
._45{width:24.402000px;}
._2d{width:25.488000px;}
._1d{width:26.568000px;}
._1e{width:27.648000px;}
._d{width:28.746000px;}
._e{width:29.748000px;}
._25{width:31.368000px;}
._3b{width:32.604000px;}
._2f{width:34.344000px;}
._30{width:35.586000px;}
._1b{width:36.720000px;}
._1c{width:38.376000px;}
._19{width:39.456000px;}
._1a{width:41.040000px;}
._29{width:42.696000px;}
._16{width:44.208000px;}
._17{width:45.288000px;}
._1f{width:47.088000px;}
._11{width:48.672000px;}
._33{width:49.680000px;}
._3f{width:51.006000px;}
._4a{width:52.344000px;}
._12{width:53.424000px;}
._13{width:54.720000px;}
._26{width:57.150000px;}
._4d{width:59.058000px;}
._37{width:60.480000px;}
._2a{width:62.136000px;}
._2b{width:63.576000px;}
._31{width:66.096000px;}
._3c{width:67.248000px;}
._3d{width:68.256000px;}
._3e{width:69.510000px;}
._2c{width:71.208000px;}
._14{width:72.936000px;}
._41{width:74.088000px;}
._5a{width:75.384000px;}
._55{width:76.392000px;}
._4c{width:77.592000px;}
._46{width:79.344000px;}
._47{width:80.784000px;}
._20{width:82.368000px;}
._21{width:83.880000px;}
._32{width:84.960000px;}
._44{width:86.112000px;}
._23{width:88.128000px;}
._24{width:89.496000px;}
._42{width:90.936000px;}
._43{width:92.160000px;}
._28{width:93.768000px;}
._51{width:94.920000px;}
._59{width:96.102000px;}
._48{width:100.008000px;}
._49{width:101.520000px;}
._3a{width:110.928000px;}
._2e{width:112.176000px;}
._22{width:113.904000px;}
._5b{width:115.440000px;}
._34{width:118.152000px;}
._52{width:137.592000px;}
._38{width:141.120000px;}
._39{width:142.272000px;}
._4b{width:163.368000px;}
._53{width:175.836000px;}
._35{width:196.488000px;}
._56{width:218.736000px;}
._4e{width:239.760000px;}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:51.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.100000px;}
.y2c{bottom:3.900000px;}
.y7{bottom:5.400000px;}
.yb{bottom:6.000000px;}
.yc{bottom:6.750000px;}
.ya{bottom:19.950000px;}
.y6{bottom:20.550000px;}
.y2b{bottom:24.600000px;}
.y9{bottom:33.900000px;}
.y5{bottom:36.000000px;}
.y2a{bottom:45.300000px;}
.y3{bottom:57.637500px;}
.y29{bottom:66.000000px;}
.y2{bottom:81.637500px;}
.y28{bottom:86.700000px;}
.y3d{bottom:106.987500px;}
.y27{bottom:107.400000px;}
.y61{bottom:112.237500px;}
.ybd{bottom:116.437500px;}
.ydd{bottom:120.037500px;}
.y72{bottom:122.437500px;}
.y6d{bottom:125.137500px;}
.ybc{bottom:125.437500px;}
.y26{bottom:128.100000px;}
.y3c{bottom:131.287500px;}
.ye8{bottom:131.437500px;}
.y94{bottom:136.537500px;}
.y60{bottom:136.687500px;}
.ydc{bottom:144.337500px;}
.y71{bottom:147.337500px;}
.y93{bottom:148.537500px;}
.y25{bottom:148.800000px;}
.y6c{bottom:149.587500px;}
.ybb{bottom:151.995000px;}
.y3b{bottom:155.745000px;}
.yba{bottom:160.995000px;}
.y5f{bottom:161.145000px;}
.ydb{bottom:168.795000px;}
.y24{bottom:169.500000px;}
.y70{bottom:172.245000px;}
.y6b{bottom:174.045000px;}
.y3a{bottom:180.195000px;}
.y5e{bottom:185.430000px;}
.y23{bottom:190.200000px;}
.yb9{bottom:191.295000px;}
.yda{bottom:193.245000px;}
.y6e{bottom:196.995000px;}
.y91{bottom:197.895000px;}
.y6a{bottom:198.345000px;}
.y6f{bottom:201.045000px;}
.y92{bottom:203.295000px;}
.y39{bottom:204.495000px;}
.ye7{bottom:204.645000px;}
.y5d{bottom:209.895000px;}
.y22{bottom:210.945000px;}
.yb8{bottom:215.745000px;}
.yd9{bottom:217.695000px;}
.y69{bottom:222.795000px;}
.y38{bottom:228.945000px;}
.y5c{bottom:230.445000px;}
.y90{bottom:234.195000px;}
.yb7{bottom:240.645000px;}
.yd8{bottom:241.995000px;}
.y68{bottom:247.245000px;}
.y37{bottom:253.380000px;}
.y8f{bottom:258.645000px;}
.yb6{bottom:265.395000px;}
.yd7{bottom:266.445000px;}
.y67{bottom:271.545000px;}
.y36{bottom:277.845000px;}
.y8e{bottom:285.345000px;}
.yb5{bottom:289.995000px;}
.yd6{bottom:290.895000px;}
.y66{bottom:295.995000px;}
.y35{bottom:302.145000px;}
.ye6{bottom:302.295000px;}
.y8d{bottom:310.245000px;}
.yb4{bottom:314.895000px;}
.yd5{bottom:315.195000px;}
.y65{bottom:320.445000px;}
.yeb{bottom:322.245000px;}
.y34{bottom:326.595000px;}
.y8c{bottom:334.830000px;}
.yb3{bottom:339.645000px;}
.y64{bottom:344.745000px;}
.yea{bottom:346.095000px;}
.ye5{bottom:347.130000px;}
.y33{bottom:351.045000px;}
.y8b{bottom:361.545000px;}
.yb2{bottom:363.945000px;}
.yd4{bottom:364.095000px;}
.y63{bottom:369.195000px;}
.ye9{bottom:369.795000px;}
.y32{bottom:375.330000px;}
.y8a{bottom:386.475000px;}
.yb1{bottom:388.575000px;}
.y62{bottom:393.675000px;}
.y31{bottom:399.825000px;}
.y89{bottom:411.225000px;}
.yd3{bottom:412.875000px;}
.yb0{bottom:413.475000px;}
.y5b{bottom:418.125000px;}
.y30{bottom:424.275000px;}
.y88{bottom:435.675000px;}
.yd2{bottom:437.325000px;}
.yaf{bottom:438.225000px;}
.y5a{bottom:442.425000px;}
.y2f{bottom:456.975000px;}
.y87{bottom:459.975000px;}
.yd1{bottom:461.775000px;}
.yae{bottom:462.825000px;}
.y59{bottom:466.875000px;}
.y2e{bottom:473.775000px;}
.y86{bottom:484.425000px;}
.yd0{bottom:486.375000px;}
.yad{bottom:487.725000px;}
.y58{bottom:491.325000px;}
.y85{bottom:508.875000px;}
.ycf{bottom:510.975000px;}
.yac{bottom:512.325000px;}
.y2d{bottom:515.175000px;}
.y57{bottom:515.625000px;}
.y84{bottom:533.325000px;}
.yce{bottom:535.425000px;}
.y21{bottom:535.875000px;}
.yab{bottom:536.925000px;}
.y56{bottom:540.075000px;}
.y83{bottom:557.625000px;}
.ycd{bottom:559.875000px;}
.yaa{bottom:561.675000px;}
.ye4{bottom:564.075000px;}
.y55{bottom:564.525000px;}
.y82{bottom:582.075000px;}
.ycc{bottom:584.475000px;}
.ya9{bottom:586.275000px;}
.ye3{bottom:588.375000px;}
.y54{bottom:588.975000px;}
.y81{bottom:606.525000px;}
.ycb{bottom:609.825000px;}
.ya8{bottom:611.175000px;}
.ye2{bottom:612.825000px;}
.y53{bottom:613.275000px;}
.y80{bottom:630.825000px;}
.ya7{bottom:635.775000px;}
.ye1{bottom:637.275000px;}
.y52{bottom:637.725000px;}
.yca{bottom:640.875000px;}
.yc8{bottom:645.075000px;}
.yc9{bottom:652.725000px;}
.y7f{bottom:655.275000px;}
.ya6{bottom:660.225000px;}
.ye0{bottom:661.725000px;}
.y51{bottom:662.175000px;}
.yc7{bottom:669.675000px;}
.y7e{bottom:679.725000px;}
.ya5{bottom:684.675000px;}
.ydf{bottom:686.025000px;}
.y50{bottom:686.475000px;}
.y7d{bottom:704.175000px;}
.yc6{bottom:705.525000px;}
.ya4{bottom:708.975000px;}
.yde{bottom:710.625000px;}
.y4f{bottom:710.925000px;}
.y7c{bottom:728.475000px;}
.yc5{bottom:729.975000px;}
.ya3{bottom:733.425000px;}
.y4e{bottom:735.375000px;}
.y7b{bottom:752.970000px;}
.yc4{bottom:754.470000px;}
.ya2{bottom:758.070000px;}
.y4d{bottom:759.870000px;}
.y20{bottom:767.220000px;}
.y7a{bottom:777.420000px;}
.yc3{bottom:778.920000px;}
.ya1{bottom:782.970000px;}
.y4c{bottom:784.170000px;}
.y1f{bottom:786.420000px;}
.y79{bottom:801.720000px;}
.yc2{bottom:803.220000px;}
.y1e{bottom:807.120000px;}
.ya0{bottom:807.870000px;}
.y4b{bottom:808.620000px;}
.y78{bottom:826.170000px;}
.y1d{bottom:827.820000px;}
.y9f{bottom:832.620000px;}
.y4a{bottom:833.070000px;}
.y1c{bottom:848.520000px;}
.y77{bottom:850.620000px;}
.yc1{bottom:852.570000px;}
.y9e{bottom:856.920000px;}
.y49{bottom:857.370000px;}
.y1b{bottom:869.220000px;}
.y76{bottom:875.070000px;}
.yc0{bottom:877.020000px;}
.y9d{bottom:881.370000px;}
.y48{bottom:881.820000px;}
.y1a{bottom:889.920000px;}
.y75{bottom:899.520000px;}
.ybf{bottom:901.320000px;}
.y9c{bottom:905.820000px;}
.y47{bottom:906.270000px;}
.y19{bottom:910.620000px;}
.ybe{bottom:921.870000px;}
.y74{bottom:924.270000px;}
.y9b{bottom:930.120000px;}
.y46{bottom:930.720000px;}
.y18{bottom:931.320000px;}
.y73{bottom:944.820000px;}
.y17{bottom:952.020000px;}
.y9a{bottom:954.570000px;}
.y45{bottom:955.020000px;}
.y16{bottom:972.720000px;}
.y99{bottom:979.020000px;}
.y44{bottom:979.470000px;}
.y15{bottom:993.420000px;}
.y98{bottom:1003.470000px;}
.y43{bottom:1003.920000px;}
.y14{bottom:1014.120000px;}
.y97{bottom:1027.770000px;}
.y42{bottom:1028.220000px;}
.y13{bottom:1034.820000px;}
.y96{bottom:1052.220000px;}
.y41{bottom:1052.670000px;}
.y12{bottom:1055.520000px;}
.y11{bottom:1076.220000px;}
.y95{bottom:1076.820000px;}
.y40{bottom:1077.120000px;}
.y10{bottom:1096.950000px;}
.y3f{bottom:1101.600000px;}
.y3e{bottom:1125.900000px;}
.yf{bottom:1129.650000px;}
.ye{bottom:1150.350000px;}
.y1{bottom:1176.900000px;}
.y4{bottom:1202.550000px;}
.y8{bottom:1207.800000px;}
.h8{height:17.887500px;}
.h10{height:20.700000px;}
.h11{height:41.400000px;}
.h6{height:45.300000px;}
.h3{height:48.600000px;}
.ha{height:50.800781px;}
.h13{height:51.996094px;}
.h7{height:52.998047px;}
.h5{height:55.942383px;}
.h4{height:58.886719px;}
.hf{height:63.457031px;}
.hd{height:64.775391px;}
.h9{height:65.645508px;}
.h12{height:70.628906px;}
.hc{height:70.664062px;}
.hb{height:72.562500px;}
.h1f{height:73.038574px;}
.h21{height:74.004654px;}
.h2{height:82.441406px;}
.h17{height:83.913281px;}
.h14{height:103.113281px;}
.h15{height:105.453281px;}
.h16{height:105.513281px;}
.h1e{height:108.513281px;}
.h1a{height:117.378574px;}
.h1c{height:117.438574px;}
.h1b{height:139.113281px;}
.h19{height:151.113281px;}
.h1d{height:157.713281px;}
.h18{height:161.943281px;}
.h20{height:218.313281px;}
.he{height:227.730000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.wa{width:4.800000px;}
.wb{width:4.950000px;}
.wc{width:143.880000px;}
.w6{width:178.350000px;}
.w5{width:262.995000px;}
.w3{width:282.495000px;}
.w4{width:297.780000px;}
.w9{width:735.105000px;}
.w7{width:745.770000px;}
.w8{width:750.270000px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x26{left:-3.000000px;}
.x0{left:0.000000px;}
.x4{left:6.900000px;}
.x9{left:12.435000px;}
.x7{left:16.200000px;}
.xe{left:17.295000px;}
.x20{left:20.887500px;}
.x5{left:22.200000px;}
.xb{left:32.100000px;}
.x3{left:42.599987px;}
.x37{left:69.449987px;}
.x21{left:95.699987px;}
.x10{left:99.749987px;}
.x1f{left:104.700000px;}
.xd{left:106.980000px;}
.x2c{left:120.599987px;}
.x6{left:121.687500px;}
.xa{left:128.130000px;}
.x2e{left:145.237487px;}
.x33{left:150.494987px;}
.x11{left:213.494987px;}
.x34{left:216.194987px;}
.x2d{left:222.344987px;}
.x35{left:242.444987px;}
.x2f{left:263.894987px;}
.x1{left:303.494987px;}
.x8{left:305.145000px;}
.x14{left:426.674987px;}
.x32{left:435.074987px;}
.x1b{left:436.574987px;}
.x2b{left:441.374987px;}
.x22{left:457.274987px;}
.x38{left:484.124987px;}
.x17{left:503.474987px;}
.x23{left:510.374987px;}
.x19{left:525.074987px;}
.x18{left:536.474987px;}
.x1e{left:576.074987px;}
.x1c{left:583.124987px;}
.x1d{left:597.524987px;}
.x1a{left:601.574987px;}
.x12{left:606.074987px;}
.x15{left:620.024987px;}
.xc{left:625.425000px;}
.x31{left:647.519987px;}
.x13{left:679.169987px;}
.xf{left:713.655000px;}
.x24{left:727.319973px;}
.x25{left:734.970000px;}
.x27{left:739.620000px;}
.x30{left:740.819987px;}
.x28{left:744.405000px;}
.x29{left:749.070000px;}
.x2a{left:754.604987px;}
.x2{left:819.119987px;}
.x16{left:850.619987px;}
.x36{left:857.819987px;}
@media print{
.vf{vertical-align:-24.000000pt;}
.v7{vertical-align:-17.066667pt;}
.v1{vertical-align:-12.800000pt;}
.v6{vertical-align:-3.200000pt;}
.v4{vertical-align:-2.080000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.133333pt;}
.vd{vertical-align:4.800000pt;}
.v2{vertical-align:12.800000pt;}
.v3{vertical-align:14.933333pt;}
.v11{vertical-align:23.466667pt;}
.vb{vertical-align:32.000000pt;}
.va{vertical-align:39.413333pt;}
.v9{vertical-align:40.533333pt;}
.ve{vertical-align:41.600000pt;}
.vc{vertical-align:48.533333pt;}
.v8{vertical-align:50.160000pt;}
.v10{vertical-align:102.400000pt;}
.ls8{letter-spacing:-2.666667pt;}
.lsa{letter-spacing:-2.661333pt;}
.ls7{letter-spacing:-2.656000pt;}
.ls9{letter-spacing:-2.400000pt;}
.ls3d{letter-spacing:-0.256000pt;}
.ls19{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.149333pt;}
.ls1a{letter-spacing:-0.114667pt;}
.ls6{letter-spacing:-0.010667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.021333pt;}
.ls1e{letter-spacing:0.053333pt;}
.ls39{letter-spacing:0.064000pt;}
.ls38{letter-spacing:0.074667pt;}
.ls25{letter-spacing:0.080000pt;}
.ls0{letter-spacing:0.106667pt;}
.lse{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.133333pt;}
.ls21{letter-spacing:0.160000pt;}
.ls3c{letter-spacing:0.170667pt;}
.ls11{letter-spacing:0.181333pt;}
.lsb{letter-spacing:0.192000pt;}
.ls35{letter-spacing:0.213333pt;}
.ls20{letter-spacing:0.240000pt;}
.ls2{letter-spacing:0.266667pt;}
.ls17{letter-spacing:0.298667pt;}
.ls47{letter-spacing:0.341333pt;}
.lsf{letter-spacing:0.480000pt;}
.ls3b{letter-spacing:0.533333pt;}
.ls23{letter-spacing:0.640000pt;}
.ls3e{letter-spacing:0.832000pt;}
.ls2f{letter-spacing:0.938667pt;}
.ls27{letter-spacing:0.965333pt;}
.ls14{letter-spacing:1.066667pt;}
.ls1c{letter-spacing:1.733333pt;}
.ls43{letter-spacing:1.813333pt;}
.ls2e{letter-spacing:1.834667pt;}
.ls2a{letter-spacing:1.861333pt;}
.ls2d{letter-spacing:2.221333pt;}
.ls28{letter-spacing:2.552000pt;}
.ls29{letter-spacing:3.032000pt;}
.ls32{letter-spacing:3.200000pt;}
.ls24{letter-spacing:3.837333pt;}
.ls1f{letter-spacing:3.890667pt;}
.ls1d{letter-spacing:4.141333pt;}
.ls15{letter-spacing:4.354667pt;}
.ls31{letter-spacing:4.800000pt;}
.ls2b{letter-spacing:6.506667pt;}
.ls30{letter-spacing:9.546667pt;}
.ls46{letter-spacing:10.666667pt;}
.ls26{letter-spacing:13.973333pt;}
.ls37{letter-spacing:14.058667pt;}
.ls2c{letter-spacing:14.090667pt;}
.ls22{letter-spacing:14.506667pt;}
.ls45{letter-spacing:14.570667pt;}
.ls36{letter-spacing:14.720000pt;}
.ls12{letter-spacing:16.000000pt;}
.ls42{letter-spacing:17.005333pt;}
.ls3a{letter-spacing:17.792000pt;}
.ls34{letter-spacing:18.133333pt;}
.ls44{letter-spacing:21.866667pt;}
.ls3f{letter-spacing:21.954667pt;}
.ls16{letter-spacing:22.008000pt;}
.ls10{letter-spacing:22.453333pt;}
.ls18{letter-spacing:26.666667pt;}
.ls33{letter-spacing:28.266667pt;}
.ls13{letter-spacing:30.400000pt;}
.lsd{letter-spacing:32.000000pt;}
.ls1b{letter-spacing:68.853333pt;}
.ls41{letter-spacing:92.224000pt;}
.ls40{letter-spacing:171.338667pt;}
.ws10{word-spacing:-28.170667pt;}
.ws11{word-spacing:-16.170667pt;}
.wsb{word-spacing:-16.021333pt;}
.ws9{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.808000pt;}
.wsd{word-spacing:-14.080000pt;}
.ws15{word-spacing:-13.888000pt;}
.ws12{word-spacing:-13.824000pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.021333pt;}
.ws2{word-spacing:-12.010667pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.989333pt;}
.wse{word-spacing:-9.973333pt;}
.wsf{word-spacing:-9.858667pt;}
.ws6{word-spacing:-9.344000pt;}
.ws8{word-spacing:-9.338667pt;}
.ws7{word-spacing:-9.333333pt;}
.wsa{word-spacing:0.000000pt;}
.ws14{word-spacing:91.421333pt;}
.ws13{word-spacing:92.008000pt;}
.ws16{word-spacing:185.645333pt;}
._58{margin-left:-17.258667pt;}
._50{margin-left:-14.165333pt;}
._54{margin-left:-9.312000pt;}
._40{margin-left:-4.288000pt;}
._2{margin-left:-2.880000pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._0{width:0.933333pt;}
._7{width:2.368000pt;}
._8{width:3.290667pt;}
._6{width:4.352000pt;}
._15{width:5.376000pt;}
._9{width:6.464000pt;}
._a{width:7.680000pt;}
._27{width:9.008000pt;}
._5{width:10.384000pt;}
._4{width:11.685333pt;}
._57{width:12.581333pt;}
._36{width:13.504000pt;}
._18{width:14.528000pt;}
._4f{width:15.680000pt;}
._f{width:17.024000pt;}
._b{width:18.048000pt;}
._c{width:19.328000pt;}
._10{width:20.800000pt;}
._45{width:21.690667pt;}
._2d{width:22.656000pt;}
._1d{width:23.616000pt;}
._1e{width:24.576000pt;}
._d{width:25.552000pt;}
._e{width:26.442667pt;}
._25{width:27.882667pt;}
._3b{width:28.981333pt;}
._2f{width:30.528000pt;}
._30{width:31.632000pt;}
._1b{width:32.640000pt;}
._1c{width:34.112000pt;}
._19{width:35.072000pt;}
._1a{width:36.480000pt;}
._29{width:37.952000pt;}
._16{width:39.296000pt;}
._17{width:40.256000pt;}
._1f{width:41.856000pt;}
._11{width:43.264000pt;}
._33{width:44.160000pt;}
._3f{width:45.338667pt;}
._4a{width:46.528000pt;}
._12{width:47.488000pt;}
._13{width:48.640000pt;}
._26{width:50.800000pt;}
._4d{width:52.496000pt;}
._37{width:53.760000pt;}
._2a{width:55.232000pt;}
._2b{width:56.512000pt;}
._31{width:58.752000pt;}
._3c{width:59.776000pt;}
._3d{width:60.672000pt;}
._3e{width:61.786667pt;}
._2c{width:63.296000pt;}
._14{width:64.832000pt;}
._41{width:65.856000pt;}
._5a{width:67.008000pt;}
._55{width:67.904000pt;}
._4c{width:68.970667pt;}
._46{width:70.528000pt;}
._47{width:71.808000pt;}
._20{width:73.216000pt;}
._21{width:74.560000pt;}
._32{width:75.520000pt;}
._44{width:76.544000pt;}
._23{width:78.336000pt;}
._24{width:79.552000pt;}
._42{width:80.832000pt;}
._43{width:81.920000pt;}
._28{width:83.349333pt;}
._51{width:84.373333pt;}
._59{width:85.424000pt;}
._48{width:88.896000pt;}
._49{width:90.240000pt;}
._3a{width:98.602667pt;}
._2e{width:99.712000pt;}
._22{width:101.248000pt;}
._5b{width:102.613333pt;}
._34{width:105.024000pt;}
._52{width:122.304000pt;}
._38{width:125.440000pt;}
._39{width:126.464000pt;}
._4b{width:145.216000pt;}
._53{width:156.298667pt;}
._35{width:174.656000pt;}
._56{width:194.432000pt;}
._4e{width:213.120000pt;}
.fs6{font-size:45.333333pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:1.866667pt;}
.y2c{bottom:3.466667pt;}
.y7{bottom:4.800000pt;}
.yb{bottom:5.333333pt;}
.yc{bottom:6.000000pt;}
.ya{bottom:17.733333pt;}
.y6{bottom:18.266667pt;}
.y2b{bottom:21.866667pt;}
.y9{bottom:30.133333pt;}
.y5{bottom:32.000000pt;}
.y2a{bottom:40.266667pt;}
.y3{bottom:51.233333pt;}
.y29{bottom:58.666667pt;}
.y2{bottom:72.566667pt;}
.y28{bottom:77.066667pt;}
.y3d{bottom:95.100000pt;}
.y27{bottom:95.466667pt;}
.y61{bottom:99.766667pt;}
.ybd{bottom:103.500000pt;}
.ydd{bottom:106.700000pt;}
.y72{bottom:108.833333pt;}
.y6d{bottom:111.233333pt;}
.ybc{bottom:111.500000pt;}
.y26{bottom:113.866667pt;}
.y3c{bottom:116.700000pt;}
.ye8{bottom:116.833333pt;}
.y94{bottom:121.366667pt;}
.y60{bottom:121.500000pt;}
.ydc{bottom:128.300000pt;}
.y71{bottom:130.966667pt;}
.y93{bottom:132.033333pt;}
.y25{bottom:132.266667pt;}
.y6c{bottom:132.966667pt;}
.ybb{bottom:135.106667pt;}
.y3b{bottom:138.440000pt;}
.yba{bottom:143.106667pt;}
.y5f{bottom:143.240000pt;}
.ydb{bottom:150.040000pt;}
.y24{bottom:150.666667pt;}
.y70{bottom:153.106667pt;}
.y6b{bottom:154.706667pt;}
.y3a{bottom:160.173333pt;}
.y5e{bottom:164.826667pt;}
.y23{bottom:169.066667pt;}
.yb9{bottom:170.040000pt;}
.yda{bottom:171.773333pt;}
.y6e{bottom:175.106667pt;}
.y91{bottom:175.906667pt;}
.y6a{bottom:176.306667pt;}
.y6f{bottom:178.706667pt;}
.y92{bottom:180.706667pt;}
.y39{bottom:181.773333pt;}
.ye7{bottom:181.906667pt;}
.y5d{bottom:186.573333pt;}
.y22{bottom:187.506667pt;}
.yb8{bottom:191.773333pt;}
.yd9{bottom:193.506667pt;}
.y69{bottom:198.040000pt;}
.y38{bottom:203.506667pt;}
.y5c{bottom:204.840000pt;}
.y90{bottom:208.173333pt;}
.yb7{bottom:213.906667pt;}
.yd8{bottom:215.106667pt;}
.y68{bottom:219.773333pt;}
.y37{bottom:225.226667pt;}
.y8f{bottom:229.906667pt;}
.yb6{bottom:235.906667pt;}
.yd7{bottom:236.840000pt;}
.y67{bottom:241.373333pt;}
.y36{bottom:246.973333pt;}
.y8e{bottom:253.640000pt;}
.yb5{bottom:257.773333pt;}
.yd6{bottom:258.573333pt;}
.y66{bottom:263.106667pt;}
.y35{bottom:268.573333pt;}
.ye6{bottom:268.706667pt;}
.y8d{bottom:275.773333pt;}
.yb4{bottom:279.906667pt;}
.yd5{bottom:280.173333pt;}
.y65{bottom:284.840000pt;}
.yeb{bottom:286.440000pt;}
.y34{bottom:290.306667pt;}
.y8c{bottom:297.626667pt;}
.yb3{bottom:301.906667pt;}
.y64{bottom:306.440000pt;}
.yea{bottom:307.640000pt;}
.ye5{bottom:308.560000pt;}
.y33{bottom:312.040000pt;}
.y8b{bottom:321.373333pt;}
.yb2{bottom:323.506667pt;}
.yd4{bottom:323.640000pt;}
.y63{bottom:328.173333pt;}
.ye9{bottom:328.706667pt;}
.y32{bottom:333.626667pt;}
.y8a{bottom:343.533333pt;}
.yb1{bottom:345.400000pt;}
.y62{bottom:349.933333pt;}
.y31{bottom:355.400000pt;}
.y89{bottom:365.533333pt;}
.yd3{bottom:367.000000pt;}
.yb0{bottom:367.533333pt;}
.y5b{bottom:371.666667pt;}
.y30{bottom:377.133333pt;}
.y88{bottom:387.266667pt;}
.yd2{bottom:388.733333pt;}
.yaf{bottom:389.533333pt;}
.y5a{bottom:393.266667pt;}
.y2f{bottom:406.200000pt;}
.y87{bottom:408.866667pt;}
.yd1{bottom:410.466667pt;}
.yae{bottom:411.400000pt;}
.y59{bottom:415.000000pt;}
.y2e{bottom:421.133333pt;}
.y86{bottom:430.600000pt;}
.yd0{bottom:432.333333pt;}
.yad{bottom:433.533333pt;}
.y58{bottom:436.733333pt;}
.y85{bottom:452.333333pt;}
.ycf{bottom:454.200000pt;}
.yac{bottom:455.400000pt;}
.y2d{bottom:457.933333pt;}
.y57{bottom:458.333333pt;}
.y84{bottom:474.066667pt;}
.yce{bottom:475.933333pt;}
.y21{bottom:476.333333pt;}
.yab{bottom:477.266667pt;}
.y56{bottom:480.066667pt;}
.y83{bottom:495.666667pt;}
.ycd{bottom:497.666667pt;}
.yaa{bottom:499.266667pt;}
.ye4{bottom:501.400000pt;}
.y55{bottom:501.800000pt;}
.y82{bottom:517.400000pt;}
.ycc{bottom:519.533333pt;}
.ya9{bottom:521.133333pt;}
.ye3{bottom:523.000000pt;}
.y54{bottom:523.533333pt;}
.y81{bottom:539.133333pt;}
.ycb{bottom:542.066667pt;}
.ya8{bottom:543.266667pt;}
.ye2{bottom:544.733333pt;}
.y53{bottom:545.133333pt;}
.y80{bottom:560.733333pt;}
.ya7{bottom:565.133333pt;}
.ye1{bottom:566.466667pt;}
.y52{bottom:566.866667pt;}
.yca{bottom:569.666667pt;}
.yc8{bottom:573.400000pt;}
.yc9{bottom:580.200000pt;}
.y7f{bottom:582.466667pt;}
.ya6{bottom:586.866667pt;}
.ye0{bottom:588.200000pt;}
.y51{bottom:588.600000pt;}
.yc7{bottom:595.266667pt;}
.y7e{bottom:604.200000pt;}
.ya5{bottom:608.600000pt;}
.ydf{bottom:609.800000pt;}
.y50{bottom:610.200000pt;}
.y7d{bottom:625.933333pt;}
.yc6{bottom:627.133333pt;}
.ya4{bottom:630.200000pt;}
.yde{bottom:631.666667pt;}
.y4f{bottom:631.933333pt;}
.y7c{bottom:647.533333pt;}
.yc5{bottom:648.866667pt;}
.ya3{bottom:651.933333pt;}
.y4e{bottom:653.666667pt;}
.y7b{bottom:669.306667pt;}
.yc4{bottom:670.640000pt;}
.ya2{bottom:673.840000pt;}
.y4d{bottom:675.440000pt;}
.y20{bottom:681.973333pt;}
.y7a{bottom:691.040000pt;}
.yc3{bottom:692.373333pt;}
.ya1{bottom:695.973333pt;}
.y4c{bottom:697.040000pt;}
.y1f{bottom:699.040000pt;}
.y79{bottom:712.640000pt;}
.yc2{bottom:713.973333pt;}
.y1e{bottom:717.440000pt;}
.ya0{bottom:718.106667pt;}
.y4b{bottom:718.773333pt;}
.y78{bottom:734.373333pt;}
.y1d{bottom:735.840000pt;}
.y9f{bottom:740.106667pt;}
.y4a{bottom:740.506667pt;}
.y1c{bottom:754.240000pt;}
.y77{bottom:756.106667pt;}
.yc1{bottom:757.840000pt;}
.y9e{bottom:761.706667pt;}
.y49{bottom:762.106667pt;}
.y1b{bottom:772.640000pt;}
.y76{bottom:777.840000pt;}
.yc0{bottom:779.573333pt;}
.y9d{bottom:783.440000pt;}
.y48{bottom:783.840000pt;}
.y1a{bottom:791.040000pt;}
.y75{bottom:799.573333pt;}
.ybf{bottom:801.173333pt;}
.y9c{bottom:805.173333pt;}
.y47{bottom:805.573333pt;}
.y19{bottom:809.440000pt;}
.ybe{bottom:819.440000pt;}
.y74{bottom:821.573333pt;}
.y9b{bottom:826.773333pt;}
.y46{bottom:827.306667pt;}
.y18{bottom:827.840000pt;}
.y73{bottom:839.840000pt;}
.y17{bottom:846.240000pt;}
.y9a{bottom:848.506667pt;}
.y45{bottom:848.906667pt;}
.y16{bottom:864.640000pt;}
.y99{bottom:870.240000pt;}
.y44{bottom:870.640000pt;}
.y15{bottom:883.040000pt;}
.y98{bottom:891.973333pt;}
.y43{bottom:892.373333pt;}
.y14{bottom:901.440000pt;}
.y97{bottom:913.573333pt;}
.y42{bottom:913.973333pt;}
.y13{bottom:919.840000pt;}
.y96{bottom:935.306667pt;}
.y41{bottom:935.706667pt;}
.y12{bottom:938.240000pt;}
.y11{bottom:956.640000pt;}
.y95{bottom:957.173333pt;}
.y40{bottom:957.440000pt;}
.y10{bottom:975.066667pt;}
.y3f{bottom:979.200000pt;}
.y3e{bottom:1000.800000pt;}
.yf{bottom:1004.133333pt;}
.ye{bottom:1022.533333pt;}
.y1{bottom:1046.133333pt;}
.y4{bottom:1068.933333pt;}
.y8{bottom:1073.600000pt;}
.h8{height:15.900000pt;}
.h10{height:18.400000pt;}
.h11{height:36.800000pt;}
.h6{height:40.266667pt;}
.h3{height:43.200000pt;}
.ha{height:45.156250pt;}
.h13{height:46.218750pt;}
.h7{height:47.109375pt;}
.h5{height:49.726562pt;}
.h4{height:52.343750pt;}
.hf{height:56.406250pt;}
.hd{height:57.578125pt;}
.h9{height:58.351562pt;}
.h12{height:62.781250pt;}
.hc{height:62.812500pt;}
.hb{height:64.500000pt;}
.h1f{height:64.923177pt;}
.h21{height:65.781915pt;}
.h2{height:73.281250pt;}
.h17{height:74.589583pt;}
.h14{height:91.656250pt;}
.h15{height:93.736250pt;}
.h16{height:93.789583pt;}
.h1e{height:96.456250pt;}
.h1a{height:104.336510pt;}
.h1c{height:104.389844pt;}
.h1b{height:123.656250pt;}
.h19{height:134.322917pt;}
.h1d{height:140.189583pt;}
.h18{height:143.949583pt;}
.h20{height:194.056250pt;}
.he{height:202.426667pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.wa{width:4.266667pt;}
.wb{width:4.400000pt;}
.wc{width:127.893333pt;}
.w6{width:158.533333pt;}
.w5{width:233.773333pt;}
.w3{width:251.106667pt;}
.w4{width:264.693333pt;}
.w9{width:653.426667pt;}
.w7{width:662.906667pt;}
.w8{width:666.906667pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x26{left:-2.666667pt;}
.x0{left:0.000000pt;}
.x4{left:6.133333pt;}
.x9{left:11.053333pt;}
.x7{left:14.400000pt;}
.xe{left:15.373333pt;}
.x20{left:18.566667pt;}
.x5{left:19.733333pt;}
.xb{left:28.533333pt;}
.x3{left:37.866655pt;}
.x37{left:61.733322pt;}
.x21{left:85.066655pt;}
.x10{left:88.666655pt;}
.x1f{left:93.066667pt;}
.xd{left:95.093333pt;}
.x2c{left:107.199988pt;}
.x6{left:108.166667pt;}
.xa{left:113.893333pt;}
.x2e{left:129.099988pt;}
.x33{left:133.773322pt;}
.x11{left:189.773322pt;}
.x34{left:192.173322pt;}
.x2d{left:197.639988pt;}
.x35{left:215.506655pt;}
.x2f{left:234.573322pt;}
.x1{left:269.773322pt;}
.x8{left:271.240000pt;}
.x14{left:379.266655pt;}
.x32{left:386.733322pt;}
.x1b{left:388.066655pt;}
.x2b{left:392.333322pt;}
.x22{left:406.466655pt;}
.x38{left:430.333322pt;}
.x17{left:447.533322pt;}
.x23{left:453.666655pt;}
.x19{left:466.733322pt;}
.x18{left:476.866655pt;}
.x1e{left:512.066655pt;}
.x1c{left:518.333322pt;}
.x1d{left:531.133322pt;}
.x1a{left:534.733322pt;}
.x12{left:538.733322pt;}
.x15{left:551.133322pt;}
.xc{left:555.933333pt;}
.x31{left:575.573322pt;}
.x13{left:603.706655pt;}
.xf{left:634.360000pt;}
.x24{left:646.506643pt;}
.x25{left:653.306667pt;}
.x27{left:657.440000pt;}
.x30{left:658.506655pt;}
.x28{left:661.693333pt;}
.x29{left:665.840000pt;}
.x2a{left:670.759988pt;}
.x2{left:728.106655pt;}
.x16{left:756.106655pt;}
.x36{left:762.506655pt;}
}




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