
    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_9a3c02aa35591d19ebbdda20.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_841ba4af508503ede5ad490f.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6c8e98afefd08ed52cf224e8.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_fd70c73993729615b3b97e69.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_0d1f0ccadc11ebd248edb160.woff')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_8b5bbe77055747f9ff8d10fb.woff')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_74ebb840f62df1bd9fbb3c27.woff')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_ce47e740f0e1c175626baf48.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_7c81f171daa5c5b355fdd3d1.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_707d9b400e5eea5dd4a81a35.woff')format("woff");}.ffc{font-family:ffc;line-height:0.923340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_49a06f6fc50656f6be8ade91.woff')format("woff");}.ffd{font-family:ffd;line-height:0.923340;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:ffe;src:url('chunks/assets/font_99e773f1f8e48aab06fbd073.woff')format("woff");}.ffe{font-family:ffe;line-height:0.938965;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:fff;src:url('chunks/assets/font_3e0c1c3cd8fc1223a8924dec.woff')format("woff");}.fff{font-family:fff;line-height:0.938965;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:ff10;src:url('chunks/assets/font_1c098ac72e45d5c2a3c88d19.woff')format("woff");}.ff10{font-family:ff10;line-height:0.934082;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:ff11;src:url('chunks/assets/font_05c22191a95cde53dd4f5644.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff12{font-family:ff12;line-height:0.739746;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:ff13;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff13{font-family:ff13;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;}
.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;}
.v2{vertical-align:15.120000px;}
.v1{vertical-align:20.880000px;}
.lsa{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.018000px;}
.ls8{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.lse{letter-spacing:0.053280px;}
.lsd{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.132600px;}
.ls6{letter-spacing:0.174240px;}
.ls1{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.243600px;}
.ls3{letter-spacing:0.259920px;}
.ls10{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.480000px;}
.ls4{letter-spacing:0.786240px;}
.lsf{letter-spacing:16.506720px;}
.lsb{letter-spacing:46.026720px;}
.lsc{letter-spacing:64.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-59.760000px;}
.ws3{word-spacing:-16.626360px;}
.ws4{word-spacing:-16.493760px;}
.ws2{word-spacing:-16.488000px;}
.ws7{word-spacing:-15.300000px;}
.wse{word-spacing:-15.238800px;}
.wsd{word-spacing:-14.993280px;}
.ws8{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.580000px;}
.wsa{word-spacing:-13.505760px;}
.ws1{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.186000px;}
.ws5{word-spacing:-8.786880px;}
.ws6{word-spacing:-8.136000px;}
.wsb{word-spacing:0.000000px;}
._4{margin-left:-6.346800px;}
._3{margin-left:-5.263680px;}
._14{margin-left:-4.188240px;}
._2{margin-left:-3.156240px;}
._15{margin-left:-2.142240px;}
._0{margin-left:-1.140000px;}
._1{width:1.656000px;}
._d{width:3.373200px;}
._11{width:4.960080px;}
._e{width:6.521760px;}
._9{width:8.474880px;}
._8{width:9.740880px;}
._f{width:10.774080px;}
._b{width:11.969280px;}
._c{width:13.106160px;}
._10{width:16.108560px;}
._5{width:17.228160px;}
._a{width:18.704880px;}
._6{width:19.720800px;}
._12{width:22.350240px;}
._18{width:23.962800px;}
._13{width:25.479600px;}
._7{width:27.370080px;}
._16{width:28.761840px;}
._17{width:120.057840px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3d{bottom:3.240000px;}
.y3{bottom:3.636000px;}
.y42{bottom:3.960000px;}
.ye{bottom:9.540000px;}
.y40{bottom:10.620000px;}
.y19{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.y17{bottom:14.580000px;}
.y4{bottom:15.876000px;}
.y2{bottom:20.196000px;}
.yb1{bottom:20.340000px;}
.y3c{bottom:20.520000px;}
.ybf{bottom:20.550000px;}
.yc7{bottom:20.565000px;}
.y41{bottom:22.140000px;}
.y3f{bottom:25.200000px;}
.yb{bottom:30.240000px;}
.y16{bottom:31.140000px;}
.yba{bottom:37.620000px;}
.ycc{bottom:37.794000px;}
.y3b{bottom:37.800000px;}
.ybe{bottom:37.830000px;}
.y5{bottom:45.900000px;}
.ya{bottom:46.440000px;}
.y15{bottom:47.520000px;}
.yb9{bottom:54.900000px;}
.y3a{bottom:55.080000px;}
.ybd{bottom:55.110000px;}
.y14{bottom:63.720000px;}
.y1{bottom:66.960000px;}
.y39{bottom:72.180000px;}
.y9{bottom:73.440000px;}
.y13{bottom:79.020000px;}
.y38{bottom:89.460000px;}
.y8{bottom:93.090000px;}
.y12{bottom:98.100000px;}
.y37{bottom:106.740000px;}
.y7{bottom:111.270000px;}
.y100{bottom:112.536000px;}
.y28{bottom:113.400000px;}
.ycb{bottom:114.516000px;}
.y55{bottom:118.656000px;}
.y11{bottom:123.840000px;}
.y36{bottom:124.050000px;}
.yaf{bottom:125.316000px;}
.y27{bottom:128.730000px;}
.yff{bottom:129.816000px;}
.y11f{bottom:132.876000px;}
.y54{bottom:135.936000px;}
.y35{bottom:141.330000px;}
.yae{bottom:142.596000px;}
.y26{bottom:146.190000px;}
.yfe{bottom:147.096000px;}
.y10{bottom:148.140000px;}
.y11e{bottom:149.976000px;}
.y53{bottom:153.210000px;}
.y34{bottom:158.610000px;}
.yad{bottom:159.690000px;}
.y25{bottom:163.470000px;}
.yfd{bottom:164.370000px;}
.yca{bottom:167.070000px;}
.y11d{bottom:167.250000px;}
.y52{bottom:170.490000px;}
.y33{bottom:175.710000px;}
.yac{bottom:176.970000px;}
.y24{bottom:180.750000px;}
.y8d{bottom:181.290000px;}
.yfc{bottom:181.470000px;}
.y11c{bottom:184.530000px;}
.y51{bottom:187.590000px;}
.y32{bottom:192.990000px;}
.yab{bottom:194.250000px;}
.y23{bottom:198.570000px;}
.yfb{bottom:198.750000px;}
.y11b{bottom:201.810000px;}
.y50{bottom:204.870000px;}
.y31{bottom:210.270000px;}
.yaa{bottom:211.530000px;}
.y22{bottom:215.850000px;}
.yfa{bottom:216.030000px;}
.y11a{bottom:219.090000px;}
.yc9{bottom:219.630000px;}
.y4f{bottom:222.150000px;}
.y30{bottom:227.550000px;}
.ya9{bottom:228.810000px;}
.y8c{bottom:233.130000px;}
.y21{bottom:233.310000px;}
.y119{bottom:236.370000px;}
.y4e{bottom:239.430000px;}
.y2f{bottom:244.830000px;}
.ya8{bottom:246.090000px;}
.y8b{bottom:250.230000px;}
.yf9{bottom:250.590000px;}
.y20{bottom:250.770000px;}
.y118{bottom:253.470000px;}
.y4d{bottom:256.710000px;}
.y2e{bottom:262.110000px;}
.ya7{bottom:263.190000px;}
.y8a{bottom:267.510000px;}
.yf8{bottom:267.870000px;}
.y1f{bottom:268.050000px;}
.y117{bottom:270.750000px;}
.yc8{bottom:272.010000px;}
.y4c{bottom:273.810000px;}
.y2d{bottom:279.210000px;}
.ya6{bottom:280.470000px;}
.y89{bottom:284.790000px;}
.yf7{bottom:284.970000px;}
.y1e{bottom:285.510000px;}
.y116{bottom:288.030000px;}
.y4b{bottom:291.090000px;}
.y2c{bottom:296.490000px;}
.ya5{bottom:297.750000px;}
.y88{bottom:302.070000px;}
.yf6{bottom:302.250000px;}
.y115{bottom:305.310000px;}
.y1d{bottom:305.850000px;}
.y4a{bottom:308.370000px;}
.y2b{bottom:313.770000px;}
.ya4{bottom:315.030000px;}
.y87{bottom:319.350000px;}
.yf5{bottom:319.530000px;}
.y114{bottom:322.590000px;}
.yc6{bottom:324.570000px;}
.y49{bottom:325.650000px;}
.y2a{bottom:331.050000px;}
.ya3{bottom:332.310000px;}
.y1c{bottom:333.210000px;}
.y86{bottom:336.675000px;}
.yf4{bottom:336.855000px;}
.y113{bottom:339.915000px;}
.y48{bottom:342.975000px;}
.y29{bottom:348.330000px;}
.ya2{bottom:349.455000px;}
.y1b{bottom:351.030000px;}
.y85{bottom:353.775000px;}
.yf3{bottom:354.135000px;}
.y112{bottom:357.015000px;}
.yc5{bottom:359.895000px;}
.y47{bottom:360.255000px;}
.ya1{bottom:366.735000px;}
.y84{bottom:371.055000px;}
.yf2{bottom:371.415000px;}
.y111{bottom:374.295000px;}
.y46{bottom:377.355000px;}
.ya0{bottom:384.015000px;}
.y83{bottom:388.335000px;}
.yf1{bottom:388.515000px;}
.y110{bottom:391.575000px;}
.y45{bottom:394.635000px;}
.yc4{bottom:395.175000px;}
.y9f{bottom:401.295000px;}
.y82{bottom:405.615000px;}
.yf0{bottom:405.795000px;}
.y10f{bottom:408.855000px;}
.y44{bottom:411.915000px;}
.y9e{bottom:418.575000px;}
.y81{bottom:422.895000px;}
.yef{bottom:423.075000px;}
.y10e{bottom:426.135000px;}
.y43{bottom:429.195000px;}
.yc3{bottom:430.275000px;}
.y9d{bottom:435.855000px;}
.y80{bottom:440.175000px;}
.yee{bottom:440.355000px;}
.y3e{bottom:443.235000px;}
.y10d{bottom:443.415000px;}
.y9c{bottom:452.955000px;}
.y7f{bottom:457.275000px;}
.yed{bottom:457.635000px;}
.y10c{bottom:460.515000px;}
.yc2{bottom:465.555000px;}
.y9b{bottom:470.235000px;}
.y7e{bottom:474.555000px;}
.yec{bottom:474.915000px;}
.y10b{bottom:477.795000px;}
.y1a{bottom:479.775000px;}
.y9a{bottom:487.515000px;}
.y7d{bottom:491.835000px;}
.yeb{bottom:492.015000px;}
.y10a{bottom:495.075000px;}
.y99{bottom:504.795000px;}
.y7c{bottom:509.115000px;}
.yea{bottom:509.295000px;}
.y109{bottom:512.355000px;}
.yc1{bottom:518.115000px;}
.y98{bottom:522.075000px;}
.y7b{bottom:526.395000px;}
.ye9{bottom:526.575000px;}
.y108{bottom:529.635000px;}
.y97{bottom:539.355000px;}
.y7a{bottom:543.675000px;}
.ye8{bottom:543.855000px;}
.y107{bottom:546.735000px;}
.y96{bottom:556.455000px;}
.yc0{bottom:556.635000px;}
.y79{bottom:560.775000px;}
.ye7{bottom:561.135000px;}
.y106{bottom:564.015000px;}
.y95{bottom:573.735000px;}
.y78{bottom:578.055000px;}
.ye6{bottom:578.235000px;}
.y105{bottom:581.295000px;}
.ybc{bottom:588.495000px;}
.y94{bottom:591.015000px;}
.y77{bottom:595.335000px;}
.ye5{bottom:595.515000px;}
.y104{bottom:598.575000px;}
.y93{bottom:608.325000px;}
.y76{bottom:612.645000px;}
.ye4{bottom:612.825000px;}
.y103{bottom:615.885000px;}
.y92{bottom:625.605000px;}
.ye3{bottom:630.105000px;}
.y75{bottom:631.005000px;}
.y102{bottom:633.165000px;}
.y91{bottom:642.885000px;}
.ye2{bottom:647.385000px;}
.y74{bottom:649.185000px;}
.y101{bottom:650.265000px;}
.ybb{bottom:658.365000px;}
.y90{bottom:659.985000px;}
.ye1{bottom:664.665000px;}
.y73{bottom:667.545000px;}
.y8f{bottom:677.265000px;}
.ye0{bottom:681.765000px;}
.y72{bottom:684.825000px;}
.y8e{bottom:691.305000px;}
.ydf{bottom:699.045000px;}
.y71{bottom:702.105000px;}
.yb8{bottom:710.925000px;}
.yde{bottom:716.325000px;}
.y70{bottom:719.385000px;}
.ydd{bottom:733.605000px;}
.y6f{bottom:736.665000px;}
.ydc{bottom:750.885000px;}
.y6e{bottom:753.765000px;}
.ydb{bottom:768.165000px;}
.y6d{bottom:771.045000px;}
.yb7{bottom:780.585000px;}
.yda{bottom:785.265000px;}
.y6c{bottom:788.325000px;}
.yd9{bottom:802.545000px;}
.y6b{bottom:805.605000px;}
.yd8{bottom:819.825000px;}
.y6a{bottom:822.885000px;}
.yb6{bottom:833.145000px;}
.yd7{bottom:837.105000px;}
.y69{bottom:839.985000px;}
.y18{bottom:842.145000px;}
.yd6{bottom:854.385000px;}
.y68{bottom:857.265000px;}
.yb5{bottom:871.530000px;}
.yf{bottom:871.710000px;}
.y67{bottom:874.590000px;}
.yb4{bottom:888.810000px;}
.y66{bottom:891.870000px;}
.yb3{bottom:903.570000px;}
.yd5{bottom:906.090000px;}
.y65{bottom:909.150000px;}
.yd4{bottom:923.370000px;}
.y64{bottom:926.430000px;}
.yd3{bottom:940.650000px;}
.y63{bottom:943.530000px;}
.yb2{bottom:956.130000px;}
.yd2{bottom:957.930000px;}
.y62{bottom:960.810000px;}
.yd1{bottom:975.030000px;}
.y61{bottom:978.090000px;}
.yd0{bottom:992.310000px;}
.y60{bottom:995.370000px;}
.ycf{bottom:1007.070000px;}
.yb0{bottom:1008.690000px;}
.y5f{bottom:1012.650000px;}
.y5e{bottom:1029.930000px;}
.yd{bottom:1034.970000px;}
.y5d{bottom:1047.030000px;}
.yce{bottom:1059.630000px;}
.y6{bottom:1060.350000px;}
.y5c{bottom:1064.310000px;}
.y5b{bottom:1081.590000px;}
.y5a{bottom:1098.870000px;}
.y59{bottom:1116.150000px;}
.ycd{bottom:1129.290000px;}
.y58{bottom:1133.430000px;}
.y57{bottom:1150.560000px;}
.y56{bottom:1167.840000px;}
.hc{height:25.020000px;}
.h13{height:29.556000px;}
.h2{height:32.976000px;}
.h1f{height:34.380000px;}
.h24{height:34.560000px;}
.h25{height:34.596000px;}
.h9{height:36.180000px;}
.h1b{height:36.540000px;}
.h19{height:38.818125px;}
.h1d{height:42.164648px;}
.h18{height:42.281367px;}
.h1a{height:43.215117px;}
.h4{height:43.453125px;}
.h1e{height:43.506914px;}
.he{height:44.002969px;}
.h12{height:44.088750px;}
.hb{height:44.820000px;}
.h17{height:45.770625px;}
.h15{height:47.980898px;}
.h1c{height:48.088125px;}
.h20{height:51.660000px;}
.h21{height:51.840000px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h16{height:56.574492px;}
.h10{height:59.439023px;}
.h11{height:61.189805px;}
.hf{height:63.180000px;}
.h6{height:65.884219px;}
.h22{height:68.940000px;}
.h23{height:69.156000px;}
.h8{height:71.613281px;}
.h5{height:73.722656px;}
.h7{height:121.536000px;}
.hd{height:163.260000px;}
.h14{height:362.370000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:73.080000px;}
.wa{width:97.596000px;}
.we{width:99.756000px;}
.w12{width:133.776000px;}
.w16{width:137.376000px;}
.w5{width:151.950000px;}
.wb{width:153.030000px;}
.w14{width:162.750000px;}
.w10{width:174.450000px;}
.w18{width:178.050000px;}
.wc{width:182.730000px;}
.w13{width:185.610000px;}
.wf{width:195.150000px;}
.w17{width:201.450000px;}
.w19{width:210.450000px;}
.w8{width:216.075000px;}
.w15{width:245.190000px;}
.w11{width:257.790000px;}
.wd{width:294.150000px;}
.w9{width:515.055000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:7.560000px;}
.x2{left:8.676000px;}
.x22{left:10.080000px;}
.x13{left:12.600000px;}
.xb{left:15.516000px;}
.xf{left:22.356000px;}
.x20{left:23.616000px;}
.x1b{left:25.920000px;}
.x2a{left:28.980000px;}
.x2e{left:38.880000px;}
.x28{left:40.536000px;}
.x2f{left:42.336000px;}
.xe{left:44.856000px;}
.x24{left:50.580000px;}
.x10{left:51.696000px;}
.x19{left:54.720000px;}
.x1d{left:63.540000px;}
.x2b{left:71.145000px;}
.x1{left:81.000000px;}
.x4{left:98.130000px;}
.x14{left:108.035987px;}
.xd{left:170.130000px;}
.x18{left:180.030000px;}
.x21{left:182.370000px;}
.x11{left:215.175000px;}
.x29{left:216.210000px;}
.x30{left:219.810000px;}
.x5{left:232.950000px;}
.x8{left:272.235000px;}
.xc{left:277.635000px;}
.x17{left:286.994987px;}
.x1f{left:293.654987px;}
.x12{left:297.075000px;}
.x27{left:306.794987px;}
.x6{left:331.995000px;}
.x1a{left:333.795000px;}
.x16{left:341.174987px;}
.x7{left:351.255000px;}
.xa{left:365.475000px;}
.x23{left:378.255000px;}
.x2c{left:402.735000px;}
.x31{left:422.175000px;}
.x9{left:439.500000px;}
.x1e{left:446.474987px;}
.x1c{left:517.245000px;}
.x25{left:553.605000px;}
.x2d{left:566.205000px;}
.x32{left:600.945000px;}
.x3{left:739.050000px;}
.x15{left:788.549987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v1{vertical-align:18.560000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.lse{letter-spacing:0.047360pt;}
.lsd{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.117867pt;}
.ls6{letter-spacing:0.154880pt;}
.ls1{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.216533pt;}
.ls3{letter-spacing:0.231040pt;}
.ls10{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.426667pt;}
.ls4{letter-spacing:0.698880pt;}
.lsf{letter-spacing:14.672640pt;}
.lsb{letter-spacing:40.912640pt;}
.lsc{letter-spacing:56.912640pt;}
.wsc{word-spacing:-53.120000pt;}
.ws3{word-spacing:-14.778987pt;}
.ws4{word-spacing:-14.661120pt;}
.ws2{word-spacing:-14.656000pt;}
.ws7{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.545600pt;}
.wsd{word-spacing:-13.327360pt;}
.ws8{word-spacing:-13.280000pt;}
.ws9{word-spacing:-12.960000pt;}
.wsa{word-spacing:-12.005120pt;}
.ws1{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws5{word-spacing:-7.810560pt;}
.ws6{word-spacing:-7.232000pt;}
.wsb{word-spacing:0.000000pt;}
._4{margin-left:-5.641600pt;}
._3{margin-left:-4.678827pt;}
._14{margin-left:-3.722880pt;}
._2{margin-left:-2.805547pt;}
._15{margin-left:-1.904213pt;}
._0{margin-left:-1.013333pt;}
._1{width:1.472000pt;}
._d{width:2.998400pt;}
._11{width:4.408960pt;}
._e{width:5.797120pt;}
._9{width:7.533227pt;}
._8{width:8.658560pt;}
._f{width:9.576960pt;}
._b{width:10.639360pt;}
._c{width:11.649920pt;}
._10{width:14.318720pt;}
._5{width:15.313920pt;}
._a{width:16.626560pt;}
._6{width:17.529600pt;}
._12{width:19.866880pt;}
._18{width:21.300267pt;}
._13{width:22.648533pt;}
._7{width:24.328960pt;}
._16{width:25.566080pt;}
._17{width:106.718080pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:2.880000pt;}
.y3{bottom:3.232000pt;}
.y42{bottom:3.520000pt;}
.ye{bottom:8.480000pt;}
.y40{bottom:9.440000pt;}
.y19{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.y17{bottom:12.960000pt;}
.y4{bottom:14.112000pt;}
.y2{bottom:17.952000pt;}
.yb1{bottom:18.080000pt;}
.y3c{bottom:18.240000pt;}
.ybf{bottom:18.266667pt;}
.yc7{bottom:18.280000pt;}
.y41{bottom:19.680000pt;}
.y3f{bottom:22.400000pt;}
.yb{bottom:26.880000pt;}
.y16{bottom:27.680000pt;}
.yba{bottom:33.440000pt;}
.ycc{bottom:33.594667pt;}
.y3b{bottom:33.600000pt;}
.ybe{bottom:33.626667pt;}
.y5{bottom:40.800000pt;}
.ya{bottom:41.280000pt;}
.y15{bottom:42.240000pt;}
.yb9{bottom:48.800000pt;}
.y3a{bottom:48.960000pt;}
.ybd{bottom:48.986667pt;}
.y14{bottom:56.640000pt;}
.y1{bottom:59.520000pt;}
.y39{bottom:64.160000pt;}
.y9{bottom:65.280000pt;}
.y13{bottom:70.240000pt;}
.y38{bottom:79.520000pt;}
.y8{bottom:82.746667pt;}
.y12{bottom:87.200000pt;}
.y37{bottom:94.880000pt;}
.y7{bottom:98.906667pt;}
.y100{bottom:100.032000pt;}
.y28{bottom:100.800000pt;}
.ycb{bottom:101.792000pt;}
.y55{bottom:105.472000pt;}
.y11{bottom:110.080000pt;}
.y36{bottom:110.266667pt;}
.yaf{bottom:111.392000pt;}
.y27{bottom:114.426667pt;}
.yff{bottom:115.392000pt;}
.y11f{bottom:118.112000pt;}
.y54{bottom:120.832000pt;}
.y35{bottom:125.626667pt;}
.yae{bottom:126.752000pt;}
.y26{bottom:129.946667pt;}
.yfe{bottom:130.752000pt;}
.y10{bottom:131.680000pt;}
.y11e{bottom:133.312000pt;}
.y53{bottom:136.186667pt;}
.y34{bottom:140.986667pt;}
.yad{bottom:141.946667pt;}
.y25{bottom:145.306667pt;}
.yfd{bottom:146.106667pt;}
.yca{bottom:148.506667pt;}
.y11d{bottom:148.666667pt;}
.y52{bottom:151.546667pt;}
.y33{bottom:156.186667pt;}
.yac{bottom:157.306667pt;}
.y24{bottom:160.666667pt;}
.y8d{bottom:161.146667pt;}
.yfc{bottom:161.306667pt;}
.y11c{bottom:164.026667pt;}
.y51{bottom:166.746667pt;}
.y32{bottom:171.546667pt;}
.yab{bottom:172.666667pt;}
.y23{bottom:176.506667pt;}
.yfb{bottom:176.666667pt;}
.y11b{bottom:179.386667pt;}
.y50{bottom:182.106667pt;}
.y31{bottom:186.906667pt;}
.yaa{bottom:188.026667pt;}
.y22{bottom:191.866667pt;}
.yfa{bottom:192.026667pt;}
.y11a{bottom:194.746667pt;}
.yc9{bottom:195.226667pt;}
.y4f{bottom:197.466667pt;}
.y30{bottom:202.266667pt;}
.ya9{bottom:203.386667pt;}
.y8c{bottom:207.226667pt;}
.y21{bottom:207.386667pt;}
.y119{bottom:210.106667pt;}
.y4e{bottom:212.826667pt;}
.y2f{bottom:217.626667pt;}
.ya8{bottom:218.746667pt;}
.y8b{bottom:222.426667pt;}
.yf9{bottom:222.746667pt;}
.y20{bottom:222.906667pt;}
.y118{bottom:225.306667pt;}
.y4d{bottom:228.186667pt;}
.y2e{bottom:232.986667pt;}
.ya7{bottom:233.946667pt;}
.y8a{bottom:237.786667pt;}
.yf8{bottom:238.106667pt;}
.y1f{bottom:238.266667pt;}
.y117{bottom:240.666667pt;}
.yc8{bottom:241.786667pt;}
.y4c{bottom:243.386667pt;}
.y2d{bottom:248.186667pt;}
.ya6{bottom:249.306667pt;}
.y89{bottom:253.146667pt;}
.yf7{bottom:253.306667pt;}
.y1e{bottom:253.786667pt;}
.y116{bottom:256.026667pt;}
.y4b{bottom:258.746667pt;}
.y2c{bottom:263.546667pt;}
.ya5{bottom:264.666667pt;}
.y88{bottom:268.506667pt;}
.yf6{bottom:268.666667pt;}
.y115{bottom:271.386667pt;}
.y1d{bottom:271.866667pt;}
.y4a{bottom:274.106667pt;}
.y2b{bottom:278.906667pt;}
.ya4{bottom:280.026667pt;}
.y87{bottom:283.866667pt;}
.yf5{bottom:284.026667pt;}
.y114{bottom:286.746667pt;}
.yc6{bottom:288.506667pt;}
.y49{bottom:289.466667pt;}
.y2a{bottom:294.266667pt;}
.ya3{bottom:295.386667pt;}
.y1c{bottom:296.186667pt;}
.y86{bottom:299.266667pt;}
.yf4{bottom:299.426667pt;}
.y113{bottom:302.146667pt;}
.y48{bottom:304.866667pt;}
.y29{bottom:309.626667pt;}
.ya2{bottom:310.626667pt;}
.y1b{bottom:312.026667pt;}
.y85{bottom:314.466667pt;}
.yf3{bottom:314.786667pt;}
.y112{bottom:317.346667pt;}
.yc5{bottom:319.906667pt;}
.y47{bottom:320.226667pt;}
.ya1{bottom:325.986667pt;}
.y84{bottom:329.826667pt;}
.yf2{bottom:330.146667pt;}
.y111{bottom:332.706667pt;}
.y46{bottom:335.426667pt;}
.ya0{bottom:341.346667pt;}
.y83{bottom:345.186667pt;}
.yf1{bottom:345.346667pt;}
.y110{bottom:348.066667pt;}
.y45{bottom:350.786667pt;}
.yc4{bottom:351.266667pt;}
.y9f{bottom:356.706667pt;}
.y82{bottom:360.546667pt;}
.yf0{bottom:360.706667pt;}
.y10f{bottom:363.426667pt;}
.y44{bottom:366.146667pt;}
.y9e{bottom:372.066667pt;}
.y81{bottom:375.906667pt;}
.yef{bottom:376.066667pt;}
.y10e{bottom:378.786667pt;}
.y43{bottom:381.506667pt;}
.yc3{bottom:382.466667pt;}
.y9d{bottom:387.426667pt;}
.y80{bottom:391.266667pt;}
.yee{bottom:391.426667pt;}
.y3e{bottom:393.986667pt;}
.y10d{bottom:394.146667pt;}
.y9c{bottom:402.626667pt;}
.y7f{bottom:406.466667pt;}
.yed{bottom:406.786667pt;}
.y10c{bottom:409.346667pt;}
.yc2{bottom:413.826667pt;}
.y9b{bottom:417.986667pt;}
.y7e{bottom:421.826667pt;}
.yec{bottom:422.146667pt;}
.y10b{bottom:424.706667pt;}
.y1a{bottom:426.466667pt;}
.y9a{bottom:433.346667pt;}
.y7d{bottom:437.186667pt;}
.yeb{bottom:437.346667pt;}
.y10a{bottom:440.066667pt;}
.y99{bottom:448.706667pt;}
.y7c{bottom:452.546667pt;}
.yea{bottom:452.706667pt;}
.y109{bottom:455.426667pt;}
.yc1{bottom:460.546667pt;}
.y98{bottom:464.066667pt;}
.y7b{bottom:467.906667pt;}
.ye9{bottom:468.066667pt;}
.y108{bottom:470.786667pt;}
.y97{bottom:479.426667pt;}
.y7a{bottom:483.266667pt;}
.ye8{bottom:483.426667pt;}
.y107{bottom:485.986667pt;}
.y96{bottom:494.626667pt;}
.yc0{bottom:494.786667pt;}
.y79{bottom:498.466667pt;}
.ye7{bottom:498.786667pt;}
.y106{bottom:501.346667pt;}
.y95{bottom:509.986667pt;}
.y78{bottom:513.826667pt;}
.ye6{bottom:513.986667pt;}
.y105{bottom:516.706667pt;}
.ybc{bottom:523.106667pt;}
.y94{bottom:525.346667pt;}
.y77{bottom:529.186667pt;}
.ye5{bottom:529.346667pt;}
.y104{bottom:532.066667pt;}
.y93{bottom:540.733333pt;}
.y76{bottom:544.573333pt;}
.ye4{bottom:544.733333pt;}
.y103{bottom:547.453333pt;}
.y92{bottom:556.093333pt;}
.ye3{bottom:560.093333pt;}
.y75{bottom:560.893333pt;}
.y102{bottom:562.813333pt;}
.y91{bottom:571.453333pt;}
.ye2{bottom:575.453333pt;}
.y74{bottom:577.053333pt;}
.y101{bottom:578.013333pt;}
.ybb{bottom:585.213333pt;}
.y90{bottom:586.653333pt;}
.ye1{bottom:590.813333pt;}
.y73{bottom:593.373333pt;}
.y8f{bottom:602.013333pt;}
.ye0{bottom:606.013333pt;}
.y72{bottom:608.733333pt;}
.y8e{bottom:614.493333pt;}
.ydf{bottom:621.373333pt;}
.y71{bottom:624.093333pt;}
.yb8{bottom:631.933333pt;}
.yde{bottom:636.733333pt;}
.y70{bottom:639.453333pt;}
.ydd{bottom:652.093333pt;}
.y6f{bottom:654.813333pt;}
.ydc{bottom:667.453333pt;}
.y6e{bottom:670.013333pt;}
.ydb{bottom:682.813333pt;}
.y6d{bottom:685.373333pt;}
.yb7{bottom:693.853333pt;}
.yda{bottom:698.013333pt;}
.y6c{bottom:700.733333pt;}
.yd9{bottom:713.373333pt;}
.y6b{bottom:716.093333pt;}
.yd8{bottom:728.733333pt;}
.y6a{bottom:731.453333pt;}
.yb6{bottom:740.573333pt;}
.yd7{bottom:744.093333pt;}
.y69{bottom:746.653333pt;}
.y18{bottom:748.573333pt;}
.yd6{bottom:759.453333pt;}
.y68{bottom:762.013333pt;}
.yb5{bottom:774.693333pt;}
.yf{bottom:774.853333pt;}
.y67{bottom:777.413333pt;}
.yb4{bottom:790.053333pt;}
.y66{bottom:792.773333pt;}
.yb3{bottom:803.173333pt;}
.yd5{bottom:805.413333pt;}
.y65{bottom:808.133333pt;}
.yd4{bottom:820.773333pt;}
.y64{bottom:823.493333pt;}
.yd3{bottom:836.133333pt;}
.y63{bottom:838.693333pt;}
.yb2{bottom:849.893333pt;}
.yd2{bottom:851.493333pt;}
.y62{bottom:854.053333pt;}
.yd1{bottom:866.693333pt;}
.y61{bottom:869.413333pt;}
.yd0{bottom:882.053333pt;}
.y60{bottom:884.773333pt;}
.ycf{bottom:895.173333pt;}
.yb0{bottom:896.613333pt;}
.y5f{bottom:900.133333pt;}
.y5e{bottom:915.493333pt;}
.yd{bottom:919.973333pt;}
.y5d{bottom:930.693333pt;}
.yce{bottom:941.893333pt;}
.y6{bottom:942.533333pt;}
.y5c{bottom:946.053333pt;}
.y5b{bottom:961.413333pt;}
.y5a{bottom:976.773333pt;}
.y59{bottom:992.133333pt;}
.ycd{bottom:1003.813333pt;}
.y58{bottom:1007.493333pt;}
.y57{bottom:1022.720000pt;}
.y56{bottom:1038.080000pt;}
.hc{height:22.240000pt;}
.h13{height:26.272000pt;}
.h2{height:29.312000pt;}
.h1f{height:30.560000pt;}
.h24{height:30.720000pt;}
.h25{height:30.752000pt;}
.h9{height:32.160000pt;}
.h1b{height:32.480000pt;}
.h19{height:34.505000pt;}
.h1d{height:37.479688pt;}
.h18{height:37.583438pt;}
.h1a{height:38.413438pt;}
.h4{height:38.625000pt;}
.h1e{height:38.672812pt;}
.he{height:39.113750pt;}
.h12{height:39.190000pt;}
.hb{height:39.840000pt;}
.h17{height:40.685000pt;}
.h15{height:42.649687pt;}
.h1c{height:42.745000pt;}
.h20{height:45.920000pt;}
.h21{height:46.080000pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h16{height:50.288438pt;}
.h10{height:52.834688pt;}
.h11{height:54.390938pt;}
.hf{height:56.160000pt;}
.h6{height:58.563750pt;}
.h22{height:61.280000pt;}
.h23{height:61.472000pt;}
.h8{height:63.656250pt;}
.h5{height:65.531250pt;}
.h7{height:108.032000pt;}
.hd{height:145.120000pt;}
.h14{height:322.106667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:64.960000pt;}
.wa{width:86.752000pt;}
.we{width:88.672000pt;}
.w12{width:118.912000pt;}
.w16{width:122.112000pt;}
.w5{width:135.066667pt;}
.wb{width:136.026667pt;}
.w14{width:144.666667pt;}
.w10{width:155.066667pt;}
.w18{width:158.266667pt;}
.wc{width:162.426667pt;}
.w13{width:164.986667pt;}
.wf{width:173.466667pt;}
.w17{width:179.066667pt;}
.w19{width:187.066667pt;}
.w8{width:192.066667pt;}
.w15{width:217.946667pt;}
.w11{width:229.146667pt;}
.wd{width:261.466667pt;}
.w9{width:457.826667pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:6.720000pt;}
.x2{left:7.712000pt;}
.x22{left:8.960000pt;}
.x13{left:11.200000pt;}
.xb{left:13.792000pt;}
.xf{left:19.872000pt;}
.x20{left:20.992000pt;}
.x1b{left:23.040000pt;}
.x2a{left:25.760000pt;}
.x2e{left:34.560000pt;}
.x28{left:36.032000pt;}
.x2f{left:37.632000pt;}
.xe{left:39.872000pt;}
.x24{left:44.960000pt;}
.x10{left:45.952000pt;}
.x19{left:48.640000pt;}
.x1d{left:56.480000pt;}
.x2b{left:63.240000pt;}
.x1{left:72.000000pt;}
.x4{left:87.226667pt;}
.x14{left:96.031988pt;}
.xd{left:151.226667pt;}
.x18{left:160.026667pt;}
.x21{left:162.106667pt;}
.x11{left:191.266667pt;}
.x29{left:192.186667pt;}
.x30{left:195.386667pt;}
.x5{left:207.066667pt;}
.x8{left:241.986667pt;}
.xc{left:246.786667pt;}
.x17{left:255.106655pt;}
.x1f{left:261.026655pt;}
.x12{left:264.066667pt;}
.x27{left:272.706655pt;}
.x6{left:295.106667pt;}
.x1a{left:296.706667pt;}
.x16{left:303.266655pt;}
.x7{left:312.226667pt;}
.xa{left:324.866667pt;}
.x23{left:336.226667pt;}
.x2c{left:357.986667pt;}
.x31{left:375.266667pt;}
.x9{left:390.666667pt;}
.x1e{left:396.866655pt;}
.x1c{left:459.773333pt;}
.x25{left:492.093333pt;}
.x2d{left:503.293333pt;}
.x32{left:534.173333pt;}
.x3{left:656.933333pt;}
.x15{left:700.933322pt;}
}




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