
    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_59ef4bf2ea4431a550943788.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.052734;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_235292ccdd7fd64c3e0ffed7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_f6e0fbd31336bab014e3b053.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.750000;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_38e6b83e203b7adc2dadd6b3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.014160;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_9dc73a7bb354703b571189d7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.956543;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_c0ae5a57067a4412493fbb08.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.950195;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_078a82154078901ea690f327.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.052734;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_cd199f8dc37a505134bc56b2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.053223;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_a463cc5af354383701c8f8c2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.053223;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_76f7e91d1c3adb5eaf3b0d81.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.934082;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_69e004d25e4e4fc3fc82b37c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.950195;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_635e538cd1e07bb1840b0e0b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.934082;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_146e781e7a3a2b5a1776a31e.woff2')format("woff");}.fff{font-family:fff;line-height:0.776855;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.235295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235295,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-21.600000px;}
.v1{vertical-align:-6.480000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.600000px;}
.v4{vertical-align:28.080000px;}
.lsc{letter-spacing:-1.548000px;}
.ls1{letter-spacing:-1.476000px;}
.ls21{letter-spacing:-0.936000px;}
.ls1d{letter-spacing:-0.846000px;}
.ls1c{letter-spacing:-0.828000px;}
.ls10{letter-spacing:-0.702000px;}
.lsf{letter-spacing:-0.684000px;}
.ls20{letter-spacing:-0.540000px;}
.ls40{letter-spacing:-0.423600px;}
.ls28{letter-spacing:-0.403800px;}
.ls2d{letter-spacing:-0.332400px;}
.ls38{letter-spacing:-0.317400px;}
.ls23{letter-spacing:-0.224400px;}
.ls4b{letter-spacing:-0.121200px;}
.lsd{letter-spacing:-0.093000px;}
.lsa{letter-spacing:-0.025920px;}
.ls0{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.002160px;}
.ls4a{letter-spacing:0.078000px;}
.ls16{letter-spacing:0.082200px;}
.ls43{letter-spacing:0.088800px;}
.ls29{letter-spacing:0.110400px;}
.ls47{letter-spacing:0.120960px;}
.ls19{letter-spacing:0.209400px;}
.ls49{letter-spacing:0.240960px;}
.ls35{letter-spacing:0.319800px;}
.ls6{letter-spacing:0.406200px;}
.ls2a{letter-spacing:0.417000px;}
.ls15{letter-spacing:0.488400px;}
.ls13{letter-spacing:0.498960px;}
.ls3f{letter-spacing:0.537600px;}
.ls30{letter-spacing:0.540000px;}
.ls4{letter-spacing:0.546600px;}
.ls14{letter-spacing:0.580800px;}
.ls39{letter-spacing:0.581040px;}
.ls34{letter-spacing:0.587400px;}
.lsb{letter-spacing:0.612000px;}
.ls2e{letter-spacing:0.618000px;}
.ls3{letter-spacing:0.642000px;}
.ls5{letter-spacing:0.846000px;}
.ls32{letter-spacing:0.876000px;}
.ls1e{letter-spacing:0.888000px;}
.ls48{letter-spacing:0.933120px;}
.lse{letter-spacing:1.170720px;}
.ls1a{letter-spacing:1.224000px;}
.ls41{letter-spacing:1.290720px;}
.ls31{letter-spacing:1.350720px;}
.ls11{letter-spacing:1.476000px;}
.ls1b{letter-spacing:1.477440px;}
.ls36{letter-spacing:1.524000px;}
.ls26{letter-spacing:1.620000px;}
.ls2{letter-spacing:1.824000px;}
.ls37{letter-spacing:1.842000px;}
.ls27{letter-spacing:1.926000px;}
.ls2b{letter-spacing:1.948320px;}
.ls2f{letter-spacing:2.160000px;}
.ls2c{letter-spacing:2.162160px;}
.ls45{letter-spacing:2.250000px;}
.ls42{letter-spacing:2.268000px;}
.ls3a{letter-spacing:2.370000px;}
.ls3e{letter-spacing:2.514000px;}
.ls17{letter-spacing:2.646000px;}
.ls3c{letter-spacing:2.742000px;}
.ls3b{letter-spacing:2.844000px;}
.ls22{letter-spacing:3.006000px;}
.ls33{letter-spacing:3.036000px;}
.ls3d{letter-spacing:7.650720px;}
.ls44{letter-spacing:14.130720px;}
.ls12{letter-spacing:32.024160px;}
.ls46{letter-spacing:34.184160px;}
.ls7{letter-spacing:66.102720px;}
.ls24{letter-spacing:66.584160px;}
.ls1f{letter-spacing:84.044160px;}
.ls8{letter-spacing:104.850720px;}
.ls9{letter-spacing:133.110720px;}
.ls25{letter-spacing:138.044160px;}
.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;}
}
.ws5{word-spacing:-47.856720px;}
.ws4{word-spacing:-47.214720px;}
.ws2{word-spacing:-25.242720px;}
.ws1{word-spacing:-23.418720px;}
.ws0{word-spacing:-21.942720px;}
.ws3{word-spacing:-19.815840px;}
.ws14{word-spacing:-18.755280px;}
.ws28{word-spacing:-18.479280px;}
.ws2e{word-spacing:-18.359280px;}
.ws21{word-spacing:-18.269280px;}
.ws25{word-spacing:-17.951280px;}
.ws24{word-spacing:-17.633280px;}
.ws1a{word-spacing:-16.997280px;}
.ws22{word-spacing:-16.985280px;}
.ws8{word-spacing:-16.955280px;}
.ws11{word-spacing:-16.690080px;}
.ws7{word-spacing:-16.655880px;}
.ws16{word-spacing:-16.608240px;}
.ws12{word-spacing:-16.597680px;}
.ws29{word-spacing:-16.526280px;}
.ws17{word-spacing:-16.318680px;}
.ws27{word-spacing:-16.219680px;}
.ws2c{word-spacing:-16.198080px;}
.ws13{word-spacing:-16.191480px;}
.ws15{word-spacing:-16.111440px;}
.ws10{word-spacing:-16.109280px;}
.ws1c{word-spacing:-15.884880px;}
.ws26{word-spacing:-15.791880px;}
.wsc{word-spacing:-15.744960px;}
.ws1d{word-spacing:-15.705480px;}
.ws9{word-spacing:-15.539160px;}
.wse{word-spacing:-15.425280px;}
.wsf{word-spacing:-15.407280px;}
.ws1b{word-spacing:-15.173280px;}
.wsb{word-spacing:-15.132960px;}
.wsa{word-spacing:-15.107040px;}
.ws23{word-spacing:-13.988280px;}
.ws2f{word-spacing:-13.746480px;}
.ws2a{word-spacing:-13.668480px;}
.wsd{word-spacing:-13.584960px;}
.ws30{word-spacing:-13.547280px;}
.ws2b{word-spacing:-13.244880px;}
.ws18{word-spacing:-12.840480px;}
.ws19{word-spacing:-12.822480px;}
.ws20{word-spacing:-11.357520px;}
.ws1e{word-spacing:-10.739520px;}
.ws1f{word-spacing:-10.407120px;}
.ws2d{word-spacing:-9.275040px;}
.ws6{word-spacing:0.000000px;}
._9{margin-left:-13.884000px;}
._a{margin-left:-12.857400px;}
._c{margin-left:-11.710800px;}
._8{margin-left:-9.825960px;}
._7{margin-left:-8.239440px;}
._b{margin-left:-6.463680px;}
._6{margin-left:-4.777680px;}
._4{margin-left:-3.698880px;}
._2{margin-left:-2.527200px;}
._1{margin-left:-1.347840px;}
._0{width:1.010880px;}
._3{width:2.779440px;}
._10{width:3.798480px;}
._5{width:4.866720px;}
._11{width:6.247200px;}
._16{width:8.023200px;}
._e{width:9.240480px;}
._d{width:10.549440px;}
._f{width:12.229200px;}
._24{width:13.326240px;}
._17{width:14.385600px;}
._2a{width:15.440280px;}
._2b{width:16.638480px;}
._1a{width:17.735760px;}
._18{width:19.033920px;}
._19{width:20.638800px;}
._1d{width:21.764400px;}
._15{width:22.783680px;}
._13{width:24.365280px;}
._12{width:25.719120px;}
._14{width:27.006480px;}
._1e{width:28.080480px;}
._28{width:29.407920px;}
._26{width:30.781920px;}
._25{width:32.503680px;}
._27{width:34.030080px;}
._29{width:36.101040px;}
._22{width:37.493280px;}
._23{width:39.460560px;}
._21{width:41.395200px;}
._1f{width:42.878160px;}
._20{width:44.601840px;}
._1b{width:45.891840px;}
._1c{width:46.999440px;}
._2c{width:57.376560px;}
._2d{width:70.899840px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,89,150);}
.fc5{color:rgb(33,33,33);}
.fc4{color:rgb(26,26,26);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:41.040000px;}
.fs7{font-size:47.520000px;}
.fs6{font-size:60.480000px;}
.fs0{font-size:66.960000px;}
.fs1{font-size:71.280000px;}
.fs2{font-size:84.240000px;}
.fs5{font-size:95.040000px;}
.fs3{font-size:110.160000px;}
.fs4{font-size:168.624000px;}
.y14b{bottom:-20.520000px;}
.yd1{bottom:-19.440000px;}
.y0{bottom:0.000000px;}
.y14a{bottom:12.420000px;}
.y6f{bottom:14.040000px;}
.y5a{bottom:14.580000px;}
.y5c{bottom:14.610000px;}
.y68{bottom:14.625000px;}
.y1a{bottom:15.660000px;}
.y21{bottom:15.690000px;}
.y27{bottom:15.705000px;}
.y1c{bottom:16.200000px;}
.y16d{bottom:17.280000px;}
.y106{bottom:17.310000px;}
.yab{bottom:17.316000px;}
.y14c{bottom:17.820000px;}
.y136{bottom:17.856000px;}
.yd0{bottom:20.556000px;}
.y149{bottom:31.860000px;}
.y195{bottom:37.260000px;}
.y197{bottom:37.290000px;}
.y19e{bottom:37.800000px;}
.yaa{bottom:37.839000px;}
.y6e{bottom:44.310000px;}
.y67{bottom:44.325000px;}
.y63{bottom:44.820000px;}
.y65{bottom:44.850000px;}
.y5f{bottom:44.865000px;}
.y96{bottom:46.476000px;}
.y16{bottom:50.250000px;}
.y16b{bottom:111.276000px;}
.ybc{bottom:113.976000px;}
.ya9{bottom:114.516000px;}
.ycf{bottom:115.596000px;}
.y58{bottom:122.616000px;}
.ye7{bottom:123.156000px;}
.y15{bottom:123.195000px;}
.y19c{bottom:125.856000px;}
.y135{bottom:128.556000px;}
.y1c6{bottom:129.672000px;}
.y39{bottom:132.372000px;}
.y104{bottom:135.072000px;}
.y75{bottom:138.852000px;}
.yd8{bottom:141.012000px;}
.y17b{bottom:142.632000px;}
.y1e6{bottom:143.712000px;}
.y125{bottom:144.252000px;}
.ybb{bottom:147.492000px;}
.y184{bottom:148.032000px;}
.y16a{bottom:154.515000px;}
.y10{bottom:155.595000px;}
.ye6{bottom:156.135000px;}
.y19b{bottom:158.835000px;}
.y15d{bottom:159.375000px;}
.y57{bottom:159.915000px;}
.y74{bottom:160.455000px;}
.y198{bottom:163.155000px;}
.y1e5{bottom:164.775000px;}
.y38{bottom:165.315000px;}
.y103{bottom:168.015000px;}
.y1bd{bottom:171.255000px;}
.y134{bottom:173.955000px;}
.y1a9{bottom:175.035000px;}
.y17a{bottom:175.575000px;}
.y124{bottom:177.195000px;}
.yd7{bottom:179.895000px;}
.yba{bottom:180.435000px;}
.y183{bottom:180.975000px;}
.y95{bottom:183.135000px;}
.y147{bottom:185.835000px;}
.y91{bottom:188.535000px;}
.ye5{bottom:189.075000px;}
.y19a{bottom:191.775000px;}
.yce{bottom:195.015000px;}
.yf{bottom:195.555000px;}
.y56{bottom:197.175000px;}
.y1e4{bottom:197.715000px;}
.y37{bottom:198.255000px;}
.y169{bottom:199.335000px;}
.y1c2{bottom:200.955000px;}
.y14{bottom:200.985000px;}
.y193{bottom:204.195000px;}
.y15c{bottom:204.735000px;}
.ya8{bottom:206.895000px;}
.y1a8{bottom:207.975000px;}
.y179{bottom:208.515000px;}
.y123{bottom:210.135000px;}
.y105{bottom:211.215000px;}
.y102{bottom:212.835000px;}
.yb9{bottom:213.405000px;}
.y182{bottom:213.945000px;}
.y94{bottom:216.105000px;}
.y133{bottom:218.805000px;}
.y1c0{bottom:219.345000px;}
.y90{bottom:221.505000px;}
.ye4{bottom:222.045000px;}
.y73{bottom:222.585000px;}
.y10f{bottom:224.745000px;}
.yd6{bottom:225.285000px;}
.y55{bottom:229.065000px;}
.y36{bottom:231.225000px;}
.y1c1{bottom:233.925000px;}
.ye{bottom:236.085000px;}
.y192{bottom:237.165000px;}
.ycd{bottom:239.865000px;}
.y1a7{bottom:240.945000px;}
.y178{bottom:241.485000px;}
.y168{bottom:244.185000px;}
.yb8{bottom:246.345000px;}
.y181{bottom:246.885000px;}
.y93{bottom:249.045000px;}
.y15b{bottom:249.585000px;}
.ya7{bottom:252.285000px;}
.y8f{bottom:253.365000px;}
.y122{bottom:254.985000px;}
.yd5{bottom:258.225000px;}
.y35{bottom:264.165000px;}
.ye3{bottom:266.865000px;}
.y10e{bottom:270.105000px;}
.y191{bottom:270.645000px;}
.y1e3{bottom:272.805000px;}
.y1a6{bottom:273.885000px;}
.yd{bottom:276.045000px;}
.y13{bottom:278.250000px;}
.yb7{bottom:279.285000px;}
.y92{bottom:281.985000px;}
.y8e{bottom:283.605000px;}
.y72{bottom:284.145000px;}
.ycc{bottom:285.225000px;}
.y177{bottom:286.305000px;}
.y121{bottom:287.925000px;}
.y167{bottom:289.545000px;}
.y146{bottom:290.085000px;}
.yd4{bottom:291.165000px;}
.y180{bottom:291.705000px;}
.y54{bottom:293.865000px;}
.y15a{bottom:294.405000px;}
.y34{bottom:297.105000px;}
.ye2{bottom:299.850000px;}
.y199{bottom:303.090000px;}
.y190{bottom:303.630000px;}
.y1a5{bottom:306.870000px;}
.y132{bottom:309.030000px;}
.yb6{bottom:312.270000px;}
.y8d{bottom:314.970000px;}
.yc{bottom:316.050000px;}
.y1b5{bottom:318.210000px;}
.y176{bottom:319.290000px;}
.y101{bottom:320.910000px;}
.y53{bottom:323.070000px;}
.yc4{bottom:324.150000px;}
.y17f{bottom:324.690000px;}
.y33{bottom:330.090000px;}
.ye1{bottom:332.790000px;}
.y19d{bottom:333.330000px;}
.y166{bottom:334.410000px;}
.y145{bottom:335.490000px;}
.y1bc{bottom:336.030000px;}
.y18f{bottom:336.570000px;}
.y159{bottom:339.270000px;}
.y1a4{bottom:339.810000px;}
.ya6{bottom:341.970000px;}
.yb5{bottom:345.210000px;}
.y71{bottom:346.290000px;}
.yb{bottom:346.830000px;}
.y8c{bottom:347.910000px;}
.y1e2{bottom:348.450000px;}
.y1b4{bottom:351.150000px;}
.y52{bottom:352.230000px;}
.y120{bottom:353.850000px;}
.y12{bottom:354.960000px;}
.yc3{bottom:357.090000px;}
.y17e{bottom:357.630000px;}
.y10d{bottom:359.790000px;}
.y32{bottom:363.030000px;}
.ye0{bottom:365.730000px;}
.y1bf{bottom:366.270000px;}
.y165{bottom:367.350000px;}
.y1c5{bottom:368.970000px;}
.y18e{bottom:369.510000px;}
.y1a3{bottom:372.750000px;}
.ycb{bottom:374.910000px;}
.yb4{bottom:378.150000px;}
.y144{bottom:380.310000px;}
.y8b{bottom:380.850000px;}
.y51{bottom:381.390000px;}
.y1b3{bottom:384.120000px;}
.y158{bottom:384.660000px;}
.y175{bottom:385.200000px;}
.ya5{bottom:386.820000px;}
.ya{bottom:389.520000px;}
.yc2{bottom:390.060000px;}
.y1e1{bottom:390.600000px;}
.y17d{bottom:392.760000px;}
.y31{bottom:396.000000px;}
.ydf{bottom:398.700000px;}
.y1be{bottom:399.240000px;}
.y164{bottom:400.320000px;}
.y1c4{bottom:401.940000px;}
.y18d{bottom:402.480000px;}
.y10c{bottom:405.180000px;}
.y1a2{bottom:405.720000px;}
.yd3{bottom:407.880000px;}
.y70{bottom:408.420000px;}
.y50{bottom:410.580000px;}
.yb3{bottom:411.120000px;}
.y8a{bottom:413.820000px;}
.y1b2{bottom:417.060000px;}
.y174{bottom:418.680000px;}
.yca{bottom:419.760000px;}
.yc1{bottom:423.000000px;}
.y1e0{bottom:423.540000px;}
.y143{bottom:425.160000px;}
.y9{bottom:425.700000px;}
.y30{bottom:428.940000px;}
.y157{bottom:429.480000px;}
.ya4{bottom:432.180000px;}
.y1c3{bottom:434.880000px;}
.y18c{bottom:435.420000px;}
.y1a1{bottom:438.660000px;}
.y4f{bottom:439.740000px;}
.y6d{bottom:440.280000px;}
.yde{bottom:444.060000px;}
.y1df{bottom:444.600000px;}
.y163{bottom:445.140000px;}
.y1fd{bottom:445.680000px;}
.y89{bottom:446.760000px;}
.y10b{bottom:450.000000px;}
.yf6{bottom:452.700000px;}
.yb2{bottom:455.940000px;}
.y2f{bottom:461.880000px;}
.y173{bottom:463.500000px;}
.y11{bottom:464.580000px;}
.y8{bottom:465.120000px;}
.y1de{bottom:465.660000px;}
.yd2{bottom:467.850000px;}
.y18b{bottom:468.390000px;}
.y4e{bottom:468.930000px;}
.y142{bottom:470.550000px;}
.y156{bottom:474.330000px;}
.ya3{bottom:477.030000px;}
.y1a0{bottom:477.570000px;}
.y162{bottom:478.110000px;}
.y88{bottom:479.730000px;}
.y100{bottom:482.970000px;}
.yf5{bottom:485.670000px;}
.yb1{bottom:488.910000px;}
.y2e{bottom:494.850000px;}
.y172{bottom:496.470000px;}
.y11f{bottom:498.090000px;}
.y4d{bottom:498.630000px;}
.yc0{bottom:500.790000px;}
.y18a{bottom:501.330000px;}
.yc9{bottom:509.970000px;}
.y161{bottom:511.050000px;}
.y87{bottom:513.210000px;}
.y141{bottom:515.370000px;}
.y1b1{bottom:515.910000px;}
.y6c{bottom:517.530000px;}
.yf4{bottom:518.610000px;}
.y155{bottom:519.150000px;}
.y1dd{bottom:519.690000px;}
.ya2{bottom:521.850000px;}
.y19f{bottom:522.390000px;}
.y1bb{bottom:525.090000px;}
.y2d{bottom:527.790000px;}
.y11e{bottom:531.030000px;}
.y1fc{bottom:532.110000px;}
.ybf{bottom:533.730000px;}
.y189{bottom:534.270000px;}
.yff{bottom:536.970000px;}
.y10a{bottom:539.670000px;}
.y1dc{bottom:540.750000px;}
.y171{bottom:541.290000px;}
.ydd{bottom:542.910000px;}
.y160{bottom:543.990000px;}
.y86{bottom:546.150000px;}
.y1b0{bottom:548.850000px;}
.y1fb{bottom:553.215000px;}
.ya1{bottom:554.835000px;}
.y4c{bottom:556.995000px;}
.yf3{bottom:558.075000px;}
.y140{bottom:560.235000px;}
.y2c{bottom:560.775000px;}
.y6b{bottom:562.395000px;}
.y154{bottom:564.555000px;}
.ybe{bottom:566.715000px;}
.y188{bottom:567.255000px;}
.y1aa{bottom:567.795000px;}
.yfe{bottom:569.955000px;}
.y1db{bottom:573.735000px;}
.y170{bottom:574.275000px;}
.y11d{bottom:575.895000px;}
.y15f{bottom:576.975000px;}
.y131{bottom:578.595000px;}
.y85{bottom:579.135000px;}
.y6a{bottom:581.295000px;}
.y1af{bottom:581.835000px;}
.y109{bottom:585.075000px;}
.y4b{bottom:586.155000px;}
.ya0{bottom:587.775000px;}
.y1ba{bottom:591.015000px;}
.y2b{bottom:593.715000px;}
.y1da{bottom:594.795000px;}
.y1fa{bottom:595.335000px;}
.ybd{bottom:599.655000px;}
.yf2{bottom:602.895000px;}
.y13f{bottom:605.055000px;}
.y187{bottom:606.135000px;}
.y16f{bottom:607.215000px;}
.y11c{bottom:608.835000px;}
.y153{bottom:609.375000px;}
.y84{bottom:612.075000px;}
.y196{bottom:613.155000px;}
.y1ae{bottom:614.775000px;}
.y4a{bottom:615.315000px;}
.y1f9{bottom:616.395000px;}
.yb0{bottom:620.715000px;}
.y130{bottom:623.955000px;}
.y2a{bottom:626.655000px;}
.y1d9{bottom:627.735000px;}
.y108{bottom:629.895000px;}
.y9f{bottom:632.595000px;}
.yf1{bottom:635.865000px;}
.y13e{bottom:638.025000px;}
.y15e{bottom:639.645000px;}
.y11b{bottom:641.805000px;}
.y69{bottom:643.425000px;}
.y49{bottom:644.505000px;}
.y83{bottom:645.045000px;}
.y16e{bottom:646.665000px;}
.y1ad{bottom:647.745000px;}
.y1d8{bottom:648.825000px;}
.y186{bottom:650.985000px;}
.yc8{bottom:653.685000px;}
.y12f{bottom:656.925000px;}
.y1f8{bottom:658.005000px;}
.y29{bottom:659.625000px;}
.y9e{bottom:665.565000px;}
.yf0{bottom:668.805000px;}
.y1d7{bottom:669.885000px;}
.y13d{bottom:670.965000px;}
.y48{bottom:673.665000px;}
.y107{bottom:674.745000px;}
.y82{bottom:677.985000px;}
.y1f7{bottom:679.065000px;}
.y1ac{bottom:680.685000px;}
.yc7{bottom:686.625000px;}
.y12e{bottom:689.865000px;}
.y1d6{bottom:690.945000px;}
.y28{bottom:692.565000px;}
.ydc{bottom:698.505000px;}
.y9d{bottom:699.045000px;}
.y1f6{bottom:700.125000px;}
.y1b9{bottom:701.745000px;}
.y47{bottom:703.365000px;}
.y13c{bottom:703.905000px;}
.y66{bottom:705.525000px;}
.yef{bottom:707.685000px;}
.y81{bottom:710.925000px;}
.y26{bottom:711.465000px;}
.y1ab{bottom:713.625000px;}
.yc6{bottom:719.610000px;}
.yfd{bottom:722.850000px;}
.y1d5{bottom:724.470000px;}
.y152{bottom:725.550000px;}
.ydb{bottom:731.490000px;}
.y9c{bottom:732.030000px;}
.y46{bottom:732.570000px;}
.y1b8{bottom:734.730000px;}
.y1f5{bottom:742.290000px;}
.y80{bottom:743.910000px;}
.y1d4{bottom:745.530000px;}
.y25{bottom:746.070000px;}
.y11a{bottom:746.610000px;}
.y13b{bottom:749.310000px;}
.yee{bottom:752.550000px;}
.yfc{bottom:755.790000px;}
.y151{bottom:758.490000px;}
.y45{bottom:761.730000px;}
.y1f4{bottom:763.350000px;}
.y9b{bottom:764.970000px;}
.y64{bottom:767.130000px;}
.y1b7{bottom:767.670000px;}
.y7f{bottom:776.850000px;}
.y1d3{bottom:778.470000px;}
.y24{bottom:780.630000px;}
.y1f3{bottom:784.410000px;}
.yed{bottom:785.490000px;}
.yfb{bottom:788.730000px;}
.y44{bottom:790.890000px;}
.y119{bottom:791.970000px;}
.y13a{bottom:794.130000px;}
.y9a{bottom:797.910000px;}
.y1d2{bottom:799.530000px;}
.y12d{bottom:800.610000px;}
.yda{bottom:803.880000px;}
.y1f2{bottom:805.500000px;}
.y1b6{bottom:806.580000px;}
.y7e{bottom:809.820000px;}
.y23{bottom:815.220000px;}
.yec{bottom:818.460000px;}
.y43{bottom:820.080000px;}
.yfa{bottom:821.700000px;}
.y118{bottom:824.940000px;}
.y1f1{bottom:826.560000px;}
.y62{bottom:829.260000px;}
.y99{bottom:830.880000px;}
.y1d1{bottom:832.500000px;}
.y12c{bottom:833.580000px;}
.y150{bottom:836.820000px;}
.y139{bottom:838.980000px;}
.y7d{bottom:842.760000px;}
.y1f0{bottom:847.620000px;}
.yd9{bottom:848.700000px;}
.y22{bottom:849.240000px;}
.yeb{bottom:851.400000px;}
.y1d0{bottom:853.560000px;}
.yf9{bottom:854.640000px;}
.y117{bottom:857.880000px;}
.y98{bottom:863.820000px;}
.y1ef{bottom:868.680000px;}
.y14f{bottom:869.760000px;}
.y7{bottom:871.380000px;}
.y1cf{bottom:874.620000px;}
.y7c{bottom:875.700000px;}
.y42{bottom:878.400000px;}
.y20{bottom:883.800000px;}
.yea{bottom:884.880000px;}
.yf8{bottom:887.610000px;}
.y1ee{bottom:889.770000px;}
.y116{bottom:890.850000px;}
.y61{bottom:891.390000px;}
.y97{bottom:896.790000px;}
.y14e{bottom:902.730000px;}
.y6{bottom:907.590000px;}
.y41{bottom:908.130000px;}
.y7b{bottom:908.670000px;}
.y1ed{bottom:910.830000px;}
.y12b{bottom:911.370000px;}
.ye9{bottom:917.850000px;}
.y1f{bottom:918.390000px;}
.yf7{bottom:920.550000px;}
.y60{bottom:922.710000px;}
.y115{bottom:923.790000px;}
.y1ce{bottom:928.650000px;}
.y138{bottom:929.190000px;}
.yaf{bottom:929.730000px;}
.y1ec{bottom:931.890000px;}
.y185{bottom:932.970000px;}
.y14d{bottom:935.670000px;}
.y40{bottom:937.290000px;}
.y7a{bottom:941.610000px;}
.y1cd{bottom:949.710000px;}
.ye8{bottom:950.790000px;}
.y1e{bottom:952.950000px;}
.y5{bottom:954.030000px;}
.y5e{bottom:954.570000px;}
.y12a{bottom:956.730000px;}
.yae{bottom:962.670000px;}
.y3f{bottom:967.530000px;}
.y114{bottom:968.610000px;}
.y137{bottom:974.055000px;}
.y79{bottom:974.595000px;}
.y16c{bottom:981.615000px;}
.y1cc{bottom:982.695000px;}
.y1d{bottom:987.555000px;}
.y129{bottom:989.715000px;}
.y1eb{bottom:995.115000px;}
.yad{bottom:995.655000px;}
.y3e{bottom:998.355000px;}
.y4{bottom:998.895000px;}
.y113{bottom:1001.595000px;}
.y1cb{bottom:1003.755000px;}
.y148{bottom:1005.375000px;}
.y78{bottom:1007.535000px;}
.y1ea{bottom:1016.175000px;}
.y5d{bottom:1016.715000px;}
.y1b{bottom:1021.575000px;}
.y128{bottom:1022.655000px;}
.y1ca{bottom:1024.815000px;}
.yac{bottom:1028.595000px;}
.y3d{bottom:1029.135000px;}
.y112{bottom:1034.535000px;}
.y3{bottom:1035.075000px;}
.y1e9{bottom:1037.235000px;}
.y77{bottom:1040.475000px;}
.y5b{bottom:1048.035000px;}
.y127{bottom:1055.625000px;}
.y19{bottom:1056.165000px;}
.y1c9{bottom:1058.325000px;}
.y3c{bottom:1059.945000px;}
.yc5{bottom:1061.565000px;}
.y111{bottom:1067.505000px;}
.y76{bottom:1073.445000px;}
.y2{bottom:1074.525000px;}
.y1c8{bottom:1079.385000px;}
.y59{bottom:1079.925000px;}
.y3b{bottom:1090.725000px;}
.y126{bottom:1094.505000px;}
.y194{bottom:1099.365000px;}
.y110{bottom:1100.445000px;}
.y1{bottom:1102.065000px;}
.y18{bottom:1106.385000px;}
.y1c7{bottom:1111.245000px;}
.y3a{bottom:1113.945000px;}
.y17c{bottom:1118.805000px;}
.y1e8{bottom:1121.505000px;}
.y17{bottom:1139.325000px;}
.y1e7{bottom:1142.610000px;}
.he{height:30.240000px;}
.hf{height:30.276000px;}
.h1f{height:31.320000px;}
.h18{height:31.356000px;}
.h1e{height:31.860000px;}
.h1b{height:31.896000px;}
.ha{height:32.940000px;}
.hd{height:32.976000px;}
.hc{height:33.480000px;}
.h16{height:34.596000px;}
.h1c{height:45.900000px;}
.h24{height:46.275469px;}
.h20{height:51.336000px;}
.h21{height:51.840000px;}
.h14{height:51.876000px;}
.h15{height:52.890469px;}
.h2{height:58.557305px;}
.h9{height:58.785117px;}
.h11{height:59.976000px;}
.h12{height:60.480000px;}
.h10{height:60.516000px;}
.hb{height:62.335195px;}
.h17{height:63.156797px;}
.h23{height:63.276797px;}
.h22{height:63.969961px;}
.h19{height:65.717578px;}
.h13{height:69.473320px;}
.h1d{height:69.837188px;}
.h8{height:69.980625px;}
.h1a{height:73.668867px;}
.h3{height:74.342813px;}
.h6{height:81.113906px;}
.h4{height:87.859687px;}
.h7{height:138.242039px;}
.h5{height:383.580000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w8{width:40.536000px;}
.w6{width:83.232000px;}
.w4{width:146.988000px;}
.w5{width:486.825000px;}
.w7{width:508.425000px;}
.wb{width:541.410000px;}
.wa{width:594.360000px;}
.we{width:640.830000px;}
.w9{width:647.310000px;}
.wf{width:653.790000px;}
.wd{width:671.610000px;}
.wc{width:672.150000px;}
.w3{width:724.065000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:7.560000px;}
.x1e{left:10.800000px;}
.x1a{left:11.880000px;}
.x19{left:16.200000px;}
.x10{left:22.176000px;}
.xf{left:67.569000px;}
.x6{left:84.815987px;}
.x2f{left:104.292000px;}
.x2d{left:105.912000px;}
.x2e{left:106.992000px;}
.x27{left:108.072000px;}
.x2c{left:110.772000px;}
.x29{left:114.552000px;}
.x22{left:116.712000px;}
.x28{left:117.792000px;}
.x2b{left:121.032000px;}
.x1f{left:122.652000px;}
.x1d{left:124.272000px;}
.x3{left:126.971987px;}
.x13{left:129.132000px;}
.x16{left:144.251987px;}
.x1c{left:154.544987px;}
.x4{left:159.944987px;}
.x20{left:181.544987px;}
.x11{left:204.804000px;}
.x30{left:208.589987px;}
.x17{left:213.990000px;}
.x5{left:220.469987px;}
.x15{left:277.740000px;}
.x12{left:362.049000px;}
.xc{left:565.199987px;}
.x1{left:592.739987px;}
.xb{left:603.539987px;}
.xa{left:620.279987px;}
.x9{left:622.439987px;}
.xe{left:661.349987px;}
.x7{left:668.909987px;}
.x26{left:680.789987px;}
.x23{left:687.314987px;}
.x25{left:700.274987px;}
.xd{left:705.674987px;}
.x18{left:724.035000px;}
.x21{left:728.354987px;}
.x24{left:748.904987px;}
.x1b{left:757.544987px;}
.x2a{left:765.644987px;}
.x8{left:798.584987px;}
.x2{left:809.429987px;}
@media print{
.v3{vertical-align:-19.200000pt;}
.v1{vertical-align:-5.760000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.200000pt;}
.v4{vertical-align:24.960000pt;}
.lsc{letter-spacing:-1.376000pt;}
.ls1{letter-spacing:-1.312000pt;}
.ls21{letter-spacing:-0.832000pt;}
.ls1d{letter-spacing:-0.752000pt;}
.ls1c{letter-spacing:-0.736000pt;}
.ls10{letter-spacing:-0.624000pt;}
.lsf{letter-spacing:-0.608000pt;}
.ls20{letter-spacing:-0.480000pt;}
.ls40{letter-spacing:-0.376533pt;}
.ls28{letter-spacing:-0.358933pt;}
.ls2d{letter-spacing:-0.295467pt;}
.ls38{letter-spacing:-0.282133pt;}
.ls23{letter-spacing:-0.199467pt;}
.ls4b{letter-spacing:-0.107733pt;}
.lsd{letter-spacing:-0.082667pt;}
.lsa{letter-spacing:-0.023040pt;}
.ls0{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.001920pt;}
.ls4a{letter-spacing:0.069333pt;}
.ls16{letter-spacing:0.073067pt;}
.ls43{letter-spacing:0.078933pt;}
.ls29{letter-spacing:0.098133pt;}
.ls47{letter-spacing:0.107520pt;}
.ls19{letter-spacing:0.186133pt;}
.ls49{letter-spacing:0.214187pt;}
.ls35{letter-spacing:0.284267pt;}
.ls6{letter-spacing:0.361067pt;}
.ls2a{letter-spacing:0.370667pt;}
.ls15{letter-spacing:0.434133pt;}
.ls13{letter-spacing:0.443520pt;}
.ls3f{letter-spacing:0.477867pt;}
.ls30{letter-spacing:0.480000pt;}
.ls4{letter-spacing:0.485867pt;}
.ls14{letter-spacing:0.516267pt;}
.ls39{letter-spacing:0.516480pt;}
.ls34{letter-spacing:0.522133pt;}
.lsb{letter-spacing:0.544000pt;}
.ls2e{letter-spacing:0.549333pt;}
.ls3{letter-spacing:0.570667pt;}
.ls5{letter-spacing:0.752000pt;}
.ls32{letter-spacing:0.778667pt;}
.ls1e{letter-spacing:0.789333pt;}
.ls48{letter-spacing:0.829440pt;}
.lse{letter-spacing:1.040640pt;}
.ls1a{letter-spacing:1.088000pt;}
.ls41{letter-spacing:1.147307pt;}
.ls31{letter-spacing:1.200640pt;}
.ls11{letter-spacing:1.312000pt;}
.ls1b{letter-spacing:1.313280pt;}
.ls36{letter-spacing:1.354667pt;}
.ls26{letter-spacing:1.440000pt;}
.ls2{letter-spacing:1.621333pt;}
.ls37{letter-spacing:1.637333pt;}
.ls27{letter-spacing:1.712000pt;}
.ls2b{letter-spacing:1.731840pt;}
.ls2f{letter-spacing:1.920000pt;}
.ls2c{letter-spacing:1.921920pt;}
.ls45{letter-spacing:2.000000pt;}
.ls42{letter-spacing:2.016000pt;}
.ls3a{letter-spacing:2.106667pt;}
.ls3e{letter-spacing:2.234667pt;}
.ls17{letter-spacing:2.352000pt;}
.ls3c{letter-spacing:2.437333pt;}
.ls3b{letter-spacing:2.528000pt;}
.ls22{letter-spacing:2.672000pt;}
.ls33{letter-spacing:2.698667pt;}
.ls3d{letter-spacing:6.800640pt;}
.ls44{letter-spacing:12.560640pt;}
.ls12{letter-spacing:28.465920pt;}
.ls46{letter-spacing:30.385920pt;}
.ls7{letter-spacing:58.757973pt;}
.ls24{letter-spacing:59.185920pt;}
.ls1f{letter-spacing:74.705920pt;}
.ls8{letter-spacing:93.200640pt;}
.ls9{letter-spacing:118.320640pt;}
.ls25{letter-spacing:122.705920pt;}
.ws5{word-spacing:-42.539307pt;}
.ws4{word-spacing:-41.968640pt;}
.ws2{word-spacing:-22.437973pt;}
.ws1{word-spacing:-20.816640pt;}
.ws0{word-spacing:-19.504640pt;}
.ws3{word-spacing:-17.614080pt;}
.ws14{word-spacing:-16.671360pt;}
.ws28{word-spacing:-16.426027pt;}
.ws2e{word-spacing:-16.319360pt;}
.ws21{word-spacing:-16.239360pt;}
.ws25{word-spacing:-15.956693pt;}
.ws24{word-spacing:-15.674027pt;}
.ws1a{word-spacing:-15.108693pt;}
.ws22{word-spacing:-15.098027pt;}
.ws8{word-spacing:-15.071360pt;}
.ws11{word-spacing:-14.835627pt;}
.ws7{word-spacing:-14.805227pt;}
.ws16{word-spacing:-14.762880pt;}
.ws12{word-spacing:-14.753493pt;}
.ws29{word-spacing:-14.690027pt;}
.ws17{word-spacing:-14.505493pt;}
.ws27{word-spacing:-14.417493pt;}
.ws2c{word-spacing:-14.398293pt;}
.ws13{word-spacing:-14.392427pt;}
.ws15{word-spacing:-14.321280pt;}
.ws10{word-spacing:-14.319360pt;}
.ws1c{word-spacing:-14.119893pt;}
.ws26{word-spacing:-14.037227pt;}
.wsc{word-spacing:-13.995520pt;}
.ws1d{word-spacing:-13.960427pt;}
.ws9{word-spacing:-13.812587pt;}
.wse{word-spacing:-13.711360pt;}
.wsf{word-spacing:-13.695360pt;}
.ws1b{word-spacing:-13.487360pt;}
.wsb{word-spacing:-13.451520pt;}
.wsa{word-spacing:-13.428480pt;}
.ws23{word-spacing:-12.434027pt;}
.ws2f{word-spacing:-12.219093pt;}
.ws2a{word-spacing:-12.149760pt;}
.wsd{word-spacing:-12.075520pt;}
.ws30{word-spacing:-12.042027pt;}
.ws2b{word-spacing:-11.773227pt;}
.ws18{word-spacing:-11.413760pt;}
.ws19{word-spacing:-11.397760pt;}
.ws20{word-spacing:-10.095573pt;}
.ws1e{word-spacing:-9.546240pt;}
.ws1f{word-spacing:-9.250773pt;}
.ws2d{word-spacing:-8.244480pt;}
.ws6{word-spacing:0.000000pt;}
._9{margin-left:-12.341333pt;}
._a{margin-left:-11.428800pt;}
._c{margin-left:-10.409600pt;}
._8{margin-left:-8.734187pt;}
._7{margin-left:-7.323947pt;}
._b{margin-left:-5.745493pt;}
._6{margin-left:-4.246827pt;}
._4{margin-left:-3.287893pt;}
._2{margin-left:-2.246400pt;}
._1{margin-left:-1.198080pt;}
._0{width:0.898560pt;}
._3{width:2.470613pt;}
._10{width:3.376427pt;}
._5{width:4.325973pt;}
._11{width:5.553067pt;}
._16{width:7.131733pt;}
._e{width:8.213760pt;}
._d{width:9.377280pt;}
._f{width:10.870400pt;}
._24{width:11.845547pt;}
._17{width:12.787200pt;}
._2a{width:13.724693pt;}
._2b{width:14.789760pt;}
._1a{width:15.765120pt;}
._18{width:16.919040pt;}
._19{width:18.345600pt;}
._1d{width:19.346133pt;}
._15{width:20.252160pt;}
._13{width:21.658027pt;}
._12{width:22.861440pt;}
._14{width:24.005760pt;}
._1e{width:24.960427pt;}
._28{width:26.140373pt;}
._26{width:27.361707pt;}
._25{width:28.892160pt;}
._27{width:30.248960pt;}
._29{width:32.089813pt;}
._22{width:33.327360pt;}
._23{width:35.076053pt;}
._21{width:36.795733pt;}
._1f{width:38.113920pt;}
._20{width:39.646080pt;}
._1b{width:40.792747pt;}
._1c{width:41.777280pt;}
._2c{width:51.001387pt;}
._2d{width:63.022080pt;}
.fs8{font-size:36.480000pt;}
.fs7{font-size:42.240000pt;}
.fs6{font-size:53.760000pt;}
.fs0{font-size:59.520000pt;}
.fs1{font-size:63.360000pt;}
.fs2{font-size:74.880000pt;}
.fs5{font-size:84.480000pt;}
.fs3{font-size:97.920000pt;}
.fs4{font-size:149.888000pt;}
.y14b{bottom:-18.240000pt;}
.yd1{bottom:-17.280000pt;}
.y0{bottom:0.000000pt;}
.y14a{bottom:11.040000pt;}
.y6f{bottom:12.480000pt;}
.y5a{bottom:12.960000pt;}
.y5c{bottom:12.986667pt;}
.y68{bottom:13.000000pt;}
.y1a{bottom:13.920000pt;}
.y21{bottom:13.946667pt;}
.y27{bottom:13.960000pt;}
.y1c{bottom:14.400000pt;}
.y16d{bottom:15.360000pt;}
.y106{bottom:15.386667pt;}
.yab{bottom:15.392000pt;}
.y14c{bottom:15.840000pt;}
.y136{bottom:15.872000pt;}
.yd0{bottom:18.272000pt;}
.y149{bottom:28.320000pt;}
.y195{bottom:33.120000pt;}
.y197{bottom:33.146667pt;}
.y19e{bottom:33.600000pt;}
.yaa{bottom:33.634667pt;}
.y6e{bottom:39.386667pt;}
.y67{bottom:39.400000pt;}
.y63{bottom:39.840000pt;}
.y65{bottom:39.866667pt;}
.y5f{bottom:39.880000pt;}
.y96{bottom:41.312000pt;}
.y16{bottom:44.666667pt;}
.y16b{bottom:98.912000pt;}
.ybc{bottom:101.312000pt;}
.ya9{bottom:101.792000pt;}
.ycf{bottom:102.752000pt;}
.y58{bottom:108.992000pt;}
.ye7{bottom:109.472000pt;}
.y15{bottom:109.506667pt;}
.y19c{bottom:111.872000pt;}
.y135{bottom:114.272000pt;}
.y1c6{bottom:115.264000pt;}
.y39{bottom:117.664000pt;}
.y104{bottom:120.064000pt;}
.y75{bottom:123.424000pt;}
.yd8{bottom:125.344000pt;}
.y17b{bottom:126.784000pt;}
.y1e6{bottom:127.744000pt;}
.y125{bottom:128.224000pt;}
.ybb{bottom:131.104000pt;}
.y184{bottom:131.584000pt;}
.y16a{bottom:137.346667pt;}
.y10{bottom:138.306667pt;}
.ye6{bottom:138.786667pt;}
.y19b{bottom:141.186667pt;}
.y15d{bottom:141.666667pt;}
.y57{bottom:142.146667pt;}
.y74{bottom:142.626667pt;}
.y198{bottom:145.026667pt;}
.y1e5{bottom:146.466667pt;}
.y38{bottom:146.946667pt;}
.y103{bottom:149.346667pt;}
.y1bd{bottom:152.226667pt;}
.y134{bottom:154.626667pt;}
.y1a9{bottom:155.586667pt;}
.y17a{bottom:156.066667pt;}
.y124{bottom:157.506667pt;}
.yd7{bottom:159.906667pt;}
.yba{bottom:160.386667pt;}
.y183{bottom:160.866667pt;}
.y95{bottom:162.786667pt;}
.y147{bottom:165.186667pt;}
.y91{bottom:167.586667pt;}
.ye5{bottom:168.066667pt;}
.y19a{bottom:170.466667pt;}
.yce{bottom:173.346667pt;}
.yf{bottom:173.826667pt;}
.y56{bottom:175.266667pt;}
.y1e4{bottom:175.746667pt;}
.y37{bottom:176.226667pt;}
.y169{bottom:177.186667pt;}
.y1c2{bottom:178.626667pt;}
.y14{bottom:178.653333pt;}
.y193{bottom:181.506667pt;}
.y15c{bottom:181.986667pt;}
.ya8{bottom:183.906667pt;}
.y1a8{bottom:184.866667pt;}
.y179{bottom:185.346667pt;}
.y123{bottom:186.786667pt;}
.y105{bottom:187.746667pt;}
.y102{bottom:189.186667pt;}
.yb9{bottom:189.693333pt;}
.y182{bottom:190.173333pt;}
.y94{bottom:192.093333pt;}
.y133{bottom:194.493333pt;}
.y1c0{bottom:194.973333pt;}
.y90{bottom:196.893333pt;}
.ye4{bottom:197.373333pt;}
.y73{bottom:197.853333pt;}
.y10f{bottom:199.773333pt;}
.yd6{bottom:200.253333pt;}
.y55{bottom:203.613333pt;}
.y36{bottom:205.533333pt;}
.y1c1{bottom:207.933333pt;}
.ye{bottom:209.853333pt;}
.y192{bottom:210.813333pt;}
.ycd{bottom:213.213333pt;}
.y1a7{bottom:214.173333pt;}
.y178{bottom:214.653333pt;}
.y168{bottom:217.053333pt;}
.yb8{bottom:218.973333pt;}
.y181{bottom:219.453333pt;}
.y93{bottom:221.373333pt;}
.y15b{bottom:221.853333pt;}
.ya7{bottom:224.253333pt;}
.y8f{bottom:225.213333pt;}
.y122{bottom:226.653333pt;}
.yd5{bottom:229.533333pt;}
.y35{bottom:234.813333pt;}
.ye3{bottom:237.213333pt;}
.y10e{bottom:240.093333pt;}
.y191{bottom:240.573333pt;}
.y1e3{bottom:242.493333pt;}
.y1a6{bottom:243.453333pt;}
.yd{bottom:245.373333pt;}
.y13{bottom:247.333333pt;}
.yb7{bottom:248.253333pt;}
.y92{bottom:250.653333pt;}
.y8e{bottom:252.093333pt;}
.y72{bottom:252.573333pt;}
.ycc{bottom:253.533333pt;}
.y177{bottom:254.493333pt;}
.y121{bottom:255.933333pt;}
.y167{bottom:257.373333pt;}
.y146{bottom:257.853333pt;}
.yd4{bottom:258.813333pt;}
.y180{bottom:259.293333pt;}
.y54{bottom:261.213333pt;}
.y15a{bottom:261.693333pt;}
.y34{bottom:264.093333pt;}
.ye2{bottom:266.533333pt;}
.y199{bottom:269.413333pt;}
.y190{bottom:269.893333pt;}
.y1a5{bottom:272.773333pt;}
.y132{bottom:274.693333pt;}
.yb6{bottom:277.573333pt;}
.y8d{bottom:279.973333pt;}
.yc{bottom:280.933333pt;}
.y1b5{bottom:282.853333pt;}
.y176{bottom:283.813333pt;}
.y101{bottom:285.253333pt;}
.y53{bottom:287.173333pt;}
.yc4{bottom:288.133333pt;}
.y17f{bottom:288.613333pt;}
.y33{bottom:293.413333pt;}
.ye1{bottom:295.813333pt;}
.y19d{bottom:296.293333pt;}
.y166{bottom:297.253333pt;}
.y145{bottom:298.213333pt;}
.y1bc{bottom:298.693333pt;}
.y18f{bottom:299.173333pt;}
.y159{bottom:301.573333pt;}
.y1a4{bottom:302.053333pt;}
.ya6{bottom:303.973333pt;}
.yb5{bottom:306.853333pt;}
.y71{bottom:307.813333pt;}
.yb{bottom:308.293333pt;}
.y8c{bottom:309.253333pt;}
.y1e2{bottom:309.733333pt;}
.y1b4{bottom:312.133333pt;}
.y52{bottom:313.093333pt;}
.y120{bottom:314.533333pt;}
.y12{bottom:315.520000pt;}
.yc3{bottom:317.413333pt;}
.y17e{bottom:317.893333pt;}
.y10d{bottom:319.813333pt;}
.y32{bottom:322.693333pt;}
.ye0{bottom:325.093333pt;}
.y1bf{bottom:325.573333pt;}
.y165{bottom:326.533333pt;}
.y1c5{bottom:327.973333pt;}
.y18e{bottom:328.453333pt;}
.y1a3{bottom:331.333333pt;}
.ycb{bottom:333.253333pt;}
.yb4{bottom:336.133333pt;}
.y144{bottom:338.053333pt;}
.y8b{bottom:338.533333pt;}
.y51{bottom:339.013333pt;}
.y1b3{bottom:341.440000pt;}
.y158{bottom:341.920000pt;}
.y175{bottom:342.400000pt;}
.ya5{bottom:343.840000pt;}
.ya{bottom:346.240000pt;}
.yc2{bottom:346.720000pt;}
.y1e1{bottom:347.200000pt;}
.y17d{bottom:349.120000pt;}
.y31{bottom:352.000000pt;}
.ydf{bottom:354.400000pt;}
.y1be{bottom:354.880000pt;}
.y164{bottom:355.840000pt;}
.y1c4{bottom:357.280000pt;}
.y18d{bottom:357.760000pt;}
.y10c{bottom:360.160000pt;}
.y1a2{bottom:360.640000pt;}
.yd3{bottom:362.560000pt;}
.y70{bottom:363.040000pt;}
.y50{bottom:364.960000pt;}
.yb3{bottom:365.440000pt;}
.y8a{bottom:367.840000pt;}
.y1b2{bottom:370.720000pt;}
.y174{bottom:372.160000pt;}
.yca{bottom:373.120000pt;}
.yc1{bottom:376.000000pt;}
.y1e0{bottom:376.480000pt;}
.y143{bottom:377.920000pt;}
.y9{bottom:378.400000pt;}
.y30{bottom:381.280000pt;}
.y157{bottom:381.760000pt;}
.ya4{bottom:384.160000pt;}
.y1c3{bottom:386.560000pt;}
.y18c{bottom:387.040000pt;}
.y1a1{bottom:389.920000pt;}
.y4f{bottom:390.880000pt;}
.y6d{bottom:391.360000pt;}
.yde{bottom:394.720000pt;}
.y1df{bottom:395.200000pt;}
.y163{bottom:395.680000pt;}
.y1fd{bottom:396.160000pt;}
.y89{bottom:397.120000pt;}
.y10b{bottom:400.000000pt;}
.yf6{bottom:402.400000pt;}
.yb2{bottom:405.280000pt;}
.y2f{bottom:410.560000pt;}
.y173{bottom:412.000000pt;}
.y11{bottom:412.960000pt;}
.y8{bottom:413.440000pt;}
.y1de{bottom:413.920000pt;}
.yd2{bottom:415.866667pt;}
.y18b{bottom:416.346667pt;}
.y4e{bottom:416.826667pt;}
.y142{bottom:418.266667pt;}
.y156{bottom:421.626667pt;}
.ya3{bottom:424.026667pt;}
.y1a0{bottom:424.506667pt;}
.y162{bottom:424.986667pt;}
.y88{bottom:426.426667pt;}
.y100{bottom:429.306667pt;}
.yf5{bottom:431.706667pt;}
.yb1{bottom:434.586667pt;}
.y2e{bottom:439.866667pt;}
.y172{bottom:441.306667pt;}
.y11f{bottom:442.746667pt;}
.y4d{bottom:443.226667pt;}
.yc0{bottom:445.146667pt;}
.y18a{bottom:445.626667pt;}
.yc9{bottom:453.306667pt;}
.y161{bottom:454.266667pt;}
.y87{bottom:456.186667pt;}
.y141{bottom:458.106667pt;}
.y1b1{bottom:458.586667pt;}
.y6c{bottom:460.026667pt;}
.yf4{bottom:460.986667pt;}
.y155{bottom:461.466667pt;}
.y1dd{bottom:461.946667pt;}
.ya2{bottom:463.866667pt;}
.y19f{bottom:464.346667pt;}
.y1bb{bottom:466.746667pt;}
.y2d{bottom:469.146667pt;}
.y11e{bottom:472.026667pt;}
.y1fc{bottom:472.986667pt;}
.ybf{bottom:474.426667pt;}
.y189{bottom:474.906667pt;}
.yff{bottom:477.306667pt;}
.y10a{bottom:479.706667pt;}
.y1dc{bottom:480.666667pt;}
.y171{bottom:481.146667pt;}
.ydd{bottom:482.586667pt;}
.y160{bottom:483.546667pt;}
.y86{bottom:485.466667pt;}
.y1b0{bottom:487.866667pt;}
.y1fb{bottom:491.746667pt;}
.ya1{bottom:493.186667pt;}
.y4c{bottom:495.106667pt;}
.yf3{bottom:496.066667pt;}
.y140{bottom:497.986667pt;}
.y2c{bottom:498.466667pt;}
.y6b{bottom:499.906667pt;}
.y154{bottom:501.826667pt;}
.ybe{bottom:503.746667pt;}
.y188{bottom:504.226667pt;}
.y1aa{bottom:504.706667pt;}
.yfe{bottom:506.626667pt;}
.y1db{bottom:509.986667pt;}
.y170{bottom:510.466667pt;}
.y11d{bottom:511.906667pt;}
.y15f{bottom:512.866667pt;}
.y131{bottom:514.306667pt;}
.y85{bottom:514.786667pt;}
.y6a{bottom:516.706667pt;}
.y1af{bottom:517.186667pt;}
.y109{bottom:520.066667pt;}
.y4b{bottom:521.026667pt;}
.ya0{bottom:522.466667pt;}
.y1ba{bottom:525.346667pt;}
.y2b{bottom:527.746667pt;}
.y1da{bottom:528.706667pt;}
.y1fa{bottom:529.186667pt;}
.ybd{bottom:533.026667pt;}
.yf2{bottom:535.906667pt;}
.y13f{bottom:537.826667pt;}
.y187{bottom:538.786667pt;}
.y16f{bottom:539.746667pt;}
.y11c{bottom:541.186667pt;}
.y153{bottom:541.666667pt;}
.y84{bottom:544.066667pt;}
.y196{bottom:545.026667pt;}
.y1ae{bottom:546.466667pt;}
.y4a{bottom:546.946667pt;}
.y1f9{bottom:547.906667pt;}
.yb0{bottom:551.746667pt;}
.y130{bottom:554.626667pt;}
.y2a{bottom:557.026667pt;}
.y1d9{bottom:557.986667pt;}
.y108{bottom:559.906667pt;}
.y9f{bottom:562.306667pt;}
.yf1{bottom:565.213333pt;}
.y13e{bottom:567.133333pt;}
.y15e{bottom:568.573333pt;}
.y11b{bottom:570.493333pt;}
.y69{bottom:571.933333pt;}
.y49{bottom:572.893333pt;}
.y83{bottom:573.373333pt;}
.y16e{bottom:574.813333pt;}
.y1ad{bottom:575.773333pt;}
.y1d8{bottom:576.733333pt;}
.y186{bottom:578.653333pt;}
.yc8{bottom:581.053333pt;}
.y12f{bottom:583.933333pt;}
.y1f8{bottom:584.893333pt;}
.y29{bottom:586.333333pt;}
.y9e{bottom:591.613333pt;}
.yf0{bottom:594.493333pt;}
.y1d7{bottom:595.453333pt;}
.y13d{bottom:596.413333pt;}
.y48{bottom:598.813333pt;}
.y107{bottom:599.773333pt;}
.y82{bottom:602.653333pt;}
.y1f7{bottom:603.613333pt;}
.y1ac{bottom:605.053333pt;}
.yc7{bottom:610.333333pt;}
.y12e{bottom:613.213333pt;}
.y1d6{bottom:614.173333pt;}
.y28{bottom:615.613333pt;}
.ydc{bottom:620.893333pt;}
.y9d{bottom:621.373333pt;}
.y1f6{bottom:622.333333pt;}
.y1b9{bottom:623.773333pt;}
.y47{bottom:625.213333pt;}
.y13c{bottom:625.693333pt;}
.y66{bottom:627.133333pt;}
.yef{bottom:629.053333pt;}
.y81{bottom:631.933333pt;}
.y26{bottom:632.413333pt;}
.y1ab{bottom:634.333333pt;}
.yc6{bottom:639.653333pt;}
.yfd{bottom:642.533333pt;}
.y1d5{bottom:643.973333pt;}
.y152{bottom:644.933333pt;}
.ydb{bottom:650.213333pt;}
.y9c{bottom:650.693333pt;}
.y46{bottom:651.173333pt;}
.y1b8{bottom:653.093333pt;}
.y1f5{bottom:659.813333pt;}
.y80{bottom:661.253333pt;}
.y1d4{bottom:662.693333pt;}
.y25{bottom:663.173333pt;}
.y11a{bottom:663.653333pt;}
.y13b{bottom:666.053333pt;}
.yee{bottom:668.933333pt;}
.yfc{bottom:671.813333pt;}
.y151{bottom:674.213333pt;}
.y45{bottom:677.093333pt;}
.y1f4{bottom:678.533333pt;}
.y9b{bottom:679.973333pt;}
.y64{bottom:681.893333pt;}
.y1b7{bottom:682.373333pt;}
.y7f{bottom:690.533333pt;}
.y1d3{bottom:691.973333pt;}
.y24{bottom:693.893333pt;}
.y1f3{bottom:697.253333pt;}
.yed{bottom:698.213333pt;}
.yfb{bottom:701.093333pt;}
.y44{bottom:703.013333pt;}
.y119{bottom:703.973333pt;}
.y13a{bottom:705.893333pt;}
.y9a{bottom:709.253333pt;}
.y1d2{bottom:710.693333pt;}
.y12d{bottom:711.653333pt;}
.yda{bottom:714.560000pt;}
.y1f2{bottom:716.000000pt;}
.y1b6{bottom:716.960000pt;}
.y7e{bottom:719.840000pt;}
.y23{bottom:724.640000pt;}
.yec{bottom:727.520000pt;}
.y43{bottom:728.960000pt;}
.yfa{bottom:730.400000pt;}
.y118{bottom:733.280000pt;}
.y1f1{bottom:734.720000pt;}
.y62{bottom:737.120000pt;}
.y99{bottom:738.560000pt;}
.y1d1{bottom:740.000000pt;}
.y12c{bottom:740.960000pt;}
.y150{bottom:743.840000pt;}
.y139{bottom:745.760000pt;}
.y7d{bottom:749.120000pt;}
.y1f0{bottom:753.440000pt;}
.yd9{bottom:754.400000pt;}
.y22{bottom:754.880000pt;}
.yeb{bottom:756.800000pt;}
.y1d0{bottom:758.720000pt;}
.yf9{bottom:759.680000pt;}
.y117{bottom:762.560000pt;}
.y98{bottom:767.840000pt;}
.y1ef{bottom:772.160000pt;}
.y14f{bottom:773.120000pt;}
.y7{bottom:774.560000pt;}
.y1cf{bottom:777.440000pt;}
.y7c{bottom:778.400000pt;}
.y42{bottom:780.800000pt;}
.y20{bottom:785.600000pt;}
.yea{bottom:786.560000pt;}
.yf8{bottom:788.986667pt;}
.y1ee{bottom:790.906667pt;}
.y116{bottom:791.866667pt;}
.y61{bottom:792.346667pt;}
.y97{bottom:797.146667pt;}
.y14e{bottom:802.426667pt;}
.y6{bottom:806.746667pt;}
.y41{bottom:807.226667pt;}
.y7b{bottom:807.706667pt;}
.y1ed{bottom:809.626667pt;}
.y12b{bottom:810.106667pt;}
.ye9{bottom:815.866667pt;}
.y1f{bottom:816.346667pt;}
.yf7{bottom:818.266667pt;}
.y60{bottom:820.186667pt;}
.y115{bottom:821.146667pt;}
.y1ce{bottom:825.466667pt;}
.y138{bottom:825.946667pt;}
.yaf{bottom:826.426667pt;}
.y1ec{bottom:828.346667pt;}
.y185{bottom:829.306667pt;}
.y14d{bottom:831.706667pt;}
.y40{bottom:833.146667pt;}
.y7a{bottom:836.986667pt;}
.y1cd{bottom:844.186667pt;}
.ye8{bottom:845.146667pt;}
.y1e{bottom:847.066667pt;}
.y5{bottom:848.026667pt;}
.y5e{bottom:848.506667pt;}
.y12a{bottom:850.426667pt;}
.yae{bottom:855.706667pt;}
.y3f{bottom:860.026667pt;}
.y114{bottom:860.986667pt;}
.y137{bottom:865.826667pt;}
.y79{bottom:866.306667pt;}
.y16c{bottom:872.546667pt;}
.y1cc{bottom:873.506667pt;}
.y1d{bottom:877.826667pt;}
.y129{bottom:879.746667pt;}
.y1eb{bottom:884.546667pt;}
.yad{bottom:885.026667pt;}
.y3e{bottom:887.426667pt;}
.y4{bottom:887.906667pt;}
.y113{bottom:890.306667pt;}
.y1cb{bottom:892.226667pt;}
.y148{bottom:893.666667pt;}
.y78{bottom:895.586667pt;}
.y1ea{bottom:903.266667pt;}
.y5d{bottom:903.746667pt;}
.y1b{bottom:908.066667pt;}
.y128{bottom:909.026667pt;}
.y1ca{bottom:910.946667pt;}
.yac{bottom:914.306667pt;}
.y3d{bottom:914.786667pt;}
.y112{bottom:919.586667pt;}
.y3{bottom:920.066667pt;}
.y1e9{bottom:921.986667pt;}
.y77{bottom:924.866667pt;}
.y5b{bottom:931.586667pt;}
.y127{bottom:938.333333pt;}
.y19{bottom:938.813333pt;}
.y1c9{bottom:940.733333pt;}
.y3c{bottom:942.173333pt;}
.yc5{bottom:943.613333pt;}
.y111{bottom:948.893333pt;}
.y76{bottom:954.173333pt;}
.y2{bottom:955.133333pt;}
.y1c8{bottom:959.453333pt;}
.y59{bottom:959.933333pt;}
.y3b{bottom:969.533333pt;}
.y126{bottom:972.893333pt;}
.y194{bottom:977.213333pt;}
.y110{bottom:978.173333pt;}
.y1{bottom:979.613333pt;}
.y18{bottom:983.453333pt;}
.y1c7{bottom:987.773333pt;}
.y3a{bottom:990.173333pt;}
.y17c{bottom:994.493333pt;}
.y1e8{bottom:996.893333pt;}
.y17{bottom:1012.733333pt;}
.y1e7{bottom:1015.653333pt;}
.he{height:26.880000pt;}
.hf{height:26.912000pt;}
.h1f{height:27.840000pt;}
.h18{height:27.872000pt;}
.h1e{height:28.320000pt;}
.h1b{height:28.352000pt;}
.ha{height:29.280000pt;}
.hd{height:29.312000pt;}
.hc{height:29.760000pt;}
.h16{height:30.752000pt;}
.h1c{height:40.800000pt;}
.h24{height:41.133750pt;}
.h20{height:45.632000pt;}
.h21{height:46.080000pt;}
.h14{height:46.112000pt;}
.h15{height:47.013750pt;}
.h2{height:52.050938pt;}
.h9{height:52.253437pt;}
.h11{height:53.312000pt;}
.h12{height:53.760000pt;}
.h10{height:53.792000pt;}
.hb{height:55.409062pt;}
.h17{height:56.139375pt;}
.h23{height:56.246042pt;}
.h22{height:56.862188pt;}
.h19{height:58.415625pt;}
.h13{height:61.754062pt;}
.h1d{height:62.077500pt;}
.h8{height:62.205000pt;}
.h1a{height:65.483437pt;}
.h3{height:66.082500pt;}
.h6{height:72.101250pt;}
.h4{height:78.097500pt;}
.h7{height:122.881813pt;}
.h5{height:340.960000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w8{width:36.032000pt;}
.w6{width:73.984000pt;}
.w4{width:130.656000pt;}
.w5{width:432.733333pt;}
.w7{width:451.933333pt;}
.wb{width:481.253333pt;}
.wa{width:528.320000pt;}
.we{width:569.626667pt;}
.w9{width:575.386667pt;}
.wf{width:581.146667pt;}
.wd{width:596.986667pt;}
.wc{width:597.466667pt;}
.w3{width:643.613333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:6.720000pt;}
.x1e{left:9.600000pt;}
.x1a{left:10.560000pt;}
.x19{left:14.400000pt;}
.x10{left:19.712000pt;}
.xf{left:60.061333pt;}
.x6{left:75.391988pt;}
.x2f{left:92.704000pt;}
.x2d{left:94.144000pt;}
.x2e{left:95.104000pt;}
.x27{left:96.064000pt;}
.x2c{left:98.464000pt;}
.x29{left:101.824000pt;}
.x22{left:103.744000pt;}
.x28{left:104.704000pt;}
.x2b{left:107.584000pt;}
.x1f{left:109.024000pt;}
.x1d{left:110.464000pt;}
.x3{left:112.863988pt;}
.x13{left:114.784000pt;}
.x16{left:128.223988pt;}
.x1c{left:137.373322pt;}
.x4{left:142.173322pt;}
.x20{left:161.373322pt;}
.x11{left:182.048000pt;}
.x30{left:185.413322pt;}
.x17{left:190.213333pt;}
.x5{left:195.973322pt;}
.x15{left:246.880000pt;}
.x12{left:321.821333pt;}
.xc{left:502.399988pt;}
.x1{left:526.879988pt;}
.xb{left:536.479988pt;}
.xa{left:551.359988pt;}
.x9{left:553.279988pt;}
.xe{left:587.866655pt;}
.x7{left:594.586655pt;}
.x26{left:605.146655pt;}
.x23{left:610.946655pt;}
.x25{left:622.466655pt;}
.xd{left:627.266655pt;}
.x18{left:643.586667pt;}
.x21{left:647.426655pt;}
.x24{left:665.693322pt;}
.x1b{left:673.373322pt;}
.x2a{left:680.573322pt;}
.x8{left:709.853322pt;}
.x2{left:719.493322pt;}
}




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