
    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_162fb15c0e5d6e501cfe1d16.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_42d77e121764dd5d9050c7ed.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_224f711d03fc24c089c3153d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.053223;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_e5618453e52474d7d5f5f6f6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_43b0192c579bde55b77463fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_17ec487f2be6ec95c1eaf724.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_93b9cb4062dcac7980ca6313.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_51912599cf499ddc6f44149f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.750000;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_05385e1b8e1da96a39511a71.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.944336;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_67cee4510d8a6a6122fe5bad.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.202148;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_97ba8526de9d19a3a01a5d04.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_cc1eda23d92d75a931e62e70.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.932617;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_87ea6055391dd2a3f5148d93.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.932617;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_a78abc2c5e51c6d989969467.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_ab9fd2ac1a15da12ca60cd84.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.112305;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:ff11;src:url('chunks/assets/font_fbe4d5b5255469a3c7920246.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.112305;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:ff12;src:url('chunks/assets/font_7c98a5dc41b422c91c8786cc.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.934082;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:ff13;src:url('chunks/assets/font_821d75cf2da5aa1561fded03.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls12{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.298200px;}
.ls13{letter-spacing:-0.259800px;}
.lsc{letter-spacing:-0.177600px;}
.ls9{letter-spacing:-0.018000px;}
.ls8{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls10{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.132600px;}
.lse{letter-spacing:0.153600px;}
.ls6{letter-spacing:0.174240px;}
.lsd{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls11{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.439920px;}
.ls4{letter-spacing:0.447840px;}
.ls14{letter-spacing:0.504000px;}
.ls3{letter-spacing:0.786240px;}
.ls15{letter-spacing:46.026720px;}
.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;}
}
.wsa{word-spacing:-34.063200px;}
.ws12{word-spacing:-33.803400px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws7{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.199800px;}
.wsf{word-spacing:-15.093600px;}
.wse{word-spacing:-15.046800px;}
.ws8{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.762400px;}
.ws9{word-spacing:-14.580000px;}
.ws11{word-spacing:-14.400000px;}
.ws6{word-spacing:-14.220000px;}
.wsc{word-spacing:-13.505760px;}
.ws5{word-spacing:-12.854880px;}
.ws0{word-spacing:-12.186000px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.wsd{word-spacing:0.000000px;}
._a{margin-left:-5.550240px;}
._3{margin-left:-4.050000px;}
._2{margin-left:-3.024000px;}
._0{margin-left:-1.188000px;}
._1{width:1.038000px;}
._8{width:2.149200px;}
._e{width:3.802560px;}
._d{width:5.378400px;}
._c{width:6.693120px;}
._b{width:7.768800px;}
._6{width:9.023760px;}
._f{width:10.734720px;}
._11{width:12.270720px;}
._10{width:16.136400px;}
._9{width:19.840320px;}
._7{width:23.105040px;}
._5{width:25.206960px;}
._4{width:26.510400px;}
._14{width:27.643920px;}
._13{width:28.744560px;}
._12{width:46.381680px;}
._16{width:53.544960px;}
._15{width:54.979200px;}
._18{width:63.935520px;}
._17{width:65.527920px;}
.fc5{color:rgb(227,108,10);}
.fc9{color:rgb(5,99,193);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fca{color:rgb(27,27,27);}
.fc8{color:rgb(34,34,34);}
.fc7{color:rgb(33,33,33);}
.fc1{color:rgb(0,0,0);}
.fc6{color:rgb(255,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y77{bottom:3.240000px;}
.y45{bottom:3.285000px;}
.y3{bottom:3.600000px;}
.y4a{bottom:3.960000px;}
.y1a{bottom:4.860000px;}
.yc5{bottom:5.940000px;}
.y7f{bottom:8.460000px;}
.yc6{bottom:8.640000px;}
.ye{bottom:9.540000px;}
.y48{bottom:10.620000px;}
.y82{bottom:12.240000px;}
.y1c{bottom:12.420000px;}
.y80{bottom:13.500000px;}
.yc{bottom:13.860000px;}
.y4{bottom:17.316000px;}
.y2{bottom:20.196000px;}
.y44{bottom:20.565000px;}
.yac{bottom:21.240000px;}
.y49{bottom:22.320000px;}
.y47{bottom:25.200000px;}
.y19{bottom:29.340000px;}
.yb{bottom:30.240000px;}
.y5{bottom:31.320000px;}
.y43{bottom:37.845000px;}
.y98{bottom:39.240000px;}
.y18{bottom:45.900000px;}
.ya{bottom:46.440000px;}
.y1{bottom:52.380000px;}
.y42{bottom:55.125000px;}
.y17{bottom:62.325000px;}
.y41{bottom:72.405000px;}
.y9{bottom:73.440000px;}
.y16{bottom:78.885000px;}
.y40{bottom:89.505000px;}
.y8{bottom:93.090000px;}
.y15{bottom:94.545000px;}
.y14{bottom:104.985000px;}
.y3f{bottom:106.785000px;}
.y7{bottom:111.270000px;}
.y55{bottom:112.716000px;}
.y95{bottom:116.676000px;}
.yc3{bottom:118.116000px;}
.y13{bottom:123.345000px;}
.y3e{bottom:124.065000px;}
.y54{bottom:129.996000px;}
.y94{bottom:133.956000px;}
.yc2{bottom:135.396000px;}
.y3d{bottom:141.345000px;}
.y12{bottom:142.425000px;}
.y53{bottom:147.096000px;}
.y93{bottom:151.230000px;}
.yc1{bottom:152.670000px;}
.y3c{bottom:158.625000px;}
.y52{bottom:164.370000px;}
.y11{bottom:168.165000px;}
.y92{bottom:168.510000px;}
.yc0{bottom:169.950000px;}
.y3b{bottom:175.905000px;}
.y51{bottom:181.650000px;}
.y91{bottom:185.610000px;}
.ybf{bottom:187.230000px;}
.y10{bottom:192.465000px;}
.y3a{bottom:193.005000px;}
.y50{bottom:198.930000px;}
.y2b{bottom:201.645000px;}
.y90{bottom:202.890000px;}
.ybe{bottom:204.330000px;}
.y39{bottom:210.285000px;}
.y4f{bottom:216.210000px;}
.y2a{bottom:216.945000px;}
.y8f{bottom:220.170000px;}
.ybd{bottom:221.610000px;}
.y38{bottom:227.565000px;}
.y4e{bottom:233.490000px;}
.y29{bottom:234.585000px;}
.y8e{bottom:237.450000px;}
.ybc{bottom:238.890000px;}
.y37{bottom:244.845000px;}
.y4d{bottom:250.590000px;}
.y28{bottom:251.865000px;}
.yd0{bottom:253.650000px;}
.y8d{bottom:254.730000px;}
.y36{bottom:262.125000px;}
.y4c{bottom:267.870000px;}
.y27{bottom:268.995000px;}
.ycf{bottom:271.650000px;}
.y8c{bottom:271.830000px;}
.y35{bottom:279.435000px;}
.y4b{bottom:285.150000px;}
.y26{bottom:286.815000px;}
.y8b{bottom:289.110000px;}
.yce{bottom:289.650000px;}
.y34{bottom:296.535000px;}
.y46{bottom:299.190000px;}
.y25{bottom:303.555000px;}
.y8a{bottom:306.390000px;}
.ycd{bottom:307.650000px;}
.y33{bottom:313.815000px;}
.y24{bottom:319.935000px;}
.y89{bottom:323.670000px;}
.ycc{bottom:325.650000px;}
.y32{bottom:331.095000px;}
.y1d{bottom:335.730000px;}
.y23{bottom:337.035000px;}
.y88{bottom:340.995000px;}
.ycb{bottom:343.695000px;}
.y31{bottom:348.375000px;}
.y22{bottom:354.495000px;}
.y87{bottom:358.275000px;}
.y30{bottom:365.655000px;}
.yca{bottom:367.095000px;}
.y21{bottom:371.775000px;}
.y86{bottom:375.375000px;}
.y2f{bottom:382.755000px;}
.y84{bottom:390.135000px;}
.yc9{bottom:390.495000px;}
.y20{bottom:392.115000px;}
.y2e{bottom:400.035000px;}
.y85{bottom:408.135000px;}
.yc8{bottom:413.895000px;}
.y2d{bottom:417.315000px;}
.y1f{bottom:419.475000px;}
.y81{bottom:426.135000px;}
.y2c{bottom:434.595000px;}
.y1e{bottom:437.295000px;}
.y83{bottom:444.135000px;}
.yc7{bottom:460.695000px;}
.y7e{bottom:462.135000px;}
.yc4{bottom:484.095000px;}
.y7d{bottom:490.395000px;}
.y7c{bottom:508.395000px;}
.yd6{bottom:516.135000px;}
.ybb{bottom:520.635000px;}
.y78{bottom:526.395000px;}
.yd5{bottom:533.235000px;}
.yba{bottom:537.735000px;}
.y7b{bottom:544.395000px;}
.yd4{bottom:550.515000px;}
.yb9{bottom:555.015000px;}
.y7a{bottom:562.395000px;}
.yd3{bottom:567.795000px;}
.yb8{bottom:572.295000px;}
.y79{bottom:580.395000px;}
.yd2{bottom:585.075000px;}
.yb7{bottom:589.575000px;}
.y76{bottom:598.395000px;}
.yd1{bottom:602.355000px;}
.yb6{bottom:606.885000px;}
.y75{bottom:619.665000px;}
.yb5{bottom:624.165000px;}
.y74{bottom:636.765000px;}
.yb4{bottom:641.265000px;}
.y73{bottom:654.045000px;}
.yb3{bottom:658.545000px;}
.y72{bottom:671.325000px;}
.yb2{bottom:673.305000px;}
.y71{bottom:688.605000px;}
.yb1{bottom:691.305000px;}
.y70{bottom:705.885000px;}
.yb0{bottom:709.305000px;}
.y6f{bottom:723.165000px;}
.yaf{bottom:727.305000px;}
.y6e{bottom:740.265000px;}
.yae{bottom:745.305000px;}
.y6d{bottom:757.545000px;}
.yab{bottom:763.305000px;}
.y6c{bottom:774.825000px;}
.yad{bottom:781.305000px;}
.y1b{bottom:784.365000px;}
.y6b{bottom:792.105000px;}
.yaa{bottom:802.545000px;}
.y6a{bottom:809.385000px;}
.yf{bottom:813.885000px;}
.ya9{bottom:819.825000px;}
.y69{bottom:826.485000px;}
.ya8{bottom:837.105000px;}
.y68{bottom:843.765000px;}
.ya7{bottom:854.385000px;}
.y67{bottom:861.045000px;}
.ya6{bottom:871.530000px;}
.y66{bottom:878.370000px;}
.ya5{bottom:888.810000px;}
.y65{bottom:895.650000px;}
.ya4{bottom:906.090000px;}
.y64{bottom:912.930000px;}
.ya3{bottom:923.370000px;}
.y63{bottom:930.030000px;}
.ya2{bottom:940.650000px;}
.y62{bottom:947.310000px;}
.ya1{bottom:957.930000px;}
.y61{bottom:964.590000px;}
.ya0{bottom:975.030000px;}
.y60{bottom:981.870000px;}
.y9f{bottom:992.310000px;}
.y5f{bottom:999.150000px;}
.y9e{bottom:1007.070000px;}
.y5e{bottom:1016.430000px;}
.yd{bottom:1021.470000px;}
.y9d{bottom:1025.070000px;}
.y5d{bottom:1033.530000px;}
.y9c{bottom:1043.070000px;}
.y6{bottom:1046.850000px;}
.y5c{bottom:1050.810000px;}
.y9b{bottom:1061.070000px;}
.y5b{bottom:1068.090000px;}
.y97{bottom:1079.070000px;}
.y5a{bottom:1085.370000px;}
.y9a{bottom:1097.070000px;}
.y59{bottom:1102.650000px;}
.y99{bottom:1115.070000px;}
.y58{bottom:1119.930000px;}
.y96{bottom:1133.070000px;}
.y57{bottom:1137.030000px;}
.y56{bottom:1154.340000px;}
.h23{height:17.100000px;}
.h21{height:17.136000px;}
.h26{height:17.280000px;}
.h27{height:17.316000px;}
.h29{height:22.680000px;}
.hc{height:25.020000px;}
.h24{height:27.360000px;}
.h14{height:29.520000px;}
.h13{height:32.103633px;}
.h2{height:32.976000px;}
.h25{height:35.280000px;}
.h12{height:35.806641px;}
.h9{height:36.180000px;}
.h1e{height:36.540000px;}
.h19{height:40.771406px;}
.h20{height:42.164648px;}
.h1c{height:42.186445px;}
.h1b{height:42.835781px;}
.he{height:44.002969px;}
.hb{height:44.820000px;}
.h17{height:47.980898px;}
.h1a{height:49.742227px;}
.h1f{height:52.260820px;}
.h28{height:53.280000px;}
.h1d{height:53.573906px;}
.h4{height:53.709961px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h18{height:56.574492px;}
.h10{height:59.439023px;}
.h11{height:61.189805px;}
.hf{height:63.180000px;}
.h6{height:65.884219px;}
.h5{height:67.824844px;}
.h22{height:71.100000px;}
.h8{height:71.613281px;}
.h15{height:73.722656px;}
.h7{height:121.536000px;}
.hd{height:207.570000px;}
.h16{height:448.635000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:73.080000px;}
.w20{width:108.540000px;}
.wa{width:111.456000px;}
.wf{width:112.176000px;}
.w10{width:112.320000px;}
.w1c{width:118.980000px;}
.wd{width:120.096000px;}
.w1f{width:122.616000px;}
.w1a{width:132.156000px;}
.we{width:133.020000px;}
.wc{width:136.836000px;}
.w1b{width:145.296000px;}
.w13{width:149.400000px;}
.w5{width:151.950000px;}
.w12{width:153.210000px;}
.w15{width:158.430000px;}
.w19{width:158.790000px;}
.w1e{width:165.090000px;}
.w16{width:171.570000px;}
.w8{width:223.455000px;}
.wb{width:225.210000px;}
.w18{width:264.990000px;}
.w14{width:266.295000px;}
.w17{width:291.675000px;}
.w1d{width:331.275000px;}
.w11{width:425.445000px;}
.w9{width:507.675000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:7.560000px;}
.x2{left:8.676000px;}
.x13{left:12.600000px;}
.xb{left:46.476000px;}
.x1{left:81.000000px;}
.x4{left:98.130000px;}
.x26{left:108.035987px;}
.xd{left:140.790000px;}
.xe{left:176.250000px;}
.xf{left:177.510000px;}
.x1e{left:183.629987px;}
.x10{left:186.690000px;}
.x15{left:194.070000px;}
.xc{left:198.435000px;}
.x11{left:215.175000px;}
.x5{left:232.950000px;}
.x1f{left:254.010000px;}
.x8{left:272.235000px;}
.x12{left:304.455000px;}
.x1a{left:306.975000px;}
.x6{left:331.995000px;}
.x14{left:342.794987px;}
.x1d{left:348.735000px;}
.x23{left:350.174987px;}
.x7{left:351.255000px;}
.xa{left:365.475000px;}
.x21{left:413.535000px;}
.x17{left:420.015000px;}
.x9{left:439.500000px;}
.x1b{left:507.885000px;}
.x20{left:546.405000px;}
.x18{left:557.565000px;}
.x24{left:579.525000px;}
.x1c{left:662.010000px;}
.x19{left:678.390000px;}
.x22{left:692.430000px;}
.x25{left:702.870000px;}
.x3{left:739.050000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls12{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.265067pt;}
.ls13{letter-spacing:-0.230933pt;}
.lsc{letter-spacing:-0.157867pt;}
.ls9{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls10{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.117867pt;}
.lse{letter-spacing:0.136533pt;}
.ls6{letter-spacing:0.154880pt;}
.lsd{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls11{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.391040pt;}
.ls4{letter-spacing:0.398080pt;}
.ls14{letter-spacing:0.448000pt;}
.ls3{letter-spacing:0.698880pt;}
.ls15{letter-spacing:40.912640pt;}
.wsa{word-spacing:-30.278400pt;}
.ws12{word-spacing:-30.047467pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws7{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.510933pt;}
.wsf{word-spacing:-13.416533pt;}
.wse{word-spacing:-13.374933pt;}
.ws8{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.122133pt;}
.ws9{word-spacing:-12.960000pt;}
.ws11{word-spacing:-12.800000pt;}
.ws6{word-spacing:-12.640000pt;}
.wsc{word-spacing:-12.005120pt;}
.ws5{word-spacing:-11.426560pt;}
.ws0{word-spacing:-10.832000pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.wsd{word-spacing:0.000000pt;}
._a{margin-left:-4.933547pt;}
._3{margin-left:-3.600000pt;}
._2{margin-left:-2.688000pt;}
._0{margin-left:-1.056000pt;}
._1{width:0.922667pt;}
._8{width:1.910400pt;}
._e{width:3.380053pt;}
._d{width:4.780800pt;}
._c{width:5.949440pt;}
._b{width:6.905600pt;}
._6{width:8.021120pt;}
._f{width:9.541973pt;}
._11{width:10.907307pt;}
._10{width:14.343467pt;}
._9{width:17.635840pt;}
._7{width:20.537813pt;}
._5{width:22.406187pt;}
._4{width:23.564800pt;}
._14{width:24.572373pt;}
._13{width:25.550720pt;}
._12{width:41.228160pt;}
._16{width:47.595520pt;}
._15{width:48.870400pt;}
._18{width:56.831573pt;}
._17{width:58.247040pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y77{bottom:2.880000pt;}
.y45{bottom:2.920000pt;}
.y3{bottom:3.200000pt;}
.y4a{bottom:3.520000pt;}
.y1a{bottom:4.320000pt;}
.yc5{bottom:5.280000pt;}
.y7f{bottom:7.520000pt;}
.yc6{bottom:7.680000pt;}
.ye{bottom:8.480000pt;}
.y48{bottom:9.440000pt;}
.y82{bottom:10.880000pt;}
.y1c{bottom:11.040000pt;}
.y80{bottom:12.000000pt;}
.yc{bottom:12.320000pt;}
.y4{bottom:15.392000pt;}
.y2{bottom:17.952000pt;}
.y44{bottom:18.280000pt;}
.yac{bottom:18.880000pt;}
.y49{bottom:19.840000pt;}
.y47{bottom:22.400000pt;}
.y19{bottom:26.080000pt;}
.yb{bottom:26.880000pt;}
.y5{bottom:27.840000pt;}
.y43{bottom:33.640000pt;}
.y98{bottom:34.880000pt;}
.y18{bottom:40.800000pt;}
.ya{bottom:41.280000pt;}
.y1{bottom:46.560000pt;}
.y42{bottom:49.000000pt;}
.y17{bottom:55.400000pt;}
.y41{bottom:64.360000pt;}
.y9{bottom:65.280000pt;}
.y16{bottom:70.120000pt;}
.y40{bottom:79.560000pt;}
.y8{bottom:82.746667pt;}
.y15{bottom:84.040000pt;}
.y14{bottom:93.320000pt;}
.y3f{bottom:94.920000pt;}
.y7{bottom:98.906667pt;}
.y55{bottom:100.192000pt;}
.y95{bottom:103.712000pt;}
.yc3{bottom:104.992000pt;}
.y13{bottom:109.640000pt;}
.y3e{bottom:110.280000pt;}
.y54{bottom:115.552000pt;}
.y94{bottom:119.072000pt;}
.yc2{bottom:120.352000pt;}
.y3d{bottom:125.640000pt;}
.y12{bottom:126.600000pt;}
.y53{bottom:130.752000pt;}
.y93{bottom:134.426667pt;}
.yc1{bottom:135.706667pt;}
.y3c{bottom:141.000000pt;}
.y52{bottom:146.106667pt;}
.y11{bottom:149.480000pt;}
.y92{bottom:149.786667pt;}
.yc0{bottom:151.066667pt;}
.y3b{bottom:156.360000pt;}
.y51{bottom:161.466667pt;}
.y91{bottom:164.986667pt;}
.ybf{bottom:166.426667pt;}
.y10{bottom:171.080000pt;}
.y3a{bottom:171.560000pt;}
.y50{bottom:176.826667pt;}
.y2b{bottom:179.240000pt;}
.y90{bottom:180.346667pt;}
.ybe{bottom:181.626667pt;}
.y39{bottom:186.920000pt;}
.y4f{bottom:192.186667pt;}
.y2a{bottom:192.840000pt;}
.y8f{bottom:195.706667pt;}
.ybd{bottom:196.986667pt;}
.y38{bottom:202.280000pt;}
.y4e{bottom:207.546667pt;}
.y29{bottom:208.520000pt;}
.y8e{bottom:211.066667pt;}
.ybc{bottom:212.346667pt;}
.y37{bottom:217.640000pt;}
.y4d{bottom:222.746667pt;}
.y28{bottom:223.880000pt;}
.yd0{bottom:225.466667pt;}
.y8d{bottom:226.426667pt;}
.y36{bottom:233.000000pt;}
.y4c{bottom:238.106667pt;}
.y27{bottom:239.106667pt;}
.ycf{bottom:241.466667pt;}
.y8c{bottom:241.626667pt;}
.y35{bottom:248.386667pt;}
.y4b{bottom:253.466667pt;}
.y26{bottom:254.946667pt;}
.y8b{bottom:256.986667pt;}
.yce{bottom:257.466667pt;}
.y34{bottom:263.586667pt;}
.y46{bottom:265.946667pt;}
.y25{bottom:269.826667pt;}
.y8a{bottom:272.346667pt;}
.ycd{bottom:273.466667pt;}
.y33{bottom:278.946667pt;}
.y24{bottom:284.386667pt;}
.y89{bottom:287.706667pt;}
.ycc{bottom:289.466667pt;}
.y32{bottom:294.306667pt;}
.y1d{bottom:298.426667pt;}
.y23{bottom:299.586667pt;}
.y88{bottom:303.106667pt;}
.ycb{bottom:305.506667pt;}
.y31{bottom:309.666667pt;}
.y22{bottom:315.106667pt;}
.y87{bottom:318.466667pt;}
.y30{bottom:325.026667pt;}
.yca{bottom:326.306667pt;}
.y21{bottom:330.466667pt;}
.y86{bottom:333.666667pt;}
.y2f{bottom:340.226667pt;}
.y84{bottom:346.786667pt;}
.yc9{bottom:347.106667pt;}
.y20{bottom:348.546667pt;}
.y2e{bottom:355.586667pt;}
.y85{bottom:362.786667pt;}
.yc8{bottom:367.906667pt;}
.y2d{bottom:370.946667pt;}
.y1f{bottom:372.866667pt;}
.y81{bottom:378.786667pt;}
.y2c{bottom:386.306667pt;}
.y1e{bottom:388.706667pt;}
.y83{bottom:394.786667pt;}
.yc7{bottom:409.506667pt;}
.y7e{bottom:410.786667pt;}
.yc4{bottom:430.306667pt;}
.y7d{bottom:435.906667pt;}
.y7c{bottom:451.906667pt;}
.yd6{bottom:458.786667pt;}
.ybb{bottom:462.786667pt;}
.y78{bottom:467.906667pt;}
.yd5{bottom:473.986667pt;}
.yba{bottom:477.986667pt;}
.y7b{bottom:483.906667pt;}
.yd4{bottom:489.346667pt;}
.yb9{bottom:493.346667pt;}
.y7a{bottom:499.906667pt;}
.yd3{bottom:504.706667pt;}
.yb8{bottom:508.706667pt;}
.y79{bottom:515.906667pt;}
.yd2{bottom:520.066667pt;}
.yb7{bottom:524.066667pt;}
.y76{bottom:531.906667pt;}
.yd1{bottom:535.426667pt;}
.yb6{bottom:539.453333pt;}
.y75{bottom:550.813333pt;}
.yb5{bottom:554.813333pt;}
.y74{bottom:566.013333pt;}
.yb4{bottom:570.013333pt;}
.y73{bottom:581.373333pt;}
.yb3{bottom:585.373333pt;}
.y72{bottom:596.733333pt;}
.yb2{bottom:598.493333pt;}
.y71{bottom:612.093333pt;}
.yb1{bottom:614.493333pt;}
.y70{bottom:627.453333pt;}
.yb0{bottom:630.493333pt;}
.y6f{bottom:642.813333pt;}
.yaf{bottom:646.493333pt;}
.y6e{bottom:658.013333pt;}
.yae{bottom:662.493333pt;}
.y6d{bottom:673.373333pt;}
.yab{bottom:678.493333pt;}
.y6c{bottom:688.733333pt;}
.yad{bottom:694.493333pt;}
.y1b{bottom:697.213333pt;}
.y6b{bottom:704.093333pt;}
.yaa{bottom:713.373333pt;}
.y6a{bottom:719.453333pt;}
.yf{bottom:723.453333pt;}
.ya9{bottom:728.733333pt;}
.y69{bottom:734.653333pt;}
.ya8{bottom:744.093333pt;}
.y68{bottom:750.013333pt;}
.ya7{bottom:759.453333pt;}
.y67{bottom:765.373333pt;}
.ya6{bottom:774.693333pt;}
.y66{bottom:780.773333pt;}
.ya5{bottom:790.053333pt;}
.y65{bottom:796.133333pt;}
.ya4{bottom:805.413333pt;}
.y64{bottom:811.493333pt;}
.ya3{bottom:820.773333pt;}
.y63{bottom:826.693333pt;}
.ya2{bottom:836.133333pt;}
.y62{bottom:842.053333pt;}
.ya1{bottom:851.493333pt;}
.y61{bottom:857.413333pt;}
.ya0{bottom:866.693333pt;}
.y60{bottom:872.773333pt;}
.y9f{bottom:882.053333pt;}
.y5f{bottom:888.133333pt;}
.y9e{bottom:895.173333pt;}
.y5e{bottom:903.493333pt;}
.yd{bottom:907.973333pt;}
.y9d{bottom:911.173333pt;}
.y5d{bottom:918.693333pt;}
.y9c{bottom:927.173333pt;}
.y6{bottom:930.533333pt;}
.y5c{bottom:934.053333pt;}
.y9b{bottom:943.173333pt;}
.y5b{bottom:949.413333pt;}
.y97{bottom:959.173333pt;}
.y5a{bottom:964.773333pt;}
.y9a{bottom:975.173333pt;}
.y59{bottom:980.133333pt;}
.y99{bottom:991.173333pt;}
.y58{bottom:995.493333pt;}
.y96{bottom:1007.173333pt;}
.y57{bottom:1010.693333pt;}
.y56{bottom:1026.080000pt;}
.h23{height:15.200000pt;}
.h21{height:15.232000pt;}
.h26{height:15.360000pt;}
.h27{height:15.392000pt;}
.h29{height:20.160000pt;}
.hc{height:22.240000pt;}
.h24{height:24.320000pt;}
.h14{height:26.240000pt;}
.h13{height:28.536562pt;}
.h2{height:29.312000pt;}
.h25{height:31.360000pt;}
.h12{height:31.828125pt;}
.h9{height:32.160000pt;}
.h1e{height:32.480000pt;}
.h19{height:36.241250pt;}
.h20{height:37.479688pt;}
.h1c{height:37.499062pt;}
.h1b{height:38.076250pt;}
.he{height:39.113750pt;}
.hb{height:39.840000pt;}
.h17{height:42.649687pt;}
.h1a{height:44.215312pt;}
.h1f{height:46.454062pt;}
.h28{height:47.360000pt;}
.h1d{height:47.621250pt;}
.h4{height:47.742188pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h18{height:50.288438pt;}
.h10{height:52.834688pt;}
.h11{height:54.390938pt;}
.hf{height:56.160000pt;}
.h6{height:58.563750pt;}
.h5{height:60.288750pt;}
.h22{height:63.200000pt;}
.h8{height:63.656250pt;}
.h15{height:65.531250pt;}
.h7{height:108.032000pt;}
.hd{height:184.506667pt;}
.h16{height:398.786667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:64.960000pt;}
.w20{width:96.480000pt;}
.wa{width:99.072000pt;}
.wf{width:99.712000pt;}
.w10{width:99.840000pt;}
.w1c{width:105.760000pt;}
.wd{width:106.752000pt;}
.w1f{width:108.992000pt;}
.w1a{width:117.472000pt;}
.we{width:118.240000pt;}
.wc{width:121.632000pt;}
.w1b{width:129.152000pt;}
.w13{width:132.800000pt;}
.w5{width:135.066667pt;}
.w12{width:136.186667pt;}
.w15{width:140.826667pt;}
.w19{width:141.146667pt;}
.w1e{width:146.746667pt;}
.w16{width:152.506667pt;}
.w8{width:198.626667pt;}
.wb{width:200.186667pt;}
.w18{width:235.546667pt;}
.w14{width:236.706667pt;}
.w17{width:259.266667pt;}
.w1d{width:294.466667pt;}
.w11{width:378.173333pt;}
.w9{width:451.266667pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:6.720000pt;}
.x2{left:7.712000pt;}
.x13{left:11.200000pt;}
.xb{left:41.312000pt;}
.x1{left:72.000000pt;}
.x4{left:87.226667pt;}
.x26{left:96.031988pt;}
.xd{left:125.146667pt;}
.xe{left:156.666667pt;}
.xf{left:157.786667pt;}
.x1e{left:163.226655pt;}
.x10{left:165.946667pt;}
.x15{left:172.506667pt;}
.xc{left:176.386667pt;}
.x11{left:191.266667pt;}
.x5{left:207.066667pt;}
.x1f{left:225.786667pt;}
.x8{left:241.986667pt;}
.x12{left:270.626667pt;}
.x1a{left:272.866667pt;}
.x6{left:295.106667pt;}
.x14{left:304.706655pt;}
.x1d{left:309.986667pt;}
.x23{left:311.266655pt;}
.x7{left:312.226667pt;}
.xa{left:324.866667pt;}
.x21{left:367.586667pt;}
.x17{left:373.346667pt;}
.x9{left:390.666667pt;}
.x1b{left:451.453333pt;}
.x20{left:485.693333pt;}
.x18{left:495.613333pt;}
.x24{left:515.133333pt;}
.x1c{left:588.453333pt;}
.x19{left:603.013333pt;}
.x22{left:615.493333pt;}
.x25{left:624.773333pt;}
.x3{left:656.933333pt;}
}




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