
    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_ab3eff9304b9c58b1b9c6222.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_cb0595e09e73cf5f9513e914.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.983398;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_628bf5adf2c3ffbea289d9f1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d4cdddea96c03ae469dfd100.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_9555f3d3271594c8ed0ca7be.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_21442c6a01f5013c0be3e5b0.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5d1cc061cacd272b7802eb55.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.958008;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_c85716847ef92f0676d55dc7.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_2bea720a1a8d3d3a6297e98e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_8856b0ec11e9100e963928ba.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_37ef9c8cf917b026bcf14394.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_ac7cfc3d9d055a69751535d4.woff2')format("woff");}.ffd{font-family:ffd;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;}
@font-face{font-family:ffe;src:url('chunks/assets/font_124108c3513ec5b95b3e2103.woff2')format("woff");}.ffe{font-family:ffe;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;}
@font-face{font-family:fff;src:url('chunks/assets/font_67ee7e40a57b4802c7d3f8ec.woff2')format("woff");}.fff{font-family:fff;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff10{font-family:ff10;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;}
@font-face{font-family:ff11;src:url('chunks/assets/font_3a3ea4030c40312f5e9d4623.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.915527;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;}
.ls8{letter-spacing:-2.220000px;}
.ls7{letter-spacing:-1.500000px;}
.lsb{letter-spacing:-1.332000px;}
.ls6{letter-spacing:-0.127200px;}
.lsd{letter-spacing:-0.106800px;}
.lsa{letter-spacing:-0.038160px;}
.ls5{letter-spacing:-0.018000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls1{letter-spacing:0.132600px;}
.ls9{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls11{letter-spacing:0.298800px;}
.lsc{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.447840px;}
.ls10{letter-spacing:46.026720px;}
.lse{letter-spacing:70.506720px;}
.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;}
}
.wsf{word-spacing:-59.760000px;}
.ws3{word-spacing:-22.087200px;}
.ws4{word-spacing:-21.367200px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.wsc{word-spacing:-15.300000px;}
.wse{word-spacing:-15.199800px;}
.wsb{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.833200px;}
.ws9{word-spacing:-13.505760px;}
.ws8{word-spacing:-12.854880px;}
.ws7{word-spacing:-12.816720px;}
.ws0{word-spacing:-12.186000px;}
.ws5{word-spacing:-8.786880px;}
.ws6{word-spacing:-8.136000px;}
.wsa{word-spacing:0.000000px;}
._7{margin-left:-6.380400px;}
._3{margin-left:-4.840560px;}
._f{margin-left:-3.585600px;}
._2{margin-left:-2.358720px;}
._0{margin-left:-1.026000px;}
._1{width:1.128000px;}
._4{width:2.155440px;}
._e{width:3.286080px;}
._d{width:5.189040px;}
._c{width:6.513840px;}
._10{width:7.693200px;}
._12{width:8.724960px;}
._11{width:9.768960px;}
._15{width:11.548560px;}
._6{width:12.609360px;}
._5{width:13.625280px;}
._19{width:15.963360px;}
._13{width:17.031600px;}
._17{width:18.361200px;}
._b{width:20.310960px;}
._a{width:22.058880px;}
._1c{width:24.577920px;}
._1a{width:25.644480px;}
._1b{width:26.944320px;}
._8{width:60.365040px;}
._9{width:61.545360px;}
._18{width:85.113120px;}
._16{width:193.204080px;}
._14{width:317.564640px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc6{color:rgb(255,255,255);}
.fc1{color:rgb(0,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;}
.y40{bottom:3.240000px;}
.y4{bottom:3.600000px;}
.ya3{bottom:4.320000px;}
.y9b{bottom:6.840000px;}
.yf{bottom:9.360000px;}
.yc3{bottom:11.880000px;}
.y1c{bottom:12.420000px;}
.yd{bottom:13.860000px;}
.y43{bottom:14.940000px;}
.y6{bottom:15.120000px;}
.y42{bottom:18.000000px;}
.y3{bottom:20.160000px;}
.y3f{bottom:20.520000px;}
.y75{bottom:20.550000px;}
.y1a{bottom:23.760000px;}
.yc{bottom:30.240000px;}
.y5{bottom:33.876000px;}
.y2{bottom:36.576000px;}
.y1{bottom:37.620000px;}
.y9d{bottom:37.800000px;}
.y74{bottom:37.830000px;}
.y19{bottom:40.365000px;}
.yb{bottom:46.620000px;}
.y3e{bottom:54.900000px;}
.y18{bottom:56.925000px;}
.y17{bottom:69.885000px;}
.y3d{bottom:72.180000px;}
.ya{bottom:73.470000px;}
.y16{bottom:88.245000px;}
.y3c{bottom:89.460000px;}
.y9{bottom:93.090000px;}
.y84{bottom:97.956000px;}
.y53{bottom:106.236000px;}
.y15{bottom:106.605000px;}
.y3b{bottom:106.740000px;}
.yd3{bottom:111.096000px;}
.y8{bottom:111.450000px;}
.y83{bottom:119.196000px;}
.y52{bottom:123.516000px;}
.y3a{bottom:124.020000px;}
.yd2{bottom:124.956000px;}
.y14{bottom:125.505000px;}
.y82{bottom:136.476000px;}
.y51{bottom:140.796000px;}
.y39{bottom:141.120000px;}
.y13{bottom:151.245000px;}
.y81{bottom:153.750000px;}
.y50{bottom:157.890000px;}
.y38{bottom:158.400000px;}
.y2a{bottom:167.400000px;}
.yf0{bottom:169.050000px;}
.y80{bottom:171.030000px;}
.y4f{bottom:175.170000px;}
.y37{bottom:175.680000px;}
.y12{bottom:176.985000px;}
.y29{bottom:182.700000px;}
.yef{bottom:186.150000px;}
.y7f{bottom:188.130000px;}
.y4e{bottom:192.450000px;}
.y36{bottom:192.960000px;}
.y28{bottom:200.910000px;}
.y11{bottom:201.465000px;}
.yee{bottom:203.430000px;}
.y7e{bottom:205.410000px;}
.yac{bottom:207.390000px;}
.y4d{bottom:209.730000px;}
.y35{bottom:210.270000px;}
.y27{bottom:218.370000px;}
.yed{bottom:220.710000px;}
.y7d{bottom:222.690000px;}
.yab{bottom:224.670000px;}
.y4c{bottom:227.010000px;}
.y34{bottom:227.370000px;}
.y26{bottom:235.650000px;}
.yec{bottom:237.990000px;}
.yaa{bottom:238.710000px;}
.y7c{bottom:239.970000px;}
.y4b{bottom:244.110000px;}
.y33{bottom:244.650000px;}
.y25{bottom:253.110000px;}
.yeb{bottom:255.270000px;}
.y7b{bottom:257.250000px;}
.y4a{bottom:261.390000px;}
.y32{bottom:261.930000px;}
.y24{bottom:270.390000px;}
.y7a{bottom:271.290000px;}
.yea{bottom:272.550000px;}
.y49{bottom:278.670000px;}
.y31{bottom:279.210000px;}
.y23{bottom:287.850000px;}
.ye9{bottom:289.650000px;}
.y48{bottom:295.950000px;}
.y30{bottom:296.490000px;}
.y22{bottom:305.310000px;}
.ye8{bottom:306.930000px;}
.yd1{bottom:310.890000px;}
.y47{bottom:313.230000px;}
.y2f{bottom:313.770000px;}
.y21{bottom:322.590000px;}
.ye7{bottom:324.210000px;}
.yd0{bottom:325.650000px;}
.y46{bottom:330.510000px;}
.y2e{bottom:330.870000px;}
.y20{bottom:340.230000px;}
.ye6{bottom:341.535000px;}
.ycf{bottom:343.695000px;}
.y45{bottom:347.655000px;}
.y2d{bottom:348.150000px;}
.ye5{bottom:358.815000px;}
.yce{bottom:361.695000px;}
.y2c{bottom:365.430000px;}
.y44{bottom:365.655000px;}
.y1f{bottom:367.590000px;}
.ye4{bottom:376.095000px;}
.ycd{bottom:379.695000px;}
.y41{bottom:380.055000px;}
.y2b{bottom:382.710000px;}
.y1e{bottom:385.410000px;}
.ye3{bottom:393.195000px;}
.ycc{bottom:397.695000px;}
.y1d{bottom:409.395000px;}
.ye2{bottom:410.475000px;}
.ye1{bottom:427.755000px;}
.ycb{bottom:432.975000px;}
.ye0{bottom:445.035000px;}
.yca{bottom:450.975000px;}
.ya9{bottom:451.875000px;}
.ydf{bottom:462.315000px;}
.yc9{bottom:468.975000px;}
.ya8{bottom:469.155000px;}
.yde{bottom:479.415000px;}
.ya7{bottom:483.915000px;}
.ydd{bottom:496.695000px;}
.ya6{bottom:501.915000px;}
.yc8{bottom:504.255000px;}
.y79{bottom:506.235000px;}
.ydc{bottom:513.975000px;}
.y78{bottom:520.995000px;}
.yc7{bottom:522.255000px;}
.ydb{bottom:531.255000px;}
.ya5{bottom:537.195000px;}
.y77{bottom:538.995000px;}
.yda{bottom:545.295000px;}
.ya4{bottom:555.195000px;}
.yc6{bottom:557.535000px;}
.ya2{bottom:573.195000px;}
.y76{bottom:574.275000px;}
.yc5{bottom:578.775000px;}
.y73{bottom:592.275000px;}
.yc4{bottom:596.055000px;}
.ya1{bottom:610.305000px;}
.yc2{bottom:610.845000px;}
.ya0{bottom:628.305000px;}
.yc1{bottom:637.485000px;}
.y72{bottom:644.865000px;}
.yc0{bottom:655.485000px;}
.y71{bottom:662.865000px;}
.y9f{bottom:663.585000px;}
.ybf{bottom:673.485000px;}
.y70{bottom:680.685000px;}
.y9e{bottom:681.585000px;}
.ybe{bottom:694.725000px;}
.y9c{bottom:699.585000px;}
.ybd{bottom:712.005000px;}
.y6f{bottom:719.205000px;}
.ybc{bottom:729.285000px;}
.yd9{bottom:731.265000px;}
.y6e{bottom:736.485000px;}
.ybb{bottom:746.385000px;}
.yd8{bottom:748.545000px;}
.y9a{bottom:752.145000px;}
.y6d{bottom:753.765000px;}
.yd7{bottom:762.405000px;}
.yba{bottom:763.665000px;}
.y6c{bottom:771.045000px;}
.y99{bottom:773.745000px;}
.yb9{bottom:780.945000px;}
.y6b{bottom:788.325000px;}
.y98{bottom:794.985000px;}
.yb8{bottom:798.225000px;}
.y6a{bottom:805.425000px;}
.y1b{bottom:806.145000px;}
.y97{bottom:812.265000px;}
.yb7{bottom:815.505000px;}
.y69{bottom:822.705000px;}
.y96{bottom:829.545000px;}
.yb6{bottom:832.785000px;}
.y10{bottom:835.665000px;}
.y68{bottom:839.985000px;}
.y95{bottom:846.825000px;}
.yb5{bottom:849.885000px;}
.y67{bottom:857.265000px;}
.y94{bottom:863.925000px;}
.yb4{bottom:867.165000px;}
.y66{bottom:874.590000px;}
.y93{bottom:881.250000px;}
.yb3{bottom:884.490000px;}
.y65{bottom:891.870000px;}
.y92{bottom:898.530000px;}
.yb2{bottom:901.770000px;}
.y64{bottom:908.970000px;}
.y91{bottom:913.290000px;}
.yb1{bottom:919.050000px;}
.y63{bottom:926.250000px;}
.yb0{bottom:936.330000px;}
.y62{bottom:943.530000px;}
.y90{bottom:948.570000px;}
.yaf{bottom:953.430000px;}
.yd6{bottom:959.190000px;}
.y61{bottom:960.810000px;}
.yae{bottom:970.710000px;}
.yd5{bottom:976.470000px;}
.y60{bottom:978.090000px;}
.y8f{bottom:983.850000px;}
.yad{bottom:984.750000px;}
.yd4{bottom:990.510000px;}
.y5f{bottom:995.370000px;}
.y5e{bottom:1012.470000px;}
.y8e{bottom:1019.670000px;}
.y5d{bottom:1029.750000px;}
.y8d{bottom:1040.550000px;}
.y5c{bottom:1047.030000px;}
.ye{bottom:1052.250000px;}
.y8c{bottom:1058.190000px;}
.y5b{bottom:1064.310000px;}
.y8b{bottom:1072.950000px;}
.y7{bottom:1077.450000px;}
.y5a{bottom:1081.590000px;}
.y8a{bottom:1090.950000px;}
.y59{bottom:1098.690000px;}
.y89{bottom:1108.950000px;}
.y58{bottom:1115.970000px;}
.y88{bottom:1126.950000px;}
.y57{bottom:1133.250000px;}
.y87{bottom:1144.980000px;}
.y56{bottom:1150.560000px;}
.y86{bottom:1162.980000px;}
.y55{bottom:1167.840000px;}
.y85{bottom:1180.980000px;}
.y54{bottom:1185.120000px;}
.h1f{height:17.100000px;}
.h21{height:17.280000px;}
.h22{height:17.316000px;}
.h27{height:18.360000px;}
.h25{height:20.880000px;}
.hc{height:24.840000px;}
.h28{height:25.920000px;}
.h12{height:28.968750px;}
.h1c{height:29.340000px;}
.h13{height:29.520000px;}
.h24{height:34.380000px;}
.h1e{height:34.560000px;}
.h9{height:36.180000px;}
.h19{height:38.818125px;}
.h1b{height:41.726953px;}
.h29{height:41.843672px;}
.h1a{height:42.164648px;}
.h5{height:43.453125px;}
.h23{height:43.506914px;}
.he{height:44.002969px;}
.hb{height:44.820000px;}
.h18{height:45.770625px;}
.h16{height:47.980898px;}
.h1d{height:48.088125px;}
.h2{height:49.536000px;}
.h26{height:51.660000px;}
.h20{height:51.696000px;}
.h4{height:53.709961px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h17{height:56.574492px;}
.h10{height:59.439023px;}
.h11{height:61.189805px;}
.hf{height:63.180000px;}
.h6{height:67.824844px;}
.h7{height:71.613281px;}
.h14{height:73.722656px;}
.h8{height:121.536000px;}
.hd{height:216.570000px;}
.h15{height:396.750000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:74.880000px;}
.w5{width:151.950000px;}
.wa{width:154.290000px;}
.wb{width:195.870000px;}
.w8{width:223.275000px;}
.w12{width:344.415000px;}
.w10{width:350.670000px;}
.wd{width:372.855000px;}
.we{width:373.035000px;}
.wc{width:394.995000px;}
.wf{width:395.205000px;}
.w13{width:401.475000px;}
.w9{width:524.055000px;}
.w6{width:595.365000px;}
.w2{width:673.530000px;}
.w11{width:746.610000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.640000px;}
.xd{left:10.800000px;}
.x15{left:12.600000px;}
.xc{left:48.996000px;}
.x1{left:72.360000px;}
.x4{left:80.999987px;}
.xf{left:83.370000px;}
.x5{left:98.130000px;}
.x1c{left:108.035987px;}
.x1d{left:135.035987px;}
.x10{left:139.170000px;}
.x11{left:140.430000px;}
.x2c{left:154.829987px;}
.x12{left:168.150000px;}
.x1b{left:192.449987px;}
.x13{left:215.175000px;}
.x6{left:224.850000px;}
.x17{left:228.270000px;}
.x16{left:235.469987px;}
.x2a{left:260.849987px;}
.x24{left:263.189987px;}
.x28{left:281.414987px;}
.xe{left:282.855000px;}
.x9{left:288.435000px;}
.x14{left:296.175000px;}
.x2b{left:306.074987px;}
.x20{left:310.394987px;}
.x7{left:348.195000px;}
.x25{left:354.674987px;}
.x23{left:356.294987px;}
.x8{left:367.455000px;}
.xb{left:373.575000px;}
.x1e{left:414.074987px;}
.x26{left:418.395000px;}
.x18{left:424.875000px;}
.x1a{left:446.474987px;}
.xa{left:455.700000px;}
.x1f{left:469.185000px;}
.x21{left:595.544987px;}
.x22{left:598.604987px;}
.x27{left:607.424987px;}
.x29{left:609.764987px;}
.x19{left:724.829987px;}
.x3{left:745.890000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls8{letter-spacing:-1.973333pt;}
.ls7{letter-spacing:-1.333333pt;}
.lsb{letter-spacing:-1.184000pt;}
.ls6{letter-spacing:-0.113067pt;}
.lsd{letter-spacing:-0.094933pt;}
.lsa{letter-spacing:-0.033920pt;}
.ls5{letter-spacing:-0.016000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls1{letter-spacing:0.117867pt;}
.ls9{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls11{letter-spacing:0.265600pt;}
.lsc{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.398080pt;}
.ls10{letter-spacing:40.912640pt;}
.lse{letter-spacing:62.672640pt;}
.wsf{word-spacing:-53.120000pt;}
.ws3{word-spacing:-19.633067pt;}
.ws4{word-spacing:-18.993067pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.wsc{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.185067pt;}
.ws9{word-spacing:-12.005120pt;}
.ws8{word-spacing:-11.426560pt;}
.ws7{word-spacing:-11.392640pt;}
.ws0{word-spacing:-10.832000pt;}
.ws5{word-spacing:-7.810560pt;}
.ws6{word-spacing:-7.232000pt;}
.wsa{word-spacing:0.000000pt;}
._7{margin-left:-5.671467pt;}
._3{margin-left:-4.302720pt;}
._f{margin-left:-3.187200pt;}
._2{margin-left:-2.096640pt;}
._0{margin-left:-0.912000pt;}
._1{width:1.002667pt;}
._4{width:1.915947pt;}
._e{width:2.920960pt;}
._d{width:4.612480pt;}
._c{width:5.790080pt;}
._10{width:6.838400pt;}
._12{width:7.755520pt;}
._11{width:8.683520pt;}
._15{width:10.265387pt;}
._6{width:11.208320pt;}
._5{width:12.111360pt;}
._19{width:14.189653pt;}
._13{width:15.139200pt;}
._17{width:16.321067pt;}
._b{width:18.054187pt;}
._a{width:19.607893pt;}
._1c{width:21.847040pt;}
._1a{width:22.795093pt;}
._1b{width:23.950507pt;}
._8{width:53.657813pt;}
._9{width:54.706987pt;}
._18{width:75.656107pt;}
._16{width:171.736960pt;}
._14{width:282.279680pt;}
.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;}
.y40{bottom:2.880000pt;}
.y4{bottom:3.200000pt;}
.ya3{bottom:3.840000pt;}
.y9b{bottom:6.080000pt;}
.yf{bottom:8.320000pt;}
.yc3{bottom:10.560000pt;}
.y1c{bottom:11.040000pt;}
.yd{bottom:12.320000pt;}
.y43{bottom:13.280000pt;}
.y6{bottom:13.440000pt;}
.y42{bottom:16.000000pt;}
.y3{bottom:17.920000pt;}
.y3f{bottom:18.240000pt;}
.y75{bottom:18.266667pt;}
.y1a{bottom:21.120000pt;}
.yc{bottom:26.880000pt;}
.y5{bottom:30.112000pt;}
.y2{bottom:32.512000pt;}
.y1{bottom:33.440000pt;}
.y9d{bottom:33.600000pt;}
.y74{bottom:33.626667pt;}
.y19{bottom:35.880000pt;}
.yb{bottom:41.440000pt;}
.y3e{bottom:48.800000pt;}
.y18{bottom:50.600000pt;}
.y17{bottom:62.120000pt;}
.y3d{bottom:64.160000pt;}
.ya{bottom:65.306667pt;}
.y16{bottom:78.440000pt;}
.y3c{bottom:79.520000pt;}
.y9{bottom:82.746667pt;}
.y84{bottom:87.072000pt;}
.y53{bottom:94.432000pt;}
.y15{bottom:94.760000pt;}
.y3b{bottom:94.880000pt;}
.yd3{bottom:98.752000pt;}
.y8{bottom:99.066667pt;}
.y83{bottom:105.952000pt;}
.y52{bottom:109.792000pt;}
.y3a{bottom:110.240000pt;}
.yd2{bottom:111.072000pt;}
.y14{bottom:111.560000pt;}
.y82{bottom:121.312000pt;}
.y51{bottom:125.152000pt;}
.y39{bottom:125.440000pt;}
.y13{bottom:134.440000pt;}
.y81{bottom:136.666667pt;}
.y50{bottom:140.346667pt;}
.y38{bottom:140.800000pt;}
.y2a{bottom:148.800000pt;}
.yf0{bottom:150.266667pt;}
.y80{bottom:152.026667pt;}
.y4f{bottom:155.706667pt;}
.y37{bottom:156.160000pt;}
.y12{bottom:157.320000pt;}
.y29{bottom:162.400000pt;}
.yef{bottom:165.466667pt;}
.y7f{bottom:167.226667pt;}
.y4e{bottom:171.066667pt;}
.y36{bottom:171.520000pt;}
.y28{bottom:178.586667pt;}
.y11{bottom:179.080000pt;}
.yee{bottom:180.826667pt;}
.y7e{bottom:182.586667pt;}
.yac{bottom:184.346667pt;}
.y4d{bottom:186.426667pt;}
.y35{bottom:186.906667pt;}
.y27{bottom:194.106667pt;}
.yed{bottom:196.186667pt;}
.y7d{bottom:197.946667pt;}
.yab{bottom:199.706667pt;}
.y4c{bottom:201.786667pt;}
.y34{bottom:202.106667pt;}
.y26{bottom:209.466667pt;}
.yec{bottom:211.546667pt;}
.yaa{bottom:212.186667pt;}
.y7c{bottom:213.306667pt;}
.y4b{bottom:216.986667pt;}
.y33{bottom:217.466667pt;}
.y25{bottom:224.986667pt;}
.yeb{bottom:226.906667pt;}
.y7b{bottom:228.666667pt;}
.y4a{bottom:232.346667pt;}
.y32{bottom:232.826667pt;}
.y24{bottom:240.346667pt;}
.y7a{bottom:241.146667pt;}
.yea{bottom:242.266667pt;}
.y49{bottom:247.706667pt;}
.y31{bottom:248.186667pt;}
.y23{bottom:255.866667pt;}
.ye9{bottom:257.466667pt;}
.y48{bottom:263.066667pt;}
.y30{bottom:263.546667pt;}
.y22{bottom:271.386667pt;}
.ye8{bottom:272.826667pt;}
.yd1{bottom:276.346667pt;}
.y47{bottom:278.426667pt;}
.y2f{bottom:278.906667pt;}
.y21{bottom:286.746667pt;}
.ye7{bottom:288.186667pt;}
.yd0{bottom:289.466667pt;}
.y46{bottom:293.786667pt;}
.y2e{bottom:294.106667pt;}
.y20{bottom:302.426667pt;}
.ye6{bottom:303.586667pt;}
.ycf{bottom:305.506667pt;}
.y45{bottom:309.026667pt;}
.y2d{bottom:309.466667pt;}
.ye5{bottom:318.946667pt;}
.yce{bottom:321.506667pt;}
.y2c{bottom:324.826667pt;}
.y44{bottom:325.026667pt;}
.y1f{bottom:326.746667pt;}
.ye4{bottom:334.306667pt;}
.ycd{bottom:337.506667pt;}
.y41{bottom:337.826667pt;}
.y2b{bottom:340.186667pt;}
.y1e{bottom:342.586667pt;}
.ye3{bottom:349.506667pt;}
.ycc{bottom:353.506667pt;}
.y1d{bottom:363.906667pt;}
.ye2{bottom:364.866667pt;}
.ye1{bottom:380.226667pt;}
.ycb{bottom:384.866667pt;}
.ye0{bottom:395.586667pt;}
.yca{bottom:400.866667pt;}
.ya9{bottom:401.666667pt;}
.ydf{bottom:410.946667pt;}
.yc9{bottom:416.866667pt;}
.ya8{bottom:417.026667pt;}
.yde{bottom:426.146667pt;}
.ya7{bottom:430.146667pt;}
.ydd{bottom:441.506667pt;}
.ya6{bottom:446.146667pt;}
.yc8{bottom:448.226667pt;}
.y79{bottom:449.986667pt;}
.ydc{bottom:456.866667pt;}
.y78{bottom:463.106667pt;}
.yc7{bottom:464.226667pt;}
.ydb{bottom:472.226667pt;}
.ya5{bottom:477.506667pt;}
.y77{bottom:479.106667pt;}
.yda{bottom:484.706667pt;}
.ya4{bottom:493.506667pt;}
.yc6{bottom:495.586667pt;}
.ya2{bottom:509.506667pt;}
.y76{bottom:510.466667pt;}
.yc5{bottom:514.466667pt;}
.y73{bottom:526.466667pt;}
.yc4{bottom:529.826667pt;}
.ya1{bottom:542.493333pt;}
.yc2{bottom:542.973333pt;}
.ya0{bottom:558.493333pt;}
.yc1{bottom:566.653333pt;}
.y72{bottom:573.213333pt;}
.yc0{bottom:582.653333pt;}
.y71{bottom:589.213333pt;}
.y9f{bottom:589.853333pt;}
.ybf{bottom:598.653333pt;}
.y70{bottom:605.053333pt;}
.y9e{bottom:605.853333pt;}
.ybe{bottom:617.533333pt;}
.y9c{bottom:621.853333pt;}
.ybd{bottom:632.893333pt;}
.y6f{bottom:639.293333pt;}
.ybc{bottom:648.253333pt;}
.yd9{bottom:650.013333pt;}
.y6e{bottom:654.653333pt;}
.ybb{bottom:663.453333pt;}
.yd8{bottom:665.373333pt;}
.y9a{bottom:668.573333pt;}
.y6d{bottom:670.013333pt;}
.yd7{bottom:677.693333pt;}
.yba{bottom:678.813333pt;}
.y6c{bottom:685.373333pt;}
.y99{bottom:687.773333pt;}
.yb9{bottom:694.173333pt;}
.y6b{bottom:700.733333pt;}
.y98{bottom:706.653333pt;}
.yb8{bottom:709.533333pt;}
.y6a{bottom:715.933333pt;}
.y1b{bottom:716.573333pt;}
.y97{bottom:722.013333pt;}
.yb7{bottom:724.893333pt;}
.y69{bottom:731.293333pt;}
.y96{bottom:737.373333pt;}
.yb6{bottom:740.253333pt;}
.y10{bottom:742.813333pt;}
.y68{bottom:746.653333pt;}
.y95{bottom:752.733333pt;}
.yb5{bottom:755.453333pt;}
.y67{bottom:762.013333pt;}
.y94{bottom:767.933333pt;}
.yb4{bottom:770.813333pt;}
.y66{bottom:777.413333pt;}
.y93{bottom:783.333333pt;}
.yb3{bottom:786.213333pt;}
.y65{bottom:792.773333pt;}
.y92{bottom:798.693333pt;}
.yb2{bottom:801.573333pt;}
.y64{bottom:807.973333pt;}
.y91{bottom:811.813333pt;}
.yb1{bottom:816.933333pt;}
.y63{bottom:823.333333pt;}
.yb0{bottom:832.293333pt;}
.y62{bottom:838.693333pt;}
.y90{bottom:843.173333pt;}
.yaf{bottom:847.493333pt;}
.yd6{bottom:852.613333pt;}
.y61{bottom:854.053333pt;}
.yae{bottom:862.853333pt;}
.yd5{bottom:867.973333pt;}
.y60{bottom:869.413333pt;}
.y8f{bottom:874.533333pt;}
.yad{bottom:875.333333pt;}
.yd4{bottom:880.453333pt;}
.y5f{bottom:884.773333pt;}
.y5e{bottom:899.973333pt;}
.y8e{bottom:906.373333pt;}
.y5d{bottom:915.333333pt;}
.y8d{bottom:924.933333pt;}
.y5c{bottom:930.693333pt;}
.ye{bottom:935.333333pt;}
.y8c{bottom:940.613333pt;}
.y5b{bottom:946.053333pt;}
.y8b{bottom:953.733333pt;}
.y7{bottom:957.733333pt;}
.y5a{bottom:961.413333pt;}
.y8a{bottom:969.733333pt;}
.y59{bottom:976.613333pt;}
.y89{bottom:985.733333pt;}
.y58{bottom:991.973333pt;}
.y88{bottom:1001.733333pt;}
.y57{bottom:1007.333333pt;}
.y87{bottom:1017.760000pt;}
.y56{bottom:1022.720000pt;}
.y86{bottom:1033.760000pt;}
.y55{bottom:1038.080000pt;}
.y85{bottom:1049.760000pt;}
.y54{bottom:1053.440000pt;}
.h1f{height:15.200000pt;}
.h21{height:15.360000pt;}
.h22{height:15.392000pt;}
.h27{height:16.320000pt;}
.h25{height:18.560000pt;}
.hc{height:22.080000pt;}
.h28{height:23.040000pt;}
.h12{height:25.750000pt;}
.h1c{height:26.080000pt;}
.h13{height:26.240000pt;}
.h24{height:30.560000pt;}
.h1e{height:30.720000pt;}
.h9{height:32.160000pt;}
.h19{height:34.505000pt;}
.h1b{height:37.090625pt;}
.h29{height:37.194375pt;}
.h1a{height:37.479688pt;}
.h5{height:38.625000pt;}
.h23{height:38.672812pt;}
.he{height:39.113750pt;}
.hb{height:39.840000pt;}
.h18{height:40.685000pt;}
.h16{height:42.649687pt;}
.h1d{height:42.745000pt;}
.h2{height:44.032000pt;}
.h26{height:45.920000pt;}
.h20{height:45.952000pt;}
.h4{height:47.742188pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h17{height:50.288438pt;}
.h10{height:52.834688pt;}
.h11{height:54.390938pt;}
.hf{height:56.160000pt;}
.h6{height:60.288750pt;}
.h7{height:63.656250pt;}
.h14{height:65.531250pt;}
.h8{height:108.032000pt;}
.hd{height:192.506667pt;}
.h15{height:352.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.560000pt;}
.w5{width:135.066667pt;}
.wa{width:137.146667pt;}
.wb{width:174.106667pt;}
.w8{width:198.466667pt;}
.w12{width:306.146667pt;}
.w10{width:311.706667pt;}
.wd{width:331.426667pt;}
.we{width:331.586667pt;}
.wc{width:351.106667pt;}
.wf{width:351.293333pt;}
.w13{width:356.866667pt;}
.w9{width:465.826667pt;}
.w6{width:529.213333pt;}
.w2{width:598.693333pt;}
.w11{width:663.653333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.680000pt;}
.xd{left:9.600000pt;}
.x15{left:11.200000pt;}
.xc{left:43.552000pt;}
.x1{left:64.320000pt;}
.x4{left:71.999988pt;}
.xf{left:74.106667pt;}
.x5{left:87.226667pt;}
.x1c{left:96.031988pt;}
.x1d{left:120.031988pt;}
.x10{left:123.706667pt;}
.x11{left:124.826667pt;}
.x2c{left:137.626655pt;}
.x12{left:149.466667pt;}
.x1b{left:171.066655pt;}
.x13{left:191.266667pt;}
.x6{left:199.866667pt;}
.x17{left:202.906667pt;}
.x16{left:209.306655pt;}
.x2a{left:231.866655pt;}
.x24{left:233.946655pt;}
.x28{left:250.146655pt;}
.xe{left:251.426667pt;}
.x9{left:256.386667pt;}
.x14{left:263.266667pt;}
.x2b{left:272.066655pt;}
.x20{left:275.906655pt;}
.x7{left:309.506667pt;}
.x25{left:315.266655pt;}
.x23{left:316.706655pt;}
.x8{left:326.626667pt;}
.xb{left:332.066667pt;}
.x1e{left:368.066655pt;}
.x26{left:371.906667pt;}
.x18{left:377.666667pt;}
.x1a{left:396.866655pt;}
.xa{left:405.066667pt;}
.x1f{left:417.053333pt;}
.x21{left:529.373322pt;}
.x22{left:532.093322pt;}
.x27{left:539.933322pt;}
.x29{left:542.013322pt;}
.x19{left:644.293322pt;}
.x3{left:663.013333pt;}
}




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