
    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_d5eea62fe3d242377656bf47.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_997f2e30d0c507b896ae89b9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.665000;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_1bfa70127dcc9a1f28c2a84b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.904000;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_6a12d4edf3537a66523eaf01.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900000;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_f81bc741d5ca698bc3727959.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.890000;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_3b785126a1a2b4894a37cf25.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921000;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_331ae444292b8c47eca709fb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.684000;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_7fefd52171e05df8f7e31e96.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.931152;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_9789ec63ef268116d033965d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.966797;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_f94976a543836856e88e133b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.932129;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_79e70130884aa023a770db21.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.966797;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_f62e1146b77a69934f11662a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.806000;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_7df5def76ef7ec87037354e1.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.931152;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_9789ec63ef268116d033965d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.966797;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_b0d7e1f359af4490867cef72.woff2')format("woff");}.fff{font-family:fff;line-height:0.932129;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:ff10;src:url('chunks/assets/font_79e70130884aa023a770db21.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.966797;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:ff11;src:url('chunks/assets/font_38949d0f4bc45f3184ac717c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.908000;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:ff12;src:url('chunks/assets/font_115381adedbf19f34e67e083.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.714000;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;}
.m3{transform:matrix(0.000000,-0.250021,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250021,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250021,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250021,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250024,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:-23.754000px;}
.v3{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.754000px;}
.ls6{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.000366px;}
.lsb{letter-spacing:0.000562px;}
.ls18{letter-spacing:0.000993px;}
.ls0{letter-spacing:0.001490px;}
.ls13{letter-spacing:0.002727px;}
.ls7{letter-spacing:0.004379px;}
.ls19{letter-spacing:0.840017px;}
.ls4{letter-spacing:2.964877px;}
.lsa{letter-spacing:2.984525px;}
.ls1{letter-spacing:2.984915px;}
.ls1a{letter-spacing:2.987675px;}
.ls5{letter-spacing:2.988780px;}
.ls2{letter-spacing:2.990915px;}
.ls9{letter-spacing:15.744562px;}
.ls17{letter-spacing:17.442993px;}
.ls8{letter-spacing:18.728525px;}
.lsc{letter-spacing:23.906525px;}
.ls3{letter-spacing:26.000915px;}
.ls15{letter-spacing:26.460562px;}
.ls12{letter-spacing:29.322562px;}
.ls14{letter-spacing:29.438525px;}
.ls16{letter-spacing:29.444525px;}
.ls11{letter-spacing:32.312525px;}
.lsf{letter-spacing:122.606525px;}
.lsd{letter-spacing:163.498200px;}
.ls10{letter-spacing:211.126200px;}
.lse{letter-spacing:461.786525px;}
.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;}
}
.ws42{word-spacing:-38.937826px;}
.ws54{word-spacing:-30.629017px;}
.ws69{word-spacing:-17.932680px;}
.ws66{word-spacing:-14.943900px;}
.wse{word-spacing:-14.920027px;}
.ws53{word-spacing:-9.834496px;}
.ws49{word-spacing:-2.988780px;}
.ws8{word-spacing:-1.075968px;}
.ws43{word-spacing:-0.956410px;}
.ws2{word-spacing:-0.053798px;}
.ws3b{word-spacing:0.000000px;}
.ws19{word-spacing:0.179327px;}
.ws47{word-spacing:0.358654px;}
.ws37{word-spacing:0.478205px;}
.ws46{word-spacing:0.777083px;}
.ws5b{word-spacing:0.896634px;}
.ws79{word-spacing:1.147694px;}
.ws83{word-spacing:1.625900px;}
.ws67{word-spacing:1.673721px;}
.ws34{word-spacing:1.733492px;}
.ws18{word-spacing:1.793268px;}
.ws41{word-spacing:1.912819px;}
.ws84{word-spacing:2.029139px;}
.ws5e{word-spacing:2.391024px;}
.ws68{word-spacing:2.438851px;}
.ws1c{word-spacing:2.510575px;}
.ws2b{word-spacing:2.630126px;}
.ws1e{word-spacing:2.869229px;}
.ws36{word-spacing:2.988780px;}
.ws87{word-spacing:3.060518px;}
.ws82{word-spacing:3.108339px;}
.ws6b{word-spacing:3.227882px;}
.ws3{word-spacing:3.281702px;}
.ws3a{word-spacing:3.586545px;}
.ws35{word-spacing:3.646312px;}
.ws26{word-spacing:3.825638px;}
.ws74{word-spacing:3.837619px;}
.ws24{word-spacing:4.004965px;}
.ws10{word-spacing:4.124516px;}
.ws7f{word-spacing:4.208213px;}
.ws4b{word-spacing:4.244068px;}
.ws6a{word-spacing:4.303843px;}
.ws70{word-spacing:4.363619px;}
.ws73{word-spacing:4.638598px;}
.ws30{word-spacing:4.782060px;}
.ws38{word-spacing:4.901599px;}
.ws4{word-spacing:5.379840px;}
.ws8c{word-spacing:5.499369px;}
.ws88{word-spacing:5.642831px;}
.wsc{word-spacing:5.702630px;}
.ws89{word-spacing:5.834113px;}
.ws15{word-spacing:5.977560px;}
.ws40{word-spacing:6.037336px;}
.ws72{word-spacing:6.073216px;}
.ws5a{word-spacing:6.156887px;}
.ws1{word-spacing:6.575340px;}
.wsa{word-spacing:6.724800px;}
.ws1a{word-spacing:6.754643px;}
.ws5{word-spacing:6.993792px;}
.ws48{word-spacing:7.232848px;}
.ws57{word-spacing:7.268731px;}
.ws2a{word-spacing:7.292623px;}
.ws6d{word-spacing:7.531726px;}
.ws9{word-spacing:7.639373px;}
.ws55{word-spacing:7.651296px;}
.ws5d{word-spacing:7.950155px;}
.ws31{word-spacing:8.009930px;}
.ws1d{word-spacing:8.308808px;}
.ws4d{word-spacing:8.488135px;}
.ws16{word-spacing:8.607686px;}
.ws2e{word-spacing:8.667462px;}
.ws7d{word-spacing:8.942452px;}
.ws65{word-spacing:8.966340px;}
.ws5c{word-spacing:9.026116px;}
.ws29{word-spacing:9.384769px;}
.ws4e{word-spacing:9.504320px;}
.ws11{word-spacing:9.803198px;}
.ws7{word-spacing:9.898906px;}
.ws1b{word-spacing:10.102076px;}
.ws4f{word-spacing:10.161852px;}
.ws33{word-spacing:10.221628px;}
.ws44{word-spacing:10.341179px;}
.ws21{word-spacing:10.759608px;}
.ws0{word-spacing:10.759680px;}
.ws1f{word-spacing:10.998710px;}
.ws2f{word-spacing:11.058486px;}
.ws28{word-spacing:11.118262px;}
.wsf{word-spacing:11.417140px;}
.ws64{word-spacing:11.476915px;}
.ws61{word-spacing:11.510134px;}
.ws63{word-spacing:11.536691px;}
.ws4a{word-spacing:11.835569px;}
.ws2c{word-spacing:11.955120px;}
.ws7e{word-spacing:12.098612px;}
.ws56{word-spacing:12.194253px;}
.ws6e{word-spacing:12.373549px;}
.ws6f{word-spacing:12.552876px;}
.ws71{word-spacing:12.791978px;}
.ws3f{word-spacing:12.851754px;}
.ws7a{word-spacing:13.055024px;}
.ws3e{word-spacing:13.329959px;}
.ws3d{word-spacing:13.808164px;}
.ws58{word-spacing:13.927715px;}
.ws85{word-spacing:13.963615px;}
.ws14{word-spacing:13.987490px;}
.ws60{word-spacing:14.346144px;}
.ws5f{word-spacing:14.405920px;}
.ws77{word-spacing:14.680924px;}
.ws78{word-spacing:14.920027px;}
.ws86{word-spacing:14.967848px;}
.ws23{word-spacing:15.003676px;}
.ws81{word-spacing:15.015668px;}
.ws20{word-spacing:15.123227px;}
.ws27{word-spacing:15.541656px;}
.ws3c{word-spacing:15.720983px;}
.ws80{word-spacing:16.115542px;}
.wsb{word-spacing:16.247117px;}
.ws22{word-spacing:16.378514px;}
.ws12{word-spacing:16.498066px;}
.ws75{word-spacing:16.545928px;}
.ws45{word-spacing:16.557841px;}
.ws32{word-spacing:16.856719px;}
.ws8b{word-spacing:17.406698px;}
.ws4c{word-spacing:17.514251px;}
.ws8a{word-spacing:17.741443px;}
.wsd{word-spacing:17.932680px;}
.ws6c{word-spacing:18.351109px;}
.ws7b{word-spacing:18.697855px;}
.ws51{word-spacing:18.706369px;}
.ws50{word-spacing:18.769538px;}
.ws59{word-spacing:19.128192px;}
.ws13{word-spacing:19.187968px;}
.ws25{word-spacing:19.546621px;}
.ws7c{word-spacing:20.849782px;}
.ws2d{word-spacing:20.861684px;}
.ws17{word-spacing:21.220338px;}
.ws6{word-spacing:21.573158px;}
.ws76{word-spacing:26.588254px;}
.ws62{word-spacing:29.416369px;}
.ws52{word-spacing:44.983054px;}
.ws39{word-spacing:494.307984px;}
._5{margin-left:-25.583417px;}
._1{margin-left:-7.531776px;}
._8{margin-left:-5.499355px;}
._4{margin-left:-4.185676px;}
._2{margin-left:-2.689920px;}
._0{margin-left:-1.075968px;}
._10{width:1.014387px;}
._7{width:2.338596px;}
._3{width:3.642374px;}
._18{width:16.593823px;}
._6{width:17.807270px;}
._b{width:19.785756px;}
._13{width:21.561916px;}
._16{width:23.054238px;}
._15{width:27.257742px;}
._9{width:29.887800px;}
._c{width:31.083390px;}
._17{width:32.209014px;}
._a{width:33.474420px;}
._14{width:39.212892px;}
._e{width:64.545534px;}
._f{width:65.610642px;}
._12{width:73.320077px;}
._d{width:74.699562px;}
._11{width:91.541340px;}
.fc2{color:rgb(0,173,239);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:32.772056px;}
.fs9{font-size:33.162733px;}
.fs6{font-size:35.503594px;}
.fsa{font-size:35.865600px;}
.fs7{font-size:39.014886px;}
.fs0{font-size:41.842800px;}
.fs3{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs5{font-size:59.775600px;}
.fs2{font-size:65.753400px;}
.fs1{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y6d{bottom:5.858942px;}
.y66{bottom:19.538741px;}
.y6c{bottom:25.015709px;}
.y77{bottom:25.116876px;}
.y67{bottom:27.066202px;}
.y73{bottom:46.707095px;}
.y68{bottom:51.593565px;}
.y70{bottom:55.804877px;}
.y6f{bottom:65.773641px;}
.y74{bottom:66.253131px;}
.y32{bottom:69.175500px;}
.yb9{bottom:72.076500px;}
.y6e{bottom:75.839877px;}
.y69{bottom:76.026123px;}
.y8d{bottom:77.012532px;}
.y91{bottom:77.112544px;}
.yb8{bottom:85.527000px;}
.y75{bottom:85.896670px;}
.y4b{bottom:86.100000px;}
.y8c{bottom:87.076277px;}
.y31{bottom:87.108000px;}
.y90{bottom:87.176290px;}
.y8b{bottom:97.145004px;}
.y8f{bottom:97.242526px;}
.yb7{bottom:98.976000px;}
.y4a{bottom:99.550500px;}
.y6a{bottom:100.653739px;}
.y30{bottom:105.040500px;}
.y76{bottom:105.540262px;}
.yb6{bottom:112.425000px;}
.y71{bottom:115.116907px;}
.y83{bottom:122.973000px;}
.y2f{bottom:122.974500px;}
.y6b{bottom:125.083599px;}
.yb5{bottom:125.875500px;}
.y49{bottom:126.264000px;}
.yb4{bottom:139.324500px;}
.y2e{bottom:140.907000px;}
.yb3{bottom:152.775000px;}
.y2d{bottom:158.839500px;}
.yb2{bottom:166.224000px;}
.y2c{bottom:176.772000px;}
.yb1{bottom:179.673000px;}
.yb0{bottom:193.123500px;}
.y2b{bottom:194.704500px;}
.yaf{bottom:206.572500px;}
.y82{bottom:207.444000px;}
.y2a{bottom:212.637000px;}
.yae{bottom:220.021500px;}
.y81{bottom:220.893000px;}
.y29{bottom:230.571000px;}
.yad{bottom:233.472000px;}
.y80{bottom:234.343500px;}
.yac{bottom:246.921000px;}
.y7f{bottom:247.792500px;}
.y28{bottom:248.503500px;}
.yab{bottom:260.371500px;}
.y27{bottom:266.436000px;}
.yaa{bottom:273.820500px;}
.y7b{bottom:274.506000px;}
.y26{bottom:284.368500px;}
.ya9{bottom:287.269500px;}
.y48{bottom:293.707500px;}
.ya8{bottom:300.720000px;}
.y25{bottom:302.301000px;}
.y47{bottom:311.640000px;}
.ya7{bottom:314.169000px;}
.y24{bottom:320.233500px;}
.ya6{bottom:327.618000px;}
.y46{bottom:329.572500px;}
.y7d{bottom:333.493500px;}
.y79{bottom:337.746000px;}
.y23{bottom:338.167500px;}
.ya5{bottom:341.068500px;}
.y45{bottom:347.505000px;}
.y7e{bottom:354.349500px;}
.y22{bottom:356.100000px;}
.ya4{bottom:363.181500px;}
.y44{bottom:365.439000px;}
.y21{bottom:374.032500px;}
.y43{bottom:383.371500px;}
.y78{bottom:385.305000px;}
.y7c{bottom:386.607000px;}
.y20{bottom:391.965000px;}
.ya3{bottom:400.660500px;}
.y42{bottom:401.304000px;}
.y7a{bottom:404.937000px;}
.y1f{bottom:409.897500px;}
.ya2{bottom:418.593000px;}
.y41{bottom:419.236500px;}
.y1e{bottom:427.830000px;}
.ya1{bottom:436.525500px;}
.y72{bottom:438.240000px;}
.y40{bottom:441.667500px;}
.y1d{bottom:445.764000px;}
.ya0{bottom:454.458000px;}
.y65{bottom:456.172500px;}
.y1c{bottom:463.696500px;}
.y9f{bottom:477.058500px;}
.y3f{bottom:479.790000px;}
.y1b{bottom:481.629000px;}
.y3e{bottom:497.722500px;}
.y1a{bottom:501.283500px;}
.y9e{bottom:514.537500px;}
.y3d{bottom:515.656500px;}
.y19{bottom:519.216000px;}
.y9d{bottom:532.470000px;}
.y3c{bottom:533.589000px;}
.y18{bottom:537.148500px;}
.y9c{bottom:550.402500px;}
.y3b{bottom:551.521500px;}
.y17{bottom:555.082500px;}
.y9b{bottom:568.336500px;}
.y16{bottom:573.015000px;}
.y3a{bottom:582.934500px;}
.y9a{bottom:586.269000px;}
.y15{bottom:590.947500px;}
.y99{bottom:604.201500px;}
.y14{bottom:608.880000px;}
.y98{bottom:622.134000px;}
.y64{bottom:627.358500px;}
.y97{bottom:640.066500px;}
.y13{bottom:641.851500px;}
.y63{bottom:645.291000px;}
.y96{bottom:658.000500px;}
.y62{bottom:663.223500px;}
.y95{bottom:680.601000px;}
.y61{bottom:681.156000px;}
.y12{bottom:698.746500px;}
.y60{bottom:699.088500px;}
.y11{bottom:713.691000px;}
.y5f{bottom:717.021000px;}
.y10{bottom:728.635500px;}
.y94{bottom:732.039000px;}
.y5e{bottom:734.955000px;}
.y39{bottom:741.832500px;}
.y93{bottom:745.488000px;}
.y5d{bottom:752.887500px;}
.yf{bottom:753.609000px;}
.y92{bottom:758.938500px;}
.y38{bottom:759.556500px;}
.ye{bottom:768.553500px;}
.y5c{bottom:770.820000px;}
.y37{bottom:777.489000px;}
.yd{bottom:783.496500px;}
.y5b{bottom:788.752500px;}
.y36{bottom:795.421500px;}
.y8e{bottom:795.430500px;}
.yc{bottom:798.441000px;}
.y5a{bottom:812.728500px;}
.y35{bottom:813.355500px;}
.y8a{bottom:813.363000px;}
.yb{bottom:813.385500px;}
.ya{bottom:828.328500px;}
.y34{bottom:835.785000px;}
.y9{bottom:843.273000px;}
.y59{bottom:852.729000px;}
.y33{bottom:858.216000px;}
.y8{bottom:858.217500px;}
.y58{bottom:870.663000px;}
.y57{bottom:888.595500px;}
.y56{bottom:906.528000px;}
.y55{bottom:924.460500px;}
.y7{bottom:935.271000px;}
.y54{bottom:942.393000px;}
.y6{bottom:955.296000px;}
.y53{bottom:960.325500px;}
.y52{bottom:978.259500px;}
.y5{bottom:982.138500px;}
.y89{bottom:983.745000px;}
.y51{bottom:996.192000px;}
.y88{bottom:1001.679000px;}
.y4{bottom:1002.163500px;}
.y50{bottom:1014.124500px;}
.y87{bottom:1019.611500px;}
.y4f{bottom:1032.057000px;}
.y3{bottom:1037.131500px;}
.y86{bottom:1037.544000px;}
.y4e{bottom:1049.989500px;}
.y85{bottom:1055.476500px;}
.y4d{bottom:1067.923500px;}
.y84{bottom:1073.409000px;}
.y2{bottom:1078.975500px;}
.y4c{bottom:1091.343000px;}
.y1{bottom:1141.168500px;}
.hf{height:23.954965px;}
.h10{height:24.240533px;}
.hd{height:25.951602px;}
.h1{height:28.787846px;}
.he{height:29.337365px;}
.h5{height:31.800699px;}
.h13{height:32.661470px;}
.ha{height:32.900573px;}
.h12{height:33.665702px;}
.h7{height:37.336090px;}
.h6{height:37.605082px;}
.h9{height:40.826735px;}
.h8{height:41.125613px;}
.hb{height:42.141798px;}
.h11{height:44.831700px;}
.h3{height:45.568339px;}
.h4{height:55.554699px;}
.h2{height:74.026598px;}
.hc{height:139.261151px;}
.h0{height:1188.000000px;}
.w1{width:185.070740px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x14{left:12.311216px;}
.x13{left:17.883428px;}
.x12{left:22.768213px;}
.x11{left:28.537200px;}
.x16{left:46.614180px;}
.x22{left:63.326024px;}
.x15{left:65.180978px;}
.x25{left:67.038846px;}
.xa{left:73.446000px;}
.x9{left:88.389000px;}
.x1b{left:101.004000px;}
.x2{left:103.234500px;}
.x1a{left:111.115500px;}
.x7{left:136.195500px;}
.x10{left:144.460500px;}
.x8{left:156.225000px;}
.x17{left:157.488000px;}
.x1c{left:164.083500px;}
.x1d{left:166.638000px;}
.x4{left:169.374000px;}
.xb{left:203.428500px;}
.x5{left:254.589000px;}
.x18{left:264.355500px;}
.x20{left:274.828500px;}
.x6{left:288.655500px;}
.x3{left:306.684000px;}
.x1e{left:314.020500px;}
.x1f{left:315.874500px;}
.x21{left:335.953500px;}
.x19{left:347.454000px;}
.xd{left:467.967000px;}
.x2a{left:473.944500px;}
.xe{left:482.910000px;}
.x2b{left:495.355500px;}
.x23{left:552.009000px;}
.xf{left:564.819000px;}
.xc{left:582.721500px;}
.x28{left:591.090000px;}
.x27{left:604.749000px;}
.x29{left:614.418000px;}
.x24{left:658.875000px;}
.x26{left:741.975000px;}
.x1{left:839.323500px;}
@media print{
.v2{vertical-align:-21.114667pt;}
.v3{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.114667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.000325pt;}
.lsb{letter-spacing:0.000499pt;}
.ls18{letter-spacing:0.000882pt;}
.ls0{letter-spacing:0.001325pt;}
.ls13{letter-spacing:0.002424pt;}
.ls7{letter-spacing:0.003892pt;}
.ls19{letter-spacing:0.746682pt;}
.ls4{letter-spacing:2.635446pt;}
.lsa{letter-spacing:2.652911pt;}
.ls1{letter-spacing:2.653258pt;}
.ls1a{letter-spacing:2.655711pt;}
.ls5{letter-spacing:2.656693pt;}
.ls2{letter-spacing:2.658591pt;}
.ls9{letter-spacing:13.995166pt;}
.ls17{letter-spacing:15.504882pt;}
.ls8{letter-spacing:16.647578pt;}
.lsc{letter-spacing:21.250245pt;}
.ls3{letter-spacing:23.111925pt;}
.ls15{letter-spacing:23.520499pt;}
.ls12{letter-spacing:26.064499pt;}
.ls14{letter-spacing:26.167578pt;}
.ls16{letter-spacing:26.172911pt;}
.ls11{letter-spacing:28.722245pt;}
.lsf{letter-spacing:108.983578pt;}
.lsd{letter-spacing:145.331733pt;}
.ls10{letter-spacing:187.667733pt;}
.lse{letter-spacing:410.476911pt;}
.ws42{word-spacing:-34.611401pt;}
.ws54{word-spacing:-27.225793pt;}
.ws69{word-spacing:-15.940160pt;}
.ws66{word-spacing:-13.283467pt;}
.wse{word-spacing:-13.262246pt;}
.ws53{word-spacing:-8.741774pt;}
.ws49{word-spacing:-2.656693pt;}
.ws8{word-spacing:-0.956416pt;}
.ws43{word-spacing:-0.850142pt;}
.ws2{word-spacing:-0.047821pt;}
.ws3b{word-spacing:0.000000pt;}
.ws19{word-spacing:0.159402pt;}
.ws47{word-spacing:0.318803pt;}
.ws37{word-spacing:0.425071pt;}
.ws46{word-spacing:0.690740pt;}
.ws5b{word-spacing:0.797008pt;}
.ws79{word-spacing:1.020173pt;}
.ws83{word-spacing:1.445245pt;}
.ws67{word-spacing:1.487752pt;}
.ws34{word-spacing:1.540882pt;}
.ws18{word-spacing:1.594016pt;}
.ws41{word-spacing:1.700284pt;}
.ws84{word-spacing:1.803679pt;}
.ws5e{word-spacing:2.125355pt;}
.ws68{word-spacing:2.167867pt;}
.ws1c{word-spacing:2.231622pt;}
.ws2b{word-spacing:2.337890pt;}
.ws1e{word-spacing:2.550426pt;}
.ws36{word-spacing:2.656693pt;}
.ws87{word-spacing:2.720461pt;}
.ws82{word-spacing:2.762968pt;}
.ws6b{word-spacing:2.869229pt;}
.ws3{word-spacing:2.917069pt;}
.ws3a{word-spacing:3.188040pt;}
.ws35{word-spacing:3.241166pt;}
.ws26{word-spacing:3.400567pt;}
.ws74{word-spacing:3.411217pt;}
.ws24{word-spacing:3.559969pt;}
.ws10{word-spacing:3.666237pt;}
.ws7f{word-spacing:3.740634pt;}
.ws4b{word-spacing:3.772505pt;}
.ws6a{word-spacing:3.825638pt;}
.ws70{word-spacing:3.878772pt;}
.ws73{word-spacing:4.123198pt;}
.ws30{word-spacing:4.250720pt;}
.ws38{word-spacing:4.356977pt;}
.ws4{word-spacing:4.782080pt;}
.ws8c{word-spacing:4.888328pt;}
.ws88{word-spacing:5.015850pt;}
.wsc{word-spacing:5.069005pt;}
.ws89{word-spacing:5.185878pt;}
.ws15{word-spacing:5.313387pt;}
.ws40{word-spacing:5.366521pt;}
.ws72{word-spacing:5.398414pt;}
.ws5a{word-spacing:5.472788pt;}
.ws1{word-spacing:5.844747pt;}
.wsa{word-spacing:5.977600pt;}
.ws1a{word-spacing:6.004127pt;}
.ws5{word-spacing:6.216704pt;}
.ws48{word-spacing:6.429198pt;}
.ws57{word-spacing:6.461094pt;}
.ws2a{word-spacing:6.482332pt;}
.ws6d{word-spacing:6.694867pt;}
.ws9{word-spacing:6.790554pt;}
.ws55{word-spacing:6.801152pt;}
.ws5d{word-spacing:7.066804pt;}
.ws31{word-spacing:7.119938pt;}
.ws1d{word-spacing:7.385607pt;}
.ws4d{word-spacing:7.545009pt;}
.ws16{word-spacing:7.651277pt;}
.ws2e{word-spacing:7.704411pt;}
.ws7d{word-spacing:7.948846pt;}
.ws65{word-spacing:7.970080pt;}
.ws5c{word-spacing:8.023214pt;}
.ws29{word-spacing:8.342017pt;}
.ws4e{word-spacing:8.448285pt;}
.ws11{word-spacing:8.713954pt;}
.ws7{word-spacing:8.799027pt;}
.ws1b{word-spacing:8.979623pt;}
.ws4f{word-spacing:9.032757pt;}
.ws33{word-spacing:9.085891pt;}
.ws44{word-spacing:9.192159pt;}
.ws21{word-spacing:9.564096pt;}
.ws0{word-spacing:9.564160pt;}
.ws1f{word-spacing:9.776631pt;}
.ws2f{word-spacing:9.829765pt;}
.ws28{word-spacing:9.882899pt;}
.wsf{word-spacing:10.148569pt;}
.ws64{word-spacing:10.201702pt;}
.ws61{word-spacing:10.231230pt;}
.ws63{word-spacing:10.254836pt;}
.ws4a{word-spacing:10.520506pt;}
.ws2c{word-spacing:10.626773pt;}
.ws7e{word-spacing:10.754322pt;}
.ws56{word-spacing:10.839336pt;}
.ws6e{word-spacing:10.998710pt;}
.ws6f{word-spacing:11.158112pt;}
.ws71{word-spacing:11.370647pt;}
.ws3f{word-spacing:11.423781pt;}
.ws7a{word-spacing:11.604466pt;}
.ws3e{word-spacing:11.848852pt;}
.ws3d{word-spacing:12.273923pt;}
.ws58{word-spacing:12.380191pt;}
.ws85{word-spacing:12.412102pt;}
.ws14{word-spacing:12.433325pt;}
.ws60{word-spacing:12.752128pt;}
.ws5f{word-spacing:12.805262pt;}
.ws77{word-spacing:13.049710pt;}
.ws78{word-spacing:13.262246pt;}
.ws86{word-spacing:13.304754pt;}
.ws23{word-spacing:13.336601pt;}
.ws81{word-spacing:13.347261pt;}
.ws20{word-spacing:13.442868pt;}
.ws27{word-spacing:13.814805pt;}
.ws3c{word-spacing:13.974207pt;}
.ws80{word-spacing:14.324926pt;}
.wsb{word-spacing:14.441882pt;}
.ws22{word-spacing:14.558679pt;}
.ws12{word-spacing:14.664947pt;}
.ws75{word-spacing:14.707491pt;}
.ws45{word-spacing:14.718081pt;}
.ws32{word-spacing:14.983750pt;}
.ws8b{word-spacing:15.472621pt;}
.ws4c{word-spacing:15.568223pt;}
.ws8a{word-spacing:15.770171pt;}
.wsd{word-spacing:15.940160pt;}
.ws6c{word-spacing:16.312097pt;}
.ws7b{word-spacing:16.620315pt;}
.ws51{word-spacing:16.627884pt;}
.ws50{word-spacing:16.684034pt;}
.ws59{word-spacing:17.002837pt;}
.ws13{word-spacing:17.055971pt;}
.ws25{word-spacing:17.374774pt;}
.ws7c{word-spacing:18.533139pt;}
.ws2d{word-spacing:18.543719pt;}
.ws17{word-spacing:18.862523pt;}
.ws6{word-spacing:19.176141pt;}
.ws76{word-spacing:23.634003pt;}
.ws62{word-spacing:26.147884pt;}
.ws52{word-spacing:39.984937pt;}
.ws39{word-spacing:439.384875pt;}
._5{margin-left:-22.740815pt;}
._1{margin-left:-6.694912pt;}
._8{margin-left:-4.888316pt;}
._4{margin-left:-3.720601pt;}
._2{margin-left:-2.391040pt;}
._0{margin-left:-0.956416pt;}
._10{width:0.901677pt;}
._7{width:2.078752pt;}
._3{width:3.237666pt;}
._18{width:14.750065pt;}
._6{width:15.828685pt;}
._b{width:17.587339pt;}
._13{width:19.166148pt;}
._16{width:20.492656pt;}
._15{width:24.229104pt;}
._9{width:26.566933pt;}
._c{width:27.629680pt;}
._17{width:28.630235pt;}
._a{width:29.755040pt;}
._14{width:34.855904pt;}
._e{width:57.373808pt;}
._f{width:58.320570pt;}
._12{width:65.173402pt;}
._d{width:66.399610pt;}
._11{width:81.370080pt;}
.fs8{font-size:29.130716pt;}
.fs9{font-size:29.477985pt;}
.fs6{font-size:31.558750pt;}
.fsa{font-size:31.880533pt;}
.fs7{font-size:34.679898pt;}
.fs0{font-size:37.193600pt;}
.fs3{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs5{font-size:53.133867pt;}
.fs2{font-size:58.447467pt;}
.fs1{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y6d{bottom:5.207949pt;}
.y66{bottom:17.367770pt;}
.y6c{bottom:22.236186pt;}
.y77{bottom:22.326112pt;}
.y67{bottom:24.058846pt;}
.y73{bottom:41.517418pt;}
.y68{bottom:45.860946pt;}
.y70{bottom:49.604335pt;}
.y6f{bottom:58.465458pt;}
.y74{bottom:58.891672pt;}
.y32{bottom:61.489333pt;}
.yb9{bottom:64.068000pt;}
.y6e{bottom:67.413224pt;}
.y69{bottom:67.578776pt;}
.y8d{bottom:68.455584pt;}
.y91{bottom:68.544484pt;}
.yb8{bottom:76.024000pt;}
.y75{bottom:76.352595pt;}
.y4b{bottom:76.533333pt;}
.y8c{bottom:77.401135pt;}
.y31{bottom:77.429333pt;}
.y90{bottom:77.490035pt;}
.y8b{bottom:86.351115pt;}
.y8f{bottom:86.437801pt;}
.yb7{bottom:87.978667pt;}
.y4a{bottom:88.489333pt;}
.y6a{bottom:89.469991pt;}
.y30{bottom:93.369333pt;}
.y76{bottom:93.813566pt;}
.yb6{bottom:99.933333pt;}
.y71{bottom:102.326140pt;}
.y83{bottom:109.309333pt;}
.y2f{bottom:109.310667pt;}
.y6b{bottom:111.185422pt;}
.yb5{bottom:111.889333pt;}
.y49{bottom:112.234667pt;}
.yb4{bottom:123.844000pt;}
.y2e{bottom:125.250667pt;}
.yb3{bottom:135.800000pt;}
.y2d{bottom:141.190667pt;}
.yb2{bottom:147.754667pt;}
.y2c{bottom:157.130667pt;}
.yb1{bottom:159.709333pt;}
.yb0{bottom:171.665333pt;}
.y2b{bottom:173.070667pt;}
.yaf{bottom:183.620000pt;}
.y82{bottom:184.394667pt;}
.y2a{bottom:189.010667pt;}
.yae{bottom:195.574667pt;}
.y81{bottom:196.349333pt;}
.y29{bottom:204.952000pt;}
.yad{bottom:207.530667pt;}
.y80{bottom:208.305333pt;}
.yac{bottom:219.485333pt;}
.y7f{bottom:220.260000pt;}
.y28{bottom:220.892000pt;}
.yab{bottom:231.441333pt;}
.y27{bottom:236.832000pt;}
.yaa{bottom:243.396000pt;}
.y7b{bottom:244.005333pt;}
.y26{bottom:252.772000pt;}
.ya9{bottom:255.350667pt;}
.y48{bottom:261.073333pt;}
.ya8{bottom:267.306667pt;}
.y25{bottom:268.712000pt;}
.y47{bottom:277.013333pt;}
.ya7{bottom:279.261333pt;}
.y24{bottom:284.652000pt;}
.ya6{bottom:291.216000pt;}
.y46{bottom:292.953333pt;}
.y7d{bottom:296.438667pt;}
.y79{bottom:300.218667pt;}
.y23{bottom:300.593333pt;}
.ya5{bottom:303.172000pt;}
.y45{bottom:308.893333pt;}
.y7e{bottom:314.977333pt;}
.y22{bottom:316.533333pt;}
.ya4{bottom:322.828000pt;}
.y44{bottom:324.834667pt;}
.y21{bottom:332.473333pt;}
.y43{bottom:340.774667pt;}
.y78{bottom:342.493333pt;}
.y7c{bottom:343.650667pt;}
.y20{bottom:348.413333pt;}
.ya3{bottom:356.142667pt;}
.y42{bottom:356.714667pt;}
.y7a{bottom:359.944000pt;}
.y1f{bottom:364.353333pt;}
.ya2{bottom:372.082667pt;}
.y41{bottom:372.654667pt;}
.y1e{bottom:380.293333pt;}
.ya1{bottom:388.022667pt;}
.y72{bottom:389.546667pt;}
.y40{bottom:392.593333pt;}
.y1d{bottom:396.234667pt;}
.ya0{bottom:403.962667pt;}
.y65{bottom:405.486667pt;}
.y1c{bottom:412.174667pt;}
.y9f{bottom:424.052000pt;}
.y3f{bottom:426.480000pt;}
.y1b{bottom:428.114667pt;}
.y3e{bottom:442.420000pt;}
.y1a{bottom:445.585333pt;}
.y9e{bottom:457.366667pt;}
.y3d{bottom:458.361333pt;}
.y19{bottom:461.525333pt;}
.y9d{bottom:473.306667pt;}
.y3c{bottom:474.301333pt;}
.y18{bottom:477.465333pt;}
.y9c{bottom:489.246667pt;}
.y3b{bottom:490.241333pt;}
.y17{bottom:493.406667pt;}
.y9b{bottom:505.188000pt;}
.y16{bottom:509.346667pt;}
.y3a{bottom:518.164000pt;}
.y9a{bottom:521.128000pt;}
.y15{bottom:525.286667pt;}
.y99{bottom:537.068000pt;}
.y14{bottom:541.226667pt;}
.y98{bottom:553.008000pt;}
.y64{bottom:557.652000pt;}
.y97{bottom:568.948000pt;}
.y13{bottom:570.534667pt;}
.y63{bottom:573.592000pt;}
.y96{bottom:584.889333pt;}
.y62{bottom:589.532000pt;}
.y95{bottom:604.978667pt;}
.y61{bottom:605.472000pt;}
.y12{bottom:621.108000pt;}
.y60{bottom:621.412000pt;}
.y11{bottom:634.392000pt;}
.y5f{bottom:637.352000pt;}
.y10{bottom:647.676000pt;}
.y94{bottom:650.701333pt;}
.y5e{bottom:653.293333pt;}
.y39{bottom:659.406667pt;}
.y93{bottom:662.656000pt;}
.y5d{bottom:669.233333pt;}
.yf{bottom:669.874667pt;}
.y92{bottom:674.612000pt;}
.y38{bottom:675.161333pt;}
.ye{bottom:683.158667pt;}
.y5c{bottom:685.173333pt;}
.y37{bottom:691.101333pt;}
.yd{bottom:696.441333pt;}
.y5b{bottom:701.113333pt;}
.y36{bottom:707.041333pt;}
.y8e{bottom:707.049333pt;}
.yc{bottom:709.725333pt;}
.y5a{bottom:722.425333pt;}
.y35{bottom:722.982667pt;}
.y8a{bottom:722.989333pt;}
.yb{bottom:723.009333pt;}
.ya{bottom:736.292000pt;}
.y34{bottom:742.920000pt;}
.y9{bottom:749.576000pt;}
.y59{bottom:757.981333pt;}
.y33{bottom:762.858667pt;}
.y8{bottom:762.860000pt;}
.y58{bottom:773.922667pt;}
.y57{bottom:789.862667pt;}
.y56{bottom:805.802667pt;}
.y55{bottom:821.742667pt;}
.y7{bottom:831.352000pt;}
.y54{bottom:837.682667pt;}
.y6{bottom:849.152000pt;}
.y53{bottom:853.622667pt;}
.y52{bottom:869.564000pt;}
.y5{bottom:873.012000pt;}
.y89{bottom:874.440000pt;}
.y51{bottom:885.504000pt;}
.y88{bottom:890.381333pt;}
.y4{bottom:890.812000pt;}
.y50{bottom:901.444000pt;}
.y87{bottom:906.321333pt;}
.y4f{bottom:917.384000pt;}
.y3{bottom:921.894667pt;}
.y86{bottom:922.261333pt;}
.y4e{bottom:933.324000pt;}
.y85{bottom:938.201333pt;}
.y4d{bottom:949.265333pt;}
.y84{bottom:954.141333pt;}
.y2{bottom:959.089333pt;}
.y4c{bottom:970.082667pt;}
.y1{bottom:1014.372000pt;}
.hf{height:21.293302pt;}
.h10{height:21.547140pt;}
.hd{height:23.068090pt;}
.h1{height:25.589197pt;}
.he{height:26.077658pt;}
.h5{height:28.267288pt;}
.h13{height:29.032418pt;}
.ha{height:29.244954pt;}
.h12{height:29.925069pt;}
.h7{height:33.187635pt;}
.h6{height:33.426739pt;}
.h9{height:36.290431pt;}
.h8{height:36.556100pt;}
.hb{height:37.459376pt;}
.h11{height:39.850400pt;}
.h3{height:40.505190pt;}
.h4{height:49.381955pt;}
.h2{height:65.801421pt;}
.hc{height:123.787690pt;}
.h0{height:1056.000000pt;}
.w1{width:164.507325pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x14{left:10.943303pt;}
.x13{left:15.896380pt;}
.x12{left:20.238412pt;}
.x11{left:25.366400pt;}
.x16{left:41.434827pt;}
.x22{left:56.289799pt;}
.x15{left:57.938647pt;}
.x25{left:59.590085pt;}
.xa{left:65.285333pt;}
.x9{left:78.568000pt;}
.x1b{left:89.781333pt;}
.x2{left:91.764000pt;}
.x1a{left:98.769333pt;}
.x7{left:121.062667pt;}
.x10{left:128.409333pt;}
.x8{left:138.866667pt;}
.x17{left:139.989333pt;}
.x1c{left:145.852000pt;}
.x1d{left:148.122667pt;}
.x4{left:150.554667pt;}
.xb{left:180.825333pt;}
.x5{left:226.301333pt;}
.x18{left:234.982667pt;}
.x20{left:244.292000pt;}
.x6{left:256.582667pt;}
.x3{left:272.608000pt;}
.x1e{left:279.129333pt;}
.x1f{left:280.777333pt;}
.x21{left:298.625333pt;}
.x19{left:308.848000pt;}
.xd{left:415.970667pt;}
.x2a{left:421.284000pt;}
.xe{left:429.253333pt;}
.x2b{left:440.316000pt;}
.x23{left:490.674667pt;}
.xf{left:502.061333pt;}
.xc{left:517.974667pt;}
.x28{left:525.413333pt;}
.x27{left:537.554667pt;}
.x29{left:546.149333pt;}
.x24{left:585.666667pt;}
.x26{left:659.533333pt;}
.x1{left:746.065333pt;}
}




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