
    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_c8222fc1681fb323595b15a4.woff')format("woff");}.ff1{font-family:ff1;line-height:0.897000;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_3a4a6807ef482ed7bb5887cb.woff')format("woff");}.ff2{font-family:ff2;line-height:0.890000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8ae8c23168d921747bc2599c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_84d5d3b4f344ea753c2494e3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.810000;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_d86530efd90e6aa5a94987aa.woff')format("woff");}.ff5{font-family:ff5;line-height:0.999000;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_e11fd39adac832ef78f72b30.woff')format("woff");}.ff6{font-family:ff6;line-height:0.930000;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_ad9ed1fc4dea5b77ecad8700.woff')format("woff");}.ff7{font-family:ff7;line-height:1.735000;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_dbab49ce9134b2f47a0db52e.woff')format("woff");}.ff8{font-family:ff8;line-height:0.685000;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_2e58ee3ee77d475a908fc878.woff')format("woff");}.ff9{font-family:ff9;line-height:0.668000;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_16e6b3407fc1eb5ef8f39dbc.woff')format("woff");}.ffa{font-family:ffa;line-height:0.706000;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_dc4cc54704017847c3625add.woff')format("woff");}.ffb{font-family:ffb;line-height:2.222000;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_ca5f44ab7e17033054bf9cbc.woff')format("woff");}.ffc{font-family:ffc;line-height:1.001000;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_4cfe884490d78a2bf4c71fbc.woff')format("woff");}.ffd{font-family:ffd;line-height:1.000000;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_89eaea8a0a86dec2e30c03ed.woff')format("woff");}.ffe{font-family:ffe;line-height:1.735000;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_b1801fc40f64f9ab426257bc.woff')format("woff");}.fff{font-family:fff;line-height:1.001000;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_4cfe884490d78a2bf4c71fbc.woff')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_89eaea8a0a86dec2e30c03ed.woff')format("woff");}.ff11{font-family:ff11;line-height:1.735000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_b1801fc40f64f9ab426257bc.woff')format("woff");}.ff12{font-family:ff12;line-height:1.001000;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v10{vertical-align:-28.692000px;}
.v5{vertical-align:-22.308000px;}
.vc{vertical-align:-18.594000px;}
.v4{vertical-align:-15.708000px;}
.v11{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:35.376000px;}
.v1{vertical-align:53.970000px;}
.vf{vertical-align:61.404000px;}
.v7{vertical-align:79.710000px;}
.v6{vertical-align:100.608000px;}
.v2{vertical-align:102.012000px;}
.vb{vertical-align:135.966000px;}
.va{vertical-align:154.560000px;}
.v3{vertical-align:202.626000px;}
.v9{vertical-align:206.430000px;}
.v8{vertical-align:256.596000px;}
.vd{vertical-align:336.696000px;}
.ls40{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.000782px;}
.ls27{letter-spacing:0.000792px;}
.ls10{letter-spacing:0.001537px;}
.ls3a{letter-spacing:0.002023px;}
.ls32{letter-spacing:0.002234px;}
.ls36{letter-spacing:0.002700px;}
.ls33{letter-spacing:0.004350px;}
.ls3{letter-spacing:0.004538px;}
.ls19{letter-spacing:0.004880px;}
.ls14{letter-spacing:0.005327px;}
.lse{letter-spacing:0.005457px;}
.ls3c{letter-spacing:0.047157px;}
.ls2b{letter-spacing:1.435764px;}
.ls2e{letter-spacing:1.441764px;}
.ls1a{letter-spacing:2.985900px;}
.ls1c{letter-spacing:2.989065px;}
.ls31{letter-spacing:2.992350px;}
.ls4{letter-spacing:2.995065px;}
.lsd{letter-spacing:5.329973px;}
.ls0{letter-spacing:5.336112px;}
.ls30{letter-spacing:7.149533px;}
.ls1d{letter-spacing:7.167562px;}
.ls1b{letter-spacing:7.433678px;}
.ls35{letter-spacing:8.085791px;}
.lsb{letter-spacing:8.091288px;}
.ls2d{letter-spacing:8.864882px;}
.ls38{letter-spacing:11.491355px;}
.ls25{letter-spacing:13.771329px;}
.ls37{letter-spacing:19.846747px;}
.ls2c{letter-spacing:24.785453px;}
.ls29{letter-spacing:24.794745px;}
.ls2a{letter-spacing:30.129831px;}
.ls1e{letter-spacing:33.045562px;}
.lsc{letter-spacing:33.055473px;}
.ls3f{letter-spacing:37.173562px;}
.ls3e{letter-spacing:37.179562px;}
.ls9{letter-spacing:37.180538px;}
.ls12{letter-spacing:38.384112px;}
.ls18{letter-spacing:40.171065px;}
.ls3d{letter-spacing:40.173000px;}
.ls34{letter-spacing:41.305084px;}
.ls2{letter-spacing:41.307562px;}
.ls6{letter-spacing:41.309400px;}
.ls1{letter-spacing:41.310792px;}
.ls26{letter-spacing:41.311612px;}
.ls5{letter-spacing:41.312234px;}
.ls8{letter-spacing:41.315400px;}
.lsa{letter-spacing:41.316782px;}
.lsf{letter-spacing:41.317473px;}
.ls15{letter-spacing:41.344883px;}
.ls23{letter-spacing:44.301900px;}
.ls21{letter-spacing:45.440234px;}
.ls17{letter-spacing:46.645973px;}
.ls7{letter-spacing:46.646112px;}
.ls20{letter-spacing:48.487473px;}
.ls1f{letter-spacing:48.749678px;}
.ls2f{letter-spacing:56.709533px;}
.ls3b{letter-spacing:59.683065px;}
.ls28{letter-spacing:66.091723px;}
.ls22{letter-spacing:619.679453px;}
.ls11{letter-spacing:626.843453px;}
.ls39{letter-spacing:791.399453px;}
.ls24{letter-spacing:1056.545453px;}
.ls16{letter-spacing:1297.037453px;}
.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;}
}
.ws29{word-spacing:-148.722600px;}
.ws2f{word-spacing:-123.975000px;}
.ws27{word-spacing:-94.676807px;}
.ws37{word-spacing:-78.922485px;}
.ws2b{word-spacing:-78.466044px;}
.ws3a{word-spacing:-69.988856px;}
.ws32{word-spacing:-69.840133px;}
.ws14{word-spacing:-53.544150px;}
.ws28{word-spacing:-42.102851px;}
.ws35{word-spacing:-41.082428px;}
.ws26{word-spacing:-39.348851px;}
.ws1a{word-spacing:-37.180650px;}
.ws2a{word-spacing:-37.121161px;}
.ws40{word-spacing:-30.944160px;}
.ws2e{word-spacing:-12.343976px;}
.ws3b{word-spacing:-12.284487px;}
.ws20{word-spacing:-7.810244px;}
.ws1f{word-spacing:-7.733575px;}
.ws66{word-spacing:-7.306657px;}
.ws68{word-spacing:-7.301824px;}
.ws65{word-spacing:-7.300055px;}
.ws67{word-spacing:-7.296977px;}
.ws1c{word-spacing:-7.287407px;}
.ws34{word-spacing:-4.548851px;}
.ws49{word-spacing:-4.030784px;}
.ws4b{word-spacing:-4.015510px;}
.ws61{word-spacing:-3.866788px;}
.ws10{word-spacing:-3.223350px;}
.ws5d{word-spacing:-2.974452px;}
.ws5f{word-spacing:-2.825729px;}
.ws4e{word-spacing:-2.677007px;}
.ws4c{word-spacing:-2.230839px;}
.ws50{word-spacing:-1.784671px;}
.ws21{word-spacing:-0.743613px;}
.ws58{word-spacing:-0.446168px;}
.ws39{word-spacing:-0.148723px;}
.ws8{word-spacing:-0.123975px;}
.ws3{word-spacing:-0.017918px;}
.ws24{word-spacing:-0.008564px;}
.ws2{word-spacing:-0.008381px;}
.ws22{word-spacing:-0.006028px;}
.ws62{word-spacing:-0.005824px;}
.ws2c{word-spacing:-0.003962px;}
.ws0{word-spacing:0.000000px;}
.ws4{word-spacing:0.001219px;}
.wsf{word-spacing:0.495900px;}
.ws19{word-spacing:1.041058px;}
.ws5{word-spacing:1.363725px;}
.ws7{word-spacing:1.395075px;}
.ws63{word-spacing:2.082116px;}
.ws12{word-spacing:2.479500px;}
.ws30{word-spacing:2.528284px;}
.ws64{word-spacing:2.677007px;}
.ws31{word-spacing:2.825729px;}
.ws43{word-spacing:2.974452px;}
.ws45{word-spacing:3.123175px;}
.ws52{word-spacing:3.405056px;}
.wsd{word-spacing:3.967200px;}
.ws23{word-spacing:4.161588px;}
.ws36{word-spacing:4.166756px;}
.ws2d{word-spacing:4.223722px;}
.ws46{word-spacing:4.461678px;}
.ws18{word-spacing:4.759123px;}
.ws53{word-spacing:4.820742px;}
.ws60{word-spacing:4.907846px;}
.ws33{word-spacing:5.153149px;}
.ws47{word-spacing:5.502736px;}
.ws9{word-spacing:5.702850px;}
.ws15{word-spacing:6.395072px;}
.wsb{word-spacing:6.818625px;}
.ws3d{word-spacing:7.436130px;}
.ws48{word-spacing:7.882298px;}
.ws5e{word-spacing:8.179743px;}
.ws11{word-spacing:8.182350px;}
.ws1b{word-spacing:8.477188px;}
.ws56{word-spacing:8.774633px;}
.ws25{word-spacing:8.923356px;}
.ws1d{word-spacing:10.856750px;}
.ws13{word-spacing:10.909800px;}
.ws1e{word-spacing:11.005472px;}
.wsa{word-spacing:11.281725px;}
.ws3e{word-spacing:12.343976px;}
.ws3f{word-spacing:12.380410px;}
.ws44{word-spacing:12.641421px;}
.ws16{word-spacing:14.723537px;}
.ws41{word-spacing:19.482661px;}
.ws5c{word-spacing:24.985397px;}
.ws59{word-spacing:30.861075px;}
.ws5b{word-spacing:30.863325px;}
.ws6{word-spacing:32.254950px;}
.ws4a{word-spacing:33.016417px;}
.ws4d{word-spacing:34.331357px;}
.wse{word-spacing:34.854900px;}
.ws42{word-spacing:37.031927px;}
.wsc{word-spacing:37.688400px;}
.ws4f{word-spacing:38.354043px;}
.ws57{word-spacing:45.955283px;}
.ws17{word-spacing:51.755465px;}
.ws38{word-spacing:54.162918px;}
.ws55{word-spacing:69.986984px;}
.ws1{word-spacing:92.162918px;}
.ws54{word-spacing:317.522751px;}
.ws51{word-spacing:356.155006px;}
.ws5a{word-spacing:1455.652125px;}
.ws3c{word-spacing:1588.918334px;}
._19{margin-left:-41.401799px;}
._4{margin-left:-19.123473px;}
._3{margin-left:-16.655949px;}
._3b{margin-left:-15.536892px;}
._20{margin-left:-13.682479px;}
._16{margin-left:-11.897808px;}
._13{margin-left:-9.330026px;}
._1{margin-left:-7.402644px;}
._2{margin-left:-5.551983px;}
._0{margin-left:-4.441344px;}
._5{margin-left:-3.084432px;}
._6{margin-left:-1.874568px;}
._1e{width:2.995860px;}
._1d{width:5.281125px;}
._17{width:8.031020px;}
._18{width:11.960538px;}
._1c{width:13.823247px;}
._35{width:24.836674px;}
._d{width:30.388818px;}
._8{width:33.364218px;}
._24{width:34.596605px;}
._b{width:36.010983px;}
._e{width:37.367895px;}
._9{width:39.686943px;}
._f{width:41.159700px;}
._7{width:43.474350px;}
._11{width:45.017868px;}
._10{width:46.659429px;}
._14{width:47.888677px;}
._c{width:49.733118px;}
._3a{width:50.962444px;}
._39{width:53.767840px;}
._12{width:55.473530px;}
._a{width:58.465269px;}
._22{width:60.025105px;}
._1f{width:62.088562px;}
._37{width:71.584885px;}
._38{width:72.676792px;}
._15{width:77.935489px;}
._21{width:84.692722px;}
._23{width:105.402746px;}
._36{width:106.782827px;}
._30{width:185.524945px;}
._2b{width:226.127915px;}
._28{width:230.817475px;}
._31{width:317.522751px;}
._26{width:388.009649px;}
._25{width:403.121028px;}
._34{width:415.869331px;}
._2a{width:432.039153px;}
._32{width:559.196976px;}
._29{width:584.033650px;}
._27{width:616.251207px;}
._2d{width:633.558276px;}
._1b{width:668.605464px;}
._33{width:670.887649px;}
._2e{width:708.068299px;}
._2f{width:715.010591px;}
._1a{width:745.963614px;}
._2c{width:782.132591px;}
.fc3{color:transparent;}
.fc2{color:rgb(119,65,119);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,128);}
.fs8{font-size:60.445330px;}
.fs7{font-size:86.077200px;}
.fs9{font-size:87.041238px;}
.fs4{font-size:123.975000px;}
.fs5{font-size:148.722600px;}
.fs6{font-size:178.490400px;}
.fs3{font-size:214.176600px;}
.fs2{font-size:308.443200px;}
.fs1{font-size:370.132200px;}
.fs0{font-size:444.134400px;}
.y0{bottom:0.000000px;}
.y57{bottom:14.698793px;}
.y56{bottom:35.037805px;}
.y58{bottom:50.902394px;}
.y59{bottom:108.565063px;}
.y68{bottom:118.175507px;}
.y5a{bottom:166.227731px;}
.y69{bottom:185.448621px;}
.y8e{bottom:199.356000px;}
.y60{bottom:203.840692px;}
.y4f{bottom:213.175500px;}
.y3a{bottom:214.903500px;}
.y5b{bottom:223.890400px;}
.y6a{bottom:252.721735px;}
.y8d{bottom:256.143000px;}
.y4e{bottom:258.007500px;}
.y5c{bottom:281.553069px;}
.y4d{bottom:302.839500px;}
.y66{bottom:303.007539px;}
.y42{bottom:314.560500px;}
.y6b{bottom:319.994848px;}
.y65{bottom:335.688786px;}
.y5d{bottom:339.215738px;}
.y8c{bottom:340.041000px;}
.y4c{bottom:347.671500px;}
.y40{bottom:349.911000px;}
.y64{bottom:368.370032px;}
.y8b{bottom:384.873000px;}
.y6c{bottom:387.267962px;}
.y4b{bottom:392.503500px;}
.y3f{bottom:394.743000px;}
.y5e{bottom:396.878407px;}
.y63{bottom:401.051279px;}
.y62{bottom:433.732525px;}
.y4a{bottom:437.335500px;}
.y8a{bottom:438.672000px;}
.y3e{bottom:439.575000px;}
.y39{bottom:453.013500px;}
.y5f{bottom:454.541075px;}
.y3b{bottom:456.825000px;}
.y61{bottom:465.204861px;}
.y49{bottom:482.167500px;}
.y89{bottom:483.504000px;}
.y3d{bottom:484.407000px;}
.y48{bottom:526.999500px;}
.y3c{bottom:529.239000px;}
.y88{bottom:537.301500px;}
.y41{bottom:571.410000px;}
.y47{bottom:571.831500px;}
.y43{bottom:590.149500px;}
.y87{bottom:620.616000px;}
.y46{bottom:635.970000px;}
.y38{bottom:690.636000px;}
.y37{bottom:691.170000px;}
.y45{bottom:700.108500px;}
.y86{bottom:743.076000px;}
.y44{bottom:744.939000px;}
.y85{bottom:787.908000px;}
.y36{bottom:814.869000px;}
.y84{bottom:832.740000px;}
.y83{bottom:877.572000px;}
.y35{bottom:921.843000px;}
.y82{bottom:922.404000px;}
.y34{bottom:966.675000px;}
.y81{bottom:1005.717000px;}
.y33{bottom:1017.481500px;}
.y32{bottom:1051.048500px;}
.y80{bottom:1135.650000px;}
.y31{bottom:1139.718000px;}
.y7f{bottom:1180.482000px;}
.y30{bottom:1186.054500px;}
.y2f{bottom:1211.559000px;}
.y7e{bottom:1225.314000px;}
.y7d{bottom:1279.113000px;}
.y2e{bottom:1310.950500px;}
.y7c{bottom:1323.945000px;}
.y2d{bottom:1380.879000px;}
.y7b{bottom:1407.258000px;}
.y2c{bottom:1503.544500px;}
.y7a{bottom:1558.860000px;}
.y2b{bottom:2112.766500px;}
.y2a{bottom:2157.598500px;}
.y29{bottom:2202.430500px;}
.y28{bottom:2247.262500px;}
.y26{bottom:2301.535500px;}
.y27{bottom:2327.038500px;}
.y79{bottom:2342.572500px;}
.y25{bottom:2352.192000px;}
.y78{bottom:2387.404500px;}
.y24{bottom:2406.862500px;}
.y77{bottom:2432.236500px;}
.y23{bottom:2451.694500px;}
.y76{bottom:2477.068500px;}
.y22{bottom:2521.623000px;}
.y75{bottom:2569.672500px;}
.y74{bottom:2614.504500px;}
.y21{bottom:2628.597000px;}
.y73{bottom:2659.935000px;}
.y20{bottom:2673.429000px;}
.y72{bottom:2704.767000px;}
.y1f{bottom:2727.808500px;}
.y71{bottom:2749.599000px;}
.y1e{bottom:2772.640500px;}
.y70{bottom:2795.028000px;}
.y1d{bottom:2827.020000px;}
.y6f{bottom:2839.860000px;}
.y1c{bottom:2871.852000px;}
.y6e{bottom:2884.692000px;}
.y1b{bottom:2926.233000px;}
.y6d{bottom:2930.121000px;}
.y1a{bottom:2971.063500px;}
.y19{bottom:3054.378000px;}
.y67{bottom:3077.319000px;}
.y55{bottom:3140.830500px;}
.y18{bottom:3177.490500px;}
.y17{bottom:3222.322500px;}
.y16{bottom:3267.154500px;}
.y15{bottom:3311.986500px;}
.y14{bottom:3395.299500px;}
.y13{bottom:3527.338500px;}
.y12{bottom:3564.697500px;}
.y11{bottom:3602.058000px;}
.y10{bottom:3639.417000px;}
.yf{bottom:3676.777500px;}
.y54{bottom:3699.264000px;}
.ye{bottom:3714.138000px;}
.y53{bottom:3744.094500px;}
.yd{bottom:3751.497000px;}
.yc{bottom:3788.857500px;}
.y52{bottom:3788.926500px;}
.yb{bottom:3826.216500px;}
.y51{bottom:3833.758500px;}
.ya{bottom:3863.577000px;}
.y9{bottom:3900.937500px;}
.y50{bottom:3917.073000px;}
.y8{bottom:3931.726500px;}
.y7{bottom:4125.613500px;}
.y6{bottom:4205.616000px;}
.y5{bottom:4289.872500px;}
.y4{bottom:4378.380000px;}
.y3{bottom:4535.877000px;}
.y2{bottom:4623.304500px;}
.y1{bottom:4702.854000px;}
.h1e{height:45.333998px;}
.h1f{height:46.845131px;}
.h20{height:65.280929px;}
.h8{height:85.294800px;}
.h7{height:85.666725px;}
.ha{height:102.321149px;}
.hb{height:102.767317px;}
.h21{height:103.065149px;}
.hf{height:106.336659px;}
.h12{height:111.393227px;}
.hd{height:111.399227px;}
.h18{height:115.260015px;}
.hc{height:123.336866px;}
.h6{height:133.646198px;}
.h1b{height:142.612125px;}
.he{height:146.827275px;}
.h9{height:147.996031px;}
.h1c{height:150.046125px;}
.h13{height:150.050625px;}
.h14{height:206.944659px;}
.h17{height:208.354659px;}
.h5{height:212.208922px;}
.h4{height:213.134251px;}
.h11{height:217.272015px;}
.h19{height:243.202125px;}
.h3{height:252.800293px;}
.h2{height:306.896870px;}
.h10{height:308.962659px;}
.h16{height:312.766659px;}
.h1a{height:336.696000px;}
.h15{height:352.676625px;}
.h1d{height:500.151933px;}
.h1{height:5052.000000px;}
.h0{height:5052.189000px;}
.w2{width:674.124042px;}
.w0{width:3569.953500px;}
.w1{width:3570.000000px;}
.x0{left:0.000000px;}
.x25{left:22.254459px;}
.x23{left:32.099493px;}
.x24{left:43.852787px;}
.x21{left:58.248232px;}
.x4{left:212.598000px;}
.x5{left:214.600500px;}
.x19{left:227.514000px;}
.x18{left:230.454000px;}
.x1{left:235.014000px;}
.xb{left:240.427500px;}
.x3{left:249.958500px;}
.x1a{left:260.535000px;}
.x22{left:265.200579px;}
.x14{left:268.909500px;}
.x26{left:465.400685px;}
.x1b{left:469.728000px;}
.x15{left:481.462500px;}
.x16{left:499.017000px;}
.xc{left:520.087500px;}
.x13{left:525.099000px;}
.xd{left:565.686000px;}
.x7{left:582.003000px;}
.x8{left:585.766500px;}
.x11{left:676.851000px;}
.x6{left:695.473500px;}
.x1d{left:715.575000px;}
.x1c{left:752.100000px;}
.xe{left:805.510500px;}
.x17{left:810.684000px;}
.x12{left:851.103000px;}
.x2{left:903.765000px;}
.x9{left:976.278000px;}
.x1e{left:1021.093500px;}
.xf{left:1066.989000px;}
.xa{left:1142.992500px;}
.x1f{left:1262.295000px;}
.x10{left:1340.068500px;}
.x20{left:1859.697000px;}
.x2d{left:1861.699500px;}
.x2b{left:1868.662500px;}
.x2e{left:1897.056000px;}
.x30{left:1910.520000px;}
.x2a{left:1953.307500px;}
.x2c{left:1957.248000px;}
.x27{left:1976.356500px;}
.x28{left:2683.245000px;}
.x29{left:2799.904500px;}
.x2f{left:3126.006000px;}
@media print{
.v10{vertical-align:-25.504000pt;}
.v5{vertical-align:-19.829333pt;}
.vc{vertical-align:-16.528000pt;}
.v4{vertical-align:-13.962667pt;}
.v11{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:31.445333pt;}
.v1{vertical-align:47.973333pt;}
.vf{vertical-align:54.581333pt;}
.v7{vertical-align:70.853333pt;}
.v6{vertical-align:89.429333pt;}
.v2{vertical-align:90.677333pt;}
.vb{vertical-align:120.858667pt;}
.va{vertical-align:137.386667pt;}
.v3{vertical-align:180.112000pt;}
.v9{vertical-align:183.493333pt;}
.v8{vertical-align:228.085333pt;}
.vd{vertical-align:299.285333pt;}
.ls40{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.000695pt;}
.ls27{letter-spacing:0.000704pt;}
.ls10{letter-spacing:0.001367pt;}
.ls3a{letter-spacing:0.001798pt;}
.ls32{letter-spacing:0.001986pt;}
.ls36{letter-spacing:0.002400pt;}
.ls33{letter-spacing:0.003867pt;}
.ls3{letter-spacing:0.004034pt;}
.ls19{letter-spacing:0.004338pt;}
.ls14{letter-spacing:0.004735pt;}
.lse{letter-spacing:0.004851pt;}
.ls3c{letter-spacing:0.041917pt;}
.ls2b{letter-spacing:1.276235pt;}
.ls2e{letter-spacing:1.281568pt;}
.ls1a{letter-spacing:2.654133pt;}
.ls1c{letter-spacing:2.656947pt;}
.ls31{letter-spacing:2.659867pt;}
.ls4{letter-spacing:2.662280pt;}
.lsd{letter-spacing:4.737754pt;}
.ls0{letter-spacing:4.743211pt;}
.ls30{letter-spacing:6.355140pt;}
.ls1d{letter-spacing:6.371166pt;}
.ls1b{letter-spacing:6.607713pt;}
.ls35{letter-spacing:7.187370pt;}
.lsb{letter-spacing:7.192256pt;}
.ls2d{letter-spacing:7.879895pt;}
.ls38{letter-spacing:10.214537pt;}
.ls25{letter-spacing:12.241181pt;}
.ls37{letter-spacing:17.641553pt;}
.ls2c{letter-spacing:22.031514pt;}
.ls29{letter-spacing:22.039774pt;}
.ls2a{letter-spacing:26.782072pt;}
.ls1e{letter-spacing:29.373833pt;}
.lsc{letter-spacing:29.382642pt;}
.ls3f{letter-spacing:33.043166pt;}
.ls3e{letter-spacing:33.048499pt;}
.ls9{letter-spacing:33.049367pt;}
.ls12{letter-spacing:34.119211pt;}
.ls18{letter-spacing:35.707613pt;}
.ls3d{letter-spacing:35.709333pt;}
.ls34{letter-spacing:36.715630pt;}
.ls2{letter-spacing:36.717833pt;}
.ls6{letter-spacing:36.719467pt;}
.ls1{letter-spacing:36.720704pt;}
.ls26{letter-spacing:36.721433pt;}
.ls5{letter-spacing:36.721986pt;}
.ls8{letter-spacing:36.724800pt;}
.lsa{letter-spacing:36.726028pt;}
.lsf{letter-spacing:36.726642pt;}
.ls15{letter-spacing:36.751007pt;}
.ls23{letter-spacing:39.379467pt;}
.ls21{letter-spacing:40.391319pt;}
.ls17{letter-spacing:41.463087pt;}
.ls7{letter-spacing:41.463211pt;}
.ls20{letter-spacing:43.099976pt;}
.ls1f{letter-spacing:43.333047pt;}
.ls2f{letter-spacing:50.408473pt;}
.ls3b{letter-spacing:53.051613pt;}
.ls28{letter-spacing:58.748199pt;}
.ls22{letter-spacing:550.826180pt;}
.ls11{letter-spacing:557.194180pt;}
.ls39{letter-spacing:703.466180pt;}
.ls24{letter-spacing:939.151514pt;}
.ls16{letter-spacing:1152.922180pt;}
.ws29{word-spacing:-132.197867pt;}
.ws2f{word-spacing:-110.200000pt;}
.ws27{word-spacing:-84.157162pt;}
.ws37{word-spacing:-70.153320pt;}
.ws2b{word-spacing:-69.747594pt;}
.ws3a{word-spacing:-62.212316pt;}
.ws32{word-spacing:-62.080118pt;}
.ws14{word-spacing:-47.594800pt;}
.ws28{word-spacing:-37.424756pt;}
.ws35{word-spacing:-36.517713pt;}
.ws26{word-spacing:-34.976756pt;}
.ws1a{word-spacing:-33.049467pt;}
.ws2a{word-spacing:-32.996588pt;}
.ws40{word-spacing:-27.505920pt;}
.ws2e{word-spacing:-10.972423pt;}
.ws3b{word-spacing:-10.919544pt;}
.ws20{word-spacing:-6.942439pt;}
.ws1f{word-spacing:-6.874289pt;}
.ws66{word-spacing:-6.494806pt;}
.ws68{word-spacing:-6.490510pt;}
.ws65{word-spacing:-6.488938pt;}
.ws67{word-spacing:-6.486202pt;}
.ws1c{word-spacing:-6.477695pt;}
.ws34{word-spacing:-4.043423pt;}
.ws49{word-spacing:-3.582919pt;}
.ws4b{word-spacing:-3.569342pt;}
.ws61{word-spacing:-3.437145pt;}
.ws10{word-spacing:-2.865200pt;}
.ws5d{word-spacing:-2.643957pt;}
.ws5f{word-spacing:-2.511759pt;}
.ws4e{word-spacing:-2.379562pt;}
.ws4c{word-spacing:-1.982968pt;}
.ws50{word-spacing:-1.586374pt;}
.ws21{word-spacing:-0.660989pt;}
.ws58{word-spacing:-0.396594pt;}
.ws39{word-spacing:-0.132198pt;}
.ws8{word-spacing:-0.110200pt;}
.ws3{word-spacing:-0.015927pt;}
.ws24{word-spacing:-0.007613pt;}
.ws2{word-spacing:-0.007450pt;}
.ws22{word-spacing:-0.005358pt;}
.ws62{word-spacing:-0.005177pt;}
.ws2c{word-spacing:-0.003522pt;}
.ws0{word-spacing:0.000000pt;}
.ws4{word-spacing:0.001084pt;}
.wsf{word-spacing:0.440800pt;}
.ws19{word-spacing:0.925385pt;}
.ws5{word-spacing:1.212200pt;}
.ws7{word-spacing:1.240067pt;}
.ws63{word-spacing:1.850770pt;}
.ws12{word-spacing:2.204000pt;}
.ws30{word-spacing:2.247364pt;}
.ws64{word-spacing:2.379562pt;}
.ws31{word-spacing:2.511759pt;}
.ws43{word-spacing:2.643957pt;}
.ws45{word-spacing:2.776155pt;}
.ws52{word-spacing:3.026717pt;}
.wsd{word-spacing:3.526400pt;}
.ws23{word-spacing:3.699189pt;}
.ws36{word-spacing:3.703783pt;}
.ws2d{word-spacing:3.754419pt;}
.ws46{word-spacing:3.965936pt;}
.ws18{word-spacing:4.230332pt;}
.ws53{word-spacing:4.285104pt;}
.ws60{word-spacing:4.362530pt;}
.ws33{word-spacing:4.580577pt;}
.ws47{word-spacing:4.891321pt;}
.ws9{word-spacing:5.069200pt;}
.ws15{word-spacing:5.684508pt;}
.wsb{word-spacing:6.061000pt;}
.ws3d{word-spacing:6.609893pt;}
.ws48{word-spacing:7.006487pt;}
.ws5e{word-spacing:7.270883pt;}
.ws11{word-spacing:7.273200pt;}
.ws1b{word-spacing:7.535278pt;}
.ws56{word-spacing:7.799674pt;}
.ws25{word-spacing:7.931872pt;}
.ws1d{word-spacing:9.650444pt;}
.ws13{word-spacing:9.697600pt;}
.ws1e{word-spacing:9.782642pt;}
.wsa{word-spacing:10.028200pt;}
.ws3e{word-spacing:10.972423pt;}
.ws3f{word-spacing:11.004809pt;}
.ws44{word-spacing:11.236819pt;}
.ws16{word-spacing:13.087589pt;}
.ws41{word-spacing:17.317921pt;}
.ws5c{word-spacing:22.209242pt;}
.ws59{word-spacing:27.432067pt;}
.ws5b{word-spacing:27.434067pt;}
.ws6{word-spacing:28.671067pt;}
.ws4a{word-spacing:29.347926pt;}
.ws4d{word-spacing:30.516762pt;}
.wse{word-spacing:30.982133pt;}
.ws42{word-spacing:32.917269pt;}
.wsc{word-spacing:33.500800pt;}
.ws4f{word-spacing:34.092483pt;}
.ws57{word-spacing:40.849141pt;}
.ws17{word-spacing:46.004858pt;}
.ws38{word-spacing:48.144816pt;}
.ws55{word-spacing:62.210653pt;}
.ws1{word-spacing:81.922594pt;}
.ws54{word-spacing:282.242445pt;}
.ws51{word-spacing:316.582228pt;}
.ws5a{word-spacing:1293.913000pt;}
.ws3c{word-spacing:1412.371853pt;}
._19{margin-left:-36.801599pt;}
._4{margin-left:-16.998643pt;}
._3{margin-left:-14.805288pt;}
._3b{margin-left:-13.810571pt;}
._20{margin-left:-12.162204pt;}
._16{margin-left:-10.575829pt;}
._13{margin-left:-8.293356pt;}
._1{margin-left:-6.580128pt;}
._2{margin-left:-4.935096pt;}
._0{margin-left:-3.947861pt;}
._5{margin-left:-2.741717pt;}
._6{margin-left:-1.666283pt;}
._1e{width:2.662987pt;}
._1d{width:4.694333pt;}
._17{width:7.138685pt;}
._18{width:10.631589pt;}
._1c{width:12.287331pt;}
._35{width:22.077044pt;}
._d{width:27.012283pt;}
._8{width:29.657083pt;}
._24{width:30.752538pt;}
._b{width:32.009763pt;}
._e{width:33.215907pt;}
._9{width:35.277283pt;}
._f{width:36.586400pt;}
._7{width:38.643867pt;}
._11{width:40.015883pt;}
._10{width:41.475048pt;}
._14{width:42.567713pt;}
._c{width:44.207216pt;}
._3a{width:45.299950pt;}
._39{width:47.793635pt;}
._12{width:49.309804pt;}
._a{width:51.969128pt;}
._22{width:53.355649pt;}
._1f{width:55.189833pt;}
._37{width:63.631009pt;}
._38{width:64.601593pt;}
._15{width:69.275990pt;}
._21{width:75.282420pt;}
._23{width:93.691330pt;}
._36{width:94.918068pt;}
._30{width:164.911062pt;}
._2b{width:201.002591pt;}
._28{width:205.171089pt;}
._31{width:282.242445pt;}
._26{width:344.897466pt;}
._25{width:358.329802pt;}
._34{width:369.661628pt;}
._2a{width:384.034803pt;}
._32{width:497.063979pt;}
._29{width:519.141022pt;}
._27{width:547.778851pt;}
._2d{width:563.162912pt;}
._1b{width:594.315968pt;}
._33{width:596.344577pt;}
._2e{width:629.394043pt;}
._2f{width:635.564970pt;}
._1a{width:663.078768pt;}
._2c{width:695.228970pt;}
.fs8{font-size:53.729182pt;}
.fs7{font-size:76.513067pt;}
.fs9{font-size:77.369990pt;}
.fs4{font-size:110.200000pt;}
.fs5{font-size:132.197867pt;}
.fs6{font-size:158.658133pt;}
.fs3{font-size:190.379200pt;}
.fs2{font-size:274.171733pt;}
.fs1{font-size:329.006400pt;}
.fs0{font-size:394.786133pt;}
.y0{bottom:0.000000pt;}
.y57{bottom:13.065594pt;}
.y56{bottom:31.144715pt;}
.y58{bottom:45.246572pt;}
.y59{bottom:96.502278pt;}
.y68{bottom:105.044895pt;}
.y5a{bottom:147.757983pt;}
.y69{bottom:164.843219pt;}
.y8e{bottom:177.205333pt;}
.y60{bottom:181.191726pt;}
.y4f{bottom:189.489333pt;}
.y3a{bottom:191.025333pt;}
.y5b{bottom:199.013689pt;}
.y6a{bottom:224.641542pt;}
.y8d{bottom:227.682667pt;}
.y4e{bottom:229.340000pt;}
.y5c{bottom:250.269395pt;}
.y4d{bottom:269.190667pt;}
.y66{bottom:269.340035pt;}
.y42{bottom:279.609333pt;}
.y6b{bottom:284.439865pt;}
.y65{bottom:298.390032pt;}
.y5d{bottom:301.525100pt;}
.y8c{bottom:302.258667pt;}
.y4c{bottom:309.041333pt;}
.y40{bottom:311.032000pt;}
.y64{bottom:327.440029pt;}
.y8b{bottom:342.109333pt;}
.y6c{bottom:344.238188pt;}
.y4b{bottom:348.892000pt;}
.y3f{bottom:350.882667pt;}
.y5e{bottom:352.780806pt;}
.y63{bottom:356.490026pt;}
.y62{bottom:385.540023pt;}
.y4a{bottom:388.742667pt;}
.y8a{bottom:389.930667pt;}
.y3e{bottom:390.733333pt;}
.y39{bottom:402.678667pt;}
.y5f{bottom:404.036511pt;}
.y3b{bottom:406.066667pt;}
.y61{bottom:413.515432pt;}
.y49{bottom:428.593333pt;}
.y89{bottom:429.781333pt;}
.y3d{bottom:430.584000pt;}
.y48{bottom:468.444000pt;}
.y3c{bottom:470.434667pt;}
.y88{bottom:477.601333pt;}
.y41{bottom:507.920000pt;}
.y47{bottom:508.294667pt;}
.y43{bottom:524.577333pt;}
.y87{bottom:551.658667pt;}
.y46{bottom:565.306667pt;}
.y38{bottom:613.898667pt;}
.y37{bottom:614.373333pt;}
.y45{bottom:622.318667pt;}
.y86{bottom:660.512000pt;}
.y44{bottom:662.168000pt;}
.y85{bottom:700.362667pt;}
.y36{bottom:724.328000pt;}
.y84{bottom:740.213333pt;}
.y83{bottom:780.064000pt;}
.y35{bottom:819.416000pt;}
.y82{bottom:819.914667pt;}
.y34{bottom:859.266667pt;}
.y81{bottom:893.970667pt;}
.y33{bottom:904.428000pt;}
.y32{bottom:934.265333pt;}
.y80{bottom:1009.466667pt;}
.y31{bottom:1013.082667pt;}
.y7f{bottom:1049.317333pt;}
.y30{bottom:1054.270667pt;}
.y2f{bottom:1076.941333pt;}
.y7e{bottom:1089.168000pt;}
.y7d{bottom:1136.989333pt;}
.y2e{bottom:1165.289333pt;}
.y7c{bottom:1176.840000pt;}
.y2d{bottom:1227.448000pt;}
.y7b{bottom:1250.896000pt;}
.y2c{bottom:1336.484000pt;}
.y7a{bottom:1385.653333pt;}
.y2b{bottom:1878.014667pt;}
.y2a{bottom:1917.865333pt;}
.y29{bottom:1957.716000pt;}
.y28{bottom:1997.566667pt;}
.y26{bottom:2045.809333pt;}
.y27{bottom:2068.478667pt;}
.y79{bottom:2082.286667pt;}
.y25{bottom:2090.837333pt;}
.y78{bottom:2122.137333pt;}
.y24{bottom:2139.433333pt;}
.y77{bottom:2161.988000pt;}
.y23{bottom:2179.284000pt;}
.y76{bottom:2201.838667pt;}
.y22{bottom:2241.442667pt;}
.y75{bottom:2284.153333pt;}
.y74{bottom:2324.004000pt;}
.y21{bottom:2336.530667pt;}
.y73{bottom:2364.386667pt;}
.y20{bottom:2376.381333pt;}
.y72{bottom:2404.237333pt;}
.y1f{bottom:2424.718667pt;}
.y71{bottom:2444.088000pt;}
.y1e{bottom:2464.569333pt;}
.y70{bottom:2484.469333pt;}
.y1d{bottom:2512.906667pt;}
.y6f{bottom:2524.320000pt;}
.y1c{bottom:2552.757333pt;}
.y6e{bottom:2564.170667pt;}
.y1b{bottom:2601.096000pt;}
.y6d{bottom:2604.552000pt;}
.y1a{bottom:2640.945333pt;}
.y19{bottom:2715.002667pt;}
.y67{bottom:2735.394667pt;}
.y55{bottom:2791.849333pt;}
.y18{bottom:2824.436000pt;}
.y17{bottom:2864.286667pt;}
.y16{bottom:2904.137333pt;}
.y15{bottom:2943.988000pt;}
.y14{bottom:3018.044000pt;}
.y13{bottom:3135.412000pt;}
.y12{bottom:3168.620000pt;}
.y11{bottom:3201.829333pt;}
.y10{bottom:3235.037333pt;}
.yf{bottom:3268.246667pt;}
.y54{bottom:3288.234667pt;}
.ye{bottom:3301.456000pt;}
.y53{bottom:3328.084000pt;}
.yd{bottom:3334.664000pt;}
.yc{bottom:3367.873333pt;}
.y52{bottom:3367.934667pt;}
.yb{bottom:3401.081333pt;}
.y51{bottom:3407.785333pt;}
.ya{bottom:3434.290667pt;}
.y9{bottom:3467.500000pt;}
.y50{bottom:3481.842667pt;}
.y8{bottom:3494.868000pt;}
.y7{bottom:3667.212000pt;}
.y6{bottom:3738.325333pt;}
.y5{bottom:3813.220000pt;}
.y4{bottom:3891.893333pt;}
.y3{bottom:4031.890667pt;}
.y2{bottom:4109.604000pt;}
.y1{bottom:4180.314667pt;}
.h1e{height:40.296887pt;}
.h1f{height:41.640116pt;}
.h20{height:58.027492pt;}
.h8{height:75.817600pt;}
.h7{height:76.148200pt;}
.ha{height:90.952132pt;}
.hb{height:91.348726pt;}
.h21{height:91.613466pt;}
.hf{height:94.521475pt;}
.h12{height:99.016202pt;}
.hd{height:99.021535pt;}
.h18{height:102.453347pt;}
.hc{height:109.632770pt;}
.h6{height:118.796621pt;}
.h1b{height:126.766333pt;}
.he{height:130.513133pt;}
.h9{height:131.552027pt;}
.h1c{height:133.374333pt;}
.h13{height:133.378333pt;}
.h14{height:183.950808pt;}
.h17{height:185.204141pt;}
.h5{height:188.630153pt;}
.h4{height:189.452668pt;}
.h11{height:193.130680pt;}
.h19{height:216.179667pt;}
.h3{height:224.711371pt;}
.h2{height:272.797218pt;}
.h10{height:274.633475pt;}
.h16{height:278.014808pt;}
.h1a{height:299.285333pt;}
.h15{height:313.490333pt;}
.h1d{height:444.579496pt;}
.h1{height:4490.666667pt;}
.h0{height:4490.834667pt;}
.w2{width:599.221371pt;}
.w0{width:3173.292000pt;}
.w1{width:3173.333333pt;}
.x0{left:0.000000pt;}
.x25{left:19.781742pt;}
.x23{left:28.532882pt;}
.x24{left:38.980255pt;}
.x21{left:51.776206pt;}
.x4{left:188.976000pt;}
.x5{left:190.756000pt;}
.x19{left:202.234667pt;}
.x18{left:204.848000pt;}
.x1{left:208.901333pt;}
.xb{left:213.713333pt;}
.x3{left:222.185333pt;}
.x1a{left:231.586667pt;}
.x22{left:235.733848pt;}
.x14{left:239.030667pt;}
.x26{left:413.689498pt;}
.x1b{left:417.536000pt;}
.x15{left:427.966667pt;}
.x16{left:443.570667pt;}
.xc{left:462.300000pt;}
.x13{left:466.754667pt;}
.xd{left:502.832000pt;}
.x7{left:517.336000pt;}
.x8{left:520.681333pt;}
.x11{left:601.645333pt;}
.x6{left:618.198667pt;}
.x1d{left:636.066667pt;}
.x1c{left:668.533333pt;}
.xe{left:716.009333pt;}
.x17{left:720.608000pt;}
.x12{left:756.536000pt;}
.x2{left:803.346667pt;}
.x9{left:867.802667pt;}
.x1e{left:907.638667pt;}
.xf{left:948.434667pt;}
.xa{left:1015.993333pt;}
.x1f{left:1122.040000pt;}
.x10{left:1191.172000pt;}
.x20{left:1653.064000pt;}
.x2d{left:1654.844000pt;}
.x2b{left:1661.033333pt;}
.x2e{left:1686.272000pt;}
.x30{left:1698.240000pt;}
.x2a{left:1736.273333pt;}
.x2c{left:1739.776000pt;}
.x27{left:1756.761333pt;}
.x28{left:2385.106667pt;}
.x29{left:2488.804000pt;}
.x2f{left:2778.672000pt;}
}




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