
    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_7815aa440abc59f9bad4480b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b116e0f33191462cb5986b0b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_eee91a4c64c1cea4511d28dd.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_82cae9c1f1d15bc6e035c41f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986328;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_3d4b3e64dbcbf5241831e7ff.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_4390ff41ce3091ca2754788c.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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ca234d10ad63723c574fad24.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_9b23a086a48470b5a6582b7e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;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_b7d5832a3a2ea4890a69b568.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.061035;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_58985701b4c755d552b4c977.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_6c551d0c591601b92b5f76a3.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-66.960000px;}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.000000px;}
.v3{vertical-align:23.760000px;}
.lse{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.567600px;}
.ls7{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.274800px;}
.ls13{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.108000px;}
.ls5{letter-spacing:0.109200px;}
.ls2{letter-spacing:0.109440px;}
.ls3{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.223800px;}
.ls4{letter-spacing:0.262080px;}
.ls12{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.360000px;}
.ls14{letter-spacing:6.785280px;}
.lsd{letter-spacing:31.680000px;}
.lsf{letter-spacing:39.905280px;}
.lsb{letter-spacing:46.080000px;}
.lsc{letter-spacing:50.400000px;}
.lsa{letter-spacing:64.026720px;}
.ls0{letter-spacing:207.416640px;}
.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;}
}
.ws2{word-spacing:-66.240000px;}
.wsa{word-spacing:-59.760000px;}
.ws9{word-spacing:-28.712400px;}
.ws1{word-spacing:-18.000000px;}
.ws5{word-spacing:-16.669200px;}
.ws4{word-spacing:-16.560000px;}
.wsb{word-spacing:-15.840000px;}
.ws0{word-spacing:-14.580000px;}
.ws8{word-spacing:-13.939200px;}
.ws11{word-spacing:-13.860000px;}
.ws7{word-spacing:-13.500000px;}
.ws10{word-spacing:-13.482000px;}
.wse{word-spacing:-12.420000px;}
.wsf{word-spacing:-12.283800px;}
.wsc{word-spacing:-12.060000px;}
.ws3{word-spacing:-10.440000px;}
.wsd{word-spacing:-6.840000px;}
.ws6{word-spacing:0.000000px;}
._3{margin-left:-2.108160px;}
._0{margin-left:-1.008000px;}
._1{width:1.560000px;}
._9{width:2.632320px;}
._1c{width:3.908160px;}
._8{width:5.358720px;}
._6{width:6.955200px;}
._7{width:8.081280px;}
._a{width:9.774720px;}
._c{width:11.128320px;}
._12{width:12.188160px;}
._13{width:13.898880px;}
._5{width:15.135360px;}
._47{width:16.395120px;}
._4{width:17.840640px;}
._1d{width:18.852480px;}
._e{width:20.129280px;}
._18{width:21.674880px;}
._22{width:22.754880px;}
._1b{width:24.449280px;}
._11{width:26.363520px;}
._10{width:27.489600px;}
._17{width:29.344320px;}
._f{width:30.576960px;}
._2a{width:31.795200px;}
._2b{width:33.186240px;}
._16{width:34.842240px;}
._14{width:36.023040px;}
._d{width:37.491840px;}
._15{width:39.162240px;}
._31{width:40.377600px;}
._36{width:41.380800px;}
._4f{width:42.390000px;}
._2d{width:43.519680px;}
._2e{width:44.976960px;}
._b{width:46.701120px;}
._35{width:47.960640px;}
._1f{width:49.017600px;}
._20{width:50.143680px;}
._1e{width:51.203520px;}
._1a{width:52.320960px;}
._19{width:54.106560px;}
._25{width:55.177920px;}
._26{width:56.292480px;}
._29{width:57.628800px;}
._32{width:59.148960px;}
._55{width:60.163680px;}
._49{width:61.624080px;}
._3c{width:62.899920px;}
._2f{width:65.047680px;}
._30{width:66.306240px;}
._27{width:67.962240px;}
._2c{width:69.750720px;}
._39{width:71.395200px;}
._38{width:72.424080px;}
._4c{width:73.600560px;}
._42{width:75.061440px;}
._43{width:76.363920px;}
._40{width:79.596000px;}
._3a{width:80.609040px;}
._21{width:83.462400px;}
._54{width:84.522240px;}
._41{width:85.997520px;}
._23{width:87.056640px;}
._4e{width:88.452000px;}
._52{width:90.234000px;}
._4b{width:93.204000px;}
._24{width:95.072640px;}
._33{width:96.978240px;}
._34{width:98.379360px;}
._3f{width:102.751200px;}
._46{width:104.005440px;}
._3d{width:108.241200px;}
._53{width:110.052000px;}
._3b{width:114.078960px;}
._44{width:115.568640px;}
._48{width:123.498000px;}
._28{width:126.599040px;}
._4a{width:129.708000px;}
._51{width:144.234000px;}
._37{width:146.496240px;}
._45{width:147.614400px;}
._4d{width:150.552000px;}
._3e{width:171.589680px;}
._50{width:190.890000px;}
._2{width:961.680000px;}
.fc7{color:transparent;}
.fc6{color:rgb(255,255,0);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc8{color:rgb(27,27,27);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(37,37,37);}
.fc0{color:rgb(0,176,80);}
.fs8{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:131.760000px;}
.yf{bottom:-107.850000px;}
.ye{bottom:-69.690000px;}
.yd{bottom:-29.880000px;}
.yc{bottom:-10.260000px;}
.y0{bottom:0.000000px;}
.yb{bottom:5.400000px;}
.y78{bottom:9.900000px;}
.y8{bottom:10.800000px;}
.yba{bottom:10.980000px;}
.yc5{bottom:11.160000px;}
.yb5{bottom:11.205000px;}
.y75{bottom:11.880000px;}
.y7c{bottom:14.940000px;}
.y9a{bottom:15.660000px;}
.y8a{bottom:18.720000px;}
.y81{bottom:18.900000px;}
.ya{bottom:20.880000px;}
.y86{bottom:24.480000px;}
.y8d{bottom:30.060000px;}
.y37{bottom:30.600000px;}
.y74{bottom:32.580000px;}
.yb9{bottom:34.200000px;}
.yc9{bottom:34.245000px;}
.yc4{bottom:34.380000px;}
.yce{bottom:34.410000px;}
.yb4{bottom:34.425000px;}
.y7b{bottom:35.640000px;}
.y99{bottom:36.360000px;}
.y89{bottom:39.420000px;}
.y80{bottom:39.600000px;}
.y85{bottom:45.180000px;}
.y36{bottom:46.980000px;}
.y38{bottom:48.420000px;}
.y39{bottom:48.600000px;}
.y8c{bottom:50.760000px;}
.y77{bottom:51.300000px;}
.y7e{bottom:51.345000px;}
.y6{bottom:51.660000px;}
.y7{bottom:53.280000px;}
.y7a{bottom:56.340000px;}
.y98{bottom:57.060000px;}
.ybe{bottom:57.594000px;}
.yb8{bottom:57.600000px;}
.yc1{bottom:57.630000px;}
.yc8{bottom:57.645000px;}
.yc3{bottom:57.780000px;}
.ycd{bottom:57.810000px;}
.y88{bottom:60.120000px;}
.y35{bottom:63.000000px;}
.y5{bottom:68.976000px;}
.y93{bottom:72.000000px;}
.y91{bottom:72.045000px;}
.y97{bottom:77.760000px;}
.y34{bottom:79.056000px;}
.ybd{bottom:80.814000px;}
.yb7{bottom:80.820000px;}
.yc0{bottom:80.850000px;}
.yd2{bottom:81.000000px;}
.ycc{bottom:81.030000px;}
.y90{bottom:92.745000px;}
.y30{bottom:97.596000px;}
.y96{bottom:98.490000px;}
.ybc{bottom:104.034000px;}
.yd5{bottom:104.214000px;}
.ybb{bottom:104.976000px;}
.y71{bottom:109.656000px;}
.y5d{bottom:109.836000px;}
.yd4{bottom:110.736000px;}
.y95{bottom:119.190000px;}
.y2f{bottom:126.036000px;}
.y70{bottom:138.096000px;}
.y5c{bottom:138.456000px;}
.y2e{bottom:154.470000px;}
.y6f{bottom:166.530000px;}
.y5b{bottom:166.890000px;}
.y2d{bottom:182.910000px;}
.y92{bottom:192.450000px;}
.y6e{bottom:194.970000px;}
.y5a{bottom:195.330000px;}
.y2c{bottom:211.350000px;}
.yb6{bottom:222.150000px;}
.y60{bottom:223.410000px;}
.y59{bottom:223.770000px;}
.yd3{bottom:227.910000px;}
.y2b{bottom:239.790000px;}
.y5f{bottom:251.850000px;}
.y58{bottom:252.210000px;}
.y2a{bottom:268.230000px;}
.y8f{bottom:275.970000px;}
.y6d{bottom:280.290000px;}
.y57{bottom:280.650000px;}
.y29{bottom:296.850000px;}
.y6c{bottom:308.730000px;}
.y56{bottom:309.090000px;}
.yb3{bottom:315.930000px;}
.yd1{bottom:321.735000px;}
.y28{bottom:325.335000px;}
.y6b{bottom:337.395000px;}
.y55{bottom:337.575000px;}
.y27{bottom:353.775000px;}
.y6a{bottom:365.835000px;}
.y54{bottom:366.015000px;}
.yb2{bottom:376.815000px;}
.y8e{bottom:380.415000px;}
.y26{bottom:382.215000px;}
.y69{bottom:394.275000px;}
.y53{bottom:394.635000px;}
.yd6{bottom:400.575000px;}
.yaf{bottom:405.255000px;}
.y25{bottom:410.655000px;}
.yd0{bottom:415.695000px;}
.y68{bottom:422.355000px;}
.y64{bottom:422.715000px;}
.y52{bottom:423.075000px;}
.yae{bottom:433.695000px;}
.y24{bottom:439.095000px;}
.y8b{bottom:443.235000px;}
.y67{bottom:450.795000px;}
.y51{bottom:451.515000px;}
.yad{bottom:462.315000px;}
.y23{bottom:467.535000px;}
.y66{bottom:479.595000px;}
.y50{bottom:479.955000px;}
.ycf{bottom:486.255000px;}
.yac{bottom:490.755000px;}
.y22{bottom:495.975000px;}
.y65{bottom:504.075000px;}
.y87{bottom:505.515000px;}
.y4f{bottom:508.395000px;}
.yab{bottom:519.195000px;}
.y21{bottom:524.415000px;}
.y4e{bottom:536.835000px;}
.yaa{bottom:547.635000px;}
.y20{bottom:553.035000px;}
.ycb{bottom:556.815000px;}
.y4d{bottom:565.275000px;}
.ya9{bottom:576.105000px;}
.y84{bottom:577.185000px;}
.y1f{bottom:581.505000px;}
.y4c{bottom:593.745000px;}
.ya8{bottom:604.545000px;}
.y1e{bottom:609.585000px;}
.y31{bottom:609.945000px;}
.y4b{bottom:622.185000px;}
.ya7{bottom:632.985000px;}
.y83{bottom:633.885000px;}
.y1d{bottom:642.165000px;}
.y4a{bottom:650.805000px;}
.ya6{bottom:661.425000px;}
.y1c{bottom:670.605000px;}
.y82{bottom:676.005000px;}
.y62{bottom:678.885000px;}
.y49{bottom:679.245000px;}
.ya5{bottom:689.865000px;}
.y1b{bottom:699.045000px;}
.y48{bottom:707.685000px;}
.y7f{bottom:718.305000px;}
.ya4{bottom:718.485000px;}
.yca{bottom:721.365000px;}
.y1a{bottom:727.485000px;}
.y47{bottom:736.125000px;}
.ya3{bottom:746.925000px;}
.y19{bottom:755.925000px;}
.y46{bottom:764.565000px;}
.y7d{bottom:769.605000px;}
.ya2{bottom:775.365000px;}
.y18{bottom:784.365000px;}
.yc7{bottom:792.105000px;}
.y45{bottom:793.005000px;}
.ya1{bottom:803.805000px;}
.y17{bottom:812.805000px;}
.y44{bottom:821.130000px;}
.y5e{bottom:821.490000px;}
.ya0{bottom:832.290000px;}
.y79{bottom:832.470000px;}
.y16{bottom:841.290000px;}
.y63{bottom:849.570000px;}
.y43{bottom:849.930000px;}
.y9f{bottom:860.730000px;}
.yc6{bottom:862.710000px;}
.y15{bottom:869.910000px;}
.y42{bottom:878.370000px;}
.y9e{bottom:889.170000px;}
.y14{bottom:898.350000px;}
.y76{bottom:900.330000px;}
.yd7{bottom:906.630000px;}
.y41{bottom:906.990000px;}
.y9d{bottom:917.610000px;}
.y13{bottom:926.790000px;}
.y40{bottom:935.430000px;}
.y9c{bottom:945.690000px;}
.yb1{bottom:946.050000px;}
.yc2{bottom:956.490000px;}
.y12{bottom:961.170000px;}
.y73{bottom:963.150000px;}
.y3f{bottom:963.870000px;}
.y9b{bottom:974.310000px;}
.yb0{bottom:974.670000px;}
.y11{bottom:989.610000px;}
.y94{bottom:990.330000px;}
.y61{bottom:991.950000px;}
.y3e{bottom:992.310000px;}
.y10{bottom:1011.750000px;}
.y3d{bottom:1020.750000px;}
.ybf{bottom:1027.230000px;}
.y4{bottom:1032.810000px;}
.yd8{bottom:1048.830000px;}
.y3c{bottom:1049.190000px;}
.y3{bottom:1052.790000px;}
.y2{bottom:1072.620000px;}
.y3b{bottom:1077.660000px;}
.y72{bottom:1105.740000px;}
.y3a{bottom:1106.100000px;}
.y1{bottom:1107.360000px;}
.y33{bottom:1124.460000px;}
.y9{bottom:1131.300000px;}
.y32{bottom:1141.740000px;}
.h6{height:33.480000px;}
.h27{height:39.049805px;}
.hb{height:41.250938px;}
.h1b{height:41.400000px;}
.h14{height:43.380000px;}
.h22{height:46.656000px;}
.h15{height:47.344922px;}
.h17{height:47.678906px;}
.h11{height:47.901094px;}
.h1{height:48.045938px;}
.h1a{height:50.400000px;}
.hd{height:52.971680px;}
.h23{height:52.998047px;}
.h25{height:53.332031px;}
.hc{height:53.709961px;}
.h7{height:54.421875px;}
.h1c{height:55.980000px;}
.h2{height:58.621992px;}
.h10{height:60.679688px;}
.h1e{height:61.560000px;}
.h16{height:62.100000px;}
.h19{height:62.136000px;}
.h9{height:63.019687px;}
.h3{height:65.010937px;}
.ha{height:66.757500px;}
.h18{height:67.140000px;}
.h12{height:68.084282px;}
.h2b{height:69.840000px;}
.h2a{height:69.876000px;}
.h29{height:70.020000px;}
.h1d{height:70.956000px;}
.h8{height:72.562500px;}
.h5{height:72.562519px;}
.h20{height:82.800000px;}
.h24{height:93.060000px;}
.h28{height:93.096000px;}
.h2d{height:93.240000px;}
.h2c{height:93.276000px;}
.h1f{height:103.536000px;}
.h13{height:111.043849px;}
.hf{height:111.043854px;}
.h26{height:116.280000px;}
.h2e{height:116.460000px;}
.h21{height:129.996000px;}
.h4{height:167.250000px;}
.he{height:268.635000px;}
.h0{height:1188.000000px;}
.w7{width:21.600000px;}
.w2{width:23.940000px;}
.w6{width:38.520000px;}
.w5{width:39.600000px;}
.w4{width:39.780000px;}
.wa{width:73.656000px;}
.w10{width:73.836000px;}
.w9{width:84.240000px;}
.w12{width:84.276000px;}
.wf{width:86.220000px;}
.wd{width:94.860000px;}
.we{width:103.716000px;}
.w11{width:105.480000px;}
.w14{width:105.516000px;}
.wb{width:105.660000px;}
.w8{width:116.316000px;}
.wc{width:126.756000px;}
.w13{width:126.900000px;}
.w3{width:361.335000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xf{left:7.740000px;}
.x7{left:10.800000px;}
.xb{left:15.120000px;}
.x4{left:18.180000px;}
.xa{left:31.680000px;}
.x2{left:53.999986px;}
.xc{left:80.999986px;}
.x1{left:122.435986px;}
.x6{left:130.860000px;}
.x17{left:158.790000px;}
.x10{left:171.390000px;}
.x18{left:245.730000px;}
.x11{left:256.530000px;}
.x19{left:320.295000px;}
.x12{left:330.915000px;}
.x13{left:415.875000px;}
.x1a{left:426.675000px;}
.xe{left:436.574986px;}
.x8{left:482.144986px;}
.xd{left:509.144986px;}
.x1b{left:511.665000px;}
.x5{left:521.025000px;}
.x14{left:532.905000px;}
.x15{left:639.285000px;}
.x16{left:766.950000px;}
.x9{left:871.200000px;}
.x3{left:876.060000px;}
@media print{
.v1{vertical-align:-59.520000pt;}
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.000000pt;}
.v3{vertical-align:21.120000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.504533pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.244267pt;}
.ls13{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.096000pt;}
.ls5{letter-spacing:0.097067pt;}
.ls2{letter-spacing:0.097280pt;}
.ls3{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.198933pt;}
.ls4{letter-spacing:0.232960pt;}
.ls12{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls14{letter-spacing:6.031360pt;}
.lsd{letter-spacing:28.160000pt;}
.lsf{letter-spacing:35.471360pt;}
.lsb{letter-spacing:40.960000pt;}
.lsc{letter-spacing:44.800000pt;}
.lsa{letter-spacing:56.912640pt;}
.ls0{letter-spacing:184.370347pt;}
.ws2{word-spacing:-58.880000pt;}
.wsa{word-spacing:-53.120000pt;}
.ws9{word-spacing:-25.522133pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5{word-spacing:-14.817067pt;}
.ws4{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.080000pt;}
.ws0{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.390400pt;}
.ws11{word-spacing:-12.320000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws10{word-spacing:-11.984000pt;}
.wse{word-spacing:-11.040000pt;}
.wsf{word-spacing:-10.918933pt;}
.wsc{word-spacing:-10.720000pt;}
.ws3{word-spacing:-9.280000pt;}
.wsd{word-spacing:-6.080000pt;}
.ws6{word-spacing:0.000000pt;}
._3{margin-left:-1.873920pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.386667pt;}
._9{width:2.339840pt;}
._1c{width:3.473920pt;}
._8{width:4.763307pt;}
._6{width:6.182400pt;}
._7{width:7.183360pt;}
._a{width:8.688640pt;}
._c{width:9.891840pt;}
._12{width:10.833920pt;}
._13{width:12.354560pt;}
._5{width:13.453653pt;}
._47{width:14.573440pt;}
._4{width:15.858347pt;}
._1d{width:16.757760pt;}
._e{width:17.892693pt;}
._18{width:19.266560pt;}
._22{width:20.226560pt;}
._1b{width:21.732693pt;}
._11{width:23.434240pt;}
._10{width:24.435200pt;}
._17{width:26.083840pt;}
._f{width:27.179520pt;}
._2a{width:28.262400pt;}
._2b{width:29.498880pt;}
._16{width:30.970880pt;}
._14{width:32.020480pt;}
._d{width:33.326080pt;}
._15{width:34.810880pt;}
._31{width:35.891200pt;}
._36{width:36.782933pt;}
._4f{width:37.680000pt;}
._2d{width:38.684160pt;}
._2e{width:39.979520pt;}
._b{width:41.512107pt;}
._35{width:42.631680pt;}
._1f{width:43.571200pt;}
._20{width:44.572160pt;}
._1e{width:45.514240pt;}
._1a{width:46.507520pt;}
._19{width:48.094720pt;}
._25{width:49.047040pt;}
._26{width:50.037760pt;}
._29{width:51.225600pt;}
._32{width:52.576853pt;}
._55{width:53.478827pt;}
._49{width:54.776960pt;}
._3c{width:55.911040pt;}
._2f{width:57.820160pt;}
._30{width:58.938880pt;}
._27{width:60.410880pt;}
._2c{width:62.000640pt;}
._39{width:63.462400pt;}
._38{width:64.376960pt;}
._4c{width:65.422720pt;}
._42{width:66.721280pt;}
._43{width:67.879040pt;}
._40{width:70.752000pt;}
._3a{width:71.652480pt;}
._21{width:74.188800pt;}
._54{width:75.130880pt;}
._41{width:76.442240pt;}
._23{width:77.383680pt;}
._4e{width:78.624000pt;}
._52{width:80.208000pt;}
._4b{width:82.848000pt;}
._24{width:84.509013pt;}
._33{width:86.202880pt;}
._34{width:87.448320pt;}
._3f{width:91.334400pt;}
._46{width:92.449280pt;}
._3d{width:96.214400pt;}
._53{width:97.824000pt;}
._3b{width:101.403520pt;}
._44{width:102.727680pt;}
._48{width:109.776000pt;}
._28{width:112.532480pt;}
._4a{width:115.296000pt;}
._51{width:128.208000pt;}
._37{width:130.218880pt;}
._45{width:131.212800pt;}
._4d{width:133.824000pt;}
._3e{width:152.524160pt;}
._50{width:169.680000pt;}
._2{width:854.826667pt;}
.fs8{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:117.120000pt;}
.yf{bottom:-95.866667pt;}
.ye{bottom:-61.946667pt;}
.yd{bottom:-26.560000pt;}
.yc{bottom:-9.120000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:4.800000pt;}
.y78{bottom:8.800000pt;}
.y8{bottom:9.600000pt;}
.yba{bottom:9.760000pt;}
.yc5{bottom:9.920000pt;}
.yb5{bottom:9.960000pt;}
.y75{bottom:10.560000pt;}
.y7c{bottom:13.280000pt;}
.y9a{bottom:13.920000pt;}
.y8a{bottom:16.640000pt;}
.y81{bottom:16.800000pt;}
.ya{bottom:18.560000pt;}
.y86{bottom:21.760000pt;}
.y8d{bottom:26.720000pt;}
.y37{bottom:27.200000pt;}
.y74{bottom:28.960000pt;}
.yb9{bottom:30.400000pt;}
.yc9{bottom:30.440000pt;}
.yc4{bottom:30.560000pt;}
.yce{bottom:30.586667pt;}
.yb4{bottom:30.600000pt;}
.y7b{bottom:31.680000pt;}
.y99{bottom:32.320000pt;}
.y89{bottom:35.040000pt;}
.y80{bottom:35.200000pt;}
.y85{bottom:40.160000pt;}
.y36{bottom:41.760000pt;}
.y38{bottom:43.040000pt;}
.y39{bottom:43.200000pt;}
.y8c{bottom:45.120000pt;}
.y77{bottom:45.600000pt;}
.y7e{bottom:45.640000pt;}
.y6{bottom:45.920000pt;}
.y7{bottom:47.360000pt;}
.y7a{bottom:50.080000pt;}
.y98{bottom:50.720000pt;}
.ybe{bottom:51.194667pt;}
.yb8{bottom:51.200000pt;}
.yc1{bottom:51.226667pt;}
.yc8{bottom:51.240000pt;}
.yc3{bottom:51.360000pt;}
.ycd{bottom:51.386667pt;}
.y88{bottom:53.440000pt;}
.y35{bottom:56.000000pt;}
.y5{bottom:61.312000pt;}
.y93{bottom:64.000000pt;}
.y91{bottom:64.040000pt;}
.y97{bottom:69.120000pt;}
.y34{bottom:70.272000pt;}
.ybd{bottom:71.834667pt;}
.yb7{bottom:71.840000pt;}
.yc0{bottom:71.866667pt;}
.yd2{bottom:72.000000pt;}
.ycc{bottom:72.026667pt;}
.y90{bottom:82.440000pt;}
.y30{bottom:86.752000pt;}
.y96{bottom:87.546667pt;}
.ybc{bottom:92.474667pt;}
.yd5{bottom:92.634667pt;}
.ybb{bottom:93.312000pt;}
.y71{bottom:97.472000pt;}
.y5d{bottom:97.632000pt;}
.yd4{bottom:98.432000pt;}
.y95{bottom:105.946667pt;}
.y2f{bottom:112.032000pt;}
.y70{bottom:122.752000pt;}
.y5c{bottom:123.072000pt;}
.y2e{bottom:137.306667pt;}
.y6f{bottom:148.026667pt;}
.y5b{bottom:148.346667pt;}
.y2d{bottom:162.586667pt;}
.y92{bottom:171.066667pt;}
.y6e{bottom:173.306667pt;}
.y5a{bottom:173.626667pt;}
.y2c{bottom:187.866667pt;}
.yb6{bottom:197.466667pt;}
.y60{bottom:198.586667pt;}
.y59{bottom:198.906667pt;}
.yd3{bottom:202.586667pt;}
.y2b{bottom:213.146667pt;}
.y5f{bottom:223.866667pt;}
.y58{bottom:224.186667pt;}
.y2a{bottom:238.426667pt;}
.y8f{bottom:245.306667pt;}
.y6d{bottom:249.146667pt;}
.y57{bottom:249.466667pt;}
.y29{bottom:263.866667pt;}
.y6c{bottom:274.426667pt;}
.y56{bottom:274.746667pt;}
.yb3{bottom:280.826667pt;}
.yd1{bottom:285.986667pt;}
.y28{bottom:289.186667pt;}
.y6b{bottom:299.906667pt;}
.y55{bottom:300.066667pt;}
.y27{bottom:314.466667pt;}
.y6a{bottom:325.186667pt;}
.y54{bottom:325.346667pt;}
.yb2{bottom:334.946667pt;}
.y8e{bottom:338.146667pt;}
.y26{bottom:339.746667pt;}
.y69{bottom:350.466667pt;}
.y53{bottom:350.786667pt;}
.yd6{bottom:356.066667pt;}
.yaf{bottom:360.226667pt;}
.y25{bottom:365.026667pt;}
.yd0{bottom:369.506667pt;}
.y68{bottom:375.426667pt;}
.y64{bottom:375.746667pt;}
.y52{bottom:376.066667pt;}
.yae{bottom:385.506667pt;}
.y24{bottom:390.306667pt;}
.y8b{bottom:393.986667pt;}
.y67{bottom:400.706667pt;}
.y51{bottom:401.346667pt;}
.yad{bottom:410.946667pt;}
.y23{bottom:415.586667pt;}
.y66{bottom:426.306667pt;}
.y50{bottom:426.626667pt;}
.ycf{bottom:432.226667pt;}
.yac{bottom:436.226667pt;}
.y22{bottom:440.866667pt;}
.y65{bottom:448.066667pt;}
.y87{bottom:449.346667pt;}
.y4f{bottom:451.906667pt;}
.yab{bottom:461.506667pt;}
.y21{bottom:466.146667pt;}
.y4e{bottom:477.186667pt;}
.yaa{bottom:486.786667pt;}
.y20{bottom:491.586667pt;}
.ycb{bottom:494.946667pt;}
.y4d{bottom:502.466667pt;}
.ya9{bottom:512.093333pt;}
.y84{bottom:513.053333pt;}
.y1f{bottom:516.893333pt;}
.y4c{bottom:527.773333pt;}
.ya8{bottom:537.373333pt;}
.y1e{bottom:541.853333pt;}
.y31{bottom:542.173333pt;}
.y4b{bottom:553.053333pt;}
.ya7{bottom:562.653333pt;}
.y83{bottom:563.453333pt;}
.y1d{bottom:570.813333pt;}
.y4a{bottom:578.493333pt;}
.ya6{bottom:587.933333pt;}
.y1c{bottom:596.093333pt;}
.y82{bottom:600.893333pt;}
.y62{bottom:603.453333pt;}
.y49{bottom:603.773333pt;}
.ya5{bottom:613.213333pt;}
.y1b{bottom:621.373333pt;}
.y48{bottom:629.053333pt;}
.y7f{bottom:638.493333pt;}
.ya4{bottom:638.653333pt;}
.yca{bottom:641.213333pt;}
.y1a{bottom:646.653333pt;}
.y47{bottom:654.333333pt;}
.ya3{bottom:663.933333pt;}
.y19{bottom:671.933333pt;}
.y46{bottom:679.613333pt;}
.y7d{bottom:684.093333pt;}
.ya2{bottom:689.213333pt;}
.y18{bottom:697.213333pt;}
.yc7{bottom:704.093333pt;}
.y45{bottom:704.893333pt;}
.ya1{bottom:714.493333pt;}
.y17{bottom:722.493333pt;}
.y44{bottom:729.893333pt;}
.y5e{bottom:730.213333pt;}
.ya0{bottom:739.813333pt;}
.y79{bottom:739.973333pt;}
.y16{bottom:747.813333pt;}
.y63{bottom:755.173333pt;}
.y43{bottom:755.493333pt;}
.y9f{bottom:765.093333pt;}
.yc6{bottom:766.853333pt;}
.y15{bottom:773.253333pt;}
.y42{bottom:780.773333pt;}
.y9e{bottom:790.373333pt;}
.y14{bottom:798.533333pt;}
.y76{bottom:800.293333pt;}
.yd7{bottom:805.893333pt;}
.y41{bottom:806.213333pt;}
.y9d{bottom:815.653333pt;}
.y13{bottom:823.813333pt;}
.y40{bottom:831.493333pt;}
.y9c{bottom:840.613333pt;}
.yb1{bottom:840.933333pt;}
.yc2{bottom:850.213333pt;}
.y12{bottom:854.373333pt;}
.y73{bottom:856.133333pt;}
.y3f{bottom:856.773333pt;}
.y9b{bottom:866.053333pt;}
.yb0{bottom:866.373333pt;}
.y11{bottom:879.653333pt;}
.y94{bottom:880.293333pt;}
.y61{bottom:881.733333pt;}
.y3e{bottom:882.053333pt;}
.y10{bottom:899.333333pt;}
.y3d{bottom:907.333333pt;}
.ybf{bottom:913.093333pt;}
.y4{bottom:918.053333pt;}
.yd8{bottom:932.293333pt;}
.y3c{bottom:932.613333pt;}
.y3{bottom:935.813333pt;}
.y2{bottom:953.440000pt;}
.y3b{bottom:957.920000pt;}
.y72{bottom:982.880000pt;}
.y3a{bottom:983.200000pt;}
.y1{bottom:984.320000pt;}
.y33{bottom:999.520000pt;}
.y9{bottom:1005.600000pt;}
.y32{bottom:1014.880000pt;}
.h6{height:29.760000pt;}
.h27{height:34.710938pt;}
.hb{height:36.667500pt;}
.h1b{height:36.800000pt;}
.h14{height:38.560000pt;}
.h22{height:41.472000pt;}
.h15{height:42.084375pt;}
.h17{height:42.381250pt;}
.h11{height:42.578750pt;}
.h1{height:42.707500pt;}
.h1a{height:44.800000pt;}
.hd{height:47.085938pt;}
.h23{height:47.109375pt;}
.h25{height:47.406250pt;}
.hc{height:47.742188pt;}
.h7{height:48.375000pt;}
.h1c{height:49.760000pt;}
.h2{height:52.108438pt;}
.h10{height:53.937500pt;}
.h1e{height:54.720000pt;}
.h16{height:55.200000pt;}
.h19{height:55.232000pt;}
.h9{height:56.017500pt;}
.h3{height:57.787500pt;}
.ha{height:59.340000pt;}
.h18{height:59.680000pt;}
.h12{height:60.519362pt;}
.h2b{height:62.080000pt;}
.h2a{height:62.112000pt;}
.h29{height:62.240000pt;}
.h1d{height:63.072000pt;}
.h8{height:64.500000pt;}
.h5{height:64.500017pt;}
.h20{height:73.600000pt;}
.h24{height:82.720000pt;}
.h28{height:82.752000pt;}
.h2d{height:82.880000pt;}
.h2c{height:82.912000pt;}
.h1f{height:92.032000pt;}
.h13{height:98.705643pt;}
.hf{height:98.705648pt;}
.h26{height:103.360000pt;}
.h2e{height:103.520000pt;}
.h21{height:115.552000pt;}
.h4{height:148.666667pt;}
.he{height:238.786667pt;}
.h0{height:1056.000000pt;}
.w7{width:19.200000pt;}
.w2{width:21.280000pt;}
.w6{width:34.240000pt;}
.w5{width:35.200000pt;}
.w4{width:35.360000pt;}
.wa{width:65.472000pt;}
.w10{width:65.632000pt;}
.w9{width:74.880000pt;}
.w12{width:74.912000pt;}
.wf{width:76.640000pt;}
.wd{width:84.320000pt;}
.we{width:92.192000pt;}
.w11{width:93.760000pt;}
.w14{width:93.792000pt;}
.wb{width:93.920000pt;}
.w8{width:103.392000pt;}
.wc{width:112.672000pt;}
.w13{width:112.800000pt;}
.w3{width:321.186667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xf{left:6.880000pt;}
.x7{left:9.600000pt;}
.xb{left:13.440000pt;}
.x4{left:16.160000pt;}
.xa{left:28.160000pt;}
.x2{left:47.999988pt;}
.xc{left:71.999988pt;}
.x1{left:108.831988pt;}
.x6{left:116.320000pt;}
.x17{left:141.146667pt;}
.x10{left:152.346667pt;}
.x18{left:218.426667pt;}
.x11{left:228.026667pt;}
.x19{left:284.706667pt;}
.x12{left:294.146667pt;}
.x13{left:369.666667pt;}
.x1a{left:379.266667pt;}
.xe{left:388.066655pt;}
.x8{left:428.573321pt;}
.xd{left:452.573321pt;}
.x1b{left:454.813333pt;}
.x5{left:463.133333pt;}
.x14{left:473.693333pt;}
.x15{left:568.253333pt;}
.x16{left:681.733333pt;}
.x9{left:774.400000pt;}
.x3{left:778.720000pt;}
}




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