
    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_fee5ea3cf98cc11abeda01c6.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_354d8ba199c0ee74f536b259.woff2')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_ddf53faf5b770332cb6b5033.woff2')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_7b232ecebc43a38938006200.woff2')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_b107f166867a537760398558.woff2')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_4d8e9764ac76245ee5c351c8.woff2')format("woff");}.ff6{font-family:ff6;line-height:2.955078;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_7b3a4775b184fff825b65dfb.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_9994550bd665fcd2b7f7aacb.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_86beb024a093cce4009abc1d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.946777;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);}
.v7{vertical-align:-27.000000px;}
.v12{vertical-align:-20.400000px;}
.v5{vertical-align:-18.000000px;}
.v3{vertical-align:-14.400000px;}
.v8{vertical-align:-3.600000px;}
.v9{vertical-align:-2.400000px;}
.va{vertical-align:-1.200000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:14.400000px;}
.vf{vertical-align:20.400000px;}
.vb{vertical-align:21.600000px;}
.ve{vertical-align:32.400000px;}
.v2{vertical-align:36.000000px;}
.v10{vertical-align:39.000000px;}
.v15{vertical-align:40.800000px;}
.v1{vertical-align:42.000000px;}
.v6{vertical-align:45.000000px;}
.v11{vertical-align:56.400000px;}
.v13{vertical-align:75.000000px;}
.v14{vertical-align:78.000000px;}
.vc{vertical-align:80.520000px;}
.vd{vertical-align:88.200000px;}
.lsb{letter-spacing:-3.000000px;}
.lsd{letter-spacing:-2.994000px;}
.lsa{letter-spacing:-2.988000px;}
.lsc{letter-spacing:-2.700000px;}
.ls23{letter-spacing:-0.216000px;}
.ls41{letter-spacing:-0.129000px;}
.ls43{letter-spacing:-0.024000px;}
.ls9{letter-spacing:-0.012000px;}
.ls7{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.024000px;}
.lse{letter-spacing:0.033000px;}
.ls2c{letter-spacing:0.036000px;}
.ls3c{letter-spacing:0.060000px;}
.ls25{letter-spacing:0.093000px;}
.ls21{letter-spacing:0.096000px;}
.ls0{letter-spacing:0.120000px;}
.ls8{letter-spacing:0.150000px;}
.ls22{letter-spacing:0.156000px;}
.ls3a{letter-spacing:0.240000px;}
.ls3b{letter-spacing:0.273000px;}
.ls2{letter-spacing:0.300000px;}
.ls38{letter-spacing:0.312000px;}
.ls24{letter-spacing:0.600000px;}
.ls4{letter-spacing:0.660000px;}
.ls2d{letter-spacing:1.896000px;}
.ls2e{letter-spacing:2.271000px;}
.ls3d{letter-spacing:2.316000px;}
.ls15{letter-spacing:2.811000px;}
.lsf{letter-spacing:2.871000px;}
.ls26{letter-spacing:2.931000px;}
.ls16{letter-spacing:3.411000px;}
.ls10{letter-spacing:3.471000px;}
.ls3e{letter-spacing:4.059000px;}
.ls36{letter-spacing:4.161000px;}
.ls2f{letter-spacing:4.245000px;}
.ls2a{letter-spacing:4.299000px;}
.ls1d{letter-spacing:4.359000px;}
.ls40{letter-spacing:4.377000px;}
.ls1c{letter-spacing:4.419000px;}
.ls29{letter-spacing:4.839000px;}
.ls1b{letter-spacing:4.899000px;}
.ls31{letter-spacing:5.079000px;}
.ls5{letter-spacing:7.260000px;}
.ls19{letter-spacing:15.816000px;}
.ls13{letter-spacing:16.476000px;}
.ls39{letter-spacing:16.671000px;}
.ls14{letter-spacing:18.411000px;}
.ls1a{letter-spacing:18.471000px;}
.ls3f{letter-spacing:18.651000px;}
.ls12{letter-spacing:19.011000px;}
.ls27{letter-spacing:19.041000px;}
.ls17{letter-spacing:19.071000px;}
.ls11{letter-spacing:19.131000px;}
.ls18{letter-spacing:19.731000px;}
.ls33{letter-spacing:20.016000px;}
.ls2b{letter-spacing:22.671000px;}
.ls34{letter-spacing:22.731000px;}
.ls1f{letter-spacing:23.211000px;}
.ls20{letter-spacing:23.271000px;}
.ls1e{letter-spacing:23.331000px;}
.ls6{letter-spacing:23.940000px;}
.ls28{letter-spacing:24.639000px;}
.ls32{letter-spacing:24.699000px;}
.ls42{letter-spacing:33.984000px;}
.ls37{letter-spacing:63.984000px;}
.ls30{letter-spacing:64.134000px;}
.ls35{letter-spacing:98.184000px;}
.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;}
}
.wsf{word-spacing:-18.024000px;}
.ws9{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.784000px;}
.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;}
.ws11{word-spacing:-13.050000px;}
.ws10{word-spacing:-12.750000px;}
.ws6{word-spacing:-10.512000px;}
.ws8{word-spacing:-10.506000px;}
.ws7{word-spacing:-10.500000px;}
.ws14{word-spacing:-0.192000px;}
.wsd{word-spacing:-0.084000px;}
.wsc{word-spacing:-0.072000px;}
.wse{word-spacing:-0.051000px;}
.wsa{word-spacing:0.000000px;}
.ws1a{word-spacing:0.078000px;}
.ws1b{word-spacing:9.711000px;}
.ws13{word-spacing:9.945000px;}
.ws1d{word-spacing:10.371000px;}
.ws1c{word-spacing:10.551000px;}
.ws18{word-spacing:22.620000px;}
.ws12{word-spacing:51.294000px;}
.ws15{word-spacing:98.640000px;}
.ws16{word-spacing:99.240000px;}
.ws17{word-spacing:99.360000px;}
.ws19{word-spacing:210.000000px;}
._2e{margin-left:-15.696000px;}
._2b{margin-left:-13.128000px;}
._2c{margin-left:-11.382000px;}
._2d{margin-left:-10.374000px;}
._2f{margin-left:-9.129000px;}
._37{margin-left:-8.040000px;}
._9{margin-left:-4.248000px;}
._2{margin-left:-3.240000px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._0{width:1.050000px;}
._4{width:2.436000px;}
._7{width:3.600000px;}
._8{width:4.782000px;}
._f{width:6.480000px;}
._10{width:7.488000px;}
._11{width:9.360000px;}
._5{width:10.512000px;}
._6{width:11.592000px;}
._14{width:13.176000px;}
._12{width:15.120000px;}
._17{width:16.272000px;}
._38{width:18.102000px;}
._26{width:19.767000px;}
._b{width:21.240000px;}
._c{width:22.896000px;}
._18{width:24.840000px;}
._16{width:25.848000px;}
._1b{width:27.216000px;}
._13{width:28.224000px;}
._1f{width:29.808000px;}
._20{width:31.104000px;}
._3b{width:32.256000px;}
._2a{width:33.768000px;}
._19{width:34.920000px;}
._1a{width:36.030000px;}
._4b{width:37.224000px;}
._30{width:38.997000px;}
._24{width:41.976000px;}
._15{width:43.224000px;}
._25{width:44.544000px;}
._e{width:46.080000px;}
._23{width:48.384000px;}
._44{width:49.896000px;}
._31{width:51.978000px;}
._4e{width:53.784000px;}
._29{width:55.428000px;}
._a{width:56.748000px;}
._36{width:59.616000px;}
._1d{width:60.624000px;}
._1e{width:62.064000px;}
._1c{width:63.624000px;}
._21{width:64.944000px;}
._22{width:66.096000px;}
._46{width:67.824000px;}
._32{width:69.336000px;}
._3a{width:70.833000px;}
._d{width:72.072000px;}
._3e{width:79.590000px;}
._43{width:80.928000px;}
._35{width:82.800000px;}
._3c{width:84.456000px;}
._33{width:85.464000px;}
._34{width:86.760000px;}
._39{width:96.156000px;}
._4c{width:97.272000px;}
._4d{width:98.616000px;}
._3d{width:100.584000px;}
._4a{width:102.888000px;}
._42{width:107.838000px;}
._4f{width:111.456000px;}
._53{width:120.024000px;}
._54{width:121.104000px;}
._40{width:122.736000px;}
._48{width:126.312000px;}
._47{width:127.536000px;}
._49{width:154.476000px;}
._41{width:155.952000px;}
._27{width:163.761000px;}
._3f{width:173.172000px;}
._45{width:192.654000px;}
._28{width:194.460000px;}
._52{width:249.624000px;}
._51{width:298.728000px;}
._50{width:597.312000px;}
.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;}
.y25{bottom:3.900000px;}
.y7{bottom:5.400000px;}
.yb{bottom:6.000000px;}
.yc{bottom:6.750000px;}
.ya{bottom:19.950000px;}
.y6{bottom:20.550000px;}
.y24{bottom:24.600000px;}
.y9{bottom:33.900000px;}
.y5{bottom:36.000000px;}
.y23{bottom:45.300000px;}
.y3{bottom:57.637500px;}
.y22{bottom:66.045000px;}
.y2{bottom:81.637500px;}
.y21{bottom:86.745000px;}
.y20{bottom:107.445000px;}
.yb3{bottom:108.637500px;}
.y3c{bottom:116.887500px;}
.yff{bottom:125.587500px;}
.y1f{bottom:128.145000px;}
.yb2{bottom:132.487500px;}
.y3b{bottom:140.587500px;}
.y89{bottom:144.937500px;}
.y1e{bottom:148.845000px;}
.yfe{bottom:149.437500px;}
.y66{bottom:149.737500px;}
.yb1{bottom:156.195000px;}
.yd7{bottom:163.245000px;}
.y3a{bottom:164.430000px;}
.y88{bottom:171.630000px;}
.yfd{bottom:173.295000px;}
.y65{bottom:173.595000px;}
.yb0{bottom:180.045000px;}
.yd6{bottom:187.095000px;}
.y39{bottom:188.295000px;}
.y87{bottom:195.795000px;}
.yfc{bottom:196.995000px;}
.y64{bottom:197.445000px;}
.yaf{bottom:203.895000px;}
.yd5{bottom:210.795000px;}
.y38{bottom:212.130000px;}
.y86{bottom:219.630000px;}
.yfb{bottom:220.845000px;}
.y63{bottom:221.295000px;}
.yae{bottom:227.595000px;}
.y37{bottom:235.845000px;}
.yd4{bottom:237.195000px;}
.y85{bottom:243.330000px;}
.yfa{bottom:244.695000px;}
.y62{bottom:244.995000px;}
.yad{bottom:251.445000px;}
.y36{bottom:259.695000px;}
.yd3{bottom:261.345000px;}
.y84{bottom:267.195000px;}
.yf9{bottom:268.395000px;}
.y61{bottom:268.845000px;}
.yac{bottom:275.295000px;}
.y35{bottom:283.545000px;}
.yd2{bottom:287.745000px;}
.y83{bottom:291.045000px;}
.yf8{bottom:292.245000px;}
.y60{bottom:292.695000px;}
.yab{bottom:298.995000px;}
.y34{bottom:307.245000px;}
.yd1{bottom:314.445000px;}
.y82{bottom:314.745000px;}
.yf7{bottom:316.095000px;}
.y5f{bottom:316.395000px;}
.yaa{bottom:322.845000px;}
.y33{bottom:331.080000px;}
.y81{bottom:338.595000px;}
.yf6{bottom:339.795000px;}
.y5e{bottom:340.245000px;}
.yd0{bottom:341.130000px;}
.ya9{bottom:346.695000px;}
.y32{bottom:354.945000px;}
.y80{bottom:362.445000px;}
.yf5{bottom:363.645000px;}
.y5d{bottom:364.995000px;}
.ycf{bottom:365.445000px;}
.ya8{bottom:370.395000px;}
.y31{bottom:378.645000px;}
.y7f{bottom:386.325000px;}
.yf4{bottom:387.525000px;}
.yce{bottom:389.475000px;}
.y5c{bottom:393.375000px;}
.ya7{bottom:394.275000px;}
.y30{bottom:402.525000px;}
.y7e{bottom:410.025000px;}
.yf3{bottom:411.225000px;}
.ycd{bottom:413.475000px;}
.ya6{bottom:418.125000px;}
.y5b{bottom:418.275000px;}
.y2f{bottom:426.375000px;}
.y7d{bottom:433.875000px;}
.yf2{bottom:435.075000px;}
.ycc{bottom:437.325000px;}
.ya5{bottom:442.125000px;}
.y5a{bottom:446.475000px;}
.y2e{bottom:450.075000px;}
.ycb{bottom:457.275000px;}
.y7c{bottom:457.725000px;}
.yf1{bottom:458.925000px;}
.ya4{bottom:466.125000px;}
.y59{bottom:470.325000px;}
.y2d{bottom:473.925000px;}
.y7b{bottom:481.425000px;}
.yf0{bottom:482.775000px;}
.y109{bottom:483.825000px;}
.ya3{bottom:489.975000px;}
.y58{bottom:494.175000px;}
.y2c{bottom:497.775000px;}
.y7a{bottom:505.275000px;}
.yef{bottom:506.475000px;}
.y108{bottom:507.525000px;}
.ya2{bottom:513.975000px;}
.y57{bottom:517.875000px;}
.y2b{bottom:521.475000px;}
.y79{bottom:529.125000px;}
.yee{bottom:530.325000px;}
.y107{bottom:531.375000px;}
.ya1{bottom:541.125000px;}
.y56{bottom:541.725000px;}
.y2a{bottom:545.325000px;}
.y78{bottom:552.825000px;}
.yed{bottom:554.175000px;}
.y106{bottom:555.225000px;}
.ya0{bottom:564.975000px;}
.y55{bottom:565.575000px;}
.y29{bottom:569.175000px;}
.y77{bottom:576.675000px;}
.yec{bottom:577.875000px;}
.y105{bottom:579.075000px;}
.y9f{bottom:589.125000px;}
.y54{bottom:589.275000px;}
.y76{bottom:600.525000px;}
.yeb{bottom:601.725000px;}
.y28{bottom:601.875000px;}
.y104{bottom:602.775000px;}
.y9e{bottom:612.975000px;}
.y53{bottom:613.125000px;}
.y27{bottom:618.675000px;}
.y75{bottom:624.225000px;}
.yea{bottom:625.575000px;}
.y103{bottom:626.625000px;}
.y9d{bottom:636.675000px;}
.y52{bottom:636.975000px;}
.y74{bottom:648.075000px;}
.ye9{bottom:649.275000px;}
.y102{bottom:650.475000px;}
.y26{bottom:660.075000px;}
.y51{bottom:660.675000px;}
.y73{bottom:671.925000px;}
.ye8{bottom:673.125000px;}
.y101{bottom:674.175000px;}
.yca{bottom:680.325000px;}
.y1d{bottom:680.775000px;}
.y50{bottom:683.625000px;}
.y9c{bottom:684.975000px;}
.yc9{bottom:689.325000px;}
.y4f{bottom:692.625000px;}
.y72{bottom:695.625000px;}
.ye7{bottom:696.975000px;}
.y100{bottom:698.025000px;}
.y9b{bottom:709.275000px;}
.y71{bottom:719.475000px;}
.ye6{bottom:720.675000px;}
.yc8{bottom:721.275000px;}
.y4e{bottom:721.875000px;}
.y9a{bottom:733.275000px;}
.y70{bottom:743.520000px;}
.ye5{bottom:744.570000px;}
.yc7{bottom:745.170000px;}
.y4d{bottom:745.620000px;}
.y99{bottom:757.170000px;}
.y6f{bottom:767.820000px;}
.ye4{bottom:768.420000px;}
.yc6{bottom:768.870000px;}
.y4c{bottom:769.470000px;}
.y98{bottom:781.020000px;}
.y6e{bottom:791.820000px;}
.ye3{bottom:792.120000px;}
.yc5{bottom:792.705000px;}
.y4b{bottom:793.320000px;}
.y97{bottom:805.020000px;}
.y6d{bottom:815.670000px;}
.ye2{bottom:815.955000px;}
.yc4{bottom:816.570000px;}
.y4a{bottom:817.020000px;}
.y96{bottom:829.020000px;}
.y6c{bottom:839.520000px;}
.ye1{bottom:839.820000px;}
.yc3{bottom:840.270000px;}
.y49{bottom:840.870000px;}
.y1c{bottom:850.020000px;}
.y95{bottom:852.870000px;}
.y6b{bottom:863.220000px;}
.ye0{bottom:863.520000px;}
.yc2{bottom:864.120000px;}
.y48{bottom:864.720000px;}
.y1b{bottom:869.220000px;}
.y94{bottom:876.720000px;}
.y6a{bottom:887.070000px;}
.ydf{bottom:887.370000px;}
.yc1{bottom:887.970000px;}
.y47{bottom:888.420000px;}
.y1a{bottom:889.920000px;}
.y93{bottom:900.420000px;}
.y19{bottom:910.620000px;}
.y69{bottom:911.070000px;}
.yde{bottom:911.220000px;}
.yc0{bottom:911.670000px;}
.y46{bottom:912.270000px;}
.y92{bottom:924.270000px;}
.y18{bottom:931.320000px;}
.ybf{bottom:931.770000px;}
.ydd{bottom:935.070000px;}
.y68{bottom:935.370000px;}
.y45{bottom:936.120000px;}
.ybd{bottom:939.870000px;}
.y91{bottom:948.270000px;}
.ybe{bottom:951.120000px;}
.y17{bottom:952.020000px;}
.ydc{bottom:958.770000px;}
.y67{bottom:959.670000px;}
.y44{bottom:959.970000px;}
.ybc{bottom:968.670000px;}
.y90{bottom:972.270000px;}
.y16{bottom:972.720000px;}
.ydb{bottom:982.620000px;}
.y43{bottom:983.670000px;}
.ybb{bottom:992.670000px;}
.y15{bottom:993.420000px;}
.y8f{bottom:996.270000px;}
.yda{bottom:1006.470000px;}
.y42{bottom:1007.520000px;}
.y14{bottom:1014.120000px;}
.yba{bottom:1016.970000px;}
.y8e{bottom:1020.420000px;}
.yd9{bottom:1030.170000px;}
.y41{bottom:1031.370000px;}
.y13{bottom:1034.820000px;}
.yb9{bottom:1041.270000px;}
.y8d{bottom:1044.270000px;}
.yd8{bottom:1050.120000px;}
.y40{bottom:1055.070000px;}
.y12{bottom:1055.520000px;}
.yb8{bottom:1061.670000px;}
.y8c{bottom:1067.970000px;}
.y11{bottom:1076.220000px;}
.y3f{bottom:1078.920000px;}
.yb7{bottom:1082.820000px;}
.yb6{bottom:1083.870000px;}
.y8b{bottom:1089.420000px;}
.y8a{bottom:1098.450000px;}
.y3e{bottom:1102.800000px;}
.y10{bottom:1108.950000px;}
.yb5{bottom:1126.050000px;}
.y3d{bottom:1126.500000px;}
.yf{bottom:1129.650000px;}
.yb4{bottom:1150.050000px;}
.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;}
.h1f{height:52.628906px;}
.h7{height:52.998047px;}
.h5{height:55.942383px;}
.h4{height:58.886719px;}
.hf{height:63.457031px;}
.hd{height:64.775391px;}
.h9{height:65.645508px;}
.h1e{height:70.628906px;}
.hc{height:70.664062px;}
.hb{height:72.562500px;}
.h17{height:74.004654px;}
.h2{height:82.441406px;}
.h1a{height:89.922363px;}
.h1b{height:103.064063px;}
.h16{height:106.784062px;}
.h15{height:126.949219px;}
.h14{height:127.549219px;}
.h12{height:131.922363px;}
.h1c{height:147.349219px;}
.h13{height:162.949219px;}
.he{height:165.645000px;}
.h1d{height:183.349219px;}
.h18{height:207.469219px;}
.h19{height:215.149219px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w6{width:178.350000px;}
.w5{width:262.995000px;}
.w3{width:282.495000px;}
.w4{width:297.780000px;}
.w7{width:745.770000px;}
.w8{width:750.270000px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:6.900000px;}
.x9{left:12.435000px;}
.x7{left:16.200000px;}
.xe{left:17.295000px;}
.x1f{left:20.887500px;}
.x5{left:22.200000px;}
.xb{left:32.100000px;}
.x3{left:42.599987px;}
.x2c{left:47.549987px;}
.x2d{left:74.549987px;}
.x10{left:83.699987px;}
.x20{left:95.699987px;}
.x1e{left:100.200000px;}
.x1d{left:104.700000px;}
.xd{left:106.980000px;}
.x6{left:121.687500px;}
.x25{left:122.737487px;}
.xa{left:128.130000px;}
.x24{left:130.987487px;}
.x23{left:132.187487px;}
.x11{left:143.887487px;}
.x1{left:303.494987px;}
.x8{left:305.145000px;}
.x12{left:359.444987px;}
.x2b{left:434.174987px;}
.x1b{left:451.874987px;}
.x22{left:457.274987px;}
.x2f{left:462.224987px;}
.x14{left:464.924987px;}
.x2a{left:479.624987px;}
.x2e{left:489.224987px;}
.x1a{left:507.824987px;}
.x21{left:510.374987px;}
.x15{left:517.124987px;}
.x19{left:536.024987px;}
.x27{left:537.374987px;}
.x13{left:562.124987px;}
.x1c{left:567.974987px;}
.x26{left:587.174987px;}
.x16{left:616.574987px;}
.xc{left:625.425000px;}
.x28{left:632.774987px;}
.x17{left:638.219987px;}
.xf{left:713.655000px;}
.x29{left:763.454987px;}
.x2{left:829.619987px;}
.x18{left:850.619987px;}
@media print{
.v7{vertical-align:-24.000000pt;}
.v12{vertical-align:-18.133333pt;}
.v5{vertical-align:-16.000000pt;}
.v3{vertical-align:-12.800000pt;}
.v8{vertical-align:-3.200000pt;}
.v9{vertical-align:-2.133333pt;}
.va{vertical-align:-1.066667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:12.800000pt;}
.vf{vertical-align:18.133333pt;}
.vb{vertical-align:19.200000pt;}
.ve{vertical-align:28.800000pt;}
.v2{vertical-align:32.000000pt;}
.v10{vertical-align:34.666667pt;}
.v15{vertical-align:36.266667pt;}
.v1{vertical-align:37.333333pt;}
.v6{vertical-align:40.000000pt;}
.v11{vertical-align:50.133333pt;}
.v13{vertical-align:66.666667pt;}
.v14{vertical-align:69.333333pt;}
.vc{vertical-align:71.573333pt;}
.vd{vertical-align:78.400000pt;}
.lsb{letter-spacing:-2.666667pt;}
.lsd{letter-spacing:-2.661333pt;}
.lsa{letter-spacing:-2.656000pt;}
.lsc{letter-spacing:-2.400000pt;}
.ls23{letter-spacing:-0.192000pt;}
.ls41{letter-spacing:-0.114667pt;}
.ls43{letter-spacing:-0.021333pt;}
.ls9{letter-spacing:-0.010667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.021333pt;}
.lse{letter-spacing:0.029333pt;}
.ls2c{letter-spacing:0.032000pt;}
.ls3c{letter-spacing:0.053333pt;}
.ls25{letter-spacing:0.082667pt;}
.ls21{letter-spacing:0.085333pt;}
.ls0{letter-spacing:0.106667pt;}
.ls8{letter-spacing:0.133333pt;}
.ls22{letter-spacing:0.138667pt;}
.ls3a{letter-spacing:0.213333pt;}
.ls3b{letter-spacing:0.242667pt;}
.ls2{letter-spacing:0.266667pt;}
.ls38{letter-spacing:0.277333pt;}
.ls24{letter-spacing:0.533333pt;}
.ls4{letter-spacing:0.586667pt;}
.ls2d{letter-spacing:1.685333pt;}
.ls2e{letter-spacing:2.018667pt;}
.ls3d{letter-spacing:2.058667pt;}
.ls15{letter-spacing:2.498667pt;}
.lsf{letter-spacing:2.552000pt;}
.ls26{letter-spacing:2.605333pt;}
.ls16{letter-spacing:3.032000pt;}
.ls10{letter-spacing:3.085333pt;}
.ls3e{letter-spacing:3.608000pt;}
.ls36{letter-spacing:3.698667pt;}
.ls2f{letter-spacing:3.773333pt;}
.ls2a{letter-spacing:3.821333pt;}
.ls1d{letter-spacing:3.874667pt;}
.ls40{letter-spacing:3.890667pt;}
.ls1c{letter-spacing:3.928000pt;}
.ls29{letter-spacing:4.301333pt;}
.ls1b{letter-spacing:4.354667pt;}
.ls31{letter-spacing:4.514667pt;}
.ls5{letter-spacing:6.453333pt;}
.ls19{letter-spacing:14.058667pt;}
.ls13{letter-spacing:14.645333pt;}
.ls39{letter-spacing:14.818667pt;}
.ls14{letter-spacing:16.365333pt;}
.ls1a{letter-spacing:16.418667pt;}
.ls3f{letter-spacing:16.578667pt;}
.ls12{letter-spacing:16.898667pt;}
.ls27{letter-spacing:16.925333pt;}
.ls17{letter-spacing:16.952000pt;}
.ls11{letter-spacing:17.005333pt;}
.ls18{letter-spacing:17.538667pt;}
.ls33{letter-spacing:17.792000pt;}
.ls2b{letter-spacing:20.152000pt;}
.ls34{letter-spacing:20.205333pt;}
.ls1f{letter-spacing:20.632000pt;}
.ls20{letter-spacing:20.685333pt;}
.ls1e{letter-spacing:20.738667pt;}
.ls6{letter-spacing:21.280000pt;}
.ls28{letter-spacing:21.901333pt;}
.ls32{letter-spacing:21.954667pt;}
.ls42{letter-spacing:30.208000pt;}
.ls37{letter-spacing:56.874667pt;}
.ls30{letter-spacing:57.008000pt;}
.ls35{letter-spacing:87.274667pt;}
.wsf{word-spacing:-16.021333pt;}
.ws9{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.808000pt;}
.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;}
.ws11{word-spacing:-11.600000pt;}
.ws10{word-spacing:-11.333333pt;}
.ws6{word-spacing:-9.344000pt;}
.ws8{word-spacing:-9.338667pt;}
.ws7{word-spacing:-9.333333pt;}
.ws14{word-spacing:-0.170667pt;}
.wsd{word-spacing:-0.074667pt;}
.wsc{word-spacing:-0.064000pt;}
.wse{word-spacing:-0.045333pt;}
.wsa{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.069333pt;}
.ws1b{word-spacing:8.632000pt;}
.ws13{word-spacing:8.840000pt;}
.ws1d{word-spacing:9.218667pt;}
.ws1c{word-spacing:9.378667pt;}
.ws18{word-spacing:20.106667pt;}
.ws12{word-spacing:45.594667pt;}
.ws15{word-spacing:87.680000pt;}
.ws16{word-spacing:88.213333pt;}
.ws17{word-spacing:88.320000pt;}
.ws19{word-spacing:186.666667pt;}
._2e{margin-left:-13.952000pt;}
._2b{margin-left:-11.669333pt;}
._2c{margin-left:-10.117333pt;}
._2d{margin-left:-9.221333pt;}
._2f{margin-left:-8.114667pt;}
._37{margin-left:-7.146667pt;}
._9{margin-left:-3.776000pt;}
._2{margin-left:-2.880000pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._0{width:0.933333pt;}
._4{width:2.165333pt;}
._7{width:3.200000pt;}
._8{width:4.250667pt;}
._f{width:5.760000pt;}
._10{width:6.656000pt;}
._11{width:8.320000pt;}
._5{width:9.344000pt;}
._6{width:10.304000pt;}
._14{width:11.712000pt;}
._12{width:13.440000pt;}
._17{width:14.464000pt;}
._38{width:16.090667pt;}
._26{width:17.570667pt;}
._b{width:18.880000pt;}
._c{width:20.352000pt;}
._18{width:22.080000pt;}
._16{width:22.976000pt;}
._1b{width:24.192000pt;}
._13{width:25.088000pt;}
._1f{width:26.496000pt;}
._20{width:27.648000pt;}
._3b{width:28.672000pt;}
._2a{width:30.016000pt;}
._19{width:31.040000pt;}
._1a{width:32.026667pt;}
._4b{width:33.088000pt;}
._30{width:34.664000pt;}
._24{width:37.312000pt;}
._15{width:38.421333pt;}
._25{width:39.594667pt;}
._e{width:40.960000pt;}
._23{width:43.008000pt;}
._44{width:44.352000pt;}
._31{width:46.202667pt;}
._4e{width:47.808000pt;}
._29{width:49.269333pt;}
._a{width:50.442667pt;}
._36{width:52.992000pt;}
._1d{width:53.888000pt;}
._1e{width:55.168000pt;}
._1c{width:56.554667pt;}
._21{width:57.728000pt;}
._22{width:58.752000pt;}
._46{width:60.288000pt;}
._32{width:61.632000pt;}
._3a{width:62.962667pt;}
._d{width:64.064000pt;}
._3e{width:70.746667pt;}
._43{width:71.936000pt;}
._35{width:73.600000pt;}
._3c{width:75.072000pt;}
._33{width:75.968000pt;}
._34{width:77.120000pt;}
._39{width:85.472000pt;}
._4c{width:86.464000pt;}
._4d{width:87.658667pt;}
._3d{width:89.408000pt;}
._4a{width:91.456000pt;}
._42{width:95.856000pt;}
._4f{width:99.072000pt;}
._53{width:106.688000pt;}
._54{width:107.648000pt;}
._40{width:109.098667pt;}
._48{width:112.277333pt;}
._47{width:113.365333pt;}
._49{width:137.312000pt;}
._41{width:138.624000pt;}
._27{width:145.565333pt;}
._3f{width:153.930667pt;}
._45{width:171.248000pt;}
._28{width:172.853333pt;}
._52{width:221.888000pt;}
._51{width:265.536000pt;}
._50{width:530.944000pt;}
.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;}
.y25{bottom:3.466667pt;}
.y7{bottom:4.800000pt;}
.yb{bottom:5.333333pt;}
.yc{bottom:6.000000pt;}
.ya{bottom:17.733333pt;}
.y6{bottom:18.266667pt;}
.y24{bottom:21.866667pt;}
.y9{bottom:30.133333pt;}
.y5{bottom:32.000000pt;}
.y23{bottom:40.266667pt;}
.y3{bottom:51.233333pt;}
.y22{bottom:58.706667pt;}
.y2{bottom:72.566667pt;}
.y21{bottom:77.106667pt;}
.y20{bottom:95.506667pt;}
.yb3{bottom:96.566667pt;}
.y3c{bottom:103.900000pt;}
.yff{bottom:111.633333pt;}
.y1f{bottom:113.906667pt;}
.yb2{bottom:117.766667pt;}
.y3b{bottom:124.966667pt;}
.y89{bottom:128.833333pt;}
.y1e{bottom:132.306667pt;}
.yfe{bottom:132.833333pt;}
.y66{bottom:133.100000pt;}
.yb1{bottom:138.840000pt;}
.yd7{bottom:145.106667pt;}
.y3a{bottom:146.160000pt;}
.y88{bottom:152.560000pt;}
.yfd{bottom:154.040000pt;}
.y65{bottom:154.306667pt;}
.yb0{bottom:160.040000pt;}
.yd6{bottom:166.306667pt;}
.y39{bottom:167.373333pt;}
.y87{bottom:174.040000pt;}
.yfc{bottom:175.106667pt;}
.y64{bottom:175.506667pt;}
.yaf{bottom:181.240000pt;}
.yd5{bottom:187.373333pt;}
.y38{bottom:188.560000pt;}
.y86{bottom:195.226667pt;}
.yfb{bottom:196.306667pt;}
.y63{bottom:196.706667pt;}
.yae{bottom:202.306667pt;}
.y37{bottom:209.640000pt;}
.yd4{bottom:210.840000pt;}
.y85{bottom:216.293333pt;}
.yfa{bottom:217.506667pt;}
.y62{bottom:217.773333pt;}
.yad{bottom:223.506667pt;}
.y36{bottom:230.840000pt;}
.yd3{bottom:232.306667pt;}
.y84{bottom:237.506667pt;}
.yf9{bottom:238.573333pt;}
.y61{bottom:238.973333pt;}
.yac{bottom:244.706667pt;}
.y35{bottom:252.040000pt;}
.yd2{bottom:255.773333pt;}
.y83{bottom:258.706667pt;}
.yf8{bottom:259.773333pt;}
.y60{bottom:260.173333pt;}
.yab{bottom:265.773333pt;}
.y34{bottom:273.106667pt;}
.yd1{bottom:279.506667pt;}
.y82{bottom:279.773333pt;}
.yf7{bottom:280.973333pt;}
.y5f{bottom:281.240000pt;}
.yaa{bottom:286.973333pt;}
.y33{bottom:294.293333pt;}
.y81{bottom:300.973333pt;}
.yf6{bottom:302.040000pt;}
.y5e{bottom:302.440000pt;}
.yd0{bottom:303.226667pt;}
.ya9{bottom:308.173333pt;}
.y32{bottom:315.506667pt;}
.y80{bottom:322.173333pt;}
.yf5{bottom:323.240000pt;}
.y5d{bottom:324.440000pt;}
.ycf{bottom:324.840000pt;}
.ya8{bottom:329.240000pt;}
.y31{bottom:336.573333pt;}
.y7f{bottom:343.400000pt;}
.yf4{bottom:344.466667pt;}
.yce{bottom:346.200000pt;}
.y5c{bottom:349.666667pt;}
.ya7{bottom:350.466667pt;}
.y30{bottom:357.800000pt;}
.y7e{bottom:364.466667pt;}
.yf3{bottom:365.533333pt;}
.ycd{bottom:367.533333pt;}
.ya6{bottom:371.666667pt;}
.y5b{bottom:371.800000pt;}
.y2f{bottom:379.000000pt;}
.y7d{bottom:385.666667pt;}
.yf2{bottom:386.733333pt;}
.ycc{bottom:388.733333pt;}
.ya5{bottom:393.000000pt;}
.y5a{bottom:396.866667pt;}
.y2e{bottom:400.066667pt;}
.ycb{bottom:406.466667pt;}
.y7c{bottom:406.866667pt;}
.yf1{bottom:407.933333pt;}
.ya4{bottom:414.333333pt;}
.y59{bottom:418.066667pt;}
.y2d{bottom:421.266667pt;}
.y7b{bottom:427.933333pt;}
.yf0{bottom:429.133333pt;}
.y109{bottom:430.066667pt;}
.ya3{bottom:435.533333pt;}
.y58{bottom:439.266667pt;}
.y2c{bottom:442.466667pt;}
.y7a{bottom:449.133333pt;}
.yef{bottom:450.200000pt;}
.y108{bottom:451.133333pt;}
.ya2{bottom:456.866667pt;}
.y57{bottom:460.333333pt;}
.y2b{bottom:463.533333pt;}
.y79{bottom:470.333333pt;}
.yee{bottom:471.400000pt;}
.y107{bottom:472.333333pt;}
.ya1{bottom:481.000000pt;}
.y56{bottom:481.533333pt;}
.y2a{bottom:484.733333pt;}
.y78{bottom:491.400000pt;}
.yed{bottom:492.600000pt;}
.y106{bottom:493.533333pt;}
.ya0{bottom:502.200000pt;}
.y55{bottom:502.733333pt;}
.y29{bottom:505.933333pt;}
.y77{bottom:512.600000pt;}
.yec{bottom:513.666667pt;}
.y105{bottom:514.733333pt;}
.y9f{bottom:523.666667pt;}
.y54{bottom:523.800000pt;}
.y76{bottom:533.800000pt;}
.yeb{bottom:534.866667pt;}
.y28{bottom:535.000000pt;}
.y104{bottom:535.800000pt;}
.y9e{bottom:544.866667pt;}
.y53{bottom:545.000000pt;}
.y27{bottom:549.933333pt;}
.y75{bottom:554.866667pt;}
.yea{bottom:556.066667pt;}
.y103{bottom:557.000000pt;}
.y9d{bottom:565.933333pt;}
.y52{bottom:566.200000pt;}
.y74{bottom:576.066667pt;}
.ye9{bottom:577.133333pt;}
.y102{bottom:578.200000pt;}
.y26{bottom:586.733333pt;}
.y51{bottom:587.266667pt;}
.y73{bottom:597.266667pt;}
.ye8{bottom:598.333333pt;}
.y101{bottom:599.266667pt;}
.yca{bottom:604.733333pt;}
.y1d{bottom:605.133333pt;}
.y50{bottom:607.666667pt;}
.y9c{bottom:608.866667pt;}
.yc9{bottom:612.733333pt;}
.y4f{bottom:615.666667pt;}
.y72{bottom:618.333333pt;}
.ye7{bottom:619.533333pt;}
.y100{bottom:620.466667pt;}
.y9b{bottom:630.466667pt;}
.y71{bottom:639.533333pt;}
.ye6{bottom:640.600000pt;}
.yc8{bottom:641.133333pt;}
.y4e{bottom:641.666667pt;}
.y9a{bottom:651.800000pt;}
.y70{bottom:660.906667pt;}
.ye5{bottom:661.840000pt;}
.yc7{bottom:662.373333pt;}
.y4d{bottom:662.773333pt;}
.y99{bottom:673.040000pt;}
.y6f{bottom:682.506667pt;}
.ye4{bottom:683.040000pt;}
.yc6{bottom:683.440000pt;}
.y4c{bottom:683.973333pt;}
.y98{bottom:694.240000pt;}
.y6e{bottom:703.840000pt;}
.ye3{bottom:704.106667pt;}
.yc5{bottom:704.626667pt;}
.y4b{bottom:705.173333pt;}
.y97{bottom:715.573333pt;}
.y6d{bottom:725.040000pt;}
.ye2{bottom:725.293333pt;}
.yc4{bottom:725.840000pt;}
.y4a{bottom:726.240000pt;}
.y96{bottom:736.906667pt;}
.y6c{bottom:746.240000pt;}
.ye1{bottom:746.506667pt;}
.yc3{bottom:746.906667pt;}
.y49{bottom:747.440000pt;}
.y1c{bottom:755.573333pt;}
.y95{bottom:758.106667pt;}
.y6b{bottom:767.306667pt;}
.ye0{bottom:767.573333pt;}
.yc2{bottom:768.106667pt;}
.y48{bottom:768.640000pt;}
.y1b{bottom:772.640000pt;}
.y94{bottom:779.306667pt;}
.y6a{bottom:788.506667pt;}
.ydf{bottom:788.773333pt;}
.yc1{bottom:789.306667pt;}
.y47{bottom:789.706667pt;}
.y1a{bottom:791.040000pt;}
.y93{bottom:800.373333pt;}
.y19{bottom:809.440000pt;}
.y69{bottom:809.840000pt;}
.yde{bottom:809.973333pt;}
.yc0{bottom:810.373333pt;}
.y46{bottom:810.906667pt;}
.y92{bottom:821.573333pt;}
.y18{bottom:827.840000pt;}
.ybf{bottom:828.240000pt;}
.ydd{bottom:831.173333pt;}
.y68{bottom:831.440000pt;}
.y45{bottom:832.106667pt;}
.ybd{bottom:835.440000pt;}
.y91{bottom:842.906667pt;}
.ybe{bottom:845.440000pt;}
.y17{bottom:846.240000pt;}
.ydc{bottom:852.240000pt;}
.y67{bottom:853.040000pt;}
.y44{bottom:853.306667pt;}
.ybc{bottom:861.040000pt;}
.y90{bottom:864.240000pt;}
.y16{bottom:864.640000pt;}
.ydb{bottom:873.440000pt;}
.y43{bottom:874.373333pt;}
.ybb{bottom:882.373333pt;}
.y15{bottom:883.040000pt;}
.y8f{bottom:885.573333pt;}
.yda{bottom:894.640000pt;}
.y42{bottom:895.573333pt;}
.y14{bottom:901.440000pt;}
.yba{bottom:903.973333pt;}
.y8e{bottom:907.040000pt;}
.yd9{bottom:915.706667pt;}
.y41{bottom:916.773333pt;}
.y13{bottom:919.840000pt;}
.yb9{bottom:925.573333pt;}
.y8d{bottom:928.240000pt;}
.yd8{bottom:933.440000pt;}
.y40{bottom:937.840000pt;}
.y12{bottom:938.240000pt;}
.yb8{bottom:943.706667pt;}
.y8c{bottom:949.306667pt;}
.y11{bottom:956.640000pt;}
.y3f{bottom:959.040000pt;}
.yb7{bottom:962.506667pt;}
.yb6{bottom:963.440000pt;}
.y8b{bottom:968.373333pt;}
.y8a{bottom:976.400000pt;}
.y3e{bottom:980.266667pt;}
.y10{bottom:985.733333pt;}
.yb5{bottom:1000.933333pt;}
.y3d{bottom:1001.333333pt;}
.yf{bottom:1004.133333pt;}
.yb4{bottom:1022.266667pt;}
.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;}
.h1f{height:46.781250pt;}
.h7{height:47.109375pt;}
.h5{height:49.726562pt;}
.h4{height:52.343750pt;}
.hf{height:56.406250pt;}
.hd{height:57.578125pt;}
.h9{height:58.351562pt;}
.h1e{height:62.781250pt;}
.hc{height:62.812500pt;}
.hb{height:64.500000pt;}
.h17{height:65.781915pt;}
.h2{height:73.281250pt;}
.h1a{height:79.930990pt;}
.h1b{height:91.612500pt;}
.h16{height:94.919167pt;}
.h15{height:112.843750pt;}
.h14{height:113.377083pt;}
.h12{height:117.264323pt;}
.h1c{height:130.977083pt;}
.h13{height:144.843750pt;}
.he{height:147.240000pt;}
.h1d{height:162.977083pt;}
.h18{height:184.417083pt;}
.h19{height:191.243750pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w6{width:158.533333pt;}
.w5{width:233.773333pt;}
.w3{width:251.106667pt;}
.w4{width:264.693333pt;}
.w7{width:662.906667pt;}
.w8{width:666.906667pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.133333pt;}
.x9{left:11.053333pt;}
.x7{left:14.400000pt;}
.xe{left:15.373333pt;}
.x1f{left:18.566667pt;}
.x5{left:19.733333pt;}
.xb{left:28.533333pt;}
.x3{left:37.866655pt;}
.x2c{left:42.266655pt;}
.x2d{left:66.266655pt;}
.x10{left:74.399988pt;}
.x20{left:85.066655pt;}
.x1e{left:89.066667pt;}
.x1d{left:93.066667pt;}
.xd{left:95.093333pt;}
.x6{left:108.166667pt;}
.x25{left:109.099988pt;}
.xa{left:113.893333pt;}
.x24{left:116.433322pt;}
.x23{left:117.499988pt;}
.x11{left:127.899988pt;}
.x1{left:269.773322pt;}
.x8{left:271.240000pt;}
.x12{left:319.506655pt;}
.x2b{left:385.933322pt;}
.x1b{left:401.666655pt;}
.x22{left:406.466655pt;}
.x2f{left:410.866655pt;}
.x14{left:413.266655pt;}
.x2a{left:426.333322pt;}
.x2e{left:434.866655pt;}
.x1a{left:451.399988pt;}
.x21{left:453.666655pt;}
.x15{left:459.666655pt;}
.x19{left:476.466655pt;}
.x27{left:477.666655pt;}
.x13{left:499.666655pt;}
.x1c{left:504.866655pt;}
.x26{left:521.933322pt;}
.x16{left:548.066655pt;}
.xc{left:555.933333pt;}
.x28{left:562.466655pt;}
.x17{left:567.306655pt;}
.xf{left:634.360000pt;}
.x29{left:678.626655pt;}
.x2{left:737.439988pt;}
.x18{left:756.106655pt;}
}




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