
    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_d5c37529526768f4222c6c31.woff')format("woff");}.ff1{font-family:ff1;line-height:1.065430;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_433229bdfa219c6a642a9427.woff')format("woff");}.ff2{font-family:ff2;line-height:1.208008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_31a6e800f2b4783697141bc1.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_434df56b103e09950a0028ef.woff')format("woff");}.ff4{font-family:ff4;line-height:1.208008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_745cdb67d6f7450ced238457.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c491cb19aca69d42f2fe8374.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_0941fad1336dd93ab6c93e64.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_458892089b071ee4f1c74466.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_833a8ebc941dc15d24753e23.woff')format("woff");}.ff9{font-family:ff9;line-height:1.065430;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_74791b6b004a58f76da458de.woff')format("woff");}.ffa{font-family:ffa;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);}
.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);}
.v1{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls18{letter-spacing:-0.243600px;}
.ls9{letter-spacing:-0.186600px;}
.lsd{letter-spacing:-0.178800px;}
.ls6{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.ls5{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.lse{letter-spacing:-0.023400px;}
.lsf{letter-spacing:-0.014760px;}
.ls13{letter-spacing:-0.013320px;}
.ls7{letter-spacing:-0.008400px;}
.ls11{letter-spacing:-0.006120px;}
.ls3{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.038880px;}
.lsa{letter-spacing:0.045360px;}
.ls14{letter-spacing:0.060600px;}
.ls2{letter-spacing:0.065520px;}
.ls1{letter-spacing:0.090000px;}
.ls10{letter-spacing:0.116400px;}
.ls4{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.173400px;}
.ls19{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.198000px;}
.ls0{letter-spacing:13.347360px;}
.ls17{letter-spacing:47.726640px;}
.ls16{letter-spacing:80.846640px;}
.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;}
}
.wsa{word-spacing:-60.120000px;}
.ws11{word-spacing:-47.880000px;}
.ws8{word-spacing:-14.493600px;}
.ws7{word-spacing:-14.372400px;}
.ws12{word-spacing:-13.424400px;}
.ws6{word-spacing:-13.399800px;}
.wse{word-spacing:-13.265280px;}
.ws4{word-spacing:-13.226400px;}
.wsd{word-spacing:-13.220280px;}
.wsf{word-spacing:-13.213080px;}
.wsc{word-spacing:-13.211640px;}
.wsb{word-spacing:-13.203000px;}
.ws9{word-spacing:-13.047600px;}
.ws3{word-spacing:-13.039800px;}
.ws13{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws10{word-spacing:-8.614200px;}
.ws2{word-spacing:-8.553600px;}
.ws5{word-spacing:0.000000px;}
._f{margin-left:-3.847680px;}
._6{margin-left:-2.695680px;}
._0{margin-left:-1.110000px;}
._2{width:1.342164px;}
._3{width:3.334560px;}
._4{width:5.322840px;}
._d{width:6.430472px;}
._a{width:7.455000px;}
._b{width:9.178319px;}
._5{width:10.941600px;}
._e{width:12.060240px;}
._8{width:14.308800px;}
._9{width:15.794280px;}
._c{width:17.494920px;}
._11{width:18.516960px;}
._12{width:19.599120px;}
._7{width:20.922000px;}
._15{width:22.003439px;}
._17{width:23.206320px;}
._18{width:24.228360px;}
._10{width:26.933760px;}
._14{width:30.841560px;}
._13{width:31.923720px;}
._16{width:33.066000px;}
._1{width:36.571848px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.ya2{bottom:9.090000px;}
.y90{bottom:9.180000px;}
.y8e{bottom:14.400000px;}
.yaa{bottom:15.750000px;}
.y94{bottom:18.900000px;}
.y9c{bottom:18.990000px;}
.ya9{bottom:30.960000px;}
.y8d{bottom:37.890000px;}
.y9b{bottom:37.980000px;}
.ya8{bottom:46.080000px;}
.yb6{bottom:46.170000px;}
.yb5{bottom:61.290000px;}
.y2{bottom:73.380000px;}
.y28{bottom:74.190000px;}
.yb4{bottom:76.500000px;}
.y1{bottom:100.200000px;}
.y84{bottom:112.980000px;}
.yfc{bottom:118.200000px;}
.y120{bottom:122.970000px;}
.y83{bottom:130.530000px;}
.yd6{bottom:135.750000px;}
.yfb{bottom:135.840000px;}
.y11f{bottom:140.520000px;}
.y59{bottom:144.120000px;}
.y82{bottom:148.170000px;}
.y149{bottom:151.680000px;}
.yd5{bottom:153.300000px;}
.yfa{bottom:153.390000px;}
.y11e{bottom:158.070000px;}
.y160{bottom:160.320000px;}
.y58{bottom:161.670000px;}
.y81{bottom:165.720000px;}
.y148{bottom:169.320000px;}
.yd4{bottom:170.940000px;}
.y26{bottom:177.420000px;}
.y15f{bottom:177.870000px;}
.y57{bottom:179.310000px;}
.yad{bottom:180.480000px;}
.y80{bottom:183.270000px;}
.y11d{bottom:184.710000px;}
.y147{bottom:186.870000px;}
.yd3{bottom:188.490000px;}
.yf9{bottom:188.580000px;}
.y25{bottom:195.330000px;}
.y56{bottom:196.860000px;}
.y7f{bottom:200.910000px;}
.y11c{bottom:202.260000px;}
.y15e{bottom:204.510000px;}
.yf8{bottom:206.130000px;}
.y146{bottom:213.510000px;}
.y55{bottom:214.500000px;}
.yac{bottom:216.120000px;}
.y15d{bottom:222.060000px;}
.yf7{bottom:223.680000px;}
.yd2{bottom:224.130000px;}
.y11b{bottom:228.900000px;}
.yab{bottom:231.060000px;}
.y54{bottom:232.050000px;}
.y24{bottom:232.320000px;}
.y7e{bottom:236.460000px;}
.yf6{bottom:241.320000px;}
.yd1{bottom:241.680000px;}
.y11a{bottom:246.450000px;}
.y145{bottom:248.610000px;}
.y23{bottom:249.870000px;}
.y7d{bottom:254.100000px;}
.y53{bottom:258.960000px;}
.yd0{bottom:259.230000px;}
.y15c{bottom:266.250000px;}
.y22{bottom:267.510000px;}
.y7c{bottom:271.650000px;}
.y119{bottom:273.000000px;}
.ya7{bottom:274.170000px;}
.y144{bottom:275.250000px;}
.ycf{bottom:276.870000px;}
.y15b{bottom:283.800000px;}
.y21{bottom:285.060000px;}
.y7b{bottom:289.200000px;}
.y118{bottom:290.640000px;}
.y143{bottom:292.800000px;}
.yce{bottom:294.420000px;}
.yf5{bottom:294.510000px;}
.y20{bottom:302.700000px;}
.y7a{bottom:306.840000px;}
.y52{bottom:307.200000px;}
.y142{bottom:310.440000px;}
.ycd{bottom:312.060000px;}
.y117{bottom:317.190000px;}
.y51{bottom:324.840000px;}
.y15a{bottom:327.990000px;}
.yf4{bottom:329.610000px;}
.ya6{bottom:332.490000px;}
.y116{bottom:334.830000px;}
.y141{bottom:336.990000px;}
.y1f{bottom:338.250000px;}
.y50{bottom:342.390000px;}
.y159{bottom:345.540000px;}
.yf3{bottom:347.250000px;}
.ycc{bottom:347.610000px;}
.y115{bottom:352.380000px;}
.y140{bottom:354.540000px;}
.y1e{bottom:355.800000px;}
.y4f{bottom:359.940000px;}
.ya5{bottom:361.200000px;}
.yf2{bottom:364.800000px;}
.ycb{bottom:365.160000px;}
.y13f{bottom:372.180000px;}
.y1d{bottom:373.440000px;}
.y4e{bottom:377.580000px;}
.y114{bottom:378.930000px;}
.yf1{bottom:382.440000px;}
.yca{bottom:382.800000px;}
.y158{bottom:389.730000px;}
.ya4{bottom:389.910000px;}
.y1c{bottom:390.990000px;}
.y4d{bottom:395.130000px;}
.y113{bottom:396.570000px;}
.y13e{bottom:398.730000px;}
.yf0{bottom:399.990000px;}
.yc9{bottom:400.350000px;}
.y1b{bottom:408.630000px;}
.y4c{bottom:412.770000px;}
.y13d{bottom:416.370000px;}
.yef{bottom:417.540000px;}
.yc8{bottom:417.900000px;}
.ya3{bottom:418.620000px;}
.y112{bottom:423.120000px;}
.y4b{bottom:430.320000px;}
.y157{bottom:433.920000px;}
.yee{bottom:435.180000px;}
.y111{bottom:440.760000px;}
.y13c{bottom:442.920000px;}
.y1a{bottom:444.180000px;}
.ya1{bottom:447.420000px;}
.y4a{bottom:447.870000px;}
.yed{bottom:452.730000px;}
.yc7{bottom:453.540000px;}
.y13b{bottom:460.470000px;}
.y19{bottom:461.730000px;}
.y49{bottom:465.510000px;}
.y79{bottom:465.870000px;}
.y110{bottom:467.310000px;}
.yec{bottom:470.400000px;}
.yc6{bottom:471.120000px;}
.ya0{bottom:476.160000px;}
.y156{bottom:478.140000px;}
.y16c{bottom:478.500000px;}
.y18{bottom:479.400000px;}
.y78{bottom:483.540000px;}
.y10f{bottom:484.890000px;}
.y13a{bottom:487.140000px;}
.yeb{bottom:487.950000px;}
.yc5{bottom:488.760000px;}
.y16b{bottom:496.140000px;}
.y17{bottom:496.950000px;}
.y48{bottom:501.090000px;}
.y10e{bottom:502.530000px;}
.y139{bottom:504.690000px;}
.y9f{bottom:504.870000px;}
.yea{bottom:505.500000px;}
.yc4{bottom:506.310000px;}
.y16a{bottom:513.690000px;}
.y16{bottom:514.590000px;}
.y47{bottom:518.730000px;}
.y155{bottom:522.330000px;}
.ye9{bottom:523.140000px;}
.yc3{bottom:523.860000px;}
.y10d{bottom:529.080000px;}
.y138{bottom:531.330000px;}
.y15{bottom:532.140000px;}
.y9e{bottom:533.580000px;}
.y46{bottom:536.280000px;}
.y169{bottom:540.330000px;}
.ye8{bottom:540.690000px;}
.y10c{bottom:546.630000px;}
.y137{bottom:548.880000px;}
.y45{bottom:553.830000px;}
.y77{bottom:554.280000px;}
.y168{bottom:557.880000px;}
.ye7{bottom:558.330000px;}
.yc2{bottom:559.500000px;}
.y9d{bottom:562.290000px;}
.y154{bottom:566.430000px;}
.y14{bottom:567.690000px;}
.y44{bottom:571.470000px;}
.y76{bottom:571.830000px;}
.y10b{bottom:573.540000px;}
.y136{bottom:575.430000px;}
.ye6{bottom:575.880000px;}
.yc1{bottom:577.050000px;}
.y153{bottom:584.070000px;}
.y13{bottom:585.330000px;}
.y43{bottom:589.020000px;}
.y75{bottom:589.470000px;}
.y9a{bottom:591.000000px;}
.y135{bottom:593.070000px;}
.ye5{bottom:593.430000px;}
.yc0{bottom:594.690000px;}
.y167{bottom:602.070000px;}
.y12{bottom:602.880000px;}
.y42{bottom:606.660000px;}
.y74{bottom:607.020000px;}
.y134{bottom:610.620000px;}
.ye4{bottom:611.070000px;}
.ybf{bottom:612.240000px;}
.y166{bottom:619.620000px;}
.y99{bottom:619.800000px;}
.y10a{bottom:621.870000px;}
.y41{bottom:624.210000px;}
.y73{bottom:624.660000px;}
.y152{bottom:628.260000px;}
.ye3{bottom:628.620000px;}
.y11{bottom:629.790000px;}
.y133{bottom:637.260000px;}
.y40{bottom:641.760000px;}
.y165{bottom:646.260000px;}
.y98{bottom:648.510000px;}
.y109{bottom:648.780000px;}
.y132{bottom:654.810000px;}
.y3f{bottom:659.400000px;}
.y72{bottom:660.210000px;}
.y164{bottom:663.810000px;}
.ye2{bottom:664.260000px;}
.ybe{bottom:665.430000px;}
.y151{bottom:672.360000px;}
.y97{bottom:677.220000px;}
.y71{bottom:677.760000px;}
.y10{bottom:678.030000px;}
.y131{bottom:681.360000px;}
.ye1{bottom:681.810000px;}
.ybd{bottom:682.980000px;}
.y108{bottom:685.770000px;}
.y150{bottom:690.000000px;}
.y3e{bottom:694.950000px;}
.y70{bottom:695.400000px;}
.y130{bottom:699.000000px;}
.ye0{bottom:699.360000px;}
.ybc{bottom:700.620000px;}
.y107{bottom:703.410000px;}
.y96{bottom:705.930000px;}
.y163{bottom:708.000000px;}
.y3d{bottom:712.590000px;}
.y6f{bottom:712.950000px;}
.yf{bottom:713.850000px;}
.y14f{bottom:716.550000px;}
.ydf{bottom:717.000000px;}
.ybb{bottom:718.170000px;}
.y106{bottom:720.960000px;}
.y12f{bottom:725.550000px;}
.y3c{bottom:730.140000px;}
.y6e{bottom:730.590000px;}
.y14e{bottom:734.190000px;}
.yde{bottom:734.550000px;}
.y95{bottom:734.640000px;}
.yba{bottom:735.720000px;}
.y12e{bottom:743.190000px;}
.y3b{bottom:747.690000px;}
.y105{bottom:747.870000px;}
.ye{bottom:749.850000px;}
.ydd{bottom:752.190000px;}
.yb9{bottom:753.360000px;}
.y6d{bottom:757.500000px;}
.y12d{bottom:760.740000px;}
.y93{bottom:763.440000px;}
.y3a{bottom:765.330000px;}
.y162{bottom:769.740000px;}
.y14d{bottom:778.290000px;}
.yb8{bottom:780.270000px;}
.y39{bottom:782.880000px;}
.y104{bottom:784.860000px;}
.yd{bottom:785.850000px;}
.y12c{bottom:787.290000px;}
.ydc{bottom:787.740000px;}
.y92{bottom:792.150000px;}
.y38{bottom:800.520000px;}
.y12b{bottom:804.930000px;}
.ydb{bottom:805.290000px;}
.y6c{bottom:805.740000px;}
.yc{bottom:807.630000px;}
.y103{bottom:811.770000px;}
.y161{bottom:813.930000px;}
.y91{bottom:820.860000px;}
.yb{bottom:821.850000px;}
.y14c{bottom:822.480000px;}
.yda{bottom:822.930000px;}
.y6b{bottom:823.290000px;}
.yb7{bottom:825.900000px;}
.y12a{bottom:831.480000px;}
.y37{bottom:836.070000px;}
.yd9{bottom:840.480000px;}
.y6a{bottom:840.930000px;}
.ya{bottom:843.630000px;}
.y102{bottom:848.850000px;}
.y129{bottom:849.030000px;}
.y8c{bottom:849.570000px;}
.y36{bottom:853.620000px;}
.yd8{bottom:858.030000px;}
.y69{bottom:858.480000px;}
.y9{bottom:861.630000px;}
.y128{bottom:866.670000px;}
.yb3{bottom:869.010000px;}
.y35{bottom:871.260000px;}
.yd7{bottom:875.670000px;}
.y101{bottom:875.760000px;}
.y8{bottom:875.850000px;}
.y68{bottom:876.030000px;}
.y8f{bottom:878.280000px;}
.y14b{bottom:884.220000px;}
.y34{bottom:888.810000px;}
.y127{bottom:893.220000px;}
.y67{bottom:893.670000px;}
.y7{bottom:897.630000px;}
.y126{bottom:910.860000px;}
.y66{bottom:911.220000px;}
.y100{bottom:912.750000px;}
.y33{bottom:924.450000px;}
.y8b{bottom:928.410000px;}
.y65{bottom:928.860000px;}
.y6{bottom:929.940000px;}
.y125{bottom:937.410000px;}
.y32{bottom:942.000000px;}
.y8a{bottom:945.960000px;}
.y64{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.y124{bottom:954.960000px;}
.yb2{bottom:957.660000px;}
.y31{bottom:959.550000px;}
.y63{bottom:963.960000px;}
.y123{bottom:972.600000px;}
.y30{bottom:977.190000px;}
.y62{bottom:981.600000px;}
.yb1{bottom:986.370000px;}
.y4{bottom:987.630000px;}
.y14a{bottom:990.150000px;}
.yff{bottom:994.740000px;}
.y61{bottom:999.150000px;}
.y3{bottom:1012.320000px;}
.y2f{bottom:1012.770000px;}
.yb0{bottom:1015.200000px;}
.y89{bottom:1016.820000px;}
.yfe{bottom:1029.960000px;}
.y2e{bottom:1030.320000px;}
.y88{bottom:1034.370000px;}
.y60{bottom:1034.820000px;}
.yae{bottom:1043.910000px;}
.y2d{bottom:1047.960000px;}
.y87{bottom:1051.920000px;}
.y5f{bottom:1052.370000px;}
.yfd{bottom:1056.870000px;}
.y122{bottom:1060.920000px;}
.y2c{bottom:1065.510000px;}
.y86{bottom:1069.560000px;}
.y5e{bottom:1069.920000px;}
.yaf{bottom:1072.620000px;}
.y121{bottom:1078.560000px;}
.y2b{bottom:1083.150000px;}
.y85{bottom:1087.110000px;}
.y5d{bottom:1087.560000px;}
.y2a{bottom:1100.700000px;}
.y5c{bottom:1105.110000px;}
.y5b{bottom:1122.750000px;}
.y29{bottom:1127.610000px;}
.y5a{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.h15{height:27.900000px;}
.hf{height:27.930000px;}
.hd{height:27.990000px;}
.h16{height:28.020000px;}
.h6{height:35.782383px;}
.h2{height:38.326289px;}
.h13{height:42.390000px;}
.h3{height:44.538574px;}
.h12{height:47.389043px;}
.h7{height:50.902383px;}
.h9{height:55.779258px;}
.hc{height:56.700000px;}
.h10{height:56.730000px;}
.he{height:56.790000px;}
.h11{height:57.510000px;}
.h8{height:59.503535px;}
.hb{height:61.793886px;}
.h14{height:62.585859px;}
.h5{height:65.204473px;}
.ha{height:68.582109px;}
.h4{height:83.019902px;}
.h17{height:87.930000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w10{width:28.980000px;}
.w8{width:82.710000px;}
.w11{width:92.790000px;}
.w6{width:109.740000px;}
.w3{width:115.590000px;}
.wf{width:126.930000px;}
.wd{width:129.900000px;}
.w4{width:138.690000px;}
.w5{width:141.930000px;}
.w7{width:163.350000px;}
.w12{width:186.300000px;}
.we{width:187.110000px;}
.w14{width:294.660000px;}
.wb{width:326.370000px;}
.wc{width:428.610000px;}
.w13{width:460.320000px;}
.w9{width:639.300000px;}
.wa{width:755.700000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1a{left:14.850000px;}
.xb{left:17.190000px;}
.x19{left:20.430000px;}
.x1b{left:21.600000px;}
.xd{left:25.200000px;}
.xa{left:31.230000px;}
.x1c{left:32.310000px;}
.x10{left:39.600000px;}
.x20{left:49.230000px;}
.x11{left:66.150000px;}
.x1{left:68.040000px;}
.xe{left:109.110000px;}
.x21{left:111.239987px;}
.x12{left:122.039987px;}
.x1e{left:152.940000px;}
.x5{left:185.160000px;}
.x2{left:192.719987px;}
.x13{left:199.380000px;}
.xc{left:215.670000px;}
.x1d{left:249.150000px;}
.x6{left:324.570000px;}
.x14{left:387.300000px;}
.xf{left:395.850000px;}
.x7{left:467.220000px;}
.x15{left:514.950000px;}
.x1f{left:529.800000px;}
.x16{left:544.650000px;}
.x8{left:577.680000px;}
.x17{left:638.160000px;}
.x18{left:731.670000px;}
.x9{left:741.750000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls18{letter-spacing:-0.216533pt;}
.ls9{letter-spacing:-0.165867pt;}
.lsd{letter-spacing:-0.158933pt;}
.ls6{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls5{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.lse{letter-spacing:-0.020800pt;}
.lsf{letter-spacing:-0.013120pt;}
.ls13{letter-spacing:-0.011840pt;}
.ls7{letter-spacing:-0.007467pt;}
.ls11{letter-spacing:-0.005440pt;}
.ls3{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.034560pt;}
.lsa{letter-spacing:0.040320pt;}
.ls14{letter-spacing:0.053867pt;}
.ls2{letter-spacing:0.058240pt;}
.ls1{letter-spacing:0.080000pt;}
.ls10{letter-spacing:0.103467pt;}
.ls4{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.154133pt;}
.ls19{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.176000pt;}
.ls0{letter-spacing:11.864320pt;}
.ls17{letter-spacing:42.423680pt;}
.ls16{letter-spacing:71.863680pt;}
.wsa{word-spacing:-53.440000pt;}
.ws11{word-spacing:-42.560000pt;}
.ws8{word-spacing:-12.883200pt;}
.ws7{word-spacing:-12.775467pt;}
.ws12{word-spacing:-11.932800pt;}
.ws6{word-spacing:-11.910933pt;}
.wse{word-spacing:-11.791360pt;}
.ws4{word-spacing:-11.756800pt;}
.wsd{word-spacing:-11.751360pt;}
.wsf{word-spacing:-11.744960pt;}
.wsc{word-spacing:-11.743680pt;}
.wsb{word-spacing:-11.736000pt;}
.ws9{word-spacing:-11.597867pt;}
.ws3{word-spacing:-11.590933pt;}
.ws13{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws10{word-spacing:-7.657067pt;}
.ws2{word-spacing:-7.603200pt;}
.ws5{word-spacing:0.000000pt;}
._f{margin-left:-3.420160pt;}
._6{margin-left:-2.396160pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.193035pt;}
._3{width:2.964053pt;}
._4{width:4.731414pt;}
._d{width:5.715975pt;}
._a{width:6.626667pt;}
._b{width:8.158506pt;}
._5{width:9.725866pt;}
._e{width:10.720213pt;}
._8{width:12.718934pt;}
._9{width:14.039360pt;}
._c{width:15.551040pt;}
._11{width:16.459520pt;}
._12{width:17.421440pt;}
._7{width:18.597334pt;}
._15{width:19.558612pt;}
._17{width:20.627840pt;}
._18{width:21.536320pt;}
._10{width:23.941120pt;}
._14{width:27.414720pt;}
._13{width:28.376640pt;}
._16{width:29.392000pt;}
._1{width:32.508309pt;}
.fs0{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.ya2{bottom:8.080000pt;}
.y90{bottom:8.160000pt;}
.y8e{bottom:12.800000pt;}
.yaa{bottom:14.000000pt;}
.y94{bottom:16.800000pt;}
.y9c{bottom:16.880000pt;}
.ya9{bottom:27.520000pt;}
.y8d{bottom:33.680000pt;}
.y9b{bottom:33.760000pt;}
.ya8{bottom:40.960000pt;}
.yb6{bottom:41.040000pt;}
.yb5{bottom:54.480000pt;}
.y2{bottom:65.226667pt;}
.y28{bottom:65.946667pt;}
.yb4{bottom:68.000000pt;}
.y1{bottom:89.066667pt;}
.y84{bottom:100.426667pt;}
.yfc{bottom:105.066667pt;}
.y120{bottom:109.306667pt;}
.y83{bottom:116.026667pt;}
.yd6{bottom:120.666667pt;}
.yfb{bottom:120.746667pt;}
.y11f{bottom:124.906667pt;}
.y59{bottom:128.106667pt;}
.y82{bottom:131.706667pt;}
.y149{bottom:134.826667pt;}
.yd5{bottom:136.266667pt;}
.yfa{bottom:136.346667pt;}
.y11e{bottom:140.506667pt;}
.y160{bottom:142.506667pt;}
.y58{bottom:143.706667pt;}
.y81{bottom:147.306667pt;}
.y148{bottom:150.506667pt;}
.yd4{bottom:151.946667pt;}
.y26{bottom:157.706667pt;}
.y15f{bottom:158.106667pt;}
.y57{bottom:159.386667pt;}
.yad{bottom:160.426667pt;}
.y80{bottom:162.906667pt;}
.y11d{bottom:164.186667pt;}
.y147{bottom:166.106667pt;}
.yd3{bottom:167.546667pt;}
.yf9{bottom:167.626667pt;}
.y25{bottom:173.626667pt;}
.y56{bottom:174.986667pt;}
.y7f{bottom:178.586667pt;}
.y11c{bottom:179.786667pt;}
.y15e{bottom:181.786667pt;}
.yf8{bottom:183.226667pt;}
.y146{bottom:189.786667pt;}
.y55{bottom:190.666667pt;}
.yac{bottom:192.106667pt;}
.y15d{bottom:197.386667pt;}
.yf7{bottom:198.826667pt;}
.yd2{bottom:199.226667pt;}
.y11b{bottom:203.466667pt;}
.yab{bottom:205.386667pt;}
.y54{bottom:206.266667pt;}
.y24{bottom:206.506667pt;}
.y7e{bottom:210.186667pt;}
.yf6{bottom:214.506667pt;}
.yd1{bottom:214.826667pt;}
.y11a{bottom:219.066667pt;}
.y145{bottom:220.986667pt;}
.y23{bottom:222.106667pt;}
.y7d{bottom:225.866667pt;}
.y53{bottom:230.186667pt;}
.yd0{bottom:230.426667pt;}
.y15c{bottom:236.666667pt;}
.y22{bottom:237.786667pt;}
.y7c{bottom:241.466667pt;}
.y119{bottom:242.666667pt;}
.ya7{bottom:243.706667pt;}
.y144{bottom:244.666667pt;}
.ycf{bottom:246.106667pt;}
.y15b{bottom:252.266667pt;}
.y21{bottom:253.386667pt;}
.y7b{bottom:257.066667pt;}
.y118{bottom:258.346667pt;}
.y143{bottom:260.266667pt;}
.yce{bottom:261.706667pt;}
.yf5{bottom:261.786667pt;}
.y20{bottom:269.066667pt;}
.y7a{bottom:272.746667pt;}
.y52{bottom:273.066667pt;}
.y142{bottom:275.946667pt;}
.ycd{bottom:277.386667pt;}
.y117{bottom:281.946667pt;}
.y51{bottom:288.746667pt;}
.y15a{bottom:291.546667pt;}
.yf4{bottom:292.986667pt;}
.ya6{bottom:295.546667pt;}
.y116{bottom:297.626667pt;}
.y141{bottom:299.546667pt;}
.y1f{bottom:300.666667pt;}
.y50{bottom:304.346667pt;}
.y159{bottom:307.146667pt;}
.yf3{bottom:308.666667pt;}
.ycc{bottom:308.986667pt;}
.y115{bottom:313.226667pt;}
.y140{bottom:315.146667pt;}
.y1e{bottom:316.266667pt;}
.y4f{bottom:319.946667pt;}
.ya5{bottom:321.066667pt;}
.yf2{bottom:324.266667pt;}
.ycb{bottom:324.586667pt;}
.y13f{bottom:330.826667pt;}
.y1d{bottom:331.946667pt;}
.y4e{bottom:335.626667pt;}
.y114{bottom:336.826667pt;}
.yf1{bottom:339.946667pt;}
.yca{bottom:340.266667pt;}
.y158{bottom:346.426667pt;}
.ya4{bottom:346.586667pt;}
.y1c{bottom:347.546667pt;}
.y4d{bottom:351.226667pt;}
.y113{bottom:352.506667pt;}
.y13e{bottom:354.426667pt;}
.yf0{bottom:355.546667pt;}
.yc9{bottom:355.866667pt;}
.y1b{bottom:363.226667pt;}
.y4c{bottom:366.906667pt;}
.y13d{bottom:370.106667pt;}
.yef{bottom:371.146667pt;}
.yc8{bottom:371.466667pt;}
.ya3{bottom:372.106667pt;}
.y112{bottom:376.106667pt;}
.y4b{bottom:382.506667pt;}
.y157{bottom:385.706667pt;}
.yee{bottom:386.826667pt;}
.y111{bottom:391.786667pt;}
.y13c{bottom:393.706667pt;}
.y1a{bottom:394.826667pt;}
.ya1{bottom:397.706667pt;}
.y4a{bottom:398.106667pt;}
.yed{bottom:402.426667pt;}
.yc7{bottom:403.146667pt;}
.y13b{bottom:409.306667pt;}
.y19{bottom:410.426667pt;}
.y49{bottom:413.786667pt;}
.y79{bottom:414.106667pt;}
.y110{bottom:415.386667pt;}
.yec{bottom:418.133333pt;}
.yc6{bottom:418.773333pt;}
.ya0{bottom:423.253333pt;}
.y156{bottom:425.013333pt;}
.y16c{bottom:425.333333pt;}
.y18{bottom:426.133333pt;}
.y78{bottom:429.813333pt;}
.y10f{bottom:431.013333pt;}
.y13a{bottom:433.013333pt;}
.yeb{bottom:433.733333pt;}
.yc5{bottom:434.453333pt;}
.y16b{bottom:441.013333pt;}
.y17{bottom:441.733333pt;}
.y48{bottom:445.413333pt;}
.y10e{bottom:446.693333pt;}
.y139{bottom:448.613333pt;}
.y9f{bottom:448.773333pt;}
.yea{bottom:449.333333pt;}
.yc4{bottom:450.053333pt;}
.y16a{bottom:456.613333pt;}
.y16{bottom:457.413333pt;}
.y47{bottom:461.093333pt;}
.y155{bottom:464.293333pt;}
.ye9{bottom:465.013333pt;}
.yc3{bottom:465.653333pt;}
.y10d{bottom:470.293333pt;}
.y138{bottom:472.293333pt;}
.y15{bottom:473.013333pt;}
.y9e{bottom:474.293333pt;}
.y46{bottom:476.693333pt;}
.y169{bottom:480.293333pt;}
.ye8{bottom:480.613333pt;}
.y10c{bottom:485.893333pt;}
.y137{bottom:487.893333pt;}
.y45{bottom:492.293333pt;}
.y77{bottom:492.693333pt;}
.y168{bottom:495.893333pt;}
.ye7{bottom:496.293333pt;}
.yc2{bottom:497.333333pt;}
.y9d{bottom:499.813333pt;}
.y154{bottom:503.493333pt;}
.y14{bottom:504.613333pt;}
.y44{bottom:507.973333pt;}
.y76{bottom:508.293333pt;}
.y10b{bottom:509.813333pt;}
.y136{bottom:511.493333pt;}
.ye6{bottom:511.893333pt;}
.yc1{bottom:512.933333pt;}
.y153{bottom:519.173333pt;}
.y13{bottom:520.293333pt;}
.y43{bottom:523.573333pt;}
.y75{bottom:523.973333pt;}
.y9a{bottom:525.333333pt;}
.y135{bottom:527.173333pt;}
.ye5{bottom:527.493333pt;}
.yc0{bottom:528.613333pt;}
.y167{bottom:535.173333pt;}
.y12{bottom:535.893333pt;}
.y42{bottom:539.253333pt;}
.y74{bottom:539.573333pt;}
.y134{bottom:542.773333pt;}
.ye4{bottom:543.173333pt;}
.ybf{bottom:544.213333pt;}
.y166{bottom:550.773333pt;}
.y99{bottom:550.933333pt;}
.y10a{bottom:552.773333pt;}
.y41{bottom:554.853333pt;}
.y73{bottom:555.253333pt;}
.y152{bottom:558.453333pt;}
.ye3{bottom:558.773333pt;}
.y11{bottom:559.813333pt;}
.y133{bottom:566.453333pt;}
.y40{bottom:570.453333pt;}
.y165{bottom:574.453333pt;}
.y98{bottom:576.453333pt;}
.y109{bottom:576.693333pt;}
.y132{bottom:582.053333pt;}
.y3f{bottom:586.133333pt;}
.y72{bottom:586.853333pt;}
.y164{bottom:590.053333pt;}
.ye2{bottom:590.453333pt;}
.ybe{bottom:591.493333pt;}
.y151{bottom:597.653333pt;}
.y97{bottom:601.973333pt;}
.y71{bottom:602.453333pt;}
.y10{bottom:602.693333pt;}
.y131{bottom:605.653333pt;}
.ye1{bottom:606.053333pt;}
.ybd{bottom:607.093333pt;}
.y108{bottom:609.573333pt;}
.y150{bottom:613.333333pt;}
.y3e{bottom:617.733333pt;}
.y70{bottom:618.133333pt;}
.y130{bottom:621.333333pt;}
.ye0{bottom:621.653333pt;}
.ybc{bottom:622.773333pt;}
.y107{bottom:625.253333pt;}
.y96{bottom:627.493333pt;}
.y163{bottom:629.333333pt;}
.y3d{bottom:633.413333pt;}
.y6f{bottom:633.733333pt;}
.yf{bottom:634.533333pt;}
.y14f{bottom:636.933333pt;}
.ydf{bottom:637.333333pt;}
.ybb{bottom:638.373333pt;}
.y106{bottom:640.853333pt;}
.y12f{bottom:644.933333pt;}
.y3c{bottom:649.013333pt;}
.y6e{bottom:649.413333pt;}
.y14e{bottom:652.613333pt;}
.yde{bottom:652.933333pt;}
.y95{bottom:653.013333pt;}
.yba{bottom:653.973333pt;}
.y12e{bottom:660.613333pt;}
.y3b{bottom:664.613333pt;}
.y105{bottom:664.773333pt;}
.ye{bottom:666.533333pt;}
.ydd{bottom:668.613333pt;}
.yb9{bottom:669.653333pt;}
.y6d{bottom:673.333333pt;}
.y12d{bottom:676.213333pt;}
.y93{bottom:678.613333pt;}
.y3a{bottom:680.293333pt;}
.y162{bottom:684.213333pt;}
.y14d{bottom:691.813333pt;}
.yb8{bottom:693.573333pt;}
.y39{bottom:695.893333pt;}
.y104{bottom:697.653333pt;}
.yd{bottom:698.533333pt;}
.y12c{bottom:699.813333pt;}
.ydc{bottom:700.213333pt;}
.y92{bottom:704.133333pt;}
.y38{bottom:711.573333pt;}
.y12b{bottom:715.493333pt;}
.ydb{bottom:715.813333pt;}
.y6c{bottom:716.213333pt;}
.yc{bottom:717.893333pt;}
.y103{bottom:721.573333pt;}
.y161{bottom:723.493333pt;}
.y91{bottom:729.653333pt;}
.yb{bottom:730.533333pt;}
.y14c{bottom:731.093333pt;}
.yda{bottom:731.493333pt;}
.y6b{bottom:731.813333pt;}
.yb7{bottom:734.133333pt;}
.y12a{bottom:739.093333pt;}
.y37{bottom:743.173333pt;}
.yd9{bottom:747.093333pt;}
.y6a{bottom:747.493333pt;}
.ya{bottom:749.893333pt;}
.y102{bottom:754.533333pt;}
.y129{bottom:754.693333pt;}
.y8c{bottom:755.173333pt;}
.y36{bottom:758.773333pt;}
.yd8{bottom:762.693333pt;}
.y69{bottom:763.093333pt;}
.y9{bottom:765.893333pt;}
.y128{bottom:770.373333pt;}
.yb3{bottom:772.453333pt;}
.y35{bottom:774.453333pt;}
.yd7{bottom:778.373333pt;}
.y101{bottom:778.453333pt;}
.y8{bottom:778.533333pt;}
.y68{bottom:778.693333pt;}
.y8f{bottom:780.693333pt;}
.y14b{bottom:785.973333pt;}
.y34{bottom:790.053333pt;}
.y127{bottom:793.973333pt;}
.y67{bottom:794.373333pt;}
.y7{bottom:797.893333pt;}
.y126{bottom:809.653333pt;}
.y66{bottom:809.973333pt;}
.y100{bottom:811.333333pt;}
.y33{bottom:821.733333pt;}
.y8b{bottom:825.253333pt;}
.y65{bottom:825.653333pt;}
.y6{bottom:826.613333pt;}
.y125{bottom:833.253333pt;}
.y32{bottom:837.333333pt;}
.y8a{bottom:840.853333pt;}
.y64{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.y124{bottom:848.853333pt;}
.yb2{bottom:851.253333pt;}
.y31{bottom:852.933333pt;}
.y63{bottom:856.853333pt;}
.y123{bottom:864.533333pt;}
.y30{bottom:868.613333pt;}
.y62{bottom:872.533333pt;}
.yb1{bottom:876.773333pt;}
.y4{bottom:877.893333pt;}
.y14a{bottom:880.133333pt;}
.yff{bottom:884.213333pt;}
.y61{bottom:888.133333pt;}
.y3{bottom:899.840000pt;}
.y2f{bottom:900.240000pt;}
.yb0{bottom:902.400000pt;}
.y89{bottom:903.840000pt;}
.yfe{bottom:915.520000pt;}
.y2e{bottom:915.840000pt;}
.y88{bottom:919.440000pt;}
.y60{bottom:919.840000pt;}
.yae{bottom:927.920000pt;}
.y2d{bottom:931.520000pt;}
.y87{bottom:935.040000pt;}
.y5f{bottom:935.440000pt;}
.yfd{bottom:939.440000pt;}
.y122{bottom:943.040000pt;}
.y2c{bottom:947.120000pt;}
.y86{bottom:950.720000pt;}
.y5e{bottom:951.040000pt;}
.yaf{bottom:953.440000pt;}
.y121{bottom:958.720000pt;}
.y2b{bottom:962.800000pt;}
.y85{bottom:966.320000pt;}
.y5d{bottom:966.720000pt;}
.y2a{bottom:978.400000pt;}
.y5c{bottom:982.320000pt;}
.y5b{bottom:998.000000pt;}
.y29{bottom:1002.320000pt;}
.y5a{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.h15{height:24.800000pt;}
.hf{height:24.826667pt;}
.hd{height:24.880000pt;}
.h16{height:24.906667pt;}
.h6{height:31.806563pt;}
.h2{height:34.067813pt;}
.h13{height:37.680000pt;}
.h3{height:39.589844pt;}
.h12{height:42.123594pt;}
.h7{height:45.246562pt;}
.h9{height:49.581562pt;}
.hc{height:50.400000pt;}
.h10{height:50.426667pt;}
.he{height:50.480000pt;}
.h11{height:51.120000pt;}
.h8{height:52.892031pt;}
.hb{height:54.927899pt;}
.h14{height:55.631875pt;}
.h5{height:57.959531pt;}
.ha{height:60.961875pt;}
.h4{height:73.795469pt;}
.h17{height:78.160000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w10{width:25.760000pt;}
.w8{width:73.520000pt;}
.w11{width:82.480000pt;}
.w6{width:97.546667pt;}
.w3{width:102.746667pt;}
.wf{width:112.826667pt;}
.wd{width:115.466667pt;}
.w4{width:123.280000pt;}
.w5{width:126.160000pt;}
.w7{width:145.200000pt;}
.w12{width:165.600000pt;}
.we{width:166.320000pt;}
.w14{width:261.920000pt;}
.wb{width:290.106667pt;}
.wc{width:380.986667pt;}
.w13{width:409.173333pt;}
.w9{width:568.266667pt;}
.wa{width:671.733333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1a{left:13.200000pt;}
.xb{left:15.280000pt;}
.x19{left:18.160000pt;}
.x1b{left:19.200000pt;}
.xd{left:22.400000pt;}
.xa{left:27.760000pt;}
.x1c{left:28.720000pt;}
.x10{left:35.200000pt;}
.x20{left:43.760000pt;}
.x11{left:58.800000pt;}
.x1{left:60.480000pt;}
.xe{left:96.986667pt;}
.x21{left:98.879988pt;}
.x12{left:108.479988pt;}
.x1e{left:135.946667pt;}
.x5{left:164.586667pt;}
.x2{left:171.306655pt;}
.x13{left:177.226667pt;}
.xc{left:191.706667pt;}
.x1d{left:221.466667pt;}
.x6{left:288.506667pt;}
.x14{left:344.266667pt;}
.xf{left:351.866667pt;}
.x7{left:415.306667pt;}
.x15{left:457.733333pt;}
.x1f{left:470.933333pt;}
.x16{left:484.133333pt;}
.x8{left:513.493333pt;}
.x17{left:567.253333pt;}
.x18{left:650.373333pt;}
.x9{left:659.333333pt;}
.x3{left:711.413322pt;}
}




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