
    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_41a0d0b0b98e5c513ee1184e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.149414;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_9d009dff25d6143d4d4eefbe.woff2')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_5c204b5987c7479383866b74.woff2')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_ab8f539fee4daf4ad2edc98a.woff2')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_3f3ff633aaa42cf38ea2c3ad.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a897018ac87a27b232bd89d2.woff2')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_5632a2273a4f3c85ca8534f1.woff2')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_47bb7d187829548d9dbf0569.woff2')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_7e60383fb23c428842e6b093.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ff4b389b2b008ed2111dcd37.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_1c008dc389544183b1f5dcd0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.914062;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_15622c7a73df43c5bbb5301b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.920410;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_6193fc93719873dbca485474.woff2')format("woff");}.ffe{font-family:ffe;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;}
.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);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls18{letter-spacing:-1.800000px;}
.ls17{letter-spacing:-1.080000px;}
.ls29{letter-spacing:-0.924000px;}
.lsc{letter-spacing:-0.756000px;}
.ls27{letter-spacing:-0.666000px;}
.ls1e{letter-spacing:-0.612000px;}
.ls19{letter-spacing:-0.584400px;}
.lsb{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.360000px;}
.ls1c{letter-spacing:-0.206400px;}
.ls1b{letter-spacing:-0.131400px;}
.ls9{letter-spacing:-0.127200px;}
.ls28{letter-spacing:-0.106800px;}
.ls1a{letter-spacing:-0.058320px;}
.ls8{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls1{letter-spacing:0.132600px;}
.ls23{letter-spacing:0.153600px;}
.ls6{letter-spacing:0.180000px;}
.ls20{letter-spacing:0.206400px;}
.lsd{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls5{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.720000px;}
.ls3{letter-spacing:0.786240px;}
.ls1d{letter-spacing:0.900000px;}
.lse{letter-spacing:2.934000px;}
.ls12{letter-spacing:3.240000px;}
.ls10{letter-spacing:4.680000px;}
.ls26{letter-spacing:15.786720px;}
.ls25{letter-spacing:16.020000px;}
.ls22{letter-spacing:16.506720px;}
.ls24{letter-spacing:17.946720px;}
.ls1f{letter-spacing:46.026720px;}
.ls21{letter-spacing:48.906720px;}
.ls11{letter-spacing:93.780000px;}
.ls15{letter-spacing:113.220000px;}
.ls13{letter-spacing:113.400000px;}
.ls14{letter-spacing:113.940000px;}
.lsf{letter-spacing:120.396000px;}
.ls16{letter-spacing:141.300000px;}
.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;}
}
.wsd{word-spacing:-19.620000px;}
.wsa{word-spacing:-17.874000px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.wsf{word-spacing:-15.840000px;}
.ws6{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.199800px;}
.ws5{word-spacing:-14.940000px;}
.ws16{word-spacing:-14.833200px;}
.ws7{word-spacing:-14.580000px;}
.ws10{word-spacing:-14.400000px;}
.wse{word-spacing:-14.355600px;}
.ws11{word-spacing:-14.328000px;}
.ws17{word-spacing:-14.016000px;}
.wsb{word-spacing:-13.860000px;}
.ws15{word-spacing:-13.538304px;}
.ws14{word-spacing:-13.505760px;}
.wsc{word-spacing:-13.140000px;}
.ws0{word-spacing:-12.186000px;}
.ws3{word-spacing:-9.720000px;}
.ws4{word-spacing:-8.136000px;}
.ws9{word-spacing:0.000000px;}
.ws13{word-spacing:84.892560px;}
.ws12{word-spacing:99.895920px;}
._12{margin-left:-4.212480px;}
._2{margin-left:-3.077760px;}
._0{margin-left:-1.050000px;}
._1{width:1.134000px;}
._3{width:2.304000px;}
._9{width:3.620640px;}
._7{width:4.918320px;}
._8{width:6.179040px;}
._4{width:7.272720px;}
._b{width:8.407440px;}
._d{width:9.598320px;}
._c{width:10.746240px;}
._a{width:11.758080px;}
._5{width:12.908160px;}
._6{width:13.925520px;}
._11{width:16.792560px;}
._16{width:20.335200px;}
._18{width:22.708800px;}
._19{width:23.980080px;}
._f{width:27.368640px;}
._e{width:28.447200px;}
._10{width:30.603120px;}
._13{width:51.316800px;}
._14{width:66.307440px;}
._15{width:110.660640px;}
._17{width:128.521680px;}
.fc4{color:rgb(227,108,10);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(36,64,97);}
.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;}
.fs9{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y41{bottom:2.520000px;}
.y88{bottom:3.234000px;}
.y3e{bottom:3.240000px;}
.y3{bottom:3.600000px;}
.y17{bottom:3.960000px;}
.ye{bottom:9.540000px;}
.y19{bottom:12.420000px;}
.y42{bottom:13.680000px;}
.yab{bottom:13.710000px;}
.yc{bottom:13.860000px;}
.y40{bottom:16.380000px;}
.y4{bottom:17.496000px;}
.y2{bottom:20.196000px;}
.y3d{bottom:20.520000px;}
.y16{bottom:28.080000px;}
.yb{bottom:30.240000px;}
.ya5{bottom:33.225000px;}
.y3c{bottom:37.620000px;}
.y5{bottom:39.960000px;}
.ya4{bottom:40.500000px;}
.y15{bottom:43.920000px;}
.ya{bottom:46.620000px;}
.yd4{bottom:50.370000px;}
.ydd{bottom:51.195000px;}
.y14{bottom:53.640000px;}
.y3b{bottom:54.900000px;}
.y1{bottom:62.100000px;}
.y13{bottom:71.640000px;}
.y3a{bottom:72.180000px;}
.y9{bottom:73.440000px;}
.yd5{bottom:86.370000px;}
.ya6{bottom:87.195000px;}
.y39{bottom:89.460000px;}
.y12{bottom:90.540000px;}
.y8{bottom:93.090000px;}
.ya1{bottom:105.270000px;}
.y121{bottom:106.596000px;}
.y38{bottom:106.740000px;}
.y55{bottom:111.276000px;}
.y7{bottom:111.450000px;}
.y8a{bottom:115.236000px;}
.y11{bottom:116.280000px;}
.yd2{bottom:118.296000px;}
.yd6{bottom:122.370000px;}
.yde{bottom:123.195000px;}
.y120{bottom:123.876000px;}
.y37{bottom:124.020000px;}
.y54{bottom:128.556000px;}
.ya3{bottom:129.570000px;}
.y89{bottom:129.996000px;}
.yd1{bottom:136.296000px;}
.y28{bottom:140.430000px;}
.y10{bottom:140.760000px;}
.y11f{bottom:140.976000px;}
.y77{bottom:141.120000px;}
.y36{bottom:141.150000px;}
.y53{bottom:145.656000px;}
.y87{bottom:147.996000px;}
.yd0{bottom:154.290000px;}
.y27{bottom:155.010000px;}
.y11e{bottom:158.250000px;}
.yd7{bottom:158.370000px;}
.y76{bottom:158.400000px;}
.y35{bottom:158.430000px;}
.ydf{bottom:159.195000px;}
.y52{bottom:162.930000px;}
.ya2{bottom:164.625000px;}
.y86{bottom:165.990000px;}
.y26{bottom:172.290000px;}
.y11d{bottom:175.530000px;}
.y34{bottom:175.710000px;}
.y51{bottom:180.210000px;}
.y85{bottom:183.990000px;}
.ye5{bottom:184.650000px;}
.yac{bottom:184.680000px;}
.y25{bottom:189.570000px;}
.ycf{bottom:190.290000px;}
.y11c{bottom:192.810000px;}
.y33{bottom:192.990000px;}
.yd8{bottom:194.325000px;}
.ya7{bottom:195.120000px;}
.ye0{bottom:195.150000px;}
.y50{bottom:197.490000px;}
.y84{bottom:201.990000px;}
.y24{bottom:206.850000px;}
.yce{bottom:208.290000px;}
.y11b{bottom:210.090000px;}
.y32{bottom:210.270000px;}
.y4f{bottom:214.770000px;}
.y83{bottom:219.990000px;}
.y23{bottom:223.770000px;}
.ycd{bottom:226.290000px;}
.y31{bottom:227.370000px;}
.yd9{bottom:230.325000px;}
.ye1{bottom:231.150000px;}
.y4e{bottom:232.050000px;}
.y82{bottom:237.990000px;}
.y22{bottom:240.150000px;}
.ycc{bottom:244.290000px;}
.y11a{bottom:244.470000px;}
.y30{bottom:244.650000px;}
.ya8{bottom:249.120000px;}
.y4d{bottom:249.150000px;}
.y81{bottom:255.990000px;}
.y21{bottom:256.530000px;}
.y119{bottom:261.750000px;}
.y2f{bottom:261.930000px;}
.yda{bottom:266.325000px;}
.y4c{bottom:266.430000px;}
.ye2{bottom:267.150000px;}
.y20{bottom:273.090000px;}
.y80{bottom:273.990000px;}
.y118{bottom:279.030000px;}
.y2e{bottom:279.210000px;}
.ycb{bottom:282.810000px;}
.y4b{bottom:283.710000px;}
.y1f{bottom:289.470000px;}
.y7f{bottom:295.230000px;}
.y117{bottom:296.310000px;}
.y2d{bottom:296.490000px;}
.yca{bottom:300.090000px;}
.y4a{bottom:300.990000px;}
.ydb{bottom:302.325000px;}
.ya9{bottom:303.090000px;}
.ye3{bottom:303.150000px;}
.y1e{bottom:305.850000px;}
.y7e{bottom:312.330000px;}
.y116{bottom:313.590000px;}
.y2c{bottom:313.770000px;}
.yc9{bottom:317.190000px;}
.y49{bottom:318.270000px;}
.y1d{bottom:324.930000px;}
.y7d{bottom:329.610000px;}
.y2b{bottom:330.870000px;}
.yc8{bottom:334.470000px;}
.y48{bottom:335.370000px;}
.ydc{bottom:338.325000px;}
.ye4{bottom:339.150000px;}
.y7c{bottom:346.935000px;}
.y115{bottom:348.015000px;}
.y2a{bottom:348.150000px;}
.y1c{bottom:350.850000px;}
.yc7{bottom:351.795000px;}
.y47{bottom:352.695000px;}
.yaa{bottom:357.045000px;}
.y7b{bottom:364.215000px;}
.y114{bottom:365.295000px;}
.y29{bottom:365.430000px;}
.y1b{bottom:368.130000px;}
.yc6{bottom:369.075000px;}
.y46{bottom:369.975000px;}
.y9f{bottom:378.075000px;}
.y7a{bottom:381.495000px;}
.y113{bottom:382.575000px;}
.yc5{bottom:386.355000px;}
.y45{bottom:387.255000px;}
.y9e{bottom:395.355000px;}
.y79{bottom:398.775000px;}
.y112{bottom:399.855000px;}
.yc4{bottom:403.635000px;}
.y44{bottom:404.535000px;}
.y9d{bottom:412.635000px;}
.y78{bottom:413.895000px;}
.y111{bottom:417.135000px;}
.yc3{bottom:420.735000px;}
.y43{bottom:421.815000px;}
.y9c{bottom:429.735000px;}
.y75{bottom:432.255000px;}
.y110{bottom:434.415000px;}
.y3f{bottom:435.675000px;}
.yc2{bottom:438.015000px;}
.y9b{bottom:447.015000px;}
.y10f{bottom:451.515000px;}
.yc1{bottom:455.295000px;}
.y9a{bottom:461.055000px;}
.ya0{bottom:461.160000px;}
.y1a{bottom:463.395000px;}
.y10e{bottom:468.795000px;}
.yc0{bottom:472.575000px;}
.y10d{bottom:486.075000px;}
.ybf{bottom:489.855000px;}
.y10c{bottom:503.355000px;}
.ybe{bottom:506.955000px;}
.y10b{bottom:520.635000px;}
.ybd{bottom:524.235000px;}
.y10a{bottom:537.735000px;}
.ybc{bottom:541.515000px;}
.y109{bottom:555.015000px;}
.ybb{bottom:558.795000px;}
.y108{bottom:572.295000px;}
.yba{bottom:576.075000px;}
.y107{bottom:589.575000px;}
.yb9{bottom:593.355000px;}
.y106{bottom:606.885000px;}
.yb8{bottom:610.485000px;}
.y105{bottom:624.165000px;}
.yb7{bottom:627.765000px;}
.y74{bottom:639.285000px;}
.y104{bottom:641.265000px;}
.yb6{bottom:645.045000px;}
.y103{bottom:658.545000px;}
.y73{bottom:660.885000px;}
.yb5{bottom:662.325000px;}
.y102{bottom:675.825000px;}
.y72{bottom:678.165000px;}
.yb4{bottom:679.605000px;}
.y101{bottom:693.105000px;}
.y71{bottom:695.265000px;}
.yb3{bottom:696.885000px;}
.y100{bottom:710.385000px;}
.y70{bottom:712.545000px;}
.yb2{bottom:713.985000px;}
.yff{bottom:727.665000px;}
.y6f{bottom:729.825000px;}
.yb1{bottom:731.265000px;}
.yfe{bottom:744.765000px;}
.y6e{bottom:747.105000px;}
.yb0{bottom:748.545000px;}
.yfd{bottom:762.045000px;}
.y6d{bottom:764.385000px;}
.yaf{bottom:765.825000px;}
.yfc{bottom:779.325000px;}
.y6c{bottom:781.665000px;}
.yae{bottom:783.105000px;}
.yfb{bottom:796.605000px;}
.yad{bottom:796.965000px;}
.yd3{bottom:797.220000px;}
.y6b{bottom:798.765000px;}
.yfa{bottom:813.885000px;}
.y6a{bottom:816.045000px;}
.yf9{bottom:830.985000px;}
.y69{bottom:833.325000px;}
.y99{bottom:842.325000px;}
.y18{bottom:842.865000px;}
.yf8{bottom:848.265000px;}
.y68{bottom:850.605000px;}
.y98{bottom:859.605000px;}
.yf7{bottom:865.545000px;}
.y67{bottom:867.885000px;}
.yf{bottom:872.430000px;}
.y97{bottom:876.930000px;}
.yf6{bottom:882.870000px;}
.y66{bottom:885.030000px;}
.y96{bottom:894.030000px;}
.yf5{bottom:900.150000px;}
.y65{bottom:902.310000px;}
.y95{bottom:911.310000px;}
.yf4{bottom:917.430000px;}
.y64{bottom:919.590000px;}
.y94{bottom:926.070000px;}
.yf3{bottom:934.530000px;}
.y63{bottom:936.870000px;}
.y93{bottom:944.070000px;}
.yf2{bottom:951.810000px;}
.y62{bottom:954.150000px;}
.y92{bottom:962.070000px;}
.yf1{bottom:969.090000px;}
.y61{bottom:971.430000px;}
.y91{bottom:980.070000px;}
.yf0{bottom:986.370000px;}
.y60{bottom:988.530000px;}
.y90{bottom:998.070000px;}
.yef{bottom:1003.650000px;}
.y5f{bottom:1005.810000px;}
.y8f{bottom:1016.070000px;}
.yee{bottom:1020.930000px;}
.y5e{bottom:1023.090000px;}
.yd{bottom:1028.310000px;}
.y8e{bottom:1034.070000px;}
.yed{bottom:1038.030000px;}
.y5d{bottom:1040.370000px;}
.y8d{bottom:1052.070000px;}
.y6{bottom:1053.510000px;}
.yec{bottom:1055.310000px;}
.y5c{bottom:1057.650000px;}
.y8c{bottom:1070.070000px;}
.yeb{bottom:1072.590000px;}
.y5b{bottom:1074.930000px;}
.y8b{bottom:1088.070000px;}
.yea{bottom:1089.870000px;}
.y5a{bottom:1092.030000px;}
.ye9{bottom:1107.150000px;}
.y59{bottom:1109.310000px;}
.ye8{bottom:1124.430000px;}
.y58{bottom:1126.590000px;}
.ye7{bottom:1139.220000px;}
.y57{bottom:1143.900000px;}
.ye6{bottom:1157.220000px;}
.y56{bottom:1161.180000px;}
.h20{height:17.100000px;}
.h22{height:17.280000px;}
.hc{height:24.840000px;}
.h1f{height:27.720000px;}
.h13{height:28.968750px;}
.h14{height:29.556000px;}
.h2{height:33.156000px;}
.h1e{height:34.130742px;}
.h25{height:34.560000px;}
.h12{height:35.806641px;}
.h8{height:36.180000px;}
.h1a{height:39.716016px;}
.h1b{height:40.243711px;}
.h1d{height:41.726953px;}
.h19{height:42.164648px;}
.h1c{height:42.281367px;}
.h4{height:43.453125px;}
.h27{height:43.506914px;}
.he{height:44.002969px;}
.ha{height:44.820000px;}
.h18{height:47.980898px;}
.h11{height:48.312422px;}
.h6{height:50.273438px;}
.h15{height:50.800781px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h10{height:59.439023px;}
.h24{height:59.582250px;}
.hf{height:63.180000px;}
.h5{height:67.824844px;}
.hb{height:71.613281px;}
.h16{height:73.722656px;}
.h7{height:121.536000px;}
.hd{height:155.880000px;}
.h21{height:207.030000px;}
.h26{height:377.820000px;}
.h23{height:378.000000px;}
.h17{height:379.470000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:41.760000px;}
.w3{width:74.880000px;}
.we{width:75.060000px;}
.wb{width:75.276000px;}
.wf{width:75.420000px;}
.wd{width:75.456000px;}
.wc{width:75.600000px;}
.w1b{width:129.420000px;}
.w18{width:147.276000px;}
.w19{width:148.176000px;}
.w1a{width:153.570000px;}
.w5{width:155.370000px;}
.w17{width:165.270000px;}
.w8{width:220.935000px;}
.w15{width:228.990000px;}
.w14{width:245.910000px;}
.w13{width:270.255000px;}
.w11{width:372.855000px;}
.w12{width:373.035000px;}
.w9{width:526.395000px;}
.w6{width:591.945000px;}
.w16{width:648.000000px;}
.w2{width:673.530000px;}
.wa{width:731.130000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:1.620000px;}
.x2{left:8.640000px;}
.x25{left:10.800000px;}
.x12{left:12.600000px;}
.x21{left:15.696000px;}
.x2d{left:17.460000px;}
.x1f{left:20.556000px;}
.x40{left:30.060000px;}
.xf{left:45.216000px;}
.xc{left:49.896000px;}
.x3e{left:62.850000px;}
.x23{left:70.410000px;}
.x1{left:72.360000px;}
.x3b{left:79.845000px;}
.x4{left:80.999987px;}
.x14{left:82.080000px;}
.x29{left:83.085000px;}
.x5{left:98.130000px;}
.x43{left:108.035987px;}
.x3c{left:111.240000px;}
.x41{left:113.610000px;}
.x28{left:122.400000px;}
.x3f{left:124.410000px;}
.x3d{left:142.020000px;}
.xe{left:155.730000px;}
.x16{left:158.430000px;}
.x2a{left:186.405000px;}
.x3a{left:194.655000px;}
.x34{left:198.645000px;}
.x36{left:202.605000px;}
.x35{left:206.565000px;}
.x30{left:211.889987px;}
.x10{left:215.175000px;}
.x37{left:226.440000px;}
.x6{left:228.270000px;}
.x17{left:235.110000px;}
.x31{left:239.250000px;}
.x38{left:266.370000px;}
.x13{left:271.289987px;}
.x9{left:285.015000px;}
.x2b{left:289.725000px;}
.x11{left:293.835000px;}
.x2f{left:301.934987px;}
.x18{left:311.655000px;}
.x27{left:317.594987px;}
.x20{left:325.334987px;}
.xd{left:332.715000px;}
.x39{left:337.860000px;}
.x7{left:344.775000px;}
.x8{left:364.035000px;}
.xb{left:373.575000px;}
.x19{left:387.795000px;}
.x2c{left:396.825000px;}
.x22{left:446.835000px;}
.xa{left:452.280000px;}
.x1a{left:464.475000px;}
.x2e{left:488.055000px;}
.x32{left:536.145000px;}
.x1b{left:541.005000px;}
.x42{left:559.650000px;}
.x24{left:590.865000px;}
.x1c{left:617.145000px;}
.x33{left:690.450000px;}
.x1d{left:693.690000px;}
.x3{left:745.890000px;}
.x1e{left:770.370000px;}
.x26{left:772.889987px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls18{letter-spacing:-1.600000pt;}
.ls17{letter-spacing:-0.960000pt;}
.ls29{letter-spacing:-0.821333pt;}
.lsc{letter-spacing:-0.672000pt;}
.ls27{letter-spacing:-0.592000pt;}
.ls1e{letter-spacing:-0.544000pt;}
.ls19{letter-spacing:-0.519467pt;}
.lsb{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls1c{letter-spacing:-0.183467pt;}
.ls1b{letter-spacing:-0.116800pt;}
.ls9{letter-spacing:-0.113067pt;}
.ls28{letter-spacing:-0.094933pt;}
.ls1a{letter-spacing:-0.051840pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls1{letter-spacing:0.117867pt;}
.ls23{letter-spacing:0.136533pt;}
.ls6{letter-spacing:0.160000pt;}
.ls20{letter-spacing:0.183467pt;}
.lsd{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls5{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.698880pt;}
.ls1d{letter-spacing:0.800000pt;}
.lse{letter-spacing:2.608000pt;}
.ls12{letter-spacing:2.880000pt;}
.ls10{letter-spacing:4.160000pt;}
.ls26{letter-spacing:14.032640pt;}
.ls25{letter-spacing:14.240000pt;}
.ls22{letter-spacing:14.672640pt;}
.ls24{letter-spacing:15.952640pt;}
.ls1f{letter-spacing:40.912640pt;}
.ls21{letter-spacing:43.472640pt;}
.ls11{letter-spacing:83.360000pt;}
.ls15{letter-spacing:100.640000pt;}
.ls13{letter-spacing:100.800000pt;}
.ls14{letter-spacing:101.280000pt;}
.lsf{letter-spacing:107.018667pt;}
.ls16{letter-spacing:125.600000pt;}
.wsd{word-spacing:-17.440000pt;}
.wsa{word-spacing:-15.888000pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.wsf{word-spacing:-14.080000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.510933pt;}
.ws5{word-spacing:-13.280000pt;}
.ws16{word-spacing:-13.185067pt;}
.ws7{word-spacing:-12.960000pt;}
.ws10{word-spacing:-12.800000pt;}
.wse{word-spacing:-12.760533pt;}
.ws11{word-spacing:-12.736000pt;}
.ws17{word-spacing:-12.458667pt;}
.wsb{word-spacing:-12.320000pt;}
.ws15{word-spacing:-12.034048pt;}
.ws14{word-spacing:-12.005120pt;}
.wsc{word-spacing:-11.680000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws4{word-spacing:-7.232000pt;}
.ws9{word-spacing:0.000000pt;}
.ws13{word-spacing:75.460053pt;}
.ws12{word-spacing:88.796373pt;}
._12{margin-left:-3.744427pt;}
._2{margin-left:-2.735787pt;}
._0{margin-left:-0.933333pt;}
._1{width:1.008000pt;}
._3{width:2.048000pt;}
._9{width:3.218347pt;}
._7{width:4.371840pt;}
._8{width:5.492480pt;}
._4{width:6.464640pt;}
._b{width:7.473280pt;}
._d{width:8.531840pt;}
._c{width:9.552213pt;}
._a{width:10.451627pt;}
._5{width:11.473920pt;}
._6{width:12.378240pt;}
._11{width:14.926720pt;}
._16{width:18.075733pt;}
._18{width:20.185600pt;}
._19{width:21.315627pt;}
._f{width:24.327680pt;}
._e{width:25.286400pt;}
._10{width:27.202773pt;}
._13{width:45.614933pt;}
._14{width:58.939947pt;}
._15{width:98.365013pt;}
._17{width:114.241493pt;}
.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;}
.fs9{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:2.240000pt;}
.y88{bottom:2.874667pt;}
.y3e{bottom:2.880000pt;}
.y3{bottom:3.200000pt;}
.y17{bottom:3.520000pt;}
.ye{bottom:8.480000pt;}
.y19{bottom:11.040000pt;}
.y42{bottom:12.160000pt;}
.yab{bottom:12.186667pt;}
.yc{bottom:12.320000pt;}
.y40{bottom:14.560000pt;}
.y4{bottom:15.552000pt;}
.y2{bottom:17.952000pt;}
.y3d{bottom:18.240000pt;}
.y16{bottom:24.960000pt;}
.yb{bottom:26.880000pt;}
.ya5{bottom:29.533333pt;}
.y3c{bottom:33.440000pt;}
.y5{bottom:35.520000pt;}
.ya4{bottom:36.000000pt;}
.y15{bottom:39.040000pt;}
.ya{bottom:41.440000pt;}
.yd4{bottom:44.773333pt;}
.ydd{bottom:45.506667pt;}
.y14{bottom:47.680000pt;}
.y3b{bottom:48.800000pt;}
.y1{bottom:55.200000pt;}
.y13{bottom:63.680000pt;}
.y3a{bottom:64.160000pt;}
.y9{bottom:65.280000pt;}
.yd5{bottom:76.773333pt;}
.ya6{bottom:77.506667pt;}
.y39{bottom:79.520000pt;}
.y12{bottom:80.480000pt;}
.y8{bottom:82.746667pt;}
.ya1{bottom:93.573333pt;}
.y121{bottom:94.752000pt;}
.y38{bottom:94.880000pt;}
.y55{bottom:98.912000pt;}
.y7{bottom:99.066667pt;}
.y8a{bottom:102.432000pt;}
.y11{bottom:103.360000pt;}
.yd2{bottom:105.152000pt;}
.yd6{bottom:108.773333pt;}
.yde{bottom:109.506667pt;}
.y120{bottom:110.112000pt;}
.y37{bottom:110.240000pt;}
.y54{bottom:114.272000pt;}
.ya3{bottom:115.173333pt;}
.y89{bottom:115.552000pt;}
.yd1{bottom:121.152000pt;}
.y28{bottom:124.826667pt;}
.y10{bottom:125.120000pt;}
.y11f{bottom:125.312000pt;}
.y77{bottom:125.440000pt;}
.y36{bottom:125.466667pt;}
.y53{bottom:129.472000pt;}
.y87{bottom:131.552000pt;}
.yd0{bottom:137.146667pt;}
.y27{bottom:137.786667pt;}
.y11e{bottom:140.666667pt;}
.yd7{bottom:140.773333pt;}
.y76{bottom:140.800000pt;}
.y35{bottom:140.826667pt;}
.ydf{bottom:141.506667pt;}
.y52{bottom:144.826667pt;}
.ya2{bottom:146.333333pt;}
.y86{bottom:147.546667pt;}
.y26{bottom:153.146667pt;}
.y11d{bottom:156.026667pt;}
.y34{bottom:156.186667pt;}
.y51{bottom:160.186667pt;}
.y85{bottom:163.546667pt;}
.ye5{bottom:164.133333pt;}
.yac{bottom:164.160000pt;}
.y25{bottom:168.506667pt;}
.ycf{bottom:169.146667pt;}
.y11c{bottom:171.386667pt;}
.y33{bottom:171.546667pt;}
.yd8{bottom:172.733333pt;}
.ya7{bottom:173.440000pt;}
.ye0{bottom:173.466667pt;}
.y50{bottom:175.546667pt;}
.y84{bottom:179.546667pt;}
.y24{bottom:183.866667pt;}
.yce{bottom:185.146667pt;}
.y11b{bottom:186.746667pt;}
.y32{bottom:186.906667pt;}
.y4f{bottom:190.906667pt;}
.y83{bottom:195.546667pt;}
.y23{bottom:198.906667pt;}
.ycd{bottom:201.146667pt;}
.y31{bottom:202.106667pt;}
.yd9{bottom:204.733333pt;}
.ye1{bottom:205.466667pt;}
.y4e{bottom:206.266667pt;}
.y82{bottom:211.546667pt;}
.y22{bottom:213.466667pt;}
.ycc{bottom:217.146667pt;}
.y11a{bottom:217.306667pt;}
.y30{bottom:217.466667pt;}
.ya8{bottom:221.440000pt;}
.y4d{bottom:221.466667pt;}
.y81{bottom:227.546667pt;}
.y21{bottom:228.026667pt;}
.y119{bottom:232.666667pt;}
.y2f{bottom:232.826667pt;}
.yda{bottom:236.733333pt;}
.y4c{bottom:236.826667pt;}
.ye2{bottom:237.466667pt;}
.y20{bottom:242.746667pt;}
.y80{bottom:243.546667pt;}
.y118{bottom:248.026667pt;}
.y2e{bottom:248.186667pt;}
.ycb{bottom:251.386667pt;}
.y4b{bottom:252.186667pt;}
.y1f{bottom:257.306667pt;}
.y7f{bottom:262.426667pt;}
.y117{bottom:263.386667pt;}
.y2d{bottom:263.546667pt;}
.yca{bottom:266.746667pt;}
.y4a{bottom:267.546667pt;}
.ydb{bottom:268.733333pt;}
.ya9{bottom:269.413333pt;}
.ye3{bottom:269.466667pt;}
.y1e{bottom:271.866667pt;}
.y7e{bottom:277.626667pt;}
.y116{bottom:278.746667pt;}
.y2c{bottom:278.906667pt;}
.yc9{bottom:281.946667pt;}
.y49{bottom:282.906667pt;}
.y1d{bottom:288.826667pt;}
.y7d{bottom:292.986667pt;}
.y2b{bottom:294.106667pt;}
.yc8{bottom:297.306667pt;}
.y48{bottom:298.106667pt;}
.ydc{bottom:300.733333pt;}
.ye4{bottom:301.466667pt;}
.y7c{bottom:308.386667pt;}
.y115{bottom:309.346667pt;}
.y2a{bottom:309.466667pt;}
.y1c{bottom:311.866667pt;}
.yc7{bottom:312.706667pt;}
.y47{bottom:313.506667pt;}
.yaa{bottom:317.373333pt;}
.y7b{bottom:323.746667pt;}
.y114{bottom:324.706667pt;}
.y29{bottom:324.826667pt;}
.y1b{bottom:327.226667pt;}
.yc6{bottom:328.066667pt;}
.y46{bottom:328.866667pt;}
.y9f{bottom:336.066667pt;}
.y7a{bottom:339.106667pt;}
.y113{bottom:340.066667pt;}
.yc5{bottom:343.426667pt;}
.y45{bottom:344.226667pt;}
.y9e{bottom:351.426667pt;}
.y79{bottom:354.466667pt;}
.y112{bottom:355.426667pt;}
.yc4{bottom:358.786667pt;}
.y44{bottom:359.586667pt;}
.y9d{bottom:366.786667pt;}
.y78{bottom:367.906667pt;}
.y111{bottom:370.786667pt;}
.yc3{bottom:373.986667pt;}
.y43{bottom:374.946667pt;}
.y9c{bottom:381.986667pt;}
.y75{bottom:384.226667pt;}
.y110{bottom:386.146667pt;}
.y3f{bottom:387.266667pt;}
.yc2{bottom:389.346667pt;}
.y9b{bottom:397.346667pt;}
.y10f{bottom:401.346667pt;}
.yc1{bottom:404.706667pt;}
.y9a{bottom:409.826667pt;}
.ya0{bottom:409.920000pt;}
.y1a{bottom:411.906667pt;}
.y10e{bottom:416.706667pt;}
.yc0{bottom:420.066667pt;}
.y10d{bottom:432.066667pt;}
.ybf{bottom:435.426667pt;}
.y10c{bottom:447.426667pt;}
.ybe{bottom:450.626667pt;}
.y10b{bottom:462.786667pt;}
.ybd{bottom:465.986667pt;}
.y10a{bottom:477.986667pt;}
.ybc{bottom:481.346667pt;}
.y109{bottom:493.346667pt;}
.ybb{bottom:496.706667pt;}
.y108{bottom:508.706667pt;}
.yba{bottom:512.066667pt;}
.y107{bottom:524.066667pt;}
.yb9{bottom:527.426667pt;}
.y106{bottom:539.453333pt;}
.yb8{bottom:542.653333pt;}
.y105{bottom:554.813333pt;}
.yb7{bottom:558.013333pt;}
.y74{bottom:568.253333pt;}
.y104{bottom:570.013333pt;}
.yb6{bottom:573.373333pt;}
.y103{bottom:585.373333pt;}
.y73{bottom:587.453333pt;}
.yb5{bottom:588.733333pt;}
.y102{bottom:600.733333pt;}
.y72{bottom:602.813333pt;}
.yb4{bottom:604.093333pt;}
.y101{bottom:616.093333pt;}
.y71{bottom:618.013333pt;}
.yb3{bottom:619.453333pt;}
.y100{bottom:631.453333pt;}
.y70{bottom:633.373333pt;}
.yb2{bottom:634.653333pt;}
.yff{bottom:646.813333pt;}
.y6f{bottom:648.733333pt;}
.yb1{bottom:650.013333pt;}
.yfe{bottom:662.013333pt;}
.y6e{bottom:664.093333pt;}
.yb0{bottom:665.373333pt;}
.yfd{bottom:677.373333pt;}
.y6d{bottom:679.453333pt;}
.yaf{bottom:680.733333pt;}
.yfc{bottom:692.733333pt;}
.y6c{bottom:694.813333pt;}
.yae{bottom:696.093333pt;}
.yfb{bottom:708.093333pt;}
.yad{bottom:708.413333pt;}
.yd3{bottom:708.640000pt;}
.y6b{bottom:710.013333pt;}
.yfa{bottom:723.453333pt;}
.y6a{bottom:725.373333pt;}
.yf9{bottom:738.653333pt;}
.y69{bottom:740.733333pt;}
.y99{bottom:748.733333pt;}
.y18{bottom:749.213333pt;}
.yf8{bottom:754.013333pt;}
.y68{bottom:756.093333pt;}
.y98{bottom:764.093333pt;}
.yf7{bottom:769.373333pt;}
.y67{bottom:771.453333pt;}
.yf{bottom:775.493333pt;}
.y97{bottom:779.493333pt;}
.yf6{bottom:784.773333pt;}
.y66{bottom:786.693333pt;}
.y96{bottom:794.693333pt;}
.yf5{bottom:800.133333pt;}
.y65{bottom:802.053333pt;}
.y95{bottom:810.053333pt;}
.yf4{bottom:815.493333pt;}
.y64{bottom:817.413333pt;}
.y94{bottom:823.173333pt;}
.yf3{bottom:830.693333pt;}
.y63{bottom:832.773333pt;}
.y93{bottom:839.173333pt;}
.yf2{bottom:846.053333pt;}
.y62{bottom:848.133333pt;}
.y92{bottom:855.173333pt;}
.yf1{bottom:861.413333pt;}
.y61{bottom:863.493333pt;}
.y91{bottom:871.173333pt;}
.yf0{bottom:876.773333pt;}
.y60{bottom:878.693333pt;}
.y90{bottom:887.173333pt;}
.yef{bottom:892.133333pt;}
.y5f{bottom:894.053333pt;}
.y8f{bottom:903.173333pt;}
.yee{bottom:907.493333pt;}
.y5e{bottom:909.413333pt;}
.yd{bottom:914.053333pt;}
.y8e{bottom:919.173333pt;}
.yed{bottom:922.693333pt;}
.y5d{bottom:924.773333pt;}
.y8d{bottom:935.173333pt;}
.y6{bottom:936.453333pt;}
.yec{bottom:938.053333pt;}
.y5c{bottom:940.133333pt;}
.y8c{bottom:951.173333pt;}
.yeb{bottom:953.413333pt;}
.y5b{bottom:955.493333pt;}
.y8b{bottom:967.173333pt;}
.yea{bottom:968.773333pt;}
.y5a{bottom:970.693333pt;}
.ye9{bottom:984.133333pt;}
.y59{bottom:986.053333pt;}
.ye8{bottom:999.493333pt;}
.y58{bottom:1001.413333pt;}
.ye7{bottom:1012.640000pt;}
.y57{bottom:1016.800000pt;}
.ye6{bottom:1028.640000pt;}
.y56{bottom:1032.160000pt;}
.h20{height:15.200000pt;}
.h22{height:15.360000pt;}
.hc{height:22.080000pt;}
.h1f{height:24.640000pt;}
.h13{height:25.750000pt;}
.h14{height:26.272000pt;}
.h2{height:29.472000pt;}
.h1e{height:30.338437pt;}
.h25{height:30.720000pt;}
.h12{height:31.828125pt;}
.h8{height:32.160000pt;}
.h1a{height:35.303125pt;}
.h1b{height:35.772188pt;}
.h1d{height:37.090625pt;}
.h19{height:37.479688pt;}
.h1c{height:37.583438pt;}
.h4{height:38.625000pt;}
.h27{height:38.672812pt;}
.he{height:39.113750pt;}
.ha{height:39.840000pt;}
.h18{height:42.649687pt;}
.h11{height:42.944375pt;}
.h6{height:44.687500pt;}
.h15{height:45.156250pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h10{height:52.834688pt;}
.h24{height:52.962000pt;}
.hf{height:56.160000pt;}
.h5{height:60.288750pt;}
.hb{height:63.656250pt;}
.h16{height:65.531250pt;}
.h7{height:108.032000pt;}
.hd{height:138.560000pt;}
.h21{height:184.026667pt;}
.h26{height:335.840000pt;}
.h23{height:336.000000pt;}
.h17{height:337.306667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:37.120000pt;}
.w3{width:66.560000pt;}
.we{width:66.720000pt;}
.wb{width:66.912000pt;}
.wf{width:67.040000pt;}
.wd{width:67.072000pt;}
.wc{width:67.200000pt;}
.w1b{width:115.040000pt;}
.w18{width:130.912000pt;}
.w19{width:131.712000pt;}
.w1a{width:136.506667pt;}
.w5{width:138.106667pt;}
.w17{width:146.906667pt;}
.w8{width:196.386667pt;}
.w15{width:203.546667pt;}
.w14{width:218.586667pt;}
.w13{width:240.226667pt;}
.w11{width:331.426667pt;}
.w12{width:331.586667pt;}
.w9{width:467.906667pt;}
.w6{width:526.173333pt;}
.w16{width:576.000000pt;}
.w2{width:598.693333pt;}
.wa{width:649.893333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:1.440000pt;}
.x2{left:7.680000pt;}
.x25{left:9.600000pt;}
.x12{left:11.200000pt;}
.x21{left:13.952000pt;}
.x2d{left:15.520000pt;}
.x1f{left:18.272000pt;}
.x40{left:26.720000pt;}
.xf{left:40.192000pt;}
.xc{left:44.352000pt;}
.x3e{left:55.866667pt;}
.x23{left:62.586667pt;}
.x1{left:64.320000pt;}
.x3b{left:70.973333pt;}
.x4{left:71.999988pt;}
.x14{left:72.960000pt;}
.x29{left:73.853333pt;}
.x5{left:87.226667pt;}
.x43{left:96.031988pt;}
.x3c{left:98.880000pt;}
.x41{left:100.986667pt;}
.x28{left:108.800000pt;}
.x3f{left:110.586667pt;}
.x3d{left:126.240000pt;}
.xe{left:138.426667pt;}
.x16{left:140.826667pt;}
.x2a{left:165.693333pt;}
.x3a{left:173.026667pt;}
.x34{left:176.573333pt;}
.x36{left:180.093333pt;}
.x35{left:183.613333pt;}
.x30{left:188.346655pt;}
.x10{left:191.266667pt;}
.x37{left:201.280000pt;}
.x6{left:202.906667pt;}
.x17{left:208.986667pt;}
.x31{left:212.666667pt;}
.x38{left:236.773333pt;}
.x13{left:241.146655pt;}
.x9{left:253.346667pt;}
.x2b{left:257.533333pt;}
.x11{left:261.186667pt;}
.x2f{left:268.386655pt;}
.x18{left:277.026667pt;}
.x27{left:282.306655pt;}
.x20{left:289.186655pt;}
.xd{left:295.746667pt;}
.x39{left:300.320000pt;}
.x7{left:306.466667pt;}
.x8{left:323.586667pt;}
.xb{left:332.066667pt;}
.x19{left:344.706667pt;}
.x2c{left:352.733333pt;}
.x22{left:397.186667pt;}
.xa{left:402.026667pt;}
.x1a{left:412.866667pt;}
.x2e{left:433.826667pt;}
.x32{left:476.573333pt;}
.x1b{left:480.893333pt;}
.x42{left:497.466667pt;}
.x24{left:525.213333pt;}
.x1c{left:548.573333pt;}
.x33{left:613.733333pt;}
.x1d{left:616.613333pt;}
.x3{left:663.013333pt;}
.x1e{left:684.773333pt;}
.x26{left:687.013322pt;}
}




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