
    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_fd0f9c78b5477c10321d7a96.woff2')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_775cf47e78466ac039d0c295.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.934082;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_060928c4380300e5714a4a9e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.937500;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_0d9c7676a28cd9d6563ad76c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.435059;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_d98fd9b2cbdf7d936e046d95.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_f850a08b05fded9dcb5b38a1.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c37743e3f0c3944ba0ee375f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_df764a042bc08f647ebe56cb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.976562;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_5fe5fd0daa456cea960576de.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_3fb409e1fa50b838f7bafbf5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c63decaaa82005f6a18118ec.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.m2{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-84.240000px;}
.v1{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.ls30{letter-spacing:-1.728000px;}
.ls2d{letter-spacing:-1.656000px;}
.ls31{letter-spacing:-1.584000px;}
.ls33{letter-spacing:-1.512000px;}
.ls10{letter-spacing:-1.440000px;}
.ls2c{letter-spacing:-1.008000px;}
.ls1c{letter-spacing:-0.936000px;}
.lsf{letter-spacing:-0.720000px;}
.ls1b{letter-spacing:-0.576000px;}
.lsd{letter-spacing:-0.305400px;}
.ls1a{letter-spacing:-0.288000px;}
.ls18{letter-spacing:-0.216000px;}
.ls14{letter-spacing:-0.144000px;}
.ls20{letter-spacing:-0.072000px;}
.ls13{letter-spacing:-0.053280px;}
.ls17{letter-spacing:-0.045360px;}
.lse{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.074880px;}
.ls15{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.244800px;}
.ls12{letter-spacing:0.256200px;}
.ls7{letter-spacing:0.256320px;}
.ls2b{letter-spacing:0.269400px;}
.ls32{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.313920px;}
.ls2f{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.371520px;}
.ls23{letter-spacing:0.432000px;}
.ls25{letter-spacing:0.504000px;}
.ls34{letter-spacing:0.576000px;}
.ls5{letter-spacing:0.720000px;}
.ls35{letter-spacing:0.792000px;}
.ls2e{letter-spacing:0.840000px;}
.ls21{letter-spacing:0.864000px;}
.ls2{letter-spacing:1.416000px;}
.ls3{letter-spacing:1.440000px;}
.ls24{letter-spacing:2.160000px;}
.ls9{letter-spacing:8.640000px;}
.ls22{letter-spacing:10.800000px;}
.lsc{letter-spacing:74.304000px;}
.ls1f{letter-spacing:87.984000px;}
.ls1e{letter-spacing:108.144000px;}
.ls28{letter-spacing:118.200000px;}
.ls29{letter-spacing:121.800000px;}
.ls1d{letter-spacing:128.304000px;}
.ls27{letter-spacing:136.920000px;}
.ls2a{letter-spacing:141.960000px;}
.ls26{letter-spacing:157.080000px;}
.ls19{letter-spacing:290.280000px;}
.lsa{letter-spacing:1142.220000px;}
.lsb{letter-spacing:1211.340000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd{word-spacing:-72.000000px;}
.ws15{word-spacing:-19.440000px;}
.ws14{word-spacing:-18.864000px;}
.ws21{word-spacing:-18.792000px;}
.wsf{word-spacing:-18.720000px;}
.ws20{word-spacing:-18.576000px;}
.ws17{word-spacing:-18.504000px;}
.ws16{word-spacing:-18.432000px;}
.ws1e{word-spacing:-18.288000px;}
.ws1d{word-spacing:-18.216000px;}
.ws7{word-spacing:-18.144000px;}
.ws9{word-spacing:-18.072000px;}
.wsb{word-spacing:-18.000000px;}
.ws13{word-spacing:-17.928000px;}
.ws6{word-spacing:-17.856000px;}
.wsc{word-spacing:-17.784000px;}
.ws10{word-spacing:-17.712000px;}
.ws11{word-spacing:-17.424000px;}
.ws8{word-spacing:-17.280000px;}
.ws12{word-spacing:-17.064000px;}
.ws3{word-spacing:-16.865400px;}
.ws1b{word-spacing:-16.560000px;}
.ws1f{word-spacing:-16.488000px;}
.ws1c{word-spacing:-16.416000px;}
.ws19{word-spacing:-16.344000px;}
.ws1a{word-spacing:-16.272000px;}
.ws0{word-spacing:-16.254600px;}
.ws1{word-spacing:-15.840000px;}
.ws5{word-spacing:-15.226440px;}
.ws2{word-spacing:-15.120000px;}
.ws4{word-spacing:-14.970240px;}
.ws18{word-spacing:-12.329400px;}
.wsa{word-spacing:-12.014640px;}
.wse{word-spacing:0.000000px;}
._1d{margin-left:-5.223840px;}
._2{margin-left:-4.126800px;}
._1{margin-left:-2.694240px;}
._0{margin-left:-1.134480px;}
._3{width:1.314720px;}
._7{width:2.670960px;}
._5{width:3.816000px;}
._6{width:4.841040px;}
._b{width:5.976000px;}
._c{width:7.056000px;}
._9{width:8.469360px;}
._8{width:9.674640px;}
._13{width:10.693440px;}
._a{width:11.880000px;}
._e{width:12.960000px;}
._12{width:14.393280px;}
._d{width:15.672000px;}
._4{width:16.776000px;}
._f{width:19.296000px;}
._1b{width:20.411760px;}
._10{width:21.528000px;}
._14{width:23.021280px;}
._16{width:24.602640px;}
._1c{width:26.184240px;}
._11{width:27.786480px;}
._25{width:28.944000px;}
._24{width:29.952000px;}
._17{width:31.392000px;}
._18{width:32.969040px;}
._15{width:38.880000px;}
._19{width:41.184000px;}
._1a{width:42.360960px;}
._21{width:51.408000px;}
._22{width:52.632000px;}
._23{width:53.856000px;}
._1f{width:418.201920px;}
._1e{width:419.332320px;}
._20{width:1420.697760px;}
.fc3{color:rgb(0,112,193);}
.fc2{color:rgb(127,127,127);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:4.680000px;}
.yc7{bottom:4.860000px;}
.y7{bottom:5.025000px;}
.yc5{bottom:5.040000px;}
.ye3{bottom:5.055000px;}
.yc2{bottom:5.220000px;}
.yc0{bottom:5.235000px;}
.yf6{bottom:5.400000px;}
.ye9{bottom:5.925000px;}
.y3{bottom:5.940000px;}
.yeb{bottom:6.825000px;}
.yf4{bottom:6.840000px;}
.ye7{bottom:7.185000px;}
.yf8{bottom:7.230000px;}
.ye5{bottom:7.950000px;}
.yd8{bottom:10.080000px;}
.yda{bottom:10.260000px;}
.yad{bottom:10.980000px;}
.yaf{bottom:11.880000px;}
.yb1{bottom:12.240000px;}
.yd6{bottom:13.680000px;}
.yb3{bottom:14.760000px;}
.yab{bottom:16.200000px;}
.yd4{bottom:21.060000px;}
.ybe{bottom:23.220000px;}
.y2{bottom:24.300000px;}
.yd3{bottom:40.140000px;}
.yd2{bottom:40.320000px;}
.y6{bottom:181.305000px;}
.y9{bottom:183.810000px;}
.y2e{bottom:211.350000px;}
.yed{bottom:216.750000px;}
.y84{bottom:223.410000px;}
.y58{bottom:223.590000px;}
.y5c{bottom:223.770000px;}
.y114{bottom:224.490000px;}
.yb9{bottom:231.330000px;}
.y2d{bottom:232.050000px;}
.yec{bottom:237.450000px;}
.y83{bottom:244.110000px;}
.y57{bottom:244.290000px;}
.y116{bottom:244.470000px;}
.y113{bottom:245.190000px;}
.yb8{bottom:252.030000px;}
.y2c{bottom:252.750000px;}
.yea{bottom:254.385000px;}
.y9e{bottom:264.270000px;}
.y5b{bottom:264.450000px;}
.y82{bottom:264.810000px;}
.y69{bottom:264.990000px;}
.y115{bottom:265.170000px;}
.y112{bottom:265.890000px;}
.yb7{bottom:272.730000px;}
.y2b{bottom:273.450000px;}
.ye8{bottom:275.445000px;}
.y81{bottom:285.510000px;}
.y56{bottom:285.690000px;}
.y5a{bottom:285.870000px;}
.y111{bottom:286.590000px;}
.yb6{bottom:293.430000px;}
.y2a{bottom:294.150000px;}
.ye6{bottom:296.505000px;}
.y80{bottom:306.210000px;}
.y68{bottom:306.390000px;}
.y55{bottom:306.570000px;}
.y110{bottom:307.290000px;}
.yb5{bottom:314.130000px;}
.y29{bottom:314.850000px;}
.ye4{bottom:319.545000px;}
.y7f{bottom:326.955000px;}
.y67{bottom:327.135000px;}
.y54{bottom:327.315000px;}
.y10f{bottom:328.035000px;}
.yb4{bottom:334.875000px;}
.y28{bottom:335.415000px;}
.ye2{bottom:342.960000px;}
.ye1{bottom:342.975000px;}
.y7e{bottom:347.655000px;}
.y66{bottom:347.835000px;}
.y53{bottom:348.015000px;}
.y10e{bottom:348.735000px;}
.y7d{bottom:368.355000px;}
.y65{bottom:368.535000px;}
.y52{bottom:368.715000px;}
.y10d{bottom:369.435000px;}
.yb2{bottom:372.135000px;}
.y27{bottom:385.635000px;}
.ye0{bottom:385.995000px;}
.y7c{bottom:389.055000px;}
.y64{bottom:389.235000px;}
.y51{bottom:389.415000px;}
.y10c{bottom:390.135000px;}
.y26{bottom:406.875000px;}
.ydf{bottom:407.055000px;}
.yb0{bottom:407.235000px;}
.y7b{bottom:409.755000px;}
.y63{bottom:409.935000px;}
.y50{bottom:410.115000px;}
.y10b{bottom:410.835000px;}
.yde{bottom:427.755000px;}
.y7a{bottom:430.455000px;}
.y62{bottom:430.635000px;}
.y4f{bottom:430.815000px;}
.y10a{bottom:431.535000px;}
.yae{bottom:439.275000px;}
.y25{bottom:448.275000px;}
.ydd{bottom:448.455000px;}
.y79{bottom:450.795000px;}
.y9d{bottom:451.155000px;}
.y61{bottom:451.335000px;}
.y4e{bottom:451.515000px;}
.y109{bottom:452.235000px;}
.ydc{bottom:469.155000px;}
.y24{bottom:469.335000px;}
.yac{bottom:470.055000px;}
.y9c{bottom:471.855000px;}
.y60{bottom:472.035000px;}
.y4d{bottom:472.215000px;}
.y108{bottom:472.935000px;}
.ydb{bottom:486.075000px;}
.y23{bottom:490.035000px;}
.y9b{bottom:492.555000px;}
.y5f{bottom:492.735000px;}
.y4c{bottom:492.915000px;}
.y107{bottom:493.635000px;}
.yaa{bottom:496.515000px;}
.y22{bottom:510.735000px;}
.y11a{bottom:513.255000px;}
.y5e{bottom:513.435000px;}
.y4b{bottom:513.615000px;}
.y106{bottom:514.335000px;}
.yd9{bottom:516.315000px;}
.y21{bottom:531.435000px;}
.ya9{bottom:533.415000px;}
.y9a{bottom:533.595000px;}
.y119{bottom:533.955000px;}
.y4a{bottom:534.135000px;}
.y105{bottom:535.035000px;}
.yd7{bottom:544.395000px;}
.y20{bottom:552.135000px;}
.y8a{bottom:554.295000px;}
.y99{bottom:554.655000px;}
.y49{bottom:554.835000px;}
.y104{bottom:555.735000px;}
.y1f{bottom:572.865000px;}
.ya8{bottom:575.025000px;}
.y98{bottom:575.385000px;}
.y48{bottom:575.565000px;}
.y89{bottom:575.745000px;}
.yd5{bottom:576.105000px;}
.y103{bottom:576.465000px;}
.y1e{bottom:593.565000px;}
.y97{bottom:596.085000px;}
.y47{bottom:596.265000px;}
.y88{bottom:596.445000px;}
.y102{bottom:597.165000px;}
.yd1{bottom:605.265000px;}
.y1d{bottom:614.265000px;}
.y96{bottom:616.785000px;}
.y46{bottom:616.965000px;}
.y87{bottom:617.145000px;}
.y101{bottom:617.865000px;}
.y1c{bottom:634.965000px;}
.y95{bottom:637.485000px;}
.y45{bottom:637.665000px;}
.y86{bottom:637.845000px;}
.y100{bottom:638.025000px;}
.y1b{bottom:655.665000px;}
.y94{bottom:658.185000px;}
.y44{bottom:658.365000px;}
.y85{bottom:658.545000px;}
.yff{bottom:659.445000px;}
.yd0{bottom:665.925000px;}
.y1a{bottom:676.365000px;}
.y5d{bottom:678.525000px;}
.y93{bottom:678.885000px;}
.y59{bottom:679.065000px;}
.y43{bottom:679.245000px;}
.yfe{bottom:680.145000px;}
.ycf{bottom:686.625000px;}
.y19{bottom:697.065000px;}
.ya7{bottom:699.045000px;}
.y118{bottom:699.225000px;}
.y92{bottom:699.585000px;}
.y78{bottom:699.765000px;}
.y42{bottom:699.945000px;}
.yfd{bottom:700.845000px;}
.yce{bottom:707.145000px;}
.y18{bottom:717.765000px;}
.y91{bottom:719.925000px;}
.ya6{bottom:720.285000px;}
.y77{bottom:720.465000px;}
.y41{bottom:720.645000px;}
.yfc{bottom:721.545000px;}
.ycd{bottom:728.745000px;}
.y17{bottom:738.465000px;}
.ya5{bottom:740.985000px;}
.y76{bottom:741.165000px;}
.y40{bottom:741.345000px;}
.yfb{bottom:742.245000px;}
.ycc{bottom:749.445000px;}
.y16{bottom:759.165000px;}
.y8b{bottom:761.325000px;}
.ya4{bottom:761.685000px;}
.y75{bottom:761.865000px;}
.y3f{bottom:762.045000px;}
.yfa{bottom:762.765000px;}
.ycb{bottom:770.145000px;}
.y15{bottom:779.865000px;}
.ya3{bottom:782.385000px;}
.y74{bottom:782.565000px;}
.y3e{bottom:782.745000px;}
.yca{bottom:790.845000px;}
.yf9{bottom:799.665000px;}
.y14{bottom:800.385000px;}
.ya2{bottom:802.725000px;}
.y73{bottom:803.265000px;}
.y3d{bottom:803.445000px;}
.yc9{bottom:811.545000px;}
.yf7{bottom:819.480000px;}
.y72{bottom:824.010000px;}
.y3c{bottom:824.190000px;}
.yc8{bottom:832.290000px;}
.yf5{bottom:840.570000px;}
.y13{bottom:841.650000px;}
.y90{bottom:844.530000px;}
.y71{bottom:844.710000px;}
.y3b{bottom:844.890000px;}
.yf3{bottom:861.090000px;}
.y12{bottom:862.350000px;}
.y8f{bottom:864.870000px;}
.y117{bottom:865.050000px;}
.ya1{bottom:865.230000px;}
.y70{bottom:865.410000px;}
.y3a{bottom:865.590000px;}
.yc6{bottom:869.010000px;}
.y11{bottom:882.870000px;}
.yf2{bottom:883.395000px;}
.yf1{bottom:883.410000px;}
.ya0{bottom:885.570000px;}
.y6f{bottom:886.110000px;}
.y39{bottom:886.290000px;}
.yc4{bottom:886.830000px;}
.y10{bottom:903.390000px;}
.yc3{bottom:905.730000px;}
.y6e{bottom:906.810000px;}
.y38{bottom:906.990000px;}
.yf{bottom:924.090000px;}
.yc1{bottom:924.810000px;}
.yf0{bottom:926.970000px;}
.y6d{bottom:927.510000px;}
.y37{bottom:927.690000px;}
.ye{bottom:944.790000px;}
.ybf{bottom:945.495000px;}
.ybd{bottom:945.510000px;}
.yef{bottom:947.670000px;}
.y9f{bottom:947.850000px;}
.y6c{bottom:948.210000px;}
.y36{bottom:948.390000px;}
.y6b{bottom:968.370000px;}
.y8e{bottom:968.910000px;}
.y35{bottom:969.090000px;}
.yd{bottom:986.190000px;}
.y6a{bottom:989.070000px;}
.yee{bottom:989.430000px;}
.y8d{bottom:989.610000px;}
.y34{bottom:989.790000px;}
.yc{bottom:1006.890000px;}
.ybc{bottom:1009.770000px;}
.y8c{bottom:1009.950000px;}
.y11c{bottom:1010.310000px;}
.y33{bottom:1010.490000px;}
.yb{bottom:1027.590000px;}
.ybb{bottom:1030.470000px;}
.y11b{bottom:1031.010000px;}
.y32{bottom:1031.190000px;}
.y30{bottom:1037.130000px;}
.yba{bottom:1051.170000px;}
.y31{bottom:1051.710000px;}
.ya{bottom:1054.050000px;}
.y2f{bottom:1057.830000px;}
.y1{bottom:1092.420000px;}
.y4{bottom:1092.780000px;}
.y8{bottom:1136.340000px;}
.h1b{height:17.805000px;}
.h1a{height:18.885000px;}
.h19{height:19.065000px;}
.h4{height:19.440000px;}
.h6{height:19.620000px;}
.h28{height:19.800000px;}
.h18{height:19.965000px;}
.h26{height:20.505000px;}
.h24{height:21.045000px;}
.h27{height:21.081000px;}
.h25{height:21.585000px;}
.h22{height:22.701000px;}
.h23{height:23.025000px;}
.h11{height:25.725000px;}
.h1f{height:28.065000px;}
.h1d{height:28.440000px;}
.hf{height:29.145000px;}
.h20{height:30.225000px;}
.h12{height:30.765000px;}
.h1e{height:31.710000px;}
.h13{height:32.025000px;}
.h14{height:35.085000px;}
.h15{height:37.965000px;}
.h16{height:37.971000px;}
.h21{height:37.975500px;}
.h17{height:37.980000px;}
.h2{height:38.340000px;}
.h5{height:50.068125px;}
.hc{height:50.273438px;}
.h1c{height:55.080000px;}
.h7{height:58.651172px;}
.h3{height:65.010937px;}
.h10{height:66.757500px;}
.ha{height:70.628906px;}
.h9{height:70.664062px;}
.h8{height:72.562500px;}
.hd{height:74.004654px;}
.hb{height:74.681367px;}
.he{height:74.704922px;}
.h1{height:1191.000000px;}
.h0{height:1191.060000px;}
.w2{width:66.600000px;}
.we{width:72.885000px;}
.w3{width:84.060000px;}
.w1b{width:84.441000px;}
.w12{width:86.220000px;}
.w24{width:86.781000px;}
.w10{width:87.831000px;}
.w1f{width:92.691000px;}
.wf{width:95.961000px;}
.w9{width:95.962500px;}
.w16{width:96.471000px;}
.w14{width:97.365000px;}
.w29{width:98.265000px;}
.w25{width:98.271000px;}
.w26{width:98.280000px;}
.w11{width:102.081000px;}
.w13{width:103.176000px;}
.wa{width:104.940000px;}
.w1c{width:108.345000px;}
.wd{width:114.501000px;}
.w8{width:115.011000px;}
.w1e{width:117.885000px;}
.w19{width:117.895500px;}
.w1a{width:117.900000px;}
.w18{width:117.936000px;}
.w27{width:119.901000px;}
.w20{width:119.902500px;}
.w28{width:120.945000px;}
.w22{width:120.955500px;}
.w23{width:120.960000px;}
.w21{width:122.616000px;}
.w1d{width:126.741000px;}
.w17{width:126.742500px;}
.w15{width:130.701000px;}
.wb{width:131.796000px;}
.wc{width:131.805000px;}
.w7{width:200.895000px;}
.w6{width:216.570000px;}
.w5{width:228.981000px;}
.w4{width:303.330000px;}
.w1{width:362.415000px;}
.w0{width:850.500000px;}
.x0{left:0.000000px;}
.x5{left:1.455000px;}
.x2{left:4.845000px;}
.x1d{left:8.631000px;}
.x2a{left:10.980000px;}
.x4b{left:14.571000px;}
.x3a{left:15.840000px;}
.x20{left:16.920000px;}
.x45{left:18.180000px;}
.x4d{left:19.251000px;}
.x3d{left:20.340000px;}
.x2f{left:21.990000px;}
.x2d{left:23.205000px;}
.x28{left:24.825000px;}
.x4e{left:30.771000px;}
.x25{left:36.000000px;}
.x35{left:40.860000px;}
.x4a{left:42.870000px;}
.x23{left:43.950000px;}
.x40{left:45.900000px;}
.x42{left:47.880000px;}
.x19{left:49.890000px;}
.x36{left:52.005000px;}
.x17{left:53.100000px;}
.x32{left:55.605000px;}
.x33{left:58.530000px;}
.x37{left:60.510000px;}
.x16{left:62.625000px;}
.x31{left:64.470000px;}
.x26{left:71.820000px;}
.x34{left:76.170000px;}
.x1a{left:79.230000px;}
.x30{left:80.310000px;}
.x1b{left:83.370000px;}
.x8{left:84.960000px;}
.x3f{left:86.025000px;}
.x49{left:88.545000px;}
.x3e{left:90.540000px;}
.x4c{left:92.865000px;}
.x38{left:95.265000px;}
.x41{left:99.390000px;}
.x6{left:103.545000px;}
.x9{left:107.676000px;}
.x53{left:110.016000px;}
.x1c{left:112.536000px;}
.xa{left:132.696000px;}
.x13{left:135.036000px;}
.x52{left:140.076000px;}
.x54{left:142.776000px;}
.x3{left:155.550000px;}
.xf{left:162.030000px;}
.x15{left:166.710000px;}
.x10{left:171.930000px;}
.x1{left:182.925000px;}
.x14{left:189.030000px;}
.x39{left:191.745000px;}
.x27{left:195.885000px;}
.x43{left:200.745000px;}
.x51{left:216.030000px;}
.x1e{left:223.065000px;}
.xc{left:282.495000px;}
.x29{left:297.975000px;}
.x1f{left:319.035000px;}
.x44{left:320.655000px;}
.xd{left:335.775000px;}
.xe{left:337.215000px;}
.x2b{left:384.195000px;}
.xb{left:397.335000px;}
.x21{left:423.975000px;}
.x7{left:427.980000px;}
.x3b{left:436.440000px;}
.x46{left:443.280000px;}
.x2c{left:487.380000px;}
.x4f{left:499.065000px;}
.x50{left:511.665000px;}
.x18{left:553.620000px;}
.x22{left:555.780000px;}
.x47{left:564.240000px;}
.x11{left:581.505000px;}
.x2e{left:584.760000px;}
.x12{left:596.085000px;}
.x4{left:614.115000px;}
.x3c{left:638.790000px;}
.x48{left:651.030000px;}
.x24{left:670.290000px;}
@media print{
.v3{vertical-align:-74.880000pt;}
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.ls30{letter-spacing:-1.536000pt;}
.ls2d{letter-spacing:-1.472000pt;}
.ls31{letter-spacing:-1.408000pt;}
.ls33{letter-spacing:-1.344000pt;}
.ls10{letter-spacing:-1.280000pt;}
.ls2c{letter-spacing:-0.896000pt;}
.ls1c{letter-spacing:-0.832000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls1b{letter-spacing:-0.512000pt;}
.lsd{letter-spacing:-0.271467pt;}
.ls1a{letter-spacing:-0.256000pt;}
.ls18{letter-spacing:-0.192000pt;}
.ls14{letter-spacing:-0.128000pt;}
.ls20{letter-spacing:-0.064000pt;}
.ls13{letter-spacing:-0.047360pt;}
.ls17{letter-spacing:-0.040320pt;}
.lse{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.066560pt;}
.ls15{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.217600pt;}
.ls12{letter-spacing:0.227733pt;}
.ls7{letter-spacing:0.227840pt;}
.ls2b{letter-spacing:0.239467pt;}
.ls32{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.279040pt;}
.ls2f{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.330240pt;}
.ls23{letter-spacing:0.384000pt;}
.ls25{letter-spacing:0.448000pt;}
.ls34{letter-spacing:0.512000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls35{letter-spacing:0.704000pt;}
.ls2e{letter-spacing:0.746667pt;}
.ls21{letter-spacing:0.768000pt;}
.ls2{letter-spacing:1.258667pt;}
.ls3{letter-spacing:1.280000pt;}
.ls24{letter-spacing:1.920000pt;}
.ls9{letter-spacing:7.680000pt;}
.ls22{letter-spacing:9.600000pt;}
.lsc{letter-spacing:66.048000pt;}
.ls1f{letter-spacing:78.208000pt;}
.ls1e{letter-spacing:96.128000pt;}
.ls28{letter-spacing:105.066667pt;}
.ls29{letter-spacing:108.266667pt;}
.ls1d{letter-spacing:114.048000pt;}
.ls27{letter-spacing:121.706667pt;}
.ls2a{letter-spacing:126.186667pt;}
.ls26{letter-spacing:139.626667pt;}
.ls19{letter-spacing:258.026667pt;}
.lsa{letter-spacing:1015.306667pt;}
.lsb{letter-spacing:1076.746667pt;}
.wsd{word-spacing:-64.000000pt;}
.ws15{word-spacing:-17.280000pt;}
.ws14{word-spacing:-16.768000pt;}
.ws21{word-spacing:-16.704000pt;}
.wsf{word-spacing:-16.640000pt;}
.ws20{word-spacing:-16.512000pt;}
.ws17{word-spacing:-16.448000pt;}
.ws16{word-spacing:-16.384000pt;}
.ws1e{word-spacing:-16.256000pt;}
.ws1d{word-spacing:-16.192000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws9{word-spacing:-16.064000pt;}
.wsb{word-spacing:-16.000000pt;}
.ws13{word-spacing:-15.936000pt;}
.ws6{word-spacing:-15.872000pt;}
.wsc{word-spacing:-15.808000pt;}
.ws10{word-spacing:-15.744000pt;}
.ws11{word-spacing:-15.488000pt;}
.ws8{word-spacing:-15.360000pt;}
.ws12{word-spacing:-15.168000pt;}
.ws3{word-spacing:-14.991467pt;}
.ws1b{word-spacing:-14.720000pt;}
.ws1f{word-spacing:-14.656000pt;}
.ws1c{word-spacing:-14.592000pt;}
.ws19{word-spacing:-14.528000pt;}
.ws1a{word-spacing:-14.464000pt;}
.ws0{word-spacing:-14.448533pt;}
.ws1{word-spacing:-14.080000pt;}
.ws5{word-spacing:-13.534613pt;}
.ws2{word-spacing:-13.440000pt;}
.ws4{word-spacing:-13.306880pt;}
.ws18{word-spacing:-10.959467pt;}
.wsa{word-spacing:-10.679680pt;}
.wse{word-spacing:0.000000pt;}
._1d{margin-left:-4.643413pt;}
._2{margin-left:-3.668267pt;}
._1{margin-left:-2.394880pt;}
._0{margin-left:-1.008427pt;}
._3{width:1.168640pt;}
._7{width:2.374187pt;}
._5{width:3.392000pt;}
._6{width:4.303147pt;}
._b{width:5.312000pt;}
._c{width:6.272000pt;}
._9{width:7.528320pt;}
._8{width:8.599680pt;}
._13{width:9.505280pt;}
._a{width:10.560000pt;}
._e{width:11.520000pt;}
._12{width:12.794027pt;}
._d{width:13.930667pt;}
._4{width:14.912000pt;}
._f{width:17.152000pt;}
._1b{width:18.143787pt;}
._10{width:19.136000pt;}
._14{width:20.463360pt;}
._16{width:21.869013pt;}
._1c{width:23.274880pt;}
._11{width:24.699093pt;}
._25{width:25.728000pt;}
._24{width:26.624000pt;}
._17{width:27.904000pt;}
._18{width:29.305813pt;}
._15{width:34.560000pt;}
._19{width:36.608000pt;}
._1a{width:37.654187pt;}
._21{width:45.696000pt;}
._22{width:46.784000pt;}
._23{width:47.872000pt;}
._1f{width:371.735040pt;}
._1e{width:372.739840pt;}
._20{width:1262.842453pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:4.160000pt;}
.yc7{bottom:4.320000pt;}
.y7{bottom:4.466667pt;}
.yc5{bottom:4.480000pt;}
.ye3{bottom:4.493333pt;}
.yc2{bottom:4.640000pt;}
.yc0{bottom:4.653333pt;}
.yf6{bottom:4.800000pt;}
.ye9{bottom:5.266667pt;}
.y3{bottom:5.280000pt;}
.yeb{bottom:6.066667pt;}
.yf4{bottom:6.080000pt;}
.ye7{bottom:6.386667pt;}
.yf8{bottom:6.426667pt;}
.ye5{bottom:7.066667pt;}
.yd8{bottom:8.960000pt;}
.yda{bottom:9.120000pt;}
.yad{bottom:9.760000pt;}
.yaf{bottom:10.560000pt;}
.yb1{bottom:10.880000pt;}
.yd6{bottom:12.160000pt;}
.yb3{bottom:13.120000pt;}
.yab{bottom:14.400000pt;}
.yd4{bottom:18.720000pt;}
.ybe{bottom:20.640000pt;}
.y2{bottom:21.600000pt;}
.yd3{bottom:35.680000pt;}
.yd2{bottom:35.840000pt;}
.y6{bottom:161.160000pt;}
.y9{bottom:163.386667pt;}
.y2e{bottom:187.866667pt;}
.yed{bottom:192.666667pt;}
.y84{bottom:198.586667pt;}
.y58{bottom:198.746667pt;}
.y5c{bottom:198.906667pt;}
.y114{bottom:199.546667pt;}
.yb9{bottom:205.626667pt;}
.y2d{bottom:206.266667pt;}
.yec{bottom:211.066667pt;}
.y83{bottom:216.986667pt;}
.y57{bottom:217.146667pt;}
.y116{bottom:217.306667pt;}
.y113{bottom:217.946667pt;}
.yb8{bottom:224.026667pt;}
.y2c{bottom:224.666667pt;}
.yea{bottom:226.120000pt;}
.y9e{bottom:234.906667pt;}
.y5b{bottom:235.066667pt;}
.y82{bottom:235.386667pt;}
.y69{bottom:235.546667pt;}
.y115{bottom:235.706667pt;}
.y112{bottom:236.346667pt;}
.yb7{bottom:242.426667pt;}
.y2b{bottom:243.066667pt;}
.ye8{bottom:244.840000pt;}
.y81{bottom:253.786667pt;}
.y56{bottom:253.946667pt;}
.y5a{bottom:254.106667pt;}
.y111{bottom:254.746667pt;}
.yb6{bottom:260.826667pt;}
.y2a{bottom:261.466667pt;}
.ye6{bottom:263.560000pt;}
.y80{bottom:272.186667pt;}
.y68{bottom:272.346667pt;}
.y55{bottom:272.506667pt;}
.y110{bottom:273.146667pt;}
.yb5{bottom:279.226667pt;}
.y29{bottom:279.866667pt;}
.ye4{bottom:284.040000pt;}
.y7f{bottom:290.626667pt;}
.y67{bottom:290.786667pt;}
.y54{bottom:290.946667pt;}
.y10f{bottom:291.586667pt;}
.yb4{bottom:297.666667pt;}
.y28{bottom:298.146667pt;}
.ye2{bottom:304.853333pt;}
.ye1{bottom:304.866667pt;}
.y7e{bottom:309.026667pt;}
.y66{bottom:309.186667pt;}
.y53{bottom:309.346667pt;}
.y10e{bottom:309.986667pt;}
.y7d{bottom:327.426667pt;}
.y65{bottom:327.586667pt;}
.y52{bottom:327.746667pt;}
.y10d{bottom:328.386667pt;}
.yb2{bottom:330.786667pt;}
.y27{bottom:342.786667pt;}
.ye0{bottom:343.106667pt;}
.y7c{bottom:345.826667pt;}
.y64{bottom:345.986667pt;}
.y51{bottom:346.146667pt;}
.y10c{bottom:346.786667pt;}
.y26{bottom:361.666667pt;}
.ydf{bottom:361.826667pt;}
.yb0{bottom:361.986667pt;}
.y7b{bottom:364.226667pt;}
.y63{bottom:364.386667pt;}
.y50{bottom:364.546667pt;}
.y10b{bottom:365.186667pt;}
.yde{bottom:380.226667pt;}
.y7a{bottom:382.626667pt;}
.y62{bottom:382.786667pt;}
.y4f{bottom:382.946667pt;}
.y10a{bottom:383.586667pt;}
.yae{bottom:390.466667pt;}
.y25{bottom:398.466667pt;}
.ydd{bottom:398.626667pt;}
.y79{bottom:400.706667pt;}
.y9d{bottom:401.026667pt;}
.y61{bottom:401.186667pt;}
.y4e{bottom:401.346667pt;}
.y109{bottom:401.986667pt;}
.ydc{bottom:417.026667pt;}
.y24{bottom:417.186667pt;}
.yac{bottom:417.826667pt;}
.y9c{bottom:419.426667pt;}
.y60{bottom:419.586667pt;}
.y4d{bottom:419.746667pt;}
.y108{bottom:420.386667pt;}
.ydb{bottom:432.066667pt;}
.y23{bottom:435.586667pt;}
.y9b{bottom:437.826667pt;}
.y5f{bottom:437.986667pt;}
.y4c{bottom:438.146667pt;}
.y107{bottom:438.786667pt;}
.yaa{bottom:441.346667pt;}
.y22{bottom:453.986667pt;}
.y11a{bottom:456.226667pt;}
.y5e{bottom:456.386667pt;}
.y4b{bottom:456.546667pt;}
.y106{bottom:457.186667pt;}
.yd9{bottom:458.946667pt;}
.y21{bottom:472.386667pt;}
.ya9{bottom:474.146667pt;}
.y9a{bottom:474.306667pt;}
.y119{bottom:474.626667pt;}
.y4a{bottom:474.786667pt;}
.y105{bottom:475.586667pt;}
.yd7{bottom:483.906667pt;}
.y20{bottom:490.786667pt;}
.y8a{bottom:492.706667pt;}
.y99{bottom:493.026667pt;}
.y49{bottom:493.186667pt;}
.y104{bottom:493.986667pt;}
.y1f{bottom:509.213333pt;}
.ya8{bottom:511.133333pt;}
.y98{bottom:511.453333pt;}
.y48{bottom:511.613333pt;}
.y89{bottom:511.773333pt;}
.yd5{bottom:512.093333pt;}
.y103{bottom:512.413333pt;}
.y1e{bottom:527.613333pt;}
.y97{bottom:529.853333pt;}
.y47{bottom:530.013333pt;}
.y88{bottom:530.173333pt;}
.y102{bottom:530.813333pt;}
.yd1{bottom:538.013333pt;}
.y1d{bottom:546.013333pt;}
.y96{bottom:548.253333pt;}
.y46{bottom:548.413333pt;}
.y87{bottom:548.573333pt;}
.y101{bottom:549.213333pt;}
.y1c{bottom:564.413333pt;}
.y95{bottom:566.653333pt;}
.y45{bottom:566.813333pt;}
.y86{bottom:566.973333pt;}
.y100{bottom:567.133333pt;}
.y1b{bottom:582.813333pt;}
.y94{bottom:585.053333pt;}
.y44{bottom:585.213333pt;}
.y85{bottom:585.373333pt;}
.yff{bottom:586.173333pt;}
.yd0{bottom:591.933333pt;}
.y1a{bottom:601.213333pt;}
.y5d{bottom:603.133333pt;}
.y93{bottom:603.453333pt;}
.y59{bottom:603.613333pt;}
.y43{bottom:603.773333pt;}
.yfe{bottom:604.573333pt;}
.ycf{bottom:610.333333pt;}
.y19{bottom:619.613333pt;}
.ya7{bottom:621.373333pt;}
.y118{bottom:621.533333pt;}
.y92{bottom:621.853333pt;}
.y78{bottom:622.013333pt;}
.y42{bottom:622.173333pt;}
.yfd{bottom:622.973333pt;}
.yce{bottom:628.573333pt;}
.y18{bottom:638.013333pt;}
.y91{bottom:639.933333pt;}
.ya6{bottom:640.253333pt;}
.y77{bottom:640.413333pt;}
.y41{bottom:640.573333pt;}
.yfc{bottom:641.373333pt;}
.ycd{bottom:647.773333pt;}
.y17{bottom:656.413333pt;}
.ya5{bottom:658.653333pt;}
.y76{bottom:658.813333pt;}
.y40{bottom:658.973333pt;}
.yfb{bottom:659.773333pt;}
.ycc{bottom:666.173333pt;}
.y16{bottom:674.813333pt;}
.y8b{bottom:676.733333pt;}
.ya4{bottom:677.053333pt;}
.y75{bottom:677.213333pt;}
.y3f{bottom:677.373333pt;}
.yfa{bottom:678.013333pt;}
.ycb{bottom:684.573333pt;}
.y15{bottom:693.213333pt;}
.ya3{bottom:695.453333pt;}
.y74{bottom:695.613333pt;}
.y3e{bottom:695.773333pt;}
.yca{bottom:702.973333pt;}
.yf9{bottom:710.813333pt;}
.y14{bottom:711.453333pt;}
.ya2{bottom:713.533333pt;}
.y73{bottom:714.013333pt;}
.y3d{bottom:714.173333pt;}
.yc9{bottom:721.373333pt;}
.yf7{bottom:728.426667pt;}
.y72{bottom:732.453333pt;}
.y3c{bottom:732.613333pt;}
.yc8{bottom:739.813333pt;}
.yf5{bottom:747.173333pt;}
.y13{bottom:748.133333pt;}
.y90{bottom:750.693333pt;}
.y71{bottom:750.853333pt;}
.y3b{bottom:751.013333pt;}
.yf3{bottom:765.413333pt;}
.y12{bottom:766.533333pt;}
.y8f{bottom:768.773333pt;}
.y117{bottom:768.933333pt;}
.ya1{bottom:769.093333pt;}
.y70{bottom:769.253333pt;}
.y3a{bottom:769.413333pt;}
.yc6{bottom:772.453333pt;}
.y11{bottom:784.773333pt;}
.yf2{bottom:785.240000pt;}
.yf1{bottom:785.253333pt;}
.ya0{bottom:787.173333pt;}
.y6f{bottom:787.653333pt;}
.y39{bottom:787.813333pt;}
.yc4{bottom:788.293333pt;}
.y10{bottom:803.013333pt;}
.yc3{bottom:805.093333pt;}
.y6e{bottom:806.053333pt;}
.y38{bottom:806.213333pt;}
.yf{bottom:821.413333pt;}
.yc1{bottom:822.053333pt;}
.yf0{bottom:823.973333pt;}
.y6d{bottom:824.453333pt;}
.y37{bottom:824.613333pt;}
.ye{bottom:839.813333pt;}
.ybf{bottom:840.440000pt;}
.ybd{bottom:840.453333pt;}
.yef{bottom:842.373333pt;}
.y9f{bottom:842.533333pt;}
.y6c{bottom:842.853333pt;}
.y36{bottom:843.013333pt;}
.y6b{bottom:860.773333pt;}
.y8e{bottom:861.253333pt;}
.y35{bottom:861.413333pt;}
.yd{bottom:876.613333pt;}
.y6a{bottom:879.173333pt;}
.yee{bottom:879.493333pt;}
.y8d{bottom:879.653333pt;}
.y34{bottom:879.813333pt;}
.yc{bottom:895.013333pt;}
.ybc{bottom:897.573333pt;}
.y8c{bottom:897.733333pt;}
.y11c{bottom:898.053333pt;}
.y33{bottom:898.213333pt;}
.yb{bottom:913.413333pt;}
.ybb{bottom:915.973333pt;}
.y11b{bottom:916.453333pt;}
.y32{bottom:916.613333pt;}
.y30{bottom:921.893333pt;}
.yba{bottom:934.373333pt;}
.y31{bottom:934.853333pt;}
.ya{bottom:936.933333pt;}
.y2f{bottom:940.293333pt;}
.y1{bottom:971.040000pt;}
.y4{bottom:971.360000pt;}
.y8{bottom:1010.080000pt;}
.h1b{height:15.826667pt;}
.h1a{height:16.786667pt;}
.h19{height:16.946667pt;}
.h4{height:17.280000pt;}
.h6{height:17.440000pt;}
.h28{height:17.600000pt;}
.h18{height:17.746667pt;}
.h26{height:18.226667pt;}
.h24{height:18.706667pt;}
.h27{height:18.738667pt;}
.h25{height:19.186667pt;}
.h22{height:20.178667pt;}
.h23{height:20.466667pt;}
.h11{height:22.866667pt;}
.h1f{height:24.946667pt;}
.h1d{height:25.280000pt;}
.hf{height:25.906667pt;}
.h20{height:26.866667pt;}
.h12{height:27.346667pt;}
.h1e{height:28.186667pt;}
.h13{height:28.466667pt;}
.h14{height:31.186667pt;}
.h15{height:33.746667pt;}
.h16{height:33.752000pt;}
.h21{height:33.756000pt;}
.h17{height:33.760000pt;}
.h2{height:34.080000pt;}
.h5{height:44.505000pt;}
.hc{height:44.687500pt;}
.h1c{height:48.960000pt;}
.h7{height:52.134375pt;}
.h3{height:57.787500pt;}
.h10{height:59.340000pt;}
.ha{height:62.781250pt;}
.h9{height:62.812500pt;}
.h8{height:64.500000pt;}
.hd{height:65.781915pt;}
.hb{height:66.383438pt;}
.he{height:66.404375pt;}
.h1{height:1058.666667pt;}
.h0{height:1058.720000pt;}
.w2{width:59.200000pt;}
.we{width:64.786667pt;}
.w3{width:74.720000pt;}
.w1b{width:75.058667pt;}
.w12{width:76.640000pt;}
.w24{width:77.138667pt;}
.w10{width:78.072000pt;}
.w1f{width:82.392000pt;}
.wf{width:85.298667pt;}
.w9{width:85.300000pt;}
.w16{width:85.752000pt;}
.w14{width:86.546667pt;}
.w29{width:87.346667pt;}
.w25{width:87.352000pt;}
.w26{width:87.360000pt;}
.w11{width:90.738667pt;}
.w13{width:91.712000pt;}
.wa{width:93.280000pt;}
.w1c{width:96.306667pt;}
.wd{width:101.778667pt;}
.w8{width:102.232000pt;}
.w1e{width:104.786667pt;}
.w19{width:104.796000pt;}
.w1a{width:104.800000pt;}
.w18{width:104.832000pt;}
.w27{width:106.578667pt;}
.w20{width:106.580000pt;}
.w28{width:107.506667pt;}
.w22{width:107.516000pt;}
.w23{width:107.520000pt;}
.w21{width:108.992000pt;}
.w1d{width:112.658667pt;}
.w17{width:112.660000pt;}
.w15{width:116.178667pt;}
.wb{width:117.152000pt;}
.wc{width:117.160000pt;}
.w7{width:178.573333pt;}
.w6{width:192.506667pt;}
.w5{width:203.538667pt;}
.w4{width:269.626667pt;}
.w1{width:322.146667pt;}
.w0{width:756.000000pt;}
.x0{left:0.000000pt;}
.x5{left:1.293333pt;}
.x2{left:4.306667pt;}
.x1d{left:7.672000pt;}
.x2a{left:9.760000pt;}
.x4b{left:12.952000pt;}
.x3a{left:14.080000pt;}
.x20{left:15.040000pt;}
.x45{left:16.160000pt;}
.x4d{left:17.112000pt;}
.x3d{left:18.080000pt;}
.x2f{left:19.546667pt;}
.x2d{left:20.626667pt;}
.x28{left:22.066667pt;}
.x4e{left:27.352000pt;}
.x25{left:32.000000pt;}
.x35{left:36.320000pt;}
.x4a{left:38.106667pt;}
.x23{left:39.066667pt;}
.x40{left:40.800000pt;}
.x42{left:42.560000pt;}
.x19{left:44.346667pt;}
.x36{left:46.226667pt;}
.x17{left:47.200000pt;}
.x32{left:49.426667pt;}
.x33{left:52.026667pt;}
.x37{left:53.786667pt;}
.x16{left:55.666667pt;}
.x31{left:57.306667pt;}
.x26{left:63.840000pt;}
.x34{left:67.706667pt;}
.x1a{left:70.426667pt;}
.x30{left:71.386667pt;}
.x1b{left:74.106667pt;}
.x8{left:75.520000pt;}
.x3f{left:76.466667pt;}
.x49{left:78.706667pt;}
.x3e{left:80.480000pt;}
.x4c{left:82.546667pt;}
.x38{left:84.680000pt;}
.x41{left:88.346667pt;}
.x6{left:92.040000pt;}
.x9{left:95.712000pt;}
.x53{left:97.792000pt;}
.x1c{left:100.032000pt;}
.xa{left:117.952000pt;}
.x13{left:120.032000pt;}
.x52{left:124.512000pt;}
.x54{left:126.912000pt;}
.x3{left:138.266667pt;}
.xf{left:144.026667pt;}
.x15{left:148.186667pt;}
.x10{left:152.826667pt;}
.x1{left:162.600000pt;}
.x14{left:168.026667pt;}
.x39{left:170.440000pt;}
.x27{left:174.120000pt;}
.x43{left:178.440000pt;}
.x51{left:192.026667pt;}
.x1e{left:198.280000pt;}
.xc{left:251.106667pt;}
.x29{left:264.866667pt;}
.x1f{left:283.586667pt;}
.x44{left:285.026667pt;}
.xd{left:298.466667pt;}
.xe{left:299.746667pt;}
.x2b{left:341.506667pt;}
.xb{left:353.186667pt;}
.x21{left:376.866667pt;}
.x7{left:380.426667pt;}
.x3b{left:387.946667pt;}
.x46{left:394.026667pt;}
.x2c{left:433.226667pt;}
.x4f{left:443.613333pt;}
.x50{left:454.813333pt;}
.x18{left:492.106667pt;}
.x22{left:494.026667pt;}
.x47{left:501.546667pt;}
.x11{left:516.893333pt;}
.x2e{left:519.786667pt;}
.x12{left:529.853333pt;}
.x4{left:545.880000pt;}
.x3c{left:567.813333pt;}
.x48{left:578.693333pt;}
.x24{left:595.813333pt;}
}




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