
    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_931a5e47e198afe1d365d554.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7fba4816485ec91ea43fd1b7.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_100b55d22602671bdbfaa2bc.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5a5cd59c6d9df4cce509715a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.942383;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_6ef33ae2664b6d4fc5e99c7b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_1ee9cfa401834f40e2998836.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_db25cb6cb0525a2f300f389c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.708008;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);}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.lsa{letter-spacing:-0.780000px;}
.ls6{letter-spacing:-0.600000px;}
.ls9{letter-spacing:-0.480000px;}
.lsb{letter-spacing:-0.420000px;}
.ls10{letter-spacing:-0.240000px;}
.ls1{letter-spacing:-0.048000px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.018000px;}
.lsf{letter-spacing:0.120000px;}
.ls12{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.240000px;}
.ls3{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.384000px;}
.ls11{letter-spacing:0.420000px;}
.ls0{letter-spacing:0.600000px;}
.lsd{letter-spacing:1.860000px;}
.lsc{letter-spacing:3.000000px;}
.lse{letter-spacing:15.720000px;}
.ls7{letter-spacing:45.720000px;}
.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;}
}
.ws1{word-spacing:-18.384000px;}
.ws9{word-spacing:-15.420000px;}
.ws0{word-spacing:-15.204000px;}
.ws2{word-spacing:-15.000000px;}
.ws8{word-spacing:-14.760000px;}
.ws7{word-spacing:-14.580000px;}
.ws6{word-spacing:-14.220000px;}
.ws4{word-spacing:-14.100000px;}
.ws5{word-spacing:-11.136000px;}
.ws3{word-spacing:0.000000px;}
._12{margin-left:-2.310000px;}
._1{margin-left:-1.242000px;}
._0{width:1.302000px;}
._7{width:2.334000px;}
._2{width:4.074000px;}
._b{width:5.712000px;}
._6{width:7.272000px;}
._5{width:8.280000px;}
._9{width:9.420000px;}
._d{width:11.100000px;}
._a{width:12.282000px;}
._8{width:13.380000px;}
._c{width:16.260000px;}
._10{width:17.862000px;}
._e{width:19.140000px;}
._f{width:20.640000px;}
._11{width:21.768000px;}
._13{width:22.806000px;}
._15{width:25.092000px;}
._14{width:26.160000px;}
._3{width:336.180000px;}
._4{width:996.300000px;}
.fc6{color:transparent;}
.fc3{color:rgb(0,79,136);}
.fc7{color:rgb(127,127,127);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc5{color:rgb(31,73,125);}
.fc4{color:rgb(0,112,192);}
.fc0{color:rgb(192,0,0);}
.fs6{font-size:12.000000px;}
.fs3{font-size:18.000000px;}
.fs8{font-size:30.000000px;}
.fs7{font-size:39.600000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y46{bottom:0.300000px;}
.ydb{bottom:3.285000px;}
.ycc{bottom:3.315000px;}
.yc9{bottom:3.585000px;}
.yb0{bottom:3.600000px;}
.yb5{bottom:3.615000px;}
.yf{bottom:3.915000px;}
.ye{bottom:5.115000px;}
.y2{bottom:5.400000px;}
.yed{bottom:7.815000px;}
.ydf{bottom:11.145000px;}
.yb2{bottom:11.985000px;}
.y5{bottom:12.337500px;}
.y45{bottom:18.015000px;}
.yc8{bottom:20.700000px;}
.yeb{bottom:20.715000px;}
.ye8{bottom:20.745000px;}
.y44{bottom:37.515000px;}
.y4{bottom:46.800000px;}
.y43{bottom:51.915000px;}
.y1{bottom:57.037500px;}
.y42{bottom:69.300000px;}
.y48{bottom:74.137500px;}
.y3{bottom:81.337500px;}
.y41{bottom:86.415000px;}
.y40{bottom:103.800000px;}
.y10d{bottom:113.137500px;}
.y3f{bottom:120.945000px;}
.y119{bottom:123.637500px;}
.yaa{bottom:130.237500px;}
.yd8{bottom:131.737500px;}
.y140{bottom:137.137500px;}
.y3e{bottom:138.345000px;}
.y30{bottom:138.637500px;}
.y82{bottom:140.437500px;}
.y118{bottom:144.337500px;}
.ya9{bottom:147.337500px;}
.y10c{bottom:147.637500px;}
.yd7{bottom:152.430000px;}
.y3d{bottom:153.645000px;}
.y13f{bottom:154.245000px;}
.y2f{bottom:155.730000px;}
.y81{bottom:157.830000px;}
.y3c{bottom:164.145000px;}
.ya8{bottom:164.745000px;}
.y117{bottom:165.030000px;}
.y13e{bottom:171.630000px;}
.y2e{bottom:173.145000px;}
.y80{bottom:174.930000px;}
.y3b{bottom:181.545000px;}
.ya7{bottom:181.875000px;}
.y10b{bottom:182.175000px;}
.y116{bottom:185.775000px;}
.y13d{bottom:188.775000px;}
.y2d{bottom:190.275000px;}
.y7f{bottom:192.375000px;}
.yd6{bottom:193.875000px;}
.y3a{bottom:198.645000px;}
.ya6{bottom:199.275000px;}
.y115{bottom:206.175000px;}
.y2c{bottom:207.675000px;}
.y7e{bottom:209.475000px;}
.yd5{bottom:213.975000px;}
.y39{bottom:216.045000px;}
.ya5{bottom:216.375000px;}
.y114{bottom:223.275000px;}
.y2b{bottom:224.775000px;}
.y7d{bottom:226.875000px;}
.y38{bottom:231.345000px;}
.yd4{bottom:231.375000px;}
.ya4{bottom:233.775000px;}
.y113{bottom:240.675000px;}
.y37{bottom:241.845000px;}
.y2a{bottom:242.175000px;}
.y7c{bottom:243.975000px;}
.yd3{bottom:248.475000px;}
.ya3{bottom:250.875000px;}
.y112{bottom:257.775000px;}
.y36{bottom:258.945000px;}
.y29{bottom:259.275000px;}
.y7b{bottom:261.375000px;}
.yd2{bottom:265.875000px;}
.ya2{bottom:267.375000px;}
.y10a{bottom:268.275000px;}
.y111{bottom:275.175000px;}
.y35{bottom:276.390000px;}
.y28{bottom:276.675000px;}
.y7a{bottom:278.475000px;}
.ya1{bottom:282.075000px;}
.yd1{bottom:282.975000px;}
.y109{bottom:285.375000px;}
.y110{bottom:292.275000px;}
.y34{bottom:293.490000px;}
.y27{bottom:293.775000px;}
.y79{bottom:295.875000px;}
.ya0{bottom:299.175000px;}
.yd0{bottom:300.375000px;}
.y108{bottom:302.775000px;}
.y10f{bottom:309.675000px;}
.y33{bottom:310.875000px;}
.y26{bottom:311.475000px;}
.y78{bottom:312.975000px;}
.y9f{bottom:316.575000px;}
.ycf{bottom:317.475000px;}
.y107{bottom:319.875000px;}
.y13c{bottom:326.775000px;}
.y10e{bottom:327.375000px;}
.y32{bottom:328.590000px;}
.y77{bottom:330.375000px;}
.y25{bottom:331.875000px;}
.y9e{bottom:333.675000px;}
.yce{bottom:333.975000px;}
.y106{bottom:337.275000px;}
.y13b{bottom:344.175000px;}
.y24{bottom:345.720000px;}
.ycd{bottom:346.005000px;}
.y76{bottom:347.505000px;}
.y9d{bottom:351.105000px;}
.y105{bottom:354.405000px;}
.y13a{bottom:361.320000px;}
.ycb{bottom:364.005000px;}
.y75{bottom:364.905000px;}
.y9c{bottom:368.205000px;}
.y104{bottom:371.820000px;}
.y139{bottom:378.705000px;}
.y74{bottom:382.020000px;}
.y9b{bottom:385.605000px;}
.y103{bottom:388.920000px;}
.y138{bottom:395.820000px;}
.yca{bottom:399.120000px;}
.y73{bottom:399.420000px;}
.y9a{bottom:402.720000px;}
.y31{bottom:405.405000px;}
.y102{bottom:406.320000px;}
.y137{bottom:413.205000px;}
.y72{bottom:416.505000px;}
.yc7{bottom:417.120000px;}
.y99{bottom:420.120000px;}
.y101{bottom:423.420000px;}
.y136{bottom:430.320000px;}
.y71{bottom:433.920000px;}
.y98{bottom:437.205000px;}
.y100{bottom:440.820000px;}
.y135{bottom:447.705000px;}
.y70{bottom:451.005000px;}
.y97{bottom:454.620000px;}
.yff{bottom:457.905000px;}
.yc6{bottom:463.920000px;}
.y134{bottom:464.820000px;}
.y6f{bottom:468.420000px;}
.y96{bottom:471.720000px;}
.yfe{bottom:475.320000px;}
.y133{bottom:482.205000px;}
.yc5{bottom:483.420000px;}
.y6e{bottom:485.505000px;}
.y95{bottom:489.120000px;}
.yfd{bottom:492.420000px;}
.yc4{bottom:497.820000px;}
.y132{bottom:499.320000px;}
.y6d{bottom:502.920000px;}
.y94{bottom:506.205000px;}
.yfc{bottom:509.820000px;}
.yc3{bottom:515.250000px;}
.y131{bottom:516.750000px;}
.y6c{bottom:520.050000px;}
.y93{bottom:523.650000px;}
.yfb{bottom:526.950000px;}
.yc2{bottom:532.350000px;}
.y130{bottom:533.850000px;}
.y6b{bottom:537.450000px;}
.y92{bottom:540.750000px;}
.yfa{bottom:544.350000px;}
.yc1{bottom:549.750000px;}
.y12f{bottom:551.250000px;}
.y6a{bottom:554.550000px;}
.y91{bottom:557.250000px;}
.yf9{bottom:561.450000px;}
.yc0{bottom:566.850000px;}
.y12e{bottom:568.350000px;}
.y69{bottom:571.950000px;}
.yf8{bottom:578.850000px;}
.ybf{bottom:584.250000px;}
.y12d{bottom:585.750000px;}
.y68{bottom:589.050000px;}
.yf7{bottom:595.950000px;}
.ybe{bottom:600.750000px;}
.y12c{bottom:602.850000px;}
.y90{bottom:605.550000px;}
.y67{bottom:606.450000px;}
.ybd{bottom:612.450000px;}
.yf6{bottom:613.350000px;}
.y8f{bottom:620.250000px;}
.y66{bottom:623.550000px;}
.ybc{bottom:630.450000px;}
.yf5{bottom:631.050000px;}
.y8e{bottom:637.350000px;}
.y65{bottom:640.950000px;}
.ybb{bottom:648.450000px;}
.yf4{bottom:651.150000px;}
.y8d{bottom:654.750000px;}
.y64{bottom:658.050000px;}
.yba{bottom:666.450000px;}
.yf3{bottom:668.550000px;}
.y8c{bottom:671.850000px;}
.y63{bottom:675.450000px;}
.yb9{bottom:684.480000px;}
.yf2{bottom:685.695000px;}
.y8b{bottom:689.280000px;}
.y62{bottom:692.595000px;}
.yb8{bottom:702.480000px;}
.yf1{bottom:703.095000px;}
.y8a{bottom:706.380000px;}
.y141{bottom:706.995000px;}
.y61{bottom:709.980000px;}
.yf0{bottom:720.195000px;}
.yb7{bottom:720.480000px;}
.y89{bottom:723.795000px;}
.y60{bottom:727.080000px;}
.yef{bottom:737.595000px;}
.yb6{bottom:738.480000px;}
.y88{bottom:740.895000px;}
.y5f{bottom:744.495000px;}
.yee{bottom:754.695000px;}
.yb4{bottom:756.480000px;}
.y87{bottom:758.280000px;}
.y5e{bottom:761.595000px;}
.y23{bottom:765.480000px;}
.yec{bottom:769.380000px;}
.yb3{bottom:774.480000px;}
.y86{bottom:775.380000px;}
.y5d{bottom:778.980000px;}
.y22{bottom:785.580000px;}
.yea{bottom:791.580000px;}
.yb1{bottom:792.495000px;}
.y85{bottom:792.795000px;}
.y5c{bottom:796.080000px;}
.y21{bottom:802.980000px;}
.y84{bottom:809.880000px;}
.y5b{bottom:813.495000px;}
.yaf{bottom:818.895000px;}
.y20{bottom:823.080000px;}
.ye9{bottom:826.980000px;}
.y12b{bottom:827.295000px;}
.y83{bottom:827.580000px;}
.y5a{bottom:830.580000px;}
.y1f{bottom:842.895000px;}
.y12a{bottom:844.380000px;}
.ye7{bottom:844.980000px;}
.y59{bottom:847.995000px;}
.yae{bottom:848.295000px;}
.y1e{bottom:861.525000px;}
.y129{bottom:861.825000px;}
.y58{bottom:865.125000px;}
.yad{bottom:867.825000px;}
.y1d{bottom:878.025000px;}
.y128{bottom:878.925000px;}
.y57{bottom:882.525000px;}
.y1c{bottom:885.525000px;}
.ye6{bottom:891.525000px;}
.y127{bottom:896.325000px;}
.y56{bottom:899.625000px;}
.y1b{bottom:908.325000px;}
.ye5{bottom:911.925000px;}
.y126{bottom:913.425000px;}
.y55{bottom:917.025000px;}
.y1a{bottom:920.025000px;}
.ye4{bottom:929.025000px;}
.y125{bottom:930.825000px;}
.y54{bottom:934.125000px;}
.y19{bottom:942.825000px;}
.ye3{bottom:946.425000px;}
.y124{bottom:947.925000px;}
.y53{bottom:951.525000px;}
.y18{bottom:952.125000px;}
.y17{bottom:957.225000px;}
.y16{bottom:962.625000px;}
.ye2{bottom:963.525000px;}
.y123{bottom:965.325000px;}
.y15{bottom:967.725000px;}
.y52{bottom:968.625000px;}
.y14{bottom:975.225000px;}
.ye1{bottom:980.925000px;}
.y122{bottom:982.425000px;}
.y51{bottom:986.025000px;}
.yac{bottom:986.325000px;}
.y13{bottom:992.925000px;}
.ye0{bottom:998.025000px;}
.y121{bottom:999.825000px;}
.y50{bottom:1003.125000px;}
.yab{bottom:1005.825000px;}
.yde{bottom:1012.725000px;}
.y12{bottom:1013.625000px;}
.y120{bottom:1016.955000px;}
.y4f{bottom:1020.570000px;}
.y11{bottom:1031.670000px;}
.y11f{bottom:1034.370000px;}
.y10{bottom:1036.755000px;}
.y4e{bottom:1037.670000px;}
.ydd{bottom:1038.255000px;}
.yd{bottom:1040.955000px;}
.y11e{bottom:1051.455000px;}
.y4d{bottom:1055.070000px;}
.yc{bottom:1062.570000px;}
.yb{bottom:1068.255000px;}
.y11d{bottom:1068.870000px;}
.y4c{bottom:1072.170000px;}
.ydc{bottom:1073.670000px;}
.ya{bottom:1083.570000px;}
.y11c{bottom:1085.955000px;}
.y4b{bottom:1089.570000px;}
.yda{bottom:1091.670000px;}
.y9{bottom:1097.955000px;}
.y11b{bottom:1103.370000px;}
.y4a{bottom:1106.670000px;}
.y8{bottom:1115.670000px;}
.y11a{bottom:1120.455000px;}
.y49{bottom:1124.070000px;}
.y7{bottom:1133.670000px;}
.yd9{bottom:1138.170000px;}
.y6{bottom:1141.170000px;}
.y47{bottom:1196.400000px;}
.h9{height:8.677734px;}
.h5{height:12.700195px;}
.hb{height:13.016602px;}
.h1f{height:17.100000px;}
.h1b{height:17.400000px;}
.h1d{height:17.437500px;}
.ha{height:21.000000px;}
.h22{height:21.600000px;}
.h14{height:24.726562px;}
.h20{height:24.937500px;}
.h1c{height:25.800000px;}
.hd{height:28.636523px;}
.h19{height:33.328125px;}
.h7{height:33.867188px;}
.h1e{height:34.500000px;}
.h21{height:34.537500px;}
.h15{height:34.664062px;}
.h18{height:34.710938px;}
.h3{height:36.000000px;}
.hf{height:38.100586px;}
.h8{height:39.049805px;}
.h4{height:42.333984px;}
.he{height:43.388672px;}
.h17{height:43.681641px;}
.h16{height:44.507812px;}
.h11{height:49.453125px;}
.hc{height:50.236523px;}
.h6{height:50.800781px;}
.h13{height:51.996094px;}
.h1a{height:52.066406px;}
.h10{height:59.343750px;}
.h1{height:65.645508px;}
.h2{height:97.200000px;}
.h12{height:345.375000px;}
.h0{height:1263.000000px;}
.w18{width:17.700000px;}
.w9{width:38.100000px;}
.w13{width:42.000000px;}
.w14{width:46.800000px;}
.w16{width:46.837500px;}
.wc{width:52.200000px;}
.w15{width:55.537500px;}
.w10{width:69.900000px;}
.w4{width:72.300000px;}
.w20{width:78.922500px;}
.w29{width:78.937500px;}
.w17{width:79.200000px;}
.w22{width:79.222500px;}
.w1a{width:79.237500px;}
.wa{width:79.837500px;}
.w23{width:81.037500px;}
.w28{width:82.200000px;}
.wb{width:82.237500px;}
.w21{width:82.500000px;}
.w24{width:82.800000px;}
.w1f{width:88.500000px;}
.w19{width:88.800000px;}
.w1e{width:91.200000px;}
.w11{width:93.937500px;}
.w1b{width:96.337500px;}
.w12{width:99.637500px;}
.w3{width:108.000000px;}
.w26{width:108.937500px;}
.w1c{width:110.437500px;}
.w25{width:115.537500px;}
.w1d{width:122.737500px;}
.w27{width:132.637500px;}
.we{width:136.837500px;}
.wd{width:140.737500px;}
.wf{width:156.330000px;}
.w6{width:243.975000px;}
.w8{width:294.075000px;}
.w5{width:483.450000px;}
.w7{width:726.825000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:7.800000px;}
.x2{left:10.799998px;}
.xe{left:16.200000px;}
.x3{left:22.200000px;}
.x4{left:27.600000px;}
.x1{left:81.037487px;}
.x7{left:83.137487px;}
.xc{left:107.445000px;}
.x17{left:152.145000px;}
.x8{left:153.629987px;}
.x27{left:163.845000px;}
.x21{left:170.145000px;}
.x16{left:218.775000px;}
.xa{left:241.567500px;}
.x28{left:243.675000px;}
.x18{left:246.675000px;}
.x22{left:249.975000px;}
.x29{left:325.320000px;}
.x23{left:344.820000px;}
.x19{left:346.920000px;}
.x11{left:376.020000px;}
.x5{left:388.319987px;}
.x1a{left:389.520000px;}
.x2a{left:409.020000px;}
.x12{left:414.720000px;}
.x24{left:442.050000px;}
.x1b{left:472.350000px;}
.x13{left:495.150000px;}
.x1c{left:519.750000px;}
.x2b{left:525.450000px;}
.xf{left:546.779987px;}
.x25{left:553.095000px;}
.xb{left:566.280000px;}
.x1d{left:575.895000px;}
.x14{left:577.995000px;}
.x1e{left:623.280000px;}
.x15{left:631.095000px;}
.x2c{left:634.995000px;}
.x1f{left:670.725000px;}
.x26{left:676.425000px;}
.x6{left:695.624987px;}
.x20{left:749.925000px;}
.xd{left:810.254987px;}
.x9{left:812.369987px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.lsa{letter-spacing:-0.693333pt;}
.ls6{letter-spacing:-0.533333pt;}
.ls9{letter-spacing:-0.426667pt;}
.lsb{letter-spacing:-0.373333pt;}
.ls10{letter-spacing:-0.213333pt;}
.ls1{letter-spacing:-0.042667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.016000pt;}
.lsf{letter-spacing:0.106667pt;}
.ls12{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.213333pt;}
.ls3{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.341333pt;}
.ls11{letter-spacing:0.373333pt;}
.ls0{letter-spacing:0.533333pt;}
.lsd{letter-spacing:1.653333pt;}
.lsc{letter-spacing:2.666667pt;}
.lse{letter-spacing:13.973333pt;}
.ls7{letter-spacing:40.640000pt;}
.ws1{word-spacing:-16.341333pt;}
.ws9{word-spacing:-13.706667pt;}
.ws0{word-spacing:-13.514667pt;}
.ws2{word-spacing:-13.333333pt;}
.ws8{word-spacing:-13.120000pt;}
.ws7{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.640000pt;}
.ws4{word-spacing:-12.533333pt;}
.ws5{word-spacing:-9.898667pt;}
.ws3{word-spacing:0.000000pt;}
._12{margin-left:-2.053333pt;}
._1{margin-left:-1.104000pt;}
._0{width:1.157333pt;}
._7{width:2.074667pt;}
._2{width:3.621333pt;}
._b{width:5.077333pt;}
._6{width:6.464000pt;}
._5{width:7.360000pt;}
._9{width:8.373333pt;}
._d{width:9.866667pt;}
._a{width:10.917333pt;}
._8{width:11.893333pt;}
._c{width:14.453333pt;}
._10{width:15.877333pt;}
._e{width:17.013333pt;}
._f{width:18.346667pt;}
._11{width:19.349333pt;}
._13{width:20.272000pt;}
._15{width:22.304000pt;}
._14{width:23.253333pt;}
._3{width:298.826667pt;}
._4{width:885.600000pt;}
.fs6{font-size:10.666667pt;}
.fs3{font-size:16.000000pt;}
.fs8{font-size:26.666667pt;}
.fs7{font-size:35.200000pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:0.266667pt;}
.ydb{bottom:2.920000pt;}
.ycc{bottom:2.946667pt;}
.yc9{bottom:3.186667pt;}
.yb0{bottom:3.200000pt;}
.yb5{bottom:3.213333pt;}
.yf{bottom:3.480000pt;}
.ye{bottom:4.546667pt;}
.y2{bottom:4.800000pt;}
.yed{bottom:6.946667pt;}
.ydf{bottom:9.906667pt;}
.yb2{bottom:10.653333pt;}
.y5{bottom:10.966667pt;}
.y45{bottom:16.013333pt;}
.yc8{bottom:18.400000pt;}
.yeb{bottom:18.413333pt;}
.ye8{bottom:18.440000pt;}
.y44{bottom:33.346667pt;}
.y4{bottom:41.600000pt;}
.y43{bottom:46.146667pt;}
.y1{bottom:50.700000pt;}
.y42{bottom:61.600000pt;}
.y48{bottom:65.900000pt;}
.y3{bottom:72.300000pt;}
.y41{bottom:76.813333pt;}
.y40{bottom:92.266667pt;}
.y10d{bottom:100.566667pt;}
.y3f{bottom:107.506667pt;}
.y119{bottom:109.900000pt;}
.yaa{bottom:115.766667pt;}
.yd8{bottom:117.100000pt;}
.y140{bottom:121.900000pt;}
.y3e{bottom:122.973333pt;}
.y30{bottom:123.233333pt;}
.y82{bottom:124.833333pt;}
.y118{bottom:128.300000pt;}
.ya9{bottom:130.966667pt;}
.y10c{bottom:131.233333pt;}
.yd7{bottom:135.493333pt;}
.y3d{bottom:136.573333pt;}
.y13f{bottom:137.106667pt;}
.y2f{bottom:138.426667pt;}
.y81{bottom:140.293333pt;}
.y3c{bottom:145.906667pt;}
.ya8{bottom:146.440000pt;}
.y117{bottom:146.693333pt;}
.y13e{bottom:152.560000pt;}
.y2e{bottom:153.906667pt;}
.y80{bottom:155.493333pt;}
.y3b{bottom:161.373333pt;}
.ya7{bottom:161.666667pt;}
.y10b{bottom:161.933333pt;}
.y116{bottom:165.133333pt;}
.y13d{bottom:167.800000pt;}
.y2d{bottom:169.133333pt;}
.y7f{bottom:171.000000pt;}
.yd6{bottom:172.333333pt;}
.y3a{bottom:176.573333pt;}
.ya6{bottom:177.133333pt;}
.y115{bottom:183.266667pt;}
.y2c{bottom:184.600000pt;}
.y7e{bottom:186.200000pt;}
.yd5{bottom:190.200000pt;}
.y39{bottom:192.040000pt;}
.ya5{bottom:192.333333pt;}
.y114{bottom:198.466667pt;}
.y2b{bottom:199.800000pt;}
.y7d{bottom:201.666667pt;}
.y38{bottom:205.640000pt;}
.yd4{bottom:205.666667pt;}
.ya4{bottom:207.800000pt;}
.y113{bottom:213.933333pt;}
.y37{bottom:214.973333pt;}
.y2a{bottom:215.266667pt;}
.y7c{bottom:216.866667pt;}
.yd3{bottom:220.866667pt;}
.ya3{bottom:223.000000pt;}
.y112{bottom:229.133333pt;}
.y36{bottom:230.173333pt;}
.y29{bottom:230.466667pt;}
.y7b{bottom:232.333333pt;}
.yd2{bottom:236.333333pt;}
.ya2{bottom:237.666667pt;}
.y10a{bottom:238.466667pt;}
.y111{bottom:244.600000pt;}
.y35{bottom:245.680000pt;}
.y28{bottom:245.933333pt;}
.y7a{bottom:247.533333pt;}
.ya1{bottom:250.733333pt;}
.yd1{bottom:251.533333pt;}
.y109{bottom:253.666667pt;}
.y110{bottom:259.800000pt;}
.y34{bottom:260.880000pt;}
.y27{bottom:261.133333pt;}
.y79{bottom:263.000000pt;}
.ya0{bottom:265.933333pt;}
.yd0{bottom:267.000000pt;}
.y108{bottom:269.133333pt;}
.y10f{bottom:275.266667pt;}
.y33{bottom:276.333333pt;}
.y26{bottom:276.866667pt;}
.y78{bottom:278.200000pt;}
.y9f{bottom:281.400000pt;}
.ycf{bottom:282.200000pt;}
.y107{bottom:284.333333pt;}
.y13c{bottom:290.466667pt;}
.y10e{bottom:291.000000pt;}
.y32{bottom:292.080000pt;}
.y77{bottom:293.666667pt;}
.y25{bottom:295.000000pt;}
.y9e{bottom:296.600000pt;}
.yce{bottom:296.866667pt;}
.y106{bottom:299.800000pt;}
.y13b{bottom:305.933333pt;}
.y24{bottom:307.306667pt;}
.ycd{bottom:307.560000pt;}
.y76{bottom:308.893333pt;}
.y9d{bottom:312.093333pt;}
.y105{bottom:315.026667pt;}
.y13a{bottom:321.173333pt;}
.ycb{bottom:323.560000pt;}
.y75{bottom:324.360000pt;}
.y9c{bottom:327.293333pt;}
.y104{bottom:330.506667pt;}
.y139{bottom:336.626667pt;}
.y74{bottom:339.573333pt;}
.y9b{bottom:342.760000pt;}
.y103{bottom:345.706667pt;}
.y138{bottom:351.840000pt;}
.yca{bottom:354.773333pt;}
.y73{bottom:355.040000pt;}
.y9a{bottom:357.973333pt;}
.y31{bottom:360.360000pt;}
.y102{bottom:361.173333pt;}
.y137{bottom:367.293333pt;}
.y72{bottom:370.226667pt;}
.yc7{bottom:370.773333pt;}
.y99{bottom:373.440000pt;}
.y101{bottom:376.373333pt;}
.y136{bottom:382.506667pt;}
.y71{bottom:385.706667pt;}
.y98{bottom:388.626667pt;}
.y100{bottom:391.840000pt;}
.y135{bottom:397.960000pt;}
.y70{bottom:400.893333pt;}
.y97{bottom:404.106667pt;}
.yff{bottom:407.026667pt;}
.yc6{bottom:412.373333pt;}
.y134{bottom:413.173333pt;}
.y6f{bottom:416.373333pt;}
.y96{bottom:419.306667pt;}
.yfe{bottom:422.506667pt;}
.y133{bottom:428.626667pt;}
.yc5{bottom:429.706667pt;}
.y6e{bottom:431.560000pt;}
.y95{bottom:434.773333pt;}
.yfd{bottom:437.706667pt;}
.yc4{bottom:442.506667pt;}
.y132{bottom:443.840000pt;}
.y6d{bottom:447.040000pt;}
.y94{bottom:449.960000pt;}
.yfc{bottom:453.173333pt;}
.yc3{bottom:458.000000pt;}
.y131{bottom:459.333333pt;}
.y6c{bottom:462.266667pt;}
.y93{bottom:465.466667pt;}
.yfb{bottom:468.400000pt;}
.yc2{bottom:473.200000pt;}
.y130{bottom:474.533333pt;}
.y6b{bottom:477.733333pt;}
.y92{bottom:480.666667pt;}
.yfa{bottom:483.866667pt;}
.yc1{bottom:488.666667pt;}
.y12f{bottom:490.000000pt;}
.y6a{bottom:492.933333pt;}
.y91{bottom:495.333333pt;}
.yf9{bottom:499.066667pt;}
.yc0{bottom:503.866667pt;}
.y12e{bottom:505.200000pt;}
.y69{bottom:508.400000pt;}
.yf8{bottom:514.533333pt;}
.ybf{bottom:519.333333pt;}
.y12d{bottom:520.666667pt;}
.y68{bottom:523.600000pt;}
.yf7{bottom:529.733333pt;}
.ybe{bottom:534.000000pt;}
.y12c{bottom:535.866667pt;}
.y90{bottom:538.266667pt;}
.y67{bottom:539.066667pt;}
.ybd{bottom:544.400000pt;}
.yf6{bottom:545.200000pt;}
.y8f{bottom:551.333333pt;}
.y66{bottom:554.266667pt;}
.ybc{bottom:560.400000pt;}
.yf5{bottom:560.933333pt;}
.y8e{bottom:566.533333pt;}
.y65{bottom:569.733333pt;}
.ybb{bottom:576.400000pt;}
.yf4{bottom:578.800000pt;}
.y8d{bottom:582.000000pt;}
.y64{bottom:584.933333pt;}
.yba{bottom:592.400000pt;}
.yf3{bottom:594.266667pt;}
.y8c{bottom:597.200000pt;}
.y63{bottom:600.400000pt;}
.yb9{bottom:608.426667pt;}
.yf2{bottom:609.506667pt;}
.y8b{bottom:612.693333pt;}
.y62{bottom:615.640000pt;}
.yb8{bottom:624.426667pt;}
.yf1{bottom:624.973333pt;}
.y8a{bottom:627.893333pt;}
.y141{bottom:628.440000pt;}
.y61{bottom:631.093333pt;}
.yf0{bottom:640.173333pt;}
.yb7{bottom:640.426667pt;}
.y89{bottom:643.373333pt;}
.y60{bottom:646.293333pt;}
.yef{bottom:655.640000pt;}
.yb6{bottom:656.426667pt;}
.y88{bottom:658.573333pt;}
.y5f{bottom:661.773333pt;}
.yee{bottom:670.840000pt;}
.yb4{bottom:672.426667pt;}
.y87{bottom:674.026667pt;}
.y5e{bottom:676.973333pt;}
.y23{bottom:680.426667pt;}
.yec{bottom:683.893333pt;}
.yb3{bottom:688.426667pt;}
.y86{bottom:689.226667pt;}
.y5d{bottom:692.426667pt;}
.y22{bottom:698.293333pt;}
.yea{bottom:703.626667pt;}
.yb1{bottom:704.440000pt;}
.y85{bottom:704.706667pt;}
.y5c{bottom:707.626667pt;}
.y21{bottom:713.760000pt;}
.y84{bottom:719.893333pt;}
.y5b{bottom:723.106667pt;}
.yaf{bottom:727.906667pt;}
.y20{bottom:731.626667pt;}
.ye9{bottom:735.093333pt;}
.y12b{bottom:735.373333pt;}
.y83{bottom:735.626667pt;}
.y5a{bottom:738.293333pt;}
.y1f{bottom:749.240000pt;}
.y12a{bottom:750.560000pt;}
.ye7{bottom:751.093333pt;}
.y59{bottom:753.773333pt;}
.yae{bottom:754.040000pt;}
.y1e{bottom:765.800000pt;}
.y129{bottom:766.066667pt;}
.y58{bottom:769.000000pt;}
.yad{bottom:771.400000pt;}
.y1d{bottom:780.466667pt;}
.y128{bottom:781.266667pt;}
.y57{bottom:784.466667pt;}
.y1c{bottom:787.133333pt;}
.ye6{bottom:792.466667pt;}
.y127{bottom:796.733333pt;}
.y56{bottom:799.666667pt;}
.y1b{bottom:807.400000pt;}
.ye5{bottom:810.600000pt;}
.y126{bottom:811.933333pt;}
.y55{bottom:815.133333pt;}
.y1a{bottom:817.800000pt;}
.ye4{bottom:825.800000pt;}
.y125{bottom:827.400000pt;}
.y54{bottom:830.333333pt;}
.y19{bottom:838.066667pt;}
.ye3{bottom:841.266667pt;}
.y124{bottom:842.600000pt;}
.y53{bottom:845.800000pt;}
.y18{bottom:846.333333pt;}
.y17{bottom:850.866667pt;}
.y16{bottom:855.666667pt;}
.ye2{bottom:856.466667pt;}
.y123{bottom:858.066667pt;}
.y15{bottom:860.200000pt;}
.y52{bottom:861.000000pt;}
.y14{bottom:866.866667pt;}
.ye1{bottom:871.933333pt;}
.y122{bottom:873.266667pt;}
.y51{bottom:876.466667pt;}
.yac{bottom:876.733333pt;}
.y13{bottom:882.600000pt;}
.ye0{bottom:887.133333pt;}
.y121{bottom:888.733333pt;}
.y50{bottom:891.666667pt;}
.yab{bottom:894.066667pt;}
.yde{bottom:900.200000pt;}
.y12{bottom:901.000000pt;}
.y120{bottom:903.960000pt;}
.y4f{bottom:907.173333pt;}
.y11{bottom:917.040000pt;}
.y11f{bottom:919.440000pt;}
.y10{bottom:921.560000pt;}
.y4e{bottom:922.373333pt;}
.ydd{bottom:922.893333pt;}
.yd{bottom:925.293333pt;}
.y11e{bottom:934.626667pt;}
.y4d{bottom:937.840000pt;}
.yc{bottom:944.506667pt;}
.yb{bottom:949.560000pt;}
.y11d{bottom:950.106667pt;}
.y4c{bottom:953.040000pt;}
.ydc{bottom:954.373333pt;}
.ya{bottom:963.173333pt;}
.y11c{bottom:965.293333pt;}
.y4b{bottom:968.506667pt;}
.yda{bottom:970.373333pt;}
.y9{bottom:975.960000pt;}
.y11b{bottom:980.773333pt;}
.y4a{bottom:983.706667pt;}
.y8{bottom:991.706667pt;}
.y11a{bottom:995.960000pt;}
.y49{bottom:999.173333pt;}
.y7{bottom:1007.706667pt;}
.yd9{bottom:1011.706667pt;}
.y6{bottom:1014.373333pt;}
.y47{bottom:1063.466667pt;}
.h9{height:7.713542pt;}
.h5{height:11.289062pt;}
.hb{height:11.570312pt;}
.h1f{height:15.200000pt;}
.h1b{height:15.466667pt;}
.h1d{height:15.500000pt;}
.ha{height:18.666667pt;}
.h22{height:19.200000pt;}
.h14{height:21.979167pt;}
.h20{height:22.166667pt;}
.h1c{height:22.933333pt;}
.hd{height:25.454687pt;}
.h19{height:29.625000pt;}
.h7{height:30.104167pt;}
.h1e{height:30.666667pt;}
.h21{height:30.700000pt;}
.h15{height:30.812500pt;}
.h18{height:30.854167pt;}
.h3{height:32.000000pt;}
.hf{height:33.867188pt;}
.h8{height:34.710938pt;}
.h4{height:37.630208pt;}
.he{height:38.567708pt;}
.h17{height:38.828125pt;}
.h16{height:39.562500pt;}
.h11{height:43.958333pt;}
.hc{height:44.654688pt;}
.h6{height:45.156250pt;}
.h13{height:46.218750pt;}
.h1a{height:46.281250pt;}
.h10{height:52.750000pt;}
.h1{height:58.351562pt;}
.h2{height:86.400000pt;}
.h12{height:307.000000pt;}
.h0{height:1122.666667pt;}
.w18{width:15.733333pt;}
.w9{width:33.866667pt;}
.w13{width:37.333333pt;}
.w14{width:41.600000pt;}
.w16{width:41.633333pt;}
.wc{width:46.400000pt;}
.w15{width:49.366667pt;}
.w10{width:62.133333pt;}
.w4{width:64.266667pt;}
.w20{width:70.153333pt;}
.w29{width:70.166667pt;}
.w17{width:70.400000pt;}
.w22{width:70.420000pt;}
.w1a{width:70.433333pt;}
.wa{width:70.966667pt;}
.w23{width:72.033333pt;}
.w28{width:73.066667pt;}
.wb{width:73.100000pt;}
.w21{width:73.333333pt;}
.w24{width:73.600000pt;}
.w1f{width:78.666667pt;}
.w19{width:78.933333pt;}
.w1e{width:81.066667pt;}
.w11{width:83.500000pt;}
.w1b{width:85.633333pt;}
.w12{width:88.566667pt;}
.w3{width:96.000000pt;}
.w26{width:96.833333pt;}
.w1c{width:98.166667pt;}
.w25{width:102.700000pt;}
.w1d{width:109.100000pt;}
.w27{width:117.900000pt;}
.we{width:121.633333pt;}
.wd{width:125.100000pt;}
.wf{width:138.960000pt;}
.w6{width:216.866667pt;}
.w8{width:261.400000pt;}
.w5{width:429.733333pt;}
.w7{width:646.066667pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:6.933333pt;}
.x2{left:9.599999pt;}
.xe{left:14.400000pt;}
.x3{left:19.733333pt;}
.x4{left:24.533333pt;}
.x1{left:72.033322pt;}
.x7{left:73.899988pt;}
.xc{left:95.506667pt;}
.x17{left:135.240000pt;}
.x8{left:136.559988pt;}
.x27{left:145.640000pt;}
.x21{left:151.240000pt;}
.x16{left:194.466667pt;}
.xa{left:214.726667pt;}
.x28{left:216.600000pt;}
.x18{left:219.266667pt;}
.x22{left:222.200000pt;}
.x29{left:289.173333pt;}
.x23{left:306.506667pt;}
.x19{left:308.373333pt;}
.x11{left:334.240000pt;}
.x5{left:345.173322pt;}
.x1a{left:346.240000pt;}
.x2a{left:363.573333pt;}
.x12{left:368.640000pt;}
.x24{left:392.933333pt;}
.x1b{left:419.866667pt;}
.x13{left:440.133333pt;}
.x1c{left:462.000000pt;}
.x2b{left:467.066667pt;}
.xf{left:486.026655pt;}
.x25{left:491.640000pt;}
.xb{left:503.360000pt;}
.x1d{left:511.906667pt;}
.x14{left:513.773333pt;}
.x1e{left:554.026667pt;}
.x15{left:560.973333pt;}
.x2c{left:564.440000pt;}
.x1f{left:596.200000pt;}
.x26{left:601.266667pt;}
.x6{left:618.333322pt;}
.x20{left:666.600000pt;}
.xd{left:720.226655pt;}
.x9{left:722.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; }
  