
    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_db20081b21aa90ffc3d2584e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958000;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_56b78847bbd0233807935d7b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.946000;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_24c13348dbd3f685fbc45859.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.203000;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_739b6320ef64ecdedaecfb6a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958496;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_b774cf760d7102cf007169b8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958000;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_77a3334a6257250eb1f8246e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958496;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_709130bdc819efa0774039df.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.349000;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_c3b92c7fa02441b14614349c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.200885;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_52a5bbbf4a913a1a8d0f6688.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.894000;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_e145db0bc1d61f74576b3826.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.362000;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_f847ca080a5c8c691de16414.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.719000;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_3c10f019a1e424d979b416ef.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.384000;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_23d6f9fc78f904c0f7923770.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_0e63c31118c100e56c0a4375.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.328000;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);}
.v2{vertical-align:-20.399963px;}
.v4{vertical-align:-18.359985px;}
.v5{vertical-align:-17.339996px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.215985px;}
.v1{vertical-align:20.399963px;}
.ls12{letter-spacing:-3.240000px;}
.ls3d{letter-spacing:-2.052000px;}
.ls5e{letter-spacing:-1.530000px;}
.ls7f{letter-spacing:-1.395000px;}
.ls7a{letter-spacing:-1.350000px;}
.ls4e{letter-spacing:-1.188000px;}
.ls79{letter-spacing:-1.170000px;}
.ls55{letter-spacing:-1.026000px;}
.ls85{letter-spacing:-0.855000px;}
.ls56{letter-spacing:-0.810000px;}
.ls78{letter-spacing:-0.765000px;}
.ls58{letter-spacing:-0.756000px;}
.ls7b{letter-spacing:-0.720000px;}
.ls54{letter-spacing:-0.648000px;}
.ls76{letter-spacing:-0.630000px;}
.ls5a{letter-spacing:-0.594000px;}
.ls7e{letter-spacing:-0.585000px;}
.ls5b{letter-spacing:-0.495000px;}
.ls77{letter-spacing:-0.450000px;}
.ls7c{letter-spacing:-0.405000px;}
.ls4d{letter-spacing:-0.378000px;}
.ls40{letter-spacing:-0.360000px;}
.ls41{letter-spacing:-0.324000px;}
.ls5c{letter-spacing:-0.315000px;}
.ls1a{letter-spacing:-0.270000px;}
.ls1d{letter-spacing:-0.255000px;}
.ls2f{letter-spacing:-0.240000px;}
.ls81{letter-spacing:-0.225000px;}
.ls17{letter-spacing:-0.216000px;}
.ls5d{letter-spacing:-0.180000px;}
.ls1b{letter-spacing:-0.175500px;}
.ls13{letter-spacing:-0.162000px;}
.ls1c{letter-spacing:-0.140400px;}
.ls5f{letter-spacing:-0.135000px;}
.ls2e{letter-spacing:-0.108000px;}
.ls57{letter-spacing:-0.105300px;}
.ls7d{letter-spacing:-0.090000px;}
.ls2d{letter-spacing:-0.054000px;}
.ls80{letter-spacing:-0.045000px;}
.ls4b{letter-spacing:-0.035100px;}
.ls11{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000459px;}
.ls45{letter-spacing:0.005354px;}
.ls43{letter-spacing:0.005410px;}
.ls42{letter-spacing:0.005418px;}
.ls46{letter-spacing:0.010781px;}
.ls4{letter-spacing:0.013040px;}
.ls2{letter-spacing:0.013223px;}
.ls3{letter-spacing:0.013772px;}
.ls5{letter-spacing:0.013864px;}
.ls59{letter-spacing:0.035100px;}
.ls50{letter-spacing:0.040869px;}
.ls68{letter-spacing:0.045000px;}
.lsc{letter-spacing:0.049042px;}
.ls10{letter-spacing:0.051000px;}
.ls25{letter-spacing:0.054000px;}
.ls34{letter-spacing:0.059450px;}
.ls30{letter-spacing:0.060000px;}
.ls39{letter-spacing:0.076073px;}
.ls65{letter-spacing:0.090000px;}
.lsd{letter-spacing:0.102000px;}
.ls7{letter-spacing:0.105300px;}
.ls20{letter-spacing:0.108000px;}
.ls1f{letter-spacing:0.120000px;}
.ls44{letter-spacing:0.124099px;}
.ls67{letter-spacing:0.135000px;}
.ls51{letter-spacing:0.140398px;}
.ls16{letter-spacing:0.140400px;}
.ls14{letter-spacing:0.162000px;}
.ls9{letter-spacing:0.175499px;}
.ls83{letter-spacing:0.180000px;}
.ls71{letter-spacing:0.198000px;}
.ls19{letter-spacing:0.210600px;}
.ls4f{letter-spacing:0.210605px;}
.lsa{letter-spacing:0.216000px;}
.ls6d{letter-spacing:0.225000px;}
.ls31{letter-spacing:0.241234px;}
.ls49{letter-spacing:0.245700px;}
.ls15{letter-spacing:0.270000px;}
.ls4c{letter-spacing:0.300000px;}
.ls3a{letter-spacing:0.313188px;}
.ls52{letter-spacing:0.315000px;}
.ls18{letter-spacing:0.324000px;}
.ls37{letter-spacing:0.325645px;}
.ls72{letter-spacing:0.337500px;}
.ls3b{letter-spacing:0.360000px;}
.ls2a{letter-spacing:0.378000px;}
.ls70{letter-spacing:0.405000px;}
.lsf{letter-spacing:0.416352px;}
.ls3e{letter-spacing:0.420000px;}
.ls3c{letter-spacing:0.421174px;}
.ls4a{letter-spacing:0.421200px;}
.ls22{letter-spacing:0.432000px;}
.ls6c{letter-spacing:0.450000px;}
.ls23{letter-spacing:0.480000px;}
.ls24{letter-spacing:0.486000px;}
.ls84{letter-spacing:0.495000px;}
.lsb{letter-spacing:0.540000px;}
.ls28{letter-spacing:0.577804px;}
.ls82{letter-spacing:0.585000px;}
.ls21{letter-spacing:0.594000px;}
.ls26{letter-spacing:0.600000px;}
.ls6a{letter-spacing:0.630000px;}
.ls8{letter-spacing:0.648000px;}
.ls47{letter-spacing:0.660000px;}
.lse{letter-spacing:0.663000px;}
.ls6e{letter-spacing:0.675000px;}
.ls88{letter-spacing:0.702000px;}
.ls75{letter-spacing:0.720000px;}
.ls36{letter-spacing:0.756029px;}
.ls61{letter-spacing:0.765000px;}
.ls35{letter-spacing:0.810000px;}
.ls3f{letter-spacing:0.840000px;}
.ls63{letter-spacing:0.855000px;}
.ls86{letter-spacing:0.864000px;}
.ls64{letter-spacing:0.900000px;}
.ls27{letter-spacing:0.918000px;}
.ls53{letter-spacing:0.918077px;}
.ls74{letter-spacing:0.945000px;}
.ls87{letter-spacing:0.972000px;}
.ls48{letter-spacing:1.026000px;}
.ls2b{letter-spacing:1.045131px;}
.ls6b{letter-spacing:1.120571px;}
.ls29{letter-spacing:1.188000px;}
.ls32{letter-spacing:1.200000px;}
.ls6f{letter-spacing:1.327451px;}
.ls66{letter-spacing:1.597536px;}
.ls2c{letter-spacing:1.598414px;}
.ls60{letter-spacing:1.620000px;}
.ls33{letter-spacing:1.944000px;}
.ls38{letter-spacing:1.980000px;}
.ls69{letter-spacing:2.006935px;}
.ls62{letter-spacing:2.160000px;}
.ls0{letter-spacing:2.592000px;}
.ls1e{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.ls73{letter-spacing:6.120000px;}
.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;}
}
.ws1{word-spacing:-15.067500px;}
.ws1e{word-spacing:-14.700000px;}
.ws43{word-spacing:-13.596000px;}
.ws1f{word-spacing:-13.500000px;}
.ws50{word-spacing:-12.852000px;}
.ws44{word-spacing:-12.798000px;}
.ws6{word-spacing:-12.582000px;}
.ws0{word-spacing:-12.480000px;}
.ws2{word-spacing:-12.360000px;}
.ws4e{word-spacing:-12.258000px;}
.ws4b{word-spacing:-11.718000px;}
.ws70{word-spacing:-11.115000px;}
.ws73{word-spacing:-11.070000px;}
.ws6f{word-spacing:-10.980000px;}
.ws78{word-spacing:-10.845000px;}
.ws7a{word-spacing:-10.665000px;}
.ws7b{word-spacing:-10.575000px;}
.ws77{word-spacing:-10.485000px;}
.ws79{word-spacing:-10.440000px;}
.ws76{word-spacing:-10.350000px;}
.ws5c{word-spacing:-10.215000px;}
.ws9f{word-spacing:-10.170000px;}
.ws95{word-spacing:-10.125000px;}
.ws72{word-spacing:-10.080000px;}
.ws71{word-spacing:-9.855000px;}
.ws92{word-spacing:-9.810000px;}
.ws87{word-spacing:-9.675000px;}
.ws5d{word-spacing:-9.630000px;}
.ws93{word-spacing:-9.585000px;}
.ws75{word-spacing:-9.540000px;}
.ws7c{word-spacing:-9.450000px;}
.ws74{word-spacing:-8.955000px;}
.ws52{word-spacing:-8.388900px;}
.ws4f{word-spacing:-8.213400px;}
.ws7{word-spacing:-8.178300px;}
.ws5{word-spacing:-8.108100px;}
.ws51{word-spacing:-8.073000px;}
.ws3{word-spacing:-8.034000px;}
.ws5b{word-spacing:-8.002800px;}
.ws4{word-spacing:-7.967700px;}
.ws53{word-spacing:-7.932600px;}
.ws5a{word-spacing:-7.862400px;}
.ws9{word-spacing:-7.827300px;}
.ws8{word-spacing:-7.792200px;}
.wsa{word-spacing:-6.630000px;}
.ws7d{word-spacing:-6.120000px;}
.ws4d{word-spacing:-5.508000px;}
.ws3d{word-spacing:-1.980000px;}
.ws24{word-spacing:-1.890000px;}
.wse{word-spacing:-1.836000px;}
.ws54{word-spacing:-1.782000px;}
.ws63{word-spacing:-1.728000px;}
.ws40{word-spacing:-1.620000px;}
.ws81{word-spacing:-1.575000px;}
.ws6b{word-spacing:-1.530000px;}
.ws35{word-spacing:-1.512000px;}
.ws45{word-spacing:-1.404000px;}
.ws10{word-spacing:-1.350000px;}
.ws60{word-spacing:-1.296000px;}
.ws67{word-spacing:-1.275000px;}
.ws17{word-spacing:-1.242000px;}
.ws3a{word-spacing:-1.200000px;}
.ws42{word-spacing:-1.188000px;}
.ws57{word-spacing:-1.134000px;}
.ws4c{word-spacing:-1.080000px;}
.ws6a{word-spacing:-1.035000px;}
.ws37{word-spacing:-1.026000px;}
.ws88{word-spacing:-0.990000px;}
.ws36{word-spacing:-0.972000px;}
.wsc{word-spacing:-0.960000px;}
.ws26{word-spacing:-0.918000px;}
.ws8e{word-spacing:-0.900000px;}
.ws25{word-spacing:-0.864000px;}
.ws48{word-spacing:-0.840000px;}
.ws8c{word-spacing:-0.810000px;}
.wsa2{word-spacing:-0.756000px;}
.ws80{word-spacing:-0.720000px;}
.ws27{word-spacing:-0.702000px;}
.ws68{word-spacing:-0.675000px;}
.ws1b{word-spacing:-0.663000px;}
.ws55{word-spacing:-0.660000px;}
.wsf{word-spacing:-0.648000px;}
.ws2f{word-spacing:-0.600000px;}
.ws13{word-spacing:-0.594000px;}
.ws8f{word-spacing:-0.585000px;}
.ws31{word-spacing:-0.540000px;}
.ws6e{word-spacing:-0.495000px;}
.ws21{word-spacing:-0.486000px;}
.ws2e{word-spacing:-0.480000px;}
.ws23{word-spacing:-0.432000px;}
.ws47{word-spacing:-0.420000px;}
.ws15{word-spacing:-0.378000px;}
.ws4a{word-spacing:-0.360000px;}
.ws39{word-spacing:-0.324000px;}
.ws6d{word-spacing:-0.315000px;}
.ws59{word-spacing:-0.300000px;}
.ws34{word-spacing:-0.270000px;}
.ws6c{word-spacing:-0.225000px;}
.ws64{word-spacing:-0.216000px;}
.ws22{word-spacing:-0.210600px;}
.ws69{word-spacing:-0.180000px;}
.ws30{word-spacing:-0.162000px;}
.ws14{word-spacing:-0.140400px;}
.ws98{word-spacing:-0.135000px;}
.ws29{word-spacing:-0.120000px;}
.ws2d{word-spacing:-0.108000px;}
.ws65{word-spacing:-0.105300px;}
.ws1a{word-spacing:-0.102000px;}
.ws9b{word-spacing:-0.090000px;}
.ws2c{word-spacing:-0.060000px;}
.ws20{word-spacing:-0.054000px;}
.ws1d{word-spacing:-0.051000px;}
.ws90{word-spacing:-0.045000px;}
.wsb{word-spacing:0.000000px;}
.ws3f{word-spacing:0.054000px;}
.ws97{word-spacing:0.090000px;}
.ws2b{word-spacing:0.108000px;}
.ws86{word-spacing:0.135000px;}
.ws18{word-spacing:0.140400px;}
.ws12{word-spacing:0.162000px;}
.ws16{word-spacing:0.175500px;}
.ws9e{word-spacing:0.180000px;}
.ws38{word-spacing:0.216000px;}
.ws91{word-spacing:0.225000px;}
.ws28{word-spacing:0.240000px;}
.ws19{word-spacing:0.255000px;}
.ws56{word-spacing:0.270000px;}
.ws2a{word-spacing:0.324000px;}
.ws49{word-spacing:0.360000px;}
.ws5f{word-spacing:0.378000px;}
.ws11{word-spacing:0.432000px;}
.ws9a{word-spacing:0.540000px;}
.ws96{word-spacing:0.585000px;}
.wsa3{word-spacing:0.594000px;}
.ws1c{word-spacing:0.612000px;}
.wsa0{word-spacing:0.630000px;}
.ws46{word-spacing:0.648000px;}
.ws9d{word-spacing:0.675000px;}
.ws3c{word-spacing:0.702000px;}
.ws7f{word-spacing:0.720000px;}
.ws5e{word-spacing:0.756000px;}
.ws84{word-spacing:0.855000px;}
.ws41{word-spacing:0.864000px;}
.ws7e{word-spacing:0.900000px;}
.ws61{word-spacing:0.918000px;}
.ws85{word-spacing:0.945000px;}
.ws62{word-spacing:0.972000px;}
.ws89{word-spacing:1.035000px;}
.ws8b{word-spacing:1.080000px;}
.ws33{word-spacing:1.134000px;}
.ws8d{word-spacing:1.170000px;}
.ws66{word-spacing:1.188000px;}
.ws9c{word-spacing:1.215000px;}
.wsa1{word-spacing:1.242000px;}
.ws83{word-spacing:1.260000px;}
.ws58{word-spacing:1.296000px;}
.ws82{word-spacing:1.305000px;}
.ws94{word-spacing:1.395000px;}
.ws99{word-spacing:1.440000px;}
.ws8a{word-spacing:1.575000px;}
.ws32{word-spacing:1.674000px;}
.ws3b{word-spacing:1.836000px;}
.wsd{word-spacing:3.240000px;}
.ws3e{word-spacing:3.672000px;}
._13{margin-left:-11.880000px;}
._16{margin-left:-10.845000px;}
._14{margin-left:-9.225000px;}
._9{margin-left:-7.354684px;}
._5{margin-left:-6.269775px;}
._3{margin-left:-4.927240px;}
._1{margin-left:-3.416400px;}
._0{margin-left:-1.776017px;}
._6{width:1.193775px;}
._4{width:2.743273px;}
._d{width:4.405341px;}
._a{width:5.616000px;}
._12{width:6.771018px;}
._f{width:8.460002px;}
._11{width:9.855000px;}
._e{width:12.600000px;}
._10{width:13.635000px;}
._c{width:15.281992px;}
._15{width:17.865002px;}
._2{width:43.619470px;}
._7{width:46.795822px;}
._8{width:48.247325px;}
._b{width:49.579709px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(245,130,32);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(206,221,228);}
.fs7{font-size:33.150001px;}
.fs6{font-size:35.099999px;}
.fs4{font-size:39.000000px;}
.fsc{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fsa{font-size:66.000000px;}
.fsb{font-size:96.000000px;}
.fs9{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:27.177601px;}
.y1{bottom:27.197851px;}
.y12b{bottom:65.587494px;}
.y9d{bottom:66.547799px;}
.ydf{bottom:67.297799px;}
.y2f{bottom:68.313899px;}
.y7c{bottom:69.965106px;}
.y6d{bottom:71.555999px;}
.y94{bottom:73.177649px;}
.y12a{bottom:78.333744px;}
.y9c{bottom:81.546298px;}
.yde{bottom:82.296298px;}
.y2e{bottom:83.307899px;}
.y7b{bottom:84.963606px;}
.y6c{bottom:86.554498px;}
.y93{bottom:88.176149px;}
.y129{bottom:91.079995px;}
.yd2{bottom:91.505702px;}
.y178{bottom:94.055999px;}
.y9b{bottom:96.544798px;}
.ydd{bottom:97.294798px;}
.y2d{bottom:98.307899px;}
.y7a{bottom:99.962105px;}
.y6b{bottom:101.552997px;}
.y92{bottom:103.174648px;}
.y128{bottom:103.826245px;}
.yd1{bottom:106.504202px;}
.y177{bottom:109.054498px;}
.y9a{bottom:111.543297px;}
.ydc{bottom:112.293297px;}
.y2c{bottom:113.307899px;}
.y6a{bottom:116.551496px;}
.y127{bottom:116.572495px;}
.yb2{bottom:117.015456px;}
.y91{bottom:118.173147px;}
.yd0{bottom:121.504202px;}
.y176{bottom:124.052997px;}
.y79{bottom:127.511706px;}
.y126{bottom:129.318745px;}
.y69{bottom:131.559000px;}
.yb1{bottom:132.013955px;}
.y2b{bottom:132.636898px;}
.y90{bottom:133.171646px;}
.ycf{bottom:136.508704px;}
.y175{bottom:139.051496px;}
.y125{bottom:142.064995px;}
.y78{bottom:142.510205px;}
.y68{bottom:146.557499px;}
.yb0{bottom:147.012454px;}
.yce{bottom:151.507203px;}
.y174{bottom:154.049995px;}
.y124{bottom:154.811245px;}
.y77{bottom:157.508704px;}
.y8f{bottom:160.719609px;}
.y67{bottom:161.555999px;}
.yaf{bottom:162.010954px;}
.ycd{bottom:166.505702px;}
.y2a{bottom:167.187313px;}
.y123{bottom:167.557495px;}
.ya6{bottom:167.590955px;}
.ye9{bottom:168.609467px;}
.y173{bottom:169.049995px;}
.y76{bottom:172.507203px;}
.y8e{bottom:175.718108px;}
.y66{bottom:176.554498px;}
.yae{bottom:177.009453px;}
.y122{bottom:180.303745px;}
.ycc{bottom:181.504202px;}
.y29{bottom:182.185812px;}
.ya5{bottom:182.589455px;}
.ye8{bottom:183.607966px;}
.y75{bottom:187.505702px;}
.y8d{bottom:190.716607px;}
.y65{bottom:191.552997px;}
.yad{bottom:192.007952px;}
.y121{bottom:193.049995px;}
.ycb{bottom:196.522211px;}
.y28{bottom:197.187313px;}
.ya4{bottom:197.587954px;}
.ye7{bottom:198.606465px;}
.y172{bottom:198.805766px;}
.y74{bottom:202.504202px;}
.y8c{bottom:205.715106px;}
.y120{bottom:205.799995px;}
.y64{bottom:206.551496px;}
.yac{bottom:207.006451px;}
.yca{bottom:211.520711px;}
.y171{bottom:211.552016px;}
.y27{bottom:212.185812px;}
.ya3{bottom:212.586453px;}
.ye6{bottom:213.604964px;}
.y73{bottom:217.502701px;}
.y8b{bottom:220.713606px;}
.y63{bottom:221.549995px;}
.yab{bottom:222.004950px;}
.y170{bottom:224.298266px;}
.yc9{bottom:226.519210px;}
.y26{bottom:227.187313px;}
.ya2{bottom:227.584952px;}
.ye5{bottom:228.603463px;}
.y8a{bottom:235.712105px;}
.yaa{bottom:237.003450px;}
.y16f{bottom:237.044516px;}
.y11f{bottom:238.805995px;}
.yc8{bottom:241.517709px;}
.y25{bottom:242.185812px;}
.ya1{bottom:242.583451px;}
.ye4{bottom:243.601962px;}
.y72{bottom:245.046298px;}
.y16e{bottom:249.790766px;}
.y89{bottom:250.712105px;}
.ya9{bottom:252.001949px;}
.y62{bottom:253.747065px;}
.y11e{bottom:253.799995px;}
.yc7{bottom:256.516208px;}
.y24{bottom:257.187313px;}
.ya0{bottom:257.581951px;}
.ye3{bottom:258.600462px;}
.y71{bottom:260.044798px;}
.y16d{bottom:262.537017px;}
.y88{bottom:265.712105px;}
.ya8{bottom:267.000448px;}
.y61{bottom:268.745564px;}
.yc6{bottom:271.514707px;}
.y23{bottom:272.185812px;}
.y9f{bottom:272.580450px;}
.ye2{bottom:273.601962px;}
.y70{bottom:275.043297px;}
.y16c{bottom:275.283267px;}
.y11d{bottom:281.562025px;}
.ya7{bottom:281.998947px;}
.y60{bottom:283.744063px;}
.yc5{bottom:286.513206px;}
.y22{bottom:287.188813px;}
.y9e{bottom:287.578949px;}
.y16b{bottom:288.029517px;}
.ye1{bottom:288.600462px;}
.y87{bottom:293.255702px;}
.y11c{bottom:296.560524px;}
.y5f{bottom:298.742562px;}
.y16a{bottom:300.775767px;}
.yc4{bottom:301.511706px;}
.y6f{bottom:302.044798px;}
.y21{bottom:302.187313px;}
.ye0{bottom:303.598961px;}
.y86{bottom:308.254202px;}
.y11b{bottom:311.559023px;}
.y169{bottom:313.522017px;}
.y5e{bottom:313.741062px;}
.yc3{bottom:316.510205px;}
.y6e{bottom:317.043297px;}
.y20{bottom:317.185812px;}
.y85{bottom:323.252701px;}
.y168{bottom:326.268267px;}
.y11a{bottom:326.557522px;}
.y5d{bottom:328.739561px;}
.yc2{bottom:331.508704px;}
.y1f{bottom:332.185812px;}
.y167{bottom:339.014517px;}
.y119{bottom:341.556022px;}
.y5c{bottom:343.738060px;}
.yc1{bottom:346.507203px;}
.y1e{bottom:347.188813px;}
.y84{bottom:350.796298px;}
.y166{bottom:351.760767px;}
.y118{bottom:356.554521px;}
.y5b{bottom:358.736559px;}
.yc0{bottom:361.505702px;}
.y1d{bottom:362.187313px;}
.y165{bottom:364.507018px;}
.y83{bottom:365.794798px;}
.y117{bottom:371.553020px;}
.y5a{bottom:373.735058px;}
.ybf{bottom:376.504202px;}
.y80{bottom:376.683442px;}
.y1c{bottom:377.185812px;}
.y164{bottom:377.253268px;}
.y82{bottom:380.794821px;}
.y116{bottom:386.551519px;}
.y59{bottom:388.733558px;}
.y163{bottom:389.999518px;}
.ybe{bottom:391.511706px;}
.y7f{bottom:391.681941px;}
.y1b{bottom:392.220311px;}
.y81{bottom:395.793320px;}
.y115{bottom:401.553020px;}
.y162{bottom:402.745768px;}
.y58{bottom:403.732057px;}
.ybd{bottom:406.510205px;}
.y7e{bottom:406.680441px;}
.y161{bottom:415.492018px;}
.y114{bottom:416.551519px;}
.y57{bottom:418.730556px;}
.ybc{bottom:421.508704px;}
.y7d{bottom:421.678940px;}
.y160{bottom:428.238268px;}
.y113{bottom:431.553020px;}
.y56{bottom:433.729055px;}
.ybb{bottom:436.507203px;}
.y1a{bottom:439.470311px;}
.y15f{bottom:440.984518px;}
.y112{bottom:446.551519px;}
.y55{bottom:448.727554px;}
.yba{bottom:451.505702px;}
.y15e{bottom:453.730768px;}
.y99{bottom:454.657523px;}
.y19{bottom:455.967311px;}
.y111{bottom:461.560524px;}
.y15d{bottom:466.477018px;}
.yb9{bottom:466.504202px;}
.y98{bottom:469.656022px;}
.y18{bottom:472.464311px;}
.y110{bottom:476.559023px;}
.y15c{bottom:479.223269px;}
.y54{bottom:480.911231px;}
.yb8{bottom:481.502701px;}
.y97{bottom:484.654521px;}
.y17{bottom:488.961311px;}
.y10f{bottom:491.557522px;}
.y15b{bottom:491.969519px;}
.y53{bottom:495.909730px;}
.y96{bottom:499.653021px;}
.y15a{bottom:504.715769px;}
.y16{bottom:505.458311px;}
.y10e{bottom:506.556022px;}
.yb7{bottom:509.044821px;}
.y52{bottom:510.908229px;}
.y95{bottom:514.651520px;}
.y159{bottom:517.462019px;}
.y10d{bottom:521.554521px;}
.y15{bottom:521.955311px;}
.yb6{bottom:524.047822px;}
.y51{bottom:525.906728px;}
.y158{bottom:530.208269px;}
.y10c{bottom:536.553020px;}
.y14{bottom:538.452311px;}
.yb5{bottom:539.046321px;}
.y50{bottom:540.905228px;}
.y157{bottom:542.954519px;}
.y10b{bottom:551.551519px;}
.yb4{bottom:554.044821px;}
.y13{bottom:554.949311px;}
.y156{bottom:555.700769px;}
.y10a{bottom:566.554521px;}
.y155{bottom:568.447019px;}
.yb3{bottom:569.043320px;}
.y12{bottom:571.446311px;}
.y4f{bottom:573.085811px;}
.y154{bottom:581.193269px;}
.y109{bottom:581.553020px;}
.y11{bottom:587.943311px;}
.y4e{bottom:588.084310px;}
.y153{bottom:593.939520px;}
.y108{bottom:596.551519px;}
.y4d{bottom:603.082809px;}
.y10{bottom:604.440311px;}
.y152{bottom:606.685770px;}
.y107{bottom:611.563526px;}
.y151{bottom:619.432020px;}
.yf{bottom:620.937311px;}
.y106{bottom:626.562025px;}
.ydb{bottom:628.926466px;}
.y150{bottom:632.178270px;}
.y4c{bottom:635.263484px;}
.ye{bottom:637.434311px;}
.y105{bottom:641.560524px;}
.yda{bottom:643.924965px;}
.y14f{bottom:644.924520px;}
.y4b{bottom:650.261984px;}
.y18f{bottom:656.056781px;}
.y104{bottom:656.559023px;}
.y14e{bottom:657.670770px;}
.yd9{bottom:658.923464px;}
.y4a{bottom:665.260483px;}
.yc{bottom:667.434310px;}
.y14d{bottom:670.417020px;}
.y18e{bottom:671.055280px;}
.y103{bottom:671.557522px;}
.yd{bottom:672.534302px;}
.yd8{bottom:673.921963px;}
.y14c{bottom:683.163270px;}
.yb{bottom:685.434310px;}
.y18d{bottom:686.053780px;}
.y102{bottom:686.556022px;}
.yd7{bottom:688.920462px;}
.y14b{bottom:695.909520px;}
.y49{bottom:697.444068px;}
.y18c{bottom:701.052279px;}
.y101{bottom:701.554521px;}
.y9{bottom:703.434311px;}
.yd6{bottom:703.918962px;}
.ya{bottom:708.534302px;}
.y14a{bottom:708.655771px;}
.y48{bottom:712.442567px;}
.y18b{bottom:716.050778px;}
.y100{bottom:716.553020px;}
.yd5{bottom:718.917461px;}
.y149{bottom:721.402021px;}
.y47{bottom:727.441066px;}
.y18a{bottom:731.049277px;}
.yff{bottom:731.551519px;}
.yd4{bottom:733.915960px;}
.y148{bottom:734.148271px;}
.y8{bottom:736.410259px;}
.y46{bottom:742.439565px;}
.y189{bottom:746.047776px;}
.yfe{bottom:746.560524px;}
.y147{bottom:746.894521px;}
.yd3{bottom:748.914459px;}
.y45{bottom:757.438065px;}
.y146{bottom:759.640771px;}
.y188{bottom:761.046276px;}
.yfd{bottom:761.559023px;}
.y145{bottom:772.387021px;}
.y187{bottom:776.044775px;}
.yfc{bottom:776.557522px;}
.y7{bottom:781.416260px;}
.y144{bottom:785.133271px;}
.y44{bottom:789.620286px;}
.y186{bottom:791.043274px;}
.yfb{bottom:791.556022px;}
.y143{bottom:797.879521px;}
.y43{bottom:804.618785px;}
.yfa{bottom:806.554521px;}
.y142{bottom:810.625771px;}
.y185{bottom:812.799277px;}
.y42{bottom:819.617284px;}
.yf9{bottom:821.553020px;}
.y141{bottom:823.372022px;}
.y6{bottom:826.422262px;}
.y184{bottom:827.797776px;}
.y41{bottom:834.615784px;}
.y140{bottom:836.118272px;}
.yf8{bottom:836.551519px;}
.y13f{bottom:848.864522px;}
.y183{bottom:849.546276px;}
.yf7{bottom:851.554521px;}
.y13e{bottom:861.610772px;}
.y40{bottom:861.615784px;}
.yf6{bottom:866.553020px;}
.y182{bottom:871.294775px;}
.y5{bottom:871.428264px;}
.y13d{bottom:874.357022px;}
.y3f{bottom:876.615784px;}
.yf5{bottom:881.551519px;}
.y13c{bottom:887.103272px;}
.y181{bottom:893.043274px;}
.yf4{bottom:896.551519px;}
.y13b{bottom:899.849522px;}
.y180{bottom:908.043274px;}
.y3e{bottom:908.797776px;}
.yf3{bottom:911.550018px;}
.y13a{bottom:912.595772px;}
.y4{bottom:916.434265px;}
.y3d{bottom:923.796276px;}
.y139{bottom:925.342022px;}
.y30{bottom:926.409576px;}
.yf2{bottom:926.550018px;}
.y138{bottom:938.088273px;}
.y3c{bottom:938.794775px;}
.y17f{bottom:941.799277px;}
.y137{bottom:950.834523px;}
.y3b{bottom:953.805280px;}
.yf1{bottom:953.806781px;}
.y17e{bottom:956.797776px;}
.y136{bottom:963.580773px;}
.y3a{bottom:968.803780px;}
.yf0{bottom:968.805280px;}
.y17d{bottom:971.796276px;}
.y135{bottom:976.327023px;}
.y39{bottom:983.802279px;}
.yef{bottom:983.803780px;}
.y17c{bottom:986.794775px;}
.y134{bottom:989.073273px;}
.y38{bottom:998.800778px;}
.yee{bottom:998.802279px;}
.y17b{bottom:1001.793274px;}
.y133{bottom:1001.819523px;}
.y37{bottom:1013.799277px;}
.yed{bottom:1013.800778px;}
.y132{bottom:1014.565773px;}
.y17a{bottom:1016.793274px;}
.y131{bottom:1027.312023px;}
.y36{bottom:1028.797776px;}
.yec{bottom:1028.799277px;}
.y130{bottom:1040.058273px;}
.y35{bottom:1043.796276px;}
.yeb{bottom:1043.797776px;}
.y12f{bottom:1052.804524px;}
.y34{bottom:1058.794775px;}
.yea{bottom:1058.796276px;}
.y12e{bottom:1065.550774px;}
.y179{bottom:1073.793274px;}
.y33{bottom:1073.794775px;}
.y12d{bottom:1078.297024px;}
.y32{bottom:1088.793274px;}
.y12c{bottom:1091.043274px;}
.y31{bottom:1139.852966px;}
.y3{bottom:1140.126892px;}
.hb{height:23.842749px;}
.h7{height:28.050293px;}
.h16{height:35.394000px;}
.he{height:36.669000px;}
.hd{height:36.681152px;}
.h9{height:38.838867px;}
.hc{height:41.158746px;}
.h2{height:43.140000px;}
.h14{height:43.154297px;}
.h4{height:44.218500px;}
.h18{height:44.505000px;}
.h17{height:45.090000px;}
.h3{height:45.744000px;}
.h19{height:46.080000px;}
.h10{height:47.469727px;}
.h6{height:48.450256px;}
.h8{height:48.450259px;}
.ha{height:53.406000px;}
.h15{height:54.101997px;}
.h12{height:54.108000px;}
.h13{height:55.296000px;}
.hf{height:76.356000px;}
.h11{height:76.907981px;}
.h5{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:61.191450px;}
.x8{left:140.952747px;}
.x4{left:233.456406px;}
.x7{left:251.453992px;}
.xb{left:300.594749px;}
.x5{left:495.675613px;}
.x6{left:518.098068px;}
.x3{left:584.586594px;}
.xa{left:816.003571px;}
.x9{left:824.207428px;}
.x1{left:825.232819px;}
@media print{
.v2{vertical-align:-18.133301pt;}
.v4{vertical-align:-16.319987pt;}
.v5{vertical-align:-15.413330pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.191987pt;}
.v1{vertical-align:18.133301pt;}
.ls12{letter-spacing:-2.880000pt;}
.ls3d{letter-spacing:-1.824000pt;}
.ls5e{letter-spacing:-1.360000pt;}
.ls7f{letter-spacing:-1.240000pt;}
.ls7a{letter-spacing:-1.200000pt;}
.ls4e{letter-spacing:-1.056000pt;}
.ls79{letter-spacing:-1.040000pt;}
.ls55{letter-spacing:-0.912000pt;}
.ls85{letter-spacing:-0.760000pt;}
.ls56{letter-spacing:-0.720000pt;}
.ls78{letter-spacing:-0.680000pt;}
.ls58{letter-spacing:-0.672000pt;}
.ls7b{letter-spacing:-0.640000pt;}
.ls54{letter-spacing:-0.576000pt;}
.ls76{letter-spacing:-0.560000pt;}
.ls5a{letter-spacing:-0.528000pt;}
.ls7e{letter-spacing:-0.520000pt;}
.ls5b{letter-spacing:-0.440000pt;}
.ls77{letter-spacing:-0.400000pt;}
.ls7c{letter-spacing:-0.360000pt;}
.ls4d{letter-spacing:-0.336000pt;}
.ls40{letter-spacing:-0.320000pt;}
.ls41{letter-spacing:-0.288000pt;}
.ls5c{letter-spacing:-0.280000pt;}
.ls1a{letter-spacing:-0.240000pt;}
.ls1d{letter-spacing:-0.226667pt;}
.ls2f{letter-spacing:-0.213333pt;}
.ls81{letter-spacing:-0.200000pt;}
.ls17{letter-spacing:-0.192000pt;}
.ls5d{letter-spacing:-0.160000pt;}
.ls1b{letter-spacing:-0.156000pt;}
.ls13{letter-spacing:-0.144000pt;}
.ls1c{letter-spacing:-0.124800pt;}
.ls5f{letter-spacing:-0.120000pt;}
.ls2e{letter-spacing:-0.096000pt;}
.ls57{letter-spacing:-0.093600pt;}
.ls7d{letter-spacing:-0.080000pt;}
.ls2d{letter-spacing:-0.048000pt;}
.ls80{letter-spacing:-0.040000pt;}
.ls4b{letter-spacing:-0.031200pt;}
.ls11{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000408pt;}
.ls45{letter-spacing:0.004759pt;}
.ls43{letter-spacing:0.004809pt;}
.ls42{letter-spacing:0.004816pt;}
.ls46{letter-spacing:0.009583pt;}
.ls4{letter-spacing:0.011591pt;}
.ls2{letter-spacing:0.011754pt;}
.ls3{letter-spacing:0.012242pt;}
.ls5{letter-spacing:0.012323pt;}
.ls59{letter-spacing:0.031200pt;}
.ls50{letter-spacing:0.036328pt;}
.ls68{letter-spacing:0.040000pt;}
.lsc{letter-spacing:0.043593pt;}
.ls10{letter-spacing:0.045333pt;}
.ls25{letter-spacing:0.048000pt;}
.ls34{letter-spacing:0.052845pt;}
.ls30{letter-spacing:0.053333pt;}
.ls39{letter-spacing:0.067620pt;}
.ls65{letter-spacing:0.080000pt;}
.lsd{letter-spacing:0.090667pt;}
.ls7{letter-spacing:0.093600pt;}
.ls20{letter-spacing:0.096000pt;}
.ls1f{letter-spacing:0.106667pt;}
.ls44{letter-spacing:0.110310pt;}
.ls67{letter-spacing:0.120000pt;}
.ls51{letter-spacing:0.124798pt;}
.ls16{letter-spacing:0.124800pt;}
.ls14{letter-spacing:0.144000pt;}
.ls9{letter-spacing:0.155999pt;}
.ls83{letter-spacing:0.160000pt;}
.ls71{letter-spacing:0.176000pt;}
.ls19{letter-spacing:0.187200pt;}
.ls4f{letter-spacing:0.187205pt;}
.lsa{letter-spacing:0.192000pt;}
.ls6d{letter-spacing:0.200000pt;}
.ls31{letter-spacing:0.214430pt;}
.ls49{letter-spacing:0.218400pt;}
.ls15{letter-spacing:0.240000pt;}
.ls4c{letter-spacing:0.266667pt;}
.ls3a{letter-spacing:0.278390pt;}
.ls52{letter-spacing:0.280000pt;}
.ls18{letter-spacing:0.288000pt;}
.ls37{letter-spacing:0.289462pt;}
.ls72{letter-spacing:0.300000pt;}
.ls3b{letter-spacing:0.320000pt;}
.ls2a{letter-spacing:0.336000pt;}
.ls70{letter-spacing:0.360000pt;}
.lsf{letter-spacing:0.370091pt;}
.ls3e{letter-spacing:0.373333pt;}
.ls3c{letter-spacing:0.374377pt;}
.ls4a{letter-spacing:0.374400pt;}
.ls22{letter-spacing:0.384000pt;}
.ls6c{letter-spacing:0.400000pt;}
.ls23{letter-spacing:0.426667pt;}
.ls24{letter-spacing:0.432000pt;}
.ls84{letter-spacing:0.440000pt;}
.lsb{letter-spacing:0.480000pt;}
.ls28{letter-spacing:0.513604pt;}
.ls82{letter-spacing:0.520000pt;}
.ls21{letter-spacing:0.528000pt;}
.ls26{letter-spacing:0.533333pt;}
.ls6a{letter-spacing:0.560000pt;}
.ls8{letter-spacing:0.576000pt;}
.ls47{letter-spacing:0.586667pt;}
.lse{letter-spacing:0.589333pt;}
.ls6e{letter-spacing:0.600000pt;}
.ls88{letter-spacing:0.624000pt;}
.ls75{letter-spacing:0.640000pt;}
.ls36{letter-spacing:0.672026pt;}
.ls61{letter-spacing:0.680000pt;}
.ls35{letter-spacing:0.720000pt;}
.ls3f{letter-spacing:0.746667pt;}
.ls63{letter-spacing:0.760000pt;}
.ls86{letter-spacing:0.768000pt;}
.ls64{letter-spacing:0.800000pt;}
.ls27{letter-spacing:0.816000pt;}
.ls53{letter-spacing:0.816068pt;}
.ls74{letter-spacing:0.840000pt;}
.ls87{letter-spacing:0.864000pt;}
.ls48{letter-spacing:0.912000pt;}
.ls2b{letter-spacing:0.929005pt;}
.ls6b{letter-spacing:0.996063pt;}
.ls29{letter-spacing:1.056000pt;}
.ls32{letter-spacing:1.066667pt;}
.ls6f{letter-spacing:1.179956pt;}
.ls66{letter-spacing:1.420032pt;}
.ls2c{letter-spacing:1.420813pt;}
.ls60{letter-spacing:1.440000pt;}
.ls33{letter-spacing:1.728000pt;}
.ls38{letter-spacing:1.760000pt;}
.ls69{letter-spacing:1.783942pt;}
.ls62{letter-spacing:1.920000pt;}
.ls0{letter-spacing:2.304000pt;}
.ls1e{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.ls73{letter-spacing:5.440000pt;}
.ws1{word-spacing:-13.393333pt;}
.ws1e{word-spacing:-13.066667pt;}
.ws43{word-spacing:-12.085333pt;}
.ws1f{word-spacing:-12.000000pt;}
.ws50{word-spacing:-11.424000pt;}
.ws44{word-spacing:-11.376000pt;}
.ws6{word-spacing:-11.184000pt;}
.ws0{word-spacing:-11.093333pt;}
.ws2{word-spacing:-10.986667pt;}
.ws4e{word-spacing:-10.896000pt;}
.ws4b{word-spacing:-10.416000pt;}
.ws70{word-spacing:-9.880000pt;}
.ws73{word-spacing:-9.840000pt;}
.ws6f{word-spacing:-9.760000pt;}
.ws78{word-spacing:-9.640000pt;}
.ws7a{word-spacing:-9.480000pt;}
.ws7b{word-spacing:-9.400000pt;}
.ws77{word-spacing:-9.320000pt;}
.ws79{word-spacing:-9.280000pt;}
.ws76{word-spacing:-9.200000pt;}
.ws5c{word-spacing:-9.080000pt;}
.ws9f{word-spacing:-9.040000pt;}
.ws95{word-spacing:-9.000000pt;}
.ws72{word-spacing:-8.960000pt;}
.ws71{word-spacing:-8.760000pt;}
.ws92{word-spacing:-8.720000pt;}
.ws87{word-spacing:-8.600000pt;}
.ws5d{word-spacing:-8.560000pt;}
.ws93{word-spacing:-8.520000pt;}
.ws75{word-spacing:-8.480000pt;}
.ws7c{word-spacing:-8.400000pt;}
.ws74{word-spacing:-7.960000pt;}
.ws52{word-spacing:-7.456800pt;}
.ws4f{word-spacing:-7.300800pt;}
.ws7{word-spacing:-7.269600pt;}
.ws5{word-spacing:-7.207200pt;}
.ws51{word-spacing:-7.176000pt;}
.ws3{word-spacing:-7.141333pt;}
.ws5b{word-spacing:-7.113600pt;}
.ws4{word-spacing:-7.082400pt;}
.ws53{word-spacing:-7.051200pt;}
.ws5a{word-spacing:-6.988800pt;}
.ws9{word-spacing:-6.957600pt;}
.ws8{word-spacing:-6.926400pt;}
.wsa{word-spacing:-5.893333pt;}
.ws7d{word-spacing:-5.440000pt;}
.ws4d{word-spacing:-4.896000pt;}
.ws3d{word-spacing:-1.760000pt;}
.ws24{word-spacing:-1.680000pt;}
.wse{word-spacing:-1.632000pt;}
.ws54{word-spacing:-1.584000pt;}
.ws63{word-spacing:-1.536000pt;}
.ws40{word-spacing:-1.440000pt;}
.ws81{word-spacing:-1.400000pt;}
.ws6b{word-spacing:-1.360000pt;}
.ws35{word-spacing:-1.344000pt;}
.ws45{word-spacing:-1.248000pt;}
.ws10{word-spacing:-1.200000pt;}
.ws60{word-spacing:-1.152000pt;}
.ws67{word-spacing:-1.133333pt;}
.ws17{word-spacing:-1.104000pt;}
.ws3a{word-spacing:-1.066667pt;}
.ws42{word-spacing:-1.056000pt;}
.ws57{word-spacing:-1.008000pt;}
.ws4c{word-spacing:-0.960000pt;}
.ws6a{word-spacing:-0.920000pt;}
.ws37{word-spacing:-0.912000pt;}
.ws88{word-spacing:-0.880000pt;}
.ws36{word-spacing:-0.864000pt;}
.wsc{word-spacing:-0.853333pt;}
.ws26{word-spacing:-0.816000pt;}
.ws8e{word-spacing:-0.800000pt;}
.ws25{word-spacing:-0.768000pt;}
.ws48{word-spacing:-0.746667pt;}
.ws8c{word-spacing:-0.720000pt;}
.wsa2{word-spacing:-0.672000pt;}
.ws80{word-spacing:-0.640000pt;}
.ws27{word-spacing:-0.624000pt;}
.ws68{word-spacing:-0.600000pt;}
.ws1b{word-spacing:-0.589333pt;}
.ws55{word-spacing:-0.586667pt;}
.wsf{word-spacing:-0.576000pt;}
.ws2f{word-spacing:-0.533333pt;}
.ws13{word-spacing:-0.528000pt;}
.ws8f{word-spacing:-0.520000pt;}
.ws31{word-spacing:-0.480000pt;}
.ws6e{word-spacing:-0.440000pt;}
.ws21{word-spacing:-0.432000pt;}
.ws2e{word-spacing:-0.426667pt;}
.ws23{word-spacing:-0.384000pt;}
.ws47{word-spacing:-0.373333pt;}
.ws15{word-spacing:-0.336000pt;}
.ws4a{word-spacing:-0.320000pt;}
.ws39{word-spacing:-0.288000pt;}
.ws6d{word-spacing:-0.280000pt;}
.ws59{word-spacing:-0.266667pt;}
.ws34{word-spacing:-0.240000pt;}
.ws6c{word-spacing:-0.200000pt;}
.ws64{word-spacing:-0.192000pt;}
.ws22{word-spacing:-0.187200pt;}
.ws69{word-spacing:-0.160000pt;}
.ws30{word-spacing:-0.144000pt;}
.ws14{word-spacing:-0.124800pt;}
.ws98{word-spacing:-0.120000pt;}
.ws29{word-spacing:-0.106667pt;}
.ws2d{word-spacing:-0.096000pt;}
.ws65{word-spacing:-0.093600pt;}
.ws1a{word-spacing:-0.090667pt;}
.ws9b{word-spacing:-0.080000pt;}
.ws2c{word-spacing:-0.053333pt;}
.ws20{word-spacing:-0.048000pt;}
.ws1d{word-spacing:-0.045333pt;}
.ws90{word-spacing:-0.040000pt;}
.wsb{word-spacing:0.000000pt;}
.ws3f{word-spacing:0.048000pt;}
.ws97{word-spacing:0.080000pt;}
.ws2b{word-spacing:0.096000pt;}
.ws86{word-spacing:0.120000pt;}
.ws18{word-spacing:0.124800pt;}
.ws12{word-spacing:0.144000pt;}
.ws16{word-spacing:0.156000pt;}
.ws9e{word-spacing:0.160000pt;}
.ws38{word-spacing:0.192000pt;}
.ws91{word-spacing:0.200000pt;}
.ws28{word-spacing:0.213333pt;}
.ws19{word-spacing:0.226667pt;}
.ws56{word-spacing:0.240000pt;}
.ws2a{word-spacing:0.288000pt;}
.ws49{word-spacing:0.320000pt;}
.ws5f{word-spacing:0.336000pt;}
.ws11{word-spacing:0.384000pt;}
.ws9a{word-spacing:0.480000pt;}
.ws96{word-spacing:0.520000pt;}
.wsa3{word-spacing:0.528000pt;}
.ws1c{word-spacing:0.544000pt;}
.wsa0{word-spacing:0.560000pt;}
.ws46{word-spacing:0.576000pt;}
.ws9d{word-spacing:0.600000pt;}
.ws3c{word-spacing:0.624000pt;}
.ws7f{word-spacing:0.640000pt;}
.ws5e{word-spacing:0.672000pt;}
.ws84{word-spacing:0.760000pt;}
.ws41{word-spacing:0.768000pt;}
.ws7e{word-spacing:0.800000pt;}
.ws61{word-spacing:0.816000pt;}
.ws85{word-spacing:0.840000pt;}
.ws62{word-spacing:0.864000pt;}
.ws89{word-spacing:0.920000pt;}
.ws8b{word-spacing:0.960000pt;}
.ws33{word-spacing:1.008000pt;}
.ws8d{word-spacing:1.040000pt;}
.ws66{word-spacing:1.056000pt;}
.ws9c{word-spacing:1.080000pt;}
.wsa1{word-spacing:1.104000pt;}
.ws83{word-spacing:1.120000pt;}
.ws58{word-spacing:1.152000pt;}
.ws82{word-spacing:1.160000pt;}
.ws94{word-spacing:1.240000pt;}
.ws99{word-spacing:1.280000pt;}
.ws8a{word-spacing:1.400000pt;}
.ws32{word-spacing:1.488000pt;}
.ws3b{word-spacing:1.632000pt;}
.wsd{word-spacing:2.880000pt;}
.ws3e{word-spacing:3.264000pt;}
._13{margin-left:-10.560000pt;}
._16{margin-left:-9.640000pt;}
._14{margin-left:-8.200000pt;}
._9{margin-left:-6.537497pt;}
._5{margin-left:-5.573133pt;}
._3{margin-left:-4.379768pt;}
._1{margin-left:-3.036800pt;}
._0{margin-left:-1.578682pt;}
._6{width:1.061133pt;}
._4{width:2.438465pt;}
._d{width:3.915858pt;}
._a{width:4.992000pt;}
._12{width:6.018682pt;}
._f{width:7.520002pt;}
._11{width:8.760000pt;}
._e{width:11.200000pt;}
._10{width:12.120000pt;}
._c{width:13.583993pt;}
._15{width:15.880002pt;}
._2{width:38.772862pt;}
._7{width:41.596286pt;}
._8{width:42.886511pt;}
._b{width:44.070852pt;}
.fs7{font-size:29.466667pt;}
.fs6{font-size:31.199999pt;}
.fs4{font-size:34.666667pt;}
.fsc{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fsa{font-size:58.666667pt;}
.fsb{font-size:85.333333pt;}
.fs9{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:24.157867pt;}
.y1{bottom:24.175868pt;}
.y12b{bottom:58.299995pt;}
.y9d{bottom:59.153599pt;}
.ydf{bottom:59.820266pt;}
.y2f{bottom:60.723466pt;}
.y7c{bottom:62.191206pt;}
.y6d{bottom:63.605332pt;}
.y94{bottom:65.046799pt;}
.y12a{bottom:69.629995pt;}
.y9c{bottom:72.485599pt;}
.yde{bottom:73.152265pt;}
.y2e{bottom:74.051466pt;}
.y7b{bottom:75.523205pt;}
.y6c{bottom:76.937331pt;}
.y93{bottom:78.378799pt;}
.y129{bottom:80.959995pt;}
.yd2{bottom:81.338402pt;}
.y178{bottom:83.605332pt;}
.y9b{bottom:85.817598pt;}
.ydd{bottom:86.484265pt;}
.y2d{bottom:87.384799pt;}
.y7a{bottom:88.855204pt;}
.y6b{bottom:90.269331pt;}
.y92{bottom:91.710798pt;}
.y128{bottom:92.289995pt;}
.yd1{bottom:94.670401pt;}
.y177{bottom:96.937331pt;}
.y9a{bottom:99.149597pt;}
.ydc{bottom:99.816264pt;}
.y2c{bottom:100.718132pt;}
.y6a{bottom:103.601330pt;}
.y127{bottom:103.619995pt;}
.yb2{bottom:104.013739pt;}
.y91{bottom:105.042797pt;}
.yd0{bottom:108.003735pt;}
.y176{bottom:110.269331pt;}
.y79{bottom:113.343738pt;}
.y126{bottom:114.949995pt;}
.y69{bottom:116.941334pt;}
.yb1{bottom:117.345738pt;}
.y2b{bottom:117.899465pt;}
.y90{bottom:118.374797pt;}
.ycf{bottom:121.341070pt;}
.y175{bottom:123.601330pt;}
.y125{bottom:126.279996pt;}
.y78{bottom:126.675738pt;}
.y68{bottom:130.273333pt;}
.yb0{bottom:130.677737pt;}
.yce{bottom:134.673070pt;}
.y174{bottom:136.933329pt;}
.y124{bottom:137.609996pt;}
.y77{bottom:140.007737pt;}
.y8f{bottom:142.861875pt;}
.y67{bottom:143.605332pt;}
.yaf{bottom:144.009737pt;}
.ycd{bottom:148.005069pt;}
.y2a{bottom:148.610944pt;}
.y123{bottom:148.939996pt;}
.ya6{bottom:148.969738pt;}
.ye9{bottom:149.875081pt;}
.y173{bottom:150.266663pt;}
.y76{bottom:153.339736pt;}
.y8e{bottom:156.193874pt;}
.y66{bottom:156.937331pt;}
.yae{bottom:157.341736pt;}
.y122{bottom:160.269996pt;}
.ycc{bottom:161.337068pt;}
.y29{bottom:161.942944pt;}
.ya5{bottom:162.301737pt;}
.ye8{bottom:163.207081pt;}
.y75{bottom:166.671735pt;}
.y8d{bottom:169.525873pt;}
.y65{bottom:170.269331pt;}
.yad{bottom:170.673735pt;}
.y121{bottom:171.599996pt;}
.ycb{bottom:174.686410pt;}
.y28{bottom:175.277611pt;}
.ya4{bottom:175.633737pt;}
.ye7{bottom:176.539080pt;}
.y172{bottom:176.716236pt;}
.y74{bottom:180.003735pt;}
.y8c{bottom:182.857872pt;}
.y120{bottom:182.933329pt;}
.y64{bottom:183.601330pt;}
.yac{bottom:184.005734pt;}
.yca{bottom:188.018409pt;}
.y171{bottom:188.046237pt;}
.y27{bottom:188.609610pt;}
.ya3{bottom:188.965736pt;}
.ye6{bottom:189.871079pt;}
.y73{bottom:193.335734pt;}
.y8b{bottom:196.189872pt;}
.y63{bottom:196.933329pt;}
.yab{bottom:197.337734pt;}
.y170{bottom:199.376237pt;}
.yc9{bottom:201.350409pt;}
.y26{bottom:201.944278pt;}
.ya2{bottom:202.297735pt;}
.ye5{bottom:203.203078pt;}
.y8a{bottom:209.521871pt;}
.yaa{bottom:210.669733pt;}
.y16f{bottom:210.706237pt;}
.y11f{bottom:212.271996pt;}
.yc8{bottom:214.682408pt;}
.y25{bottom:215.276277pt;}
.ya1{bottom:215.629735pt;}
.ye4{bottom:216.535078pt;}
.y72{bottom:217.818932pt;}
.y16e{bottom:222.036237pt;}
.y89{bottom:222.855204pt;}
.ya9{bottom:224.001732pt;}
.y62{bottom:225.552947pt;}
.y11e{bottom:225.599996pt;}
.yc7{bottom:228.014407pt;}
.y24{bottom:228.610944pt;}
.ya0{bottom:228.961734pt;}
.ye3{bottom:229.867077pt;}
.y71{bottom:231.150931pt;}
.y16d{bottom:233.366237pt;}
.y88{bottom:236.188538pt;}
.ya8{bottom:237.333732pt;}
.y61{bottom:238.884946pt;}
.yc6{bottom:241.346406pt;}
.y23{bottom:241.942944pt;}
.y9f{bottom:242.293733pt;}
.ye2{bottom:243.201744pt;}
.y70{bottom:244.482930pt;}
.y16c{bottom:244.696237pt;}
.y11d{bottom:250.277355pt;}
.ya7{bottom:250.665731pt;}
.y60{bottom:252.216945pt;}
.yc5{bottom:254.678406pt;}
.y22{bottom:255.278945pt;}
.y9e{bottom:255.625732pt;}
.y16b{bottom:256.026237pt;}
.ye1{bottom:256.533744pt;}
.y87{bottom:260.671735pt;}
.y11c{bottom:263.609355pt;}
.y5f{bottom:265.548944pt;}
.y16a{bottom:267.356237pt;}
.yc4{bottom:268.010405pt;}
.y6f{bottom:268.484265pt;}
.y21{bottom:268.610944pt;}
.ye0{bottom:269.865743pt;}
.y86{bottom:274.003735pt;}
.y11b{bottom:276.941354pt;}
.y169{bottom:278.686237pt;}
.y5e{bottom:278.880944pt;}
.yc3{bottom:281.342404pt;}
.y6e{bottom:281.816264pt;}
.y20{bottom:281.942944pt;}
.y85{bottom:287.335734pt;}
.y168{bottom:290.016237pt;}
.y11a{bottom:290.273353pt;}
.y5d{bottom:292.212943pt;}
.yc2{bottom:294.674404pt;}
.y1f{bottom:295.276277pt;}
.y167{bottom:301.346238pt;}
.y119{bottom:303.605352pt;}
.y5c{bottom:305.544942pt;}
.yc1{bottom:308.006403pt;}
.y1e{bottom:308.612279pt;}
.y84{bottom:311.818932pt;}
.y166{bottom:312.676238pt;}
.y118{bottom:316.937352pt;}
.y5b{bottom:318.876941pt;}
.yc0{bottom:321.338402pt;}
.y1d{bottom:321.944278pt;}
.y165{bottom:324.006238pt;}
.y83{bottom:325.150931pt;}
.y117{bottom:330.269351pt;}
.y5a{bottom:332.208941pt;}
.ybf{bottom:334.670401pt;}
.y80{bottom:334.829726pt;}
.y1c{bottom:335.276277pt;}
.y164{bottom:335.336238pt;}
.y82{bottom:338.484285pt;}
.y116{bottom:343.601350pt;}
.y59{bottom:345.540940pt;}
.y163{bottom:346.666238pt;}
.ybe{bottom:348.010405pt;}
.y7f{bottom:348.161726pt;}
.y1b{bottom:348.640276pt;}
.y81{bottom:351.816284pt;}
.y115{bottom:356.936018pt;}
.y162{bottom:357.996238pt;}
.y58{bottom:358.872939pt;}
.ybd{bottom:361.342404pt;}
.y7e{bottom:361.493725pt;}
.y161{bottom:369.326238pt;}
.y114{bottom:370.268017pt;}
.y57{bottom:372.204939pt;}
.ybc{bottom:374.674404pt;}
.y7d{bottom:374.825724pt;}
.y160{bottom:380.656238pt;}
.y113{bottom:383.602684pt;}
.y56{bottom:385.536938pt;}
.ybb{bottom:388.006403pt;}
.y1a{bottom:390.640276pt;}
.y15f{bottom:391.986238pt;}
.y112{bottom:396.934684pt;}
.y55{bottom:398.868937pt;}
.yba{bottom:401.338402pt;}
.y15e{bottom:403.316238pt;}
.y99{bottom:404.140020pt;}
.y19{bottom:405.304276pt;}
.y111{bottom:410.276021pt;}
.y15d{bottom:414.646239pt;}
.yb9{bottom:414.670401pt;}
.y98{bottom:417.472020pt;}
.y18{bottom:419.968276pt;}
.y110{bottom:423.608021pt;}
.y15c{bottom:425.976239pt;}
.y54{bottom:427.476650pt;}
.yb8{bottom:428.002401pt;}
.y97{bottom:430.804019pt;}
.y17{bottom:434.632276pt;}
.y10f{bottom:436.940020pt;}
.y15b{bottom:437.306239pt;}
.y53{bottom:440.808649pt;}
.y96{bottom:444.136018pt;}
.y15a{bottom:448.636239pt;}
.y16{bottom:449.296276pt;}
.y10e{bottom:450.272019pt;}
.yb7{bottom:452.484285pt;}
.y52{bottom:454.140648pt;}
.y95{bottom:457.468018pt;}
.y159{bottom:459.966239pt;}
.y10d{bottom:463.604018pt;}
.y15{bottom:463.960276pt;}
.yb6{bottom:465.820286pt;}
.y51{bottom:467.472648pt;}
.y158{bottom:471.296239pt;}
.y10c{bottom:476.936018pt;}
.y14{bottom:478.624276pt;}
.yb5{bottom:479.152286pt;}
.y50{bottom:480.804647pt;}
.y157{bottom:482.626239pt;}
.y10b{bottom:490.268017pt;}
.yb4{bottom:492.484285pt;}
.y13{bottom:493.288276pt;}
.y156{bottom:493.956239pt;}
.y10a{bottom:503.604018pt;}
.y155{bottom:505.286239pt;}
.yb3{bottom:505.816284pt;}
.y12{bottom:507.952276pt;}
.y4f{bottom:509.409610pt;}
.y154{bottom:516.616239pt;}
.y109{bottom:516.936018pt;}
.y11{bottom:522.616276pt;}
.y4e{bottom:522.741609pt;}
.y153{bottom:527.946240pt;}
.y108{bottom:530.268017pt;}
.y4d{bottom:536.073608pt;}
.y10{bottom:537.280276pt;}
.y152{bottom:539.276240pt;}
.y107{bottom:543.612023pt;}
.y151{bottom:550.606240pt;}
.yf{bottom:551.944276pt;}
.y106{bottom:556.944022pt;}
.ydb{bottom:559.045747pt;}
.y150{bottom:561.936240pt;}
.y4c{bottom:564.678653pt;}
.ye{bottom:566.608276pt;}
.y105{bottom:570.276021pt;}
.yda{bottom:572.377747pt;}
.y14f{bottom:573.266240pt;}
.y4b{bottom:578.010652pt;}
.y18f{bottom:583.161583pt;}
.y104{bottom:583.608021pt;}
.y14e{bottom:584.596240pt;}
.yd9{bottom:585.709746pt;}
.y4a{bottom:591.342651pt;}
.yc{bottom:593.274942pt;}
.y14d{bottom:595.926240pt;}
.y18e{bottom:596.493583pt;}
.y103{bottom:596.940020pt;}
.yd{bottom:597.808268pt;}
.yd8{bottom:599.041745pt;}
.y14c{bottom:607.256240pt;}
.yb{bottom:609.274942pt;}
.y18d{bottom:609.825582pt;}
.y102{bottom:610.272019pt;}
.yd7{bottom:612.373744pt;}
.y14b{bottom:618.586240pt;}
.y49{bottom:619.950282pt;}
.y18c{bottom:623.157581pt;}
.y101{bottom:623.604018pt;}
.y9{bottom:625.274943pt;}
.yd6{bottom:625.705744pt;}
.ya{bottom:629.808268pt;}
.y14a{bottom:629.916240pt;}
.y48{bottom:633.282282pt;}
.y18b{bottom:636.489580pt;}
.y100{bottom:636.936018pt;}
.yd5{bottom:639.037743pt;}
.y149{bottom:641.246241pt;}
.y47{bottom:646.614281pt;}
.y18a{bottom:649.821580pt;}
.yff{bottom:650.268017pt;}
.yd4{bottom:652.369742pt;}
.y148{bottom:652.576241pt;}
.y8{bottom:654.586897pt;}
.y46{bottom:659.946280pt;}
.y189{bottom:663.153579pt;}
.yfe{bottom:663.609355pt;}
.y147{bottom:663.906241pt;}
.yd3{bottom:665.701742pt;}
.y45{bottom:673.278280pt;}
.y146{bottom:675.236241pt;}
.y188{bottom:676.485578pt;}
.yfd{bottom:676.941354pt;}
.y145{bottom:686.566241pt;}
.y187{bottom:689.817578pt;}
.yfc{bottom:690.273353pt;}
.y7{bottom:694.592232pt;}
.y144{bottom:697.896241pt;}
.y44{bottom:701.884699pt;}
.y186{bottom:703.149577pt;}
.yfb{bottom:703.605352pt;}
.y143{bottom:709.226241pt;}
.y43{bottom:715.216698pt;}
.yfa{bottom:716.937352pt;}
.y142{bottom:720.556241pt;}
.y185{bottom:722.488246pt;}
.y42{bottom:728.548697pt;}
.yf9{bottom:730.269351pt;}
.y141{bottom:731.886241pt;}
.y6{bottom:734.597566pt;}
.y184{bottom:735.820246pt;}
.y41{bottom:741.880697pt;}
.y140{bottom:743.216241pt;}
.yf8{bottom:743.601350pt;}
.y13f{bottom:754.546242pt;}
.y183{bottom:755.152245pt;}
.yf7{bottom:756.937352pt;}
.y13e{bottom:765.876242pt;}
.y40{bottom:765.880697pt;}
.yf6{bottom:770.269351pt;}
.y182{bottom:774.484244pt;}
.y5{bottom:774.602901pt;}
.y13d{bottom:777.206242pt;}
.y3f{bottom:779.214030pt;}
.yf5{bottom:783.601350pt;}
.y13c{bottom:788.536242pt;}
.y181{bottom:793.816243pt;}
.yf4{bottom:796.934684pt;}
.y13b{bottom:799.866242pt;}
.y180{bottom:807.149577pt;}
.y3e{bottom:807.820246pt;}
.yf3{bottom:810.266683pt;}
.y13a{bottom:811.196242pt;}
.y4{bottom:814.608236pt;}
.y3d{bottom:821.152245pt;}
.y139{bottom:822.526242pt;}
.y30{bottom:823.475179pt;}
.yf2{bottom:823.600016pt;}
.y138{bottom:833.856242pt;}
.y3c{bottom:834.484244pt;}
.y17f{bottom:837.154913pt;}
.y137{bottom:845.186242pt;}
.y3b{bottom:847.826916pt;}
.yf1{bottom:847.828250pt;}
.y17e{bottom:850.486912pt;}
.y136{bottom:856.516242pt;}
.y3a{bottom:861.158915pt;}
.yf0{bottom:861.160249pt;}
.y17d{bottom:863.818912pt;}
.y135{bottom:867.846243pt;}
.y39{bottom:874.490914pt;}
.yef{bottom:874.492249pt;}
.y17c{bottom:877.150911pt;}
.y134{bottom:879.176243pt;}
.y38{bottom:887.822914pt;}
.yee{bottom:887.824248pt;}
.y17b{bottom:890.482910pt;}
.y133{bottom:890.506243pt;}
.y37{bottom:901.154913pt;}
.yed{bottom:901.156247pt;}
.y132{bottom:901.836243pt;}
.y17a{bottom:903.816243pt;}
.y131{bottom:913.166243pt;}
.y36{bottom:914.486912pt;}
.yec{bottom:914.488246pt;}
.y130{bottom:924.496243pt;}
.y35{bottom:927.818912pt;}
.yeb{bottom:927.820246pt;}
.y12f{bottom:935.826243pt;}
.y34{bottom:941.150911pt;}
.yea{bottom:941.152245pt;}
.y12e{bottom:947.156243pt;}
.y179{bottom:954.482910pt;}
.y33{bottom:954.484244pt;}
.y12d{bottom:958.486243pt;}
.y32{bottom:967.816243pt;}
.y12c{bottom:969.816243pt;}
.y31{bottom:1013.202637pt;}
.y3{bottom:1013.446126pt;}
.hb{height:21.193555pt;}
.h7{height:24.933594pt;}
.h16{height:31.461333pt;}
.he{height:32.594667pt;}
.hd{height:32.605469pt;}
.h9{height:34.523438pt;}
.hc{height:36.585552pt;}
.h2{height:38.346667pt;}
.h14{height:38.359375pt;}
.h4{height:39.305333pt;}
.h18{height:39.560000pt;}
.h17{height:40.080000pt;}
.h3{height:40.661333pt;}
.h19{height:40.960000pt;}
.h10{height:42.195312pt;}
.h6{height:43.066895pt;}
.h8{height:43.066897pt;}
.ha{height:47.472000pt;}
.h15{height:48.090664pt;}
.h12{height:48.096000pt;}
.h13{height:49.152000pt;}
.hf{height:67.872000pt;}
.h11{height:68.362649pt;}
.h5{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:54.392400pt;}
.x8{left:125.291331pt;}
.x4{left:207.516805pt;}
.x7{left:223.514660pt;}
.xb{left:267.195333pt;}
.x5{left:440.600545pt;}
.x6{left:460.531616pt;}
.x3{left:519.632528pt;}
.xa{left:725.336507pt;}
.x9{left:732.628825pt;}
.x1{left:733.540283pt;}
}




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