
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_65d75394f1e18d992b6b6deb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ecc935f8066b538dd824de09.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.331543;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_8b116a4d708100b857a5e647.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.331543;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_22c1d89ae89e8db983a44597.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.919434;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_40c49a63c490ff73debce1c1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.759766;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_99aac4fddd13fb5bcf78b4ba.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.331543;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_f197077171c9c31ad151357f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.331543;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_aaf3cb8bba50bb0453032543.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921875;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_c1ebe0698dd5cead5b211678.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.946777;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_97cef48006e4f910183cf4c1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.850586;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_bb4a4683b8e0581b59fb158c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_d0ee966bad6a08a85a73bc0b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.739746;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_d0ee966bad6a08a85a73bc0b.woff2')format("woff");}.fff{font-family:fff;line-height:0.739746;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_2645d72ede8332e60fe57ca2.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.041992;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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:15.120000px;}
.ls1d{letter-spacing:-1.008000px;}
.ls26{letter-spacing:-0.774000px;}
.ls2f{letter-spacing:-0.360000px;}
.ls1f{letter-spacing:-0.280200px;}
.ls2a{letter-spacing:-0.259800px;}
.ls62{letter-spacing:-0.243600px;}
.ls4b{letter-spacing:-0.229200px;}
.ls23{letter-spacing:-0.226200px;}
.ls5b{letter-spacing:-0.206400px;}
.ls5d{letter-spacing:-0.155400px;}
.ls2d{letter-spacing:-0.108000px;}
.ls44{letter-spacing:-0.106800px;}
.ls45{letter-spacing:-0.097800px;}
.ls22{letter-spacing:-0.089400px;}
.ls29{letter-spacing:-0.075000px;}
.ls2c{letter-spacing:-0.072000px;}
.ls20{letter-spacing:-0.053280px;}
.ls49{letter-spacing:-0.026640px;}
.ls21{letter-spacing:-0.017280px;}
.ls1c{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.018000px;}
.ls48{letter-spacing:0.021600px;}
.ls4f{letter-spacing:0.066720px;}
.ls65{letter-spacing:0.082080px;}
.ls5c{letter-spacing:0.105600px;}
.ls16{letter-spacing:0.113841px;}
.ls4e{letter-spacing:0.126720px;}
.ls28{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.170761px;}
.ls4{letter-spacing:0.180000px;}
.ls46{letter-spacing:0.206400px;}
.ls27{letter-spacing:0.259800px;}
.ls9{letter-spacing:0.259920px;}
.ls43{letter-spacing:0.298800px;}
.ls3{letter-spacing:0.299520px;}
.ls2e{letter-spacing:0.303576px;}
.ls24{letter-spacing:0.320400px;}
.ls64{letter-spacing:0.331800px;}
.lsc{letter-spacing:0.338400px;}
.ls0{letter-spacing:0.341280px;}
.ls1a{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.363000px;}
.ls3e{letter-spacing:0.379920px;}
.ls2b{letter-spacing:0.490800px;}
.ls1{letter-spacing:0.521280px;}
.ls3f{letter-spacing:0.613440px;}
.ls61{letter-spacing:0.622080px;}
.ls30{letter-spacing:0.642720px;}
.ls63{letter-spacing:0.648000px;}
.ls25{letter-spacing:0.666000px;}
.ls2{letter-spacing:0.666720px;}
.ls40{letter-spacing:0.693360px;}
.ls47{letter-spacing:0.708000px;}
.ls4c{letter-spacing:0.864000px;}
.ls4a{letter-spacing:0.978000px;}
.ls5{letter-spacing:0.979920px;}
.ls3a{letter-spacing:1.362720px;}
.lsa{letter-spacing:1.386720px;}
.ls10{letter-spacing:1.566720px;}
.ls11{letter-spacing:2.106720px;}
.ls5e{letter-spacing:2.226720px;}
.lsd{letter-spacing:2.826720px;}
.ls38{letter-spacing:2.946720px;}
.ls33{letter-spacing:3.006720px;}
.lsb{letter-spacing:3.546720px;}
.ls5f{letter-spacing:3.726720px;}
.ls14{letter-spacing:4.266720px;}
.ls59{letter-spacing:4.446720px;}
.ls13{letter-spacing:4.986720px;}
.ls3d{letter-spacing:5.706720px;}
.ls4d{letter-spacing:5.826720px;}
.ls42{letter-spacing:5.886720px;}
.ls41{letter-spacing:6.426720px;}
.ls57{letter-spacing:7.122720px;}
.ls58{letter-spacing:7.146720px;}
.ls60{letter-spacing:7.326720px;}
.ls7{letter-spacing:7.866720px;}
.ls56{letter-spacing:8.562720px;}
.ls8{letter-spacing:8.586720px;}
.ls39{letter-spacing:8.706720px;}
.ls15{letter-spacing:9.051107px;}
.ls19{letter-spacing:9.221109px;}
.ls5a{letter-spacing:9.300000px;}
.ls31{letter-spacing:9.306720px;}
.ls17{letter-spacing:9.810046px;}
.ls32{letter-spacing:10.026720px;}
.ls54{letter-spacing:10.722720px;}
.ls37{letter-spacing:10.746720px;}
.ls55{letter-spacing:10.866720px;}
.ls34{letter-spacing:11.466720px;}
.ls36{letter-spacing:11.586720px;}
.ls35{letter-spacing:12.186720px;}
.ls3c{letter-spacing:12.882720px;}
.ls3b{letter-spacing:12.906720px;}
.ls12{letter-spacing:15.066720px;}
.ls50{letter-spacing:15.762720px;}
.ls51{letter-spacing:15.786720px;}
.ls52{letter-spacing:16.506720px;}
.lse{letter-spacing:17.946720px;}
.lsf{letter-spacing:18.066720px;}
.ls53{letter-spacing:19.386720px;}
.ls6{letter-spacing:22.986720px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(79,129,189),0 0.015em rgb(79,129,189),0.015em 0 rgb(79,129,189),0 -0.015em  rgb(79,129,189);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(79,129,189);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws21{word-spacing:-59.760000px;}
.ws3{word-spacing:-54.108120px;}
.ws2{word-spacing:-53.745120px;}
.ws14{word-spacing:-40.188858px;}
.ws29{word-spacing:-38.990880px;}
.ws2c{word-spacing:-38.834880px;}
.ws30{word-spacing:-38.774880px;}
.ws11{word-spacing:-38.617680px;}
.wsd{word-spacing:-38.465280px;}
.ws32{word-spacing:-38.458680px;}
.wsc{word-spacing:-38.447280px;}
.ws2e{word-spacing:-38.425680px;}
.ws2a{word-spacing:-38.333280px;}
.wse{word-spacing:-38.270880px;}
.ws4{word-spacing:-38.126880px;}
.ws20{word-spacing:-38.100240px;}
.wsf{word-spacing:-38.051880px;}
.ws31{word-spacing:-38.029080px;}
.ws2b{word-spacing:-37.971480px;}
.ws28{word-spacing:-37.897680px;}
.ws2f{word-spacing:-37.883280px;}
.ws10{word-spacing:-37.867080px;}
.ws6{word-spacing:-37.846680px;}
.ws17{word-spacing:-36.618809px;}
.ws16{word-spacing:-36.315234px;}
.ws2d{word-spacing:-17.591280px;}
.ws1e{word-spacing:-17.321280px;}
.ws26{word-spacing:-17.104080px;}
.ws1b{word-spacing:-16.951680px;}
.ws24{word-spacing:-16.933680px;}
.ws27{word-spacing:-16.912080px;}
.ws1c{word-spacing:-16.819680px;}
.ws25{word-spacing:-16.757280px;}
.ws1f{word-spacing:-16.634880px;}
.wsb{word-spacing:-16.613280px;}
.ws22{word-spacing:-16.586640px;}
.ws0{word-spacing:-16.560000px;}
.ws23{word-spacing:-16.538280px;}
.ws1a{word-spacing:-16.506480px;}
.ws1d{word-spacing:-16.353480px;}
.ws15{word-spacing:-15.994640px;}
.ws1{word-spacing:-15.300000px;}
.ws8{word-spacing:-14.940000px;}
.ws13{word-spacing:-13.392000px;}
.ws18{word-spacing:-13.140000px;}
.ws5{word-spacing:-10.808640px;}
.ws7{word-spacing:-10.791360px;}
.wsa{word-spacing:-10.440000px;}
.ws9{word-spacing:-10.213800px;}
.ws12{word-spacing:-8.928000px;}
.ws19{word-spacing:0.000000px;}
._5{margin-left:-8.307360px;}
._12{margin-left:-7.256880px;}
._11{margin-left:-4.612800px;}
._2{margin-left:-3.606720px;}
._4{margin-left:-2.405760px;}
._0{margin-left:-1.093680px;}
._1{width:1.245360px;}
._3{width:2.779920px;}
._7{width:4.734240px;}
._8{width:6.032160px;}
._10{width:7.555680px;}
._6{width:8.605440px;}
._a{width:9.740880px;}
._f{width:10.787520px;}
._e{width:11.860080px;}
._d{width:13.505760px;}
._9{width:15.059520px;}
._c{width:18.487920px;}
._13{width:19.660560px;}
._15{width:20.716800px;}
._b{width:23.892960px;}
._14{width:2694.229440px;}
.fc6{color:transparent;}
.fc5{color:rgb(79,129,189);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(67,67,67);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fs9{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fsa{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fsc{font-size:56.920429px;}
.fs2{font-size:59.760000px;}
.fsb{font-size:62.991941px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y41{bottom:2.340000px;}
.y37{bottom:3.240000px;}
.y5{bottom:3.780000px;}
.y4f{bottom:5.010000px;}
.y2{bottom:9.930000px;}
.y40{bottom:10.260000px;}
.y4c{bottom:11.880000px;}
.y36{bottom:21.465000px;}
.y4{bottom:22.710000px;}
.y4b{bottom:36.174000px;}
.y3f{bottom:39.954000px;}
.y35{bottom:41.445000px;}
.y3{bottom:47.910000px;}
.y3e{bottom:51.834000px;}
.y7{bottom:57.060000px;}
.y4a{bottom:60.294000px;}
.y34{bottom:61.605000px;}
.y3d{bottom:64.794000px;}
.y3c{bottom:77.754000px;}
.y49{bottom:80.094000px;}
.y33{bottom:81.765000px;}
.y48{bottom:99.534000px;}
.y3b{bottom:99.714000px;}
.y7a{bottom:101.376000px;}
.y32{bottom:101.745000px;}
.y47{bottom:106.014000px;}
.yc0{bottom:108.396000px;}
.ye7{bottom:108.576000px;}
.y9d{bottom:109.296000px;}
.y4d{bottom:110.916000px;}
.y46{bottom:121.494000px;}
.y31{bottom:121.905000px;}
.y79{bottom:127.476000px;}
.y38{bottom:127.656000px;}
.ybf{bottom:131.436000px;}
.y9c{bottom:135.576000px;}
.y45{bottom:136.974000px;}
.y30{bottom:142.065000px;}
.y78{bottom:150.690000px;}
.y44{bottom:152.634000px;}
.ybe{bottom:154.650000px;}
.ye6{bottom:157.710000px;}
.y9b{bottom:161.670000px;}
.y3a{bottom:161.814000px;}
.y2f{bottom:164.925000px;}
.y43{bottom:168.114000px;}
.y39{bottom:172.434000px;}
.y77{bottom:173.730000px;}
.ybd{bottom:174.810000px;}
.y42{bottom:183.594000px;}
.ye5{bottom:183.810000px;}
.y9a{bottom:187.770000px;}
.y2e{bottom:191.205000px;}
.y76{bottom:196.950000px;}
.ybc{bottom:197.850000px;}
.ye4{bottom:209.910000px;}
.y99{bottom:213.870000px;}
.y1f{bottom:216.225000px;}
.y75{bottom:216.930000px;}
.y2d{bottom:217.305000px;}
.ybb{bottom:221.070000px;}
.ye3{bottom:236.010000px;}
.y74{bottom:237.090000px;}
.y98{bottom:239.970000px;}
.y1e{bottom:240.345000px;}
.y2c{bottom:243.405000px;}
.yba{bottom:243.930000px;}
.y73{bottom:257.250000px;}
.ye2{bottom:262.110000px;}
.y1d{bottom:264.465000px;}
.y97{bottom:266.070000px;}
.y2b{bottom:269.505000px;}
.yb9{bottom:270.210000px;}
.y72{bottom:280.290000px;}
.ye1{bottom:288.390000px;}
.y1c{bottom:288.615000px;}
.y96{bottom:292.350000px;}
.y2a{bottom:295.635000px;}
.yb8{bottom:296.310000px;}
.y71{bottom:303.510000px;}
.y1b{bottom:312.915000px;}
.ye0{bottom:314.490000px;}
.y95{bottom:318.450000px;}
.y29{bottom:321.915000px;}
.yb7{bottom:322.410000px;}
.y70{bottom:323.490000px;}
.y11{bottom:330.150000px;}
.y1a{bottom:337.035000px;}
.ydf{bottom:340.635000px;}
.y94{bottom:341.715000px;}
.y6f{bottom:346.575000px;}
.y28{bottom:348.015000px;}
.yb6{bottom:348.555000px;}
.y19{bottom:361.155000px;}
.yde{bottom:363.855000px;}
.y93{bottom:364.755000px;}
.yb5{bottom:371.775000px;}
.y6e{bottom:372.675000px;}
.y27{bottom:374.115000px;}
.ydd{bottom:384.015000px;}
.y18{bottom:385.275000px;}
.y92{bottom:390.855000px;}
.yb4{bottom:394.815000px;}
.y6d{bottom:398.775000px;}
.y26{bottom:400.215000px;}
.ydc{bottom:403.995000px;}
.y17{bottom:409.395000px;}
.y91{bottom:416.955000px;}
.yb3{bottom:420.915000px;}
.y6c{bottom:421.995000px;}
.y25{bottom:423.435000px;}
.ydb{bottom:424.155000px;}
.y16{bottom:433.515000px;}
.y90{bottom:443.055000px;}
.y24{bottom:443.595000px;}
.yda{bottom:444.315000px;}
.y6b{bottom:445.035000px;}
.yb2{bottom:447.015000px;}
.y15{bottom:457.815000px;}
.y23{bottom:463.575000px;}
.yd9{bottom:464.295000px;}
.y8f{bottom:469.155000px;}
.y6a{bottom:471.135000px;}
.yb1{bottom:473.295000px;}
.y14{bottom:481.935000px;}
.y22{bottom:483.735000px;}
.yd8{bottom:484.455000px;}
.y8e{bottom:495.435000px;}
.y69{bottom:497.415000px;}
.yb0{bottom:499.395000px;}
.y21{bottom:503.895000px;}
.yd7{bottom:504.435000px;}
.y13{bottom:506.055000px;}
.y8d{bottom:521.535000px;}
.yaf{bottom:522.615000px;}
.y68{bottom:523.515000px;}
.y20{bottom:523.875000px;}
.yd6{bottom:524.595000px;}
.y12{bottom:530.175000px;}
.yd5{bottom:544.755000px;}
.yae{bottom:545.655000px;}
.y8c{bottom:547.635000px;}
.y67{bottom:549.615000px;}
.yf9{bottom:550.695000px;}
.yd4{bottom:564.735000px;}
.yad{bottom:571.755000px;}
.y8b{bottom:573.735000px;}
.y66{bottom:575.715000px;}
.yd3{bottom:584.895000px;}
.yac{bottom:597.855000px;}
.y8a{bottom:599.835000px;}
.y65{bottom:601.815000px;}
.yd2{bottom:605.085000px;}
.y89{bottom:623.085000px;}
.yab{bottom:623.985000px;}
.yd1{bottom:625.065000px;}
.y64{bottom:628.125000px;}
.y88{bottom:643.245000px;}
.yd0{bottom:645.225000px;}
.yf8{bottom:646.125000px;}
.yaa{bottom:650.085000px;}
.y63{bottom:654.225000px;}
.y87{bottom:663.405000px;}
.ycf{bottom:668.265000px;}
.yf7{bottom:672.225000px;}
.ya9{bottom:676.185000px;}
.y62{bottom:680.325000px;}
.y86{bottom:683.385000px;}
.yce{bottom:694.365000px;}
.yf6{bottom:698.325000px;}
.ya8{bottom:702.465000px;}
.y61{bottom:703.545000px;}
.ycd{bottom:720.465000px;}
.y60{bottom:723.705000px;}
.yf5{bottom:724.425000px;}
.ya7{bottom:728.565000px;}
.y5f{bottom:743.685000px;}
.yf4{bottom:750.705000px;}
.ya6{bottom:754.665000px;}
.y5e{bottom:763.845000px;}
.yf3{bottom:776.805000px;}
.ya5{bottom:777.885000px;}
.y5d{bottom:784.005000px;}
.ycc{bottom:786.885000px;}
.ya4{bottom:800.925000px;}
.yf2{bottom:802.905000px;}
.y5c{bottom:803.985000px;}
.ycb{bottom:812.985000px;}
.y85{bottom:824.145000px;}
.y5b{bottom:827.025000px;}
.yf1{bottom:829.005000px;}
.yca{bottom:836.205000px;}
.y84{bottom:844.305000px;}
.y5a{bottom:853.125000px;}
.yf0{bottom:855.105000px;}
.yc9{bottom:859.245000px;}
.y83{bottom:864.285000px;}
.y10{bottom:872.610000px;}
.yf{bottom:877.290000px;}
.y59{bottom:879.270000px;}
.yef{bottom:881.250000px;}
.y82{bottom:884.490000px;}
.yc8{bottom:885.390000px;}
.ye{bottom:898.350000px;}
.y81{bottom:904.470000px;}
.y58{bottom:905.550000px;}
.yee{bottom:907.530000px;}
.yc7{bottom:911.490000px;}
.yd{bottom:924.450000px;}
.y80{bottom:927.510000px;}
.y57{bottom:931.650000px;}
.yed{bottom:933.630000px;}
.yc6{bottom:934.710000px;}
.yc{bottom:950.550000px;}
.y7f{bottom:953.610000px;}
.yc5{bottom:954.870000px;}
.y56{bottom:957.750000px;}
.yec{bottom:959.730000px;}
.yc4{bottom:974.850000px;}
.yb{bottom:976.830000px;}
.y7e{bottom:979.890000px;}
.y55{bottom:980.970000px;}
.ya3{bottom:983.850000px;}
.yeb{bottom:985.830000px;}
.yc3{bottom:995.010000px;}
.y54{bottom:1001.130000px;}
.ya{bottom:1002.930000px;}
.y7d{bottom:1005.990000px;}
.ya2{bottom:1007.070000px;}
.yea{bottom:1011.930000px;}
.yc2{bottom:1018.050000px;}
.y53{bottom:1021.110000px;}
.ya1{bottom:1027.230000px;}
.y9{bottom:1031.910000px;}
.y7c{bottom:1032.090000px;}
.ye9{bottom:1038.210000px;}
.y52{bottom:1041.270000px;}
.yc1{bottom:1044.150000px;}
.ya0{bottom:1047.210000px;}
.y7b{bottom:1058.190000px;}
.y51{bottom:1061.430000px;}
.ye8{bottom:1064.310000px;}
.y9f{bottom:1067.370000px;}
.y8{bottom:1071.870000px;}
.y4e{bottom:1075.140000px;}
.y50{bottom:1084.290000px;}
.y9e{bottom:1087.530000px;}
.y6{bottom:1107.870000px;}
.y1{bottom:1123.530000px;}
.hb{height:4.064063px;}
.h15{height:4.210313px;}
.h11{height:21.114844px;}
.h10{height:25.136719px;}
.h19{height:27.720000px;}
.he{height:29.158594px;}
.hd{height:29.464453px;}
.h14{height:38.100586px;}
.h12{height:38.997070px;}
.h13{height:39.471680px;}
.h6{height:41.726953px;}
.ha{height:44.820000px;}
.h5{height:46.251562px;}
.h17{height:55.825312px;}
.h7{height:56.574492px;}
.h18{height:60.338990px;}
.h9{height:63.349102px;}
.h1a{height:64.002656px;}
.h3{height:65.884219px;}
.h16{height:66.775148px;}
.h2{height:84.996000px;}
.h8{height:89.299336px;}
.h4{height:117.180000px;}
.hf{height:201.780000px;}
.hc{height:539.925000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:104.076000px;}
.w5{width:132.660000px;}
.w7{width:162.900000px;}
.w6{width:596.490000px;}
.w3{width:622.410000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:7.056000px;}
.x1b{left:8.100000px;}
.x4{left:12.780000px;}
.x1d{left:18.180000px;}
.x19{left:19.980000px;}
.x6{left:21.960000px;}
.x18{left:25.560000px;}
.x1f{left:29.160000px;}
.x12{left:43.740000px;}
.x1e{left:47.700000px;}
.x13{left:50.760000px;}
.x11{left:54.900000px;}
.x17{left:67.134000px;}
.x1{left:78.300000px;}
.x15{left:79.374000px;}
.x16{left:83.694000px;}
.x9{left:86.435987px;}
.x2{left:95.790000px;}
.x20{left:102.774000px;}
.x1c{left:106.734000px;}
.x14{left:124.554000px;}
.x5{left:141.345000px;}
.x3{left:182.370000px;}
.x1a{left:219.090000px;}
.x21{left:324.075000px;}
.x22{left:329.835000px;}
.xd{left:421.454987px;}
.xc{left:464.144987px;}
.xe{left:483.764987px;}
.xa{left:488.084987px;}
.xb{left:529.844987px;}
.xf{left:589.604987px;}
.x8{left:766.049987px;}
.x7{left:791.999987px;}
.x10{left:806.939987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls1d{letter-spacing:-0.896000pt;}
.ls26{letter-spacing:-0.688000pt;}
.ls2f{letter-spacing:-0.320000pt;}
.ls1f{letter-spacing:-0.249067pt;}
.ls2a{letter-spacing:-0.230933pt;}
.ls62{letter-spacing:-0.216533pt;}
.ls4b{letter-spacing:-0.203733pt;}
.ls23{letter-spacing:-0.201067pt;}
.ls5b{letter-spacing:-0.183467pt;}
.ls5d{letter-spacing:-0.138133pt;}
.ls2d{letter-spacing:-0.096000pt;}
.ls44{letter-spacing:-0.094933pt;}
.ls45{letter-spacing:-0.086933pt;}
.ls22{letter-spacing:-0.079467pt;}
.ls29{letter-spacing:-0.066667pt;}
.ls2c{letter-spacing:-0.064000pt;}
.ls20{letter-spacing:-0.047360pt;}
.ls49{letter-spacing:-0.023680pt;}
.ls21{letter-spacing:-0.015360pt;}
.ls1c{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.016000pt;}
.ls48{letter-spacing:0.019200pt;}
.ls4f{letter-spacing:0.059307pt;}
.ls65{letter-spacing:0.072960pt;}
.ls5c{letter-spacing:0.093867pt;}
.ls16{letter-spacing:0.101192pt;}
.ls4e{letter-spacing:0.112640pt;}
.ls28{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.151788pt;}
.ls4{letter-spacing:0.160000pt;}
.ls46{letter-spacing:0.183467pt;}
.ls27{letter-spacing:0.230933pt;}
.ls9{letter-spacing:0.231040pt;}
.ls43{letter-spacing:0.265600pt;}
.ls3{letter-spacing:0.266240pt;}
.ls2e{letter-spacing:0.269845pt;}
.ls24{letter-spacing:0.284800pt;}
.ls64{letter-spacing:0.294933pt;}
.lsc{letter-spacing:0.300800pt;}
.ls0{letter-spacing:0.303360pt;}
.ls1a{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.322667pt;}
.ls3e{letter-spacing:0.337707pt;}
.ls2b{letter-spacing:0.436267pt;}
.ls1{letter-spacing:0.463360pt;}
.ls3f{letter-spacing:0.545280pt;}
.ls61{letter-spacing:0.552960pt;}
.ls30{letter-spacing:0.571307pt;}
.ls63{letter-spacing:0.576000pt;}
.ls25{letter-spacing:0.592000pt;}
.ls2{letter-spacing:0.592640pt;}
.ls40{letter-spacing:0.616320pt;}
.ls47{letter-spacing:0.629333pt;}
.ls4c{letter-spacing:0.768000pt;}
.ls4a{letter-spacing:0.869333pt;}
.ls5{letter-spacing:0.871040pt;}
.ls3a{letter-spacing:1.211307pt;}
.lsa{letter-spacing:1.232640pt;}
.ls10{letter-spacing:1.392640pt;}
.ls11{letter-spacing:1.872640pt;}
.ls5e{letter-spacing:1.979307pt;}
.lsd{letter-spacing:2.512640pt;}
.ls38{letter-spacing:2.619307pt;}
.ls33{letter-spacing:2.672640pt;}
.lsb{letter-spacing:3.152640pt;}
.ls5f{letter-spacing:3.312640pt;}
.ls14{letter-spacing:3.792640pt;}
.ls59{letter-spacing:3.952640pt;}
.ls13{letter-spacing:4.432640pt;}
.ls3d{letter-spacing:5.072640pt;}
.ls4d{letter-spacing:5.179307pt;}
.ls42{letter-spacing:5.232640pt;}
.ls41{letter-spacing:5.712640pt;}
.ls57{letter-spacing:6.331307pt;}
.ls58{letter-spacing:6.352640pt;}
.ls60{letter-spacing:6.512640pt;}
.ls7{letter-spacing:6.992640pt;}
.ls56{letter-spacing:7.611307pt;}
.ls8{letter-spacing:7.632640pt;}
.ls39{letter-spacing:7.739307pt;}
.ls15{letter-spacing:8.045429pt;}
.ls19{letter-spacing:8.196542pt;}
.ls5a{letter-spacing:8.266667pt;}
.ls31{letter-spacing:8.272640pt;}
.ls17{letter-spacing:8.720041pt;}
.ls32{letter-spacing:8.912640pt;}
.ls54{letter-spacing:9.531307pt;}
.ls37{letter-spacing:9.552640pt;}
.ls55{letter-spacing:9.659307pt;}
.ls34{letter-spacing:10.192640pt;}
.ls36{letter-spacing:10.299307pt;}
.ls35{letter-spacing:10.832640pt;}
.ls3c{letter-spacing:11.451307pt;}
.ls3b{letter-spacing:11.472640pt;}
.ls12{letter-spacing:13.392640pt;}
.ls50{letter-spacing:14.011307pt;}
.ls51{letter-spacing:14.032640pt;}
.ls52{letter-spacing:14.672640pt;}
.lse{letter-spacing:15.952640pt;}
.lsf{letter-spacing:16.059307pt;}
.ls53{letter-spacing:17.232640pt;}
.ls6{letter-spacing:20.432640pt;}
.ws21{word-spacing:-53.120000pt;}
.ws3{word-spacing:-48.096107pt;}
.ws2{word-spacing:-47.773440pt;}
.ws14{word-spacing:-35.723430pt;}
.ws29{word-spacing:-34.658560pt;}
.ws2c{word-spacing:-34.519893pt;}
.ws30{word-spacing:-34.466560pt;}
.ws11{word-spacing:-34.326827pt;}
.wsd{word-spacing:-34.191360pt;}
.ws32{word-spacing:-34.185493pt;}
.wsc{word-spacing:-34.175360pt;}
.ws2e{word-spacing:-34.156160pt;}
.ws2a{word-spacing:-34.074027pt;}
.wse{word-spacing:-34.018560pt;}
.ws4{word-spacing:-33.890560pt;}
.ws20{word-spacing:-33.866880pt;}
.wsf{word-spacing:-33.823893pt;}
.ws31{word-spacing:-33.803627pt;}
.ws2b{word-spacing:-33.752427pt;}
.ws28{word-spacing:-33.686827pt;}
.ws2f{word-spacing:-33.674027pt;}
.ws10{word-spacing:-33.659627pt;}
.ws6{word-spacing:-33.641493pt;}
.ws17{word-spacing:-32.550053pt;}
.ws16{word-spacing:-32.280208pt;}
.ws2d{word-spacing:-15.636693pt;}
.ws1e{word-spacing:-15.396693pt;}
.ws26{word-spacing:-15.203627pt;}
.ws1b{word-spacing:-15.068160pt;}
.ws24{word-spacing:-15.052160pt;}
.ws27{word-spacing:-15.032960pt;}
.ws1c{word-spacing:-14.950827pt;}
.ws25{word-spacing:-14.895360pt;}
.ws1f{word-spacing:-14.786560pt;}
.wsb{word-spacing:-14.767360pt;}
.ws22{word-spacing:-14.743680pt;}
.ws0{word-spacing:-14.720000pt;}
.ws23{word-spacing:-14.700693pt;}
.ws1a{word-spacing:-14.672427pt;}
.ws1d{word-spacing:-14.536427pt;}
.ws15{word-spacing:-14.217458pt;}
.ws1{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.280000pt;}
.ws13{word-spacing:-11.904000pt;}
.ws18{word-spacing:-11.680000pt;}
.ws5{word-spacing:-9.607680pt;}
.ws7{word-spacing:-9.592320pt;}
.wsa{word-spacing:-9.280000pt;}
.ws9{word-spacing:-9.078933pt;}
.ws12{word-spacing:-7.936000pt;}
.ws19{word-spacing:0.000000pt;}
._5{margin-left:-7.384320pt;}
._12{margin-left:-6.450560pt;}
._11{margin-left:-4.100267pt;}
._2{margin-left:-3.205973pt;}
._4{margin-left:-2.138453pt;}
._0{margin-left:-0.972160pt;}
._1{width:1.106987pt;}
._3{width:2.471040pt;}
._7{width:4.208213pt;}
._8{width:5.361920pt;}
._10{width:6.716160pt;}
._6{width:7.649280pt;}
._a{width:8.658560pt;}
._f{width:9.588907pt;}
._e{width:10.542293pt;}
._d{width:12.005120pt;}
._9{width:13.386240pt;}
._c{width:16.433707pt;}
._13{width:17.476053pt;}
._15{width:18.414933pt;}
._b{width:21.238187pt;}
._14{width:2394.870613pt;}
.fs6{font-size:5.120000pt;}
.fs9{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fsa{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fsc{font-size:50.595937pt;}
.fs2{font-size:53.120000pt;}
.fsb{font-size:55.992837pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:2.080000pt;}
.y37{bottom:2.880000pt;}
.y5{bottom:3.360000pt;}
.y4f{bottom:4.453333pt;}
.y2{bottom:8.826667pt;}
.y40{bottom:9.120000pt;}
.y4c{bottom:10.560000pt;}
.y36{bottom:19.080000pt;}
.y4{bottom:20.186667pt;}
.y4b{bottom:32.154667pt;}
.y3f{bottom:35.514667pt;}
.y35{bottom:36.840000pt;}
.y3{bottom:42.586667pt;}
.y3e{bottom:46.074667pt;}
.y7{bottom:50.720000pt;}
.y4a{bottom:53.594667pt;}
.y34{bottom:54.760000pt;}
.y3d{bottom:57.594667pt;}
.y3c{bottom:69.114667pt;}
.y49{bottom:71.194667pt;}
.y33{bottom:72.680000pt;}
.y48{bottom:88.474667pt;}
.y3b{bottom:88.634667pt;}
.y7a{bottom:90.112000pt;}
.y32{bottom:90.440000pt;}
.y47{bottom:94.234667pt;}
.yc0{bottom:96.352000pt;}
.ye7{bottom:96.512000pt;}
.y9d{bottom:97.152000pt;}
.y4d{bottom:98.592000pt;}
.y46{bottom:107.994667pt;}
.y31{bottom:108.360000pt;}
.y79{bottom:113.312000pt;}
.y38{bottom:113.472000pt;}
.ybf{bottom:116.832000pt;}
.y9c{bottom:120.512000pt;}
.y45{bottom:121.754667pt;}
.y30{bottom:126.280000pt;}
.y78{bottom:133.946667pt;}
.y44{bottom:135.674667pt;}
.ybe{bottom:137.466667pt;}
.ye6{bottom:140.186667pt;}
.y9b{bottom:143.706667pt;}
.y3a{bottom:143.834667pt;}
.y2f{bottom:146.600000pt;}
.y43{bottom:149.434667pt;}
.y39{bottom:153.274667pt;}
.y77{bottom:154.426667pt;}
.ybd{bottom:155.386667pt;}
.y42{bottom:163.194667pt;}
.ye5{bottom:163.386667pt;}
.y9a{bottom:166.906667pt;}
.y2e{bottom:169.960000pt;}
.y76{bottom:175.066667pt;}
.ybc{bottom:175.866667pt;}
.ye4{bottom:186.586667pt;}
.y99{bottom:190.106667pt;}
.y1f{bottom:192.200000pt;}
.y75{bottom:192.826667pt;}
.y2d{bottom:193.160000pt;}
.ybb{bottom:196.506667pt;}
.ye3{bottom:209.786667pt;}
.y74{bottom:210.746667pt;}
.y98{bottom:213.306667pt;}
.y1e{bottom:213.640000pt;}
.y2c{bottom:216.360000pt;}
.yba{bottom:216.826667pt;}
.y73{bottom:228.666667pt;}
.ye2{bottom:232.986667pt;}
.y1d{bottom:235.080000pt;}
.y97{bottom:236.506667pt;}
.y2b{bottom:239.560000pt;}
.yb9{bottom:240.186667pt;}
.y72{bottom:249.146667pt;}
.ye1{bottom:256.346667pt;}
.y1c{bottom:256.546667pt;}
.y96{bottom:259.866667pt;}
.y2a{bottom:262.786667pt;}
.yb8{bottom:263.386667pt;}
.y71{bottom:269.786667pt;}
.y1b{bottom:278.146667pt;}
.ye0{bottom:279.546667pt;}
.y95{bottom:283.066667pt;}
.y29{bottom:286.146667pt;}
.yb7{bottom:286.586667pt;}
.y70{bottom:287.546667pt;}
.y11{bottom:293.466667pt;}
.y1a{bottom:299.586667pt;}
.ydf{bottom:302.786667pt;}
.y94{bottom:303.746667pt;}
.y6f{bottom:308.066667pt;}
.y28{bottom:309.346667pt;}
.yb6{bottom:309.826667pt;}
.y19{bottom:321.026667pt;}
.yde{bottom:323.426667pt;}
.y93{bottom:324.226667pt;}
.yb5{bottom:330.466667pt;}
.y6e{bottom:331.266667pt;}
.y27{bottom:332.546667pt;}
.ydd{bottom:341.346667pt;}
.y18{bottom:342.466667pt;}
.y92{bottom:347.426667pt;}
.yb4{bottom:350.946667pt;}
.y6d{bottom:354.466667pt;}
.y26{bottom:355.746667pt;}
.ydc{bottom:359.106667pt;}
.y17{bottom:363.906667pt;}
.y91{bottom:370.626667pt;}
.yb3{bottom:374.146667pt;}
.y6c{bottom:375.106667pt;}
.y25{bottom:376.386667pt;}
.ydb{bottom:377.026667pt;}
.y16{bottom:385.346667pt;}
.y90{bottom:393.826667pt;}
.y24{bottom:394.306667pt;}
.yda{bottom:394.946667pt;}
.y6b{bottom:395.586667pt;}
.yb2{bottom:397.346667pt;}
.y15{bottom:406.946667pt;}
.y23{bottom:412.066667pt;}
.yd9{bottom:412.706667pt;}
.y8f{bottom:417.026667pt;}
.y6a{bottom:418.786667pt;}
.yb1{bottom:420.706667pt;}
.y14{bottom:428.386667pt;}
.y22{bottom:429.986667pt;}
.yd8{bottom:430.626667pt;}
.y8e{bottom:440.386667pt;}
.y69{bottom:442.146667pt;}
.yb0{bottom:443.906667pt;}
.y21{bottom:447.906667pt;}
.yd7{bottom:448.386667pt;}
.y13{bottom:449.826667pt;}
.y8d{bottom:463.586667pt;}
.yaf{bottom:464.546667pt;}
.y68{bottom:465.346667pt;}
.y20{bottom:465.666667pt;}
.yd6{bottom:466.306667pt;}
.y12{bottom:471.266667pt;}
.yd5{bottom:484.226667pt;}
.yae{bottom:485.026667pt;}
.y8c{bottom:486.786667pt;}
.y67{bottom:488.546667pt;}
.yf9{bottom:489.506667pt;}
.yd4{bottom:501.986667pt;}
.yad{bottom:508.226667pt;}
.y8b{bottom:509.986667pt;}
.y66{bottom:511.746667pt;}
.yd3{bottom:519.906667pt;}
.yac{bottom:531.426667pt;}
.y8a{bottom:533.186667pt;}
.y65{bottom:534.946667pt;}
.yd2{bottom:537.853333pt;}
.y89{bottom:553.853333pt;}
.yab{bottom:554.653333pt;}
.yd1{bottom:555.613333pt;}
.y64{bottom:558.333333pt;}
.y88{bottom:571.773333pt;}
.yd0{bottom:573.533333pt;}
.yf8{bottom:574.333333pt;}
.yaa{bottom:577.853333pt;}
.y63{bottom:581.533333pt;}
.y87{bottom:589.693333pt;}
.ycf{bottom:594.013333pt;}
.yf7{bottom:597.533333pt;}
.ya9{bottom:601.053333pt;}
.y62{bottom:604.733333pt;}
.y86{bottom:607.453333pt;}
.yce{bottom:617.213333pt;}
.yf6{bottom:620.733333pt;}
.ya8{bottom:624.413333pt;}
.y61{bottom:625.373333pt;}
.ycd{bottom:640.413333pt;}
.y60{bottom:643.293333pt;}
.yf5{bottom:643.933333pt;}
.ya7{bottom:647.613333pt;}
.y5f{bottom:661.053333pt;}
.yf4{bottom:667.293333pt;}
.ya6{bottom:670.813333pt;}
.y5e{bottom:678.973333pt;}
.yf3{bottom:690.493333pt;}
.ya5{bottom:691.453333pt;}
.y5d{bottom:696.893333pt;}
.ycc{bottom:699.453333pt;}
.ya4{bottom:711.933333pt;}
.yf2{bottom:713.693333pt;}
.y5c{bottom:714.653333pt;}
.ycb{bottom:722.653333pt;}
.y85{bottom:732.573333pt;}
.y5b{bottom:735.133333pt;}
.yf1{bottom:736.893333pt;}
.yca{bottom:743.293333pt;}
.y84{bottom:750.493333pt;}
.y5a{bottom:758.333333pt;}
.yf0{bottom:760.093333pt;}
.yc9{bottom:763.773333pt;}
.y83{bottom:768.253333pt;}
.y10{bottom:775.653333pt;}
.yf{bottom:779.813333pt;}
.y59{bottom:781.573333pt;}
.yef{bottom:783.333333pt;}
.y82{bottom:786.213333pt;}
.yc8{bottom:787.013333pt;}
.ye{bottom:798.533333pt;}
.y81{bottom:803.973333pt;}
.y58{bottom:804.933333pt;}
.yee{bottom:806.693333pt;}
.yc7{bottom:810.213333pt;}
.yd{bottom:821.733333pt;}
.y80{bottom:824.453333pt;}
.y57{bottom:828.133333pt;}
.yed{bottom:829.893333pt;}
.yc6{bottom:830.853333pt;}
.yc{bottom:844.933333pt;}
.y7f{bottom:847.653333pt;}
.yc5{bottom:848.773333pt;}
.y56{bottom:851.333333pt;}
.yec{bottom:853.093333pt;}
.yc4{bottom:866.533333pt;}
.yb{bottom:868.293333pt;}
.y7e{bottom:871.013333pt;}
.y55{bottom:871.973333pt;}
.ya3{bottom:874.533333pt;}
.yeb{bottom:876.293333pt;}
.yc3{bottom:884.453333pt;}
.y54{bottom:889.893333pt;}
.ya{bottom:891.493333pt;}
.y7d{bottom:894.213333pt;}
.ya2{bottom:895.173333pt;}
.yea{bottom:899.493333pt;}
.yc2{bottom:904.933333pt;}
.y53{bottom:907.653333pt;}
.ya1{bottom:913.093333pt;}
.y9{bottom:917.253333pt;}
.y7c{bottom:917.413333pt;}
.ye9{bottom:922.853333pt;}
.y52{bottom:925.573333pt;}
.yc1{bottom:928.133333pt;}
.ya0{bottom:930.853333pt;}
.y7b{bottom:940.613333pt;}
.y51{bottom:943.493333pt;}
.ye8{bottom:946.053333pt;}
.y9f{bottom:948.773333pt;}
.y8{bottom:952.773333pt;}
.y4e{bottom:955.680000pt;}
.y50{bottom:963.813333pt;}
.y9e{bottom:966.693333pt;}
.y6{bottom:984.773333pt;}
.y1{bottom:998.693333pt;}
.hb{height:3.612500pt;}
.h15{height:3.742500pt;}
.h11{height:18.768750pt;}
.h10{height:22.343750pt;}
.h19{height:24.640000pt;}
.he{height:25.918750pt;}
.hd{height:26.190625pt;}
.h14{height:33.867188pt;}
.h12{height:34.664062pt;}
.h13{height:35.085938pt;}
.h6{height:37.090625pt;}
.ha{height:39.840000pt;}
.h5{height:41.112500pt;}
.h17{height:49.622500pt;}
.h7{height:50.288438pt;}
.h18{height:53.634657pt;}
.h9{height:56.310313pt;}
.h1a{height:56.891250pt;}
.h3{height:58.563750pt;}
.h16{height:59.355688pt;}
.h2{height:75.552000pt;}
.h8{height:79.377187pt;}
.h4{height:104.160000pt;}
.hf{height:179.360000pt;}
.hc{height:479.933333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.512000pt;}
.w5{width:117.920000pt;}
.w7{width:144.800000pt;}
.w6{width:530.213333pt;}
.w3{width:553.253333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:6.272000pt;}
.x1b{left:7.200000pt;}
.x4{left:11.360000pt;}
.x1d{left:16.160000pt;}
.x19{left:17.760000pt;}
.x6{left:19.520000pt;}
.x18{left:22.720000pt;}
.x1f{left:25.920000pt;}
.x12{left:38.880000pt;}
.x1e{left:42.400000pt;}
.x13{left:45.120000pt;}
.x11{left:48.800000pt;}
.x17{left:59.674667pt;}
.x1{left:69.600000pt;}
.x15{left:70.554667pt;}
.x16{left:74.394667pt;}
.x9{left:76.831988pt;}
.x2{left:85.146667pt;}
.x20{left:91.354667pt;}
.x1c{left:94.874667pt;}
.x14{left:110.714667pt;}
.x5{left:125.640000pt;}
.x3{left:162.106667pt;}
.x1a{left:194.746667pt;}
.x21{left:288.066667pt;}
.x22{left:293.186667pt;}
.xd{left:374.626655pt;}
.xc{left:412.573322pt;}
.xe{left:430.013322pt;}
.xa{left:433.853322pt;}
.xb{left:470.973322pt;}
.xf{left:524.093322pt;}
.x8{left:680.933322pt;}
.x7{left:703.999988pt;}
.x10{left:717.279988pt;}
}




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