
    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_3ebf1398d453cc0debc2fa1d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_00e77cc1c33f82693720013c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.437000;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_ab012b67e83245041e4eb83c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.437000;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_3c6c8075e03c2e7109bce8a1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.437000;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_1659825fc9e0269dc8511f3d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.004883;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_4d78db65dcee1dbb0a91fbb9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.219238;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_e150d737c681359be281791e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_78a8a425d963638871583aa4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.004883;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_3a3ec9dbbbe36b9a644f0fb6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.568848;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_42c523a221dac7103b90f0f4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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_fdc5aa85cc48d6dfda79acfd.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.437000;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;}
.m2{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(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-15.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:1.536000px;}
.ls1{letter-spacing:2.166000px;}
.lsf{letter-spacing:2.258400px;}
.ls7{letter-spacing:2.808000px;}
.ls3{letter-spacing:3.000000px;}
.lsd{letter-spacing:5.808000px;}
.ls0{letter-spacing:6.000000px;}
.lsc{letter-spacing:8.526000px;}
.ls4{letter-spacing:12.000000px;}
.lsb{letter-spacing:13.896000px;}
.lse{letter-spacing:15.000000px;}
.ls9{letter-spacing:17.040000px;}
.lsa{letter-spacing:18.126000px;}
.ls8{letter-spacing:26.187000px;}
.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:-30.072000px;}
.ws9{word-spacing:-24.975000px;}
.ws11{word-spacing:-24.204000px;}
.ws12{word-spacing:-24.072000px;}
.ws6{word-spacing:-23.208000px;}
.wsc{word-spacing:-20.307000px;}
.wsb{word-spacing:-18.813000px;}
.wsd{word-spacing:-17.982000px;}
.ws1{word-spacing:-16.992000px;}
.wse{word-spacing:-16.491000px;}
.ws3{word-spacing:-15.618000px;}
.ws10{word-spacing:-14.307000px;}
.ws5{word-spacing:-13.452000px;}
.ws0{word-spacing:-7.992000px;}
.ws14{word-spacing:-0.057000px;}
.wsf{word-spacing:-0.054000px;}
.ws13{word-spacing:-0.045600px;}
.ws7{word-spacing:0.000000px;}
.ws8{word-spacing:10.146000px;}
.ws4{word-spacing:14.922000px;}
.wsa{word-spacing:27.648000px;}
._42{margin-left:-27.951000px;}
._38{margin-left:-24.102000px;}
._3b{margin-left:-21.249000px;}
._32{margin-left:-19.611000px;}
._1d{margin-left:-18.354000px;}
._17{margin-left:-16.176000px;}
._1e{margin-left:-14.442000px;}
._2b{margin-left:-12.915000px;}
._2a{margin-left:-11.712000px;}
._14{margin-left:-10.368000px;}
._11{margin-left:-8.856000px;}
._16{margin-left:-7.428000px;}
._1a{margin-left:-6.276000px;}
._10{margin-left:-5.256000px;}
._f{margin-left:-3.600000px;}
._20{margin-left:-2.577000px;}
._0{margin-left:-1.392000px;}
._13{width:1.224000px;}
._12{width:2.232000px;}
._1c{width:3.246000px;}
._19{width:4.512000px;}
._1b{width:5.856000px;}
._15{width:7.254000px;}
._24{width:8.808000px;}
._5{width:10.269000px;}
._1{width:11.466000px;}
._46{width:12.474000px;}
._2{width:13.482000px;}
._9{width:14.679000px;}
._4{width:16.065000px;}
._21{width:17.766000px;}
._30{width:19.512000px;}
._6{width:20.664000px;}
._8{width:22.491000px;}
._d{width:24.444000px;}
._7{width:26.208000px;}
._3{width:27.594000px;}
._1f{width:28.992000px;}
._a{width:30.114000px;}
._26{width:31.305000px;}
._34{width:32.352000px;}
._28{width:33.546000px;}
._b{width:35.280000px;}
._25{width:37.107000px;}
._e{width:38.115000px;}
._22{width:39.996000px;}
._27{width:41.058000px;}
._2c{width:42.711000px;}
._c{width:45.360000px;}
._29{width:50.691000px;}
._2d{width:54.711000px;}
._40{width:57.876000px;}
._3e{width:59.202000px;}
._45{width:62.670000px;}
._2e{width:64.002000px;}
._4c{width:68.628000px;}
._2f{width:73.299000px;}
._49{width:79.428000px;}
._41{width:82.857000px;}
._35{width:91.344000px;}
._39{width:94.986000px;}
._43{width:110.586000px;}
._33{width:118.122000px;}
._31{width:128.598000px;}
._23{width:140.487000px;}
._36{width:145.503000px;}
._3f{width:148.158000px;}
._3a{width:177.696000px;}
._18{width:195.192000px;}
._4b{width:264.942000px;}
._3d{width:281.280000px;}
._48{width:285.399000px;}
._4a{width:341.940000px;}
._50{width:471.597000px;}
._4e{width:736.038000px;}
._3c{width:776.316000px;}
._47{width:927.990000px;}
._4d{width:976.098000px;}
._4f{width:1104.447000px;}
._37{width:1870.974000px;}
._44{width:1896.633000px;}
.fc2{color:transparent;}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:24.000000px;}
.fs9{font-size:27.000000px;}
.fsc{font-size:39.000000px;}
.fsd{font-size:45.600000px;}
.fs6{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fs4{font-size:57.000000px;}
.fsb{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs3{font-size:66.000000px;}
.fsa{font-size:69.000000px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:75.000000px;}
.fs5{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y2e{bottom:3.105000px;}
.y5c{bottom:7.228355px;}
.y106{bottom:7.228357px;}
.y86{bottom:7.228363px;}
.y2d{bottom:7.228369px;}
.yde{bottom:7.228371px;}
.yb0{bottom:64.770000px;}
.ydd{bottom:68.565000px;}
.y5b{bottom:81.585000px;}
.yaf{bottom:82.020000px;}
.y132{bottom:83.970000px;}
.ydc{bottom:88.515000px;}
.y85{bottom:91.800000px;}
.y5a{bottom:98.835000px;}
.y2c{bottom:100.920000px;}
.y131{bottom:102.870000px;}
.ydb{bottom:108.015000px;}
.y84{bottom:111.750000px;}
.y59{bottom:117.435000px;}
.y2b{bottom:120.720000px;}
.y130{bottom:123.120000px;}
.yda{bottom:126.315000px;}
.y83{bottom:129.900000px;}
.y58{bottom:136.035000px;}
.y105{bottom:137.130000px;}
.y2a{bottom:139.020000px;}
.y12f{bottom:141.420000px;}
.yd9{bottom:145.515000px;}
.y82{bottom:148.200000px;}
.y104{bottom:149.580000px;}
.y57{bottom:154.785000px;}
.yae{bottom:156.870000px;}
.y29{bottom:157.320000px;}
.y12e{bottom:160.020000px;}
.yd8{bottom:163.815000px;}
.y81{bottom:167.100000px;}
.y103{bottom:167.730000px;}
.y56{bottom:173.685000px;}
.yad{bottom:175.170000px;}
.y28{bottom:176.220000px;}
.y12d{bottom:178.920000px;}
.yd7{bottom:182.265000px;}
.y80{bottom:185.850000px;}
.y55{bottom:192.285000px;}
.yac{bottom:194.070000px;}
.y27{bottom:194.670000px;}
.y12c{bottom:197.370000px;}
.yd6{bottom:200.865000px;}
.y7f{bottom:203.850000px;}
.y54{bottom:210.285000px;}
.yab{bottom:212.520000px;}
.y26{bottom:213.270000px;}
.y12b{bottom:215.970000px;}
.yd5{bottom:218.715000px;}
.y7e{bottom:222.300000px;}
.y102{bottom:224.730000px;}
.y53{bottom:229.485000px;}
.y25{bottom:231.120000px;}
.yaa{bottom:231.420000px;}
.y12a{bottom:234.570000px;}
.yd4{bottom:237.315000px;}
.y7d{bottom:240.900000px;}
.y101{bottom:242.430000px;}
.y52{bottom:247.935000px;}
.y24{bottom:249.420000px;}
.ya9{bottom:250.470000px;}
.y129{bottom:253.020000px;}
.yd3{bottom:256.215000px;}
.y7c{bottom:259.500000px;}
.y100{bottom:261.330000px;}
.y51{bottom:266.835000px;}
.y23{bottom:267.870000px;}
.ya8{bottom:268.920000px;}
.y128{bottom:271.320000px;}
.yd2{bottom:274.065000px;}
.y7b{bottom:277.800000px;}
.yff{bottom:280.080000px;}
.y50{bottom:285.135000px;}
.y22{bottom:286.770000px;}
.ya7{bottom:287.220000px;}
.y127{bottom:289.620000px;}
.yd1{bottom:293.265000px;}
.y7a{bottom:296.250000px;}
.yfe{bottom:298.680000px;}
.y4f{bottom:303.435000px;}
.y21{bottom:305.070000px;}
.ya6{bottom:305.670000px;}
.y126{bottom:308.070000px;}
.yd0{bottom:311.265000px;}
.y79{bottom:314.550000px;}
.yfd{bottom:316.980000px;}
.y4e{bottom:322.185000px;}
.y20{bottom:323.370000px;}
.ya5{bottom:324.570000px;}
.y125{bottom:326.670000px;}
.ycf{bottom:329.865000px;}
.y78{bottom:333.000000px;}
.yfc{bottom:335.880000px;}
.y4d{bottom:340.785000px;}
.y1f{bottom:341.820000px;}
.ya4{bottom:343.170000px;}
.y124{bottom:345.270000px;}
.yce{bottom:348.015000px;}
.y77{bottom:351.300000px;}
.yfb{bottom:353.730000px;}
.y4c{bottom:359.085000px;}
.y1e{bottom:360.120000px;}
.ya3{bottom:361.170000px;}
.y123{bottom:363.870000px;}
.ycd{bottom:366.165000px;}
.y76{bottom:369.600000px;}
.yfa{bottom:373.230000px;}
.y4b{bottom:377.685000px;}
.y1d{bottom:378.720000px;}
.ya2{bottom:380.070000px;}
.y122{bottom:382.020000px;}
.ycc{bottom:385.515000px;}
.y75{bottom:388.350000px;}
.yf9{bottom:390.930000px;}
.y4a{bottom:396.135000px;}
.y1c{bottom:397.170000px;}
.ya1{bottom:398.520000px;}
.y121{bottom:400.920000px;}
.ycb{bottom:403.365000px;}
.y14b{bottom:406.680000px;}
.yf8{bottom:410.130000px;}
.y49{bottom:414.135000px;}
.y1b{bottom:415.470000px;}
.ya0{bottom:417.420000px;}
.y120{bottom:419.520000px;}
.yca{bottom:421.965000px;}
.y14a{bottom:427.230000px;}
.yf7{bottom:428.280000px;}
.y48{bottom:432.885000px;}
.y1a{bottom:433.320000px;}
.y9f{bottom:435.420000px;}
.y11f{bottom:437.670000px;}
.yc9{bottom:440.565000px;}
.yf6{bottom:447.180000px;}
.y149{bottom:448.530000px;}
.y47{bottom:451.185000px;}
.y19{bottom:451.920000px;}
.y9e{bottom:453.870000px;}
.yc8{bottom:459.465000px;}
.y74{bottom:461.400000px;}
.yf5{bottom:465.030000px;}
.y148{bottom:468.780000px;}
.y46{bottom:469.485000px;}
.y18{bottom:470.370000px;}
.y9d{bottom:472.170000px;}
.y11e{bottom:473.820000px;}
.yc7{bottom:477.315000px;}
.y73{bottom:479.850000px;}
.yf4{bottom:483.930000px;}
.y45{bottom:488.235000px;}
.y17{bottom:488.970000px;}
.y9c{bottom:490.620000px;}
.y11d{bottom:492.720000px;}
.yc6{bottom:494.565000px;}
.y72{bottom:497.850000px;}
.yf3{bottom:501.930000px;}
.y44{bottom:506.235000px;}
.y16{bottom:506.970000px;}
.y147{bottom:508.680000px;}
.y9b{bottom:509.520000px;}
.y11c{bottom:510.870000px;}
.yc5{bottom:513.315000px;}
.y71{bottom:516.600000px;}
.yf2{bottom:520.530000px;}
.y15{bottom:524.820000px;}
.y43{bottom:525.135000px;}
.y9a{bottom:527.520000px;}
.y146{bottom:528.180000px;}
.y11b{bottom:529.170000px;}
.yc4{bottom:532.215000px;}
.y70{bottom:534.600000px;}
.yf1{bottom:539.280000px;}
.y42{bottom:543.285000px;}
.y14{bottom:543.720000px;}
.y99{bottom:545.370000px;}
.y145{bottom:547.080000px;}
.y11a{bottom:547.470000px;}
.yc3{bottom:549.915000px;}
.y6f{bottom:553.050000px;}
.yf0{bottom:558.180000px;}
.y13{bottom:561.570000px;}
.y41{bottom:562.185000px;}
.y98{bottom:563.970000px;}
.y144{bottom:565.080000px;}
.y119{bottom:566.220000px;}
.yc2{bottom:568.665000px;}
.y6e{bottom:570.750000px;}
.yef{bottom:576.480000px;}
.y12{bottom:579.870000px;}
.y40{bottom:580.035000px;}
.y97{bottom:582.120000px;}
.y143{bottom:583.830000px;}
.y118{bottom:584.820000px;}
.yc1{bottom:586.665000px;}
.y6d{bottom:589.200000px;}
.yee{bottom:594.630000px;}
.y11{bottom:598.320000px;}
.y3f{bottom:598.635000px;}
.y96{bottom:600.720000px;}
.y142{bottom:602.430000px;}
.y117{bottom:602.820000px;}
.yc0{bottom:605.865000px;}
.y6c{bottom:607.200000px;}
.yed{bottom:613.230000px;}
.y10{bottom:616.320000px;}
.y3e{bottom:616.635000px;}
.y95{bottom:619.320000px;}
.y141{bottom:620.880000px;}
.y116{bottom:621.570000px;}
.ybf{bottom:624.015000px;}
.y6b{bottom:625.650000px;}
.yec{bottom:631.530000px;}
.yf{bottom:635.520000px;}
.y3d{bottom:635.835000px;}
.y94{bottom:637.770000px;}
.y140{bottom:639.180000px;}
.y115{bottom:639.570000px;}
.ybe{bottom:642.015000px;}
.y6a{bottom:644.250000px;}
.yeb{bottom:650.130000px;}
.y3c{bottom:653.385000px;}
.ye{bottom:653.970000px;}
.y93{bottom:656.070000px;}
.y13f{bottom:657.480000px;}
.y114{bottom:658.020000px;}
.ybd{bottom:660.615000px;}
.y69{bottom:662.550000px;}
.yea{bottom:668.280000px;}
.y3b{bottom:671.535000px;}
.yd{bottom:672.270000px;}
.y92{bottom:673.920000px;}
.y13e{bottom:676.080000px;}
.y113{bottom:676.620000px;}
.ybc{bottom:679.365000px;}
.y68{bottom:680.700000px;}
.ye9{bottom:686.880000px;}
.y3a{bottom:689.835000px;}
.yc{bottom:690.570000px;}
.y91{bottom:692.820000px;}
.y13d{bottom:694.530000px;}
.y112{bottom:694.920000px;}
.ybb{bottom:696.615000px;}
.y67{bottom:698.850000px;}
.ye8{bottom:705.330000px;}
.y39{bottom:708.285000px;}
.yb{bottom:708.720000px;}
.y90{bottom:710.670000px;}
.y13c{bottom:712.830000px;}
.y111{bottom:713.520000px;}
.yba{bottom:713.565000px;}
.y66{bottom:717.450000px;}
.ye7{bottom:723.630000px;}
.y38{bottom:726.585000px;}
.ya{bottom:727.020000px;}
.y8f{bottom:728.670000px;}
.y13b{bottom:730.980000px;}
.yb9{bottom:731.715000px;}
.y110{bottom:731.970000px;}
.y65{bottom:735.750000px;}
.ye6{bottom:741.930000px;}
.y37{bottom:744.885000px;}
.y9{bottom:745.770000px;}
.y8e{bottom:747.270000px;}
.y13a{bottom:749.280000px;}
.y10f{bottom:750.270000px;}
.yb8{bottom:752.715000px;}
.y64{bottom:753.900000px;}
.ye5{bottom:761.130000px;}
.y36{bottom:763.035000px;}
.y8{bottom:764.070000px;}
.y8d{bottom:765.720000px;}
.y139{bottom:767.880000px;}
.y10e{bottom:768.870000px;}
.yb7{bottom:770.865000px;}
.y63{bottom:772.500000px;}
.ye4{bottom:778.680000px;}
.y35{bottom:781.335000px;}
.y7{bottom:782.670000px;}
.y8c{bottom:783.720000px;}
.y138{bottom:786.030000px;}
.y10d{bottom:787.320000px;}
.yb6{bottom:789.165000px;}
.y62{bottom:790.350000px;}
.ye3{bottom:797.130000px;}
.y34{bottom:799.785000px;}
.y6{bottom:800.820000px;}
.y8b{bottom:802.170000px;}
.y137{bottom:804.630000px;}
.y10c{bottom:805.170000px;}
.yb5{bottom:808.065000px;}
.y61{bottom:809.550000px;}
.ye2{bottom:815.430000px;}
.y33{bottom:818.385000px;}
.y8a{bottom:821.070000px;}
.y136{bottom:822.930000px;}
.y10b{bottom:823.470000px;}
.yb4{bottom:825.915000px;}
.y60{bottom:827.550000px;}
.y5{bottom:830.820000px;}
.ye1{bottom:833.580000px;}
.y32{bottom:836.535000px;}
.y89{bottom:838.620000px;}
.y135{bottom:841.380000px;}
.yb3{bottom:844.065000px;}
.y5f{bottom:845.100000px;}
.y10a{bottom:848.520000px;}
.y4{bottom:850.470000px;}
.ye0{bottom:851.880000px;}
.y31{bottom:854.535000px;}
.y88{bottom:856.920000px;}
.y134{bottom:859.380000px;}
.y109{bottom:860.520000px;}
.yb2{bottom:862.965000px;}
.y5e{bottom:863.700000px;}
.ydf{bottom:870.180000px;}
.y3{bottom:871.020000px;}
.y30{bottom:872.985000px;}
.y87{bottom:875.370000px;}
.y133{bottom:877.830000px;}
.y108{bottom:879.120000px;}
.yb1{bottom:881.265000px;}
.y5d{bottom:882.000000px;}
.y2f{bottom:890.985000px;}
.y2{bottom:892.020000px;}
.y107{bottom:897.420000px;}
.y1{bottom:917.970000px;}
.h6{height:13.200073px;}
.h2{height:20.601562px;}
.h7{height:43.804688px;}
.h15{height:46.353516px;}
.h11{height:56.654297px;}
.h10{height:59.736000px;}
.h17{height:62.880000px;}
.h19{height:65.424000px;}
.h3{height:66.024000px;}
.h5{height:67.335938px;}
.h12{height:72.312000px;}
.h4{height:75.456000px;}
.h18{height:941.250000px;}
.hc{height:943.350000px;}
.hd{height:943.500000px;}
.h14{height:946.500000px;}
.h13{height:946.650000px;}
.ha{height:953.100000px;}
.hb{height:953.250000px;}
.h8{height:953.625000px;}
.h9{height:954.000000px;}
.he{height:956.625000px;}
.hf{height:957.000000px;}
.h16{height:962.250000px;}
.h1{height:967.500000px;}
.h0{height:967.650000px;}
.w2{width:116.154000px;}
.w10{width:608.250000px;}
.wf{width:608.550000px;}
.w7{width:610.200000px;}
.w8{width:610.500000px;}
.wb{width:612.375000px;}
.wc{width:612.750000px;}
.w3{width:616.425000px;}
.w4{width:616.500000px;}
.wd{width:625.350000px;}
.we{width:625.500000px;}
.w9{width:633.675000px;}
.wa{width:633.750000px;}
.w6{width:641.250000px;}
.w5{width:641.550000px;}
.w1{width:651.000000px;}
.w0{width:651.225000px;}
.x0{left:0.000000px;}
.x1c{left:14.550000px;}
.x3{left:16.500000px;}
.xa{left:17.850000px;}
.x5{left:19.650000px;}
.xb{left:21.600000px;}
.xc{left:22.650000px;}
.xf{left:23.850000px;}
.xe{left:24.900000px;}
.xd{left:26.100000px;}
.x2b{left:27.600000px;}
.x2c{left:28.650000px;}
.x26{left:29.700000px;}
.x29{left:31.350000px;}
.x28{left:32.700000px;}
.x27{left:34.350000px;}
.x2a{left:36.000000px;}
.x4{left:37.800000px;}
.x31{left:39.750000px;}
.x30{left:41.550000px;}
.x2f{left:43.200000px;}
.x2e{left:44.250000px;}
.x23{left:46.200000px;}
.x22{left:48.150000px;}
.x21{left:49.500000px;}
.x20{left:51.300000px;}
.x1f{left:52.350000px;}
.x17{left:53.550000px;}
.x16{left:54.900000px;}
.x14{left:56.250000px;}
.x15{left:57.300000px;}
.x11{left:58.350000px;}
.x12{left:59.700000px;}
.x7{left:75.900000px;}
.x36{left:78.300000px;}
.x1d{left:79.950000px;}
.x24{left:83.250000px;}
.x1b{left:84.300000px;}
.x9{left:85.800000px;}
.x8{left:87.150000px;}
.x3e{left:88.200000px;}
.x13{left:89.400000px;}
.x18{left:112.350000px;}
.x3d{left:148.200000px;}
.x6{left:151.950000px;}
.x41{left:184.650000px;}
.x3a{left:221.700000px;}
.x42{left:241.650000px;}
.x25{left:251.274994px;}
.x39{left:252.362503px;}
.x1a{left:254.387512px;}
.x40{left:258.849998px;}
.x2d{left:263.012512px;}
.x1e{left:266.950012px;}
.x10{left:271.787498px;}
.x32{left:295.350000px;}
.x33{left:320.850000px;}
.x1{left:364.800000px;}
.x2{left:381.900000px;}
.x34{left:386.700000px;}
.x35{left:421.650000px;}
.x37{left:426.000000px;}
.x38{left:459.000000px;}
.x3c{left:511.950000px;}
.x3b{left:541.050000px;}
.x3f{left:552.450000px;}
.x19{left:561.900000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-13.333333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:1.365333pt;}
.ls1{letter-spacing:1.925333pt;}
.lsf{letter-spacing:2.007467pt;}
.ls7{letter-spacing:2.496000pt;}
.ls3{letter-spacing:2.666667pt;}
.lsd{letter-spacing:5.162667pt;}
.ls0{letter-spacing:5.333333pt;}
.lsc{letter-spacing:7.578667pt;}
.ls4{letter-spacing:10.666667pt;}
.lsb{letter-spacing:12.352000pt;}
.lse{letter-spacing:13.333333pt;}
.ls9{letter-spacing:15.146667pt;}
.lsa{letter-spacing:16.112000pt;}
.ls8{letter-spacing:23.277333pt;}
.ws2{word-spacing:-26.730667pt;}
.ws9{word-spacing:-22.200000pt;}
.ws11{word-spacing:-21.514667pt;}
.ws12{word-spacing:-21.397333pt;}
.ws6{word-spacing:-20.629333pt;}
.wsc{word-spacing:-18.050667pt;}
.wsb{word-spacing:-16.722667pt;}
.wsd{word-spacing:-15.984000pt;}
.ws1{word-spacing:-15.104000pt;}
.wse{word-spacing:-14.658667pt;}
.ws3{word-spacing:-13.882667pt;}
.ws10{word-spacing:-12.717333pt;}
.ws5{word-spacing:-11.957333pt;}
.ws0{word-spacing:-7.104000pt;}
.ws14{word-spacing:-0.050667pt;}
.wsf{word-spacing:-0.048000pt;}
.ws13{word-spacing:-0.040533pt;}
.ws7{word-spacing:0.000000pt;}
.ws8{word-spacing:9.018667pt;}
.ws4{word-spacing:13.264000pt;}
.wsa{word-spacing:24.576000pt;}
._42{margin-left:-24.845333pt;}
._38{margin-left:-21.424000pt;}
._3b{margin-left:-18.888000pt;}
._32{margin-left:-17.432000pt;}
._1d{margin-left:-16.314667pt;}
._17{margin-left:-14.378667pt;}
._1e{margin-left:-12.837333pt;}
._2b{margin-left:-11.480000pt;}
._2a{margin-left:-10.410667pt;}
._14{margin-left:-9.216000pt;}
._11{margin-left:-7.872000pt;}
._16{margin-left:-6.602667pt;}
._1a{margin-left:-5.578667pt;}
._10{margin-left:-4.672000pt;}
._f{margin-left:-3.200000pt;}
._20{margin-left:-2.290667pt;}
._0{margin-left:-1.237333pt;}
._13{width:1.088000pt;}
._12{width:1.984000pt;}
._1c{width:2.885333pt;}
._19{width:4.010667pt;}
._1b{width:5.205333pt;}
._15{width:6.448000pt;}
._24{width:7.829333pt;}
._5{width:9.128000pt;}
._1{width:10.192000pt;}
._46{width:11.088000pt;}
._2{width:11.984000pt;}
._9{width:13.048000pt;}
._4{width:14.280000pt;}
._21{width:15.792000pt;}
._30{width:17.344000pt;}
._6{width:18.368000pt;}
._8{width:19.992000pt;}
._d{width:21.728000pt;}
._7{width:23.296000pt;}
._3{width:24.528000pt;}
._1f{width:25.770667pt;}
._a{width:26.768000pt;}
._26{width:27.826667pt;}
._34{width:28.757333pt;}
._28{width:29.818667pt;}
._b{width:31.360000pt;}
._25{width:32.984000pt;}
._e{width:33.880000pt;}
._22{width:35.552000pt;}
._27{width:36.496000pt;}
._2c{width:37.965333pt;}
._c{width:40.320000pt;}
._29{width:45.058667pt;}
._2d{width:48.632000pt;}
._40{width:51.445333pt;}
._3e{width:52.624000pt;}
._45{width:55.706667pt;}
._2e{width:56.890667pt;}
._4c{width:61.002667pt;}
._2f{width:65.154667pt;}
._49{width:70.602667pt;}
._41{width:73.650667pt;}
._35{width:81.194667pt;}
._39{width:84.432000pt;}
._43{width:98.298667pt;}
._33{width:104.997333pt;}
._31{width:114.309333pt;}
._23{width:124.877333pt;}
._36{width:129.336000pt;}
._3f{width:131.696000pt;}
._3a{width:157.952000pt;}
._18{width:173.504000pt;}
._4b{width:235.504000pt;}
._3d{width:250.026667pt;}
._48{width:253.688000pt;}
._4a{width:303.946667pt;}
._50{width:419.197333pt;}
._4e{width:654.256000pt;}
._3c{width:690.058667pt;}
._47{width:824.880000pt;}
._4d{width:867.642667pt;}
._4f{width:981.730667pt;}
._37{width:1663.088000pt;}
._44{width:1685.896000pt;}
.fs0{font-size:21.333333pt;}
.fs9{font-size:24.000000pt;}
.fsc{font-size:34.666667pt;}
.fsd{font-size:40.533333pt;}
.fs6{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fs4{font-size:50.666667pt;}
.fsb{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs3{font-size:58.666667pt;}
.fsa{font-size:61.333333pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:66.666667pt;}
.fs5{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:2.760000pt;}
.y5c{bottom:6.425204pt;}
.y106{bottom:6.425206pt;}
.y86{bottom:6.425212pt;}
.y2d{bottom:6.425217pt;}
.yde{bottom:6.425219pt;}
.yb0{bottom:57.573333pt;}
.ydd{bottom:60.946667pt;}
.y5b{bottom:72.520000pt;}
.yaf{bottom:72.906667pt;}
.y132{bottom:74.640000pt;}
.ydc{bottom:78.680000pt;}
.y85{bottom:81.600000pt;}
.y5a{bottom:87.853333pt;}
.y2c{bottom:89.706667pt;}
.y131{bottom:91.440000pt;}
.ydb{bottom:96.013333pt;}
.y84{bottom:99.333333pt;}
.y59{bottom:104.386667pt;}
.y2b{bottom:107.306667pt;}
.y130{bottom:109.440000pt;}
.yda{bottom:112.280000pt;}
.y83{bottom:115.466667pt;}
.y58{bottom:120.920000pt;}
.y105{bottom:121.893333pt;}
.y2a{bottom:123.573333pt;}
.y12f{bottom:125.706667pt;}
.yd9{bottom:129.346667pt;}
.y82{bottom:131.733333pt;}
.y104{bottom:132.960000pt;}
.y57{bottom:137.586667pt;}
.yae{bottom:139.440000pt;}
.y29{bottom:139.840000pt;}
.y12e{bottom:142.240000pt;}
.yd8{bottom:145.613333pt;}
.y81{bottom:148.533333pt;}
.y103{bottom:149.093333pt;}
.y56{bottom:154.386667pt;}
.yad{bottom:155.706667pt;}
.y28{bottom:156.640000pt;}
.y12d{bottom:159.040000pt;}
.yd7{bottom:162.013333pt;}
.y80{bottom:165.200000pt;}
.y55{bottom:170.920000pt;}
.yac{bottom:172.506667pt;}
.y27{bottom:173.040000pt;}
.y12c{bottom:175.440000pt;}
.yd6{bottom:178.546667pt;}
.y7f{bottom:181.200000pt;}
.y54{bottom:186.920000pt;}
.yab{bottom:188.906667pt;}
.y26{bottom:189.573333pt;}
.y12b{bottom:191.973333pt;}
.yd5{bottom:194.413333pt;}
.y7e{bottom:197.600000pt;}
.y102{bottom:199.760000pt;}
.y53{bottom:203.986667pt;}
.y25{bottom:205.440000pt;}
.yaa{bottom:205.706667pt;}
.y12a{bottom:208.506667pt;}
.yd4{bottom:210.946667pt;}
.y7d{bottom:214.133333pt;}
.y101{bottom:215.493333pt;}
.y52{bottom:220.386667pt;}
.y24{bottom:221.706667pt;}
.ya9{bottom:222.640000pt;}
.y129{bottom:224.906667pt;}
.yd3{bottom:227.746667pt;}
.y7c{bottom:230.666667pt;}
.y100{bottom:232.293333pt;}
.y51{bottom:237.186667pt;}
.y23{bottom:238.106667pt;}
.ya8{bottom:239.040000pt;}
.y128{bottom:241.173333pt;}
.yd2{bottom:243.613333pt;}
.y7b{bottom:246.933333pt;}
.yff{bottom:248.960000pt;}
.y50{bottom:253.453333pt;}
.y22{bottom:254.906667pt;}
.ya7{bottom:255.306667pt;}
.y127{bottom:257.440000pt;}
.yd1{bottom:260.680000pt;}
.y7a{bottom:263.333333pt;}
.yfe{bottom:265.493333pt;}
.y4f{bottom:269.720000pt;}
.y21{bottom:271.173333pt;}
.ya6{bottom:271.706667pt;}
.y126{bottom:273.840000pt;}
.yd0{bottom:276.680000pt;}
.y79{bottom:279.600000pt;}
.yfd{bottom:281.760000pt;}
.y4e{bottom:286.386667pt;}
.y20{bottom:287.440000pt;}
.ya5{bottom:288.506667pt;}
.y125{bottom:290.373333pt;}
.ycf{bottom:293.213333pt;}
.y78{bottom:296.000000pt;}
.yfc{bottom:298.560000pt;}
.y4d{bottom:302.920000pt;}
.y1f{bottom:303.840000pt;}
.ya4{bottom:305.040000pt;}
.y124{bottom:306.906667pt;}
.yce{bottom:309.346667pt;}
.y77{bottom:312.266667pt;}
.yfb{bottom:314.426667pt;}
.y4c{bottom:319.186667pt;}
.y1e{bottom:320.106667pt;}
.ya3{bottom:321.040000pt;}
.y123{bottom:323.440000pt;}
.ycd{bottom:325.480000pt;}
.y76{bottom:328.533333pt;}
.yfa{bottom:331.760000pt;}
.y4b{bottom:335.720000pt;}
.y1d{bottom:336.640000pt;}
.ya2{bottom:337.840000pt;}
.y122{bottom:339.573333pt;}
.ycc{bottom:342.680000pt;}
.y75{bottom:345.200000pt;}
.yf9{bottom:347.493333pt;}
.y4a{bottom:352.120000pt;}
.y1c{bottom:353.040000pt;}
.ya1{bottom:354.240000pt;}
.y121{bottom:356.373333pt;}
.ycb{bottom:358.546667pt;}
.y14b{bottom:361.493333pt;}
.yf8{bottom:364.560000pt;}
.y49{bottom:368.120000pt;}
.y1b{bottom:369.306667pt;}
.ya0{bottom:371.040000pt;}
.y120{bottom:372.906667pt;}
.yca{bottom:375.080000pt;}
.y14a{bottom:379.760000pt;}
.yf7{bottom:380.693333pt;}
.y48{bottom:384.786667pt;}
.y1a{bottom:385.173333pt;}
.y9f{bottom:387.040000pt;}
.y11f{bottom:389.040000pt;}
.yc9{bottom:391.613333pt;}
.yf6{bottom:397.493333pt;}
.y149{bottom:398.693333pt;}
.y47{bottom:401.053333pt;}
.y19{bottom:401.706667pt;}
.y9e{bottom:403.440000pt;}
.yc8{bottom:408.413333pt;}
.y74{bottom:410.133333pt;}
.yf5{bottom:413.360000pt;}
.y148{bottom:416.693333pt;}
.y46{bottom:417.320000pt;}
.y18{bottom:418.106667pt;}
.y9d{bottom:419.706667pt;}
.y11e{bottom:421.173333pt;}
.yc7{bottom:424.280000pt;}
.y73{bottom:426.533333pt;}
.yf4{bottom:430.160000pt;}
.y45{bottom:433.986667pt;}
.y17{bottom:434.640000pt;}
.y9c{bottom:436.106667pt;}
.y11d{bottom:437.973333pt;}
.yc6{bottom:439.613333pt;}
.y72{bottom:442.533333pt;}
.yf3{bottom:446.160000pt;}
.y44{bottom:449.986667pt;}
.y16{bottom:450.640000pt;}
.y147{bottom:452.160000pt;}
.y9b{bottom:452.906667pt;}
.y11c{bottom:454.106667pt;}
.yc5{bottom:456.280000pt;}
.y71{bottom:459.200000pt;}
.yf2{bottom:462.693333pt;}
.y15{bottom:466.506667pt;}
.y43{bottom:466.786667pt;}
.y9a{bottom:468.906667pt;}
.y146{bottom:469.493333pt;}
.y11b{bottom:470.373333pt;}
.yc4{bottom:473.080000pt;}
.y70{bottom:475.200000pt;}
.yf1{bottom:479.360000pt;}
.y42{bottom:482.920000pt;}
.y14{bottom:483.306667pt;}
.y99{bottom:484.773333pt;}
.y145{bottom:486.293333pt;}
.y11a{bottom:486.640000pt;}
.yc3{bottom:488.813333pt;}
.y6f{bottom:491.600000pt;}
.yf0{bottom:496.160000pt;}
.y13{bottom:499.173333pt;}
.y41{bottom:499.720000pt;}
.y98{bottom:501.306667pt;}
.y144{bottom:502.293333pt;}
.y119{bottom:503.306667pt;}
.yc2{bottom:505.480000pt;}
.y6e{bottom:507.333333pt;}
.yef{bottom:512.426667pt;}
.y12{bottom:515.440000pt;}
.y40{bottom:515.586667pt;}
.y97{bottom:517.440000pt;}
.y143{bottom:518.960000pt;}
.y118{bottom:519.840000pt;}
.yc1{bottom:521.480000pt;}
.y6d{bottom:523.733333pt;}
.yee{bottom:528.560000pt;}
.y11{bottom:531.840000pt;}
.y3f{bottom:532.120000pt;}
.y96{bottom:533.973333pt;}
.y142{bottom:535.493333pt;}
.y117{bottom:535.840000pt;}
.yc0{bottom:538.546667pt;}
.y6c{bottom:539.733333pt;}
.yed{bottom:545.093333pt;}
.y10{bottom:547.840000pt;}
.y3e{bottom:548.120000pt;}
.y95{bottom:550.506667pt;}
.y141{bottom:551.893333pt;}
.y116{bottom:552.506667pt;}
.ybf{bottom:554.680000pt;}
.y6b{bottom:556.133333pt;}
.yec{bottom:561.360000pt;}
.yf{bottom:564.906667pt;}
.y3d{bottom:565.186667pt;}
.y94{bottom:566.906667pt;}
.y140{bottom:568.160000pt;}
.y115{bottom:568.506667pt;}
.ybe{bottom:570.680000pt;}
.y6a{bottom:572.666667pt;}
.yeb{bottom:577.893333pt;}
.y3c{bottom:580.786667pt;}
.ye{bottom:581.306667pt;}
.y93{bottom:583.173333pt;}
.y13f{bottom:584.426667pt;}
.y114{bottom:584.906667pt;}
.ybd{bottom:587.213333pt;}
.y69{bottom:588.933333pt;}
.yea{bottom:594.026667pt;}
.y3b{bottom:596.920000pt;}
.yd{bottom:597.573333pt;}
.y92{bottom:599.040000pt;}
.y13e{bottom:600.960000pt;}
.y113{bottom:601.440000pt;}
.ybc{bottom:603.880000pt;}
.y68{bottom:605.066667pt;}
.ye9{bottom:610.560000pt;}
.y3a{bottom:613.186667pt;}
.yc{bottom:613.840000pt;}
.y91{bottom:615.840000pt;}
.y13d{bottom:617.360000pt;}
.y112{bottom:617.706667pt;}
.ybb{bottom:619.213333pt;}
.y67{bottom:621.200000pt;}
.ye8{bottom:626.960000pt;}
.y39{bottom:629.586667pt;}
.yb{bottom:629.973333pt;}
.y90{bottom:631.706667pt;}
.y13c{bottom:633.626667pt;}
.y111{bottom:634.240000pt;}
.yba{bottom:634.280000pt;}
.y66{bottom:637.733333pt;}
.ye7{bottom:643.226667pt;}
.y38{bottom:645.853333pt;}
.ya{bottom:646.240000pt;}
.y8f{bottom:647.706667pt;}
.y13b{bottom:649.760000pt;}
.yb9{bottom:650.413333pt;}
.y110{bottom:650.640000pt;}
.y65{bottom:654.000000pt;}
.ye6{bottom:659.493333pt;}
.y37{bottom:662.120000pt;}
.y9{bottom:662.906667pt;}
.y8e{bottom:664.240000pt;}
.y13a{bottom:666.026667pt;}
.y10f{bottom:666.906667pt;}
.yb8{bottom:669.080000pt;}
.y64{bottom:670.133333pt;}
.ye5{bottom:676.560000pt;}
.y36{bottom:678.253333pt;}
.y8{bottom:679.173333pt;}
.y8d{bottom:680.640000pt;}
.y139{bottom:682.560000pt;}
.y10e{bottom:683.440000pt;}
.yb7{bottom:685.213333pt;}
.y63{bottom:686.666667pt;}
.ye4{bottom:692.160000pt;}
.y35{bottom:694.520000pt;}
.y7{bottom:695.706667pt;}
.y8c{bottom:696.640000pt;}
.y138{bottom:698.693333pt;}
.y10d{bottom:699.840000pt;}
.yb6{bottom:701.480000pt;}
.y62{bottom:702.533333pt;}
.ye3{bottom:708.560000pt;}
.y34{bottom:710.920000pt;}
.y6{bottom:711.840000pt;}
.y8b{bottom:713.040000pt;}
.y137{bottom:715.226667pt;}
.y10c{bottom:715.706667pt;}
.yb5{bottom:718.280000pt;}
.y61{bottom:719.600000pt;}
.ye2{bottom:724.826667pt;}
.y33{bottom:727.453333pt;}
.y8a{bottom:729.840000pt;}
.y136{bottom:731.493333pt;}
.y10b{bottom:731.973333pt;}
.yb4{bottom:734.146667pt;}
.y60{bottom:735.600000pt;}
.y5{bottom:738.506667pt;}
.ye1{bottom:740.960000pt;}
.y32{bottom:743.586667pt;}
.y89{bottom:745.440000pt;}
.y135{bottom:747.893333pt;}
.yb3{bottom:750.280000pt;}
.y5f{bottom:751.200000pt;}
.y10a{bottom:754.240000pt;}
.y4{bottom:755.973333pt;}
.ye0{bottom:757.226667pt;}
.y31{bottom:759.586667pt;}
.y88{bottom:761.706667pt;}
.y134{bottom:763.893333pt;}
.y109{bottom:764.906667pt;}
.yb2{bottom:767.080000pt;}
.y5e{bottom:767.733333pt;}
.ydf{bottom:773.493333pt;}
.y3{bottom:774.240000pt;}
.y30{bottom:775.986667pt;}
.y87{bottom:778.106667pt;}
.y133{bottom:780.293333pt;}
.y108{bottom:781.440000pt;}
.yb1{bottom:783.346667pt;}
.y5d{bottom:784.000000pt;}
.y2f{bottom:791.986667pt;}
.y2{bottom:792.906667pt;}
.y107{bottom:797.706667pt;}
.y1{bottom:815.973333pt;}
.h6{height:11.733399pt;}
.h2{height:18.312500pt;}
.h7{height:38.937500pt;}
.h15{height:41.203125pt;}
.h11{height:50.359375pt;}
.h10{height:53.098667pt;}
.h17{height:55.893333pt;}
.h19{height:58.154667pt;}
.h3{height:58.688000pt;}
.h5{height:59.854167pt;}
.h12{height:64.277333pt;}
.h4{height:67.072000pt;}
.h18{height:836.666667pt;}
.hc{height:838.533333pt;}
.hd{height:838.666667pt;}
.h14{height:841.333333pt;}
.h13{height:841.466667pt;}
.ha{height:847.200000pt;}
.hb{height:847.333333pt;}
.h8{height:847.666667pt;}
.h9{height:848.000000pt;}
.he{height:850.333333pt;}
.hf{height:850.666667pt;}
.h16{height:855.333333pt;}
.h1{height:860.000000pt;}
.h0{height:860.133333pt;}
.w2{width:103.248000pt;}
.w10{width:540.666667pt;}
.wf{width:540.933333pt;}
.w7{width:542.400000pt;}
.w8{width:542.666667pt;}
.wb{width:544.333333pt;}
.wc{width:544.666667pt;}
.w3{width:547.933333pt;}
.w4{width:548.000000pt;}
.wd{width:555.866667pt;}
.we{width:556.000000pt;}
.w9{width:563.266667pt;}
.wa{width:563.333333pt;}
.w6{width:570.000000pt;}
.w5{width:570.266667pt;}
.w1{width:578.666667pt;}
.w0{width:578.866667pt;}
.x0{left:0.000000pt;}
.x1c{left:12.933333pt;}
.x3{left:14.666667pt;}
.xa{left:15.866667pt;}
.x5{left:17.466667pt;}
.xb{left:19.200000pt;}
.xc{left:20.133333pt;}
.xf{left:21.200000pt;}
.xe{left:22.133333pt;}
.xd{left:23.200000pt;}
.x2b{left:24.533333pt;}
.x2c{left:25.466667pt;}
.x26{left:26.400000pt;}
.x29{left:27.866667pt;}
.x28{left:29.066667pt;}
.x27{left:30.533333pt;}
.x2a{left:32.000000pt;}
.x4{left:33.600000pt;}
.x31{left:35.333333pt;}
.x30{left:36.933333pt;}
.x2f{left:38.400000pt;}
.x2e{left:39.333333pt;}
.x23{left:41.066667pt;}
.x22{left:42.800000pt;}
.x21{left:44.000000pt;}
.x20{left:45.600000pt;}
.x1f{left:46.533333pt;}
.x17{left:47.600000pt;}
.x16{left:48.800000pt;}
.x14{left:50.000000pt;}
.x15{left:50.933333pt;}
.x11{left:51.866667pt;}
.x12{left:53.066667pt;}
.x7{left:67.466667pt;}
.x36{left:69.600000pt;}
.x1d{left:71.066667pt;}
.x24{left:74.000000pt;}
.x1b{left:74.933333pt;}
.x9{left:76.266667pt;}
.x8{left:77.466667pt;}
.x3e{left:78.400000pt;}
.x13{left:79.466667pt;}
.x18{left:99.866667pt;}
.x3d{left:131.733333pt;}
.x6{left:135.066667pt;}
.x41{left:164.133333pt;}
.x3a{left:197.066667pt;}
.x42{left:214.800000pt;}
.x25{left:223.355550pt;}
.x39{left:224.322225pt;}
.x1a{left:226.122233pt;}
.x40{left:230.088887pt;}
.x2d{left:233.788900pt;}
.x1e{left:237.288900pt;}
.x10{left:241.588887pt;}
.x32{left:262.533333pt;}
.x33{left:285.200000pt;}
.x1{left:324.266667pt;}
.x2{left:339.466667pt;}
.x34{left:343.733333pt;}
.x35{left:374.800000pt;}
.x37{left:378.666667pt;}
.x38{left:408.000000pt;}
.x3c{left:455.066667pt;}
.x3b{left:480.933333pt;}
.x3f{left:491.066667pt;}
.x19{left:499.466667pt;}
}




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