
    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_1ff115b6a89e54ee31dbb632.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4a1625f149e653ec92770265.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_88c36834c0a592023779b10a.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9b8d667653a9b6bf60d144c3.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_defca4745d71b77212ec84c0.woff')format("woff");}.ff6{font-family:ff6;line-height:1.003906;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_eca68befc6312eb62da1b9e6.woff')format("woff");}.ff7{font-family:ff7;line-height:0.970703;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_859c72d942ed727e728fa5e8.woff')format("woff");}.ff8{font-family:ff8;line-height:0.740234;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_12642233f941e09dff4852cc.woff')format("woff");}.ff9{font-family:ff9;line-height:0.978027;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_e0ac7c54b0714c50bfe67e0c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.978027;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_fd5e9518d8a74dc6c7cadc95.woff')format("woff");}.ffb{font-family:ffb;line-height:1.063477;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_6314ed37b016cb6564c6af71.woff')format("woff");}.ffc{font-family:ffc;line-height:1.063477;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_130301694ab792f9947e2b7d.woff')format("woff");}.ffd{font-family:ffd;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);}
.v3{vertical-align:-20.880000px;}
.v6{vertical-align:-12.240000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:12.240000px;}
.v2{vertical-align:20.880000px;}
.v5{vertical-align:22.320000px;}
.v1{vertical-align:23.760000px;}
.lsd{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.457800px;}
.ls15{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.305400px;}
.lsc{letter-spacing:-0.259800px;}
.ls8{letter-spacing:-0.206400px;}
.lsf{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.004320px;}
.ls19{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.037440px;}
.ls2{letter-spacing:0.053280px;}
.lse{letter-spacing:0.106800px;}
.ls16{letter-spacing:0.135600px;}
.ls1{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.259800px;}
.ls27{letter-spacing:0.259920px;}
.ls1e{letter-spacing:0.288000px;}
.ls10{letter-spacing:0.306600px;}
.lsb{letter-spacing:0.360000px;}
.ls28{letter-spacing:0.480000px;}
.ls7{letter-spacing:0.511800px;}
.ls25{letter-spacing:0.900000px;}
.ls21{letter-spacing:1.273680px;}
.ls23{letter-spacing:1.393200px;}
.ls22{letter-spacing:1.629360px;}
.ls1a{letter-spacing:2.460960px;}
.ls1f{letter-spacing:3.180960px;}
.ls9{letter-spacing:7.866720px;}
.ls13{letter-spacing:11.466720px;}
.ls17{letter-spacing:13.491360px;}
.ls1d{letter-spacing:13.679280px;}
.lsa{letter-spacing:15.066720px;}
.ls18{letter-spacing:16.559280px;}
.ls1c{letter-spacing:17.255280px;}
.ls1b{letter-spacing:17.279280px;}
.ls24{letter-spacing:20.357280px;}
.ls20{letter-spacing:21.077280px;}
.ls11{letter-spacing:29.700000px;}
.ls3{letter-spacing:31.626720px;}
.ls26{letter-spacing:41.706720px;}
.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;}
}
.ws15{word-spacing:-59.772960px;}
.ws19{word-spacing:-59.760000px;}
.ws1d{word-spacing:-47.120400px;}
.ws16{word-spacing:-46.812960px;}
.ws13{word-spacing:-46.787040px;}
.ws1b{word-spacing:-46.400400px;}
.ws11{word-spacing:-46.268640px;}
.ws18{word-spacing:-46.148640px;}
.wsf{word-spacing:-46.092960px;}
.ws1a{word-spacing:-45.972960px;}
.ws17{word-spacing:-45.912960px;}
.ws1f{word-spacing:-43.520400px;}
.ws12{word-spacing:-43.212960px;}
.ws10{word-spacing:-42.516960px;}
.ws14{word-spacing:-42.492960px;}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.254600px;}
.ws1{word-spacing:-16.102200px;}
.wse{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.246600px;}
.ws21{word-spacing:-15.199920px;}
.wsd{word-spacing:-15.199800px;}
.wsa{word-spacing:-15.046800px;}
.ws5{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.733600px;}
.ws9{word-spacing:-14.680200px;}
.ws20{word-spacing:-14.580000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws1c{word-spacing:-1.557360px;}
.ws1e{word-spacing:-0.892080px;}
.ws8{word-spacing:0.000000px;}
._1{margin-left:-2541.138480px;}
._3{margin-left:-1449.751680px;}
._5{margin-left:-1445.990040px;}
._4{margin-left:-939.110400px;}
._6{margin-left:-579.228480px;}
._22{margin-left:-15.312480px;}
._24{margin-left:-5.408160px;}
._1a{margin-left:-4.236960px;}
._e{margin-left:-3.227040px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._f{width:2.269680px;}
._10{width:3.472080px;}
._b{width:5.020080px;}
._9{width:6.128640px;}
._a{width:7.195200px;}
._11{width:8.545680px;}
._d{width:9.979920px;}
._c{width:11.055600px;}
._17{width:12.216240px;}
._14{width:13.769760px;}
._20{width:15.751200px;}
._16{width:17.270640px;}
._15{width:18.645120px;}
._18{width:19.860240px;}
._1f{width:21.513600px;}
._19{width:23.077440px;}
._13{width:24.511680px;}
._12{width:25.517520px;}
._23{width:28.292640px;}
._8{width:29.382960px;}
._7{width:30.468240px;}
._21{width:35.208720px;}
._1e{width:42.511440px;}
._1d{width:43.549680px;}
._1b{width:64.918800px;}
._1c{width:240.804000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y110{bottom:10.620000px;}
.y10f{bottom:30.600000px;}
.y10c{bottom:34.740000px;}
.y10e{bottom:50.430000px;}
.y6{bottom:60.120000px;}
.y10d{bottom:70.230000px;}
.ydc{bottom:89.460000px;}
.y10a{bottom:93.240000px;}
.y93{bottom:94.140000px;}
.yab{bottom:95.940000px;}
.y32{bottom:101.340000px;}
.ydb{bottom:109.440000px;}
.y109{bottom:113.220000px;}
.y10b{bottom:113.580000px;}
.y92{bottom:113.940000px;}
.y68{bottom:115.740000px;}
.y31{bottom:121.140000px;}
.yda{bottom:129.420000px;}
.y108{bottom:133.020000px;}
.y91{bottom:133.740000px;}
.y67{bottom:135.540000px;}
.y30{bottom:140.940000px;}
.yd9{bottom:149.400000px;}
.y107{bottom:152.850000px;}
.y90{bottom:153.570000px;}
.y66{bottom:155.370000px;}
.y2f{bottom:160.950000px;}
.yaa{bottom:164.370000px;}
.yd8{bottom:169.230000px;}
.y106{bottom:172.650000px;}
.y8f{bottom:173.370000px;}
.y65{bottom:175.350000px;}
.y2e{bottom:180.750000px;}
.ya9{bottom:184.350000px;}
.yd7{bottom:189.210000px;}
.y105{bottom:192.450000px;}
.y8e{bottom:193.350000px;}
.y64{bottom:195.150000px;}
.y2d{bottom:200.550000px;}
.ya8{bottom:204.150000px;}
.yd6{bottom:209.190000px;}
.y104{bottom:212.430000px;}
.y8d{bottom:213.150000px;}
.y63{bottom:214.950000px;}
.y2c{bottom:220.350000px;}
.ya7{bottom:223.950000px;}
.yd5{bottom:229.350000px;}
.y103{bottom:232.230000px;}
.y8c{bottom:232.950000px;}
.y62{bottom:234.750000px;}
.y2b{bottom:240.150000px;}
.ya6{bottom:243.750000px;}
.yd4{bottom:249.330000px;}
.y102{bottom:252.030000px;}
.y8b{bottom:252.750000px;}
.y61{bottom:254.550000px;}
.y2a{bottom:260.130000px;}
.ya5{bottom:263.550000px;}
.yd3{bottom:269.130000px;}
.y101{bottom:271.830000px;}
.y8a{bottom:272.550000px;}
.y60{bottom:274.530000px;}
.y29{bottom:279.930000px;}
.ya4{bottom:283.530000px;}
.yd2{bottom:288.930000px;}
.y100{bottom:291.630000px;}
.y89{bottom:292.530000px;}
.y5f{bottom:294.330000px;}
.y28{bottom:299.730000px;}
.ya3{bottom:303.330000px;}
.yd1{bottom:308.730000px;}
.yff{bottom:311.610000px;}
.y88{bottom:312.330000px;}
.y5e{bottom:314.130000px;}
.y27{bottom:319.530000px;}
.ya2{bottom:323.130000px;}
.yd0{bottom:328.710000px;}
.yfe{bottom:331.410000px;}
.y87{bottom:332.130000px;}
.y5d{bottom:333.930000px;}
.y26{bottom:339.330000px;}
.ya1{bottom:342.930000px;}
.ycf{bottom:348.510000px;}
.yfd{bottom:351.210000px;}
.y86{bottom:351.930000px;}
.y5c{bottom:353.730000px;}
.y25{bottom:359.310000px;}
.ya0{bottom:362.730000px;}
.yce{bottom:368.310000px;}
.yfc{bottom:371.010000px;}
.y85{bottom:371.730000px;}
.y5b{bottom:373.710000px;}
.y24{bottom:379.110000px;}
.y9f{bottom:382.710000px;}
.ycd{bottom:388.110000px;}
.yfb{bottom:390.810000px;}
.y84{bottom:391.710000px;}
.y5a{bottom:393.510000px;}
.y23{bottom:398.910000px;}
.y9e{bottom:402.555000px;}
.ycc{bottom:407.955000px;}
.yfa{bottom:410.835000px;}
.y83{bottom:411.555000px;}
.y59{bottom:413.355000px;}
.y22{bottom:418.755000px;}
.y9d{bottom:422.355000px;}
.ycb{bottom:427.935000px;}
.yf9{bottom:430.635000px;}
.y82{bottom:431.355000px;}
.y58{bottom:433.155000px;}
.y21{bottom:438.555000px;}
.y9c{bottom:442.155000px;}
.yca{bottom:447.735000px;}
.yf8{bottom:450.435000px;}
.y81{bottom:451.155000px;}
.y57{bottom:452.955000px;}
.y20{bottom:458.535000px;}
.y9b{bottom:461.955000px;}
.yc9{bottom:467.535000px;}
.yf7{bottom:470.235000px;}
.y80{bottom:470.955000px;}
.y56{bottom:472.935000px;}
.y1f{bottom:478.335000px;}
.y9a{bottom:481.935000px;}
.yc8{bottom:487.335000px;}
.yf6{bottom:490.035000px;}
.y7f{bottom:490.935000px;}
.y55{bottom:492.735000px;}
.y1e{bottom:498.135000px;}
.y99{bottom:501.735000px;}
.yc7{bottom:507.135000px;}
.yf5{bottom:510.015000px;}
.y7e{bottom:510.735000px;}
.y54{bottom:512.535000px;}
.y1d{bottom:517.935000px;}
.y98{bottom:521.535000px;}
.yc6{bottom:527.115000px;}
.yf4{bottom:529.815000px;}
.y7d{bottom:530.535000px;}
.y53{bottom:532.335000px;}
.y1c{bottom:537.735000px;}
.y97{bottom:541.335000px;}
.yc5{bottom:546.915000px;}
.yf3{bottom:549.615000px;}
.y7c{bottom:550.335000px;}
.y52{bottom:552.135000px;}
.y1b{bottom:557.715000px;}
.y96{bottom:561.135000px;}
.yc4{bottom:566.895000px;}
.yf2{bottom:569.415000px;}
.y7b{bottom:570.135000px;}
.y51{bottom:572.115000px;}
.y1a{bottom:577.515000px;}
.y95{bottom:581.115000px;}
.yc3{bottom:587.055000px;}
.yf1{bottom:589.215000px;}
.y7a{bottom:590.115000px;}
.y50{bottom:591.915000px;}
.y94{bottom:600.915000px;}
.yc2{bottom:606.855000px;}
.yf0{bottom:609.195000px;}
.y79{bottom:609.915000px;}
.y19{bottom:614.955000px;}
.y4f{bottom:620.715000px;}
.yc1{bottom:626.835000px;}
.yef{bottom:628.995000px;}
.y78{bottom:629.715000px;}
.y4e{bottom:640.515000px;}
.y18{bottom:643.755000px;}
.yc0{bottom:646.995000px;}
.yee{bottom:648.795000px;}
.y77{bottom:649.545000px;}
.y4d{bottom:660.345000px;}
.y17{bottom:663.765000px;}
.ybf{bottom:667.005000px;}
.yed{bottom:668.625000px;}
.y76{bottom:669.345000px;}
.y4c{bottom:680.325000px;}
.y16{bottom:683.565000px;}
.ybe{bottom:686.985000px;}
.yec{bottom:688.425000px;}
.y75{bottom:689.325000px;}
.y4b{bottom:700.125000px;}
.y15{bottom:703.365000px;}
.ybd{bottom:706.785000px;}
.yeb{bottom:708.405000px;}
.y74{bottom:709.125000px;}
.y4a{bottom:719.925000px;}
.y14{bottom:723.165000px;}
.ybc{bottom:726.765000px;}
.yea{bottom:728.205000px;}
.y73{bottom:728.925000px;}
.y49{bottom:739.725000px;}
.y13{bottom:742.965000px;}
.ybb{bottom:746.565000px;}
.ye9{bottom:748.005000px;}
.y72{bottom:748.725000px;}
.y48{bottom:759.525000px;}
.y12{bottom:762.945000px;}
.yba{bottom:766.365000px;}
.ye8{bottom:767.805000px;}
.y71{bottom:768.525000px;}
.y47{bottom:779.505000px;}
.y11{bottom:782.745000px;}
.yb9{bottom:786.345000px;}
.ye7{bottom:787.605000px;}
.y70{bottom:788.505000px;}
.y46{bottom:799.305000px;}
.y10{bottom:802.545000px;}
.yb8{bottom:806.505000px;}
.ye6{bottom:807.585000px;}
.y6f{bottom:808.305000px;}
.y45{bottom:819.105000px;}
.yf{bottom:822.345000px;}
.yb7{bottom:826.305000px;}
.ye5{bottom:827.385000px;}
.y6e{bottom:828.105000px;}
.y44{bottom:838.905000px;}
.ye{bottom:844.485000px;}
.yb6{bottom:846.105000px;}
.ye4{bottom:847.365000px;}
.y6d{bottom:847.905000px;}
.y43{bottom:858.705000px;}
.yd{bottom:864.285000px;}
.yb5{bottom:865.905000px;}
.ye3{bottom:867.345000px;}
.y6c{bottom:867.705000px;}
.y42{bottom:878.685000px;}
.yb4{bottom:885.885000px;}
.ye2{bottom:887.145000px;}
.y6b{bottom:887.685000px;}
.yc{bottom:889.305000px;}
.y41{bottom:898.530000px;}
.yb{bottom:904.470000px;}
.yb3{bottom:906.090000px;}
.ye1{bottom:907.170000px;}
.y6a{bottom:907.530000px;}
.y40{bottom:918.330000px;}
.ya{bottom:925.890000px;}
.ye0{bottom:926.970000px;}
.y69{bottom:927.330000px;}
.yb2{bottom:945.690000px;}
.ydf{bottom:946.770000px;}
.y3f{bottom:947.130000px;}
.y9{bottom:949.290000px;}
.yb1{bottom:965.670000px;}
.yde{bottom:966.570000px;}
.y3e{bottom:966.930000px;}
.y8{bottom:980.970000px;}
.yb0{bottom:985.470000px;}
.ydd{bottom:986.730000px;}
.y3d{bottom:986.910000px;}
.yaf{bottom:1005.270000px;}
.y3c{bottom:1006.710000px;}
.y7{bottom:1012.830000px;}
.yae{bottom:1025.250000px;}
.y3b{bottom:1026.510000px;}
.yad{bottom:1045.590000px;}
.y3a{bottom:1046.310000px;}
.y5{bottom:1051.170000px;}
.yac{bottom:1065.750000px;}
.y39{bottom:1066.110000px;}
.y4{bottom:1081.950000px;}
.y38{bottom:1086.090000px;}
.y37{bottom:1105.890000px;}
.y3{bottom:1112.730000px;}
.y36{bottom:1125.690000px;}
.y2{bottom:1143.690000px;}
.y35{bottom:1145.490000px;}
.y34{bottom:1173.060000px;}
.y1{bottom:1177.560000px;}
.y33{bottom:1193.220000px;}
.h11{height:2.010938px;}
.h7{height:27.147656px;}
.h9{height:41.726953px;}
.h5{height:42.164648px;}
.hc{height:43.302656px;}
.ha{height:43.506914px;}
.hd{height:45.549492px;}
.h4{height:46.251562px;}
.h3{height:46.736719px;}
.h8{height:48.027656px;}
.hf{height:50.364141px;}
.h6{height:53.224453px;}
.he{height:57.514219px;}
.h2{height:67.565039px;}
.hb{height:67.824844px;}
.h10{height:84.276000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:210.810000px;}
.w4{width:581.010000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:7.785000px;}
.x1{left:54.179987px;}
.xa{left:70.199987px;}
.x8{left:73.799987px;}
.x2{left:75.599987px;}
.x3{left:96.515987px;}
.x9{left:100.835987px;}
.xb{left:191.370000px;}
.xc{left:264.810000px;}
.x6{left:276.914987px;}
.x4{left:298.334987px;}
.x5{left:380.234987px;}
.x7{left:409.934987px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v6{vertical-align:-10.880000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:10.880000pt;}
.v2{vertical-align:18.560000pt;}
.v5{vertical-align:19.840000pt;}
.v1{vertical-align:21.120000pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.406933pt;}
.ls15{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.271467pt;}
.lsc{letter-spacing:-0.230933pt;}
.ls8{letter-spacing:-0.183467pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.003840pt;}
.ls19{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.033280pt;}
.ls2{letter-spacing:0.047360pt;}
.lse{letter-spacing:0.094933pt;}
.ls16{letter-spacing:0.120533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.230933pt;}
.ls27{letter-spacing:0.231040pt;}
.ls1e{letter-spacing:0.256000pt;}
.ls10{letter-spacing:0.272533pt;}
.lsb{letter-spacing:0.320000pt;}
.ls28{letter-spacing:0.426667pt;}
.ls7{letter-spacing:0.454933pt;}
.ls25{letter-spacing:0.800000pt;}
.ls21{letter-spacing:1.132160pt;}
.ls23{letter-spacing:1.238400pt;}
.ls22{letter-spacing:1.448320pt;}
.ls1a{letter-spacing:2.187520pt;}
.ls1f{letter-spacing:2.827520pt;}
.ls9{letter-spacing:6.992640pt;}
.ls13{letter-spacing:10.192640pt;}
.ls17{letter-spacing:11.992320pt;}
.ls1d{letter-spacing:12.159360pt;}
.lsa{letter-spacing:13.392640pt;}
.ls18{letter-spacing:14.719360pt;}
.ls1c{letter-spacing:15.338027pt;}
.ls1b{letter-spacing:15.359360pt;}
.ls24{letter-spacing:18.095360pt;}
.ls20{letter-spacing:18.735360pt;}
.ls11{letter-spacing:26.400000pt;}
.ls3{letter-spacing:28.112640pt;}
.ls26{letter-spacing:37.072640pt;}
.ws15{word-spacing:-53.131520pt;}
.ws19{word-spacing:-53.120000pt;}
.ws1d{word-spacing:-41.884800pt;}
.ws16{word-spacing:-41.611520pt;}
.ws13{word-spacing:-41.588480pt;}
.ws1b{word-spacing:-41.244800pt;}
.ws11{word-spacing:-41.127680pt;}
.ws18{word-spacing:-41.021013pt;}
.wsf{word-spacing:-40.971520pt;}
.ws1a{word-spacing:-40.864853pt;}
.ws17{word-spacing:-40.811520pt;}
.ws1f{word-spacing:-38.684800pt;}
.ws12{word-spacing:-38.411520pt;}
.ws10{word-spacing:-37.792853pt;}
.ws14{word-spacing:-37.771520pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.ws1{word-spacing:-14.313067pt;}
.wse{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.552533pt;}
.ws21{word-spacing:-13.511040pt;}
.wsd{word-spacing:-13.510933pt;}
.wsa{word-spacing:-13.374933pt;}
.ws5{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.ws7{word-spacing:-13.096533pt;}
.ws9{word-spacing:-13.049067pt;}
.ws20{word-spacing:-12.960000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws1c{word-spacing:-1.384320pt;}
.ws1e{word-spacing:-0.792960pt;}
.ws8{word-spacing:0.000000pt;}
._1{margin-left:-2258.789760pt;}
._3{margin-left:-1288.668160pt;}
._5{margin-left:-1285.324480pt;}
._4{margin-left:-834.764800pt;}
._6{margin-left:-514.869760pt;}
._22{margin-left:-13.611093pt;}
._24{margin-left:-4.807253pt;}
._1a{margin-left:-3.766187pt;}
._e{margin-left:-2.868480pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._f{width:2.017493pt;}
._10{width:3.086293pt;}
._b{width:4.462293pt;}
._9{width:5.447680pt;}
._a{width:6.395733pt;}
._11{width:7.596160pt;}
._d{width:8.871040pt;}
._c{width:9.827200pt;}
._17{width:10.858880pt;}
._14{width:12.239787pt;}
._20{width:14.001067pt;}
._16{width:15.351680pt;}
._15{width:16.573440pt;}
._18{width:17.653547pt;}
._1f{width:19.123200pt;}
._19{width:20.513280pt;}
._13{width:21.788160pt;}
._12{width:22.682240pt;}
._23{width:25.149013pt;}
._8{width:26.118187pt;}
._7{width:27.082880pt;}
._21{width:31.296640pt;}
._1e{width:37.787947pt;}
._1d{width:38.710827pt;}
._1b{width:57.705600pt;}
._1c{width:214.048000pt;}
.fs8{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y110{bottom:9.440000pt;}
.y10f{bottom:27.200000pt;}
.y10c{bottom:30.880000pt;}
.y10e{bottom:44.826667pt;}
.y6{bottom:53.440000pt;}
.y10d{bottom:62.426667pt;}
.ydc{bottom:79.520000pt;}
.y10a{bottom:82.880000pt;}
.y93{bottom:83.680000pt;}
.yab{bottom:85.280000pt;}
.y32{bottom:90.080000pt;}
.ydb{bottom:97.280000pt;}
.y109{bottom:100.640000pt;}
.y10b{bottom:100.960000pt;}
.y92{bottom:101.280000pt;}
.y68{bottom:102.880000pt;}
.y31{bottom:107.680000pt;}
.yda{bottom:115.040000pt;}
.y108{bottom:118.240000pt;}
.y91{bottom:118.880000pt;}
.y67{bottom:120.480000pt;}
.y30{bottom:125.280000pt;}
.yd9{bottom:132.800000pt;}
.y107{bottom:135.866667pt;}
.y90{bottom:136.506667pt;}
.y66{bottom:138.106667pt;}
.y2f{bottom:143.066667pt;}
.yaa{bottom:146.106667pt;}
.yd8{bottom:150.426667pt;}
.y106{bottom:153.466667pt;}
.y8f{bottom:154.106667pt;}
.y65{bottom:155.866667pt;}
.y2e{bottom:160.666667pt;}
.ya9{bottom:163.866667pt;}
.yd7{bottom:168.186667pt;}
.y105{bottom:171.066667pt;}
.y8e{bottom:171.866667pt;}
.y64{bottom:173.466667pt;}
.y2d{bottom:178.266667pt;}
.ya8{bottom:181.466667pt;}
.yd6{bottom:185.946667pt;}
.y104{bottom:188.826667pt;}
.y8d{bottom:189.466667pt;}
.y63{bottom:191.066667pt;}
.y2c{bottom:195.866667pt;}
.ya7{bottom:199.066667pt;}
.yd5{bottom:203.866667pt;}
.y103{bottom:206.426667pt;}
.y8c{bottom:207.066667pt;}
.y62{bottom:208.666667pt;}
.y2b{bottom:213.466667pt;}
.ya6{bottom:216.666667pt;}
.yd4{bottom:221.626667pt;}
.y102{bottom:224.026667pt;}
.y8b{bottom:224.666667pt;}
.y61{bottom:226.266667pt;}
.y2a{bottom:231.226667pt;}
.ya5{bottom:234.266667pt;}
.yd3{bottom:239.226667pt;}
.y101{bottom:241.626667pt;}
.y8a{bottom:242.266667pt;}
.y60{bottom:244.026667pt;}
.y29{bottom:248.826667pt;}
.ya4{bottom:252.026667pt;}
.yd2{bottom:256.826667pt;}
.y100{bottom:259.226667pt;}
.y89{bottom:260.026667pt;}
.y5f{bottom:261.626667pt;}
.y28{bottom:266.426667pt;}
.ya3{bottom:269.626667pt;}
.yd1{bottom:274.426667pt;}
.yff{bottom:276.986667pt;}
.y88{bottom:277.626667pt;}
.y5e{bottom:279.226667pt;}
.y27{bottom:284.026667pt;}
.ya2{bottom:287.226667pt;}
.yd0{bottom:292.186667pt;}
.yfe{bottom:294.586667pt;}
.y87{bottom:295.226667pt;}
.y5d{bottom:296.826667pt;}
.y26{bottom:301.626667pt;}
.ya1{bottom:304.826667pt;}
.ycf{bottom:309.786667pt;}
.yfd{bottom:312.186667pt;}
.y86{bottom:312.826667pt;}
.y5c{bottom:314.426667pt;}
.y25{bottom:319.386667pt;}
.ya0{bottom:322.426667pt;}
.yce{bottom:327.386667pt;}
.yfc{bottom:329.786667pt;}
.y85{bottom:330.426667pt;}
.y5b{bottom:332.186667pt;}
.y24{bottom:336.986667pt;}
.y9f{bottom:340.186667pt;}
.ycd{bottom:344.986667pt;}
.yfb{bottom:347.386667pt;}
.y84{bottom:348.186667pt;}
.y5a{bottom:349.786667pt;}
.y23{bottom:354.586667pt;}
.y9e{bottom:357.826667pt;}
.ycc{bottom:362.626667pt;}
.yfa{bottom:365.186667pt;}
.y83{bottom:365.826667pt;}
.y59{bottom:367.426667pt;}
.y22{bottom:372.226667pt;}
.y9d{bottom:375.426667pt;}
.ycb{bottom:380.386667pt;}
.yf9{bottom:382.786667pt;}
.y82{bottom:383.426667pt;}
.y58{bottom:385.026667pt;}
.y21{bottom:389.826667pt;}
.y9c{bottom:393.026667pt;}
.yca{bottom:397.986667pt;}
.yf8{bottom:400.386667pt;}
.y81{bottom:401.026667pt;}
.y57{bottom:402.626667pt;}
.y20{bottom:407.586667pt;}
.y9b{bottom:410.626667pt;}
.yc9{bottom:415.586667pt;}
.yf7{bottom:417.986667pt;}
.y80{bottom:418.626667pt;}
.y56{bottom:420.386667pt;}
.y1f{bottom:425.186667pt;}
.y9a{bottom:428.386667pt;}
.yc8{bottom:433.186667pt;}
.yf6{bottom:435.586667pt;}
.y7f{bottom:436.386667pt;}
.y55{bottom:437.986667pt;}
.y1e{bottom:442.786667pt;}
.y99{bottom:445.986667pt;}
.yc7{bottom:450.786667pt;}
.yf5{bottom:453.346667pt;}
.y7e{bottom:453.986667pt;}
.y54{bottom:455.586667pt;}
.y1d{bottom:460.386667pt;}
.y98{bottom:463.586667pt;}
.yc6{bottom:468.546667pt;}
.yf4{bottom:470.946667pt;}
.y7d{bottom:471.586667pt;}
.y53{bottom:473.186667pt;}
.y1c{bottom:477.986667pt;}
.y97{bottom:481.186667pt;}
.yc5{bottom:486.146667pt;}
.yf3{bottom:488.546667pt;}
.y7c{bottom:489.186667pt;}
.y52{bottom:490.786667pt;}
.y1b{bottom:495.746667pt;}
.y96{bottom:498.786667pt;}
.yc4{bottom:503.906667pt;}
.yf2{bottom:506.146667pt;}
.y7b{bottom:506.786667pt;}
.y51{bottom:508.546667pt;}
.y1a{bottom:513.346667pt;}
.y95{bottom:516.546667pt;}
.yc3{bottom:521.826667pt;}
.yf1{bottom:523.746667pt;}
.y7a{bottom:524.546667pt;}
.y50{bottom:526.146667pt;}
.y94{bottom:534.146667pt;}
.yc2{bottom:539.426667pt;}
.yf0{bottom:541.506667pt;}
.y79{bottom:542.146667pt;}
.y19{bottom:546.626667pt;}
.y4f{bottom:551.746667pt;}
.yc1{bottom:557.186667pt;}
.yef{bottom:559.106667pt;}
.y78{bottom:559.746667pt;}
.y4e{bottom:569.346667pt;}
.y18{bottom:572.226667pt;}
.yc0{bottom:575.106667pt;}
.yee{bottom:576.706667pt;}
.y77{bottom:577.373333pt;}
.y4d{bottom:586.973333pt;}
.y17{bottom:590.013333pt;}
.ybf{bottom:592.893333pt;}
.yed{bottom:594.333333pt;}
.y76{bottom:594.973333pt;}
.y4c{bottom:604.733333pt;}
.y16{bottom:607.613333pt;}
.ybe{bottom:610.653333pt;}
.yec{bottom:611.933333pt;}
.y75{bottom:612.733333pt;}
.y4b{bottom:622.333333pt;}
.y15{bottom:625.213333pt;}
.ybd{bottom:628.253333pt;}
.yeb{bottom:629.693333pt;}
.y74{bottom:630.333333pt;}
.y4a{bottom:639.933333pt;}
.y14{bottom:642.813333pt;}
.ybc{bottom:646.013333pt;}
.yea{bottom:647.293333pt;}
.y73{bottom:647.933333pt;}
.y49{bottom:657.533333pt;}
.y13{bottom:660.413333pt;}
.ybb{bottom:663.613333pt;}
.ye9{bottom:664.893333pt;}
.y72{bottom:665.533333pt;}
.y48{bottom:675.133333pt;}
.y12{bottom:678.173333pt;}
.yba{bottom:681.213333pt;}
.ye8{bottom:682.493333pt;}
.y71{bottom:683.133333pt;}
.y47{bottom:692.893333pt;}
.y11{bottom:695.773333pt;}
.yb9{bottom:698.973333pt;}
.ye7{bottom:700.093333pt;}
.y70{bottom:700.893333pt;}
.y46{bottom:710.493333pt;}
.y10{bottom:713.373333pt;}
.yb8{bottom:716.893333pt;}
.ye6{bottom:717.853333pt;}
.y6f{bottom:718.493333pt;}
.y45{bottom:728.093333pt;}
.yf{bottom:730.973333pt;}
.yb7{bottom:734.493333pt;}
.ye5{bottom:735.453333pt;}
.y6e{bottom:736.093333pt;}
.y44{bottom:745.693333pt;}
.ye{bottom:750.653333pt;}
.yb6{bottom:752.093333pt;}
.ye4{bottom:753.213333pt;}
.y6d{bottom:753.693333pt;}
.y43{bottom:763.293333pt;}
.yd{bottom:768.253333pt;}
.yb5{bottom:769.693333pt;}
.ye3{bottom:770.973333pt;}
.y6c{bottom:771.293333pt;}
.y42{bottom:781.053333pt;}
.yb4{bottom:787.453333pt;}
.ye2{bottom:788.573333pt;}
.y6b{bottom:789.053333pt;}
.yc{bottom:790.493333pt;}
.y41{bottom:798.693333pt;}
.yb{bottom:803.973333pt;}
.yb3{bottom:805.413333pt;}
.ye1{bottom:806.373333pt;}
.y6a{bottom:806.693333pt;}
.y40{bottom:816.293333pt;}
.ya{bottom:823.013333pt;}
.ye0{bottom:823.973333pt;}
.y69{bottom:824.293333pt;}
.yb2{bottom:840.613333pt;}
.ydf{bottom:841.573333pt;}
.y3f{bottom:841.893333pt;}
.y9{bottom:843.813333pt;}
.yb1{bottom:858.373333pt;}
.yde{bottom:859.173333pt;}
.y3e{bottom:859.493333pt;}
.y8{bottom:871.973333pt;}
.yb0{bottom:875.973333pt;}
.ydd{bottom:877.093333pt;}
.y3d{bottom:877.253333pt;}
.yaf{bottom:893.573333pt;}
.y3c{bottom:894.853333pt;}
.y7{bottom:900.293333pt;}
.yae{bottom:911.333333pt;}
.y3b{bottom:912.453333pt;}
.yad{bottom:929.413333pt;}
.y3a{bottom:930.053333pt;}
.y5{bottom:934.373333pt;}
.yac{bottom:947.333333pt;}
.y39{bottom:947.653333pt;}
.y4{bottom:961.733333pt;}
.y38{bottom:965.413333pt;}
.y37{bottom:983.013333pt;}
.y3{bottom:989.093333pt;}
.y36{bottom:1000.613333pt;}
.y2{bottom:1016.613333pt;}
.y35{bottom:1018.213333pt;}
.y34{bottom:1042.720000pt;}
.y1{bottom:1046.720000pt;}
.y33{bottom:1060.640000pt;}
.h11{height:1.787500pt;}
.h7{height:24.131250pt;}
.h9{height:37.090625pt;}
.h5{height:37.479688pt;}
.hc{height:38.491250pt;}
.ha{height:38.672812pt;}
.hd{height:40.488438pt;}
.h4{height:41.112500pt;}
.h3{height:41.543750pt;}
.h8{height:42.691250pt;}
.hf{height:44.768125pt;}
.h6{height:47.310625pt;}
.he{height:51.123750pt;}
.h2{height:60.057813pt;}
.hb{height:60.288750pt;}
.h10{height:74.912000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:187.386667pt;}
.w4{width:516.453333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:6.920000pt;}
.x1{left:48.159988pt;}
.xa{left:62.399988pt;}
.x8{left:65.599988pt;}
.x2{left:67.199988pt;}
.x3{left:85.791988pt;}
.x9{left:89.631988pt;}
.xb{left:170.106667pt;}
.xc{left:235.386667pt;}
.x6{left:246.146655pt;}
.x4{left:265.186655pt;}
.x5{left:337.986655pt;}
.x7{left:364.386655pt;}
}




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