
    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_8835d13dc302a1142d17d0de.woff')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_0e20992c87304fe02e9d49a1.woff')format("woff");}.ff2{font-family:ff2;line-height:0.907000;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_fe471bf1ec2fd8bfcf0a38ba.woff')format("woff");}.ff3{font-family:ff3;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_cac13513ce975a08c40dab03.woff')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e5d58ef1a9e6a2ef7c434b9c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_694ce3be1a5a759606e3bed2.woff')format("woff");}.ff6{font-family:ff6;line-height:0.725000;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_0ad19951cd37cd58361375e0.woff')format("woff");}.ff7{font-family:ff7;line-height:0.769000;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_25ebfd1a22acf97c5557b910.woff')format("woff");}.ff8{font-family:ff8;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_86bf29e06d21eaef976fc73d.woff')format("woff");}.ff9{font-family:ff9;line-height:2.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_fea074b6c7bbd0cb9af5f3ca.woff')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_3257c3ca2dfa97a103429b5f.woff')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_2629488a8453e3832d38b00c.woff')format("woff");}.ffc{font-family:ffc;line-height:0.665000;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_802643d3718696e69f5f177a.woff')format("woff");}.ffd{font-family:ffd;line-height:0.674000;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_c69795ba2c1b2d317fb7ed0a.woff')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_fea9effe31a017297b0e861a.woff')format("woff");}.fff{font-family:fff;line-height:0.685000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_37e8bccb6092cd485d56d904.woff')format("woff");}.ff10{font-family:ff10;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_f088e60db139a0896039307c.woff')format("woff");}.ff11{font-family:ff11;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.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);}
