
    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_5971b2eb48dd1e9d8791414e.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_223f1f9f2abb080d24de5ae3.woff')format("woff");}.ff2{font-family:ff2;line-height:1.097168;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_a1cc8a24df7a8bafc0938e30.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_1edcfc9b5c8f8449e73fbe0c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f6e6705b6332c8733232b501.woff')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_1679691c4664c6f346ffa1b8.woff')format("woff");}.ff6{font-family:ff6;line-height:1.909180;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_0802c7a6dd7095d1b008ecb7.woff')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v11{vertical-align:-100.800000px;}
.v6{vertical-align:-21.600000px;}
.v1{vertical-align:-14.400000px;}
.vd{vertical-align:-2.400000px;}
.v4{vertical-align:-1.200000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.200000px;}
.v7{vertical-align:2.400000px;}
.v2{vertical-align:14.400000px;}
.vb{vertical-align:16.800000px;}
.v8{vertical-align:21.600000px;}
.v5{vertical-align:36.000000px;}
.v9{vertical-align:38.400000px;}
.vf{vertical-align:40.200000px;}
.ve{vertical-align:45.600000px;}
.v10{vertical-align:48.000000px;}
.vc{vertical-align:54.600000px;}
.va{vertical-align:57.600000px;}
.v12{vertical-align:87.600000px;}
.v14{vertical-align:114.000000px;}
.v13{vertical-align:128.400000px;}
.ls11{letter-spacing:-3.000000px;}
.ls13{letter-spacing:-2.994000px;}
.ls10{letter-spacing:-2.988000px;}
.ls12{letter-spacing:-2.700000px;}
.ls14{letter-spacing:-0.216000px;}
.ls39{letter-spacing:-0.192000px;}
.ls36{letter-spacing:-0.129000px;}
.ls38{letter-spacing:-0.024000px;}
.lsf{letter-spacing:-0.012000px;}
.lsd{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.024000px;}
.ls20{letter-spacing:0.060000px;}
.ls37{letter-spacing:0.099000px;}
.ls0{letter-spacing:0.120000px;}
.lse{letter-spacing:0.150000px;}
.ls21{letter-spacing:0.168000px;}
.lsc{letter-spacing:0.192000px;}
.ls1e{letter-spacing:0.216000px;}
.ls2c{letter-spacing:0.264000px;}
.ls2{letter-spacing:0.300000px;}
.ls4{letter-spacing:0.540000px;}
.ls1f{letter-spacing:0.600000px;}
.ls35{letter-spacing:0.660000px;}
.ls1d{letter-spacing:1.104000px;}
.ls2d{letter-spacing:1.776000px;}
.ls2a{letter-spacing:1.800000px;}
.ls33{letter-spacing:2.040000px;}
.ls2e{letter-spacing:2.871000px;}
.ls31{letter-spacing:2.931000px;}
.ls26{letter-spacing:4.056000px;}
.ls22{letter-spacing:4.116000px;}
.ls28{letter-spacing:4.176000px;}
.ls34{letter-spacing:4.239000px;}
.ls5{letter-spacing:4.299000px;}
.ls24{letter-spacing:4.776000px;}
.ls6{letter-spacing:4.899000px;}
.lsb{letter-spacing:4.959000px;}
.ls18{letter-spacing:5.439000px;}
.ls16{letter-spacing:12.918000px;}
.ls25{letter-spacing:15.660000px;}
.ls2b{letter-spacing:15.672000px;}
.ls23{letter-spacing:15.780000px;}
.ls17{letter-spacing:15.786000px;}
.ls29{letter-spacing:16.320000px;}
.ls1a{letter-spacing:16.356000px;}
.ls27{letter-spacing:16.380000px;}
.ls9{letter-spacing:18.471000px;}
.ls19{letter-spacing:18.531000px;}
.ls1b{letter-spacing:19.071000px;}
.lsa{letter-spacing:19.131000px;}
.ls2f{letter-spacing:19.920000px;}
.ls8{letter-spacing:20.016000px;}
.ls1c{letter-spacing:20.499000px;}
.ls7{letter-spacing:24.699000px;}
.ls15{letter-spacing:25.299000px;}
.ls30{letter-spacing:164.472000px;}
.ls32{letter-spacing:226.872000px;}
.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;}
}
.ws19{word-spacing:-72.264000px;}
.wsa{word-spacing:-72.000000px;}
.ws11{word-spacing:-51.099000px;}
.ws16{word-spacing:-51.000000px;}
.ws18{word-spacing:-50.904000px;}
.ws10{word-spacing:-50.871000px;}
.ws15{word-spacing:-49.800000px;}
.ws12{word-spacing:-49.356000px;}
.wse{word-spacing:-18.216000px;}
.ws1a{word-spacing:-18.192000px;}
.wsf{word-spacing:-18.168000px;}
.ws9{word-spacing:-18.024000px;}
.wsb{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.784000px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.524000px;}
.ws2{word-spacing:-13.512000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.488000px;}
.ws6{word-spacing:-10.512000px;}
.ws8{word-spacing:-10.506000px;}
.ws7{word-spacing:-10.500000px;}
.ws17{word-spacing:-0.072000px;}
.ws13{word-spacing:-0.048000px;}
.wsd{word-spacing:0.000000px;}
.ws14{word-spacing:0.120000px;}
._33{margin-left:-11.292000px;}
._20{margin-left:-5.904000px;}
._13{margin-left:-4.536000px;}
._2{margin-left:-3.240000px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._0{width:1.050000px;}
._8{width:2.082000px;}
._11{width:3.384000px;}
._12{width:4.608000px;}
._22{width:6.036000px;}
._18{width:7.128000px;}
._19{width:8.352000px;}
._1f{width:9.432000px;}
._6{width:10.584000px;}
._4{width:12.342000px;}
._7{width:14.082000px;}
._3b{width:15.096000px;}
._9{width:16.098000px;}
._1d{width:17.136000px;}
._5{width:19.008000px;}
._c{width:20.952000px;}
._d{width:22.176000px;}
._14{width:23.472000px;}
._15{width:24.480000px;}
._e{width:26.412000px;}
._a{width:27.576000px;}
._b{width:28.728000px;}
._1e{width:30.960000px;}
._f{width:32.760000px;}
._10{width:33.942000px;}
._16{width:35.712000px;}
._17{width:36.936000px;}
._2c{width:37.944000px;}
._21{width:39.816000px;}
._34{width:41.400000px;}
._3e{width:42.480000px;}
._2d{width:43.560000px;}
._2e{width:44.784000px;}
._2b{width:45.990000px;}
._1a{width:47.520000px;}
._1b{width:48.528000px;}
._25{width:49.536000px;}
._35{width:50.904000px;}
._28{width:51.984000px;}
._2a{width:53.124000px;}
._29{width:54.864000px;}
._45{width:56.304000px;}
._26{width:58.680000px;}
._27{width:59.832000px;}
._3c{width:60.840000px;}
._3d{width:62.208000px;}
._42{width:63.792000px;}
._1c{width:64.944000px;}
._43{width:68.760000px;}
._39{width:70.128000px;}
._3f{width:74.160000px;}
._23{width:77.688000px;}
._24{width:79.128000px;}
._44{width:84.168000px;}
._40{width:87.120000px;}
._41{width:88.488000px;}
._4a{width:94.608000px;}
._4b{width:96.168000px;}
._49{width:97.344000px;}
._37{width:99.648000px;}
._38{width:100.968000px;}
._3a{width:102.102000px;}
._46{width:135.216000px;}
._47{width:136.368000px;}
._30{width:177.912000px;}
._31{width:203.760000px;}
._2f{width:246.096000px;}
._32{width:257.976000px;}
._36{width:310.968000px;}
._48{width:324.072000px;}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:51.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.100000px;}
.y9f{bottom:3.885000px;}
.y1d{bottom:3.900000px;}
.y1f{bottom:3.915000px;}
.ya9{bottom:3.930000px;}
.y7{bottom:5.400000px;}
.yb{bottom:6.000000px;}
.yc{bottom:6.750000px;}
.ya1{bottom:14.235000px;}
.ya3{bottom:14.250000px;}
.ya7{bottom:14.280000px;}
.ya{bottom:19.950000px;}
.y6{bottom:20.550000px;}
.y1c{bottom:24.600000px;}
.ya4{bottom:24.607500px;}
.ya8{bottom:24.630000px;}
.y9{bottom:33.900000px;}
.y5{bottom:36.000000px;}
.y1b{bottom:45.300000px;}
.y3{bottom:57.637500px;}
.y1a{bottom:66.000000px;}
.y2{bottom:81.637500px;}
.y19{bottom:86.700000px;}
.yf9{bottom:106.987500px;}
.y18{bottom:107.400000px;}
.y3c{bottom:109.537500px;}
.yfa{bottom:111.187500px;}
.y79{bottom:119.737500px;}
.ya2{bottom:127.687500px;}
.yf3{bottom:127.837500px;}
.y17{bottom:128.100000px;}
.yf8{bottom:131.887500px;}
.y3b{bottom:134.437500px;}
.ycb{bottom:134.737500px;}
.y78{bottom:144.487500px;}
.y124{bottom:149.437500px;}
.yf2{bottom:152.580000px;}
.yf7{bottom:156.795000px;}
.y3a{bottom:159.330000px;}
.yca{bottom:159.645000px;}
.y77{bottom:169.395000px;}
.y123{bottom:173.295000px;}
.ya0{bottom:175.095000px;}
.y4e{bottom:177.195000px;}
.yf1{bottom:177.495000px;}
.yf6{bottom:181.545000px;}
.y39{bottom:184.095000px;}
.yc9{bottom:184.395000px;}
.y76{bottom:194.295000px;}
.y122{bottom:198.195000px;}
.y4d{bottom:201.945000px;}
.yf0{bottom:202.380000px;}
.yf5{bottom:206.445000px;}
.y38{bottom:208.995000px;}
.yc8{bottom:209.295000px;}
.y121{bottom:218.880000px;}
.y75{bottom:219.045000px;}
.y9e{bottom:222.495000px;}
.y4c{bottom:226.830000px;}
.yef{bottom:227.295000px;}
.yf4{bottom:231.195000px;}
.y37{bottom:233.745000px;}
.yc7{bottom:234.045000px;}
.y120{bottom:239.580000px;}
.y74{bottom:243.945000px;}
.y4b{bottom:251.595000px;}
.yee{bottom:252.630000px;}
.yc6{bottom:255.645000px;}
.y9d{bottom:256.095000px;}
.y36{bottom:258.645000px;}
.y11f{bottom:260.295000px;}
.yc5{bottom:267.645000px;}
.y73{bottom:268.695000px;}
.y4a{bottom:276.495000px;}
.yeb{bottom:277.845000px;}
.y9c{bottom:280.830000px;}
.y11e{bottom:280.995000px;}
.yed{bottom:282.345000px;}
.y35{bottom:283.545000px;}
.yea{bottom:287.895000px;}
.y72{bottom:293.580000px;}
.yec{bottom:294.195000px;}
.y49{bottom:301.395000px;}
.y11d{bottom:301.545000px;}
.yc4{bottom:304.545000px;}
.y9b{bottom:305.745000px;}
.ye6{bottom:307.695000px;}
.y34{bottom:308.295000px;}
.y71{bottom:318.345000px;}
.ye7{bottom:319.545000px;}
.y11c{bottom:322.245000px;}
.ye9{bottom:324.645000px;}
.y48{bottom:326.145000px;}
.yc3{bottom:329.295000px;}
.y9a{bottom:330.630000px;}
.y33{bottom:333.195000px;}
.ye8{bottom:336.345000px;}
.y11b{bottom:342.945000px;}
.y70{bottom:343.245000px;}
.y47{bottom:351.045000px;}
.yc2{bottom:354.195000px;}
.y99{bottom:355.395000px;}
.y32{bottom:357.945000px;}
.ye5{bottom:363.195000px;}
.y11a{bottom:363.645000px;}
.y6f{bottom:368.130000px;}
.y46{bottom:376.095000px;}
.yc1{bottom:379.095000px;}
.y98{bottom:380.325000px;}
.y31{bottom:382.875000px;}
.y119{bottom:384.375000px;}
.ye4{bottom:388.125000px;}
.y6e{bottom:392.925000px;}
.y45{bottom:401.175000px;}
.yc0{bottom:403.875000px;}
.y97{bottom:405.075000px;}
.y30{bottom:407.775000px;}
.ye3{bottom:412.875000px;}
.y6d{bottom:417.825000px;}
.y118{bottom:425.775000px;}
.y44{bottom:426.075000px;}
.ybf{bottom:428.775000px;}
.y96{bottom:429.975000px;}
.y2f{bottom:432.525000px;}
.ye2{bottom:437.775000px;}
.y6c{bottom:442.575000px;}
.y117{bottom:446.475000px;}
.y43{bottom:451.125000px;}
.ybe{bottom:453.525000px;}
.y95{bottom:454.875000px;}
.y2e{bottom:457.425000px;}
.ye1{bottom:462.675000px;}
.y116{bottom:467.175000px;}
.y6b{bottom:467.475000px;}
.y42{bottom:476.175000px;}
.ybd{bottom:478.425000px;}
.y94{bottom:479.625000px;}
.y2d{bottom:482.175000px;}
.ye0{bottom:487.425000px;}
.y115{bottom:487.875000px;}
.y6a{bottom:492.375000px;}
.y41{bottom:501.825000px;}
.ybc{bottom:503.475000px;}
.y93{bottom:504.525000px;}
.y2c{bottom:507.075000px;}
.y114{bottom:508.575000px;}
.ydf{bottom:512.325000px;}
.y69{bottom:517.125000px;}
.y92{bottom:529.275000px;}
.ybb{bottom:530.925000px;}
.y40{bottom:531.375000px;}
.y2b{bottom:531.825000px;}
.yde{bottom:537.075000px;}
.y68{bottom:542.025000px;}
.y113{bottom:549.975000px;}
.y91{bottom:554.175000px;}
.yba{bottom:556.125000px;}
.y3f{bottom:556.275000px;}
.y2a{bottom:556.725000px;}
.ydd{bottom:561.975000px;}
.y67{bottom:566.775000px;}
.yb9{bottom:568.125000px;}
.y112{bottom:570.675000px;}
.y90{bottom:579.075000px;}
.y3e{bottom:581.025000px;}
.y29{bottom:581.625000px;}
.ydc{bottom:586.875000px;}
.y111{bottom:591.375000px;}
.y66{bottom:591.675000px;}
.y8f{bottom:603.825000px;}
.y3d{bottom:606.075000px;}
.y28{bottom:606.375000px;}
.ydb{bottom:611.625000px;}
.y110{bottom:612.075000px;}
.y65{bottom:616.575000px;}
.y8e{bottom:628.725000px;}
.y27{bottom:631.275000px;}
.y10f{bottom:632.775000px;}
.yda{bottom:636.525000px;}
.y64{bottom:641.325000px;}
.yb8{bottom:643.275000px;}
.y8d{bottom:653.475000px;}
.y26{bottom:656.025000px;}
.yd9{bottom:661.575000px;}
.y63{bottom:666.225000px;}
.y10e{bottom:674.175000px;}
.y8c{bottom:678.375000px;}
.y25{bottom:680.925000px;}
.yb7{bottom:681.075000px;}
.y62{bottom:690.975000px;}
.y10d{bottom:694.875000px;}
.y8b{bottom:703.125000px;}
.y24{bottom:705.825000px;}
.yb6{bottom:706.275000px;}
.yd8{bottom:711.975000px;}
.y10c{bottom:715.575000px;}
.y61{bottom:715.875000px;}
.y8a{bottom:728.025000px;}
.y23{bottom:730.575000px;}
.yb5{bottom:731.175000px;}
.y10b{bottom:736.275000px;}
.yd7{bottom:736.875000px;}
.y60{bottom:740.670000px;}
.y89{bottom:752.970000px;}
.y22{bottom:755.520000px;}
.yb4{bottom:755.970000px;}
.y10a{bottom:757.020000px;}
.yd6{bottom:761.670000px;}
.y5f{bottom:765.570000px;}
.y88{bottom:777.720000px;}
.yb3{bottom:780.870000px;}
.yd5{bottom:786.570000px;}
.y21{bottom:788.220000px;}
.y5e{bottom:790.470000px;}
.y109{bottom:798.420000px;}
.y87{bottom:802.620000px;}
.y20{bottom:805.020000px;}
.yb2{bottom:805.620000px;}
.yd4{bottom:811.320000px;}
.y5d{bottom:815.220000px;}
.y108{bottom:819.120000px;}
.y1e{bottom:825.705000px;}
.y86{bottom:827.370000px;}
.yb1{bottom:830.520000px;}
.yd3{bottom:836.220000px;}
.y107{bottom:839.820000px;}
.y5c{bottom:840.120000px;}
.y16{bottom:846.420000px;}
.y85{bottom:852.270000px;}
.yb0{bottom:855.420000px;}
.y106{bottom:860.520000px;}
.yd2{bottom:861.120000px;}
.y5b{bottom:864.870000px;}
.y84{bottom:877.170000px;}
.yaf{bottom:880.170000px;}
.y105{bottom:881.220000px;}
.yd1{bottom:885.870000px;}
.y5a{bottom:889.770000px;}
.y83{bottom:901.920000px;}
.yae{bottom:905.070000px;}
.yd0{bottom:910.770000px;}
.y59{bottom:914.670000px;}
.y104{bottom:922.620000px;}
.y82{bottom:926.820000px;}
.yad{bottom:929.820000px;}
.ycf{bottom:937.920000px;}
.y58{bottom:939.420000px;}
.y103{bottom:943.320000px;}
.y81{bottom:951.570000px;}
.yac{bottom:954.720000px;}
.yce{bottom:959.070000px;}
.y102{bottom:964.020000px;}
.y57{bottom:964.320000px;}
.y80{bottom:976.470000px;}
.yab{bottom:979.470000px;}
.ycc{bottom:982.170000px;}
.y101{bottom:984.720000px;}
.y56{bottom:989.370000px;}
.y15{bottom:994.920000px;}
.y7f{bottom:1001.220000px;}
.yaa{bottom:1004.370000px;}
.y100{bottom:1005.420000px;}
.ycd{bottom:1008.870000px;}
.y14{bottom:1014.120000px;}
.y55{bottom:1014.570000px;}
.y7e{bottom:1026.120000px;}
.y13{bottom:1034.820000px;}
.y54{bottom:1039.920000px;}
.yff{bottom:1046.820000px;}
.y7d{bottom:1051.020000px;}
.y12{bottom:1055.520000px;}
.y53{bottom:1065.120000px;}
.yfe{bottom:1067.520000px;}
.y7c{bottom:1075.770000px;}
.y11{bottom:1076.220000px;}
.yfd{bottom:1088.220000px;}
.y52{bottom:1090.170000px;}
.ya6{bottom:1094.220000px;}
.y10{bottom:1096.950000px;}
.y7b{bottom:1100.700000px;}
.yfc{bottom:1108.950000px;}
.y51{bottom:1111.500000px;}
.yf{bottom:1117.650000px;}
.y7a{bottom:1125.450000px;}
.yfb{bottom:1129.650000px;}
.y50{bottom:1131.000000px;}
.ya5{bottom:1141.650000px;}
.y4f{bottom:1150.050000px;}
.ye{bottom:1150.350000px;}
.y1{bottom:1176.900000px;}
.y4{bottom:1202.550000px;}
.y8{bottom:1207.800000px;}
.h8{height:17.887500px;}
.h17{height:20.550000px;}
.hf{height:20.685000px;}
.he{height:20.700000px;}
.h16{height:41.400000px;}
.h18{height:41.437500px;}
.h6{height:45.300000px;}
.h3{height:48.600000px;}
.h7{height:52.998047px;}
.h5{height:55.942383px;}
.h4{height:58.886719px;}
.h19{height:62.100000px;}
.h14{height:63.251953px;}
.h11{height:63.457031px;}
.hc{height:64.775391px;}
.h9{height:65.645508px;}
.h10{height:70.628906px;}
.hb{height:70.664062px;}
.ha{height:72.562500px;}
.h2{height:82.441406px;}
.h12{height:89.296875px;}
.h13{height:90.496875px;}
.h1f{height:91.756875px;}
.h1b{height:118.664062px;}
.h15{height:127.696875px;}
.h1e{height:128.896875px;}
.h1c{height:143.896875px;}
.hd{height:144.900000px;}
.h1a{height:146.296875px;}
.h1d{height:217.696875px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.wd{width:83.085000px;}
.wa{width:83.287500px;}
.w9{width:107.100000px;}
.wc{width:107.137500px;}
.w6{width:178.350000px;}
.wb{width:188.700000px;}
.we{width:188.730000px;}
.w5{width:262.995000px;}
.w3{width:282.495000px;}
.w4{width:297.780000px;}
.w7{width:745.770000px;}
.w8{width:750.270000px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:1.200000px;}
.x4{left:6.900000px;}
.x9{left:12.435000px;}
.x7{left:16.200000px;}
.xe{left:17.295000px;}
.x19{left:20.887500px;}
.x5{left:22.200000px;}
.xb{left:32.100000px;}
.x3{left:42.599987px;}
.x22{left:45.900000px;}
.x25{left:62.549987px;}
.x1a{left:95.699987px;}
.x18{left:100.200000px;}
.x17{left:104.700000px;}
.xd{left:106.980000px;}
.x6{left:121.687500px;}
.xa{left:128.130000px;}
.x23{left:156.795000px;}
.x26{left:162.929987px;}
.x10{left:174.929987px;}
.x27{left:230.744987px;}
.x24{left:243.795000px;}
.x1{left:303.494987px;}
.x8{left:305.145000px;}
.x12{left:449.174987px;}
.x1b{left:457.274987px;}
.x1e{left:460.575000px;}
.x1d{left:470.174987px;}
.x16{left:490.724987px;}
.x1c{left:510.374987px;}
.x2b{left:564.674987px;}
.x20{left:571.425000px;}
.x15{left:579.374987px;}
.x13{left:583.274987px;}
.x29{left:607.574987px;}
.x28{left:614.174987px;}
.xc{left:625.425000px;}
.x2e{left:631.724987px;}
.x2d{left:644.504987px;}
.x21{left:658.470000px;}
.x11{left:666.569987px;}
.x2c{left:669.119987px;}
.xf{left:713.655000px;}
.x2a{left:736.619987px;}
.x2f{left:743.204987px;}
.x2{left:819.119987px;}
.x14{left:850.619987px;}
@media print{
.v11{vertical-align:-89.600000pt;}
.v6{vertical-align:-19.200000pt;}
.v1{vertical-align:-12.800000pt;}
.vd{vertical-align:-2.133333pt;}
.v4{vertical-align:-1.066667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.066667pt;}
.v7{vertical-align:2.133333pt;}
.v2{vertical-align:12.800000pt;}
.vb{vertical-align:14.933333pt;}
.v8{vertical-align:19.200000pt;}
.v5{vertical-align:32.000000pt;}
.v9{vertical-align:34.133333pt;}
.vf{vertical-align:35.733333pt;}
.ve{vertical-align:40.533333pt;}
.v10{vertical-align:42.666667pt;}
.vc{vertical-align:48.533333pt;}
.va{vertical-align:51.200000pt;}
.v12{vertical-align:77.866667pt;}
.v14{vertical-align:101.333333pt;}
.v13{vertical-align:114.133333pt;}
.ls11{letter-spacing:-2.666667pt;}
.ls13{letter-spacing:-2.661333pt;}
.ls10{letter-spacing:-2.656000pt;}
.ls12{letter-spacing:-2.400000pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls39{letter-spacing:-0.170667pt;}
.ls36{letter-spacing:-0.114667pt;}
.ls38{letter-spacing:-0.021333pt;}
.lsf{letter-spacing:-0.010667pt;}
.lsd{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.021333pt;}
.ls20{letter-spacing:0.053333pt;}
.ls37{letter-spacing:0.088000pt;}
.ls0{letter-spacing:0.106667pt;}
.lse{letter-spacing:0.133333pt;}
.ls21{letter-spacing:0.149333pt;}
.lsc{letter-spacing:0.170667pt;}
.ls1e{letter-spacing:0.192000pt;}
.ls2c{letter-spacing:0.234667pt;}
.ls2{letter-spacing:0.266667pt;}
.ls4{letter-spacing:0.480000pt;}
.ls1f{letter-spacing:0.533333pt;}
.ls35{letter-spacing:0.586667pt;}
.ls1d{letter-spacing:0.981333pt;}
.ls2d{letter-spacing:1.578667pt;}
.ls2a{letter-spacing:1.600000pt;}
.ls33{letter-spacing:1.813333pt;}
.ls2e{letter-spacing:2.552000pt;}
.ls31{letter-spacing:2.605333pt;}
.ls26{letter-spacing:3.605333pt;}
.ls22{letter-spacing:3.658667pt;}
.ls28{letter-spacing:3.712000pt;}
.ls34{letter-spacing:3.768000pt;}
.ls5{letter-spacing:3.821333pt;}
.ls24{letter-spacing:4.245333pt;}
.ls6{letter-spacing:4.354667pt;}
.lsb{letter-spacing:4.408000pt;}
.ls18{letter-spacing:4.834667pt;}
.ls16{letter-spacing:11.482667pt;}
.ls25{letter-spacing:13.920000pt;}
.ls2b{letter-spacing:13.930667pt;}
.ls23{letter-spacing:14.026667pt;}
.ls17{letter-spacing:14.032000pt;}
.ls29{letter-spacing:14.506667pt;}
.ls1a{letter-spacing:14.538667pt;}
.ls27{letter-spacing:14.560000pt;}
.ls9{letter-spacing:16.418667pt;}
.ls19{letter-spacing:16.472000pt;}
.ls1b{letter-spacing:16.952000pt;}
.lsa{letter-spacing:17.005333pt;}
.ls2f{letter-spacing:17.706667pt;}
.ls8{letter-spacing:17.792000pt;}
.ls1c{letter-spacing:18.221333pt;}
.ls7{letter-spacing:21.954667pt;}
.ls15{letter-spacing:22.488000pt;}
.ls30{letter-spacing:146.197333pt;}
.ls32{letter-spacing:201.664000pt;}
.ws19{word-spacing:-64.234667pt;}
.wsa{word-spacing:-64.000000pt;}
.ws11{word-spacing:-45.421333pt;}
.ws16{word-spacing:-45.333333pt;}
.ws18{word-spacing:-45.248000pt;}
.ws10{word-spacing:-45.218667pt;}
.ws15{word-spacing:-44.266667pt;}
.ws12{word-spacing:-43.872000pt;}
.wse{word-spacing:-16.192000pt;}
.ws1a{word-spacing:-16.170667pt;}
.wsf{word-spacing:-16.149333pt;}
.ws9{word-spacing:-16.021333pt;}
.wsb{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.808000pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.021333pt;}
.ws2{word-spacing:-12.010667pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.989333pt;}
.ws6{word-spacing:-9.344000pt;}
.ws8{word-spacing:-9.338667pt;}
.ws7{word-spacing:-9.333333pt;}
.ws17{word-spacing:-0.064000pt;}
.ws13{word-spacing:-0.042667pt;}
.wsd{word-spacing:0.000000pt;}
.ws14{word-spacing:0.106667pt;}
._33{margin-left:-10.037333pt;}
._20{margin-left:-5.248000pt;}
._13{margin-left:-4.032000pt;}
._2{margin-left:-2.880000pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._0{width:0.933333pt;}
._8{width:1.850667pt;}
._11{width:3.008000pt;}
._12{width:4.096000pt;}
._22{width:5.365333pt;}
._18{width:6.336000pt;}
._19{width:7.424000pt;}
._1f{width:8.384000pt;}
._6{width:9.408000pt;}
._4{width:10.970667pt;}
._7{width:12.517333pt;}
._3b{width:13.418667pt;}
._9{width:14.309333pt;}
._1d{width:15.232000pt;}
._5{width:16.896000pt;}
._c{width:18.624000pt;}
._d{width:19.712000pt;}
._14{width:20.864000pt;}
._15{width:21.760000pt;}
._e{width:23.477333pt;}
._a{width:24.512000pt;}
._b{width:25.536000pt;}
._1e{width:27.520000pt;}
._f{width:29.120000pt;}
._10{width:30.170667pt;}
._16{width:31.744000pt;}
._17{width:32.832000pt;}
._2c{width:33.728000pt;}
._21{width:35.392000pt;}
._34{width:36.800000pt;}
._3e{width:37.760000pt;}
._2d{width:38.720000pt;}
._2e{width:39.808000pt;}
._2b{width:40.880000pt;}
._1a{width:42.240000pt;}
._1b{width:43.136000pt;}
._25{width:44.032000pt;}
._35{width:45.248000pt;}
._28{width:46.208000pt;}
._2a{width:47.221333pt;}
._29{width:48.768000pt;}
._45{width:50.048000pt;}
._26{width:52.160000pt;}
._27{width:53.184000pt;}
._3c{width:54.080000pt;}
._3d{width:55.296000pt;}
._42{width:56.704000pt;}
._1c{width:57.728000pt;}
._43{width:61.120000pt;}
._39{width:62.336000pt;}
._3f{width:65.920000pt;}
._23{width:69.056000pt;}
._24{width:70.336000pt;}
._44{width:74.816000pt;}
._40{width:77.440000pt;}
._41{width:78.656000pt;}
._4a{width:84.096000pt;}
._4b{width:85.482667pt;}
._49{width:86.528000pt;}
._37{width:88.576000pt;}
._38{width:89.749333pt;}
._3a{width:90.757333pt;}
._46{width:120.192000pt;}
._47{width:121.216000pt;}
._30{width:158.144000pt;}
._31{width:181.120000pt;}
._2f{width:218.752000pt;}
._32{width:229.312000pt;}
._36{width:276.416000pt;}
._48{width:288.064000pt;}
.fs6{font-size:45.333333pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:1.866667pt;}
.y9f{bottom:3.453333pt;}
.y1d{bottom:3.466667pt;}
.y1f{bottom:3.480000pt;}
.ya9{bottom:3.493333pt;}
.y7{bottom:4.800000pt;}
.yb{bottom:5.333333pt;}
.yc{bottom:6.000000pt;}
.ya1{bottom:12.653333pt;}
.ya3{bottom:12.666667pt;}
.ya7{bottom:12.693333pt;}
.ya{bottom:17.733333pt;}
.y6{bottom:18.266667pt;}
.y1c{bottom:21.866667pt;}
.ya4{bottom:21.873333pt;}
.ya8{bottom:21.893333pt;}
.y9{bottom:30.133333pt;}
.y5{bottom:32.000000pt;}
.y1b{bottom:40.266667pt;}
.y3{bottom:51.233333pt;}
.y1a{bottom:58.666667pt;}
.y2{bottom:72.566667pt;}
.y19{bottom:77.066667pt;}
.yf9{bottom:95.100000pt;}
.y18{bottom:95.466667pt;}
.y3c{bottom:97.366667pt;}
.yfa{bottom:98.833333pt;}
.y79{bottom:106.433333pt;}
.ya2{bottom:113.500000pt;}
.yf3{bottom:113.633333pt;}
.y17{bottom:113.866667pt;}
.yf8{bottom:117.233333pt;}
.y3b{bottom:119.500000pt;}
.ycb{bottom:119.766667pt;}
.y78{bottom:128.433333pt;}
.y124{bottom:132.833333pt;}
.yf2{bottom:135.626667pt;}
.yf7{bottom:139.373333pt;}
.y3a{bottom:141.626667pt;}
.yca{bottom:141.906667pt;}
.y77{bottom:150.573333pt;}
.y123{bottom:154.040000pt;}
.ya0{bottom:155.640000pt;}
.y4e{bottom:157.506667pt;}
.yf1{bottom:157.773333pt;}
.yf6{bottom:161.373333pt;}
.y39{bottom:163.640000pt;}
.yc9{bottom:163.906667pt;}
.y76{bottom:172.706667pt;}
.y122{bottom:176.173333pt;}
.y4d{bottom:179.506667pt;}
.yf0{bottom:179.893333pt;}
.yf5{bottom:183.506667pt;}
.y38{bottom:185.773333pt;}
.yc8{bottom:186.040000pt;}
.y121{bottom:194.560000pt;}
.y75{bottom:194.706667pt;}
.y9e{bottom:197.773333pt;}
.y4c{bottom:201.626667pt;}
.yef{bottom:202.040000pt;}
.yf4{bottom:205.506667pt;}
.y37{bottom:207.773333pt;}
.yc7{bottom:208.040000pt;}
.y120{bottom:212.960000pt;}
.y74{bottom:216.840000pt;}
.y4b{bottom:223.640000pt;}
.yee{bottom:224.560000pt;}
.yc6{bottom:227.240000pt;}
.y9d{bottom:227.640000pt;}
.y36{bottom:229.906667pt;}
.y11f{bottom:231.373333pt;}
.yc5{bottom:237.906667pt;}
.y73{bottom:238.840000pt;}
.y4a{bottom:245.773333pt;}
.yeb{bottom:246.973333pt;}
.y9c{bottom:249.626667pt;}
.y11e{bottom:249.773333pt;}
.yed{bottom:250.973333pt;}
.y35{bottom:252.040000pt;}
.yea{bottom:255.906667pt;}
.y72{bottom:260.960000pt;}
.yec{bottom:261.506667pt;}
.y49{bottom:267.906667pt;}
.y11d{bottom:268.040000pt;}
.yc4{bottom:270.706667pt;}
.y9b{bottom:271.773333pt;}
.ye6{bottom:273.506667pt;}
.y34{bottom:274.040000pt;}
.y71{bottom:282.973333pt;}
.ye7{bottom:284.040000pt;}
.y11c{bottom:286.440000pt;}
.ye9{bottom:288.573333pt;}
.y48{bottom:289.906667pt;}
.yc3{bottom:292.706667pt;}
.y9a{bottom:293.893333pt;}
.y33{bottom:296.173333pt;}
.ye8{bottom:298.973333pt;}
.y11b{bottom:304.840000pt;}
.y70{bottom:305.106667pt;}
.y47{bottom:312.040000pt;}
.yc2{bottom:314.840000pt;}
.y99{bottom:315.906667pt;}
.y32{bottom:318.173333pt;}
.ye5{bottom:322.840000pt;}
.y11a{bottom:323.240000pt;}
.y6f{bottom:327.226667pt;}
.y46{bottom:334.306667pt;}
.yc1{bottom:336.973333pt;}
.y98{bottom:338.066667pt;}
.y31{bottom:340.333333pt;}
.y119{bottom:341.666667pt;}
.ye4{bottom:345.000000pt;}
.y6e{bottom:349.266667pt;}
.y45{bottom:356.600000pt;}
.yc0{bottom:359.000000pt;}
.y97{bottom:360.066667pt;}
.y30{bottom:362.466667pt;}
.ye3{bottom:367.000000pt;}
.y6d{bottom:371.400000pt;}
.y118{bottom:378.466667pt;}
.y44{bottom:378.733333pt;}
.ybf{bottom:381.133333pt;}
.y96{bottom:382.200000pt;}
.y2f{bottom:384.466667pt;}
.ye2{bottom:389.133333pt;}
.y6c{bottom:393.400000pt;}
.y117{bottom:396.866667pt;}
.y43{bottom:401.000000pt;}
.ybe{bottom:403.133333pt;}
.y95{bottom:404.333333pt;}
.y2e{bottom:406.600000pt;}
.ye1{bottom:411.266667pt;}
.y116{bottom:415.266667pt;}
.y6b{bottom:415.533333pt;}
.y42{bottom:423.266667pt;}
.ybd{bottom:425.266667pt;}
.y94{bottom:426.333333pt;}
.y2d{bottom:428.600000pt;}
.ye0{bottom:433.266667pt;}
.y115{bottom:433.666667pt;}
.y6a{bottom:437.666667pt;}
.y41{bottom:446.066667pt;}
.ybc{bottom:447.533333pt;}
.y93{bottom:448.466667pt;}
.y2c{bottom:450.733333pt;}
.y114{bottom:452.066667pt;}
.ydf{bottom:455.400000pt;}
.y69{bottom:459.666667pt;}
.y92{bottom:470.466667pt;}
.ybb{bottom:471.933333pt;}
.y40{bottom:472.333333pt;}
.y2b{bottom:472.733333pt;}
.yde{bottom:477.400000pt;}
.y68{bottom:481.800000pt;}
.y113{bottom:488.866667pt;}
.y91{bottom:492.600000pt;}
.yba{bottom:494.333333pt;}
.y3f{bottom:494.466667pt;}
.y2a{bottom:494.866667pt;}
.ydd{bottom:499.533333pt;}
.y67{bottom:503.800000pt;}
.yb9{bottom:505.000000pt;}
.y112{bottom:507.266667pt;}
.y90{bottom:514.733333pt;}
.y3e{bottom:516.466667pt;}
.y29{bottom:517.000000pt;}
.ydc{bottom:521.666667pt;}
.y111{bottom:525.666667pt;}
.y66{bottom:525.933333pt;}
.y8f{bottom:536.733333pt;}
.y3d{bottom:538.733333pt;}
.y28{bottom:539.000000pt;}
.ydb{bottom:543.666667pt;}
.y110{bottom:544.066667pt;}
.y65{bottom:548.066667pt;}
.y8e{bottom:558.866667pt;}
.y27{bottom:561.133333pt;}
.y10f{bottom:562.466667pt;}
.yda{bottom:565.800000pt;}
.y64{bottom:570.066667pt;}
.yb8{bottom:571.800000pt;}
.y8d{bottom:580.866667pt;}
.y26{bottom:583.133333pt;}
.yd9{bottom:588.066667pt;}
.y63{bottom:592.200000pt;}
.y10e{bottom:599.266667pt;}
.y8c{bottom:603.000000pt;}
.y25{bottom:605.266667pt;}
.yb7{bottom:605.400000pt;}
.y62{bottom:614.200000pt;}
.y10d{bottom:617.666667pt;}
.y8b{bottom:625.000000pt;}
.y24{bottom:627.400000pt;}
.yb6{bottom:627.800000pt;}
.yd8{bottom:632.866667pt;}
.y10c{bottom:636.066667pt;}
.y61{bottom:636.333333pt;}
.y8a{bottom:647.133333pt;}
.y23{bottom:649.400000pt;}
.yb5{bottom:649.933333pt;}
.y10b{bottom:654.466667pt;}
.yd7{bottom:655.000000pt;}
.y60{bottom:658.373333pt;}
.y89{bottom:669.306667pt;}
.y22{bottom:671.573333pt;}
.yb4{bottom:671.973333pt;}
.y10a{bottom:672.906667pt;}
.yd6{bottom:677.040000pt;}
.y5f{bottom:680.506667pt;}
.y88{bottom:691.306667pt;}
.yb3{bottom:694.106667pt;}
.yd5{bottom:699.173333pt;}
.y21{bottom:700.640000pt;}
.y5e{bottom:702.640000pt;}
.y109{bottom:709.706667pt;}
.y87{bottom:713.440000pt;}
.y20{bottom:715.573333pt;}
.yb2{bottom:716.106667pt;}
.yd4{bottom:721.173333pt;}
.y5d{bottom:724.640000pt;}
.y108{bottom:728.106667pt;}
.y1e{bottom:733.960000pt;}
.y86{bottom:735.440000pt;}
.yb1{bottom:738.240000pt;}
.yd3{bottom:743.306667pt;}
.y107{bottom:746.506667pt;}
.y5c{bottom:746.773333pt;}
.y16{bottom:752.373333pt;}
.y85{bottom:757.573333pt;}
.yb0{bottom:760.373333pt;}
.y106{bottom:764.906667pt;}
.yd2{bottom:765.440000pt;}
.y5b{bottom:768.773333pt;}
.y84{bottom:779.706667pt;}
.yaf{bottom:782.373333pt;}
.y105{bottom:783.306667pt;}
.yd1{bottom:787.440000pt;}
.y5a{bottom:790.906667pt;}
.y83{bottom:801.706667pt;}
.yae{bottom:804.506667pt;}
.yd0{bottom:809.573333pt;}
.y59{bottom:813.040000pt;}
.y104{bottom:820.106667pt;}
.y82{bottom:823.840000pt;}
.yad{bottom:826.506667pt;}
.ycf{bottom:833.706667pt;}
.y58{bottom:835.040000pt;}
.y103{bottom:838.506667pt;}
.y81{bottom:845.840000pt;}
.yac{bottom:848.640000pt;}
.yce{bottom:852.506667pt;}
.y102{bottom:856.906667pt;}
.y57{bottom:857.173333pt;}
.y80{bottom:867.973333pt;}
.yab{bottom:870.640000pt;}
.ycc{bottom:873.040000pt;}
.y101{bottom:875.306667pt;}
.y56{bottom:879.440000pt;}
.y15{bottom:884.373333pt;}
.y7f{bottom:889.973333pt;}
.yaa{bottom:892.773333pt;}
.y100{bottom:893.706667pt;}
.ycd{bottom:896.773333pt;}
.y14{bottom:901.440000pt;}
.y55{bottom:901.840000pt;}
.y7e{bottom:912.106667pt;}
.y13{bottom:919.840000pt;}
.y54{bottom:924.373333pt;}
.yff{bottom:930.506667pt;}
.y7d{bottom:934.240000pt;}
.y12{bottom:938.240000pt;}
.y53{bottom:946.773333pt;}
.yfe{bottom:948.906667pt;}
.y7c{bottom:956.240000pt;}
.y11{bottom:956.640000pt;}
.yfd{bottom:967.306667pt;}
.y52{bottom:969.040000pt;}
.ya6{bottom:972.640000pt;}
.y10{bottom:975.066667pt;}
.y7b{bottom:978.400000pt;}
.yfc{bottom:985.733333pt;}
.y51{bottom:988.000000pt;}
.yf{bottom:993.466667pt;}
.y7a{bottom:1000.400000pt;}
.yfb{bottom:1004.133333pt;}
.y50{bottom:1005.333333pt;}
.ya5{bottom:1014.800000pt;}
.y4f{bottom:1022.266667pt;}
.ye{bottom:1022.533333pt;}
.y1{bottom:1046.133333pt;}
.y4{bottom:1068.933333pt;}
.y8{bottom:1073.600000pt;}
.h8{height:15.900000pt;}
.h17{height:18.266667pt;}
.hf{height:18.386667pt;}
.he{height:18.400000pt;}
.h16{height:36.800000pt;}
.h18{height:36.833333pt;}
.h6{height:40.266667pt;}
.h3{height:43.200000pt;}
.h7{height:47.109375pt;}
.h5{height:49.726562pt;}
.h4{height:52.343750pt;}
.h19{height:55.200000pt;}
.h14{height:56.223958pt;}
.h11{height:56.406250pt;}
.hc{height:57.578125pt;}
.h9{height:58.351562pt;}
.h10{height:62.781250pt;}
.hb{height:62.812500pt;}
.ha{height:64.500000pt;}
.h2{height:73.281250pt;}
.h12{height:79.375000pt;}
.h13{height:80.441667pt;}
.h1f{height:81.561667pt;}
.h1b{height:105.479167pt;}
.h15{height:113.508333pt;}
.h1e{height:114.575000pt;}
.h1c{height:127.908333pt;}
.hd{height:128.800000pt;}
.h1a{height:130.041667pt;}
.h1d{height:193.508333pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.wd{width:73.853333pt;}
.wa{width:74.033333pt;}
.w9{width:95.200000pt;}
.wc{width:95.233333pt;}
.w6{width:158.533333pt;}
.wb{width:167.733333pt;}
.we{width:167.760000pt;}
.w5{width:233.773333pt;}
.w3{width:251.106667pt;}
.w4{width:264.693333pt;}
.w7{width:662.906667pt;}
.w8{width:666.906667pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:1.066667pt;}
.x4{left:6.133333pt;}
.x9{left:11.053333pt;}
.x7{left:14.400000pt;}
.xe{left:15.373333pt;}
.x19{left:18.566667pt;}
.x5{left:19.733333pt;}
.xb{left:28.533333pt;}
.x3{left:37.866655pt;}
.x22{left:40.800000pt;}
.x25{left:55.599988pt;}
.x1a{left:85.066655pt;}
.x18{left:89.066667pt;}
.x17{left:93.066667pt;}
.xd{left:95.093333pt;}
.x6{left:108.166667pt;}
.xa{left:113.893333pt;}
.x23{left:139.373333pt;}
.x26{left:144.826655pt;}
.x10{left:155.493322pt;}
.x27{left:205.106655pt;}
.x24{left:216.706667pt;}
.x1{left:269.773322pt;}
.x8{left:271.240000pt;}
.x12{left:399.266655pt;}
.x1b{left:406.466655pt;}
.x1e{left:409.400000pt;}
.x1d{left:417.933322pt;}
.x16{left:436.199988pt;}
.x1c{left:453.666655pt;}
.x2b{left:501.933322pt;}
.x20{left:507.933333pt;}
.x15{left:514.999988pt;}
.x13{left:518.466655pt;}
.x29{left:540.066655pt;}
.x28{left:545.933322pt;}
.xc{left:555.933333pt;}
.x2e{left:561.533322pt;}
.x2d{left:572.893322pt;}
.x21{left:585.306667pt;}
.x11{left:592.506655pt;}
.x2c{left:594.773322pt;}
.xf{left:634.360000pt;}
.x2a{left:654.773322pt;}
.x2f{left:660.626655pt;}
.x2{left:728.106655pt;}
.x14{left:756.106655pt;}
}




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