
    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_abbb60916c6747d544bd940a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.039000;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_21c0f3c6e4f4fb6ac5aba9e7.woff')format("woff");}.ff2{font-family:ff2;line-height:0.924000;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_f392adf462b57ac62c50c8b5.woff')format("woff");}.ff3{font-family:ff3;line-height:0.924000;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_7f74258ddb8b5d1c6a2f6861.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_9e990073cd1540eca2e54bbc.woff')format("woff");}.ff5{font-family:ff5;line-height:1.039000;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_8eb2d7ebeb7332fe87f11e1b.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_7c6a5827069656e4a151ef6a.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_f378bbc707623d421d50a39e.woff')format("woff");}.ff8{font-family:ff8;line-height:0.911000;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_febd057da6a766b87cc9c541.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_1732b5d6b0bc855a7a6289fb.woff')format("woff");}.ffa{font-family:ffa;line-height:0.901000;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_4d5517fa3adc34842947fa38.woff')format("woff");}.ffb{font-family:ffb;line-height:0.919000;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_b4d7b048c4b37616f7ad4dff.woff')format("woff");}.ffc{font-family:ffc;line-height:0.785000;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_0b1f10d614de1bc59ee81462.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:19.980000px;}
.ls1b{letter-spacing:-3.744000px;}
.ls20{letter-spacing:-1.392000px;}
.ls6{letter-spacing:-0.756000px;}
.ls9{letter-spacing:-0.702000px;}
.lsc{letter-spacing:-0.648000px;}
.lse{letter-spacing:-0.432000px;}
.ls12{letter-spacing:-0.300000px;}
.ls1e{letter-spacing:-0.288000px;}
.ls29{letter-spacing:-0.225000px;}
.ls7{letter-spacing:-0.216000px;}
.ls1a{letter-spacing:-0.162000px;}
.ls21{letter-spacing:-0.108000px;}
.ls8{letter-spacing:-0.054000px;}
.ls4{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.054000px;}
.lsd{letter-spacing:0.108000px;}
.lsb{letter-spacing:0.162000px;}
.ls22{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.240000px;}
.ls5{letter-spacing:0.270000px;}
.ls25{letter-spacing:0.324000px;}
.ls14{letter-spacing:0.336000px;}
.ls24{letter-spacing:0.378000px;}
.ls26{letter-spacing:0.432000px;}
.ls11{letter-spacing:0.480000px;}
.ls1f{letter-spacing:0.528000px;}
.ls18{letter-spacing:0.540000px;}
.ls27{letter-spacing:0.576000px;}
.ls19{letter-spacing:0.594000px;}
.ls23{letter-spacing:0.624000px;}
.lsf{letter-spacing:0.648000px;}
.ls1d{letter-spacing:0.663600px;}
.ls28{letter-spacing:0.756000px;}
.ls13{letter-spacing:0.768000px;}
.ls10{letter-spacing:0.780000px;}
.ls2{letter-spacing:1.170000px;}
.ls17{letter-spacing:1.404000px;}
.ls1c{letter-spacing:1.971000px;}
.ls0{letter-spacing:4.320000px;}
.ls16{letter-spacing:13.824000px;}
.ls15{letter-spacing:14.928000px;}
.ls1{letter-spacing:2845.680000px;}
.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;}
}
.ws4f{word-spacing:-54.000000px;}
.ws39{word-spacing:-16.380000px;}
.ws4{word-spacing:-16.146000px;}
.ws7d{word-spacing:-11.556000px;}
.ws3b{word-spacing:-11.232000px;}
.ws2{word-spacing:-11.070000px;}
.ws7{word-spacing:-10.908000px;}
.ws1{word-spacing:-10.854000px;}
.ws50{word-spacing:-10.800000px;}
.ws77{word-spacing:-10.746000px;}
.ws3a{word-spacing:-10.638000px;}
.ws3{word-spacing:-10.584000px;}
.ws60{word-spacing:-10.080000px;}
.ws4d{word-spacing:-9.984000px;}
.ws76{word-spacing:-9.840000px;}
.ws7c{word-spacing:-9.792000px;}
.ws5e{word-spacing:-9.744000px;}
.ws38{word-spacing:-9.456000px;}
.ws63{word-spacing:-9.342000px;}
.ws62{word-spacing:-9.288000px;}
.ws6{word-spacing:-9.234000px;}
.ws61{word-spacing:-9.126000px;}
.ws7e{word-spacing:-9.000000px;}
.ws0{word-spacing:-8.820000px;}
.ws5{word-spacing:-8.802000px;}
.ws51{word-spacing:-8.784000px;}
.ws65{word-spacing:-8.688000px;}
.ws4e{word-spacing:-8.640000px;}
.ws9{word-spacing:-8.544000px;}
.ws64{word-spacing:-8.478000px;}
.ws7f{word-spacing:-7.695000px;}
.ws5f{word-spacing:-7.680000px;}
.ws8{word-spacing:-6.996000px;}
.ws49{word-spacing:-1.998000px;}
.ws5d{word-spacing:-1.920000px;}
.ws43{word-spacing:-1.890000px;}
.ws1b{word-spacing:-1.674000px;}
.ws2c{word-spacing:-1.566000px;}
.ws1c{word-spacing:-1.458000px;}
.ws1d{word-spacing:-1.404000px;}
.ws90{word-spacing:-1.395000px;}
.ws3f{word-spacing:-1.350000px;}
.ws69{word-spacing:-1.188000px;}
.ws3e{word-spacing:-1.134000px;}
.wsf{word-spacing:-1.080000px;}
.ws6a{word-spacing:-1.026000px;}
.ws8d{word-spacing:-0.945000px;}
.ws2d{word-spacing:-0.918000px;}
.ws8e{word-spacing:-0.900000px;}
.ws72{word-spacing:-0.864000px;}
.ws92{word-spacing:-0.855000px;}
.ws91{word-spacing:-0.810000px;}
.ws97{word-spacing:-0.765000px;}
.ws82{word-spacing:-0.720000px;}
.ws81{word-spacing:-0.675000px;}
.wsc{word-spacing:-0.648000px;}
.ws86{word-spacing:-0.630000px;}
.ws79{word-spacing:-0.624000px;}
.ws67{word-spacing:-0.594000px;}
.ws85{word-spacing:-0.585000px;}
.wsb{word-spacing:-0.540000px;}
.ws37{word-spacing:-0.528000px;}
.ws66{word-spacing:-0.486000px;}
.ws3d{word-spacing:-0.480000px;}
.ws48{word-spacing:-0.432000px;}
.ws25{word-spacing:-0.378000px;}
.ws5b{word-spacing:-0.324000px;}
.ws9a{word-spacing:-0.315000px;}
.ws45{word-spacing:-0.270000px;}
.ws24{word-spacing:-0.216000px;}
.ws7b{word-spacing:-0.162000px;}
.ws8f{word-spacing:-0.135000px;}
.ws6f{word-spacing:-0.108000px;}
.ws8a{word-spacing:-0.090000px;}
.ws29{word-spacing:-0.054000px;}
.wsa{word-spacing:0.000000px;}
.ws83{word-spacing:0.045000px;}
.ws4c{word-spacing:0.054000px;}
.ws1e{word-spacing:0.108000px;}
.wsd{word-spacing:0.216000px;}
.ws52{word-spacing:0.270000px;}
.ws26{word-spacing:0.432000px;}
.ws73{word-spacing:0.540000px;}
.ws6c{word-spacing:0.594000px;}
.ws36{word-spacing:0.648000px;}
.ws44{word-spacing:0.702000px;}
.ws75{word-spacing:0.756000px;}
.ws96{word-spacing:0.855000px;}
.ws15{word-spacing:0.918000px;}
.ws6e{word-spacing:1.026000px;}
.ws95{word-spacing:1.035000px;}
.ws68{word-spacing:1.134000px;}
.ws6d{word-spacing:1.188000px;}
.ws84{word-spacing:1.215000px;}
.ws47{word-spacing:1.296000px;}
.ws34{word-spacing:1.404000px;}
.ws2b{word-spacing:1.458000px;}
.ws5c{word-spacing:1.512000px;}
.ws53{word-spacing:1.566000px;}
.ws8b{word-spacing:1.665000px;}
.ws22{word-spacing:1.674000px;}
.ws8c{word-spacing:1.710000px;}
.ws10{word-spacing:1.782000px;}
.ws89{word-spacing:1.800000px;}
.ws1a{word-spacing:1.836000px;}
.ws54{word-spacing:1.890000px;}
.ws17{word-spacing:1.944000px;}
.ws14{word-spacing:1.998000px;}
.ws23{word-spacing:2.052000px;}
.ws87{word-spacing:2.070000px;}
.ws11{word-spacing:2.106000px;}
.ws88{word-spacing:2.115000px;}
.ws12{word-spacing:2.160000px;}
.ws98{word-spacing:2.205000px;}
.ws4a{word-spacing:2.214000px;}
.ws99{word-spacing:2.250000px;}
.ws32{word-spacing:2.268000px;}
.ws20{word-spacing:2.322000px;}
.ws78{word-spacing:2.430000px;}
.ws41{word-spacing:2.484000px;}
.ws13{word-spacing:2.592000px;}
.ws21{word-spacing:2.646000px;}
.ws33{word-spacing:2.700000px;}
.ws58{word-spacing:2.862000px;}
.ws4b{word-spacing:2.916000px;}
.ws42{word-spacing:3.078000px;}
.ws28{word-spacing:3.186000px;}
.ws19{word-spacing:3.240000px;}
.ws71{word-spacing:3.294000px;}
.ws93{word-spacing:3.330000px;}
.ws94{word-spacing:3.375000px;}
.ws70{word-spacing:3.456000px;}
.ws6b{word-spacing:3.672000px;}
.ws2a{word-spacing:3.780000px;}
.ws27{word-spacing:3.888000px;}
.ws7a{word-spacing:3.996000px;}
.wse{word-spacing:4.158000px;}
.ws80{word-spacing:4.266000px;}
.ws55{word-spacing:4.320000px;}
.ws40{word-spacing:4.698000px;}
.ws31{word-spacing:4.752000px;}
.ws30{word-spacing:4.806000px;}
.ws74{word-spacing:4.860000px;}
.ws5a{word-spacing:4.968000px;}
.ws46{word-spacing:5.022000px;}
.ws2e{word-spacing:5.616000px;}
.ws2f{word-spacing:5.670000px;}
.ws1f{word-spacing:5.778000px;}
.ws18{word-spacing:6.318000px;}
.ws16{word-spacing:6.750000px;}
.ws59{word-spacing:7.182000px;}
.ws56{word-spacing:8.856000px;}
.ws57{word-spacing:9.990000px;}
.ws3c{word-spacing:14.400000px;}
.ws35{word-spacing:25.200000px;}
._5{margin-left:-25.200000px;}
._9{margin-left:-14.400000px;}
._11{margin-left:-9.000000px;}
._6{margin-left:-5.371200px;}
._7{margin-left:-3.996000px;}
._1{margin-left:-2.604000px;}
._0{margin-left:-1.188000px;}
._2{width:1.092000px;}
._3{width:2.834400px;}
._c{width:4.689600px;}
._4{width:5.778000px;}
._8{width:8.160000px;}
._a{width:14.601600px;}
._10{width:37.840800px;}
._f{width:39.092400px;}
._d{width:1213.992000px;}
._b{width:1217.352000px;}
._e{width:1218.360000px;}
.fc3{color:rgb(0,103,104);}
.fc2{color:rgb(77,77,79);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:34.980000px;}
.fs4{font-size:42.000000px;}
.fsa{font-size:43.200000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.400000px;}
.fs8{font-size:60.000000px;}
.fs5{font-size:78.000000px;}
.fs6{font-size:84.000000px;}
.fs7{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3b{bottom:37.986600px;}
.y4{bottom:75.486600px;}
.y5e{bottom:93.607950px;}
.y76{bottom:102.264000px;}
.y9d{bottom:104.731800px;}
.y33{bottom:106.339350px;}
.yc{bottom:106.342350px;}
.y5d{bottom:115.356450px;}
.yb7{bottom:115.682700px;}
.yb{bottom:118.942350px;}
.y75{bottom:119.517000px;}
.y9c{bottom:121.984800px;}
.y32{bottom:123.592350px;}
.ya{bottom:131.542350px;}
.y5c{bottom:131.853450px;}
.yb6{bottom:132.935700px;}
.y74{bottom:136.770000px;}
.y9b{bottom:139.237800px;}
.y9{bottom:144.142350px;}
.y31{bottom:145.342350px;}
.yb5{bottom:150.188700px;}
.y73{bottom:154.023000px;}
.y9a{bottom:156.490800px;}
.yb4{bottom:167.441700px;}
.y5b{bottom:169.356450px;}
.y72{bottom:171.276000px;}
.y99{bottom:173.743800px;}
.y5a{bottom:185.853450px;}
.y71{bottom:188.529000px;}
.yb3{bottom:189.190200px;}
.y98{bottom:190.996800px;}
.y8{bottom:192.742350px;}
.y30{bottom:195.517350px;}
.y70{bottom:205.782000px;}
.y7{bottom:206.242350px;}
.yb2{bottom:206.443200px;}
.y97{bottom:208.249800px;}
.y2f{bottom:212.770350px;}
.y6{bottom:219.742350px;}
.y6f{bottom:223.035000px;}
.y59{bottom:223.353450px;}
.yb1{bottom:223.696200px;}
.y96{bottom:225.502800px;}
.y2e{bottom:230.023350px;}
.y5{bottom:233.242350px;}
.y6e{bottom:240.288000px;}
.yb0{bottom:240.949200px;}
.y95{bottom:242.755800px;}
.y2d{bottom:247.276350px;}
.y6d{bottom:257.541000px;}
.y94{bottom:260.008800px;}
.yaf{bottom:262.697700px;}
.y2c{bottom:264.529350px;}
.y6c{bottom:274.794000px;}
.y93{bottom:277.261800px;}
.y58{bottom:279.546450px;}
.yae{bottom:279.950700px;}
.y2b{bottom:281.782350px;}
.y6b{bottom:292.047000px;}
.y57{bottom:296.799450px;}
.yad{bottom:297.203700px;}
.y92{bottom:299.010300px;}
.y2a{bottom:299.035350px;}
.y6a{bottom:313.795500px;}
.y56{bottom:314.052450px;}
.yac{bottom:314.456700px;}
.y91{bottom:316.263300px;}
.y29{bottom:316.288350px;}
.yf4{bottom:325.867200px;}
.y69{bottom:331.048500px;}
.y55{bottom:331.305450px;}
.yab{bottom:331.709700px;}
.y90{bottom:333.516300px;}
.y28{bottom:333.541350px;}
.yf3{bottom:340.863450px;}
.y68{bottom:348.301500px;}
.y54{bottom:348.558450px;}
.y8f{bottom:350.769300px;}
.y27{bottom:350.794350px;}
.yaa{bottom:353.459700px;}
.yf2{bottom:355.859700px;}
.y67{bottom:365.554500px;}
.y8e{bottom:368.022300px;}
.y26{bottom:368.047350px;}
.y53{bottom:370.306950px;}
.yf1{bottom:370.855950px;}
.y66{bottom:382.807500px;}
.y8d{bottom:385.275300px;}
.y25{bottom:385.300350px;}
.yf0{bottom:385.852200px;}
.y52{bottom:387.559950px;}
.y65{bottom:400.057500px;}
.yef{bottom:400.848450px;}
.y24{bottom:402.553350px;}
.y51{bottom:404.812950px;}
.y8c{bottom:407.023800px;}
.ya9{bottom:409.700700px;}
.yee{bottom:415.844700px;}
.y64{bottom:417.307500px;}
.y23{bottom:419.806350px;}
.y50{bottom:422.065950px;}
.y8b{bottom:424.276800px;}
.ya8{bottom:426.953700px;}
.yed{bottom:430.840950px;}
.y63{bottom:434.560500px;}
.y22{bottom:437.059350px;}
.y4f{bottom:439.318950px;}
.y8a{bottom:441.529800px;}
.ya7{bottom:444.206700px;}
.yec{bottom:445.837200px;}
.y21{bottom:454.312350px;}
.y4e{bottom:456.571950px;}
.y89{bottom:458.782800px;}
.yeb{bottom:460.833450px;}
.ya6{bottom:461.459700px;}
.y20{bottom:471.565350px;}
.y4d{bottom:473.824950px;}
.yea{bottom:475.829700px;}
.y88{bottom:476.035800px;}
.ya5{bottom:483.209700px;}
.y78{bottom:484.334700px;}
.y1f{bottom:488.818350px;}
.ye9{bottom:490.825950px;}
.y4c{bottom:491.077950px;}
.y82{bottom:491.310450px;}
.y87{bottom:497.784300px;}
.y77{bottom:499.334700px;}
.ye8{bottom:505.822200px;}
.y1e{bottom:506.071350px;}
.y81{bottom:506.310450px;}
.y4b{bottom:508.330950px;}
.y86{bottom:515.037300px;}
.ye7{bottom:520.818450px;}
.y80{bottom:521.310450px;}
.y1d{bottom:523.324350px;}
.y4a{bottom:525.583950px;}
.y85{bottom:532.290300px;}
.ye6{bottom:535.814700px;}
.y7f{bottom:536.310450px;}
.y1c{bottom:540.577350px;}
.y49{bottom:547.332450px;}
.y84{bottom:549.543300px;}
.ye5{bottom:550.810950px;}
.y7e{bottom:551.310450px;}
.y1b{bottom:557.830350px;}
.y48{bottom:564.585450px;}
.ye4{bottom:565.807200px;}
.y83{bottom:566.796300px;}
.y1a{bottom:575.083350px;}
.ye3{bottom:580.803450px;}
.y47{bottom:581.838450px;}
.y19{bottom:592.336350px;}
.ye2{bottom:595.799700px;}
.y7d{bottom:596.310450px;}
.y46{bottom:599.091450px;}
.y18{bottom:609.589350px;}
.ye1{bottom:610.795950px;}
.y7c{bottom:611.310450px;}
.ya4{bottom:612.921300px;}
.y45{bottom:616.344450px;}
.ye0{bottom:625.792200px;}
.y7b{bottom:626.310450px;}
.y17{bottom:626.842350px;}
.ya3{bottom:627.921300px;}
.y44{bottom:633.597450px;}
.ydf{bottom:640.788450px;}
.y7a{bottom:641.310450px;}
.ya2{bottom:642.921300px;}
.y16{bottom:648.592350px;}
.y43{bottom:650.850450px;}
.yde{bottom:655.784700px;}
.y79{bottom:656.310450px;}
.ya1{bottom:657.921300px;}
.y42{bottom:668.103450px;}
.ydd{bottom:670.780950px;}
.ya0{bottom:672.921300px;}
.ydc{bottom:685.777200px;}
.y9f{bottom:687.921300px;}
.y41{bottom:689.853450px;}
.ydb{bottom:700.773450px;}
.y9e{bottom:702.921300px;}
.y15{bottom:704.825850px;}
.yda{bottom:715.769700px;}
.y14{bottom:722.078850px;}
.yd9{bottom:730.765950px;}
.y35{bottom:732.380250px;}
.y13{bottom:739.331850px;}
.yd8{bottom:745.762200px;}
.y40{bottom:746.094450px;}
.y34{bottom:751.730250px;}
.ybd{bottom:755.798250px;}
.yd7{bottom:760.758450px;}
.y3f{bottom:763.347450px;}
.y12{bottom:768.586350px;}
.ybc{bottom:770.798250px;}
.yd6{bottom:775.754700px;}
.y3e{bottom:780.600450px;}
.ybb{bottom:785.798250px;}
.yd5{bottom:790.750950px;}
.y11{bottom:794.830350px;}
.y3d{bottom:797.853450px;}
.yba{bottom:800.798250px;}
.yd4{bottom:805.747200px;}
.y10{bottom:812.083350px;}
.yb9{bottom:815.798250px;}
.yd3{bottom:820.743450px;}
.yf{bottom:829.336350px;}
.yb8{bottom:830.798250px;}
.yd2{bottom:835.739700px;}
.y62{bottom:843.978450px;}
.ye{bottom:846.589350px;}
.yd1{bottom:850.735950px;}
.y61{bottom:858.978450px;}
.yd{bottom:863.842350px;}
.yd0{bottom:865.732200px;}
.y60{bottom:873.978450px;}
.yc2{bottom:875.798250px;}
.ycf{bottom:880.728450px;}
.y5f{bottom:888.978450px;}
.yc1{bottom:890.798250px;}
.yce{bottom:895.724700px;}
.yc0{bottom:905.798250px;}
.ycd{bottom:910.720950px;}
.ybf{bottom:920.798250px;}
.y3a{bottom:924.967350px;}
.ycc{bottom:925.717200px;}
.ybe{bottom:935.798250px;}
.ycb{bottom:940.713450px;}
.y39{bottom:948.967350px;}
.yca{bottom:955.709700px;}
.y38{bottom:978.967350px;}
.yc9{bottom:979.709700px;}
.y37{bottom:1013.467350px;}
.yc8{bottom:1035.955200px;}
.y36{bottom:1045.867350px;}
.yc7{bottom:1053.208200px;}
.yc6{bottom:1070.461200px;}
.yc5{bottom:1092.206700px;}
.y3{bottom:1103.439450px;}
.yc4{bottom:1109.456700px;}
.yc3{bottom:1126.709700px;}
.y2{bottom:1136.834700px;}
.y1{bottom:1154.654700px;}
.y3c{bottom:1179.366450px;}
.h6{height:30.030000px;}
.h12{height:32.175000px;}
.h4{height:34.320000px;}
.h5{height:36.945000px;}
.hf{height:37.800000px;}
.h3{height:38.070000px;}
.he{height:38.340000px;}
.h8{height:38.610000px;}
.h11{height:38.622000px;}
.hd{height:39.408000px;}
.h10{height:39.735352px;}
.h7{height:44.334000px;}
.h2{height:48.767400px;}
.hc{height:49.260000px;}
.h9{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;}
.x2{left:93.134850px;}
.x4{left:288.000000px;}
.x5{left:305.995500px;}
.x1{left:715.606200px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls1b{letter-spacing:-3.328000pt;}
.ls20{letter-spacing:-1.237333pt;}
.ls6{letter-spacing:-0.672000pt;}
.ls9{letter-spacing:-0.624000pt;}
.lsc{letter-spacing:-0.576000pt;}
.lse{letter-spacing:-0.384000pt;}
.ls12{letter-spacing:-0.266667pt;}
.ls1e{letter-spacing:-0.256000pt;}
.ls29{letter-spacing:-0.200000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls1a{letter-spacing:-0.144000pt;}
.ls21{letter-spacing:-0.096000pt;}
.ls8{letter-spacing:-0.048000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.048000pt;}
.lsd{letter-spacing:0.096000pt;}
.lsb{letter-spacing:0.144000pt;}
.ls22{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.213333pt;}
.ls5{letter-spacing:0.240000pt;}
.ls25{letter-spacing:0.288000pt;}
.ls14{letter-spacing:0.298667pt;}
.ls24{letter-spacing:0.336000pt;}
.ls26{letter-spacing:0.384000pt;}
.ls11{letter-spacing:0.426667pt;}
.ls1f{letter-spacing:0.469333pt;}
.ls18{letter-spacing:0.480000pt;}
.ls27{letter-spacing:0.512000pt;}
.ls19{letter-spacing:0.528000pt;}
.ls23{letter-spacing:0.554667pt;}
.lsf{letter-spacing:0.576000pt;}
.ls1d{letter-spacing:0.589867pt;}
.ls28{letter-spacing:0.672000pt;}
.ls13{letter-spacing:0.682667pt;}
.ls10{letter-spacing:0.693333pt;}
.ls2{letter-spacing:1.040000pt;}
.ls17{letter-spacing:1.248000pt;}
.ls1c{letter-spacing:1.752000pt;}
.ls0{letter-spacing:3.840000pt;}
.ls16{letter-spacing:12.288000pt;}
.ls15{letter-spacing:13.269333pt;}
.ls1{letter-spacing:2529.493333pt;}
.ws4f{word-spacing:-48.000000pt;}
.ws39{word-spacing:-14.560000pt;}
.ws4{word-spacing:-14.352000pt;}
.ws7d{word-spacing:-10.272000pt;}
.ws3b{word-spacing:-9.984000pt;}
.ws2{word-spacing:-9.840000pt;}
.ws7{word-spacing:-9.696000pt;}
.ws1{word-spacing:-9.648000pt;}
.ws50{word-spacing:-9.600000pt;}
.ws77{word-spacing:-9.552000pt;}
.ws3a{word-spacing:-9.456000pt;}
.ws3{word-spacing:-9.408000pt;}
.ws60{word-spacing:-8.960000pt;}
.ws4d{word-spacing:-8.874667pt;}
.ws76{word-spacing:-8.746667pt;}
.ws7c{word-spacing:-8.704000pt;}
.ws5e{word-spacing:-8.661333pt;}
.ws38{word-spacing:-8.405333pt;}
.ws63{word-spacing:-8.304000pt;}
.ws62{word-spacing:-8.256000pt;}
.ws6{word-spacing:-8.208000pt;}
.ws61{word-spacing:-8.112000pt;}
.ws7e{word-spacing:-8.000000pt;}
.ws0{word-spacing:-7.840000pt;}
.ws5{word-spacing:-7.824000pt;}
.ws51{word-spacing:-7.808000pt;}
.ws65{word-spacing:-7.722667pt;}
.ws4e{word-spacing:-7.680000pt;}
.ws9{word-spacing:-7.594667pt;}
.ws64{word-spacing:-7.536000pt;}
.ws7f{word-spacing:-6.840000pt;}
.ws5f{word-spacing:-6.826667pt;}
.ws8{word-spacing:-6.218667pt;}
.ws49{word-spacing:-1.776000pt;}
.ws5d{word-spacing:-1.706667pt;}
.ws43{word-spacing:-1.680000pt;}
.ws1b{word-spacing:-1.488000pt;}
.ws2c{word-spacing:-1.392000pt;}
.ws1c{word-spacing:-1.296000pt;}
.ws1d{word-spacing:-1.248000pt;}
.ws90{word-spacing:-1.240000pt;}
.ws3f{word-spacing:-1.200000pt;}
.ws69{word-spacing:-1.056000pt;}
.ws3e{word-spacing:-1.008000pt;}
.wsf{word-spacing:-0.960000pt;}
.ws6a{word-spacing:-0.912000pt;}
.ws8d{word-spacing:-0.840000pt;}
.ws2d{word-spacing:-0.816000pt;}
.ws8e{word-spacing:-0.800000pt;}
.ws72{word-spacing:-0.768000pt;}
.ws92{word-spacing:-0.760000pt;}
.ws91{word-spacing:-0.720000pt;}
.ws97{word-spacing:-0.680000pt;}
.ws82{word-spacing:-0.640000pt;}
.ws81{word-spacing:-0.600000pt;}
.wsc{word-spacing:-0.576000pt;}
.ws86{word-spacing:-0.560000pt;}
.ws79{word-spacing:-0.554667pt;}
.ws67{word-spacing:-0.528000pt;}
.ws85{word-spacing:-0.520000pt;}
.wsb{word-spacing:-0.480000pt;}
.ws37{word-spacing:-0.469333pt;}
.ws66{word-spacing:-0.432000pt;}
.ws3d{word-spacing:-0.426667pt;}
.ws48{word-spacing:-0.384000pt;}
.ws25{word-spacing:-0.336000pt;}
.ws5b{word-spacing:-0.288000pt;}
.ws9a{word-spacing:-0.280000pt;}
.ws45{word-spacing:-0.240000pt;}
.ws24{word-spacing:-0.192000pt;}
.ws7b{word-spacing:-0.144000pt;}
.ws8f{word-spacing:-0.120000pt;}
.ws6f{word-spacing:-0.096000pt;}
.ws8a{word-spacing:-0.080000pt;}
.ws29{word-spacing:-0.048000pt;}
.wsa{word-spacing:0.000000pt;}
.ws83{word-spacing:0.040000pt;}
.ws4c{word-spacing:0.048000pt;}
.ws1e{word-spacing:0.096000pt;}
.wsd{word-spacing:0.192000pt;}
.ws52{word-spacing:0.240000pt;}
.ws26{word-spacing:0.384000pt;}
.ws73{word-spacing:0.480000pt;}
.ws6c{word-spacing:0.528000pt;}
.ws36{word-spacing:0.576000pt;}
.ws44{word-spacing:0.624000pt;}
.ws75{word-spacing:0.672000pt;}
.ws96{word-spacing:0.760000pt;}
.ws15{word-spacing:0.816000pt;}
.ws6e{word-spacing:0.912000pt;}
.ws95{word-spacing:0.920000pt;}
.ws68{word-spacing:1.008000pt;}
.ws6d{word-spacing:1.056000pt;}
.ws84{word-spacing:1.080000pt;}
.ws47{word-spacing:1.152000pt;}
.ws34{word-spacing:1.248000pt;}
.ws2b{word-spacing:1.296000pt;}
.ws5c{word-spacing:1.344000pt;}
.ws53{word-spacing:1.392000pt;}
.ws8b{word-spacing:1.480000pt;}
.ws22{word-spacing:1.488000pt;}
.ws8c{word-spacing:1.520000pt;}
.ws10{word-spacing:1.584000pt;}
.ws89{word-spacing:1.600000pt;}
.ws1a{word-spacing:1.632000pt;}
.ws54{word-spacing:1.680000pt;}
.ws17{word-spacing:1.728000pt;}
.ws14{word-spacing:1.776000pt;}
.ws23{word-spacing:1.824000pt;}
.ws87{word-spacing:1.840000pt;}
.ws11{word-spacing:1.872000pt;}
.ws88{word-spacing:1.880000pt;}
.ws12{word-spacing:1.920000pt;}
.ws98{word-spacing:1.960000pt;}
.ws4a{word-spacing:1.968000pt;}
.ws99{word-spacing:2.000000pt;}
.ws32{word-spacing:2.016000pt;}
.ws20{word-spacing:2.064000pt;}
.ws78{word-spacing:2.160000pt;}
.ws41{word-spacing:2.208000pt;}
.ws13{word-spacing:2.304000pt;}
.ws21{word-spacing:2.352000pt;}
.ws33{word-spacing:2.400000pt;}
.ws58{word-spacing:2.544000pt;}
.ws4b{word-spacing:2.592000pt;}
.ws42{word-spacing:2.736000pt;}
.ws28{word-spacing:2.832000pt;}
.ws19{word-spacing:2.880000pt;}
.ws71{word-spacing:2.928000pt;}
.ws93{word-spacing:2.960000pt;}
.ws94{word-spacing:3.000000pt;}
.ws70{word-spacing:3.072000pt;}
.ws6b{word-spacing:3.264000pt;}
.ws2a{word-spacing:3.360000pt;}
.ws27{word-spacing:3.456000pt;}
.ws7a{word-spacing:3.552000pt;}
.wse{word-spacing:3.696000pt;}
.ws80{word-spacing:3.792000pt;}
.ws55{word-spacing:3.840000pt;}
.ws40{word-spacing:4.176000pt;}
.ws31{word-spacing:4.224000pt;}
.ws30{word-spacing:4.272000pt;}
.ws74{word-spacing:4.320000pt;}
.ws5a{word-spacing:4.416000pt;}
.ws46{word-spacing:4.464000pt;}
.ws2e{word-spacing:4.992000pt;}
.ws2f{word-spacing:5.040000pt;}
.ws1f{word-spacing:5.136000pt;}
.ws18{word-spacing:5.616000pt;}
.ws16{word-spacing:6.000000pt;}
.ws59{word-spacing:6.384000pt;}
.ws56{word-spacing:7.872000pt;}
.ws57{word-spacing:8.880000pt;}
.ws3c{word-spacing:12.800000pt;}
.ws35{word-spacing:22.400000pt;}
._5{margin-left:-22.400000pt;}
._9{margin-left:-12.800000pt;}
._11{margin-left:-8.000000pt;}
._6{margin-left:-4.774400pt;}
._7{margin-left:-3.552000pt;}
._1{margin-left:-2.314667pt;}
._0{margin-left:-1.056000pt;}
._2{width:0.970667pt;}
._3{width:2.519467pt;}
._c{width:4.168533pt;}
._4{width:5.136000pt;}
._8{width:7.253333pt;}
._a{width:12.979200pt;}
._10{width:33.636267pt;}
._f{width:34.748800pt;}
._d{width:1079.104000pt;}
._b{width:1082.090667pt;}
._e{width:1082.986667pt;}
.fs9{font-size:31.093333pt;}
.fs4{font-size:37.333333pt;}
.fsa{font-size:38.400000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:52.800000pt;}
.fs8{font-size:53.333333pt;}
.fs5{font-size:69.333333pt;}
.fs6{font-size:74.666667pt;}
.fs7{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:33.765867pt;}
.y4{bottom:67.099200pt;}
.y5e{bottom:83.207067pt;}
.y76{bottom:90.901333pt;}
.y9d{bottom:93.094933pt;}
.y33{bottom:94.523867pt;}
.yc{bottom:94.526533pt;}
.y5d{bottom:102.539067pt;}
.yb7{bottom:102.829067pt;}
.yb{bottom:105.726533pt;}
.y75{bottom:106.237333pt;}
.y9c{bottom:108.430933pt;}
.y32{bottom:109.859867pt;}
.ya{bottom:116.926533pt;}
.y5c{bottom:117.203067pt;}
.yb6{bottom:118.165067pt;}
.y74{bottom:121.573333pt;}
.y9b{bottom:123.766933pt;}
.y9{bottom:128.126533pt;}
.y31{bottom:129.193200pt;}
.yb5{bottom:133.501067pt;}
.y73{bottom:136.909333pt;}
.y9a{bottom:139.102933pt;}
.yb4{bottom:148.837067pt;}
.y5b{bottom:150.539067pt;}
.y72{bottom:152.245333pt;}
.y99{bottom:154.438933pt;}
.y5a{bottom:165.203067pt;}
.y71{bottom:167.581333pt;}
.yb3{bottom:168.169067pt;}
.y98{bottom:169.774933pt;}
.y8{bottom:171.326533pt;}
.y30{bottom:173.793200pt;}
.y70{bottom:182.917333pt;}
.y7{bottom:183.326533pt;}
.yb2{bottom:183.505067pt;}
.y97{bottom:185.110933pt;}
.y2f{bottom:189.129200pt;}
.y6{bottom:195.326533pt;}
.y6f{bottom:198.253333pt;}
.y59{bottom:198.536400pt;}
.yb1{bottom:198.841067pt;}
.y96{bottom:200.446933pt;}
.y2e{bottom:204.465200pt;}
.y5{bottom:207.326533pt;}
.y6e{bottom:213.589333pt;}
.yb0{bottom:214.177067pt;}
.y95{bottom:215.782933pt;}
.y2d{bottom:219.801200pt;}
.y6d{bottom:228.925333pt;}
.y94{bottom:231.118933pt;}
.yaf{bottom:233.509067pt;}
.y2c{bottom:235.137200pt;}
.y6c{bottom:244.261333pt;}
.y93{bottom:246.454933pt;}
.y58{bottom:248.485733pt;}
.yae{bottom:248.845067pt;}
.y2b{bottom:250.473200pt;}
.y6b{bottom:259.597333pt;}
.y57{bottom:263.821733pt;}
.yad{bottom:264.181067pt;}
.y92{bottom:265.786933pt;}
.y2a{bottom:265.809200pt;}
.y6a{bottom:278.929333pt;}
.y56{bottom:279.157733pt;}
.yac{bottom:279.517067pt;}
.y91{bottom:281.122933pt;}
.y29{bottom:281.145200pt;}
.yf4{bottom:289.659733pt;}
.y69{bottom:294.265333pt;}
.y55{bottom:294.493733pt;}
.yab{bottom:294.853067pt;}
.y90{bottom:296.458933pt;}
.y28{bottom:296.481200pt;}
.yf3{bottom:302.989733pt;}
.y68{bottom:309.601333pt;}
.y54{bottom:309.829733pt;}
.y8f{bottom:311.794933pt;}
.y27{bottom:311.817200pt;}
.yaa{bottom:314.186400pt;}
.yf2{bottom:316.319733pt;}
.y67{bottom:324.937333pt;}
.y8e{bottom:327.130933pt;}
.y26{bottom:327.153200pt;}
.y53{bottom:329.161733pt;}
.yf1{bottom:329.649733pt;}
.y66{bottom:340.273333pt;}
.y8d{bottom:342.466933pt;}
.y25{bottom:342.489200pt;}
.yf0{bottom:342.979733pt;}
.y52{bottom:344.497733pt;}
.y65{bottom:355.606667pt;}
.yef{bottom:356.309733pt;}
.y24{bottom:357.825200pt;}
.y51{bottom:359.833733pt;}
.y8c{bottom:361.798933pt;}
.ya9{bottom:364.178400pt;}
.yee{bottom:369.639733pt;}
.y64{bottom:370.940000pt;}
.y23{bottom:373.161200pt;}
.y50{bottom:375.169733pt;}
.y8b{bottom:377.134933pt;}
.ya8{bottom:379.514400pt;}
.yed{bottom:382.969733pt;}
.y63{bottom:386.276000pt;}
.y22{bottom:388.497200pt;}
.y4f{bottom:390.505733pt;}
.y8a{bottom:392.470933pt;}
.ya7{bottom:394.850400pt;}
.yec{bottom:396.299733pt;}
.y21{bottom:403.833200pt;}
.y4e{bottom:405.841733pt;}
.y89{bottom:407.806933pt;}
.yeb{bottom:409.629733pt;}
.ya6{bottom:410.186400pt;}
.y20{bottom:419.169200pt;}
.y4d{bottom:421.177733pt;}
.yea{bottom:422.959733pt;}
.y88{bottom:423.142933pt;}
.ya5{bottom:429.519733pt;}
.y78{bottom:430.519733pt;}
.y1f{bottom:434.505200pt;}
.ye9{bottom:436.289733pt;}
.y4c{bottom:436.513733pt;}
.y82{bottom:436.720400pt;}
.y87{bottom:442.474933pt;}
.y77{bottom:443.853067pt;}
.ye8{bottom:449.619733pt;}
.y1e{bottom:449.841200pt;}
.y81{bottom:450.053733pt;}
.y4b{bottom:451.849733pt;}
.y86{bottom:457.810933pt;}
.ye7{bottom:462.949733pt;}
.y80{bottom:463.387067pt;}
.y1d{bottom:465.177200pt;}
.y4a{bottom:467.185733pt;}
.y85{bottom:473.146933pt;}
.ye6{bottom:476.279733pt;}
.y7f{bottom:476.720400pt;}
.y1c{bottom:480.513200pt;}
.y49{bottom:486.517733pt;}
.y84{bottom:488.482933pt;}
.ye5{bottom:489.609733pt;}
.y7e{bottom:490.053733pt;}
.y1b{bottom:495.849200pt;}
.y48{bottom:501.853733pt;}
.ye4{bottom:502.939733pt;}
.y83{bottom:503.818933pt;}
.y1a{bottom:511.185200pt;}
.ye3{bottom:516.269733pt;}
.y47{bottom:517.189733pt;}
.y19{bottom:526.521200pt;}
.ye2{bottom:529.599733pt;}
.y7d{bottom:530.053733pt;}
.y46{bottom:532.525733pt;}
.y18{bottom:541.857200pt;}
.ye1{bottom:542.929733pt;}
.y7c{bottom:543.387067pt;}
.ya4{bottom:544.818933pt;}
.y45{bottom:547.861733pt;}
.ye0{bottom:556.259733pt;}
.y7b{bottom:556.720400pt;}
.y17{bottom:557.193200pt;}
.ya3{bottom:558.152267pt;}
.y44{bottom:563.197733pt;}
.ydf{bottom:569.589733pt;}
.y7a{bottom:570.053733pt;}
.ya2{bottom:571.485600pt;}
.y16{bottom:576.526533pt;}
.y43{bottom:578.533733pt;}
.yde{bottom:582.919733pt;}
.y79{bottom:583.387067pt;}
.ya1{bottom:584.818933pt;}
.y42{bottom:593.869733pt;}
.ydd{bottom:596.249733pt;}
.ya0{bottom:598.152267pt;}
.ydc{bottom:609.579733pt;}
.y9f{bottom:611.485600pt;}
.y41{bottom:613.203067pt;}
.ydb{bottom:622.909733pt;}
.y9e{bottom:624.818933pt;}
.y15{bottom:626.511867pt;}
.yda{bottom:636.239733pt;}
.y14{bottom:641.847867pt;}
.yd9{bottom:649.569733pt;}
.y35{bottom:651.004667pt;}
.y13{bottom:657.183867pt;}
.yd8{bottom:662.899733pt;}
.y40{bottom:663.195067pt;}
.y34{bottom:668.204667pt;}
.ybd{bottom:671.820667pt;}
.yd7{bottom:676.229733pt;}
.y3f{bottom:678.531067pt;}
.y12{bottom:683.187867pt;}
.ybc{bottom:685.154000pt;}
.yd6{bottom:689.559733pt;}
.y3e{bottom:693.867067pt;}
.ybb{bottom:698.487333pt;}
.yd5{bottom:702.889733pt;}
.y11{bottom:706.515867pt;}
.y3d{bottom:709.203067pt;}
.yba{bottom:711.820667pt;}
.yd4{bottom:716.219733pt;}
.y10{bottom:721.851867pt;}
.yb9{bottom:725.154000pt;}
.yd3{bottom:729.549733pt;}
.yf{bottom:737.187867pt;}
.yb8{bottom:738.487333pt;}
.yd2{bottom:742.879733pt;}
.y62{bottom:750.203067pt;}
.ye{bottom:752.523867pt;}
.yd1{bottom:756.209733pt;}
.y61{bottom:763.536400pt;}
.yd{bottom:767.859867pt;}
.yd0{bottom:769.539733pt;}
.y60{bottom:776.869733pt;}
.yc2{bottom:778.487333pt;}
.ycf{bottom:782.869733pt;}
.y5f{bottom:790.203067pt;}
.yc1{bottom:791.820667pt;}
.yce{bottom:796.199733pt;}
.yc0{bottom:805.154000pt;}
.ycd{bottom:809.529733pt;}
.ybf{bottom:818.487333pt;}
.y3a{bottom:822.193200pt;}
.ycc{bottom:822.859733pt;}
.ybe{bottom:831.820667pt;}
.ycb{bottom:836.189733pt;}
.y39{bottom:843.526533pt;}
.yca{bottom:849.519733pt;}
.y38{bottom:870.193200pt;}
.yc9{bottom:870.853067pt;}
.y37{bottom:900.859867pt;}
.yc8{bottom:920.849067pt;}
.y36{bottom:929.659867pt;}
.yc7{bottom:936.185067pt;}
.yc6{bottom:951.521067pt;}
.yc5{bottom:970.850400pt;}
.y3{bottom:980.835067pt;}
.yc4{bottom:986.183733pt;}
.yc3{bottom:1001.519733pt;}
.y2{bottom:1010.519733pt;}
.y1{bottom:1026.359733pt;}
.y3c{bottom:1048.325733pt;}
.h6{height:26.693333pt;}
.h12{height:28.600000pt;}
.h4{height:30.506667pt;}
.h5{height:32.840000pt;}
.hf{height:33.600000pt;}
.h3{height:33.840000pt;}
.he{height:34.080000pt;}
.h8{height:34.320000pt;}
.h11{height:34.330667pt;}
.hd{height:35.029333pt;}
.h10{height:35.320312pt;}
.h7{height:39.408000pt;}
.h2{height:43.348800pt;}
.hc{height:43.786667pt;}
.h9{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;}
.x2{left:82.786533pt;}
.x4{left:256.000000pt;}
.x5{left:271.996000pt;}
.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; }
  