.m1{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);}
.ve{vertical-align:-27.024000px;}
.v1{vertical-align:-9.816000px;}
.v9{vertical-align:-7.290000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:12.090000px;}
.v5{vertical-align:16.548000px;}
.vb{vertical-align:18.912000px;}
.v6{vertical-align:23.754000px;}
.v7{vertical-align:27.024000px;}
.v11{vertical-align:34.146000px;}
.v4{vertical-align:44.280000px;}
.vc{vertical-align:55.314000px;}
.v12{vertical-align:61.446000px;}
.v15{vertical-align:71.922000px;}
.v3{vertical-align:73.032000px;}
.va{vertical-align:76.614000px;}
.vd{vertical-align:82.338000px;}
.v13{vertical-align:85.704000px;}
.v16{vertical-align:89.178000px;}
.vf{vertical-align:103.638000px;}
.v17{vertical-align:114.978000px;}
.v14{vertical-align:130.602000px;}
.v10{vertical-align:139.500000px;}
.v2{vertical-align:176.670000px;}
.ls9{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.000141px;}
.ls15{letter-spacing:0.001050px;}
.ls60{letter-spacing:0.001223px;}
.ls10{letter-spacing:0.001289px;}
.ls1b{letter-spacing:0.001956px;}
.ls35{letter-spacing:0.002147px;}
.ls26{letter-spacing:0.002682px;}
.ls6d{letter-spacing:0.002688px;}
.ls32{letter-spacing:0.002694px;}
.ls6a{letter-spacing:0.002700px;}
.ls44{letter-spacing:0.002706px;}
.ls5f{letter-spacing:0.002712px;}
.ls2b{letter-spacing:0.003056px;}
.ls67{letter-spacing:0.003181px;}
.ls2a{letter-spacing:0.004322px;}
.ls40{letter-spacing:0.004332px;}
.ls17{letter-spacing:0.004338px;}
.ls4b{letter-spacing:0.004344px;}
.ls5c{letter-spacing:0.004861px;}
.ls11{letter-spacing:0.004893px;}
.ls28{letter-spacing:0.242692px;}
.ls18{letter-spacing:1.719332px;}
.ls62{letter-spacing:1.816884px;}
.ls30{letter-spacing:2.984915px;}
.ls54{letter-spacing:2.988960px;}
.ls29{letter-spacing:2.989289px;}
.ls1c{letter-spacing:2.990289px;}
.ls48{letter-spacing:2.990915px;}
.ls14{letter-spacing:2.995289px;}
.ls3c{letter-spacing:5.743488px;}
.ls1e{letter-spacing:5.976532px;}
.ls1a{letter-spacing:7.131056px;}
.ls2d{letter-spacing:7.137056px;}
.ls12{letter-spacing:7.169412px;}
.ls0{letter-spacing:8.297139px;}
.ls3{letter-spacing:8.303139px;}
.ls7{letter-spacing:9.088332px;}
.lsc{letter-spacing:9.094332px;}
.ls4a{letter-spacing:9.158700px;}
.ls4f{letter-spacing:9.158706px;}
.ls3a{letter-spacing:9.158712px;}
.ls4d{letter-spacing:9.160881px;}
.ls2c{letter-spacing:10.159223px;}
.ls19{letter-spacing:10.640289px;}
.ls66{letter-spacing:10.907412px;}
.ls6c{letter-spacing:10.911181px;}
.ls16{letter-spacing:14.540712px;}
.ls2f{letter-spacing:14.543412px;}
.ls3f{letter-spacing:14.546149px;}
.ls68{letter-spacing:14.546700px;}
.lse{letter-spacing:15.259048px;}
.ls50{letter-spacing:16.637425px;}
.lsf{letter-spacing:17.528915px;}
.ls3b{letter-spacing:17.539289px;}
.ls64{letter-spacing:18.175048px;}
.ls46{letter-spacing:18.179400px;}
.ls34{letter-spacing:18.179412px;}
.ls42{letter-spacing:18.179418px;}
.ls4e{letter-spacing:18.185412px;}
.ls59{letter-spacing:18.422692px;}
.ls61{letter-spacing:18.428692px;}
.ls1{letter-spacing:19.496446px;}
.ls2e{letter-spacing:20.526532px;}
.ls65{letter-spacing:21.164915px;}
.ls45{letter-spacing:21.168960px;}
.ls33{letter-spacing:21.175289px;}
.ls69{letter-spacing:21.713412px;}
.lsb{letter-spacing:21.811048px;}
.ls6f{letter-spacing:21.817048px;}
.ls3d{letter-spacing:21.818712px;}
.ls38{letter-spacing:21.820890px;}
.ls70{letter-spacing:21.823050px;}
.ls4{letter-spacing:21.950446px;}
.ls25{letter-spacing:22.058692px;}
.ls55{letter-spacing:22.790712px;}
.ls53{letter-spacing:22.796712px;}
.ls5e{letter-spacing:23.699412px;}
.ls13{letter-spacing:23.705412px;}
.ls20{letter-spacing:24.800915px;}
.ls24{letter-spacing:24.805289px;}
.ls23{letter-spacing:24.811289px;}
.ls47{letter-spacing:25.014960px;}
.ls6e{letter-spacing:25.087048px;}
.ls36{letter-spacing:25.303289px;}
.ls3e{letter-spacing:25.355412px;}
.ls39{letter-spacing:25.563796px;}
.ls57{letter-spacing:25.681050px;}
.ls58{letter-spacing:25.922692px;}
.ls5b{letter-spacing:27.266147px;}
.ls2{letter-spacing:27.803139px;}
.ls49{letter-spacing:28.030332px;}
.ls21{letter-spacing:28.953229px;}
.ls4c{letter-spacing:29.318700px;}
.ls5{letter-spacing:30.257139px;}
.ls71{letter-spacing:30.904332px;}
.ls31{letter-spacing:32.338332px;}
.ls8{letter-spacing:32.727300px;}
.ls1f{letter-spacing:32.729412px;}
.ls51{letter-spacing:33.893425px;}
.ls52{letter-spacing:35.914332px;}
.ls5a{letter-spacing:36.664332px;}
.ls37{letter-spacing:36.898332px;}
.lsd{letter-spacing:37.912332px;}
.ls43{letter-spacing:37.972177px;}
.ls22{letter-spacing:41.885412px;}
.ls27{letter-spacing:63.803412px;}
.ls6b{letter-spacing:70.726884px;}
.ls41{letter-spacing:72.992700px;}
.ls63{letter-spacing:73.022915px;}
.ls5d{letter-spacing:91.955412px;}
.ls56{letter-spacing:123.833412px;}
.ls6{letter-spacing:961.306332px;}
.lsa{letter-spacing:1363.711048px;}
.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;}
}
.ws46{word-spacing:-65.454600px;}
.ws52{word-spacing:-54.589136px;}
.ws48{word-spacing:-50.809387px;}
.ws6b{word-spacing:-47.288867px;}
.ws41{word-spacing:-42.637126px;}
.ws1b{word-spacing:-36.510576px;}
.ws49{word-spacing:-33.211407px;}
.ws1a{word-spacing:-31.771663px;}
.ws5{word-spacing:-29.015076px;}
.ws50{word-spacing:-26.288789px;}
.ws47{word-spacing:-26.282789px;}
.ws65{word-spacing:-24.475783px;}
.ws9a{word-spacing:-24.213384px;}
.ws19{word-spacing:-18.183288px;}
.ws4{word-spacing:-16.605662px;}
.ws3f{word-spacing:-16.418789px;}
.ws64{word-spacing:-9.286630px;}
.ws63{word-spacing:-9.280630px;}
.ws80{word-spacing:-3.652367px;}
.ws38{word-spacing:-2.932366px;}
.ws37{word-spacing:-2.923308px;}
.ws56{word-spacing:-2.474184px;}
.ws88{word-spacing:-2.081456px;}
.ws7b{word-spacing:-0.903273px;}
.ws55{word-spacing:-0.772364px;}
.ws3{word-spacing:-0.526025px;}
.ws85{word-spacing:-0.117818px;}
.ws15{word-spacing:-0.071731px;}
.ws66{word-spacing:-0.065455px;}
.ws51{word-spacing:-0.047821px;}
.ws7a{word-spacing:-0.028637px;}
.ws92{word-spacing:-0.017548px;}
.ws44{word-spacing:-0.011549px;}
.ws1d{word-spacing:0.000000px;}
.ws4f{word-spacing:0.013091px;}
.ws9b{word-spacing:0.078546px;}
.ws4a{word-spacing:0.471273px;}
.ws9d{word-spacing:0.602182px;}
.ws3c{word-spacing:0.667637px;}
.ws70{word-spacing:0.733092px;}
.ws73{word-spacing:0.915003px;}
.ws72{word-spacing:0.918302px;}
.ws71{word-spacing:0.921600px;}
.ws74{word-spacing:0.943371px;}
.ws9c{word-spacing:1.125819px;}
.ws11{word-spacing:1.147692px;}
.wsa{word-spacing:1.446570px;}
.ws6c{word-spacing:1.536263px;}
.ws39{word-spacing:1.584001px;}
.ws4b{word-spacing:1.649456px;}
.ws4e{word-spacing:1.714911px;}
.ws9e{word-spacing:1.976729px;}
.ws12{word-spacing:2.044326px;}
.ws6f{word-spacing:2.238547px;}
.ws82{word-spacing:2.304002px;}
.wsa2{word-spacing:2.500366px;}
.ws29{word-spacing:2.631275px;}
.wsa0{word-spacing:2.827639px;}
.wsb{word-spacing:2.881184px;}
.wsc{word-spacing:3.299613px;}
.ws5d{word-spacing:3.547639px;}
.ws99{word-spacing:3.610814px;}
.ws18{word-spacing:3.613094px;}
.ws96{word-spacing:3.622607px;}
.ws62{word-spacing:3.628261px;}
.ws33{word-spacing:3.678549px;}
.ws35{word-spacing:3.744003px;}
.ws2{word-spacing:3.795751px;}
.ws6e{word-spacing:3.809458px;}
.ws6d{word-spacing:3.837118px;}
.ws1{word-spacing:3.873485px;}
.ws81{word-spacing:3.940367px;}
.ws78{word-spacing:4.071276px;}
.ws5e{word-spacing:4.136731px;}
.ws17{word-spacing:4.156367px;}
.ws1e{word-spacing:4.221822px;}
.ws8d{word-spacing:4.398549px;}
.ws8e{word-spacing:4.426772px;}
.ws34{word-spacing:4.529458px;}
.ws43{word-spacing:4.594913px;}
.ws90{word-spacing:4.791277px;}
.ws87{word-spacing:4.856731px;}
.ws32{word-spacing:4.987641px;}
.ws54{word-spacing:5.053095px;}
.ws2c{word-spacing:5.184004px;}
.ws26{word-spacing:5.314914px;}
.ws14{word-spacing:5.331984px;}
.ws13{word-spacing:5.354097px;}
.ws69{word-spacing:5.368255px;}
.ws27{word-spacing:5.380368px;}
.ws89{word-spacing:5.511277px;}
.ws25{word-spacing:5.576732px;}
.ws4c{word-spacing:5.642187px;}
.ws20{word-spacing:5.773096px;}
.ws77{word-spacing:5.888098px;}
.ws22{word-spacing:6.034914px;}
.ws30{word-spacing:6.100369px;}
.ws6a{word-spacing:6.165823px;}
.ws40{word-spacing:6.221225px;}
.ws10{word-spacing:6.228618px;}
.ws3b{word-spacing:6.231278px;}
.ws2a{word-spacing:6.490273px;}
.ws2b{word-spacing:6.493096px;}
.ws60{word-spacing:6.624006px;}
.ws7f{word-spacing:6.709097px;}
.ws61{word-spacing:6.820369px;}
.ws6{word-spacing:6.826374px;}
.ws24{word-spacing:7.016733px;}
.ws8f{word-spacing:7.082188px;}
.ws4d{word-spacing:7.344006px;}
.ws95{word-spacing:7.474915px;}
.ws93{word-spacing:7.491118px;}
.ws94{word-spacing:7.492261px;}
.ws3a{word-spacing:7.736734px;}
.ws53{word-spacing:7.867643px;}
.ws9f{word-spacing:8.064007px;}
.ws42{word-spacing:8.129461px;}
.ws76{word-spacing:8.194916px;}
.wsa1{word-spacing:8.391280px;}
.ws91{word-spacing:8.587644px;}
.ws86{word-spacing:8.653098px;}
.ws23{word-spacing:8.718553px;}
.ws8a{word-spacing:9.045826px;}
.wsf{word-spacing:9.157622px;}
.ws2d{word-spacing:9.176735px;}
.ws9{word-spacing:9.217398px;}
.ws8b{word-spacing:9.242190px;}
.ws8{word-spacing:9.336949px;}
.ws97{word-spacing:9.373099px;}
.ws21{word-spacing:9.504008px;}
.ws83{word-spacing:9.569463px;}
.ws5f{word-spacing:9.634917px;}
.ws68{word-spacing:9.700372px;}
.ws67{word-spacing:9.729118px;}
.ws28{word-spacing:9.831281px;}
.ws7d{word-spacing:9.885161px;}
.ws3e{word-spacing:9.896736px;}
.ws7e{word-spacing:9.916372px;}
.ws8c{word-spacing:10.551282px;}
.ws36{word-spacing:10.616736px;}
.ws7{word-spacing:10.771563px;}
.ws31{word-spacing:11.074918px;}
.ws75{word-spacing:11.140373px;}
.wsd{word-spacing:11.488870px;}
.ws2f{word-spacing:11.533101px;}
.ws7c{word-spacing:11.552737px;}
.ws2e{word-spacing:11.598555px;}
.wse{word-spacing:11.787748px;}
.ws45{word-spacing:12.918151px;}
.ws98{word-spacing:13.056151px;}
.ws79{word-spacing:13.104011px;}
.ws1c{word-spacing:14.544012px;}
.ws3d{word-spacing:26.827469px;}
.ws57{word-spacing:29.549592px;}
.ws58{word-spacing:31.265713px;}
.ws59{word-spacing:31.314172px;}
.ws5b{word-spacing:32.509687px;}
.ws5a{word-spacing:33.036293px;}
.ws5c{word-spacing:34.231808px;}
.ws84{word-spacing:34.298210px;}
.ws0{word-spacing:38.631358px;}
.ws16{word-spacing:39.632760px;}
.ws1f{word-spacing:80.625869px;}
._3{margin-left:-35.148288px;}
._1a{margin-left:-33.193308px;}
._11{margin-left:-30.270377px;}
._15{margin-left:-29.148464px;}
._5{margin-left:-27.877677px;}
._10{margin-left:-23.252708px;}
._1{margin-left:-9.709486px;}
._32{margin-left:-7.642853px;}
._f{margin-left:-6.575316px;}
._a{margin-left:-5.021150px;}
._0{margin-left:-3.202064px;}
._2{margin-left:-1.936742px;}
._4{width:1.996518px;}
._2c{width:3.202064px;}
._35{width:7.619452px;}
._33{width:15.554130px;}
._1d{width:17.064491px;}
._d{width:19.319513px;}
._2a{width:20.855953px;}
._1b{width:21.861836px;}
._7{width:24.531919px;}
._e{width:26.420815px;}
._c{width:27.520699px;}
._24{width:29.061842px;}
._8{width:30.162755px;}
._13{width:31.274633px;}
._16{width:33.342856px;}
._14{width:35.124130px;}
._6{width:37.060872px;}
._2e{width:38.325448px;}
._29{width:39.698062px;}
._26{width:40.997906px;}
._2b{width:43.117256px;}
._b{width:44.698325px;}
._2d{width:46.719820px;}
._9{width:47.844403px;}
._12{width:51.825445px;}
._1f{width:53.803681px;}
._25{width:56.564438px;}
._21{width:57.834971px;}
._18{width:60.545505px;}
._22{width:63.464066px;}
._1e{width:65.536736px;}
._19{width:66.894601px;}
._34{width:68.727330px;}
._30{width:75.272790px;}
._31{width:76.385518px;}
._2f{width:80.697600px;}
._28{width:92.525909px;}
._1c{width:93.588679px;}
._23{width:806.635289px;}
._27{width:1095.016835px;}
._20{width:1231.550965px;}
._17{width:2257.118524px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs4{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs3{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y26{bottom:63.168000px;}
.y25{bottom:108.000000px;}
.y51{bottom:119.410500px;}
.y24{bottom:128.323500px;}
.y50{bottom:139.734000px;}
.y101{bottom:145.111500px;}
.ye1{bottom:146.872500px;}
.y23{bottom:148.647000px;}
.ya3{bottom:156.162000px;}
.y4f{bottom:160.057500px;}
.y100{bottom:165.435000px;}
.ye0{bottom:167.196000px;}
.yc4{bottom:168.972000px;}
.ya2{bottom:176.485500px;}
.y4e{bottom:180.381000px;}
.y77{bottom:183.957000px;}
.y22{bottom:185.335500px;}
.ydf{bottom:187.519500px;}
.yc3{bottom:189.295500px;}
.yff{bottom:190.533000px;}
.ya1{bottom:196.809000px;}
.y4d{bottom:200.706000px;}
.yfe{bottom:201.757500px;}
.y76{bottom:204.282000px;}
.y21{bottom:205.659000px;}
.yde{bottom:207.843000px;}
.yc2{bottom:209.619000px;}
.y11a{bottom:215.646000px;}
.ya0{bottom:219.381000px;}
.y4c{bottom:221.029500px;}
.y75{bottom:224.605500px;}
.y20{bottom:225.982500px;}
.ydd{bottom:228.166500px;}
.y9f{bottom:230.605500px;}
.y130{bottom:233.791500px;}
.y119{bottom:235.969500px;}
.yc1{bottom:240.511500px;}
.y4b{bottom:241.353000px;}
.y1f{bottom:246.306000px;}
.yfd{bottom:248.800500px;}
.y12f{bottom:254.115000px;}
.y118{bottom:256.294500px;}
.ydc{bottom:259.059000px;}
.y4a{bottom:261.676500px;}
.y74{bottom:262.861500px;}
.y1e{bottom:266.629500px;}
.yfc{bottom:269.124000px;}
.y9e{bottom:274.857000px;}
.y117{bottom:276.618000px;}
.y49{bottom:282.000000px;}
.yc0{bottom:282.393000px;}
.y1d{bottom:286.954500px;}
.yfb{bottom:289.447500px;}
.y12e{bottom:292.372500px;}
.y73{bottom:296.635500px;}
.ydb{bottom:302.280000px;}
.y48{bottom:302.325000px;}
.ybf{bottom:302.716500px;}
.y1c{bottom:307.278000px;}
.y116{bottom:307.509000px;}
.y9d{bottom:308.844000px;}
.yfa{bottom:309.771000px;}
.yda{bottom:322.605000px;}
.y47{bottom:322.648500px;}
.ybe{bottom:323.040000px;}
.y12d{bottom:326.145000px;}
.y72{bottom:330.408000px;}
.yf9{bottom:340.663500px;}
.yd9{bottom:342.928500px;}
.y46{bottom:342.972000px;}
.y1b{bottom:343.965000px;}
.y115{bottom:350.731500px;}
.y9c{bottom:352.065000px;}
.ybd{bottom:353.932500px;}
.y12c{bottom:359.919000px;}
.yd8{bottom:363.252000px;}
.y45{bottom:363.295500px;}
.y71{bottom:364.182000px;}
.y114{bottom:371.055000px;}
.y9b{bottom:372.390000px;}
.yf8{bottom:379.282500px;}
.yd7{bottom:383.575500px;}
.y44{bottom:383.619000px;}
.yf7{bottom:390.507000px;}
.y9a{bottom:392.713500px;}
.ybc{bottom:395.812500px;}
.y1a{bottom:396.856500px;}
.y70{bottom:397.954500px;}
.y12b{bottom:398.175000px;}
.y43{bottom:403.944000px;}
.y113{bottom:409.311000px;}
.y99{bottom:413.037000px;}
.yd6{bottom:414.468000px;}
.ybb{bottom:416.137500px;}
.y12a{bottom:418.498500px;}
.y42{bottom:424.267500px;}
.y6f{bottom:431.728500px;}
.y98{bottom:433.360500px;}
.yb9{bottom:434.353500px;}
.yf6{bottom:434.577000px;}
.y19{bottom:442.282500px;}
.y112{bottom:443.085000px;}
.y41{bottom:444.591000px;}
.yba{bottom:445.578000px;}
.y129{bottom:449.391000px;}
.yb8{bottom:456.648000px;}
.yf5{bottom:457.057500px;}
.yd5{bottom:457.689000px;}
.y18{bottom:460.215000px;}
.y97{bottom:464.253000px;}
.y40{bottom:464.914500px;}
.yf4{bottom:468.282000px;}
.y6e{bottom:469.984500px;}
.yf3{bottom:472.417500px;}
.y111{bottom:476.857500px;}
.yd4{bottom:478.012500px;}
.y17{bottom:478.149000px;}
.y3f{bottom:485.238000px;}
.y128{bottom:492.612000px;}
.y69{bottom:493.960500px;}
.yb7{bottom:494.293500px;}
.y16{bottom:496.081500px;}
.y6b{bottom:500.994000px;}
.y3e{bottom:505.563000px;}
.y96{bottom:507.474000px;}
.y66{bottom:512.218500px;}
.yf2{bottom:512.352000px;}
.y15{bottom:514.014000px;}
.yb6{bottom:514.617000px;}
.y6c{bottom:514.863000px;}
.y110{bottom:515.115000px;}
.yd3{bottom:516.270000px;}
.y6d{bottom:518.974500px;}
.y6a{bottom:523.288500px;}
.y127{bottom:526.386000px;}
.y68{bottom:526.770000px;}
.y95{bottom:527.797500px;}
.y67{bottom:531.253500px;}
.y14{bottom:531.946500px;}
.yb5{bottom:534.940500px;}
.yd2{bottom:536.593500px;}
.yf1{bottom:538.923000px;}
.y3d{bottom:542.091000px;}
.y10f{bottom:546.006000px;}
.y94{bottom:548.121000px;}
.y13{bottom:549.879000px;}
.yf0{bottom:552.751500px;}
.yef{bottom:556.888500px;}
.y126{bottom:560.158500px;}
.y65{bottom:562.735500px;}
.y12{bottom:567.811500px;}
.yb4{bottom:568.927500px;}
.yd1{bottom:577.240500px;}
.y92{bottom:578.596500px;}
.y64{bottom:583.059000px;}
.y10e{bottom:584.208000px;}
.y11{bottom:585.745500px;}
.y3c{bottom:587.671500px;}
.y125{bottom:593.932500px;}
.yee{bottom:596.821500px;}
.yd0{bottom:597.564000px;}
.y8f{bottom:597.904500px;}
.y8d{bottom:598.894500px;}
.y91{bottom:598.920000px;}
.y63{bottom:603.382500px;}
.y10{bottom:603.678000px;}
.y8e{bottom:607.468500px;}
.y3b{bottom:607.995000px;}
.yb3{bottom:610.809000px;}
.yed{bottom:617.145000px;}
.ycf{bottom:617.889000px;}
.y90{bottom:619.243500px;}
.yf{bottom:621.610500px;}
.y62{bottom:623.706000px;}
.y3a{bottom:628.318500px;}
.y10d{bottom:629.788500px;}
.y124{bottom:632.188500px;}
.y93{bottom:633.769500px;}
.yce{bottom:638.212500px;}
.ye{bottom:639.543000px;}
.yb2{bottom:641.740500px;}
.y61{bottom:644.031000px;}
.yec{bottom:648.037500px;}
.y39{bottom:648.642000px;}
.y10c{bottom:650.113500px;}
.y8c{bottom:656.185500px;}
.yd{bottom:657.475500px;}
.ycd{bottom:658.536000px;}
.y123{bottom:663.081000px;}
.y60{bottom:664.354500px;}
.y38{bottom:668.967000px;}
.yb1{bottom:672.670500px;}
.yc{bottom:675.408000px;}
.y8b{bottom:676.509000px;}
.y10b{bottom:688.369500px;}
.y37{bottom:689.290500px;}
.yeb{bottom:691.258500px;}
.yb{bottom:693.342000px;}
.y5f{bottom:695.245500px;}
.ycc{bottom:699.183000px;}
.yb0{bottom:703.602000px;}
.y122{bottom:706.302000px;}
.y8a{bottom:707.401500px;}
.y36{bottom:709.614000px;}
.ya{bottom:711.274500px;}
.yea{bottom:711.582000px;}
.ycb{bottom:719.508000px;}
.y10a{bottom:722.143500px;}
.y121{bottom:726.625500px;}
.y9{bottom:729.207000px;}
.yaf{bottom:733.330500px;}
.y5e{bottom:733.447500px;}
.ye9{bottom:738.154500px;}
.yca{bottom:739.831500px;}
.y35{bottom:746.301000px;}
.y8{bottom:747.139500px;}
.y89{bottom:750.622500px;}
.ye8{bottom:751.983000px;}
.yae{bottom:753.654000px;}
.y109{bottom:755.916000px;}
.y120{bottom:760.399500px;}
.y34{bottom:766.624500px;}
.y88{bottom:770.946000px;}
.y7{bottom:773.427000px;}
.yad{bottom:773.977500px;}
.y5d{bottom:779.028000px;}
.yc9{bottom:780.478500px;}
.y33{bottom:786.949500px;}
.y87{bottom:791.271000px;}
.y108{bottom:794.172000px;}
.ye7{bottom:796.053000px;}
.y5c{bottom:799.353000px;}
.yc8{bottom:800.802000px;}
.yac{bottom:804.870000px;}
.y32{bottom:807.273000px;}
.y86{bottom:811.594500px;}
.ye6{bottom:816.376500px;}
.y5b{bottom:819.676500px;}
.y107{bottom:825.064500px;}
.y31{bottom:827.596500px;}
.y85{bottom:831.918000px;}
.y11f{bottom:832.429500px;}
.y6{bottom:832.939500px;}
.ye5{bottom:836.700000px;}
.yc7{bottom:839.059500px;}
.y5a{bottom:840.000000px;}
.yab{bottom:846.751500px;}
.y30{bottom:847.920000px;}
.y5{bottom:853.860000px;}
.y59{bottom:860.323500px;}
.y84{bottom:862.810500px;}
.y11e{bottom:863.320500px;}
.yaa{bottom:867.075000px;}
.ye4{bottom:867.592500px;}
.y106{bottom:868.285500px;}
.yc6{bottom:869.950500px;}
.y58{bottom:880.647000px;}
.y2f{bottom:884.607000px;}
.ya9{bottom:887.398500px;}
.y105{bottom:888.610500px;}
.y4{bottom:899.328000px;}
.y57{bottom:900.972000px;}
.y7f{bottom:902.923500px;}
.y2e{bottom:904.932000px;}
.ye3{bottom:905.794500px;}
.y11d{bottom:906.543000px;}
.y81{bottom:907.353000px;}
.ya8{bottom:913.173000px;}
.y7c{bottom:921.181500px;}
.y56{bottom:921.295500px;}
.y82{bottom:923.826000px;}
.y2d{bottom:925.255500px;}
.y104{bottom:926.866500px;}
.y83{bottom:927.937500px;}
.y3{bottom:932.203500px;}
.y80{bottom:932.251500px;}
.yc5{bottom:933.496500px;}
.y7e{bottom:935.733000px;}
.y7d{bottom:940.216500px;}
.y11c{bottom:940.315500px;}
.y55{bottom:941.619000px;}
.y2c{bottom:945.579000px;}
.ye2{bottom:951.375000px;}
.ya7{bottom:953.820000px;}
.y103{bottom:960.640500px;}
.y54{bottom:961.942500px;}
.y2{bottom:965.080500px;}
.y2b{bottom:965.902500px;}
.y7b{bottom:971.698500px;}
.y11b{bottom:974.089500px;}
.ya6{bottom:974.143500px;}
.y53{bottom:982.266000px;}
.y2a{bottom:986.226000px;}
.y7a{bottom:992.022000px;}
.y102{bottom:994.413000px;}
.ya5{bottom:994.467000px;}
.y1{bottom:997.957500px;}
.y52{bottom:1002.591000px;}
.y79{bottom:1012.345500px;}
.y29{bottom:1022.914500px;}
.ya4{bottom:1025.359500px;}
.y78{bottom:1032.669000px;}
.y28{bottom:1043.238000px;}
.y27{bottom:1063.561500px;}
.h8{height:2.391024px;}
.h7{height:34.287370px;}
.h3{height:44.831700px;}
.h18{height:45.425492px;}
.h17{height:46.145493px;}
.hb{height:46.865494px;}
.h5{height:49.090950px;}
.h4{height:50.211840px;}
.h6{height:50.498765px;}
.h2{height:51.216077px;}
.h1a{height:53.193370px;}
.h12{height:55.554699px;}
.ha{height:58.041370px;}
.h1f{height:58.824699px;}
.hd{height:62.823370px;}
.hf{height:63.407494px;}
.h10{height:63.413494px;}
.hc{height:67.752624px;}
.h1{height:72.304680px;}
.he{height:79.005024px;}
.h19{height:91.145494px;}
.h14{height:93.370950px;}
.h1c{height:93.988950px;}
.h15{height:103.722699px;}
.h1b{height:104.404950px;}
.h16{height:108.311494px;}
.h11{height:123.066624px;}
.h1d{height:138.268950px;}
.h13{height:141.891024px;}
.h1e{height:150.843450px;}
.h9{height:180.725494px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xa{left:108.000000px;}
.x15{left:127.999500px;}
.x3{left:131.683500px;}
.xc{left:133.404000px;}
.x2a{left:142.363500px;}
.x1{left:148.846500px;}
.x8{left:171.325500px;}
.x2b{left:176.727000px;}
.x2c{left:211.090500px;}
.x4{left:235.744500px;}
.x35{left:261.355500px;}
.x16{left:282.229500px;}
.x9{left:288.546000px;}
.xd{left:302.505000px;}
.x30{left:342.363000px;}
.x25{left:344.067000px;}
.x2{left:352.047000px;}
.x5{left:355.663500px;}
.x18{left:363.265500px;}
.x17{left:368.382000px;}
.x23{left:369.775500px;}
.x6{left:375.232500px;}
.x1d{left:377.881500px;}
.x2d{left:380.101500px;}
.x27{left:400.872000px;}
.xf{left:406.566000px;}
.x28{left:409.389000px;}
.xe{left:411.681000px;}
.x1e{left:414.772500px;}
.x1f{left:424.735500px;}
.x7{left:426.123000px;}
.x33{left:428.464500px;}
.x24{left:446.800500px;}
.xb{left:454.909500px;}
.x1a{left:460.543500px;}
.x34{left:467.512500px;}
.x19{left:469.704000px;}
.x32{left:471.283500px;}
.x2e{left:472.774500px;}
.x11{left:477.109500px;}
.x10{left:486.499500px;}
.x29{left:495.060000px;}
.x2f{left:505.156500px;}
.x36{left:515.052000px;}
.x31{left:518.829000px;}
.x12{left:522.877500px;}
.x20{left:530.155500px;}
.x1b{left:534.274500px;}
.x13{left:555.817500px;}
.x1c{left:560.422500px;}
.x37{left:570.823500px;}
.x14{left:581.965500px;}
.x21{left:648.406500px;}
.x22{left:685.903500px;}
.x26{left:689.616000px;}
@media print{
.ve{vertical-align:-24.021333pt;}
.v1{vertical-align:-8.725333pt;}
.v9{vertical-align:-6.480000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:10.746667pt;}
.v5{vertical-align:14.709333pt;}
.vb{vertical-align:16.810667pt;}
.v6{vertical-align:21.114667pt;}
.v7{vertical-align:24.021333pt;}
.v11{vertical-align:30.352000pt;}
.v4{vertical-align:39.360000pt;}
.vc{vertical-align:49.168000pt;}
.v12{vertical-align:54.618667pt;}
.v15{vertical-align:63.930667pt;}
.v3{vertical-align:64.917333pt;}
.va{vertical-align:68.101333pt;}
.vd{vertical-align:73.189333pt;}
.v13{vertical-align:76.181333pt;}
.v16{vertical-align:79.269333pt;}
.vf{vertical-align:92.122667pt;}
.v17{vertical-align:102.202667pt;}
.v14{vertical-align:116.090667pt;}
.v10{vertical-align:124.000000pt;}
.v2{vertical-align:157.040000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.000125pt;}
.ls15{letter-spacing:0.000933pt;}
.ls60{letter-spacing:0.001087pt;}
.ls10{letter-spacing:0.001146pt;}
.ls1b{letter-spacing:0.001739pt;}
.ls35{letter-spacing:0.001908pt;}
.ls26{letter-spacing:0.002384pt;}
.ls6d{letter-spacing:0.002389pt;}
.ls32{letter-spacing:0.002395pt;}
.ls6a{letter-spacing:0.002400pt;}
.ls44{letter-spacing:0.002405pt;}
.ls5f{letter-spacing:0.002411pt;}
.ls2b{letter-spacing:0.002717pt;}
.ls67{letter-spacing:0.002827pt;}
.ls2a{letter-spacing:0.003842pt;}
.ls40{letter-spacing:0.003851pt;}
.ls17{letter-spacing:0.003856pt;}
.ls4b{letter-spacing:0.003861pt;}
.ls5c{letter-spacing:0.004321pt;}
.ls11{letter-spacing:0.004349pt;}
.ls28{letter-spacing:0.215727pt;}
.ls18{letter-spacing:1.528295pt;}
.ls62{letter-spacing:1.615008pt;}
.ls30{letter-spacing:2.653258pt;}
.ls54{letter-spacing:2.656853pt;}
.ls29{letter-spacing:2.657146pt;}
.ls1c{letter-spacing:2.658034pt;}
.ls48{letter-spacing:2.658591pt;}
.ls14{letter-spacing:2.662479pt;}
.ls3c{letter-spacing:5.105323pt;}
.ls1e{letter-spacing:5.312473pt;}
.ls1a{letter-spacing:6.338717pt;}
.ls2d{letter-spacing:6.344050pt;}
.ls12{letter-spacing:6.372811pt;}
.ls0{letter-spacing:7.375235pt;}
.ls3{letter-spacing:7.380568pt;}
.ls7{letter-spacing:8.078517pt;}
.lsc{letter-spacing:8.083850pt;}
.ls4a{letter-spacing:8.141067pt;}
.ls4f{letter-spacing:8.141072pt;}
.ls3a{letter-spacing:8.141077pt;}
.ls4d{letter-spacing:8.143005pt;}
.ls2c{letter-spacing:9.030420pt;}
.ls19{letter-spacing:9.458034pt;}
.ls66{letter-spacing:9.695477pt;}
.ls6c{letter-spacing:9.698827pt;}
.ls16{letter-spacing:12.925077pt;}
.ls2f{letter-spacing:12.927477pt;}
.ls3f{letter-spacing:12.929910pt;}
.ls68{letter-spacing:12.930400pt;}
.lse{letter-spacing:13.563598pt;}
.ls50{letter-spacing:14.788822pt;}
.lsf{letter-spacing:15.581258pt;}
.ls3b{letter-spacing:15.590479pt;}
.ls64{letter-spacing:16.155598pt;}
.ls46{letter-spacing:16.159467pt;}
.ls34{letter-spacing:16.159477pt;}
.ls42{letter-spacing:16.159483pt;}
.ls4e{letter-spacing:16.164811pt;}
.ls59{letter-spacing:16.375727pt;}
.ls61{letter-spacing:16.381060pt;}
.ls1{letter-spacing:17.330174pt;}
.ls2e{letter-spacing:18.245806pt;}
.ls65{letter-spacing:18.813258pt;}
.ls45{letter-spacing:18.816853pt;}
.ls33{letter-spacing:18.822479pt;}
.ls69{letter-spacing:19.300811pt;}
.lsb{letter-spacing:19.387598pt;}
.ls6f{letter-spacing:19.392932pt;}
.ls3d{letter-spacing:19.394411pt;}
.ls38{letter-spacing:19.396347pt;}
.ls70{letter-spacing:19.398267pt;}
.ls4{letter-spacing:19.511507pt;}
.ls25{letter-spacing:19.607727pt;}
.ls55{letter-spacing:20.258411pt;}
.ls53{letter-spacing:20.263744pt;}
.ls5e{letter-spacing:21.066144pt;}
.ls13{letter-spacing:21.071477pt;}
.ls20{letter-spacing:22.045258pt;}
.ls24{letter-spacing:22.049146pt;}
.ls23{letter-spacing:22.054479pt;}
.ls47{letter-spacing:22.235520pt;}
.ls6e{letter-spacing:22.299598pt;}
.ls36{letter-spacing:22.491812pt;}
.ls3e{letter-spacing:22.538144pt;}
.ls39{letter-spacing:22.723374pt;}
.ls57{letter-spacing:22.827600pt;}
.ls58{letter-spacing:23.042393pt;}
.ls5b{letter-spacing:24.236575pt;}
.ls2{letter-spacing:24.713902pt;}
.ls49{letter-spacing:24.915850pt;}
.ls21{letter-spacing:25.736203pt;}
.ls4c{letter-spacing:26.061067pt;}
.ls5{letter-spacing:26.895235pt;}
.ls71{letter-spacing:27.470517pt;}
.ls31{letter-spacing:28.745184pt;}
.ls8{letter-spacing:29.090933pt;}
.ls1f{letter-spacing:29.092811pt;}
.ls51{letter-spacing:30.127489pt;}
.ls52{letter-spacing:31.923850pt;}
.ls5a{letter-spacing:32.590517pt;}
.ls37{letter-spacing:32.798517pt;}
.lsd{letter-spacing:33.699850pt;}
.ls43{letter-spacing:33.753046pt;}
.ls22{letter-spacing:37.231477pt;}
.ls27{letter-spacing:56.714144pt;}
.ls6b{letter-spacing:62.868342pt;}
.ls41{letter-spacing:64.882400pt;}
.ls63{letter-spacing:64.909258pt;}
.ls5d{letter-spacing:81.738144pt;}
.ls56{letter-spacing:110.074144pt;}
.ls6{letter-spacing:854.494517pt;}
.lsa{letter-spacing:1212.187598pt;}
.ws46{word-spacing:-58.181867pt;}
.ws52{word-spacing:-48.523677pt;}
.ws48{word-spacing:-45.163900pt;}
.ws6b{word-spacing:-42.034548pt;}
.ws41{word-spacing:-37.899668pt;}
.ws1b{word-spacing:-32.453845pt;}
.ws49{word-spacing:-29.521250pt;}
.ws1a{word-spacing:-28.241478pt;}
.ws5{word-spacing:-25.791179pt;}
.ws50{word-spacing:-23.367813pt;}
.ws47{word-spacing:-23.362479pt;}
.ws65{word-spacing:-21.756252pt;}
.ws9a{word-spacing:-21.523008pt;}
.ws19{word-spacing:-16.162923pt;}
.ws4{word-spacing:-14.760588pt;}
.ws3f{word-spacing:-14.594479pt;}
.ws64{word-spacing:-8.254782pt;}
.ws63{word-spacing:-8.249448pt;}
.ws80{word-spacing:-3.246548pt;}
.ws38{word-spacing:-2.606548pt;}
.ws37{word-spacing:-2.598496pt;}
.ws56{word-spacing:-2.199275pt;}
.ws88{word-spacing:-1.850183pt;}
.ws7b{word-spacing:-0.802910pt;}
.ws55{word-spacing:-0.686546pt;}
.ws3{word-spacing:-0.467578pt;}
.ws85{word-spacing:-0.104727pt;}
.ws15{word-spacing:-0.063761pt;}
.ws66{word-spacing:-0.058182pt;}
.ws51{word-spacing:-0.042507pt;}
.ws7a{word-spacing:-0.025455pt;}
.ws92{word-spacing:-0.015599pt;}
.ws44{word-spacing:-0.010265pt;}
.ws1d{word-spacing:0.000000pt;}
.ws4f{word-spacing:0.011636pt;}
.ws9b{word-spacing:0.069818pt;}
.ws4a{word-spacing:0.418909pt;}
.ws9d{word-spacing:0.535273pt;}
.ws3c{word-spacing:0.593455pt;}
.ws70{word-spacing:0.651637pt;}
.ws73{word-spacing:0.813336pt;}
.ws72{word-spacing:0.816268pt;}
.ws71{word-spacing:0.819200pt;}
.ws74{word-spacing:0.838552pt;}
.ws9c{word-spacing:1.000728pt;}
.ws11{word-spacing:1.020170pt;}
.wsa{word-spacing:1.285840pt;}
.ws6c{word-spacing:1.365567pt;}
.ws39{word-spacing:1.408001pt;}
.ws4b{word-spacing:1.466183pt;}
.ws4e{word-spacing:1.524365pt;}
.ws9e{word-spacing:1.757092pt;}
.ws12{word-spacing:1.817178pt;}
.ws6f{word-spacing:1.989820pt;}
.ws82{word-spacing:2.048002pt;}
.wsa2{word-spacing:2.222547pt;}
.ws29{word-spacing:2.338911pt;}
.wsa0{word-spacing:2.513457pt;}
.wsb{word-spacing:2.561052pt;}
.wsc{word-spacing:2.932989pt;}
.ws5d{word-spacing:3.153457pt;}
.ws99{word-spacing:3.209613pt;}
.ws18{word-spacing:3.211639pt;}
.ws96{word-spacing:3.220095pt;}
.ws62{word-spacing:3.225121pt;}
.ws33{word-spacing:3.269821pt;}
.ws35{word-spacing:3.328003pt;}
.ws2{word-spacing:3.374001pt;}
.ws6e{word-spacing:3.386185pt;}
.ws6d{word-spacing:3.410772pt;}
.ws1{word-spacing:3.443098pt;}
.ws81{word-spacing:3.502548pt;}
.ws78{word-spacing:3.618912pt;}
.ws5e{word-spacing:3.677094pt;}
.ws17{word-spacing:3.694549pt;}
.ws1e{word-spacing:3.752730pt;}
.ws8d{word-spacing:3.909821pt;}
.ws8e{word-spacing:3.934908pt;}
.ws34{word-spacing:4.026185pt;}
.ws43{word-spacing:4.084367pt;}
.ws90{word-spacing:4.258913pt;}
.ws87{word-spacing:4.317095pt;}
.ws32{word-spacing:4.433458pt;}
.ws54{word-spacing:4.491640pt;}
.ws2c{word-spacing:4.608004pt;}
.ws26{word-spacing:4.724368pt;}
.ws14{word-spacing:4.739541pt;}
.ws13{word-spacing:4.759198pt;}
.ws69{word-spacing:4.771782pt;}
.ws27{word-spacing:4.782549pt;}
.ws89{word-spacing:4.898913pt;}
.ws25{word-spacing:4.957095pt;}
.ws4c{word-spacing:5.015277pt;}
.ws20{word-spacing:5.131641pt;}
.ws77{word-spacing:5.233865pt;}
.ws22{word-spacing:5.364368pt;}
.ws30{word-spacing:5.422550pt;}
.ws6a{word-spacing:5.480732pt;}
.ws40{word-spacing:5.529978pt;}
.ws10{word-spacing:5.536549pt;}
.ws3b{word-spacing:5.538914pt;}
.ws2a{word-spacing:5.769131pt;}
.ws2b{word-spacing:5.771641pt;}
.ws60{word-spacing:5.888005pt;}
.ws7f{word-spacing:5.963641pt;}
.ws61{word-spacing:6.062551pt;}
.ws6{word-spacing:6.067888pt;}
.ws24{word-spacing:6.237096pt;}
.ws8f{word-spacing:6.295278pt;}
.ws4d{word-spacing:6.528005pt;}
.ws95{word-spacing:6.644369pt;}
.ws93{word-spacing:6.658772pt;}
.ws94{word-spacing:6.659787pt;}
.ws3a{word-spacing:6.877097pt;}
.ws53{word-spacing:6.993460pt;}
.ws9f{word-spacing:7.168006pt;}
.ws42{word-spacing:7.226188pt;}
.ws76{word-spacing:7.284370pt;}
.wsa1{word-spacing:7.458915pt;}
.ws91{word-spacing:7.633461pt;}
.ws86{word-spacing:7.691643pt;}
.ws23{word-spacing:7.749825pt;}
.ws8a{word-spacing:8.040734pt;}
.wsf{word-spacing:8.140108pt;}
.ws2d{word-spacing:8.157098pt;}
.ws9{word-spacing:8.193242pt;}
.ws8b{word-spacing:8.215280pt;}
.ws8{word-spacing:8.299510pt;}
.ws97{word-spacing:8.331643pt;}
.ws21{word-spacing:8.448007pt;}
.ws83{word-spacing:8.506189pt;}
.ws5f{word-spacing:8.564371pt;}
.ws68{word-spacing:8.622553pt;}
.ws67{word-spacing:8.648105pt;}
.ws28{word-spacing:8.738916pt;}
.ws7d{word-spacing:8.786810pt;}
.ws3e{word-spacing:8.797098pt;}
.ws7e{word-spacing:8.814553pt;}
.ws8c{word-spacing:9.378917pt;}
.ws36{word-spacing:9.437099pt;}
.ws7{word-spacing:9.574723pt;}
.ws31{word-spacing:9.844372pt;}
.ws75{word-spacing:9.902554pt;}
.wsd{word-spacing:10.212329pt;}
.ws2f{word-spacing:10.251645pt;}
.ws7c{word-spacing:10.269099pt;}
.ws2e{word-spacing:10.309827pt;}
.wse{word-spacing:10.477999pt;}
.ws45{word-spacing:11.482801pt;}
.ws98{word-spacing:11.605467pt;}
.ws79{word-spacing:11.648010pt;}
.ws1c{word-spacing:12.928011pt;}
.ws3d{word-spacing:23.846639pt;}
.ws57{word-spacing:26.266304pt;}
.ws58{word-spacing:27.791745pt;}
.ws59{word-spacing:27.834819pt;}
.ws5b{word-spacing:28.897499pt;}
.ws5a{word-spacing:29.365594pt;}
.ws5c{word-spacing:30.428274pt;}
.ws84{word-spacing:30.487298pt;}
.ws0{word-spacing:34.338985pt;}
.ws16{word-spacing:35.229120pt;}
.ws1f{word-spacing:71.667439pt;}
._3{margin-left:-31.242923pt;}
._1a{margin-left:-29.505162pt;}
._11{margin-left:-26.907002pt;}
._15{margin-left:-25.909746pt;}
._5{margin-left:-24.780158pt;}
._10{margin-left:-20.669074pt;}
._1{margin-left:-8.630654pt;}
._32{margin-left:-6.793647pt;}
._f{margin-left:-5.844725pt;}
._a{margin-left:-4.463245pt;}
._0{margin-left:-2.846279pt;}
._2{margin-left:-1.721549pt;}
._4{width:1.774683pt;}
._2c{width:2.846279pt;}
._35{width:6.772846pt;}
._33{width:13.825893pt;}
._1d{width:15.168437pt;}
._d{width:17.172900pt;}
._2a{width:18.538625pt;}
._1b{width:19.432743pt;}
._7{width:21.806150pt;}
._e{width:23.485169pt;}
._c{width:24.462844pt;}
._24{width:25.832749pt;}
._8{width:26.811338pt;}
._13{width:27.799674pt;}
._16{width:29.638094pt;}
._14{width:31.221449pt;}
._6{width:32.942997pt;}
._2e{width:34.067065pt;}
._29{width:35.287166pt;}
._26{width:36.442583pt;}
._2b{width:38.326450pt;}
._b{width:39.731844pt;}
._2d{width:41.528729pt;}
._9{width:42.528358pt;}
._12{width:46.067062pt;}
._1f{width:47.825494pt;}
._25{width:50.279500pt;}
._21{width:51.408863pt;}
._18{width:53.818227pt;}
._22{width:56.412503pt;}
._1e{width:58.254876pt;}
._19{width:59.461868pt;}
._34{width:61.090960pt;}
._30{width:66.909147pt;}
._31{width:67.898238pt;}
._2f{width:71.731200pt;}
._28{width:82.245252pt;}
._1c{width:83.189937pt;}
._23{width:717.009146pt;}
._27{width:973.348298pt;}
._20{width:1094.711969pt;}
._17{width:2006.327577pt;}
.fs5{font-size:31.880533pt;}
.fs4{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs3{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:56.149333pt;}
.y25{bottom:96.000000pt;}
.y51{bottom:106.142667pt;}
.y24{bottom:114.065333pt;}
.y50{bottom:124.208000pt;}
.y101{bottom:128.988000pt;}
.ye1{bottom:130.553333pt;}
.y23{bottom:132.130667pt;}
.ya3{bottom:138.810667pt;}
.y4f{bottom:142.273333pt;}
.y100{bottom:147.053333pt;}
.ye0{bottom:148.618667pt;}
.yc4{bottom:150.197333pt;}
.ya2{bottom:156.876000pt;}
.y4e{bottom:160.338667pt;}
.y77{bottom:163.517333pt;}
.y22{bottom:164.742667pt;}
.ydf{bottom:166.684000pt;}
.yc3{bottom:168.262667pt;}
.yff{bottom:169.362667pt;}
.ya1{bottom:174.941333pt;}
.y4d{bottom:178.405333pt;}
.yfe{bottom:179.340000pt;}
.y76{bottom:181.584000pt;}
.y21{bottom:182.808000pt;}
.yde{bottom:184.749333pt;}
.yc2{bottom:186.328000pt;}
.y11a{bottom:191.685333pt;}
.ya0{bottom:195.005333pt;}
.y4c{bottom:196.470667pt;}
.y75{bottom:199.649333pt;}
.y20{bottom:200.873333pt;}
.ydd{bottom:202.814667pt;}
.y9f{bottom:204.982667pt;}
.y130{bottom:207.814667pt;}
.y119{bottom:209.750667pt;}
.yc1{bottom:213.788000pt;}
.y4b{bottom:214.536000pt;}
.y1f{bottom:218.938667pt;}
.yfd{bottom:221.156000pt;}
.y12f{bottom:225.880000pt;}
.y118{bottom:227.817333pt;}
.ydc{bottom:230.274667pt;}
.y4a{bottom:232.601333pt;}
.y74{bottom:233.654667pt;}
.y1e{bottom:237.004000pt;}
.yfc{bottom:239.221333pt;}
.y9e{bottom:244.317333pt;}
.y117{bottom:245.882667pt;}
.y49{bottom:250.666667pt;}
.yc0{bottom:251.016000pt;}
.y1d{bottom:255.070667pt;}
.yfb{bottom:257.286667pt;}
.y12e{bottom:259.886667pt;}
.y73{bottom:263.676000pt;}
.ydb{bottom:268.693333pt;}
.y48{bottom:268.733333pt;}
.ybf{bottom:269.081333pt;}
.y1c{bottom:273.136000pt;}
.y116{bottom:273.341333pt;}
.y9d{bottom:274.528000pt;}
.yfa{bottom:275.352000pt;}
.yda{bottom:286.760000pt;}
.y47{bottom:286.798667pt;}
.ybe{bottom:287.146667pt;}
.y12d{bottom:289.906667pt;}
.y72{bottom:293.696000pt;}
.yf9{bottom:302.812000pt;}
.yd9{bottom:304.825333pt;}
.y46{bottom:304.864000pt;}
.y1b{bottom:305.746667pt;}
.y115{bottom:311.761333pt;}
.y9c{bottom:312.946667pt;}
.ybd{bottom:314.606667pt;}
.y12c{bottom:319.928000pt;}
.yd8{bottom:322.890667pt;}
.y45{bottom:322.929333pt;}
.y71{bottom:323.717333pt;}
.y114{bottom:329.826667pt;}
.y9b{bottom:331.013333pt;}
.yf8{bottom:337.140000pt;}
.yd7{bottom:340.956000pt;}
.y44{bottom:340.994667pt;}
.yf7{bottom:347.117333pt;}
.y9a{bottom:349.078667pt;}
.ybc{bottom:351.833333pt;}
.y1a{bottom:352.761333pt;}
.y70{bottom:353.737333pt;}
.y12b{bottom:353.933333pt;}
.y43{bottom:359.061333pt;}
.y113{bottom:363.832000pt;}
.y99{bottom:367.144000pt;}
.yd6{bottom:368.416000pt;}
.ybb{bottom:369.900000pt;}
.y12a{bottom:371.998667pt;}
.y42{bottom:377.126667pt;}
.y6f{bottom:383.758667pt;}
.y98{bottom:385.209333pt;}
.yb9{bottom:386.092000pt;}
.yf6{bottom:386.290667pt;}
.y19{bottom:393.140000pt;}
.y112{bottom:393.853333pt;}
.y41{bottom:395.192000pt;}
.yba{bottom:396.069333pt;}
.y129{bottom:399.458667pt;}
.yb8{bottom:405.909333pt;}
.yf5{bottom:406.273333pt;}
.yd5{bottom:406.834667pt;}
.y18{bottom:409.080000pt;}
.y97{bottom:412.669333pt;}
.y40{bottom:413.257333pt;}
.yf4{bottom:416.250667pt;}
.y6e{bottom:417.764000pt;}
.yf3{bottom:419.926667pt;}
.y111{bottom:423.873333pt;}
.yd4{bottom:424.900000pt;}
.y17{bottom:425.021333pt;}
.y3f{bottom:431.322667pt;}
.y128{bottom:437.877333pt;}
.y69{bottom:439.076000pt;}
.yb7{bottom:439.372000pt;}
.y16{bottom:440.961333pt;}
.y6b{bottom:445.328000pt;}
.y3e{bottom:449.389333pt;}
.y96{bottom:451.088000pt;}
.y66{bottom:455.305333pt;}
.yf2{bottom:455.424000pt;}
.y15{bottom:456.901333pt;}
.yb6{bottom:457.437333pt;}
.y6c{bottom:457.656000pt;}
.y110{bottom:457.880000pt;}
.yd3{bottom:458.906667pt;}
.y6d{bottom:461.310667pt;}
.y6a{bottom:465.145333pt;}
.y127{bottom:467.898667pt;}
.y68{bottom:468.240000pt;}
.y95{bottom:469.153333pt;}
.y67{bottom:472.225333pt;}
.y14{bottom:472.841333pt;}
.yb5{bottom:475.502667pt;}
.yd2{bottom:476.972000pt;}
.yf1{bottom:479.042667pt;}
.y3d{bottom:481.858667pt;}
.y10f{bottom:485.338667pt;}
.y94{bottom:487.218667pt;}
.y13{bottom:488.781333pt;}
.yf0{bottom:491.334667pt;}
.yef{bottom:495.012000pt;}
.y126{bottom:497.918667pt;}
.y65{bottom:500.209333pt;}
.y12{bottom:504.721333pt;}
.yb4{bottom:505.713333pt;}
.yd1{bottom:513.102667pt;}
.y92{bottom:514.308000pt;}
.y64{bottom:518.274667pt;}
.y10e{bottom:519.296000pt;}
.y11{bottom:520.662667pt;}
.y3c{bottom:522.374667pt;}
.y125{bottom:527.940000pt;}
.yee{bottom:530.508000pt;}
.yd0{bottom:531.168000pt;}
.y8f{bottom:531.470667pt;}
.y8d{bottom:532.350667pt;}
.y91{bottom:532.373333pt;}
.y63{bottom:536.340000pt;}
.y10{bottom:536.602667pt;}
.y8e{bottom:539.972000pt;}
.y3b{bottom:540.440000pt;}
.yb3{bottom:542.941333pt;}
.yed{bottom:548.573333pt;}
.ycf{bottom:549.234667pt;}
.y90{bottom:550.438667pt;}
.yf{bottom:552.542667pt;}
.y62{bottom:554.405333pt;}
.y3a{bottom:558.505333pt;}
.y10d{bottom:559.812000pt;}
.y124{bottom:561.945333pt;}
.y93{bottom:563.350667pt;}
.yce{bottom:567.300000pt;}
.ye{bottom:568.482667pt;}
.yb2{bottom:570.436000pt;}
.y61{bottom:572.472000pt;}
.yec{bottom:576.033333pt;}
.y39{bottom:576.570667pt;}
.y10c{bottom:577.878667pt;}
.y8c{bottom:583.276000pt;}
.yd{bottom:584.422667pt;}
.ycd{bottom:585.365333pt;}
.y123{bottom:589.405333pt;}
.y60{bottom:590.537333pt;}
.y38{bottom:594.637333pt;}
.yb1{bottom:597.929333pt;}
.yc{bottom:600.362667pt;}
.y8b{bottom:601.341333pt;}
.y10b{bottom:611.884000pt;}
.y37{bottom:612.702667pt;}
.yeb{bottom:614.452000pt;}
.yb{bottom:616.304000pt;}
.y5f{bottom:617.996000pt;}
.ycc{bottom:621.496000pt;}
.yb0{bottom:625.424000pt;}
.y122{bottom:627.824000pt;}
.y8a{bottom:628.801333pt;}
.y36{bottom:630.768000pt;}
.ya{bottom:632.244000pt;}
.yea{bottom:632.517333pt;}
.ycb{bottom:639.562667pt;}
.y10a{bottom:641.905333pt;}
.y121{bottom:645.889333pt;}
.y9{bottom:648.184000pt;}
.yaf{bottom:651.849333pt;}
.y5e{bottom:651.953333pt;}
.ye9{bottom:656.137333pt;}
.yca{bottom:657.628000pt;}
.y35{bottom:663.378667pt;}
.y8{bottom:664.124000pt;}
.y89{bottom:667.220000pt;}
.ye8{bottom:668.429333pt;}
.yae{bottom:669.914667pt;}
.y109{bottom:671.925333pt;}
.y120{bottom:675.910667pt;}
.y34{bottom:681.444000pt;}
.y88{bottom:685.285333pt;}
.y7{bottom:687.490667pt;}
.yad{bottom:687.980000pt;}
.y5d{bottom:692.469333pt;}
.yc9{bottom:693.758667pt;}
.y33{bottom:699.510667pt;}
.y87{bottom:703.352000pt;}
.y108{bottom:705.930667pt;}
.ye7{bottom:707.602667pt;}
.y5c{bottom:710.536000pt;}
.yc8{bottom:711.824000pt;}
.yac{bottom:715.440000pt;}
.y32{bottom:717.576000pt;}
.y86{bottom:721.417333pt;}
.ye6{bottom:725.668000pt;}
.y5b{bottom:728.601333pt;}
.y107{bottom:733.390667pt;}
.y31{bottom:735.641333pt;}
.y85{bottom:739.482667pt;}
.y11f{bottom:739.937333pt;}
.y6{bottom:740.390667pt;}
.ye5{bottom:743.733333pt;}
.yc7{bottom:745.830667pt;}
.y5a{bottom:746.666667pt;}
.yab{bottom:752.668000pt;}
.y30{bottom:753.706667pt;}
.y5{bottom:758.986667pt;}
.y59{bottom:764.732000pt;}
.y84{bottom:766.942667pt;}
.y11e{bottom:767.396000pt;}
.yaa{bottom:770.733333pt;}
.ye4{bottom:771.193333pt;}
.y106{bottom:771.809333pt;}
.yc6{bottom:773.289333pt;}
.y58{bottom:782.797333pt;}
.y2f{bottom:786.317333pt;}
.ya9{bottom:788.798667pt;}
.y105{bottom:789.876000pt;}
.y4{bottom:799.402667pt;}
.y57{bottom:800.864000pt;}
.y7f{bottom:802.598667pt;}
.y2e{bottom:804.384000pt;}
.ye3{bottom:805.150667pt;}
.y11d{bottom:805.816000pt;}
.y81{bottom:806.536000pt;}
.ya8{bottom:811.709333pt;}
.y7c{bottom:818.828000pt;}
.y56{bottom:818.929333pt;}
.y82{bottom:821.178667pt;}
.y2d{bottom:822.449333pt;}
.y104{bottom:823.881333pt;}
.y83{bottom:824.833333pt;}
.y3{bottom:828.625333pt;}
.y80{bottom:828.668000pt;}
.yc5{bottom:829.774667pt;}
.y7e{bottom:831.762667pt;}
.y7d{bottom:835.748000pt;}
.y11c{bottom:835.836000pt;}
.y55{bottom:836.994667pt;}
.y2c{bottom:840.514667pt;}
.ye2{bottom:845.666667pt;}
.ya7{bottom:847.840000pt;}
.y103{bottom:853.902667pt;}
.y54{bottom:855.060000pt;}
.y2{bottom:857.849333pt;}
.y2b{bottom:858.580000pt;}
.y7b{bottom:863.732000pt;}
.y11b{bottom:865.857333pt;}
.ya6{bottom:865.905333pt;}
.y53{bottom:873.125333pt;}
.y2a{bottom:876.645333pt;}
.y7a{bottom:881.797333pt;}
.y102{bottom:883.922667pt;}
.ya5{bottom:883.970667pt;}
.y1{bottom:887.073333pt;}
.y52{bottom:891.192000pt;}
.y79{bottom:899.862667pt;}
.y29{bottom:909.257333pt;}
.ya4{bottom:911.430667pt;}
.y78{bottom:917.928000pt;}
.y28{bottom:927.322667pt;}
.y27{bottom:945.388000pt;}
.h8{height:2.125355pt;}
.h7{height:30.477662pt;}
.h3{height:39.850400pt;}
.h18{height:40.378215pt;}
.h17{height:41.018216pt;}
.hb{height:41.658217pt;}
.h5{height:43.636400pt;}
.h4{height:44.632747pt;}
.h6{height:44.887791pt;}
.h2{height:45.525402pt;}
.h1a{height:47.282996pt;}
.h12{height:49.381955pt;}
.ha{height:51.592329pt;}
.h1f{height:52.288621pt;}
.hd{height:55.842996pt;}
.hf{height:56.362217pt;}
.h10{height:56.367550pt;}
.hc{height:60.224555pt;}
.h1{height:64.270827pt;}
.he{height:70.226688pt;}
.h19{height:81.018217pt;}
.h14{height:82.996400pt;}
.h1c{height:83.545733pt;}
.h15{height:92.197955pt;}
.h1b{height:92.804400pt;}
.h16{height:96.276883pt;}
.h11{height:109.392555pt;}
.h1d{height:122.905733pt;}
.h13{height:126.125355pt;}
.h1e{height:134.083067pt;}
.h9{height:160.644883pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa{left:96.000000pt;}
.x15{left:113.777333pt;}
.x3{left:117.052000pt;}
.xc{left:118.581333pt;}
.x2a{left:126.545333pt;}
.x1{left:132.308000pt;}
.x8{left:152.289333pt;}
.x2b{left:157.090667pt;}
.x2c{left:187.636000pt;}
.x4{left:209.550667pt;}
.x35{left:232.316000pt;}
.x16{left:250.870667pt;}
.x9{left:256.485333pt;}
.xd{left:268.893333pt;}
.x30{left:304.322667pt;}
.x25{left:305.837333pt;}
.x2{left:312.930667pt;}
.x5{left:316.145333pt;}
.x18{left:322.902667pt;}
.x17{left:327.450667pt;}
.x23{left:328.689333pt;}
.x6{left:333.540000pt;}
.x1d{left:335.894667pt;}
.x2d{left:337.868000pt;}
.x27{left:356.330667pt;}
.xf{left:361.392000pt;}
.x28{left:363.901333pt;}
.xe{left:365.938667pt;}
.x1e{left:368.686667pt;}
.x1f{left:377.542667pt;}
.x7{left:378.776000pt;}
.x33{left:380.857333pt;}
.x24{left:397.156000pt;}
.xb{left:404.364000pt;}
.x1a{left:409.372000pt;}
.x34{left:415.566667pt;}
.x19{left:417.514667pt;}
.x32{left:418.918667pt;}
.x2e{left:420.244000pt;}
.x11{left:424.097333pt;}
.x10{left:432.444000pt;}
.x29{left:440.053333pt;}
.x2f{left:449.028000pt;}
.x36{left:457.824000pt;}
.x31{left:461.181333pt;}
.x12{left:464.780000pt;}
.x20{left:471.249333pt;}
.x1b{left:474.910667pt;}
.x13{left:494.060000pt;}
.x1c{left:498.153333pt;}
.x37{left:507.398667pt;}
.x14{left:517.302667pt;}
.x21{left:576.361333pt;}
.x22{left:609.692000pt;}
.x26{left:612.992000pt;}
}




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