
    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_664c3837cac7f041c31762f4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_0ec6639e6caf1dce23e3d0e1.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0518573a2ad63a5862b443fd.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4692f1c564a68b911e36413d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_53622188d8881e7411a0a636.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.772949;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_e902232d2fd9a8e310d39f8e.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_f0ab4aee4abdb05766448621.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_0cbdc591048bcd8713761d8e.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_69b325af42f1fa2520b5e100.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_3cb52584e0286a7afac61f50.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.966309;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:ffc;src:url('chunks/assets/font_a82c6b314d2562e8fb4a72d1.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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:-69.120000px;}
.v1{vertical-align:-60.480000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.ls7{letter-spacing:-0.810000px;}
.ls2{letter-spacing:-0.457800px;}
.ls8{letter-spacing:-0.226200px;}
.ls6{letter-spacing:-0.180600px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.043920px;}
.ls0{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.256200px;}
.ls4{letter-spacing:0.286800px;}
.lsf{letter-spacing:0.298800px;}
.lsc{letter-spacing:0.306600px;}
.lsa{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.613440px;}
.lse{letter-spacing:2.340000px;}
.lsd{letter-spacing:8.100000px;}
.ls12{letter-spacing:16.506720px;}
.ls9{letter-spacing:46.026720px;}
.lsb{letter-spacing:64.026720px;}
.ls11{letter-spacing:201.060000px;}
.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;}
}
.ws8{word-spacing:-59.760000px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.102200px;}
.ws7{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.246600px;}
.ws2{word-spacing:-15.226440px;}
.wsa{word-spacing:-14.940000px;}
.ws4{word-spacing:-10.440000px;}
.ws3{word-spacing:-10.213800px;}
.ws5{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._0{margin-left:-1.093680px;}
._1{width:1.007760px;}
._2{width:2.343600px;}
._7{width:3.834000px;}
._3{width:5.292000px;}
._4{width:6.318000px;}
._6{width:7.560000px;}
._5{width:8.640000px;}
._9{width:10.260000px;}
._12{width:11.261760px;}
._8{width:12.312000px;}
._11{width:13.639920px;}
._c{width:16.338960px;}
._d{width:17.887200px;}
._15{width:19.257120px;}
._b{width:20.641680px;}
._a{width:21.762000px;}
._f{width:22.943280px;}
._14{width:29.171040px;}
._13{width:30.477600px;}
._e{width:43.777680px;}
._10{width:84.312000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc5{color:rgb(34,34,34);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(17,17,17);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:12.240000px;}
.fs8{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.ybb{bottom:3.405000px;}
.y4b{bottom:3.420000px;}
.y104{bottom:3.600000px;}
.y40{bottom:3.765000px;}
.ya1{bottom:3.780000px;}
.yc8{bottom:3.810000px;}
.y5{bottom:4.140000px;}
.y58{bottom:5.010000px;}
.y2{bottom:9.900000px;}
.ybf{bottom:12.045000px;}
.yeb{bottom:12.060000px;}
.yd7{bottom:12.105000px;}
.yef{bottom:12.420000px;}
.y4a{bottom:13.860000px;}
.yb9{bottom:20.685000px;}
.y9e{bottom:20.700000px;}
.yd5{bottom:20.745000px;}
.yee{bottom:20.880000px;}
.y3f{bottom:21.045000px;}
.y106{bottom:21.060000px;}
.y4{bottom:23.040000px;}
.ybe{bottom:29.325000px;}
.yd2{bottom:29.385000px;}
.y54{bottom:37.080000px;}
.yb7{bottom:37.965000px;}
.y9f{bottom:37.980000px;}
.yd4{bottom:38.025000px;}
.y49{bottom:38.160000px;}
.y3e{bottom:38.325000px;}
.ybd{bottom:46.605000px;}
.yd6{bottom:46.665000px;}
.y3{bottom:48.090000px;}
.y48{bottom:51.120000px;}
.y53{bottom:52.560000px;}
.yb8{bottom:55.065000px;}
.yd3{bottom:55.125000px;}
.y3d{bottom:55.605000px;}
.y8{bottom:58.500000px;}
.ybc{bottom:63.705000px;}
.y47{bottom:64.290000px;}
.y52{bottom:70.050000px;}
.yba{bottom:72.345000px;}
.y3c{bottom:72.705000px;}
.y46{bottom:77.250000px;}
.y7{bottom:78.660000px;}
.y51{bottom:85.890000px;}
.y3b{bottom:90.030000px;}
.y45{bottom:90.210000px;}
.y50{bottom:101.550000px;}
.yce{bottom:106.740000px;}
.y3a{bottom:107.310000px;}
.y136{bottom:109.620000px;}
.y44{bottom:112.170000px;}
.y4f{bottom:118.830000px;}
.y56{bottom:122.940000px;}
.y91{bottom:123.840000px;}
.ycd{bottom:124.020000px;}
.y39{bottom:124.590000px;}
.y135{bottom:126.900000px;}
.y4e{bottom:134.850000px;}
.y101{bottom:136.620000px;}
.y55{bottom:140.220000px;}
.y90{bottom:141.120000px;}
.ycc{bottom:141.300000px;}
.y38{bottom:141.870000px;}
.y134{bottom:144.180000px;}
.y4d{bottom:150.330000px;}
.y100{bottom:153.900000px;}
.y41{bottom:154.800000px;}
.y8f{bottom:158.040000px;}
.ycb{bottom:158.400000px;}
.y37{bottom:159.150000px;}
.y133{bottom:161.280000px;}
.y4c{bottom:165.810000px;}
.yff{bottom:171.180000px;}
.y43{bottom:174.270000px;}
.yca{bottom:175.320000px;}
.y8e{bottom:175.680000px;}
.y36{bottom:176.250000px;}
.y132{bottom:178.560000px;}
.y42{bottom:184.710000px;}
.yfe{bottom:188.280000px;}
.yc9{bottom:192.600000px;}
.y8d{bottom:192.780000px;}
.y35{bottom:193.530000px;}
.y131{bottom:195.840000px;}
.yfd{bottom:205.560000px;}
.yc7{bottom:207.180000px;}
.y8c{bottom:210.090000px;}
.y34{bottom:210.810000px;}
.y130{bottom:213.150000px;}
.yfc{bottom:222.870000px;}
.yc6{bottom:225.225000px;}
.y8b{bottom:227.370000px;}
.y33{bottom:228.090000px;}
.y12f{bottom:230.430000px;}
.yfb{bottom:240.150000px;}
.yc5{bottom:243.225000px;}
.y8a{bottom:244.650000px;}
.y32{bottom:245.370000px;}
.y12e{bottom:247.710000px;}
.yfa{bottom:257.430000px;}
.yc4{bottom:261.225000px;}
.y89{bottom:261.930000px;}
.y31{bottom:262.470000px;}
.y12d{bottom:264.810000px;}
.y1e{bottom:265.170000px;}
.yf9{bottom:274.710000px;}
.y88{bottom:279.210000px;}
.yc3{bottom:279.225000px;}
.y30{bottom:279.750000px;}
.y12c{bottom:282.090000px;}
.y1d{bottom:289.290000px;}
.yf8{bottom:291.810000px;}
.y87{bottom:296.310000px;}
.y2f{bottom:297.030000px;}
.yc2{bottom:297.225000px;}
.y12b{bottom:299.370000px;}
.yf7{bottom:308.730000px;}
.y1c{bottom:313.440000px;}
.y86{bottom:313.590000px;}
.y2e{bottom:314.340000px;}
.yc1{bottom:315.225000px;}
.y12a{bottom:316.650000px;}
.yf6{bottom:326.370000px;}
.y85{bottom:330.870000px;}
.y2d{bottom:331.620000px;}
.yc0{bottom:333.225000px;}
.y129{bottom:333.570000px;}
.y1b{bottom:337.560000px;}
.yf5{bottom:343.650000px;}
.y84{bottom:348.150000px;}
.y2c{bottom:348.540000px;}
.y128{bottom:351.210000px;}
.yb6{bottom:351.225000px;}
.yf4{bottom:360.930000px;}
.y1a{bottom:361.860000px;}
.y83{bottom:365.430000px;}
.y10{bottom:367.425000px;}
.y127{bottom:368.310000px;}
.y2b{bottom:374.640000px;}
.yf3{bottom:378.210000px;}
.y82{bottom:382.710000px;}
.y126{bottom:385.590000px;}
.y19{bottom:385.980000px;}
.y2a{bottom:390.120000px;}
.yf2{bottom:395.310000px;}
.y81{bottom:399.810000px;}
.y125{bottom:402.870000px;}
.y29{bottom:405.600000px;}
.y18{bottom:410.100000px;}
.yf1{bottom:412.590000px;}
.y80{bottom:417.090000px;}
.y124{bottom:420.150000px;}
.y28{bottom:421.260000px;}
.yf0{bottom:429.870000px;}
.y17{bottom:434.220000px;}
.y7f{bottom:434.370000px;}
.y27{bottom:436.740000px;}
.y123{bottom:437.430000px;}
.yb5{bottom:441.570000px;}
.y7e{bottom:451.335000px;}
.y26{bottom:452.220000px;}
.y122{bottom:454.575000px;}
.yed{bottom:456.195000px;}
.y16{bottom:458.340000px;}
.yb4{bottom:458.895000px;}
.y25{bottom:467.700000px;}
.y7d{bottom:468.975000px;}
.y121{bottom:471.855000px;}
.yb3{bottom:476.535000px;}
.y15{bottom:482.460000px;}
.y24{bottom:483.360000px;}
.y7c{bottom:486.255000px;}
.y120{bottom:489.135000px;}
.yb2{bottom:493.815000px;}
.y23{bottom:498.840000px;}
.y7b{bottom:503.355000px;}
.y11f{bottom:506.415000px;}
.y14{bottom:506.760000px;}
.yec{bottom:510.915000px;}
.yb1{bottom:511.095000px;}
.y22{bottom:514.320000px;}
.y7a{bottom:520.635000px;}
.y11e{bottom:523.695000px;}
.yb0{bottom:528.195000px;}
.y21{bottom:529.800000px;}
.y13{bottom:530.880000px;}
.y79{bottom:537.915000px;}
.y11d{bottom:540.975000px;}
.y20{bottom:545.460000px;}
.yaf{bottom:545.475000px;}
.yea{bottom:548.355000px;}
.y12{bottom:555.045000px;}
.y78{bottom:555.195000px;}
.y11c{bottom:558.075000px;}
.yae{bottom:562.755000px;}
.y77{bottom:572.475000px;}
.y11b{bottom:575.355000px;}
.y1f{bottom:576.105000px;}
.y11{bottom:579.165000px;}
.yad{bottom:580.035000px;}
.y76{bottom:589.575000px;}
.y11a{bottom:592.635000px;}
.yac{bottom:597.315000px;}
.ye9{bottom:599.115000px;}
.y75{bottom:606.855000px;}
.y119{bottom:609.915000px;}
.yab{bottom:614.415000px;}
.ye8{bottom:616.575000px;}
.y74{bottom:624.135000px;}
.y118{bottom:627.195000px;}
.yaa{bottom:631.695000px;}
.ye7{bottom:633.855000px;}
.y73{bottom:641.415000px;}
.y117{bottom:644.475000px;}
.ya9{bottom:648.975000px;}
.ye6{bottom:651.135000px;}
.y72{bottom:658.695000px;}
.y116{bottom:661.575000px;}
.ya8{bottom:663.195000px;}
.ye5{bottom:668.415000px;}
.y71{bottom:675.975000px;}
.y115{bottom:678.855000px;}
.ya7{bottom:681.225000px;}
.ye4{bottom:685.725000px;}
.y70{bottom:693.105000px;}
.y114{bottom:696.165000px;}
.ya6{bottom:699.225000px;}
.ye3{bottom:703.005000px;}
.y6f{bottom:710.385000px;}
.y113{bottom:713.445000px;}
.ya5{bottom:717.225000px;}
.ye2{bottom:720.105000px;}
.y6e{bottom:727.665000px;}
.y112{bottom:730.725000px;}
.ya4{bottom:735.225000px;}
.ye1{bottom:737.025000px;}
.y6d{bottom:744.945000px;}
.y111{bottom:748.005000px;}
.ya3{bottom:753.225000px;}
.ye0{bottom:754.665000px;}
.y6c{bottom:762.225000px;}
.y110{bottom:765.105000px;}
.ydf{bottom:768.885000px;}
.ya2{bottom:771.225000px;}
.y6b{bottom:779.505000px;}
.y10f{bottom:782.385000px;}
.yde{bottom:786.885000px;}
.ya0{bottom:789.225000px;}
.y6a{bottom:796.605000px;}
.y10e{bottom:799.305000px;}
.ydd{bottom:804.885000px;}
.y9d{bottom:807.225000px;}
.y69{bottom:813.885000px;}
.y10d{bottom:816.945000px;}
.ydc{bottom:822.885000px;}
.y68{bottom:831.165000px;}
.y10c{bottom:834.225000px;}
.ydb{bottom:840.885000px;}
.y139{bottom:848.085000px;}
.y67{bottom:848.445000px;}
.y10b{bottom:851.325000px;}
.yda{bottom:858.885000px;}
.y9c{bottom:863.205000px;}
.y66{bottom:865.365000px;}
.y138{bottom:865.725000px;}
.y10a{bottom:868.605000px;}
.yd9{bottom:876.885000px;}
.y9b{bottom:880.485000px;}
.y65{bottom:882.825000px;}
.y109{bottom:885.885000px;}
.yd8{bottom:894.885000px;}
.y9a{bottom:897.945000px;}
.y64{bottom:900.105000px;}
.y108{bottom:903.165000px;}
.yd1{bottom:912.885000px;}
.y99{bottom:915.225000px;}
.y63{bottom:917.430000px;}
.y98{bottom:932.550000px;}
.y62{bottom:934.710000px;}
.y107{bottom:937.770000px;}
.y97{bottom:950.910000px;}
.y61{bottom:951.990000px;}
.yf{bottom:959.370000px;}
.y105{bottom:963.870000px;}
.ye{bottom:966.210000px;}
.y96{bottom:968.190000px;}
.y60{bottom:969.270000px;}
.yd{bottom:983.490000px;}
.y95{bottom:985.290000px;}
.yd0{bottom:986.010000px;}
.y5f{bottom:986.370000px;}
.yc{bottom:1000.230000px;}
.y94{bottom:1002.570000px;}
.ycf{bottom:1003.290000px;}
.y5e{bottom:1003.650000px;}
.y103{bottom:1018.770000px;}
.yb{bottom:1019.850000px;}
.y137{bottom:1020.570000px;}
.y5d{bottom:1020.930000px;}
.y93{bottom:1037.130000px;}
.y5c{bottom:1038.210000px;}
.ya{bottom:1044.150000px;}
.y92{bottom:1055.130000px;}
.y5b{bottom:1055.490000px;}
.y102{bottom:1056.210000px;}
.y9{bottom:1071.870000px;}
.y5a{bottom:1072.770000px;}
.y57{bottom:1075.320000px;}
.y59{bottom:1089.870000px;}
.y6{bottom:1108.050000px;}
.y1{bottom:1123.530000px;}
.ha{height:8.905078px;}
.h1e{height:17.085000px;}
.h18{height:17.265000px;}
.h17{height:17.280000px;}
.h1a{height:17.316000px;}
.h12{height:27.540000px;}
.h1d{height:34.380000px;}
.h1c{height:34.545000px;}
.hd{height:40.985156px;}
.h14{height:41.726953px;}
.hc{height:42.086250px;}
.h16{height:51.840000px;}
.he{height:52.971680px;}
.h11{height:54.421875px;}
.h6{height:57.324375px;}
.h9{height:58.651172px;}
.hf{height:59.038594px;}
.h8{height:60.226875px;}
.h15{height:61.423863px;}
.h13{height:64.002656px;}
.h7{height:64.126055px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h1b{height:68.962500px;}
.h2{height:84.990000px;}
.h19{height:86.205000px;}
.h4{height:117.180000px;}
.h10{height:211.890000px;}
.hb{height:588.690000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w1c{width:53.661000px;}
.w17{width:53.985000px;}
.w1b{width:62.445000px;}
.w16{width:63.165000px;}
.w19{width:79.020000px;}
.w14{width:79.056000px;}
.w1a{width:86.385000px;}
.w15{width:89.805000px;}
.wf{width:96.465000px;}
.we{width:96.501000px;}
.wb{width:96.645000px;}
.wc{width:96.681000px;}
.wd{width:96.696000px;}
.w7{width:97.581000px;}
.w2{width:104.076000px;}
.w8{width:104.976000px;}
.wa{width:105.501000px;}
.w9{width:106.005000px;}
.w18{width:113.421000px;}
.w12{width:118.965000px;}
.w10{width:119.001000px;}
.w11{width:119.016000px;}
.w4{width:132.651000px;}
.w13{width:162.015000px;}
.w6{width:162.720000px;}
.w5{width:596.475000px;}
.w3{width:622.395000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3c{left:4.500000px;}
.x41{left:5.760000px;}
.x1f{left:6.876000px;}
.x19{left:8.085000px;}
.x2d{left:9.540000px;}
.x40{left:11.340000px;}
.x4{left:12.765000px;}
.x46{left:14.205000px;}
.x14{left:15.471000px;}
.x6{left:17.265000px;}
.x2b{left:18.570000px;}
.x17{left:20.691000px;}
.x33{left:21.945000px;}
.x16{left:23.751000px;}
.x24{left:25.380000px;}
.x15{left:27.171000px;}
.x1d{left:29.151000px;}
.x26{left:30.405000px;}
.x36{left:31.680000px;}
.x22{left:32.970000px;}
.x28{left:35.460000px;}
.x38{left:36.900000px;}
.xf{left:38.511000px;}
.x32{left:40.845000px;}
.x31{left:44.445000px;}
.x39{left:46.245000px;}
.x1c{left:47.691000px;}
.x10{left:50.751000px;}
.x3a{left:53.130000px;}
.xe{left:55.071000px;}
.x1a{left:62.130000px;}
.x1e{left:66.225000px;}
.x13{left:68.205000px;}
.x12{left:75.585000px;}
.x1{left:78.300000px;}
.x7{left:86.436000px;}
.x2{left:95.790000px;}
.x1b{left:103.305000px;}
.x20{left:113.436000px;}
.x11{left:124.545000px;}
.x5{left:141.330000px;}
.x29{left:154.845000px;}
.x3{left:182.385000px;}
.x34{left:207.585000px;}
.x18{left:219.105000px;}
.x21{left:238.545000px;}
.x42{left:244.845000px;}
.x2a{left:252.225000px;}
.x35{left:327.315000px;}
.x23{left:336.855000px;}
.x2c{left:349.635000px;}
.x43{left:360.615000px;}
.x3b{left:382.395000px;}
.x25{left:442.560000px;}
.x2e{left:447.060000px;}
.x3d{left:463.620000px;}
.xc{left:464.865000px;}
.x44{left:530.400000px;}
.x2f{left:544.440000px;}
.x27{left:549.300000px;}
.x3e{left:555.780000px;}
.x37{left:566.760000px;}
.x45{left:595.020000px;}
.xb{left:610.305000px;}
.x3f{left:621.150000px;}
.x30{left:641.850000px;}
.xa{left:676.410000px;}
.x9{left:766.050000px;}
.x8{left:790.170000px;}
.xd{left:806.940000px;}
@media print{
.v3{vertical-align:-61.440000pt;}
.v1{vertical-align:-53.760000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.ls7{letter-spacing:-0.720000pt;}
.ls2{letter-spacing:-0.406933pt;}
.ls8{letter-spacing:-0.201067pt;}
.ls6{letter-spacing:-0.160533pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.039040pt;}
.ls0{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.227733pt;}
.ls4{letter-spacing:0.254933pt;}
.lsf{letter-spacing:0.265600pt;}
.lsc{letter-spacing:0.272533pt;}
.lsa{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.545280pt;}
.lse{letter-spacing:2.080000pt;}
.lsd{letter-spacing:7.200000pt;}
.ls12{letter-spacing:14.672640pt;}
.ls9{letter-spacing:40.912640pt;}
.lsb{letter-spacing:56.912640pt;}
.ls11{letter-spacing:178.720000pt;}
.ws8{word-spacing:-53.120000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.313067pt;}
.ws7{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.552533pt;}
.ws2{word-spacing:-13.534613pt;}
.wsa{word-spacing:-13.280000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws3{word-spacing:-9.078933pt;}
.ws5{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._0{margin-left:-0.972160pt;}
._1{width:0.895787pt;}
._2{width:2.083200pt;}
._7{width:3.408000pt;}
._3{width:4.704000pt;}
._4{width:5.616000pt;}
._6{width:6.720000pt;}
._5{width:7.680000pt;}
._9{width:9.120000pt;}
._12{width:10.010453pt;}
._8{width:10.944000pt;}
._11{width:12.124373pt;}
._c{width:14.523520pt;}
._d{width:15.899733pt;}
._15{width:17.117440pt;}
._b{width:18.348160pt;}
._a{width:19.344000pt;}
._f{width:20.394027pt;}
._14{width:25.929813pt;}
._13{width:27.091200pt;}
._e{width:38.913493pt;}
._10{width:74.944000pt;}
.fs5{font-size:10.880000pt;}
.fs8{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.ybb{bottom:3.026667pt;}
.y4b{bottom:3.040000pt;}
.y104{bottom:3.200000pt;}
.y40{bottom:3.346667pt;}
.ya1{bottom:3.360000pt;}
.yc8{bottom:3.386667pt;}
.y5{bottom:3.680000pt;}
.y58{bottom:4.453333pt;}
.y2{bottom:8.800000pt;}
.ybf{bottom:10.706667pt;}
.yeb{bottom:10.720000pt;}
.yd7{bottom:10.760000pt;}
.yef{bottom:11.040000pt;}
.y4a{bottom:12.320000pt;}
.yb9{bottom:18.386667pt;}
.y9e{bottom:18.400000pt;}
.yd5{bottom:18.440000pt;}
.yee{bottom:18.560000pt;}
.y3f{bottom:18.706667pt;}
.y106{bottom:18.720000pt;}
.y4{bottom:20.480000pt;}
.ybe{bottom:26.066667pt;}
.yd2{bottom:26.120000pt;}
.y54{bottom:32.960000pt;}
.yb7{bottom:33.746667pt;}
.y9f{bottom:33.760000pt;}
.yd4{bottom:33.800000pt;}
.y49{bottom:33.920000pt;}
.y3e{bottom:34.066667pt;}
.ybd{bottom:41.426667pt;}
.yd6{bottom:41.480000pt;}
.y3{bottom:42.746667pt;}
.y48{bottom:45.440000pt;}
.y53{bottom:46.720000pt;}
.yb8{bottom:48.946667pt;}
.yd3{bottom:49.000000pt;}
.y3d{bottom:49.426667pt;}
.y8{bottom:52.000000pt;}
.ybc{bottom:56.626667pt;}
.y47{bottom:57.146667pt;}
.y52{bottom:62.266667pt;}
.yba{bottom:64.306667pt;}
.y3c{bottom:64.626667pt;}
.y46{bottom:68.666667pt;}
.y7{bottom:69.920000pt;}
.y51{bottom:76.346667pt;}
.y3b{bottom:80.026667pt;}
.y45{bottom:80.186667pt;}
.y50{bottom:90.266667pt;}
.yce{bottom:94.880000pt;}
.y3a{bottom:95.386667pt;}
.y136{bottom:97.440000pt;}
.y44{bottom:99.706667pt;}
.y4f{bottom:105.626667pt;}
.y56{bottom:109.280000pt;}
.y91{bottom:110.080000pt;}
.ycd{bottom:110.240000pt;}
.y39{bottom:110.746667pt;}
.y135{bottom:112.800000pt;}
.y4e{bottom:119.866667pt;}
.y101{bottom:121.440000pt;}
.y55{bottom:124.640000pt;}
.y90{bottom:125.440000pt;}
.ycc{bottom:125.600000pt;}
.y38{bottom:126.106667pt;}
.y134{bottom:128.160000pt;}
.y4d{bottom:133.626667pt;}
.y100{bottom:136.800000pt;}
.y41{bottom:137.600000pt;}
.y8f{bottom:140.480000pt;}
.ycb{bottom:140.800000pt;}
.y37{bottom:141.466667pt;}
.y133{bottom:143.360000pt;}
.y4c{bottom:147.386667pt;}
.yff{bottom:152.160000pt;}
.y43{bottom:154.906667pt;}
.yca{bottom:155.840000pt;}
.y8e{bottom:156.160000pt;}
.y36{bottom:156.666667pt;}
.y132{bottom:158.720000pt;}
.y42{bottom:164.186667pt;}
.yfe{bottom:167.360000pt;}
.yc9{bottom:171.200000pt;}
.y8d{bottom:171.360000pt;}
.y35{bottom:172.026667pt;}
.y131{bottom:174.080000pt;}
.yfd{bottom:182.720000pt;}
.yc7{bottom:184.160000pt;}
.y8c{bottom:186.746667pt;}
.y34{bottom:187.386667pt;}
.y130{bottom:189.466667pt;}
.yfc{bottom:198.106667pt;}
.yc6{bottom:200.200000pt;}
.y8b{bottom:202.106667pt;}
.y33{bottom:202.746667pt;}
.y12f{bottom:204.826667pt;}
.yfb{bottom:213.466667pt;}
.yc5{bottom:216.200000pt;}
.y8a{bottom:217.466667pt;}
.y32{bottom:218.106667pt;}
.y12e{bottom:220.186667pt;}
.yfa{bottom:228.826667pt;}
.yc4{bottom:232.200000pt;}
.y89{bottom:232.826667pt;}
.y31{bottom:233.306667pt;}
.y12d{bottom:235.386667pt;}
.y1e{bottom:235.706667pt;}
.yf9{bottom:244.186667pt;}
.y88{bottom:248.186667pt;}
.yc3{bottom:248.200000pt;}
.y30{bottom:248.666667pt;}
.y12c{bottom:250.746667pt;}
.y1d{bottom:257.146667pt;}
.yf8{bottom:259.386667pt;}
.y87{bottom:263.386667pt;}
.y2f{bottom:264.026667pt;}
.yc2{bottom:264.200000pt;}
.y12b{bottom:266.106667pt;}
.yf7{bottom:274.426667pt;}
.y1c{bottom:278.613333pt;}
.y86{bottom:278.746667pt;}
.y2e{bottom:279.413333pt;}
.yc1{bottom:280.200000pt;}
.y12a{bottom:281.466667pt;}
.yf6{bottom:290.106667pt;}
.y85{bottom:294.106667pt;}
.y2d{bottom:294.773333pt;}
.yc0{bottom:296.200000pt;}
.y129{bottom:296.506667pt;}
.y1b{bottom:300.053333pt;}
.yf5{bottom:305.466667pt;}
.y84{bottom:309.466667pt;}
.y2c{bottom:309.813333pt;}
.y128{bottom:312.186667pt;}
.yb6{bottom:312.200000pt;}
.yf4{bottom:320.826667pt;}
.y1a{bottom:321.653333pt;}
.y83{bottom:324.826667pt;}
.y10{bottom:326.600000pt;}
.y127{bottom:327.386667pt;}
.y2b{bottom:333.013333pt;}
.yf3{bottom:336.186667pt;}
.y82{bottom:340.186667pt;}
.y126{bottom:342.746667pt;}
.y19{bottom:343.093333pt;}
.y2a{bottom:346.773333pt;}
.yf2{bottom:351.386667pt;}
.y81{bottom:355.386667pt;}
.y125{bottom:358.106667pt;}
.y29{bottom:360.533333pt;}
.y18{bottom:364.533333pt;}
.yf1{bottom:366.746667pt;}
.y80{bottom:370.746667pt;}
.y124{bottom:373.466667pt;}
.y28{bottom:374.453333pt;}
.yf0{bottom:382.106667pt;}
.y17{bottom:385.973333pt;}
.y7f{bottom:386.106667pt;}
.y27{bottom:388.213333pt;}
.y123{bottom:388.826667pt;}
.yb5{bottom:392.506667pt;}
.y7e{bottom:401.186667pt;}
.y26{bottom:401.973333pt;}
.y122{bottom:404.066667pt;}
.yed{bottom:405.506667pt;}
.y16{bottom:407.413333pt;}
.yb4{bottom:407.906667pt;}
.y25{bottom:415.733333pt;}
.y7d{bottom:416.866667pt;}
.y121{bottom:419.426667pt;}
.yb3{bottom:423.586667pt;}
.y15{bottom:428.853333pt;}
.y24{bottom:429.653333pt;}
.y7c{bottom:432.226667pt;}
.y120{bottom:434.786667pt;}
.yb2{bottom:438.946667pt;}
.y23{bottom:443.413333pt;}
.y7b{bottom:447.426667pt;}
.y11f{bottom:450.146667pt;}
.y14{bottom:450.453333pt;}
.yec{bottom:454.146667pt;}
.yb1{bottom:454.306667pt;}
.y22{bottom:457.173333pt;}
.y7a{bottom:462.786667pt;}
.y11e{bottom:465.506667pt;}
.yb0{bottom:469.506667pt;}
.y21{bottom:470.933333pt;}
.y13{bottom:471.893333pt;}
.y79{bottom:478.146667pt;}
.y11d{bottom:480.866667pt;}
.y20{bottom:484.853333pt;}
.yaf{bottom:484.866667pt;}
.yea{bottom:487.426667pt;}
.y12{bottom:493.373333pt;}
.y78{bottom:493.506667pt;}
.y11c{bottom:496.066667pt;}
.yae{bottom:500.226667pt;}
.y77{bottom:508.866667pt;}
.y11b{bottom:511.426667pt;}
.y1f{bottom:512.093333pt;}
.y11{bottom:514.813333pt;}
.yad{bottom:515.586667pt;}
.y76{bottom:524.066667pt;}
.y11a{bottom:526.786667pt;}
.yac{bottom:530.946667pt;}
.ye9{bottom:532.546667pt;}
.y75{bottom:539.426667pt;}
.y119{bottom:542.146667pt;}
.yab{bottom:546.146667pt;}
.ye8{bottom:548.066667pt;}
.y74{bottom:554.786667pt;}
.y118{bottom:557.506667pt;}
.yaa{bottom:561.506667pt;}
.ye7{bottom:563.426667pt;}
.y73{bottom:570.146667pt;}
.y117{bottom:572.866667pt;}
.ya9{bottom:576.866667pt;}
.ye6{bottom:578.786667pt;}
.y72{bottom:585.506667pt;}
.y116{bottom:588.066667pt;}
.ya8{bottom:589.506667pt;}
.ye5{bottom:594.146667pt;}
.y71{bottom:600.866667pt;}
.y115{bottom:603.426667pt;}
.ya7{bottom:605.533333pt;}
.ye4{bottom:609.533333pt;}
.y70{bottom:616.093333pt;}
.y114{bottom:618.813333pt;}
.ya6{bottom:621.533333pt;}
.ye3{bottom:624.893333pt;}
.y6f{bottom:631.453333pt;}
.y113{bottom:634.173333pt;}
.ya5{bottom:637.533333pt;}
.ye2{bottom:640.093333pt;}
.y6e{bottom:646.813333pt;}
.y112{bottom:649.533333pt;}
.ya4{bottom:653.533333pt;}
.ye1{bottom:655.133333pt;}
.y6d{bottom:662.173333pt;}
.y111{bottom:664.893333pt;}
.ya3{bottom:669.533333pt;}
.ye0{bottom:670.813333pt;}
.y6c{bottom:677.533333pt;}
.y110{bottom:680.093333pt;}
.ydf{bottom:683.453333pt;}
.ya2{bottom:685.533333pt;}
.y6b{bottom:692.893333pt;}
.y10f{bottom:695.453333pt;}
.yde{bottom:699.453333pt;}
.ya0{bottom:701.533333pt;}
.y6a{bottom:708.093333pt;}
.y10e{bottom:710.493333pt;}
.ydd{bottom:715.453333pt;}
.y9d{bottom:717.533333pt;}
.y69{bottom:723.453333pt;}
.y10d{bottom:726.173333pt;}
.ydc{bottom:731.453333pt;}
.y68{bottom:738.813333pt;}
.y10c{bottom:741.533333pt;}
.ydb{bottom:747.453333pt;}
.y139{bottom:753.853333pt;}
.y67{bottom:754.173333pt;}
.y10b{bottom:756.733333pt;}
.yda{bottom:763.453333pt;}
.y9c{bottom:767.293333pt;}
.y66{bottom:769.213333pt;}
.y138{bottom:769.533333pt;}
.y10a{bottom:772.093333pt;}
.yd9{bottom:779.453333pt;}
.y9b{bottom:782.653333pt;}
.y65{bottom:784.733333pt;}
.y109{bottom:787.453333pt;}
.yd8{bottom:795.453333pt;}
.y9a{bottom:798.173333pt;}
.y64{bottom:800.093333pt;}
.y108{bottom:802.813333pt;}
.yd1{bottom:811.453333pt;}
.y99{bottom:813.533333pt;}
.y63{bottom:815.493333pt;}
.y98{bottom:828.933333pt;}
.y62{bottom:830.853333pt;}
.y107{bottom:833.573333pt;}
.y97{bottom:845.253333pt;}
.y61{bottom:846.213333pt;}
.yf{bottom:852.773333pt;}
.y105{bottom:856.773333pt;}
.ye{bottom:858.853333pt;}
.y96{bottom:860.613333pt;}
.y60{bottom:861.573333pt;}
.yd{bottom:874.213333pt;}
.y95{bottom:875.813333pt;}
.yd0{bottom:876.453333pt;}
.y5f{bottom:876.773333pt;}
.yc{bottom:889.093333pt;}
.y94{bottom:891.173333pt;}
.ycf{bottom:891.813333pt;}
.y5e{bottom:892.133333pt;}
.y103{bottom:905.573333pt;}
.yb{bottom:906.533333pt;}
.y137{bottom:907.173333pt;}
.y5d{bottom:907.493333pt;}
.y93{bottom:921.893333pt;}
.y5c{bottom:922.853333pt;}
.ya{bottom:928.133333pt;}
.y92{bottom:937.893333pt;}
.y5b{bottom:938.213333pt;}
.y102{bottom:938.853333pt;}
.y9{bottom:952.773333pt;}
.y5a{bottom:953.573333pt;}
.y57{bottom:955.840000pt;}
.y59{bottom:968.773333pt;}
.y6{bottom:984.933333pt;}
.y1{bottom:998.693333pt;}
.ha{height:7.915625pt;}
.h1e{height:15.186667pt;}
.h18{height:15.346667pt;}
.h17{height:15.360000pt;}
.h1a{height:15.392000pt;}
.h12{height:24.480000pt;}
.h1d{height:30.560000pt;}
.h1c{height:30.706667pt;}
.hd{height:36.431250pt;}
.h14{height:37.090625pt;}
.hc{height:37.410000pt;}
.h16{height:46.080000pt;}
.he{height:47.085938pt;}
.h11{height:48.375000pt;}
.h6{height:50.955000pt;}
.h9{height:52.134375pt;}
.hf{height:52.478750pt;}
.h8{height:53.535000pt;}
.h15{height:54.598989pt;}
.h13{height:56.891250pt;}
.h7{height:57.000937pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h1b{height:61.300000pt;}
.h2{height:75.546667pt;}
.h19{height:76.626667pt;}
.h4{height:104.160000pt;}
.h10{height:188.346667pt;}
.hb{height:523.280000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w1c{width:47.698667pt;}
.w17{width:47.986667pt;}
.w1b{width:55.506667pt;}
.w16{width:56.146667pt;}
.w19{width:70.240000pt;}
.w14{width:70.272000pt;}
.w1a{width:76.786667pt;}
.w15{width:79.826667pt;}
.wf{width:85.746667pt;}
.we{width:85.778667pt;}
.wb{width:85.906667pt;}
.wc{width:85.938667pt;}
.wd{width:85.952000pt;}
.w7{width:86.738667pt;}
.w2{width:92.512000pt;}
.w8{width:93.312000pt;}
.wa{width:93.778667pt;}
.w9{width:94.226667pt;}
.w18{width:100.818667pt;}
.w12{width:105.746667pt;}
.w10{width:105.778667pt;}
.w11{width:105.792000pt;}
.w4{width:117.912000pt;}
.w13{width:144.013333pt;}
.w6{width:144.640000pt;}
.w5{width:530.200000pt;}
.w3{width:553.240000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3c{left:4.000000pt;}
.x41{left:5.120000pt;}
.x1f{left:6.112000pt;}
.x19{left:7.186667pt;}
.x2d{left:8.480000pt;}
.x40{left:10.080000pt;}
.x4{left:11.346667pt;}
.x46{left:12.626667pt;}
.x14{left:13.752000pt;}
.x6{left:15.346667pt;}
.x2b{left:16.506667pt;}
.x17{left:18.392000pt;}
.x33{left:19.506667pt;}
.x16{left:21.112000pt;}
.x24{left:22.560000pt;}
.x15{left:24.152000pt;}
.x1d{left:25.912000pt;}
.x26{left:27.026667pt;}
.x36{left:28.160000pt;}
.x22{left:29.306667pt;}
.x28{left:31.520000pt;}
.x38{left:32.800000pt;}
.xf{left:34.232000pt;}
.x32{left:36.306667pt;}
.x31{left:39.506667pt;}
.x39{left:41.106667pt;}
.x1c{left:42.392000pt;}
.x10{left:45.112000pt;}
.x3a{left:47.226667pt;}
.xe{left:48.952000pt;}
.x1a{left:55.226667pt;}
.x1e{left:58.866667pt;}
.x13{left:60.626667pt;}
.x12{left:67.186667pt;}
.x1{left:69.600000pt;}
.x7{left:76.832000pt;}
.x2{left:85.146667pt;}
.x1b{left:91.826667pt;}
.x20{left:100.832000pt;}
.x11{left:110.706667pt;}
.x5{left:125.626667pt;}
.x29{left:137.640000pt;}
.x3{left:162.120000pt;}
.x34{left:184.520000pt;}
.x18{left:194.760000pt;}
.x21{left:212.040000pt;}
.x42{left:217.640000pt;}
.x2a{left:224.200000pt;}
.x35{left:290.946667pt;}
.x23{left:299.426667pt;}
.x2c{left:310.786667pt;}
.x43{left:320.546667pt;}
.x3b{left:339.906667pt;}
.x25{left:393.386667pt;}
.x2e{left:397.386667pt;}
.x3d{left:412.106667pt;}
.xc{left:413.213333pt;}
.x44{left:471.466667pt;}
.x2f{left:483.946667pt;}
.x27{left:488.266667pt;}
.x3e{left:494.026667pt;}
.x37{left:503.786667pt;}
.x45{left:528.906667pt;}
.xb{left:542.493333pt;}
.x3f{left:552.133333pt;}
.x30{left:570.533333pt;}
.xa{left:601.253333pt;}
.x9{left:680.933333pt;}
.x8{left:702.373333pt;}
.xd{left:717.280000pt;}
}




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