
    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_cb831bfc45030f6d94299355.woff')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_d9a235825d1a07d3021ee8e2.woff')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_b9ca99ec476d41880aaf5e42.woff')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_cee234192cd35a47b3932fa3.woff')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_cc28033d1a44f4e08109dd46.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_addccf4b02fe8fc3168d2c9c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.972168;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_964b772ecf9e29d47dbdf997.woff')format("woff");}.ff7{font-family:ff7;line-height:0.747070;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_82aa7add26d3e72a4a28ac5b.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_436eab73a76ee026c9329ace.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_8879b5204b171843bc736dc6.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_b30e0d618b7946c1b7676371.woff')format("woff");}.ffb{font-family:ffb;line-height:0.978027;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_9bb05d68ab192739b82ea36b.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_df55d8b2e2c8d790055eb650.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_9dab00301186ef16e7b8afb4.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_42d8ba456fe57d9e0df7f8ed.woff')format("woff");}.fff{font-family:fff;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);}
.v1{vertical-align:-73.440000px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-1.728000px;}
.ls13{letter-spacing:-1.440000px;}
.lsb{letter-spacing:-0.936000px;}
.ls7{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.630000px;}
.ls8{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.089400px;}
.ls9{letter-spacing:-0.072000px;}
.ls4{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.493920px;}
.ls0{letter-spacing:0.720000px;}
.ls2{letter-spacing:1.092000px;}
.lsc{letter-spacing:1.440000px;}
.lsd{letter-spacing:2.160000px;}
.ls3{letter-spacing:5.040000px;}
.lsf{letter-spacing:6.480000px;}
.lse{letter-spacing:9.360000px;}
.ls11{letter-spacing:16.306560px;}
.ls10{letter-spacing:46.546560px;}
.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;}
}
.ws7{word-spacing:-54.720000px;}
.ws1{word-spacing:-25.139520px;}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.120000px;}
.wsb{word-spacing:-14.184000px;}
.ws6{word-spacing:-13.680000px;}
.ws9{word-spacing:-13.050000px;}
.ws3{word-spacing:-11.160000px;}
.ws4{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.ws8{word-spacing:-8.928000px;}
.wsa{word-spacing:0.000000px;}
._10{margin-left:-3.792960px;}
._3{margin-left:-2.119680px;}
._4{margin-left:-1.097280px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._8{width:4.445760px;}
._9{width:5.457600px;}
._a{width:6.716160px;}
._13{width:7.799040px;}
._d{width:8.850240px;}
._c{width:9.944640px;}
._e{width:11.422080px;}
._16{width:12.935040px;}
._f{width:14.100000px;}
._b{width:15.376320px;}
._1f{width:16.663680px;}
._11{width:19.776960px;}
._12{width:21.708000px;}
._5{width:27.060480px;}
._6{width:28.385280px;}
._7{width:30.456480px;}
._21{width:37.117440px;}
._22{width:38.737920px;}
._20{width:39.778560px;}
._19{width:44.392320px;}
._18{width:45.662400px;}
._14{width:48.957120px;}
._15{width:50.633760px;}
._1d{width:102.332160px;}
._17{width:140.544000px;}
._1e{width:149.869440px;}
._1a{width:178.839360px;}
._1b{width:305.436000px;}
._1c{width:342.876000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fs9{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:54.720000px;}
.fs3{font-size:57.600000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:83.520000px;}
.fsa{font-size:83.664000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:2.875500px;}
.y41{bottom:3.960000px;}
.y5{bottom:4.320000px;}
.y9d{bottom:5.025000px;}
.y94{bottom:5.040000px;}
.y5a{bottom:5.370000px;}
.y97{bottom:5.385000px;}
.y92{bottom:5.400000px;}
.yd2{bottom:5.415000px;}
.ya1{bottom:5.430000px;}
.yc7{bottom:6.120000px;}
.ya8{bottom:6.150000px;}
.y2{bottom:10.080000px;}
.y4a{bottom:10.795500px;}
.y57{bottom:14.755500px;}
.y40{bottom:21.240000px;}
.y4{bottom:23.400000px;}
.ya3{bottom:23.745000px;}
.y93{bottom:23.760000px;}
.ybf{bottom:23.775000px;}
.y96{bottom:24.105000px;}
.yb6{bottom:24.120000px;}
.ya0{bottom:24.150000px;}
.y90{bottom:24.480000px;}
.ya7{bottom:24.510000px;}
.yc6{bottom:24.525000px;}
.y56{bottom:32.071500px;}
.y3f{bottom:38.160000px;}
.y49{bottom:40.354500px;}
.y8f{bottom:43.200000px;}
.y3{bottom:47.880000px;}
.y55{bottom:50.434500px;}
.y48{bottom:52.234500px;}
.y3e{bottom:55.440000px;}
.y7{bottom:57.636000px;}
.yb4{bottom:61.920000px;}
.y47{bottom:65.194500px;}
.y54{bottom:66.274500px;}
.y3d{bottom:72.720000px;}
.y46{bottom:78.154500px;}
.y53{bottom:81.754500px;}
.y3c{bottom:90.045000px;}
.y52{bottom:94.714500px;}
.yc4{bottom:99.036000px;}
.y45{bottom:100.114500px;}
.y51{bottom:100.834500px;}
.y58{bottom:102.636000px;}
.ycc{bottom:102.975000px;}
.yad{bottom:102.990000px;}
.y8c{bottom:104.436000px;}
.y3b{bottom:107.325000px;}
.y42{bottom:116.680500px;}
.y50{bottom:117.034500px;}
.yc3{bottom:117.756000px;}
.ycb{bottom:121.695000px;}
.yac{bottom:121.710000px;}
.y8b{bottom:123.156000px;}
.y3a{bottom:124.605000px;}
.y4f{bottom:132.514500px;}
.yc2{bottom:136.116000px;}
.y8a{bottom:141.912000px;}
.y39{bottom:142.965000px;}
.y4e{bottom:147.994500px;}
.yb8{bottom:150.570000px;}
.y9a{bottom:158.790000px;}
.y89{bottom:160.275000px;}
.y38{bottom:161.325000px;}
.y44{bottom:162.424500px;}
.y4d{bottom:163.504500px;}
.y43{bottom:173.224500px;}
.y99{bottom:177.510000px;}
.y4c{bottom:178.624500px;}
.y88{bottom:178.995000px;}
.yc1{bottom:188.730000px;}
.y37{bottom:189.405000px;}
.y87{bottom:197.715000px;}
.y36{bottom:208.125000px;}
.ybb{bottom:214.575000px;}
.y86{bottom:216.075000px;}
.yc0{bottom:226.530000px;}
.y35{bottom:226.875000px;}
.yba{bottom:233.295000px;}
.y85{bottom:234.795000px;}
.y34{bottom:245.235000px;}
.yb9{bottom:252.015000px;}
.y84{bottom:253.515000px;}
.y33{bottom:263.955000px;}
.ybe{bottom:264.690000px;}
.y83{bottom:272.235000px;}
.y32{bottom:282.675000px;}
.y1e{bottom:283.035000px;}
.y82{bottom:290.265000px;}
.y31{bottom:301.035000px;}
.ybd{bottom:302.505000px;}
.y1d{bottom:307.515000px;}
.y81{bottom:318.345000px;}
.yf{bottom:319.425000px;}
.y30{bottom:319.755000px;}
.y1c{bottom:331.635000px;}
.y80{bottom:337.065000px;}
.y2f{bottom:338.475000px;}
.ybc{bottom:340.665000px;}
.y7f{bottom:355.425000px;}
.y1b{bottom:355.785000px;}
.y2e{bottom:356.505000px;}
.y7e{bottom:374.145000px;}
.yb7{bottom:378.465000px;}
.y1a{bottom:379.905000px;}
.y2d{bottom:383.865000px;}
.y7d{bottom:392.865000px;}
.y2c{bottom:400.785000px;}
.y19{bottom:404.025000px;}
.y7c{bottom:411.270000px;}
.yb3{bottom:416.670000px;}
.y2b{bottom:417.345000px;}
.y18{bottom:428.145000px;}
.y7b{bottom:429.990000px;}
.y2a{bottom:434.265000px;}
.y7a{bottom:448.350000px;}
.y29{bottom:450.825000px;}
.y17{bottom:452.265000px;}
.yb5{bottom:454.470000px;}
.y28{bottom:467.745000px;}
.y16{bottom:476.385000px;}
.y79{bottom:476.430000px;}
.yea{bottom:482.550000px;}
.y27{bottom:484.350000px;}
.y78{bottom:494.790000px;}
.ye9{bottom:499.470000px;}
.y15{bottom:500.550000px;}
.y26{bottom:501.270000px;}
.y77{bottom:513.510000px;}
.yb2{bottom:516.030000px;}
.ye8{bottom:516.750000px;}
.y25{bottom:517.830000px;}
.y14{bottom:524.670000px;}
.yab{bottom:530.430000px;}
.y76{bottom:532.230000px;}
.ye7{bottom:534.030000px;}
.y24{bottom:534.750000px;}
.y13{bottom:548.790000px;}
.yb1{bottom:549.900000px;}
.y75{bottom:550.620000px;}
.y23{bottom:551.310000px;}
.ye6{bottom:551.340000px;}
.y22{bottom:568.230000px;}
.ye5{bottom:568.620000px;}
.y74{bottom:569.340000px;}
.y12{bottom:572.910000px;}
.y21{bottom:584.790000px;}
.ye4{bottom:585.900000px;}
.y73{bottom:588.060000px;}
.yb0{bottom:588.780000px;}
.y11{bottom:597.030000px;}
.y20{bottom:601.710000px;}
.ye3{bottom:603.180000px;}
.y72{bottom:606.780000px;}
.yaf{bottom:608.220000px;}
.y1f{bottom:618.300000px;}
.ye2{bottom:620.460000px;}
.y10{bottom:621.540000px;}
.y71{bottom:625.140000px;}
.yae{bottom:627.300000px;}
.ye1{bottom:637.740000px;}
.y70{bottom:643.860000px;}
.yaa{bottom:646.740000px;}
.ye0{bottom:655.020000px;}
.y6f{bottom:662.220000px;}
.ya6{bottom:666.180000px;}
.ydf{bottom:672.330000px;}
.ya9{bottom:685.665000px;}
.yde{bottom:689.610000px;}
.y6e{bottom:689.970000px;}
.ydd{bottom:706.530000px;}
.y6d{bottom:708.690000px;}
.ya5{bottom:709.770000px;}
.ydc{bottom:723.810000px;}
.y6c{bottom:727.410000px;}
.ya4{bottom:728.490000px;}
.ydb{bottom:741.090000px;}
.y98{bottom:742.905000px;}
.y6b{bottom:745.770000px;}
.yda{bottom:758.370000px;}
.y6a{bottom:764.490000px;}
.yd9{bottom:775.650000px;}
.ya2{bottom:781.065000px;}
.y69{bottom:783.210000px;}
.yd8{bottom:794.010000px;}
.y9f{bottom:800.145000px;}
.y68{bottom:801.975000px;}
.y67{bottom:820.335000px;}
.yd7{bottom:821.775000px;}
.y9e{bottom:838.350000px;}
.y66{bottom:839.055000px;}
.yd6{bottom:840.495000px;}
.y65{bottom:857.775000px;}
.y9c{bottom:857.790000px;}
.yd5{bottom:859.215000px;}
.y64{bottom:876.135000px;}
.y9b{bottom:876.870000px;}
.yd4{bottom:877.935000px;}
.y63{bottom:894.855000px;}
.yd3{bottom:896.295000px;}
.y95{bottom:896.310000px;}
.yca{bottom:910.350000px;}
.y62{bottom:913.215000px;}
.yd1{bottom:929.790000px;}
.y8e{bottom:934.485000px;}
.y61{bottom:941.325000px;}
.yd0{bottom:949.245000px;}
.ye{bottom:952.845000px;}
.yd{bottom:959.685000px;}
.ycf{bottom:968.685000px;}
.y91{bottom:972.285000px;}
.yc{bottom:978.405000px;}
.yce{bottom:988.125000px;}
.yb{bottom:996.765000px;}
.y60{bottom:997.125000px;}
.ycd{bottom:1007.205000px;}
.y5f{bottom:1015.485000px;}
.ya{bottom:1017.645000px;}
.yc9{bottom:1026.645000px;}
.y5e{bottom:1034.205000px;}
.y9{bottom:1043.925000px;}
.yc5{bottom:1046.085000px;}
.y5d{bottom:1052.925000px;}
.yc8{bottom:1065.570000px;}
.y5c{bottom:1071.330000px;}
.y8{bottom:1072.050000px;}
.y59{bottom:1075.320000px;}
.y8d{bottom:1089.690000px;}
.y5b{bottom:1090.050000px;}
.y6{bottom:1108.050000px;}
.y1{bottom:1123.530000px;}
.h12{height:5.650313px;}
.h1b{height:18.345000px;}
.h21{height:18.360000px;}
.h17{height:18.705000px;}
.h1f{height:18.720000px;}
.h22{height:18.750000px;}
.h1e{height:18.756000px;}
.h14{height:27.720000px;}
.h10{height:29.678906px;}
.hf{height:35.332031px;}
.h18{height:37.065000px;}
.h27{height:37.080000px;}
.h24{height:37.425000px;}
.h19{height:37.440000px;}
.h1c{height:37.461000px;}
.h25{height:37.470000px;}
.h28{height:37.830000px;}
.h1d{height:37.836000px;}
.hc{height:40.985156px;}
.hb{height:42.086250px;}
.hd{height:53.677969px;}
.h11{height:55.147500px;}
.h16{height:56.505000px;}
.h7{height:58.050000px;}
.h13{height:59.328281px;}
.h6{height:59.357813px;}
.h9{height:60.952500px;}
.h2a{height:62.163910px;}
.h2b{height:62.960625px;}
.h15{height:63.565031px;}
.h8{height:64.067344px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h23{height:75.225000px;}
.h2{height:84.990000px;}
.h4{height:116.640000px;}
.h29{height:135.000000px;}
.h20{height:135.030000px;}
.h1a{height:190.845000px;}
.he{height:202.005000px;}
.h26{height:265.365000px;}
.ha{height:630.885000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w25{width:46.470000px;}
.w24{width:48.585000px;}
.w12{width:51.510000px;}
.w10{width:59.760000px;}
.wf{width:64.101000px;}
.w11{width:64.425000px;}
.w2b{width:65.505000px;}
.w2d{width:66.600000px;}
.w19{width:66.621000px;}
.wd{width:66.636000px;}
.we{width:66.945000px;}
.w1a{width:66.960000px;}
.w22{width:69.141000px;}
.w23{width:71.280000px;}
.w18{width:73.425000px;}
.w2c{width:73.461000px;}
.w1b{width:73.470000px;}
.w21{width:73.476000px;}
.w1d{width:93.600000px;}
.w1c{width:93.622500px;}
.w20{width:95.790000px;}
.w8{width:97.920000px;}
.w2{width:103.702500px;}
.w1e{width:104.832000px;}
.w14{width:107.310000px;}
.w9{width:112.392000px;}
.w7{width:115.582500px;}
.wc{width:116.670000px;}
.w27{width:117.390000px;}
.wb{width:124.965000px;}
.w15{width:127.872000px;}
.w4{width:132.502500px;}
.wa{width:134.316000px;}
.w28{width:136.512000px;}
.w26{width:138.285000px;}
.w29{width:139.701000px;}
.w16{width:140.781000px;}
.w2a{width:140.805000px;}
.w1f{width:141.156000px;}
.w17{width:141.165000px;}
.w13{width:142.245000px;}
.w6{width:163.080000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:6.876000px;}
.x19{left:8.295000px;}
.x4{left:13.305000px;}
.x15{left:16.906500px;}
.x1b{left:18.346500px;}
.x17{left:19.426500px;}
.x16{left:23.746500px;}
.x6{left:28.785000px;}
.xf{left:43.906500px;}
.x1c{left:47.542500px;}
.x10{left:50.782500px;}
.x14{left:53.302500px;}
.xe{left:55.102500px;}
.x1e{left:57.262500px;}
.x1d{left:66.265500px;}
.x1{left:78.529500px;}
.x13{left:83.905500px;}
.x7{left:86.436000px;}
.x42{left:91.836000px;}
.x12{left:92.905500px;}
.x23{left:94.009500px;}
.x2{left:95.425500px;}
.x1f{left:102.985500px;}
.x1a{left:106.945500px;}
.x33{left:109.489500px;}
.x2c{left:115.609500px;}
.x43{left:118.836000px;}
.x11{left:124.585500px;}
.x21{left:140.472000px;}
.x5{left:141.540000px;}
.x3d{left:173.595000px;}
.x3{left:182.250000px;}
.x22{left:196.275000px;}
.x34{left:203.850000px;}
.x24{left:210.330000px;}
.x18{left:218.970000px;}
.x3e{left:247.785000px;}
.x2d{left:258.585000px;}
.x35{left:298.545000px;}
.xb{left:299.985000px;}
.x25{left:308.985000px;}
.x2e{left:366.630000px;}
.x36{left:404.100000px;}
.x26{left:422.100000px;}
.x3c{left:446.580000px;}
.x39{left:471.780000px;}
.x29{left:489.465000px;}
.x2f{left:495.225000px;}
.x3f{left:503.145000px;}
.x37{left:545.985000px;}
.x27{left:557.145000px;}
.xc{left:566.130000px;}
.x31{left:569.385000px;}
.x3a{left:615.870000px;}
.x2a{left:622.350000px;}
.x30{left:636.750000px;}
.x40{left:643.950000px;}
.xa{left:653.295000px;}
.x28{left:682.845000px;}
.x38{left:687.885000px;}
.x32{left:704.445000px;}
.x41{left:711.285000px;}
.x3b{left:737.205000px;}
.x2b{left:748.005000px;}
.x9{left:766.050000px;}
.x8{left:791.970000px;}
.xd{left:807.090000px;}
@media print{
.v1{vertical-align:-65.280000pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-1.536000pt;}
.ls13{letter-spacing:-1.280000pt;}
.lsb{letter-spacing:-0.832000pt;}
.ls7{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.560000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.079467pt;}
.ls9{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.439040pt;}
.ls0{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.970667pt;}
.lsc{letter-spacing:1.280000pt;}
.lsd{letter-spacing:1.920000pt;}
.ls3{letter-spacing:4.480000pt;}
.lsf{letter-spacing:5.760000pt;}
.lse{letter-spacing:8.320000pt;}
.ls11{letter-spacing:14.494720pt;}
.ls10{letter-spacing:41.374720pt;}
.ws7{word-spacing:-48.640000pt;}
.ws1{word-spacing:-22.346240pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-13.440000pt;}
.wsb{word-spacing:-12.608000pt;}
.ws6{word-spacing:-12.160000pt;}
.ws9{word-spacing:-11.600000pt;}
.ws3{word-spacing:-9.920000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws8{word-spacing:-7.936000pt;}
.wsa{word-spacing:0.000000pt;}
._10{margin-left:-3.371520pt;}
._3{margin-left:-1.884160pt;}
._4{margin-left:-0.975360pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._8{width:3.951787pt;}
._9{width:4.851200pt;}
._a{width:5.969920pt;}
._13{width:6.932480pt;}
._d{width:7.866880pt;}
._c{width:8.839680pt;}
._e{width:10.152960pt;}
._16{width:11.497813pt;}
._f{width:12.533333pt;}
._b{width:13.667840pt;}
._1f{width:14.812160pt;}
._11{width:17.579520pt;}
._12{width:19.296000pt;}
._5{width:24.053760pt;}
._6{width:25.231360pt;}
._7{width:27.072427pt;}
._21{width:32.993280pt;}
._22{width:34.433707pt;}
._20{width:35.358720pt;}
._19{width:39.459840pt;}
._18{width:40.588800pt;}
._14{width:43.517440pt;}
._15{width:45.007787pt;}
._1d{width:90.961920pt;}
._17{width:124.928000pt;}
._1e{width:133.217280pt;}
._1a{width:158.968320pt;}
._1b{width:271.498667pt;}
._1c{width:304.778667pt;}
.fs5{font-size:5.120000pt;}
.fs9{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:48.640000pt;}
.fs3{font-size:51.200000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.240000pt;}
.fsa{font-size:74.368000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:2.556000pt;}
.y41{bottom:3.520000pt;}
.y5{bottom:3.840000pt;}
.y9d{bottom:4.466667pt;}
.y94{bottom:4.480000pt;}
.y5a{bottom:4.773333pt;}
.y97{bottom:4.786667pt;}
.y92{bottom:4.800000pt;}
.yd2{bottom:4.813333pt;}
.ya1{bottom:4.826667pt;}
.yc7{bottom:5.440000pt;}
.ya8{bottom:5.466667pt;}
.y2{bottom:8.960000pt;}
.y4a{bottom:9.596000pt;}
.y57{bottom:13.116000pt;}
.y40{bottom:18.880000pt;}
.y4{bottom:20.800000pt;}
.ya3{bottom:21.106667pt;}
.y93{bottom:21.120000pt;}
.ybf{bottom:21.133333pt;}
.y96{bottom:21.426667pt;}
.yb6{bottom:21.440000pt;}
.ya0{bottom:21.466667pt;}
.y90{bottom:21.760000pt;}
.ya7{bottom:21.786667pt;}
.yc6{bottom:21.800000pt;}
.y56{bottom:28.508000pt;}
.y3f{bottom:33.920000pt;}
.y49{bottom:35.870667pt;}
.y8f{bottom:38.400000pt;}
.y3{bottom:42.560000pt;}
.y55{bottom:44.830667pt;}
.y48{bottom:46.430667pt;}
.y3e{bottom:49.280000pt;}
.y7{bottom:51.232000pt;}
.yb4{bottom:55.040000pt;}
.y47{bottom:57.950667pt;}
.y54{bottom:58.910667pt;}
.y3d{bottom:64.640000pt;}
.y46{bottom:69.470667pt;}
.y53{bottom:72.670667pt;}
.y3c{bottom:80.040000pt;}
.y52{bottom:84.190667pt;}
.yc4{bottom:88.032000pt;}
.y45{bottom:88.990667pt;}
.y51{bottom:89.630667pt;}
.y58{bottom:91.232000pt;}
.ycc{bottom:91.533333pt;}
.yad{bottom:91.546667pt;}
.y8c{bottom:92.832000pt;}
.y3b{bottom:95.400000pt;}
.y42{bottom:103.716000pt;}
.y50{bottom:104.030667pt;}
.yc3{bottom:104.672000pt;}
.ycb{bottom:108.173333pt;}
.yac{bottom:108.186667pt;}
.y8b{bottom:109.472000pt;}
.y3a{bottom:110.760000pt;}
.y4f{bottom:117.790667pt;}
.yc2{bottom:120.992000pt;}
.y8a{bottom:126.144000pt;}
.y39{bottom:127.080000pt;}
.y4e{bottom:131.550667pt;}
.yb8{bottom:133.840000pt;}
.y9a{bottom:141.146667pt;}
.y89{bottom:142.466667pt;}
.y38{bottom:143.400000pt;}
.y44{bottom:144.377333pt;}
.y4d{bottom:145.337333pt;}
.y43{bottom:153.977333pt;}
.y99{bottom:157.786667pt;}
.y4c{bottom:158.777333pt;}
.y88{bottom:159.106667pt;}
.yc1{bottom:167.760000pt;}
.y37{bottom:168.360000pt;}
.y87{bottom:175.746667pt;}
.y36{bottom:185.000000pt;}
.ybb{bottom:190.733333pt;}
.y86{bottom:192.066667pt;}
.yc0{bottom:201.360000pt;}
.y35{bottom:201.666667pt;}
.yba{bottom:207.373333pt;}
.y85{bottom:208.706667pt;}
.y34{bottom:217.986667pt;}
.yb9{bottom:224.013333pt;}
.y84{bottom:225.346667pt;}
.y33{bottom:234.626667pt;}
.ybe{bottom:235.280000pt;}
.y83{bottom:241.986667pt;}
.y32{bottom:251.266667pt;}
.y1e{bottom:251.586667pt;}
.y82{bottom:258.013333pt;}
.y31{bottom:267.586667pt;}
.ybd{bottom:268.893333pt;}
.y1d{bottom:273.346667pt;}
.y81{bottom:282.973333pt;}
.yf{bottom:283.933333pt;}
.y30{bottom:284.226667pt;}
.y1c{bottom:294.786667pt;}
.y80{bottom:299.613333pt;}
.y2f{bottom:300.866667pt;}
.ybc{bottom:302.813333pt;}
.y7f{bottom:315.933333pt;}
.y1b{bottom:316.253333pt;}
.y2e{bottom:316.893333pt;}
.y7e{bottom:332.573333pt;}
.yb7{bottom:336.413333pt;}
.y1a{bottom:337.693333pt;}
.y2d{bottom:341.213333pt;}
.y7d{bottom:349.213333pt;}
.y2c{bottom:356.253333pt;}
.y19{bottom:359.133333pt;}
.y7c{bottom:365.573333pt;}
.yb3{bottom:370.373333pt;}
.y2b{bottom:370.973333pt;}
.y18{bottom:380.573333pt;}
.y7b{bottom:382.213333pt;}
.y2a{bottom:386.013333pt;}
.y7a{bottom:398.533333pt;}
.y29{bottom:400.733333pt;}
.y17{bottom:402.013333pt;}
.yb5{bottom:403.973333pt;}
.y28{bottom:415.773333pt;}
.y16{bottom:423.453333pt;}
.y79{bottom:423.493333pt;}
.yea{bottom:428.933333pt;}
.y27{bottom:430.533333pt;}
.y78{bottom:439.813333pt;}
.ye9{bottom:443.973333pt;}
.y15{bottom:444.933333pt;}
.y26{bottom:445.573333pt;}
.y77{bottom:456.453333pt;}
.yb2{bottom:458.693333pt;}
.ye8{bottom:459.333333pt;}
.y25{bottom:460.293333pt;}
.y14{bottom:466.373333pt;}
.yab{bottom:471.493333pt;}
.y76{bottom:473.093333pt;}
.ye7{bottom:474.693333pt;}
.y24{bottom:475.333333pt;}
.y13{bottom:487.813333pt;}
.yb1{bottom:488.800000pt;}
.y75{bottom:489.440000pt;}
.y23{bottom:490.053333pt;}
.ye6{bottom:490.080000pt;}
.y22{bottom:505.093333pt;}
.ye5{bottom:505.440000pt;}
.y74{bottom:506.080000pt;}
.y12{bottom:509.253333pt;}
.y21{bottom:519.813333pt;}
.ye4{bottom:520.800000pt;}
.y73{bottom:522.720000pt;}
.yb0{bottom:523.360000pt;}
.y11{bottom:530.693333pt;}
.y20{bottom:534.853333pt;}
.ye3{bottom:536.160000pt;}
.y72{bottom:539.360000pt;}
.yaf{bottom:540.640000pt;}
.y1f{bottom:549.600000pt;}
.ye2{bottom:551.520000pt;}
.y10{bottom:552.480000pt;}
.y71{bottom:555.680000pt;}
.yae{bottom:557.600000pt;}
.ye1{bottom:566.880000pt;}
.y70{bottom:572.320000pt;}
.yaa{bottom:574.880000pt;}
.ye0{bottom:582.240000pt;}
.y6f{bottom:588.640000pt;}
.ya6{bottom:592.160000pt;}
.ydf{bottom:597.626667pt;}
.ya9{bottom:609.480000pt;}
.yde{bottom:612.986667pt;}
.y6e{bottom:613.306667pt;}
.ydd{bottom:628.026667pt;}
.y6d{bottom:629.946667pt;}
.ya5{bottom:630.906667pt;}
.ydc{bottom:643.386667pt;}
.y6c{bottom:646.586667pt;}
.ya4{bottom:647.546667pt;}
.ydb{bottom:658.746667pt;}
.y98{bottom:660.360000pt;}
.y6b{bottom:662.906667pt;}
.yda{bottom:674.106667pt;}
.y6a{bottom:679.546667pt;}
.yd9{bottom:689.466667pt;}
.ya2{bottom:694.280000pt;}
.y69{bottom:696.186667pt;}
.yd8{bottom:705.786667pt;}
.y9f{bottom:711.240000pt;}
.y68{bottom:712.866667pt;}
.y67{bottom:729.186667pt;}
.yd7{bottom:730.466667pt;}
.y9e{bottom:745.200000pt;}
.y66{bottom:745.826667pt;}
.yd6{bottom:747.106667pt;}
.y65{bottom:762.466667pt;}
.y9c{bottom:762.480000pt;}
.yd5{bottom:763.746667pt;}
.y64{bottom:778.786667pt;}
.y9b{bottom:779.440000pt;}
.yd4{bottom:780.386667pt;}
.y63{bottom:795.426667pt;}
.yd3{bottom:796.706667pt;}
.y95{bottom:796.720000pt;}
.yca{bottom:809.200000pt;}
.y62{bottom:811.746667pt;}
.yd1{bottom:826.480000pt;}
.y8e{bottom:830.653333pt;}
.y61{bottom:836.733333pt;}
.yd0{bottom:843.773333pt;}
.ye{bottom:846.973333pt;}
.yd{bottom:853.053333pt;}
.ycf{bottom:861.053333pt;}
.y91{bottom:864.253333pt;}
.yc{bottom:869.693333pt;}
.yce{bottom:878.333333pt;}
.yb{bottom:886.013333pt;}
.y60{bottom:886.333333pt;}
.ycd{bottom:895.293333pt;}
.y5f{bottom:902.653333pt;}
.ya{bottom:904.573333pt;}
.yc9{bottom:912.573333pt;}
.y5e{bottom:919.293333pt;}
.y9{bottom:927.933333pt;}
.yc5{bottom:929.853333pt;}
.y5d{bottom:935.933333pt;}
.yc8{bottom:947.173333pt;}
.y5c{bottom:952.293333pt;}
.y8{bottom:952.933333pt;}
.y59{bottom:955.840000pt;}
.y8d{bottom:968.613333pt;}
.y5b{bottom:968.933333pt;}
.y6{bottom:984.933333pt;}
.y1{bottom:998.693333pt;}
.h12{height:5.022500pt;}
.h1b{height:16.306667pt;}
.h21{height:16.320000pt;}
.h17{height:16.626667pt;}
.h1f{height:16.640000pt;}
.h22{height:16.666667pt;}
.h1e{height:16.672000pt;}
.h14{height:24.640000pt;}
.h10{height:26.381250pt;}
.hf{height:31.406250pt;}
.h18{height:32.946667pt;}
.h27{height:32.960000pt;}
.h24{height:33.266667pt;}
.h19{height:33.280000pt;}
.h1c{height:33.298667pt;}
.h25{height:33.306667pt;}
.h28{height:33.626667pt;}
.h1d{height:33.632000pt;}
.hc{height:36.431250pt;}
.hb{height:37.410000pt;}
.hd{height:47.713750pt;}
.h11{height:49.020000pt;}
.h16{height:50.226667pt;}
.h7{height:51.600000pt;}
.h13{height:52.736250pt;}
.h6{height:52.762500pt;}
.h9{height:54.180000pt;}
.h2a{height:55.256809pt;}
.h2b{height:55.965000pt;}
.h15{height:56.502250pt;}
.h8{height:56.948750pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h23{height:66.866667pt;}
.h2{height:75.546667pt;}
.h4{height:103.680000pt;}
.h29{height:120.000000pt;}
.h20{height:120.026667pt;}
.h1a{height:169.640000pt;}
.he{height:179.560000pt;}
.h26{height:235.880000pt;}
.ha{height:560.786667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w25{width:41.306667pt;}
.w24{width:43.186667pt;}
.w12{width:45.786667pt;}
.w10{width:53.120000pt;}
.wf{width:56.978667pt;}
.w11{width:57.266667pt;}
.w2b{width:58.226667pt;}
.w2d{width:59.200000pt;}
.w19{width:59.218667pt;}
.wd{width:59.232000pt;}
.we{width:59.506667pt;}
.w1a{width:59.520000pt;}
.w22{width:61.458667pt;}
.w23{width:63.360000pt;}
.w18{width:65.266667pt;}
.w2c{width:65.298667pt;}
.w1b{width:65.306667pt;}
.w21{width:65.312000pt;}
.w1d{width:83.200000pt;}
.w1c{width:83.220000pt;}
.w20{width:85.146667pt;}
.w8{width:87.040000pt;}
.w2{width:92.180000pt;}
.w1e{width:93.184000pt;}
.w14{width:95.386667pt;}
.w9{width:99.904000pt;}
.w7{width:102.740000pt;}
.wc{width:103.706667pt;}
.w27{width:104.346667pt;}
.wb{width:111.080000pt;}
.w15{width:113.664000pt;}
.w4{width:117.780000pt;}
.wa{width:119.392000pt;}
.w28{width:121.344000pt;}
.w26{width:122.920000pt;}
.w29{width:124.178667pt;}
.w16{width:125.138667pt;}
.w2a{width:125.160000pt;}
.w1f{width:125.472000pt;}
.w17{width:125.480000pt;}
.w13{width:126.440000pt;}
.w6{width:144.960000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:6.112000pt;}
.x19{left:7.373333pt;}
.x4{left:11.826667pt;}
.x15{left:15.028000pt;}
.x1b{left:16.308000pt;}
.x17{left:17.268000pt;}
.x16{left:21.108000pt;}
.x6{left:25.586667pt;}
.xf{left:39.028000pt;}
.x1c{left:42.260000pt;}
.x10{left:45.140000pt;}
.x14{left:47.380000pt;}
.xe{left:48.980000pt;}
.x1e{left:50.900000pt;}
.x1d{left:58.902667pt;}
.x1{left:69.804000pt;}
.x13{left:74.582667pt;}
.x7{left:76.832000pt;}
.x42{left:81.632000pt;}
.x12{left:82.582667pt;}
.x23{left:83.564000pt;}
.x2{left:84.822667pt;}
.x1f{left:91.542667pt;}
.x1a{left:95.062667pt;}
.x33{left:97.324000pt;}
.x2c{left:102.764000pt;}
.x43{left:105.632000pt;}
.x11{left:110.742667pt;}
.x21{left:124.864000pt;}
.x5{left:125.813333pt;}
.x3d{left:154.306667pt;}
.x3{left:162.000000pt;}
.x22{left:174.466667pt;}
.x34{left:181.200000pt;}
.x24{left:186.960000pt;}
.x18{left:194.640000pt;}
.x3e{left:220.253333pt;}
.x2d{left:229.853333pt;}
.x35{left:265.373333pt;}
.xb{left:266.653333pt;}
.x25{left:274.653333pt;}
.x2e{left:325.893333pt;}
.x36{left:359.200000pt;}
.x26{left:375.200000pt;}
.x3c{left:396.960000pt;}
.x39{left:419.360000pt;}
.x29{left:435.080000pt;}
.x2f{left:440.200000pt;}
.x3f{left:447.240000pt;}
.x37{left:485.320000pt;}
.x27{left:495.240000pt;}
.xc{left:503.226667pt;}
.x31{left:506.120000pt;}
.x3a{left:547.440000pt;}
.x2a{left:553.200000pt;}
.x30{left:566.000000pt;}
.x40{left:572.400000pt;}
.xa{left:580.706667pt;}
.x28{left:606.973333pt;}
.x38{left:611.453333pt;}
.x32{left:626.173333pt;}
.x41{left:632.253333pt;}
.x3b{left:655.293333pt;}
.x2b{left:664.893333pt;}
.x9{left:680.933333pt;}
.x8{left:703.973333pt;}
.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; }
  