
    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_994a3a4878b3287f8260dcab.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.745000;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_d1004e1c780144f54cad14d2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.738000;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_d6e837e2e54e4f605e39dba8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a61f8a2c868c1ecf0f1844e4.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b0824acc4d386438b31a001c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910000;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_482c026f7705737a6cc1d07e.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d447cb435a82185bc881d5ef.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.712000;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_2157d237057cc2792114f74d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_689179e5379129481aa2c1b9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.851000;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_f76773c172ff1950634cfa03.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_842dff7715458fbcc9e426bc.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.905000;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_3349f62083708fef1b1fe555.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.873000;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_c44e395b40d4924b163f6fdd.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.700000;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_4d7aef8537ccef9e2c58f6f1.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.899000;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_00704d9afc418586a3b8547f.woff2')format("woff");}.fff{font-family:fff;line-height:0.910000;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_4956eb9bee987efabefc8838.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.696000;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_3f695e7e3752c3906a91690a.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.932000;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_224ac8fa0bb4c0ef87c80f9d.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.704000;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:ff13;src:url('chunks/assets/font_f5c7bf427a0ac8153422047f.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_5bf23d697e5613bf6e35483f.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_618809d3abc7551e5b71b3ba.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.918000;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:ff16;src:url('chunks/assets/font_407df424714b1b30e85abfc7.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_5274ecf1ab407254bcd1b170.woff2')format("woff");}.ff17{font-family:ff17;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;}
