
    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_3cd73ef518e6eb9f74036801.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.073242;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_f071af8362f7b591d9fa9abe.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_25de136832ec5859dc3962de.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.858398;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_9b80b5efa3f781b22c452307.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.097168;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_1d25cb8a425369eb0495883d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_5cf76451b8099d818c05f49c.woff2')format("woff");}.ff6{font-family:ff6;line-height:2.979492;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_d08b4b88b72e9211a45c8e80.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.882812;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;}
.m2{transform:matrix(0.238106,0.000000,-0.076194,0.238106,0,0);-ms-transform:matrix(0.238106,0.000000,-0.076194,0.238106,0,0);-webkit-transform:matrix(0.238106,0.000000,-0.076194,0.238106,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-32.506526px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.634000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:9.230341px;}
.ls2{letter-spacing:38.117647px;}
.ls1{letter-spacing:179.352000px;}
.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;}
}
.ws48{word-spacing:-55.944000px;}
.ws6c{word-spacing:-41.022900px;}
.ws7a{word-spacing:-40.458600px;}
.ws6b{word-spacing:-40.451700px;}
.ws56{word-spacing:-40.293900px;}
.ws5c{word-spacing:-40.166100px;}
.ws93{word-spacing:-40.158900px;}
.ws73{word-spacing:-40.103700px;}
.ws91{word-spacing:-40.099500px;}
.ws5f{word-spacing:-40.095900px;}
.ws5b{word-spacing:-40.091400px;}
.ws72{word-spacing:-40.088700px;}
.ws92{word-spacing:-40.086000px;}
.ws78{word-spacing:-40.022100px;}
.ws7c{word-spacing:-39.742800px;}
.ws7e{word-spacing:-39.736500px;}
.ws57{word-spacing:-39.711600px;}
.ws58{word-spacing:-39.705600px;}
.ws7b{word-spacing:-39.596400px;}
.ws6d{word-spacing:-39.594600px;}
.ws80{word-spacing:-39.588300px;}
.ws5a{word-spacing:-39.584700px;}
.ws5e{word-spacing:-39.578700px;}
.ws77{word-spacing:-39.576000px;}
.ws79{word-spacing:-39.566100px;}
.ws6e{word-spacing:-39.529500px;}
.ws76{word-spacing:-39.515400px;}
.ws7f{word-spacing:-39.384000px;}
.ws59{word-spacing:-39.076200px;}
.ws74{word-spacing:-39.075300px;}
.ws6a{word-spacing:-38.878200px;}
.ws35{word-spacing:-38.804400px;}
.ws98{word-spacing:-38.801700px;}
.ws9{word-spacing:-38.786400px;}
.ws82{word-spacing:-38.735700px;}
.ws83{word-spacing:-38.725200px;}
.ws6f{word-spacing:-38.724900px;}
.ws90{word-spacing:-38.663700px;}
.ws68{word-spacing:-38.662200px;}
.ws40{word-spacing:-38.659200px;}
.ws6{word-spacing:-38.657700px;}
.ws3d{word-spacing:-38.654400px;}
.ws50{word-spacing:-38.652900px;}
.ws5{word-spacing:-38.647800px;}
.wsb0{word-spacing:-38.640900px;}
.ws8a{word-spacing:-38.578500px;}
.wsb{word-spacing:-38.426400px;}
.ws46{word-spacing:-38.376000px;}
.ws3{word-spacing:-38.374200px;}
.wsa4{word-spacing:-38.372100px;}
.ws1b{word-spacing:-38.302200px;}
.ws2c{word-spacing:-38.300400px;}
.ws3a{word-spacing:-38.295000px;}
.wse{word-spacing:-38.294700px;}
.ws33{word-spacing:-38.294100px;}
.ws25{word-spacing:-38.160000px;}
.ws84{word-spacing:-38.158200px;}
.ws65{word-spacing:-38.157000px;}
.ws27{word-spacing:-38.149200px;}
.ws29{word-spacing:-38.145600px;}
.ws17{word-spacing:-38.143800px;}
.ws71{word-spacing:-38.088000px;}
.wsa{word-spacing:-38.084400px;}
.ws8f{word-spacing:-38.003100px;}
.ws0{word-spacing:-37.944000px;}
.ws28{word-spacing:-37.939200px;}
.ws4{word-spacing:-37.938600px;}
.ws26{word-spacing:-37.935000px;}
.ws2{word-spacing:-37.931400px;}
.wsd{word-spacing:-37.929900px;}
.wsc{word-spacing:-37.929000px;}
.wsa6{word-spacing:-37.864800px;}
.ws85{word-spacing:-37.645200px;}
.wsb5{word-spacing:-37.440000px;}
.ws89{word-spacing:-37.431900px;}
.ws8e{word-spacing:-37.300200px;}
.ws24{word-spacing:-36.720000px;}
.ws9e{word-spacing:-36.502200px;}
.wsaf{word-spacing:-36.495900px;}
.ws2f{word-spacing:-35.992800px;}
.ws21{word-spacing:-35.277300px;}
.wsac{word-spacing:-35.063100px;}
.wsb2{word-spacing:-35.060400px;}
.ws60{word-spacing:-34.989300px;}
.ws39{word-spacing:-34.710000px;}
.wsb3{word-spacing:-34.560000px;}
.wsa5{word-spacing:-34.341300px;}
.ws16{word-spacing:-33.764400px;}
.ws4d{word-spacing:-33.754500px;}
.ws8{word-spacing:-33.547800px;}
.ws9f{word-spacing:-33.040800px;}
.ws23{word-spacing:-32.394600px;}
.ws13{word-spacing:-32.184000px;}
.ws63{word-spacing:-32.093400px;}
.ws30{word-spacing:-31.825500px;}
.wsaa{word-spacing:-31.676400px;}
.wsa2{word-spacing:-31.451400px;}
.ws66{word-spacing:-30.746400px;}
.ws8b{word-spacing:-30.738300px;}
.wsa7{word-spacing:-30.735900px;}
.ws95{word-spacing:-30.240000px;}
.ws3f{word-spacing:-30.015000px;}
.ws9d{word-spacing:-30.010500px;}
.ws9a{word-spacing:-29.310000px;}
.ws4b{word-spacing:-28.590000px;}
.ws10{word-spacing:-28.213800px;}
.wsf{word-spacing:-28.080000px;}
.ws20{word-spacing:-27.856800px;}
.ws55{word-spacing:-27.779400px;}
.ws64{word-spacing:-27.288000px;}
.ws8c{word-spacing:-27.282600px;}
.wsad{word-spacing:-27.143100px;}
.ws96{word-spacing:-26.420400px;}
.ws31{word-spacing:-25.704000px;}
.wsa9{word-spacing:-25.701300px;}
.wsa8{word-spacing:-25.700400px;}
.ws53{word-spacing:-25.337700px;}
.ws36{word-spacing:-25.329600px;}
.ws94{word-spacing:-25.128000px;}
.ws18{word-spacing:-23.031000px;}
.ws1c{word-spacing:-22.320000px;}
.ws1d{word-spacing:-22.104000px;}
.ws4c{word-spacing:-22.102200px;}
.ws97{word-spacing:-21.733200px;}
.ws3b{word-spacing:-21.436500px;}
.ws99{word-spacing:-20.858400px;}
.ws67{word-spacing:-20.595300px;}
.ws22{word-spacing:-20.586600px;}
.ws2e{word-spacing:-18.504000px;}
.ws7{word-spacing:-18.472500px;}
.ws14{word-spacing:-17.784000px;}
.wsb4{word-spacing:-17.783100px;}
.ws69{word-spacing:-17.424000px;}
.ws2d{word-spacing:-17.263800px;}
.ws81{word-spacing:-17.129400px;}
.ws15{word-spacing:-16.344000px;}
.ws86{word-spacing:-15.336000px;}
.ws52{word-spacing:-14.887800px;}
.ws2a{word-spacing:-14.622000px;}
.wsae{word-spacing:-14.400000px;}
.ws3c{word-spacing:-13.874400px;}
.ws34{word-spacing:-12.740400px;}
.ws37{word-spacing:-12.240000px;}
.ws38{word-spacing:-11.722500px;}
.wsa1{word-spacing:-11.298000px;}
.wsb1{word-spacing:-10.796400px;}
.ws19{word-spacing:-10.500300px;}
.ws9b{word-spacing:-9.360000px;}
.ws1e{word-spacing:-8.640000px;}
.ws1f{word-spacing:-8.637300px;}
.ws9c{word-spacing:-8.408700px;}
.ws87{word-spacing:-8.053800px;}
.ws3e{word-spacing:-6.978600px;}
.ws7d{word-spacing:-6.768000px;}
.ws75{word-spacing:-6.048000px;}
.ws32{word-spacing:-2.808000px;}
.ws49{word-spacing:-2.579400px;}
.ws88{word-spacing:-2.288700px;}
.wsa0{word-spacing:-0.491400px;}
.ws5d{word-spacing:0.000000px;}
.ws61{word-spacing:1.656000px;}
.wsa3{word-spacing:2.016000px;}
.ws8d{word-spacing:2.238300px;}
.ws11{word-spacing:6.696000px;}
.ws54{word-spacing:8.647200px;}
.ws70{word-spacing:9.872100px;}
.ws12{word-spacing:13.184100px;}
.ws1a{word-spacing:15.126000px;}
.ws62{word-spacing:17.136000px;}
.ws4f{word-spacing:17.149800px;}
.ws47{word-spacing:18.885600px;}
.ws2b{word-spacing:24.696000px;}
.ws4a{word-spacing:27.234900px;}
.ws51{word-spacing:27.873000px;}
.ws43{word-spacing:40.536000px;}
.ws44{word-spacing:43.416000px;}
.ws45{word-spacing:63.522900px;}
.ws4e{word-spacing:81.797400px;}
.wsab{word-spacing:87.342000px;}
.ws42{word-spacing:189.376200px;}
.ws41{word-spacing:375.633000px;}
.ws1{word-spacing:455.092800px;}
._28{margin-left:-7.349400px;}
._27{margin-left:-5.760900px;}
._2a{margin-left:-4.484700px;}
._10{margin-left:-2.390400px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._20{width:2.113271px;}
._2d{width:4.910400px;}
._29{width:9.670500px;}
._2b{width:11.072100px;}
._2c{width:12.117900px;}
._1f{width:17.580900px;}
._4{width:18.775800px;}
._11{width:20.304000px;}
._2f{width:21.449100px;}
._7{width:22.608000px;}
._a{width:24.037200px;}
._14{width:25.209900px;}
._f{width:26.864400px;}
._5{width:28.800000px;}
._25{width:30.240000px;}
._18{width:31.684800px;}
._17{width:32.817600px;}
._b{width:34.542000px;}
._1{width:36.000000px;}
._23{width:37.440000px;}
._8{width:39.184800px;}
._9{width:40.768800px;}
._12{width:42.414000px;}
._16{width:45.184800px;}
._c{width:46.987200px;}
._e{width:49.023900px;}
._1a{width:50.195400px;}
._15{width:54.144000px;}
._26{width:56.569200px;}
._22{width:58.680000px;}
._21{width:59.730000px;}
._1e{width:65.601600px;}
._24{width:67.063500px;}
._6{width:71.041200px;}
._d{width:72.642000px;}
._1d{width:74.938200px;}
._13{width:82.080000px;}
._19{width:85.333200px;}
._1b{width:97.488000px;}
._1c{width:120.509100px;}
._2e{width:144.984000px;}
._0{width:612.144000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(112,48,160);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:51.000000px;}
.fs4{font-size:53.547571px;}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:75.596571px;}
.y0{bottom:0.000000px;}
.y7c{bottom:3.750000px;}
.y86{bottom:3.780000px;}
.y75{bottom:3.796500px;}
.y60{bottom:3.811500px;}
.ya1{bottom:3.840000px;}
.y5e{bottom:3.855000px;}
.y78{bottom:3.871500px;}
.y54{bottom:3.886500px;}
.y43{bottom:3.900000px;}
.ybb{bottom:3.930000px;}
.y40{bottom:4.005000px;}
.ya5{bottom:4.096500px;}
.ybd{bottom:4.111500px;}
.y89{bottom:4.186500px;}
.y7{bottom:4.471500px;}
.y90{bottom:4.545000px;}
.y7e{bottom:4.605000px;}
.y62{bottom:4.665000px;}
.y97{bottom:4.695000px;}
.ya8{bottom:4.725000px;}
.y8e{bottom:5.265000px;}
.y8a{bottom:5.445000px;}
.y88{bottom:6.886500px;}
.ya4{bottom:6.975000px;}
.y74{bottom:9.240000px;}
.y8f{bottom:13.005000px;}
.yb9{bottom:14.550000px;}
.y57{bottom:14.700000px;}
.y58{bottom:15.061500px;}
.y5b{bottom:15.240000px;}
.y72{bottom:19.815000px;}
.y59{bottom:21.540000px;}
.y93{bottom:23.521500px;}
.y98{bottom:24.315000px;}
.y42{bottom:24.600000px;}
.y3f{bottom:24.705000px;}
.y79{bottom:24.750000px;}
.y94{bottom:24.780000px;}
.ybc{bottom:24.811500px;}
.y99{bottom:25.575000px;}
.yb8{bottom:35.070000px;}
.yb5{bottom:35.505000px;}
.y5c{bottom:35.940000px;}
.y3e{bottom:45.225000px;}
.y77{bottom:45.450000px;}
.y92{bottom:45.480000px;}
.yba{bottom:45.511500px;}
.y96{bottom:46.275000px;}
.y5a{bottom:56.820000px;}
.y56{bottom:57.361500px;}
.y6{bottom:72.825000px;}
.y5{bottom:77.655000px;}
.y32{bottom:102.315000px;}
.y3d{bottom:102.450000px;}
.y70{bottom:103.215000px;}
.y53{bottom:106.350000px;}
.yb3{bottom:113.836500px;}
.y31{bottom:122.836500px;}
.y6f{bottom:123.915000px;}
.ydc{bottom:138.496500px;}
.y30{bottom:143.536500px;}
.y6e{bottom:144.615000px;}
.y52{bottom:152.715000px;}
.yad{bottom:154.696500px;}
.yb2{bottom:155.596500px;}
.ydb{bottom:159.196500px;}
.y2f{bottom:164.236500px;}
.y6d{bottom:165.315000px;}
.yac{bottom:175.396500px;}
.y2e{bottom:184.936500px;}
.y6c{bottom:186.015000px;}
.y51{bottom:194.475000px;}
.yab{bottom:196.096500px;}
.yb1{bottom:197.175000px;}
.yda{bottom:200.775000px;}
.y2d{bottom:205.636500px;}
.yaa{bottom:216.795000px;}
.yd9{bottom:221.475000px;}
.y2c{bottom:226.336500px;}
.y6b{bottom:227.775000px;}
.ya9{bottom:237.496500px;}
.yd8{bottom:242.175000px;}
.y2b{bottom:247.036500px;}
.y6a{bottom:248.475000px;}
.yd7{bottom:262.875000px;}
.y2a{bottom:267.736500px;}
.y69{bottom:269.175000px;}
.y29{bottom:288.436500px;}
.y68{bottom:289.875000px;}
.ya7{bottom:295.950000px;}
.yaf{bottom:301.396500px;}
.yd6{bottom:304.636500px;}
.y28{bottom:309.136500px;}
.y67{bottom:310.575000px;}
.ya6{bottom:318.225000px;}
.yd5{bottom:325.336500px;}
.y27{bottom:329.836500px;}
.y66{bottom:331.275000px;}
.ya3{bottom:339.600000px;}
.yd4{bottom:346.036500px;}
.y26{bottom:350.536500px;}
.ya2{bottom:364.125000px;}
.y25{bottom:371.236500px;}
.y80{bottom:372.496500px;}
.ya0{bottom:385.575000px;}
.yd3{bottom:387.795000px;}
.y7d{bottom:389.850000px;}
.y24{bottom:391.936500px;}
.y95{bottom:396.600000px;}
.y9f{bottom:407.025000px;}
.yd2{bottom:408.496500px;}
.y7b{bottom:412.125000px;}
.y23{bottom:412.636500px;}
.y9e{bottom:428.475000px;}
.y22{bottom:433.336500px;}
.y7a{bottom:433.575000px;}
.y3c{bottom:450.075000px;}
.y21{bottom:454.036500px;}
.y76{bottom:455.025000px;}
.y91{bottom:460.575000px;}
.y3b{bottom:470.775000px;}
.y9d{bottom:474.375000px;}
.y20{bottom:474.736500px;}
.y3a{bottom:491.475000px;}
.y9c{bottom:495.075000px;}
.y1f{bottom:495.436500px;}
.y9b{bottom:515.775000px;}
.y1e{bottom:516.136500px;}
.y71{bottom:518.100000px;}
.y8d{bottom:523.650000px;}
.y39{bottom:533.236500px;}
.y9a{bottom:536.475000px;}
.y1d{bottom:536.836500px;}
.y73{bottom:539.475000px;}
.y8c{bottom:546.525000px;}
.y38{bottom:553.936500px;}
.y1c{bottom:557.536500px;}
.y8b{bottom:567.975000px;}
.y37{bottom:574.636500px;}
.y1b{bottom:578.236500px;}
.y87{bottom:589.350000px;}
.yd1{bottom:595.695000px;}
.y1a{bottom:598.936500px;}
.y65{bottom:602.896500px;}
.y85{bottom:613.875000px;}
.yd0{bottom:616.396500px;}
.y19{bottom:619.636500px;}
.ycf{bottom:637.096500px;}
.y18{bottom:640.336500px;}
.y64{bottom:644.475000px;}
.yce{bottom:657.795000px;}
.y84{bottom:660.136500px;}
.y17{bottom:661.036500px;}
.ycd{bottom:678.496500px;}
.y50{bottom:680.655000px;}
.y16{bottom:681.736500px;}
.ycc{bottom:699.195000px;}
.y83{bottom:701.896500px;}
.y15{bottom:702.436500px;}
.ycb{bottom:719.896500px;}
.y4f{bottom:722.055000px;}
.y14{bottom:723.136500px;}
.y63{bottom:727.996500px;}
.yca{bottom:740.596500px;}
.y13{bottom:743.836500px;}
.y4e{bottom:744.015000px;}
.yb0{bottom:746.715000px;}
.yae{bottom:755.536500px;}
.yc9{bottom:761.295000px;}
.y82{bottom:764.175000px;}
.y12{bottom:764.536500px;}
.y4d{bottom:765.975000px;}
.y7f{bottom:779.115000px;}
.yc8{bottom:781.996500px;}
.y81{bottom:784.875000px;}
.y11{bottom:785.236500px;}
.ye4{bottom:785.596500px;}
.y4c{bottom:786.675000px;}
.yc7{bottom:802.695000px;}
.y10{bottom:805.936500px;}
.ye3{bottom:806.295000px;}
.y4b{bottom:807.375000px;}
.yc6{bottom:823.395000px;}
.yf{bottom:826.636500px;}
.y4a{bottom:828.075000px;}
.yc5{bottom:844.096500px;}
.ye2{bottom:847.875000px;}
.y49{bottom:848.775000px;}
.yc4{bottom:864.795000px;}
.ye1{bottom:868.575000px;}
.y48{bottom:869.475000px;}
.yc3{bottom:885.495000px;}
.ye{bottom:889.095000px;}
.ye0{bottom:889.275000px;}
.y47{bottom:890.175000px;}
.yc2{bottom:906.195000px;}
.y46{bottom:910.875000px;}
.yc1{bottom:926.895000px;}
.yd{bottom:930.675000px;}
.ydf{bottom:931.036500px;}
.y45{bottom:931.575000px;}
.yde{bottom:951.736500px;}
.y44{bottom:952.275000px;}
.y61{bottom:963.450000px;}
.yc0{bottom:964.350000px;}
.yc{bottom:972.436500px;}
.y36{bottom:972.975000px;}
.y5f{bottom:985.725000px;}
.ybf{bottom:986.625000px;}
.ydd{bottom:993.495000px;}
.y35{bottom:993.675000px;}
.y5d{bottom:1007.100000px;}
.ybe{bottom:1008.075000px;}
.yb{bottom:1014.195000px;}
.y34{bottom:1014.375000px;}
.y55{bottom:1028.475000px;}
.yb4{bottom:1029.450000px;}
.yb7{bottom:1029.525000px;}
.y33{bottom:1035.075000px;}
.ya{bottom:1055.775000px;}
.y41{bottom:1072.575000px;}
.y9{bottom:1076.475000px;}
.yb6{bottom:1092.600000px;}
.y8{bottom:1097.175000px;}
.y4{bottom:1141.455000px;}
.y3{bottom:1162.155000px;}
.y2{bottom:1182.855000px;}
.y1{bottom:1203.375000px;}
.h5{height:20.175000px;}
.hd{height:21.375000px;}
.h9{height:21.450000px;}
.he{height:22.200000px;}
.h14{height:22.800000px;}
.h12{height:24.450000px;}
.h10{height:31.950000px;}
.h8{height:41.400000px;}
.h4{height:45.095654px;}
.h3{height:48.796875px;}
.hf{height:53.325000px;}
.h2{height:61.734375px;}
.h7{height:62.100000px;}
.h11{height:63.075000px;}
.h6{height:63.457031px;}
.h16{height:63.900000px;}
.h17{height:84.525000px;}
.ha{height:85.500000px;}
.hc{height:117.837891px;}
.h15{height:142.162896px;}
.h13{height:166.359375px;}
.hb{height:174.669422px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:33.450000px;}
.w16{width:47.625000px;}
.wc{width:61.800000px;}
.wb{width:62.850000px;}
.w7{width:113.925000px;}
.w15{width:117.000000px;}
.wa{width:118.650000px;}
.w5{width:124.575000px;}
.w8{width:154.275000px;}
.w12{width:159.675000px;}
.w9{width:163.275000px;}
.w1a{width:168.675000px;}
.w13{width:170.100000px;}
.w18{width:175.875000px;}
.we{width:180.525000px;}
.w11{width:190.125000px;}
.w14{width:202.125000px;}
.wf{width:202.350000px;}
.w10{width:218.025000px;}
.wd{width:233.925000px;}
.w19{width:256.650000px;}
.w3{width:343.200000px;}
.w4{width:374.775000px;}
.w6{width:549.900000px;}
.w17{width:601.050000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:8.145000px;}
.x21{left:12.360000px;}
.xf{left:21.163500px;}
.x13{left:51.855000px;}
.x10{left:55.005000px;}
.x22{left:68.010000px;}
.x11{left:69.763500px;}
.x1f{left:72.150000px;}
.x1b{left:77.775000px;}
.x25{left:82.050000px;}
.x20{left:89.610000px;}
.xb{left:119.475000px;}
.x1{left:127.620000px;}
.x16{left:131.938500px;}
.xd{left:146.475000px;}
.x17{left:162.360000px;}
.x26{left:182.925000px;}
.x5{left:187.920000px;}
.x18{left:199.425000px;}
.x4{left:203.580000px;}
.x15{left:209.250000px;}
.x6{left:212.400000px;}
.x1c{left:222.000000px;}
.x27{left:230.475000px;}
.x9{left:255.420000px;}
.x23{left:269.025000px;}
.xe{left:270.975000px;}
.x12{left:384.825000px;}
.x28{left:406.275000px;}
.x19{left:433.275000px;}
.x1d{left:439.950000px;}
.x3{left:461.625000px;}
.xa{left:538.738500px;}
.x1a{left:613.725000px;}
.x1e{left:630.000000px;}
.x24{left:641.100000px;}
.x29{left:662.850000px;}
.x14{left:702.225000px;}
.x7{left:709.378500px;}
.x2{left:731.160000px;}
.x8{left:744.838500px;}
@media print{
.v2{vertical-align:-28.894689pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.674667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:8.204748pt;}
.ls2{letter-spacing:33.882353pt;}
.ls1{letter-spacing:159.424000pt;}
.ws48{word-spacing:-49.728000pt;}
.ws6c{word-spacing:-36.464800pt;}
.ws7a{word-spacing:-35.963200pt;}
.ws6b{word-spacing:-35.957067pt;}
.ws56{word-spacing:-35.816800pt;}
.ws5c{word-spacing:-35.703200pt;}
.ws93{word-spacing:-35.696800pt;}
.ws73{word-spacing:-35.647733pt;}
.ws91{word-spacing:-35.644000pt;}
.ws5f{word-spacing:-35.640800pt;}
.ws5b{word-spacing:-35.636800pt;}
.ws72{word-spacing:-35.634400pt;}
.ws92{word-spacing:-35.632000pt;}
.ws78{word-spacing:-35.575200pt;}
.ws7c{word-spacing:-35.326933pt;}
.ws7e{word-spacing:-35.321333pt;}
.ws57{word-spacing:-35.299200pt;}
.ws58{word-spacing:-35.293867pt;}
.ws7b{word-spacing:-35.196800pt;}
.ws6d{word-spacing:-35.195200pt;}
.ws80{word-spacing:-35.189600pt;}
.ws5a{word-spacing:-35.186400pt;}
.ws5e{word-spacing:-35.181067pt;}
.ws77{word-spacing:-35.178667pt;}
.ws79{word-spacing:-35.169867pt;}
.ws6e{word-spacing:-35.137333pt;}
.ws76{word-spacing:-35.124800pt;}
.ws7f{word-spacing:-35.008000pt;}
.ws59{word-spacing:-34.734400pt;}
.ws74{word-spacing:-34.733600pt;}
.ws6a{word-spacing:-34.558400pt;}
.ws35{word-spacing:-34.492800pt;}
.ws98{word-spacing:-34.490400pt;}
.ws9{word-spacing:-34.476800pt;}
.ws82{word-spacing:-34.431733pt;}
.ws83{word-spacing:-34.422400pt;}
.ws6f{word-spacing:-34.422133pt;}
.ws90{word-spacing:-34.367733pt;}
.ws68{word-spacing:-34.366400pt;}
.ws40{word-spacing:-34.363733pt;}
.ws6{word-spacing:-34.362400pt;}
.ws3d{word-spacing:-34.359467pt;}
.ws50{word-spacing:-34.358133pt;}
.ws5{word-spacing:-34.353600pt;}
.wsb0{word-spacing:-34.347467pt;}
.ws8a{word-spacing:-34.292000pt;}
.wsb{word-spacing:-34.156800pt;}
.ws46{word-spacing:-34.112000pt;}
.ws3{word-spacing:-34.110400pt;}
.wsa4{word-spacing:-34.108533pt;}
.ws1b{word-spacing:-34.046400pt;}
.ws2c{word-spacing:-34.044800pt;}
.ws3a{word-spacing:-34.040000pt;}
.wse{word-spacing:-34.039733pt;}
.ws33{word-spacing:-34.039200pt;}
.ws25{word-spacing:-33.920000pt;}
.ws84{word-spacing:-33.918400pt;}
.ws65{word-spacing:-33.917333pt;}
.ws27{word-spacing:-33.910400pt;}
.ws29{word-spacing:-33.907200pt;}
.ws17{word-spacing:-33.905600pt;}
.ws71{word-spacing:-33.856000pt;}
.wsa{word-spacing:-33.852800pt;}
.ws8f{word-spacing:-33.780533pt;}
.ws0{word-spacing:-33.728000pt;}
.ws28{word-spacing:-33.723733pt;}
.ws4{word-spacing:-33.723200pt;}
.ws26{word-spacing:-33.720000pt;}
.ws2{word-spacing:-33.716800pt;}
.wsd{word-spacing:-33.715467pt;}
.wsc{word-spacing:-33.714667pt;}
.wsa6{word-spacing:-33.657600pt;}
.ws85{word-spacing:-33.462400pt;}
.wsb5{word-spacing:-33.280000pt;}
.ws89{word-spacing:-33.272800pt;}
.ws8e{word-spacing:-33.155733pt;}
.ws24{word-spacing:-32.640000pt;}
.ws9e{word-spacing:-32.446400pt;}
.wsaf{word-spacing:-32.440800pt;}
.ws2f{word-spacing:-31.993600pt;}
.ws21{word-spacing:-31.357600pt;}
.wsac{word-spacing:-31.167200pt;}
.wsb2{word-spacing:-31.164800pt;}
.ws60{word-spacing:-31.101600pt;}
.ws39{word-spacing:-30.853333pt;}
.wsb3{word-spacing:-30.720000pt;}
.wsa5{word-spacing:-30.525600pt;}
.ws16{word-spacing:-30.012800pt;}
.ws4d{word-spacing:-30.004000pt;}
.ws8{word-spacing:-29.820267pt;}
.ws9f{word-spacing:-29.369600pt;}
.ws23{word-spacing:-28.795200pt;}
.ws13{word-spacing:-28.608000pt;}
.ws63{word-spacing:-28.527467pt;}
.ws30{word-spacing:-28.289333pt;}
.wsaa{word-spacing:-28.156800pt;}
.wsa2{word-spacing:-27.956800pt;}
.ws66{word-spacing:-27.330133pt;}
.ws8b{word-spacing:-27.322933pt;}
.wsa7{word-spacing:-27.320800pt;}
.ws95{word-spacing:-26.880000pt;}
.ws3f{word-spacing:-26.680000pt;}
.ws9d{word-spacing:-26.676000pt;}
.ws9a{word-spacing:-26.053333pt;}
.ws4b{word-spacing:-25.413333pt;}
.ws10{word-spacing:-25.078933pt;}
.wsf{word-spacing:-24.960000pt;}
.ws20{word-spacing:-24.761600pt;}
.ws55{word-spacing:-24.692800pt;}
.ws64{word-spacing:-24.256000pt;}
.ws8c{word-spacing:-24.251200pt;}
.wsad{word-spacing:-24.127200pt;}
.ws96{word-spacing:-23.484800pt;}
.ws31{word-spacing:-22.848000pt;}
.wsa9{word-spacing:-22.845600pt;}
.wsa8{word-spacing:-22.844800pt;}
.ws53{word-spacing:-22.522400pt;}
.ws36{word-spacing:-22.515200pt;}
.ws94{word-spacing:-22.336000pt;}
.ws18{word-spacing:-20.472000pt;}
.ws1c{word-spacing:-19.840000pt;}
.ws1d{word-spacing:-19.648000pt;}
.ws4c{word-spacing:-19.646400pt;}
.ws97{word-spacing:-19.318400pt;}
.ws3b{word-spacing:-19.054667pt;}
.ws99{word-spacing:-18.540800pt;}
.ws67{word-spacing:-18.306933pt;}
.ws22{word-spacing:-18.299200pt;}
.ws2e{word-spacing:-16.448000pt;}
.ws7{word-spacing:-16.420000pt;}
.ws14{word-spacing:-15.808000pt;}
.wsb4{word-spacing:-15.807200pt;}
.ws69{word-spacing:-15.488000pt;}
.ws2d{word-spacing:-15.345600pt;}
.ws81{word-spacing:-15.226133pt;}
.ws15{word-spacing:-14.528000pt;}
.ws86{word-spacing:-13.632000pt;}
.ws52{word-spacing:-13.233600pt;}
.ws2a{word-spacing:-12.997333pt;}
.wsae{word-spacing:-12.800000pt;}
.ws3c{word-spacing:-12.332800pt;}
.ws34{word-spacing:-11.324800pt;}
.ws37{word-spacing:-10.880000pt;}
.ws38{word-spacing:-10.420000pt;}
.wsa1{word-spacing:-10.042667pt;}
.wsb1{word-spacing:-9.596800pt;}
.ws19{word-spacing:-9.333600pt;}
.ws9b{word-spacing:-8.320000pt;}
.ws1e{word-spacing:-7.680000pt;}
.ws1f{word-spacing:-7.677600pt;}
.ws9c{word-spacing:-7.474400pt;}
.ws87{word-spacing:-7.158933pt;}
.ws3e{word-spacing:-6.203200pt;}
.ws7d{word-spacing:-6.016000pt;}
.ws75{word-spacing:-5.376000pt;}
.ws32{word-spacing:-2.496000pt;}
.ws49{word-spacing:-2.292800pt;}
.ws88{word-spacing:-2.034400pt;}
.wsa0{word-spacing:-0.436800pt;}
.ws5d{word-spacing:0.000000pt;}
.ws61{word-spacing:1.472000pt;}
.wsa3{word-spacing:1.792000pt;}
.ws8d{word-spacing:1.989600pt;}
.ws11{word-spacing:5.952000pt;}
.ws54{word-spacing:7.686400pt;}
.ws70{word-spacing:8.775200pt;}
.ws12{word-spacing:11.719200pt;}
.ws1a{word-spacing:13.445333pt;}
.ws62{word-spacing:15.232000pt;}
.ws4f{word-spacing:15.244267pt;}
.ws47{word-spacing:16.787200pt;}
.ws2b{word-spacing:21.952000pt;}
.ws4a{word-spacing:24.208800pt;}
.ws51{word-spacing:24.776000pt;}
.ws43{word-spacing:36.032000pt;}
.ws44{word-spacing:38.592000pt;}
.ws45{word-spacing:56.464800pt;}
.ws4e{word-spacing:72.708800pt;}
.wsab{word-spacing:77.637333pt;}
.ws42{word-spacing:168.334400pt;}
.ws41{word-spacing:333.896000pt;}
.ws1{word-spacing:404.526933pt;}
._28{margin-left:-6.532800pt;}
._27{margin-left:-5.120800pt;}
._2a{margin-left:-3.986400pt;}
._10{margin-left:-2.124800pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._20{width:1.878463pt;}
._2d{width:4.364800pt;}
._29{width:8.596000pt;}
._2b{width:9.841867pt;}
._2c{width:10.771467pt;}
._1f{width:15.627467pt;}
._4{width:16.689600pt;}
._11{width:18.048000pt;}
._2f{width:19.065867pt;}
._7{width:20.096000pt;}
._a{width:21.366400pt;}
._14{width:22.408800pt;}
._f{width:23.879467pt;}
._5{width:25.600000pt;}
._25{width:26.880000pt;}
._18{width:28.164267pt;}
._17{width:29.171200pt;}
._b{width:30.704000pt;}
._1{width:32.000000pt;}
._23{width:33.280000pt;}
._8{width:34.830933pt;}
._9{width:36.238933pt;}
._12{width:37.701333pt;}
._16{width:40.164267pt;}
._c{width:41.766400pt;}
._e{width:43.576800pt;}
._1a{width:44.618133pt;}
._15{width:48.128000pt;}
._26{width:50.283733pt;}
._22{width:52.160000pt;}
._21{width:53.093333pt;}
._1e{width:58.312533pt;}
._24{width:59.612000pt;}
._6{width:63.147733pt;}
._d{width:64.570667pt;}
._1d{width:66.611733pt;}
._13{width:72.960000pt;}
._19{width:75.851733pt;}
._1b{width:86.656000pt;}
._1c{width:107.119200pt;}
._2e{width:128.874667pt;}
._0{width:544.128000pt;}
.fs3{font-size:45.333333pt;}
.fs4{font-size:47.597841pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:67.196952pt;}
.y0{bottom:0.000000pt;}
.y7c{bottom:3.333333pt;}
.y86{bottom:3.360000pt;}
.y75{bottom:3.374667pt;}
.y60{bottom:3.388000pt;}
.ya1{bottom:3.413333pt;}
.y5e{bottom:3.426667pt;}
.y78{bottom:3.441333pt;}
.y54{bottom:3.454667pt;}
.y43{bottom:3.466667pt;}
.ybb{bottom:3.493333pt;}
.y40{bottom:3.560000pt;}
.ya5{bottom:3.641333pt;}
.ybd{bottom:3.654667pt;}
.y89{bottom:3.721333pt;}
.y7{bottom:3.974667pt;}
.y90{bottom:4.040000pt;}
.y7e{bottom:4.093333pt;}
.y62{bottom:4.146667pt;}
.y97{bottom:4.173333pt;}
.ya8{bottom:4.200000pt;}
.y8e{bottom:4.680000pt;}
.y8a{bottom:4.840000pt;}
.y88{bottom:6.121333pt;}
.ya4{bottom:6.200000pt;}
.y74{bottom:8.213333pt;}
.y8f{bottom:11.560000pt;}
.yb9{bottom:12.933333pt;}
.y57{bottom:13.066667pt;}
.y58{bottom:13.388000pt;}
.y5b{bottom:13.546667pt;}
.y72{bottom:17.613333pt;}
.y59{bottom:19.146667pt;}
.y93{bottom:20.908000pt;}
.y98{bottom:21.613333pt;}
.y42{bottom:21.866667pt;}
.y3f{bottom:21.960000pt;}
.y79{bottom:22.000000pt;}
.y94{bottom:22.026667pt;}
.ybc{bottom:22.054667pt;}
.y99{bottom:22.733333pt;}
.yb8{bottom:31.173333pt;}
.yb5{bottom:31.560000pt;}
.y5c{bottom:31.946667pt;}
.y3e{bottom:40.200000pt;}
.y77{bottom:40.400000pt;}
.y92{bottom:40.426667pt;}
.yba{bottom:40.454667pt;}
.y96{bottom:41.133333pt;}
.y5a{bottom:50.506667pt;}
.y56{bottom:50.988000pt;}
.y6{bottom:64.733333pt;}
.y5{bottom:69.026667pt;}
.y32{bottom:90.946667pt;}
.y3d{bottom:91.066667pt;}
.y70{bottom:91.746667pt;}
.y53{bottom:94.533333pt;}
.yb3{bottom:101.188000pt;}
.y31{bottom:109.188000pt;}
.y6f{bottom:110.146667pt;}
.ydc{bottom:123.108000pt;}
.y30{bottom:127.588000pt;}
.y6e{bottom:128.546667pt;}
.y52{bottom:135.746667pt;}
.yad{bottom:137.508000pt;}
.yb2{bottom:138.308000pt;}
.ydb{bottom:141.508000pt;}
.y2f{bottom:145.988000pt;}
.y6d{bottom:146.946667pt;}
.yac{bottom:155.908000pt;}
.y2e{bottom:164.388000pt;}
.y6c{bottom:165.346667pt;}
.y51{bottom:172.866667pt;}
.yab{bottom:174.308000pt;}
.yb1{bottom:175.266667pt;}
.yda{bottom:178.466667pt;}
.y2d{bottom:182.788000pt;}
.yaa{bottom:192.706667pt;}
.yd9{bottom:196.866667pt;}
.y2c{bottom:201.188000pt;}
.y6b{bottom:202.466667pt;}
.ya9{bottom:211.108000pt;}
.yd8{bottom:215.266667pt;}
.y2b{bottom:219.588000pt;}
.y6a{bottom:220.866667pt;}
.yd7{bottom:233.666667pt;}
.y2a{bottom:237.988000pt;}
.y69{bottom:239.266667pt;}
.y29{bottom:256.388000pt;}
.y68{bottom:257.666667pt;}
.ya7{bottom:263.066667pt;}
.yaf{bottom:267.908000pt;}
.yd6{bottom:270.788000pt;}
.y28{bottom:274.788000pt;}
.y67{bottom:276.066667pt;}
.ya6{bottom:282.866667pt;}
.yd5{bottom:289.188000pt;}
.y27{bottom:293.188000pt;}
.y66{bottom:294.466667pt;}
.ya3{bottom:301.866667pt;}
.yd4{bottom:307.588000pt;}
.y26{bottom:311.588000pt;}
.ya2{bottom:323.666667pt;}
.y25{bottom:329.988000pt;}
.y80{bottom:331.108000pt;}
.ya0{bottom:342.733333pt;}
.yd3{bottom:344.706667pt;}
.y7d{bottom:346.533333pt;}
.y24{bottom:348.388000pt;}
.y95{bottom:352.533333pt;}
.y9f{bottom:361.800000pt;}
.yd2{bottom:363.108000pt;}
.y7b{bottom:366.333333pt;}
.y23{bottom:366.788000pt;}
.y9e{bottom:380.866667pt;}
.y22{bottom:385.188000pt;}
.y7a{bottom:385.400000pt;}
.y3c{bottom:400.066667pt;}
.y21{bottom:403.588000pt;}
.y76{bottom:404.466667pt;}
.y91{bottom:409.400000pt;}
.y3b{bottom:418.466667pt;}
.y9d{bottom:421.666667pt;}
.y20{bottom:421.988000pt;}
.y3a{bottom:436.866667pt;}
.y9c{bottom:440.066667pt;}
.y1f{bottom:440.388000pt;}
.y9b{bottom:458.466667pt;}
.y1e{bottom:458.788000pt;}
.y71{bottom:460.533333pt;}
.y8d{bottom:465.466667pt;}
.y39{bottom:473.988000pt;}
.y9a{bottom:476.866667pt;}
.y1d{bottom:477.188000pt;}
.y73{bottom:479.533333pt;}
.y8c{bottom:485.800000pt;}
.y38{bottom:492.388000pt;}
.y1c{bottom:495.588000pt;}
.y8b{bottom:504.866667pt;}
.y37{bottom:510.788000pt;}
.y1b{bottom:513.988000pt;}
.y87{bottom:523.866667pt;}
.yd1{bottom:529.506667pt;}
.y1a{bottom:532.388000pt;}
.y65{bottom:535.908000pt;}
.y85{bottom:545.666667pt;}
.yd0{bottom:547.908000pt;}
.y19{bottom:550.788000pt;}
.ycf{bottom:566.308000pt;}
.y18{bottom:569.188000pt;}
.y64{bottom:572.866667pt;}
.yce{bottom:584.706667pt;}
.y84{bottom:586.788000pt;}
.y17{bottom:587.588000pt;}
.ycd{bottom:603.108000pt;}
.y50{bottom:605.026667pt;}
.y16{bottom:605.988000pt;}
.ycc{bottom:621.506667pt;}
.y83{bottom:623.908000pt;}
.y15{bottom:624.388000pt;}
.ycb{bottom:639.908000pt;}
.y4f{bottom:641.826667pt;}
.y14{bottom:642.788000pt;}
.y63{bottom:647.108000pt;}
.yca{bottom:658.308000pt;}
.y13{bottom:661.188000pt;}
.y4e{bottom:661.346667pt;}
.yb0{bottom:663.746667pt;}
.yae{bottom:671.588000pt;}
.yc9{bottom:676.706667pt;}
.y82{bottom:679.266667pt;}
.y12{bottom:679.588000pt;}
.y4d{bottom:680.866667pt;}
.y7f{bottom:692.546667pt;}
.yc8{bottom:695.108000pt;}
.y81{bottom:697.666667pt;}
.y11{bottom:697.988000pt;}
.ye4{bottom:698.308000pt;}
.y4c{bottom:699.266667pt;}
.yc7{bottom:713.506667pt;}
.y10{bottom:716.388000pt;}
.ye3{bottom:716.706667pt;}
.y4b{bottom:717.666667pt;}
.yc6{bottom:731.906667pt;}
.yf{bottom:734.788000pt;}
.y4a{bottom:736.066667pt;}
.yc5{bottom:750.308000pt;}
.ye2{bottom:753.666667pt;}
.y49{bottom:754.466667pt;}
.yc4{bottom:768.706667pt;}
.ye1{bottom:772.066667pt;}
.y48{bottom:772.866667pt;}
.yc3{bottom:787.106667pt;}
.ye{bottom:790.306667pt;}
.ye0{bottom:790.466667pt;}
.y47{bottom:791.266667pt;}
.yc2{bottom:805.506667pt;}
.y46{bottom:809.666667pt;}
.yc1{bottom:823.906667pt;}
.yd{bottom:827.266667pt;}
.ydf{bottom:827.588000pt;}
.y45{bottom:828.066667pt;}
.yde{bottom:845.988000pt;}
.y44{bottom:846.466667pt;}
.y61{bottom:856.400000pt;}
.yc0{bottom:857.200000pt;}
.yc{bottom:864.388000pt;}
.y36{bottom:864.866667pt;}
.y5f{bottom:876.200000pt;}
.ybf{bottom:877.000000pt;}
.ydd{bottom:883.106667pt;}
.y35{bottom:883.266667pt;}
.y5d{bottom:895.200000pt;}
.ybe{bottom:896.066667pt;}
.yb{bottom:901.506667pt;}
.y34{bottom:901.666667pt;}
.y55{bottom:914.200000pt;}
.yb4{bottom:915.066667pt;}
.yb7{bottom:915.133333pt;}
.y33{bottom:920.066667pt;}
.ya{bottom:938.466667pt;}
.y41{bottom:953.400000pt;}
.y9{bottom:956.866667pt;}
.yb6{bottom:971.200000pt;}
.y8{bottom:975.266667pt;}
.y4{bottom:1014.626667pt;}
.y3{bottom:1033.026667pt;}
.y2{bottom:1051.426667pt;}
.y1{bottom:1069.666667pt;}
.h5{height:17.933333pt;}
.hd{height:19.000000pt;}
.h9{height:19.066667pt;}
.he{height:19.733333pt;}
.h14{height:20.266667pt;}
.h12{height:21.733333pt;}
.h10{height:28.400000pt;}
.h8{height:36.800000pt;}
.h4{height:40.085026pt;}
.h3{height:43.375000pt;}
.hf{height:47.400000pt;}
.h2{height:54.875000pt;}
.h7{height:55.200000pt;}
.h11{height:56.066667pt;}
.h6{height:56.406250pt;}
.h16{height:56.800000pt;}
.h17{height:75.133333pt;}
.ha{height:76.000000pt;}
.hc{height:104.744792pt;}
.h15{height:126.367019pt;}
.h13{height:147.875000pt;}
.hb{height:155.261708pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:29.733333pt;}
.w16{width:42.333333pt;}
.wc{width:54.933333pt;}
.wb{width:55.866667pt;}
.w7{width:101.266667pt;}
.w15{width:104.000000pt;}
.wa{width:105.466667pt;}
.w5{width:110.733333pt;}
.w8{width:137.133333pt;}
.w12{width:141.933333pt;}
.w9{width:145.133333pt;}
.w1a{width:149.933333pt;}
.w13{width:151.200000pt;}
.w18{width:156.333333pt;}
.we{width:160.466667pt;}
.w11{width:169.000000pt;}
.w14{width:179.666667pt;}
.wf{width:179.866667pt;}
.w10{width:193.800000pt;}
.wd{width:207.933333pt;}
.w19{width:228.133333pt;}
.w3{width:305.066667pt;}
.w4{width:333.133333pt;}
.w6{width:488.800000pt;}
.w17{width:534.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:7.240000pt;}
.x21{left:10.986667pt;}
.xf{left:18.812000pt;}
.x13{left:46.093333pt;}
.x10{left:48.893333pt;}
.x22{left:60.453333pt;}
.x11{left:62.012000pt;}
.x1f{left:64.133333pt;}
.x1b{left:69.133333pt;}
.x25{left:72.933333pt;}
.x20{left:79.653333pt;}
.xb{left:106.200000pt;}
.x1{left:113.440000pt;}
.x16{left:117.278667pt;}
.xd{left:130.200000pt;}
.x17{left:144.320000pt;}
.x26{left:162.600000pt;}
.x5{left:167.040000pt;}
.x18{left:177.266667pt;}
.x4{left:180.960000pt;}
.x15{left:186.000000pt;}
.x6{left:188.800000pt;}
.x1c{left:197.333333pt;}
.x27{left:204.866667pt;}
.x9{left:227.040000pt;}
.x23{left:239.133333pt;}
.xe{left:240.866667pt;}
.x12{left:342.066667pt;}
.x28{left:361.133333pt;}
.x19{left:385.133333pt;}
.x1d{left:391.066667pt;}
.x3{left:410.333333pt;}
.xa{left:478.878667pt;}
.x1a{left:545.533333pt;}
.x1e{left:560.000000pt;}
.x24{left:569.866667pt;}
.x29{left:589.200000pt;}
.x14{left:624.200000pt;}
.x7{left:630.558667pt;}
.x2{left:649.920000pt;}
.x8{left:662.078667pt;}
}




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