
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_494f073b0591ebe7024e53c5.woff')format("woff");}.ff2{font-family:ff2;line-height:1.088379;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_7e7c772430111ead559300b3.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_990268cec82a2eeb473951cd.woff')format("woff");}.ff4{font-family:ff4;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_658b84a2c0985478c268ed61.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4b89bb7cadc8e6c4bf0b1241.woff')format("woff");}.ff6{font-family:ff6;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2d8a510d852d88f14d425e50.woff')format("woff");}.ff7{font-family:ff7;line-height:1.088379;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_b2850eec47b91ab890f78b1d.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.ls11{letter-spacing:-0.243600px;}
.ls8{letter-spacing:-0.186600px;}
.ls17{letter-spacing:-0.160800px;}
.ls14{letter-spacing:-0.153600px;}
.ls6{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls16{letter-spacing:-0.114000px;}
.ls12{letter-spacing:-0.092400px;}
.ls5{letter-spacing:-0.090000px;}
.ls7{letter-spacing:-0.084600px;}
.lse{letter-spacing:-0.063600px;}
.ls21{letter-spacing:-0.038880px;}
.ls9{letter-spacing:-0.031800px;}
.ls19{letter-spacing:-0.018360px;}
.lsf{letter-spacing:-0.014760px;}
.ls3{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.045360px;}
.lsc{letter-spacing:0.048960px;}
.ls1{letter-spacing:0.065520px;}
.lsb{letter-spacing:0.074160px;}
.ls0{letter-spacing:0.090000px;}
.ls1f{letter-spacing:0.115800px;}
.ls13{letter-spacing:0.116400px;}
.ls1b{letter-spacing:0.143400px;}
.ls4{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.173400px;}
.ls1d{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.180600px;}
.ls1c{letter-spacing:0.181200px;}
.ls1e{letter-spacing:0.198000px;}
.ls2{letter-spacing:0.360000px;}
.ls20{letter-spacing:14.246640px;}
.ls1a{letter-spacing:47.726640px;}
.ls18{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-54.000000px;}
.ws7{word-spacing:-14.493600px;}
.ws13{word-spacing:-14.379600px;}
.ws12{word-spacing:-14.372400px;}
.ws18{word-spacing:-13.424400px;}
.ws16{word-spacing:-13.407600px;}
.wsd{word-spacing:-13.407000px;}
.ws9{word-spacing:-13.399800px;}
.ws17{word-spacing:-13.369800px;}
.ws10{word-spacing:-13.342800px;}
.ws19{word-spacing:-13.342200px;}
.wsa{word-spacing:-13.275360px;}
.ws5{word-spacing:-13.226400px;}
.wsc{word-spacing:-13.211640px;}
.ws15{word-spacing:-13.208040px;}
.ws1a{word-spacing:-13.187520px;}
.wsb{word-spacing:-13.162800px;}
.wsf{word-spacing:-13.134000px;}
.ws11{word-spacing:-13.072800px;}
.ws14{word-spacing:-13.065600px;}
.ws4{word-spacing:-13.039800px;}
.wse{word-spacing:-12.982800px;}
.ws1{word-spacing:-9.810000px;}
.ws2{word-spacing:-9.765000px;}
.ws3{word-spacing:-8.553600px;}
.ws8{word-spacing:0.000000px;}
.ws6{word-spacing:4.304880px;}
._7{margin-left:-3.805440px;}
._8{margin-left:-2.609520px;}
._0{margin-left:-1.110000px;}
._3{width:1.761960px;}
._4{width:3.107640px;}
._5{width:4.632841px;}
._c{width:5.892000px;}
._b{width:7.875600px;}
._9{width:9.018000px;}
._a{width:10.220400px;}
._e{width:11.302800px;}
._d{width:15.178200px;}
._11{width:16.361039px;}
._12{width:17.374680px;}
._13{width:18.516960px;}
._f{width:20.047800px;}
._6{width:21.643200px;}
._14{width:23.386680px;}
._10{width:25.070040px;}
._2{width:27.071075px;}
._1{width:28.417596px;}
._3c{width:30.079164px;}
._15{width:33.667200px;}
._16{width:34.797120px;}
._4e{width:36.913680px;}
._3b{width:38.416680px;}
._45{width:39.679200px;}
._44{width:40.745160px;}
._32{width:42.095880px;}
._2d{width:43.346520px;}
._17{width:45.450720px;}
._18{width:47.613120px;}
._59{width:50.500800px;}
._60{width:51.703200px;}
._33{width:52.725240px;}
._1d{width:54.228240px;}
._1c{width:55.310400px;}
._51{width:60.841440px;}
._52{width:61.951440px;}
._1a{width:64.328400px;}
._57{width:65.547720px;}
._38{width:66.853440px;}
._1e{width:69.679080px;}
._1f{width:70.773960px;}
._5a{width:73.887480px;}
._30{width:79.145760px;}
._53{width:80.217840px;}
._5f{width:90.059760px;}
._23{width:94.087800px;}
._24{width:95.109840px;}
._3f{width:96.192000px;}
._42{width:100.701000px;}
._2a{width:103.707000px;}
._55{width:112.123800px;}
._3e{width:113.566680px;}
._5d{width:119.458440px;}
._5e{width:120.540600px;}
._61{width:122.229720px;}
._4f{width:127.394280px;}
._25{width:128.476440px;}
._3d{width:133.758120px;}
._2f{width:134.849160px;}
._2b{width:137.133720px;}
._2c{width:138.276000px;}
._54{width:142.003440px;}
._46{width:149.819040px;}
._37{width:155.350080px;}
._22{width:157.089120px;}
._21{width:158.175720px;}
._5c{width:166.412160px;}
._48{width:167.855040px;}
._29{width:170.861040px;}
._3a{width:182.103480px;}
._20{width:184.929120px;}
._19{width:190.219680px;}
._28{width:191.301840px;}
._1b{width:193.706640px;}
._31{width:201.462120px;}
._27{width:209.971320px;}
._26{width:211.109160px;}
._5b{width:220.820760px;}
._2e{width:240.299640px;}
._34{width:243.786600px;}
._49{width:249.197400px;}
._43{width:255.690360px;}
._39{width:278.235360px;}
._47{width:288.395640px;}
._35{width:291.401640px;}
._4a{width:300.780360px;}
._4b{width:301.862520px;}
._50{width:312.563880px;}
._36{width:401.240880px;}
._4c{width:480.960000px;}
._4d{width:482.102280px;}
._58{width:511.801560px;}
._41{width:617.881080px;}
._40{width:620.618760px;}
._56{width:756.910800px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:42.120000px;}
.fs1{font-size:45.000000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs3{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y2{bottom:73.380000px;}
.y28{bottom:74.190000px;}
.y1{bottom:96.060000px;}
.yd4{bottom:116.130000px;}
.y87{bottom:116.940000px;}
.y12b{bottom:117.390000px;}
.yeb{bottom:121.170000px;}
.ya4{bottom:125.940000px;}
.yd3{bottom:133.680000px;}
.y86{bottom:134.580000px;}
.y12a{bottom:134.940000px;}
.yea{bottom:138.720000px;}
.y26{bottom:138.990000px;}
.yb0{bottom:139.170000px;}
.y112{bottom:141.510000px;}
.ya3{bottom:143.580000px;}
.yd2{bottom:151.320000px;}
.y85{bottom:152.130000px;}
.y129{bottom:152.580000px;}
.ye9{bottom:156.270000px;}
.y25{bottom:156.540000px;}
.yaf{bottom:156.720000px;}
.y111{bottom:159.150000px;}
.y148{bottom:160.680000px;}
.ya2{bottom:161.130000px;}
.y58{bottom:163.740000px;}
.yd1{bottom:168.870000px;}
.y16b{bottom:169.680000px;}
.y173{bottom:170.130000px;}
.y110{bottom:176.700000px;}
.y147{bottom:178.320000px;}
.y84{bottom:178.680000px;}
.y128{bottom:179.130000px;}
.y57{bottom:181.290000px;}
.y24{bottom:183.450000px;}
.yae{bottom:183.630000px;}
.yd0{bottom:186.510000px;}
.y16a{bottom:187.320000px;}
.y159{bottom:187.680000px;}
.ye8{bottom:191.910000px;}
.y146{bottom:195.870000px;}
.ya1{bottom:196.320000px;}
.y127{bottom:196.680000px;}
.y56{bottom:198.930000px;}
.y10f{bottom:203.250000px;}
.ycf{bottom:204.060000px;}
.y158{bottom:205.320000px;}
.ye7{bottom:209.460000px;}
.y145{bottom:213.510000px;}
.ya0{bottom:213.870000px;}
.y83{bottom:214.320000px;}
.y55{bottom:216.480000px;}
.y10e{bottom:220.890000px;}
.yce{bottom:221.610000px;}
.y157{bottom:222.870000px;}
.ye6{bottom:227.100000px;}
.y9f{bottom:231.510000px;}
.y82{bottom:231.870000px;}
.y23{bottom:232.050000px;}
.y54{bottom:234.030000px;}
.y144{bottom:240.060000px;}
.y156{bottom:240.510000px;}
.y126{bottom:240.870000px;}
.ye5{bottom:244.650000px;}
.y10d{bottom:247.440000px;}
.y169{bottom:249.060000px;}
.y81{bottom:249.510000px;}
.y53{bottom:251.670000px;}
.ycd{bottom:257.250000px;}
.y143{bottom:257.610000px;}
.y15d{bottom:258.060000px;}
.y125{bottom:258.510000px;}
.ye4{bottom:262.200000px;}
.y10c{bottom:265.080000px;}
.y80{bottom:267.060000px;}
.y22{bottom:269.040000px;}
.ycc{bottom:274.800000px;}
.y142{bottom:275.250000px;}
.y168{bottom:275.610000px;}
.y124{bottom:276.060000px;}
.y7f{bottom:284.610000px;}
.y21{bottom:286.680000px;}
.y52{bottom:287.220000px;}
.y10b{bottom:291.630000px;}
.ycb{bottom:292.440000px;}
.y167{bottom:293.250000px;}
.y172{bottom:293.610000px;}
.ye3{bottom:297.840000px;}
.y141{bottom:301.800000px;}
.y7e{bottom:302.250000px;}
.y123{bottom:302.610000px;}
.y20{bottom:304.230000px;}
.y51{bottom:304.860000px;}
.y10a{bottom:309.180000px;}
.yca{bottom:309.990000px;}
.y166{bottom:310.800000px;}
.y171{bottom:311.250000px;}
.ye2{bottom:315.390000px;}
.y140{bottom:319.440000px;}
.y9e{bottom:319.800000px;}
.y122{bottom:320.250000px;}
.y1f{bottom:321.870000px;}
.y50{bottom:322.410000px;}
.y109{bottom:326.820000px;}
.yc9{bottom:327.540000px;}
.y155{bottom:328.800000px;}
.ye1{bottom:332.940000px;}
.y13f{bottom:336.990000px;}
.y9d{bottom:337.440000px;}
.y7d{bottom:337.800000px;}
.y1e{bottom:339.420000px;}
.y4f{bottom:339.960000px;}
.y154{bottom:346.440000px;}
.ye0{bottom:350.580000px;}
.y108{bottom:353.370000px;}
.yc8{bottom:354.180000px;}
.y9c{bottom:354.990000px;}
.y7c{bottom:355.440000px;}
.y4e{bottom:357.600000px;}
.y13e{bottom:363.540000px;}
.y153{bottom:363.990000px;}
.y121{bottom:364.440000px;}
.ydf{bottom:368.130000px;}
.y107{bottom:371.010000px;}
.y9b{bottom:372.540000px;}
.y7b{bottom:372.990000px;}
.y1d{bottom:374.970000px;}
.y4d{bottom:375.150000px;}
.y13d{bottom:381.180000px;}
.y15c{bottom:381.540000px;}
.y120{bottom:381.990000px;}
.yde{bottom:385.770000px;}
.y106{bottom:388.560000px;}
.yc7{bottom:389.730000px;}
.y9a{bottom:390.180000px;}
.y7a{bottom:390.540000px;}
.y1c{bottom:392.610000px;}
.y13c{bottom:398.730000px;}
.y165{bottom:399.180000px;}
.y11f{bottom:399.540000px;}
.y105{bottom:406.110000px;}
.yc6{bottom:407.370000px;}
.y79{bottom:408.180000px;}
.y1b{bottom:410.160000px;}
.y4c{bottom:410.790000px;}
.ydd{bottom:412.680000px;}
.y164{bottom:416.730000px;}
.y11e{bottom:417.180000px;}
.y104{bottom:423.750000px;}
.yc5{bottom:424.920000px;}
.y13b{bottom:425.370000px;}
.y78{bottom:425.730000px;}
.y1a{bottom:427.800000px;}
.y4b{bottom:428.340000px;}
.y11d{bottom:434.730000px;}
.y103{bottom:441.300000px;}
.yc4{bottom:442.470000px;}
.y13a{bottom:442.920000px;}
.y99{bottom:443.370000px;}
.y19{bottom:445.350000px;}
.y4a{bottom:445.890000px;}
.y11c{bottom:452.370000px;}
.yc3{bottom:460.110000px;}
.y98{bottom:460.920000px;}
.y77{bottom:461.370000px;}
.y49{bottom:463.530000px;}
.y102{bottom:467.940000px;}
.y139{bottom:469.470000px;}
.y152{bottom:469.950000px;}
.y97{bottom:478.500000px;}
.y76{bottom:478.950000px;}
.y18{bottom:480.930000px;}
.y48{bottom:481.110000px;}
.y101{bottom:485.520000px;}
.y138{bottom:487.140000px;}
.y15b{bottom:487.500000px;}
.yc2{bottom:495.690000px;}
.y96{bottom:496.140000px;}
.y75{bottom:496.500000px;}
.y17{bottom:498.570000px;}
.y47{bottom:498.750000px;}
.y100{bottom:503.070000px;}
.y137{bottom:504.690000px;}
.y15a{bottom:505.140000px;}
.yc1{bottom:513.330000px;}
.y95{bottom:513.690000px;}
.y74{bottom:514.140000px;}
.y16{bottom:516.120000px;}
.yff{bottom:520.710000px;}
.y136{bottom:522.330000px;}
.y163{bottom:522.690000px;}
.y170{bottom:523.140000px;}
.yc0{bottom:530.880000px;}
.y94{bottom:531.330000px;}
.y73{bottom:531.690000px;}
.y15{bottom:533.670000px;}
.y46{bottom:534.300000px;}
.yfe{bottom:538.260000px;}
.y162{bottom:540.330000px;}
.y11b{bottom:540.690000px;}
.ybf{bottom:548.430000px;}
.ydc{bottom:548.880000px;}
.y72{bottom:549.330000px;}
.y14{bottom:551.310000px;}
.y45{bottom:551.850000px;}
.yfd{bottom:555.900000px;}
.y93{bottom:557.880000px;}
.y11a{bottom:558.330000px;}
.ydb{bottom:566.430000px;}
.y71{bottom:566.880000px;}
.y13{bottom:568.860000px;}
.y44{bottom:569.490000px;}
.y119{bottom:575.880000px;}
.yfc{bottom:582.450000px;}
.ybe{bottom:584.070000px;}
.yad{bottom:584.430000px;}
.y151{bottom:584.880000px;}
.y43{bottom:587.040000px;}
.y135{bottom:593.070000px;}
.y92{bottom:593.430000px;}
.yfb{bottom:600.000000px;}
.ybd{bottom:601.620000px;}
.yac{bottom:602.070000px;}
.y70{bottom:602.430000px;}
.y12{bottom:604.500000px;}
.y42{bottom:604.590000px;}
.y134{bottom:610.620000px;}
.y91{bottom:611.070000px;}
.yfa{bottom:617.640000px;}
.ybc{bottom:619.260000px;}
.yda{bottom:619.620000px;}
.y6f{bottom:620.070000px;}
.y11{bottom:622.050000px;}
.y41{bottom:622.230000px;}
.y133{bottom:628.260000px;}
.y90{bottom:628.620000px;}
.ybb{bottom:636.810000px;}
.yd9{bottom:637.260000px;}
.y6e{bottom:637.620000px;}
.y10{bottom:639.600000px;}
.y40{bottom:639.780000px;}
.yf9{bottom:644.190000px;}
.y8f{bottom:646.260000px;}
.y150{bottom:646.620000px;}
.yd8{bottom:654.810000px;}
.y6d{bottom:655.260000px;}
.yf{bottom:657.240000px;}
.y3f{bottom:657.420000px;}
.yf8{bottom:661.830000px;}
.y8e{bottom:663.810000px;}
.y14f{bottom:664.260000px;}
.yba{bottom:672.360000px;}
.y6c{bottom:672.810000px;}
.ye{bottom:674.790000px;}
.y8d{bottom:681.360000px;}
.y118{bottom:681.810000px;}
.y3e{bottom:683.970000px;}
.yf7{bottom:688.380000px;}
.yb9{bottom:690.000000px;}
.y6b{bottom:690.360000px;}
.yd{bottom:692.430000px;}
.y8c{bottom:699.000000px;}
.y117{bottom:699.360000px;}
.yf6{bottom:705.930000px;}
.yb8{bottom:707.550000px;}
.yab{bottom:708.000000px;}
.y14e{bottom:708.360000px;}
.yc{bottom:709.980000px;}
.y3d{bottom:716.550000px;}
.y116{bottom:717.000000px;}
.yf5{bottom:723.570000px;}
.yb7{bottom:725.190000px;}
.yaa{bottom:725.550000px;}
.y6a{bottom:726.000000px;}
.y132{bottom:734.190000px;}
.y8b{bottom:734.550000px;}
.yb{bottom:736.890000px;}
.yf4{bottom:741.120000px;}
.yb6{bottom:742.740000px;}
.yd7{bottom:743.190000px;}
.y69{bottom:743.550000px;}
.y3c{bottom:752.190000px;}
.yf3{bottom:758.670000px;}
.yd6{bottom:760.740000px;}
.y68{bottom:761.190000px;}
.yb5{bottom:769.290000px;}
.y3b{bottom:769.740000px;}
.y16f{bottom:770.190000px;}
.yf2{bottom:776.310000px;}
.yd5{bottom:778.290000px;}
.y67{bottom:778.740000px;}
.ya{bottom:785.130000px;}
.y3a{bottom:787.290000px;}
.y14d{bottom:787.740000px;}
.yf1{bottom:793.860000px;}
.y66{bottom:796.290000px;}
.y39{bottom:804.930000px;}
.y14c{bottom:805.290000px;}
.yf0{bottom:811.500000px;}
.y65{bottom:813.930000px;}
.y9{bottom:820.950000px;}
.y8a{bottom:822.480000px;}
.y161{bottom:822.930000px;}
.y64{bottom:831.480000px;}
.y14b{bottom:831.930000px;}
.yef{bottom:838.410000px;}
.yb4{bottom:840.030000px;}
.y38{bottom:840.480000px;}
.y115{bottom:849.030000px;}
.y14a{bottom:849.480000px;}
.y8{bottom:856.950000px;}
.yb3{bottom:857.670000px;}
.y37{bottom:858.030000px;}
.y131{bottom:866.670000px;}
.y63{bottom:867.030000px;}
.yb2{bottom:875.220000px;}
.y36{bottom:875.670000px;}
.y16e{bottom:876.030000px;}
.y130{bottom:884.220000px;}
.y62{bottom:884.670000px;}
.yee{bottom:886.650000px;}
.y35{bottom:893.220000px;}
.ya9{bottom:893.670000px;}
.y7{bottom:896.730000px;}
.y12f{bottom:901.860000px;}
.y61{bottom:902.220000px;}
.y34{bottom:910.860000px;}
.ya8{bottom:911.220000px;}
.yed{bottom:913.560000px;}
.y6{bottom:914.730000px;}
.y60{bottom:919.860000px;}
.y33{bottom:928.410000px;}
.ya7{bottom:928.860000px;}
.y5f{bottom:937.410000px;}
.y32{bottom:945.960000px;}
.ya6{bottom:946.410000px;}
.y5{bottom:947.040000px;}
.yec{bottom:950.910000px;}
.y5e{bottom:954.960000px;}
.y16d{bottom:955.410000px;}
.y31{bottom:963.600000px;}
.ya5{bottom:963.960000px;}
.y5d{bottom:972.600000px;}
.y16c{bottom:972.960000px;}
.yb1{bottom:981.150000px;}
.y89{bottom:981.600000px;}
.y4{bottom:985.380000px;}
.y12e{bottom:990.150000px;}
.y160{bottom:990.600000px;}
.y30{bottom:999.150000px;}
.y12d{bottom:1007.790000px;}
.y15f{bottom:1008.150000px;}
.y3{bottom:1010.070000px;}
.y2f{bottom:1016.820000px;}
.y15e{bottom:1025.820000px;}
.y2e{bottom:1034.370000px;}
.y5c{bottom:1034.820000px;}
.y149{bottom:1043.370000px;}
.y2d{bottom:1051.920000px;}
.y5b{bottom:1052.370000px;}
.y114{bottom:1060.920000px;}
.y2c{bottom:1069.560000px;}
.y5a{bottom:1069.920000px;}
.y113{bottom:1078.560000px;}
.y88{bottom:1087.110000px;}
.y59{bottom:1087.560000px;}
.y12c{bottom:1096.110000px;}
.y2b{bottom:1105.110000px;}
.y2a{bottom:1122.750000px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h2{height:46.986328px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.hb{height:59.973223px;}
.h9{height:60.960938px;}
.hd{height:61.793886px;}
.ha{height:62.585859px;}
.hc{height:68.582109px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.x4{left:111.239987px;}
.x2{left:202.799987px;}
.x3{left:792.059987px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls11{letter-spacing:-0.216533pt;}
.ls8{letter-spacing:-0.165867pt;}
.ls17{letter-spacing:-0.142933pt;}
.ls14{letter-spacing:-0.136533pt;}
.ls6{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls16{letter-spacing:-0.101333pt;}
.ls12{letter-spacing:-0.082133pt;}
.ls5{letter-spacing:-0.080000pt;}
.ls7{letter-spacing:-0.075200pt;}
.lse{letter-spacing:-0.056533pt;}
.ls21{letter-spacing:-0.034560pt;}
.ls9{letter-spacing:-0.028267pt;}
.ls19{letter-spacing:-0.016320pt;}
.lsf{letter-spacing:-0.013120pt;}
.ls3{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.040320pt;}
.lsc{letter-spacing:0.043520pt;}
.ls1{letter-spacing:0.058240pt;}
.lsb{letter-spacing:0.065920pt;}
.ls0{letter-spacing:0.080000pt;}
.ls1f{letter-spacing:0.102933pt;}
.ls13{letter-spacing:0.103467pt;}
.ls1b{letter-spacing:0.127467pt;}
.ls4{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.154133pt;}
.ls1d{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.160533pt;}
.ls1c{letter-spacing:0.161067pt;}
.ls1e{letter-spacing:0.176000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls20{letter-spacing:12.663680pt;}
.ls1a{letter-spacing:42.423680pt;}
.ls18{letter-spacing:71.863680pt;}
.ws0{word-spacing:-48.000000pt;}
.ws7{word-spacing:-12.883200pt;}
.ws13{word-spacing:-12.781867pt;}
.ws12{word-spacing:-12.775467pt;}
.ws18{word-spacing:-11.932800pt;}
.ws16{word-spacing:-11.917867pt;}
.wsd{word-spacing:-11.917333pt;}
.ws9{word-spacing:-11.910933pt;}
.ws17{word-spacing:-11.884267pt;}
.ws10{word-spacing:-11.860267pt;}
.ws19{word-spacing:-11.859733pt;}
.wsa{word-spacing:-11.800320pt;}
.ws5{word-spacing:-11.756800pt;}
.wsc{word-spacing:-11.743680pt;}
.ws15{word-spacing:-11.740480pt;}
.ws1a{word-spacing:-11.722240pt;}
.wsb{word-spacing:-11.700267pt;}
.wsf{word-spacing:-11.674667pt;}
.ws11{word-spacing:-11.620267pt;}
.ws14{word-spacing:-11.613867pt;}
.ws4{word-spacing:-11.590933pt;}
.wse{word-spacing:-11.540267pt;}
.ws1{word-spacing:-8.720000pt;}
.ws2{word-spacing:-8.680000pt;}
.ws3{word-spacing:-7.603200pt;}
.ws8{word-spacing:0.000000pt;}
.ws6{word-spacing:3.826560pt;}
._7{margin-left:-3.382613pt;}
._8{margin-left:-2.319574pt;}
._0{margin-left:-0.986667pt;}
._3{width:1.566187pt;}
._4{width:2.762346pt;}
._5{width:4.118081pt;}
._c{width:5.237334pt;}
._b{width:7.000533pt;}
._9{width:8.016000pt;}
._a{width:9.084800pt;}
._e{width:10.046934pt;}
._d{width:13.491734pt;}
._11{width:14.543146pt;}
._12{width:15.444160pt;}
._13{width:16.459520pt;}
._f{width:17.820267pt;}
._6{width:19.238400pt;}
._14{width:20.788160pt;}
._10{width:22.284480pt;}
._2{width:24.063178pt;}
._1{width:25.260085pt;}
._3c{width:26.737035pt;}
._15{width:29.926400pt;}
._16{width:30.930773pt;}
._4e{width:32.812160pt;}
._3b{width:34.148160pt;}
._45{width:35.270400pt;}
._44{width:36.217920pt;}
._32{width:37.418560pt;}
._2d{width:38.530240pt;}
._17{width:40.400640pt;}
._18{width:42.322773pt;}
._59{width:44.889600pt;}
._60{width:45.958400pt;}
._33{width:46.866880pt;}
._1d{width:48.202880pt;}
._1c{width:49.164800pt;}
._51{width:54.081280pt;}
._52{width:55.067947pt;}
._1a{width:57.180800pt;}
._57{width:58.264640pt;}
._38{width:59.425280pt;}
._1e{width:61.936960pt;}
._1f{width:62.910187pt;}
._5a{width:65.677760pt;}
._30{width:70.351787pt;}
._53{width:71.304747pt;}
._5f{width:80.053120pt;}
._23{width:83.633600pt;}
._24{width:84.542080pt;}
._3f{width:85.504000pt;}
._42{width:89.512000pt;}
._2a{width:92.184000pt;}
._55{width:99.665600pt;}
._3e{width:100.948160pt;}
._5d{width:106.185280pt;}
._5e{width:107.147200pt;}
._61{width:108.648640pt;}
._4f{width:113.239360pt;}
._25{width:114.201280pt;}
._3d{width:118.896107pt;}
._2f{width:119.865920pt;}
._2b{width:121.896640pt;}
._2c{width:122.912000pt;}
._54{width:126.225280pt;}
._46{width:133.172480pt;}
._37{width:138.088960pt;}
._22{width:139.634773pt;}
._21{width:140.600640pt;}
._5c{width:147.921920pt;}
._48{width:149.204480pt;}
._29{width:151.876480pt;}
._3a{width:161.869760pt;}
._20{width:164.381440pt;}
._19{width:169.084160pt;}
._28{width:170.046080pt;}
._1b{width:172.183680pt;}
._31{width:179.077440pt;}
._27{width:186.641173pt;}
._26{width:187.652587pt;}
._5b{width:196.285120pt;}
._2e{width:213.599680pt;}
._34{width:216.699200pt;}
._49{width:221.508800pt;}
._43{width:227.280320pt;}
._39{width:247.320320pt;}
._47{width:256.351680pt;}
._35{width:259.023680pt;}
._4a{width:267.360320pt;}
._4b{width:268.322240pt;}
._50{width:277.834560pt;}
._36{width:356.658560pt;}
._4c{width:427.520000pt;}
._4d{width:428.535360pt;}
._58{width:454.934720pt;}
._41{width:549.227627pt;}
._40{width:551.661120pt;}
._56{width:672.809600pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.440000pt;}
.fs1{font-size:40.000000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs3{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:65.226667pt;}
.y28{bottom:65.946667pt;}
.y1{bottom:85.386667pt;}
.yd4{bottom:103.226667pt;}
.y87{bottom:103.946667pt;}
.y12b{bottom:104.346667pt;}
.yeb{bottom:107.706667pt;}
.ya4{bottom:111.946667pt;}
.yd3{bottom:118.826667pt;}
.y86{bottom:119.626667pt;}
.y12a{bottom:119.946667pt;}
.yea{bottom:123.306667pt;}
.y26{bottom:123.546667pt;}
.yb0{bottom:123.706667pt;}
.y112{bottom:125.786667pt;}
.ya3{bottom:127.626667pt;}
.yd2{bottom:134.506667pt;}
.y85{bottom:135.226667pt;}
.y129{bottom:135.626667pt;}
.ye9{bottom:138.906667pt;}
.y25{bottom:139.146667pt;}
.yaf{bottom:139.306667pt;}
.y111{bottom:141.466667pt;}
.y148{bottom:142.826667pt;}
.ya2{bottom:143.226667pt;}
.y58{bottom:145.546667pt;}
.yd1{bottom:150.106667pt;}
.y16b{bottom:150.826667pt;}
.y173{bottom:151.226667pt;}
.y110{bottom:157.066667pt;}
.y147{bottom:158.506667pt;}
.y84{bottom:158.826667pt;}
.y128{bottom:159.226667pt;}
.y57{bottom:161.146667pt;}
.y24{bottom:163.066667pt;}
.yae{bottom:163.226667pt;}
.yd0{bottom:165.786667pt;}
.y16a{bottom:166.506667pt;}
.y159{bottom:166.826667pt;}
.ye8{bottom:170.586667pt;}
.y146{bottom:174.106667pt;}
.ya1{bottom:174.506667pt;}
.y127{bottom:174.826667pt;}
.y56{bottom:176.826667pt;}
.y10f{bottom:180.666667pt;}
.ycf{bottom:181.386667pt;}
.y158{bottom:182.506667pt;}
.ye7{bottom:186.186667pt;}
.y145{bottom:189.786667pt;}
.ya0{bottom:190.106667pt;}
.y83{bottom:190.506667pt;}
.y55{bottom:192.426667pt;}
.y10e{bottom:196.346667pt;}
.yce{bottom:196.986667pt;}
.y157{bottom:198.106667pt;}
.ye6{bottom:201.866667pt;}
.y9f{bottom:205.786667pt;}
.y82{bottom:206.106667pt;}
.y23{bottom:206.266667pt;}
.y54{bottom:208.026667pt;}
.y144{bottom:213.386667pt;}
.y156{bottom:213.786667pt;}
.y126{bottom:214.106667pt;}
.ye5{bottom:217.466667pt;}
.y10d{bottom:219.946667pt;}
.y169{bottom:221.386667pt;}
.y81{bottom:221.786667pt;}
.y53{bottom:223.706667pt;}
.ycd{bottom:228.666667pt;}
.y143{bottom:228.986667pt;}
.y15d{bottom:229.386667pt;}
.y125{bottom:229.786667pt;}
.ye4{bottom:233.066667pt;}
.y10c{bottom:235.626667pt;}
.y80{bottom:237.386667pt;}
.y22{bottom:239.146667pt;}
.ycc{bottom:244.266667pt;}
.y142{bottom:244.666667pt;}
.y168{bottom:244.986667pt;}
.y124{bottom:245.386667pt;}
.y7f{bottom:252.986667pt;}
.y21{bottom:254.826667pt;}
.y52{bottom:255.306667pt;}
.y10b{bottom:259.226667pt;}
.ycb{bottom:259.946667pt;}
.y167{bottom:260.666667pt;}
.y172{bottom:260.986667pt;}
.ye3{bottom:264.746667pt;}
.y141{bottom:268.266667pt;}
.y7e{bottom:268.666667pt;}
.y123{bottom:268.986667pt;}
.y20{bottom:270.426667pt;}
.y51{bottom:270.986667pt;}
.y10a{bottom:274.826667pt;}
.yca{bottom:275.546667pt;}
.y166{bottom:276.266667pt;}
.y171{bottom:276.666667pt;}
.ye2{bottom:280.346667pt;}
.y140{bottom:283.946667pt;}
.y9e{bottom:284.266667pt;}
.y122{bottom:284.666667pt;}
.y1f{bottom:286.106667pt;}
.y50{bottom:286.586667pt;}
.y109{bottom:290.506667pt;}
.yc9{bottom:291.146667pt;}
.y155{bottom:292.266667pt;}
.ye1{bottom:295.946667pt;}
.y13f{bottom:299.546667pt;}
.y9d{bottom:299.946667pt;}
.y7d{bottom:300.266667pt;}
.y1e{bottom:301.706667pt;}
.y4f{bottom:302.186667pt;}
.y154{bottom:307.946667pt;}
.ye0{bottom:311.626667pt;}
.y108{bottom:314.106667pt;}
.yc8{bottom:314.826667pt;}
.y9c{bottom:315.546667pt;}
.y7c{bottom:315.946667pt;}
.y4e{bottom:317.866667pt;}
.y13e{bottom:323.146667pt;}
.y153{bottom:323.546667pt;}
.y121{bottom:323.946667pt;}
.ydf{bottom:327.226667pt;}
.y107{bottom:329.786667pt;}
.y9b{bottom:331.146667pt;}
.y7b{bottom:331.546667pt;}
.y1d{bottom:333.306667pt;}
.y4d{bottom:333.466667pt;}
.y13d{bottom:338.826667pt;}
.y15c{bottom:339.146667pt;}
.y120{bottom:339.546667pt;}
.yde{bottom:342.906667pt;}
.y106{bottom:345.386667pt;}
.yc7{bottom:346.426667pt;}
.y9a{bottom:346.826667pt;}
.y7a{bottom:347.146667pt;}
.y1c{bottom:348.986667pt;}
.y13c{bottom:354.426667pt;}
.y165{bottom:354.826667pt;}
.y11f{bottom:355.146667pt;}
.y105{bottom:360.986667pt;}
.yc6{bottom:362.106667pt;}
.y79{bottom:362.826667pt;}
.y1b{bottom:364.586667pt;}
.y4c{bottom:365.146667pt;}
.ydd{bottom:366.826667pt;}
.y164{bottom:370.426667pt;}
.y11e{bottom:370.826667pt;}
.y104{bottom:376.666667pt;}
.yc5{bottom:377.706667pt;}
.y13b{bottom:378.106667pt;}
.y78{bottom:378.426667pt;}
.y1a{bottom:380.266667pt;}
.y4b{bottom:380.746667pt;}
.y11d{bottom:386.426667pt;}
.y103{bottom:392.266667pt;}
.yc4{bottom:393.306667pt;}
.y13a{bottom:393.706667pt;}
.y99{bottom:394.106667pt;}
.y19{bottom:395.866667pt;}
.y4a{bottom:396.346667pt;}
.y11c{bottom:402.106667pt;}
.yc3{bottom:408.986667pt;}
.y98{bottom:409.706667pt;}
.y77{bottom:410.106667pt;}
.y49{bottom:412.026667pt;}
.y102{bottom:415.946667pt;}
.y139{bottom:417.306667pt;}
.y152{bottom:417.733333pt;}
.y97{bottom:425.333333pt;}
.y76{bottom:425.733333pt;}
.y18{bottom:427.493333pt;}
.y48{bottom:427.653333pt;}
.y101{bottom:431.573333pt;}
.y138{bottom:433.013333pt;}
.y15b{bottom:433.333333pt;}
.yc2{bottom:440.613333pt;}
.y96{bottom:441.013333pt;}
.y75{bottom:441.333333pt;}
.y17{bottom:443.173333pt;}
.y47{bottom:443.333333pt;}
.y100{bottom:447.173333pt;}
.y137{bottom:448.613333pt;}
.y15a{bottom:449.013333pt;}
.yc1{bottom:456.293333pt;}
.y95{bottom:456.613333pt;}
.y74{bottom:457.013333pt;}
.y16{bottom:458.773333pt;}
.yff{bottom:462.853333pt;}
.y136{bottom:464.293333pt;}
.y163{bottom:464.613333pt;}
.y170{bottom:465.013333pt;}
.yc0{bottom:471.893333pt;}
.y94{bottom:472.293333pt;}
.y73{bottom:472.613333pt;}
.y15{bottom:474.373333pt;}
.y46{bottom:474.933333pt;}
.yfe{bottom:478.453333pt;}
.y162{bottom:480.293333pt;}
.y11b{bottom:480.613333pt;}
.ybf{bottom:487.493333pt;}
.ydc{bottom:487.893333pt;}
.y72{bottom:488.293333pt;}
.y14{bottom:490.053333pt;}
.y45{bottom:490.533333pt;}
.yfd{bottom:494.133333pt;}
.y93{bottom:495.893333pt;}
.y11a{bottom:496.293333pt;}
.ydb{bottom:503.493333pt;}
.y71{bottom:503.893333pt;}
.y13{bottom:505.653333pt;}
.y44{bottom:506.213333pt;}
.y119{bottom:511.893333pt;}
.yfc{bottom:517.733333pt;}
.ybe{bottom:519.173333pt;}
.yad{bottom:519.493333pt;}
.y151{bottom:519.893333pt;}
.y43{bottom:521.813333pt;}
.y135{bottom:527.173333pt;}
.y92{bottom:527.493333pt;}
.yfb{bottom:533.333333pt;}
.ybd{bottom:534.773333pt;}
.yac{bottom:535.173333pt;}
.y70{bottom:535.493333pt;}
.y12{bottom:537.333333pt;}
.y42{bottom:537.413333pt;}
.y134{bottom:542.773333pt;}
.y91{bottom:543.173333pt;}
.yfa{bottom:549.013333pt;}
.ybc{bottom:550.453333pt;}
.yda{bottom:550.773333pt;}
.y6f{bottom:551.173333pt;}
.y11{bottom:552.933333pt;}
.y41{bottom:553.093333pt;}
.y133{bottom:558.453333pt;}
.y90{bottom:558.773333pt;}
.ybb{bottom:566.053333pt;}
.yd9{bottom:566.453333pt;}
.y6e{bottom:566.773333pt;}
.y10{bottom:568.533333pt;}
.y40{bottom:568.693333pt;}
.yf9{bottom:572.613333pt;}
.y8f{bottom:574.453333pt;}
.y150{bottom:574.773333pt;}
.yd8{bottom:582.053333pt;}
.y6d{bottom:582.453333pt;}
.yf{bottom:584.213333pt;}
.y3f{bottom:584.373333pt;}
.yf8{bottom:588.293333pt;}
.y8e{bottom:590.053333pt;}
.y14f{bottom:590.453333pt;}
.yba{bottom:597.653333pt;}
.y6c{bottom:598.053333pt;}
.ye{bottom:599.813333pt;}
.y8d{bottom:605.653333pt;}
.y118{bottom:606.053333pt;}
.y3e{bottom:607.973333pt;}
.yf7{bottom:611.893333pt;}
.yb9{bottom:613.333333pt;}
.y6b{bottom:613.653333pt;}
.yd{bottom:615.493333pt;}
.y8c{bottom:621.333333pt;}
.y117{bottom:621.653333pt;}
.yf6{bottom:627.493333pt;}
.yb8{bottom:628.933333pt;}
.yab{bottom:629.333333pt;}
.y14e{bottom:629.653333pt;}
.yc{bottom:631.093333pt;}
.y3d{bottom:636.933333pt;}
.y116{bottom:637.333333pt;}
.yf5{bottom:643.173333pt;}
.yb7{bottom:644.613333pt;}
.yaa{bottom:644.933333pt;}
.y6a{bottom:645.333333pt;}
.y132{bottom:652.613333pt;}
.y8b{bottom:652.933333pt;}
.yb{bottom:655.013333pt;}
.yf4{bottom:658.773333pt;}
.yb6{bottom:660.213333pt;}
.yd7{bottom:660.613333pt;}
.y69{bottom:660.933333pt;}
.y3c{bottom:668.613333pt;}
.yf3{bottom:674.373333pt;}
.yd6{bottom:676.213333pt;}
.y68{bottom:676.613333pt;}
.yb5{bottom:683.813333pt;}
.y3b{bottom:684.213333pt;}
.y16f{bottom:684.613333pt;}
.yf2{bottom:690.053333pt;}
.yd5{bottom:691.813333pt;}
.y67{bottom:692.213333pt;}
.ya{bottom:697.893333pt;}
.y3a{bottom:699.813333pt;}
.y14d{bottom:700.213333pt;}
.yf1{bottom:705.653333pt;}
.y66{bottom:707.813333pt;}
.y39{bottom:715.493333pt;}
.y14c{bottom:715.813333pt;}
.yf0{bottom:721.333333pt;}
.y65{bottom:723.493333pt;}
.y9{bottom:729.733333pt;}
.y8a{bottom:731.093333pt;}
.y161{bottom:731.493333pt;}
.y64{bottom:739.093333pt;}
.y14b{bottom:739.493333pt;}
.yef{bottom:745.253333pt;}
.yb4{bottom:746.693333pt;}
.y38{bottom:747.093333pt;}
.y115{bottom:754.693333pt;}
.y14a{bottom:755.093333pt;}
.y8{bottom:761.733333pt;}
.yb3{bottom:762.373333pt;}
.y37{bottom:762.693333pt;}
.y131{bottom:770.373333pt;}
.y63{bottom:770.693333pt;}
.yb2{bottom:777.973333pt;}
.y36{bottom:778.373333pt;}
.y16e{bottom:778.693333pt;}
.y130{bottom:785.973333pt;}
.y62{bottom:786.373333pt;}
.yee{bottom:788.133333pt;}
.y35{bottom:793.973333pt;}
.ya9{bottom:794.373333pt;}
.y7{bottom:797.093333pt;}
.y12f{bottom:801.653333pt;}
.y61{bottom:801.973333pt;}
.y34{bottom:809.653333pt;}
.ya8{bottom:809.973333pt;}
.yed{bottom:812.053333pt;}
.y6{bottom:813.093333pt;}
.y60{bottom:817.653333pt;}
.y33{bottom:825.253333pt;}
.ya7{bottom:825.653333pt;}
.y5f{bottom:833.253333pt;}
.y32{bottom:840.853333pt;}
.ya6{bottom:841.253333pt;}
.y5{bottom:841.813333pt;}
.yec{bottom:845.253333pt;}
.y5e{bottom:848.853333pt;}
.y16d{bottom:849.253333pt;}
.y31{bottom:856.533333pt;}
.ya5{bottom:856.853333pt;}
.y5d{bottom:864.533333pt;}
.y16c{bottom:864.853333pt;}
.yb1{bottom:872.133333pt;}
.y89{bottom:872.533333pt;}
.y4{bottom:875.893333pt;}
.y12e{bottom:880.133333pt;}
.y160{bottom:880.533333pt;}
.y30{bottom:888.133333pt;}
.y12d{bottom:895.813333pt;}
.y15f{bottom:896.133333pt;}
.y3{bottom:897.840000pt;}
.y2f{bottom:903.840000pt;}
.y15e{bottom:911.840000pt;}
.y2e{bottom:919.440000pt;}
.y5c{bottom:919.840000pt;}
.y149{bottom:927.440000pt;}
.y2d{bottom:935.040000pt;}
.y5b{bottom:935.440000pt;}
.y114{bottom:943.040000pt;}
.y2c{bottom:950.720000pt;}
.y5a{bottom:951.040000pt;}
.y113{bottom:958.720000pt;}
.y88{bottom:966.320000pt;}
.y59{bottom:966.720000pt;}
.y12c{bottom:974.320000pt;}
.y2b{bottom:982.320000pt;}
.y2a{bottom:998.000000pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h2{height:41.765625pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.hb{height:53.309531pt;}
.h9{height:54.187500pt;}
.hd{height:54.927899pt;}
.ha{height:55.631875pt;}
.hc{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.x4{left:98.879988pt;}
.x2{left:180.266655pt;}
.x3{left:704.053322pt;}
}




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