.m0{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);}
.m3{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);}
.m2{transform:matrix(0.241482,0.000000,-0.064703,0.241482,0,0);-ms-transform:matrix(0.241482,0.000000,-0.064703,0.241482,0,0);-webkit-transform:matrix(0.241482,0.000000,-0.064703,0.241482,0,0);}
.m1{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);}
.m4{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);}
.v9{vertical-align:-22.854034px;}
.v3{vertical-align:-8.969971px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.626022px;}
.v2{vertical-align:8.882509px;}
.v8{vertical-align:21.689941px;}
.v5{vertical-align:22.854012px;}
.v6{vertical-align:33.251999px;}
.v7{vertical-align:43.056152px;}
.v1{vertical-align:74.796021px;}
.ls16{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000008px;}
.ls6{letter-spacing:0.000057px;}
.lse{letter-spacing:0.000140px;}
.lsb{letter-spacing:0.010877px;}
.ls24{letter-spacing:0.011274px;}
.ls2c{letter-spacing:0.011366px;}
.ls28{letter-spacing:0.017225px;}
.ls22{letter-spacing:0.017313px;}
.ls27{letter-spacing:0.017317px;}
.ls26{letter-spacing:0.017404px;}
.ls29{letter-spacing:0.017496px;}
.ls18{letter-spacing:0.018938px;}
.ls2a{letter-spacing:0.023355px;}
.ls2b{letter-spacing:0.023447px;}
.ls1b{letter-spacing:0.025785px;}
.ls1d{letter-spacing:0.032285px;}
.ls3{letter-spacing:0.033883px;}
.ls1e{letter-spacing:0.044149px;}
.ls14{letter-spacing:2.992124px;}
.ls1f{letter-spacing:3.005411px;}
.ls25{letter-spacing:3.005503px;}
.ls20{letter-spacing:3.005594px;}
.ls23{letter-spacing:3.011408px;}
.ls21{letter-spacing:3.011454px;}
.ls2d{letter-spacing:3.022221px;}
.lsf{letter-spacing:3.455459px;}
.lsa{letter-spacing:3.455550px;}
.ls9{letter-spacing:3.455642px;}
.ls11{letter-spacing:3.461592px;}
.ls8{letter-spacing:8.320870px;}
.ls10{letter-spacing:8.326821px;}
.ls19{letter-spacing:16.646907px;}
.ls13{letter-spacing:18.471058px;}
.ls1a{letter-spacing:19.970235px;}
.ls1c{letter-spacing:21.432473px;}
.ls17{letter-spacing:21.438332px;}
.ls2{letter-spacing:24.597449px;}
.ls1{letter-spacing:24.603308px;}
.ls0{letter-spacing:24.603491px;}
.lsd{letter-spacing:27.391903px;}
.lsc{letter-spacing:28.238114px;}
.ls5{letter-spacing:32.997168px;}
.ls4{letter-spacing:33.061871px;}
.ls12{letter-spacing:33.819464px;}
.ls2e{letter-spacing:35.716138px;}
.ls47{letter-spacing:35.717161px;}
.ls33{letter-spacing:35.719155px;}
.ls31{letter-spacing:35.721118px;}
.ls42{letter-spacing:35.727056px;}
.ls32{letter-spacing:35.732280px;}
.ls3d{letter-spacing:35.734243px;}
.ls37{letter-spacing:35.735792px;}
.ls3a{letter-spacing:35.735875px;}
.ls40{letter-spacing:35.736481px;}
.ls3c{letter-spacing:35.737362px;}
.ls36{letter-spacing:35.743442px;}
.ls30{letter-spacing:35.743501px;}
.ls3b{letter-spacing:35.744882px;}
.ls41{letter-spacing:35.745983px;}
.ls2f{letter-spacing:35.748582px;}
.ls45{letter-spacing:35.751676px;}
.ls39{letter-spacing:36.496703px;}
.ls44{letter-spacing:36.690036px;}
.ls3f{letter-spacing:36.911811px;}
.ls43{letter-spacing:37.001999px;}
.ls46{letter-spacing:37.009096px;}
.ls35{letter-spacing:37.029599px;}
.ls3e{letter-spacing:37.030622px;}
.ls38{letter-spacing:37.814692px;}
.ls34{letter-spacing:39.848621px;}
.ls15{letter-spacing:778.845404px;}
.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;}
}
.ws20{word-spacing:-17.514231px;}
.wsb{word-spacing:-17.322772px;}
.wsf{word-spacing:-16.878615px;}
.ws12{word-spacing:-16.557841px;}
.ws37{word-spacing:-14.095181px;}
.wsd{word-spacing:-9.327658px;}
.ws5{word-spacing:-7.437053px;}
.ws22{word-spacing:-6.334684px;}
.ws11{word-spacing:-0.298878px;}
.ws23{word-spacing:-0.059776px;}
.ws1{word-spacing:-0.053798px;}
.ws29{word-spacing:-0.041843px;}
.ws25{word-spacing:-0.035866px;}
.ws1a{word-spacing:0.000000px;}
.ws1d{word-spacing:1.440001px;}
.ws1e{word-spacing:1.505456px;}
.ws2a{word-spacing:2.749678px;}
.ws2f{word-spacing:2.988780px;}
.ws2e{word-spacing:3.048556px;}
.ws30{word-spacing:3.108331px;}
.ws31{word-spacing:3.168107px;}
.ws33{word-spacing:3.287658px;}
.ws17{word-spacing:3.347434px;}
.ws2b{word-spacing:3.407209px;}
.wsa{word-spacing:3.665457px;}
.ws9{word-spacing:3.861821px;}
.ws2{word-spacing:5.648832px;}
.ws36{word-spacing:5.702630px;}
.ws2d{word-spacing:7.647000px;}
.ws2c{word-spacing:7.652860px;}
.ws32{word-spacing:7.653043px;}
.ws14{word-spacing:8.667462px;}
.ws13{word-spacing:8.787013px;}
.ws6{word-spacing:9.554569px;}
.ws16{word-spacing:10.938935px;}
.ws15{word-spacing:10.998710px;}
.ws4{word-spacing:11.465457px;}
.ws3{word-spacing:11.568749px;}
.ws1c{word-spacing:12.763646px;}
.ws19{word-spacing:18.399053px;}
.ws10{word-spacing:18.649987px;}
.ws27{word-spacing:19.916498px;}
.ws26{word-spacing:20.138828px;}
.ws18{word-spacing:20.281997px;}
.ws1f{word-spacing:21.280113px;}
.ws21{word-spacing:21.339889px;}
.ws0{word-spacing:22.535401px;}
.ws8{word-spacing:24.676383px;}
.ws24{word-spacing:26.059025px;}
.ws28{word-spacing:26.827469px;}
.ws7{word-spacing:33.088202px;}
.ws1b{word-spacing:35.476392px;}
.ws34{word-spacing:35.684390px;}
.ws35{word-spacing:35.690387px;}
.wsc{word-spacing:360.667286px;}
.wse{word-spacing:1048.250626px;}
._13{margin-left:-344.750515px;}
._12{margin-left:-334.582153px;}
._e{margin-left:-245.745594px;}
._19{margin-left:-189.878165px;}
._18{margin-left:-188.209766px;}
._16{margin-left:-94.770952px;}
._15{margin-left:-89.723318px;}
._1c{margin-left:-87.058655px;}
._1b{margin-left:-83.504550px;}
._14{margin-left:-79.645235px;}
._11{margin-left:-78.129172px;}
._1a{margin-left:-58.018569px;}
._d{margin-left:-55.055239px;}
._17{margin-left:-39.975379px;}
._29{margin-left:-32.079182px;}
._2c{margin-left:-31.025387px;}
._27{margin-left:-29.756980px;}
._2a{margin-left:-28.291085px;}
._2b{margin-left:-26.071828px;}
._28{margin-left:-22.505933px;}
._5{margin-left:-8.768083px;}
._a{margin-left:-6.545460px;}
._9{margin-left:-5.498186px;}
._6{margin-left:-4.385458px;}
._3{margin-left:-3.305357px;}
._0{margin-left:-1.315063px;}
._c{width:1.832729px;}
._4{width:3.202065px;}
._26{width:4.925241px;}
._8{width:11.421342px;}
._1e{width:17.592476px;}
._25{width:20.936452px;}
._24{width:22.546381px;}
._1d{width:25.518554px;}
._1f{width:27.141030px;}
._7{width:29.336957px;}
._b{width:30.567297px;}
._23{width:32.792923px;}
._2d{width:40.238432px;}
._20{width:41.779193px;}
._21{width:49.314869px;}
._2{width:50.509986px;}
._22{width:66.026404px;}
._1{width:101.727393px;}
._10{width:387.320619px;}
._f{width:403.311475px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(191,191,191);}
.fse{font-size:35.865601px;}
.fsa{font-size:37.310631px;}
.fsd{font-size:41.842801px;}
.fs8{font-size:46.194061px;}
.fs2{font-size:53.798401px;}
.fs9{font-size:56.854403px;}
.fs1{font-size:59.775599px;}
.fs5{font-size:65.454597px;}
.fsb{font-size:67.514460px;}
.fs6{font-size:69.291089px;}
.fsc{font-size:69.895874px;}
.fsf{font-size:71.731201px;}
.fs7{font-size:71.735263px;}
.fs4{font-size:86.077200px;}
.fs3{font-size:103.292404px;}
.fs0{font-size:179.976600px;}
.y0{bottom:0.000000px;}
.y10{bottom:0.518032px;}
.yf{bottom:8.513076px;}
.y11{bottom:25.391902px;}
.y16{bottom:33.831090px;}
.y15{bottom:39.605503px;}
.y1d{bottom:56.039961px;}
.y1c{bottom:77.359941px;}
.y24{bottom:84.419998px;}
.y2e{bottom:92.732998px;}
.y1b{bottom:98.680624px;}
.y23{bottom:102.502499px;}
.y14{bottom:110.672727px;}
.y13{bottom:120.445316px;}
.y1a{bottom:121.777781px;}
.y17{bottom:123.913099px;}
.y5c{bottom:181.140003px;}
.y22{bottom:184.876499px;}
.y99{bottom:186.853500px;}
.y8b{bottom:192.976501px;}
.y5b{bottom:200.866493px;}
.ycd{bottom:203.622002px;}
.y21{bottom:204.602989px;}
.y98{bottom:204.935989px;}
.y8a{bottom:212.703003px;}
.y19{bottom:213.722330px;}
.y18{bottom:219.940590px;}
.y5a{bottom:220.592995px;}
.ycc{bottom:221.704491px;}
.y97{bottom:223.018501px;}
.y20{bottom:224.329491px;}
.y12{bottom:231.488825px;}
.y89{bottom:232.427994px;}
.ycb{bottom:239.785492px;}
.y59{bottom:240.319496px;}
.y96{bottom:241.100990px;}
.y1f{bottom:244.055992px;}
.y88{bottom:252.154495px;}
.yca{bottom:257.868004px;}
.y95{bottom:259.183502px;}
.y58{bottom:260.044510px;}
.y1e{bottom:263.781006px;}
.y87{bottom:271.880997px;}
.yc9{bottom:275.950493px;}
.y94{bottom:277.265991px;}
.y57{bottom:279.771011px;}
.y86{bottom:291.607498px;}
.yc8{bottom:294.033005px;}
.y93{bottom:295.348503px;}
.ye{bottom:298.452003px;}
.y56{bottom:299.497490px;}
.y85{bottom:311.332489px;}
.yc7{bottom:312.115494px;}
.y92{bottom:313.429504px;}
.y55{bottom:319.223991px;}
.yc6{bottom:330.198006px;}
.y84{bottom:331.058990px;}
.y91{bottom:331.511993px;}
.y54{bottom:338.949005px;}
.yc5{bottom:348.280495px;}
.y90{bottom:349.594505px;}
.y83{bottom:350.785492px;}
.y53{bottom:358.675507px;}
.yc4{bottom:366.361496px;}
.yd5{bottom:366.363007px;}
.y8f{bottom:367.676994px;}
.y82{bottom:370.511993px;}
.y52{bottom:378.402008px;}
.yc3{bottom:384.443985px;}
.y8e{bottom:385.759506px;}
.y81{bottom:390.236984px;}
.y51{bottom:398.128510px;}
.yc2{bottom:402.526520px;}
.y80{bottom:409.963486px;}
.y50{bottom:417.855011px;}
.yc1{bottom:420.609009px;}
.y7f{bottom:429.689987px;}
.y4f{bottom:437.580002px;}
.yc0{bottom:438.691498px;}
.y7e{bottom:449.416489px;}
.ybf{bottom:456.773987px;}
.y4e{bottom:457.306503px;}
.y8d{bottom:469.141479px;}
.y7d{bottom:469.142990px;}
.ybe{bottom:474.856522px;}
.y4d{bottom:477.033005px;}
.ybd{bottom:487.225479px;}
.y7c{bottom:488.867981px;}
.yd4{bottom:492.939011px;}
.y4c{bottom:496.759506px;}
.y7b{bottom:508.594482px;}
.ybc{bottom:511.019989px;}
.y4b{bottom:516.484497px;}
.y7a{bottom:528.320984px;}
.ybb{bottom:529.102478px;}
.y4a{bottom:536.210999px;}
.yba{bottom:547.185013px;}
.y79{bottom:548.047485px;}
.y49{bottom:555.937500px;}
.yb9{bottom:565.267502px;}
.y78{bottom:567.772522px;}
.yd{bottom:575.472015px;}
.y48{bottom:575.664001px;}
.yb8{bottom:583.349991px;}
.y77{bottom:587.498978px;}
.y47{bottom:595.388992px;}
.yb7{bottom:595.718994px;}
.yc{bottom:597.829514px;}
.y76{bottom:607.225479px;}
.y46{bottom:615.115494px;}
.yb6{bottom:619.515015px;}
.y75{bottom:626.951981px;}
.y45{bottom:634.841995px;}
.yb5{bottom:637.595993px;}
.yd3{bottom:637.597504px;}
.yb{bottom:643.198517px;}
.y74{bottom:646.677017px;}
.y44{bottom:654.568497px;}
.yb4{bottom:655.678482px;}
.y73{bottom:666.403519px;}
.yb3{bottom:673.761017px;}
.y43{bottom:674.293488px;}
.ya{bottom:683.488495px;}
.y72{bottom:686.130020px;}
.yb2{bottom:691.843506px;}
.y42{bottom:694.019989px;}
.y71{bottom:705.856522px;}
.yb1{bottom:709.925995px;}
.y41{bottom:713.746490px;}
.y70{bottom:725.581512px;}
.yb0{bottom:728.008484px;}
.y9{bottom:729.982498px;}
.y40{bottom:733.472992px;}
.y6f{bottom:745.308014px;}
.yaf{bottom:746.091019px;}
.y3f{bottom:753.199493px;}
.yae{bottom:764.171997px;}
.yd2{bottom:764.173508px;}
.y6e{bottom:765.034515px;}
.y8{bottom:768.549042px;}
.y3e{bottom:772.924530px;}
.yad{bottom:776.540955px;}
.yd1{bottom:782.254486px;}
.y6d{bottom:784.761017px;}
.y3d{bottom:792.651031px;}
.yac{bottom:800.336975px;}
.y8c{bottom:804.485962px;}
.y6c{bottom:804.487518px;}
.y3c{bottom:812.377533px;}
.yab{bottom:818.419464px;}
.y6b{bottom:824.212463px;}
.yaa{bottom:830.788513px;}
.y3b{bottom:832.104034px;}
.y6a{bottom:843.938965px;}
.y3a{bottom:851.828979px;}
.ya9{bottom:854.584534px;}
.y69{bottom:863.665466px;}
.y39{bottom:871.555481px;}
.ya8{bottom:872.667023px;}
.y68{bottom:883.391968px;}
.yd0{bottom:885.035980px;}
.ya7{bottom:890.749512px;}
.y38{bottom:891.281982px;}
.y67{bottom:903.117004px;}
.y2d{bottom:905.411957px;}
.ya6{bottom:908.830536px;}
.y37{bottom:911.008484px;}
.y66{bottom:922.843506px;}
.y2c{bottom:925.138458px;}
.ya5{bottom:926.913025px;}
.y1{bottom:929.879100px;}
.y36{bottom:930.733520px;}
.y7{bottom:936.301483px;}
.y65{bottom:942.570007px;}
.y2b{bottom:944.864960px;}
.ya4{bottom:944.995514px;}
.y35{bottom:950.460022px;}
.y64{bottom:962.296509px;}
.ya3{bottom:963.078003px;}
.y34{bottom:970.186523px;}
.y2a{bottom:972.062988px;}
.y6{bottom:972.464996px;}
.ya2{bottom:981.160492px;}
.y63{bottom:982.021545px;}
.y33{bottom:989.913025px;}
.y29{bottom:991.789490px;}
.ya1{bottom:999.242981px;}
.y62{bottom:1001.747955px;}
.y32{bottom:1009.637970px;}
.ycf{bottom:1011.612030px;}
.ya0{bottom:1017.325470px;}
.y61{bottom:1021.474457px;}
.y28{bottom:1027.718994px;}
.y31{bottom:1029.364471px;}
.y9f{bottom:1035.406494px;}
.y60{bottom:1041.200958px;}
.y30{bottom:1049.090973px;}
.y9e{bottom:1053.488983px;}
.y5{bottom:1056.904541px;}
.y5f{bottom:1060.925995px;}
.y2f{bottom:1068.817474px;}
.y9d{bottom:1071.571472px;}
.y4{bottom:1074.987030px;}
.y27{bottom:1075.391968px;}
.y5e{bottom:1080.652496px;}
.yce{bottom:1083.940521px;}
.y9c{bottom:1089.653961px;}
.y3{bottom:1093.069519px;}
.y26{bottom:1097.749512px;}
.y5d{bottom:1100.378998px;}
.y9b{bottom:1107.736542px;}
.y25{bottom:1120.105499px;}
.y2{bottom:1121.014526px;}
.y9a{bottom:1125.819031px;}
.h29{height:24.496205px;}
.h2c{height:25.249383px;}
.h10{height:25.669714px;}
.hd{height:31.781514px;}
.h16{height:38.519655px;}
.hf{height:39.115829px;}
.h15{height:40.145677px;}
.h4{height:40.348801px;}
.h3{height:42.799329px;}
.h14{height:44.831699px;}
.h19{height:45.447176px;}
.he{height:46.217157px;}
.h12{height:46.449948px;}
.h8{height:46.865492px;}
.h2a{height:47.349965px;}
.h2b{height:47.350331px;}
.hb{height:47.672269px;}
.h11{height:47.998338px;}
.h13{height:48.018465px;}
.h9{height:49.090948px;}
.hc{height:49.282126px;}
.h1a{height:49.975675px;}
.h24{height:49.975766px;}
.h27{height:49.975858px;}
.h25{height:49.976041px;}
.h1e{height:49.981534px;}
.h22{height:49.981717px;}
.h1b{height:49.981900px;}
.h18{height:50.211841px;}
.h1d{height:51.147273px;}
.h23{height:51.147365px;}
.h20{height:51.147456px;}
.h26{height:51.147640px;}
.h1f{height:51.153133px;}
.h21{height:51.153316px;}
.h28{height:51.153407px;}
.h1c{height:51.153499px;}
.h7{height:61.631275px;}
.h5{height:73.957361px;}
.h17{height:78.083698px;}
.h6{height:81.096857px;}
.h2{height:116.804813px;}
.ha{height:243.951744px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:385.745879px;}
.w2{width:892.383975px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:12.487064px;}
.xf{left:20.482391px;}
.x11{left:24.479822px;}
.x13{left:29.365961px;}
.x12{left:33.998410px;}
.x10{left:44.023649px;}
.xd{left:50.241850px;}
.x16{left:115.535811px;}
.x5{left:125.006996px;}
.x19{left:126.505497px;}
.x6{left:136.912502px;}
.x14{left:145.739637px;}
.x1d{left:147.180004px;}
.x1e{left:148.736996px;}
.x15{left:150.181214px;}
.x17{left:151.513754px;}
.x1c{left:152.992504px;}
.x1b{left:165.916500px;}
.x18{left:219.415489px;}
.x7{left:253.585510px;}
.xc{left:275.438042px;}
.xb{left:285.209857px;}
.xa{left:292.317221px;}
.x9{left:297.647383px;}
.x8{left:372.712327px;}
.x1a{left:428.730011px;}
.x2{left:494.169022px;}
.x3{left:606.822006px;}
.x4{left:615.261017px;}
.x1{left:824.892750px;}
@media print{
.v9{vertical-align:-20.314697pt;}
.v3{vertical-align:-7.973307pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.445353pt;}
.v2{vertical-align:7.895564pt;}
.v8{vertical-align:19.279948pt;}
.v5{vertical-align:20.314677pt;}
.v6{vertical-align:29.557332pt;}
.v7{vertical-align:38.272135pt;}
.v1{vertical-align:66.485352pt;}
.ls16{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000007pt;}
.ls6{letter-spacing:0.000051pt;}
.lse{letter-spacing:0.000125pt;}
.lsb{letter-spacing:0.009668pt;}
.ls24{letter-spacing:0.010022pt;}
.ls2c{letter-spacing:0.010103pt;}
.ls28{letter-spacing:0.015311pt;}
.ls22{letter-spacing:0.015389pt;}
.ls27{letter-spacing:0.015393pt;}
.ls26{letter-spacing:0.015471pt;}
.ls29{letter-spacing:0.015552pt;}
.ls18{letter-spacing:0.016834pt;}
.ls2a{letter-spacing:0.020760pt;}
.ls2b{letter-spacing:0.020842pt;}
.ls1b{letter-spacing:0.022920pt;}
.ls1d{letter-spacing:0.028698pt;}
.ls3{letter-spacing:0.030119pt;}
.ls1e{letter-spacing:0.039244pt;}
.ls14{letter-spacing:2.659666pt;}
.ls1f{letter-spacing:2.671476pt;}
.ls25{letter-spacing:2.671558pt;}
.ls20{letter-spacing:2.671639pt;}
.ls23{letter-spacing:2.676807pt;}
.ls21{letter-spacing:2.676848pt;}
.ls2d{letter-spacing:2.686419pt;}
.lsf{letter-spacing:3.071519pt;}
.lsa{letter-spacing:3.071600pt;}
.ls9{letter-spacing:3.071681pt;}
.ls11{letter-spacing:3.076971pt;}
.ls8{letter-spacing:7.396329pt;}
.ls10{letter-spacing:7.401619pt;}
.ls19{letter-spacing:14.797251pt;}
.ls13{letter-spacing:16.418718pt;}
.ls1a{letter-spacing:17.751320pt;}
.ls1c{letter-spacing:19.051087pt;}
.ls17{letter-spacing:19.056295pt;}
.ls2{letter-spacing:21.864399pt;}
.ls1{letter-spacing:21.869607pt;}
.ls0{letter-spacing:21.869770pt;}
.lsd{letter-spacing:24.348358pt;}
.lsc{letter-spacing:25.100545pt;}
.ls5{letter-spacing:29.330816pt;}
.ls4{letter-spacing:29.388330pt;}
.ls12{letter-spacing:30.061746pt;}
.ls2e{letter-spacing:31.747678pt;}
.ls47{letter-spacing:31.748588pt;}
.ls33{letter-spacing:31.750360pt;}
.ls31{letter-spacing:31.752105pt;}
.ls42{letter-spacing:31.757383pt;}
.ls32{letter-spacing:31.762027pt;}
.ls3d{letter-spacing:31.763772pt;}
.ls37{letter-spacing:31.765148pt;}
.ls3a{letter-spacing:31.765222pt;}
.ls40{letter-spacing:31.765761pt;}
.ls3c{letter-spacing:31.766544pt;}
.ls36{letter-spacing:31.771948pt;}
.ls30{letter-spacing:31.772001pt;}
.ls3b{letter-spacing:31.773229pt;}
.ls41{letter-spacing:31.774207pt;}
.ls2f{letter-spacing:31.776518pt;}
.ls45{letter-spacing:31.779268pt;}
.ls39{letter-spacing:32.441514pt;}
.ls44{letter-spacing:32.613366pt;}
.ls3f{letter-spacing:32.810499pt;}
.ls43{letter-spacing:32.890666pt;}
.ls46{letter-spacing:32.896974pt;}
.ls35{letter-spacing:32.915199pt;}
.ls3e{letter-spacing:32.916108pt;}
.ls38{letter-spacing:33.613059pt;}
.ls34{letter-spacing:35.420996pt;}
.ls15{letter-spacing:692.307026pt;}
.ws20{word-spacing:-15.568205pt;}
.wsb{word-spacing:-15.398020pt;}
.wsf{word-spacing:-15.003213pt;}
.ws12{word-spacing:-14.718081pt;}
.ws37{word-spacing:-12.529050pt;}
.wsd{word-spacing:-8.291251pt;}
.ws5{word-spacing:-6.610714pt;}
.ws22{word-spacing:-5.630830pt;}
.ws11{word-spacing:-0.265669pt;}
.ws23{word-spacing:-0.053134pt;}
.ws1{word-spacing:-0.047821pt;}
.ws29{word-spacing:-0.037194pt;}
.ws25{word-spacing:-0.031881pt;}
.ws1a{word-spacing:0.000000pt;}
.ws1d{word-spacing:1.280001pt;}
.ws1e{word-spacing:1.338183pt;}
.ws2a{word-spacing:2.444158pt;}
.ws2f{word-spacing:2.656693pt;}
.ws2e{word-spacing:2.709827pt;}
.ws30{word-spacing:2.762961pt;}
.ws31{word-spacing:2.816095pt;}
.ws33{word-spacing:2.922363pt;}
.ws17{word-spacing:2.975496pt;}
.ws2b{word-spacing:3.028630pt;}
.wsa{word-spacing:3.258184pt;}
.ws9{word-spacing:3.432730pt;}
.ws2{word-spacing:5.021184pt;}
.ws36{word-spacing:5.069005pt;}
.ws2d{word-spacing:6.797334pt;}
.ws2c{word-spacing:6.802542pt;}
.ws32{word-spacing:6.802705pt;}
.ws14{word-spacing:7.704410pt;}
.ws13{word-spacing:7.810678pt;}
.ws6{word-spacing:8.492950pt;}
.ws16{word-spacing:9.723497pt;}
.ws15{word-spacing:9.776631pt;}
.ws4{word-spacing:10.191517pt;}
.ws3{word-spacing:10.283333pt;}
.ws1c{word-spacing:11.345464pt;}
.ws19{word-spacing:16.354714pt;}
.ws10{word-spacing:16.577766pt;}
.ws27{word-spacing:17.703554pt;}
.ws26{word-spacing:17.901180pt;}
.ws18{word-spacing:18.028442pt;}
.ws1f{word-spacing:18.915656pt;}
.ws21{word-spacing:18.968790pt;}
.ws0{word-spacing:20.031467pt;}
.ws8{word-spacing:21.934563pt;}
.ws24{word-spacing:23.163577pt;}
.ws28{word-spacing:23.846639pt;}
.ws7{word-spacing:29.411735pt;}
.ws1b{word-spacing:31.534570pt;}
.ws34{word-spacing:31.719458pt;}
.ws35{word-spacing:31.724788pt;}
.wsc{word-spacing:320.593143pt;}
.wse{word-spacing:931.778334pt;}
._13{margin-left:-306.444902pt;}
._12{margin-left:-297.406359pt;}
._e{margin-left:-218.440528pt;}
._19{margin-left:-168.780591pt;}
._18{margin-left:-167.297570pt;}
._16{margin-left:-84.240846pt;}
._15{margin-left:-79.754060pt;}
._1c{margin-left:-77.385471pt;}
._1b{margin-left:-74.226267pt;}
._14{margin-left:-70.795765pt;}
._11{margin-left:-69.448152pt;}
._1a{margin-left:-51.572061pt;}
._d{margin-left:-48.937990pt;}
._17{margin-left:-35.533670pt;}
._29{margin-left:-28.514828pt;}
._2c{margin-left:-27.578122pt;}
._27{margin-left:-26.450649pt;}
._2a{margin-left:-25.147631pt;}
._2b{margin-left:-23.174958pt;}
._28{margin-left:-20.005274pt;}
._5{margin-left:-7.793852pt;}
._a{margin-left:-5.818186pt;}
._9{margin-left:-4.887277pt;}
._6{margin-left:-3.898185pt;}
._3{margin-left:-2.938095pt;}
._0{margin-left:-1.168945pt;}
._c{width:1.629092pt;}
._4{width:2.846280pt;}
._26{width:4.377992pt;}
._8{width:10.152304pt;}
._1e{width:15.637756pt;}
._25{width:18.610180pt;}
._24{width:20.041228pt;}
._1d{width:22.683159pt;}
._1f{width:24.125360pt;}
._7{width:26.077295pt;}
._b{width:27.170931pt;}
._23{width:29.149265pt;}
._2d{width:35.767495pt;}
._20{width:37.137061pt;}
._21{width:43.835439pt;}
._2{width:44.897765pt;}
._22{width:58.690137pt;}
._1{width:90.424350pt;}
._10{width:344.284994pt;}
._f{width:358.499089pt;}
.fse{font-size:31.880534pt;}
.fsa{font-size:33.165006pt;}
.fsd{font-size:37.193601pt;}
.fs8{font-size:41.061388pt;}
.fs2{font-size:47.820801pt;}
.fs9{font-size:50.537247pt;}
.fs1{font-size:53.133865pt;}
.fs5{font-size:58.181864pt;}
.fsb{font-size:60.012853pt;}
.fs6{font-size:61.592079pt;}
.fsc{font-size:62.129666pt;}
.fsf{font-size:63.761068pt;}
.fs7{font-size:63.764679pt;}
.fs4{font-size:76.513067pt;}
.fs3{font-size:91.815470pt;}
.fs0{font-size:159.979200pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:0.460473pt;}
.yf{bottom:7.567179pt;}
.y11{bottom:22.570579pt;}
.y16{bottom:30.072080pt;}
.y15{bottom:35.204891pt;}
.y1d{bottom:49.813299pt;}
.y1c{bottom:68.764392pt;}
.y24{bottom:75.039998pt;}
.y2e{bottom:82.429331pt;}
.y1b{bottom:87.716110pt;}
.y23{bottom:91.113332pt;}
.y14{bottom:98.375757pt;}
.y13{bottom:107.062503pt;}
.y1a{bottom:108.246916pt;}
.y17{bottom:110.144977pt;}
.y5c{bottom:161.013336pt;}
.y22{bottom:164.334666pt;}
.y99{bottom:166.092000pt;}
.y8b{bottom:171.534668pt;}
.y5b{bottom:178.547994pt;}
.ycd{bottom:180.997335pt;}
.y21{bottom:181.869324pt;}
.y98{bottom:182.165324pt;}
.y8a{bottom:189.069336pt;}
.y19{bottom:189.975404pt;}
.y18{bottom:195.502747pt;}
.y5a{bottom:196.082662pt;}
.ycc{bottom:197.070658pt;}
.y97{bottom:198.238668pt;}
.y20{bottom:199.403992pt;}
.y12{bottom:205.767844pt;}
.y89{bottom:206.602661pt;}
.ycb{bottom:213.142659pt;}
.y59{bottom:213.617330pt;}
.y96{bottom:214.311991pt;}
.y1f{bottom:216.938660pt;}
.y88{bottom:224.137329pt;}
.yca{bottom:229.216003pt;}
.y95{bottom:230.385335pt;}
.y58{bottom:231.150675pt;}
.y1e{bottom:234.472005pt;}
.y87{bottom:241.671997pt;}
.yc9{bottom:245.289327pt;}
.y94{bottom:246.458659pt;}
.y57{bottom:248.685343pt;}
.y86{bottom:259.206665pt;}
.yc8{bottom:261.362671pt;}
.y93{bottom:262.532003pt;}
.ye{bottom:265.290670pt;}
.y56{bottom:266.219991pt;}
.y85{bottom:276.739990pt;}
.yc7{bottom:277.435994pt;}
.y92{bottom:278.604004pt;}
.y55{bottom:283.754659pt;}
.yc6{bottom:293.509338pt;}
.y84{bottom:294.274658pt;}
.y91{bottom:294.677327pt;}
.y54{bottom:301.288005pt;}
.yc5{bottom:309.582662pt;}
.y90{bottom:310.750671pt;}
.y83{bottom:311.809326pt;}
.y53{bottom:318.822673pt;}
.yc4{bottom:325.654663pt;}
.yd5{bottom:325.656006pt;}
.y8f{bottom:326.823995pt;}
.y82{bottom:329.343994pt;}
.y52{bottom:336.357340pt;}
.yc3{bottom:341.727987pt;}
.y8e{bottom:342.897339pt;}
.y81{bottom:346.877319pt;}
.y51{bottom:353.892008pt;}
.yc2{bottom:357.801351pt;}
.y80{bottom:364.411987pt;}
.y50{bottom:371.426676pt;}
.yc1{bottom:373.874674pt;}
.y7f{bottom:381.946655pt;}
.y4f{bottom:388.960002pt;}
.yc0{bottom:389.947998pt;}
.y7e{bottom:399.481323pt;}
.ybf{bottom:406.021322pt;}
.y4e{bottom:406.494670pt;}
.y8d{bottom:417.014648pt;}
.y7d{bottom:417.015991pt;}
.ybe{bottom:422.094686pt;}
.y4d{bottom:424.029338pt;}
.ybd{bottom:433.089315pt;}
.y7c{bottom:434.549316pt;}
.yd4{bottom:438.168009pt;}
.y4c{bottom:441.564006pt;}
.y7b{bottom:452.083984pt;}
.ybc{bottom:454.239990pt;}
.y4b{bottom:459.097331pt;}
.y7a{bottom:469.618652pt;}
.ybb{bottom:470.313314pt;}
.y4a{bottom:476.631999pt;}
.yba{bottom:486.386678pt;}
.y79{bottom:487.153320pt;}
.y49{bottom:494.166667pt;}
.yb9{bottom:502.460002pt;}
.y78{bottom:504.686686pt;}
.yd{bottom:511.530680pt;}
.y48{bottom:511.701335pt;}
.yb8{bottom:518.533325pt;}
.y77{bottom:522.221313pt;}
.y47{bottom:529.234660pt;}
.yb7{bottom:529.527995pt;}
.yc{bottom:531.404012pt;}
.y76{bottom:539.755981pt;}
.y46{bottom:546.769328pt;}
.yb6{bottom:550.680013pt;}
.y75{bottom:557.290649pt;}
.y45{bottom:564.303996pt;}
.yb5{bottom:566.751994pt;}
.yd3{bottom:566.753337pt;}
.yb{bottom:571.732015pt;}
.y74{bottom:574.824015pt;}
.y44{bottom:581.838664pt;}
.yb4{bottom:582.825317pt;}
.y73{bottom:592.358683pt;}
.yb3{bottom:598.898682pt;}
.y43{bottom:599.371989pt;}
.ya{bottom:607.545329pt;}
.y72{bottom:609.893351pt;}
.yb2{bottom:614.972005pt;}
.y42{bottom:616.906657pt;}
.y71{bottom:627.428019pt;}
.yb1{bottom:631.045329pt;}
.y41{bottom:634.441325pt;}
.y70{bottom:644.961344pt;}
.yb0{bottom:647.118652pt;}
.y9{bottom:648.873332pt;}
.y40{bottom:651.975993pt;}
.y6f{bottom:662.496012pt;}
.yaf{bottom:663.192017pt;}
.y3f{bottom:669.510661pt;}
.yae{bottom:679.263997pt;}
.yd2{bottom:679.265340pt;}
.y6e{bottom:680.030680pt;}
.y8{bottom:683.154704pt;}
.y3e{bottom:687.044027pt;}
.yad{bottom:690.258626pt;}
.yd1{bottom:695.337321pt;}
.y6d{bottom:697.565348pt;}
.y3d{bottom:704.578695pt;}
.yac{bottom:711.410645pt;}
.y8c{bottom:715.098633pt;}
.y6c{bottom:715.100016pt;}
.y3c{bottom:722.113363pt;}
.yab{bottom:727.483968pt;}
.y6b{bottom:732.633301pt;}
.yaa{bottom:738.478678pt;}
.y3b{bottom:739.648031pt;}
.y6a{bottom:750.167969pt;}
.y3a{bottom:757.181315pt;}
.ya9{bottom:759.630697pt;}
.y69{bottom:767.702637pt;}
.y39{bottom:774.715983pt;}
.ya8{bottom:775.704020pt;}
.y68{bottom:785.237305pt;}
.yd0{bottom:786.698649pt;}
.ya7{bottom:791.777344pt;}
.y38{bottom:792.250651pt;}
.y67{bottom:802.770671pt;}
.y2d{bottom:804.810628pt;}
.ya6{bottom:807.849365pt;}
.y37{bottom:809.785319pt;}
.y66{bottom:820.305339pt;}
.y2c{bottom:822.345296pt;}
.ya5{bottom:823.922689pt;}
.y1{bottom:826.559200pt;}
.y36{bottom:827.318685pt;}
.y7{bottom:832.267985pt;}
.y65{bottom:837.840007pt;}
.y2b{bottom:839.879964pt;}
.ya4{bottom:839.996012pt;}
.y35{bottom:844.853353pt;}
.y64{bottom:855.374674pt;}
.ya3{bottom:856.069336pt;}
.y34{bottom:862.388021pt;}
.y2a{bottom:864.055990pt;}
.y6{bottom:864.413330pt;}
.ya2{bottom:872.142659pt;}
.y63{bottom:872.908040pt;}
.y33{bottom:879.922689pt;}
.y29{bottom:881.590658pt;}
.ya1{bottom:888.215983pt;}
.y62{bottom:890.442627pt;}
.y32{bottom:897.455973pt;}
.ycf{bottom:899.210693pt;}
.ya0{bottom:904.289307pt;}
.y61{bottom:907.977295pt;}
.y28{bottom:913.527995pt;}
.y31{bottom:914.990641pt;}
.y9f{bottom:920.361328pt;}
.y60{bottom:925.511963pt;}
.y30{bottom:932.525309pt;}
.y9e{bottom:936.434652pt;}
.y5{bottom:939.470703pt;}
.y5f{bottom:943.045329pt;}
.y2f{bottom:950.059977pt;}
.y9d{bottom:952.507975pt;}
.y4{bottom:955.544027pt;}
.y27{bottom:955.903971pt;}
.y5e{bottom:960.579997pt;}
.yce{bottom:963.502686pt;}
.y9c{bottom:968.581299pt;}
.y3{bottom:971.617350pt;}
.y26{bottom:975.777344pt;}
.y5d{bottom:978.114665pt;}
.y9b{bottom:984.654704pt;}
.y25{bottom:995.649333pt;}
.y2{bottom:996.457357pt;}
.y9a{bottom:1000.728027pt;}
.h29{height:21.774405pt;}
.h2c{height:22.443896pt;}
.h10{height:22.817524pt;}
.hd{height:28.250235pt;}
.h16{height:34.239693pt;}
.hf{height:34.769626pt;}
.h15{height:35.685046pt;}
.h4{height:35.865601pt;}
.h3{height:38.043848pt;}
.h14{height:39.850399pt;}
.h19{height:40.397490pt;}
.he{height:41.081917pt;}
.h12{height:41.288843pt;}
.h8{height:41.658215pt;}
.h2a{height:42.088858pt;}
.h2b{height:42.089183pt;}
.hb{height:42.375351pt;}
.h11{height:42.665190pt;}
.h13{height:42.683080pt;}
.h9{height:43.636398pt;}
.hc{height:43.806334pt;}
.h1a{height:44.422822pt;}
.h24{height:44.422903pt;}
.h27{height:44.422985pt;}
.h25{height:44.423148pt;}
.h1e{height:44.428030pt;}
.h22{height:44.428193pt;}
.h1b{height:44.428356pt;}
.h18{height:44.632747pt;}
.h1d{height:45.464243pt;}
.h23{height:45.464324pt;}
.h20{height:45.464406pt;}
.h26{height:45.464569pt;}
.h1f{height:45.469451pt;}
.h21{height:45.469614pt;}
.h28{height:45.469695pt;}
.h1c{height:45.469777pt;}
.h7{height:54.783356pt;}
.h5{height:65.739877pt;}
.h17{height:69.407731pt;}
.h6{height:72.086095pt;}
.h2{height:103.826501pt;}
.ha{height:216.845994pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:342.885226pt;}
.w2{width:793.230200pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:11.099613pt;}
.xf{left:18.206569pt;}
.x11{left:21.759842pt;}
.x13{left:26.103076pt;}
.x12{left:30.220809pt;}
.x10{left:39.132133pt;}
.xd{left:44.659422pt;}
.x16{left:102.698499pt;}
.x5{left:111.117330pt;}
.x19{left:112.449331pt;}
.x6{left:121.700002pt;}
.x14{left:129.546344pt;}
.x1d{left:130.826670pt;}
.x1e{left:132.210663pt;}
.x15{left:133.494412pt;}
.x17{left:134.678893pt;}
.x1c{left:135.993337pt;}
.x1b{left:147.481333pt;}
.x18{left:195.035990pt;}
.x7{left:225.409342pt;}
.xc{left:244.833815pt;}
.xb{left:253.519873pt;}
.xa{left:259.837529pt;}
.x9{left:264.575452pt;}
.x8{left:331.299846pt;}
.x1a{left:381.093343pt;}
.x2{left:439.261353pt;}
.x3{left:539.397339pt;}
.x4{left:546.898682pt;}
.x1{left:733.238000pt;}
}




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