
    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_1e406f81aa5d2b18cf334fb2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.776367;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_dd19c7710ff3b84e05de6058.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_359d01edf130577d36b3965b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.035156;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_889dee253e36e96af03c5d29.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939941;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_631a3b698aab3a7e7e4113a8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.774902;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_912c5be1826f43d1e51ef1d7.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_1d08b211c9f6f9748b96715c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.963867;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_8ff2dbb69dfc9600b7115959.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.728516;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_e47a53e2645fedf6cccb0ecd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.728027;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_1a8f65647df74cd547672054.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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(0.288450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288450,0.000000,0.000000,0.250000,0,0);}
.m2{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:-102.240000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.000000px;}
.v1{vertical-align:27.360000px;}
.ls4{letter-spacing:-5.760000px;}
.ls10{letter-spacing:-0.864000px;}
.ls7{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.166800px;}
.ls11{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.126000px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.576000px;}
.lsa{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.792000px;}
.lsd{letter-spacing:1.296000px;}
.lsf{letter-spacing:1.440000px;}
.ls1{letter-spacing:119.880000px;}
.sc_{text-shadow:none;}
.sc2{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);}
.sc1{text-shadow:-0.015em 0 rgb(35,31,32),0 0.015em rgb(35,31,32),0.015em 0 rgb(35,31,32),0 -0.015em  rgb(35,31,32);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(35,31,32);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-20.566320px;}
.wsb{word-spacing:-19.296000px;}
.ws7{word-spacing:-18.792000px;}
.wsa{word-spacing:-18.720000px;}
.ws5{word-spacing:-18.576000px;}
.ws1{word-spacing:-18.360000px;}
.ws8{word-spacing:-18.216000px;}
.ws6{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.856000px;}
.wsc{word-spacing:-17.784000px;}
.ws9{word-spacing:-17.712000px;}
.ws3{word-spacing:-13.374000px;}
.ws2{word-spacing:-12.060000px;}
.ws4{word-spacing:0.000000px;}
._3{margin-left:-6.096000px;}
._2{margin-left:-2.232000px;}
._0{margin-left:-1.212000px;}
._1{width:1.434240px;}
._4{width:2.436000px;}
._21{width:3.456000px;}
._b{width:5.076000px;}
._11{width:6.774000px;}
._19{width:7.812000px;}
._18{width:8.850000px;}
._10{width:10.800000px;}
._28{width:12.312000px;}
._25{width:14.112000px;}
._26{width:15.269760px;}
._17{width:16.272000px;}
._e{width:17.982000px;}
._27{width:19.104000px;}
._c{width:20.490000px;}
._23{width:21.744000px;}
._24{width:22.979520px;}
._d{width:24.054000px;}
._5{width:25.796160px;}
._a{width:26.985840px;}
._8{width:28.836000px;}
._9{width:29.850000px;}
._7{width:31.031280px;}
._16{width:32.360640px;}
._6{width:33.395040px;}
._1d{width:34.743360px;}
._29{width:35.788320px;}
._31{width:37.795680px;}
._1b{width:39.005760px;}
._1c{width:40.500480px;}
._3f{width:42.552000px;}
._15{width:43.913760px;}
._40{width:45.504000px;}
._12{width:46.584000px;}
._53{width:47.777760px;}
._2c{width:49.752000px;}
._20{width:51.264000px;}
._1f{width:52.620000px;}
._f{width:54.594000px;}
._22{width:56.070000px;}
._1e{width:57.816000px;}
._1a{width:59.112000px;}
._48{width:67.080000px;}
._49{width:68.405760px;}
._51{width:69.701760px;}
._42{width:70.704000px;}
._43{width:72.209760px;}
._14{width:74.796000px;}
._13{width:76.248000px;}
._50{width:77.292000px;}
._4e{width:79.548000px;}
._35{width:81.432000px;}
._36{width:83.309760px;}
._39{width:94.776000px;}
._38{width:96.024000px;}
._54{width:97.800000px;}
._2f{width:99.360000px;}
._46{width:100.992000px;}
._47{width:102.240000px;}
._2b{width:105.264000px;}
._2a{width:115.416000px;}
._2d{width:119.520000px;}
._44{width:120.528000px;}
._45{width:122.184000px;}
._3e{width:123.324000px;}
._55{width:124.572000px;}
._2e{width:128.141760px;}
._33{width:165.096000px;}
._34{width:166.812000px;}
._4f{width:168.756000px;}
._4c{width:172.872000px;}
._4d{width:173.952000px;}
._3a{width:186.408000px;}
._52{width:202.152000px;}
._4b{width:209.988000px;}
._4a{width:211.152000px;}
._3c{width:219.600000px;}
._3b{width:220.836000px;}
._30{width:222.120000px;}
._41{width:242.508000px;}
._32{width:261.144000px;}
._37{width:265.956000px;}
._3d{width:347.256000px;}
.fc4{color:transparent;}
.fc3{color:rgb(17,17,17);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:12.240000px;}
.fsb{font-size:15.120000px;}
.fs3{font-size:18.000000px;}
.fs6{font-size:30.240000px;}
.fs8{font-size:33.120000px;}
.fsc{font-size:36.000000px;}
.fs5{font-size:45.360000px;}
.fs2{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:102.240000px;}
.y7{bottom:-4.485000px;}
.y0{bottom:0.000000px;}
.ycc{bottom:4.140000px;}
.ydc{bottom:4.485000px;}
.yd5{bottom:4.500000px;}
.yd7{bottom:4.515000px;}
.yd2{bottom:4.530000px;}
.y6{bottom:7.935000px;}
.y5d{bottom:14.220000px;}
.ydf{bottom:25.185000px;}
.yd4{bottom:25.200000px;}
.yd1{bottom:25.230000px;}
.y5{bottom:28.635000px;}
.y62{bottom:36.216000px;}
.yde{bottom:45.885000px;}
.yd3{bottom:45.900000px;}
.ydb{bottom:45.930000px;}
.y3{bottom:46.656000px;}
.y61{bottom:56.196000px;}
.y2{bottom:66.456000px;}
.yda{bottom:66.630000px;}
.y1{bottom:86.436000px;}
.yd9{bottom:87.330000px;}
.yb0{bottom:91.656000px;}
.yca{bottom:94.176000px;}
.y92{bottom:96.876000px;}
.ye3{bottom:99.756000px;}
.yaf{bottom:112.356000px;}
.yc9{bottom:114.876000px;}
.y91{bottom:117.576000px;}
.ye2{bottom:120.456000px;}
.y3c{bottom:121.356000px;}
.yae{bottom:133.056000px;}
.yc8{bottom:135.576000px;}
.y90{bottom:138.276000px;}
.y3b{bottom:139.536000px;}
.ye1{bottom:141.156000px;}
.yad{bottom:153.750000px;}
.y3a{bottom:155.010000px;}
.yc7{bottom:156.270000px;}
.y8f{bottom:158.970000px;}
.y5b{bottom:160.230000px;}
.ycf{bottom:161.670000px;}
.ye0{bottom:161.850000px;}
.y39{bottom:170.670000px;}
.yac{bottom:174.450000px;}
.y5a{bottom:175.710000px;}
.yc6{bottom:176.970000px;}
.y8e{bottom:179.670000px;}
.yce{bottom:182.370000px;}
.y38{bottom:186.150000px;}
.ydd{bottom:187.065000px;}
.y59{bottom:192.450000px;}
.yab{bottom:195.150000px;}
.yc5{bottom:197.670000px;}
.y8d{bottom:200.370000px;}
.y37{bottom:201.270000px;}
.y58{bottom:213.150000px;}
.yaa{bottom:215.850000px;}
.y36{bottom:217.110000px;}
.yc4{bottom:218.370000px;}
.yea{bottom:220.710000px;}
.y8c{bottom:221.070000px;}
.y35{bottom:232.770000px;}
.y57{bottom:233.850000px;}
.ya9{bottom:236.550000px;}
.yc3{bottom:239.070000px;}
.ye9{bottom:241.410000px;}
.y8b{bottom:241.770000px;}
.y34{bottom:248.250000px;}
.y56{bottom:254.550000px;}
.ya8{bottom:257.250000px;}
.yc2{bottom:259.770000px;}
.y8a{bottom:262.470000px;}
.y33{bottom:263.370000px;}
.yd8{bottom:265.725000px;}
.y55{bottom:275.250000px;}
.ya7{bottom:277.950000px;}
.y32{bottom:279.210000px;}
.yc1{bottom:280.470000px;}
.y89{bottom:283.170000px;}
.y31{bottom:294.915000px;}
.y54{bottom:295.995000px;}
.ya6{bottom:298.695000px;}
.yc0{bottom:301.215000px;}
.y88{bottom:303.915000px;}
.y30{bottom:310.395000px;}
.y53{bottom:316.695000px;}
.ya5{bottom:319.395000px;}
.ybf{bottom:321.915000px;}
.y87{bottom:324.615000px;}
.y2f{bottom:325.875000px;}
.y52{bottom:337.395000px;}
.ya4{bottom:340.095000px;}
.y2e{bottom:340.995000px;}
.ybe{bottom:342.615000px;}
.y86{bottom:345.315000px;}
.y2d{bottom:357.015000px;}
.y51{bottom:358.095000px;}
.ya3{bottom:360.795000px;}
.ybd{bottom:363.315000px;}
.y85{bottom:366.015000px;}
.y2c{bottom:372.495000px;}
.y50{bottom:378.795000px;}
.ya2{bottom:381.495000px;}
.ybc{bottom:384.015000px;}
.yd6{bottom:385.800000px;}
.ycd{bottom:385.815000px;}
.y84{bottom:386.715000px;}
.y2b{bottom:387.975000px;}
.y4f{bottom:399.495000px;}
.ya1{bottom:402.195000px;}
.y2a{bottom:403.455000px;}
.ybb{bottom:404.715000px;}
.ye6{bottom:407.055000px;}
.y83{bottom:407.415000px;}
.y29{bottom:418.755000px;}
.y4e{bottom:420.195000px;}
.ya0{bottom:422.895000px;}
.yba{bottom:425.415000px;}
.ye5{bottom:427.755000px;}
.y82{bottom:428.115000px;}
.y28{bottom:434.595000px;}
.y4d{bottom:440.895000px;}
.y9f{bottom:443.595000px;}
.yb9{bottom:446.115000px;}
.ye4{bottom:448.455000px;}
.y81{bottom:448.815000px;}
.y27{bottom:450.075000px;}
.y4c{bottom:461.595000px;}
.y9e{bottom:464.295000px;}
.y26{bottom:465.555000px;}
.yb8{bottom:466.455000px;}
.y80{bottom:469.515000px;}
.y25{bottom:480.855000px;}
.y4b{bottom:482.295000px;}
.y9d{bottom:484.995000px;}
.yb7{bottom:487.155000px;}
.y7f{bottom:490.215000px;}
.y24{bottom:496.695000px;}
.y4a{bottom:502.995000px;}
.y9c{bottom:505.335000px;}
.yb6{bottom:508.215000px;}
.yee{bottom:510.555000px;}
.y7e{bottom:510.915000px;}
.y23{bottom:512.175000px;}
.y49{bottom:523.695000px;}
.y9b{bottom:526.035000px;}
.y22{bottom:527.655000px;}
.yb5{bottom:528.915000px;}
.yed{bottom:531.255000px;}
.y7d{bottom:531.615000px;}
.yd0{bottom:542.955000px;}
.y21{bottom:543.315000px;}
.y48{bottom:544.395000px;}
.y9a{bottom:547.095000px;}
.yb4{bottom:549.645000px;}
.y7c{bottom:552.345000px;}
.y20{bottom:558.465000px;}
.y47{bottom:565.125000px;}
.y99{bottom:567.825000px;}
.yb3{bottom:570.345000px;}
.y7b{bottom:573.045000px;}
.y1f{bottom:574.305000px;}
.y46{bottom:585.825000px;}
.y98{bottom:588.525000px;}
.y1e{bottom:589.785000px;}
.yb2{bottom:591.045000px;}
.y7a{bottom:593.745000px;}
.ycb{bottom:600.945000px;}
.y1d{bottom:605.445000px;}
.y45{bottom:606.525000px;}
.yb1{bottom:607.245000px;}
.y97{bottom:609.225000px;}
.y95{bottom:614.085000px;}
.y79{bottom:614.445000px;}
.y1c{bottom:620.565000px;}
.y96{bottom:625.425000px;}
.y44{bottom:627.225000px;}
.y94{bottom:634.785000px;}
.y78{bottom:635.145000px;}
.y1b{bottom:636.405000px;}
.y43{bottom:647.925000px;}
.y1a{bottom:651.885000px;}
.ye8{bottom:655.485000px;}
.y77{bottom:655.845000px;}
.y19{bottom:667.365000px;}
.y42{bottom:668.625000px;}
.ye7{bottom:676.185000px;}
.y76{bottom:676.545000px;}
.y18{bottom:683.025000px;}
.y41{bottom:689.325000px;}
.y75{bottom:697.245000px;}
.y17{bottom:698.145000px;}
.y40{bottom:710.025000px;}
.y16{bottom:713.985000px;}
.y74{bottom:717.765000px;}
.y3f{bottom:730.725000px;}
.y15{bottom:731.985000px;}
.y73{bottom:738.465000px;}
.y14{bottom:749.985000px;}
.y3e{bottom:751.425000px;}
.y72{bottom:759.165000px;}
.y13{bottom:763.665000px;}
.y3d{bottom:772.125000px;}
.y12{bottom:777.525000px;}
.y71{bottom:779.865000px;}
.y11{bottom:789.225000px;}
.y10{bottom:798.945000px;}
.y70{bottom:800.565000px;}
.yf{bottom:807.810000px;}
.y6f{bottom:821.310000px;}
.y4{bottom:836.415000px;}
.y6e{bottom:842.010000px;}
.y6d{bottom:862.710000px;}
.yec{bottom:883.050000px;}
.y6c{bottom:883.410000px;}
.ye{bottom:900.150000px;}
.yeb{bottom:903.750000px;}
.y6b{bottom:904.110000px;}
.yd{bottom:914.010000px;}
.y6a{bottom:924.810000px;}
.y69{bottom:945.510000px;}
.y68{bottom:966.210000px;}
.yc{bottom:968.910000px;}
.y67{bottom:986.910000px;}
.y66{bottom:1007.610000px;}
.y65{bottom:1028.310000px;}
.y9{bottom:1030.290000px;}
.y64{bottom:1049.010000px;}
.y8{bottom:1050.990000px;}
.y63{bottom:1069.380000px;}
.y93{bottom:1069.740000px;}
.yb{bottom:1106.460000px;}
.y5c{bottom:1108.080000px;}
.y5f{bottom:1116.540000px;}
.ya{bottom:1120.680000px;}
.y5e{bottom:1137.060000px;}
.y60{bottom:1171.620000px;}
.hd{height:8.773594px;}
.he{height:10.830586px;}
.h4{height:18.430664px;}
.h18{height:20.700000px;}
.ha{height:25.163437px;}
.h8{height:29.678906px;}
.h15{height:29.700000px;}
.h1a{height:41.436000px;}
.h5{height:42.602344px;}
.h7{height:44.518359px;}
.h2{height:44.820000px;}
.h11{height:45.403594px;}
.hc{height:45.457031px;}
.h16{height:47.221875px;}
.h10{height:47.344922px;}
.hf{height:48.616875px;}
.h1{height:50.326875px;}
.h6{height:51.328125px;}
.h13{height:52.998047px;}
.h12{height:54.421875px;}
.hb{height:55.760625px;}
.h1b{height:62.085000px;}
.h1c{height:62.095500px;}
.h1d{height:62.100000px;}
.h1f{height:64.546875px;}
.h14{height:70.664062px;}
.h17{height:72.562500px;}
.h3{height:74.704922px;}
.h9{height:103.038750px;}
.h1e{height:103.521000px;}
.h19{height:198.570000px;}
.h0{height:1188.000000px;}
.w8{width:118.795500px;}
.w5{width:118.800000px;}
.w3{width:153.750000px;}
.w7{width:168.495000px;}
.w4{width:175.155000px;}
.w6{width:203.205000px;}
.w2{width:406.260000px;}
.w1{width:783.495000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:5.400000px;}
.x16{left:8.385000px;}
.x1e{left:13.680000px;}
.x22{left:27.210000px;}
.x3{left:58.500000px;}
.x1d{left:59.760000px;}
.x4{left:67.320000px;}
.x9{left:76.500000px;}
.x19{left:81.000000px;}
.x23{left:135.036000px;}
.x8{left:203.970000px;}
.x6{left:206.310000px;}
.x17{left:207.390000px;}
.x1f{left:215.145000px;}
.x14{left:351.435000px;}
.xa{left:369.075000px;}
.x13{left:378.435000px;}
.xb{left:383.475000px;}
.x20{left:391.755000px;}
.xc{left:393.735000px;}
.xd{left:401.655000px;}
.xe{left:411.915000px;}
.xf{left:423.795000px;}
.x10{left:438.195000px;}
.x2{left:441.075000px;}
.x11{left:450.075000px;}
.x1a{left:454.575000px;}
.x1{left:459.075000px;}
.x7{left:472.215000px;}
.x18{left:474.195000px;}
.x12{left:509.295000px;}
.x15{left:511.560000px;}
.x21{left:716.880000px;}
.x1b{left:783.150000px;}
.x1c{left:815.010000px;}
@media print{
.v2{vertical-align:-90.880000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls4{letter-spacing:-5.120000pt;}
.ls10{letter-spacing:-0.768000pt;}
.ls7{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.148267pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.112000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.512000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.704000pt;}
.lsd{letter-spacing:1.152000pt;}
.lsf{letter-spacing:1.280000pt;}
.ls1{letter-spacing:106.560000pt;}
.ws0{word-spacing:-18.281173pt;}
.wsb{word-spacing:-17.152000pt;}
.ws7{word-spacing:-16.704000pt;}
.wsa{word-spacing:-16.640000pt;}
.ws5{word-spacing:-16.512000pt;}
.ws1{word-spacing:-16.320000pt;}
.ws8{word-spacing:-16.192000pt;}
.ws6{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.872000pt;}
.wsc{word-spacing:-15.808000pt;}
.ws9{word-spacing:-15.744000pt;}
.ws3{word-spacing:-11.888000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws4{word-spacing:0.000000pt;}
._3{margin-left:-5.418667pt;}
._2{margin-left:-1.984000pt;}
._0{margin-left:-1.077333pt;}
._1{width:1.274880pt;}
._4{width:2.165333pt;}
._21{width:3.072000pt;}
._b{width:4.512000pt;}
._11{width:6.021333pt;}
._19{width:6.944000pt;}
._18{width:7.866667pt;}
._10{width:9.600000pt;}
._28{width:10.944000pt;}
._25{width:12.544000pt;}
._26{width:13.573120pt;}
._17{width:14.464000pt;}
._e{width:15.984000pt;}
._27{width:16.981333pt;}
._c{width:18.213333pt;}
._23{width:19.328000pt;}
._24{width:20.426240pt;}
._d{width:21.381333pt;}
._5{width:22.929920pt;}
._a{width:23.987413pt;}
._8{width:25.632000pt;}
._9{width:26.533333pt;}
._7{width:27.583360pt;}
._16{width:28.765013pt;}
._6{width:29.684480pt;}
._1d{width:30.882987pt;}
._29{width:31.811840pt;}
._31{width:33.596160pt;}
._1b{width:34.671787pt;}
._1c{width:36.000427pt;}
._3f{width:37.824000pt;}
._15{width:39.034453pt;}
._40{width:40.448000pt;}
._12{width:41.408000pt;}
._53{width:42.469120pt;}
._2c{width:44.224000pt;}
._20{width:45.568000pt;}
._1f{width:46.773333pt;}
._f{width:48.528000pt;}
._22{width:49.840000pt;}
._1e{width:51.392000pt;}
._1a{width:52.544000pt;}
._48{width:59.626667pt;}
._49{width:60.805120pt;}
._51{width:61.957120pt;}
._42{width:62.848000pt;}
._43{width:64.186453pt;}
._14{width:66.485333pt;}
._13{width:67.776000pt;}
._50{width:68.704000pt;}
._4e{width:70.709333pt;}
._35{width:72.384000pt;}
._36{width:74.053120pt;}
._39{width:84.245333pt;}
._38{width:85.354667pt;}
._54{width:86.933333pt;}
._2f{width:88.320000pt;}
._46{width:89.770667pt;}
._47{width:90.880000pt;}
._2b{width:93.568000pt;}
._2a{width:102.592000pt;}
._2d{width:106.240000pt;}
._44{width:107.136000pt;}
._45{width:108.608000pt;}
._3e{width:109.621333pt;}
._55{width:110.730667pt;}
._2e{width:113.903787pt;}
._33{width:146.752000pt;}
._34{width:148.277333pt;}
._4f{width:150.005333pt;}
._4c{width:153.664000pt;}
._4d{width:154.624000pt;}
._3a{width:165.696000pt;}
._52{width:179.690667pt;}
._4b{width:186.656000pt;}
._4a{width:187.690667pt;}
._3c{width:195.200000pt;}
._3b{width:196.298667pt;}
._30{width:197.440000pt;}
._41{width:215.562667pt;}
._32{width:232.128000pt;}
._37{width:236.405333pt;}
._3d{width:308.672000pt;}
.fsa{font-size:10.880000pt;}
.fsb{font-size:13.440000pt;}
.fs3{font-size:16.000000pt;}
.fs6{font-size:26.880000pt;}
.fs8{font-size:29.440000pt;}
.fsc{font-size:32.000000pt;}
.fs5{font-size:40.320000pt;}
.fs2{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:90.880000pt;}
.y7{bottom:-3.986667pt;}
.y0{bottom:0.000000pt;}
.ycc{bottom:3.680000pt;}
.ydc{bottom:3.986667pt;}
.yd5{bottom:4.000000pt;}
.yd7{bottom:4.013333pt;}
.yd2{bottom:4.026667pt;}
.y6{bottom:7.053333pt;}
.y5d{bottom:12.640000pt;}
.ydf{bottom:22.386667pt;}
.yd4{bottom:22.400000pt;}
.yd1{bottom:22.426667pt;}
.y5{bottom:25.453333pt;}
.y62{bottom:32.192000pt;}
.yde{bottom:40.786667pt;}
.yd3{bottom:40.800000pt;}
.ydb{bottom:40.826667pt;}
.y3{bottom:41.472000pt;}
.y61{bottom:49.952000pt;}
.y2{bottom:59.072000pt;}
.yda{bottom:59.226667pt;}
.y1{bottom:76.832000pt;}
.yd9{bottom:77.626667pt;}
.yb0{bottom:81.472000pt;}
.yca{bottom:83.712000pt;}
.y92{bottom:86.112000pt;}
.ye3{bottom:88.672000pt;}
.yaf{bottom:99.872000pt;}
.yc9{bottom:102.112000pt;}
.y91{bottom:104.512000pt;}
.ye2{bottom:107.072000pt;}
.y3c{bottom:107.872000pt;}
.yae{bottom:118.272000pt;}
.yc8{bottom:120.512000pt;}
.y90{bottom:122.912000pt;}
.y3b{bottom:124.032000pt;}
.ye1{bottom:125.472000pt;}
.yad{bottom:136.666667pt;}
.y3a{bottom:137.786667pt;}
.yc7{bottom:138.906667pt;}
.y8f{bottom:141.306667pt;}
.y5b{bottom:142.426667pt;}
.ycf{bottom:143.706667pt;}
.ye0{bottom:143.866667pt;}
.y39{bottom:151.706667pt;}
.yac{bottom:155.066667pt;}
.y5a{bottom:156.186667pt;}
.yc6{bottom:157.306667pt;}
.y8e{bottom:159.706667pt;}
.yce{bottom:162.106667pt;}
.y38{bottom:165.466667pt;}
.ydd{bottom:166.280000pt;}
.y59{bottom:171.066667pt;}
.yab{bottom:173.466667pt;}
.yc5{bottom:175.706667pt;}
.y8d{bottom:178.106667pt;}
.y37{bottom:178.906667pt;}
.y58{bottom:189.466667pt;}
.yaa{bottom:191.866667pt;}
.y36{bottom:192.986667pt;}
.yc4{bottom:194.106667pt;}
.yea{bottom:196.186667pt;}
.y8c{bottom:196.506667pt;}
.y35{bottom:206.906667pt;}
.y57{bottom:207.866667pt;}
.ya9{bottom:210.266667pt;}
.yc3{bottom:212.506667pt;}
.ye9{bottom:214.586667pt;}
.y8b{bottom:214.906667pt;}
.y34{bottom:220.666667pt;}
.y56{bottom:226.266667pt;}
.ya8{bottom:228.666667pt;}
.yc2{bottom:230.906667pt;}
.y8a{bottom:233.306667pt;}
.y33{bottom:234.106667pt;}
.yd8{bottom:236.200000pt;}
.y55{bottom:244.666667pt;}
.ya7{bottom:247.066667pt;}
.y32{bottom:248.186667pt;}
.yc1{bottom:249.306667pt;}
.y89{bottom:251.706667pt;}
.y31{bottom:262.146667pt;}
.y54{bottom:263.106667pt;}
.ya6{bottom:265.506667pt;}
.yc0{bottom:267.746667pt;}
.y88{bottom:270.146667pt;}
.y30{bottom:275.906667pt;}
.y53{bottom:281.506667pt;}
.ya5{bottom:283.906667pt;}
.ybf{bottom:286.146667pt;}
.y87{bottom:288.546667pt;}
.y2f{bottom:289.666667pt;}
.y52{bottom:299.906667pt;}
.ya4{bottom:302.306667pt;}
.y2e{bottom:303.106667pt;}
.ybe{bottom:304.546667pt;}
.y86{bottom:306.946667pt;}
.y2d{bottom:317.346667pt;}
.y51{bottom:318.306667pt;}
.ya3{bottom:320.706667pt;}
.ybd{bottom:322.946667pt;}
.y85{bottom:325.346667pt;}
.y2c{bottom:331.106667pt;}
.y50{bottom:336.706667pt;}
.ya2{bottom:339.106667pt;}
.ybc{bottom:341.346667pt;}
.yd6{bottom:342.933333pt;}
.ycd{bottom:342.946667pt;}
.y84{bottom:343.746667pt;}
.y2b{bottom:344.866667pt;}
.y4f{bottom:355.106667pt;}
.ya1{bottom:357.506667pt;}
.y2a{bottom:358.626667pt;}
.ybb{bottom:359.746667pt;}
.ye6{bottom:361.826667pt;}
.y83{bottom:362.146667pt;}
.y29{bottom:372.226667pt;}
.y4e{bottom:373.506667pt;}
.ya0{bottom:375.906667pt;}
.yba{bottom:378.146667pt;}
.ye5{bottom:380.226667pt;}
.y82{bottom:380.546667pt;}
.y28{bottom:386.306667pt;}
.y4d{bottom:391.906667pt;}
.y9f{bottom:394.306667pt;}
.yb9{bottom:396.546667pt;}
.ye4{bottom:398.626667pt;}
.y81{bottom:398.946667pt;}
.y27{bottom:400.066667pt;}
.y4c{bottom:410.306667pt;}
.y9e{bottom:412.706667pt;}
.y26{bottom:413.826667pt;}
.yb8{bottom:414.626667pt;}
.y80{bottom:417.346667pt;}
.y25{bottom:427.426667pt;}
.y4b{bottom:428.706667pt;}
.y9d{bottom:431.106667pt;}
.yb7{bottom:433.026667pt;}
.y7f{bottom:435.746667pt;}
.y24{bottom:441.506667pt;}
.y4a{bottom:447.106667pt;}
.y9c{bottom:449.186667pt;}
.yb6{bottom:451.746667pt;}
.yee{bottom:453.826667pt;}
.y7e{bottom:454.146667pt;}
.y23{bottom:455.266667pt;}
.y49{bottom:465.506667pt;}
.y9b{bottom:467.586667pt;}
.y22{bottom:469.026667pt;}
.yb5{bottom:470.146667pt;}
.yed{bottom:472.226667pt;}
.y7d{bottom:472.546667pt;}
.yd0{bottom:482.626667pt;}
.y21{bottom:482.946667pt;}
.y48{bottom:483.906667pt;}
.y9a{bottom:486.306667pt;}
.yb4{bottom:488.573333pt;}
.y7c{bottom:490.973333pt;}
.y20{bottom:496.413333pt;}
.y47{bottom:502.333333pt;}
.y99{bottom:504.733333pt;}
.yb3{bottom:506.973333pt;}
.y7b{bottom:509.373333pt;}
.y1f{bottom:510.493333pt;}
.y46{bottom:520.733333pt;}
.y98{bottom:523.133333pt;}
.y1e{bottom:524.253333pt;}
.yb2{bottom:525.373333pt;}
.y7a{bottom:527.773333pt;}
.ycb{bottom:534.173333pt;}
.y1d{bottom:538.173333pt;}
.y45{bottom:539.133333pt;}
.yb1{bottom:539.773333pt;}
.y97{bottom:541.533333pt;}
.y95{bottom:545.853333pt;}
.y79{bottom:546.173333pt;}
.y1c{bottom:551.613333pt;}
.y96{bottom:555.933333pt;}
.y44{bottom:557.533333pt;}
.y94{bottom:564.253333pt;}
.y78{bottom:564.573333pt;}
.y1b{bottom:565.693333pt;}
.y43{bottom:575.933333pt;}
.y1a{bottom:579.453333pt;}
.ye8{bottom:582.653333pt;}
.y77{bottom:582.973333pt;}
.y19{bottom:593.213333pt;}
.y42{bottom:594.333333pt;}
.ye7{bottom:601.053333pt;}
.y76{bottom:601.373333pt;}
.y18{bottom:607.133333pt;}
.y41{bottom:612.733333pt;}
.y75{bottom:619.773333pt;}
.y17{bottom:620.573333pt;}
.y40{bottom:631.133333pt;}
.y16{bottom:634.653333pt;}
.y74{bottom:638.013333pt;}
.y3f{bottom:649.533333pt;}
.y15{bottom:650.653333pt;}
.y73{bottom:656.413333pt;}
.y14{bottom:666.653333pt;}
.y3e{bottom:667.933333pt;}
.y72{bottom:674.813333pt;}
.y13{bottom:678.813333pt;}
.y3d{bottom:686.333333pt;}
.y12{bottom:691.133333pt;}
.y71{bottom:693.213333pt;}
.y11{bottom:701.533333pt;}
.y10{bottom:710.173333pt;}
.y70{bottom:711.613333pt;}
.yf{bottom:718.053333pt;}
.y6f{bottom:730.053333pt;}
.y4{bottom:743.480000pt;}
.y6e{bottom:748.453333pt;}
.y6d{bottom:766.853333pt;}
.yec{bottom:784.933333pt;}
.y6c{bottom:785.253333pt;}
.ye{bottom:800.133333pt;}
.yeb{bottom:803.333333pt;}
.y6b{bottom:803.653333pt;}
.yd{bottom:812.453333pt;}
.y6a{bottom:822.053333pt;}
.y69{bottom:840.453333pt;}
.y68{bottom:858.853333pt;}
.yc{bottom:861.253333pt;}
.y67{bottom:877.253333pt;}
.y66{bottom:895.653333pt;}
.y65{bottom:914.053333pt;}
.y9{bottom:915.813333pt;}
.y64{bottom:932.453333pt;}
.y8{bottom:934.213333pt;}
.y63{bottom:950.560000pt;}
.y93{bottom:950.880000pt;}
.yb{bottom:983.520000pt;}
.y5c{bottom:984.960000pt;}
.y5f{bottom:992.480000pt;}
.ya{bottom:996.160000pt;}
.y5e{bottom:1010.720000pt;}
.y60{bottom:1041.440000pt;}
.hd{height:7.798750pt;}
.he{height:9.627187pt;}
.h4{height:16.382812pt;}
.h18{height:18.400000pt;}
.ha{height:22.367500pt;}
.h8{height:26.381250pt;}
.h15{height:26.400000pt;}
.h1a{height:36.832000pt;}
.h5{height:37.868750pt;}
.h7{height:39.571875pt;}
.h2{height:39.840000pt;}
.h11{height:40.358750pt;}
.hc{height:40.406250pt;}
.h16{height:41.975000pt;}
.h10{height:42.084375pt;}
.hf{height:43.215000pt;}
.h1{height:44.735000pt;}
.h6{height:45.625000pt;}
.h13{height:47.109375pt;}
.h12{height:48.375000pt;}
.hb{height:49.565000pt;}
.h1b{height:55.186667pt;}
.h1c{height:55.196000pt;}
.h1d{height:55.200000pt;}
.h1f{height:57.375000pt;}
.h14{height:62.812500pt;}
.h17{height:64.500000pt;}
.h3{height:66.404375pt;}
.h9{height:91.590000pt;}
.h1e{height:92.018667pt;}
.h19{height:176.506667pt;}
.h0{height:1056.000000pt;}
.w8{width:105.596000pt;}
.w5{width:105.600000pt;}
.w3{width:136.666667pt;}
.w7{width:149.773333pt;}
.w4{width:155.693333pt;}
.w6{width:180.626667pt;}
.w2{width:361.120000pt;}
.w1{width:696.440000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:4.800000pt;}
.x16{left:7.453333pt;}
.x1e{left:12.160000pt;}
.x22{left:24.186667pt;}
.x3{left:52.000000pt;}
.x1d{left:53.120000pt;}
.x4{left:59.840000pt;}
.x9{left:68.000000pt;}
.x19{left:72.000000pt;}
.x23{left:120.032000pt;}
.x8{left:181.306667pt;}
.x6{left:183.386667pt;}
.x17{left:184.346667pt;}
.x1f{left:191.240000pt;}
.x14{left:312.386667pt;}
.xa{left:328.066667pt;}
.x13{left:336.386667pt;}
.xb{left:340.866667pt;}
.x20{left:348.226667pt;}
.xc{left:349.986667pt;}
.xd{left:357.026667pt;}
.xe{left:366.146667pt;}
.xf{left:376.706667pt;}
.x10{left:389.506667pt;}
.x2{left:392.066667pt;}
.x11{left:400.066667pt;}
.x1a{left:404.066667pt;}
.x1{left:408.066667pt;}
.x7{left:419.746667pt;}
.x18{left:421.506667pt;}
.x12{left:452.706667pt;}
.x15{left:454.720000pt;}
.x21{left:637.226667pt;}
.x1b{left:696.133333pt;}
.x1c{left:724.453333pt;}
}




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