
    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_01632c6520b4a6a85c241209.woff')format("woff");}.ff1{font-family:ff1;line-height:0.933000;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_c170434bf091505678917188.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_3b2b343ccb96af4735381e3f.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_00eb15fcb1ebf27e7b540323.woff')format("woff");}.ff4{font-family:ff4;line-height:0.934000;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_062cea034a025cc2c4f4f52c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.933000;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_66a2f839bc65592b5f71012b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.933000;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_858df7d78ed30d1a1cf5c816.woff')format("woff");}.ff7{font-family:ff7;line-height:0.931000;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_c833f90e058acdb28a8ff42f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.842000;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_8268675dc650cc84183af3ff.woff')format("woff");}.ff9{font-family:ff9;line-height:0.935000;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_b1bee14a5260234cecbc2098.woff')format("woff");}.ffa{font-family:ffa;line-height:0.909000;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_38fcbecb731113e8aeb2e463.woff')format("woff");}.ffb{font-family:ffb;line-height:0.946000;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_2494c04f9967ae08930bd939.woff')format("woff");}.ffc{font-family:ffc;line-height:0.709000;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_04b80a4201c4603e0ca800b7.woff')format("woff");}.ffd{font-family:ffd;line-height:0.950195;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;}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.012000px;}
.v2{vertical-align:19.980000px;}
.ls16{letter-spacing:-4.806000px;}
.ls21{letter-spacing:-3.744000px;}
.ls2f{letter-spacing:-3.510000px;}
.lsc{letter-spacing:-2.538000px;}
.ls17{letter-spacing:-2.214000px;}
.ls26{letter-spacing:-1.392000px;}
.ls14{letter-spacing:-1.026000px;}
.ls10{letter-spacing:-0.972000px;}
.lsf{letter-spacing:-0.756000px;}
.ls18{letter-spacing:-0.648000px;}
.ls24{letter-spacing:-0.432000px;}
.lse{letter-spacing:-0.378000px;}
.ls19{letter-spacing:-0.300000px;}
.ls23{letter-spacing:-0.288000px;}
.ls13{letter-spacing:-0.216000px;}
.ls2b{letter-spacing:-0.162000px;}
.ls11{letter-spacing:-0.054000px;}
.ls9{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.054000px;}
.ls27{letter-spacing:0.096000px;}
.lsb{letter-spacing:0.108000px;}
.ls25{letter-spacing:0.162000px;}
.ls12{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.240000px;}
.lsa{letter-spacing:0.270000px;}
.ls1a{letter-spacing:0.288000px;}
.ls2d{letter-spacing:0.324000px;}
.ls20{letter-spacing:0.377400px;}
.ls2c{letter-spacing:0.378000px;}
.ls2e{letter-spacing:0.432000px;}
.ls7{letter-spacing:0.480000px;}
.ls5{letter-spacing:0.486000px;}
.ls1c{letter-spacing:0.528000px;}
.ls22{letter-spacing:0.594000px;}
.ls1f{letter-spacing:0.624000px;}
.ls4{letter-spacing:0.756000px;}
.ls1b{letter-spacing:0.768000px;}
.ls28{letter-spacing:0.816000px;}
.ls6{letter-spacing:0.918000px;}
.ls3{letter-spacing:1.170000px;}
.ls15{letter-spacing:1.404000px;}
.ls2{letter-spacing:2.646000px;}
.ls29{letter-spacing:3.186000px;}
.ls0{letter-spacing:4.320000px;}
.ls2a{letter-spacing:4.968000px;}
.ls1e{letter-spacing:13.824000px;}
.ls1d{letter-spacing:14.928000px;}
.ls1{letter-spacing:2843.328000px;}
.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;}
}
.ws3e{word-spacing:-54.000000px;}
.ws4{word-spacing:-16.380000px;}
.ws2{word-spacing:-16.146000px;}
.ws76{word-spacing:-11.556000px;}
.ws3{word-spacing:-11.286000px;}
.ws3c{word-spacing:-11.232000px;}
.ws5{word-spacing:-11.070000px;}
.ws1{word-spacing:-10.854000px;}
.ws75{word-spacing:-10.746000px;}
.ws63{word-spacing:-10.032000px;}
.ws56{word-spacing:-9.984000px;}
.ws3b{word-spacing:-9.840000px;}
.ws82{word-spacing:-9.456000px;}
.ws74{word-spacing:-9.342000px;}
.ws58{word-spacing:-9.168000px;}
.ws83{word-spacing:-9.000000px;}
.ws0{word-spacing:-8.820000px;}
.ws3f{word-spacing:-8.784000px;}
.ws9{word-spacing:-8.736000px;}
.ws7{word-spacing:-8.586000px;}
.ws84{word-spacing:-7.695000px;}
.ws57{word-spacing:-7.680000px;}
.ws8{word-spacing:-6.996000px;}
.ws6{word-spacing:-5.994000px;}
.ws64{word-spacing:-5.328000px;}
.ws85{word-spacing:-4.185000px;}
.ws73{word-spacing:-2.160000px;}
.ws92{word-spacing:-2.115000px;}
.ws68{word-spacing:-1.944000px;}
.ws7d{word-spacing:-1.890000px;}
.ws12{word-spacing:-1.674000px;}
.ws14{word-spacing:-1.620000px;}
.ws15{word-spacing:-1.512000px;}
.ws29{word-spacing:-1.458000px;}
.ws27{word-spacing:-1.404000px;}
.ws51{word-spacing:-1.350000px;}
.ws49{word-spacing:-1.296000px;}
.ws90{word-spacing:-1.215000px;}
.ws8f{word-spacing:-1.170000px;}
.wsf{word-spacing:-1.080000px;}
.ws4a{word-spacing:-1.026000px;}
.ws59{word-spacing:-0.972000px;}
.ws35{word-spacing:-0.864000px;}
.ws77{word-spacing:-0.816000px;}
.ws32{word-spacing:-0.810000px;}
.ws5c{word-spacing:-0.648000px;}
.ws80{word-spacing:-0.624000px;}
.ws47{word-spacing:-0.594000px;}
.wsb{word-spacing:-0.540000px;}
.ws39{word-spacing:-0.528000px;}
.ws16{word-spacing:-0.486000px;}
.ws41{word-spacing:-0.480000px;}
.ws46{word-spacing:-0.432000px;}
.ws5f{word-spacing:-0.378000px;}
.ws4b{word-spacing:-0.324000px;}
.ws3a{word-spacing:-0.288000px;}
.ws5a{word-spacing:-0.270000px;}
.ws1f{word-spacing:-0.216000px;}
.ws93{word-spacing:-0.180000px;}
.ws60{word-spacing:-0.162000px;}
.ws1a{word-spacing:-0.108000px;}
.ws5d{word-spacing:-0.054000px;}
.ws38{word-spacing:-0.048000px;}
.ws3d{word-spacing:-0.043200px;}
.wsa{word-spacing:0.000000px;}
.ws17{word-spacing:0.054000px;}
.ws1e{word-spacing:0.108000px;}
.ws6e{word-spacing:0.162000px;}
.ws1c{word-spacing:0.216000px;}
.ws7e{word-spacing:0.270000px;}
.ws67{word-spacing:0.324000px;}
.ws13{word-spacing:0.378000px;}
.ws91{word-spacing:0.405000px;}
.ws65{word-spacing:0.594000px;}
.ws8b{word-spacing:0.630000px;}
.ws37{word-spacing:0.648000px;}
.ws8c{word-spacing:0.675000px;}
.ws7c{word-spacing:0.702000px;}
.ws1b{word-spacing:0.756000px;}
.ws28{word-spacing:0.864000px;}
.ws55{word-spacing:0.912000px;}
.ws25{word-spacing:0.918000px;}
.ws4c{word-spacing:0.972000px;}
.ws45{word-spacing:1.026000px;}
.ws1d{word-spacing:1.134000px;}
.ws72{word-spacing:1.188000px;}
.ws87{word-spacing:1.215000px;}
.ws88{word-spacing:1.260000px;}
.ws19{word-spacing:1.296000px;}
.ws8a{word-spacing:1.305000px;}
.ws30{word-spacing:1.350000px;}
.ws94{word-spacing:1.395000px;}
.ws2b{word-spacing:1.404000px;}
.ws95{word-spacing:1.440000px;}
.ws7b{word-spacing:1.512000px;}
.ws6c{word-spacing:1.566000px;}
.ws10{word-spacing:1.620000px;}
.ws52{word-spacing:1.674000px;}
.ws43{word-spacing:1.782000px;}
.ws44{word-spacing:1.836000px;}
.ws26{word-spacing:1.944000px;}
.ws7f{word-spacing:1.998000px;}
.ws4e{word-spacing:2.052000px;}
.ws23{word-spacing:2.106000px;}
.ws11{word-spacing:2.160000px;}
.ws5b{word-spacing:2.214000px;}
.wsd{word-spacing:2.268000px;}
.ws53{word-spacing:2.430000px;}
.ws89{word-spacing:2.475000px;}
.ws21{word-spacing:2.484000px;}
.wsc{word-spacing:2.538000px;}
.ws66{word-spacing:2.646000px;}
.ws86{word-spacing:2.655000px;}
.ws24{word-spacing:2.700000px;}
.wse{word-spacing:2.808000px;}
.ws20{word-spacing:2.862000px;}
.ws31{word-spacing:2.916000px;}
.ws78{word-spacing:3.078000px;}
.ws61{word-spacing:3.186000px;}
.ws4d{word-spacing:3.294000px;}
.ws79{word-spacing:3.348000px;}
.ws7a{word-spacing:3.402000px;}
.ws34{word-spacing:3.456000px;}
.ws8d{word-spacing:3.465000px;}
.ws54{word-spacing:3.510000px;}
.ws8e{word-spacing:3.555000px;}
.ws81{word-spacing:3.672000px;}
.ws2a{word-spacing:3.726000px;}
.ws62{word-spacing:3.744000px;}
.ws18{word-spacing:3.888000px;}
.ws6d{word-spacing:3.942000px;}
.ws42{word-spacing:4.050000px;}
.ws48{word-spacing:4.212000px;}
.ws2d{word-spacing:4.266000px;}
.ws2e{word-spacing:4.320000px;}
.ws70{word-spacing:4.374000px;}
.ws5e{word-spacing:4.536000px;}
.ws4f{word-spacing:4.590000px;}
.ws22{word-spacing:4.644000px;}
.ws96{word-spacing:5.040000px;}
.ws71{word-spacing:5.076000px;}
.ws2f{word-spacing:5.130000px;}
.ws6f{word-spacing:5.238000px;}
.ws50{word-spacing:5.994000px;}
.ws33{word-spacing:6.426000px;}
.ws69{word-spacing:7.182000px;}
.ws6a{word-spacing:8.208000px;}
.ws6b{word-spacing:9.558000px;}
.ws2c{word-spacing:9.720000px;}
.ws40{word-spacing:14.400000px;}
.ws36{word-spacing:25.200000px;}
._7{margin-left:-25.200000px;}
._a{margin-left:-14.400000px;}
._8{margin-left:-7.590000px;}
._4{margin-left:-5.043600px;}
._d{margin-left:-3.645600px;}
._1{margin-left:-2.604000px;}
._0{margin-left:-1.188000px;}
._2{width:1.092000px;}
._3{width:2.908800px;}
._5{width:4.455000px;}
._6{width:6.298200px;}
._9{width:8.160000px;}
._b{width:13.872000px;}
._10{width:38.760000px;}
._e{width:1648.356000px;}
._c{width:1650.852000px;}
._f{width:1652.580000px;}
.fc3{color:rgb(0,103,104);}
.fc2{color:rgb(77,77,79);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:31.482000px;}
.fsa{font-size:34.980000px;}
.fs4{font-size:42.000000px;}
.fsb{font-size:43.200000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.400000px;}
.fs9{font-size:60.000000px;}
.fs6{font-size:78.000000px;}
.fs7{font-size:84.000000px;}
.fs8{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3a{bottom:37.986600px;}
.y4{bottom:75.486600px;}
.y96{bottom:99.438000px;}
.y74{bottom:103.527000px;}
.yba{bottom:111.118800px;}
.y95{bottom:116.691000px;}
.y31{bottom:119.809350px;}
.yc{bottom:119.842350px;}
.y73{bottom:120.780000px;}
.yb9{bottom:128.359800px;}
.yb{bottom:132.442350px;}
.y94{bottom:133.944000px;}
.y30{bottom:137.062350px;}
.y72{bottom:138.033000px;}
.ya{bottom:145.042350px;}
.yb8{bottom:145.612800px;}
.y93{bottom:151.197000px;}
.y2f{bottom:154.315350px;}
.y71{bottom:155.286000px;}
.y9{bottom:157.642350px;}
.yb7{bottom:167.361300px;}
.y92{bottom:168.450000px;}
.y2e{bottom:171.568350px;}
.y70{bottom:172.539000px;}
.yb6{bottom:184.614300px;}
.y2d{bottom:188.821350px;}
.y6f{bottom:189.792000px;}
.y91{bottom:190.200000px;}
.yb5{bottom:201.867300px;}
.y2c{bottom:206.074350px;}
.y8{bottom:206.242350px;}
.y6e{bottom:207.045000px;}
.y7{bottom:219.742350px;}
.y2b{bottom:223.327350px;}
.yb4{bottom:223.615800px;}
.y6d{bottom:224.298000px;}
.y6{bottom:233.242350px;}
.y2a{bottom:240.580350px;}
.yb3{bottom:240.868800px;}
.y6c{bottom:241.551000px;}
.y90{bottom:246.394500px;}
.y5{bottom:246.742350px;}
.y29{bottom:257.833350px;}
.y6b{bottom:258.804000px;}
.yb2{bottom:262.617300px;}
.y8f{bottom:263.647500px;}
.y28{bottom:275.086350px;}
.y6a{bottom:276.057000px;}
.yb1{bottom:279.870300px;}
.y8e{bottom:280.900500px;}
.y27{bottom:292.339350px;}
.y69{bottom:293.310000px;}
.y8d{bottom:298.153500px;}
.yb0{bottom:301.618800px;}
.y26{bottom:309.592350px;}
.y68{bottom:310.563000px;}
.y8c{bottom:315.406500px;}
.yaf{bottom:318.871800px;}
.y67{bottom:327.816000px;}
.y25{bottom:331.342350px;}
.y8b{bottom:332.659500px;}
.yae{bottom:340.621800px;}
.y66{bottom:345.069000px;}
.y8a{bottom:349.912500px;}
.y65{bottom:362.322000px;}
.y89{bottom:367.165500px;}
.y64{bottom:379.575000px;}
.y88{bottom:384.418500px;}
.y24{bottom:387.547350px;}
.y63{bottom:396.828000px;}
.yad{bottom:396.850800px;}
.y87{bottom:401.671500px;}
.y23{bottom:404.800350px;}
.y62{bottom:414.081000px;}
.yac{bottom:414.103800px;}
.y22{bottom:422.053350px;}
.y86{bottom:423.420000px;}
.y5f{bottom:429.209700px;}
.y61{bottom:431.334000px;}
.yab{bottom:431.356800px;}
.y21{bottom:439.306350px;}
.y85{bottom:440.673000px;}
.y5e{bottom:444.209700px;}
.y60{bottom:448.587000px;}
.yaa{bottom:448.609800px;}
.y20{bottom:456.559350px;}
.y84{bottom:457.926000px;}
.y5d{bottom:459.209700px;}
.ya9{bottom:465.862800px;}
.y1f{bottom:473.812350px;}
.y5c{bottom:474.209700px;}
.y83{bottom:475.179000px;}
.ya8{bottom:483.115800px;}
.y1e{bottom:491.065350px;}
.y82{bottom:492.432000px;}
.y7b{bottom:494.712000px;}
.ya7{bottom:500.368800px;}
.y1d{bottom:508.318350px;}
.y81{bottom:509.685000px;}
.y7a{bottom:509.712000px;}
.ya6{bottom:517.621800px;}
.y5b{bottom:519.145200px;}
.y79{bottom:524.712000px;}
.y1c{bottom:525.571350px;}
.y80{bottom:526.938000px;}
.y5a{bottom:536.398200px;}
.ya5{bottom:539.371800px;}
.y78{bottom:539.712000px;}
.y1b{bottom:542.824350px;}
.y7f{bottom:544.191000px;}
.y59{bottom:553.651200px;}
.y77{bottom:554.712000px;}
.y1a{bottom:560.077350px;}
.y7e{bottom:561.444000px;}
.y76{bottom:569.712000px;}
.y58{bottom:570.904200px;}
.y19{bottom:577.330350px;}
.y7d{bottom:578.697000px;}
.y75{bottom:584.712000px;}
.y57{bottom:588.157200px;}
.y18{bottom:594.583350px;}
.ya4{bottom:595.600800px;}
.y7c{bottom:595.950000px;}
.y56{bottom:605.410200px;}
.y17{bottom:611.836350px;}
.ya3{bottom:612.853800px;}
.y55{bottom:622.663200px;}
.y16{bottom:629.089350px;}
.ya2{bottom:630.106800px;}
.y54{bottom:639.916200px;}
.y9c{bottom:642.075000px;}
.y15{bottom:646.342350px;}
.ya1{bottom:647.359800px;}
.yd9{bottom:654.303450px;}
.y9b{bottom:657.075000px;}
.y53{bottom:657.169200px;}
.ya0{bottom:664.612800px;}
.y14{bottom:668.092350px;}
.yd8{bottom:669.299700px;}
.y9a{bottom:672.075000px;}
.y52{bottom:674.422200px;}
.y9f{bottom:681.865800px;}
.yd7{bottom:684.295950px;}
.y99{bottom:687.075000px;}
.y51{bottom:691.675200px;}
.y9e{bottom:699.118800px;}
.yd6{bottom:699.292200px;}
.y98{bottom:702.075000px;}
.y50{bottom:708.928200px;}
.yd5{bottom:714.288450px;}
.y9d{bottom:716.371800px;}
.y97{bottom:717.075000px;}
.y13{bottom:724.339350px;}
.y4f{bottom:726.181200px;}
.yd4{bottom:729.284700px;}
.y33{bottom:732.380250px;}
.y12{bottom:741.584850px;}
.y4e{bottom:743.434200px;}
.yd3{bottom:744.280950px;}
.y32{bottom:751.730250px;}
.yd2{bottom:759.277200px;}
.y4d{bottom:760.687200px;}
.ybc{bottom:762.496800px;}
.y11{bottom:770.839350px;}
.yd1{bottom:774.273450px;}
.ybb{bottom:777.496800px;}
.y4c{bottom:777.940200px;}
.yd0{bottom:789.269700px;}
.y4b{bottom:795.193200px;}
.y10{bottom:797.083350px;}
.ycf{bottom:804.265950px;}
.y4a{bottom:812.446200px;}
.yf{bottom:814.336350px;}
.yce{bottom:819.262200px;}
.y49{bottom:829.699200px;}
.ye{bottom:831.589350px;}
.ycd{bottom:834.258450px;}
.y48{bottom:846.952200px;}
.yd{bottom:848.842350px;}
.ycc{bottom:849.254700px;}
.y47{bottom:864.205200px;}
.ycb{bottom:864.250950px;}
.yca{bottom:879.247200px;}
.y46{bottom:881.458200px;}
.yc9{bottom:894.243450px;}
.y45{bottom:903.206700px;}
.yc8{bottom:909.239700px;}
.y39{bottom:909.967350px;}
.y44{bottom:920.464200px;}
.yc7{bottom:924.235950px;}
.y38{bottom:933.967350px;}
.yc6{bottom:939.232200px;}
.y43{bottom:942.212700px;}
.y37{bottom:948.967350px;}
.yc5{bottom:954.228450px;}
.y42{bottom:958.709700px;}
.yc4{bottom:969.224700px;}
.y36{bottom:978.967350px;}
.yc3{bottom:984.220950px;}
.y41{bottom:996.209700px;}
.yc2{bottom:999.217200px;}
.y35{bottom:1013.467350px;}
.yc1{bottom:1014.213450px;}
.yc0{bottom:1029.209700px;}
.y34{bottom:1045.867350px;}
.y40{bottom:1052.452200px;}
.ybf{bottom:1053.209700px;}
.y3f{bottom:1069.705200px;}
.y3e{bottom:1086.958200px;}
.y3{bottom:1103.439450px;}
.y3d{bottom:1108.706700px;}
.ybe{bottom:1109.456700px;}
.y3c{bottom:1125.959700px;}
.ybd{bottom:1126.709700px;}
.y2{bottom:1136.834700px;}
.y1{bottom:1154.654700px;}
.y3b{bottom:1179.366450px;}
.h6{height:30.030000px;}
.h5{height:32.175000px;}
.h4{height:34.320000px;}
.he{height:37.800000px;}
.h3{height:38.610000px;}
.h12{height:38.622000px;}
.h11{height:38.658000px;}
.hd{height:38.934000px;}
.h10{height:39.735352px;}
.h7{height:40.521630px;}
.hf{height:41.184000px;}
.h9{height:41.202000px;}
.h2{height:42.471000px;}
.hc{height:44.990700px;}
.h8{height:55.770000px;}
.ha{height:60.060000px;}
.hb{height:77.220000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x6{left:-337.606350px;}
.x7{left:-85.039350px;}
.x0{left:0.000000px;}
.x3{left:81.000000px;}
.x8{left:91.632000px;}
.x2{left:93.134850px;}
.x4{left:288.000000px;}
.x5{left:306.009000px;}
.x1{left:715.606200px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.010667pt;}
.v2{vertical-align:17.760000pt;}
.ls16{letter-spacing:-4.272000pt;}
.ls21{letter-spacing:-3.328000pt;}
.ls2f{letter-spacing:-3.120000pt;}
.lsc{letter-spacing:-2.256000pt;}
.ls17{letter-spacing:-1.968000pt;}
.ls26{letter-spacing:-1.237333pt;}
.ls14{letter-spacing:-0.912000pt;}
.ls10{letter-spacing:-0.864000pt;}
.lsf{letter-spacing:-0.672000pt;}
.ls18{letter-spacing:-0.576000pt;}
.ls24{letter-spacing:-0.384000pt;}
.lse{letter-spacing:-0.336000pt;}
.ls19{letter-spacing:-0.266667pt;}
.ls23{letter-spacing:-0.256000pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls2b{letter-spacing:-0.144000pt;}
.ls11{letter-spacing:-0.048000pt;}
.ls9{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.048000pt;}
.ls27{letter-spacing:0.085333pt;}
.lsb{letter-spacing:0.096000pt;}
.ls25{letter-spacing:0.144000pt;}
.ls12{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.213333pt;}
.lsa{letter-spacing:0.240000pt;}
.ls1a{letter-spacing:0.256000pt;}
.ls2d{letter-spacing:0.288000pt;}
.ls20{letter-spacing:0.335467pt;}
.ls2c{letter-spacing:0.336000pt;}
.ls2e{letter-spacing:0.384000pt;}
.ls7{letter-spacing:0.426667pt;}
.ls5{letter-spacing:0.432000pt;}
.ls1c{letter-spacing:0.469333pt;}
.ls22{letter-spacing:0.528000pt;}
.ls1f{letter-spacing:0.554667pt;}
.ls4{letter-spacing:0.672000pt;}
.ls1b{letter-spacing:0.682667pt;}
.ls28{letter-spacing:0.725333pt;}
.ls6{letter-spacing:0.816000pt;}
.ls3{letter-spacing:1.040000pt;}
.ls15{letter-spacing:1.248000pt;}
.ls2{letter-spacing:2.352000pt;}
.ls29{letter-spacing:2.832000pt;}
.ls0{letter-spacing:3.840000pt;}
.ls2a{letter-spacing:4.416000pt;}
.ls1e{letter-spacing:12.288000pt;}
.ls1d{letter-spacing:13.269333pt;}
.ls1{letter-spacing:2527.402667pt;}
.ws3e{word-spacing:-48.000000pt;}
.ws4{word-spacing:-14.560000pt;}
.ws2{word-spacing:-14.352000pt;}
.ws76{word-spacing:-10.272000pt;}
.ws3{word-spacing:-10.032000pt;}
.ws3c{word-spacing:-9.984000pt;}
.ws5{word-spacing:-9.840000pt;}
.ws1{word-spacing:-9.648000pt;}
.ws75{word-spacing:-9.552000pt;}
.ws63{word-spacing:-8.917333pt;}
.ws56{word-spacing:-8.874667pt;}
.ws3b{word-spacing:-8.746667pt;}
.ws82{word-spacing:-8.405333pt;}
.ws74{word-spacing:-8.304000pt;}
.ws58{word-spacing:-8.149333pt;}
.ws83{word-spacing:-8.000000pt;}
.ws0{word-spacing:-7.840000pt;}
.ws3f{word-spacing:-7.808000pt;}
.ws9{word-spacing:-7.765333pt;}
.ws7{word-spacing:-7.632000pt;}
.ws84{word-spacing:-6.840000pt;}
.ws57{word-spacing:-6.826667pt;}
.ws8{word-spacing:-6.218667pt;}
.ws6{word-spacing:-5.328000pt;}
.ws64{word-spacing:-4.736000pt;}
.ws85{word-spacing:-3.720000pt;}
.ws73{word-spacing:-1.920000pt;}
.ws92{word-spacing:-1.880000pt;}
.ws68{word-spacing:-1.728000pt;}
.ws7d{word-spacing:-1.680000pt;}
.ws12{word-spacing:-1.488000pt;}
.ws14{word-spacing:-1.440000pt;}
.ws15{word-spacing:-1.344000pt;}
.ws29{word-spacing:-1.296000pt;}
.ws27{word-spacing:-1.248000pt;}
.ws51{word-spacing:-1.200000pt;}
.ws49{word-spacing:-1.152000pt;}
.ws90{word-spacing:-1.080000pt;}
.ws8f{word-spacing:-1.040000pt;}
.wsf{word-spacing:-0.960000pt;}
.ws4a{word-spacing:-0.912000pt;}
.ws59{word-spacing:-0.864000pt;}
.ws35{word-spacing:-0.768000pt;}
.ws77{word-spacing:-0.725333pt;}
.ws32{word-spacing:-0.720000pt;}
.ws5c{word-spacing:-0.576000pt;}
.ws80{word-spacing:-0.554667pt;}
.ws47{word-spacing:-0.528000pt;}
.wsb{word-spacing:-0.480000pt;}
.ws39{word-spacing:-0.469333pt;}
.ws16{word-spacing:-0.432000pt;}
.ws41{word-spacing:-0.426667pt;}
.ws46{word-spacing:-0.384000pt;}
.ws5f{word-spacing:-0.336000pt;}
.ws4b{word-spacing:-0.288000pt;}
.ws3a{word-spacing:-0.256000pt;}
.ws5a{word-spacing:-0.240000pt;}
.ws1f{word-spacing:-0.192000pt;}
.ws93{word-spacing:-0.160000pt;}
.ws60{word-spacing:-0.144000pt;}
.ws1a{word-spacing:-0.096000pt;}
.ws5d{word-spacing:-0.048000pt;}
.ws38{word-spacing:-0.042667pt;}
.ws3d{word-spacing:-0.038400pt;}
.wsa{word-spacing:0.000000pt;}
.ws17{word-spacing:0.048000pt;}
.ws1e{word-spacing:0.096000pt;}
.ws6e{word-spacing:0.144000pt;}
.ws1c{word-spacing:0.192000pt;}
.ws7e{word-spacing:0.240000pt;}
.ws67{word-spacing:0.288000pt;}
.ws13{word-spacing:0.336000pt;}
.ws91{word-spacing:0.360000pt;}
.ws65{word-spacing:0.528000pt;}
.ws8b{word-spacing:0.560000pt;}
.ws37{word-spacing:0.576000pt;}
.ws8c{word-spacing:0.600000pt;}
.ws7c{word-spacing:0.624000pt;}
.ws1b{word-spacing:0.672000pt;}
.ws28{word-spacing:0.768000pt;}
.ws55{word-spacing:0.810667pt;}
.ws25{word-spacing:0.816000pt;}
.ws4c{word-spacing:0.864000pt;}
.ws45{word-spacing:0.912000pt;}
.ws1d{word-spacing:1.008000pt;}
.ws72{word-spacing:1.056000pt;}
.ws87{word-spacing:1.080000pt;}
.ws88{word-spacing:1.120000pt;}
.ws19{word-spacing:1.152000pt;}
.ws8a{word-spacing:1.160000pt;}
.ws30{word-spacing:1.200000pt;}
.ws94{word-spacing:1.240000pt;}
.ws2b{word-spacing:1.248000pt;}
.ws95{word-spacing:1.280000pt;}
.ws7b{word-spacing:1.344000pt;}
.ws6c{word-spacing:1.392000pt;}
.ws10{word-spacing:1.440000pt;}
.ws52{word-spacing:1.488000pt;}
.ws43{word-spacing:1.584000pt;}
.ws44{word-spacing:1.632000pt;}
.ws26{word-spacing:1.728000pt;}
.ws7f{word-spacing:1.776000pt;}
.ws4e{word-spacing:1.824000pt;}
.ws23{word-spacing:1.872000pt;}
.ws11{word-spacing:1.920000pt;}
.ws5b{word-spacing:1.968000pt;}
.wsd{word-spacing:2.016000pt;}
.ws53{word-spacing:2.160000pt;}
.ws89{word-spacing:2.200000pt;}
.ws21{word-spacing:2.208000pt;}
.wsc{word-spacing:2.256000pt;}
.ws66{word-spacing:2.352000pt;}
.ws86{word-spacing:2.360000pt;}
.ws24{word-spacing:2.400000pt;}
.wse{word-spacing:2.496000pt;}
.ws20{word-spacing:2.544000pt;}
.ws31{word-spacing:2.592000pt;}
.ws78{word-spacing:2.736000pt;}
.ws61{word-spacing:2.832000pt;}
.ws4d{word-spacing:2.928000pt;}
.ws79{word-spacing:2.976000pt;}
.ws7a{word-spacing:3.024000pt;}
.ws34{word-spacing:3.072000pt;}
.ws8d{word-spacing:3.080000pt;}
.ws54{word-spacing:3.120000pt;}
.ws8e{word-spacing:3.160000pt;}
.ws81{word-spacing:3.264000pt;}
.ws2a{word-spacing:3.312000pt;}
.ws62{word-spacing:3.328000pt;}
.ws18{word-spacing:3.456000pt;}
.ws6d{word-spacing:3.504000pt;}
.ws42{word-spacing:3.600000pt;}
.ws48{word-spacing:3.744000pt;}
.ws2d{word-spacing:3.792000pt;}
.ws2e{word-spacing:3.840000pt;}
.ws70{word-spacing:3.888000pt;}
.ws5e{word-spacing:4.032000pt;}
.ws4f{word-spacing:4.080000pt;}
.ws22{word-spacing:4.128000pt;}
.ws96{word-spacing:4.480000pt;}
.ws71{word-spacing:4.512000pt;}
.ws2f{word-spacing:4.560000pt;}
.ws6f{word-spacing:4.656000pt;}
.ws50{word-spacing:5.328000pt;}
.ws33{word-spacing:5.712000pt;}
.ws69{word-spacing:6.384000pt;}
.ws6a{word-spacing:7.296000pt;}
.ws6b{word-spacing:8.496000pt;}
.ws2c{word-spacing:8.640000pt;}
.ws40{word-spacing:12.800000pt;}
.ws36{word-spacing:22.400000pt;}
._7{margin-left:-22.400000pt;}
._a{margin-left:-12.800000pt;}
._8{margin-left:-6.746667pt;}
._4{margin-left:-4.483200pt;}
._d{margin-left:-3.240533pt;}
._1{margin-left:-2.314667pt;}
._0{margin-left:-1.056000pt;}
._2{width:0.970667pt;}
._3{width:2.585600pt;}
._5{width:3.960000pt;}
._6{width:5.598400pt;}
._9{width:7.253333pt;}
._b{width:12.330667pt;}
._10{width:34.453333pt;}
._e{width:1465.205333pt;}
._c{width:1467.424000pt;}
._f{width:1468.960000pt;}
.fs5{font-size:27.984000pt;}
.fsa{font-size:31.093333pt;}
.fs4{font-size:37.333333pt;}
.fsb{font-size:38.400000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:52.800000pt;}
.fs9{font-size:53.333333pt;}
.fs6{font-size:69.333333pt;}
.fs7{font-size:74.666667pt;}
.fs8{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:33.765867pt;}
.y4{bottom:67.099200pt;}
.y96{bottom:88.389333pt;}
.y74{bottom:92.024000pt;}
.yba{bottom:98.772267pt;}
.y95{bottom:103.725333pt;}
.y31{bottom:106.497200pt;}
.yc{bottom:106.526533pt;}
.y73{bottom:107.360000pt;}
.yb9{bottom:114.097600pt;}
.yb{bottom:117.726533pt;}
.y94{bottom:119.061333pt;}
.y30{bottom:121.833200pt;}
.y72{bottom:122.696000pt;}
.ya{bottom:128.926533pt;}
.yb8{bottom:129.433600pt;}
.y93{bottom:134.397333pt;}
.y2f{bottom:137.169200pt;}
.y71{bottom:138.032000pt;}
.y9{bottom:140.126533pt;}
.yb7{bottom:148.765600pt;}
.y92{bottom:149.733333pt;}
.y2e{bottom:152.505200pt;}
.y70{bottom:153.368000pt;}
.yb6{bottom:164.101600pt;}
.y2d{bottom:167.841200pt;}
.y6f{bottom:168.704000pt;}
.y91{bottom:169.066667pt;}
.yb5{bottom:179.437600pt;}
.y2c{bottom:183.177200pt;}
.y8{bottom:183.326533pt;}
.y6e{bottom:184.040000pt;}
.y7{bottom:195.326533pt;}
.y2b{bottom:198.513200pt;}
.yb4{bottom:198.769600pt;}
.y6d{bottom:199.376000pt;}
.y6{bottom:207.326533pt;}
.y2a{bottom:213.849200pt;}
.yb3{bottom:214.105600pt;}
.y6c{bottom:214.712000pt;}
.y90{bottom:219.017333pt;}
.y5{bottom:219.326533pt;}
.y29{bottom:229.185200pt;}
.y6b{bottom:230.048000pt;}
.yb2{bottom:233.437600pt;}
.y8f{bottom:234.353333pt;}
.y28{bottom:244.521200pt;}
.y6a{bottom:245.384000pt;}
.yb1{bottom:248.773600pt;}
.y8e{bottom:249.689333pt;}
.y27{bottom:259.857200pt;}
.y69{bottom:260.720000pt;}
.y8d{bottom:265.025333pt;}
.yb0{bottom:268.105600pt;}
.y26{bottom:275.193200pt;}
.y68{bottom:276.056000pt;}
.y8c{bottom:280.361333pt;}
.yaf{bottom:283.441600pt;}
.y67{bottom:291.392000pt;}
.y25{bottom:294.526533pt;}
.y8b{bottom:295.697333pt;}
.yae{bottom:302.774933pt;}
.y66{bottom:306.728000pt;}
.y8a{bottom:311.033333pt;}
.y65{bottom:322.064000pt;}
.y89{bottom:326.369333pt;}
.y64{bottom:337.400000pt;}
.y88{bottom:341.705333pt;}
.y24{bottom:344.486533pt;}
.y63{bottom:352.736000pt;}
.yad{bottom:352.756267pt;}
.y87{bottom:357.041333pt;}
.y23{bottom:359.822533pt;}
.y62{bottom:368.072000pt;}
.yac{bottom:368.092267pt;}
.y22{bottom:375.158533pt;}
.y86{bottom:376.373333pt;}
.y5f{bottom:381.519733pt;}
.y61{bottom:383.408000pt;}
.yab{bottom:383.428267pt;}
.y21{bottom:390.494533pt;}
.y85{bottom:391.709333pt;}
.y5e{bottom:394.853067pt;}
.y60{bottom:398.744000pt;}
.yaa{bottom:398.764267pt;}
.y20{bottom:405.830533pt;}
.y84{bottom:407.045333pt;}
.y5d{bottom:408.186400pt;}
.ya9{bottom:414.100267pt;}
.y1f{bottom:421.166533pt;}
.y5c{bottom:421.519733pt;}
.y83{bottom:422.381333pt;}
.ya8{bottom:429.436267pt;}
.y1e{bottom:436.502533pt;}
.y82{bottom:437.717333pt;}
.y7b{bottom:439.744000pt;}
.ya7{bottom:444.772267pt;}
.y1d{bottom:451.838533pt;}
.y81{bottom:453.053333pt;}
.y7a{bottom:453.077333pt;}
.ya6{bottom:460.108267pt;}
.y5b{bottom:461.462400pt;}
.y79{bottom:466.410667pt;}
.y1c{bottom:467.174533pt;}
.y80{bottom:468.389333pt;}
.y5a{bottom:476.798400pt;}
.ya5{bottom:479.441600pt;}
.y78{bottom:479.744000pt;}
.y1b{bottom:482.510533pt;}
.y7f{bottom:483.725333pt;}
.y59{bottom:492.134400pt;}
.y77{bottom:493.077333pt;}
.y1a{bottom:497.846533pt;}
.y7e{bottom:499.061333pt;}
.y76{bottom:506.410667pt;}
.y58{bottom:507.470400pt;}
.y19{bottom:513.182533pt;}
.y7d{bottom:514.397333pt;}
.y75{bottom:519.744000pt;}
.y57{bottom:522.806400pt;}
.y18{bottom:528.518533pt;}
.ya4{bottom:529.422933pt;}
.y7c{bottom:529.733333pt;}
.y56{bottom:538.142400pt;}
.y17{bottom:543.854533pt;}
.ya3{bottom:544.758933pt;}
.y55{bottom:553.478400pt;}
.y16{bottom:559.190533pt;}
.ya2{bottom:560.094933pt;}
.y54{bottom:568.814400pt;}
.y9c{bottom:570.733333pt;}
.y15{bottom:574.526533pt;}
.ya1{bottom:575.430933pt;}
.yd9{bottom:581.603067pt;}
.y9b{bottom:584.066667pt;}
.y53{bottom:584.150400pt;}
.ya0{bottom:590.766933pt;}
.y14{bottom:593.859867pt;}
.yd8{bottom:594.933067pt;}
.y9a{bottom:597.400000pt;}
.y52{bottom:599.486400pt;}
.y9f{bottom:606.102933pt;}
.yd7{bottom:608.263067pt;}
.y99{bottom:610.733333pt;}
.y51{bottom:614.822400pt;}
.y9e{bottom:621.438933pt;}
.yd6{bottom:621.593067pt;}
.y98{bottom:624.066667pt;}
.y50{bottom:630.158400pt;}
.yd5{bottom:634.923067pt;}
.y9d{bottom:636.774933pt;}
.y97{bottom:637.400000pt;}
.y13{bottom:643.857200pt;}
.y4f{bottom:645.494400pt;}
.yd4{bottom:648.253067pt;}
.y33{bottom:651.004667pt;}
.y12{bottom:659.186533pt;}
.y4e{bottom:660.830400pt;}
.yd3{bottom:661.583067pt;}
.y32{bottom:668.204667pt;}
.yd2{bottom:674.913067pt;}
.y4d{bottom:676.166400pt;}
.ybc{bottom:677.774933pt;}
.y11{bottom:685.190533pt;}
.yd1{bottom:688.243067pt;}
.ybb{bottom:691.108267pt;}
.y4c{bottom:691.502400pt;}
.yd0{bottom:701.573067pt;}
.y4b{bottom:706.838400pt;}
.y10{bottom:708.518533pt;}
.ycf{bottom:714.903067pt;}
.y4a{bottom:722.174400pt;}
.yf{bottom:723.854533pt;}
.yce{bottom:728.233067pt;}
.y49{bottom:737.510400pt;}
.ye{bottom:739.190533pt;}
.ycd{bottom:741.563067pt;}
.y48{bottom:752.846400pt;}
.yd{bottom:754.526533pt;}
.ycc{bottom:754.893067pt;}
.y47{bottom:768.182400pt;}
.ycb{bottom:768.223067pt;}
.yca{bottom:781.553067pt;}
.y46{bottom:783.518400pt;}
.yc9{bottom:794.883067pt;}
.y45{bottom:802.850400pt;}
.yc8{bottom:808.213067pt;}
.y39{bottom:808.859867pt;}
.y44{bottom:818.190400pt;}
.yc7{bottom:821.543067pt;}
.y38{bottom:830.193200pt;}
.yc6{bottom:834.873067pt;}
.y43{bottom:837.522400pt;}
.y37{bottom:843.526533pt;}
.yc5{bottom:848.203067pt;}
.y42{bottom:852.186400pt;}
.yc4{bottom:861.533067pt;}
.y36{bottom:870.193200pt;}
.yc3{bottom:874.863067pt;}
.y41{bottom:885.519733pt;}
.yc2{bottom:888.193067pt;}
.y35{bottom:900.859867pt;}
.yc1{bottom:901.523067pt;}
.yc0{bottom:914.853067pt;}
.y34{bottom:929.659867pt;}
.y40{bottom:935.513067pt;}
.ybf{bottom:936.186400pt;}
.y3f{bottom:950.849067pt;}
.y3e{bottom:966.185067pt;}
.y3{bottom:980.835067pt;}
.y3d{bottom:985.517067pt;}
.ybe{bottom:986.183733pt;}
.y3c{bottom:1000.853067pt;}
.ybd{bottom:1001.519733pt;}
.y2{bottom:1010.519733pt;}
.y1{bottom:1026.359733pt;}
.y3b{bottom:1048.325733pt;}
.h6{height:26.693333pt;}
.h5{height:28.600000pt;}
.h4{height:30.506667pt;}
.he{height:33.600000pt;}
.h3{height:34.320000pt;}
.h12{height:34.330667pt;}
.h11{height:34.362667pt;}
.hd{height:34.608000pt;}
.h10{height:35.320312pt;}
.h7{height:36.019227pt;}
.hf{height:36.608000pt;}
.h9{height:36.624000pt;}
.h2{height:37.752000pt;}
.hc{height:39.991733pt;}
.h8{height:49.573333pt;}
.ha{height:53.386667pt;}
.hb{height:68.640000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x6{left:-300.094533pt;}
.x7{left:-75.590533pt;}
.x0{left:0.000000pt;}
.x3{left:72.000000pt;}
.x8{left:81.450667pt;}
.x2{left:82.786533pt;}
.x4{left:256.000000pt;}
.x5{left:272.008000pt;}
.x1{left:636.094400pt;}
}




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