
    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_ef6b11445e6ddbddc85f50fb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.032000;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_9c6a41a3cc1e494bdc228556.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.927000;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_de2dc8d4ede75de4a9a535c6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.969000;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_a111fffab445180f445ee78a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.965000;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_f6be8712b70450a6dd89a0bb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.007000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.694800px;}
.ls5{letter-spacing:-1.785000px;}
.ls4{letter-spacing:-0.969000px;}
.ls2{letter-spacing:-0.300000px;}
.ls1{letter-spacing:-0.120000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.540000px;}
.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;}
}
.ws0{word-spacing:-18.176400px;}
.ws84{word-spacing:-15.312000px;}
.ws4a{word-spacing:-14.700000px;}
.ws83{word-spacing:-14.640000px;}
.ws4b{word-spacing:-13.860000px;}
.ws85{word-spacing:-11.067000px;}
.ws86{word-spacing:-10.914000px;}
.ws2f{word-spacing:-4.800000px;}
.ws15{word-spacing:-2.520000px;}
.ws93{word-spacing:-2.280000px;}
.wsc8{word-spacing:-2.193000px;}
.ws8a{word-spacing:-2.160000px;}
.ws71{word-spacing:-2.100000px;}
.ws35{word-spacing:-2.040000px;}
.ws91{word-spacing:-1.980000px;}
.ws52{word-spacing:-1.680000px;}
.ws94{word-spacing:-1.560000px;}
.wsf{word-spacing:-1.500000px;}
.ws51{word-spacing:-1.440000px;}
.ws2{word-spacing:-1.260000px;}
.ws9e{word-spacing:-1.173000px;}
.ws33{word-spacing:-1.140000px;}
.ws62{word-spacing:-1.080000px;}
.ws10{word-spacing:-0.960000px;}
.wsb8{word-spacing:-0.918000px;}
.ws96{word-spacing:-0.900000px;}
.ws3c{word-spacing:-0.840000px;}
.wsba{word-spacing:-0.816000px;}
.ws87{word-spacing:-0.780000px;}
.wsc0{word-spacing:-0.765000px;}
.ws5{word-spacing:-0.720000px;}
.ws14{word-spacing:-0.660000px;}
.ws6c{word-spacing:-0.540000px;}
.wsc1{word-spacing:-0.510000px;}
.ws72{word-spacing:-0.240000px;}
.ws58{word-spacing:-0.180000px;}
.ws76{word-spacing:-0.060000px;}
.ws1{word-spacing:0.000000px;}
.wsc2{word-spacing:0.051000px;}
.ws69{word-spacing:0.120000px;}
.ws53{word-spacing:0.240000px;}
.ws2c{word-spacing:0.300000px;}
.ws67{word-spacing:0.360000px;}
.ws2e{word-spacing:0.420000px;}
.ws4{word-spacing:0.480000px;}
.ws55{word-spacing:0.600000px;}
.ws7b{word-spacing:0.720000px;}
.ws5f{word-spacing:0.780000px;}
.ws1b{word-spacing:0.840000px;}
.wsc9{word-spacing:0.918000px;}
.ws12{word-spacing:0.960000px;}
.wsa1{word-spacing:0.969000px;}
.ws43{word-spacing:1.080000px;}
.wsaf{word-spacing:1.173000px;}
.ws37{word-spacing:1.200000px;}
.wsae{word-spacing:1.224000px;}
.ws7c{word-spacing:1.260000px;}
.wsac{word-spacing:1.326000px;}
.wsc7{word-spacing:1.377000px;}
.ws8e{word-spacing:1.380000px;}
.wsa9{word-spacing:1.428000px;}
.ws13{word-spacing:1.440000px;}
.wsa8{word-spacing:1.479000px;}
.ws19{word-spacing:1.500000px;}
.wsab{word-spacing:1.530000px;}
.ws23{word-spacing:1.620000px;}
.wsaa{word-spacing:1.632000px;}
.ws63{word-spacing:1.860000px;}
.ws1c{word-spacing:1.920000px;}
.wsc6{word-spacing:1.938000px;}
.wsc5{word-spacing:2.040000px;}
.ws3b{word-spacing:2.100000px;}
.ws6{word-spacing:2.160000px;}
.wsa2{word-spacing:2.193000px;}
.wsbb{word-spacing:2.244000px;}
.ws29{word-spacing:2.340000px;}
.wsbc{word-spacing:2.346000px;}
.ws3d{word-spacing:2.400000px;}
.ws9d{word-spacing:2.460000px;}
.ws75{word-spacing:2.580000px;}
.ws5e{word-spacing:2.640000px;}
.wsad{word-spacing:2.652000px;}
.ws98{word-spacing:2.700000px;}
.ws18{word-spacing:2.760000px;}
.wse{word-spacing:2.820000px;}
.ws1a{word-spacing:2.880000px;}
.wsa5{word-spacing:2.907000px;}
.ws36{word-spacing:2.940000px;}
.wsbe{word-spacing:3.009000px;}
.ws68{word-spacing:3.060000px;}
.wsa4{word-spacing:3.111000px;}
.ws7d{word-spacing:3.120000px;}
.ws7a{word-spacing:3.180000px;}
.ws16{word-spacing:3.240000px;}
.wsb5{word-spacing:3.264000px;}
.ws24{word-spacing:3.300000px;}
.ws64{word-spacing:3.480000px;}
.ws88{word-spacing:3.600000px;}
.ws31{word-spacing:3.660000px;}
.ws7e{word-spacing:3.720000px;}
.ws27{word-spacing:3.840000px;}
.ws5c{word-spacing:3.900000px;}
.ws34{word-spacing:3.960000px;}
.ws6f{word-spacing:4.020000px;}
.ws3a{word-spacing:4.140000px;}
.ws97{word-spacing:4.200000px;}
.ws54{word-spacing:4.260000px;}
.ws4c{word-spacing:4.440000px;}
.ws32{word-spacing:4.560000px;}
.ws8{word-spacing:4.620000px;}
.ws9{word-spacing:4.680000px;}
.ws20{word-spacing:4.740000px;}
.ws6a{word-spacing:4.920000px;}
.ws74{word-spacing:5.040000px;}
.ws6e{word-spacing:5.160000px;}
.ws38{word-spacing:5.280000px;}
.ws5d{word-spacing:5.340000px;}
.ws80{word-spacing:5.460000px;}
.ws2a{word-spacing:5.520000px;}
.ws90{word-spacing:5.580000px;}
.ws3f{word-spacing:5.640000px;}
.wscb{word-spacing:5.814000px;}
.ws79{word-spacing:5.820000px;}
.ws48{word-spacing:5.880000px;}
.ws1f{word-spacing:5.940000px;}
.ws61{word-spacing:6.000000px;}
.ws26{word-spacing:6.060000px;}
.wsc3{word-spacing:6.069000px;}
.wsca{word-spacing:6.171000px;}
.ws8c{word-spacing:6.180000px;}
.wsa6{word-spacing:6.273000px;}
.wsb9{word-spacing:6.324000px;}
.wsbf{word-spacing:6.426000px;}
.wsd{word-spacing:6.480000px;}
.ws1d{word-spacing:6.540000px;}
.wsb2{word-spacing:6.681000px;}
.ws28{word-spacing:6.720000px;}
.ws9f{word-spacing:6.783000px;}
.ws6b{word-spacing:6.840000px;}
.wsb0{word-spacing:6.936000px;}
.ws66{word-spacing:7.080000px;}
.wsb1{word-spacing:7.089000px;}
.ws2d{word-spacing:7.140000px;}
.ws30{word-spacing:7.320000px;}
.ws41{word-spacing:7.440000px;}
.ws82{word-spacing:7.560000px;}
.ws99{word-spacing:7.740000px;}
.ws81{word-spacing:7.800000px;}
.ws92{word-spacing:7.860000px;}
.wsb4{word-spacing:7.905000px;}
.ws39{word-spacing:7.920000px;}
.wsb{word-spacing:7.980000px;}
.ws9a{word-spacing:8.040000px;}
.ws73{word-spacing:8.100000px;}
.ws40{word-spacing:8.220000px;}
.ws77{word-spacing:8.280000px;}
.wsb3{word-spacing:8.313000px;}
.ws9c{word-spacing:8.400000px;}
.ws25{word-spacing:8.460000px;}
.ws7{word-spacing:8.520000px;}
.ws95{word-spacing:8.700000px;}
.wsc4{word-spacing:8.721000px;}
.wsbd{word-spacing:8.772000px;}
.wsa{word-spacing:8.880000px;}
.ws65{word-spacing:9.060000px;}
.ws4e{word-spacing:9.240000px;}
.wsa3{word-spacing:9.435000px;}
.wsa7{word-spacing:9.537000px;}
.ws17{word-spacing:9.780000px;}
.ws78{word-spacing:9.960000px;}
.ws56{word-spacing:10.080000px;}
.ws7f{word-spacing:10.140000px;}
.ws70{word-spacing:10.440000px;}
.ws4f{word-spacing:10.680000px;}
.ws8f{word-spacing:10.860000px;}
.ws44{word-spacing:10.920000px;}
.ws11{word-spacing:10.980000px;}
.wsb6{word-spacing:11.016000px;}
.ws45{word-spacing:11.100000px;}
.wsb7{word-spacing:11.577000px;}
.ws42{word-spacing:11.820000px;}
.ws1e{word-spacing:11.880000px;}
.ws5b{word-spacing:12.180000px;}
.ws59{word-spacing:12.420000px;}
.ws8d{word-spacing:12.480000px;}
.wsc{word-spacing:13.020000px;}
.ws22{word-spacing:13.140000px;}
.ws3e{word-spacing:14.220000px;}
.ws4d{word-spacing:14.280000px;}
.ws21{word-spacing:14.700000px;}
.ws89{word-spacing:14.760000px;}
.ws3{word-spacing:14.880000px;}
.wsa0{word-spacing:15.045000px;}
.ws60{word-spacing:15.060000px;}
.ws6d{word-spacing:15.180000px;}
.ws57{word-spacing:15.600000px;}
.ws49{word-spacing:15.625200px;}
.ws2b{word-spacing:16.860000px;}
.ws50{word-spacing:16.920000px;}
.ws46{word-spacing:16.980000px;}
.ws8b{word-spacing:17.280000px;}
.ws5a{word-spacing:17.880000px;}
.ws9b{word-spacing:22.080000px;}
.ws47{word-spacing:39.660000px;}
._9{margin-left:-7.499880px;}
._5{margin-left:-6.386280px;}
._6{margin-left:-4.800000px;}
._3{margin-left:-3.120120px;}
._0{margin-left:-1.846800px;}
._4{width:1.066800px;}
._a{width:2.548320px;}
._2{width:16.815600px;}
._1{width:21.024360px;}
._7{width:173.140800px;}
._8{width:205.921800px;}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:42.000000px;}
.fs6{font-size:51.000000px;}
.fs2{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:78.000000px;}
.fs1{font-size:97.200000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y5f{bottom:77.993250px;}
.y2c{bottom:78.390450px;}
.y91{bottom:81.554250px;}
.y5e{bottom:97.043250px;}
.y2b{bottom:97.440300px;}
.y90{bottom:100.604250px;}
.yca{bottom:100.710750px;}
.yc9{bottom:114.960750px;}
.y5d{bottom:116.093100px;}
.y2a{bottom:116.490300px;}
.y8f{bottom:119.654250px;}
.yc8{bottom:129.210750px;}
.y5c{bottom:135.143250px;}
.y29{bottom:135.540300px;}
.y8e{bottom:138.704250px;}
.yc7{bottom:143.460750px;}
.y5b{bottom:154.193250px;}
.y28{bottom:154.590300px;}
.y8d{bottom:157.754250px;}
.yc6{bottom:171.960750px;}
.y5a{bottom:173.243250px;}
.y27{bottom:173.640450px;}
.y8c{bottom:176.804250px;}
.yc5{bottom:186.210750px;}
.y59{bottom:192.293250px;}
.y26{bottom:192.690300px;}
.y8b{bottom:195.854250px;}
.yc4{bottom:200.460750px;}
.y58{bottom:211.343250px;}
.y25{bottom:211.740300px;}
.y8a{bottom:214.904250px;}
.yc3{bottom:228.960750px;}
.y57{bottom:230.393250px;}
.y24{bottom:230.790300px;}
.y89{bottom:233.954250px;}
.yc2{bottom:243.210750px;}
.y56{bottom:249.443250px;}
.y23{bottom:249.840300px;}
.y88{bottom:253.004250px;}
.yc1{bottom:257.460750px;}
.y55{bottom:268.493250px;}
.y22{bottom:268.890450px;}
.y87{bottom:272.054250px;}
.yc0{bottom:285.960750px;}
.y54{bottom:287.543250px;}
.y21{bottom:287.940300px;}
.y94{bottom:291.104250px;}
.ybf{bottom:300.210750px;}
.y53{bottom:306.593250px;}
.y20{bottom:306.990300px;}
.y86{bottom:310.154250px;}
.ybe{bottom:314.460750px;}
.y52{bottom:325.643250px;}
.ybd{bottom:328.710750px;}
.y85{bottom:329.204250px;}
.y51{bottom:344.693250px;}
.y1f{bottom:345.090300px;}
.y84{bottom:348.254250px;}
.ybc{bottom:357.210750px;}
.y50{bottom:363.743250px;}
.y1e{bottom:364.140300px;}
.y83{bottom:367.304250px;}
.ybb{bottom:371.460750px;}
.y4f{bottom:382.793250px;}
.y1d{bottom:383.190300px;}
.yba{bottom:385.710750px;}
.y82{bottom:386.354250px;}
.yb9{bottom:399.960750px;}
.y1c{bottom:402.240300px;}
.y81{bottom:405.404250px;}
.y4e{bottom:420.893250px;}
.y1b{bottom:421.290300px;}
.y80{bottom:424.454250px;}
.yb8{bottom:428.460750px;}
.y4d{bottom:439.943250px;}
.y1a{bottom:440.340300px;}
.yb7{bottom:442.710750px;}
.y7f{bottom:443.504250px;}
.yb6{bottom:456.960750px;}
.y4c{bottom:458.993250px;}
.y19{bottom:459.390300px;}
.y7e{bottom:462.554250px;}
.y4b{bottom:478.043250px;}
.y18{bottom:478.440300px;}
.y7d{bottom:481.604250px;}
.yb5{bottom:485.460750px;}
.y4a{bottom:497.093250px;}
.y17{bottom:497.490300px;}
.yb4{bottom:499.710750px;}
.y7c{bottom:500.654250px;}
.yb3{bottom:513.960750px;}
.y49{bottom:516.143250px;}
.y16{bottom:516.540300px;}
.y7b{bottom:519.704250px;}
.yb2{bottom:528.210750px;}
.y48{bottom:535.193250px;}
.y15{bottom:535.590300px;}
.y7a{bottom:538.754250px;}
.yb1{bottom:542.460750px;}
.y47{bottom:554.243250px;}
.y14{bottom:554.640300px;}
.yb0{bottom:556.710750px;}
.y79{bottom:557.804250px;}
.yaf{bottom:570.960750px;}
.y46{bottom:573.293250px;}
.y13{bottom:573.690300px;}
.y78{bottom:576.854250px;}
.yae{bottom:585.210750px;}
.y45{bottom:592.343250px;}
.y12{bottom:592.740300px;}
.y77{bottom:595.904250px;}
.yad{bottom:599.460750px;}
.y44{bottom:611.393250px;}
.y11{bottom:611.790300px;}
.yac{bottom:613.710750px;}
.y76{bottom:614.954250px;}
.y43{bottom:630.443250px;}
.y10{bottom:630.840300px;}
.y75{bottom:634.004250px;}
.yab{bottom:642.210750px;}
.y42{bottom:649.493250px;}
.yf{bottom:649.890300px;}
.y93{bottom:653.054250px;}
.yaa{bottom:656.460750px;}
.y41{bottom:668.543250px;}
.ye{bottom:668.940300px;}
.ya9{bottom:670.710750px;}
.y74{bottom:672.104250px;}
.y40{bottom:687.593250px;}
.y73{bottom:691.154250px;}
.ya8{bottom:699.210750px;}
.y3f{bottom:706.643250px;}
.y72{bottom:710.204250px;}
.ya7{bottom:713.460750px;}
.y3e{bottom:725.693250px;}
.ya6{bottom:727.710750px;}
.y71{bottom:729.254250px;}
.y3d{bottom:744.743250px;}
.yd{bottom:746.490300px;}
.y70{bottom:748.304250px;}
.ya5{bottom:756.210750px;}
.y3c{bottom:763.793250px;}
.yc{bottom:765.990300px;}
.y6f{bottom:767.354250px;}
.ya4{bottom:770.460750px;}
.ya3{bottom:784.710750px;}
.yb{bottom:785.490300px;}
.y6e{bottom:786.404250px;}
.y3b{bottom:801.893250px;}
.y6d{bottom:805.454250px;}
.ya2{bottom:813.210750px;}
.y3a{bottom:820.943250px;}
.y6c{bottom:824.504250px;}
.ya1{bottom:827.460750px;}
.ya{bottom:833.490300px;}
.y39{bottom:839.993250px;}
.ya0{bottom:841.710750px;}
.y6b{bottom:843.554250px;}
.y9{bottom:852.990300px;}
.y9f{bottom:855.960750px;}
.y38{bottom:859.043250px;}
.y6a{bottom:862.604250px;}
.y9e{bottom:870.210750px;}
.y8{bottom:872.490300px;}
.y37{bottom:878.093250px;}
.y69{bottom:881.654250px;}
.y36{bottom:897.143250px;}
.y9d{bottom:898.710750px;}
.y68{bottom:900.704250px;}
.y7{bottom:911.490300px;}
.y9c{bottom:912.960750px;}
.y35{bottom:916.193250px;}
.y67{bottom:919.754250px;}
.y9b{bottom:927.210750px;}
.y6{bottom:930.990300px;}
.y34{bottom:935.243250px;}
.y66{bottom:938.804250px;}
.y9a{bottom:941.460750px;}
.y33{bottom:954.293250px;}
.y65{bottom:957.854250px;}
.y99{bottom:969.960750px;}
.y32{bottom:973.343250px;}
.y64{bottom:976.904250px;}
.y5{bottom:983.490300px;}
.y98{bottom:984.210750px;}
.y31{bottom:992.393250px;}
.y63{bottom:995.954250px;}
.y97{bottom:998.460750px;}
.y4{bottom:1010.490300px;}
.y30{bottom:1011.443250px;}
.y96{bottom:1012.710750px;}
.y62{bottom:1015.004250px;}
.y2f{bottom:1030.493250px;}
.y92{bottom:1034.054250px;}
.y3{bottom:1037.490300px;}
.y2e{bottom:1049.543250px;}
.y61{bottom:1053.104250px;}
.y95{bottom:1055.460750px;}
.y2{bottom:1064.490300px;}
.y2d{bottom:1068.593250px;}
.y60{bottom:1072.154250px;}
.y1{bottom:1114.017750px;}
.h8{height:37.740000px;}
.h7{height:41.106000px;}
.h4{height:48.360000px;}
.h6{height:51.084000px;}
.h5{height:60.372000px;}
.h3{height:68.526000px;}
.h2{height:87.048000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:46.222050px;}
.x5{left:85.039350px;}
.x2{left:106.299150px;}
.x6{left:452.834700px;}
.x3{left:474.094500px;}
.x7{left:486.850350px;}
.x8{left:499.606350px;}
.x1{left:818.503950px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.617600pt;}
.ls5{letter-spacing:-1.586667pt;}
.ls4{letter-spacing:-0.861333pt;}
.ls2{letter-spacing:-0.266667pt;}
.ls1{letter-spacing:-0.106667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.480000pt;}
.ws0{word-spacing:-16.156800pt;}
.ws84{word-spacing:-13.610667pt;}
.ws4a{word-spacing:-13.066667pt;}
.ws83{word-spacing:-13.013333pt;}
.ws4b{word-spacing:-12.320000pt;}
.ws85{word-spacing:-9.837333pt;}
.ws86{word-spacing:-9.701333pt;}
.ws2f{word-spacing:-4.266667pt;}
.ws15{word-spacing:-2.240000pt;}
.ws93{word-spacing:-2.026667pt;}
.wsc8{word-spacing:-1.949333pt;}
.ws8a{word-spacing:-1.920000pt;}
.ws71{word-spacing:-1.866667pt;}
.ws35{word-spacing:-1.813333pt;}
.ws91{word-spacing:-1.760000pt;}
.ws52{word-spacing:-1.493333pt;}
.ws94{word-spacing:-1.386667pt;}
.wsf{word-spacing:-1.333333pt;}
.ws51{word-spacing:-1.280000pt;}
.ws2{word-spacing:-1.120000pt;}
.ws9e{word-spacing:-1.042667pt;}
.ws33{word-spacing:-1.013333pt;}
.ws62{word-spacing:-0.960000pt;}
.ws10{word-spacing:-0.853333pt;}
.wsb8{word-spacing:-0.816000pt;}
.ws96{word-spacing:-0.800000pt;}
.ws3c{word-spacing:-0.746667pt;}
.wsba{word-spacing:-0.725333pt;}
.ws87{word-spacing:-0.693333pt;}
.wsc0{word-spacing:-0.680000pt;}
.ws5{word-spacing:-0.640000pt;}
.ws14{word-spacing:-0.586667pt;}
.ws6c{word-spacing:-0.480000pt;}
.wsc1{word-spacing:-0.453333pt;}
.ws72{word-spacing:-0.213333pt;}
.ws58{word-spacing:-0.160000pt;}
.ws76{word-spacing:-0.053333pt;}
.ws1{word-spacing:0.000000pt;}
.wsc2{word-spacing:0.045333pt;}
.ws69{word-spacing:0.106667pt;}
.ws53{word-spacing:0.213333pt;}
.ws2c{word-spacing:0.266667pt;}
.ws67{word-spacing:0.320000pt;}
.ws2e{word-spacing:0.373333pt;}
.ws4{word-spacing:0.426667pt;}
.ws55{word-spacing:0.533333pt;}
.ws7b{word-spacing:0.640000pt;}
.ws5f{word-spacing:0.693333pt;}
.ws1b{word-spacing:0.746667pt;}
.wsc9{word-spacing:0.816000pt;}
.ws12{word-spacing:0.853333pt;}
.wsa1{word-spacing:0.861333pt;}
.ws43{word-spacing:0.960000pt;}
.wsaf{word-spacing:1.042667pt;}
.ws37{word-spacing:1.066667pt;}
.wsae{word-spacing:1.088000pt;}
.ws7c{word-spacing:1.120000pt;}
.wsac{word-spacing:1.178667pt;}
.wsc7{word-spacing:1.224000pt;}
.ws8e{word-spacing:1.226667pt;}
.wsa9{word-spacing:1.269333pt;}
.ws13{word-spacing:1.280000pt;}
.wsa8{word-spacing:1.314667pt;}
.ws19{word-spacing:1.333333pt;}
.wsab{word-spacing:1.360000pt;}
.ws23{word-spacing:1.440000pt;}
.wsaa{word-spacing:1.450667pt;}
.ws63{word-spacing:1.653333pt;}
.ws1c{word-spacing:1.706667pt;}
.wsc6{word-spacing:1.722667pt;}
.wsc5{word-spacing:1.813333pt;}
.ws3b{word-spacing:1.866667pt;}
.ws6{word-spacing:1.920000pt;}
.wsa2{word-spacing:1.949333pt;}
.wsbb{word-spacing:1.994667pt;}
.ws29{word-spacing:2.080000pt;}
.wsbc{word-spacing:2.085333pt;}
.ws3d{word-spacing:2.133333pt;}
.ws9d{word-spacing:2.186667pt;}
.ws75{word-spacing:2.293333pt;}
.ws5e{word-spacing:2.346667pt;}
.wsad{word-spacing:2.357333pt;}
.ws98{word-spacing:2.400000pt;}
.ws18{word-spacing:2.453333pt;}
.wse{word-spacing:2.506667pt;}
.ws1a{word-spacing:2.560000pt;}
.wsa5{word-spacing:2.584000pt;}
.ws36{word-spacing:2.613333pt;}
.wsbe{word-spacing:2.674667pt;}
.ws68{word-spacing:2.720000pt;}
.wsa4{word-spacing:2.765333pt;}
.ws7d{word-spacing:2.773333pt;}
.ws7a{word-spacing:2.826667pt;}
.ws16{word-spacing:2.880000pt;}
.wsb5{word-spacing:2.901333pt;}
.ws24{word-spacing:2.933333pt;}
.ws64{word-spacing:3.093333pt;}
.ws88{word-spacing:3.200000pt;}
.ws31{word-spacing:3.253333pt;}
.ws7e{word-spacing:3.306667pt;}
.ws27{word-spacing:3.413333pt;}
.ws5c{word-spacing:3.466667pt;}
.ws34{word-spacing:3.520000pt;}
.ws6f{word-spacing:3.573333pt;}
.ws3a{word-spacing:3.680000pt;}
.ws97{word-spacing:3.733333pt;}
.ws54{word-spacing:3.786667pt;}
.ws4c{word-spacing:3.946667pt;}
.ws32{word-spacing:4.053333pt;}
.ws8{word-spacing:4.106667pt;}
.ws9{word-spacing:4.160000pt;}
.ws20{word-spacing:4.213333pt;}
.ws6a{word-spacing:4.373333pt;}
.ws74{word-spacing:4.480000pt;}
.ws6e{word-spacing:4.586667pt;}
.ws38{word-spacing:4.693333pt;}
.ws5d{word-spacing:4.746667pt;}
.ws80{word-spacing:4.853333pt;}
.ws2a{word-spacing:4.906667pt;}
.ws90{word-spacing:4.960000pt;}
.ws3f{word-spacing:5.013333pt;}
.wscb{word-spacing:5.168000pt;}
.ws79{word-spacing:5.173333pt;}
.ws48{word-spacing:5.226667pt;}
.ws1f{word-spacing:5.280000pt;}
.ws61{word-spacing:5.333333pt;}
.ws26{word-spacing:5.386667pt;}
.wsc3{word-spacing:5.394667pt;}
.wsca{word-spacing:5.485333pt;}
.ws8c{word-spacing:5.493333pt;}
.wsa6{word-spacing:5.576000pt;}
.wsb9{word-spacing:5.621333pt;}
.wsbf{word-spacing:5.712000pt;}
.wsd{word-spacing:5.760000pt;}
.ws1d{word-spacing:5.813333pt;}
.wsb2{word-spacing:5.938667pt;}
.ws28{word-spacing:5.973333pt;}
.ws9f{word-spacing:6.029333pt;}
.ws6b{word-spacing:6.080000pt;}
.wsb0{word-spacing:6.165333pt;}
.ws66{word-spacing:6.293333pt;}
.wsb1{word-spacing:6.301333pt;}
.ws2d{word-spacing:6.346667pt;}
.ws30{word-spacing:6.506667pt;}
.ws41{word-spacing:6.613333pt;}
.ws82{word-spacing:6.720000pt;}
.ws99{word-spacing:6.880000pt;}
.ws81{word-spacing:6.933333pt;}
.ws92{word-spacing:6.986667pt;}
.wsb4{word-spacing:7.026667pt;}
.ws39{word-spacing:7.040000pt;}
.wsb{word-spacing:7.093333pt;}
.ws9a{word-spacing:7.146667pt;}
.ws73{word-spacing:7.200000pt;}
.ws40{word-spacing:7.306667pt;}
.ws77{word-spacing:7.360000pt;}
.wsb3{word-spacing:7.389333pt;}
.ws9c{word-spacing:7.466667pt;}
.ws25{word-spacing:7.520000pt;}
.ws7{word-spacing:7.573333pt;}
.ws95{word-spacing:7.733333pt;}
.wsc4{word-spacing:7.752000pt;}
.wsbd{word-spacing:7.797333pt;}
.wsa{word-spacing:7.893333pt;}
.ws65{word-spacing:8.053333pt;}
.ws4e{word-spacing:8.213333pt;}
.wsa3{word-spacing:8.386667pt;}
.wsa7{word-spacing:8.477333pt;}
.ws17{word-spacing:8.693333pt;}
.ws78{word-spacing:8.853333pt;}
.ws56{word-spacing:8.960000pt;}
.ws7f{word-spacing:9.013333pt;}
.ws70{word-spacing:9.280000pt;}
.ws4f{word-spacing:9.493333pt;}
.ws8f{word-spacing:9.653333pt;}
.ws44{word-spacing:9.706667pt;}
.ws11{word-spacing:9.760000pt;}
.wsb6{word-spacing:9.792000pt;}
.ws45{word-spacing:9.866667pt;}
.wsb7{word-spacing:10.290667pt;}
.ws42{word-spacing:10.506667pt;}
.ws1e{word-spacing:10.560000pt;}
.ws5b{word-spacing:10.826667pt;}
.ws59{word-spacing:11.040000pt;}
.ws8d{word-spacing:11.093333pt;}
.wsc{word-spacing:11.573333pt;}
.ws22{word-spacing:11.680000pt;}
.ws3e{word-spacing:12.640000pt;}
.ws4d{word-spacing:12.693333pt;}
.ws21{word-spacing:13.066667pt;}
.ws89{word-spacing:13.120000pt;}
.ws3{word-spacing:13.226667pt;}
.wsa0{word-spacing:13.373333pt;}
.ws60{word-spacing:13.386667pt;}
.ws6d{word-spacing:13.493333pt;}
.ws57{word-spacing:13.866667pt;}
.ws49{word-spacing:13.889067pt;}
.ws2b{word-spacing:14.986667pt;}
.ws50{word-spacing:15.040000pt;}
.ws46{word-spacing:15.093333pt;}
.ws8b{word-spacing:15.360000pt;}
.ws5a{word-spacing:15.893333pt;}
.ws9b{word-spacing:19.626667pt;}
.ws47{word-spacing:35.253333pt;}
._9{margin-left:-6.666560pt;}
._5{margin-left:-5.676693pt;}
._6{margin-left:-4.266667pt;}
._3{margin-left:-2.773440pt;}
._0{margin-left:-1.641600pt;}
._4{width:0.948267pt;}
._a{width:2.265173pt;}
._2{width:14.947200pt;}
._1{width:18.688320pt;}
._7{width:153.902933pt;}
._8{width:183.041600pt;}
.fs4{font-size:37.333333pt;}
.fs6{font-size:45.333333pt;}
.fs2{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:69.333333pt;}
.fs1{font-size:86.400000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:69.327333pt;}
.y2c{bottom:69.680400pt;}
.y91{bottom:72.492667pt;}
.y5e{bottom:86.260667pt;}
.y2b{bottom:86.613600pt;}
.y90{bottom:89.426000pt;}
.yca{bottom:89.520667pt;}
.yc9{bottom:102.187333pt;}
.y5d{bottom:103.193867pt;}
.y2a{bottom:103.546933pt;}
.y8f{bottom:106.359333pt;}
.yc8{bottom:114.854000pt;}
.y5c{bottom:120.127333pt;}
.y29{bottom:120.480267pt;}
.y8e{bottom:123.292667pt;}
.yc7{bottom:127.520667pt;}
.y5b{bottom:137.060667pt;}
.y28{bottom:137.413600pt;}
.y8d{bottom:140.226000pt;}
.yc6{bottom:152.854000pt;}
.y5a{bottom:153.994000pt;}
.y27{bottom:154.347067pt;}
.y8c{bottom:157.159333pt;}
.yc5{bottom:165.520667pt;}
.y59{bottom:170.927333pt;}
.y26{bottom:171.280267pt;}
.y8b{bottom:174.092667pt;}
.yc4{bottom:178.187333pt;}
.y58{bottom:187.860667pt;}
.y25{bottom:188.213600pt;}
.y8a{bottom:191.026000pt;}
.yc3{bottom:203.520667pt;}
.y57{bottom:204.794000pt;}
.y24{bottom:205.146933pt;}
.y89{bottom:207.959333pt;}
.yc2{bottom:216.187333pt;}
.y56{bottom:221.727333pt;}
.y23{bottom:222.080267pt;}
.y88{bottom:224.892667pt;}
.yc1{bottom:228.854000pt;}
.y55{bottom:238.660667pt;}
.y22{bottom:239.013733pt;}
.y87{bottom:241.826000pt;}
.yc0{bottom:254.187333pt;}
.y54{bottom:255.594000pt;}
.y21{bottom:255.946933pt;}
.y94{bottom:258.759333pt;}
.ybf{bottom:266.854000pt;}
.y53{bottom:272.527333pt;}
.y20{bottom:272.880267pt;}
.y86{bottom:275.692667pt;}
.ybe{bottom:279.520667pt;}
.y52{bottom:289.460667pt;}
.ybd{bottom:292.187333pt;}
.y85{bottom:292.626000pt;}
.y51{bottom:306.394000pt;}
.y1f{bottom:306.746933pt;}
.y84{bottom:309.559333pt;}
.ybc{bottom:317.520667pt;}
.y50{bottom:323.327333pt;}
.y1e{bottom:323.680267pt;}
.y83{bottom:326.492667pt;}
.ybb{bottom:330.187333pt;}
.y4f{bottom:340.260667pt;}
.y1d{bottom:340.613600pt;}
.yba{bottom:342.854000pt;}
.y82{bottom:343.426000pt;}
.yb9{bottom:355.520667pt;}
.y1c{bottom:357.546933pt;}
.y81{bottom:360.359333pt;}
.y4e{bottom:374.127333pt;}
.y1b{bottom:374.480267pt;}
.y80{bottom:377.292667pt;}
.yb8{bottom:380.854000pt;}
.y4d{bottom:391.060667pt;}
.y1a{bottom:391.413600pt;}
.yb7{bottom:393.520667pt;}
.y7f{bottom:394.226000pt;}
.yb6{bottom:406.187333pt;}
.y4c{bottom:407.994000pt;}
.y19{bottom:408.346933pt;}
.y7e{bottom:411.159333pt;}
.y4b{bottom:424.927333pt;}
.y18{bottom:425.280267pt;}
.y7d{bottom:428.092667pt;}
.yb5{bottom:431.520667pt;}
.y4a{bottom:441.860667pt;}
.y17{bottom:442.213600pt;}
.yb4{bottom:444.187333pt;}
.y7c{bottom:445.026000pt;}
.yb3{bottom:456.854000pt;}
.y49{bottom:458.794000pt;}
.y16{bottom:459.146933pt;}
.y7b{bottom:461.959333pt;}
.yb2{bottom:469.520667pt;}
.y48{bottom:475.727333pt;}
.y15{bottom:476.080267pt;}
.y7a{bottom:478.892667pt;}
.yb1{bottom:482.187333pt;}
.y47{bottom:492.660667pt;}
.y14{bottom:493.013600pt;}
.yb0{bottom:494.854000pt;}
.y79{bottom:495.826000pt;}
.yaf{bottom:507.520667pt;}
.y46{bottom:509.594000pt;}
.y13{bottom:509.946933pt;}
.y78{bottom:512.759333pt;}
.yae{bottom:520.187333pt;}
.y45{bottom:526.527333pt;}
.y12{bottom:526.880267pt;}
.y77{bottom:529.692667pt;}
.yad{bottom:532.854000pt;}
.y44{bottom:543.460667pt;}
.y11{bottom:543.813600pt;}
.yac{bottom:545.520667pt;}
.y76{bottom:546.626000pt;}
.y43{bottom:560.394000pt;}
.y10{bottom:560.746933pt;}
.y75{bottom:563.559333pt;}
.yab{bottom:570.854000pt;}
.y42{bottom:577.327333pt;}
.yf{bottom:577.680267pt;}
.y93{bottom:580.492667pt;}
.yaa{bottom:583.520667pt;}
.y41{bottom:594.260667pt;}
.ye{bottom:594.613600pt;}
.ya9{bottom:596.187333pt;}
.y74{bottom:597.426000pt;}
.y40{bottom:611.194000pt;}
.y73{bottom:614.359333pt;}
.ya8{bottom:621.520667pt;}
.y3f{bottom:628.127333pt;}
.y72{bottom:631.292667pt;}
.ya7{bottom:634.187333pt;}
.y3e{bottom:645.060667pt;}
.ya6{bottom:646.854000pt;}
.y71{bottom:648.226000pt;}
.y3d{bottom:661.994000pt;}
.yd{bottom:663.546933pt;}
.y70{bottom:665.159333pt;}
.ya5{bottom:672.187333pt;}
.y3c{bottom:678.927333pt;}
.yc{bottom:680.880267pt;}
.y6f{bottom:682.092667pt;}
.ya4{bottom:684.854000pt;}
.ya3{bottom:697.520667pt;}
.yb{bottom:698.213600pt;}
.y6e{bottom:699.026000pt;}
.y3b{bottom:712.794000pt;}
.y6d{bottom:715.959333pt;}
.ya2{bottom:722.854000pt;}
.y3a{bottom:729.727333pt;}
.y6c{bottom:732.892667pt;}
.ya1{bottom:735.520667pt;}
.ya{bottom:740.880267pt;}
.y39{bottom:746.660667pt;}
.ya0{bottom:748.187333pt;}
.y6b{bottom:749.826000pt;}
.y9{bottom:758.213600pt;}
.y9f{bottom:760.854000pt;}
.y38{bottom:763.594000pt;}
.y6a{bottom:766.759333pt;}
.y9e{bottom:773.520667pt;}
.y8{bottom:775.546933pt;}
.y37{bottom:780.527333pt;}
.y69{bottom:783.692667pt;}
.y36{bottom:797.460667pt;}
.y9d{bottom:798.854000pt;}
.y68{bottom:800.626000pt;}
.y7{bottom:810.213600pt;}
.y9c{bottom:811.520667pt;}
.y35{bottom:814.394000pt;}
.y67{bottom:817.559333pt;}
.y9b{bottom:824.187333pt;}
.y6{bottom:827.546933pt;}
.y34{bottom:831.327333pt;}
.y66{bottom:834.492667pt;}
.y9a{bottom:836.854000pt;}
.y33{bottom:848.260667pt;}
.y65{bottom:851.426000pt;}
.y99{bottom:862.187333pt;}
.y32{bottom:865.194000pt;}
.y64{bottom:868.359333pt;}
.y5{bottom:874.213600pt;}
.y98{bottom:874.854000pt;}
.y31{bottom:882.127333pt;}
.y63{bottom:885.292667pt;}
.y97{bottom:887.520667pt;}
.y4{bottom:898.213600pt;}
.y30{bottom:899.060667pt;}
.y96{bottom:900.187333pt;}
.y62{bottom:902.226000pt;}
.y2f{bottom:915.994000pt;}
.y92{bottom:919.159333pt;}
.y3{bottom:922.213600pt;}
.y2e{bottom:932.927333pt;}
.y61{bottom:936.092667pt;}
.y95{bottom:938.187333pt;}
.y2{bottom:946.213600pt;}
.y2d{bottom:949.860667pt;}
.y60{bottom:953.026000pt;}
.y1{bottom:990.238000pt;}
.h8{height:33.546667pt;}
.h7{height:36.538667pt;}
.h4{height:42.986667pt;}
.h6{height:45.408000pt;}
.h5{height:53.664000pt;}
.h3{height:60.912000pt;}
.h2{height:77.376000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:41.086267pt;}
.x5{left:75.590533pt;}
.x2{left:94.488133pt;}
.x6{left:402.519733pt;}
.x3{left:421.417333pt;}
.x7{left:432.755867pt;}
.x8{left:444.094533pt;}
.x1{left:727.559067pt;}
}




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