
    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_4c5c099a7066bc7839432168.woff')format("woff");}.ff1{font-family:ff1;line-height:1.120605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5b782097a7d135eec87d9029.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_979631b89a3003d07a4e8be6.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3fe1aa76a62991a3ad1e074c.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_50200ca8164f1514ebd3d317.woff')format("woff");}.ff5{font-family:ff5;line-height:1.120605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_29fe73bf20c01fecade7698c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a428d6de57b4fae66b0248b5.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_651005e28955571f9e6ab65f.woff')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_946cb570ec11c858ffa260f6.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_c0e795f04e79c33e01c2ba8a.woff')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_51d7697c73b3f292a1678398.woff')format("woff");}.ffb{font-family:ffb;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b94298b93958132aec68b63e.woff')format("woff");}.ffc{font-family:ffc;line-height:0.804688;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);}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-5.256000px;}
.lsf{letter-spacing:-4.536000px;}
.ls1a{letter-spacing:-1.008000px;}
.ls19{letter-spacing:-0.432000px;}
.ls9{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.126600px;}
.ls13{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.276600px;}
.ls18{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.504000px;}
.lsb{letter-spacing:0.720000px;}
.ls1{letter-spacing:0.800640px;}
.ls16{letter-spacing:12.960000px;}
.ls17{letter-spacing:16.640640px;}
.ls15{letter-spacing:16.704000px;}
.lsc{letter-spacing:20.700000px;}
.ls10{letter-spacing:33.984000px;}
.ls11{letter-spacing:44.784000px;}
.ls5{letter-spacing:54.864000px;}
.lsd{letter-spacing:61.585920px;}
.ls1c{letter-spacing:72.840000px;}
.ls12{letter-spacing:72.864000px;}
.ls0{letter-spacing:141.200640px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-72.000000px;}
.wsc{word-spacing:-63.360000px;}
.ws5{word-spacing:-21.420000px;}
.wsb{word-spacing:-21.060000px;}
.wsa{word-spacing:-18.720000px;}
.wsd{word-spacing:-18.504000px;}
.ws10{word-spacing:-18.288000px;}
.ws6{word-spacing:-18.144000px;}
.ws7{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.784000px;}
.ws11{word-spacing:-17.568000px;}
.ws0{word-spacing:-15.840000px;}
.ws3{word-spacing:-14.595960px;}
.ws2{word-spacing:-14.319360px;}
.ws1{word-spacing:-14.192760px;}
.wsf{word-spacing:-12.186000px;}
.wse{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
._1b{margin-left:-20.742720px;}
._8{margin-left:-13.056480px;}
._5{margin-left:-11.760000px;}
._4{margin-left:-9.797280px;}
._2{margin-left:-7.756560px;}
._1{margin-left:-6.032880px;}
._7{margin-left:-4.353120px;}
._6{margin-left:-2.407680px;}
._0{margin-left:-1.340640px;}
._3{width:1.153200px;}
._b{width:2.171760px;}
._2a{width:3.207840px;}
._e{width:4.224000px;}
._10{width:5.638800px;}
._11{width:6.667200px;}
._16{width:7.967760px;}
._1a{width:9.067200px;}
._17{width:10.224000px;}
._d{width:11.520000px;}
._f{width:13.368000px;}
._20{width:14.688000px;}
._19{width:16.128000px;}
._a{width:19.990560px;}
._c{width:21.860640px;}
._12{width:23.544000px;}
._13{width:25.143600px;}
._18{width:26.994720px;}
._15{width:28.004640px;}
._14{width:29.064000px;}
._24{width:30.816000px;}
._1c{width:32.472000px;}
._1d{width:33.667440px;}
._25{width:35.628960px;}
._23{width:40.104000px;}
._1f{width:52.558080px;}
._1e{width:53.684640px;}
._21{width:59.616000px;}
._22{width:60.732000px;}
._28{width:62.568000px;}
._29{width:64.152000px;}
._26{width:69.912000px;}
._27{width:72.108000px;}
._2b{width:100.224000px;}
._9{width:848.316000px;}
.fc3{color:rgb(15,17,21);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(45,83,160);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:18.000000px;}
.fs6{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:63.360000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y35{bottom:11.160000px;}
.y146{bottom:11.190000px;}
.y3d{bottom:11.205000px;}
.y41{bottom:13.320000px;}
.y88{bottom:46.260000px;}
.yba{bottom:46.290000px;}
.y8e{bottom:46.305000px;}
.y2{bottom:77.796000px;}
.yee{bottom:81.360000px;}
.yb9{bottom:81.390000px;}
.y8d{bottom:81.405000px;}
.y1{bottom:94.356000px;}
.y7f{bottom:108.036000px;}
.y15f{bottom:112.896000px;}
.yb0{bottom:116.856000px;}
.y33{bottom:119.736000px;}
.yc6{bottom:122.616000px;}
.y104{bottom:128.736000px;}
.ye2{bottom:129.456000px;}
.y52{bottom:129.816000px;}
.y10a{bottom:131.256000px;}
.y6e{bottom:132.336000px;}
.y93{bottom:138.996000px;}
.yd1{bottom:141.156000px;}
.y159{bottom:141.516000px;}
.yec{bottom:147.996000px;}
.yaf{bottom:151.230000px;}
.y32{bottom:154.830000px;}
.yc5{bottom:157.710000px;}
.ye1{bottom:163.830000px;}
.y103{bottom:164.550000px;}
.y51{bottom:164.910000px;}
.y123{bottom:165.810000px;}
.y6d{bottom:167.430000px;}
.y92{bottom:174.090000px;}
.yf7{bottom:175.530000px;}
.yd0{bottom:176.250000px;}
.y158{bottom:176.610000px;}
.yeb{bottom:183.090000px;}
.yae{bottom:186.330000px;}
.y31{bottom:189.930000px;}
.yc4{bottom:192.810000px;}
.y102{bottom:198.930000px;}
.ye0{bottom:199.650000px;}
.y50{bottom:200.010000px;}
.y131{bottom:201.810000px;}
.y6c{bottom:202.530000px;}
.y91{bottom:209.190000px;}
.yf6{bottom:210.630000px;}
.ycf{bottom:211.350000px;}
.yea{bottom:218.190000px;}
.yad{bottom:221.430000px;}
.y30{bottom:225.030000px;}
.yc3{bottom:227.910000px;}
.y90{bottom:233.850000px;}
.ydf{bottom:234.750000px;}
.y4f{bottom:235.110000px;}
.y130{bottom:236.910000px;}
.y6b{bottom:237.630000px;}
.y157{bottom:241.050000px;}
.y13c{bottom:245.730000px;}
.yf5{bottom:246.450000px;}
.y122{bottom:247.890000px;}
.ye9{bottom:253.290000px;}
.yac{bottom:257.250000px;}
.y2f{bottom:259.410000px;}
.yc2{bottom:263.010000px;}
.yce{bottom:265.710000px;}
.yde{bottom:269.130000px;}
.y4e{bottom:270.210000px;}
.y121{bottom:272.550000px;}
.y6a{bottom:272.730000px;}
.y8f{bottom:280.110000px;}
.yf4{bottom:280.830000px;}
.y141{bottom:281.550000px;}
.y15e{bottom:287.670000px;}
.ye8{bottom:288.390000px;}
.yab{bottom:292.350000px;}
.y2e{bottom:295.230000px;}
.yc1{bottom:298.830000px;}
.ydd{bottom:304.950000px;}
.y4d{bottom:305.310000px;}
.y8c{bottom:305.670000px;}
.y12f{bottom:307.110000px;}
.y69{bottom:307.830000px;}
.y156{bottom:308.730000px;}
.yf3{bottom:316.650000px;}
.y120{bottom:319.530000px;}
.ycd{bottom:320.430000px;}
.yfc{bottom:321.150000px;}
.ye7{bottom:322.770000px;}
.y15d{bottom:323.490000px;}
.yaa{bottom:327.450000px;}
.y2d{bottom:330.330000px;}
.y155{bottom:333.570000px;}
.yc0{bottom:333.930000px;}
.y140{bottom:335.910000px;}
.ydc{bottom:340.095000px;}
.y4c{bottom:340.455000px;}
.y68{bottom:342.975000px;}
.ycc{bottom:345.315000px;}
.y14b{bottom:351.075000px;}
.y13b{bottom:351.795000px;}
.y11f{bottom:354.675000px;}
.yfb{bottom:356.295000px;}
.ye6{bottom:357.915000px;}
.y15c{bottom:358.635000px;}
.y101{bottom:359.355000px;}
.ya9{bottom:362.595000px;}
.y2c{bottom:365.475000px;}
.ybf{bottom:369.075000px;}
.y18{bottom:370.515000px;}
.yf2{bottom:371.055000px;}
.ydb{bottom:375.195000px;}
.y4b{bottom:375.555000px;}
.y67{bottom:378.075000px;}
.yfa{bottom:382.755000px;}
.y13a{bottom:386.175000px;}
.y14a{bottom:386.895000px;}
.y11e{bottom:389.775000px;}
.y13f{bottom:391.395000px;}
.ycb{bottom:392.295000px;}
.ye5{bottom:393.015000px;}
.y15b{bottom:393.735000px;}
.ya8{bottom:397.695000px;}
.y17{bottom:399.855000px;}
.y2b{bottom:400.575000px;}
.yda{bottom:410.295000px;}
.y4a{bottom:410.655000px;}
.y12e{bottom:412.455000px;}
.y66{bottom:413.175000px;}
.y100{bottom:414.795000px;}
.y139{bottom:421.995000px;}
.y8b{bottom:422.175000px;}
.y11d{bottom:424.875000px;}
.yf1{bottom:426.495000px;}
.yca{bottom:427.395000px;}
.ye4{bottom:428.115000px;}
.ybe{bottom:428.295000px;}
.y15a{bottom:428.835000px;}
.ya7{bottom:432.075000px;}
.y16{bottom:434.955000px;}
.y2a{bottom:435.675000px;}
.y149{bottom:441.255000px;}
.y49{bottom:445.755000px;}
.y8a{bottom:447.555000px;}
.y65{bottom:448.275000px;}
.yff{bottom:449.895000px;}
.y13e{bottom:450.975000px;}
.yc9{bottom:452.055000px;}
.y138{bottom:456.375000px;}
.y11c{bottom:459.255000px;}
.yf0{bottom:461.595000px;}
.y7e{bottom:463.215000px;}
.yd9{bottom:464.655000px;}
.ya6{bottom:467.175000px;}
.y15{bottom:470.235000px;}
.y29{bottom:470.775000px;}
.yfe{bottom:477.615000px;}
.y48{bottom:481.575000px;}
.y12d{bottom:482.655000px;}
.ybd{bottom:490.035000px;}
.y137{bottom:492.195000px;}
.y11b{bottom:494.355000px;}
.yef{bottom:495.255000px;}
.y148{bottom:495.975000px;}
.y7d{bottom:498.315000px;}
.yc8{bottom:499.035000px;}
.ya5{bottom:502.995000px;}
.y14{bottom:505.335000px;}
.y28{bottom:505.875000px;}
.y64{bottom:507.495000px;}
.ybc{bottom:514.695000px;}
.y47{bottom:516.675000px;}
.y12c{bottom:518.475000px;}
.yd8{bottom:520.095000px;}
.y109{bottom:520.815000px;}
.y89{bottom:528.915000px;}
.y11a{bottom:530.175000px;}
.ye3{bottom:533.415000px;}
.y7c{bottom:534.135000px;}
.ya4{bottom:537.375000px;}
.y13{bottom:540.435000px;}
.y27{bottom:540.975000px;}
.y136{bottom:546.555000px;}
.y46{bottom:551.775000px;}
.y12b{bottom:553.575000px;}
.y87{bottom:554.295000px;}
.yd7{bottom:555.195000px;}
.ybb{bottom:561.675000px;}
.y119{bottom:564.555000px;}
.y147{bottom:567.795000px;}
.y63{bottom:568.515000px;}
.y7b{bottom:569.235000px;}
.ya3{bottom:573.195000px;}
.y12{bottom:575.535000px;}
.yd6{bottom:582.735000px;}
.yb8{bottom:586.515000px;}
.y45{bottom:586.875000px;}
.y12a{bottom:588.675000px;}
.y145{bottom:592.455000px;}
.y118{bottom:600.375000px;}
.y151{bottom:601.275000px;}
.y135{bottom:601.995000px;}
.y108{bottom:602.895000px;}
.y62{bottom:603.645000px;}
.y7a{bottom:604.365000px;}
.y26{bottom:605.625000px;}
.ya2{bottom:608.325000px;}
.y11{bottom:610.665000px;}
.y44{bottom:622.005000px;}
.y129{bottom:623.085000px;}
.y150{bottom:626.145000px;}
.y107{bottom:627.585000px;}
.y117{bottom:635.505000px;}
.y86{bottom:635.685000px;}
.y134{bottom:637.125000px;}
.y61{bottom:638.745000px;}
.y79{bottom:639.465000px;}
.ya1{bottom:643.425000px;}
.y10{bottom:645.765000px;}
.y128{bottom:658.905000px;}
.y133{bottom:666.105000px;}
.y116{bottom:669.885000px;}
.y85{bottom:671.505000px;}
.y14f{bottom:673.125000px;}
.y25{bottom:673.305000px;}
.y60{bottom:673.845000px;}
.y78{bottom:674.565000px;}
.ya0{bottom:678.525000px;}
.yf{bottom:680.865000px;}
.y43{bottom:686.445000px;}
.y84{bottom:696.345000px;}
.y14e{bottom:697.785000px;}
.yb7{bottom:703.725000px;}
.y115{bottom:705.705000px;}
.y24{bottom:708.405000px;}
.y5f{bottom:708.945000px;}
.y77{bottom:709.665000px;}
.y127{bottom:713.445000px;}
.y9f{bottom:713.625000px;}
.ye{bottom:715.965000px;}
.yb6{bottom:728.385000px;}
.yf9{bottom:731.445000px;}
.y114{bottom:740.085000px;}
.y83{bottom:743.325000px;}
.y23{bottom:743.505000px;}
.y5e{bottom:744.045000px;}
.y76{bottom:744.765000px;}
.y9e{bottom:748.725000px;}
.y42{bottom:749.265000px;}
.yd{bottom:751.065000px;}
.y40{bottom:767.085000px;}
.y126{bottom:768.885000px;}
.y113{bottom:775.905000px;}
.y82{bottom:778.425000px;}
.y22{bottom:778.605000px;}
.y5d{bottom:779.145000px;}
.y75{bottom:779.865000px;}
.y9d{bottom:783.825000px;}
.yc{bottom:786.165000px;}
.y154{bottom:801.645000px;}
.y81{bottom:803.085000px;}
.y125{bottom:803.985000px;}
.y112{bottom:810.285000px;}
.y3f{bottom:810.465000px;}
.y21{bottom:813.705000px;}
.y5c{bottom:814.245000px;}
.y74{bottom:814.965000px;}
.y9c{bottom:818.925000px;}
.yb{bottom:821.265000px;}
.y124{bottom:833.865000px;}
.yb5{bottom:835.125000px;}
.y3e{bottom:845.565000px;}
.y111{bottom:846.105000px;}
.y20{bottom:848.805000px;}
.y5b{bottom:849.345000px;}
.y73{bottom:850.065000px;}
.y9b{bottom:854.025000px;}
.ya{bottom:856.365000px;}
.y3c{bottom:870.225000px;}
.y110{bottom:881.250000px;}
.yb4{bottom:882.150000px;}
.y153{bottom:883.770000px;}
.y1f{bottom:883.950000px;}
.y5a{bottom:884.490000px;}
.y144{bottom:885.030000px;}
.y72{bottom:885.210000px;}
.y9a{bottom:889.170000px;}
.y9{bottom:891.510000px;}
.yd5{bottom:906.990000px;}
.y152{bottom:908.430000px;}
.y10f{bottom:916.350000px;}
.y3b{bottom:917.250000px;}
.y1e{bottom:919.050000px;}
.y59{bottom:919.590000px;}
.y143{bottom:920.130000px;}
.y71{bottom:920.310000px;}
.y99{bottom:924.270000px;}
.y132{bottom:925.350000px;}
.y8{bottom:926.610000px;}
.yb3{bottom:942.090000px;}
.y10e{bottom:950.730000px;}
.y3a{bottom:952.350000px;}
.yd4{bottom:953.250000px;}
.y1d{bottom:954.150000px;}
.yc7{bottom:954.690000px;}
.y58{bottom:955.410000px;}
.y98{bottom:959.370000px;}
.y7{bottom:961.530000px;}
.y39{bottom:977.190000px;}
.yd3{bottom:978.630000px;}
.y10d{bottom:986.550000px;}
.yb2{bottom:989.070000px;}
.y1c{bottom:989.250000px;}
.y142{bottom:989.790000px;}
.y14d{bottom:990.330000px;}
.y57{bottom:990.510000px;}
.y97{bottom:994.470000px;}
.y6{bottom:996.630000px;}
.y13d{bottom:1012.290000px;}
.yfd{bottom:1013.730000px;}
.y38{bottom:1024.170000px;}
.y1b{bottom:1024.350000px;}
.yd2{bottom:1024.890000px;}
.y14c{bottom:1025.430000px;}
.y56{bottom:1025.610000px;}
.y96{bottom:1029.570000px;}
.y5{bottom:1031.730000px;}
.y10c{bottom:1041.090000px;}
.yb1{bottom:1048.830000px;}
.y37{bottom:1059.270000px;}
.y1a{bottom:1059.450000px;}
.yf8{bottom:1059.990000px;}
.y55{bottom:1060.710000px;}
.y95{bottom:1064.670000px;}
.y4{bottom:1070.790000px;}
.y36{bottom:1093.650000px;}
.yed{bottom:1094.370000px;}
.y54{bottom:1095.090000px;}
.y106{bottom:1095.630000px;}
.y70{bottom:1095.810000px;}
.y10b{bottom:1096.530000px;}
.y34{bottom:1119.030000px;}
.y3{bottom:1122.810000px;}
.y94{bottom:1123.710000px;}
.y19{bottom:1123.890000px;}
.y53{bottom:1130.190000px;}
.y105{bottom:1130.730000px;}
.y6f{bottom:1130.910000px;}
.y80{bottom:1131.630000px;}
.h4{height:17.666016px;}
.hf{height:31.500000px;}
.he{height:35.100000px;}
.hd{height:35.136000px;}
.h16{height:47.980898px;}
.hb{height:50.273438px;}
.h2{height:53.709961px;}
.h15{height:57.656250px;}
.ha{height:59.343750px;}
.h7{height:62.184375px;}
.h6{height:63.019687px;}
.h5{height:63.855000px;}
.h3{height:67.565039px;}
.h12{height:70.200000px;}
.h11{height:70.236000px;}
.h9{height:70.664062px;}
.h10{height:72.562500px;}
.hc{height:74.004654px;}
.h8{height:87.695156px;}
.h14{height:105.300000px;}
.h13{height:105.336000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:575.925000px;}
.w3{width:584.565000px;}
.w7{width:593.385000px;}
.w8{width:600.045000px;}
.w6{width:611.565000px;}
.w9{width:621.465000px;}
.w5{width:638.565000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:7.740000px;}
.xb{left:127.296000px;}
.x2{left:135.035987px;}
.xc{left:154.290000px;}
.x6{left:162.029987px;}
.x4{left:166.529987px;}
.x8{left:181.290000px;}
.x7{left:189.029987px;}
.xd{left:193.529987px;}
.x5{left:198.029987px;}
.xf{left:216.029987px;}
.xe{left:220.529987px;}
.x21{left:229.529987px;}
.x10{left:243.029987px;}
.x16{left:244.829987px;}
.x13{left:297.614987px;}
.x3{left:299.054987px;}
.x1c{left:302.294987px;}
.x1e{left:305.174987px;}
.x1d{left:315.794987px;}
.x20{left:319.394987px;}
.x1a{left:344.054987px;}
.x18{left:350.534987px;}
.x11{left:439.634987px;}
.x1{left:443.054987px;}
.x14{left:446.474987px;}
.x1f{left:621.464987px;}
.x19{left:676.049987px;}
.x12{left:680.369987px;}
.x15{left:681.629987px;}
.x1b{left:683.609987px;}
.xa{left:688.469987px;}
.x17{left:698.549987px;}
.x22{left:724.469987px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-4.672000pt;}
.lsf{letter-spacing:-4.032000pt;}
.ls1a{letter-spacing:-0.896000pt;}
.ls19{letter-spacing:-0.384000pt;}
.ls9{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.112533pt;}
.ls13{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.245867pt;}
.ls18{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.448000pt;}
.lsb{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.711680pt;}
.ls16{letter-spacing:11.520000pt;}
.ls17{letter-spacing:14.791680pt;}
.ls15{letter-spacing:14.848000pt;}
.lsc{letter-spacing:18.400000pt;}
.ls10{letter-spacing:30.208000pt;}
.ls11{letter-spacing:39.808000pt;}
.ls5{letter-spacing:48.768000pt;}
.lsd{letter-spacing:54.743040pt;}
.ls1c{letter-spacing:64.746667pt;}
.ls12{letter-spacing:64.768000pt;}
.ls0{letter-spacing:125.511680pt;}
.ws8{word-spacing:-64.000000pt;}
.wsc{word-spacing:-56.320000pt;}
.ws5{word-spacing:-19.040000pt;}
.wsb{word-spacing:-18.720000pt;}
.wsa{word-spacing:-16.640000pt;}
.wsd{word-spacing:-16.448000pt;}
.ws10{word-spacing:-16.256000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.808000pt;}
.ws11{word-spacing:-15.616000pt;}
.ws0{word-spacing:-14.080000pt;}
.ws3{word-spacing:-12.974187pt;}
.ws2{word-spacing:-12.728320pt;}
.ws1{word-spacing:-12.615787pt;}
.wsf{word-spacing:-10.832000pt;}
.wse{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
._1b{margin-left:-18.437973pt;}
._8{margin-left:-11.605760pt;}
._5{margin-left:-10.453333pt;}
._4{margin-left:-8.708693pt;}
._2{margin-left:-6.894720pt;}
._1{margin-left:-5.362560pt;}
._7{margin-left:-3.869440pt;}
._6{margin-left:-2.140160pt;}
._0{margin-left:-1.191680pt;}
._3{width:1.025067pt;}
._b{width:1.930453pt;}
._2a{width:2.851413pt;}
._e{width:3.754667pt;}
._10{width:5.012267pt;}
._11{width:5.926400pt;}
._16{width:7.082453pt;}
._1a{width:8.059733pt;}
._17{width:9.088000pt;}
._d{width:10.240000pt;}
._f{width:11.882667pt;}
._20{width:13.056000pt;}
._19{width:14.336000pt;}
._a{width:17.769387pt;}
._c{width:19.431680pt;}
._12{width:20.928000pt;}
._13{width:22.349867pt;}
._18{width:23.995307pt;}
._15{width:24.893013pt;}
._14{width:25.834667pt;}
._24{width:27.392000pt;}
._1c{width:28.864000pt;}
._1d{width:29.926613pt;}
._25{width:31.670187pt;}
._23{width:35.648000pt;}
._1f{width:46.718293pt;}
._1e{width:47.719680pt;}
._21{width:52.992000pt;}
._22{width:53.984000pt;}
._28{width:55.616000pt;}
._29{width:57.024000pt;}
._26{width:62.144000pt;}
._27{width:64.096000pt;}
._2b{width:89.088000pt;}
._9{width:754.058667pt;}
.fs3{font-size:16.000000pt;}
.fs6{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:56.320000pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:9.920000pt;}
.y146{bottom:9.946667pt;}
.y3d{bottom:9.960000pt;}
.y41{bottom:11.840000pt;}
.y88{bottom:41.120000pt;}
.yba{bottom:41.146667pt;}
.y8e{bottom:41.160000pt;}
.y2{bottom:69.152000pt;}
.yee{bottom:72.320000pt;}
.yb9{bottom:72.346667pt;}
.y8d{bottom:72.360000pt;}
.y1{bottom:83.872000pt;}
.y7f{bottom:96.032000pt;}
.y15f{bottom:100.352000pt;}
.yb0{bottom:103.872000pt;}
.y33{bottom:106.432000pt;}
.yc6{bottom:108.992000pt;}
.y104{bottom:114.432000pt;}
.ye2{bottom:115.072000pt;}
.y52{bottom:115.392000pt;}
.y10a{bottom:116.672000pt;}
.y6e{bottom:117.632000pt;}
.y93{bottom:123.552000pt;}
.yd1{bottom:125.472000pt;}
.y159{bottom:125.792000pt;}
.yec{bottom:131.552000pt;}
.yaf{bottom:134.426667pt;}
.y32{bottom:137.626667pt;}
.yc5{bottom:140.186667pt;}
.ye1{bottom:145.626667pt;}
.y103{bottom:146.266667pt;}
.y51{bottom:146.586667pt;}
.y123{bottom:147.386667pt;}
.y6d{bottom:148.826667pt;}
.y92{bottom:154.746667pt;}
.yf7{bottom:156.026667pt;}
.yd0{bottom:156.666667pt;}
.y158{bottom:156.986667pt;}
.yeb{bottom:162.746667pt;}
.yae{bottom:165.626667pt;}
.y31{bottom:168.826667pt;}
.yc4{bottom:171.386667pt;}
.y102{bottom:176.826667pt;}
.ye0{bottom:177.466667pt;}
.y50{bottom:177.786667pt;}
.y131{bottom:179.386667pt;}
.y6c{bottom:180.026667pt;}
.y91{bottom:185.946667pt;}
.yf6{bottom:187.226667pt;}
.ycf{bottom:187.866667pt;}
.yea{bottom:193.946667pt;}
.yad{bottom:196.826667pt;}
.y30{bottom:200.026667pt;}
.yc3{bottom:202.586667pt;}
.y90{bottom:207.866667pt;}
.ydf{bottom:208.666667pt;}
.y4f{bottom:208.986667pt;}
.y130{bottom:210.586667pt;}
.y6b{bottom:211.226667pt;}
.y157{bottom:214.266667pt;}
.y13c{bottom:218.426667pt;}
.yf5{bottom:219.066667pt;}
.y122{bottom:220.346667pt;}
.ye9{bottom:225.146667pt;}
.yac{bottom:228.666667pt;}
.y2f{bottom:230.586667pt;}
.yc2{bottom:233.786667pt;}
.yce{bottom:236.186667pt;}
.yde{bottom:239.226667pt;}
.y4e{bottom:240.186667pt;}
.y121{bottom:242.266667pt;}
.y6a{bottom:242.426667pt;}
.y8f{bottom:248.986667pt;}
.yf4{bottom:249.626667pt;}
.y141{bottom:250.266667pt;}
.y15e{bottom:255.706667pt;}
.ye8{bottom:256.346667pt;}
.yab{bottom:259.866667pt;}
.y2e{bottom:262.426667pt;}
.yc1{bottom:265.626667pt;}
.ydd{bottom:271.066667pt;}
.y4d{bottom:271.386667pt;}
.y8c{bottom:271.706667pt;}
.y12f{bottom:272.986667pt;}
.y69{bottom:273.626667pt;}
.y156{bottom:274.426667pt;}
.yf3{bottom:281.466667pt;}
.y120{bottom:284.026667pt;}
.ycd{bottom:284.826667pt;}
.yfc{bottom:285.466667pt;}
.ye7{bottom:286.906667pt;}
.y15d{bottom:287.546667pt;}
.yaa{bottom:291.066667pt;}
.y2d{bottom:293.626667pt;}
.y155{bottom:296.506667pt;}
.yc0{bottom:296.826667pt;}
.y140{bottom:298.586667pt;}
.ydc{bottom:302.306667pt;}
.y4c{bottom:302.626667pt;}
.y68{bottom:304.866667pt;}
.ycc{bottom:306.946667pt;}
.y14b{bottom:312.066667pt;}
.y13b{bottom:312.706667pt;}
.y11f{bottom:315.266667pt;}
.yfb{bottom:316.706667pt;}
.ye6{bottom:318.146667pt;}
.y15c{bottom:318.786667pt;}
.y101{bottom:319.426667pt;}
.ya9{bottom:322.306667pt;}
.y2c{bottom:324.866667pt;}
.ybf{bottom:328.066667pt;}
.y18{bottom:329.346667pt;}
.yf2{bottom:329.826667pt;}
.ydb{bottom:333.506667pt;}
.y4b{bottom:333.826667pt;}
.y67{bottom:336.066667pt;}
.yfa{bottom:340.226667pt;}
.y13a{bottom:343.266667pt;}
.y14a{bottom:343.906667pt;}
.y11e{bottom:346.466667pt;}
.y13f{bottom:347.906667pt;}
.ycb{bottom:348.706667pt;}
.ye5{bottom:349.346667pt;}
.y15b{bottom:349.986667pt;}
.ya8{bottom:353.506667pt;}
.y17{bottom:355.426667pt;}
.y2b{bottom:356.066667pt;}
.yda{bottom:364.706667pt;}
.y4a{bottom:365.026667pt;}
.y12e{bottom:366.626667pt;}
.y66{bottom:367.266667pt;}
.y100{bottom:368.706667pt;}
.y139{bottom:375.106667pt;}
.y8b{bottom:375.266667pt;}
.y11d{bottom:377.666667pt;}
.yf1{bottom:379.106667pt;}
.yca{bottom:379.906667pt;}
.ye4{bottom:380.546667pt;}
.ybe{bottom:380.706667pt;}
.y15a{bottom:381.186667pt;}
.ya7{bottom:384.066667pt;}
.y16{bottom:386.626667pt;}
.y2a{bottom:387.266667pt;}
.y149{bottom:392.226667pt;}
.y49{bottom:396.226667pt;}
.y8a{bottom:397.826667pt;}
.y65{bottom:398.466667pt;}
.yff{bottom:399.906667pt;}
.y13e{bottom:400.866667pt;}
.yc9{bottom:401.826667pt;}
.y138{bottom:405.666667pt;}
.y11c{bottom:408.226667pt;}
.yf0{bottom:410.306667pt;}
.y7e{bottom:411.746667pt;}
.yd9{bottom:413.026667pt;}
.ya6{bottom:415.266667pt;}
.y15{bottom:417.986667pt;}
.y29{bottom:418.466667pt;}
.yfe{bottom:424.546667pt;}
.y48{bottom:428.066667pt;}
.y12d{bottom:429.026667pt;}
.ybd{bottom:435.586667pt;}
.y137{bottom:437.506667pt;}
.y11b{bottom:439.426667pt;}
.yef{bottom:440.226667pt;}
.y148{bottom:440.866667pt;}
.y7d{bottom:442.946667pt;}
.yc8{bottom:443.586667pt;}
.ya5{bottom:447.106667pt;}
.y14{bottom:449.186667pt;}
.y28{bottom:449.666667pt;}
.y64{bottom:451.106667pt;}
.ybc{bottom:457.506667pt;}
.y47{bottom:459.266667pt;}
.y12c{bottom:460.866667pt;}
.yd8{bottom:462.306667pt;}
.y109{bottom:462.946667pt;}
.y89{bottom:470.146667pt;}
.y11a{bottom:471.266667pt;}
.ye3{bottom:474.146667pt;}
.y7c{bottom:474.786667pt;}
.ya4{bottom:477.666667pt;}
.y13{bottom:480.386667pt;}
.y27{bottom:480.866667pt;}
.y136{bottom:485.826667pt;}
.y46{bottom:490.466667pt;}
.y12b{bottom:492.066667pt;}
.y87{bottom:492.706667pt;}
.yd7{bottom:493.506667pt;}
.ybb{bottom:499.266667pt;}
.y119{bottom:501.826667pt;}
.y147{bottom:504.706667pt;}
.y63{bottom:505.346667pt;}
.y7b{bottom:505.986667pt;}
.ya3{bottom:509.506667pt;}
.y12{bottom:511.586667pt;}
.yd6{bottom:517.986667pt;}
.yb8{bottom:521.346667pt;}
.y45{bottom:521.666667pt;}
.y12a{bottom:523.266667pt;}
.y145{bottom:526.626667pt;}
.y118{bottom:533.666667pt;}
.y151{bottom:534.466667pt;}
.y135{bottom:535.106667pt;}
.y108{bottom:535.906667pt;}
.y62{bottom:536.573333pt;}
.y7a{bottom:537.213333pt;}
.y26{bottom:538.333333pt;}
.ya2{bottom:540.733333pt;}
.y11{bottom:542.813333pt;}
.y44{bottom:552.893333pt;}
.y129{bottom:553.853333pt;}
.y150{bottom:556.573333pt;}
.y107{bottom:557.853333pt;}
.y117{bottom:564.893333pt;}
.y86{bottom:565.053333pt;}
.y134{bottom:566.333333pt;}
.y61{bottom:567.773333pt;}
.y79{bottom:568.413333pt;}
.ya1{bottom:571.933333pt;}
.y10{bottom:574.013333pt;}
.y128{bottom:585.693333pt;}
.y133{bottom:592.093333pt;}
.y116{bottom:595.453333pt;}
.y85{bottom:596.893333pt;}
.y14f{bottom:598.333333pt;}
.y25{bottom:598.493333pt;}
.y60{bottom:598.973333pt;}
.y78{bottom:599.613333pt;}
.ya0{bottom:603.133333pt;}
.yf{bottom:605.213333pt;}
.y43{bottom:610.173333pt;}
.y84{bottom:618.973333pt;}
.y14e{bottom:620.253333pt;}
.yb7{bottom:625.533333pt;}
.y115{bottom:627.293333pt;}
.y24{bottom:629.693333pt;}
.y5f{bottom:630.173333pt;}
.y77{bottom:630.813333pt;}
.y127{bottom:634.173333pt;}
.y9f{bottom:634.333333pt;}
.ye{bottom:636.413333pt;}
.yb6{bottom:647.453333pt;}
.yf9{bottom:650.173333pt;}
.y114{bottom:657.853333pt;}
.y83{bottom:660.733333pt;}
.y23{bottom:660.893333pt;}
.y5e{bottom:661.373333pt;}
.y76{bottom:662.013333pt;}
.y9e{bottom:665.533333pt;}
.y42{bottom:666.013333pt;}
.yd{bottom:667.613333pt;}
.y40{bottom:681.853333pt;}
.y126{bottom:683.453333pt;}
.y113{bottom:689.693333pt;}
.y82{bottom:691.933333pt;}
.y22{bottom:692.093333pt;}
.y5d{bottom:692.573333pt;}
.y75{bottom:693.213333pt;}
.y9d{bottom:696.733333pt;}
.yc{bottom:698.813333pt;}
.y154{bottom:712.573333pt;}
.y81{bottom:713.853333pt;}
.y125{bottom:714.653333pt;}
.y112{bottom:720.253333pt;}
.y3f{bottom:720.413333pt;}
.y21{bottom:723.293333pt;}
.y5c{bottom:723.773333pt;}
.y74{bottom:724.413333pt;}
.y9c{bottom:727.933333pt;}
.yb{bottom:730.013333pt;}
.y124{bottom:741.213333pt;}
.yb5{bottom:742.333333pt;}
.y3e{bottom:751.613333pt;}
.y111{bottom:752.093333pt;}
.y20{bottom:754.493333pt;}
.y5b{bottom:754.973333pt;}
.y73{bottom:755.613333pt;}
.y9b{bottom:759.133333pt;}
.ya{bottom:761.213333pt;}
.y3c{bottom:773.533333pt;}
.y110{bottom:783.333333pt;}
.yb4{bottom:784.133333pt;}
.y153{bottom:785.573333pt;}
.y1f{bottom:785.733333pt;}
.y5a{bottom:786.213333pt;}
.y144{bottom:786.693333pt;}
.y72{bottom:786.853333pt;}
.y9a{bottom:790.373333pt;}
.y9{bottom:792.453333pt;}
.yd5{bottom:806.213333pt;}
.y152{bottom:807.493333pt;}
.y10f{bottom:814.533333pt;}
.y3b{bottom:815.333333pt;}
.y1e{bottom:816.933333pt;}
.y59{bottom:817.413333pt;}
.y143{bottom:817.893333pt;}
.y71{bottom:818.053333pt;}
.y99{bottom:821.573333pt;}
.y132{bottom:822.533333pt;}
.y8{bottom:823.653333pt;}
.yb3{bottom:837.413333pt;}
.y10e{bottom:845.093333pt;}
.y3a{bottom:846.533333pt;}
.yd4{bottom:847.333333pt;}
.y1d{bottom:848.133333pt;}
.yc7{bottom:848.613333pt;}
.y58{bottom:849.253333pt;}
.y98{bottom:852.773333pt;}
.y7{bottom:854.693333pt;}
.y39{bottom:868.613333pt;}
.yd3{bottom:869.893333pt;}
.y10d{bottom:876.933333pt;}
.yb2{bottom:879.173333pt;}
.y1c{bottom:879.333333pt;}
.y142{bottom:879.813333pt;}
.y14d{bottom:880.293333pt;}
.y57{bottom:880.453333pt;}
.y97{bottom:883.973333pt;}
.y6{bottom:885.893333pt;}
.y13d{bottom:899.813333pt;}
.yfd{bottom:901.093333pt;}
.y38{bottom:910.373333pt;}
.y1b{bottom:910.533333pt;}
.yd2{bottom:911.013333pt;}
.y14c{bottom:911.493333pt;}
.y56{bottom:911.653333pt;}
.y96{bottom:915.173333pt;}
.y5{bottom:917.093333pt;}
.y10c{bottom:925.413333pt;}
.yb1{bottom:932.293333pt;}
.y37{bottom:941.573333pt;}
.y1a{bottom:941.733333pt;}
.yf8{bottom:942.213333pt;}
.y55{bottom:942.853333pt;}
.y95{bottom:946.373333pt;}
.y4{bottom:951.813333pt;}
.y36{bottom:972.133333pt;}
.yed{bottom:972.773333pt;}
.y54{bottom:973.413333pt;}
.y106{bottom:973.893333pt;}
.y70{bottom:974.053333pt;}
.y10b{bottom:974.693333pt;}
.y34{bottom:994.693333pt;}
.y3{bottom:998.053333pt;}
.y94{bottom:998.853333pt;}
.y19{bottom:999.013333pt;}
.y53{bottom:1004.613333pt;}
.y105{bottom:1005.093333pt;}
.y6f{bottom:1005.253333pt;}
.y80{bottom:1005.893333pt;}
.h4{height:15.703125pt;}
.hf{height:28.000000pt;}
.he{height:31.200000pt;}
.hd{height:31.232000pt;}
.h16{height:42.649687pt;}
.hb{height:44.687500pt;}
.h2{height:47.742188pt;}
.h15{height:51.250000pt;}
.ha{height:52.750000pt;}
.h7{height:55.275000pt;}
.h6{height:56.017500pt;}
.h5{height:56.760000pt;}
.h3{height:60.057813pt;}
.h12{height:62.400000pt;}
.h11{height:62.432000pt;}
.h9{height:62.812500pt;}
.h10{height:64.500000pt;}
.hc{height:65.781915pt;}
.h8{height:77.951250pt;}
.h14{height:93.600000pt;}
.h13{height:93.632000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:511.933333pt;}
.w3{width:519.613333pt;}
.w7{width:527.453333pt;}
.w8{width:533.373333pt;}
.w6{width:543.613333pt;}
.w9{width:552.413333pt;}
.w5{width:567.613333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:6.880000pt;}
.xb{left:113.152000pt;}
.x2{left:120.031988pt;}
.xc{left:137.146667pt;}
.x6{left:144.026655pt;}
.x4{left:148.026655pt;}
.x8{left:161.146667pt;}
.x7{left:168.026655pt;}
.xd{left:172.026655pt;}
.x5{left:176.026655pt;}
.xf{left:192.026655pt;}
.xe{left:196.026655pt;}
.x21{left:204.026655pt;}
.x10{left:216.026655pt;}
.x16{left:217.626655pt;}
.x13{left:264.546655pt;}
.x3{left:265.826655pt;}
.x1c{left:268.706655pt;}
.x1e{left:271.266655pt;}
.x1d{left:280.706655pt;}
.x20{left:283.906655pt;}
.x1a{left:305.826655pt;}
.x18{left:311.586655pt;}
.x11{left:390.786655pt;}
.x1{left:393.826655pt;}
.x14{left:396.866655pt;}
.x1f{left:552.413322pt;}
.x19{left:600.933322pt;}
.x12{left:604.773322pt;}
.x15{left:605.893322pt;}
.x1b{left:607.653322pt;}
.xa{left:611.973322pt;}
.x17{left:620.933322pt;}
.x22{left:643.973322pt;}
}




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