
    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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_f60821975a35fc36372ec45b.woff2')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_0c245a117644731a3faaa223.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.034000;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_db2c931894db2354052190bc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.906000;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_a5768796154765938b28f0f9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.736816;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_1ce93933d53e8622e5db0064.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.297852;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_751b19a33aeb82da3094ff6a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.297852;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_adc684a01c295ace650e0d51.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_f43f148e423bd0468016c111.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.034000;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_46448410d19f8472eca100d9.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_7815aa440abc59f9bad4480b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.767578;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:ffe;src:url('chunks/assets/font_fe1abd8044cb99f819a02362.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.966309;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:fff;src:url('chunks/assets/font_97daf62d1a0aa2d4463e7b4f.woff2')format("woff");}.fff{font-family:fff;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-33.120000px;}
.v1{vertical-align:-31.875440px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:31.875440px;}
.v3{vertical-align:33.120000px;}
.ls12{letter-spacing:-0.853806px;}
.lsd{letter-spacing:-0.720000px;}
.ls26{letter-spacing:-0.648000px;}
.ls11{letter-spacing:-0.630000px;}
.ls2a{letter-spacing:-0.576000px;}
.ls15{letter-spacing:-0.524933px;}
.ls27{letter-spacing:-0.504000px;}
.lse{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.089400px;}
.ls14{letter-spacing:-0.082218px;}
.ls10{letter-spacing:-0.072000px;}
.lsb{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.072000px;}
.ls19{letter-spacing:0.234600px;}
.ls4{letter-spacing:0.234720px;}
.ls6{letter-spacing:0.414720px;}
.ls17{letter-spacing:0.423360px;}
.ls16{letter-spacing:0.466800px;}
.lsf{letter-spacing:0.648000px;}
.ls7{letter-spacing:0.661795px;}
.ls13{letter-spacing:0.664072px;}
.ls0{letter-spacing:0.720000px;}
.ls25{letter-spacing:0.864000px;}
.ls1c{letter-spacing:1.512000px;}
.ls1e{letter-spacing:1.656000px;}
.ls1a{letter-spacing:1.674000px;}
.ls5{letter-spacing:1.674720px;}
.ls2{letter-spacing:2.376997px;}
.ls1f{letter-spacing:2.952000px;}
.ls24{letter-spacing:4.392000px;}
.ls20{letter-spacing:7.260000px;}
.ls1d{letter-spacing:8.712000px;}
.ls3{letter-spacing:10.197560px;}
.ls1{letter-spacing:11.715439px;}
.ls29{letter-spacing:16.306560px;}
.ls9{letter-spacing:18.876332px;}
.lsa{letter-spacing:19.002822px;}
.ls8{letter-spacing:20.394210px;}
.ls28{letter-spacing:46.546560px;}
.ls18{letter-spacing:105.336000px;}
.ls1b{letter-spacing:188.856000px;}
.ls22{letter-spacing:698.772000px;}
.ls23{letter-spacing:710.292000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-72.000000px;}
.ws8{word-spacing:-27.936000px;}
.ws1{word-spacing:-27.288000px;}
.ws11{word-spacing:-26.928000px;}
.ws10{word-spacing:-26.784000px;}
.ws12{word-spacing:-26.712000px;}
.wsf{word-spacing:-26.640000px;}
.ws7{word-spacing:-26.462687px;}
.wse{word-spacing:-19.684080px;}
.wsd{word-spacing:-18.244680px;}
.ws6{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.120000px;}
.wsb{word-spacing:-13.680000px;}
.wsa{word-spacing:-13.050000px;}
.ws3{word-spacing:-11.160000px;}
.ws5{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws9{word-spacing:-8.928000px;}
.wsc{word-spacing:0.000000px;}
._d{margin-left:-10.408545px;}
._4{margin-left:-2.453760px;}
._3{margin-left:-1.391040px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._5{width:4.662903px;}
._7{width:5.752922px;}
._6{width:6.838596px;}
._f{width:8.145898px;}
._c{width:9.968379px;}
._b{width:11.101760px;}
._10{width:12.277758px;}
._a{width:14.276918px;}
._9{width:16.123565px;}
._1f{width:17.136000px;}
._12{width:18.869760px;}
._13{width:20.315520px;}
._1e{width:31.106880px;}
._16{width:40.826880px;}
._14{width:67.968000px;}
._11{width:89.705760px;}
._1d{width:135.432000px;}
._e{width:188.712000px;}
._8{width:201.219028px;}
._17{width:284.792640px;}
._19{width:289.668480px;}
._15{width:293.861760px;}
._1b{width:306.728842px;}
._18{width:311.691840px;}
._1c{width:357.848842px;}
._1a{width:431.016000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(34,34,34);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fs3{font-size:30.240000px;}
.fsc{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fsa{font-size:44.018465px;}
.fsb{font-size:47.520000px;}
.fsd{font-size:54.720000px;}
.fs8{font-size:57.679368px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs9{font-size:69.822393px;}
.fs5{font-size:72.000000px;}
.fse{font-size:83.520000px;}
.fs4{font-size:96.480000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y4a{bottom:1.075500px;}
.y5{bottom:3.960000px;}
.y41{bottom:4.680000px;}
.y57{bottom:5.370000px;}
.y2{bottom:7.920000px;}
.y55{bottom:10.471500px;}
.y4{bottom:21.240000px;}
.y40{bottom:23.400000px;}
.y54{bottom:29.194500px;}
.y49{bottom:30.634500px;}
.y3f{bottom:42.480000px;}
.y48{bottom:42.514500px;}
.y3{bottom:44.280000px;}
.y53{bottom:51.514500px;}
.y47{bottom:55.474500px;}
.y7{bottom:57.636000px;}
.y3e{bottom:61.200000px;}
.y46{bottom:68.434500px;}
.y52{bottom:70.594500px;}
.y3d{bottom:80.325000px;}
.y51{bottom:88.234500px;}
.y45{bottom:90.034500px;}
.yc2{bottom:92.916000px;}
.y50{bottom:94.354500px;}
.y3c{bottom:99.045000px;}
.y4f{bottom:110.194500px;}
.y3b{bottom:118.125000px;}
.yc1{bottom:120.636000px;}
.y89{bottom:122.076000px;}
.y4e{bottom:126.034500px;}
.y42{bottom:134.320500px;}
.y3a{bottom:136.845000px;}
.y88{bottom:141.156000px;}
.y4d{bottom:141.544500px;}
.yc0{bottom:148.752000px;}
.y44{bottom:152.344500px;}
.y39{bottom:155.565000px;}
.y4c{bottom:157.024500px;}
.y87{bottom:159.915000px;}
.y43{bottom:163.144500px;}
.ybf{bottom:167.475000px;}
.y4b{bottom:172.144500px;}
.y38{bottom:174.645000px;}
.y86{bottom:178.995000px;}
.ybe{bottom:186.195000px;}
.y37{bottom:193.365000px;}
.y85{bottom:197.715000px;}
.ybd{bottom:205.275000px;}
.y36{bottom:212.475000px;}
.y84{bottom:216.795000px;}
.ybc{bottom:223.995000px;}
.y96{bottom:225.795000px;}
.y35{bottom:231.195000px;}
.y83{bottom:235.515000px;}
.ybb{bottom:243.075000px;}
.y95{bottom:244.515000px;}
.y34{bottom:250.275000px;}
.y82{bottom:254.235000px;}
.yba{bottom:261.795000px;}
.y94{bottom:263.235000px;}
.y33{bottom:268.995000px;}
.y81{bottom:273.345000px;}
.yb9{bottom:280.905000px;}
.y93{bottom:282.345000px;}
.y32{bottom:288.075000px;}
.y80{bottom:292.065000px;}
.yb8{bottom:299.625000px;}
.y92{bottom:301.065000px;}
.y31{bottom:306.795000px;}
.y7f{bottom:311.145000px;}
.yb7{bottom:318.705000px;}
.y91{bottom:320.145000px;}
.y30{bottom:325.875000px;}
.y1d{bottom:326.955000px;}
.ye{bottom:326.985000px;}
.y7e{bottom:329.865000px;}
.yb6{bottom:337.425000px;}
.y90{bottom:338.865000px;}
.y2f{bottom:344.625000px;}
.y7d{bottom:348.945000px;}
.y1c{bottom:351.105000px;}
.yb5{bottom:356.505000px;}
.ye2{bottom:357.585000px;}
.y8f{bottom:357.945000px;}
.y2e{bottom:363.345000px;}
.y7c{bottom:367.665000px;}
.y1b{bottom:375.225000px;}
.y8e{bottom:376.665000px;}
.ye1{bottom:381.345000px;}
.y2d{bottom:381.705000px;}
.y7b{bottom:386.745000px;}
.y8d{bottom:395.745000px;}
.yb4{bottom:396.465000px;}
.y1a{bottom:399.345000px;}
.ye0{bottom:400.065000px;}
.y7a{bottom:414.510000px;}
.yb3{bottom:415.590000px;}
.y2c{bottom:416.625000px;}
.ydf{bottom:419.190000px;}
.y19{bottom:423.465000px;}
.y79{bottom:433.590000px;}
.y2b{bottom:433.905000px;}
.yb2{bottom:434.310000px;}
.yde{bottom:437.910000px;}
.y18{bottom:447.585000px;}
.y78{bottom:452.310000px;}
.y2a{bottom:453.345000px;}
.ydd{bottom:456.990000px;}
.yb1{bottom:462.030000px;}
.y29{bottom:470.625000px;}
.y77{bottom:471.030000px;}
.y17{bottom:471.705000px;}
.ydc{bottom:475.710000px;}
.yb0{bottom:481.110000px;}
.y28{bottom:487.950000px;}
.y76{bottom:490.110000px;}
.ydb{bottom:494.790000px;}
.y16{bottom:496.230000px;}
.yaf{bottom:499.830000px;}
.y27{bottom:505.230000px;}
.y75{bottom:508.830000px;}
.yda{bottom:513.510000px;}
.yae{bottom:518.910000px;}
.y15{bottom:520.350000px;}
.y26{bottom:522.510000px;}
.y74{bottom:527.910000px;}
.yd9{bottom:532.230000px;}
.yad{bottom:537.660000px;}
.y25{bottom:539.790000px;}
.y14{bottom:544.470000px;}
.y73{bottom:546.660000px;}
.yd8{bottom:553.860000px;}
.yac{bottom:556.740000px;}
.y24{bottom:557.070000px;}
.y72{bottom:565.740000px;}
.y13{bottom:568.590000px;}
.yd7{bottom:572.580000px;}
.y22{bottom:574.350000px;}
.yab{bottom:575.460000px;}
.y23{bottom:581.910000px;}
.y71{bottom:584.460000px;}
.yd6{bottom:591.300000px;}
.y21{bottom:591.990000px;}
.y12{bottom:592.710000px;}
.yaa{bottom:594.540000px;}
.y70{bottom:603.540000px;}
.y20{bottom:609.300000px;}
.yd5{bottom:610.380000px;}
.y11{bottom:616.860000px;}
.y6f{bottom:622.260000px;}
.y1f{bottom:626.580000px;}
.yd4{bottom:629.100000px;}
.y10{bottom:640.980000px;}
.yd3{bottom:647.820000px;}
.y1e{bottom:648.540000px;}
.y6e{bottom:660.060000px;}
.yf{bottom:665.100000px;}
.y8c{bottom:669.090000px;}
.yd2{bottom:669.450000px;}
.y6d{bottom:678.810000px;}
.y8b{bottom:687.810000px;}
.yd1{bottom:688.170000px;}
.y6c{bottom:697.890000px;}
.y8a{bottom:706.890000px;}
.yd0{bottom:709.410000px;}
.ya9{bottom:716.610000px;}
.y6b{bottom:725.610000px;}
.ycf{bottom:728.490000px;}
.ya8{bottom:735.690000px;}
.y6a{bottom:744.690000px;}
.yce{bottom:747.210000px;}
.ya7{bottom:754.410000px;}
.y69{bottom:763.410000px;}
.ycd{bottom:766.290000px;}
.ya6{bottom:773.490000px;}
.y68{bottom:782.490000px;}
.ycc{bottom:785.010000px;}
.ya5{bottom:792.210000px;}
.y67{bottom:801.255000px;}
.ycb{bottom:804.135000px;}
.ya4{bottom:811.335000px;}
.y66{bottom:820.335000px;}
.yca{bottom:822.855000px;}
.ya3{bottom:830.055000px;}
.y65{bottom:839.055000px;}
.yc9{bottom:841.575000px;}
.ya2{bottom:848.775000px;}
.y64{bottom:857.775000px;}
.yc8{bottom:863.175000px;}
.ya1{bottom:867.855000px;}
.y63{bottom:876.855000px;}
.yc7{bottom:881.895000px;}
.ya0{bottom:886.575000px;}
.y62{bottom:895.575000px;}
.yc6{bottom:900.975000px;}
.y9f{bottom:905.655000px;}
.y61{bottom:914.655000px;}
.yc5{bottom:919.695000px;}
.y9e{bottom:924.375000px;}
.y60{bottom:933.405000px;}
.yc4{bottom:940.965000px;}
.y9d{bottom:943.485000px;}
.y5f{bottom:952.485000px;}
.yc3{bottom:959.685000px;}
.y9c{bottom:962.205000px;}
.y5e{bottom:971.205000px;}
.y9b{bottom:981.285000px;}
.y5d{bottom:990.285000px;}
.y9a{bottom:1000.005000px;}
.yd{bottom:1004.325000px;}
.y5c{bottom:1009.005000px;}
.yc{bottom:1009.725000px;}
.y99{bottom:1018.725000px;}
.y5b{bottom:1027.725000px;}
.yb{bottom:1028.085000px;}
.y98{bottom:1037.805000px;}
.ya{bottom:1046.805000px;}
.y97{bottom:1056.525000px;}
.y5a{bottom:1065.570000px;}
.y9{bottom:1067.730000px;}
.y59{bottom:1084.650000px;}
.y8{bottom:1086.450000px;}
.y56{bottom:1089.720000px;}
.y58{bottom:1103.370000px;}
.y6{bottom:1120.290000px;}
.y1{bottom:1127.130000px;}
.ha{height:4.165313px;}
.h1a{height:5.650313px;}
.h1b{height:27.720000px;}
.h17{height:29.678906px;}
.h6{height:30.077578px;}
.h11{height:35.258790px;}
.h16{height:35.332031px;}
.hd{height:40.985156px;}
.hc{height:42.086250px;}
.h18{height:53.677969px;}
.h19{height:55.147500px;}
.hf{height:55.927736px;}
.h8{height:57.672000px;}
.h5{height:59.357813px;}
.h14{height:60.155156px;}
.h9{height:60.952500px;}
.he{height:61.143509px;}
.h1f{height:62.163910px;}
.h1c{height:63.455625px;}
.h1d{height:64.112344px;}
.h10{height:64.978594px;}
.h3{height:65.884219px;}
.h12{height:67.134230px;}
.h20{height:70.664062px;}
.h13{height:71.183520px;}
.h1e{height:72.562500px;}
.h7{height:77.280480px;}
.h2{height:81.390000px;}
.h4{height:116.640000px;}
.h15{height:191.925000px;}
.hb{height:674.445000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:103.702500px;}
.w4{width:132.502500px;}
.w6{width:163.080000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x28{left:6.876000px;}
.x17{left:8.266500px;}
.x4{left:13.305000px;}
.x15{left:14.746500px;}
.x1f{left:18.346500px;}
.x5{left:19.425000px;}
.x16{left:26.626500px;}
.x21{left:29.146500px;}
.x6{left:38.145000px;}
.xf{left:43.906500px;}
.x20{left:47.542500px;}
.x10{left:50.782500px;}
.x14{left:54.022500px;}
.xe{left:55.102500px;}
.x23{left:57.262500px;}
.x22{left:66.265500px;}
.x13{left:73.105500px;}
.x12{left:75.265500px;}
.x1{left:78.529500px;}
.x7{left:86.436000px;}
.x25{left:89.655000px;}
.x2{left:95.425500px;}
.x24{left:102.985500px;}
.x1e{left:106.945500px;}
.x2a{left:113.436000px;}
.x11{left:124.585500px;}
.x1b{left:127.860000px;}
.x26{left:136.140000px;}
.x29{left:140.472000px;}
.x3{left:182.250000px;}
.x18{left:218.970000px;}
.x19{left:438.285000px;}
.x27{left:451.635000px;}
.x1c{left:483.315000px;}
.x1a{left:497.715000px;}
.x1d{left:542.760000px;}
.xc{left:573.330000px;}
.xb{left:610.095000px;}
.xa{left:735.765000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
.xd{left:807.090000px;}
@media print{
.v4{vertical-align:-29.440000pt;}
.v1{vertical-align:-28.333725pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:28.333725pt;}
.v3{vertical-align:29.440000pt;}
.ls12{letter-spacing:-0.758939pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls26{letter-spacing:-0.576000pt;}
.ls11{letter-spacing:-0.560000pt;}
.ls2a{letter-spacing:-0.512000pt;}
.ls15{letter-spacing:-0.466607pt;}
.ls27{letter-spacing:-0.448000pt;}
.lse{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.079467pt;}
.ls14{letter-spacing:-0.073083pt;}
.ls10{letter-spacing:-0.064000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.064000pt;}
.ls19{letter-spacing:0.208533pt;}
.ls4{letter-spacing:0.208640pt;}
.ls6{letter-spacing:0.368640pt;}
.ls17{letter-spacing:0.376320pt;}
.ls16{letter-spacing:0.414933pt;}
.lsf{letter-spacing:0.576000pt;}
.ls7{letter-spacing:0.588262pt;}
.ls13{letter-spacing:0.590286pt;}
.ls0{letter-spacing:0.640000pt;}
.ls25{letter-spacing:0.768000pt;}
.ls1c{letter-spacing:1.344000pt;}
.ls1e{letter-spacing:1.472000pt;}
.ls1a{letter-spacing:1.488000pt;}
.ls5{letter-spacing:1.488640pt;}
.ls2{letter-spacing:2.112886pt;}
.ls1f{letter-spacing:2.624000pt;}
.ls24{letter-spacing:3.904000pt;}
.ls20{letter-spacing:6.453333pt;}
.ls1d{letter-spacing:7.744000pt;}
.ls3{letter-spacing:9.064498pt;}
.ls1{letter-spacing:10.413723pt;}
.ls29{letter-spacing:14.494720pt;}
.ls9{letter-spacing:16.778962pt;}
.lsa{letter-spacing:16.891397pt;}
.ls8{letter-spacing:18.128187pt;}
.ls28{letter-spacing:41.374720pt;}
.ls18{letter-spacing:93.632000pt;}
.ls1b{letter-spacing:167.872000pt;}
.ls22{letter-spacing:621.130667pt;}
.ls23{letter-spacing:631.370667pt;}
.ws2{word-spacing:-64.000000pt;}
.ws8{word-spacing:-24.832000pt;}
.ws1{word-spacing:-24.256000pt;}
.ws11{word-spacing:-23.936000pt;}
.ws10{word-spacing:-23.808000pt;}
.ws12{word-spacing:-23.744000pt;}
.wsf{word-spacing:-23.680000pt;}
.ws7{word-spacing:-23.522388pt;}
.wse{word-spacing:-17.496960pt;}
.wsd{word-spacing:-16.217493pt;}
.ws6{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.440000pt;}
.wsb{word-spacing:-12.160000pt;}
.wsa{word-spacing:-11.600000pt;}
.ws3{word-spacing:-9.920000pt;}
.ws5{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws9{word-spacing:-7.936000pt;}
.wsc{word-spacing:0.000000pt;}
._d{margin-left:-9.252040pt;}
._4{margin-left:-2.181120pt;}
._3{margin-left:-1.236480pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._5{width:4.144803pt;}
._7{width:5.113709pt;}
._6{width:6.078752pt;}
._f{width:7.240799pt;}
._c{width:8.860781pt;}
._b{width:9.868231pt;}
._10{width:10.913563pt;}
._a{width:12.690593pt;}
._9{width:14.332058pt;}
._1f{width:15.232000pt;}
._12{width:16.773120pt;}
._13{width:18.058240pt;}
._1e{width:27.650560pt;}
._16{width:36.290560pt;}
._14{width:60.416000pt;}
._11{width:79.738453pt;}
._1d{width:120.384000pt;}
._e{width:167.744000pt;}
._8{width:178.861358pt;}
._17{width:253.149013pt;}
._19{width:257.483093pt;}
._15{width:261.210453pt;}
._1b{width:272.647860pt;}
._18{width:277.059413pt;}
._1c{width:318.087860pt;}
._1a{width:383.125333pt;}
.fs6{font-size:5.120000pt;}
.fs3{font-size:26.880000pt;}
.fsc{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fsa{font-size:39.127524pt;}
.fsb{font-size:42.240000pt;}
.fsd{font-size:48.640000pt;}
.fs8{font-size:51.270549pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs9{font-size:62.064349pt;}
.fs5{font-size:64.000000pt;}
.fse{font-size:74.240000pt;}
.fs4{font-size:85.760000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:0.956000pt;}
.y5{bottom:3.520000pt;}
.y41{bottom:4.160000pt;}
.y57{bottom:4.773333pt;}
.y2{bottom:7.040000pt;}
.y55{bottom:9.308000pt;}
.y4{bottom:18.880000pt;}
.y40{bottom:20.800000pt;}
.y54{bottom:25.950667pt;}
.y49{bottom:27.230667pt;}
.y3f{bottom:37.760000pt;}
.y48{bottom:37.790667pt;}
.y3{bottom:39.360000pt;}
.y53{bottom:45.790667pt;}
.y47{bottom:49.310667pt;}
.y7{bottom:51.232000pt;}
.y3e{bottom:54.400000pt;}
.y46{bottom:60.830667pt;}
.y52{bottom:62.750667pt;}
.y3d{bottom:71.400000pt;}
.y51{bottom:78.430667pt;}
.y45{bottom:80.030667pt;}
.yc2{bottom:82.592000pt;}
.y50{bottom:83.870667pt;}
.y3c{bottom:88.040000pt;}
.y4f{bottom:97.950667pt;}
.y3b{bottom:105.000000pt;}
.yc1{bottom:107.232000pt;}
.y89{bottom:108.512000pt;}
.y4e{bottom:112.030667pt;}
.y42{bottom:119.396000pt;}
.y3a{bottom:121.640000pt;}
.y88{bottom:125.472000pt;}
.y4d{bottom:125.817333pt;}
.yc0{bottom:132.224000pt;}
.y44{bottom:135.417333pt;}
.y39{bottom:138.280000pt;}
.y4c{bottom:139.577333pt;}
.y87{bottom:142.146667pt;}
.y43{bottom:145.017333pt;}
.ybf{bottom:148.866667pt;}
.y4b{bottom:153.017333pt;}
.y38{bottom:155.240000pt;}
.y86{bottom:159.106667pt;}
.ybe{bottom:165.506667pt;}
.y37{bottom:171.880000pt;}
.y85{bottom:175.746667pt;}
.ybd{bottom:182.466667pt;}
.y36{bottom:188.866667pt;}
.y84{bottom:192.706667pt;}
.ybc{bottom:199.106667pt;}
.y96{bottom:200.706667pt;}
.y35{bottom:205.506667pt;}
.y83{bottom:209.346667pt;}
.ybb{bottom:216.066667pt;}
.y95{bottom:217.346667pt;}
.y34{bottom:222.466667pt;}
.y82{bottom:225.986667pt;}
.yba{bottom:232.706667pt;}
.y94{bottom:233.986667pt;}
.y33{bottom:239.106667pt;}
.y81{bottom:242.973333pt;}
.yb9{bottom:249.693333pt;}
.y93{bottom:250.973333pt;}
.y32{bottom:256.066667pt;}
.y80{bottom:259.613333pt;}
.yb8{bottom:266.333333pt;}
.y92{bottom:267.613333pt;}
.y31{bottom:272.706667pt;}
.y7f{bottom:276.573333pt;}
.yb7{bottom:283.293333pt;}
.y91{bottom:284.573333pt;}
.y30{bottom:289.666667pt;}
.y1d{bottom:290.626667pt;}
.ye{bottom:290.653333pt;}
.y7e{bottom:293.213333pt;}
.yb6{bottom:299.933333pt;}
.y90{bottom:301.213333pt;}
.y2f{bottom:306.333333pt;}
.y7d{bottom:310.173333pt;}
.y1c{bottom:312.093333pt;}
.yb5{bottom:316.893333pt;}
.ye2{bottom:317.853333pt;}
.y8f{bottom:318.173333pt;}
.y2e{bottom:322.973333pt;}
.y7c{bottom:326.813333pt;}
.y1b{bottom:333.533333pt;}
.y8e{bottom:334.813333pt;}
.ye1{bottom:338.973333pt;}
.y2d{bottom:339.293333pt;}
.y7b{bottom:343.773333pt;}
.y8d{bottom:351.773333pt;}
.yb4{bottom:352.413333pt;}
.y1a{bottom:354.973333pt;}
.ye0{bottom:355.613333pt;}
.y7a{bottom:368.453333pt;}
.yb3{bottom:369.413333pt;}
.y2c{bottom:370.333333pt;}
.ydf{bottom:372.613333pt;}
.y19{bottom:376.413333pt;}
.y79{bottom:385.413333pt;}
.y2b{bottom:385.693333pt;}
.yb2{bottom:386.053333pt;}
.yde{bottom:389.253333pt;}
.y18{bottom:397.853333pt;}
.y78{bottom:402.053333pt;}
.y2a{bottom:402.973333pt;}
.ydd{bottom:406.213333pt;}
.yb1{bottom:410.693333pt;}
.y29{bottom:418.333333pt;}
.y77{bottom:418.693333pt;}
.y17{bottom:419.293333pt;}
.ydc{bottom:422.853333pt;}
.yb0{bottom:427.653333pt;}
.y28{bottom:433.733333pt;}
.y76{bottom:435.653333pt;}
.ydb{bottom:439.813333pt;}
.y16{bottom:441.093333pt;}
.yaf{bottom:444.293333pt;}
.y27{bottom:449.093333pt;}
.y75{bottom:452.293333pt;}
.yda{bottom:456.453333pt;}
.yae{bottom:461.253333pt;}
.y15{bottom:462.533333pt;}
.y26{bottom:464.453333pt;}
.y74{bottom:469.253333pt;}
.yd9{bottom:473.093333pt;}
.yad{bottom:477.920000pt;}
.y25{bottom:479.813333pt;}
.y14{bottom:483.973333pt;}
.y73{bottom:485.920000pt;}
.yd8{bottom:492.320000pt;}
.yac{bottom:494.880000pt;}
.y24{bottom:495.173333pt;}
.y72{bottom:502.880000pt;}
.y13{bottom:505.413333pt;}
.yd7{bottom:508.960000pt;}
.y22{bottom:510.533333pt;}
.yab{bottom:511.520000pt;}
.y23{bottom:517.253333pt;}
.y71{bottom:519.520000pt;}
.yd6{bottom:525.600000pt;}
.y21{bottom:526.213333pt;}
.y12{bottom:526.853333pt;}
.yaa{bottom:528.480000pt;}
.y70{bottom:536.480000pt;}
.y20{bottom:541.600000pt;}
.yd5{bottom:542.560000pt;}
.y11{bottom:548.320000pt;}
.y6f{bottom:553.120000pt;}
.y1f{bottom:556.960000pt;}
.yd4{bottom:559.200000pt;}
.y10{bottom:569.760000pt;}
.yd3{bottom:575.840000pt;}
.y1e{bottom:576.480000pt;}
.y6e{bottom:586.720000pt;}
.yf{bottom:591.200000pt;}
.y8c{bottom:594.746667pt;}
.yd2{bottom:595.066667pt;}
.y6d{bottom:603.386667pt;}
.y8b{bottom:611.386667pt;}
.yd1{bottom:611.706667pt;}
.y6c{bottom:620.346667pt;}
.y8a{bottom:628.346667pt;}
.yd0{bottom:630.586667pt;}
.ya9{bottom:636.986667pt;}
.y6b{bottom:644.986667pt;}
.ycf{bottom:647.546667pt;}
.ya8{bottom:653.946667pt;}
.y6a{bottom:661.946667pt;}
.yce{bottom:664.186667pt;}
.ya7{bottom:670.586667pt;}
.y69{bottom:678.586667pt;}
.ycd{bottom:681.146667pt;}
.ya6{bottom:687.546667pt;}
.y68{bottom:695.546667pt;}
.ycc{bottom:697.786667pt;}
.ya5{bottom:704.186667pt;}
.y67{bottom:712.226667pt;}
.ycb{bottom:714.786667pt;}
.ya4{bottom:721.186667pt;}
.y66{bottom:729.186667pt;}
.yca{bottom:731.426667pt;}
.ya3{bottom:737.826667pt;}
.y65{bottom:745.826667pt;}
.yc9{bottom:748.066667pt;}
.ya2{bottom:754.466667pt;}
.y64{bottom:762.466667pt;}
.yc8{bottom:767.266667pt;}
.ya1{bottom:771.426667pt;}
.y63{bottom:779.426667pt;}
.yc7{bottom:783.906667pt;}
.ya0{bottom:788.066667pt;}
.y62{bottom:796.066667pt;}
.yc6{bottom:800.866667pt;}
.y9f{bottom:805.026667pt;}
.y61{bottom:813.026667pt;}
.yc5{bottom:817.506667pt;}
.y9e{bottom:821.666667pt;}
.y60{bottom:829.693333pt;}
.yc4{bottom:836.413333pt;}
.y9d{bottom:838.653333pt;}
.y5f{bottom:846.653333pt;}
.yc3{bottom:853.053333pt;}
.y9c{bottom:855.293333pt;}
.y5e{bottom:863.293333pt;}
.y9b{bottom:872.253333pt;}
.y5d{bottom:880.253333pt;}
.y9a{bottom:888.893333pt;}
.yd{bottom:892.733333pt;}
.y5c{bottom:896.893333pt;}
.yc{bottom:897.533333pt;}
.y99{bottom:905.533333pt;}
.y5b{bottom:913.533333pt;}
.yb{bottom:913.853333pt;}
.y98{bottom:922.493333pt;}
.ya{bottom:930.493333pt;}
.y97{bottom:939.133333pt;}
.y5a{bottom:947.173333pt;}
.y9{bottom:949.093333pt;}
.y59{bottom:964.133333pt;}
.y8{bottom:965.733333pt;}
.y56{bottom:968.640000pt;}
.y58{bottom:980.773333pt;}
.y6{bottom:995.813333pt;}
.y1{bottom:1001.893333pt;}
.ha{height:3.702500pt;}
.h1a{height:5.022500pt;}
.h1b{height:24.640000pt;}
.h17{height:26.381250pt;}
.h6{height:26.735625pt;}
.h11{height:31.341147pt;}
.h16{height:31.406250pt;}
.hd{height:36.431250pt;}
.hc{height:37.410000pt;}
.h18{height:47.713750pt;}
.h19{height:49.020000pt;}
.hf{height:49.713543pt;}
.h8{height:51.264000pt;}
.h5{height:52.762500pt;}
.h14{height:53.471250pt;}
.h9{height:54.180000pt;}
.he{height:54.349786pt;}
.h1f{height:55.256809pt;}
.h1c{height:56.405000pt;}
.h1d{height:56.988750pt;}
.h10{height:57.758750pt;}
.h3{height:58.563750pt;}
.h12{height:59.674871pt;}
.h20{height:62.812500pt;}
.h13{height:63.274240pt;}
.h1e{height:64.500000pt;}
.h7{height:68.693760pt;}
.h2{height:72.346667pt;}
.h4{height:103.680000pt;}
.h15{height:170.600000pt;}
.hb{height:599.506667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.180000pt;}
.w4{width:117.780000pt;}
.w6{width:144.960000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x28{left:6.112000pt;}
.x17{left:7.348000pt;}
.x4{left:11.826667pt;}
.x15{left:13.108000pt;}
.x1f{left:16.308000pt;}
.x5{left:17.266667pt;}
.x16{left:23.668000pt;}
.x21{left:25.908000pt;}
.x6{left:33.906667pt;}
.xf{left:39.028000pt;}
.x20{left:42.260000pt;}
.x10{left:45.140000pt;}
.x14{left:48.020000pt;}
.xe{left:48.980000pt;}
.x23{left:50.900000pt;}
.x22{left:58.902667pt;}
.x13{left:64.982667pt;}
.x12{left:66.902667pt;}
.x1{left:69.804000pt;}
.x7{left:76.832000pt;}
.x25{left:79.693333pt;}
.x2{left:84.822667pt;}
.x24{left:91.542667pt;}
.x1e{left:95.062667pt;}
.x2a{left:100.832000pt;}
.x11{left:110.742667pt;}
.x1b{left:113.653333pt;}
.x26{left:121.013333pt;}
.x29{left:124.864000pt;}
.x3{left:162.000000pt;}
.x18{left:194.640000pt;}
.x19{left:389.586667pt;}
.x27{left:401.453333pt;}
.x1c{left:429.613333pt;}
.x1a{left:442.413333pt;}
.x1d{left:482.453333pt;}
.xc{left:509.626667pt;}
.xb{left:542.306667pt;}
.xa{left:654.013333pt;}
.x9{left:680.933333pt;}
.x8{left:697.573333pt;}
.xd{left:717.413333pt;}
}




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