
    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_d82cad372f44f0fb3668eb6e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a3f17102d38fcb3e58767bb0.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4db3e010b175aaab7c7c6bc0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.007324;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_79300af9e51d2cda188a0994.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.007324;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_845fb0e7ae3f8b72e9e5d6cc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005371;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_ff5f84b508d127a378a11587.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.130371;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_dcbccd335bb3ef0f39febfa5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.983398;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_9c50f37baade1e1f768464c3.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_638b4ffa55ef78f7119f4a54.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_06e7937d0b69e04a4bef8659.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.983398;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_69fe74a10cf122f986ccd617.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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;}
.ls16{letter-spacing:-0.852000px;}
.ls27{letter-spacing:-0.846000px;}
.ls11{letter-spacing:-0.720000px;}
.ls26{letter-spacing:-0.648000px;}
.ls2b{letter-spacing:-0.590400px;}
.ls29{letter-spacing:-0.522000px;}
.ls17{letter-spacing:-0.463800px;}
.ls14{letter-spacing:-0.460800px;}
.ls20{letter-spacing:-0.396000px;}
.lsf{letter-spacing:-0.310200px;}
.ls8{letter-spacing:-0.276600px;}
.ls3{letter-spacing:-0.272400px;}
.ls23{letter-spacing:-0.253200px;}
.ls7{letter-spacing:-0.250800px;}
.ls5{letter-spacing:-0.230400px;}
.ls1f{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.164400px;}
.ls2{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.132600px;}
.ls28{letter-spacing:-0.126000px;}
.ls10{letter-spacing:-0.115200px;}
.ls1b{letter-spacing:-0.090000px;}
.ls22{letter-spacing:-0.078000px;}
.ls24{letter-spacing:-0.048960px;}
.ls1c{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.017280px;}
.ls1a{letter-spacing:0.020160px;}
.ls1d{letter-spacing:0.072000px;}
.ls19{letter-spacing:0.089280px;}
.ls2c{letter-spacing:0.129600px;}
.ls18{letter-spacing:0.132480px;}
.lse{letter-spacing:0.158400px;}
.ls21{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.256200px;}
.ls4{letter-spacing:0.270600px;}
.ls1e{letter-spacing:0.371400px;}
.ls25{letter-spacing:0.378000px;}
.ls1{letter-spacing:0.576000px;}
.lsd{letter-spacing:9.378720px;}
.ls13{letter-spacing:18.702720px;}
.ls12{letter-spacing:77.022720px;}
.ls9{letter-spacing:77.328000px;}
.lsa{letter-spacing:105.384000px;}
.lsb{letter-spacing:127.008000px;}
.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;}
}
.ws3{word-spacing:-24.625200px;}
.wsb{word-spacing:-21.331560px;}
.ws1{word-spacing:-19.296000px;}
.ws0{word-spacing:-18.720000px;}
.ws2{word-spacing:-18.576000px;}
.wse{word-spacing:-17.573760px;}
.ws18{word-spacing:-17.320560px;}
.ws9{word-spacing:-17.222400px;}
.ws8{word-spacing:-16.945800px;}
.ws15{word-spacing:-15.341640px;}
.ws5{word-spacing:-15.226440px;}
.wsd{word-spacing:-15.128640px;}
.ws1e{word-spacing:-15.099840px;}
.ws1c{word-spacing:-14.987520px;}
.ws7{word-spacing:-14.970240px;}
.ws19{word-spacing:-14.921280px;}
.wsc{word-spacing:-14.855040px;}
.wsa{word-spacing:-14.837640px;}
.ws10{word-spacing:-14.805840px;}
.ws16{word-spacing:-14.754240px;}
.ws6{word-spacing:-14.719440px;}
.wsf{word-spacing:-14.509440px;}
.ws11{word-spacing:-14.506440px;}
.ws1d{word-spacing:-14.379840px;}
.ws1a{word-spacing:-12.582000px;}
.ws14{word-spacing:-12.204000px;}
.ws13{word-spacing:-12.186000px;}
.ws12{word-spacing:-12.114000px;}
.ws1b{word-spacing:-12.078000px;}
.ws17{word-spacing:-11.808000px;}
.ws4{word-spacing:0.000000px;}
._8{margin-left:-12.857760px;}
._7{margin-left:-10.959120px;}
._6{margin-left:-7.153560px;}
._a{margin-left:-4.259040px;}
._9{margin-left:-2.765040px;}
._0{margin-left:-1.008000px;}
._1{width:1.218240px;}
._f{width:2.347200px;}
._e{width:3.444480px;}
._12{width:4.477440px;}
._d{width:5.545440px;}
._c{width:6.975840px;}
._b{width:8.081280px;}
._5{width:9.371520px;}
._4{width:11.128320px;}
._11{width:12.600000px;}
._15{width:13.697280px;}
._17{width:16.726080px;}
._18{width:17.808960px;}
._1b{width:19.030080px;}
._19{width:20.203200px;}
._14{width:22.120320px;}
._13{width:23.316480px;}
._10{width:24.376320px;}
._1a{width:26.297280px;}
._2{width:37.920960px;}
._16{width:201.005760px;}
._3{width:844.140000px;}
._1c{width:849.185760px;}
.fc6{color:rgb(5,99,193);}
.fc5{color:rgb(47,84,150);}
.fc4{color:rgb(68,114,196);}
.fc2{color:transparent;}
.fc9{color:rgb(15,15,15);}
.fc8{color:rgb(255,255,255);}
.fc7{color:rgb(68,84,106);}
.fc3{color:rgb(124,124,124);}
.fc1{color:rgb(0,68,116);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs5{font-size:48.384000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs1{font-size:95.760000px;}
.y22{bottom:-61.560000px;}
.y21{bottom:-30.060000px;}
.y27{bottom:-10.110000px;}
.y0{bottom:0.000000px;}
.y20{bottom:4.500000px;}
.y28{bottom:6.660000px;}
.y89{bottom:7.200000px;}
.y90{bottom:7.380000px;}
.y44{bottom:9.540000px;}
.y98{bottom:10.080000px;}
.y94{bottom:10.260000px;}
.y2c{bottom:15.480000px;}
.y41{bottom:16.920000px;}
.y33{bottom:16.965000px;}
.y3d{bottom:18.540000px;}
.y39{bottom:18.720000px;}
.y26{bottom:24.480000px;}
.y8a{bottom:27.000000px;}
.y8c{bottom:28.260000px;}
.y8e{bottom:28.290000px;}
.y2b{bottom:31.896000px;}
.y1f{bottom:42.660000px;}
.y38{bottom:42.840000px;}
.y43{bottom:45.900000px;}
.y2a{bottom:48.276000px;}
.y40{bottom:51.300000px;}
.y3c{bottom:53.100000px;}
.y32{bottom:53.145000px;}
.y25{bottom:57.240000px;}
.y30{bottom:58.356000px;}
.y29{bottom:64.476000px;}
.y37{bottom:77.400000px;}
.y2f{bottom:78.516000px;}
.y1e{bottom:79.200000px;}
.y3f{bottom:85.890000px;}
.y24{bottom:101.880000px;}
.y118{bottom:112.896000px;}
.y77{bottom:114.156000px;}
.ybb{bottom:115.956000px;}
.y1c{bottom:119.736000px;}
.y3e{bottom:120.270000px;}
.yae{bottom:121.356000px;}
.y128{bottom:129.816000px;}
.y12d{bottom:132.336000px;}
.y117{bottom:134.676000px;}
.y76{bottom:135.936000px;}
.yba{bottom:137.736000px;}
.yad{bottom:143.136000px;}
.y12c{bottom:148.896000px;}
.y127{bottom:151.410000px;}
.y1b{bottom:152.310000px;}
.y116{bottom:156.270000px;}
.y75{bottom:157.710000px;}
.yb9{bottom:159.510000px;}
.yac{bottom:164.910000px;}
.y12b{bottom:165.450000px;}
.ye6{bottom:167.790000px;}
.y126{bottom:173.190000px;}
.y9b{bottom:176.790000px;}
.y115{bottom:178.050000px;}
.yb8{bottom:181.110000px;}
.ye5{bottom:184.350000px;}
.y1a{bottom:185.070000px;}
.yab{bottom:186.690000px;}
.y74{bottom:191.370000px;}
.y12a{bottom:191.910000px;}
.y9a{bottom:193.170000px;}
.y114{bottom:199.830000px;}
.ye4{bottom:200.910000px;}
.y125{bottom:207.390000px;}
.yaa{bottom:208.290000px;}
.y73{bottom:213.150000px;}
.yb7{bottom:215.310000px;}
.ye3{bottom:217.290000px;}
.y19{bottom:217.830000px;}
.y113{bottom:221.610000px;}
.y124{bottom:223.950000px;}
.ya9{bottom:230.070000px;}
.yb6{bottom:231.870000px;}
.ye2{bottom:233.850000px;}
.y72{bottom:234.930000px;}
.y123{bottom:240.510000px;}
.y99{bottom:241.950000px;}
.y112{bottom:243.210000px;}
.yb5{bottom:248.430000px;}
.y18{bottom:250.410000px;}
.ya8{bottom:251.850000px;}
.y14f{bottom:253.830000px;}
.y71{bottom:256.530000px;}
.ye1{bottom:260.310000px;}
.yb4{bottom:264.810000px;}
.y111{bottom:264.990000px;}
.y122{bottom:266.970000px;}
.y31{bottom:270.750000px;}
.y97{bottom:272.730000px;}
.ya7{bottom:273.630000px;}
.y17{bottom:283.170000px;}
.y14e{bottom:287.490000px;}
.yb3{bottom:291.315000px;}
.ya6{bottom:295.275000px;}
.y110{bottom:298.695000px;}
.y70{bottom:299.055000px;}
.y96{bottom:303.375000px;}
.y16{bottom:315.975000px;}
.ya5{bottom:317.055000px;}
.y10f{bottom:320.475000px;}
.y14d{bottom:321.195000px;}
.ya4{bottom:338.835000px;}
.y10e{bottom:342.255000px;}
.y14c{bottom:342.975000px;}
.y6f{bottom:346.035000px;}
.y42{bottom:347.835000px;}
.y15{bottom:348.555000px;}
.y95{bottom:352.155000px;}
.ya3{bottom:360.615000px;}
.y10d{bottom:364.035000px;}
.y14b{bottom:364.755000px;}
.y6e{bottom:367.815000px;}
.y14{bottom:381.315000px;}
.ya2{bottom:382.215000px;}
.y10c{bottom:385.815000px;}
.y14a{bottom:386.535000px;}
.y6d{bottom:389.415000px;}
.y93{bottom:400.935000px;}
.y149{bottom:408.135000px;}
.y6c{bottom:411.195000px;}
.y13{bottom:414.075000px;}
.ya1{bottom:416.415000px;}
.y10b{bottom:419.475000px;}
.y148{bottom:429.915000px;}
.y1d{bottom:430.095000px;}
.y92{bottom:431.715000px;}
.y6b{bottom:432.975000px;}
.ydd{bottom:440.175000px;}
.y10a{bottom:441.255000px;}
.ya0{bottom:443.055000px;}
.y12{bottom:446.655000px;}
.y100{bottom:447.915000px;}
.y147{bottom:451.695000px;}
.y6a{bottom:454.755000px;}
.y91{bottom:459.435000px;}
.ydc{bottom:461.955000px;}
.y109{bottom:462.855000px;}
.yd4{bottom:465.915000px;}
.y69{bottom:476.355000px;}
.y11{bottom:479.415000px;}
.yff{bottom:481.575000px;}
.ydb{bottom:483.735000px;}
.y108{bottom:484.635000px;}
.y146{bottom:485.355000px;}
.y8f{bottom:487.155000px;}
.yd3{bottom:487.695000px;}
.y68{bottom:498.135000px;}
.yfe{bottom:503.355000px;}
.yda{bottom:505.515000px;}
.y107{bottom:506.415000px;}
.y145{bottom:507.135000px;}
.y141{bottom:508.755000px;}
.yd2{bottom:509.295000px;}
.y10{bottom:512.175000px;}
.yfd{bottom:525.135000px;}
.yd9{bottom:527.115000px;}
.y144{bottom:528.915000px;}
.y140{bottom:530.535000px;}
.yd1{bottom:531.075000px;}
.y67{bottom:531.975000px;}
.y8d{bottom:535.935000px;}
.y106{bottom:538.095000px;}
.yf{bottom:544.755000px;}
.yfc{bottom:546.915000px;}
.y23{bottom:549.285000px;}
.y143{bottom:550.725000px;}
.y13f{bottom:552.345000px;}
.yd0{bottom:552.885000px;}
.y66{bottom:553.605000px;}
.yd8{bottom:561.345000px;}
.yfb{bottom:568.545000px;}
.y13e{bottom:574.125000px;}
.ycf{bottom:574.665000px;}
.y65{bottom:575.385000px;}
.y9f{bottom:577.185000px;}
.ye{bottom:577.545000px;}
.yd7{bottom:577.905000px;}
.y105{bottom:578.265000px;}
.y8b{bottom:584.745000px;}
.y142{bottom:584.925000px;}
.y9e{bottom:593.745000px;}
.yd6{bottom:594.465000px;}
.y104{bottom:594.825000px;}
.y13d{bottom:595.725000px;}
.yce{bottom:596.265000px;}
.yfa{bottom:602.385000px;}
.y64{bottom:609.225000px;}
.y9d{bottom:610.125000px;}
.ye0{bottom:610.665000px;}
.y103{bottom:611.385000px;}
.yd{bottom:611.565000px;}
.y13c{bottom:617.505000px;}
.ycd{bottom:618.045000px;}
.yd5{bottom:620.925000px;}
.yf9{bottom:623.985000px;}
.ydf{bottom:627.225000px;}
.y102{bottom:627.765000px;}
.y63{bottom:630.825000px;}
.y88{bottom:633.525000px;}
.y9c{bottom:636.585000px;}
.y13b{bottom:639.285000px;}
.ycc{bottom:639.825000px;}
.y51{bottom:645.045000px;}
.yf8{bottom:645.765000px;}
.yc{bottom:651.165000px;}
.y3b{bottom:652.425000px;}
.y62{bottom:652.605000px;}
.yde{bottom:653.685000px;}
.y101{bottom:654.225000px;}
.y13a{bottom:661.065000px;}
.y87{bottom:661.245000px;}
.ycb{bottom:661.605000px;}
.yb2{bottom:664.125000px;}
.yf7{bottom:667.545000px;}
.y61{bottom:674.385000px;}
.y50{bottom:677.805000px;}
.yb1{bottom:680.685000px;}
.y139{bottom:682.665000px;}
.yca{bottom:683.205000px;}
.yf6{bottom:689.325000px;}
.yb{bottom:690.765000px;}
.y60{bottom:696.165000px;}
.yb0{bottom:697.245000px;}
.y138{bottom:704.445000px;}
.yf5{bottom:710.925000px;}
.y4f{bottom:712.905000px;}
.yc9{bottom:714.885000px;}
.y86{bottom:715.785000px;}
.yaf{bottom:723.705000px;}
.y137{bottom:726.225000px;}
.y5f{bottom:729.825000px;}
.ya{bottom:730.365000px;}
.y4e{bottom:742.065000px;}
.yf4{bottom:744.765000px;}
.y85{bottom:746.745000px;}
.y5e{bottom:751.605000px;}
.y121{bottom:757.545000px;}
.yc8{bottom:757.725000px;}
.y3a{bottom:759.525000px;}
.y136{bottom:759.885000px;}
.yf3{bottom:766.545000px;}
.y84{bottom:768.525000px;}
.y9{bottom:769.965000px;}
.y4d{bottom:771.225000px;}
.y5d{bottom:773.205000px;}
.y120{bottom:779.325000px;}
.yc7{bottom:779.505000px;}
.y135{bottom:781.665000px;}
.yf2{bottom:788.145000px;}
.y83{bottom:790.305000px;}
.y5c{bottom:794.985000px;}
.y4c{bottom:800.565000px;}
.yc6{bottom:801.105000px;}
.y134{bottom:803.445000px;}
.y8{bottom:809.610000px;}
.yf1{bottom:809.970000px;}
.y82{bottom:812.130000px;}
.y156{bottom:820.590000px;}
.y11f{bottom:822.750000px;}
.yc5{bottom:822.930000px;}
.y133{bottom:825.270000px;}
.y5b{bottom:828.870000px;}
.y4b{bottom:829.770000px;}
.y81{bottom:833.730000px;}
.y36{bottom:842.010000px;}
.yf0{bottom:843.810000px;}
.y11e{bottom:844.530000px;}
.yc4{bottom:844.710000px;}
.y132{bottom:846.870000px;}
.y7{bottom:849.210000px;}
.y5a{bottom:850.470000px;}
.y155{bottom:854.250000px;}
.y80{bottom:855.510000px;}
.y4a{bottom:859.110000px;}
.y11d{bottom:866.310000px;}
.yc3{bottom:866.490000px;}
.y131{bottom:868.650000px;}
.y59{bottom:872.250000px;}
.y154{bottom:876.030000px;}
.y7f{bottom:877.290000px;}
.yef{bottom:877.470000px;}
.yc2{bottom:888.090000px;}
.y49{bottom:888.270000px;}
.y6{bottom:888.810000px;}
.y130{bottom:890.430000px;}
.y58{bottom:894.030000px;}
.y153{bottom:897.810000px;}
.y7e{bottom:899.070000px;}
.yee{bottom:899.250000px;}
.yc1{bottom:909.870000px;}
.y12f{bottom:912.210000px;}
.y48{bottom:917.610000px;}
.y152{bottom:919.410000px;}
.y7d{bottom:920.670000px;}
.yed{bottom:921.030000px;}
.y57{bottom:927.690000px;}
.y5{bottom:929.310000px;}
.y11c{bottom:930.570000px;}
.yc0{bottom:931.650000px;}
.y12e{bottom:933.810000px;}
.y7c{bottom:942.450000px;}
.yec{bottom:942.630000px;}
.y47{bottom:946.770000px;}
.y56{bottom:949.470000px;}
.y151{bottom:953.250000px;}
.y129{bottom:955.590000px;}
.y4{bottom:963.150000px;}
.y7b{bottom:964.230000px;}
.yeb{bottom:964.410000px;}
.ybf{bottom:965.310000px;}
.y55{bottom:971.250000px;}
.y150{bottom:975.030000px;}
.y46{bottom:975.930000px;}
.y11b{bottom:977.370000px;}
.y7a{bottom:986.010000px;}
.yea{bottom:986.190000px;}
.ybe{bottom:987.090000px;}
.y54{bottom:993.030000px;}
.y3{bottom:996.810000px;}
.y11a{bottom:999.150000px;}
.ye9{bottom:1007.970000px;}
.ybd{bottom:1008.870000px;}
.y53{bottom:1014.630000px;}
.y79{bottom:1017.510000px;}
.y45{bottom:1018.410000px;}
.y119{bottom:1020.750000px;}
.ye8{bottom:1029.570000px;}
.y35{bottom:1030.290000px;}
.y2{bottom:1030.650000px;}
.ybc{bottom:1042.530000px;}
.y52{bottom:1057.110000px;}
.y78{bottom:1061.250000px;}
.ye7{bottom:1061.430000px;}
.y34{bottom:1063.050000px;}
.y1{bottom:1064.310000px;}
.y2e{bottom:1098.180000px;}
.y2d{bottom:1118.340000px;}
.h18{height:27.000000px;}
.h1d{height:29.880000px;}
.h1c{height:29.916000px;}
.h1b{height:30.060000px;}
.h16{height:35.280000px;}
.ha{height:36.910195px;}
.hb{height:37.020375px;}
.h15{height:43.453125px;}
.h19{height:48.060000px;}
.h1a{height:48.096000px;}
.hd{height:50.682656px;}
.h1e{height:52.971680px;}
.h1f{height:53.302500px;}
.h5{height:55.089844px;}
.h6{height:59.497031px;}
.h11{height:63.540000px;}
.h1{height:65.884219px;}
.h17{height:67.824844px;}
.hf{height:70.740000px;}
.hc{height:70.776000px;}
.h13{height:71.613281px;}
.h8{height:73.269492px;}
.h3{height:74.004654px;}
.h9{height:77.400000px;}
.h14{height:79.925027px;}
.h12{height:91.177734px;}
.he{height:95.040000px;}
.h2{height:98.426190px;}
.h4{height:98.460000px;}
.h7{height:127.620000px;}
.h10{height:137.916000px;}
.h0{height:1188.000000px;}
.wb{width:126.900000px;}
.w8{width:127.260000px;}
.w9{width:264.810000px;}
.w6{width:265.170000px;}
.w5{width:277.770000px;}
.w4{width:277.920000px;}
.w2{width:279.390000px;}
.wa{width:360.795000px;}
.w7{width:361.515000px;}
.w3{width:405.075000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x24{left:7.740000px;}
.x5{left:10.800000px;}
.x9{left:13.785000px;}
.x16{left:15.660000px;}
.x1a{left:18.180000px;}
.x1e{left:22.860000px;}
.x1f{left:26.640000px;}
.x8{left:30.525000px;}
.x1d{left:31.680000px;}
.x25{left:34.020000px;}
.x22{left:38.160000px;}
.x23{left:42.834000px;}
.x21{left:45.180000px;}
.x1c{left:62.280000px;}
.x19{left:63.360000px;}
.x20{left:64.614000px;}
.x17{left:66.774000px;}
.xa{left:67.965000px;}
.x1b{left:81.714000px;}
.x12{left:105.834000px;}
.x1{left:108.035986px;}
.xb{left:118.545000px;}
.x10{left:124.595986px;}
.x11{left:135.035986px;}
.x6{left:139.680000px;}
.x14{left:159.870000px;}
.x29{left:162.029986px;}
.x18{left:180.390000px;}
.x3{left:206.489986px;}
.xe{left:297.615000px;}
.xf{left:298.875000px;}
.x4{left:319.215000px;}
.x13{left:373.935000px;}
.x28{left:450.614986px;}
.xd{left:454.934986px;}
.x2{left:459.074986px;}
.xc{left:495.464986px;}
.x7{left:498.240000px;}
.x15{left:735.450000px;}
.x27{left:806.189986px;}
.x26{left:810.149986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-0.757333pt;}
.ls27{letter-spacing:-0.752000pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls26{letter-spacing:-0.576000pt;}
.ls2b{letter-spacing:-0.524800pt;}
.ls29{letter-spacing:-0.464000pt;}
.ls17{letter-spacing:-0.412267pt;}
.ls14{letter-spacing:-0.409600pt;}
.ls20{letter-spacing:-0.352000pt;}
.lsf{letter-spacing:-0.275733pt;}
.ls8{letter-spacing:-0.245867pt;}
.ls3{letter-spacing:-0.242133pt;}
.ls23{letter-spacing:-0.225067pt;}
.ls7{letter-spacing:-0.222933pt;}
.ls5{letter-spacing:-0.204800pt;}
.ls1f{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.146133pt;}
.ls2{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.117867pt;}
.ls28{letter-spacing:-0.112000pt;}
.ls10{letter-spacing:-0.102400pt;}
.ls1b{letter-spacing:-0.080000pt;}
.ls22{letter-spacing:-0.069333pt;}
.ls24{letter-spacing:-0.043520pt;}
.ls1c{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.015360pt;}
.ls1a{letter-spacing:0.017920pt;}
.ls1d{letter-spacing:0.064000pt;}
.ls19{letter-spacing:0.079360pt;}
.ls2c{letter-spacing:0.115200pt;}
.ls18{letter-spacing:0.117760pt;}
.lse{letter-spacing:0.140800pt;}
.ls21{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.227733pt;}
.ls4{letter-spacing:0.240533pt;}
.ls1e{letter-spacing:0.330133pt;}
.ls25{letter-spacing:0.336000pt;}
.ls1{letter-spacing:0.512000pt;}
.lsd{letter-spacing:8.336640pt;}
.ls13{letter-spacing:16.624640pt;}
.ls12{letter-spacing:68.464640pt;}
.ls9{letter-spacing:68.736000pt;}
.lsa{letter-spacing:93.674667pt;}
.lsb{letter-spacing:112.896000pt;}
.ws3{word-spacing:-21.889067pt;}
.wsb{word-spacing:-18.961387pt;}
.ws1{word-spacing:-17.152000pt;}
.ws0{word-spacing:-16.640000pt;}
.ws2{word-spacing:-16.512000pt;}
.wse{word-spacing:-15.621120pt;}
.ws18{word-spacing:-15.396053pt;}
.ws9{word-spacing:-15.308800pt;}
.ws8{word-spacing:-15.062933pt;}
.ws15{word-spacing:-13.637013pt;}
.ws5{word-spacing:-13.534613pt;}
.wsd{word-spacing:-13.447680pt;}
.ws1e{word-spacing:-13.422080pt;}
.ws1c{word-spacing:-13.322240pt;}
.ws7{word-spacing:-13.306880pt;}
.ws19{word-spacing:-13.263360pt;}
.wsc{word-spacing:-13.204480pt;}
.wsa{word-spacing:-13.189013pt;}
.ws10{word-spacing:-13.160747pt;}
.ws16{word-spacing:-13.114880pt;}
.ws6{word-spacing:-13.083947pt;}
.wsf{word-spacing:-12.897280pt;}
.ws11{word-spacing:-12.894613pt;}
.ws1d{word-spacing:-12.782080pt;}
.ws1a{word-spacing:-11.184000pt;}
.ws14{word-spacing:-10.848000pt;}
.ws13{word-spacing:-10.832000pt;}
.ws12{word-spacing:-10.768000pt;}
.ws1b{word-spacing:-10.736000pt;}
.ws17{word-spacing:-10.496000pt;}
.ws4{word-spacing:0.000000pt;}
._8{margin-left:-11.429120pt;}
._7{margin-left:-9.741440pt;}
._6{margin-left:-6.358720pt;}
._a{margin-left:-3.785813pt;}
._9{margin-left:-2.457813pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.082880pt;}
._f{width:2.086400pt;}
._e{width:3.061760pt;}
._12{width:3.979947pt;}
._d{width:4.929280pt;}
._c{width:6.200747pt;}
._b{width:7.183360pt;}
._5{width:8.330240pt;}
._4{width:9.891840pt;}
._11{width:11.200000pt;}
._15{width:12.175360pt;}
._17{width:14.867627pt;}
._18{width:15.830187pt;}
._1b{width:16.915627pt;}
._19{width:17.958400pt;}
._14{width:19.662507pt;}
._13{width:20.725760pt;}
._10{width:21.667840pt;}
._1a{width:23.375360pt;}
._2{width:33.707520pt;}
._16{width:178.671787pt;}
._3{width:750.346667pt;}
._1c{width:754.831787pt;}
.fs4{font-size:42.880000pt;}
.fs5{font-size:43.008000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs1{font-size:85.120000pt;}
.y22{bottom:-54.720000pt;}
.y21{bottom:-26.720000pt;}
.y27{bottom:-8.986667pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:4.000000pt;}
.y28{bottom:5.920000pt;}
.y89{bottom:6.400000pt;}
.y90{bottom:6.560000pt;}
.y44{bottom:8.480000pt;}
.y98{bottom:8.960000pt;}
.y94{bottom:9.120000pt;}
.y2c{bottom:13.760000pt;}
.y41{bottom:15.040000pt;}
.y33{bottom:15.080000pt;}
.y3d{bottom:16.480000pt;}
.y39{bottom:16.640000pt;}
.y26{bottom:21.760000pt;}
.y8a{bottom:24.000000pt;}
.y8c{bottom:25.120000pt;}
.y8e{bottom:25.146667pt;}
.y2b{bottom:28.352000pt;}
.y1f{bottom:37.920000pt;}
.y38{bottom:38.080000pt;}
.y43{bottom:40.800000pt;}
.y2a{bottom:42.912000pt;}
.y40{bottom:45.600000pt;}
.y3c{bottom:47.200000pt;}
.y32{bottom:47.240000pt;}
.y25{bottom:50.880000pt;}
.y30{bottom:51.872000pt;}
.y29{bottom:57.312000pt;}
.y37{bottom:68.800000pt;}
.y2f{bottom:69.792000pt;}
.y1e{bottom:70.400000pt;}
.y3f{bottom:76.346667pt;}
.y24{bottom:90.560000pt;}
.y118{bottom:100.352000pt;}
.y77{bottom:101.472000pt;}
.ybb{bottom:103.072000pt;}
.y1c{bottom:106.432000pt;}
.y3e{bottom:106.906667pt;}
.yae{bottom:107.872000pt;}
.y128{bottom:115.392000pt;}
.y12d{bottom:117.632000pt;}
.y117{bottom:119.712000pt;}
.y76{bottom:120.832000pt;}
.yba{bottom:122.432000pt;}
.yad{bottom:127.232000pt;}
.y12c{bottom:132.352000pt;}
.y127{bottom:134.586667pt;}
.y1b{bottom:135.386667pt;}
.y116{bottom:138.906667pt;}
.y75{bottom:140.186667pt;}
.yb9{bottom:141.786667pt;}
.yac{bottom:146.586667pt;}
.y12b{bottom:147.066667pt;}
.ye6{bottom:149.146667pt;}
.y126{bottom:153.946667pt;}
.y9b{bottom:157.146667pt;}
.y115{bottom:158.266667pt;}
.yb8{bottom:160.986667pt;}
.ye5{bottom:163.866667pt;}
.y1a{bottom:164.506667pt;}
.yab{bottom:165.946667pt;}
.y74{bottom:170.106667pt;}
.y12a{bottom:170.586667pt;}
.y9a{bottom:171.706667pt;}
.y114{bottom:177.626667pt;}
.ye4{bottom:178.586667pt;}
.y125{bottom:184.346667pt;}
.yaa{bottom:185.146667pt;}
.y73{bottom:189.466667pt;}
.yb7{bottom:191.386667pt;}
.ye3{bottom:193.146667pt;}
.y19{bottom:193.626667pt;}
.y113{bottom:196.986667pt;}
.y124{bottom:199.066667pt;}
.ya9{bottom:204.506667pt;}
.yb6{bottom:206.106667pt;}
.ye2{bottom:207.866667pt;}
.y72{bottom:208.826667pt;}
.y123{bottom:213.786667pt;}
.y99{bottom:215.066667pt;}
.y112{bottom:216.186667pt;}
.yb5{bottom:220.826667pt;}
.y18{bottom:222.586667pt;}
.ya8{bottom:223.866667pt;}
.y14f{bottom:225.626667pt;}
.y71{bottom:228.026667pt;}
.ye1{bottom:231.386667pt;}
.yb4{bottom:235.386667pt;}
.y111{bottom:235.546667pt;}
.y122{bottom:237.306667pt;}
.y31{bottom:240.666667pt;}
.y97{bottom:242.426667pt;}
.ya7{bottom:243.226667pt;}
.y17{bottom:251.706667pt;}
.y14e{bottom:255.546667pt;}
.yb3{bottom:258.946667pt;}
.ya6{bottom:262.466667pt;}
.y110{bottom:265.506667pt;}
.y70{bottom:265.826667pt;}
.y96{bottom:269.666667pt;}
.y16{bottom:280.866667pt;}
.ya5{bottom:281.826667pt;}
.y10f{bottom:284.866667pt;}
.y14d{bottom:285.506667pt;}
.ya4{bottom:301.186667pt;}
.y10e{bottom:304.226667pt;}
.y14c{bottom:304.866667pt;}
.y6f{bottom:307.586667pt;}
.y42{bottom:309.186667pt;}
.y15{bottom:309.826667pt;}
.y95{bottom:313.026667pt;}
.ya3{bottom:320.546667pt;}
.y10d{bottom:323.586667pt;}
.y14b{bottom:324.226667pt;}
.y6e{bottom:326.946667pt;}
.y14{bottom:338.946667pt;}
.ya2{bottom:339.746667pt;}
.y10c{bottom:342.946667pt;}
.y14a{bottom:343.586667pt;}
.y6d{bottom:346.146667pt;}
.y93{bottom:356.386667pt;}
.y149{bottom:362.786667pt;}
.y6c{bottom:365.506667pt;}
.y13{bottom:368.066667pt;}
.ya1{bottom:370.146667pt;}
.y10b{bottom:372.866667pt;}
.y148{bottom:382.146667pt;}
.y1d{bottom:382.306667pt;}
.y92{bottom:383.746667pt;}
.y6b{bottom:384.866667pt;}
.ydd{bottom:391.266667pt;}
.y10a{bottom:392.226667pt;}
.ya0{bottom:393.826667pt;}
.y12{bottom:397.026667pt;}
.y100{bottom:398.146667pt;}
.y147{bottom:401.506667pt;}
.y6a{bottom:404.226667pt;}
.y91{bottom:408.386667pt;}
.ydc{bottom:410.626667pt;}
.y109{bottom:411.426667pt;}
.yd4{bottom:414.146667pt;}
.y69{bottom:423.426667pt;}
.y11{bottom:426.146667pt;}
.yff{bottom:428.066667pt;}
.ydb{bottom:429.986667pt;}
.y108{bottom:430.786667pt;}
.y146{bottom:431.426667pt;}
.y8f{bottom:433.026667pt;}
.yd3{bottom:433.506667pt;}
.y68{bottom:442.786667pt;}
.yfe{bottom:447.426667pt;}
.yda{bottom:449.346667pt;}
.y107{bottom:450.146667pt;}
.y145{bottom:450.786667pt;}
.y141{bottom:452.226667pt;}
.yd2{bottom:452.706667pt;}
.y10{bottom:455.266667pt;}
.yfd{bottom:466.786667pt;}
.yd9{bottom:468.546667pt;}
.y144{bottom:470.146667pt;}
.y140{bottom:471.586667pt;}
.yd1{bottom:472.066667pt;}
.y67{bottom:472.866667pt;}
.y8d{bottom:476.386667pt;}
.y106{bottom:478.306667pt;}
.yf{bottom:484.226667pt;}
.yfc{bottom:486.146667pt;}
.y23{bottom:488.253333pt;}
.y143{bottom:489.533333pt;}
.y13f{bottom:490.973333pt;}
.yd0{bottom:491.453333pt;}
.y66{bottom:492.093333pt;}
.yd8{bottom:498.973333pt;}
.yfb{bottom:505.373333pt;}
.y13e{bottom:510.333333pt;}
.ycf{bottom:510.813333pt;}
.y65{bottom:511.453333pt;}
.y9f{bottom:513.053333pt;}
.ye{bottom:513.373333pt;}
.yd7{bottom:513.693333pt;}
.y105{bottom:514.013333pt;}
.y8b{bottom:519.773333pt;}
.y142{bottom:519.933333pt;}
.y9e{bottom:527.773333pt;}
.yd6{bottom:528.413333pt;}
.y104{bottom:528.733333pt;}
.y13d{bottom:529.533333pt;}
.yce{bottom:530.013333pt;}
.yfa{bottom:535.453333pt;}
.y64{bottom:541.533333pt;}
.y9d{bottom:542.333333pt;}
.ye0{bottom:542.813333pt;}
.y103{bottom:543.453333pt;}
.yd{bottom:543.613333pt;}
.y13c{bottom:548.893333pt;}
.ycd{bottom:549.373333pt;}
.yd5{bottom:551.933333pt;}
.yf9{bottom:554.653333pt;}
.ydf{bottom:557.533333pt;}
.y102{bottom:558.013333pt;}
.y63{bottom:560.733333pt;}
.y88{bottom:563.133333pt;}
.y9c{bottom:565.853333pt;}
.y13b{bottom:568.253333pt;}
.ycc{bottom:568.733333pt;}
.y51{bottom:573.373333pt;}
.yf8{bottom:574.013333pt;}
.yc{bottom:578.813333pt;}
.y3b{bottom:579.933333pt;}
.y62{bottom:580.093333pt;}
.yde{bottom:581.053333pt;}
.y101{bottom:581.533333pt;}
.y13a{bottom:587.613333pt;}
.y87{bottom:587.773333pt;}
.ycb{bottom:588.093333pt;}
.yb2{bottom:590.333333pt;}
.yf7{bottom:593.373333pt;}
.y61{bottom:599.453333pt;}
.y50{bottom:602.493333pt;}
.yb1{bottom:605.053333pt;}
.y139{bottom:606.813333pt;}
.yca{bottom:607.293333pt;}
.yf6{bottom:612.733333pt;}
.yb{bottom:614.013333pt;}
.y60{bottom:618.813333pt;}
.yb0{bottom:619.773333pt;}
.y138{bottom:626.173333pt;}
.yf5{bottom:631.933333pt;}
.y4f{bottom:633.693333pt;}
.yc9{bottom:635.453333pt;}
.y86{bottom:636.253333pt;}
.yaf{bottom:643.293333pt;}
.y137{bottom:645.533333pt;}
.y5f{bottom:648.733333pt;}
.ya{bottom:649.213333pt;}
.y4e{bottom:659.613333pt;}
.yf4{bottom:662.013333pt;}
.y85{bottom:663.773333pt;}
.y5e{bottom:668.093333pt;}
.y121{bottom:673.373333pt;}
.yc8{bottom:673.533333pt;}
.y3a{bottom:675.133333pt;}
.y136{bottom:675.453333pt;}
.yf3{bottom:681.373333pt;}
.y84{bottom:683.133333pt;}
.y9{bottom:684.413333pt;}
.y4d{bottom:685.533333pt;}
.y5d{bottom:687.293333pt;}
.y120{bottom:692.733333pt;}
.yc7{bottom:692.893333pt;}
.y135{bottom:694.813333pt;}
.yf2{bottom:700.573333pt;}
.y83{bottom:702.493333pt;}
.y5c{bottom:706.653333pt;}
.y4c{bottom:711.613333pt;}
.yc6{bottom:712.093333pt;}
.y134{bottom:714.173333pt;}
.y8{bottom:719.653333pt;}
.yf1{bottom:719.973333pt;}
.y82{bottom:721.893333pt;}
.y156{bottom:729.413333pt;}
.y11f{bottom:731.333333pt;}
.yc5{bottom:731.493333pt;}
.y133{bottom:733.573333pt;}
.y5b{bottom:736.773333pt;}
.y4b{bottom:737.573333pt;}
.y81{bottom:741.093333pt;}
.y36{bottom:748.453333pt;}
.yf0{bottom:750.053333pt;}
.y11e{bottom:750.693333pt;}
.yc4{bottom:750.853333pt;}
.y132{bottom:752.773333pt;}
.y7{bottom:754.853333pt;}
.y5a{bottom:755.973333pt;}
.y155{bottom:759.333333pt;}
.y80{bottom:760.453333pt;}
.y4a{bottom:763.653333pt;}
.y11d{bottom:770.053333pt;}
.yc3{bottom:770.213333pt;}
.y131{bottom:772.133333pt;}
.y59{bottom:775.333333pt;}
.y154{bottom:778.693333pt;}
.y7f{bottom:779.813333pt;}
.yef{bottom:779.973333pt;}
.yc2{bottom:789.413333pt;}
.y49{bottom:789.573333pt;}
.y6{bottom:790.053333pt;}
.y130{bottom:791.493333pt;}
.y58{bottom:794.693333pt;}
.y153{bottom:798.053333pt;}
.y7e{bottom:799.173333pt;}
.yee{bottom:799.333333pt;}
.yc1{bottom:808.773333pt;}
.y12f{bottom:810.853333pt;}
.y48{bottom:815.653333pt;}
.y152{bottom:817.253333pt;}
.y7d{bottom:818.373333pt;}
.yed{bottom:818.693333pt;}
.y57{bottom:824.613333pt;}
.y5{bottom:826.053333pt;}
.y11c{bottom:827.173333pt;}
.yc0{bottom:828.133333pt;}
.y12e{bottom:830.053333pt;}
.y7c{bottom:837.733333pt;}
.yec{bottom:837.893333pt;}
.y47{bottom:841.573333pt;}
.y56{bottom:843.973333pt;}
.y151{bottom:847.333333pt;}
.y129{bottom:849.413333pt;}
.y4{bottom:856.133333pt;}
.y7b{bottom:857.093333pt;}
.yeb{bottom:857.253333pt;}
.ybf{bottom:858.053333pt;}
.y55{bottom:863.333333pt;}
.y150{bottom:866.693333pt;}
.y46{bottom:867.493333pt;}
.y11b{bottom:868.773333pt;}
.y7a{bottom:876.453333pt;}
.yea{bottom:876.613333pt;}
.ybe{bottom:877.413333pt;}
.y54{bottom:882.693333pt;}
.y3{bottom:886.053333pt;}
.y11a{bottom:888.133333pt;}
.ye9{bottom:895.973333pt;}
.ybd{bottom:896.773333pt;}
.y53{bottom:901.893333pt;}
.y79{bottom:904.453333pt;}
.y45{bottom:905.253333pt;}
.y119{bottom:907.333333pt;}
.ye8{bottom:915.173333pt;}
.y35{bottom:915.813333pt;}
.y2{bottom:916.133333pt;}
.ybc{bottom:926.693333pt;}
.y52{bottom:939.653333pt;}
.y78{bottom:943.333333pt;}
.ye7{bottom:943.493333pt;}
.y34{bottom:944.933333pt;}
.y1{bottom:946.053333pt;}
.y2e{bottom:976.160000pt;}
.y2d{bottom:994.080000pt;}
.h18{height:24.000000pt;}
.h1d{height:26.560000pt;}
.h1c{height:26.592000pt;}
.h1b{height:26.720000pt;}
.h16{height:31.360000pt;}
.ha{height:32.809062pt;}
.hb{height:32.907000pt;}
.h15{height:38.625000pt;}
.h19{height:42.720000pt;}
.h1a{height:42.752000pt;}
.hd{height:45.051250pt;}
.h1e{height:47.085938pt;}
.h1f{height:47.380000pt;}
.h5{height:48.968750pt;}
.h6{height:52.886250pt;}
.h11{height:56.480000pt;}
.h1{height:58.563750pt;}
.h17{height:60.288750pt;}
.hf{height:62.880000pt;}
.hc{height:62.912000pt;}
.h13{height:63.656250pt;}
.h8{height:65.128438pt;}
.h3{height:65.781915pt;}
.h9{height:68.800000pt;}
.h14{height:71.044468pt;}
.h12{height:81.046875pt;}
.he{height:84.480000pt;}
.h2{height:87.489947pt;}
.h4{height:87.520000pt;}
.h7{height:113.440000pt;}
.h10{height:122.592000pt;}
.h0{height:1056.000000pt;}
.wb{width:112.800000pt;}
.w8{width:113.120000pt;}
.w9{width:235.386667pt;}
.w6{width:235.706667pt;}
.w5{width:246.906667pt;}
.w4{width:247.040000pt;}
.w2{width:248.346667pt;}
.wa{width:320.706667pt;}
.w7{width:321.346667pt;}
.w3{width:360.066667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x24{left:6.880000pt;}
.x5{left:9.600000pt;}
.x9{left:12.253333pt;}
.x16{left:13.920000pt;}
.x1a{left:16.160000pt;}
.x1e{left:20.320000pt;}
.x1f{left:23.680000pt;}
.x8{left:27.133333pt;}
.x1d{left:28.160000pt;}
.x25{left:30.240000pt;}
.x22{left:33.920000pt;}
.x23{left:38.074667pt;}
.x21{left:40.160000pt;}
.x1c{left:55.360000pt;}
.x19{left:56.320000pt;}
.x20{left:57.434667pt;}
.x17{left:59.354667pt;}
.xa{left:60.413333pt;}
.x1b{left:72.634667pt;}
.x12{left:94.074667pt;}
.x1{left:96.031988pt;}
.xb{left:105.373333pt;}
.x10{left:110.751988pt;}
.x11{left:120.031988pt;}
.x6{left:124.160000pt;}
.x14{left:142.106667pt;}
.x29{left:144.026655pt;}
.x18{left:160.346667pt;}
.x3{left:183.546655pt;}
.xe{left:264.546667pt;}
.xf{left:265.666667pt;}
.x4{left:283.746667pt;}
.x13{left:332.386667pt;}
.x28{left:400.546655pt;}
.xd{left:404.386655pt;}
.x2{left:408.066655pt;}
.xc{left:440.413321pt;}
.x7{left:442.880000pt;}
.x15{left:653.733333pt;}
.x27{left:716.613321pt;}
.x26{left:720.133321pt;}
}




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