
    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_78c9eef897d7ee7fe129be0a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_eda0899324420536c10faeba.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0131f9db9fad899f61f0402a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.736816;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_847aa3820e4336c2f63ca842.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_196538f35ba56ebeddfa2408.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8d3a86df9069156aa8fb64e9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.946777;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_921c1818720ded3c3b5eb0bc.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5cc092bcde20e1b4c99ee00f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.966309;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_f479f06d2a3f8b4d45d6a528.woff2')format("woff");}.ffb{font-family:ffb;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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_d23d2ed97b2aed00ac19a4b4.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_3fbb5f928340dd088cbc7eec.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;}
.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);}
.v3{vertical-align:-69.120000px;}
.v4{vertical-align:-67.680000px;}
.v2{vertical-align:-60.480000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.lsf{letter-spacing:-0.936000px;}
.lsa{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.630000px;}
.ls8{letter-spacing:-0.576000px;}
.ls14{letter-spacing:-0.466800px;}
.ls9{letter-spacing:-0.089400px;}
.lsb{letter-spacing:-0.072000px;}
.ls7{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.020160px;}
.ls5{letter-spacing:0.072000px;}
.lse{letter-spacing:0.120000px;}
.ls10{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.313920px;}
.ls1{letter-spacing:0.493920px;}
.ls0{letter-spacing:0.720000px;}
.ls6{letter-spacing:0.869760px;}
.ls2{letter-spacing:1.080000px;}
.ls12{letter-spacing:16.306560px;}
.ls3{letter-spacing:16.560000px;}
.lsd{letter-spacing:46.546560px;}
.ls13{letter-spacing:92.880000px;}
.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;}
}
.ws5{word-spacing:-60.480000px;}
.wsa{word-spacing:-15.140160px;}
.ws0{word-spacing:-15.120000px;}
.wsb{word-spacing:-14.653200px;}
.ws9{word-spacing:-14.184000px;}
.ws4{word-spacing:-13.680000px;}
.ws7{word-spacing:-13.050000px;}
.ws2{word-spacing:-11.160000px;}
.ws3{word-spacing:-10.440000px;}
.ws1{word-spacing:-9.720000px;}
.ws6{word-spacing:-8.928000px;}
.ws8{word-spacing:0.000000px;}
._29{margin-left:-3.637920px;}
._4{margin-left:-2.453760px;}
._3{margin-left:-1.391040px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._6{width:5.295840px;}
._a{width:6.845760px;}
._b{width:7.920000px;}
._8{width:9.858240px;}
._7{width:11.272320px;}
._d{width:12.412800px;}
._10{width:13.477920px;}
._9{width:15.405120px;}
._e{width:16.450560px;}
._f{width:18.074880px;}
._c{width:19.512000px;}
._12{width:21.024000px;}
._11{width:22.351680px;}
._2b{width:23.527200px;}
._2a{width:24.554880px;}
._19{width:26.248320px;}
._1a{width:27.336960px;}
._14{width:30.144960px;}
._15{width:31.147200px;}
._13{width:32.659200px;}
._1b{width:34.594560px;}
._22{width:36.046080px;}
._17{width:38.888640px;}
._1f{width:41.368320px;}
._25{width:44.305920px;}
._26{width:46.051200px;}
._23{width:57.248640px;}
._24{width:59.175360px;}
._18{width:68.307840px;}
._28{width:70.752960px;}
._27{width:72.388800px;}
._1d{width:87.333120px;}
._1c{width:88.421760px;}
._21{width:91.808640px;}
._5{width:201.036000px;}
._16{width:207.566880px;}
._1e{width:209.623680px;}
._20{width:243.432000px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760000px;}
.fsc{font-size:18.720000px;}
.fs3{font-size:24.480000px;}
.fsb{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs9{font-size:54.720000px;}
.fs4{font-size:57.600000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:83.520000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y49{bottom:2.875500px;}
.y5{bottom:3.960000px;}
.yc2{bottom:4.665000px;}
.y88{bottom:5.025000px;}
.y8f{bottom:5.035500px;}
.yad{bottom:5.040000px;}
.y58{bottom:5.370000px;}
.y8b{bottom:5.385000px;}
.yc4{bottom:5.389500px;}
.yc5{bottom:5.395500px;}
.yb2{bottom:5.400000px;}
.y93{bottom:5.445000px;}
.y2{bottom:7.920000px;}
.y48{bottom:10.795500px;}
.y54{bottom:16.591500px;}
.y4{bottom:21.240000px;}
.y9d{bottom:23.385000px;}
.y87{bottom:23.745000px;}
.y8e{bottom:23.755500px;}
.yac{bottom:23.760000px;}
.yb6{bottom:23.805000px;}
.ya4{bottom:24.105000px;}
.yb1{bottom:24.120000px;}
.y92{bottom:24.165000px;}
.y53{bottom:33.874500px;}
.y3f{bottom:38.520000px;}
.y47{bottom:40.354500px;}
.y86{bottom:42.105000px;}
.y8a{bottom:42.465000px;}
.y8d{bottom:42.511500px;}
.y91{bottom:42.525000px;}
.y3{bottom:44.280000px;}
.y46{bottom:52.234500px;}
.y52{bottom:55.114500px;}
.y3e{bottom:55.800000px;}
.y7{bottom:57.636000px;}
.y45{bottom:65.194500px;}
.y51{bottom:71.314500px;}
.y3d{bottom:72.720000px;}
.y44{bottom:78.514500px;}
.y50{bottom:87.154500px;}
.yc7{bottom:88.960500px;}
.y3c{bottom:90.045000px;}
.y4f{bottom:96.154500px;}
.y56{bottom:96.156000px;}
.y43{bottom:100.114500px;}
.y8c{bottom:101.560500px;}
.y3b{bottom:107.325000px;}
.yc6{bottom:108.040500px;}
.y55{bottom:113.436000px;}
.y4e{bottom:115.234500px;}
.y3a{bottom:124.605000px;}
.y40{bottom:127.480500px;}
.y4d{bottom:130.714500px;}
.y39{bottom:141.885000px;}
.y4c{bottom:146.224500px;}
.yc3{bottom:146.965500px;}
.y89{bottom:158.130000px;}
.y38{bottom:158.805000px;}
.y4b{bottom:161.704500px;}
.y42{bottom:162.424500px;}
.yc1{bottom:166.410000px;}
.y41{bottom:173.224500px;}
.y4a{bottom:176.824500px;}
.y37{bottom:185.445000px;}
.yc0{bottom:186.915000px;}
.y36{bottom:202.725000px;}
.ybf{bottom:203.475000px;}
.y85{bottom:214.650000px;}
.y35{bottom:220.035000px;}
.ybe{bottom:230.115000px;}
.y34{bottom:237.315000px;}
.ybd{bottom:247.395000px;}
.y33{bottom:254.595000px;}
.ybc{bottom:264.675000px;}
.y32{bottom:271.515000px;}
.y84{bottom:274.785000px;}
.ybb{bottom:281.625000px;}
.y31{bottom:288.795000px;}
.yba{bottom:298.905000px;}
.y30{bottom:306.075000px;}
.y83{bottom:309.345000px;}
.y1d{bottom:312.195000px;}
.yb9{bottom:316.185000px;}
.y2f{bottom:323.355000px;}
.yf{bottom:330.225000px;}
.yb8{bottom:333.465000px;}
.y82{bottom:335.985000px;}
.y1c{bottom:336.315000px;}
.y2e{bottom:340.665000px;}
.y81{bottom:353.265000px;}
.yb7{bottom:356.505000px;}
.y2d{bottom:357.945000px;}
.y1b{bottom:360.465000px;}
.y80{bottom:370.545000px;}
.ye7{bottom:371.625000px;}
.y2c{bottom:375.225000px;}
.y1a{bottom:384.585000px;}
.y7f{bottom:387.825000px;}
.ye6{bottom:389.265000px;}
.y2b{bottom:392.505000px;}
.yb5{bottom:394.665000px;}
.y7e{bottom:405.150000px;}
.ye5{bottom:406.590000px;}
.y19{bottom:408.705000px;}
.y2a{bottom:409.425000px;}
.ye4{bottom:423.870000px;}
.y7d{bottom:431.430000px;}
.yb4{bottom:432.510000px;}
.y18{bottom:432.825000px;}
.y29{bottom:436.065000px;}
.ye3{bottom:441.150000px;}
.y7c{bottom:448.350000px;}
.y28{bottom:452.625000px;}
.y17{bottom:457.305000px;}
.ye2{bottom:458.430000px;}
.y7b{bottom:465.630000px;}
.y27{bottom:468.105000px;}
.yb3{bottom:470.670000px;}
.ye1{bottom:475.350000px;}
.y16{bottom:481.470000px;}
.y7a{bottom:482.910000px;}
.y26{bottom:483.630000px;}
.ye0{bottom:492.630000px;}
.y25{bottom:499.110000px;}
.y79{bottom:500.190000px;}
.y15{bottom:505.590000px;}
.yb0{bottom:508.470000px;}
.ydf{bottom:509.910000px;}
.y24{bottom:514.590000px;}
.y78{bottom:517.470000px;}
.yde{bottom:527.190000px;}
.y14{bottom:529.710000px;}
.y23{bottom:530.070000px;}
.y77{bottom:534.750000px;}
.ydd{bottom:544.500000px;}
.y22{bottom:545.910000px;}
.yaf{bottom:546.660000px;}
.y76{bottom:552.060000px;}
.y13{bottom:553.830000px;}
.y21{bottom:561.390000px;}
.ydc{bottom:561.780000px;}
.yae{bottom:566.100000px;}
.y75{bottom:569.340000px;}
.y20{bottom:576.870000px;}
.y12{bottom:577.950000px;}
.ydb{bottom:579.060000px;}
.yab{bottom:585.180000px;}
.y74{bottom:586.620000px;}
.y1f{bottom:592.350000px;}
.yda{bottom:596.340000px;}
.y11{bottom:602.070000px;}
.y73{bottom:612.900000px;}
.yd9{bottom:613.620000px;}
.y1e{bottom:622.980000px;}
.y10{bottom:626.220000px;}
.yaa{bottom:626.940000px;}
.y72{bottom:630.180000px;}
.yd8{bottom:630.900000px;}
.yd7{bottom:648.180000px;}
.ya9{bottom:653.580000px;}
.y71{bottom:656.100000px;}
.yd6{bottom:665.100000px;}
.ya8{bottom:670.890000px;}
.yd5{bottom:682.050000px;}
.y70{bottom:682.410000px;}
.ya7{bottom:687.810000px;}
.ya6{bottom:705.090000px;}
.y6f{bottom:708.690000px;}
.ya5{bottom:722.370000px;}
.y6e{bottom:725.970000px;}
.y6d{bottom:743.250000px;}
.ya3{bottom:745.425000px;}
.y6c{bottom:760.170000px;}
.yd4{bottom:760.530000px;}
.yd3{bottom:777.810000px;}
.ya2{bottom:783.585000px;}
.y6b{bottom:786.810000px;}
.yd2{bottom:795.090000px;}
.ya1{bottom:803.070000px;}
.y6a{bottom:804.135000px;}
.yd1{bottom:812.055000px;}
.y69{bottom:821.415000px;}
.ya0{bottom:822.150000px;}
.y68{bottom:838.695000px;}
.y9f{bottom:841.590000px;}
.y67{bottom:855.975000px;}
.y9e{bottom:861.030000px;}
.y66{bottom:872.895000px;}
.yd0{bottom:873.255000px;}
.y9c{bottom:880.470000px;}
.ycf{bottom:890.175000px;}
.y65{bottom:899.175000px;}
.yce{bottom:907.455000px;}
.y64{bottom:916.455000px;}
.y9b{bottom:919.695000px;}
.ycd{bottom:924.735000px;}
.y63{bottom:933.765000px;}
.y9a{bottom:936.285000px;}
.ycc{bottom:942.045000px;}
.y62{bottom:951.045000px;}
.ycb{bottom:959.325000px;}
.y99{bottom:962.925000px;}
.y61{bottom:968.325000px;}
.ye{bottom:968.685000px;}
.yd{bottom:974.085000px;}
.yca{bottom:976.605000px;}
.y98{bottom:979.845000px;}
.y60{bottom:985.605000px;}
.yc{bottom:991.365000px;}
.yc9{bottom:993.885000px;}
.y97{bottom:997.125000px;}
.y5f{bottom:1002.885000px;}
.yb{bottom:1008.285000px;}
.yc8{bottom:1010.805000px;}
.y96{bottom:1014.405000px;}
.y5e{bottom:1020.165000px;}
.y95{bottom:1031.685000px;}
.ya{bottom:1035.645000px;}
.y5d{bottom:1037.445000px;}
.y94{bottom:1048.965000px;}
.y5c{bottom:1054.725000px;}
.y9{bottom:1059.765000px;}
.y90{bottom:1063.005000px;}
.y5b{bottom:1072.050000px;}
.y8{bottom:1088.250000px;}
.y5a{bottom:1088.970000px;}
.y57{bottom:1091.520000px;}
.y59{bottom:1106.250000px;}
.y6{bottom:1121.730000px;}
.y1{bottom:1127.130000px;}
.hc{height:4.165313px;}
.h15{height:5.650313px;}
.h21{height:18.345000px;}
.h2b{height:18.355500px;}
.h25{height:18.360000px;}
.h20{height:18.705000px;}
.h28{height:18.706500px;}
.h2a{height:18.715500px;}
.h22{height:18.741000px;}
.h29{height:18.751500px;}
.h1e{height:18.866250px;}
.h7{height:24.348516px;}
.h17{height:27.720000px;}
.h13{height:29.678906px;}
.h1f{height:37.065000px;}
.h27{height:37.110000px;}
.h23{height:37.425000px;}
.h24{height:37.440000px;}
.h26{height:37.470000px;}
.hf{height:40.985156px;}
.he{height:42.086250px;}
.h1b{height:42.672656px;}
.h10{height:53.677969px;}
.h14{height:55.147500px;}
.h1a{height:55.785000px;}
.h1d{height:55.830000px;}
.h1c{height:55.831500px;}
.h8{height:58.050000px;}
.h16{height:59.328281px;}
.h5{height:59.357813px;}
.h6{height:60.155156px;}
.h11{height:60.952500px;}
.h2c{height:62.163910px;}
.h19{height:62.960625px;}
.h18{height:63.455625px;}
.hb{height:65.518594px;}
.h3{height:65.884219px;}
.ha{height:66.543750px;}
.h2{height:81.390000px;}
.h9{height:84.172500px;}
.h4{height:116.640000px;}
.h12{height:202.005000px;}
.hd{height:635.565000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w13{width:92.910000px;}
.w2{width:103.702500px;}
.w7{width:117.022500px;}
.wb{width:120.982500px;}
.wc{width:126.045000px;}
.w4{width:132.502500px;}
.wf{width:151.605000px;}
.we{width:159.495000px;}
.w6{width:163.080000px;}
.w12{width:171.045000px;}
.wd{width:174.675000px;}
.w16{width:182.565000px;}
.wa{width:184.725000px;}
.w8{width:200.205000px;}
.w10{width:223.965000px;}
.w9{width:231.225000px;}
.w11{width:245.985000px;}
.w15{width:258.585000px;}
.w14{width:266.490000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:6.876000px;}
.x17{left:8.295000px;}
.x4{left:13.305000px;}
.x15{left:16.546500px;}
.x1a{left:18.346500px;}
.x5{left:19.425000px;}
.x34{left:24.840000px;}
.x14{left:29.146500px;}
.x35{left:30.600000px;}
.x3b{left:41.790000px;}
.x6{left:43.575000px;}
.x26{left:46.095000px;}
.x1b{left:47.542500px;}
.xf{left:50.782500px;}
.x2d{left:51.855000px;}
.xe{left:55.102500px;}
.x25{left:56.175000px;}
.x1d{left:57.262500px;}
.x2e{left:58.695000px;}
.x18{left:62.295000px;}
.x2f{left:64.455000px;}
.x1c{left:66.265500px;}
.x36{left:69.510000px;}
.x12{left:73.105500px;}
.x11{left:76.705500px;}
.x1{left:78.529500px;}
.x13{left:80.305500px;}
.x7{left:86.436000px;}
.x38{left:92.209500px;}
.x2{left:95.425500px;}
.xb{left:99.036000px;}
.x1e{left:102.985500px;}
.xc{left:104.796000px;}
.x19{left:106.945500px;}
.x21{left:113.436000px;}
.x10{left:124.585500px;}
.x20{left:140.472000px;}
.x3{left:182.250000px;}
.x22{left:196.650000px;}
.x29{left:200.970000px;}
.x30{left:213.555000px;}
.x16{left:218.970000px;}
.x27{left:284.865000px;}
.x37{left:292.065000px;}
.x31{left:303.585000px;}
.x2a{left:327.750000px;}
.x39{left:359.430000px;}
.x23{left:397.590000px;}
.xa{left:401.220000px;}
.x28{left:446.580000px;}
.x2b{left:503.145000px;}
.x32{left:550.305000px;}
.x3a{left:618.750000px;}
.x24{left:629.910000px;}
.x2c{left:663.390000px;}
.x33{left:722.085000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
.xd{left:807.090000px;}
@media print{
.v3{vertical-align:-61.440000pt;}
.v4{vertical-align:-60.160000pt;}
.v2{vertical-align:-53.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lsf{letter-spacing:-0.832000pt;}
.lsa{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.560000pt;}
.ls8{letter-spacing:-0.512000pt;}
.ls14{letter-spacing:-0.414933pt;}
.ls9{letter-spacing:-0.079467pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.017920pt;}
.ls5{letter-spacing:0.064000pt;}
.lse{letter-spacing:0.106667pt;}
.ls10{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.279040pt;}
.ls1{letter-spacing:0.439040pt;}
.ls0{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.773120pt;}
.ls2{letter-spacing:0.960000pt;}
.ls12{letter-spacing:14.494720pt;}
.ls3{letter-spacing:14.720000pt;}
.lsd{letter-spacing:41.374720pt;}
.ls13{letter-spacing:82.560000pt;}
.ws5{word-spacing:-53.760000pt;}
.wsa{word-spacing:-13.457920pt;}
.ws0{word-spacing:-13.440000pt;}
.wsb{word-spacing:-13.025067pt;}
.ws9{word-spacing:-12.608000pt;}
.ws4{word-spacing:-12.160000pt;}
.ws7{word-spacing:-11.600000pt;}
.ws2{word-spacing:-9.920000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws1{word-spacing:-8.640000pt;}
.ws6{word-spacing:-7.936000pt;}
.ws8{word-spacing:0.000000pt;}
._29{margin-left:-3.233707pt;}
._4{margin-left:-2.181120pt;}
._3{margin-left:-1.236480pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._6{width:4.707413pt;}
._a{width:6.085120pt;}
._b{width:7.040000pt;}
._8{width:8.762880pt;}
._7{width:10.019840pt;}
._d{width:11.033600pt;}
._10{width:11.980373pt;}
._9{width:13.693440pt;}
._e{width:14.622720pt;}
._f{width:16.066560pt;}
._c{width:17.344000pt;}
._12{width:18.688000pt;}
._11{width:19.868160pt;}
._2b{width:20.913067pt;}
._2a{width:21.826560pt;}
._19{width:23.331840pt;}
._1a{width:24.299520pt;}
._14{width:26.795520pt;}
._15{width:27.686400pt;}
._13{width:29.030400pt;}
._1b{width:30.750720pt;}
._22{width:32.040960pt;}
._17{width:34.567680pt;}
._1f{width:36.771840pt;}
._25{width:39.383040pt;}
._26{width:40.934400pt;}
._23{width:50.887680pt;}
._24{width:52.600320pt;}
._18{width:60.718080pt;}
._28{width:62.891520pt;}
._27{width:64.345600pt;}
._1d{width:77.629440pt;}
._1c{width:78.597120pt;}
._21{width:81.607680pt;}
._5{width:178.698667pt;}
._16{width:184.503893pt;}
._1e{width:186.332160pt;}
._20{width:216.384000pt;}
.fs7{font-size:5.120000pt;}
.fsc{font-size:16.640000pt;}
.fs3{font-size:21.760000pt;}
.fsb{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs9{font-size:48.640000pt;}
.fs4{font-size:51.200000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:74.240000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:2.556000pt;}
.y5{bottom:3.520000pt;}
.yc2{bottom:4.146667pt;}
.y88{bottom:4.466667pt;}
.y8f{bottom:4.476000pt;}
.yad{bottom:4.480000pt;}
.y58{bottom:4.773333pt;}
.y8b{bottom:4.786667pt;}
.yc4{bottom:4.790667pt;}
.yc5{bottom:4.796000pt;}
.yb2{bottom:4.800000pt;}
.y93{bottom:4.840000pt;}
.y2{bottom:7.040000pt;}
.y48{bottom:9.596000pt;}
.y54{bottom:14.748000pt;}
.y4{bottom:18.880000pt;}
.y9d{bottom:20.786667pt;}
.y87{bottom:21.106667pt;}
.y8e{bottom:21.116000pt;}
.yac{bottom:21.120000pt;}
.yb6{bottom:21.160000pt;}
.ya4{bottom:21.426667pt;}
.yb1{bottom:21.440000pt;}
.y92{bottom:21.480000pt;}
.y53{bottom:30.110667pt;}
.y3f{bottom:34.240000pt;}
.y47{bottom:35.870667pt;}
.y86{bottom:37.426667pt;}
.y8a{bottom:37.746667pt;}
.y8d{bottom:37.788000pt;}
.y91{bottom:37.800000pt;}
.y3{bottom:39.360000pt;}
.y46{bottom:46.430667pt;}
.y52{bottom:48.990667pt;}
.y3e{bottom:49.600000pt;}
.y7{bottom:51.232000pt;}
.y45{bottom:57.950667pt;}
.y51{bottom:63.390667pt;}
.y3d{bottom:64.640000pt;}
.y44{bottom:69.790667pt;}
.y50{bottom:77.470667pt;}
.yc7{bottom:79.076000pt;}
.y3c{bottom:80.040000pt;}
.y4f{bottom:85.470667pt;}
.y56{bottom:85.472000pt;}
.y43{bottom:88.990667pt;}
.y8c{bottom:90.276000pt;}
.y3b{bottom:95.400000pt;}
.yc6{bottom:96.036000pt;}
.y55{bottom:100.832000pt;}
.y4e{bottom:102.430667pt;}
.y3a{bottom:110.760000pt;}
.y40{bottom:113.316000pt;}
.y4d{bottom:116.190667pt;}
.y39{bottom:126.120000pt;}
.y4c{bottom:129.977333pt;}
.yc3{bottom:130.636000pt;}
.y89{bottom:140.560000pt;}
.y38{bottom:141.160000pt;}
.y4b{bottom:143.737333pt;}
.y42{bottom:144.377333pt;}
.yc1{bottom:147.920000pt;}
.y41{bottom:153.977333pt;}
.y4a{bottom:157.177333pt;}
.y37{bottom:164.840000pt;}
.yc0{bottom:166.146667pt;}
.y36{bottom:180.200000pt;}
.ybf{bottom:180.866667pt;}
.y85{bottom:190.800000pt;}
.y35{bottom:195.586667pt;}
.ybe{bottom:204.546667pt;}
.y34{bottom:210.946667pt;}
.ybd{bottom:219.906667pt;}
.y33{bottom:226.306667pt;}
.ybc{bottom:235.266667pt;}
.y32{bottom:241.346667pt;}
.y84{bottom:244.253333pt;}
.ybb{bottom:250.333333pt;}
.y31{bottom:256.706667pt;}
.yba{bottom:265.693333pt;}
.y30{bottom:272.066667pt;}
.y83{bottom:274.973333pt;}
.y1d{bottom:277.506667pt;}
.yb9{bottom:281.053333pt;}
.y2f{bottom:287.426667pt;}
.yf{bottom:293.533333pt;}
.yb8{bottom:296.413333pt;}
.y82{bottom:298.653333pt;}
.y1c{bottom:298.946667pt;}
.y2e{bottom:302.813333pt;}
.y81{bottom:314.013333pt;}
.yb7{bottom:316.893333pt;}
.y2d{bottom:318.173333pt;}
.y1b{bottom:320.413333pt;}
.y80{bottom:329.373333pt;}
.ye7{bottom:330.333333pt;}
.y2c{bottom:333.533333pt;}
.y1a{bottom:341.853333pt;}
.y7f{bottom:344.733333pt;}
.ye6{bottom:346.013333pt;}
.y2b{bottom:348.893333pt;}
.yb5{bottom:350.813333pt;}
.y7e{bottom:360.133333pt;}
.ye5{bottom:361.413333pt;}
.y19{bottom:363.293333pt;}
.y2a{bottom:363.933333pt;}
.ye4{bottom:376.773333pt;}
.y7d{bottom:383.493333pt;}
.yb4{bottom:384.453333pt;}
.y18{bottom:384.733333pt;}
.y29{bottom:387.613333pt;}
.ye3{bottom:392.133333pt;}
.y7c{bottom:398.533333pt;}
.y28{bottom:402.333333pt;}
.y17{bottom:406.493333pt;}
.ye2{bottom:407.493333pt;}
.y7b{bottom:413.893333pt;}
.y27{bottom:416.093333pt;}
.yb3{bottom:418.373333pt;}
.ye1{bottom:422.533333pt;}
.y16{bottom:427.973333pt;}
.y7a{bottom:429.253333pt;}
.y26{bottom:429.893333pt;}
.ye0{bottom:437.893333pt;}
.y25{bottom:443.653333pt;}
.y79{bottom:444.613333pt;}
.y15{bottom:449.413333pt;}
.yb0{bottom:451.973333pt;}
.ydf{bottom:453.253333pt;}
.y24{bottom:457.413333pt;}
.y78{bottom:459.973333pt;}
.yde{bottom:468.613333pt;}
.y14{bottom:470.853333pt;}
.y23{bottom:471.173333pt;}
.y77{bottom:475.333333pt;}
.ydd{bottom:484.000000pt;}
.y22{bottom:485.253333pt;}
.yaf{bottom:485.920000pt;}
.y76{bottom:490.720000pt;}
.y13{bottom:492.293333pt;}
.y21{bottom:499.013333pt;}
.ydc{bottom:499.360000pt;}
.yae{bottom:503.200000pt;}
.y75{bottom:506.080000pt;}
.y20{bottom:512.773333pt;}
.y12{bottom:513.733333pt;}
.ydb{bottom:514.720000pt;}
.yab{bottom:520.160000pt;}
.y74{bottom:521.440000pt;}
.y1f{bottom:526.533333pt;}
.yda{bottom:530.080000pt;}
.y11{bottom:535.173333pt;}
.y73{bottom:544.800000pt;}
.yd9{bottom:545.440000pt;}
.y1e{bottom:553.760000pt;}
.y10{bottom:556.640000pt;}
.yaa{bottom:557.280000pt;}
.y72{bottom:560.160000pt;}
.yd8{bottom:560.800000pt;}
.yd7{bottom:576.160000pt;}
.ya9{bottom:580.960000pt;}
.y71{bottom:583.200000pt;}
.yd6{bottom:591.200000pt;}
.ya8{bottom:596.346667pt;}
.yd5{bottom:606.266667pt;}
.y70{bottom:606.586667pt;}
.ya7{bottom:611.386667pt;}
.ya6{bottom:626.746667pt;}
.y6f{bottom:629.946667pt;}
.ya5{bottom:642.106667pt;}
.y6e{bottom:645.306667pt;}
.y6d{bottom:660.666667pt;}
.ya3{bottom:662.600000pt;}
.y6c{bottom:675.706667pt;}
.yd4{bottom:676.026667pt;}
.yd3{bottom:691.386667pt;}
.ya2{bottom:696.520000pt;}
.y6b{bottom:699.386667pt;}
.yd2{bottom:706.746667pt;}
.ya1{bottom:713.840000pt;}
.y6a{bottom:714.786667pt;}
.yd1{bottom:721.826667pt;}
.y69{bottom:730.146667pt;}
.ya0{bottom:730.800000pt;}
.y68{bottom:745.506667pt;}
.y9f{bottom:748.080000pt;}
.y67{bottom:760.866667pt;}
.y9e{bottom:765.360000pt;}
.y66{bottom:775.906667pt;}
.yd0{bottom:776.226667pt;}
.y9c{bottom:782.640000pt;}
.ycf{bottom:791.266667pt;}
.y65{bottom:799.266667pt;}
.yce{bottom:806.626667pt;}
.y64{bottom:814.626667pt;}
.y9b{bottom:817.506667pt;}
.ycd{bottom:821.986667pt;}
.y63{bottom:830.013333pt;}
.y9a{bottom:832.253333pt;}
.ycc{bottom:837.373333pt;}
.y62{bottom:845.373333pt;}
.ycb{bottom:852.733333pt;}
.y99{bottom:855.933333pt;}
.y61{bottom:860.733333pt;}
.ye{bottom:861.053333pt;}
.yd{bottom:865.853333pt;}
.yca{bottom:868.093333pt;}
.y98{bottom:870.973333pt;}
.y60{bottom:876.093333pt;}
.yc{bottom:881.213333pt;}
.yc9{bottom:883.453333pt;}
.y97{bottom:886.333333pt;}
.y5f{bottom:891.453333pt;}
.yb{bottom:896.253333pt;}
.yc8{bottom:898.493333pt;}
.y96{bottom:901.693333pt;}
.y5e{bottom:906.813333pt;}
.y95{bottom:917.053333pt;}
.ya{bottom:920.573333pt;}
.y5d{bottom:922.173333pt;}
.y94{bottom:932.413333pt;}
.y5c{bottom:937.533333pt;}
.y9{bottom:942.013333pt;}
.y90{bottom:944.893333pt;}
.y5b{bottom:952.933333pt;}
.y8{bottom:967.333333pt;}
.y5a{bottom:967.973333pt;}
.y57{bottom:970.240000pt;}
.y59{bottom:983.333333pt;}
.y6{bottom:997.093333pt;}
.y1{bottom:1001.893333pt;}
.hc{height:3.702500pt;}
.h15{height:5.022500pt;}
.h21{height:16.306667pt;}
.h2b{height:16.316000pt;}
.h25{height:16.320000pt;}
.h20{height:16.626667pt;}
.h28{height:16.628000pt;}
.h2a{height:16.636000pt;}
.h22{height:16.658667pt;}
.h29{height:16.668000pt;}
.h1e{height:16.770000pt;}
.h7{height:21.643125pt;}
.h17{height:24.640000pt;}
.h13{height:26.381250pt;}
.h1f{height:32.946667pt;}
.h27{height:32.986667pt;}
.h23{height:33.266667pt;}
.h24{height:33.280000pt;}
.h26{height:33.306667pt;}
.hf{height:36.431250pt;}
.he{height:37.410000pt;}
.h1b{height:37.931250pt;}
.h10{height:47.713750pt;}
.h14{height:49.020000pt;}
.h1a{height:49.586667pt;}
.h1d{height:49.626667pt;}
.h1c{height:49.628000pt;}
.h8{height:51.600000pt;}
.h16{height:52.736250pt;}
.h5{height:52.762500pt;}
.h6{height:53.471250pt;}
.h11{height:54.180000pt;}
.h2c{height:55.256809pt;}
.h19{height:55.965000pt;}
.h18{height:56.405000pt;}
.hb{height:58.238750pt;}
.h3{height:58.563750pt;}
.ha{height:59.150000pt;}
.h2{height:72.346667pt;}
.h9{height:74.820000pt;}
.h4{height:103.680000pt;}
.h12{height:179.560000pt;}
.hd{height:564.946667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w13{width:82.586667pt;}
.w2{width:92.180000pt;}
.w7{width:104.020000pt;}
.wb{width:107.540000pt;}
.wc{width:112.040000pt;}
.w4{width:117.780000pt;}
.wf{width:134.760000pt;}
.we{width:141.773333pt;}
.w6{width:144.960000pt;}
.w12{width:152.040000pt;}
.wd{width:155.266667pt;}
.w16{width:162.280000pt;}
.wa{width:164.200000pt;}
.w8{width:177.960000pt;}
.w10{width:199.080000pt;}
.w9{width:205.533333pt;}
.w11{width:218.653333pt;}
.w15{width:229.853333pt;}
.w14{width:236.880000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:6.112000pt;}
.x17{left:7.373333pt;}
.x4{left:11.826667pt;}
.x15{left:14.708000pt;}
.x1a{left:16.308000pt;}
.x5{left:17.266667pt;}
.x34{left:22.080000pt;}
.x14{left:25.908000pt;}
.x35{left:27.200000pt;}
.x3b{left:37.146667pt;}
.x6{left:38.733333pt;}
.x26{left:40.973333pt;}
.x1b{left:42.260000pt;}
.xf{left:45.140000pt;}
.x2d{left:46.093333pt;}
.xe{left:48.980000pt;}
.x25{left:49.933333pt;}
.x1d{left:50.900000pt;}
.x2e{left:52.173333pt;}
.x18{left:55.373333pt;}
.x2f{left:57.293333pt;}
.x1c{left:58.902667pt;}
.x36{left:61.786667pt;}
.x12{left:64.982667pt;}
.x11{left:68.182667pt;}
.x1{left:69.804000pt;}
.x13{left:71.382667pt;}
.x7{left:76.832000pt;}
.x38{left:81.964000pt;}
.x2{left:84.822667pt;}
.xb{left:88.032000pt;}
.x1e{left:91.542667pt;}
.xc{left:93.152000pt;}
.x19{left:95.062667pt;}
.x21{left:100.832000pt;}
.x10{left:110.742667pt;}
.x20{left:124.864000pt;}
.x3{left:162.000000pt;}
.x22{left:174.800000pt;}
.x29{left:178.640000pt;}
.x30{left:189.826667pt;}
.x16{left:194.640000pt;}
.x27{left:253.213333pt;}
.x37{left:259.613333pt;}
.x31{left:269.853333pt;}
.x2a{left:291.333333pt;}
.x39{left:319.493333pt;}
.x23{left:353.413333pt;}
.xa{left:356.640000pt;}
.x28{left:396.960000pt;}
.x2b{left:447.240000pt;}
.x32{left:489.160000pt;}
.x3a{left:550.000000pt;}
.x24{left:559.920000pt;}
.x2c{left:589.680000pt;}
.x33{left:641.853333pt;}
.x9{left:680.933333pt;}
.x8{left:697.573333pt;}
.xd{left:717.413333pt;}
}




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