
    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_7a9c362138f725826e06c5da.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9d12ce123975022b89084168.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9d9c852298d39f52dfbc1f5a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.048340;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_f71f980c55c89f9706e01762.woff')format("woff");}.ff4{font-family:ff4;line-height:1.190918;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_79e840acf4c50672ed38b9a4.woff')format("woff");}.ff5{font-family:ff5;line-height:0.722656;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_402d1ba8b947bbc98685326a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.191406;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_48674e9d79be99f4b8b6339a.woff')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_7196a330a431975f693da7ff.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_9e92b6cc0dd6f46aa9b55865.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5650c5dbcc382a5c0f128b94.woff')format("woff");}.ffa{font-family:ffa;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_f2dbff59437c3896b99bdd14.woff')format("woff");}.ffb{font-family:ffb;line-height:0.969000;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_b9ab011391eae8f7cbdabb19.woff')format("woff");}.ffc{font-family:ffc;line-height:0.388000;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_13e594edd28c8a8bee69b8b6.woff')format("woff");}.ffd{font-family:ffd;line-height:0.853000;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_2a719632c46d87cf520112f3.woff')format("woff");}.ffe{font-family:ffe;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_8f0b85896b96a6ab729fa4e8.woff')format("woff");}.fff{font-family:fff;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-21.000000px;}
.v6{vertical-align:-18.900146px;}
.v4{vertical-align:-17.849991px;}
.v7{vertical-align:-10.824018px;}
.v1{vertical-align:-1.488000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:10.800018px;}
.v9{vertical-align:15.344817px;}
.v5{vertical-align:17.825991px;}
.v3{vertical-align:18.893963px;}
.ls7d{letter-spacing:-2.790000px;}
.ls3e{letter-spacing:-1.512000px;}
.ls74{letter-spacing:-1.395000px;}
.ls44{letter-spacing:-1.176000px;}
.ls7e{letter-spacing:-1.170000px;}
.ls40{letter-spacing:-1.134000px;}
.ls3d{letter-spacing:-1.026000px;}
.ls4e{letter-spacing:-0.918000px;}
.ls42{letter-spacing:-0.882000px;}
.ls39{letter-spacing:-0.756000px;}
.ls3f{letter-spacing:-0.702000px;}
.ls80{letter-spacing:-0.675000px;}
.ls43{letter-spacing:-0.546000px;}
.ls61{letter-spacing:-0.540000px;}
.ls60{letter-spacing:-0.486000px;}
.ls82{letter-spacing:-0.405000px;}
.ls2b{letter-spacing:-0.378000px;}
.ls41{letter-spacing:-0.336000px;}
.ls2a{letter-spacing:-0.324000px;}
.ls6e{letter-spacing:-0.315000px;}
.ls25{letter-spacing:-0.270000px;}
.ls2c{letter-spacing:-0.245700px;}
.ls81{letter-spacing:-0.225000px;}
.ls3a{letter-spacing:-0.216000px;}
.ls32{letter-spacing:-0.210600px;}
.ls71{letter-spacing:-0.180000px;}
.ls27{letter-spacing:-0.162000px;}
.ls13{letter-spacing:-0.108000px;}
.ls3c{letter-spacing:-0.105300px;}
.ls70{letter-spacing:-0.090000px;}
.ls2d{letter-spacing:-0.070200px;}
.ls26{letter-spacing:-0.054000px;}
.ls6f{letter-spacing:-0.045000px;}
.ls29{letter-spacing:-0.035100px;}
.ls11{letter-spacing:0.000000px;}
.ls4c{letter-spacing:0.000184px;}
.ls4a{letter-spacing:0.000267px;}
.ls2{letter-spacing:0.013040px;}
.ls4{letter-spacing:0.013222px;}
.ls1{letter-spacing:0.013223px;}
.ls3{letter-spacing:0.013406px;}
.ls5{letter-spacing:0.013777px;}
.ls10{letter-spacing:0.017937px;}
.ls55{letter-spacing:0.022239px;}
.ls7b{letter-spacing:0.022500px;}
.ls63{letter-spacing:0.026268px;}
.ls37{letter-spacing:0.035100px;}
.ls5f{letter-spacing:0.041068px;}
.ls69{letter-spacing:0.045000px;}
.ls1b{letter-spacing:0.054000px;}
.lsc{letter-spacing:0.087616px;}
.ls7f{letter-spacing:0.090000px;}
.lsb{letter-spacing:0.105300px;}
.ls28{letter-spacing:0.108000px;}
.lsa{letter-spacing:0.126347px;}
.ls18{letter-spacing:0.126531px;}
.ls9{letter-spacing:0.126622px;}
.ls7a{letter-spacing:0.132560px;}
.ls5c{letter-spacing:0.134488px;}
.ls73{letter-spacing:0.135000px;}
.ls1a{letter-spacing:0.157950px;}
.ls19{letter-spacing:0.158418px;}
.ls5a{letter-spacing:0.159019px;}
.ls5b{letter-spacing:0.159023px;}
.ls4d{letter-spacing:0.159230px;}
.ls57{letter-spacing:0.159303px;}
.ls24{letter-spacing:0.159568px;}
.ls17{letter-spacing:0.162000px;}
.ls8{letter-spacing:0.175500px;}
.ls66{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.188380px;}
.lse{letter-spacing:0.197322px;}
.ls65{letter-spacing:0.202500px;}
.lsd{letter-spacing:0.210600px;}
.ls6{letter-spacing:0.216000px;}
.ls1e{letter-spacing:0.221379px;}
.ls6d{letter-spacing:0.225000px;}
.ls1c{letter-spacing:0.227409px;}
.ls1f{letter-spacing:0.245700px;}
.ls1d{letter-spacing:0.259944px;}
.ls64{letter-spacing:0.264000px;}
.ls14{letter-spacing:0.270000px;}
.ls56{letter-spacing:0.278953px;}
.ls22{letter-spacing:0.280800px;}
.ls7c{letter-spacing:0.315000px;}
.ls2f{letter-spacing:0.315900px;}
.ls16{letter-spacing:0.324000px;}
.ls20{letter-spacing:0.351000px;}
.ls77{letter-spacing:0.360000px;}
.ls4b{letter-spacing:0.362999px;}
.ls21{letter-spacing:0.378000px;}
.ls6a{letter-spacing:0.382494px;}
.ls67{letter-spacing:0.405000px;}
.ls15{letter-spacing:0.432000px;}
.ls49{letter-spacing:0.442833px;}
.ls47{letter-spacing:0.443381px;}
.ls45{letter-spacing:0.443382px;}
.ls62{letter-spacing:0.477623px;}
.ls23{letter-spacing:0.486000px;}
.ls31{letter-spacing:0.491400px;}
.ls2e{letter-spacing:0.540000px;}
.ls72{letter-spacing:0.585000px;}
.ls34{letter-spacing:0.594000px;}
.ls35{letter-spacing:0.615600px;}
.ls7{letter-spacing:0.648000px;}
.ls46{letter-spacing:0.681593px;}
.ls48{letter-spacing:0.681654px;}
.ls3b{letter-spacing:0.702000px;}
.ls30{letter-spacing:0.756000px;}
.ls59{letter-spacing:0.766800px;}
.ls33{letter-spacing:0.810000px;}
.ls38{letter-spacing:0.864000px;}
.ls76{letter-spacing:0.900000px;}
.ls58{letter-spacing:0.918000px;}
.ls12{letter-spacing:0.972000px;}
.ls79{letter-spacing:1.016935px;}
.ls5d{letter-spacing:1.080000px;}
.ls6c{letter-spacing:1.134000px;}
.ls53{letter-spacing:1.136381px;}
.ls78{letter-spacing:1.215000px;}
.ls5e{letter-spacing:1.350000px;}
.ls36{letter-spacing:1.404000px;}
.ls6b{letter-spacing:1.458000px;}
.ls54{letter-spacing:1.512000px;}
.ls75{letter-spacing:1.651500px;}
.ls68{letter-spacing:1.845000px;}
.ls0{letter-spacing:3.000000px;}
.ls52{letter-spacing:11.996258px;}
.ls51{letter-spacing:12.374519px;}
.ls50{letter-spacing:14.968304px;}
.ls4f{letter-spacing:16.913643px;}
.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;}
}
.ws0{word-spacing:-48.000000px;}
.ws1{word-spacing:-15.000000px;}
.ws70{word-spacing:-13.860000px;}
.ws3d{word-spacing:-12.852000px;}
.ws27{word-spacing:-12.636000px;}
.ws20{word-spacing:-12.528000px;}
.ws41{word-spacing:-12.366000px;}
.ws5{word-spacing:-12.360000px;}
.ws6b{word-spacing:-12.312000px;}
.ws34{word-spacing:-12.258000px;}
.ws5e{word-spacing:-12.204000px;}
.ws33{word-spacing:-12.150000px;}
.ws52{word-spacing:-12.096000px;}
.ws63{word-spacing:-12.042000px;}
.ws56{word-spacing:-11.934000px;}
.ws35{word-spacing:-11.718000px;}
.ws3e{word-spacing:-11.610000px;}
.ws4{word-spacing:-11.340000px;}
.ws57{word-spacing:-10.584000px;}
.ws81{word-spacing:-10.440000px;}
.ws71{word-spacing:-10.417500px;}
.ws86{word-spacing:-10.080000px;}
.ws85{word-spacing:-9.990000px;}
.ws16{word-spacing:-9.600000px;}
.ws1f{word-spacing:-8.459100px;}
.ws1c{word-spacing:-8.318700px;}
.ws1e{word-spacing:-8.283600px;}
.ws1a{word-spacing:-8.213400px;}
.ws55{word-spacing:-8.178300px;}
.ws17{word-spacing:-8.143200px;}
.ws1d{word-spacing:-8.073000px;}
.ws2{word-spacing:-8.034000px;}
.ws3f{word-spacing:-8.002800px;}
.ws6{word-spacing:-7.967700px;}
.ws18{word-spacing:-7.932600px;}
.ws1b{word-spacing:-7.897500px;}
.ws40{word-spacing:-7.862400px;}
.ws21{word-spacing:-7.757100px;}
.ws19{word-spacing:-7.722000px;}
.ws8c{word-spacing:-6.705000px;}
.ws7{word-spacing:-6.630000px;}
.ws87{word-spacing:-6.345000px;}
.ws93{word-spacing:-6.165000px;}
.ws82{word-spacing:-6.030000px;}
.ws8a{word-spacing:-5.850000px;}
.ws9a{word-spacing:-5.760000px;}
.ws7b{word-spacing:-5.625000px;}
.ws84{word-spacing:-5.535000px;}
.ws62{word-spacing:-5.508000px;}
.ws99{word-spacing:-5.490000px;}
.ws6a{word-spacing:-1.296000px;}
.ws15{word-spacing:-1.242000px;}
.wsc{word-spacing:-1.188000px;}
.ws53{word-spacing:-1.134000px;}
.ws4f{word-spacing:-1.080000px;}
.ws79{word-spacing:-1.035000px;}
.ws2b{word-spacing:-1.026000px;}
.ws7e{word-spacing:-0.990000px;}
.ws38{word-spacing:-0.972000px;}
.ws45{word-spacing:-0.918000px;}
.ws37{word-spacing:-0.810000px;}
.wsd{word-spacing:-0.756000px;}
.ws95{word-spacing:-0.720000px;}
.ws66{word-spacing:-0.702000px;}
.ws94{word-spacing:-0.675000px;}
.ws10{word-spacing:-0.648000px;}
.ws25{word-spacing:-0.594000px;}
.ws96{word-spacing:-0.585000px;}
.wsa{word-spacing:-0.540000px;}
.ws3b{word-spacing:-0.486000px;}
.ws97{word-spacing:-0.405000px;}
.ws13{word-spacing:-0.378000px;}
.ws91{word-spacing:-0.360000px;}
.ws4e{word-spacing:-0.351000px;}
.ws2e{word-spacing:-0.315900px;}
.ws32{word-spacing:-0.270000px;}
.ws75{word-spacing:-0.264000px;}
.ws2a{word-spacing:-0.245700px;}
.ws78{word-spacing:-0.225000px;}
.ws9{word-spacing:-0.216000px;}
.ws77{word-spacing:-0.180000px;}
.ws28{word-spacing:-0.175500px;}
.ws43{word-spacing:-0.162000px;}
.ws2c{word-spacing:-0.105300px;}
.ws64{word-spacing:-0.082136px;}
.ws39{word-spacing:-0.054000px;}
.ws8b{word-spacing:-0.045000px;}
.ws3{word-spacing:-0.039000px;}
.ws50{word-spacing:-0.035100px;}
.ws8{word-spacing:0.000000px;}
.ws26{word-spacing:0.035100px;}
.ws30{word-spacing:0.070200px;}
.ws98{word-spacing:0.090000px;}
.ws2d{word-spacing:0.108000px;}
.ws80{word-spacing:0.135000px;}
.ws83{word-spacing:0.180000px;}
.ws4d{word-spacing:0.216000px;}
.ws92{word-spacing:0.270000px;}
.ws2f{word-spacing:0.324000px;}
.ws5d{word-spacing:0.378000px;}
.ws23{word-spacing:0.432000px;}
.ws6c{word-spacing:0.486000px;}
.ws14{word-spacing:0.540000px;}
.ws60{word-spacing:0.546000px;}
.ws29{word-spacing:0.594000px;}
.ws11{word-spacing:0.648000px;}
.ws5f{word-spacing:0.702000px;}
.ws12{word-spacing:0.864000px;}
.ws51{word-spacing:0.918000px;}
.ws42{word-spacing:0.972000px;}
.ws8f{word-spacing:0.990000px;}
.ws7a{word-spacing:1.035000px;}
.ws24{word-spacing:1.080000px;}
.ws89{word-spacing:1.125000px;}
.ws5c{word-spacing:1.134000px;}
.ws88{word-spacing:1.170000px;}
.ws22{word-spacing:1.188000px;}
.wsf{word-spacing:1.242000px;}
.ws7c{word-spacing:1.260000px;}
.ws36{word-spacing:1.296000px;}
.wse{word-spacing:1.350000px;}
.ws7f{word-spacing:1.395000px;}
.ws9c{word-spacing:1.404000px;}
.ws4c{word-spacing:1.458000px;}
.ws47{word-spacing:1.512000px;}
.ws61{word-spacing:1.566000px;}
.ws9b{word-spacing:1.620000px;}
.ws67{word-spacing:1.674000px;}
.ws7d{word-spacing:1.710000px;}
.ws44{word-spacing:1.728000px;}
.ws31{word-spacing:1.782000px;}
.ws72{word-spacing:1.836000px;}
.ws49{word-spacing:1.944000px;}
.wsa3{word-spacing:2.052000px;}
.ws3a{word-spacing:2.106000px;}
.ws48{word-spacing:2.214000px;}
.ws46{word-spacing:2.322000px;}
.ws54{word-spacing:2.484000px;}
.ws6f{word-spacing:2.592000px;}
.ws6d{word-spacing:2.754000px;}
.ws90{word-spacing:2.790000px;}
.ws6e{word-spacing:2.808000px;}
.ws8e{word-spacing:2.880000px;}
.wsb{word-spacing:2.916000px;}
.ws8d{word-spacing:2.925000px;}
.ws9f{word-spacing:3.024000px;}
.wsa0{word-spacing:3.132000px;}
.ws9d{word-spacing:3.186000px;}
.ws9e{word-spacing:3.348000px;}
.ws74{word-spacing:3.564000px;}
.ws65{word-spacing:3.672000px;}
.ws76{word-spacing:3.888000px;}
.ws68{word-spacing:4.914000px;}
.ws4a{word-spacing:5.022000px;}
.ws4b{word-spacing:5.076000px;}
.ws73{word-spacing:5.508000px;}
.ws69{word-spacing:5.670000px;}
.wsa4{word-spacing:6.264000px;}
.wsa1{word-spacing:6.480000px;}
.wsa2{word-spacing:6.750000px;}
.ws3c{word-spacing:15.282000px;}
.ws59{word-spacing:187.618184px;}
.ws5b{word-spacing:204.287994px;}
.ws5a{word-spacing:283.877994px;}
.ws58{word-spacing:382.330194px;}
._17{margin-left:-20.952007px;}
._16{margin-left:-14.914800px;}
._a{margin-left:-13.738118px;}
._9{margin-left:-12.728400px;}
._8{margin-left:-10.821501px;}
._2{margin-left:-8.439600px;}
._15{margin-left:-6.568800px;}
._4{margin-left:-5.263200px;}
._3{margin-left:-4.200000px;}
._5{margin-left:-2.933400px;}
._0{margin-left:-1.876800px;}
._7{width:1.213200px;}
._14{width:2.907000px;}
._13{width:5.049000px;}
._20{width:6.173576px;}
._10{width:7.276705px;}
._e{width:9.078000px;}
._1f{width:10.674459px;}
._f{width:11.950295px;}
._11{width:13.546821px;}
._6{width:15.033579px;}
._12{width:16.351538px;}
._b{width:17.599924px;}
._d{width:18.922004px;}
._c{width:19.980971px;}
._1e{width:195.342593px;}
._18{width:237.076794px;}
._19{width:294.335984px;}
._1d{width:295.877393px;}
._1{width:320.500800px;}
._1c{width:343.475994px;}
._1b{width:372.707991px;}
._1a{width:393.707991px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(205,221,228);}
.fse{font-size:29.250000px;}
.fs7{font-size:33.150000px;}
.fs5{font-size:35.100000px;}
.fs3{font-size:39.000000px;}
.fsc{font-size:41.068199px;}
.fsa{font-size:42.000000px;}
.fsd{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fsb{font-size:54.037199px;}
.fs1{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs6{font-size:108.000000px;}
.fs2{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y91{bottom:3.199200px;}
.y35{bottom:3.199350px;}
.ybf{bottom:3.199950px;}
.y2{bottom:3.200100px;}
.y133{bottom:8.395844px;}
.y34{bottom:27.430500px;}
.y1{bottom:27.430650px;}
.y92{bottom:27.555599px;}
.y3{bottom:27.555750px;}
.y33{bottom:68.037452px;}
.y8c{bottom:68.857503px;}
.y10f{bottom:69.110703px;}
.ybb{bottom:72.630152px;}
.y78{bottom:77.045552px;}
.y196{bottom:78.581398px;}
.y32{bottom:83.043452px;}
.y8b{bottom:83.856003px;}
.y10e{bottom:84.109203px;}
.yba{bottom:87.628652px;}
.y195{bottom:91.327648px;}
.y77{bottom:92.045552px;}
.y31{bottom:98.037452px;}
.y8a{bottom:98.854503px;}
.y10d{bottom:99.107703px;}
.ye5{bottom:102.319650px;}
.yb9{bottom:102.627152px;}
.y194{bottom:104.073898px;}
.y76{bottom:107.044052px;}
.yc4{bottom:107.362645px;}
.y30{bottom:113.037452px;}
.y89{bottom:113.853003px;}
.y10c{bottom:114.106203px;}
.y155{bottom:115.983148px;}
.y193{bottom:116.820148px;}
.ye4{bottom:117.318150px;}
.yb8{bottom:117.625652px;}
.y1dc{bottom:120.648903px;}
.y75{bottom:122.044052px;}
.yc3{bottom:122.361145px;}
.y2f{bottom:128.043452px;}
.y88{bottom:128.851503px;}
.y10b{bottom:129.104703px;}
.y192{bottom:129.566398px;}
.y154{bottom:130.981648px;}
.ye3{bottom:132.316650px;}
.yb7{bottom:132.624152px;}
.y1db{bottom:135.648903px;}
.y191{bottom:142.312648px;}
.y2e{bottom:143.037452px;}
.y87{bottom:143.850003px;}
.y10a{bottom:144.106203px;}
.y153{bottom:145.981648px;}
.ye2{bottom:147.315150px;}
.yb6{bottom:147.622652px;}
.y74{bottom:155.050052px;}
.y190{bottom:155.058898px;}
.y2d{bottom:158.037452px;}
.y86{bottom:158.860503px;}
.y109{bottom:159.104703px;}
.y152{bottom:160.992148px;}
.ye1{bottom:162.313650px;}
.yb5{bottom:162.621152px;}
.y1da{bottom:167.124761px;}
.y18f{bottom:167.805148px;}
.y73{bottom:170.048552px;}
.y2c{bottom:173.037452px;}
.y85{bottom:173.859003px;}
.y108{bottom:174.110703px;}
.y151{bottom:175.990648px;}
.ye0{bottom:177.312150px;}
.yb4{bottom:177.622652px;}
.y18e{bottom:180.551398px;}
.y1d9{bottom:182.123261px;}
.y72{bottom:185.047052px;}
.y84{bottom:188.857503px;}
.y107{bottom:189.109203px;}
.y150{bottom:190.989148px;}
.ydf{bottom:192.310650px;}
.y2b{bottom:192.493950px;}
.yb3{bottom:192.621152px;}
.y18d{bottom:193.297648px;}
.y1d8{bottom:197.121761px;}
.y71{bottom:200.045552px;}
.y83{bottom:203.856003px;}
.y106{bottom:204.107703px;}
.y14f{bottom:205.987648px;}
.y18c{bottom:206.043898px;}
.yde{bottom:207.330128px;}
.yb2{bottom:207.621152px;}
.y1d7{bottom:212.120261px;}
.y70{bottom:215.048552px;}
.y18b{bottom:218.790148px;}
.y82{bottom:218.854503px;}
.y105{bottom:219.106203px;}
.ydd{bottom:222.328628px;}
.yb1{bottom:222.621152px;}
.y1d6{bottom:227.118761px;}
.y6f{bottom:230.047052px;}
.y18a{bottom:231.536398px;}
.y81{bottom:233.853003px;}
.y104{bottom:234.104703px;}
.ydc{bottom:237.327128px;}
.yb0{bottom:237.621152px;}
.y14e{bottom:238.981648px;}
.y1d5{bottom:242.117261px;}
.y189{bottom:244.282648px;}
.y6e{bottom:245.045552px;}
.y80{bottom:248.851503px;}
.y103{bottom:249.104703px;}
.y29{bottom:252.220792px;}
.ydb{bottom:252.325628px;}
.yaf{bottom:252.646629px;}
.y14d{bottom:253.989148px;}
.y188{bottom:257.028898px;}
.y1d4{bottom:257.115761px;}
.y6d{bottom:260.050052px;}
.y7f{bottom:263.850003px;}
.y102{bottom:264.106203px;}
.y28{bottom:267.226792px;}
.yda{bottom:267.324128px;}
.yae{bottom:267.645129px;}
.y14c{bottom:268.987648px;}
.y187{bottom:269.775148px;}
.y1d3{bottom:272.115761px;}
.y6c{bottom:275.048552px;}
.y7e{bottom:278.851503px;}
.y101{bottom:279.104703px;}
.y27{bottom:282.225292px;}
.yd9{bottom:282.322628px;}
.y186{bottom:282.521398px;}
.yad{bottom:282.643629px;}
.y14b{bottom:283.986148px;}
.y6b{bottom:290.047052px;}
.y7d{bottom:293.850003px;}
.y100{bottom:294.104703px;}
.y185{bottom:295.267648px;}
.y26{bottom:297.223792px;}
.yd8{bottom:297.321128px;}
.yac{bottom:297.642129px;}
.y14a{bottom:298.984648px;}
.y1d2{bottom:302.126238px;}
.y6a{bottom:305.045552px;}
.y184{bottom:308.013898px;}
.y7c{bottom:308.851503px;}
.yff{bottom:309.104703px;}
.y25{bottom:312.222292px;}
.yd7{bottom:312.319628px;}
.yab{bottom:312.640629px;}
.y149{bottom:313.983148px;}
.y1d1{bottom:317.124738px;}
.y69{bottom:320.044052px;}
.y183{bottom:320.760148px;}
.y7b{bottom:323.850003px;}
.yfe{bottom:324.103203px;}
.y24{bottom:327.220792px;}
.yd6{bottom:327.318128px;}
.yaa{bottom:327.639129px;}
.y148{bottom:328.981648px;}
.y1d0{bottom:332.123238px;}
.y182{bottom:333.506398px;}
.y68{bottom:335.044052px;}
.y7a{bottom:338.848503px;}
.yfd{bottom:339.103203px;}
.y23{bottom:342.220792px;}
.yd5{bottom:342.316628px;}
.ya9{bottom:342.637629px;}
.y147{bottom:343.980148px;}
.y181{bottom:346.252648px;}
.y1cf{bottom:347.121738px;}
.y67{bottom:350.044052px;}
.yfc{bottom:354.103203px;}
.y22{bottom:357.226815px;}
.yd4{bottom:357.315128px;}
.ya8{bottom:357.636129px;}
.y146{bottom:358.980148px;}
.y180{bottom:358.998898px;}
.y1ce{bottom:362.120238px;}
.y17f{bottom:371.745148px;}
.y21{bottom:372.225315px;}
.yd3{bottom:372.313628px;}
.ya7{bottom:372.634629px;}
.y1cd{bottom:377.118738px;}
.y66{bottom:383.054552px;}
.y17e{bottom:384.491398px;}
.y20{bottom:387.223815px;}
.yd2{bottom:387.312128px;}
.ya6{bottom:387.633129px;}
.y145{bottom:391.984648px;}
.y1cc{bottom:392.117238px;}
.y90{bottom:395.872640px;}
.y17d{bottom:397.237648px;}
.y65{bottom:398.053052px;}
.y1f{bottom:402.222315px;}
.yd1{bottom:402.310628px;}
.ya5{bottom:402.631629px;}
.y115{bottom:406.284006px;}
.y144{bottom:406.983148px;}
.y1cb{bottom:407.115738px;}
.y17c{bottom:409.983898px;}
.y8f{bottom:410.871140px;}
.y64{bottom:413.051552px;}
.y1e{bottom:417.220815px;}
.yd0{bottom:417.312128px;}
.ya4{bottom:417.630129px;}
.y114{bottom:421.282506px;}
.y143{bottom:421.981648px;}
.y1ca{bottom:422.115738px;}
.y17b{bottom:422.730148px;}
.y63{bottom:428.050052px;}
.y1d{bottom:432.220815px;}
.ycf{bottom:432.310628px;}
.ya3{bottom:432.628629px;}
.y17a{bottom:435.480148px;}
.y113{bottom:436.281006px;}
.yc2{bottom:436.894479px;}
.y142{bottom:436.986148px;}
.y62{bottom:443.048552px;}
.y1c{bottom:447.219315px;}
.yce{bottom:447.309128px;}
.ya2{bottom:447.627129px;}
.yc1{bottom:451.892979px;}
.y141{bottom:451.984648px;}
.y1c9{bottom:452.201988px;}
.y61{bottom:458.047052px;}
.ycd{bottom:462.309128px;}
.ya1{bottom:462.625629px;}
.y1c8{bottom:464.948238px;}
.yc0{bottom:466.891479px;}
.y140{bottom:466.983148px;}
.y60{bottom:473.045552px;}
.ya0{bottom:477.624129px;}
.y1c7{bottom:477.694488px;}
.y1b{bottom:480.969315px;}
.y13f{bottom:481.981648px;}
.y179{bottom:484.980148px;}
.y5f{bottom:488.045552px;}
.y1c6{bottom:490.440738px;}
.y9f{bottom:492.622629px;}
.ycc{bottom:495.312128px;}
.y13e{bottom:496.980148px;}
.y5e{bottom:503.050052px;}
.y1c5{bottom:503.186988px;}
.y9e{bottom:507.621129px;}
.ycb{bottom:510.310628px;}
.y13d{bottom:511.980148px;}
.y178{bottom:514.981648px;}
.y1c4{bottom:515.933238px;}
.y1a{bottom:516.258315px;}
.y5d{bottom:518.048552px;}
.y9d{bottom:522.621129px;}
.yca{bottom:525.313628px;}
.y1c3{bottom:528.679488px;}
.y177{bottom:529.980148px;}
.y19{bottom:532.755315px;}
.y5c{bottom:533.047052px;}
.y9c{bottom:537.619629px;}
.yc9{bottom:540.312128px;}
.y1c2{bottom:541.425738px;}
.y176{bottom:544.980148px;}
.y13c{bottom:544.983148px;}
.y5b{bottom:548.045552px;}
.y18{bottom:549.252315px;}
.y9b{bottom:552.619629px;}
.y1c1{bottom:554.171988px;}
.yc8{bottom:555.310628px;}
.y13b{bottom:559.981648px;}
.y5a{bottom:563.047052px;}
.y17{bottom:565.749315px;}
.y1c0{bottom:566.918238px;}
.yc7{bottom:570.312128px;}
.y13a{bottom:574.983148px;}
.y175{bottom:575.001194px;}
.y59{bottom:578.045552px;}
.y1bf{bottom:579.664488px;}
.y16{bottom:582.246315px;}
.yc6{bottom:585.310628px;}
.y9a{bottom:585.628629px;}
.y139{bottom:589.981648px;}
.y174{bottom:589.999694px;}
.y1be{bottom:592.410738px;}
.y58{bottom:593.047052px;}
.y15{bottom:598.743315px;}
.yc5{bottom:600.309128px;}
.y99{bottom:600.627129px;}
.y138{bottom:604.981648px;}
.y173{bottom:604.998194px;}
.y1bd{bottom:605.156988px;}
.y57{bottom:608.045552px;}
.y14{bottom:615.240315px;}
.y98{bottom:615.625629px;}
.y1bc{bottom:617.903238px;}
.y137{bottom:619.984648px;}
.y172{bottom:619.996694px;}
.y56{bottom:623.045552px;}
.y97{bottom:630.624129px;}
.y1bb{bottom:630.649488px;}
.y13{bottom:631.737315px;}
.y136{bottom:634.983148px;}
.y171{bottom:634.995194px;}
.y55{bottom:638.050052px;}
.y1ba{bottom:643.395738px;}
.y96{bottom:645.622629px;}
.y12{bottom:648.234315px;}
.y135{bottom:649.981648px;}
.y170{bottom:649.993694px;}
.y54{bottom:653.048552px;}
.y1b9{bottom:656.141988px;}
.yf3{bottom:657.462605px;}
.y95{bottom:660.621129px;}
.y132{bottom:661.496979px;}
.y11{bottom:664.731315px;}
.y134{bottom:664.980148px;}
.y16f{bottom:664.992194px;}
.y131{bottom:665.016194px;}
.y53{bottom:668.047052px;}
.y1b8{bottom:668.888238px;}
.yf2{bottom:672.462605px;}
.y94{bottom:675.619629px;}
.y16e{bottom:679.990694px;}
.y130{bottom:680.014694px;}
.y10{bottom:681.228315px;}
.y1b7{bottom:681.634488px;}
.y52{bottom:683.045552px;}
.yf1{bottom:687.461105px;}
.y1b6{bottom:694.380738px;}
.y16d{bottom:694.989194px;}
.y12f{bottom:695.013194px;}
.yf{bottom:697.725315px;}
.y51{bottom:698.048552px;}
.y1b5{bottom:707.126988px;}
.y16c{bottom:709.987694px;}
.y12e{bottom:710.011694px;}
.y50{bottom:713.047052px;}
.ye{bottom:714.222315px;}
.yfb{bottom:719.393214px;}
.y1b4{bottom:719.873238px;}
.ybe{bottom:720.034631px;}
.y16b{bottom:724.986194px;}
.y12d{bottom:725.010194px;}
.y4f{bottom:728.045552px;}
.yd{bottom:730.719315px;}
.y1b3{bottom:732.619488px;}
.ybd{bottom:735.033131px;}
.yfa{bottom:736.928214px;}
.y16a{bottom:739.984694px;}
.y12c{bottom:740.008694px;}
.y4e{bottom:743.045552px;}
.y1b2{bottom:745.467034px;}
.ybc{bottom:750.031631px;}
.y8e{bottom:752.133168px;}
.yf9{bottom:754.463214px;}
.y169{bottom:754.983194px;}
.y12b{bottom:755.007194px;}
.y4d{bottom:758.045506px;}
.y1b1{bottom:758.213284px;}
.yb{bottom:760.719269px;}
.yc{bottom:765.969315px;}
.y8d{bottom:767.131668px;}
.y168{bottom:769.981694px;}
.y12a{bottom:770.005694px;}
.y1b0{bottom:770.959534px;}
.yf8{bottom:771.998214px;}
.y4c{bottom:773.045506px;}
.y9{bottom:778.719269px;}
.y112{bottom:779.434458px;}
.y1af{bottom:783.705784px;}
.ya{bottom:783.969269px;}
.y167{bottom:784.980194px;}
.y129{bottom:785.004194px;}
.y4b{bottom:788.045506px;}
.yf7{bottom:789.533214px;}
.y111{bottom:794.432958px;}
.y1ae{bottom:796.452034px;}
.y166{bottom:799.980194px;}
.y128{bottom:800.002694px;}
.y4a{bottom:803.045506px;}
.yf6{bottom:807.068214px;}
.y1ad{bottom:809.198284px;}
.y110{bottom:809.431458px;}
.y8{bottom:811.701269px;}
.y127{bottom:815.001194px;}
.y1ec{bottom:815.537702px;}
.y49{bottom:818.045506px;}
.y1ac{bottom:821.944534px;}
.yf5{bottom:824.603214px;}
.y126{bottom:829.999694px;}
.y165{bottom:832.987694px;}
.y48{bottom:833.050006px;}
.y1ab{bottom:834.690784px;}
.yf4{bottom:842.138214px;}
.y125{bottom:844.998194px;}
.y1eb{bottom:845.534700px;}
.y1aa{bottom:847.437034px;}
.y164{bottom:847.986194px;}
.y47{bottom:848.048506px;}
.y7{bottom:856.707269px;}
.y124{bottom:859.996694px;}
.y1a9{bottom:860.183284px;}
.y1ea{bottom:860.533200px;}
.y163{bottom:862.984694px;}
.y46{bottom:863.047006px;}
.y1a8{bottom:872.929534px;}
.y123{bottom:874.995194px;}
.y1e9{bottom:875.531700px;}
.y162{bottom:877.983194px;}
.y45{bottom:878.045506px;}
.y1a7{bottom:885.675784px;}
.y122{bottom:889.993694px;}
.y1e8{bottom:890.530200px;}
.y161{bottom:892.981694px;}
.y44{bottom:893.051506px;}
.y1a6{bottom:898.422034px;}
.ye8{bottom:901.524606px;}
.y6{bottom:901.713269px;}
.y121{bottom:904.992194px;}
.y1e7{bottom:905.528700px;}
.y160{bottom:907.984694px;}
.y43{bottom:908.050006px;}
.y1a5{bottom:911.168284px;}
.ye7{bottom:916.523106px;}
.y120{bottom:919.990694px;}
.y1e6{bottom:920.527200px;}
.y15f{bottom:922.983194px;}
.y42{bottom:923.048506px;}
.y1a4{bottom:923.914534px;}
.ye6{bottom:931.521606px;}
.y11f{bottom:934.989194px;}
.y1e5{bottom:935.525700px;}
.y1a3{bottom:936.660784px;}
.y15e{bottom:937.981694px;}
.y41{bottom:938.047006px;}
.y5{bottom:946.719269px;}
.y1a2{bottom:949.407034px;}
.y11e{bottom:949.987694px;}
.y1e4{bottom:950.524200px;}
.y15d{bottom:952.986194px;}
.y40{bottom:953.045506px;}
.y2a{bottom:954.366760px;}
.y1a1{bottom:962.153284px;}
.yf0{bottom:963.453944px;}
.y11d{bottom:964.986194px;}
.y15c{bottom:967.984694px;}
.y3f{bottom:968.045506px;}
.y1e3{bottom:973.013700px;}
.y1a0{bottom:974.899534px;}
.y11c{bottom:979.984694px;}
.yef{bottom:980.988944px;}
.y15b{bottom:982.983194px;}
.y3e{bottom:983.045506px;}
.y19f{bottom:987.645784px;}
.y1e2{bottom:988.012200px;}
.y11b{bottom:994.983194px;}
.y15a{bottom:997.981694px;}
.y3d{bottom:998.051506px;}
.yee{bottom:998.523944px;}
.y19e{bottom:1000.392034px;}
.y11a{bottom:1009.981694px;}
.y1e1{bottom:1010.516700px;}
.y159{bottom:1012.981694px;}
.y3c{bottom:1013.050006px;}
.y19d{bottom:1013.138284px;}
.yed{bottom:1016.058944px;}
.y119{bottom:1024.980194px;}
.y19c{bottom:1025.884534px;}
.y158{bottom:1027.984694px;}
.y3b{bottom:1028.048506px;}
.y1e0{bottom:1033.021200px;}
.yec{bottom:1033.593944px;}
.y19b{bottom:1038.630784px;}
.y118{bottom:1039.980194px;}
.y157{bottom:1042.983194px;}
.y3a{bottom:1043.047006px;}
.yeb{bottom:1051.128944px;}
.y19a{bottom:1051.377034px;}
.y1df{bottom:1055.525700px;}
.y156{bottom:1057.981694px;}
.y39{bottom:1058.045506px;}
.y199{bottom:1064.123284px;}
.yea{bottom:1068.663944px;}
.y1de{bottom:1070.524200px;}
.y117{bottom:1072.981694px;}
.y38{bottom:1073.045506px;}
.y198{bottom:1076.869534px;}
.y1dd{bottom:1085.524200px;}
.ye9{bottom:1086.198944px;}
.y116{bottom:1087.980194px;}
.y37{bottom:1088.044006px;}
.y197{bottom:1089.615784px;}
.y79{bottom:1140.640320px;}
.y93{bottom:1140.746521px;}
.y36{bottom:1140.746704px;}
.y4{bottom:1141.922516px;}
.h2b{height:15.750000px;}
.h10{height:23.842749px;}
.h2c{height:29.240558px;}
.h7{height:31.554199px;}
.h2{height:34.523438px;}
.h31{height:35.411133px;}
.h12{height:36.681152px;}
.h13{height:41.644740px;}
.h11{height:41.668740px;}
.h29{height:43.008000px;}
.h8{height:43.690430px;}
.h34{height:44.505000px;}
.h32{height:45.090000px;}
.h35{height:45.674817px;}
.h3{height:45.679688px;}
.h33{height:46.080000px;}
.h6{height:48.544922px;}
.h14{height:49.373525px;}
.h9{height:51.416016px;}
.h1c{height:53.399414px;}
.ha{height:53.406000px;}
.h22{height:53.505955px;}
.h26{height:53.529406px;}
.h2e{height:53.565907px;}
.h1f{height:53.565909px;}
.h27{height:53.571912px;}
.h2d{height:53.577863px;}
.hc{height:53.583863px;}
.he{height:53.583955px;}
.h16{height:53.584046px;}
.h19{height:53.589863px;}
.h17{height:53.590046px;}
.h25{height:53.595314px;}
.h30{height:53.595680px;}
.h18{height:53.595863px;}
.h24{height:53.601314px;}
.h1a{height:53.601863px;}
.h2a{height:53.601909px;}
.h21{height:53.607314px;}
.h2f{height:53.607680px;}
.hb{height:53.607863px;}
.h1e{height:53.607886px;}
.h1d{height:53.607909px;}
.hd{height:53.607955px;}
.h15{height:53.608046px;}
.h23{height:54.096000px;}
.h1b{height:54.108000px;}
.h28{height:55.284000px;}
.h20{height:55.296000px;}
.h4{height:57.099609px;}
.hf{height:87.380859px;}
.h5{height:126.216797px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w2{width:101.355000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:7.228350px;}
.x3{left:61.653603px;}
.x15{left:86.517609px;}
.x10{left:141.395702px;}
.x5{left:233.858253px;}
.x13{left:238.570496px;}
.xf{left:251.862006px;}
.x17{left:254.108253px;}
.x19{left:302.498703px;}
.x6{left:345.489143px;}
.xb{left:347.393394px;}
.xc{left:466.634079px;}
.x7{left:493.735519px;}
.x8{left:583.795486px;}
.x4{left:586.814117px;}
.xd{left:639.889800px;}
.x9{left:665.089371px;}
.x14{left:726.765015px;}
.xa{left:779.400879px;}
.xe{left:785.241486px;}
.x12{left:797.390808px;}
.x2{left:798.901611px;}
.x18{left:818.848755px;}
.x1{left:825.001190px;}
.x16{left:828.181915px;}
@media print{
.v2{vertical-align:-18.666667pt;}
.v6{vertical-align:-16.800130pt;}
.v4{vertical-align:-15.866659pt;}
.v7{vertical-align:-9.621350pt;}
.v1{vertical-align:-1.322667pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:9.600016pt;}
.v9{vertical-align:13.639837pt;}
.v5{vertical-align:15.845326pt;}
.v3{vertical-align:16.794634pt;}
.ls7d{letter-spacing:-2.480000pt;}
.ls3e{letter-spacing:-1.344000pt;}
.ls74{letter-spacing:-1.240000pt;}
.ls44{letter-spacing:-1.045333pt;}
.ls7e{letter-spacing:-1.040000pt;}
.ls40{letter-spacing:-1.008000pt;}
.ls3d{letter-spacing:-0.912000pt;}
.ls4e{letter-spacing:-0.816000pt;}
.ls42{letter-spacing:-0.784000pt;}
.ls39{letter-spacing:-0.672000pt;}
.ls3f{letter-spacing:-0.624000pt;}
.ls80{letter-spacing:-0.600000pt;}
.ls43{letter-spacing:-0.485333pt;}
.ls61{letter-spacing:-0.480000pt;}
.ls60{letter-spacing:-0.432000pt;}
.ls82{letter-spacing:-0.360000pt;}
.ls2b{letter-spacing:-0.336000pt;}
.ls41{letter-spacing:-0.298667pt;}
.ls2a{letter-spacing:-0.288000pt;}
.ls6e{letter-spacing:-0.280000pt;}
.ls25{letter-spacing:-0.240000pt;}
.ls2c{letter-spacing:-0.218400pt;}
.ls81{letter-spacing:-0.200000pt;}
.ls3a{letter-spacing:-0.192000pt;}
.ls32{letter-spacing:-0.187200pt;}
.ls71{letter-spacing:-0.160000pt;}
.ls27{letter-spacing:-0.144000pt;}
.ls13{letter-spacing:-0.096000pt;}
.ls3c{letter-spacing:-0.093600pt;}
.ls70{letter-spacing:-0.080000pt;}
.ls2d{letter-spacing:-0.062400pt;}
.ls26{letter-spacing:-0.048000pt;}
.ls6f{letter-spacing:-0.040000pt;}
.ls29{letter-spacing:-0.031200pt;}
.ls11{letter-spacing:0.000000pt;}
.ls4c{letter-spacing:0.000164pt;}
.ls4a{letter-spacing:0.000237pt;}
.ls2{letter-spacing:0.011591pt;}
.ls4{letter-spacing:0.011753pt;}
.ls1{letter-spacing:0.011754pt;}
.ls3{letter-spacing:0.011917pt;}
.ls5{letter-spacing:0.012246pt;}
.ls10{letter-spacing:0.015944pt;}
.ls55{letter-spacing:0.019768pt;}
.ls7b{letter-spacing:0.020000pt;}
.ls63{letter-spacing:0.023349pt;}
.ls37{letter-spacing:0.031200pt;}
.ls5f{letter-spacing:0.036505pt;}
.ls69{letter-spacing:0.040000pt;}
.ls1b{letter-spacing:0.048000pt;}
.lsc{letter-spacing:0.077881pt;}
.ls7f{letter-spacing:0.080000pt;}
.lsb{letter-spacing:0.093600pt;}
.ls28{letter-spacing:0.096000pt;}
.lsa{letter-spacing:0.112309pt;}
.ls18{letter-spacing:0.112472pt;}
.ls9{letter-spacing:0.112553pt;}
.ls7a{letter-spacing:0.117831pt;}
.ls5c{letter-spacing:0.119545pt;}
.ls73{letter-spacing:0.120000pt;}
.ls1a{letter-spacing:0.140400pt;}
.ls19{letter-spacing:0.140816pt;}
.ls5a{letter-spacing:0.141350pt;}
.ls5b{letter-spacing:0.141354pt;}
.ls4d{letter-spacing:0.141538pt;}
.ls57{letter-spacing:0.141602pt;}
.ls24{letter-spacing:0.141839pt;}
.ls17{letter-spacing:0.144000pt;}
.ls8{letter-spacing:0.156000pt;}
.ls66{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.167449pt;}
.lse{letter-spacing:0.175397pt;}
.ls65{letter-spacing:0.180000pt;}
.lsd{letter-spacing:0.187200pt;}
.ls6{letter-spacing:0.192000pt;}
.ls1e{letter-spacing:0.196782pt;}
.ls6d{letter-spacing:0.200000pt;}
.ls1c{letter-spacing:0.202141pt;}
.ls1f{letter-spacing:0.218400pt;}
.ls1d{letter-spacing:0.231061pt;}
.ls64{letter-spacing:0.234667pt;}
.ls14{letter-spacing:0.240000pt;}
.ls56{letter-spacing:0.247958pt;}
.ls22{letter-spacing:0.249600pt;}
.ls7c{letter-spacing:0.280000pt;}
.ls2f{letter-spacing:0.280800pt;}
.ls16{letter-spacing:0.288000pt;}
.ls20{letter-spacing:0.312000pt;}
.ls77{letter-spacing:0.320000pt;}
.ls4b{letter-spacing:0.322665pt;}
.ls21{letter-spacing:0.336000pt;}
.ls6a{letter-spacing:0.339995pt;}
.ls67{letter-spacing:0.360000pt;}
.ls15{letter-spacing:0.384000pt;}
.ls49{letter-spacing:0.393629pt;}
.ls47{letter-spacing:0.394116pt;}
.ls45{letter-spacing:0.394117pt;}
.ls62{letter-spacing:0.424553pt;}
.ls23{letter-spacing:0.432000pt;}
.ls31{letter-spacing:0.436800pt;}
.ls2e{letter-spacing:0.480000pt;}
.ls72{letter-spacing:0.520000pt;}
.ls34{letter-spacing:0.528000pt;}
.ls35{letter-spacing:0.547200pt;}
.ls7{letter-spacing:0.576000pt;}
.ls46{letter-spacing:0.605861pt;}
.ls48{letter-spacing:0.605915pt;}
.ls3b{letter-spacing:0.624000pt;}
.ls30{letter-spacing:0.672000pt;}
.ls59{letter-spacing:0.681600pt;}
.ls33{letter-spacing:0.720000pt;}
.ls38{letter-spacing:0.768000pt;}
.ls76{letter-spacing:0.800000pt;}
.ls58{letter-spacing:0.816000pt;}
.ls12{letter-spacing:0.864000pt;}
.ls79{letter-spacing:0.903943pt;}
.ls5d{letter-spacing:0.960000pt;}
.ls6c{letter-spacing:1.008000pt;}
.ls53{letter-spacing:1.010116pt;}
.ls78{letter-spacing:1.080000pt;}
.ls5e{letter-spacing:1.200000pt;}
.ls36{letter-spacing:1.248000pt;}
.ls6b{letter-spacing:1.296000pt;}
.ls54{letter-spacing:1.344000pt;}
.ls75{letter-spacing:1.468000pt;}
.ls68{letter-spacing:1.640000pt;}
.ls0{letter-spacing:2.666667pt;}
.ls52{letter-spacing:10.663341pt;}
.ls51{letter-spacing:10.999572pt;}
.ls50{letter-spacing:13.305159pt;}
.ls4f{letter-spacing:15.034350pt;}
.ws0{word-spacing:-42.666667pt;}
.ws1{word-spacing:-13.333333pt;}
.ws70{word-spacing:-12.320000pt;}
.ws3d{word-spacing:-11.424000pt;}
.ws27{word-spacing:-11.232000pt;}
.ws20{word-spacing:-11.136000pt;}
.ws41{word-spacing:-10.992000pt;}
.ws5{word-spacing:-10.986667pt;}
.ws6b{word-spacing:-10.944000pt;}
.ws34{word-spacing:-10.896000pt;}
.ws5e{word-spacing:-10.848000pt;}
.ws33{word-spacing:-10.800000pt;}
.ws52{word-spacing:-10.752000pt;}
.ws63{word-spacing:-10.704000pt;}
.ws56{word-spacing:-10.608000pt;}
.ws35{word-spacing:-10.416000pt;}
.ws3e{word-spacing:-10.320000pt;}
.ws4{word-spacing:-10.080000pt;}
.ws57{word-spacing:-9.408000pt;}
.ws81{word-spacing:-9.280000pt;}
.ws71{word-spacing:-9.260000pt;}
.ws86{word-spacing:-8.960000pt;}
.ws85{word-spacing:-8.880000pt;}
.ws16{word-spacing:-8.533333pt;}
.ws1f{word-spacing:-7.519200pt;}
.ws1c{word-spacing:-7.394400pt;}
.ws1e{word-spacing:-7.363200pt;}
.ws1a{word-spacing:-7.300800pt;}
.ws55{word-spacing:-7.269600pt;}
.ws17{word-spacing:-7.238400pt;}
.ws1d{word-spacing:-7.176000pt;}
.ws2{word-spacing:-7.141333pt;}
.ws3f{word-spacing:-7.113600pt;}
.ws6{word-spacing:-7.082400pt;}
.ws18{word-spacing:-7.051200pt;}
.ws1b{word-spacing:-7.020000pt;}
.ws40{word-spacing:-6.988800pt;}
.ws21{word-spacing:-6.895200pt;}
.ws19{word-spacing:-6.864000pt;}
.ws8c{word-spacing:-5.960000pt;}
.ws7{word-spacing:-5.893333pt;}
.ws87{word-spacing:-5.640000pt;}
.ws93{word-spacing:-5.480000pt;}
.ws82{word-spacing:-5.360000pt;}
.ws8a{word-spacing:-5.200000pt;}
.ws9a{word-spacing:-5.120000pt;}
.ws7b{word-spacing:-5.000000pt;}
.ws84{word-spacing:-4.920000pt;}
.ws62{word-spacing:-4.896000pt;}
.ws99{word-spacing:-4.880000pt;}
.ws6a{word-spacing:-1.152000pt;}
.ws15{word-spacing:-1.104000pt;}
.wsc{word-spacing:-1.056000pt;}
.ws53{word-spacing:-1.008000pt;}
.ws4f{word-spacing:-0.960000pt;}
.ws79{word-spacing:-0.920000pt;}
.ws2b{word-spacing:-0.912000pt;}
.ws7e{word-spacing:-0.880000pt;}
.ws38{word-spacing:-0.864000pt;}
.ws45{word-spacing:-0.816000pt;}
.ws37{word-spacing:-0.720000pt;}
.wsd{word-spacing:-0.672000pt;}
.ws95{word-spacing:-0.640000pt;}
.ws66{word-spacing:-0.624000pt;}
.ws94{word-spacing:-0.600000pt;}
.ws10{word-spacing:-0.576000pt;}
.ws25{word-spacing:-0.528000pt;}
.ws96{word-spacing:-0.520000pt;}
.wsa{word-spacing:-0.480000pt;}
.ws3b{word-spacing:-0.432000pt;}
.ws97{word-spacing:-0.360000pt;}
.ws13{word-spacing:-0.336000pt;}
.ws91{word-spacing:-0.320000pt;}
.ws4e{word-spacing:-0.312000pt;}
.ws2e{word-spacing:-0.280800pt;}
.ws32{word-spacing:-0.240000pt;}
.ws75{word-spacing:-0.234667pt;}
.ws2a{word-spacing:-0.218400pt;}
.ws78{word-spacing:-0.200000pt;}
.ws9{word-spacing:-0.192000pt;}
.ws77{word-spacing:-0.160000pt;}
.ws28{word-spacing:-0.156000pt;}
.ws43{word-spacing:-0.144000pt;}
.ws2c{word-spacing:-0.093600pt;}
.ws64{word-spacing:-0.073010pt;}
.ws39{word-spacing:-0.048000pt;}
.ws8b{word-spacing:-0.040000pt;}
.ws3{word-spacing:-0.034667pt;}
.ws50{word-spacing:-0.031200pt;}
.ws8{word-spacing:0.000000pt;}
.ws26{word-spacing:0.031200pt;}
.ws30{word-spacing:0.062400pt;}
.ws98{word-spacing:0.080000pt;}
.ws2d{word-spacing:0.096000pt;}
.ws80{word-spacing:0.120000pt;}
.ws83{word-spacing:0.160000pt;}
.ws4d{word-spacing:0.192000pt;}
.ws92{word-spacing:0.240000pt;}
.ws2f{word-spacing:0.288000pt;}
.ws5d{word-spacing:0.336000pt;}
.ws23{word-spacing:0.384000pt;}
.ws6c{word-spacing:0.432000pt;}
.ws14{word-spacing:0.480000pt;}
.ws60{word-spacing:0.485333pt;}
.ws29{word-spacing:0.528000pt;}
.ws11{word-spacing:0.576000pt;}
.ws5f{word-spacing:0.624000pt;}
.ws12{word-spacing:0.768000pt;}
.ws51{word-spacing:0.816000pt;}
.ws42{word-spacing:0.864000pt;}
.ws8f{word-spacing:0.880000pt;}
.ws7a{word-spacing:0.920000pt;}
.ws24{word-spacing:0.960000pt;}
.ws89{word-spacing:1.000000pt;}
.ws5c{word-spacing:1.008000pt;}
.ws88{word-spacing:1.040000pt;}
.ws22{word-spacing:1.056000pt;}
.wsf{word-spacing:1.104000pt;}
.ws7c{word-spacing:1.120000pt;}
.ws36{word-spacing:1.152000pt;}
.wse{word-spacing:1.200000pt;}
.ws7f{word-spacing:1.240000pt;}
.ws9c{word-spacing:1.248000pt;}
.ws4c{word-spacing:1.296000pt;}
.ws47{word-spacing:1.344000pt;}
.ws61{word-spacing:1.392000pt;}
.ws9b{word-spacing:1.440000pt;}
.ws67{word-spacing:1.488000pt;}
.ws7d{word-spacing:1.520000pt;}
.ws44{word-spacing:1.536000pt;}
.ws31{word-spacing:1.584000pt;}
.ws72{word-spacing:1.632000pt;}
.ws49{word-spacing:1.728000pt;}
.wsa3{word-spacing:1.824000pt;}
.ws3a{word-spacing:1.872000pt;}
.ws48{word-spacing:1.968000pt;}
.ws46{word-spacing:2.064000pt;}
.ws54{word-spacing:2.208000pt;}
.ws6f{word-spacing:2.304000pt;}
.ws6d{word-spacing:2.448000pt;}
.ws90{word-spacing:2.480000pt;}
.ws6e{word-spacing:2.496000pt;}
.ws8e{word-spacing:2.560000pt;}
.wsb{word-spacing:2.592000pt;}
.ws8d{word-spacing:2.600000pt;}
.ws9f{word-spacing:2.688000pt;}
.wsa0{word-spacing:2.784000pt;}
.ws9d{word-spacing:2.832000pt;}
.ws9e{word-spacing:2.976000pt;}
.ws74{word-spacing:3.168000pt;}
.ws65{word-spacing:3.264000pt;}
.ws76{word-spacing:3.456000pt;}
.ws68{word-spacing:4.368000pt;}
.ws4a{word-spacing:4.464000pt;}
.ws4b{word-spacing:4.512000pt;}
.ws73{word-spacing:4.896000pt;}
.ws69{word-spacing:5.040000pt;}
.wsa4{word-spacing:5.568000pt;}
.wsa1{word-spacing:5.760000pt;}
.wsa2{word-spacing:6.000000pt;}
.ws3c{word-spacing:13.584000pt;}
.ws59{word-spacing:166.771719pt;}
.ws5b{word-spacing:181.589328pt;}
.ws5a{word-spacing:252.335995pt;}
.ws58{word-spacing:339.849061pt;}
._17{margin-left:-18.624006pt;}
._16{margin-left:-13.257600pt;}
._a{margin-left:-12.211661pt;}
._9{margin-left:-11.314133pt;}
._8{margin-left:-9.619112pt;}
._2{margin-left:-7.501866pt;}
._15{margin-left:-5.838933pt;}
._4{margin-left:-4.678400pt;}
._3{margin-left:-3.733333pt;}
._5{margin-left:-2.607467pt;}
._0{margin-left:-1.668267pt;}
._7{width:1.078400pt;}
._14{width:2.584000pt;}
._13{width:4.488000pt;}
._20{width:5.487623pt;}
._10{width:6.468183pt;}
._e{width:8.069333pt;}
._1f{width:9.488408pt;}
._f{width:10.622484pt;}
._11{width:12.041618pt;}
._6{width:13.363181pt;}
._12{width:14.534701pt;}
._b{width:15.644377pt;}
._d{width:16.819559pt;}
._c{width:17.760863pt;}
._1e{width:173.637860pt;}
._18{width:210.734928pt;}
._19{width:261.631986pt;}
._1d{width:263.002127pt;}
._1{width:284.889600pt;}
._1c{width:305.311995pt;}
._1b{width:331.295992pt;}
._1a{width:349.962659pt;}
.fse{font-size:26.000000pt;}
.fs7{font-size:29.466667pt;}
.fs5{font-size:31.200000pt;}
.fs3{font-size:34.666667pt;}
.fsc{font-size:36.505066pt;}
.fsa{font-size:37.333333pt;}
.fsd{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fsb{font-size:48.033066pt;}
.fs1{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs6{font-size:96.000000pt;}
.fs2{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y91{bottom:2.843733pt;}
.y35{bottom:2.843867pt;}
.ybf{bottom:2.844400pt;}
.y2{bottom:2.844533pt;}
.y133{bottom:7.462972pt;}
.y34{bottom:24.382667pt;}
.y1{bottom:24.382800pt;}
.y92{bottom:24.493866pt;}
.y3{bottom:24.494000pt;}
.y33{bottom:60.477735pt;}
.y8c{bottom:61.206669pt;}
.y10f{bottom:61.431736pt;}
.ybb{bottom:64.560135pt;}
.y78{bottom:68.484935pt;}
.y196{bottom:69.850132pt;}
.y32{bottom:73.816402pt;}
.y8b{bottom:74.538669pt;}
.y10e{bottom:74.763736pt;}
.yba{bottom:77.892135pt;}
.y195{bottom:81.180132pt;}
.y77{bottom:81.818269pt;}
.y31{bottom:87.144402pt;}
.y8a{bottom:87.870669pt;}
.y10d{bottom:88.095736pt;}
.ye5{bottom:90.950800pt;}
.yb9{bottom:91.224135pt;}
.y194{bottom:92.510132pt;}
.y76{bottom:95.150269pt;}
.yc4{bottom:95.433462pt;}
.y30{bottom:100.477735pt;}
.y89{bottom:101.202669pt;}
.y10c{bottom:101.427736pt;}
.y155{bottom:103.096132pt;}
.y193{bottom:103.840132pt;}
.ye4{bottom:104.282800pt;}
.yb8{bottom:104.556135pt;}
.y1dc{bottom:107.243469pt;}
.y75{bottom:108.483602pt;}
.yc3{bottom:108.765462pt;}
.y2f{bottom:113.816402pt;}
.y88{bottom:114.534669pt;}
.y10b{bottom:114.759736pt;}
.y192{bottom:115.170132pt;}
.y154{bottom:116.428132pt;}
.ye3{bottom:117.614800pt;}
.yb7{bottom:117.888135pt;}
.y1db{bottom:120.576803pt;}
.y191{bottom:126.500132pt;}
.y2e{bottom:127.144402pt;}
.y87{bottom:127.866669pt;}
.y10a{bottom:128.094403pt;}
.y153{bottom:129.761465pt;}
.ye2{bottom:130.946800pt;}
.yb6{bottom:131.220135pt;}
.y74{bottom:137.822269pt;}
.y190{bottom:137.830132pt;}
.y2d{bottom:140.477735pt;}
.y86{bottom:141.209336pt;}
.y109{bottom:141.426403pt;}
.y152{bottom:143.104132pt;}
.ye1{bottom:144.278800pt;}
.yb5{bottom:144.552135pt;}
.y1da{bottom:148.555343pt;}
.y18f{bottom:149.160132pt;}
.y73{bottom:151.154269pt;}
.y2c{bottom:153.811069pt;}
.y85{bottom:154.541336pt;}
.y108{bottom:154.765069pt;}
.y151{bottom:156.436132pt;}
.ye0{bottom:157.610800pt;}
.yb4{bottom:157.886802pt;}
.y18e{bottom:160.490132pt;}
.y1d9{bottom:161.887343pt;}
.y72{bottom:164.486269pt;}
.y84{bottom:167.873336pt;}
.y107{bottom:168.097069pt;}
.y150{bottom:169.768132pt;}
.ydf{bottom:170.942800pt;}
.y2b{bottom:171.105733pt;}
.yb3{bottom:171.218802pt;}
.y18d{bottom:171.820132pt;}
.y1d8{bottom:175.219343pt;}
.y71{bottom:177.818269pt;}
.y83{bottom:181.205336pt;}
.y106{bottom:181.429069pt;}
.y14f{bottom:183.100132pt;}
.y18c{bottom:183.150132pt;}
.yde{bottom:184.293447pt;}
.yb2{bottom:184.552135pt;}
.y1d7{bottom:188.551343pt;}
.y70{bottom:191.154269pt;}
.y18b{bottom:194.480132pt;}
.y82{bottom:194.537336pt;}
.y105{bottom:194.761069pt;}
.ydd{bottom:197.625447pt;}
.yb1{bottom:197.885468pt;}
.y1d6{bottom:201.883343pt;}
.y6f{bottom:204.486269pt;}
.y18a{bottom:205.810132pt;}
.y81{bottom:207.869336pt;}
.y104{bottom:208.093069pt;}
.ydc{bottom:210.957447pt;}
.yb0{bottom:211.218802pt;}
.y14e{bottom:212.428132pt;}
.y1d5{bottom:215.215343pt;}
.y189{bottom:217.140132pt;}
.y6e{bottom:217.818269pt;}
.y80{bottom:221.201336pt;}
.y103{bottom:221.426403pt;}
.y29{bottom:224.196259pt;}
.ydb{bottom:224.289447pt;}
.yaf{bottom:224.574781pt;}
.y14d{bottom:225.768132pt;}
.y188{bottom:228.470132pt;}
.y1d4{bottom:228.547343pt;}
.y6d{bottom:231.155602pt;}
.y7f{bottom:234.533336pt;}
.y102{bottom:234.761069pt;}
.y28{bottom:237.534926pt;}
.yda{bottom:237.621447pt;}
.yae{bottom:237.906781pt;}
.y14c{bottom:239.100132pt;}
.y187{bottom:239.800132pt;}
.y1d3{bottom:241.880676pt;}
.y6c{bottom:244.487602pt;}
.y7e{bottom:247.868003pt;}
.y101{bottom:248.093069pt;}
.y27{bottom:250.866926pt;}
.yd9{bottom:250.953447pt;}
.y186{bottom:251.130132pt;}
.yad{bottom:251.238781pt;}
.y14b{bottom:252.432132pt;}
.y6b{bottom:257.819602pt;}
.y7d{bottom:261.200003pt;}
.y100{bottom:261.426403pt;}
.y185{bottom:262.460132pt;}
.y26{bottom:264.198926pt;}
.yd8{bottom:264.285447pt;}
.yac{bottom:264.570781pt;}
.y14a{bottom:265.764132pt;}
.y1d2{bottom:268.556656pt;}
.y6a{bottom:271.151602pt;}
.y184{bottom:273.790132pt;}
.y7c{bottom:274.534669pt;}
.yff{bottom:274.759736pt;}
.y25{bottom:277.530926pt;}
.yd7{bottom:277.617447pt;}
.yab{bottom:277.902781pt;}
.y149{bottom:279.096132pt;}
.y1d1{bottom:281.888656pt;}
.y69{bottom:284.483602pt;}
.y183{bottom:285.120132pt;}
.y7b{bottom:287.866669pt;}
.yfe{bottom:288.091736pt;}
.y24{bottom:290.862926pt;}
.yd6{bottom:290.949447pt;}
.yaa{bottom:291.234781pt;}
.y148{bottom:292.428132pt;}
.y1d0{bottom:295.220656pt;}
.y182{bottom:296.450132pt;}
.y68{bottom:297.816935pt;}
.y7a{bottom:301.198669pt;}
.yfd{bottom:301.425069pt;}
.y23{bottom:304.196259pt;}
.yd5{bottom:304.281447pt;}
.ya9{bottom:304.566781pt;}
.y147{bottom:305.760132pt;}
.y181{bottom:307.780132pt;}
.y1cf{bottom:308.552656pt;}
.y67{bottom:311.150269pt;}
.yfc{bottom:314.758403pt;}
.y22{bottom:317.534946pt;}
.yd4{bottom:317.613447pt;}
.ya8{bottom:317.898781pt;}
.y146{bottom:319.093465pt;}
.y180{bottom:319.110132pt;}
.y1ce{bottom:321.884656pt;}
.y17f{bottom:330.440132pt;}
.y21{bottom:330.866946pt;}
.yd3{bottom:330.945447pt;}
.ya7{bottom:331.230781pt;}
.y1cd{bottom:335.216656pt;}
.y66{bottom:340.492935pt;}
.y17e{bottom:341.770132pt;}
.y20{bottom:344.198946pt;}
.yd2{bottom:344.277447pt;}
.ya6{bottom:344.562781pt;}
.y145{bottom:348.430799pt;}
.y1cc{bottom:348.548656pt;}
.y90{bottom:351.886791pt;}
.y17d{bottom:353.100132pt;}
.y65{bottom:353.824935pt;}
.y1f{bottom:357.530946pt;}
.yd1{bottom:357.609447pt;}
.ya5{bottom:357.894781pt;}
.y115{bottom:361.141339pt;}
.y144{bottom:361.762799pt;}
.y1cb{bottom:361.880656pt;}
.y17c{bottom:364.430132pt;}
.y8f{bottom:365.218791pt;}
.y64{bottom:367.156935pt;}
.y1e{bottom:370.862946pt;}
.yd0{bottom:370.944114pt;}
.ya4{bottom:371.226781pt;}
.y114{bottom:374.473339pt;}
.y143{bottom:375.094799pt;}
.y1ca{bottom:375.213989pt;}
.y17b{bottom:375.760132pt;}
.y63{bottom:380.488935pt;}
.y1d{bottom:384.196280pt;}
.ycf{bottom:384.276114pt;}
.ya3{bottom:384.558781pt;}
.y17a{bottom:387.093465pt;}
.y113{bottom:387.805339pt;}
.yc2{bottom:388.350648pt;}
.y142{bottom:388.432132pt;}
.y62{bottom:393.820935pt;}
.y1c{bottom:397.528280pt;}
.yce{bottom:397.608114pt;}
.ya2{bottom:397.890781pt;}
.yc1{bottom:401.682648pt;}
.y141{bottom:401.764132pt;}
.y1c9{bottom:401.957323pt;}
.y61{bottom:407.152935pt;}
.ycd{bottom:410.941447pt;}
.ya1{bottom:411.222781pt;}
.y1c8{bottom:413.287323pt;}
.yc0{bottom:415.014648pt;}
.y140{bottom:415.096132pt;}
.y60{bottom:420.484935pt;}
.ya0{bottom:424.554781pt;}
.y1c7{bottom:424.617323pt;}
.y1b{bottom:427.528280pt;}
.y13f{bottom:428.428132pt;}
.y179{bottom:431.093465pt;}
.y5f{bottom:433.818269pt;}
.y1c6{bottom:435.947323pt;}
.y9f{bottom:437.886781pt;}
.ycc{bottom:440.277447pt;}
.y13e{bottom:441.760132pt;}
.y5e{bottom:447.155602pt;}
.y1c5{bottom:447.277323pt;}
.y9e{bottom:451.218781pt;}
.ycb{bottom:453.609447pt;}
.y13d{bottom:455.093465pt;}
.y178{bottom:457.761465pt;}
.y1c4{bottom:458.607323pt;}
.y1a{bottom:458.896280pt;}
.y5d{bottom:460.487602pt;}
.y9d{bottom:464.552115pt;}
.yca{bottom:466.945447pt;}
.y1c3{bottom:469.937323pt;}
.y177{bottom:471.093465pt;}
.y19{bottom:473.560280pt;}
.y5c{bottom:473.819602pt;}
.y9c{bottom:477.884115pt;}
.yc9{bottom:480.277447pt;}
.y1c2{bottom:481.267323pt;}
.y176{bottom:484.426799pt;}
.y13c{bottom:484.429465pt;}
.y5b{bottom:487.151602pt;}
.y18{bottom:488.224280pt;}
.y9b{bottom:491.217448pt;}
.y1c1{bottom:492.597323pt;}
.yc8{bottom:493.609447pt;}
.y13b{bottom:497.761465pt;}
.y5a{bottom:500.486269pt;}
.y17{bottom:502.888280pt;}
.y1c0{bottom:503.927323pt;}
.yc7{bottom:506.944114pt;}
.y13a{bottom:511.096132pt;}
.y175{bottom:511.112173pt;}
.y59{bottom:513.818269pt;}
.y1bf{bottom:515.257323pt;}
.y16{bottom:517.552280pt;}
.yc6{bottom:520.276114pt;}
.y9a{bottom:520.558781pt;}
.y139{bottom:524.428132pt;}
.y174{bottom:524.444173pt;}
.y1be{bottom:526.587323pt;}
.y58{bottom:527.152935pt;}
.y15{bottom:532.216280pt;}
.yc5{bottom:533.608114pt;}
.y99{bottom:533.890781pt;}
.y138{bottom:537.761465pt;}
.y173{bottom:537.776173pt;}
.y1bd{bottom:537.917323pt;}
.y57{bottom:540.484935pt;}
.y14{bottom:546.880280pt;}
.y98{bottom:547.222781pt;}
.y1bc{bottom:549.247323pt;}
.y137{bottom:551.097465pt;}
.y172{bottom:551.108173pt;}
.y56{bottom:553.818269pt;}
.y97{bottom:560.554781pt;}
.y1bb{bottom:560.577323pt;}
.y13{bottom:561.544280pt;}
.y136{bottom:564.429465pt;}
.y171{bottom:564.440173pt;}
.y55{bottom:567.155602pt;}
.y1ba{bottom:571.907323pt;}
.y96{bottom:573.886781pt;}
.y12{bottom:576.208280pt;}
.y135{bottom:577.761465pt;}
.y170{bottom:577.772173pt;}
.y54{bottom:580.487602pt;}
.y1b9{bottom:583.237323pt;}
.yf3{bottom:584.411205pt;}
.y95{bottom:587.218781pt;}
.y132{bottom:587.997314pt;}
.y11{bottom:590.872280pt;}
.y134{bottom:591.093465pt;}
.y16f{bottom:591.104173pt;}
.y131{bottom:591.125506pt;}
.y53{bottom:593.819602pt;}
.y1b8{bottom:594.567323pt;}
.yf2{bottom:597.744538pt;}
.y94{bottom:600.550781pt;}
.y16e{bottom:604.436173pt;}
.y130{bottom:604.457506pt;}
.y10{bottom:605.536280pt;}
.y1b7{bottom:605.897323pt;}
.y52{bottom:607.151602pt;}
.yf1{bottom:611.076538pt;}
.y1b6{bottom:617.227323pt;}
.y16d{bottom:617.768173pt;}
.y12f{bottom:617.789506pt;}
.yf{bottom:620.200280pt;}
.y51{bottom:620.487602pt;}
.y1b5{bottom:628.557323pt;}
.y16c{bottom:631.100173pt;}
.y12e{bottom:631.121506pt;}
.y50{bottom:633.819602pt;}
.ye{bottom:634.864280pt;}
.yfb{bottom:639.460635pt;}
.y1b4{bottom:639.887323pt;}
.ybe{bottom:640.030784pt;}
.y16b{bottom:644.432173pt;}
.y12d{bottom:644.453506pt;}
.y4f{bottom:647.151602pt;}
.yd{bottom:649.528280pt;}
.y1b3{bottom:651.217323pt;}
.ybd{bottom:653.362784pt;}
.yfa{bottom:655.047301pt;}
.y16a{bottom:657.764173pt;}
.y12c{bottom:657.785506pt;}
.y4e{bottom:660.484935pt;}
.y1b2{bottom:662.637363pt;}
.ybc{bottom:666.694784pt;}
.y8e{bottom:668.562816pt;}
.yf9{bottom:670.633968pt;}
.y169{bottom:671.096173pt;}
.y12b{bottom:671.117506pt;}
.y4d{bottom:673.818228pt;}
.y1b1{bottom:673.967363pt;}
.yb{bottom:676.194906pt;}
.yc{bottom:680.861613pt;}
.y8d{bottom:681.894816pt;}
.y168{bottom:684.428173pt;}
.y12a{bottom:684.449506pt;}
.y1b0{bottom:685.297363pt;}
.yf8{bottom:686.220635pt;}
.y4c{bottom:687.151561pt;}
.y9{bottom:692.194906pt;}
.y112{bottom:692.830629pt;}
.y1af{bottom:696.627363pt;}
.ya{bottom:696.861572pt;}
.y167{bottom:697.760173pt;}
.y129{bottom:697.781506pt;}
.y4b{bottom:700.484895pt;}
.yf7{bottom:701.807301pt;}
.y111{bottom:706.162629pt;}
.y1ae{bottom:707.957363pt;}
.y166{bottom:711.093506pt;}
.y128{bottom:711.113506pt;}
.y4a{bottom:713.818228pt;}
.yf6{bottom:717.393968pt;}
.y1ad{bottom:719.287363pt;}
.y110{bottom:719.494629pt;}
.y8{bottom:721.512239pt;}
.y127{bottom:724.445506pt;}
.y1ec{bottom:724.922401pt;}
.y49{bottom:727.151561pt;}
.y1ac{bottom:730.617363pt;}
.yf5{bottom:732.980635pt;}
.y126{bottom:737.777506pt;}
.y165{bottom:740.433506pt;}
.y48{bottom:740.488895pt;}
.y1ab{bottom:741.947363pt;}
.yf4{bottom:748.567301pt;}
.y125{bottom:751.109506pt;}
.y1eb{bottom:751.586400pt;}
.y1aa{bottom:753.277363pt;}
.y164{bottom:753.765506pt;}
.y47{bottom:753.820895pt;}
.y7{bottom:761.517572pt;}
.y124{bottom:764.441506pt;}
.y1a9{bottom:764.607363pt;}
.y1ea{bottom:764.918400pt;}
.y163{bottom:767.097506pt;}
.y46{bottom:767.152895pt;}
.y1a8{bottom:775.937363pt;}
.y123{bottom:777.773506pt;}
.y1e9{bottom:778.250400pt;}
.y162{bottom:780.429506pt;}
.y45{bottom:780.484895pt;}
.y1a7{bottom:787.267363pt;}
.y122{bottom:791.105506pt;}
.y1e8{bottom:791.582400pt;}
.y161{bottom:793.761506pt;}
.y44{bottom:793.823561pt;}
.y1a6{bottom:798.597363pt;}
.ye8{bottom:801.355206pt;}
.y6{bottom:801.522906pt;}
.y121{bottom:804.437506pt;}
.y1e7{bottom:804.914400pt;}
.y160{bottom:807.097506pt;}
.y43{bottom:807.155561pt;}
.y1a5{bottom:809.927363pt;}
.ye7{bottom:814.687206pt;}
.y120{bottom:817.769506pt;}
.y1e6{bottom:818.246400pt;}
.y15f{bottom:820.429506pt;}
.y42{bottom:820.487561pt;}
.y1a4{bottom:821.257363pt;}
.ye6{bottom:828.019206pt;}
.y11f{bottom:831.101506pt;}
.y1e5{bottom:831.578400pt;}
.y1a3{bottom:832.587363pt;}
.y15e{bottom:833.761506pt;}
.y41{bottom:833.819561pt;}
.y5{bottom:841.528239pt;}
.y1a2{bottom:843.917363pt;}
.y11e{bottom:844.433506pt;}
.y1e4{bottom:844.910400pt;}
.y15d{bottom:847.098839pt;}
.y40{bottom:847.151561pt;}
.y2a{bottom:848.326009pt;}
.y1a1{bottom:855.247363pt;}
.yf0{bottom:856.403506pt;}
.y11d{bottom:857.765506pt;}
.y15c{bottom:860.430839pt;}
.y3f{bottom:860.484895pt;}
.y1e3{bottom:864.901067pt;}
.y1a0{bottom:866.577363pt;}
.y11c{bottom:871.097506pt;}
.yef{bottom:871.990173pt;}
.y15b{bottom:873.762839pt;}
.y3e{bottom:873.818228pt;}
.y19f{bottom:877.907363pt;}
.y1e2{bottom:878.233067pt;}
.y11b{bottom:884.429506pt;}
.y15a{bottom:887.094839pt;}
.y3d{bottom:887.156895pt;}
.yee{bottom:887.576839pt;}
.y19e{bottom:889.237363pt;}
.y11a{bottom:897.761506pt;}
.y1e1{bottom:898.237067pt;}
.y159{bottom:900.428173pt;}
.y3c{bottom:900.488895pt;}
.y19d{bottom:900.567363pt;}
.yed{bottom:903.163506pt;}
.y119{bottom:911.093506pt;}
.y19c{bottom:911.897363pt;}
.y158{bottom:913.764173pt;}
.y3b{bottom:913.820895pt;}
.y1e0{bottom:918.241067pt;}
.yec{bottom:918.750173pt;}
.y19b{bottom:923.227363pt;}
.y118{bottom:924.426839pt;}
.y157{bottom:927.096173pt;}
.y3a{bottom:927.152895pt;}
.yeb{bottom:934.336839pt;}
.y19a{bottom:934.557363pt;}
.y1df{bottom:938.245067pt;}
.y156{bottom:940.428173pt;}
.y39{bottom:940.484895pt;}
.y199{bottom:945.887363pt;}
.yea{bottom:949.923506pt;}
.y1de{bottom:951.577067pt;}
.y117{bottom:953.761506pt;}
.y38{bottom:953.818228pt;}
.y198{bottom:957.217363pt;}
.y1dd{bottom:964.910400pt;}
.ye9{bottom:965.510173pt;}
.y116{bottom:967.093506pt;}
.y37{bottom:967.150228pt;}
.y197{bottom:968.547363pt;}
.y79{bottom:1013.902507pt;}
.y93{bottom:1013.996908pt;}
.y36{bottom:1013.997070pt;}
.y4{bottom:1015.042236pt;}
.h2b{height:14.000000pt;}
.h10{height:21.193555pt;}
.h2c{height:25.991607pt;}
.h7{height:28.048177pt;}
.h2{height:30.687500pt;}
.h31{height:31.476562pt;}
.h12{height:32.605469pt;}
.h13{height:37.017547pt;}
.h11{height:37.038880pt;}
.h29{height:38.229333pt;}
.h8{height:38.835938pt;}
.h34{height:39.560000pt;}
.h32{height:40.080000pt;}
.h35{height:40.599837pt;}
.h3{height:40.604167pt;}
.h33{height:40.960000pt;}
.h6{height:43.151042pt;}
.h14{height:43.887578pt;}
.h9{height:45.703125pt;}
.h1c{height:47.466146pt;}
.ha{height:47.472000pt;}
.h22{height:47.560849pt;}
.h26{height:47.581694pt;}
.h2e{height:47.614139pt;}
.h1f{height:47.614141pt;}
.h27{height:47.619477pt;}
.h2d{height:47.624767pt;}
.hc{height:47.630101pt;}
.he{height:47.630182pt;}
.h16{height:47.630264pt;}
.h19{height:47.635434pt;}
.h17{height:47.635597pt;}
.h25{height:47.640279pt;}
.h30{height:47.640605pt;}
.h18{height:47.640767pt;}
.h24{height:47.645612pt;}
.h1a{height:47.646101pt;}
.h2a{height:47.646141pt;}
.h21{height:47.650946pt;}
.h2f{height:47.651271pt;}
.hb{height:47.651434pt;}
.h1e{height:47.651454pt;}
.h1d{height:47.651475pt;}
.hd{height:47.651515pt;}
.h15{height:47.651597pt;}
.h23{height:48.085333pt;}
.h1b{height:48.096000pt;}
.h28{height:49.141333pt;}
.h20{height:49.152000pt;}
.h4{height:50.755208pt;}
.hf{height:77.671875pt;}
.h5{height:112.192708pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w2{width:90.093333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:6.425200pt;}
.x3{left:54.803202pt;}
.x15{left:76.904541pt;}
.x10{left:125.685069pt;}
.x5{left:207.874003pt;}
.x13{left:212.062663pt;}
.xf{left:223.877338pt;}
.x17{left:225.874003pt;}
.x19{left:268.887736pt;}
.x6{left:307.101461pt;}
.xb{left:308.794128pt;}
.xc{left:414.785848pt;}
.x7{left:438.876017pt;}
.x8{left:518.929321pt;}
.x4{left:521.612549pt;}
.xd{left:568.790933pt;}
.x9{left:591.190552pt;}
.x14{left:646.013346pt;}
.xa{left:692.800781pt;}
.xe{left:697.992432pt;}
.x12{left:708.791829pt;}
.x2{left:710.134766pt;}
.x18{left:727.865560pt;}
.x1{left:733.334391pt;}
.x16{left:736.161702pt;}
}




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