
    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_3ffacc73970e5262ba6a2230.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_99a028ad7b8fff492fb1084a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_0ff551a6c2ae0af1c0ce7ea3.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8bf4a03ee517c647abbeaf20.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_34761e6a5f9f64eaa854ac96.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b03e039ee1a8d4865d2ddb7f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.239258;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;}
.m3{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.225310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225310,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.233059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233059,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.234007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234007,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.234592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234592,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.235509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235509,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.237966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237966,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.238932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238932,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.240442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240442,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.240522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240522,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.242399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242399,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.242422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242422,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.242952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242952,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.246095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246095,0.000000,0.000000,0.250000,0,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);}
.v2{vertical-align:-24.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.v4{vertical-align:54.000000px;}
.v3{vertical-align:60.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:10.065600px;}
.ls1{letter-spacing:46.380000px;}
.ls4{letter-spacing:46.728000px;}
.ls3{letter-spacing:58.680000px;}
.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;}
}
.ws2{word-spacing:-18.000000px;}
.ws5{word-spacing:-15.000000px;}
.ws1{word-spacing:-12.000000px;}
.ws4{word-spacing:-9.000000px;}
.ws3{word-spacing:-7.500000px;}
.ws0{word-spacing:0.000000px;}
.wsc{word-spacing:86.460000px;}
.ws8{word-spacing:156.420000px;}
.ws11{word-spacing:165.027000px;}
.wse{word-spacing:183.060000px;}
.wsb{word-spacing:209.640000px;}
.ws14{word-spacing:232.500000px;}
.wsf{word-spacing:236.400000px;}
.ws10{word-spacing:263.040000px;}
.wsd{word-spacing:306.360000px;}
.ws6{word-spacing:339.660000px;}
.ws7{word-spacing:363.000000px;}
.wsa{word-spacing:373.020000px;}
.ws9{word-spacing:393.000000px;}
.ws12{word-spacing:427.563000px;}
.ws13{word-spacing:430.533000px;}
._84{margin-left:-12.146400px;}
._16{margin-left:-9.525600px;}
._f{margin-left:-8.128800px;}
._4{margin-left:-6.422400px;}
._2{margin-left:-5.280000px;}
._e{margin-left:-3.988800px;}
._1{margin-left:-2.664000px;}
._3{margin-left:-1.296000px;}
._14{width:1.461600px;}
._5{width:2.700000px;}
._6{width:3.765600px;}
._7{width:5.126400px;}
._13{width:6.220800px;}
._15{width:8.035200px;}
._1b{width:9.273600px;}
._c{width:10.368000px;}
._1c{width:11.642400px;}
._19{width:13.068000px;}
._1a{width:14.529600px;}
._9{width:15.537600px;}
._8{width:16.876800px;}
._0{width:18.000000px;}
._b{width:19.692000px;}
._18{width:21.016800px;}
._d{width:22.377600px;}
._a{width:24.040800px;}
._10{width:25.171200px;}
._23{width:26.208000px;}
._22{width:28.051200px;}
._12{width:29.376000px;}
._1d{width:30.412800px;}
._20{width:31.622400px;}
._21{width:32.875200px;}
._2b{width:33.912000px;}
._2e{width:35.452800px;}
._11{width:36.820800px;}
._30{width:38.044800px;}
._1e{width:39.088800px;}
._17{width:40.356000px;}
._26{width:41.464800px;}
._4d{width:42.580800px;}
._2f{width:44.049600px;}
._81{width:45.345600px;}
._1f{width:46.346400px;}
._50{width:47.354400px;}
._25{width:48.441600px;}
._4f{width:49.608000px;}
._28{width:51.249600px;}
._31{width:52.804800px;}
._4e{width:54.475200px;}
._4c{width:56.433600px;}
._80{width:57.643200px;}
._27{width:59.241600px;}
._82{width:60.516000px;}
._24{width:61.689600px;}
._32{width:62.748000px;}
._2a{width:65.052000px;}
._85{width:67.011600px;}
._49{width:68.100000px;}
._83{width:69.566400px;}
._29{width:71.510400px;}
._43{width:88.080000px;}
._47{width:89.700000px;}
._63{width:112.488000px;}
._71{width:116.994000px;}
._51{width:125.934000px;}
._3d{width:133.080000px;}
._5f{width:145.536000px;}
._39{width:153.240000px;}
._5c{width:163.518000px;}
._3c{width:168.180000px;}
._46{width:176.400000px;}
._48{width:179.388000px;}
._45{width:186.360000px;}
._6b{width:188.976000px;}
._53{width:191.421000px;}
._79{width:193.512000px;}
._7f{width:199.506000px;}
._4a{width:204.660000px;}
._44{width:208.140000px;}
._66{width:212.214000px;}
._5e{width:213.774000px;}
._6a{width:224.994000px;}
._36{width:233.040000px;}
._77{width:237.078000px;}
._57{width:240.006000px;}
._54{width:246.030000px;}
._35{width:253.020000px;}
._7b{width:260.283000px;}
._65{width:262.497000px;}
._6e{width:271.332000px;}
._40{width:273.124800px;}
._72{width:278.967000px;}
._5a{width:280.506000px;}
._64{width:292.521000px;}
._58{width:294.036000px;}
._3a{width:301.320000px;}
._59{width:310.530000px;}
._70{width:311.988000px;}
._6f{width:313.473000px;}
._6d{width:316.524000px;}
._5d{width:322.518000px;}
._69{width:327.000000px;}
._3b{width:331.320000px;}
._55{width:339.042000px;}
._37{width:341.340000px;}
._33{width:344.700000px;}
._68{width:348.006000px;}
._7a{width:356.349000px;}
._74{width:358.482000px;}
._4b{width:368.040000px;}
._5b{width:369.705000px;}
._75{width:373.494000px;}
._38{width:378.000000px;}
._76{width:383.997000px;}
._42{width:388.020000px;}
._73{width:393.096000px;}
._34{width:398.040000px;}
._78{width:403.518000px;}
._3f{width:404.700000px;}
._61{width:409.512000px;}
._3e{width:424.680000px;}
._7d{width:430.518000px;}
._56{width:435.000000px;}
._52{width:439.536000px;}
._41{width:468.000000px;}
._6c{width:469.560000px;}
._67{width:501.042000px;}
._60{width:562.548000px;}
._62{width:575.979000px;}
._7c{width:583.554000px;}
._7e{width:693.000000px;}
._2c{width:918.750000px;}
._2d{width:1126.260000px;}
.fc1{color:rgb(25,25,128);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.000000px;}
.fs8{font-size:36.000000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs9{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs6{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:50.595005px;}
.yf8{bottom:57.000000px;}
.y51{bottom:58.500000px;}
.y11f{bottom:69.000000px;}
.y50{bottom:70.500000px;}
.y5{bottom:75.795004px;}
.y4f{bottom:82.500000px;}
.y72{bottom:87.000000px;}
.y11d{bottom:88.500000px;}
.y130{bottom:91.500000px;}
.y4e{bottom:94.500000px;}
.y96{bottom:96.000000px;}
.y4{bottom:100.995005px;}
.yf7{bottom:102.000000px;}
.y71{bottom:105.000000px;}
.y11c{bottom:106.500000px;}
.y12f{bottom:109.500000px;}
.y4d{bottom:112.500000px;}
.y95{bottom:114.000000px;}
.yf6{bottom:115.500000px;}
.y70{bottom:123.000000px;}
.y11b{bottom:124.500000px;}
.y12e{bottom:127.500000px;}
.yf5{bottom:129.000000px;}
.y84{bottom:130.500000px;}
.y94{bottom:132.000000px;}
.y23{bottom:139.264499px;}
.y6f{bottom:141.000000px;}
.yf4{bottom:142.500000px;}
.y12d{bottom:145.500000px;}
.y83{bottom:148.500000px;}
.y93{bottom:150.000000px;}
.yf3{bottom:156.000000px;}
.y6e{bottom:159.000000px;}
.y11a{bottom:160.500000px;}
.y82{bottom:166.500000px;}
.y92{bottom:168.000000px;}
.yf2{bottom:169.500000px;}
.y4c{bottom:177.000000px;}
.y11e{bottom:178.500000px;}
.y12c{bottom:181.500000px;}
.yf1{bottom:183.000000px;}
.y81{bottom:184.500000px;}
.y91{bottom:186.000000px;}
.y4b{bottom:195.000000px;}
.y119{bottom:196.500000px;}
.y1a{bottom:196.933500px;}
.y12b{bottom:199.500000px;}
.y80{bottom:202.500000px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.yf0{bottom:211.500000px;}
.y4a{bottom:213.000000px;}
.y12a{bottom:217.500000px;}
.y7f{bottom:220.500000px;}
.y90{bottom:222.000000px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.yef{bottom:225.000000px;}
.y49{bottom:231.000000px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y129{bottom:235.500000px;}
.y7e{bottom:238.500000px;}
.y8f{bottom:240.000000px;}
.y48{bottom:249.000000px;}
.yee{bottom:252.000000px;}
.y7d{bottom:256.500000px;}
.y8e{bottom:258.000000px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.yc9{bottom:262.500000px;}
.yed{bottom:265.500000px;}
.y47{bottom:267.000000px;}
.yd2{bottom:271.500000px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y7c{bottom:274.500000px;}
.y8d{bottom:276.000000px;}
.y46{bottom:285.000000px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.yd1{bottom:286.500000px;}
.y128{bottom:289.500000px;}
.y7b{bottom:292.500000px;}
.y8c{bottom:294.000000px;}
.y118{bottom:300.000000px;}
.yc8{bottom:301.500000px;}
.y45{bottom:303.000000px;}
.yec{bottom:307.500000px;}
.y121{bottom:309.000000px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y7a{bottom:310.500000px;}
.y8b{bottom:312.000000px;}
.y117{bottom:313.500000px;}
.yc7{bottom:316.500000px;}
.y44{bottom:321.000000px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y120{bottom:324.000000px;}
.y116{bottom:327.000000px;}
.y79{bottom:328.500000px;}
.y8a{bottom:330.000000px;}
.yc6{bottom:331.500000px;}
.y43{bottom:339.000000px;}
.y115{bottom:340.500000px;}
.y127{bottom:343.500000px;}
.y78{bottom:346.500000px;}
.y89{bottom:348.000000px;}
.y11{bottom:348.133500px;}
.yeb{bottom:349.500000px;}
.y114{bottom:354.000000px;}
.y42{bottom:357.000000px;}
.yd0{bottom:361.500000px;}
.y77{bottom:364.500000px;}
.y88{bottom:366.000000px;}
.y41{bottom:375.000000px;}
.yc5{bottom:376.500000px;}
.yea{bottom:378.000000px;}
.y126{bottom:379.500000px;}
.y113{bottom:382.500000px;}
.y87{bottom:384.000000px;}
.y10{bottom:386.785499px;}
.yc4{bottom:391.500000px;}
.y40{bottom:393.000000px;}
.y76{bottom:400.500000px;}
.y86{bottom:402.000000px;}
.yc3{bottom:406.500000px;}
.yf{bottom:408.044999px;}
.y3f{bottom:411.000000px;}
.y125{bottom:415.500000px;}
.y85{bottom:420.000000px;}
.yc2{bottom:421.500000px;}
.y3e{bottom:429.000000px;}
.ye9{bottom:433.500000px;}
.yc1{bottom:436.500000px;}
.y75{bottom:438.000000px;}
.y112{bottom:439.500000px;}
.y3d{bottom:447.000000px;}
.yc0{bottom:451.500000px;}
.ye8{bottom:462.000000px;}
.y3c{bottom:465.000000px;}
.ybf{bottom:466.500000px;}
.y111{bottom:468.000000px;}
.y124{bottom:469.500000px;}
.ye7{bottom:475.500000px;}
.ybe{bottom:481.500000px;}
.y3b{bottom:483.000000px;}
.ye{bottom:484.864502px;}
.ye6{bottom:489.000000px;}
.y110{bottom:495.000000px;}
.ycf{bottom:496.500000px;}
.y3a{bottom:501.000000px;}
.ye5{bottom:502.500000px;}
.yd{bottom:502.864502px;}
.y123{bottom:505.500000px;}
.y10f{bottom:508.500000px;}
.ybd{bottom:511.500000px;}
.y73{bottom:519.000000px;}
.yc{bottom:520.864502px;}
.y10e{bottom:522.000000px;}
.y122{bottom:523.500000px;}
.ye4{bottom:531.000000px;}
.y10d{bottom:535.500000px;}
.y39{bottom:537.000000px;}
.yb{bottom:538.864499px;}
.ybc{bottom:541.500000px;}
.ye3{bottom:544.500000px;}
.y6d{bottom:555.000000px;}
.ybb{bottom:556.500000px;}
.ya{bottom:556.864499px;}
.ye2{bottom:558.000000px;}
.y10c{bottom:564.000000px;}
.yb6{bottom:571.500000px;}
.y6c{bottom:573.000000px;}
.yba{bottom:577.500000px;}
.yb5{bottom:586.500000px;}
.y6b{bottom:591.000000px;}
.yb9{bottom:592.500000px;}
.ye1{bottom:600.000000px;}
.yb4{bottom:601.500000px;}
.y10b{bottom:606.000000px;}
.yb8{bottom:607.500000px;}
.y6a{bottom:609.000000px;}
.ye0{bottom:613.500000px;}
.yce{bottom:616.500000px;}
.y38{bottom:618.000000px;}
.y10a{bottom:619.500000px;}
.yb3{bottom:622.500000px;}
.y69{bottom:627.000000px;}
.y109{bottom:633.000000px;}
.yb2{bottom:637.500000px;}
.ydf{bottom:642.000000px;}
.y68{bottom:645.000000px;}
.y9{bottom:645.510000px;}
.yb1{bottom:646.500000px;}
.yb0{bottom:661.500000px;}
.y67{bottom:663.000000px;}
.y8{bottom:666.771000px;}
.yb7{bottom:667.500000px;}
.yde{bottom:670.500000px;}
.y37{bottom:672.000000px;}
.y108{bottom:675.000000px;}
.y66{bottom:681.000000px;}
.ydd{bottom:684.000000px;}
.y107{bottom:688.500000px;}
.y36{bottom:690.000000px;}
.yaf{bottom:691.500000px;}
.y65{bottom:699.000000px;}
.y106{bottom:702.000000px;}
.ycd{bottom:706.500000px;}
.y35{bottom:708.000000px;}
.ydc{bottom:712.500000px;}
.y64{bottom:717.000000px;}
.ya7{bottom:721.500000px;}
.y34{bottom:726.000000px;}
.y7{bottom:726.298500px;}
.y105{bottom:730.500000px;}
.y63{bottom:735.000000px;}
.ya6{bottom:736.500000px;}
.yae{bottom:742.500000px;}
.y33{bottom:744.000000px;}
.ya5{bottom:751.500000px;}
.y3{bottom:752.599495px;}
.y62{bottom:753.000000px;}
.ydb{bottom:754.500000px;}
.yad{bottom:757.500000px;}
.y32{bottom:762.000000px;}
.ya4{bottom:766.500000px;}
.yda{bottom:768.000000px;}
.y61{bottom:771.000000px;}
.yac{bottom:772.500000px;}
.y31{bottom:780.000000px;}
.ya3{bottom:781.500000px;}
.y104{bottom:786.000000px;}
.yab{bottom:787.500000px;}
.y60{bottom:789.000000px;}
.ya2{bottom:796.500000px;}
.y30{bottom:798.000000px;}
.y103{bottom:799.500000px;}
.yaa{bottom:802.500000px;}
.y5f{bottom:807.000000px;}
.yd9{bottom:810.000000px;}
.ycc{bottom:811.500000px;}
.y102{bottom:813.000000px;}
.ya1{bottom:817.500000px;}
.y5e{bottom:825.000000px;}
.ya9{bottom:826.500000px;}
.ya0{bottom:832.500000px;}
.yd8{bottom:838.500000px;}
.ya8{bottom:841.500000px;}
.y5d{bottom:843.000000px;}
.y9f{bottom:847.500000px;}
.yd7{bottom:852.000000px;}
.y101{bottom:855.000000px;}
.ycb{bottom:856.500000px;}
.y5c{bottom:861.000000px;}
.yd6{bottom:865.500000px;}
.y100{bottom:868.500000px;}
.y9e{bottom:871.500000px;}
.y5b{bottom:879.000000px;}
.y2{bottom:879.369000px;}
.yff{bottom:882.000000px;}
.yca{bottom:886.500000px;}
.y2f{bottom:888.000000px;}
.yfe{bottom:895.500000px;}
.y5a{bottom:897.000000px;}
.y9d{bottom:901.500000px;}
.y2e{bottom:906.000000px;}
.y9a{bottom:907.500000px;}
.y59{bottom:915.000000px;}
.y9c{bottom:916.500000px;}
.y99{bottom:922.500000px;}
.y2d{bottom:924.000000px;}
.y9b{bottom:931.500000px;}
.y58{bottom:933.000000px;}
.y98{bottom:937.500000px;}
.yd5{bottom:940.500000px;}
.y57{bottom:951.000000px;}
.yfd{bottom:952.500000px;}
.yd4{bottom:954.000000px;}
.y97{bottom:966.000000px;}
.y1{bottom:966.726000px;}
.yd3{bottom:967.500000px;}
.y56{bottom:969.000000px;}
.y2c{bottom:972.000000px;}
.yfc{bottom:979.500000px;}
.y55{bottom:987.000000px;}
.y2b{bottom:996.000000px;}
.y54{bottom:1005.000000px;}
.yfb{bottom:1008.000000px;}
.y2a{bottom:1020.000000px;}
.yfa{bottom:1021.500000px;}
.y53{bottom:1023.000000px;}
.y74{bottom:1026.000000px;}
.yf9{bottom:1035.000000px;}
.y52{bottom:1041.000000px;}
.y29{bottom:1044.000000px;}
.y28{bottom:1089.000000px;}
.y27{bottom:1101.000000px;}
.y26{bottom:1113.000000px;}
.y25{bottom:1125.000000px;}
.y24{bottom:1137.000000px;}
.h10{height:29.443359px;}
.h7{height:32.130000px;}
.h13{height:35.332031px;}
.h6{height:45.900000px;}
.h9{height:47.109375px;}
.h3{height:48.195000px;}
.ha{height:48.375000px;}
.h15{height:52.998047px;}
.h11{height:53.443359px;}
.h17{height:54.421875px;}
.h2{height:55.080000px;}
.h18{height:58.857422px;}
.h12{height:58.886719px;}
.h5{height:64.260000px;}
.hb{height:70.628906px;}
.he{height:70.664062px;}
.hd{height:71.085938px;}
.hf{height:72.562500px;}
.hc{height:96.750000px;}
.h16{height:106.998047px;}
.h14{height:118.886719px;}
.h4{height:119.055004px;}
.h8{height:1186.500000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w3{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:81.000000px;}
.x23{left:84.750000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x1a{left:177.000000px;}
.x24{left:180.750000px;}
.x2d{left:187.992000px;}
.xa{left:196.087500px;}
.xb{left:200.677500px;}
.x4{left:203.484001px;}
.x12{left:205.500000px;}
.x11{left:260.478000px;}
.x17{left:310.137750px;}
.x16{left:313.141500px;}
.x9{left:320.040000px;}
.x20{left:328.119750px;}
.x13{left:330.000000px;}
.x1d{left:331.501500px;}
.x10{left:332.542500px;}
.x28{left:335.251500px;}
.x27{left:343.122000px;}
.xc{left:352.875000px;}
.x21{left:354.748500px;}
.x2a{left:362.251500px;}
.x2b{left:363.372000px;}
.x29{left:364.877250px;}
.xd{left:369.427500px;}
.xf{left:375.247500px;}
.xe{left:379.005000px;}
.x18{left:447.379500px;}
.x3{left:454.959000px;}
.x6{left:472.500000px;}
.x1b{left:564.000000px;}
.x25{left:567.750000px;}
.x14{left:579.000000px;}
.x8{left:593.004000px;}
.x7{left:696.348000px;}
.x15{left:703.500000px;}
.x1e{left:723.756750px;}
.x26{left:727.506750px;}
.x1f{left:732.754500px;}
.x19{left:733.881750px;}
.x1c{left:737.256750px;}
.x2c{left:739.886250px;}
.x22{left:777.000000px;}
@media print{
.v2{vertical-align:-21.333333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.v4{vertical-align:48.000000pt;}
.v3{vertical-align:53.333333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:8.947200pt;}
.ls1{letter-spacing:41.226667pt;}
.ls4{letter-spacing:41.536000pt;}
.ls3{letter-spacing:52.160000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws5{word-spacing:-13.333333pt;}
.ws1{word-spacing:-10.666667pt;}
.ws4{word-spacing:-8.000000pt;}
.ws3{word-spacing:-6.666667pt;}
.ws0{word-spacing:0.000000pt;}
.wsc{word-spacing:76.853333pt;}
.ws8{word-spacing:139.040000pt;}
.ws11{word-spacing:146.690667pt;}
.wse{word-spacing:162.720000pt;}
.wsb{word-spacing:186.346667pt;}
.ws14{word-spacing:206.666667pt;}
.wsf{word-spacing:210.133333pt;}
.ws10{word-spacing:233.813333pt;}
.wsd{word-spacing:272.320000pt;}
.ws6{word-spacing:301.920000pt;}
.ws7{word-spacing:322.666667pt;}
.wsa{word-spacing:331.573333pt;}
.ws9{word-spacing:349.333333pt;}
.ws12{word-spacing:380.056000pt;}
.ws13{word-spacing:382.696000pt;}
._84{margin-left:-10.796800pt;}
._16{margin-left:-8.467200pt;}
._f{margin-left:-7.225600pt;}
._4{margin-left:-5.708800pt;}
._2{margin-left:-4.693333pt;}
._e{margin-left:-3.545600pt;}
._1{margin-left:-2.368000pt;}
._3{margin-left:-1.152000pt;}
._14{width:1.299200pt;}
._5{width:2.400000pt;}
._6{width:3.347200pt;}
._7{width:4.556800pt;}
._13{width:5.529600pt;}
._15{width:7.142400pt;}
._1b{width:8.243200pt;}
._c{width:9.216000pt;}
._1c{width:10.348800pt;}
._19{width:11.616000pt;}
._1a{width:12.915200pt;}
._9{width:13.811200pt;}
._8{width:15.001600pt;}
._0{width:16.000000pt;}
._b{width:17.504000pt;}
._18{width:18.681600pt;}
._d{width:19.891200pt;}
._a{width:21.369600pt;}
._10{width:22.374400pt;}
._23{width:23.296000pt;}
._22{width:24.934400pt;}
._12{width:26.112000pt;}
._1d{width:27.033600pt;}
._20{width:28.108800pt;}
._21{width:29.222400pt;}
._2b{width:30.144000pt;}
._2e{width:31.513600pt;}
._11{width:32.729600pt;}
._30{width:33.817600pt;}
._1e{width:34.745600pt;}
._17{width:35.872000pt;}
._26{width:36.857600pt;}
._4d{width:37.849600pt;}
._2f{width:39.155200pt;}
._81{width:40.307200pt;}
._1f{width:41.196800pt;}
._50{width:42.092800pt;}
._25{width:43.059200pt;}
._4f{width:44.096000pt;}
._28{width:45.555200pt;}
._31{width:46.937600pt;}
._4e{width:48.422400pt;}
._4c{width:50.163200pt;}
._80{width:51.238400pt;}
._27{width:52.659200pt;}
._82{width:53.792000pt;}
._24{width:54.835200pt;}
._32{width:55.776000pt;}
._2a{width:57.824000pt;}
._85{width:59.565867pt;}
._49{width:60.533333pt;}
._83{width:61.836800pt;}
._29{width:63.564800pt;}
._43{width:78.293333pt;}
._47{width:79.733333pt;}
._63{width:99.989333pt;}
._71{width:103.994667pt;}
._51{width:111.941333pt;}
._3d{width:118.293333pt;}
._5f{width:129.365333pt;}
._39{width:136.213333pt;}
._5c{width:145.349333pt;}
._3c{width:149.493333pt;}
._46{width:156.800000pt;}
._48{width:159.456000pt;}
._45{width:165.653333pt;}
._6b{width:167.978667pt;}
._53{width:170.152000pt;}
._79{width:172.010667pt;}
._7f{width:177.338667pt;}
._4a{width:181.920000pt;}
._44{width:185.013333pt;}
._66{width:188.634667pt;}
._5e{width:190.021333pt;}
._6a{width:199.994667pt;}
._36{width:207.146667pt;}
._77{width:210.736000pt;}
._57{width:213.338667pt;}
._54{width:218.693333pt;}
._35{width:224.906667pt;}
._7b{width:231.362667pt;}
._65{width:233.330667pt;}
._6e{width:241.184000pt;}
._40{width:242.777600pt;}
._72{width:247.970667pt;}
._5a{width:249.338667pt;}
._64{width:260.018667pt;}
._58{width:261.365333pt;}
._3a{width:267.840000pt;}
._59{width:276.026667pt;}
._70{width:277.322667pt;}
._6f{width:278.642667pt;}
._6d{width:281.354667pt;}
._5d{width:286.682667pt;}
._69{width:290.666667pt;}
._3b{width:294.506667pt;}
._55{width:301.370667pt;}
._37{width:303.413333pt;}
._33{width:306.400000pt;}
._68{width:309.338667pt;}
._7a{width:316.754667pt;}
._74{width:318.650667pt;}
._4b{width:327.146667pt;}
._5b{width:328.626667pt;}
._75{width:331.994667pt;}
._38{width:336.000000pt;}
._76{width:341.330667pt;}
._42{width:344.906667pt;}
._73{width:349.418667pt;}
._34{width:353.813333pt;}
._78{width:358.682667pt;}
._3f{width:359.733333pt;}
._61{width:364.010667pt;}
._3e{width:377.493333pt;}
._7d{width:382.682667pt;}
._56{width:386.666667pt;}
._52{width:390.698667pt;}
._41{width:416.000000pt;}
._6c{width:417.386667pt;}
._67{width:445.370667pt;}
._60{width:500.042667pt;}
._62{width:511.981333pt;}
._7c{width:518.714667pt;}
._7e{width:616.000000pt;}
._2c{width:816.666667pt;}
._2d{width:1001.120000pt;}
.fs7{font-size:26.666667pt;}
.fs8{font-size:32.000000pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs9{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs6{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:44.973338pt;}
.yf8{bottom:50.666667pt;}
.y51{bottom:52.000000pt;}
.y11f{bottom:61.333333pt;}
.y50{bottom:62.666667pt;}
.y5{bottom:67.373337pt;}
.y4f{bottom:73.333333pt;}
.y72{bottom:77.333333pt;}
.y11d{bottom:78.666667pt;}
.y130{bottom:81.333333pt;}
.y4e{bottom:84.000000pt;}
.y96{bottom:85.333333pt;}
.y4{bottom:89.773337pt;}
.yf7{bottom:90.666667pt;}
.y71{bottom:93.333333pt;}
.y11c{bottom:94.666667pt;}
.y12f{bottom:97.333333pt;}
.y4d{bottom:100.000000pt;}
.y95{bottom:101.333333pt;}
.yf6{bottom:102.666667pt;}
.y70{bottom:109.333333pt;}
.y11b{bottom:110.666667pt;}
.y12e{bottom:113.333333pt;}
.yf5{bottom:114.666667pt;}
.y84{bottom:116.000000pt;}
.y94{bottom:117.333333pt;}
.y23{bottom:123.790666pt;}
.y6f{bottom:125.333333pt;}
.yf4{bottom:126.666667pt;}
.y12d{bottom:129.333333pt;}
.y83{bottom:132.000000pt;}
.y93{bottom:133.333333pt;}
.yf3{bottom:138.666667pt;}
.y6e{bottom:141.333333pt;}
.y11a{bottom:142.666667pt;}
.y82{bottom:148.000000pt;}
.y92{bottom:149.333333pt;}
.yf2{bottom:150.666667pt;}
.y4c{bottom:157.333333pt;}
.y11e{bottom:158.666667pt;}
.y12c{bottom:161.333333pt;}
.yf1{bottom:162.666667pt;}
.y81{bottom:164.000000pt;}
.y91{bottom:165.333333pt;}
.y4b{bottom:173.333333pt;}
.y119{bottom:174.666667pt;}
.y1a{bottom:175.052000pt;}
.y12b{bottom:177.333333pt;}
.y80{bottom:180.000000pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.yf0{bottom:188.000000pt;}
.y4a{bottom:189.333333pt;}
.y12a{bottom:193.333333pt;}
.y7f{bottom:196.000000pt;}
.y90{bottom:197.333333pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.yef{bottom:200.000000pt;}
.y49{bottom:205.333333pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y129{bottom:209.333333pt;}
.y7e{bottom:212.000000pt;}
.y8f{bottom:213.333333pt;}
.y48{bottom:221.333333pt;}
.yee{bottom:224.000000pt;}
.y7d{bottom:228.000000pt;}
.y8e{bottom:229.333333pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.yc9{bottom:233.333333pt;}
.yed{bottom:236.000000pt;}
.y47{bottom:237.333333pt;}
.yd2{bottom:241.333333pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y7c{bottom:244.000000pt;}
.y8d{bottom:245.333333pt;}
.y46{bottom:253.333333pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.yd1{bottom:254.666667pt;}
.y128{bottom:257.333333pt;}
.y7b{bottom:260.000000pt;}
.y8c{bottom:261.333333pt;}
.y118{bottom:266.666667pt;}
.yc8{bottom:268.000000pt;}
.y45{bottom:269.333333pt;}
.yec{bottom:273.333333pt;}
.y121{bottom:274.666667pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y7a{bottom:276.000000pt;}
.y8b{bottom:277.333333pt;}
.y117{bottom:278.666667pt;}
.yc7{bottom:281.333333pt;}
.y44{bottom:285.333333pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y120{bottom:288.000000pt;}
.y116{bottom:290.666667pt;}
.y79{bottom:292.000000pt;}
.y8a{bottom:293.333333pt;}
.yc6{bottom:294.666667pt;}
.y43{bottom:301.333333pt;}
.y115{bottom:302.666667pt;}
.y127{bottom:305.333333pt;}
.y78{bottom:308.000000pt;}
.y89{bottom:309.333333pt;}
.y11{bottom:309.452000pt;}
.yeb{bottom:310.666667pt;}
.y114{bottom:314.666667pt;}
.y42{bottom:317.333333pt;}
.yd0{bottom:321.333333pt;}
.y77{bottom:324.000000pt;}
.y88{bottom:325.333333pt;}
.y41{bottom:333.333333pt;}
.yc5{bottom:334.666667pt;}
.yea{bottom:336.000000pt;}
.y126{bottom:337.333333pt;}
.y113{bottom:340.000000pt;}
.y87{bottom:341.333333pt;}
.y10{bottom:343.809333pt;}
.yc4{bottom:348.000000pt;}
.y40{bottom:349.333333pt;}
.y76{bottom:356.000000pt;}
.y86{bottom:357.333333pt;}
.yc3{bottom:361.333333pt;}
.yf{bottom:362.706666pt;}
.y3f{bottom:365.333333pt;}
.y125{bottom:369.333333pt;}
.y85{bottom:373.333333pt;}
.yc2{bottom:374.666667pt;}
.y3e{bottom:381.333333pt;}
.ye9{bottom:385.333333pt;}
.yc1{bottom:388.000000pt;}
.y75{bottom:389.333333pt;}
.y112{bottom:390.666667pt;}
.y3d{bottom:397.333333pt;}
.yc0{bottom:401.333333pt;}
.ye8{bottom:410.666667pt;}
.y3c{bottom:413.333333pt;}
.ybf{bottom:414.666667pt;}
.y111{bottom:416.000000pt;}
.y124{bottom:417.333333pt;}
.ye7{bottom:422.666667pt;}
.ybe{bottom:428.000000pt;}
.y3b{bottom:429.333333pt;}
.ye{bottom:430.990669pt;}
.ye6{bottom:434.666667pt;}
.y110{bottom:440.000000pt;}
.ycf{bottom:441.333333pt;}
.y3a{bottom:445.333333pt;}
.ye5{bottom:446.666667pt;}
.yd{bottom:446.990669pt;}
.y123{bottom:449.333333pt;}
.y10f{bottom:452.000000pt;}
.ybd{bottom:454.666667pt;}
.y73{bottom:461.333333pt;}
.yc{bottom:462.990669pt;}
.y10e{bottom:464.000000pt;}
.y122{bottom:465.333333pt;}
.ye4{bottom:472.000000pt;}
.y10d{bottom:476.000000pt;}
.y39{bottom:477.333333pt;}
.yb{bottom:478.990666pt;}
.ybc{bottom:481.333333pt;}
.ye3{bottom:484.000000pt;}
.y6d{bottom:493.333333pt;}
.ybb{bottom:494.666667pt;}
.ya{bottom:494.990666pt;}
.ye2{bottom:496.000000pt;}
.y10c{bottom:501.333333pt;}
.yb6{bottom:508.000000pt;}
.y6c{bottom:509.333333pt;}
.yba{bottom:513.333333pt;}
.yb5{bottom:521.333333pt;}
.y6b{bottom:525.333333pt;}
.yb9{bottom:526.666667pt;}
.ye1{bottom:533.333333pt;}
.yb4{bottom:534.666667pt;}
.y10b{bottom:538.666667pt;}
.yb8{bottom:540.000000pt;}
.y6a{bottom:541.333333pt;}
.ye0{bottom:545.333333pt;}
.yce{bottom:548.000000pt;}
.y38{bottom:549.333333pt;}
.y10a{bottom:550.666667pt;}
.yb3{bottom:553.333333pt;}
.y69{bottom:557.333333pt;}
.y109{bottom:562.666667pt;}
.yb2{bottom:566.666667pt;}
.ydf{bottom:570.666667pt;}
.y68{bottom:573.333333pt;}
.y9{bottom:573.786667pt;}
.yb1{bottom:574.666667pt;}
.yb0{bottom:588.000000pt;}
.y67{bottom:589.333333pt;}
.y8{bottom:592.685334pt;}
.yb7{bottom:593.333333pt;}
.yde{bottom:596.000000pt;}
.y37{bottom:597.333333pt;}
.y108{bottom:600.000000pt;}
.y66{bottom:605.333333pt;}
.ydd{bottom:608.000000pt;}
.y107{bottom:612.000000pt;}
.y36{bottom:613.333333pt;}
.yaf{bottom:614.666667pt;}
.y65{bottom:621.333333pt;}
.y106{bottom:624.000000pt;}
.ycd{bottom:628.000000pt;}
.y35{bottom:629.333333pt;}
.ydc{bottom:633.333333pt;}
.y64{bottom:637.333333pt;}
.ya7{bottom:641.333333pt;}
.y34{bottom:645.333333pt;}
.y7{bottom:645.598667pt;}
.y105{bottom:649.333333pt;}
.y63{bottom:653.333333pt;}
.ya6{bottom:654.666667pt;}
.yae{bottom:660.000000pt;}
.y33{bottom:661.333333pt;}
.ya5{bottom:668.000000pt;}
.y3{bottom:668.977329pt;}
.y62{bottom:669.333333pt;}
.ydb{bottom:670.666667pt;}
.yad{bottom:673.333333pt;}
.y32{bottom:677.333333pt;}
.ya4{bottom:681.333333pt;}
.yda{bottom:682.666667pt;}
.y61{bottom:685.333333pt;}
.yac{bottom:686.666667pt;}
.y31{bottom:693.333333pt;}
.ya3{bottom:694.666667pt;}
.y104{bottom:698.666667pt;}
.yab{bottom:700.000000pt;}
.y60{bottom:701.333333pt;}
.ya2{bottom:708.000000pt;}
.y30{bottom:709.333333pt;}
.y103{bottom:710.666667pt;}
.yaa{bottom:713.333333pt;}
.y5f{bottom:717.333333pt;}
.yd9{bottom:720.000000pt;}
.ycc{bottom:721.333333pt;}
.y102{bottom:722.666667pt;}
.ya1{bottom:726.666667pt;}
.y5e{bottom:733.333333pt;}
.ya9{bottom:734.666667pt;}
.ya0{bottom:740.000000pt;}
.yd8{bottom:745.333333pt;}
.ya8{bottom:748.000000pt;}
.y5d{bottom:749.333333pt;}
.y9f{bottom:753.333333pt;}
.yd7{bottom:757.333333pt;}
.y101{bottom:760.000000pt;}
.ycb{bottom:761.333333pt;}
.y5c{bottom:765.333333pt;}
.yd6{bottom:769.333333pt;}
.y100{bottom:772.000000pt;}
.y9e{bottom:774.666667pt;}
.y5b{bottom:781.333333pt;}
.y2{bottom:781.661334pt;}
.yff{bottom:784.000000pt;}
.yca{bottom:788.000000pt;}
.y2f{bottom:789.333333pt;}
.yfe{bottom:796.000000pt;}
.y5a{bottom:797.333333pt;}
.y9d{bottom:801.333333pt;}
.y2e{bottom:805.333333pt;}
.y9a{bottom:806.666667pt;}
.y59{bottom:813.333333pt;}
.y9c{bottom:814.666667pt;}
.y99{bottom:820.000000pt;}
.y2d{bottom:821.333333pt;}
.y9b{bottom:828.000000pt;}
.y58{bottom:829.333333pt;}
.y98{bottom:833.333333pt;}
.yd5{bottom:836.000000pt;}
.y57{bottom:845.333333pt;}
.yfd{bottom:846.666667pt;}
.yd4{bottom:848.000000pt;}
.y97{bottom:858.666667pt;}
.y1{bottom:859.312000pt;}
.yd3{bottom:860.000000pt;}
.y56{bottom:861.333333pt;}
.y2c{bottom:864.000000pt;}
.yfc{bottom:870.666667pt;}
.y55{bottom:877.333333pt;}
.y2b{bottom:885.333333pt;}
.y54{bottom:893.333333pt;}
.yfb{bottom:896.000000pt;}
.y2a{bottom:906.666667pt;}
.yfa{bottom:908.000000pt;}
.y53{bottom:909.333333pt;}
.y74{bottom:912.000000pt;}
.yf9{bottom:920.000000pt;}
.y52{bottom:925.333333pt;}
.y29{bottom:928.000000pt;}
.y28{bottom:968.000000pt;}
.y27{bottom:978.666667pt;}
.y26{bottom:989.333333pt;}
.y25{bottom:1000.000000pt;}
.y24{bottom:1010.666667pt;}
.h10{height:26.171875pt;}
.h7{height:28.560000pt;}
.h13{height:31.406250pt;}
.h6{height:40.800000pt;}
.h9{height:41.875000pt;}
.h3{height:42.840000pt;}
.ha{height:43.000000pt;}
.h15{height:47.109375pt;}
.h11{height:47.505208pt;}
.h17{height:48.375000pt;}
.h2{height:48.960000pt;}
.h18{height:52.317708pt;}
.h12{height:52.343750pt;}
.h5{height:57.120000pt;}
.hb{height:62.781250pt;}
.he{height:62.812500pt;}
.hd{height:63.187500pt;}
.hf{height:64.500000pt;}
.hc{height:86.000000pt;}
.h16{height:95.109375pt;}
.h14{height:105.677083pt;}
.h4{height:105.826671pt;}
.h8{height:1054.666667pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w3{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:72.000000pt;}
.x23{left:75.333333pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x1a{left:157.333333pt;}
.x24{left:160.666667pt;}
.x2d{left:167.104000pt;}
.xa{left:174.300000pt;}
.xb{left:178.380000pt;}
.x4{left:180.874667pt;}
.x12{left:182.666667pt;}
.x11{left:231.536000pt;}
.x17{left:275.678000pt;}
.x16{left:278.348000pt;}
.x9{left:284.480000pt;}
.x20{left:291.662000pt;}
.x13{left:293.333333pt;}
.x1d{left:294.668000pt;}
.x10{left:295.593333pt;}
.x28{left:298.001333pt;}
.x27{left:304.997333pt;}
.xc{left:313.666667pt;}
.x21{left:315.332000pt;}
.x2a{left:322.001333pt;}
.x2b{left:322.997333pt;}
.x29{left:324.335333pt;}
.xd{left:328.380000pt;}
.xf{left:333.553333pt;}
.xe{left:336.893333pt;}
.x18{left:397.670667pt;}
.x3{left:404.408000pt;}
.x6{left:420.000000pt;}
.x1b{left:501.333333pt;}
.x25{left:504.666667pt;}
.x14{left:514.666667pt;}
.x8{left:527.114667pt;}
.x7{left:618.976000pt;}
.x15{left:625.333333pt;}
.x1e{left:643.339333pt;}
.x26{left:646.672667pt;}
.x1f{left:651.337333pt;}
.x19{left:652.339333pt;}
.x1c{left:655.339333pt;}
.x2c{left:657.676667pt;}
.x22{left:690.666667pt;}
}




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