
    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_04600eed1b2a69e040b7a9b2.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_300f60ad87e77930dbc0418b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c22ad174d18fbea56591b398.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.130371;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_49877339a1266e0a21c8fe8c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.768555;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_15db12134aa432ccb1a4aca8.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f35feac5e25184bda53ca5c3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.776855;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_28bc25f9d4d447e063af009e.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_84e509d441b5021666f46068.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.283203;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_e8d105eea192c16d75895668.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_deb68e6deae243529025281e.woff2')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.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_ecf53b99b417b3ba4cd28696.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.682617;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_bb2a21c4bca21079c2949470.woff2')format("woff");}.ffd{font-family:ffd;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;}
@font-face{font-family:ffe;src:url('chunks/assets/font_5d89f9ce1de93528b697c33f.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.435059;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);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.310200px;}
.lse{letter-spacing:-0.294000px;}
.ls2{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.132600px;}
.ls7{letter-spacing:-0.054720px;}
.ls1{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.150000px;}
.lsc{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.256200px;}
.lsf{letter-spacing:0.288059px;}
.ls6{letter-spacing:0.313800px;}
.lsb{letter-spacing:0.360000px;}
.ls8{letter-spacing:9.378720px;}
.lsd{letter-spacing:44.784018px;}
.ls9{letter-spacing:54.864019px;}
.ls10{letter-spacing:849.149511px;}
.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;}
}
.wse{word-spacing:-72.000000px;}
.wsa{word-spacing:-21.331560px;}
.ws0{word-spacing:-19.038240px;}
.wsd{word-spacing:-17.573760px;}
.wsb{word-spacing:-16.632000px;}
.wsc{word-spacing:-16.488000px;}
.ws4{word-spacing:-16.272000px;}
.ws3{word-spacing:-16.056000px;}
.ws8{word-spacing:-15.284040px;}
.ws6{word-spacing:-15.226440px;}
.ws7{word-spacing:-14.970240px;}
.ws9{word-spacing:-14.915520px;}
.ws5{word-spacing:-14.837640px;}
.ws2{word-spacing:-12.186000px;}
.wsf{word-spacing:-0.072000px;}
.ws1{word-spacing:0.000000px;}
._13{margin-left:-15.230337px;}
._f{margin-left:-12.296363px;}
._10{margin-left:-10.872023px;}
._11{margin-left:-8.321989px;}
._7{margin-left:-4.260480px;}
._14{margin-left:-3.121200px;}
._5{margin-left:-2.072880px;}
._1{margin-left:-1.013040px;}
._0{width:1.736640px;}
._9{width:3.600000px;}
._8{width:4.680000px;}
._1c{width:5.784018px;}
._15{width:7.031982px;}
._17{width:8.112240px;}
._16{width:9.216000px;}
._18{width:10.247760px;}
._1a{width:11.592000px;}
._b{width:12.720240px;}
._a{width:13.824000px;}
._1d{width:14.832000px;}
._1b{width:17.640000px;}
._d{width:21.216240px;}
._c{width:22.392000px;}
._19{width:23.760000px;}
._1f{width:25.200000px;}
._12{width:66.145207px;}
._20{width:98.789709px;}
._3{width:115.349767px;}
._1e{width:711.144000px;}
._6{width:842.478266px;}
._e{width:849.149786px;}
._21{width:1010.610132px;}
._4{width:1028.146153px;}
._2{width:1389.329778px;}
.fca{color:rgb(68,114,196);}
.fc8{color:rgb(112,173,71);}
.fc6{color:rgb(47,84,150);}
.fc4{color:rgb(5,99,193);}
.fc2{color:transparent;}
.fc9{color:rgb(0,176,80);}
.fc7{color:rgb(255,255,255);}
.fc5{color:rgb(68,68,68);}
.fc3{color:rgb(51,51,51);}
.fc1{color:rgb(23,23,23);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:18.000000px;}
.fsc{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fsa{font-size:43.200000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fse{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fsb{font-size:77.760000px;}
.fs7{font-size:84.240000px;}
.fs9{font-size:95.760000px;}
.fs4{font-size:108.000000px;}
.fs3{font-size:120.240000px;}
.fs6{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y29{bottom:1.439941px;}
.y9{bottom:5.940000px;}
.y32{bottom:6.660004px;}
.y3c{bottom:6.704956px;}
.y2{bottom:6.839996px;}
.y6f{bottom:7.019989px;}
.y3e{bottom:10.080048px;}
.y30{bottom:10.980011px;}
.y37{bottom:11.160004px;}
.y42{bottom:11.339996px;}
.y40{bottom:11.519989px;}
.y39{bottom:15.480011px;}
.y8{bottom:16.416000px;}
.y4b{bottom:18.540024px;}
.y4{bottom:21.599999px;}
.y2e{bottom:27.719999px;}
.y46{bottom:30.240005px;}
.y2c{bottom:30.419952px;}
.y7{bottom:32.076001px;}
.y4a{bottom:42.300018px;}
.y2a{bottom:45.359985px;}
.y5{bottom:46.475999px;}
.y6{bottom:47.916003px;}
.y2b{bottom:48.059967px;}
.y48{bottom:60.870026px;}
.y49{bottom:66.089996px;}
.yc7{bottom:74.916000px;}
.y8d{bottom:77.795998px;}
.ye9{bottom:87.335999px;}
.ye3{bottom:91.476002px;}
.y100{bottom:92.016003px;}
.yae{bottom:95.976002px;}
.y8c{bottom:102.996002px;}
.yff{bottom:107.675995px;}
.yc6{bottom:110.016003px;}
.y26{bottom:114.335999px;}
.ye8{bottom:116.496002px;}
.ye2{bottom:123.516003px;}
.yc5{bottom:128.016003px;}
.y8b{bottom:128.195995px;}
.yad{bottom:131.255997px;}
.yd6{bottom:146.916000px;}
.yfe{bottom:153.029995px;}
.y25{bottom:153.930004px;}
.y8a{bottom:154.290000px;}
.yac{bottom:156.629997px;}
.y89{bottom:180.569996px;}
.yab{bottom:181.649998px;}
.yd5{bottom:182.189999px;}
.yfd{bottom:186.689999px;}
.y24{bottom:193.709999px;}
.y88{bottom:206.849991px;}
.yaa{bottom:217.110008px;}
.yd4{bottom:217.290000px;}
.yfc{bottom:220.530006px;}
.y87{bottom:232.230011px;}
.y23{bottom:233.309990px;}
.ya9{bottom:251.309990px;}
.yd3{bottom:252.570007px;}
.yfb{bottom:254.190010px;}
.y86{bottom:257.429993px;}
.y22{bottom:272.910004px;}
.ya8{bottom:276.690010px;}
.y85{bottom:282.809990px;}
.yfa{bottom:288.075005px;}
.yd2{bottom:301.394989px;}
.y84{bottom:308.054993px;}
.ya7{bottom:310.934990px;}
.y21{bottom:312.735008px;}
.yf9{bottom:321.735008px;}
.y83{bottom:333.254997px;}
.ya6{bottom:336.134995px;}
.yd1{bottom:338.834999px;}
.y20{bottom:352.334999px;}
.yf8{bottom:355.575005px;}
.y82{bottom:358.634995px;}
.ydb{bottom:368.355011px;}
.ya5{bottom:370.334999px;}
.yd0{bottom:372.134995px;}
.y81{bottom:383.655006px;}
.y1f{bottom:389.054993px;}
.yf7{bottom:389.234985px;}
.ycf{bottom:392.474991px;}
.ya4{bottom:405.615005px;}
.y1e{bottom:409.394989px;}
.y80{bottom:409.935013px;}
.yf6{bottom:422.894989px;}
.y4d{bottom:430.634995px;}
.ya3{bottom:430.994980px;}
.y1d{bottom:434.955002px;}
.y7f{bottom:436.214996px;}
.yc4{bottom:450.974991px;}
.yf5{bottom:456.734985px;}
.yce{bottom:458.894989px;}
.y1c{bottom:460.695007px;}
.y7e{bottom:461.414978px;}
.ya2{bottom:465.195007px;}
.y4c{bottom:474.195007px;}
.yc3{bottom:474.734985px;}
.y1b{bottom:486.255020px;}
.y7d{bottom:487.875000px;}
.ycd{bottom:489.314987px;}
.yf4{bottom:490.394989px;}
.y47{bottom:497.054993px;}
.ya1{bottom:499.394989px;}
.yc2{bottom:499.935013px;}
.y1a{bottom:511.814987px;}
.y7c{bottom:512.894989px;}
.y6b{bottom:522.974991px;}
.yf3{bottom:524.234985px;}
.yc1{bottom:525.134995px;}
.ya0{bottom:533.595016px;}
.ye7{bottom:537.375000px;}
.y19{bottom:537.554993px;}
.y7b{bottom:539.355011px;}
.ydd{bottom:546.195007px;}
.ye1{bottom:555.044998px;}
.yf2{bottom:557.925018px;}
.yc0{bottom:562.605011px;}
.y18{bottom:563.144989px;}
.y6a{bottom:563.865005px;}
.y7a{bottom:564.585022px;}
.y9f{bottom:568.904984px;}
.ye6{bottom:571.244980px;}
.ydc{bottom:576.824982px;}
.y45{bottom:580.244980px;}
.ybf{bottom:587.984985px;}
.y79{bottom:588.705002px;}
.y17{bottom:588.884995px;}
.ye0{bottom:590.865005px;}
.yf1{bottom:591.585022px;}
.y69{bottom:593.205002px;}
.ye5{bottom:604.904984px;}
.ybe{bottom:613.185013px;}
.y16{bottom:614.445007px;}
.y9e{bottom:617.685013px;}
.y78{bottom:618.044998px;}
.yf0{bottom:620.925018px;}
.ydf{bottom:627.404984px;}
.y68{bottom:629.564987px;}
.y44{bottom:632.984985px;}
.ye4{bottom:634.244980px;}
.ybd{bottom:638.384995px;}
.y15{bottom:640.185013px;}
.y9d{bottom:643.605011px;}
.y77{bottom:648.105011px;}
.yde{bottom:658.005020px;}
.ybc{bottom:663.765015px;}
.y14{bottom:665.744980px;}
.y43{bottom:666.644989px;}
.y67{bottom:670.425018px;}
.y9c{bottom:671.685013px;}
.y76{bottom:678.525009px;}
.ybb{bottom:688.964996px;}
.y13{bottom:691.304993px;}
.y66{bottom:699.765015px;}
.y41{bottom:700.484985px;}
.y9b{bottom:704.085022px;}
.y12{bottom:717.044998px;}
.y75{bottom:725.505020px;}
.yba{bottom:727.484985px;}
.y65{bottom:728.925018px;}
.y3f{bottom:734.144989px;}
.y9a{bottom:735.404984px;}
.y5a{bottom:737.384995px;}
.y11{bottom:742.605011px;}
.yb9{bottom:757.185013px;}
.y64{bottom:758.265015px;}
.y99{bottom:760.605011px;}
.y59{bottom:761.324982px;}
.y3d{bottom:767.984985px;}
.y10{bottom:772.304993px;}
.y98{bottom:785.804993px;}
.y58{bottom:786.524963px;}
.y63{bottom:787.425018px;}
.y3b{bottom:800.565033px;}
.yb8{bottom:808.350037px;}
.y97{bottom:811.230011px;}
.y57{bottom:811.769989px;}
.y62{bottom:816.629974px;}
.y74{bottom:818.070007px;}
.y3a{bottom:824.370026px;}
.yf{bottom:828.510040px;}
.yb7{bottom:831.929993px;}
.y96{bottom:836.429993px;}
.y56{bottom:837.149963px;}
.y61{bottom:845.969971px;}
.y73{bottom:851.910004px;}
.y38{bottom:852.449982px;}
.yb6{bottom:858.210022px;}
.y95{bottom:861.809967px;}
.y55{bottom:862.350037px;}
.y72{bottom:868.289978px;}
.y60{bottom:875.129974px;}
.ye{bottom:877.109985px;}
.yb5{bottom:883.410004px;}
.y36{bottom:885.030029px;}
.y94{bottom:887.010040px;}
.y54{bottom:887.550018px;}
.yef{bottom:888.809967px;}
.y71{bottom:891.510040px;}
.yda{bottom:901.949982px;}
.y5f{bottom:904.469971px;}
.ycc{bottom:905.910004px;}
.yb4{bottom:909.870026px;}
.y93{bottom:912.210022px;}
.y53{bottom:912.929993px;}
.y35{bottom:913.289978px;}
.y70{bottom:914.730011px;}
.yee{bottom:922.469971px;}
.yd{bottom:928.589996px;}
.ycb{bottom:929.670044px;}
.y5e{bottom:933.629974px;}
.yd9{bottom:934.710022px;}
.yb3{bottom:935.070007px;}
.y6e{bottom:937.949982px;}
.y52{bottom:938.129974px;}
.y34{bottom:941.370026px;}
.y92{bottom:947.670044px;}
.yca{bottom:955.050018px;}
.yed{bottom:956.309967px;}
.yb2{bottom:960.269989px;}
.yd8{bottom:960.449982px;}
.y6d{bottom:961.350037px;}
.y5d{bottom:962.969971px;}
.y51{bottom:963.510040px;}
.y33{bottom:969.449982px;}
.y91{bottom:970.890015px;}
.yc{bottom:980.070007px;}
.yc9{bottom:980.250000px;}
.y6c{bottom:984.570007px;}
.y50{bottom:988.710022px;}
.yd7{bottom:989.070007px;}
.yec{bottom:989.969971px;}
.y5c{bottom:992.129974px;}
.yb1{bottom:994.469971px;}
.y31{bottom:997.530029px;}
.y90{bottom:1000.949982px;}
.yc8{bottom:1005.449982px;}
.yeb{bottom:1023.809967px;}
.y4f{bottom:1024.350037px;}
.y5b{bottom:1025.789978px;}
.yb0{bottom:1029.750000px;}
.y8f{bottom:1030.829956px;}
.yb{bottom:1031.730011px;}
.y2f{bottom:1045.050018px;}
.y4e{bottom:1050.269989px;}
.yaf{bottom:1054.949982px;}
.y8e{bottom:1056.030029px;}
.yea{bottom:1057.469971px;}
.y2d{bottom:1079.280029px;}
.ya{bottom:1083.239960px;}
.y28{bottom:1094.940033px;}
.y3{bottom:1117.800018px;}
.y27{bottom:1128.414375px;}
.y1{bottom:1133.460022px;}
.h25{height:18.501164px;}
.h1{height:22.500000px;}
.h16{height:23.796000px;}
.h13{height:28.079999px;}
.h10{height:28.115999px;}
.h14{height:28.260000px;}
.h15{height:32.579999px;}
.h18{height:33.660000px;}
.h17{height:33.839999px;}
.h26{height:34.277344px;}
.hf{height:40.816406px;}
.h4{height:40.948242px;}
.hb{height:41.317383px;}
.hd{height:42.335156px;}
.h5{height:45.931641px;}
.h12{height:47.520000px;}
.h19{height:52.740000px;}
.h24{height:56.214844px;}
.h3{height:59.436000px;}
.he{height:61.020000px;}
.h27{height:62.211094px;}
.h2{height:65.884219px;}
.h1d{height:67.824844px;}
.h23{height:68.084282px;}
.h11{height:71.613281px;}
.h22{height:73.722656px;}
.h21{height:74.004654px;}
.h1f{height:74.039062px;}
.h20{height:80.208984px;}
.h1a{height:83.196000px;}
.h9{height:83.787539px;}
.hc{height:86.255508px;}
.h1c{height:91.177734px;}
.ha{height:95.245664px;}
.h1b{height:98.051133px;}
.h1e{height:98.426190px;}
.h7{height:107.419922px;}
.h6{height:119.594180px;}
.h8{height:143.226562px;}
.h0{height:1188.000000px;}
.w5{width:79.379997px;}
.wf{width:113.255997px;}
.wd{width:113.616005px;}
.w3{width:188.490005px;}
.w1{width:233.894989px;}
.w8{width:234.030006px;}
.w7{width:234.075005px;}
.wb{width:255.134995px;}
.w9{width:308.009995px;}
.w2{width:343.110008px;}
.wc{width:521.175018px;}
.w6{width:614.625000px;}
.w10{width:661.425018px;}
.we{width:661.785004px;}
.wa{width:776.129974px;}
.w4{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:8.100002px;}
.x16{left:13.320002px;}
.x9{left:62.100002px;}
.x1{left:74.879997px;}
.x26{left:76.679985px;}
.x1b{left:84.779986px;}
.x27{left:86.579988px;}
.x18{left:91.439985px;}
.x6{left:96.155994px;}
.x19{left:101.915986px;}
.x1c{left:106.955986px;}
.x12{left:117.000000px;}
.x1a{left:128.915986px;}
.x1d{left:155.909990px;}
.xf{left:164.369989px;}
.x3{left:171.359985px;}
.x8{left:175.529995px;}
.x1e{left:182.909990px;}
.x11{left:186.150009px;}
.x5{left:189.044998px;}
.x15{left:222.525009px;}
.x14{left:224.865005px;}
.x2{left:308.775009px;}
.x17{left:330.014992px;}
.xb{left:345.134981px;}
.xa{left:380.414986px;}
.x28{left:410.835008px;}
.xc{left:420.194994px;}
.xe{left:425.954988px;}
.xd{left:462.675005px;}
.x13{left:542.984985px;}
.x4{left:651.884995px;}
.x10{left:693.370830px;}
.x1f{left:763.710008px;}
.x24{left:810.690019px;}
.x20{left:813.030016px;}
.x23{left:823.109972px;}
.x22{left:831.030016px;}
.x25{left:851.190019px;}
.x21{left:855.690019px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.275733pt;}
.lse{letter-spacing:-0.261333pt;}
.ls2{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.117867pt;}
.ls7{letter-spacing:-0.048640pt;}
.ls1{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.133333pt;}
.lsc{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.227733pt;}
.lsf{letter-spacing:0.256052pt;}
.ls6{letter-spacing:0.278933pt;}
.lsb{letter-spacing:0.320000pt;}
.ls8{letter-spacing:8.336640pt;}
.lsd{letter-spacing:39.808016pt;}
.ls9{letter-spacing:48.768017pt;}
.ls10{letter-spacing:754.799565pt;}
.wse{word-spacing:-64.000000pt;}
.wsa{word-spacing:-18.961387pt;}
.ws0{word-spacing:-16.922880pt;}
.wsd{word-spacing:-15.621120pt;}
.wsb{word-spacing:-14.784000pt;}
.wsc{word-spacing:-14.656000pt;}
.ws4{word-spacing:-14.464000pt;}
.ws3{word-spacing:-14.272000pt;}
.ws8{word-spacing:-13.585813pt;}
.ws6{word-spacing:-13.534613pt;}
.ws7{word-spacing:-13.306880pt;}
.ws9{word-spacing:-13.258240pt;}
.ws5{word-spacing:-13.189013pt;}
.ws2{word-spacing:-10.832000pt;}
.wsf{word-spacing:-0.064000pt;}
.ws1{word-spacing:0.000000pt;}
._13{margin-left:-13.538078pt;}
._f{margin-left:-10.930101pt;}
._10{margin-left:-9.664020pt;}
._11{margin-left:-7.397324pt;}
._7{margin-left:-3.787093pt;}
._14{margin-left:-2.774400pt;}
._5{margin-left:-1.842560pt;}
._1{margin-left:-0.900480pt;}
._0{width:1.543680pt;}
._9{width:3.200000pt;}
._8{width:4.160000pt;}
._1c{width:5.141350pt;}
._15{width:6.250650pt;}
._17{width:7.210880pt;}
._16{width:8.192000pt;}
._18{width:9.109120pt;}
._1a{width:10.304000pt;}
._b{width:11.306880pt;}
._a{width:12.288000pt;}
._1d{width:13.184000pt;}
._1b{width:15.680000pt;}
._d{width:18.858880pt;}
._c{width:19.904000pt;}
._19{width:21.120000pt;}
._1f{width:22.400000pt;}
._12{width:58.795740pt;}
._20{width:87.813074pt;}
._3{width:102.533127pt;}
._1e{width:632.128000pt;}
._6{width:748.869569pt;}
._e{width:754.799809pt;}
._21{width:898.320117pt;}
._4{width:913.907692pt;}
._2{width:1234.959803pt;}
.fsd{font-size:16.000000pt;}
.fsc{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fsa{font-size:38.400000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fse{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fsb{font-size:69.120000pt;}
.fs7{font-size:74.880000pt;}
.fs9{font-size:85.120000pt;}
.fs4{font-size:96.000000pt;}
.fs3{font-size:106.880000pt;}
.fs6{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:1.279948pt;}
.y9{bottom:5.280000pt;}
.y32{bottom:5.920003pt;}
.y3c{bottom:5.959961pt;}
.y2{bottom:6.079997pt;}
.y6f{bottom:6.239990pt;}
.y3e{bottom:8.960042pt;}
.y30{bottom:9.760010pt;}
.y37{bottom:9.920003pt;}
.y42{bottom:10.079997pt;}
.y40{bottom:10.239990pt;}
.y39{bottom:13.760010pt;}
.y8{bottom:14.592000pt;}
.y4b{bottom:16.480021pt;}
.y4{bottom:19.199999pt;}
.y2e{bottom:24.639999pt;}
.y46{bottom:26.880005pt;}
.y2c{bottom:27.039958pt;}
.y7{bottom:28.512001pt;}
.y4a{bottom:37.600016pt;}
.y2a{bottom:40.319987pt;}
.y5{bottom:41.311999pt;}
.y6{bottom:42.592003pt;}
.y2b{bottom:42.719971pt;}
.y48{bottom:54.106689pt;}
.y49{bottom:58.746663pt;}
.yc7{bottom:66.592000pt;}
.y8d{bottom:69.151998pt;}
.ye9{bottom:77.631999pt;}
.ye3{bottom:81.312002pt;}
.y100{bottom:81.792002pt;}
.yae{bottom:85.312002pt;}
.y8c{bottom:91.552002pt;}
.yff{bottom:95.711995pt;}
.yc6{bottom:97.792002pt;}
.y26{bottom:101.631999pt;}
.ye8{bottom:103.552002pt;}
.ye2{bottom:109.792002pt;}
.yc5{bottom:113.792002pt;}
.y8b{bottom:113.951996pt;}
.yad{bottom:116.671997pt;}
.yd6{bottom:130.592000pt;}
.yfe{bottom:136.026662pt;}
.y25{bottom:136.826670pt;}
.y8a{bottom:137.146667pt;}
.yac{bottom:139.226664pt;}
.y89{bottom:160.506663pt;}
.yab{bottom:161.466665pt;}
.yd5{bottom:161.946665pt;}
.yfd{bottom:165.946665pt;}
.y24{bottom:172.186666pt;}
.y88{bottom:183.866659pt;}
.yaa{bottom:192.986674pt;}
.yd4{bottom:193.146667pt;}
.yfc{bottom:196.026672pt;}
.y87{bottom:206.426676pt;}
.y23{bottom:207.386658pt;}
.ya9{bottom:223.386658pt;}
.yd3{bottom:224.506673pt;}
.yfb{bottom:225.946676pt;}
.y86{bottom:228.826660pt;}
.y22{bottom:242.586670pt;}
.ya8{bottom:245.946676pt;}
.y85{bottom:251.386658pt;}
.yfa{bottom:256.066671pt;}
.yd2{bottom:267.906657pt;}
.y84{bottom:273.826660pt;}
.ya7{bottom:276.386658pt;}
.y21{bottom:277.986674pt;}
.yf9{bottom:285.986674pt;}
.y83{bottom:296.226664pt;}
.ya6{bottom:298.786662pt;}
.yd1{bottom:301.186666pt;}
.y20{bottom:313.186666pt;}
.yf8{bottom:316.066671pt;}
.y82{bottom:318.786662pt;}
.ydb{bottom:327.426676pt;}
.ya5{bottom:329.186666pt;}
.yd0{bottom:330.786662pt;}
.y81{bottom:341.026672pt;}
.y1f{bottom:345.826660pt;}
.yf7{bottom:345.986654pt;}
.ycf{bottom:348.866659pt;}
.ya4{bottom:360.546672pt;}
.y1e{bottom:363.906657pt;}
.y80{bottom:364.386678pt;}
.yf6{bottom:375.906657pt;}
.y4d{bottom:382.786662pt;}
.ya3{bottom:383.106649pt;}
.y1d{bottom:386.626668pt;}
.y7f{bottom:387.746663pt;}
.yc4{bottom:400.866659pt;}
.yf5{bottom:405.986654pt;}
.yce{bottom:407.906657pt;}
.y1c{bottom:409.506673pt;}
.y7e{bottom:410.146647pt;}
.ya2{bottom:413.506673pt;}
.y4c{bottom:421.506673pt;}
.yc3{bottom:421.986654pt;}
.y1b{bottom:432.226685pt;}
.y7d{bottom:433.666667pt;}
.ycd{bottom:434.946655pt;}
.yf4{bottom:435.906657pt;}
.y47{bottom:441.826660pt;}
.ya1{bottom:443.906657pt;}
.yc2{bottom:444.386678pt;}
.y1a{bottom:454.946655pt;}
.y7c{bottom:455.906657pt;}
.y6b{bottom:464.866659pt;}
.yf3{bottom:465.986654pt;}
.yc1{bottom:466.786662pt;}
.ya0{bottom:474.306681pt;}
.ye7{bottom:477.666667pt;}
.y19{bottom:477.826660pt;}
.y7b{bottom:479.426676pt;}
.ydd{bottom:485.506673pt;}
.ye1{bottom:493.373332pt;}
.yf2{bottom:495.933350pt;}
.yc0{bottom:500.093343pt;}
.y18{bottom:500.573324pt;}
.y6a{bottom:501.213338pt;}
.y7a{bottom:501.853353pt;}
.y9f{bottom:505.693319pt;}
.ye6{bottom:507.773315pt;}
.ydc{bottom:512.733317pt;}
.y45{bottom:515.773315pt;}
.ybf{bottom:522.653320pt;}
.y79{bottom:523.293335pt;}
.y17{bottom:523.453328pt;}
.ye0{bottom:525.213338pt;}
.yf1{bottom:525.853353pt;}
.y69{bottom:527.293335pt;}
.ye5{bottom:537.693319pt;}
.ybe{bottom:545.053345pt;}
.y16{bottom:546.173340pt;}
.y9e{bottom:549.053345pt;}
.y78{bottom:549.373332pt;}
.yf0{bottom:551.933350pt;}
.ydf{bottom:557.693319pt;}
.y68{bottom:559.613322pt;}
.y44{bottom:562.653320pt;}
.ye4{bottom:563.773315pt;}
.ybd{bottom:567.453328pt;}
.y15{bottom:569.053345pt;}
.y9d{bottom:572.093343pt;}
.y77{bottom:576.093343pt;}
.yde{bottom:584.893351pt;}
.ybc{bottom:590.013346pt;}
.y14{bottom:591.773315pt;}
.y43{bottom:592.573324pt;}
.y67{bottom:595.933350pt;}
.y9c{bottom:597.053345pt;}
.y76{bottom:603.133341pt;}
.ybb{bottom:612.413330pt;}
.y13{bottom:614.493327pt;}
.y66{bottom:622.013346pt;}
.y41{bottom:622.653320pt;}
.y9b{bottom:625.853353pt;}
.y12{bottom:637.373332pt;}
.y75{bottom:644.893351pt;}
.yba{bottom:646.653320pt;}
.y65{bottom:647.933350pt;}
.y3f{bottom:652.573324pt;}
.y9a{bottom:653.693319pt;}
.y5a{bottom:655.453328pt;}
.y11{bottom:660.093343pt;}
.yb9{bottom:673.053345pt;}
.y64{bottom:674.013346pt;}
.y99{bottom:676.093343pt;}
.y59{bottom:676.733317pt;}
.y3d{bottom:682.653320pt;}
.y10{bottom:686.493327pt;}
.y98{bottom:698.493327pt;}
.y58{bottom:699.133301pt;}
.y63{bottom:699.933350pt;}
.y3b{bottom:711.613363pt;}
.yb8{bottom:718.533366pt;}
.y97{bottom:721.093343pt;}
.y57{bottom:721.573324pt;}
.y62{bottom:725.893311pt;}
.y74{bottom:727.173340pt;}
.y3a{bottom:732.773356pt;}
.yf{bottom:736.453369pt;}
.yb7{bottom:739.493327pt;}
.y96{bottom:743.493327pt;}
.y56{bottom:744.133301pt;}
.y61{bottom:751.973307pt;}
.y73{bottom:757.253337pt;}
.y38{bottom:757.733317pt;}
.yb6{bottom:762.853353pt;}
.y95{bottom:766.053304pt;}
.y55{bottom:766.533366pt;}
.y72{bottom:771.813314pt;}
.y60{bottom:777.893311pt;}
.ye{bottom:779.653320pt;}
.yb5{bottom:785.253337pt;}
.y36{bottom:786.693359pt;}
.y94{bottom:788.453369pt;}
.y54{bottom:788.933350pt;}
.yef{bottom:790.053304pt;}
.y71{bottom:792.453369pt;}
.yda{bottom:801.733317pt;}
.y5f{bottom:803.973307pt;}
.ycc{bottom:805.253337pt;}
.yb4{bottom:808.773356pt;}
.y93{bottom:810.853353pt;}
.y53{bottom:811.493327pt;}
.y35{bottom:811.813314pt;}
.y70{bottom:813.093343pt;}
.yee{bottom:819.973307pt;}
.yd{bottom:825.413330pt;}
.ycb{bottom:826.373372pt;}
.y5e{bottom:829.893311pt;}
.yd9{bottom:830.853353pt;}
.yb3{bottom:831.173340pt;}
.y6e{bottom:833.733317pt;}
.y52{bottom:833.893311pt;}
.y34{bottom:836.773356pt;}
.y92{bottom:842.373372pt;}
.yca{bottom:848.933350pt;}
.yed{bottom:850.053304pt;}
.yb2{bottom:853.573324pt;}
.yd8{bottom:853.733317pt;}
.y6d{bottom:854.533366pt;}
.y5d{bottom:855.973307pt;}
.y51{bottom:856.453369pt;}
.y33{bottom:861.733317pt;}
.y91{bottom:863.013346pt;}
.yc{bottom:871.173340pt;}
.yc9{bottom:871.333333pt;}
.y6c{bottom:875.173340pt;}
.y50{bottom:878.853353pt;}
.yd7{bottom:879.173340pt;}
.yec{bottom:879.973307pt;}
.y5c{bottom:881.893311pt;}
.yb1{bottom:883.973307pt;}
.y31{bottom:886.693359pt;}
.y90{bottom:889.733317pt;}
.yc8{bottom:893.733317pt;}
.yeb{bottom:910.053304pt;}
.y4f{bottom:910.533366pt;}
.y5b{bottom:911.813314pt;}
.yb0{bottom:915.333333pt;}
.y8f{bottom:916.293294pt;}
.yb{bottom:917.093343pt;}
.y2f{bottom:928.933350pt;}
.y4e{bottom:933.573324pt;}
.yaf{bottom:937.733317pt;}
.y8e{bottom:938.693359pt;}
.yea{bottom:939.973307pt;}
.y2d{bottom:959.360026pt;}
.ya{bottom:962.879964pt;}
.y28{bottom:973.280029pt;}
.y3{bottom:993.600016pt;}
.y27{bottom:1003.035000pt;}
.y1{bottom:1007.520020pt;}
.h25{height:16.445479pt;}
.h1{height:20.000000pt;}
.h16{height:21.152000pt;}
.h13{height:24.959999pt;}
.h10{height:24.991999pt;}
.h14{height:25.120000pt;}
.h15{height:28.959999pt;}
.h18{height:29.920000pt;}
.h17{height:30.079999pt;}
.h26{height:30.468750pt;}
.hf{height:36.281250pt;}
.h4{height:36.398438pt;}
.hb{height:36.726562pt;}
.hd{height:37.631250pt;}
.h5{height:40.828125pt;}
.h12{height:42.240000pt;}
.h19{height:46.880000pt;}
.h24{height:49.968750pt;}
.h3{height:52.832000pt;}
.he{height:54.240000pt;}
.h27{height:55.298750pt;}
.h2{height:58.563750pt;}
.h1d{height:60.288750pt;}
.h23{height:60.519362pt;}
.h11{height:63.656250pt;}
.h22{height:65.531250pt;}
.h21{height:65.781915pt;}
.h1f{height:65.812500pt;}
.h20{height:71.296875pt;}
.h1a{height:73.952000pt;}
.h9{height:74.477812pt;}
.hc{height:76.671562pt;}
.h1c{height:81.046875pt;}
.ha{height:84.662813pt;}
.h1b{height:87.156562pt;}
.h1e{height:87.489947pt;}
.h7{height:95.484375pt;}
.h6{height:106.305937pt;}
.h8{height:127.312500pt;}
.h0{height:1056.000000pt;}
.w5{width:70.559998pt;}
.wf{width:100.671997pt;}
.wd{width:100.992004pt;}
.w3{width:167.546672pt;}
.w1{width:207.906657pt;}
.w8{width:208.026672pt;}
.w7{width:208.066671pt;}
.wb{width:226.786662pt;}
.w9{width:273.786662pt;}
.w2{width:304.986674pt;}
.wc{width:463.266683pt;}
.w6{width:546.333333pt;}
.w10{width:587.933350pt;}
.we{width:588.253337pt;}
.wa{width:689.893311pt;}
.w4{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:7.200002pt;}
.x16{left:11.840001pt;}
.x9{left:55.200002pt;}
.x1{left:66.559998pt;}
.x26{left:68.159986pt;}
.x1b{left:75.359988pt;}
.x27{left:76.959989pt;}
.x18{left:81.279987pt;}
.x6{left:85.471995pt;}
.x19{left:90.591988pt;}
.x1c{left:95.071988pt;}
.x12{left:104.000000pt;}
.x1a{left:114.591988pt;}
.x1d{left:138.586658pt;}
.xf{left:146.106657pt;}
.x3{left:152.319987pt;}
.x8{left:156.026662pt;}
.x1e{left:162.586658pt;}
.x11{left:165.466675pt;}
.x5{left:168.039998pt;}
.x15{left:197.800008pt;}
.x14{left:199.880005pt;}
.x2{left:274.466675pt;}
.x17{left:293.346659pt;}
.xb{left:306.786650pt;}
.xa{left:338.146655pt;}
.x28{left:365.186674pt;}
.xc{left:373.506661pt;}
.xe{left:378.626656pt;}
.xd{left:411.266671pt;}
.x13{left:482.653320pt;}
.x4{left:579.453328pt;}
.x10{left:616.329627pt;}
.x1f{left:678.853341pt;}
.x24{left:720.613350pt;}
.x20{left:722.693347pt;}
.x23{left:731.653308pt;}
.x22{left:738.693347pt;}
.x25{left:756.613350pt;}
.x21{left:760.613350pt;}
}




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