
    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_2c87d70034de48282d0a8740.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_b592c27a40b12aeff294e665.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_1caffbe218280b096f236a4b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.801000;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_8381ec2fce9f13f114d79da7.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_a86f47aa35da3ab3dd1968df.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f593a9df60f79508142504ea.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_831204eeb45d3a9459d4d66e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.905762;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_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.736816;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_da0cc1488257331c4eaf6125.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.311035;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_cf8f7911e75797fca0343a7d.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_46448410d19f8472eca100d9.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;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_3618bc66582f8eab6346da39.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284180;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_2a650970023dd4d1a5413568.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.fff{font-family:fff;line-height:0.910156;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_92a63532f658b72d1889fa2a.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.402354;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_358102ced07646583e61b82c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.912109;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_86e26363f1be313be1a0b685.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.402354;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_d791231143ab57b8eef09550.woff2')format("woff");}.ff13{font-family:ff13;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;}
.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);}
.v1{vertical-align:-86.400000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:14.400000px;}
.ls28{letter-spacing:-8.095350px;}
.ls46{letter-spacing:-1.242000px;}
.ls32{letter-spacing:-1.138409px;}
.ls39{letter-spacing:-0.972000px;}
.ls2d{letter-spacing:-0.853806px;}
.ls36{letter-spacing:-0.752615px;}
.ls26{letter-spacing:-0.720000px;}
.ls34{letter-spacing:-0.714668px;}
.ls3b{letter-spacing:-0.630000px;}
.ls38{letter-spacing:-0.593400px;}
.ls4d{letter-spacing:-0.555600px;}
.ls29{letter-spacing:-0.524933px;}
.ls42{letter-spacing:-0.507000px;}
.ls27{letter-spacing:-0.360000px;}
.ls30{letter-spacing:-0.349112px;}
.ls4c{letter-spacing:-0.316800px;}
.ls49{letter-spacing:-0.288000px;}
.ls33{letter-spacing:-0.276380px;}
.ls3c{letter-spacing:-0.234006px;}
.ls2e{letter-spacing:-0.218827px;}
.ls35{letter-spacing:-0.185308px;}
.ls4e{letter-spacing:-0.152400px;}
.ls25{letter-spacing:-0.089400px;}
.ls2a{letter-spacing:-0.082218px;}
.ls3a{letter-spacing:-0.072000px;}
.ls43{letter-spacing:-0.031680px;}
.ls3d{letter-spacing:-0.021250px;}
.ls21{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.020160px;}
.ls47{letter-spacing:0.089400px;}
.ls41{letter-spacing:0.120000px;}
.ls40{letter-spacing:0.140160px;}
.ls45{letter-spacing:0.150000px;}
.ls4f{letter-spacing:0.164160px;}
.ls10{letter-spacing:0.191000px;}
.ls50{letter-spacing:0.195600px;}
.ls18{letter-spacing:0.303576px;}
.ls2c{letter-spacing:0.382632px;}
.ls48{letter-spacing:0.423360px;}
.ls1{letter-spacing:0.466560px;}
.ls24{letter-spacing:0.466800px;}
.ls1f{letter-spacing:0.491793px;}
.ls3e{letter-spacing:0.492045px;}
.ls8{letter-spacing:0.525186px;}
.ls31{letter-spacing:0.625492px;}
.ls4{letter-spacing:0.661795px;}
.ls2f{letter-spacing:0.664072px;}
.ls20{letter-spacing:0.681527px;}
.ls2b{letter-spacing:0.683045px;}
.ls3{letter-spacing:0.720000px;}
.ls23{letter-spacing:0.738000px;}
.ls6{letter-spacing:0.788285px;}
.ls2{letter-spacing:0.840000px;}
.ls44{letter-spacing:1.536000px;}
.ls22{letter-spacing:1.728000px;}
.ls1c{letter-spacing:1.906560px;}
.ls37{letter-spacing:1.908000px;}
.ls4a{letter-spacing:2.034000px;}
.ls5{letter-spacing:2.179673px;}
.ls12{letter-spacing:2.306163px;}
.ls1a{letter-spacing:3.346560px;}
.lse{letter-spacing:3.697551px;}
.lsf{letter-spacing:5.215429px;}
.ls17{letter-spacing:6.733307px;}
.ls4b{letter-spacing:7.666560px;}
.ls14{letter-spacing:8.251185px;}
.ls15{letter-spacing:8.377675px;}
.ls16{letter-spacing:8.440920px;}
.ls1b{letter-spacing:9.106560px;}
.ls1d{letter-spacing:9.599061px;}
.lsb{letter-spacing:9.769063px;}
.ls1e{letter-spacing:9.788796px;}
.ls13{letter-spacing:9.895553px;}
.lsc{letter-spacing:9.958798px;}
.lsd{letter-spacing:11.286942px;}
.ls11{letter-spacing:12.804820px;}
.ls7{letter-spacing:14.322698px;}
.lsa{letter-spacing:14.512433px;}
.ls9{letter-spacing:15.840576px;}
.ls53{letter-spacing:16.306560px;}
.ls51{letter-spacing:40.786560px;}
.ls52{letter-spacing:46.546560px;}
.ls3f{letter-spacing:63.826560px;}
.ls0{letter-spacing:1500.841440px;}
.sc_{text-shadow:none;}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-60.480000px;}
.ws1{word-spacing:-28.370880px;}
.ws11{word-spacing:-20.829120px;}
.ws2{word-spacing:-20.031120px;}
.ws14{word-spacing:-19.759920px;}
.ws16{word-spacing:-19.488720px;}
.ws12{word-spacing:-19.443120px;}
.ws13{word-spacing:-19.382520px;}
.ws8{word-spacing:-19.293120px;}
.wsf{word-spacing:-18.786120px;}
.ws9{word-spacing:-18.699720px;}
.ws10{word-spacing:-16.813440px;}
.ws15{word-spacing:-16.306440px;}
.ws7{word-spacing:-16.034864px;}
.ws0{word-spacing:-15.120000px;}
.wsc{word-spacing:-13.680000px;}
.wsb{word-spacing:-13.050000px;}
.wse{word-spacing:-12.402720px;}
.ws4{word-spacing:-11.160000px;}
.ws6{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.wsa{word-spacing:-8.928000px;}
.wsd{word-spacing:0.000000px;}
._9{margin-left:-23.861760px;}
._15{margin-left:-18.422400px;}
._13{margin-left:-17.231520px;}
._16{margin-left:-16.149600px;}
._17{margin-left:-13.550400px;}
._a{margin-left:-8.784000px;}
._d{margin-left:-7.448733px;}
._1b{margin-left:-4.955040px;}
._6{margin-left:-3.565440px;}
._4{margin-left:-2.453760px;}
._3{margin-left:-1.391040px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._14{width:4.422720px;}
._11{width:5.503680px;}
._b{width:7.136640px;}
._f{width:8.207206px;}
._10{width:9.317234px;}
._e{width:10.421633px;}
._7{width:12.041280px;}
._5{width:13.196160px;}
._c{width:14.690090px;}
._8{width:16.560480px;}
._12{width:17.611627px;}
._19{width:56.365274px;}
._1a{width:58.410240px;}
._18{width:97.459200px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fs3{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fsc{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fsa{font-size:54.720000px;}
.fs8{font-size:57.679368px;}
.fs2{font-size:60.480000px;}
.fsb{font-size:63.750880px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:83.520000px;}
.fs4{font-size:96.480000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y5{bottom:3.960000px;}
.y37{bottom:4.320000px;}
.y4f{bottom:5.370000px;}
.y2{bottom:7.920000px;}
.ya0{bottom:8.985000px;}
.ya7{bottom:10.789500px;}
.ya3{bottom:11.145000px;}
.yaa{bottom:11.155500px;}
.ya6{bottom:13.669500px;}
.ya2{bottom:14.025000px;}
.ya9{bottom:14.035500px;}
.y40{bottom:17.311500px;}
.y4c{bottom:20.911500px;}
.y4{bottom:21.240000px;}
.y36{bottom:27.000000px;}
.y9f{bottom:38.895000px;}
.y3{bottom:44.280000px;}
.y3f{bottom:46.834500px;}
.y9d{bottom:47.175000px;}
.y4b{bottom:49.354500px;}
.y35{bottom:53.280000px;}
.y7{bottom:57.636000px;}
.y3e{bottom:58.714500px;}
.y9e{bottom:67.335000px;}
.y4a{bottom:68.794500px;}
.y9c{bottom:70.215000px;}
.y3d{bottom:71.674500px;}
.y49{bottom:75.274500px;}
.y34{bottom:79.605000px;}
.y3c{bottom:84.994500px;}
.y48{bottom:94.354500px;}
.yab{bottom:100.836000px;}
.y33{bottom:105.525000px;}
.y3b{bottom:106.594500px;}
.y4d{bottom:106.596000px;}
.yf8{bottom:110.916000px;}
.y47{bottom:111.994500px;}
.y7a{bottom:113.076000px;}
.ya8{bottom:117.400500px;}
.y46{bottom:118.114500px;}
.y38{bottom:124.600500px;}
.y32{bottom:131.805000px;}
.y79{bottom:133.236000px;}
.y45{bottom:133.954500px;}
.yf7{bottom:134.316000px;}
.yd5{bottom:135.396000px;}
.ya5{bottom:148.405500px;}
.y44{bottom:149.464500px;}
.yf6{bottom:154.155000px;}
.y31{bottom:155.205000px;}
.yd4{bottom:155.235000px;}
.y78{bottom:155.955000px;}
.y43{bottom:165.304500px;}
.y3a{bottom:168.904500px;}
.yf5{bottom:174.315000px;}
.y30{bottom:175.005000px;}
.yd3{bottom:175.395000px;}
.ya4{bottom:179.010000px;}
.y39{bottom:179.704500px;}
.y42{bottom:180.784500px;}
.y77{bottom:182.235000px;}
.yf4{bottom:194.475000px;}
.y2f{bottom:195.165000px;}
.yd2{bottom:195.555000px;}
.y41{bottom:195.904500px;}
.y76{bottom:205.635000px;}
.ya1{bottom:209.970000px;}
.yf3{bottom:214.635000px;}
.yd1{bottom:215.715000px;}
.y2e{bottom:226.515000px;}
.y75{bottom:234.435000px;}
.yd0{bottom:235.875000px;}
.yf2{bottom:237.675000px;}
.y9b{bottom:240.930000px;}
.y1e{bottom:248.475000px;}
.y2d{bottom:250.275000px;}
.y74{bottom:257.475000px;}
.yf1{bottom:263.595000px;}
.ycf{bottom:267.555000px;}
.y1d{bottom:272.595000px;}
.y2c{bottom:273.675000px;}
.y73{bottom:283.785000px;}
.yf0{bottom:289.905000px;}
.yce{bottom:290.985000px;}
.y1c{bottom:296.715000px;}
.y2b{bottom:297.075000px;}
.y72{bottom:309.705000px;}
.ycd{bottom:314.025000px;}
.yef{bottom:315.825000px;}
.y1b{bottom:320.835000px;}
.ye{bottom:333.825000px;}
.y9a{bottom:334.905000px;}
.y71{bottom:335.985000px;}
.ycc{bottom:337.425000px;}
.yee{bottom:342.105000px;}
.y2a{bottom:344.265000px;}
.y1a{bottom:344.985000px;}
.ycb{bottom:357.225000px;}
.y99{bottom:367.305000px;}
.y29{bottom:367.665000px;}
.yed{bottom:368.025000px;}
.y70{bottom:368.385000px;}
.y19{bottom:369.105000px;}
.yca{bottom:377.385000px;}
.y98{bottom:387.465000px;}
.y6f{bottom:391.065000px;}
.y28{bottom:391.425000px;}
.y18{bottom:393.225000px;}
.yec{bottom:394.305000px;}
.yc9{bottom:406.590000px;}
.y97{bottom:407.670000px;}
.y27{bottom:414.825000px;}
.y17{bottom:417.345000px;}
.y6e{bottom:417.390000px;}
.yeb{bottom:420.630000px;}
.yc8{bottom:426.750000px;}
.y96{bottom:427.830000px;}
.y26{bottom:438.225000px;}
.y6d{bottom:440.790000px;}
.y16{bottom:441.465000px;}
.yea{bottom:446.550000px;}
.yc7{bottom:446.910000px;}
.y95{bottom:447.990000px;}
.y25{bottom:461.985000px;}
.y15{bottom:465.585000px;}
.yc6{bottom:467.070000px;}
.y6c{bottom:469.950000px;}
.y94{bottom:476.790000px;}
.y24{bottom:485.430000px;}
.yc5{bottom:486.870000px;}
.y14{bottom:489.750000px;}
.y6b{bottom:492.630000px;}
.y93{bottom:496.950000px;}
.ye9{bottom:499.110000px;}
.yc4{bottom:507.030000px;}
.y23{bottom:508.830000px;}
.y13{bottom:514.230000px;}
.y6a{bottom:516.030000px;}
.y92{bottom:517.110000px;}
.ye8{bottom:519.270000px;}
.yc3{bottom:530.070000px;}
.y22{bottom:532.590000px;}
.y69{bottom:536.190000px;}
.y12{bottom:538.350000px;}
.ye7{bottom:539.460000px;}
.y91{bottom:540.180000px;}
.yc2{bottom:553.500000px;}
.y21{bottom:555.990000px;}
.y68{bottom:556.380000px;}
.ye6{bottom:559.260000px;}
.y11{bottom:562.470000px;}
.y90{bottom:563.220000px;}
.y67{bottom:576.180000px;}
.y20{bottom:579.390000px;}
.ye5{bottom:579.420000px;}
.yc1{bottom:585.180000px;}
.y8f{bottom:586.260000px;}
.y10{bottom:586.590000px;}
.ye4{bottom:602.460000px;}
.y1f{bottom:603.180000px;}
.y66{bottom:605.340000px;}
.yc0{bottom:608.580000px;}
.y8e{bottom:609.660000px;}
.yf{bottom:610.740000px;}
.y65{bottom:625.500000px;}
.ye3{bottom:628.380000px;}
.ybf{bottom:637.740000px;}
.y8d{bottom:641.340000px;}
.y64{bottom:648.540000px;}
.ye2{bottom:651.780000px;}
.ybe{bottom:657.900000px;}
.y8c{bottom:667.620000px;}
.ye1{bottom:671.970000px;}
.y63{bottom:674.490000px;}
.ybd{bottom:678.090000px;}
.y8b{bottom:691.050000px;}
.y62{bottom:697.890000px;}
.ye0{bottom:701.130000px;}
.y8a{bottom:711.210000px;}
.ybc{bottom:718.050000px;}
.y61{bottom:720.930000px;}
.ydf{bottom:721.290000px;}
.y89{bottom:740.370000px;}
.ybb{bottom:741.090000px;}
.yde{bottom:741.450000px;}
.y60{bottom:746.850000px;}
.y88{bottom:760.170000px;}
.ydd{bottom:761.250000px;}
.yba{bottom:764.490000px;}
.y5f{bottom:773.130000px;}
.y87{bottom:780.330000px;}
.ydc{bottom:781.410000px;}
.yb9{bottom:784.290000px;}
.y5e{bottom:796.530000px;}
.y86{bottom:800.490000px;}
.yb8{bottom:804.495000px;}
.ydb{bottom:810.615000px;}
.y105{bottom:816.015000px;}
.y5d{bottom:816.375000px;}
.y85{bottom:823.575000px;}
.yb7{bottom:827.535000px;}
.yda{bottom:830.775000px;}
.y5c{bottom:836.535000px;}
.y84{bottom:846.615000px;}
.yb6{bottom:850.935000px;}
.y5b{bottom:859.575000px;}
.y104{bottom:862.815000px;}
.y83{bottom:869.655000px;}
.yd9{bottom:871.095000px;}
.yb5{bottom:880.095000px;}
.y5a{bottom:882.975000px;}
.y103{bottom:885.855000px;}
.yd8{bottom:890.895000px;}
.y82{bottom:893.055000px;}
.yb4{bottom:899.895000px;}
.y102{bottom:903.135000px;}
.y59{bottom:905.655000px;}
.y101{bottom:920.415000px;}
.y81{bottom:922.215000px;}
.yb3{bottom:922.935000px;}
.y58{bottom:929.055000px;}
.y100{bottom:937.365000px;}
.y80{bottom:944.925000px;}
.yb2{bottom:946.365000px;}
.y57{bottom:949.245000px;}
.yff{bottom:954.645000px;}
.yd{bottom:956.805000px;}
.yc{bottom:962.205000px;}
.yb1{bottom:966.525000px;}
.y7f{bottom:968.325000px;}
.y56{bottom:969.405000px;}
.yfe{bottom:971.925000px;}
.yb{bottom:982.365000px;}
.yb0{bottom:986.325000px;}
.yfd{bottom:989.205000px;}
.y55{bottom:989.565000px;}
.y7e{bottom:991.365000px;}
.yaf{bottom:1006.485000px;}
.y54{bottom:1012.245000px;}
.y7d{bottom:1014.765000px;}
.yfc{bottom:1023.765000px;}
.yd7{bottom:1026.645000px;}
.ya{bottom:1027.365000px;}
.y53{bottom:1035.645000px;}
.yfb{bottom:1041.045000px;}
.y7c{bottom:1046.445000px;}
.yd6{bottom:1046.805000px;}
.y52{bottom:1055.805000px;}
.yfa{bottom:1058.325000px;}
.yae{bottom:1058.685000px;}
.y9{bottom:1060.125000px;}
.y7b{bottom:1072.770000px;}
.y51{bottom:1076.010000px;}
.yf9{bottom:1078.530000px;}
.yad{bottom:1081.770000px;}
.y8{bottom:1086.450000px;}
.y4e{bottom:1089.720000px;}
.y50{bottom:1098.690000px;}
.yac{bottom:1101.930000px;}
.y6{bottom:1120.290000px;}
.y1{bottom:1127.130000px;}
.hb{height:4.165313px;}
.h15{height:5.650313px;}
.h17{height:27.720000px;}
.h12{height:29.678906px;}
.h1b{height:29.866500px;}
.h6{height:30.077578px;}
.h1a{height:30.225000px;}
.h1c{height:30.271500px;}
.h11{height:35.332031px;}
.he{height:40.985156px;}
.hd{height:42.086250px;}
.h13{height:53.677969px;}
.h14{height:55.147500px;}
.h5{height:59.357813px;}
.h1e{height:60.952500px;}
.hf{height:61.143509px;}
.h1d{height:62.163910px;}
.h18{height:63.455625px;}
.h9{height:64.112344px;}
.ha{height:65.010937px;}
.h3{height:65.884219px;}
.h16{height:67.579668px;}
.h7{height:77.280480px;}
.h2{height:81.390000px;}
.h19{height:86.400000px;}
.h8{height:88.536094px;}
.h4{height:116.640000px;}
.h10{height:208.485000px;}
.hc{height:620.085000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wc{width:76.680000px;}
.w7{width:99.382500px;}
.wd{width:100.110000px;}
.w8{width:100.485000px;}
.w2{width:103.702500px;}
.w4{width:132.502500px;}
.wa{width:137.952000px;}
.w9{width:144.390000px;}
.w6{width:163.080000px;}
.wb{width:177.885000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:6.876000px;}
.x16{left:8.266500px;}
.x4{left:13.305000px;}
.x14{left:14.746500px;}
.x19{left:18.346500px;}
.x5{left:19.425000px;}
.x2e{left:23.745000px;}
.x15{left:26.626500px;}
.x1b{left:29.146500px;}
.x2d{left:31.695000px;}
.x2c{left:32.782500px;}
.x30{left:35.280000px;}
.x6{left:38.145000px;}
.xe{left:43.906500px;}
.x1a{left:47.542500px;}
.xf{left:50.782500px;}
.x13{left:54.022500px;}
.xd{left:55.102500px;}
.x1d{left:57.262500px;}
.x1c{left:66.265500px;}
.x12{left:73.105500px;}
.x11{left:75.265500px;}
.x1{left:78.529500px;}
.x1f{left:82.095000px;}
.x7{left:86.436000px;}
.x22{left:90.036000px;}
.x2{left:95.425500px;}
.x1e{left:102.985500px;}
.x18{left:106.945500px;}
.x25{left:113.436000px;}
.x27{left:114.889500px;}
.x10{left:124.585500px;}
.x20{left:127.860000px;}
.x24{left:140.472000px;}
.x3{left:182.250000px;}
.x28{left:215.010000px;}
.x17{left:218.970000px;}
.x21{left:245.610000px;}
.x26{left:283.425000px;}
.x29{left:316.590000px;}
.xa{left:436.140000px;}
.x2a{left:462.060000px;}
.x2b{left:600.750000px;}
.xb{left:618.735000px;}
.x2f{left:678.525000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
.xc{left:807.090000px;}
@media print{
.v1{vertical-align:-76.800000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:12.800000pt;}
.ls28{letter-spacing:-7.195867pt;}
.ls46{letter-spacing:-1.104000pt;}
.ls32{letter-spacing:-1.011919pt;}
.ls39{letter-spacing:-0.864000pt;}
.ls2d{letter-spacing:-0.758939pt;}
.ls36{letter-spacing:-0.668991pt;}
.ls26{letter-spacing:-0.640000pt;}
.ls34{letter-spacing:-0.635260pt;}
.ls3b{letter-spacing:-0.560000pt;}
.ls38{letter-spacing:-0.527467pt;}
.ls4d{letter-spacing:-0.493867pt;}
.ls29{letter-spacing:-0.466607pt;}
.ls42{letter-spacing:-0.450667pt;}
.ls27{letter-spacing:-0.320000pt;}
.ls30{letter-spacing:-0.310322pt;}
.ls4c{letter-spacing:-0.281600pt;}
.ls49{letter-spacing:-0.256000pt;}
.ls33{letter-spacing:-0.245671pt;}
.ls3c{letter-spacing:-0.208006pt;}
.ls2e{letter-spacing:-0.194513pt;}
.ls35{letter-spacing:-0.164718pt;}
.ls4e{letter-spacing:-0.135467pt;}
.ls25{letter-spacing:-0.079467pt;}
.ls2a{letter-spacing:-0.073083pt;}
.ls3a{letter-spacing:-0.064000pt;}
.ls43{letter-spacing:-0.028160pt;}
.ls3d{letter-spacing:-0.018889pt;}
.ls21{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.017920pt;}
.ls47{letter-spacing:0.079467pt;}
.ls41{letter-spacing:0.106667pt;}
.ls40{letter-spacing:0.124587pt;}
.ls45{letter-spacing:0.133333pt;}
.ls4f{letter-spacing:0.145920pt;}
.ls10{letter-spacing:0.169777pt;}
.ls50{letter-spacing:0.173867pt;}
.ls18{letter-spacing:0.269845pt;}
.ls2c{letter-spacing:0.340117pt;}
.ls48{letter-spacing:0.376320pt;}
.ls1{letter-spacing:0.414720pt;}
.ls24{letter-spacing:0.414933pt;}
.ls1f{letter-spacing:0.437149pt;}
.ls3e{letter-spacing:0.437374pt;}
.ls8{letter-spacing:0.466832pt;}
.ls31{letter-spacing:0.555993pt;}
.ls4{letter-spacing:0.588262pt;}
.ls2f{letter-spacing:0.590286pt;}
.ls20{letter-spacing:0.605802pt;}
.ls2b{letter-spacing:0.607151pt;}
.ls3{letter-spacing:0.640000pt;}
.ls23{letter-spacing:0.656000pt;}
.ls6{letter-spacing:0.700698pt;}
.ls2{letter-spacing:0.746667pt;}
.ls44{letter-spacing:1.365333pt;}
.ls22{letter-spacing:1.536000pt;}
.ls1c{letter-spacing:1.694720pt;}
.ls37{letter-spacing:1.696000pt;}
.ls4a{letter-spacing:1.808000pt;}
.ls5{letter-spacing:1.937487pt;}
.ls12{letter-spacing:2.049922pt;}
.ls1a{letter-spacing:2.974720pt;}
.lse{letter-spacing:3.286712pt;}
.lsf{letter-spacing:4.635937pt;}
.ls17{letter-spacing:5.985162pt;}
.ls4b{letter-spacing:6.814720pt;}
.ls14{letter-spacing:7.334387pt;}
.ls15{letter-spacing:7.446822pt;}
.ls16{letter-spacing:7.503040pt;}
.ls1b{letter-spacing:8.094720pt;}
.ls1d{letter-spacing:8.532499pt;}
.lsb{letter-spacing:8.683612pt;}
.ls1e{letter-spacing:8.701152pt;}
.ls13{letter-spacing:8.796047pt;}
.lsc{letter-spacing:8.852265pt;}
.lsd{letter-spacing:10.032837pt;}
.ls11{letter-spacing:11.382062pt;}
.ls7{letter-spacing:12.731287pt;}
.lsa{letter-spacing:12.899940pt;}
.ls9{letter-spacing:14.080512pt;}
.ls53{letter-spacing:14.494720pt;}
.ls51{letter-spacing:36.254720pt;}
.ls52{letter-spacing:41.374720pt;}
.ls3f{letter-spacing:56.734720pt;}
.ls0{letter-spacing:1334.081280pt;}
.ws3{word-spacing:-53.760000pt;}
.ws1{word-spacing:-25.218560pt;}
.ws11{word-spacing:-18.514773pt;}
.ws2{word-spacing:-17.805440pt;}
.ws14{word-spacing:-17.564373pt;}
.ws16{word-spacing:-17.323307pt;}
.ws12{word-spacing:-17.282773pt;}
.ws13{word-spacing:-17.228907pt;}
.ws8{word-spacing:-17.149440pt;}
.wsf{word-spacing:-16.698773pt;}
.ws9{word-spacing:-16.621973pt;}
.ws10{word-spacing:-14.945280pt;}
.ws15{word-spacing:-14.494613pt;}
.ws7{word-spacing:-14.253213pt;}
.ws0{word-spacing:-13.440000pt;}
.wsc{word-spacing:-12.160000pt;}
.wsb{word-spacing:-11.600000pt;}
.wse{word-spacing:-11.024640pt;}
.ws4{word-spacing:-9.920000pt;}
.ws6{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.wsa{word-spacing:-7.936000pt;}
.wsd{word-spacing:0.000000pt;}
._9{margin-left:-21.210453pt;}
._15{margin-left:-16.375467pt;}
._13{margin-left:-15.316907pt;}
._16{margin-left:-14.355200pt;}
._17{margin-left:-12.044800pt;}
._a{margin-left:-7.808000pt;}
._d{margin-left:-6.621096pt;}
._1b{margin-left:-4.404480pt;}
._6{margin-left:-3.169280pt;}
._4{margin-left:-2.181120pt;}
._3{margin-left:-1.236480pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._14{width:3.931307pt;}
._11{width:4.892160pt;}
._b{width:6.343680pt;}
._f{width:7.295295pt;}
._10{width:8.281985pt;}
._e{width:9.263674pt;}
._7{width:10.703360pt;}
._5{width:11.729920pt;}
._c{width:13.057857pt;}
._8{width:14.720427pt;}
._12{width:15.654780pt;}
._19{width:50.102465pt;}
._1a{width:51.920213pt;}
._18{width:86.630400pt;}
.fs6{font-size:5.120000pt;}
.fs3{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fsc{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fsa{font-size:48.640000pt;}
.fs8{font-size:51.270549pt;}
.fs2{font-size:53.760000pt;}
.fsb{font-size:56.667449pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:74.240000pt;}
.fs4{font-size:85.760000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:3.520000pt;}
.y37{bottom:3.840000pt;}
.y4f{bottom:4.773333pt;}
.y2{bottom:7.040000pt;}
.ya0{bottom:7.986667pt;}
.ya7{bottom:9.590667pt;}
.ya3{bottom:9.906667pt;}
.yaa{bottom:9.916000pt;}
.ya6{bottom:12.150667pt;}
.ya2{bottom:12.466667pt;}
.ya9{bottom:12.476000pt;}
.y40{bottom:15.388000pt;}
.y4c{bottom:18.588000pt;}
.y4{bottom:18.880000pt;}
.y36{bottom:24.000000pt;}
.y9f{bottom:34.573333pt;}
.y3{bottom:39.360000pt;}
.y3f{bottom:41.630667pt;}
.y9d{bottom:41.933333pt;}
.y4b{bottom:43.870667pt;}
.y35{bottom:47.360000pt;}
.y7{bottom:51.232000pt;}
.y3e{bottom:52.190667pt;}
.y9e{bottom:59.853333pt;}
.y4a{bottom:61.150667pt;}
.y9c{bottom:62.413333pt;}
.y3d{bottom:63.710667pt;}
.y49{bottom:66.910667pt;}
.y34{bottom:70.760000pt;}
.y3c{bottom:75.550667pt;}
.y48{bottom:83.870667pt;}
.yab{bottom:89.632000pt;}
.y33{bottom:93.800000pt;}
.y3b{bottom:94.750667pt;}
.y4d{bottom:94.752000pt;}
.yf8{bottom:98.592000pt;}
.y47{bottom:99.550667pt;}
.y7a{bottom:100.512000pt;}
.ya8{bottom:104.356000pt;}
.y46{bottom:104.990667pt;}
.y38{bottom:110.756000pt;}
.y32{bottom:117.160000pt;}
.y79{bottom:118.432000pt;}
.y45{bottom:119.070667pt;}
.yf7{bottom:119.392000pt;}
.yd5{bottom:120.352000pt;}
.ya5{bottom:131.916000pt;}
.y44{bottom:132.857333pt;}
.yf6{bottom:137.026667pt;}
.y31{bottom:137.960000pt;}
.yd4{bottom:137.986667pt;}
.y78{bottom:138.626667pt;}
.y43{bottom:146.937333pt;}
.y3a{bottom:150.137333pt;}
.yf5{bottom:154.946667pt;}
.y30{bottom:155.560000pt;}
.yd3{bottom:155.906667pt;}
.ya4{bottom:159.120000pt;}
.y39{bottom:159.737333pt;}
.y42{bottom:160.697333pt;}
.y77{bottom:161.986667pt;}
.yf4{bottom:172.866667pt;}
.y2f{bottom:173.480000pt;}
.yd2{bottom:173.826667pt;}
.y41{bottom:174.137333pt;}
.y76{bottom:182.786667pt;}
.ya1{bottom:186.640000pt;}
.yf3{bottom:190.786667pt;}
.yd1{bottom:191.746667pt;}
.y2e{bottom:201.346667pt;}
.y75{bottom:208.386667pt;}
.yd0{bottom:209.666667pt;}
.yf2{bottom:211.266667pt;}
.y9b{bottom:214.160000pt;}
.y1e{bottom:220.866667pt;}
.y2d{bottom:222.466667pt;}
.y74{bottom:228.866667pt;}
.yf1{bottom:234.306667pt;}
.ycf{bottom:237.826667pt;}
.y1d{bottom:242.306667pt;}
.y2c{bottom:243.266667pt;}
.y73{bottom:252.253333pt;}
.yf0{bottom:257.693333pt;}
.yce{bottom:258.653333pt;}
.y1c{bottom:263.746667pt;}
.y2b{bottom:264.066667pt;}
.y72{bottom:275.293333pt;}
.ycd{bottom:279.133333pt;}
.yef{bottom:280.733333pt;}
.y1b{bottom:285.186667pt;}
.ye{bottom:296.733333pt;}
.y9a{bottom:297.693333pt;}
.y71{bottom:298.653333pt;}
.ycc{bottom:299.933333pt;}
.yee{bottom:304.093333pt;}
.y2a{bottom:306.013333pt;}
.y1a{bottom:306.653333pt;}
.ycb{bottom:317.533333pt;}
.y99{bottom:326.493333pt;}
.y29{bottom:326.813333pt;}
.yed{bottom:327.133333pt;}
.y70{bottom:327.453333pt;}
.y19{bottom:328.093333pt;}
.yca{bottom:335.453333pt;}
.y98{bottom:344.413333pt;}
.y6f{bottom:347.613333pt;}
.y28{bottom:347.933333pt;}
.y18{bottom:349.533333pt;}
.yec{bottom:350.493333pt;}
.yc9{bottom:361.413333pt;}
.y97{bottom:362.373333pt;}
.y27{bottom:368.733333pt;}
.y17{bottom:370.973333pt;}
.y6e{bottom:371.013333pt;}
.yeb{bottom:373.893333pt;}
.yc8{bottom:379.333333pt;}
.y96{bottom:380.293333pt;}
.y26{bottom:389.533333pt;}
.y6d{bottom:391.813333pt;}
.y16{bottom:392.413333pt;}
.yea{bottom:396.933333pt;}
.yc7{bottom:397.253333pt;}
.y95{bottom:398.213333pt;}
.y25{bottom:410.653333pt;}
.y15{bottom:413.853333pt;}
.yc6{bottom:415.173333pt;}
.y6c{bottom:417.733333pt;}
.y94{bottom:423.813333pt;}
.y24{bottom:431.493333pt;}
.yc5{bottom:432.773333pt;}
.y14{bottom:435.333333pt;}
.y6b{bottom:437.893333pt;}
.y93{bottom:441.733333pt;}
.ye9{bottom:443.653333pt;}
.yc4{bottom:450.693333pt;}
.y23{bottom:452.293333pt;}
.y13{bottom:457.093333pt;}
.y6a{bottom:458.693333pt;}
.y92{bottom:459.653333pt;}
.ye8{bottom:461.573333pt;}
.yc3{bottom:471.173333pt;}
.y22{bottom:473.413333pt;}
.y69{bottom:476.613333pt;}
.y12{bottom:478.533333pt;}
.ye7{bottom:479.520000pt;}
.y91{bottom:480.160000pt;}
.yc2{bottom:492.000000pt;}
.y21{bottom:494.213333pt;}
.y68{bottom:494.560000pt;}
.ye6{bottom:497.120000pt;}
.y11{bottom:499.973333pt;}
.y90{bottom:500.640000pt;}
.y67{bottom:512.160000pt;}
.y20{bottom:515.013333pt;}
.ye5{bottom:515.040000pt;}
.yc1{bottom:520.160000pt;}
.y8f{bottom:521.120000pt;}
.y10{bottom:521.413333pt;}
.ye4{bottom:535.520000pt;}
.y1f{bottom:536.160000pt;}
.y66{bottom:538.080000pt;}
.yc0{bottom:540.960000pt;}
.y8e{bottom:541.920000pt;}
.yf{bottom:542.880000pt;}
.y65{bottom:556.000000pt;}
.ye3{bottom:558.560000pt;}
.ybf{bottom:566.880000pt;}
.y8d{bottom:570.080000pt;}
.y64{bottom:576.480000pt;}
.ye2{bottom:579.360000pt;}
.ybe{bottom:584.800000pt;}
.y8c{bottom:593.440000pt;}
.ye1{bottom:597.306667pt;}
.y63{bottom:599.546667pt;}
.ybd{bottom:602.746667pt;}
.y8b{bottom:614.266667pt;}
.y62{bottom:620.346667pt;}
.ye0{bottom:623.226667pt;}
.y8a{bottom:632.186667pt;}
.ybc{bottom:638.266667pt;}
.y61{bottom:640.826667pt;}
.ydf{bottom:641.146667pt;}
.y89{bottom:658.106667pt;}
.ybb{bottom:658.746667pt;}
.yde{bottom:659.066667pt;}
.y60{bottom:663.866667pt;}
.y88{bottom:675.706667pt;}
.ydd{bottom:676.666667pt;}
.yba{bottom:679.546667pt;}
.y5f{bottom:687.226667pt;}
.y87{bottom:693.626667pt;}
.ydc{bottom:694.586667pt;}
.yb9{bottom:697.146667pt;}
.y5e{bottom:708.026667pt;}
.y86{bottom:711.546667pt;}
.yb8{bottom:715.106667pt;}
.ydb{bottom:720.546667pt;}
.y105{bottom:725.346667pt;}
.y5d{bottom:725.666667pt;}
.y85{bottom:732.066667pt;}
.yb7{bottom:735.586667pt;}
.yda{bottom:738.466667pt;}
.y5c{bottom:743.586667pt;}
.y84{bottom:752.546667pt;}
.yb6{bottom:756.386667pt;}
.y5b{bottom:764.066667pt;}
.y104{bottom:766.946667pt;}
.y83{bottom:773.026667pt;}
.yd9{bottom:774.306667pt;}
.yb5{bottom:782.306667pt;}
.y5a{bottom:784.866667pt;}
.y103{bottom:787.426667pt;}
.yd8{bottom:791.906667pt;}
.y82{bottom:793.826667pt;}
.yb4{bottom:799.906667pt;}
.y102{bottom:802.786667pt;}
.y59{bottom:805.026667pt;}
.y101{bottom:818.146667pt;}
.y81{bottom:819.746667pt;}
.yb3{bottom:820.386667pt;}
.y58{bottom:825.826667pt;}
.y100{bottom:833.213333pt;}
.y80{bottom:839.933333pt;}
.yb2{bottom:841.213333pt;}
.y57{bottom:843.773333pt;}
.yff{bottom:848.573333pt;}
.yd{bottom:850.493333pt;}
.yc{bottom:855.293333pt;}
.yb1{bottom:859.133333pt;}
.y7f{bottom:860.733333pt;}
.y56{bottom:861.693333pt;}
.yfe{bottom:863.933333pt;}
.yb{bottom:873.213333pt;}
.yb0{bottom:876.733333pt;}
.yfd{bottom:879.293333pt;}
.y55{bottom:879.613333pt;}
.y7e{bottom:881.213333pt;}
.yaf{bottom:894.653333pt;}
.y54{bottom:899.773333pt;}
.y7d{bottom:902.013333pt;}
.yfc{bottom:910.013333pt;}
.yd7{bottom:912.573333pt;}
.ya{bottom:913.213333pt;}
.y53{bottom:920.573333pt;}
.yfb{bottom:925.373333pt;}
.y7c{bottom:930.173333pt;}
.yd6{bottom:930.493333pt;}
.y52{bottom:938.493333pt;}
.yfa{bottom:940.733333pt;}
.yae{bottom:941.053333pt;}
.y9{bottom:942.333333pt;}
.y7b{bottom:953.573333pt;}
.y51{bottom:956.453333pt;}
.yf9{bottom:958.693333pt;}
.yad{bottom:961.573333pt;}
.y8{bottom:965.733333pt;}
.y4e{bottom:968.640000pt;}
.y50{bottom:976.613333pt;}
.yac{bottom:979.493333pt;}
.y6{bottom:995.813333pt;}
.y1{bottom:1001.893333pt;}
.hb{height:3.702500pt;}
.h15{height:5.022500pt;}
.h17{height:24.640000pt;}
.h12{height:26.381250pt;}
.h1b{height:26.548000pt;}
.h6{height:26.735625pt;}
.h1a{height:26.866667pt;}
.h1c{height:26.908000pt;}
.h11{height:31.406250pt;}
.he{height:36.431250pt;}
.hd{height:37.410000pt;}
.h13{height:47.713750pt;}
.h14{height:49.020000pt;}
.h5{height:52.762500pt;}
.h1e{height:54.180000pt;}
.hf{height:54.349786pt;}
.h1d{height:55.256809pt;}
.h18{height:56.405000pt;}
.h9{height:56.988750pt;}
.ha{height:57.787500pt;}
.h3{height:58.563750pt;}
.h16{height:60.070816pt;}
.h7{height:68.693760pt;}
.h2{height:72.346667pt;}
.h19{height:76.800000pt;}
.h8{height:78.698750pt;}
.h4{height:103.680000pt;}
.h10{height:185.320000pt;}
.hc{height:551.186667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wc{width:68.160000pt;}
.w7{width:88.340000pt;}
.wd{width:88.986667pt;}
.w8{width:89.320000pt;}
.w2{width:92.180000pt;}
.w4{width:117.780000pt;}
.wa{width:122.624000pt;}
.w9{width:128.346667pt;}
.w6{width:144.960000pt;}
.wb{width:158.120000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:6.112000pt;}
.x16{left:7.348000pt;}
.x4{left:11.826667pt;}
.x14{left:13.108000pt;}
.x19{left:16.308000pt;}
.x5{left:17.266667pt;}
.x2e{left:21.106667pt;}
.x15{left:23.668000pt;}
.x1b{left:25.908000pt;}
.x2d{left:28.173333pt;}
.x2c{left:29.140000pt;}
.x30{left:31.360000pt;}
.x6{left:33.906667pt;}
.xe{left:39.028000pt;}
.x1a{left:42.260000pt;}
.xf{left:45.140000pt;}
.x13{left:48.020000pt;}
.xd{left:48.980000pt;}
.x1d{left:50.900000pt;}
.x1c{left:58.902667pt;}
.x12{left:64.982667pt;}
.x11{left:66.902667pt;}
.x1{left:69.804000pt;}
.x1f{left:72.973333pt;}
.x7{left:76.832000pt;}
.x22{left:80.032000pt;}
.x2{left:84.822667pt;}
.x1e{left:91.542667pt;}
.x18{left:95.062667pt;}
.x25{left:100.832000pt;}
.x27{left:102.124000pt;}
.x10{left:110.742667pt;}
.x20{left:113.653333pt;}
.x24{left:124.864000pt;}
.x3{left:162.000000pt;}
.x28{left:191.120000pt;}
.x17{left:194.640000pt;}
.x21{left:218.320000pt;}
.x26{left:251.933333pt;}
.x29{left:281.413333pt;}
.xa{left:387.680000pt;}
.x2a{left:410.720000pt;}
.x2b{left:534.000000pt;}
.xb{left:549.986667pt;}
.x2f{left:603.133333pt;}
.x9{left:680.933333pt;}
.x8{left:697.573333pt;}
.xc{left:717.413333pt;}
}




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