
    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_cfbbd1d025ab96dd8b86edf4.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e10713ee5d658781f99dcf2a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_df2cd9ec7c159b9f11fa30c3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_c4c5c2049a0844d776ce4a92.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_8587c3f98fcf8da2a5eb9546.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3c06ae206af3c92b5eeb1fe7.woff2')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_a5aca2c363502f3eaa2d344c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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_282bdc9a2ff21a40bd86ab36.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_19159814b5f9b17772440610.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.372070;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_6d2db3fcd1d49a68e2655aa4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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);}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls5{letter-spacing:-1.176000px;}
.ls15{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.259800px;}
.lsf{letter-spacing:-0.106800px;}
.ls7{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.119520px;}
.ls0{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.206400px;}
.lsd{letter-spacing:0.298800px;}
.ls3{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.828000px;}
.ls9{letter-spacing:1.080000px;}
.ls11{letter-spacing:10.224000px;}
.ls14{letter-spacing:11.610720px;}
.lsa{letter-spacing:16.506720px;}
.lsc{letter-spacing:31.104000px;}
.ls10{letter-spacing:35.424000px;}
.ls12{letter-spacing:41.850720px;}
.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;}
}
.ws9{word-spacing:-72.000000px;}
.ws8{word-spacing:-59.760000px;}
.ws2{word-spacing:-23.940000px;}
.wsa{word-spacing:-18.000000px;}
.ws1{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.384000px;}
.ws5{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.146400px;}
.ws6{word-spacing:-14.940000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._3{margin-left:-2538.735120px;}
._5{margin-left:-1461.687120px;}
._4{margin-left:-1449.231120px;}
._6{margin-left:-577.796400px;}
._7{margin-left:-8.134080px;}
._8{margin-left:-5.071920px;}
._9{margin-left:-3.908160px;}
._14{margin-left:-2.433600px;}
._1{margin-left:-1.432080px;}
._0{width:1.146960px;}
._2{width:2.202480px;}
._e{width:3.246480px;}
._a{width:4.580160px;}
._f{width:5.897760px;}
._10{width:7.111440px;}
._11{width:8.115840px;}
._c{width:9.442080px;}
._d{width:10.483200px;}
._15{width:12.240000px;}
._b{width:13.417200px;}
._12{width:16.063920px;}
._13{width:17.615520px;}
._16{width:19.543680px;}
._1c{width:20.640960px;}
._1d{width:25.593840px;}
._1e{width:27.472560px;}
._18{width:58.923360px;}
._17{width:121.966560px;}
._1a{width:162.740160px;}
._19{width:201.060000px;}
._1b{width:265.080000px;}
._1f{width:1716.540000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:2.880000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yb9{bottom:3.240000px;}
.yb7{bottom:3.420000px;}
.yba{bottom:3.600000px;}
.ybc{bottom:3.780000px;}
.y15a{bottom:6.660000px;}
.yeb{bottom:6.840000px;}
.yb6{bottom:20.700000px;}
.yee{bottom:20.880000px;}
.ydb{bottom:21.060000px;}
.yea{bottom:24.120000px;}
.y159{bottom:26.460000px;}
.yed{bottom:38.160000px;}
.ye9{bottom:41.400000px;}
.y158{bottom:46.440000px;}
.y155{bottom:50.760000px;}
.ye8{bottom:58.500000px;}
.y157{bottom:66.774000px;}
.y6{bottom:67.176000px;}
.y156{bottom:86.574000px;}
.y154{bottom:92.916000px;}
.y33{bottom:99.396000px;}
.y119{bottom:101.376000px;}
.yce{bottom:109.476000px;}
.y13a{bottom:116.856000px;}
.y69{bottom:119.016000px;}
.y32{bottom:119.376000px;}
.y118{bottom:121.356000px;}
.yfd{bottom:131.256000px;}
.y98{bottom:131.616000px;}
.y139{bottom:136.656000px;}
.ycd{bottom:138.456000px;}
.y68{bottom:138.996000px;}
.y31{bottom:139.176000px;}
.y117{bottom:141.156000px;}
.yfc{bottom:151.050000px;}
.y97{bottom:151.410000px;}
.y138{bottom:156.630000px;}
.ycc{bottom:158.250000px;}
.y67{bottom:158.790000px;}
.y30{bottom:158.970000px;}
.y116{bottom:160.590000px;}
.yfb{bottom:171.030000px;}
.y96{bottom:171.210000px;}
.y137{bottom:176.070000px;}
.y66{bottom:178.590000px;}
.y2f{bottom:178.770000px;}
.ycb{bottom:181.650000px;}
.y115{bottom:183.630000px;}
.yfa{bottom:190.830000px;}
.y95{bottom:191.010000px;}
.y136{bottom:196.230000px;}
.y65{bottom:198.390000px;}
.y2e{bottom:198.570000px;}
.yca{bottom:200.370000px;}
.y114{bottom:203.430000px;}
.y153{bottom:207.390000px;}
.yf9{bottom:210.630000px;}
.y94{bottom:210.990000px;}
.y135{bottom:216.030000px;}
.y64{bottom:218.190000px;}
.y2d{bottom:218.550000px;}
.yc9{bottom:218.910000px;}
.y113{bottom:223.050000px;}
.y152{bottom:227.190000px;}
.yf8{bottom:230.430000px;}
.y93{bottom:230.790000px;}
.y134{bottom:235.830000px;}
.yc8{bottom:237.630000px;}
.y63{bottom:238.170000px;}
.y2c{bottom:238.350000px;}
.y112{bottom:246.090000px;}
.y151{bottom:247.170000px;}
.yf7{bottom:250.230000px;}
.y92{bottom:250.590000px;}
.y133{bottom:255.810000px;}
.yc7{bottom:256.350000px;}
.y62{bottom:257.970000px;}
.y2b{bottom:258.150000px;}
.y111{bottom:265.890000px;}
.y150{bottom:266.970000px;}
.yf6{bottom:269.850000px;}
.y91{bottom:270.030000px;}
.yc6{bottom:275.070000px;}
.y132{bottom:275.250000px;}
.y61{bottom:277.770000px;}
.y2a{bottom:277.950000px;}
.y110{bottom:285.690000px;}
.y14f{bottom:286.770000px;}
.yc5{bottom:293.610000px;}
.y131{bottom:295.410000px;}
.y60{bottom:297.570000px;}
.y29{bottom:297.750000px;}
.yf5{bottom:299.010000px;}
.y90{bottom:299.190000px;}
.y10f{bottom:305.130000px;}
.y14e{bottom:306.570000px;}
.y130{bottom:315.210000px;}
.y5f{bottom:317.370000px;}
.y28{bottom:317.730000px;}
.yf4{bottom:318.810000px;}
.y8f{bottom:319.170000px;}
.y14d{bottom:326.370000px;}
.y10e{bottom:328.395000px;}
.y12f{bottom:335.055000px;}
.yc4{bottom:335.415000px;}
.y5e{bottom:337.395000px;}
.y27{bottom:337.575000px;}
.yf3{bottom:338.655000px;}
.y8e{bottom:339.015000px;}
.y14c{bottom:346.395000px;}
.y10d{bottom:347.835000px;}
.y12e{bottom:354.675000px;}
.yc3{bottom:355.575000px;}
.y5d{bottom:357.195000px;}
.y26{bottom:357.375000px;}
.yf2{bottom:358.455000px;}
.y8d{bottom:358.815000px;}
.y14b{bottom:366.195000px;}
.y12d{bottom:374.835000px;}
.yc2{bottom:375.375000px;}
.y5c{bottom:376.995000px;}
.y25{bottom:377.175000px;}
.yf1{bottom:378.435000px;}
.y8c{bottom:378.615000px;}
.y14a{bottom:385.995000px;}
.y12c{bottom:394.635000px;}
.yc1{bottom:395.355000px;}
.y5b{bottom:396.795000px;}
.y24{bottom:396.975000px;}
.yf0{bottom:398.235000px;}
.y8b{bottom:398.415000px;}
.y149{bottom:405.795000px;}
.y12b{bottom:414.435000px;}
.y5a{bottom:416.595000px;}
.y23{bottom:416.955000px;}
.y8a{bottom:418.035000px;}
.yc0{bottom:418.755000px;}
.y148{bottom:425.595000px;}
.y12a{bottom:434.055000px;}
.y59{bottom:436.575000px;}
.y22{bottom:436.755000px;}
.ybf{bottom:437.475000px;}
.yef{bottom:443.775000px;}
.y147{bottom:445.575000px;}
.y89{bottom:447.195000px;}
.ybe{bottom:456.015000px;}
.y58{bottom:456.375000px;}
.y21{bottom:456.555000px;}
.y129{bottom:456.915000px;}
.ye7{bottom:465.015000px;}
.y146{bottom:465.375000px;}
.y88{bottom:466.995000px;}
.ybd{bottom:474.735000px;}
.y57{bottom:476.175000px;}
.y20{bottom:476.355000px;}
.y128{bottom:476.715000px;}
.y145{bottom:485.175000px;}
.y87{bottom:486.435000px;}
.ybb{bottom:493.455000px;}
.y56{bottom:495.975000px;}
.y1f{bottom:496.155000px;}
.y127{bottom:496.695000px;}
.y144{bottom:504.975000px;}
.y86{bottom:506.595000px;}
.yb8{bottom:512.175000px;}
.y55{bottom:515.775000px;}
.y1e{bottom:516.135000px;}
.y126{bottom:516.495000px;}
.yec{bottom:519.915000px;}
.y143{bottom:524.775000px;}
.y85{bottom:526.575000px;}
.yb5{bottom:530.715000px;}
.y1d{bottom:535.575000px;}
.y54{bottom:535.755000px;}
.y125{bottom:536.295000px;}
.y142{bottom:544.755000px;}
.y84{bottom:546.375000px;}
.ye6{bottom:546.735000px;}
.y53{bottom:555.555000px;}
.y1c{bottom:555.735000px;}
.y124{bottom:555.915000px;}
.y141{bottom:564.555000px;}
.y83{bottom:566.175000px;}
.ye5{bottom:566.535000px;}
.yb4{bottom:572.475000px;}
.y52{bottom:575.355000px;}
.y1b{bottom:577.875000px;}
.y123{bottom:578.775000px;}
.y140{bottom:584.355000px;}
.y82{bottom:585.975000px;}
.ye4{bottom:586.695000px;}
.yb3{bottom:592.635000px;}
.y51{bottom:595.185000px;}
.y122{bottom:598.605000px;}
.y13f{bottom:604.185000px;}
.y81{bottom:605.805000px;}
.ye3{bottom:606.525000px;}
.y1a{bottom:606.705000px;}
.yb2{bottom:612.465000px;}
.y50{bottom:614.985000px;}
.y121{bottom:618.225000px;}
.y13e{bottom:623.985000px;}
.y80{bottom:625.425000px;}
.y19{bottom:626.505000px;}
.yb1{bottom:632.445000px;}
.y4f{bottom:634.965000px;}
.y120{bottom:641.085000px;}
.y13d{bottom:643.965000px;}
.y18{bottom:646.305000px;}
.ye2{bottom:649.905000px;}
.yb0{bottom:652.245000px;}
.y7f{bottom:654.585000px;}
.y4e{bottom:654.765000px;}
.y11f{bottom:660.885000px;}
.y13c{bottom:663.765000px;}
.y17{bottom:666.285000px;}
.ye1{bottom:668.445000px;}
.yaf{bottom:672.045000px;}
.y7e{bottom:674.385000px;}
.y4d{bottom:674.565000px;}
.y11e{bottom:680.505000px;}
.y13b{bottom:683.565000px;}
.y16{bottom:686.085000px;}
.ye0{bottom:687.165000px;}
.yae{bottom:691.845000px;}
.y7d{bottom:694.185000px;}
.y4c{bottom:694.365000px;}
.y11d{bottom:703.365000px;}
.y15{bottom:705.885000px;}
.yad{bottom:711.285000px;}
.y4b{bottom:713.805000px;}
.y7c{bottom:713.985000px;}
.y10c{bottom:714.165000px;}
.ydf{bottom:723.165000px;}
.y14{bottom:725.685000px;}
.y7b{bottom:733.965000px;}
.y10b{bottom:734.145000px;}
.yac{bottom:740.625000px;}
.yde{bottom:741.885000px;}
.y4a{bottom:742.785000px;}
.y11c{bottom:743.145000px;}
.y13{bottom:745.485000px;}
.y7a{bottom:753.765000px;}
.y10a{bottom:753.945000px;}
.yab{bottom:760.425000px;}
.y11b{bottom:762.585000px;}
.y49{bottom:762.945000px;}
.y12{bottom:765.465000px;}
.y79{bottom:773.565000px;}
.y109{bottom:773.745000px;}
.yaa{bottom:779.865000px;}
.y48{bottom:782.745000px;}
.y11{bottom:785.265000px;}
.y78{bottom:793.365000px;}
.y108{bottom:793.545000px;}
.ydd{bottom:796.425000px;}
.y47{bottom:802.545000px;}
.y10{bottom:805.065000px;}
.ya9{bottom:809.025000px;}
.y77{bottom:813.165000px;}
.y107{bottom:813.345000px;}
.ydc{bottom:815.145000px;}
.y46{bottom:822.345000px;}
.yf{bottom:824.865000px;}
.ya8{bottom:828.825000px;}
.y76{bottom:833.145000px;}
.y106{bottom:833.325000px;}
.yda{bottom:833.685000px;}
.y45{bottom:842.325000px;}
.ye{bottom:847.005000px;}
.ya7{bottom:848.805000px;}
.y75{bottom:852.945000px;}
.y105{bottom:853.125000px;}
.y44{bottom:862.170000px;}
.ya6{bottom:868.290000px;}
.yd9{bottom:869.730000px;}
.yd{bottom:872.070000px;}
.y74{bottom:872.790000px;}
.y104{bottom:872.970000px;}
.y43{bottom:881.970000px;}
.yc{bottom:886.650000px;}
.ya5{bottom:888.450000px;}
.y73{bottom:892.590000px;}
.y103{bottom:892.770000px;}
.y42{bottom:901.770000px;}
.yb{bottom:906.810000px;}
.ya4{bottom:908.250000px;}
.yd8{bottom:911.490000px;}
.y72{bottom:912.390000px;}
.y102{bottom:912.570000px;}
.y41{bottom:921.570000px;}
.ya3{bottom:928.050000px;}
.ya{bottom:928.410000px;}
.yd7{bottom:931.650000px;}
.y71{bottom:932.370000px;}
.y101{bottom:932.550000px;}
.y40{bottom:941.550000px;}
.ya2{bottom:948.030000px;}
.y9{bottom:951.450000px;}
.y70{bottom:952.170000px;}
.y100{bottom:952.350000px;}
.y3f{bottom:961.350000px;}
.ya1{bottom:967.470000px;}
.yd6{bottom:971.250000px;}
.y6f{bottom:971.970000px;}
.yff{bottom:972.150000px;}
.y3e{bottom:981.150000px;}
.y8{bottom:983.130000px;}
.yd5{bottom:985.650000px;}
.y6e{bottom:991.950000px;}
.ya0{bottom:996.630000px;}
.y3d{bottom:1000.950000px;}
.yd4{bottom:1004.370000px;}
.y6d{bottom:1011.750000px;}
.y7{bottom:1014.990000px;}
.y9f{bottom:1016.430000px;}
.y3c{bottom:1020.750000px;}
.yd3{bottom:1023.090000px;}
.y6c{bottom:1031.730000px;}
.y9e{bottom:1036.050000px;}
.y3b{bottom:1040.730000px;}
.yd2{bottom:1041.810000px;}
.yfe{bottom:1051.170000px;}
.y6b{bottom:1051.530000px;}
.y5{bottom:1053.510000px;}
.y9d{bottom:1058.370000px;}
.y11a{bottom:1060.170000px;}
.yd1{bottom:1060.350000px;}
.y3a{bottom:1060.530000px;}
.y6a{bottom:1070.970000px;}
.y9c{bottom:1078.170000px;}
.yd0{bottom:1079.070000px;}
.y39{bottom:1080.330000px;}
.y4{bottom:1083.930000px;}
.ycf{bottom:1097.790000px;}
.y9b{bottom:1097.970000px;}
.y38{bottom:1100.130000px;}
.y3{bottom:1114.350000px;}
.y9a{bottom:1117.410000px;}
.y37{bottom:1119.930000px;}
.y99{bottom:1139.580000px;}
.y36{bottom:1139.940000px;}
.y2{bottom:1144.440000px;}
.y35{bottom:1170.180000px;}
.y1{bottom:1177.560000px;}
.y34{bottom:1193.400000px;}
.h15{height:2.826563px;}
.hd{height:17.100000px;}
.he{height:17.280000px;}
.hc{height:34.560000px;}
.hf{height:34.596000px;}
.h7{height:38.158594px;}
.h11{height:51.660000px;}
.h13{height:58.621992px;}
.h8{height:58.651172px;}
.h6{height:59.038594px;}
.h12{height:59.614102px;}
.h5{height:60.226875px;}
.ha{height:61.423863px;}
.h4{height:65.010937px;}
.h3{height:66.757500px;}
.h9{height:67.824844px;}
.h10{height:72.000000px;}
.hb{height:74.004654px;}
.h2{height:96.508125px;}
.h14{height:100.260000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w16{width:17.100000px;}
.w19{width:58.680000px;}
.w1f{width:59.256000px;}
.w20{width:59.580000px;}
.w1a{width:66.996000px;}
.w1d{width:76.896000px;}
.w5{width:82.620000px;}
.w1e{width:83.880000px;}
.w21{width:86.760000px;}
.wa{width:94.140000px;}
.w4{width:100.296000px;}
.w1b{width:103.320000px;}
.w13{width:103.500000px;}
.w17{width:104.400000px;}
.wc{width:106.740000px;}
.wb{width:110.376000px;}
.w7{width:111.600000px;}
.w14{width:116.136000px;}
.w15{width:116.496000px;}
.wf{width:120.816000px;}
.w10{width:121.860000px;}
.w18{width:124.776000px;}
.we{width:155.550000px;}
.w6{width:156.810000px;}
.w9{width:161.130000px;}
.w12{width:184.350000px;}
.w22{width:221.070000px;}
.w11{width:251.355000px;}
.wd{width:286.275000px;}
.w8{width:300.675000px;}
.w3{width:307.155000px;}
.w1c{width:369.435000px;}
.w23{width:563.685000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x2{left:-1.620013px;}
.x0{left:0.000000px;}
.xd{left:6.660000px;}
.x6{left:7.740000px;}
.x29{left:28.485000px;}
.x1{left:54.179987px;}
.x11{left:55.620000px;}
.xb{left:58.320000px;}
.x24{left:60.839987px;}
.x5{left:65.700000px;}
.x25{left:67.499987px;}
.x23{left:75.239987px;}
.x4{left:80.999987px;}
.x1a{left:83.340000px;}
.x26{left:94.535987px;}
.x3{left:107.135987px;}
.x1b{left:208.830000px;}
.x27{left:212.970000px;}
.x1c{left:268.230000px;}
.x28{left:275.070000px;}
.x15{left:308.595000px;}
.x1d{left:335.955000px;}
.x12{left:342.615000px;}
.xc{left:359.895000px;}
.x7{left:373.575000px;}
.x1e{left:440.175000px;}
.x8{left:474.585000px;}
.x16{left:493.665000px;}
.x13{left:498.885000px;}
.x1f{left:517.785000px;}
.xe{left:521.745000px;}
.x9{left:557.925000px;}
.x14{left:593.925000px;}
.x17{left:597.885000px;}
.x20{left:602.565000px;}
.xf{left:616.785000px;}
.x21{left:662.550000px;}
.x18{left:714.390000px;}
.xa{left:715.650000px;}
.x22{left:722.850000px;}
.x10{left:727.890000px;}
.x19{left:732.210000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls5{letter-spacing:-1.045333pt;}
.ls15{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.230933pt;}
.lsf{letter-spacing:-0.094933pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.106240pt;}
.ls0{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.183467pt;}
.lsd{letter-spacing:0.265600pt;}
.ls3{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.736000pt;}
.ls9{letter-spacing:0.960000pt;}
.ls11{letter-spacing:9.088000pt;}
.ls14{letter-spacing:10.320640pt;}
.lsa{letter-spacing:14.672640pt;}
.lsc{letter-spacing:27.648000pt;}
.ls10{letter-spacing:31.488000pt;}
.ls12{letter-spacing:37.200640pt;}
.ws9{word-spacing:-64.000000pt;}
.ws8{word-spacing:-53.120000pt;}
.ws2{word-spacing:-21.280000pt;}
.wsa{word-spacing:-16.000000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.674667pt;}
.ws5{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.463467pt;}
.ws6{word-spacing:-13.280000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._3{margin-left:-2256.653440pt;}
._5{margin-left:-1299.277440pt;}
._4{margin-left:-1288.205440pt;}
._6{margin-left:-513.596800pt;}
._7{margin-left:-7.230293pt;}
._8{margin-left:-4.508373pt;}
._9{margin-left:-3.473920pt;}
._14{margin-left:-2.163200pt;}
._1{margin-left:-1.272960pt;}
._0{width:1.019520pt;}
._2{width:1.957760pt;}
._e{width:2.885760pt;}
._a{width:4.071253pt;}
._f{width:5.242453pt;}
._10{width:6.321280pt;}
._11{width:7.214080pt;}
._c{width:8.392960pt;}
._d{width:9.318400pt;}
._15{width:10.880000pt;}
._b{width:11.926400pt;}
._12{width:14.279040pt;}
._13{width:15.658240pt;}
._16{width:17.372160pt;}
._1c{width:18.347520pt;}
._1d{width:22.750080pt;}
._1e{width:24.420053pt;}
._18{width:52.376320pt;}
._17{width:108.414720pt;}
._1a{width:144.657920pt;}
._19{width:178.720000pt;}
._1b{width:235.626667pt;}
._1f{width:1525.813333pt;}
.fs6{font-size:2.560000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yb9{bottom:2.880000pt;}
.yb7{bottom:3.040000pt;}
.yba{bottom:3.200000pt;}
.ybc{bottom:3.360000pt;}
.y15a{bottom:5.920000pt;}
.yeb{bottom:6.080000pt;}
.yb6{bottom:18.400000pt;}
.yee{bottom:18.560000pt;}
.ydb{bottom:18.720000pt;}
.yea{bottom:21.440000pt;}
.y159{bottom:23.520000pt;}
.yed{bottom:33.920000pt;}
.ye9{bottom:36.800000pt;}
.y158{bottom:41.280000pt;}
.y155{bottom:45.120000pt;}
.ye8{bottom:52.000000pt;}
.y157{bottom:59.354667pt;}
.y6{bottom:59.712000pt;}
.y156{bottom:76.954667pt;}
.y154{bottom:82.592000pt;}
.y33{bottom:88.352000pt;}
.y119{bottom:90.112000pt;}
.yce{bottom:97.312000pt;}
.y13a{bottom:103.872000pt;}
.y69{bottom:105.792000pt;}
.y32{bottom:106.112000pt;}
.y118{bottom:107.872000pt;}
.yfd{bottom:116.672000pt;}
.y98{bottom:116.992000pt;}
.y139{bottom:121.472000pt;}
.ycd{bottom:123.072000pt;}
.y68{bottom:123.552000pt;}
.y31{bottom:123.712000pt;}
.y117{bottom:125.472000pt;}
.yfc{bottom:134.266667pt;}
.y97{bottom:134.586667pt;}
.y138{bottom:139.226667pt;}
.ycc{bottom:140.666667pt;}
.y67{bottom:141.146667pt;}
.y30{bottom:141.306667pt;}
.y116{bottom:142.746667pt;}
.yfb{bottom:152.026667pt;}
.y96{bottom:152.186667pt;}
.y137{bottom:156.506667pt;}
.y66{bottom:158.746667pt;}
.y2f{bottom:158.906667pt;}
.ycb{bottom:161.466667pt;}
.y115{bottom:163.226667pt;}
.yfa{bottom:169.626667pt;}
.y95{bottom:169.786667pt;}
.y136{bottom:174.426667pt;}
.y65{bottom:176.346667pt;}
.y2e{bottom:176.506667pt;}
.yca{bottom:178.106667pt;}
.y114{bottom:180.826667pt;}
.y153{bottom:184.346667pt;}
.yf9{bottom:187.226667pt;}
.y94{bottom:187.546667pt;}
.y135{bottom:192.026667pt;}
.y64{bottom:193.946667pt;}
.y2d{bottom:194.266667pt;}
.yc9{bottom:194.586667pt;}
.y113{bottom:198.266667pt;}
.y152{bottom:201.946667pt;}
.yf8{bottom:204.826667pt;}
.y93{bottom:205.146667pt;}
.y134{bottom:209.626667pt;}
.yc8{bottom:211.226667pt;}
.y63{bottom:211.706667pt;}
.y2c{bottom:211.866667pt;}
.y112{bottom:218.746667pt;}
.y151{bottom:219.706667pt;}
.yf7{bottom:222.426667pt;}
.y92{bottom:222.746667pt;}
.y133{bottom:227.386667pt;}
.yc7{bottom:227.866667pt;}
.y62{bottom:229.306667pt;}
.y2b{bottom:229.466667pt;}
.y111{bottom:236.346667pt;}
.y150{bottom:237.306667pt;}
.yf6{bottom:239.866667pt;}
.y91{bottom:240.026667pt;}
.yc6{bottom:244.506667pt;}
.y132{bottom:244.666667pt;}
.y61{bottom:246.906667pt;}
.y2a{bottom:247.066667pt;}
.y110{bottom:253.946667pt;}
.y14f{bottom:254.906667pt;}
.yc5{bottom:260.986667pt;}
.y131{bottom:262.586667pt;}
.y60{bottom:264.506667pt;}
.y29{bottom:264.666667pt;}
.yf5{bottom:265.786667pt;}
.y90{bottom:265.946667pt;}
.y10f{bottom:271.226667pt;}
.y14e{bottom:272.506667pt;}
.y130{bottom:280.186667pt;}
.y5f{bottom:282.106667pt;}
.y28{bottom:282.426667pt;}
.yf4{bottom:283.386667pt;}
.y8f{bottom:283.706667pt;}
.y14d{bottom:290.106667pt;}
.y10e{bottom:291.906667pt;}
.y12f{bottom:297.826667pt;}
.yc4{bottom:298.146667pt;}
.y5e{bottom:299.906667pt;}
.y27{bottom:300.066667pt;}
.yf3{bottom:301.026667pt;}
.y8e{bottom:301.346667pt;}
.y14c{bottom:307.906667pt;}
.y10d{bottom:309.186667pt;}
.y12e{bottom:315.266667pt;}
.yc3{bottom:316.066667pt;}
.y5d{bottom:317.506667pt;}
.y26{bottom:317.666667pt;}
.yf2{bottom:318.626667pt;}
.y8d{bottom:318.946667pt;}
.y14b{bottom:325.506667pt;}
.y12d{bottom:333.186667pt;}
.yc2{bottom:333.666667pt;}
.y5c{bottom:335.106667pt;}
.y25{bottom:335.266667pt;}
.yf1{bottom:336.386667pt;}
.y8c{bottom:336.546667pt;}
.y14a{bottom:343.106667pt;}
.y12c{bottom:350.786667pt;}
.yc1{bottom:351.426667pt;}
.y5b{bottom:352.706667pt;}
.y24{bottom:352.866667pt;}
.yf0{bottom:353.986667pt;}
.y8b{bottom:354.146667pt;}
.y149{bottom:360.706667pt;}
.y12b{bottom:368.386667pt;}
.y5a{bottom:370.306667pt;}
.y23{bottom:370.626667pt;}
.y8a{bottom:371.586667pt;}
.yc0{bottom:372.226667pt;}
.y148{bottom:378.306667pt;}
.y12a{bottom:385.826667pt;}
.y59{bottom:388.066667pt;}
.y22{bottom:388.226667pt;}
.ybf{bottom:388.866667pt;}
.yef{bottom:394.466667pt;}
.y147{bottom:396.066667pt;}
.y89{bottom:397.506667pt;}
.ybe{bottom:405.346667pt;}
.y58{bottom:405.666667pt;}
.y21{bottom:405.826667pt;}
.y129{bottom:406.146667pt;}
.ye7{bottom:413.346667pt;}
.y146{bottom:413.666667pt;}
.y88{bottom:415.106667pt;}
.ybd{bottom:421.986667pt;}
.y57{bottom:423.266667pt;}
.y20{bottom:423.426667pt;}
.y128{bottom:423.746667pt;}
.y145{bottom:431.266667pt;}
.y87{bottom:432.386667pt;}
.ybb{bottom:438.626667pt;}
.y56{bottom:440.866667pt;}
.y1f{bottom:441.026667pt;}
.y127{bottom:441.506667pt;}
.y144{bottom:448.866667pt;}
.y86{bottom:450.306667pt;}
.yb8{bottom:455.266667pt;}
.y55{bottom:458.466667pt;}
.y1e{bottom:458.786667pt;}
.y126{bottom:459.106667pt;}
.yec{bottom:462.146667pt;}
.y143{bottom:466.466667pt;}
.y85{bottom:468.066667pt;}
.yb5{bottom:471.746667pt;}
.y1d{bottom:476.066667pt;}
.y54{bottom:476.226667pt;}
.y125{bottom:476.706667pt;}
.y142{bottom:484.226667pt;}
.y84{bottom:485.666667pt;}
.ye6{bottom:485.986667pt;}
.y53{bottom:493.826667pt;}
.y1c{bottom:493.986667pt;}
.y124{bottom:494.146667pt;}
.y141{bottom:501.826667pt;}
.y83{bottom:503.266667pt;}
.ye5{bottom:503.586667pt;}
.yb4{bottom:508.866667pt;}
.y52{bottom:511.426667pt;}
.y1b{bottom:513.666667pt;}
.y123{bottom:514.466667pt;}
.y140{bottom:519.426667pt;}
.y82{bottom:520.866667pt;}
.ye4{bottom:521.506667pt;}
.yb3{bottom:526.786667pt;}
.y51{bottom:529.053333pt;}
.y122{bottom:532.093333pt;}
.y13f{bottom:537.053333pt;}
.y81{bottom:538.493333pt;}
.ye3{bottom:539.133333pt;}
.y1a{bottom:539.293333pt;}
.yb2{bottom:544.413333pt;}
.y50{bottom:546.653333pt;}
.y121{bottom:549.533333pt;}
.y13e{bottom:554.653333pt;}
.y80{bottom:555.933333pt;}
.y19{bottom:556.893333pt;}
.yb1{bottom:562.173333pt;}
.y4f{bottom:564.413333pt;}
.y120{bottom:569.853333pt;}
.y13d{bottom:572.413333pt;}
.y18{bottom:574.493333pt;}
.ye2{bottom:577.693333pt;}
.yb0{bottom:579.773333pt;}
.y7f{bottom:581.853333pt;}
.y4e{bottom:582.013333pt;}
.y11f{bottom:587.453333pt;}
.y13c{bottom:590.013333pt;}
.y17{bottom:592.253333pt;}
.ye1{bottom:594.173333pt;}
.yaf{bottom:597.373333pt;}
.y7e{bottom:599.453333pt;}
.y4d{bottom:599.613333pt;}
.y11e{bottom:604.893333pt;}
.y13b{bottom:607.613333pt;}
.y16{bottom:609.853333pt;}
.ye0{bottom:610.813333pt;}
.yae{bottom:614.973333pt;}
.y7d{bottom:617.053333pt;}
.y4c{bottom:617.213333pt;}
.y11d{bottom:625.213333pt;}
.y15{bottom:627.453333pt;}
.yad{bottom:632.253333pt;}
.y4b{bottom:634.493333pt;}
.y7c{bottom:634.653333pt;}
.y10c{bottom:634.813333pt;}
.ydf{bottom:642.813333pt;}
.y14{bottom:645.053333pt;}
.y7b{bottom:652.413333pt;}
.y10b{bottom:652.573333pt;}
.yac{bottom:658.333333pt;}
.yde{bottom:659.453333pt;}
.y4a{bottom:660.253333pt;}
.y11c{bottom:660.573333pt;}
.y13{bottom:662.653333pt;}
.y7a{bottom:670.013333pt;}
.y10a{bottom:670.173333pt;}
.yab{bottom:675.933333pt;}
.y11b{bottom:677.853333pt;}
.y49{bottom:678.173333pt;}
.y12{bottom:680.413333pt;}
.y79{bottom:687.613333pt;}
.y109{bottom:687.773333pt;}
.yaa{bottom:693.213333pt;}
.y48{bottom:695.773333pt;}
.y11{bottom:698.013333pt;}
.y78{bottom:705.213333pt;}
.y108{bottom:705.373333pt;}
.ydd{bottom:707.933333pt;}
.y47{bottom:713.373333pt;}
.y10{bottom:715.613333pt;}
.ya9{bottom:719.133333pt;}
.y77{bottom:722.813333pt;}
.y107{bottom:722.973333pt;}
.ydc{bottom:724.573333pt;}
.y46{bottom:730.973333pt;}
.yf{bottom:733.213333pt;}
.ya8{bottom:736.733333pt;}
.y76{bottom:740.573333pt;}
.y106{bottom:740.733333pt;}
.yda{bottom:741.053333pt;}
.y45{bottom:748.733333pt;}
.ye{bottom:752.893333pt;}
.ya7{bottom:754.493333pt;}
.y75{bottom:758.173333pt;}
.y105{bottom:758.333333pt;}
.y44{bottom:766.373333pt;}
.ya6{bottom:771.813333pt;}
.yd9{bottom:773.093333pt;}
.yd{bottom:775.173333pt;}
.y74{bottom:775.813333pt;}
.y104{bottom:775.973333pt;}
.y43{bottom:783.973333pt;}
.yc{bottom:788.133333pt;}
.ya5{bottom:789.733333pt;}
.y73{bottom:793.413333pt;}
.y103{bottom:793.573333pt;}
.y42{bottom:801.573333pt;}
.yb{bottom:806.053333pt;}
.ya4{bottom:807.333333pt;}
.yd8{bottom:810.213333pt;}
.y72{bottom:811.013333pt;}
.y102{bottom:811.173333pt;}
.y41{bottom:819.173333pt;}
.ya3{bottom:824.933333pt;}
.ya{bottom:825.253333pt;}
.yd7{bottom:828.133333pt;}
.y71{bottom:828.773333pt;}
.y101{bottom:828.933333pt;}
.y40{bottom:836.933333pt;}
.ya2{bottom:842.693333pt;}
.y9{bottom:845.733333pt;}
.y70{bottom:846.373333pt;}
.y100{bottom:846.533333pt;}
.y3f{bottom:854.533333pt;}
.ya1{bottom:859.973333pt;}
.yd6{bottom:863.333333pt;}
.y6f{bottom:863.973333pt;}
.yff{bottom:864.133333pt;}
.y3e{bottom:872.133333pt;}
.y8{bottom:873.893333pt;}
.yd5{bottom:876.133333pt;}
.y6e{bottom:881.733333pt;}
.ya0{bottom:885.893333pt;}
.y3d{bottom:889.733333pt;}
.yd4{bottom:892.773333pt;}
.y6d{bottom:899.333333pt;}
.y7{bottom:902.213333pt;}
.y9f{bottom:903.493333pt;}
.y3c{bottom:907.333333pt;}
.yd3{bottom:909.413333pt;}
.y6c{bottom:917.093333pt;}
.y9e{bottom:920.933333pt;}
.y3b{bottom:925.093333pt;}
.yd2{bottom:926.053333pt;}
.yfe{bottom:934.373333pt;}
.y6b{bottom:934.693333pt;}
.y5{bottom:936.453333pt;}
.y9d{bottom:940.773333pt;}
.y11a{bottom:942.373333pt;}
.yd1{bottom:942.533333pt;}
.y3a{bottom:942.693333pt;}
.y6a{bottom:951.973333pt;}
.y9c{bottom:958.373333pt;}
.yd0{bottom:959.173333pt;}
.y39{bottom:960.293333pt;}
.y4{bottom:963.493333pt;}
.ycf{bottom:975.813333pt;}
.y9b{bottom:975.973333pt;}
.y38{bottom:977.893333pt;}
.y3{bottom:990.533333pt;}
.y9a{bottom:993.253333pt;}
.y37{bottom:995.493333pt;}
.y99{bottom:1012.960000pt;}
.y36{bottom:1013.280000pt;}
.y2{bottom:1017.280000pt;}
.y35{bottom:1040.160000pt;}
.y1{bottom:1046.720000pt;}
.y34{bottom:1060.800000pt;}
.h15{height:2.512500pt;}
.hd{height:15.200000pt;}
.he{height:15.360000pt;}
.hc{height:30.720000pt;}
.hf{height:30.752000pt;}
.h7{height:33.918750pt;}
.h11{height:45.920000pt;}
.h13{height:52.108438pt;}
.h8{height:52.134375pt;}
.h6{height:52.478750pt;}
.h12{height:52.990313pt;}
.h5{height:53.535000pt;}
.ha{height:54.598989pt;}
.h4{height:57.787500pt;}
.h3{height:59.340000pt;}
.h9{height:60.288750pt;}
.h10{height:64.000000pt;}
.hb{height:65.781915pt;}
.h2{height:85.785000pt;}
.h14{height:89.120000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w16{width:15.200000pt;}
.w19{width:52.160000pt;}
.w1f{width:52.672000pt;}
.w20{width:52.960000pt;}
.w1a{width:59.552000pt;}
.w1d{width:68.352000pt;}
.w5{width:73.440000pt;}
.w1e{width:74.560000pt;}
.w21{width:77.120000pt;}
.wa{width:83.680000pt;}
.w4{width:89.152000pt;}
.w1b{width:91.840000pt;}
.w13{width:92.000000pt;}
.w17{width:92.800000pt;}
.wc{width:94.880000pt;}
.wb{width:98.112000pt;}
.w7{width:99.200000pt;}
.w14{width:103.232000pt;}
.w15{width:103.552000pt;}
.wf{width:107.392000pt;}
.w10{width:108.320000pt;}
.w18{width:110.912000pt;}
.we{width:138.266667pt;}
.w6{width:139.386667pt;}
.w9{width:143.226667pt;}
.w12{width:163.866667pt;}
.w22{width:196.506667pt;}
.w11{width:223.426667pt;}
.wd{width:254.466667pt;}
.w8{width:267.266667pt;}
.w3{width:273.026667pt;}
.w1c{width:328.386667pt;}
.w23{width:501.053333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x2{left:-1.440012pt;}
.x0{left:0.000000pt;}
.xd{left:5.920000pt;}
.x6{left:6.880000pt;}
.x29{left:25.320000pt;}
.x1{left:48.159988pt;}
.x11{left:49.440000pt;}
.xb{left:51.840000pt;}
.x24{left:54.079988pt;}
.x5{left:58.400000pt;}
.x25{left:59.999988pt;}
.x23{left:66.879988pt;}
.x4{left:71.999988pt;}
.x1a{left:74.080000pt;}
.x26{left:84.031988pt;}
.x3{left:95.231988pt;}
.x1b{left:185.626667pt;}
.x27{left:189.306667pt;}
.x1c{left:238.426667pt;}
.x28{left:244.506667pt;}
.x15{left:274.306667pt;}
.x1d{left:298.626667pt;}
.x12{left:304.546667pt;}
.xc{left:319.906667pt;}
.x7{left:332.066667pt;}
.x1e{left:391.266667pt;}
.x8{left:421.853333pt;}
.x16{left:438.813333pt;}
.x13{left:443.453333pt;}
.x1f{left:460.253333pt;}
.xe{left:463.773333pt;}
.x9{left:495.933333pt;}
.x14{left:527.933333pt;}
.x17{left:531.453333pt;}
.x20{left:535.613333pt;}
.xf{left:548.253333pt;}
.x21{left:588.933333pt;}
.x18{left:635.013333pt;}
.xa{left:636.133333pt;}
.x22{left:642.533333pt;}
.x10{left:647.013333pt;}
.x19{left:650.853333pt;}
}




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