
    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_ce43e24a4932d5d42a9b7f29.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a18b1c4e8f2e7cc48debb7cc.woff')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_1ea94f39c6882690b8717d2e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f027d488b5c9274d745ec482.woff')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_adf6ccbe2abf7ca6a52ed95b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_cd079e0c15e6250388b56c4f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_aea4f5c4aa3b991d8a8867bc.woff')format("woff");}.ff7{font-family:ff7;line-height:1.208008;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_c22f0682849b75b200db88b6.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff9{font-family:ff9;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);}
.va{vertical-align:-52.320000px;}
.v7{vertical-align:-37.830000px;}
.v2{vertical-align:-29.430000px;}
.v6{vertical-align:-22.800000px;}
.v1{vertical-align:-17.400000px;}
.v3{vertical-align:-14.400000px;}
.v5{vertical-align:-2.400000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:2.520000px;}
.v4{vertical-align:16.800000px;}
.v9{vertical-align:19.200000px;}
.lsc{letter-spacing:-3.000000px;}
.lse{letter-spacing:-2.994000px;}
.lsb{letter-spacing:-2.988000px;}
.lsd{letter-spacing:-2.700000px;}
.ls10{letter-spacing:-0.600000px;}
.lsf{letter-spacing:-0.384000px;}
.ls22{letter-spacing:-0.024000px;}
.lsa{letter-spacing:-0.012000px;}
.ls8{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.024000px;}
.ls25{letter-spacing:0.060000px;}
.ls1a{letter-spacing:0.072000px;}
.ls15{letter-spacing:0.090000px;}
.ls0{letter-spacing:0.120000px;}
.ls1b{letter-spacing:0.132000px;}
.ls9{letter-spacing:0.150000px;}
.ls5{letter-spacing:0.168000px;}
.ls12{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.240000px;}
.ls2{letter-spacing:0.300000px;}
.ls1e{letter-spacing:1.392000px;}
.ls17{letter-spacing:1.536000px;}
.ls21{letter-spacing:1.872000px;}
.ls1c{letter-spacing:3.045000px;}
.ls16{letter-spacing:4.359000px;}
.ls13{letter-spacing:4.899000px;}
.ls6{letter-spacing:14.340000px;}
.ls1d{letter-spacing:15.816000px;}
.ls27{letter-spacing:18.720000px;}
.ls18{letter-spacing:19.920000px;}
.ls19{letter-spacing:20.016000px;}
.ls1f{letter-spacing:21.000000px;}
.ls20{letter-spacing:21.180000px;}
.ls7{letter-spacing:24.000000px;}
.ls29{letter-spacing:24.660000px;}
.ls11{letter-spacing:33.984000px;}
.ls28{letter-spacing:36.540000px;}
.ls23{letter-spacing:40.200000px;}
.ls24{letter-spacing:54.984000px;}
.ls26{letter-spacing:88.200000px;}
.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;}
}
.ws12{word-spacing:-72.000000px;}
.ws19{word-spacing:-56.040000px;}
.ws14{word-spacing:-52.536000px;}
.ws10{word-spacing:-51.984000px;}
.ws15{word-spacing:-51.936000px;}
.wsb{word-spacing:-18.216000px;}
.wsc{word-spacing:-18.168000px;}
.wsd{word-spacing:-18.024000px;}
.ws9{word-spacing:-18.000000px;}
.ws17{word-spacing:-17.976000px;}
.wsa{word-spacing:-17.616000px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.524000px;}
.ws2{word-spacing:-13.512000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.488000px;}
.ws11{word-spacing:-12.750000px;}
.ws6{word-spacing:-10.512000px;}
.ws8{word-spacing:-10.506000px;}
.ws7{word-spacing:-10.500000px;}
.wse{word-spacing:0.000000px;}
.ws18{word-spacing:5.703000px;}
.ws16{word-spacing:6.210000px;}
.ws13{word-spacing:9.810000px;}
.wsf{word-spacing:9.903000px;}
._32{margin-left:-9.381000px;}
._33{margin-left:-7.872000px;}
._34{margin-left:-5.808000px;}
._6{margin-left:-4.590000px;}
._2{margin-left:-3.240000px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._0{width:1.050000px;}
._7{width:2.172000px;}
._8{width:3.312000px;}
._f{width:4.638000px;}
._d{width:6.006000px;}
._e{width:7.020000px;}
._2e{width:8.166000px;}
._21{width:9.378000px;}
._5{width:10.986000px;}
._4{width:12.006000px;}
._16{width:13.176000px;}
._9{width:14.256000px;}
._1f{width:15.264000px;}
._1c{width:16.992000px;}
._a{width:19.182000px;}
._20{width:21.216000px;}
._1e{width:22.392000px;}
._35{width:23.544000px;}
._14{width:24.552000px;}
._2b{width:25.560000px;}
._2f{width:26.568000px;}
._26{width:27.648000px;}
._27{width:28.728000px;}
._2d{width:30.024000px;}
._17{width:31.668000px;}
._12{width:33.120000px;}
._13{width:34.920000px;}
._15{width:36.792000px;}
._1d{width:37.800000px;}
._3e{width:39.168000px;}
._3f{width:40.494000px;}
._3c{width:41.952000px;}
._11{width:43.152000px;}
._49{width:44.196000px;}
._b{width:45.288000px;}
._c{width:46.368000px;}
._1a{width:48.384000px;}
._1b{width:49.608000px;}
._3d{width:50.760000px;}
._28{width:51.984000px;}
._2a{width:54.288000px;}
._4e{width:55.980000px;}
._29{width:57.528000px;}
._2c{width:58.896000px;}
._31{width:60.012000px;}
._18{width:64.296000px;}
._19{width:65.376000px;}
._22{width:66.600000px;}
._47{width:68.688000px;}
._39{width:73.584000px;}
._45{width:76.320000px;}
._40{width:80.424000px;}
._41{width:81.720000px;}
._4b{width:82.728000px;}
._4c{width:84.096000px;}
._23{width:86.676000px;}
._3b{width:87.708000px;}
._3a{width:88.932000px;}
._24{width:91.008000px;}
._25{width:92.088000px;}
._38{width:93.672000px;}
._36{width:103.536000px;}
._37{width:105.120000px;}
._30{width:107.928000px;}
._4f{width:119.808000px;}
._50{width:121.032000px;}
._48{width:125.580000px;}
._43{width:126.708000px;}
._42{width:135.000000px;}
._44{width:153.420000px;}
._4a{width:161.352000px;}
._10{width:173.736000px;}
._4d{width:197.304000px;}
._46{width:212.184000px;}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:51.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.100000px;}
.y23{bottom:3.900000px;}
.y7{bottom:5.400000px;}
.yb{bottom:6.000000px;}
.yc{bottom:6.750000px;}
.y9c{bottom:7.650000px;}
.y99{bottom:11.115000px;}
.y97{bottom:11.250000px;}
.ya{bottom:19.950000px;}
.y6{bottom:20.550000px;}
.y26{bottom:24.600000px;}
.y22{bottom:24.645000px;}
.y9b{bottom:32.100000px;}
.y9{bottom:33.900000px;}
.y5{bottom:36.000000px;}
.y21{bottom:45.345000px;}
.y3{bottom:57.637500px;}
.y20{bottom:66.045000px;}
.y2{bottom:81.637500px;}
.y1f{bottom:86.745000px;}
.y1e{bottom:107.445000px;}
.yc0{bottom:111.187500px;}
.ye9{bottom:118.687500px;}
.y68{bottom:118.837500px;}
.y3c{bottom:122.437500px;}
.y1d{bottom:128.145000px;}
.y95{bottom:132.037500px;}
.ybf{bottom:135.487500px;}
.ye8{bottom:143.137500px;}
.y65{bottom:145.387500px;}
.y3b{bottom:146.737500px;}
.y1c{bottom:148.845000px;}
.yea{bottom:149.587500px;}
.y66{bottom:152.745000px;}
.y67{bottom:154.845000px;}
.y94{bottom:156.495000px;}
.ybe{bottom:159.945000px;}
.ye7{bottom:167.430000px;}
.y1b{bottom:169.545000px;}
.y3a{bottom:171.180000px;}
.y64{bottom:174.045000px;}
.y93{bottom:180.795000px;}
.ybd{bottom:184.395000px;}
.y1a{bottom:190.245000px;}
.ye6{bottom:191.880000px;}
.y39{bottom:195.630000px;}
.y63{bottom:198.345000px;}
.y92{bottom:205.245000px;}
.ybc{bottom:208.695000px;}
.y19{bottom:210.945000px;}
.ye5{bottom:216.330000px;}
.y38{bottom:219.945000px;}
.y62{bottom:222.795000px;}
.y91{bottom:229.695000px;}
.ybb{bottom:234.495000px;}
.ye4{bottom:240.795000px;}
.y37{bottom:244.395000px;}
.y61{bottom:247.245000px;}
.y90{bottom:254.145000px;}
.yba{bottom:258.945000px;}
.ye3{bottom:265.095000px;}
.y36{bottom:268.845000px;}
.y60{bottom:271.545000px;}
.y8f{bottom:278.445000px;}
.yb9{bottom:283.245000px;}
.ye2{bottom:290.895000px;}
.y35{bottom:293.295000px;}
.y5f{bottom:295.995000px;}
.y8e{bottom:302.895000px;}
.yb8{bottom:307.695000px;}
.ye1{bottom:315.195000px;}
.y34{bottom:317.580000px;}
.y5e{bottom:320.445000px;}
.y8d{bottom:327.330000px;}
.yb7{bottom:332.145000px;}
.ye0{bottom:339.645000px;}
.y33{bottom:342.045000px;}
.y5d{bottom:344.745000px;}
.y8c{bottom:351.645000px;}
.yb6{bottom:356.445000px;}
.ydf{bottom:364.095000px;}
.y32{bottom:366.495000px;}
.y5c{bottom:369.195000px;}
.y8b{bottom:376.095000px;}
.yb5{bottom:380.925000px;}
.yde{bottom:388.425000px;}
.y31{bottom:390.825000px;}
.y5b{bottom:393.675000px;}
.y8a{bottom:400.575000px;}
.yb4{bottom:406.575000px;}
.ydd{bottom:414.225000px;}
.y30{bottom:415.275000px;}
.y5a{bottom:418.125000px;}
.y89{bottom:425.025000px;}
.yb3{bottom:431.025000px;}
.ydc{bottom:438.525000px;}
.y2f{bottom:439.725000px;}
.y59{bottom:442.425000px;}
.y88{bottom:449.325000px;}
.yb2{bottom:455.475000px;}
.ydb{bottom:462.975000px;}
.y2e{bottom:464.175000px;}
.y58{bottom:466.875000px;}
.y87{bottom:473.775000px;}
.yb1{bottom:479.925000px;}
.yda{bottom:487.425000px;}
.y2d{bottom:488.475000px;}
.y57{bottom:491.325000px;}
.y86{bottom:498.225000px;}
.yb0{bottom:504.225000px;}
.yd9{bottom:511.725000px;}
.y2c{bottom:512.925000px;}
.y56{bottom:515.625000px;}
.y85{bottom:522.525000px;}
.yaf{bottom:528.675000px;}
.y2b{bottom:537.375000px;}
.yd8{bottom:537.525000px;}
.y55{bottom:540.075000px;}
.y84{bottom:546.975000px;}
.yae{bottom:554.325000px;}
.y2a{bottom:561.675000px;}
.yd7{bottom:561.975000px;}
.y54{bottom:564.525000px;}
.y83{bottom:571.425000px;}
.yad{bottom:578.775000px;}
.y29{bottom:586.125000px;}
.yd6{bottom:586.275000px;}
.y53{bottom:588.975000px;}
.y82{bottom:595.875000px;}
.yac{bottom:603.225000px;}
.y28{bottom:610.575000px;}
.yd5{bottom:610.725000px;}
.y52{bottom:613.275000px;}
.y81{bottom:620.175000px;}
.yab{bottom:627.525000px;}
.yd4{bottom:636.375000px;}
.y51{bottom:637.725000px;}
.y27{bottom:643.275000px;}
.y80{bottom:644.625000px;}
.yaa{bottom:651.975000px;}
.y25{bottom:660.075000px;}
.yd3{bottom:660.825000px;}
.y50{bottom:662.175000px;}
.y7f{bottom:669.075000px;}
.ya9{bottom:676.425000px;}
.yd2{bottom:685.275000px;}
.y4f{bottom:686.475000px;}
.y7e{bottom:693.375000px;}
.ya8{bottom:700.875000px;}
.y24{bottom:701.475000px;}
.yd1{bottom:709.725000px;}
.y4e{bottom:710.925000px;}
.y7d{bottom:717.825000px;}
.y18{bottom:722.175000px;}
.ya7{bottom:725.175000px;}
.yd0{bottom:734.025000px;}
.y4d{bottom:735.375000px;}
.y7a{bottom:745.170000px;}
.ya6{bottom:749.670000px;}
.y7b{bottom:752.520000px;}
.y7c{bottom:754.620000px;}
.ycf{bottom:758.520000px;}
.y4c{bottom:759.870000px;}
.y79{bottom:773.820000px;}
.ya5{bottom:774.120000px;}
.yce{bottom:782.970000px;}
.y4b{bottom:784.170000px;}
.y78{bottom:798.270000px;}
.ya4{bottom:798.420000px;}
.ycd{bottom:807.270000px;}
.y4a{bottom:808.620000px;}
.y77{bottom:822.705000px;}
.ya3{bottom:822.870000px;}
.ycc{bottom:831.720000px;}
.y49{bottom:833.070000px;}
.y76{bottom:847.020000px;}
.ya2{bottom:847.320000px;}
.ycb{bottom:856.170000px;}
.y48{bottom:857.370000px;}
.y75{bottom:871.470000px;}
.ya1{bottom:871.770000px;}
.yca{bottom:880.620000px;}
.y47{bottom:881.820000px;}
.y74{bottom:895.920000px;}
.ya0{bottom:896.070000px;}
.yc9{bottom:904.920000px;}
.y46{bottom:906.270000px;}
.y73{bottom:920.220000px;}
.y9f{bottom:920.520000px;}
.yc8{bottom:929.370000px;}
.y45{bottom:930.720000px;}
.y72{bottom:944.670000px;}
.y9e{bottom:944.970000px;}
.y17{bottom:953.520000px;}
.yc7{bottom:953.820000px;}
.y44{bottom:955.020000px;}
.y71{bottom:969.120000px;}
.y9d{bottom:969.270000px;}
.y16{bottom:972.720000px;}
.yc6{bottom:978.120000px;}
.y43{bottom:979.470000px;}
.y9a{bottom:986.820000px;}
.y15{bottom:993.420000px;}
.y70{bottom:993.570000px;}
.yc5{bottom:1002.570000px;}
.y42{bottom:1003.920000px;}
.y14{bottom:1014.120000px;}
.y6f{bottom:1017.870000px;}
.yc4{bottom:1027.020000px;}
.y41{bottom:1028.220000px;}
.yed{bottom:1030.170000px;}
.y13{bottom:1034.820000px;}
.y98{bottom:1036.455000px;}
.y6e{bottom:1042.470000px;}
.yc3{bottom:1051.470000px;}
.y40{bottom:1052.670000px;}
.yec{bottom:1053.870000px;}
.y12{bottom:1055.520000px;}
.y96{bottom:1065.120000px;}
.y6d{bottom:1067.370000px;}
.yc2{bottom:1075.770000px;}
.y11{bottom:1076.220000px;}
.y3f{bottom:1077.120000px;}
.yeb{bottom:1077.720000px;}
.y6a{bottom:1094.970000px;}
.y10{bottom:1096.950000px;}
.yc1{bottom:1100.250000px;}
.y3e{bottom:1101.600000px;}
.y6b{bottom:1102.350000px;}
.y6c{bottom:1104.450000px;}
.yf{bottom:1117.650000px;}
.y69{bottom:1125.600000px;}
.y3d{bottom:1125.900000px;}
.ye{bottom:1150.350000px;}
.y1{bottom:1176.900000px;}
.y4{bottom:1202.550000px;}
.y8{bottom:1207.800000px;}
.h8{height:17.887500px;}
.hf{height:20.700000px;}
.h17{height:27.900000px;}
.h16{height:28.050000px;}
.h10{height:41.400000px;}
.h6{height:45.300000px;}
.h12{height:45.720703px;}
.h3{height:48.600000px;}
.h18{height:48.900000px;}
.h7{height:52.998047px;}
.h5{height:55.942383px;}
.h4{height:58.886719px;}
.h15{height:64.054688px;}
.hb{height:64.546875px;}
.h14{height:64.572070px;}
.hd{height:64.775391px;}
.h9{height:65.645508px;}
.h13{height:66.574687px;}
.h19{height:70.628906px;}
.hc{height:70.664062px;}
.ha{height:72.562500px;}
.h11{height:74.004654px;}
.h2{height:82.441406px;}
.he{height:227.745000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.wa{width:94.800000px;}
.wb{width:125.587500px;}
.w9{width:158.445000px;}
.w6{width:178.350000px;}
.w5{width:262.995000px;}
.w3{width:282.495000px;}
.w4{width:297.780000px;}
.w7{width:745.770000px;}
.w8{width:750.270000px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:6.900000px;}
.x9{left:12.435000px;}
.x7{left:16.200000px;}
.xe{left:17.295000px;}
.x1b{left:20.887500px;}
.x5{left:22.200000px;}
.xb{left:32.100000px;}
.x3{left:42.599987px;}
.x1f{left:69.599987px;}
.x10{left:80.999987px;}
.x1c{left:95.699987px;}
.x1a{left:100.200000px;}
.x19{left:104.700000px;}
.xd{left:106.980000px;}
.x6{left:121.687500px;}
.xa{left:128.130000px;}
.x28{left:202.545000px;}
.x20{left:227.594987px;}
.x29{left:298.095000px;}
.x1{left:303.494987px;}
.x8{left:305.145000px;}
.x21{left:398.474987px;}
.x17{left:411.974987px;}
.x12{left:448.724987px;}
.x1d{left:457.274987px;}
.x22{left:484.274987px;}
.x1e{left:510.374987px;}
.x26{left:521.624987px;}
.x11{left:572.024987px;}
.x27{left:582.674987px;}
.x23{left:613.424987px;}
.x13{left:623.174987px;}
.xc{left:625.425000px;}
.x24{left:682.154987px;}
.x16{left:686.519987px;}
.x14{left:697.154987px;}
.xf{left:713.655000px;}
.x25{left:741.104987px;}
.x18{left:770.204987px;}
.x2{left:819.119987px;}
.x15{left:850.619987px;}
@media print{
.va{vertical-align:-46.506667pt;}
.v7{vertical-align:-33.626667pt;}
.v2{vertical-align:-26.160000pt;}
.v6{vertical-align:-20.266667pt;}
.v1{vertical-align:-15.466667pt;}
.v3{vertical-align:-12.800000pt;}
.v5{vertical-align:-2.133333pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:2.240000pt;}
.v4{vertical-align:14.933333pt;}
.v9{vertical-align:17.066667pt;}
.lsc{letter-spacing:-2.666667pt;}
.lse{letter-spacing:-2.661333pt;}
.lsb{letter-spacing:-2.656000pt;}
.lsd{letter-spacing:-2.400000pt;}
.ls10{letter-spacing:-0.533333pt;}
.lsf{letter-spacing:-0.341333pt;}
.ls22{letter-spacing:-0.021333pt;}
.lsa{letter-spacing:-0.010667pt;}
.ls8{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.021333pt;}
.ls25{letter-spacing:0.053333pt;}
.ls1a{letter-spacing:0.064000pt;}
.ls15{letter-spacing:0.080000pt;}
.ls0{letter-spacing:0.106667pt;}
.ls1b{letter-spacing:0.117333pt;}
.ls9{letter-spacing:0.133333pt;}
.ls5{letter-spacing:0.149333pt;}
.ls12{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.213333pt;}
.ls2{letter-spacing:0.266667pt;}
.ls1e{letter-spacing:1.237333pt;}
.ls17{letter-spacing:1.365333pt;}
.ls21{letter-spacing:1.664000pt;}
.ls1c{letter-spacing:2.706667pt;}
.ls16{letter-spacing:3.874667pt;}
.ls13{letter-spacing:4.354667pt;}
.ls6{letter-spacing:12.746667pt;}
.ls1d{letter-spacing:14.058667pt;}
.ls27{letter-spacing:16.640000pt;}
.ls18{letter-spacing:17.706667pt;}
.ls19{letter-spacing:17.792000pt;}
.ls1f{letter-spacing:18.666667pt;}
.ls20{letter-spacing:18.826667pt;}
.ls7{letter-spacing:21.333333pt;}
.ls29{letter-spacing:21.920000pt;}
.ls11{letter-spacing:30.208000pt;}
.ls28{letter-spacing:32.480000pt;}
.ls23{letter-spacing:35.733333pt;}
.ls24{letter-spacing:48.874667pt;}
.ls26{letter-spacing:78.400000pt;}
.ws12{word-spacing:-64.000000pt;}
.ws19{word-spacing:-49.813333pt;}
.ws14{word-spacing:-46.698667pt;}
.ws10{word-spacing:-46.208000pt;}
.ws15{word-spacing:-46.165333pt;}
.wsb{word-spacing:-16.192000pt;}
.wsc{word-spacing:-16.149333pt;}
.wsd{word-spacing:-16.021333pt;}
.ws9{word-spacing:-16.000000pt;}
.ws17{word-spacing:-15.978667pt;}
.wsa{word-spacing:-15.658667pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.021333pt;}
.ws2{word-spacing:-12.010667pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.989333pt;}
.ws11{word-spacing:-11.333333pt;}
.ws6{word-spacing:-9.344000pt;}
.ws8{word-spacing:-9.338667pt;}
.ws7{word-spacing:-9.333333pt;}
.wse{word-spacing:0.000000pt;}
.ws18{word-spacing:5.069333pt;}
.ws16{word-spacing:5.520000pt;}
.ws13{word-spacing:8.720000pt;}
.wsf{word-spacing:8.802667pt;}
._32{margin-left:-8.338667pt;}
._33{margin-left:-6.997333pt;}
._34{margin-left:-5.162667pt;}
._6{margin-left:-4.080000pt;}
._2{margin-left:-2.880000pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._0{width:0.933333pt;}
._7{width:1.930667pt;}
._8{width:2.944000pt;}
._f{width:4.122667pt;}
._d{width:5.338667pt;}
._e{width:6.240000pt;}
._2e{width:7.258667pt;}
._21{width:8.336000pt;}
._5{width:9.765333pt;}
._4{width:10.672000pt;}
._16{width:11.712000pt;}
._9{width:12.672000pt;}
._1f{width:13.568000pt;}
._1c{width:15.104000pt;}
._a{width:17.050667pt;}
._20{width:18.858667pt;}
._1e{width:19.904000pt;}
._35{width:20.928000pt;}
._14{width:21.824000pt;}
._2b{width:22.720000pt;}
._2f{width:23.616000pt;}
._26{width:24.576000pt;}
._27{width:25.536000pt;}
._2d{width:26.688000pt;}
._17{width:28.149333pt;}
._12{width:29.440000pt;}
._13{width:31.040000pt;}
._15{width:32.704000pt;}
._1d{width:33.600000pt;}
._3e{width:34.816000pt;}
._3f{width:35.994667pt;}
._3c{width:37.290667pt;}
._11{width:38.357333pt;}
._49{width:39.285333pt;}
._b{width:40.256000pt;}
._c{width:41.216000pt;}
._1a{width:43.008000pt;}
._1b{width:44.096000pt;}
._3d{width:45.120000pt;}
._28{width:46.208000pt;}
._2a{width:48.256000pt;}
._4e{width:49.760000pt;}
._29{width:51.136000pt;}
._2c{width:52.352000pt;}
._31{width:53.344000pt;}
._18{width:57.152000pt;}
._19{width:58.112000pt;}
._22{width:59.200000pt;}
._47{width:61.056000pt;}
._39{width:65.408000pt;}
._45{width:67.840000pt;}
._40{width:71.488000pt;}
._41{width:72.640000pt;}
._4b{width:73.536000pt;}
._4c{width:74.752000pt;}
._23{width:77.045333pt;}
._3b{width:77.962667pt;}
._3a{width:79.050667pt;}
._24{width:80.896000pt;}
._25{width:81.856000pt;}
._38{width:83.264000pt;}
._36{width:92.032000pt;}
._37{width:93.440000pt;}
._30{width:95.936000pt;}
._4f{width:106.496000pt;}
._50{width:107.584000pt;}
._48{width:111.626667pt;}
._43{width:112.629333pt;}
._42{width:120.000000pt;}
._44{width:136.373333pt;}
._4a{width:143.424000pt;}
._10{width:154.432000pt;}
._4d{width:175.381333pt;}
._46{width:188.608000pt;}
.fs6{font-size:45.333333pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:1.866667pt;}
.y23{bottom:3.466667pt;}
.y7{bottom:4.800000pt;}
.yb{bottom:5.333333pt;}
.yc{bottom:6.000000pt;}
.y9c{bottom:6.800000pt;}
.y99{bottom:9.880000pt;}
.y97{bottom:10.000000pt;}
.ya{bottom:17.733333pt;}
.y6{bottom:18.266667pt;}
.y26{bottom:21.866667pt;}
.y22{bottom:21.906667pt;}
.y9b{bottom:28.533333pt;}
.y9{bottom:30.133333pt;}
.y5{bottom:32.000000pt;}
.y21{bottom:40.306667pt;}
.y3{bottom:51.233333pt;}
.y20{bottom:58.706667pt;}
.y2{bottom:72.566667pt;}
.y1f{bottom:77.106667pt;}
.y1e{bottom:95.506667pt;}
.yc0{bottom:98.833333pt;}
.ye9{bottom:105.500000pt;}
.y68{bottom:105.633333pt;}
.y3c{bottom:108.833333pt;}
.y1d{bottom:113.906667pt;}
.y95{bottom:117.366667pt;}
.ybf{bottom:120.433333pt;}
.ye8{bottom:127.233333pt;}
.y65{bottom:129.233333pt;}
.y3b{bottom:130.433333pt;}
.y1c{bottom:132.306667pt;}
.yea{bottom:132.966667pt;}
.y66{bottom:135.773333pt;}
.y67{bottom:137.640000pt;}
.y94{bottom:139.106667pt;}
.ybe{bottom:142.173333pt;}
.ye7{bottom:148.826667pt;}
.y1b{bottom:150.706667pt;}
.y3a{bottom:152.160000pt;}
.y64{bottom:154.706667pt;}
.y93{bottom:160.706667pt;}
.ybd{bottom:163.906667pt;}
.y1a{bottom:169.106667pt;}
.ye6{bottom:170.560000pt;}
.y39{bottom:173.893333pt;}
.y63{bottom:176.306667pt;}
.y92{bottom:182.440000pt;}
.ybc{bottom:185.506667pt;}
.y19{bottom:187.506667pt;}
.ye5{bottom:192.293333pt;}
.y38{bottom:195.506667pt;}
.y62{bottom:198.040000pt;}
.y91{bottom:204.173333pt;}
.ybb{bottom:208.440000pt;}
.ye4{bottom:214.040000pt;}
.y37{bottom:217.240000pt;}
.y61{bottom:219.773333pt;}
.y90{bottom:225.906667pt;}
.yba{bottom:230.173333pt;}
.ye3{bottom:235.640000pt;}
.y36{bottom:238.973333pt;}
.y60{bottom:241.373333pt;}
.y8f{bottom:247.506667pt;}
.yb9{bottom:251.773333pt;}
.ye2{bottom:258.573333pt;}
.y35{bottom:260.706667pt;}
.y5f{bottom:263.106667pt;}
.y8e{bottom:269.240000pt;}
.yb8{bottom:273.506667pt;}
.ye1{bottom:280.173333pt;}
.y34{bottom:282.293333pt;}
.y5e{bottom:284.840000pt;}
.y8d{bottom:290.960000pt;}
.yb7{bottom:295.240000pt;}
.ye0{bottom:301.906667pt;}
.y33{bottom:304.040000pt;}
.y5d{bottom:306.440000pt;}
.y8c{bottom:312.573333pt;}
.yb6{bottom:316.840000pt;}
.ydf{bottom:323.640000pt;}
.y32{bottom:325.773333pt;}
.y5c{bottom:328.173333pt;}
.y8b{bottom:334.306667pt;}
.yb5{bottom:338.600000pt;}
.yde{bottom:345.266667pt;}
.y31{bottom:347.400000pt;}
.y5b{bottom:349.933333pt;}
.y8a{bottom:356.066667pt;}
.yb4{bottom:361.400000pt;}
.ydd{bottom:368.200000pt;}
.y30{bottom:369.133333pt;}
.y5a{bottom:371.666667pt;}
.y89{bottom:377.800000pt;}
.yb3{bottom:383.133333pt;}
.ydc{bottom:389.800000pt;}
.y2f{bottom:390.866667pt;}
.y59{bottom:393.266667pt;}
.y88{bottom:399.400000pt;}
.yb2{bottom:404.866667pt;}
.ydb{bottom:411.533333pt;}
.y2e{bottom:412.600000pt;}
.y58{bottom:415.000000pt;}
.y87{bottom:421.133333pt;}
.yb1{bottom:426.600000pt;}
.yda{bottom:433.266667pt;}
.y2d{bottom:434.200000pt;}
.y57{bottom:436.733333pt;}
.y86{bottom:442.866667pt;}
.yb0{bottom:448.200000pt;}
.yd9{bottom:454.866667pt;}
.y2c{bottom:455.933333pt;}
.y56{bottom:458.333333pt;}
.y85{bottom:464.466667pt;}
.yaf{bottom:469.933333pt;}
.y2b{bottom:477.666667pt;}
.yd8{bottom:477.800000pt;}
.y55{bottom:480.066667pt;}
.y84{bottom:486.200000pt;}
.yae{bottom:492.733333pt;}
.y2a{bottom:499.266667pt;}
.yd7{bottom:499.533333pt;}
.y54{bottom:501.800000pt;}
.y83{bottom:507.933333pt;}
.yad{bottom:514.466667pt;}
.y29{bottom:521.000000pt;}
.yd6{bottom:521.133333pt;}
.y53{bottom:523.533333pt;}
.y82{bottom:529.666667pt;}
.yac{bottom:536.200000pt;}
.y28{bottom:542.733333pt;}
.yd5{bottom:542.866667pt;}
.y52{bottom:545.133333pt;}
.y81{bottom:551.266667pt;}
.yab{bottom:557.800000pt;}
.yd4{bottom:565.666667pt;}
.y51{bottom:566.866667pt;}
.y27{bottom:571.800000pt;}
.y80{bottom:573.000000pt;}
.yaa{bottom:579.533333pt;}
.y25{bottom:586.733333pt;}
.yd3{bottom:587.400000pt;}
.y50{bottom:588.600000pt;}
.y7f{bottom:594.733333pt;}
.ya9{bottom:601.266667pt;}
.yd2{bottom:609.133333pt;}
.y4f{bottom:610.200000pt;}
.y7e{bottom:616.333333pt;}
.ya8{bottom:623.000000pt;}
.y24{bottom:623.533333pt;}
.yd1{bottom:630.866667pt;}
.y4e{bottom:631.933333pt;}
.y7d{bottom:638.066667pt;}
.y18{bottom:641.933333pt;}
.ya7{bottom:644.600000pt;}
.yd0{bottom:652.466667pt;}
.y4d{bottom:653.666667pt;}
.y7a{bottom:662.373333pt;}
.ya6{bottom:666.373333pt;}
.y7b{bottom:668.906667pt;}
.y7c{bottom:670.773333pt;}
.ycf{bottom:674.240000pt;}
.y4c{bottom:675.440000pt;}
.y79{bottom:687.840000pt;}
.ya5{bottom:688.106667pt;}
.yce{bottom:695.973333pt;}
.y4b{bottom:697.040000pt;}
.y78{bottom:709.573333pt;}
.ya4{bottom:709.706667pt;}
.ycd{bottom:717.573333pt;}
.y4a{bottom:718.773333pt;}
.y77{bottom:731.293333pt;}
.ya3{bottom:731.440000pt;}
.ycc{bottom:739.306667pt;}
.y49{bottom:740.506667pt;}
.y76{bottom:752.906667pt;}
.ya2{bottom:753.173333pt;}
.ycb{bottom:761.040000pt;}
.y48{bottom:762.106667pt;}
.y75{bottom:774.640000pt;}
.ya1{bottom:774.906667pt;}
.yca{bottom:782.773333pt;}
.y47{bottom:783.840000pt;}
.y74{bottom:796.373333pt;}
.ya0{bottom:796.506667pt;}
.yc9{bottom:804.373333pt;}
.y46{bottom:805.573333pt;}
.y73{bottom:817.973333pt;}
.y9f{bottom:818.240000pt;}
.yc8{bottom:826.106667pt;}
.y45{bottom:827.306667pt;}
.y72{bottom:839.706667pt;}
.y9e{bottom:839.973333pt;}
.y17{bottom:847.573333pt;}
.yc7{bottom:847.840000pt;}
.y44{bottom:848.906667pt;}
.y71{bottom:861.440000pt;}
.y9d{bottom:861.573333pt;}
.y16{bottom:864.640000pt;}
.yc6{bottom:869.440000pt;}
.y43{bottom:870.640000pt;}
.y9a{bottom:877.173333pt;}
.y15{bottom:883.040000pt;}
.y70{bottom:883.173333pt;}
.yc5{bottom:891.173333pt;}
.y42{bottom:892.373333pt;}
.y14{bottom:901.440000pt;}
.y6f{bottom:904.773333pt;}
.yc4{bottom:912.906667pt;}
.y41{bottom:913.973333pt;}
.yed{bottom:915.706667pt;}
.y13{bottom:919.840000pt;}
.y98{bottom:921.293333pt;}
.y6e{bottom:926.640000pt;}
.yc3{bottom:934.640000pt;}
.y40{bottom:935.706667pt;}
.yec{bottom:936.773333pt;}
.y12{bottom:938.240000pt;}
.y96{bottom:946.773333pt;}
.y6d{bottom:948.773333pt;}
.yc2{bottom:956.240000pt;}
.y11{bottom:956.640000pt;}
.y3f{bottom:957.440000pt;}
.yeb{bottom:957.973333pt;}
.y6a{bottom:973.306667pt;}
.y10{bottom:975.066667pt;}
.yc1{bottom:978.000000pt;}
.y3e{bottom:979.200000pt;}
.y6b{bottom:979.866667pt;}
.y6c{bottom:981.733333pt;}
.yf{bottom:993.466667pt;}
.y69{bottom:1000.533333pt;}
.y3d{bottom:1000.800000pt;}
.ye{bottom:1022.533333pt;}
.y1{bottom:1046.133333pt;}
.y4{bottom:1068.933333pt;}
.y8{bottom:1073.600000pt;}
.h8{height:15.900000pt;}
.hf{height:18.400000pt;}
.h17{height:24.800000pt;}
.h16{height:24.933333pt;}
.h10{height:36.800000pt;}
.h6{height:40.266667pt;}
.h12{height:40.640625pt;}
.h3{height:43.200000pt;}
.h18{height:43.466667pt;}
.h7{height:47.109375pt;}
.h5{height:49.726562pt;}
.h4{height:52.343750pt;}
.h15{height:56.937500pt;}
.hb{height:57.375000pt;}
.h14{height:57.397396pt;}
.hd{height:57.578125pt;}
.h9{height:58.351562pt;}
.h13{height:59.177500pt;}
.h19{height:62.781250pt;}
.hc{height:62.812500pt;}
.ha{height:64.500000pt;}
.h11{height:65.781915pt;}
.h2{height:73.281250pt;}
.he{height:202.440000pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.wa{width:84.266667pt;}
.wb{width:111.633333pt;}
.w9{width:140.840000pt;}
.w6{width:158.533333pt;}
.w5{width:233.773333pt;}
.w3{width:251.106667pt;}
.w4{width:264.693333pt;}
.w7{width:662.906667pt;}
.w8{width:666.906667pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.133333pt;}
.x9{left:11.053333pt;}
.x7{left:14.400000pt;}
.xe{left:15.373333pt;}
.x1b{left:18.566667pt;}
.x5{left:19.733333pt;}
.xb{left:28.533333pt;}
.x3{left:37.866655pt;}
.x1f{left:61.866655pt;}
.x10{left:71.999988pt;}
.x1c{left:85.066655pt;}
.x1a{left:89.066667pt;}
.x19{left:93.066667pt;}
.xd{left:95.093333pt;}
.x6{left:108.166667pt;}
.xa{left:113.893333pt;}
.x28{left:180.040000pt;}
.x20{left:202.306655pt;}
.x29{left:264.973333pt;}
.x1{left:269.773322pt;}
.x8{left:271.240000pt;}
.x21{left:354.199988pt;}
.x17{left:366.199988pt;}
.x12{left:398.866655pt;}
.x1d{left:406.466655pt;}
.x22{left:430.466655pt;}
.x1e{left:453.666655pt;}
.x26{left:463.666655pt;}
.x11{left:508.466655pt;}
.x27{left:517.933322pt;}
.x23{left:545.266655pt;}
.x13{left:553.933322pt;}
.xc{left:555.933333pt;}
.x24{left:606.359988pt;}
.x16{left:610.239988pt;}
.x14{left:619.693322pt;}
.xf{left:634.360000pt;}
.x25{left:658.759988pt;}
.x18{left:684.626655pt;}
.x2{left:728.106655pt;}
.x15{left:756.106655pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  