
    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_31acdf6c0a0956133b618f55.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.990000;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_60911322be9e7f92b4767e95.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.728000;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_7974bfb3b4fb5ceb73e86058.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.952000;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_6969cd3ee2c0559f5103e0d2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.962571;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_af06981ed2c91e2e06e16471.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.980000;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_5ed9b165a5062facab269f2f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.953000;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_c22bebe3b57699ea09157de6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.605000;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_6cc2f2e02661a13479671484.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.004000;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_67724a41311a1aa980f202b0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.672000;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_ac264a654f9775ac60fd51a0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.492000;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_1107041e59e02e50b79c31c3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.940000;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_cd3c17e25870145a3e2dc64b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_aacb68e45e2a8d6d87554adf.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.873000;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_9b00a15f713b81b2b8fa0fdb.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.492000;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_0538bb1e034c4dd0a89853d8.woff2')format("woff");}.fff{font-family:fff;line-height:0.954000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_e74028a163dbc381f2052d77.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.074000;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;}
.m3{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v1{vertical-align:-4.761540px;}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-1.170012px;}
.ls10{letter-spacing:-1.146011px;}
.ls1b{letter-spacing:-1.116011px;}
.ls1a{letter-spacing:-1.086011px;}
.ls14{letter-spacing:-1.062011px;}
.ls15{letter-spacing:-1.050011px;}
.ls19{letter-spacing:-1.038010px;}
.lsf{letter-spacing:-1.032010px;}
.ls18{letter-spacing:-1.026610px;}
.lse{letter-spacing:-1.020010px;}
.ls17{letter-spacing:-1.014610px;}
.lsb{letter-spacing:-1.008010px;}
.ls16{letter-spacing:-1.001410px;}
.ls1c{letter-spacing:-0.996010px;}
.ls12{letter-spacing:-0.984010px;}
.ls9{letter-spacing:-0.972010px;}
.ls11{letter-spacing:-0.966010px;}
.ls13{letter-spacing:-0.954010px;}
.lsd{letter-spacing:-0.930009px;}
.ls7{letter-spacing:-0.739207px;}
.ls2c{letter-spacing:-0.006600px;}
.ls8{letter-spacing:-0.005280px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.004840px;}
.ls2d{letter-spacing:0.038400px;}
.ls30{letter-spacing:0.081599px;}
.ls28{letter-spacing:0.135000px;}
.ls1e{letter-spacing:0.138001px;}
.ls1d{letter-spacing:0.159984px;}
.ls1f{letter-spacing:0.228002px;}
.ls33{letter-spacing:0.242997px;}
.ls32{letter-spacing:0.332996px;}
.ls5{letter-spacing:4.241442px;}
.ls2e{letter-spacing:4.260043px;}
.ls4{letter-spacing:4.374644px;}
.lsc{letter-spacing:13.766223px;}
.ls31{letter-spacing:14.366220px;}
.ls3{letter-spacing:14.534218px;}
.ls29{letter-spacing:16.459200px;}
.ls2f{letter-spacing:17.394660px;}
.ls23{letter-spacing:17.916179px;}
.ls22{letter-spacing:19.620196px;}
.ls21{letter-spacing:19.956200px;}
.ls2a{letter-spacing:20.201400px;}
.ls26{letter-spacing:20.640206px;}
.ls1{letter-spacing:23.615705px;}
.ls27{letter-spacing:36.007200px;}
.ls2{letter-spacing:36.045000px;}
.ls24{letter-spacing:48.870489px;}
.ls25{letter-spacing:49.212492px;}
.ls20{letter-spacing:115.201152px;}
.ls2b{letter-spacing:1390.156500px;}
.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;}
}
.ws6b{word-spacing:-15.012000px;}
.ws6a{word-spacing:-4.301443px;}
.ws2{word-spacing:-0.132000px;}
.ws28{word-spacing:-0.060001px;}
.ws164{word-spacing:-0.057000px;}
.ws61{word-spacing:-0.054000px;}
.ws7{word-spacing:-0.048836px;}
.ws19{word-spacing:-0.047999px;}
.ws16a{word-spacing:-0.044999px;}
.ws9{word-spacing:-0.043996px;}
.ws4c{word-spacing:-0.039996px;}
.ws6c{word-spacing:0.000000px;}
.ws4b{word-spacing:1.002010px;}
.ws54{word-spacing:1.026010px;}
.ws185{word-spacing:12.491833px;}
.ws175{word-spacing:12.545833px;}
.ws186{word-spacing:12.626832px;}
.ws17c{word-spacing:12.770830px;}
.ws183{word-spacing:12.829329px;}
.ws143{word-spacing:12.844639px;}
.ws15a{word-spacing:12.892639px;}
.ws155{word-spacing:13.142236px;}
.ws17a{word-spacing:13.171324px;}
.ws1b{word-spacing:13.185435px;}
.ws17f{word-spacing:13.202824px;}
.ws16f{word-spacing:13.211824px;}
.ws162{word-spacing:13.228635px;}
.ws179{word-spacing:13.265823px;}
.ws1e{word-spacing:13.300634px;}
.ws167{word-spacing:13.301823px;}
.ws173{word-spacing:13.306323px;}
.ws168{word-spacing:13.315322px;}
.ws163{word-spacing:13.334233px;}
.ws172{word-spacing:13.342322px;}
.ws16d{word-spacing:13.364822px;}
.ws20{word-spacing:13.367833px;}
.ws166{word-spacing:13.400821px;}
.ws182{word-spacing:13.427821px;}
.ws170{word-spacing:13.445821px;}
.ws16c{word-spacing:13.450321px;}
.ws69{word-spacing:13.457535px;}
.ws184{word-spacing:13.486320px;}
.ws180{word-spacing:13.499820px;}
.ws17e{word-spacing:13.513320px;}
.ws16b{word-spacing:13.526820px;}
.ws165{word-spacing:13.535820px;}
.ws17b{word-spacing:13.553819px;}
.ws176{word-spacing:13.562819px;}
.ws17d{word-spacing:13.567319px;}
.ws148{word-spacing:13.603030px;}
.ws178{word-spacing:13.607819px;}
.ws169{word-spacing:13.621318px;}
.ws174{word-spacing:13.630318px;}
.ws16e{word-spacing:13.634818px;}
.ws24{word-spacing:13.641429px;}
.ws177{word-spacing:13.657318px;}
.ws181{word-spacing:13.675318px;}
.ws121{word-spacing:13.686137px;}
.ws171{word-spacing:13.693317px;}
.ws14b{word-spacing:13.694229px;}
.ws149{word-spacing:13.703829px;}
.ws14f{word-spacing:13.708629px;}
.ws68{word-spacing:13.713429px;}
.ws15e{word-spacing:13.751828px;}
.ws11f{word-spacing:13.761428px;}
.ws154{word-spacing:13.766228px;}
.ws156{word-spacing:13.771028px;}
.ws22{word-spacing:13.828627px;}
.ws16{word-spacing:13.833427px;}
.ws159{word-spacing:13.862227px;}
.wsdc{word-spacing:13.867027px;}
.ws15{word-spacing:13.871827px;}
.ws67{word-spacing:13.895826px;}
.ws15d{word-spacing:13.900626px;}
.ws23{word-spacing:13.905426px;}
.ws1f{word-spacing:13.919826px;}
.ws14e{word-spacing:13.943826px;}
.ws150{word-spacing:13.948626px;}
.ws153{word-spacing:13.953426px;}
.ws26{word-spacing:13.977425px;}
.ws120{word-spacing:13.982225px;}
.ws15b{word-spacing:13.987025px;}
.ws17{word-spacing:13.991825px;}
.ws158{word-spacing:14.011025px;}
.ws145{word-spacing:14.015825px;}
.ws25{word-spacing:14.020625px;}
.ws15c{word-spacing:14.025425px;}
.ws15f{word-spacing:14.030225px;}
.ws11{word-spacing:14.063824px;}
.ws146{word-spacing:14.087824px;}
.ws14c{word-spacing:14.092624px;}
.ws161{word-spacing:14.121423px;}
.ws66{word-spacing:14.126223px;}
.ws1a{word-spacing:14.131023px;}
.ws18{word-spacing:14.135823px;}
.ws147{word-spacing:14.140623px;}
.ws21{word-spacing:14.141103px;}
.ws1c{word-spacing:14.145423px;}
.ws1d{word-spacing:14.164623px;}
.ws27{word-spacing:14.174223px;}
.ws13{word-spacing:14.183823px;}
.ws152{word-spacing:14.203022px;}
.ws160{word-spacing:14.275022px;}
.ws14{word-spacing:14.318221px;}
.ws14a{word-spacing:14.351821px;}
.ws144{word-spacing:14.356621px;}
.ws12{word-spacing:14.467019px;}
.ws2d{word-spacing:14.839200px;}
.ws2a{word-spacing:14.871600px;}
.ws11b{word-spacing:14.914800px;}
.ws119{word-spacing:14.931000px;}
.ws34{word-spacing:15.006600px;}
.ws11c{word-spacing:15.012000px;}
.ws35{word-spacing:15.022800px;}
.ws31{word-spacing:15.087600px;}
.ws44{word-spacing:15.120151px;}
.ws39{word-spacing:15.125400px;}
.wscc{word-spacing:15.174000px;}
.wsd7{word-spacing:15.519600px;}
.wsd0{word-spacing:15.552000px;}
.ws4e{word-spacing:15.821558px;}
.ws58{word-spacing:15.822158px;}
.ws2f{word-spacing:15.859800px;}
.ws36{word-spacing:15.892200px;}
.ws115{word-spacing:15.935400px;}
.ws37{word-spacing:15.940800px;}
.ws30{word-spacing:15.946200px;}
.ws118{word-spacing:15.973200px;}
.wsc9{word-spacing:15.978600px;}
.ws3a{word-spacing:15.984000px;}
.ws2b{word-spacing:16.021800px;}
.ws117{word-spacing:16.027200px;}
.wsd8{word-spacing:16.032600px;}
.ws2e{word-spacing:16.043400px;}
.ws116{word-spacing:16.059600px;}
.ws2c{word-spacing:16.065000px;}
.ws33{word-spacing:16.075800px;}
.wsd6{word-spacing:16.081200px;}
.ws32{word-spacing:16.103287px;}
.ws11e{word-spacing:16.108200px;}
.wsd1{word-spacing:16.113600px;}
.wsd2{word-spacing:16.140600px;}
.ws3b{word-spacing:16.146000px;}
.ws3c{word-spacing:16.148699px;}
.ws3d{word-spacing:16.156800px;}
.wsc8{word-spacing:16.167600px;}
.wsd4{word-spacing:16.189200px;}
.wsd3{word-spacing:16.194600px;}
.ws38{word-spacing:16.210800px;}
.ws4f{word-spacing:16.242762px;}
.ws11d{word-spacing:16.281000px;}
.ws11a{word-spacing:16.318800px;}
.wsd5{word-spacing:16.335000px;}
.ws3e{word-spacing:16.362000px;}
.ws9a{word-spacing:16.482165px;}
.ws3f{word-spacing:16.583764px;}
.wsee{word-spacing:16.584166px;}
.ws29{word-spacing:16.624145px;}
.ws102{word-spacing:16.626166px;}
.wse6{word-spacing:16.710167px;}
.wse5{word-spacing:16.782168px;}
.wsca{word-spacing:16.837200px;}
.wsb9{word-spacing:16.944169px;}
.ws7c{word-spacing:17.058171px;}
.wsc7{word-spacing:17.172172px;}
.ws43{word-spacing:17.322173px;}
.ws42{word-spacing:17.400174px;}
.ws74{word-spacing:17.460175px;}
.ws109{word-spacing:17.514175px;}
.wsc2{word-spacing:17.766178px;}
.ws81{word-spacing:17.778178px;}
.wsbc{word-spacing:17.802178px;}
.wsaf{word-spacing:17.820178px;}
.wsa1{word-spacing:17.838178px;}
.ws89{word-spacing:17.850178px;}
.ws94{word-spacing:17.870579px;}
.wsfd{word-spacing:17.892179px;}
.wsf2{word-spacing:17.904179px;}
.wse2{word-spacing:17.946179px;}
.wsc1{word-spacing:17.958180px;}
.wsb0{word-spacing:17.976180px;}
.ws46{word-spacing:17.982180px;}
.ws95{word-spacing:18.007980px;}
.ws59{word-spacing:18.030180px;}
.wse3{word-spacing:18.072181px;}
.wsc6{word-spacing:18.096181px;}
.ws111{word-spacing:18.174182px;}
.wsf1{word-spacing:18.234182px;}
.ws138{word-spacing:18.270183px;}
.ws82{word-spacing:18.306183px;}
.ws12a{word-spacing:18.312183px;}
.ws88{word-spacing:18.348183px;}
.ws8d{word-spacing:18.372184px;}
.ws110{word-spacing:18.468185px;}
.wsda{word-spacing:18.711000px;}
.ws7e{word-spacing:18.954190px;}
.wsb6{word-spacing:19.032190px;}
.wsc3{word-spacing:19.152192px;}
.ws5d{word-spacing:19.180800px;}
.ws48{word-spacing:19.188192px;}
.ws124{word-spacing:19.272193px;}
.ws7f{word-spacing:19.428194px;}
.wsbe{word-spacing:19.500195px;}
.wsf{word-spacing:19.562578px;}
.wsc{word-spacing:19.582378px;}
.wsce{word-spacing:19.596600px;}
.ws8{word-spacing:19.621978px;}
.ws8c{word-spacing:19.626196px;}
.wsb{word-spacing:19.628578px;}
.ws87{word-spacing:19.680197px;}
.ws49{word-spacing:19.704197px;}
.ws92{word-spacing:19.711997px;}
.wsd{word-spacing:19.727579px;}
.wsdf{word-spacing:19.740197px;}
.wsdb{word-spacing:19.769400px;}
.ws10b{word-spacing:19.794198px;}
.ws6{word-spacing:19.800180px;}
.wsf8{word-spacing:19.818198px;}
.ws104{word-spacing:19.848198px;}
.ws80{word-spacing:19.872199px;}
.wsa{word-spacing:19.879381px;}
.ws6e{word-spacing:19.902199px;}
.ws93{word-spacing:19.916599px;}
.ws134{word-spacing:19.926199px;}
.ws10c{word-spacing:19.998200px;}
.wse{word-spacing:20.024582px;}
.wsde{word-spacing:20.154202px;}
.ws135{word-spacing:20.250202px;}
.ws9e{word-spacing:20.382204px;}
.ws136{word-spacing:20.424204px;}
.ws10{word-spacing:20.427186px;}
.ws7b{word-spacing:20.448204px;}
.ws9f{word-spacing:20.484205px;}
.wsa0{word-spacing:20.502205px;}
.ws79{word-spacing:20.556206px;}
.ws55{word-spacing:20.826208px;}
.ws5e{word-spacing:20.914200px;}
.wsa9{word-spacing:21.096211px;}
.wsfc{word-spacing:21.534215px;}
.ws131{word-spacing:21.648216px;}
.wsb7{word-spacing:21.774218px;}
.ws10a{word-spacing:21.888219px;}
.ws50{word-spacing:21.924219px;}
.wsbd{word-spacing:22.020220px;}
.ws125{word-spacing:22.254223px;}
.ws77{word-spacing:22.326223px;}
.ws8f{word-spacing:22.452225px;}
.ws100{word-spacing:22.506225px;}
.ws141{word-spacing:22.662227px;}
.wsae{word-spacing:22.818228px;}
.wsa7{word-spacing:22.908229px;}
.ws8e{word-spacing:22.938229px;}
.wsf3{word-spacing:23.004230px;}
.wsec{word-spacing:23.130231px;}
.wsa8{word-spacing:23.148231px;}
.ws8a{word-spacing:23.226232px;}
.wscb{word-spacing:23.290200px;}
.wsa2{word-spacing:23.346233px;}
.ws157{word-spacing:23.466907px;}
.ws151{word-spacing:23.553306px;}
.ws75{word-spacing:23.616236px;}
.ws6f{word-spacing:23.670237px;}
.ws9b{word-spacing:23.796238px;}
.ws70{word-spacing:23.814238px;}
.ws14d{word-spacing:23.841302px;}
.ws10d{word-spacing:24.024240px;}
.ws133{word-spacing:24.060241px;}
.ws99{word-spacing:24.162242px;}
.ws12b{word-spacing:24.300243px;}
.wsb2{word-spacing:24.438244px;}
.ws112{word-spacing:24.492245px;}
.ws139{word-spacing:24.882249px;}
.wsa3{word-spacing:24.936249px;}
.ws128{word-spacing:25.080251px;}
.wsf4{word-spacing:25.176252px;}
.ws12d{word-spacing:25.314253px;}
.wsab{word-spacing:25.386254px;}
.ws12c{word-spacing:25.392254px;}
.ws129{word-spacing:25.416254px;}
.ws106{word-spacing:25.548255px;}
.ws76{word-spacing:25.770258px;}
.ws10f{word-spacing:25.776258px;}
.wsfe{word-spacing:25.854259px;}
.ws13a{word-spacing:25.878259px;}
.ws63{word-spacing:26.584200px;}
.ws86{word-spacing:26.724267px;}
.ws10e{word-spacing:26.844268px;}
.wsed{word-spacing:27.156272px;}
.ws123{word-spacing:27.318273px;}
.ws122{word-spacing:27.360274px;}
.ws56{word-spacing:27.480275px;}
.wseb{word-spacing:27.498275px;}
.ws84{word-spacing:27.588276px;}
.ws12f{word-spacing:27.624276px;}
.ws85{word-spacing:27.822278px;}
.ws51{word-spacing:28.092881px;}
.ws40{word-spacing:28.350283px;}
.ws130{word-spacing:28.440284px;}
.ws137{word-spacing:28.500285px;}
.wsa4{word-spacing:28.950290px;}
.wse4{word-spacing:29.034290px;}
.ws126{word-spacing:29.220292px;}
.ws5c{word-spacing:29.284200px;}
.wsc4{word-spacing:29.364294px;}
.ws13c{word-spacing:29.466295px;}
.ws108{word-spacing:29.520295px;}
.ws45{word-spacing:30.084301px;}
.ws47{word-spacing:30.138301px;}
.wscf{word-spacing:30.142800px;}
.ws13b{word-spacing:30.252303px;}
.ws13f{word-spacing:30.378304px;}
.ws140{word-spacing:30.390304px;}
.wse0{word-spacing:30.522305px;}
.wsff{word-spacing:30.564306px;}
.ws127{word-spacing:30.624306px;}
.ws13e{word-spacing:30.678307px;}
.wsbb{word-spacing:30.792308px;}
.wsea{word-spacing:31.170312px;}
.ws4d{word-spacing:31.428314px;}
.ws6d{word-spacing:31.638316px;}
.wsfa{word-spacing:31.728317px;}
.wsfb{word-spacing:31.884319px;}
.wsf0{word-spacing:32.250322px;}
.wsa5{word-spacing:32.280323px;}
.ws98{word-spacing:32.460325px;}
.wscd{word-spacing:32.875200px;}
.ws103{word-spacing:33.000330px;}
.wsf5{word-spacing:33.138331px;}
.ws142{word-spacing:33.384334px;}
.ws12e{word-spacing:33.576336px;}
.wsa6{word-spacing:33.624336px;}
.ws105{word-spacing:33.870339px;}
.wse8{word-spacing:33.888339px;}
.ws72{word-spacing:34.302343px;}
.ws65{word-spacing:34.317000px;}
.ws62{word-spacing:34.516800px;}
.ws73{word-spacing:34.530345px;}
.wsb5{word-spacing:36.066361px;}
.wsd9{word-spacing:36.455400px;}
.wsef{word-spacing:36.702367px;}
.ws41{word-spacing:36.828368px;}
.ws4{word-spacing:36.946800px;}
.wsb4{word-spacing:37.026370px;}
.ws107{word-spacing:37.242372px;}
.wsb3{word-spacing:37.278373px;}
.wsad{word-spacing:37.518375px;}
.ws97{word-spacing:37.638376px;}
.wse1{word-spacing:38.508385px;}
.wsc5{word-spacing:38.652387px;}
.wse9{word-spacing:39.234392px;}
.ws96{word-spacing:39.264393px;}
.ws1{word-spacing:39.388800px;}
.ws0{word-spacing:39.454800px;}
.wsdd{word-spacing:39.558396px;}
.ws3{word-spacing:39.666000px;}
.ws5{word-spacing:39.837600px;}
.ws53{word-spacing:41.124411px;}
.ws52{word-spacing:41.125011px;}
.ws5a{word-spacing:42.130800px;}
.wsb1{word-spacing:42.774428px;}
.ws64{word-spacing:42.940800px;}
.ws78{word-spacing:43.008430px;}
.wsbf{word-spacing:43.266433px;}
.wsf6{word-spacing:43.686437px;}
.ws5b{word-spacing:44.080200px;}
.ws8b{word-spacing:44.436444px;}
.wsc0{word-spacing:44.820448px;}
.ws90{word-spacing:44.826448px;}
.ws101{word-spacing:44.850449px;}
.wse7{word-spacing:45.114451px;}
.ws5f{word-spacing:45.592200px;}
.ws13d{word-spacing:45.696457px;}
.ws132{word-spacing:47.202472px;}
.ws7a{word-spacing:47.910479px;}
.ws9c{word-spacing:48.962290px;}
.ws9d{word-spacing:49.308493px;}
.ws57{word-spacing:50.712507px;}
.ws7d{word-spacing:50.970510px;}
.wsba{word-spacing:51.174512px;}
.ws114{word-spacing:51.588516px;}
.ws113{word-spacing:52.872529px;}
.wsf9{word-spacing:52.980530px;}
.ws83{word-spacing:55.080551px;}
.ws4a{word-spacing:55.968560px;}
.ws71{word-spacing:56.088561px;}
.ws60{word-spacing:56.548800px;}
.wsaa{word-spacing:58.572586px;}
.wsb8{word-spacing:69.876699px;}
.wsac{word-spacing:81.450814px;}
.wsf7{word-spacing:90.882909px;}
.ws91{word-spacing:115.531155px;}
._15{margin-left:-2953.418220px;}
._14{margin-left:-1785.886380px;}
._9{margin-left:-5.210180px;}
._28{margin-left:-4.134041px;}
._0{margin-left:-2.851200px;}
._2{margin-left:-1.676400px;}
._4{width:1.619060px;}
._1b{width:2.945201px;}
._31{width:11.613497px;}
._30{width:13.151836px;}
._b{width:14.204525px;}
._6{width:15.370664px;}
._7{width:16.816189px;}
._5{width:18.064787px;}
._a{width:19.929732px;}
._d{width:21.081828px;}
._c{width:22.106604px;}
._19{width:23.762559px;}
._16{width:25.124379px;}
._27{width:27.067442px;}
._1e{width:28.200282px;}
._8{width:29.484295px;}
._f{width:31.352400px;}
._2f{width:32.490622px;}
._20{width:33.524463px;}
._11{width:35.586000px;}
._21{width:37.320612px;}
._3{width:38.742000px;}
._1{width:40.590000px;}
._24{width:41.605228px;}
._e{width:43.272600px;}
._10{width:44.590200px;}
._1f{width:46.105611px;}
._2e{width:47.335645px;}
._1a{width:49.028874px;}
._1c{width:52.094904px;}
._26{width:54.124096px;}
._1d{width:56.142561px;}
._17{width:57.468575px;}
._18{width:58.490968px;}
._23{width:60.132601px;}
._22{width:68.766688px;}
._25{width:93.009313px;}
._29{width:485.305800px;}
._2c{width:523.400400px;}
._2b{width:573.442200px;}
._2a{width:621.826200px;}
._12{width:630.413046px;}
._2d{width:1389.644046px;}
._13{width:2330.783308px;}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(61,58,155);}
.fs7{font-size:31.995000px;}
.fs6{font-size:39.996000px;}
.fs2{font-size:43.996200px;}
.fs9{font-size:44.999400px;}
.fs3{font-size:47.999400px;}
.fs5{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs4{font-size:60.000600px;}
.fs1{font-size:66.000600px;}
.fs0{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.ye4{bottom:41.414100px;}
.y71{bottom:43.455150px;}
.yad{bottom:81.374610px;}
.y101{bottom:81.381570px;}
.y125{bottom:81.381989px;}
.y4d{bottom:81.382320px;}
.y28{bottom:81.382491px;}
.y5f{bottom:82.231380px;}
.y1c3{bottom:90.385795px;}
.y17d{bottom:90.394913px;}
.ye3{bottom:90.403350px;}
.y27{bottom:96.433903px;}
.yac{bottom:99.403290px;}
.y100{bottom:99.410250px;}
.y4a{bottom:99.410460px;}
.y124{bottom:99.410670px;}
.y4c{bottom:99.411000px;}
.y5e{bottom:100.260060px;}
.y1c2{bottom:103.142000px;}
.y17c{bottom:105.446325px;}
.y4b{bottom:106.044150px;}
.ye2{bottom:106.901700px;}
.y26{bottom:111.401315px;}
.y1c1{bottom:115.898205px;}
.yab{bottom:117.431970px;}
.y121{bottom:117.438810px;}
.yff{bottom:117.438931px;}
.y49{bottom:117.439140px;}
.y123{bottom:117.439350px;}
.y5d{bottom:118.203240px;}
.y17b{bottom:120.413738px;}
.ye1{bottom:123.398700px;}
.y122{bottom:124.072350px;}
.y1c0{bottom:128.654410px;}
.yaa{bottom:135.375150px;}
.y17a{bottom:135.381151px;}
.y120{bottom:135.381989px;}
.yfe{bottom:135.382110px;}
.y48{bottom:135.382320px;}
.y5c{bottom:136.231920px;}
.ye0{bottom:139.895700px;}
.y1bf{bottom:141.410615px;}
.y25{bottom:149.668837px;}
.y179{bottom:150.432563px;}
.ya9{bottom:153.403830px;}
.y11f{bottom:153.410670px;}
.yfd{bottom:153.410790px;}
.y47{bottom:153.411000px;}
.y1be{bottom:154.166820px;}
.y5b{bottom:154.260600px;}
.ydf{bottom:156.392700px;}
.y24{bottom:164.636250px;}
.y178{bottom:165.399976px;}
.y1bd{bottom:166.923025px;}
.ya8{bottom:171.432510px;}
.y11c{bottom:171.439140px;}
.y11e{bottom:171.439350px;}
.yfc{bottom:171.439471px;}
.y5a{bottom:172.203780px;}
.yde{bottom:172.889700px;}
.y11d{bottom:178.072350px;}
.y1bc{bottom:179.679229px;}
.y177{bottom:187.935694px;}
.ya7{bottom:189.375690px;}
.y11b{bottom:189.382320px;}
.yfb{bottom:189.382650px;}
.ydd{bottom:189.386700px;}
.y59{bottom:190.232460px;}
.y1bb{bottom:192.435434px;}
.y176{bottom:202.903107px;}
.y1ba{bottom:205.191639px;}
.ydc{bottom:205.883700px;}
.ya6{bottom:207.404370px;}
.y11a{bottom:207.411000px;}
.y58{bottom:208.261140px;}
.y1b9{bottom:217.862345px;}
.y175{bottom:217.870520px;}
.ydb{bottom:222.382050px;}
.y46{bottom:223.908600px;}
.ya5{bottom:225.433050px;}
.y118{bottom:225.438931px;}
.y57{bottom:226.204320px;}
.y1b8{bottom:230.618550px;}
.y119{bottom:232.072350px;}
.y174{bottom:232.921931px;}
.yf9{bottom:234.028140px;}
.yda{bottom:238.880400px;}
.yfa{bottom:240.661350px;}
.y45{bottom:241.939500px;}
.y1b7{bottom:243.374755px;}
.ya4{bottom:243.376230px;}
.y117{bottom:243.382110px;}
.y54{bottom:244.232948px;}
.y56{bottom:244.233000px;}
.y173{bottom:247.889344px;}
.y55{bottom:250.866150px;}
.yf8{bottom:251.971320px;}
.yd9{bottom:255.377400px;}
.y1b6{bottom:256.130960px;}
.y44{bottom:258.436500px;}
.ya3{bottom:261.404910px;}
.y116{bottom:261.410790px;}
.y53{bottom:262.261628px;}
.y1b5{bottom:268.887165px;}
.yf7{bottom:270.000000px;}
.yd8{bottom:271.875750px;}
.y43{bottom:274.933500px;}
.ya2{bottom:279.433590px;}
.y172{bottom:279.439350px;}
.y115{bottom:279.439471px;}
.y52{bottom:280.204808px;}
.y1b4{bottom:281.643370px;}
.y171{bottom:284.711700px;}
.yf5{bottom:288.025204px;}
.yd7{bottom:288.372750px;}
.y42{bottom:291.430500px;}
.y1b3{bottom:294.399575px;}
.y170{bottom:294.405787px;}
.yf6{bottom:294.661350px;}
.ya1{bottom:297.376770px;}
.y112{bottom:297.382110px;}
.y114{bottom:297.382650px;}
.y51{bottom:298.233488px;}
.y113{bottom:304.100700px;}
.yd6{bottom:304.871100px;}
.yf4{bottom:305.968384px;}
.y1b2{bottom:307.155780px;}
.y41{bottom:307.927500px;}
.y16f{bottom:309.373200px;}
.y16e{bottom:314.730600px;}
.ya0{bottom:315.405450px;}
.y111{bottom:315.410790px;}
.y50{bottom:316.262168px;}
.y1b1{bottom:319.911985px;}
.yd5{bottom:321.369450px;}
.yf3{bottom:323.997064px;}
.y16d{bottom:324.424687px;}
.y40{bottom:325.879050px;}
.y1b0{bottom:332.668190px;}
.y9f{bottom:333.434130px;}
.y110{bottom:333.439471px;}
.y4f{bottom:334.205348px;}
.yd4{bottom:337.866450px;}
.y16c{bottom:339.392100px;}
.y23{bottom:340.927322px;}
.yf2{bottom:342.025744px;}
.y3f{bottom:342.376050px;}
.y16b{bottom:344.749500px;}
.y1af{bottom:345.424395px;}
.y9e{bottom:351.377310px;}
.y10d{bottom:351.381270px;}
.y10f{bottom:351.382650px;}
.y4e{bottom:352.234028px;}
.y16a{bottom:354.444637px;}
.yd3{bottom:354.448500px;}
.y22{bottom:355.894735px;}
.y10e{bottom:358.100700px;}
.y1ae{bottom:358.180599px;}
.y3e{bottom:358.873050px;}
.yf1{bottom:359.968924px;}
.y9d{bottom:369.405990px;}
.y10c{bottom:369.409950px;}
.y169{bottom:369.410850px;}
.y1ad{bottom:370.936804px;}
.yd2{bottom:370.945500px;}
.y21{bottom:370.946147px;}
.y168{bottom:374.768400px;}
.y3d{bottom:375.370050px;}
.y73{bottom:376.779600px;}
.yf0{bottom:377.997604px;}
.y1ac{bottom:383.693009px;}
.y167{bottom:384.378000px;}
.y9c{bottom:387.434670px;}
.y10b{bottom:387.438631px;}
.yd1{bottom:387.442500px;}
.y166{bottom:389.735400px;}
.y3c{bottom:391.952100px;}
.yef{bottom:396.026284px;}
.y1ab{bottom:396.363715px;}
.y165{bottom:399.429900px;}
.yd0{bottom:403.939500px;}
.y164{bottom:404.702250px;}
.y9b{bottom:405.377850px;}
.y10a{bottom:405.381810px;}
.y3b{bottom:408.449100px;}
.y1aa{bottom:409.119920px;}
.yee{bottom:413.969464px;}
.y163{bottom:414.396825px;}
.y20{bottom:418.142757px;}
.ycf{bottom:420.436500px;}
.y1a9{bottom:421.876125px;}
.y70{bottom:422.740200px;}
.y9a{bottom:423.406530px;}
.y109{bottom:423.410490px;}
.y3a{bottom:424.946100px;}
.y162{bottom:429.448237px;}
.yed{bottom:431.998144px;}
.y1f{bottom:433.194169px;}
.y1a8{bottom:434.632330px;}
.yce{bottom:436.933500px;}
.y6f{bottom:439.237200px;}
.y99{bottom:441.435210px;}
.y39{bottom:441.443100px;}
.y161{bottom:444.415650px;}
.y1a7{bottom:447.388535px;}
.y1e{bottom:448.161581px;}
.y160{bottom:449.773050px;}
.yec{bottom:450.026824px;}
.ycd{bottom:453.430500px;}
.y6e{bottom:455.734200px;}
.y38{bottom:457.940100px;}
.y98{bottom:459.378390px;}
.y15f{bottom:459.382650px;}
.y1a6{bottom:460.144740px;}
.y1d{bottom:463.128994px;}
.ycc{bottom:469.927500px;}
.y6d{bottom:472.231200px;}
.y108{bottom:472.478981px;}
.y1a5{bottom:472.900945px;}
.y37{bottom:474.437100px;}
.y97{bottom:477.407070px;}
.y1c{bottom:478.180406px;}
.y1a4{bottom:485.657150px;}
.y6c{bottom:488.728200px;}
.y107{bottom:490.507661px;}
.y36{bottom:490.934100px;}
.y1b{bottom:494.338204px;}
.yeb{bottom:494.587770px;}
.y96{bottom:495.435750px;}
.y15e{bottom:495.437161px;}
.y1a3{bottom:498.413355px;}
.ycb{bottom:498.415650px;}
.y6b{bottom:505.225200px;}
.y35{bottom:507.431100px;}
.y106{bottom:508.536342px;}
.y1a2{bottom:511.169560px;}
.yea{bottom:512.616450px;}
.y95{bottom:513.378930px;}
.y15d{bottom:513.380340px;}
.y6a{bottom:521.722200px;}
.y1a1{bottom:523.925764px;}
.y34{bottom:523.928100px;}
.ye9{bottom:530.645131px;}
.y1a{bottom:530.649750px;}
.y94{bottom:531.407610px;}
.y15c{bottom:531.409020px;}
.y1a0{bottom:536.681969px;}
.y69{bottom:538.219200px;}
.y33{bottom:540.425100px;}
.y19{bottom:545.701162px;}
.ye8{bottom:548.588310px;}
.y105{bottom:548.589742px;}
.y15b{bottom:549.437701px;}
.y19f{bottom:549.438174px;}
.yca{bottom:553.943993px;}
.y68{bottom:554.716200px;}
.y32{bottom:558.373500px;}
.y18{bottom:560.667375px;}
.y19e{bottom:562.194379px;}
.ye7{bottom:566.616990px;}
.y104{bottom:566.618422px;}
.y15a{bottom:567.380880px;}
.y67{bottom:571.213200px;}
.y93{bottom:571.887015px;}
.yc9{bottom:571.887172px;}
.y19d{bottom:574.865085px;}
.y31{bottom:574.870500px;}
.y17{bottom:575.634788px;}
.ye6{bottom:584.645671px;}
.y103{bottom:584.647103px;}
.y159{bottom:585.409560px;}
.y19c{bottom:587.621290px;}
.y66{bottom:587.710200px;}
.y92{bottom:589.915695px;}
.yc8{bottom:589.915853px;}
.y16{bottom:590.686200px;}
.y30{bottom:591.452550px;}
.y19b{bottom:600.377495px;}
.ye5{bottom:602.588850px;}
.y102{bottom:602.590282px;}
.y158{bottom:603.438241px;}
.y65{bottom:604.207200px;}
.y15{bottom:605.653613px;}
.y91{bottom:607.944375px;}
.yc7{bottom:607.944533px;}
.y2f{bottom:607.949550px;}
.y19a{bottom:613.133700px;}
.y14{bottom:620.621026px;}
.y64{bottom:620.704200px;}
.y157{bottom:621.381420px;}
.y2e{bottom:624.446550px;}
.y90{bottom:625.887555px;}
.yc6{bottom:625.887712px;}
.y199{bottom:626.655000px;}
.y13{bottom:635.672438px;}
.y63{bottom:637.201200px;}
.y156{bottom:639.410100px;}
.y2d{bottom:640.943550px;}
.y8f{bottom:643.916235px;}
.yc5{bottom:643.916393px;}
.y12{bottom:650.638650px;}
.y62{bottom:653.698200px;}
.y155{bottom:657.438781px;}
.y2c{bottom:657.440550px;}
.y140{bottom:658.119469px;}
.y8e{bottom:661.944915px;}
.yc4{bottom:661.945073px;}
.y11{bottom:665.690062px;}
.y61{bottom:670.195200px;}
.y13f{bottom:671.640900px;}
.y2b{bottom:673.937550px;}
.y154{bottom:675.381960px;}
.y8d{bottom:679.888095px;}
.yc3{bottom:679.888252px;}
.y10{bottom:680.656275px;}
.y198{bottom:689.492224px;}
.y2a{bottom:690.434671px;}
.y13e{bottom:690.440100px;}
.y153{bottom:693.410640px;}
.yf{bottom:695.622488px;}
.yc2{bottom:697.916933px;}
.y60{bottom:700.639200px;}
.y197{bottom:704.459637px;}
.y13d{bottom:706.937100px;}
.y29{bottom:708.377850px;}
.ye{bottom:710.673900px;}
.y152{bottom:711.439321px;}
.yc1{bottom:715.945613px;}
.y196{bottom:719.511049px;}
.y13c{bottom:723.434100px;}
.y14f{bottom:729.378570px;}
.y8c{bottom:729.381090px;}
.y151{bottom:729.382500px;}
.yc0{bottom:733.888792px;}
.y195{bottom:734.478462px;}
.y150{bottom:736.100700px;}
.y13b{bottom:739.931100px;}
.y14e{bottom:747.407250px;}
.y8b{bottom:747.409770px;}
.y194{bottom:749.529874px;}
.ybf{bottom:751.917473px;}
.y13a{bottom:756.428100px;}
.y193{bottom:764.497287px;}
.y14d{bottom:765.435931px;}
.y8a{bottom:765.438450px;}
.yd{bottom:772.922700px;}
.y139{bottom:772.925100px;}
.y14c{bottom:783.379110px;}
.y89{bottom:783.381630px;}
.y192{bottom:787.033005px;}
.y138{bottom:789.422100px;}
.yb{bottom:792.396750px;}
.ybe{bottom:794.691900px;}
.yc{bottom:799.710000px;}
.y14b{bottom:801.407790px;}
.y88{bottom:801.410310px;}
.y137{bottom:805.919100px;}
.y191{bottom:809.483524px;}
.y9{bottom:811.870650px;}
.ybd{bottom:812.635080px;}
.ya{bottom:819.269100px;}
.y14a{bottom:819.436471px;}
.y87{bottom:819.438990px;}
.y136{bottom:822.416100px;}
.y190{bottom:824.534936px;}
.ybc{bottom:830.663760px;}
.y7{bottom:831.429750px;}
.y149{bottom:837.379650px;}
.y86{bottom:837.382170px;}
.y8{bottom:838.743150px;}
.y135{bottom:838.913100px;}
.y18f{bottom:839.502349px;}
.ybb{bottom:848.692440px;}
.y18e{bottom:854.469762px;}
.y148{bottom:855.408330px;}
.y134{bottom:855.410100px;}
.y85{bottom:855.410850px;}
.yba{bottom:866.635620px;}
.y18d{bottom:869.521174px;}
.y133{bottom:871.908450px;}
.y147{bottom:873.437011px;}
.y83{bottom:873.438241px;}
.y84{bottom:880.072200px;}
.y18c{bottom:884.487387px;}
.yb9{bottom:884.664293px;}
.y132{bottom:888.405450px;}
.y146{bottom:891.380190px;}
.y82{bottom:891.381420px;}
.y6{bottom:895.129050px;}
.yb8{bottom:902.688323px;}
.y131{bottom:904.902450px;}
.y18b{bottom:907.023105px;}
.y145{bottom:909.408870px;}
.y81{bottom:909.410100px;}
.yb7{bottom:920.631502px;}
.y130{bottom:921.399450px;}
.y18a{bottom:921.990518px;}
.y144{bottom:927.437551px;}
.y80{bottom:927.438781px;}
.y5{bottom:934.161450px;}
.y189{bottom:936.957931px;}
.y12f{bottom:937.896450px;}
.yb6{bottom:938.660182px;}
.y143{bottom:945.380730px;}
.y7f{bottom:945.381960px;}
.y188{bottom:952.009343px;}
.y12e{bottom:954.394800px;}
.y142{bottom:963.409410px;}
.y7e{bottom:963.410640px;}
.y187{bottom:966.976756px;}
.y12d{bottom:970.893150px;}
.y4{bottom:973.193850px;}
.yb5{bottom:981.434610px;}
.y141{bottom:981.438091px;}
.y7d{bottom:981.439321px;}
.y186{bottom:982.028168px;}
.y12c{bottom:987.391500px;}
.y185{bottom:996.995580px;}
.yb4{bottom:999.377790px;}
.y7a{bottom:999.381270px;}
.y7c{bottom:999.382500px;}
.y12b{bottom:1003.889850px;}
.y7b{bottom:1006.100550px;}
.y184{bottom:1011.962993px;}
.y3{bottom:1012.140450px;}
.yb3{bottom:1017.406470px;}
.y79{bottom:1017.409950px;}
.y12a{bottom:1020.386850px;}
.y183{bottom:1034.498712px;}
.yb2{bottom:1035.435150px;}
.y78{bottom:1035.438631px;}
.y129{bottom:1036.883850px;}
.y182{bottom:1049.466125px;}
.y2{bottom:1051.172850px;}
.yb1{bottom:1053.378330px;}
.y77{bottom:1053.381810px;}
.y128{bottom:1053.382200px;}
.y181{bottom:1064.517536px;}
.yb0{bottom:1071.407010px;}
.y76{bottom:1071.410490px;}
.y127{bottom:1076.683200px;}
.y180{bottom:1079.484949px;}
.yaf{bottom:1089.435690px;}
.y75{bottom:1089.439171px;}
.y1{bottom:1090.119450px;}
.y17f{bottom:1094.536361px;}
.y126{bottom:1098.368250px;}
.yae{bottom:1107.378870px;}
.y74{bottom:1107.382350px;}
.y17e{bottom:1109.502574px;}
.y72{bottom:1139.612400px;}
.h10{height:24.476175px;}
.hb{height:29.317068px;}
.h7{height:31.958001px;}
.h4{height:32.425199px;}
.h13{height:33.164558px;}
.hf{height:35.375558px;}
.h6{height:36.719541px;}
.h11{height:36.815540px;}
.h5{height:36.863539px;}
.he{height:39.798000px;}
.h9{height:41.310000px;}
.h12{height:43.776000px;}
.ha{height:43.980440px;}
.hc{height:44.220442px;}
.h8{height:46.080461px;}
.h3{height:48.642442px;}
.hd{height:56.320312px;}
.h2{height:96.228000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:62.759100px;}
.x34{left:67.181100px;}
.x1c{left:68.711850px;}
.x2f{left:72.453450px;}
.x1e{left:76.195200px;}
.x20{left:182.494350px;}
.x1{left:220.251900px;}
.x32{left:222.037650px;}
.x33{left:238.620450px;}
.x1b{left:252.566850px;}
.x30{left:278.333850px;}
.xc{left:329.357400px;}
.xd{left:341.092800px;}
.x14{left:347.300700px;}
.x15{left:366.519600px;}
.x2{left:371.451900px;}
.x1f{left:380.551050px;}
.x7{left:394.072350px;}
.x26{left:402.321150px;}
.x3{left:404.617200px;}
.x8{left:405.892800px;}
.x25{left:412.185750px;}
.x21{left:460.236540px;}
.x35{left:465.930600px;}
.x23{left:469.247100px;}
.x22{left:473.754135px;}
.xe{left:478.516350px;}
.x24{left:487.104900px;}
.x36{left:488.636172px;}
.xf{left:490.336950px;}
.x27{left:525.968400px;}
.x16{left:534.473280px;}
.x19{left:543.486450px;}
.x1a{left:558.964200px;}
.x4{left:574.015650px;}
.x9{left:577.417200px;}
.x2d{left:592.809300px;}
.x5{left:596.466000px;}
.xa{left:599.952600px;}
.x28{left:604.204500px;}
.x2e{left:608.796750px;}
.x29{left:614.919600px;}
.x17{left:620.021850px;}
.x10{left:626.229750px;}
.x11{left:638.050200px;}
.x18{left:643.917900px;}
.xb{left:706.251750px;}
.x31{left:720.028200px;}
.x6{left:725.300700px;}
.x2b{left:729.127350px;}
.x2c{left:750.472200px;}
.x12{left:809.149350px;}
.x2a{left:818.673750px;}
.x1d{left:867.000000px;}
@media print{
.v1{vertical-align:-4.232480pt;}
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-1.040010pt;}
.ls10{letter-spacing:-1.018677pt;}
.ls1b{letter-spacing:-0.992010pt;}
.ls1a{letter-spacing:-0.965343pt;}
.ls14{letter-spacing:-0.944009pt;}
.ls15{letter-spacing:-0.933343pt;}
.ls19{letter-spacing:-0.922676pt;}
.lsf{letter-spacing:-0.917343pt;}
.ls18{letter-spacing:-0.912542pt;}
.lse{letter-spacing:-0.906676pt;}
.ls17{letter-spacing:-0.901876pt;}
.lsb{letter-spacing:-0.896009pt;}
.ls16{letter-spacing:-0.890142pt;}
.ls1c{letter-spacing:-0.885342pt;}
.ls12{letter-spacing:-0.874675pt;}
.ls9{letter-spacing:-0.864009pt;}
.ls11{letter-spacing:-0.858675pt;}
.ls13{letter-spacing:-0.848008pt;}
.lsd{letter-spacing:-0.826675pt;}
.ls7{letter-spacing:-0.657073pt;}
.ls2c{letter-spacing:-0.005867pt;}
.ls8{letter-spacing:-0.004693pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.004302pt;}
.ls2d{letter-spacing:0.034133pt;}
.ls30{letter-spacing:0.072532pt;}
.ls28{letter-spacing:0.120000pt;}
.ls1e{letter-spacing:0.122668pt;}
.ls1d{letter-spacing:0.142208pt;}
.ls1f{letter-spacing:0.202669pt;}
.ls33{letter-spacing:0.215997pt;}
.ls32{letter-spacing:0.295996pt;}
.ls5{letter-spacing:3.770171pt;}
.ls2e{letter-spacing:3.786705pt;}
.ls4{letter-spacing:3.888572pt;}
.lsc{letter-spacing:12.236643pt;}
.ls31{letter-spacing:12.769974pt;}
.ls3{letter-spacing:12.919305pt;}
.ls29{letter-spacing:14.630400pt;}
.ls2f{letter-spacing:15.461920pt;}
.ls23{letter-spacing:15.925493pt;}
.ls22{letter-spacing:17.440174pt;}
.ls21{letter-spacing:17.738844pt;}
.ls2a{letter-spacing:17.956800pt;}
.ls26{letter-spacing:18.346850pt;}
.ls1{letter-spacing:20.991738pt;}
.ls27{letter-spacing:32.006400pt;}
.ls2{letter-spacing:32.040000pt;}
.ls24{letter-spacing:43.440434pt;}
.ls25{letter-spacing:43.744437pt;}
.ls20{letter-spacing:102.401024pt;}
.ls2b{letter-spacing:1235.694667pt;}
.ws6b{word-spacing:-13.344000pt;}
.ws6a{word-spacing:-3.823505pt;}
.ws2{word-spacing:-0.117333pt;}
.ws28{word-spacing:-0.053334pt;}
.ws164{word-spacing:-0.050667pt;}
.ws61{word-spacing:-0.048000pt;}
.ws7{word-spacing:-0.043410pt;}
.ws19{word-spacing:-0.042666pt;}
.ws16a{word-spacing:-0.039999pt;}
.ws9{word-spacing:-0.039108pt;}
.ws4c{word-spacing:-0.035552pt;}
.ws6c{word-spacing:0.000000pt;}
.ws4b{word-spacing:0.890676pt;}
.ws54{word-spacing:0.912009pt;}
.ws185{word-spacing:11.103852pt;}
.ws175{word-spacing:11.151851pt;}
.ws186{word-spacing:11.223850pt;}
.ws17c{word-spacing:11.351849pt;}
.ws183{word-spacing:11.403848pt;}
.ws143{word-spacing:11.417457pt;}
.ws15a{word-spacing:11.460123pt;}
.ws155{word-spacing:11.681987pt;}
.ws17a{word-spacing:11.707844pt;}
.ws1b{word-spacing:11.720387pt;}
.ws17f{word-spacing:11.735844pt;}
.ws16f{word-spacing:11.743843pt;}
.ws162{word-spacing:11.758786pt;}
.ws179{word-spacing:11.791843pt;}
.ws1e{word-spacing:11.822786pt;}
.ws167{word-spacing:11.823842pt;}
.ws173{word-spacing:11.827842pt;}
.ws168{word-spacing:11.835842pt;}
.ws163{word-spacing:11.852652pt;}
.ws172{word-spacing:11.859842pt;}
.ws16d{word-spacing:11.879842pt;}
.ws20{word-spacing:11.882518pt;}
.ws166{word-spacing:11.911841pt;}
.ws182{word-spacing:11.935841pt;}
.ws170{word-spacing:11.951841pt;}
.ws16c{word-spacing:11.955841pt;}
.ws69{word-spacing:11.962253pt;}
.ws184{word-spacing:11.987840pt;}
.ws180{word-spacing:11.999840pt;}
.ws17e{word-spacing:12.011840pt;}
.ws16b{word-spacing:12.023840pt;}
.ws165{word-spacing:12.031840pt;}
.ws17b{word-spacing:12.047839pt;}
.ws176{word-spacing:12.055839pt;}
.ws17d{word-spacing:12.059839pt;}
.ws148{word-spacing:12.091582pt;}
.ws178{word-spacing:12.095839pt;}
.ws169{word-spacing:12.107839pt;}
.ws174{word-spacing:12.115838pt;}
.ws16e{word-spacing:12.119838pt;}
.ws24{word-spacing:12.125715pt;}
.ws177{word-spacing:12.139838pt;}
.ws181{word-spacing:12.155838pt;}
.ws121{word-spacing:12.165455pt;}
.ws171{word-spacing:12.171838pt;}
.ws14b{word-spacing:12.172648pt;}
.ws149{word-spacing:12.181181pt;}
.ws14f{word-spacing:12.185448pt;}
.ws68{word-spacing:12.189714pt;}
.ws15e{word-spacing:12.223847pt;}
.ws11f{word-spacing:12.232380pt;}
.ws154{word-spacing:12.236647pt;}
.ws156{word-spacing:12.240914pt;}
.ws22{word-spacing:12.292113pt;}
.ws16{word-spacing:12.296380pt;}
.ws159{word-spacing:12.321979pt;}
.wsdc{word-spacing:12.326246pt;}
.ws15{word-spacing:12.330513pt;}
.ws67{word-spacing:12.351846pt;}
.ws15d{word-spacing:12.356112pt;}
.ws23{word-spacing:12.360379pt;}
.ws1f{word-spacing:12.373179pt;}
.ws14e{word-spacing:12.394512pt;}
.ws150{word-spacing:12.398778pt;}
.ws153{word-spacing:12.403045pt;}
.ws26{word-spacing:12.424378pt;}
.ws120{word-spacing:12.428645pt;}
.ws15b{word-spacing:12.432911pt;}
.ws17{word-spacing:12.437178pt;}
.ws158{word-spacing:12.454244pt;}
.ws145{word-spacing:12.458511pt;}
.ws25{word-spacing:12.462778pt;}
.ws15c{word-spacing:12.467044pt;}
.ws15f{word-spacing:12.471311pt;}
.ws11{word-spacing:12.501177pt;}
.ws146{word-spacing:12.522510pt;}
.ws14c{word-spacing:12.526777pt;}
.ws161{word-spacing:12.552376pt;}
.ws66{word-spacing:12.556643pt;}
.ws1a{word-spacing:12.560910pt;}
.ws18{word-spacing:12.565176pt;}
.ws147{word-spacing:12.569443pt;}
.ws21{word-spacing:12.569870pt;}
.ws1c{word-spacing:12.573709pt;}
.ws1d{word-spacing:12.590776pt;}
.ws27{word-spacing:12.599309pt;}
.ws13{word-spacing:12.607842pt;}
.ws152{word-spacing:12.624909pt;}
.ws160{word-spacing:12.688908pt;}
.ws14{word-spacing:12.727308pt;}
.ws14a{word-spacing:12.757174pt;}
.ws144{word-spacing:12.761440pt;}
.ws12{word-spacing:12.859573pt;}
.ws2d{word-spacing:13.190400pt;}
.ws2a{word-spacing:13.219200pt;}
.ws11b{word-spacing:13.257600pt;}
.ws119{word-spacing:13.272000pt;}
.ws34{word-spacing:13.339200pt;}
.ws11c{word-spacing:13.344000pt;}
.ws35{word-spacing:13.353600pt;}
.ws31{word-spacing:13.411200pt;}
.ws44{word-spacing:13.440134pt;}
.ws39{word-spacing:13.444800pt;}
.wscc{word-spacing:13.488000pt;}
.wsd7{word-spacing:13.795200pt;}
.wsd0{word-spacing:13.824000pt;}
.ws4e{word-spacing:14.063607pt;}
.ws58{word-spacing:14.064141pt;}
.ws2f{word-spacing:14.097600pt;}
.ws36{word-spacing:14.126400pt;}
.ws115{word-spacing:14.164800pt;}
.ws37{word-spacing:14.169600pt;}
.ws30{word-spacing:14.174400pt;}
.ws118{word-spacing:14.198400pt;}
.wsc9{word-spacing:14.203200pt;}
.ws3a{word-spacing:14.208000pt;}
.ws2b{word-spacing:14.241600pt;}
.ws117{word-spacing:14.246400pt;}
.wsd8{word-spacing:14.251200pt;}
.ws2e{word-spacing:14.260800pt;}
.ws116{word-spacing:14.275200pt;}
.ws2c{word-spacing:14.280000pt;}
.ws33{word-spacing:14.289600pt;}
.wsd6{word-spacing:14.294400pt;}
.ws32{word-spacing:14.314033pt;}
.ws11e{word-spacing:14.318400pt;}
.wsd1{word-spacing:14.323200pt;}
.wsd2{word-spacing:14.347200pt;}
.ws3b{word-spacing:14.352000pt;}
.ws3c{word-spacing:14.354399pt;}
.ws3d{word-spacing:14.361600pt;}
.wsc8{word-spacing:14.371200pt;}
.wsd4{word-spacing:14.390400pt;}
.wsd3{word-spacing:14.395200pt;}
.ws38{word-spacing:14.409600pt;}
.ws4f{word-spacing:14.438011pt;}
.ws11d{word-spacing:14.472000pt;}
.ws11a{word-spacing:14.505600pt;}
.wsd5{word-spacing:14.520000pt;}
.ws3e{word-spacing:14.544000pt;}
.ws9a{word-spacing:14.650813pt;}
.ws3f{word-spacing:14.741124pt;}
.wsee{word-spacing:14.741481pt;}
.ws29{word-spacing:14.777018pt;}
.ws102{word-spacing:14.778814pt;}
.wse6{word-spacing:14.853482pt;}
.wse5{word-spacing:14.917483pt;}
.wsca{word-spacing:14.966400pt;}
.wsb9{word-spacing:15.061484pt;}
.ws7c{word-spacing:15.162818pt;}
.wsc7{word-spacing:15.264153pt;}
.ws43{word-spacing:15.397487pt;}
.ws42{word-spacing:15.466821pt;}
.ws74{word-spacing:15.520155pt;}
.ws109{word-spacing:15.568156pt;}
.wsc2{word-spacing:15.792158pt;}
.ws81{word-spacing:15.802825pt;}
.wsbc{word-spacing:15.824158pt;}
.wsaf{word-spacing:15.840158pt;}
.wsa1{word-spacing:15.856159pt;}
.ws89{word-spacing:15.866825pt;}
.ws94{word-spacing:15.884959pt;}
.wsfd{word-spacing:15.904159pt;}
.wsf2{word-spacing:15.914826pt;}
.wse2{word-spacing:15.952160pt;}
.wsc1{word-spacing:15.962826pt;}
.wsb0{word-spacing:15.978826pt;}
.ws46{word-spacing:15.984160pt;}
.ws95{word-spacing:16.007093pt;}
.ws59{word-spacing:16.026827pt;}
.wse3{word-spacing:16.064161pt;}
.wsc6{word-spacing:16.085494pt;}
.ws111{word-spacing:16.154828pt;}
.wsf1{word-spacing:16.208162pt;}
.ws138{word-spacing:16.240162pt;}
.ws82{word-spacing:16.272163pt;}
.ws12a{word-spacing:16.277496pt;}
.ws88{word-spacing:16.309496pt;}
.ws8d{word-spacing:16.330830pt;}
.ws110{word-spacing:16.416164pt;}
.wsda{word-spacing:16.632000pt;}
.ws7e{word-spacing:16.848168pt;}
.wsb6{word-spacing:16.917503pt;}
.wsc3{word-spacing:17.024170pt;}
.ws5d{word-spacing:17.049600pt;}
.ws48{word-spacing:17.056171pt;}
.ws124{word-spacing:17.130838pt;}
.ws7f{word-spacing:17.269506pt;}
.wsbe{word-spacing:17.333507pt;}
.wsf{word-spacing:17.388958pt;}
.wsc{word-spacing:17.406558pt;}
.wsce{word-spacing:17.419200pt;}
.ws8{word-spacing:17.441759pt;}
.ws8c{word-spacing:17.445508pt;}
.wsb{word-spacing:17.447625pt;}
.ws87{word-spacing:17.493508pt;}
.ws49{word-spacing:17.514842pt;}
.ws92{word-spacing:17.521775pt;}
.wsd{word-spacing:17.535626pt;}
.wsdf{word-spacing:17.546842pt;}
.wsdb{word-spacing:17.572800pt;}
.ws10b{word-spacing:17.594843pt;}
.ws6{word-spacing:17.600160pt;}
.wsf8{word-spacing:17.616176pt;}
.ws104{word-spacing:17.642843pt;}
.ws80{word-spacing:17.664177pt;}
.wsa{word-spacing:17.670561pt;}
.ws6e{word-spacing:17.690844pt;}
.ws93{word-spacing:17.703644pt;}
.ws134{word-spacing:17.712177pt;}
.ws10c{word-spacing:17.776178pt;}
.wse{word-spacing:17.799628pt;}
.wsde{word-spacing:17.914846pt;}
.ws135{word-spacing:18.000180pt;}
.ws9e{word-spacing:18.117515pt;}
.ws136{word-spacing:18.154848pt;}
.ws10{word-spacing:18.157498pt;}
.ws7b{word-spacing:18.176182pt;}
.ws9f{word-spacing:18.208182pt;}
.wsa0{word-spacing:18.224182pt;}
.ws79{word-spacing:18.272183pt;}
.ws55{word-spacing:18.512185pt;}
.ws5e{word-spacing:18.590400pt;}
.wsa9{word-spacing:18.752188pt;}
.wsfc{word-spacing:19.141525pt;}
.ws131{word-spacing:19.242859pt;}
.wsb7{word-spacing:19.354860pt;}
.ws10a{word-spacing:19.456195pt;}
.ws50{word-spacing:19.488195pt;}
.wsbd{word-spacing:19.573529pt;}
.ws125{word-spacing:19.781531pt;}
.ws77{word-spacing:19.845532pt;}
.ws8f{word-spacing:19.957533pt;}
.ws100{word-spacing:20.005533pt;}
.ws141{word-spacing:20.144201pt;}
.wsae{word-spacing:20.282869pt;}
.wsa7{word-spacing:20.362870pt;}
.ws8e{word-spacing:20.389537pt;}
.wsf3{word-spacing:20.448204pt;}
.wsec{word-spacing:20.560206pt;}
.wsa8{word-spacing:20.576206pt;}
.ws8a{word-spacing:20.645540pt;}
.wscb{word-spacing:20.702400pt;}
.wsa2{word-spacing:20.752208pt;}
.ws157{word-spacing:20.859473pt;}
.ws151{word-spacing:20.936272pt;}
.ws75{word-spacing:20.992210pt;}
.ws6f{word-spacing:21.040210pt;}
.ws9b{word-spacing:21.152212pt;}
.ws70{word-spacing:21.168212pt;}
.ws14d{word-spacing:21.192268pt;}
.ws10d{word-spacing:21.354880pt;}
.ws133{word-spacing:21.386881pt;}
.ws99{word-spacing:21.477548pt;}
.ws12b{word-spacing:21.600216pt;}
.wsb2{word-spacing:21.722884pt;}
.ws112{word-spacing:21.770884pt;}
.ws139{word-spacing:22.117555pt;}
.wsa3{word-spacing:22.165555pt;}
.ws128{word-spacing:22.293556pt;}
.wsf4{word-spacing:22.378890pt;}
.ws12d{word-spacing:22.501558pt;}
.wsab{word-spacing:22.565559pt;}
.ws12c{word-spacing:22.570892pt;}
.ws129{word-spacing:22.592226pt;}
.ws106{word-spacing:22.709560pt;}
.ws76{word-spacing:22.906896pt;}
.ws10f{word-spacing:22.912229pt;}
.wsfe{word-spacing:22.981563pt;}
.ws13a{word-spacing:23.002897pt;}
.ws63{word-spacing:23.630400pt;}
.ws86{word-spacing:23.754904pt;}
.ws10e{word-spacing:23.861572pt;}
.wsed{word-spacing:24.138908pt;}
.ws123{word-spacing:24.282909pt;}
.ws122{word-spacing:24.320243pt;}
.ws56{word-spacing:24.426911pt;}
.wseb{word-spacing:24.442911pt;}
.ws84{word-spacing:24.522912pt;}
.ws12f{word-spacing:24.554912pt;}
.ws85{word-spacing:24.730914pt;}
.ws51{word-spacing:24.971450pt;}
.ws40{word-spacing:25.200252pt;}
.ws130{word-spacing:25.280253pt;}
.ws137{word-spacing:25.333587pt;}
.wsa4{word-spacing:25.733591pt;}
.wse4{word-spacing:25.808258pt;}
.ws126{word-spacing:25.973593pt;}
.ws5c{word-spacing:26.030400pt;}
.wsc4{word-spacing:26.101594pt;}
.ws13c{word-spacing:26.192262pt;}
.ws108{word-spacing:26.240262pt;}
.ws45{word-spacing:26.741601pt;}
.ws47{word-spacing:26.789601pt;}
.wscf{word-spacing:26.793600pt;}
.ws13b{word-spacing:26.890936pt;}
.ws13f{word-spacing:27.002937pt;}
.ws140{word-spacing:27.013603pt;}
.wse0{word-spacing:27.130938pt;}
.wsff{word-spacing:27.168272pt;}
.ws127{word-spacing:27.221606pt;}
.ws13e{word-spacing:27.269606pt;}
.wsbb{word-spacing:27.370940pt;}
.wsea{word-spacing:27.706944pt;}
.ws4d{word-spacing:27.936279pt;}
.ws6d{word-spacing:28.122948pt;}
.wsfa{word-spacing:28.202949pt;}
.wsfb{word-spacing:28.341617pt;}
.wsf0{word-spacing:28.666953pt;}
.wsa5{word-spacing:28.693620pt;}
.ws98{word-spacing:28.853622pt;}
.wscd{word-spacing:29.222400pt;}
.ws103{word-spacing:29.333627pt;}
.wsf5{word-spacing:29.456295pt;}
.ws142{word-spacing:29.674963pt;}
.ws12e{word-spacing:29.845632pt;}
.wsa6{word-spacing:29.888299pt;}
.ws105{word-spacing:30.106968pt;}
.wse8{word-spacing:30.122968pt;}
.ws72{word-spacing:30.490972pt;}
.ws65{word-spacing:30.504000pt;}
.ws62{word-spacing:30.681600pt;}
.ws73{word-spacing:30.693640pt;}
.wsb5{word-spacing:32.058987pt;}
.wsd9{word-spacing:32.404800pt;}
.wsef{word-spacing:32.624326pt;}
.ws41{word-spacing:32.736327pt;}
.ws4{word-spacing:32.841600pt;}
.wsb4{word-spacing:32.912329pt;}
.ws107{word-spacing:33.104331pt;}
.wsb3{word-spacing:33.136331pt;}
.wsad{word-spacing:33.349667pt;}
.ws97{word-spacing:33.456335pt;}
.wse1{word-spacing:34.229676pt;}
.wsc5{word-spacing:34.357677pt;}
.wse9{word-spacing:34.875015pt;}
.ws96{word-spacing:34.901682pt;}
.ws1{word-spacing:35.012267pt;}
.ws0{word-spacing:35.070933pt;}
.wsdd{word-spacing:35.163018pt;}
.ws3{word-spacing:35.258667pt;}
.ws5{word-spacing:35.411200pt;}
.ws53{word-spacing:36.555032pt;}
.ws52{word-spacing:36.555566pt;}
.ws5a{word-spacing:37.449600pt;}
.wsb1{word-spacing:38.021714pt;}
.ws64{word-spacing:38.169600pt;}
.ws78{word-spacing:38.229716pt;}
.wsbf{word-spacing:38.459051pt;}
.wsf6{word-spacing:38.832388pt;}
.ws5b{word-spacing:39.182400pt;}
.ws8b{word-spacing:39.499062pt;}
.wsc0{word-spacing:39.840398pt;}
.ws90{word-spacing:39.845732pt;}
.ws101{word-spacing:39.867065pt;}
.wse7{word-spacing:40.101734pt;}
.ws5f{word-spacing:40.526400pt;}
.ws13d{word-spacing:40.619073pt;}
.ws132{word-spacing:41.957753pt;}
.ws7a{word-spacing:42.587093pt;}
.ws9c{word-spacing:43.522035pt;}
.ws9d{word-spacing:43.829772pt;}
.ws57{word-spacing:45.077784pt;}
.ws7d{word-spacing:45.307120pt;}
.wsba{word-spacing:45.488455pt;}
.ws114{word-spacing:45.856459pt;}
.ws113{word-spacing:46.997803pt;}
.wsf9{word-spacing:47.093804pt;}
.ws83{word-spacing:48.960490pt;}
.ws4a{word-spacing:49.749831pt;}
.ws71{word-spacing:49.856499pt;}
.ws60{word-spacing:50.265600pt;}
.wsaa{word-spacing:52.064521pt;}
.wsb8{word-spacing:62.112621pt;}
.wsac{word-spacing:72.400724pt;}
.wsf7{word-spacing:80.784808pt;}
.ws91{word-spacing:102.694360pt;}
._15{margin-left:-2625.260640pt;}
._14{margin-left:-1587.454560pt;}
._9{margin-left:-4.631271pt;}
._28{margin-left:-3.674703pt;}
._0{margin-left:-2.534400pt;}
._2{margin-left:-1.490133pt;}
._4{width:1.439165pt;}
._1b{width:2.617956pt;}
._31{width:10.323108pt;}
._30{width:11.690521pt;}
._b{width:12.626245pt;}
._6{width:13.662813pt;}
._7{width:14.947724pt;}
._5{width:16.057588pt;}
._a{width:17.715318pt;}
._d{width:18.739402pt;}
._c{width:19.650315pt;}
._19{width:21.122275pt;}
._16{width:22.332781pt;}
._27{width:24.059949pt;}
._1e{width:25.066917pt;}
._8{width:26.208262pt;}
._f{width:27.868800pt;}
._2f{width:28.880553pt;}
._20{width:29.799522pt;}
._11{width:31.632000pt;}
._21{width:33.173877pt;}
._3{width:34.437333pt;}
._1{width:36.080000pt;}
._24{width:36.982425pt;}
._e{width:38.464533pt;}
._10{width:39.635733pt;}
._1f{width:40.982765pt;}
._2e{width:42.076129pt;}
._1a{width:43.581221pt;}
._1c{width:46.306581pt;}
._26{width:48.110308pt;}
._1d{width:49.904499pt;}
._17{width:51.083177pt;}
._18{width:51.991972pt;}
._23{width:53.451201pt;}
._22{width:61.125945pt;}
._25{width:82.674945pt;}
._29{width:431.382933pt;}
._2c{width:465.244800pt;}
._2b{width:509.726400pt;}
._2a{width:552.734400pt;}
._12{width:560.367152pt;}
._2d{width:1235.239152pt;}
._13{width:2071.807385pt;}
.fs7{font-size:28.440000pt;}
.fs6{font-size:35.552000pt;}
.fs2{font-size:39.107733pt;}
.fs9{font-size:39.999467pt;}
.fs3{font-size:42.666133pt;}
.fs5{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs4{font-size:53.333867pt;}
.fs1{font-size:58.667200pt;}
.fs0{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.ye4{bottom:36.812533pt;}
.y71{bottom:38.626800pt;}
.yad{bottom:72.332986pt;}
.y101{bottom:72.339173pt;}
.y125{bottom:72.339546pt;}
.y4d{bottom:72.339840pt;}
.y28{bottom:72.339992pt;}
.y5f{bottom:73.094560pt;}
.y1c3{bottom:80.342929pt;}
.y17d{bottom:80.351034pt;}
.ye3{bottom:80.358533pt;}
.y27{bottom:85.719024pt;}
.yac{bottom:88.358480pt;}
.y100{bottom:88.364667pt;}
.y4a{bottom:88.364853pt;}
.y124{bottom:88.365040pt;}
.y4c{bottom:88.365333pt;}
.y5e{bottom:89.120054pt;}
.y1c2{bottom:91.681778pt;}
.y17c{bottom:93.730067pt;}
.y4b{bottom:94.261467pt;}
.ye2{bottom:95.023733pt;}
.y26{bottom:99.023392pt;}
.y1c1{bottom:103.020627pt;}
.yab{bottom:104.383974pt;}
.y121{bottom:104.390053pt;}
.yff{bottom:104.390161pt;}
.y49{bottom:104.390347pt;}
.y123{bottom:104.390533pt;}
.y5d{bottom:105.069546pt;}
.y17b{bottom:107.034434pt;}
.ye1{bottom:109.687733pt;}
.y122{bottom:110.286533pt;}
.y1c0{bottom:114.359475pt;}
.yaa{bottom:120.333466pt;}
.y17a{bottom:120.338801pt;}
.y120{bottom:120.339546pt;}
.yfe{bottom:120.339653pt;}
.y48{bottom:120.339840pt;}
.y5c{bottom:121.095040pt;}
.ye0{bottom:124.351733pt;}
.y1bf{bottom:125.698324pt;}
.y25{bottom:133.038966pt;}
.y179{bottom:133.717833pt;}
.ya9{bottom:136.358960pt;}
.y11f{bottom:136.365040pt;}
.yfd{bottom:136.365147pt;}
.y47{bottom:136.365333pt;}
.y1be{bottom:137.037173pt;}
.y5b{bottom:137.120534pt;}
.ydf{bottom:139.015733pt;}
.y24{bottom:146.343333pt;}
.y178{bottom:147.022200pt;}
.y1bd{bottom:148.376022pt;}
.ya8{bottom:152.384454pt;}
.y11c{bottom:152.390347pt;}
.y11e{bottom:152.390533pt;}
.yfc{bottom:152.390641pt;}
.y5a{bottom:153.070026pt;}
.yde{bottom:153.679733pt;}
.y11d{bottom:158.286533pt;}
.y1bc{bottom:159.714871pt;}
.y177{bottom:167.053950pt;}
.ya7{bottom:168.333946pt;}
.y11b{bottom:168.339840pt;}
.yfb{bottom:168.340133pt;}
.ydd{bottom:168.343733pt;}
.y59{bottom:169.095520pt;}
.y1bb{bottom:171.053719pt;}
.y176{bottom:180.358317pt;}
.y1ba{bottom:182.392568pt;}
.ydc{bottom:183.007733pt;}
.ya6{bottom:184.359440pt;}
.y11a{bottom:184.365333pt;}
.y58{bottom:185.121014pt;}
.y1b9{bottom:193.655418pt;}
.y175{bottom:193.662684pt;}
.ydb{bottom:197.672933pt;}
.y46{bottom:199.029867pt;}
.ya5{bottom:200.384934pt;}
.y118{bottom:200.390161pt;}
.y57{bottom:201.070506pt;}
.y1b8{bottom:204.994267pt;}
.y119{bottom:206.286533pt;}
.y174{bottom:207.041717pt;}
.yf9{bottom:208.025014pt;}
.yda{bottom:212.338133pt;}
.yfa{bottom:213.921200pt;}
.y45{bottom:215.057333pt;}
.y1b7{bottom:216.333116pt;}
.ya4{bottom:216.334426pt;}
.y117{bottom:216.339653pt;}
.y54{bottom:217.095954pt;}
.y56{bottom:217.096000pt;}
.y173{bottom:220.346084pt;}
.y55{bottom:222.992133pt;}
.yf8{bottom:223.974506pt;}
.yd9{bottom:227.002133pt;}
.y1b6{bottom:227.671965pt;}
.y44{bottom:229.721333pt;}
.ya3{bottom:232.359920pt;}
.y116{bottom:232.365147pt;}
.y53{bottom:233.121448pt;}
.y1b5{bottom:239.010813pt;}
.yf7{bottom:240.000000pt;}
.yd8{bottom:241.667333pt;}
.y43{bottom:244.385333pt;}
.ya2{bottom:248.385414pt;}
.y172{bottom:248.390533pt;}
.y115{bottom:248.390641pt;}
.y52{bottom:249.070940pt;}
.y1b4{bottom:250.349662pt;}
.y171{bottom:253.077067pt;}
.yf5{bottom:256.022404pt;}
.yd7{bottom:256.331333pt;}
.y42{bottom:259.049333pt;}
.y1b3{bottom:261.688511pt;}
.y170{bottom:261.694033pt;}
.yf6{bottom:261.921200pt;}
.ya1{bottom:264.334906pt;}
.y112{bottom:264.339653pt;}
.y114{bottom:264.340133pt;}
.y51{bottom:265.096434pt;}
.y113{bottom:270.311733pt;}
.yd6{bottom:270.996533pt;}
.yf4{bottom:271.971897pt;}
.y1b2{bottom:273.027360pt;}
.y41{bottom:273.713333pt;}
.y16f{bottom:274.998400pt;}
.y16e{bottom:279.760533pt;}
.ya0{bottom:280.360400pt;}
.y111{bottom:280.365147pt;}
.y50{bottom:281.121928pt;}
.y1b1{bottom:284.366209pt;}
.yd5{bottom:285.661733pt;}
.yf3{bottom:287.997390pt;}
.y16d{bottom:288.377500pt;}
.y40{bottom:289.670267pt;}
.y1b0{bottom:295.705057pt;}
.y9f{bottom:296.385894pt;}
.y110{bottom:296.390641pt;}
.y4f{bottom:297.071420pt;}
.yd4{bottom:300.325733pt;}
.y16c{bottom:301.681867pt;}
.y23{bottom:303.046508pt;}
.yf2{bottom:304.022884pt;}
.y3f{bottom:304.334267pt;}
.y16b{bottom:306.444000pt;}
.y1af{bottom:307.043906pt;}
.y9e{bottom:312.335386pt;}
.y10d{bottom:312.338907pt;}
.y10f{bottom:312.340133pt;}
.y4e{bottom:313.096914pt;}
.y16a{bottom:315.061900pt;}
.yd3{bottom:315.065333pt;}
.y22{bottom:316.350875pt;}
.y10e{bottom:318.311733pt;}
.y1ae{bottom:318.382755pt;}
.y3e{bottom:318.998267pt;}
.yf1{bottom:319.972377pt;}
.y9d{bottom:328.360880pt;}
.y10c{bottom:328.364400pt;}
.y169{bottom:328.365200pt;}
.y1ad{bottom:329.721604pt;}
.yd2{bottom:329.729333pt;}
.y21{bottom:329.729908pt;}
.y168{bottom:333.127467pt;}
.y3d{bottom:333.662267pt;}
.y73{bottom:334.915200pt;}
.yf0{bottom:335.997870pt;}
.y1ac{bottom:341.060453pt;}
.y167{bottom:341.669333pt;}
.y9c{bottom:344.386374pt;}
.y10b{bottom:344.389894pt;}
.yd1{bottom:344.393333pt;}
.y166{bottom:346.431467pt;}
.y3c{bottom:348.401867pt;}
.yef{bottom:352.023364pt;}
.y1ab{bottom:352.323302pt;}
.y165{bottom:355.048800pt;}
.yd0{bottom:359.057333pt;}
.y164{bottom:359.735333pt;}
.y9b{bottom:360.335866pt;}
.y10a{bottom:360.339387pt;}
.y3b{bottom:363.065867pt;}
.y1aa{bottom:363.662151pt;}
.yee{bottom:367.972857pt;}
.y163{bottom:368.352734pt;}
.y20{bottom:371.682450pt;}
.ycf{bottom:373.721333pt;}
.y1a9{bottom:375.001000pt;}
.y70{bottom:375.769067pt;}
.y9a{bottom:376.361360pt;}
.y109{bottom:376.364880pt;}
.y3a{bottom:377.729867pt;}
.y162{bottom:381.731766pt;}
.yed{bottom:383.998350pt;}
.y1f{bottom:385.061483pt;}
.y1a8{bottom:386.339849pt;}
.yce{bottom:388.385333pt;}
.y6f{bottom:390.433067pt;}
.y99{bottom:392.386854pt;}
.y39{bottom:392.393867pt;}
.y161{bottom:395.036133pt;}
.y1a7{bottom:397.678698pt;}
.y1e{bottom:398.365850pt;}
.y160{bottom:399.798267pt;}
.yec{bottom:400.023844pt;}
.ycd{bottom:403.049333pt;}
.y6e{bottom:405.097067pt;}
.y38{bottom:407.057867pt;}
.y98{bottom:408.336346pt;}
.y15f{bottom:408.340133pt;}
.y1a6{bottom:409.017547pt;}
.y1d{bottom:411.670217pt;}
.ycc{bottom:417.713333pt;}
.y6d{bottom:419.761067pt;}
.y108{bottom:419.981316pt;}
.y1a5{bottom:420.356395pt;}
.y37{bottom:421.721867pt;}
.y97{bottom:424.361840pt;}
.y1c{bottom:425.049250pt;}
.y1a4{bottom:431.695244pt;}
.y6c{bottom:434.425067pt;}
.y107{bottom:436.006810pt;}
.y36{bottom:436.385867pt;}
.y1b{bottom:439.411737pt;}
.yeb{bottom:439.633573pt;}
.y96{bottom:440.387334pt;}
.y15e{bottom:440.388587pt;}
.y1a3{bottom:443.034093pt;}
.ycb{bottom:443.036133pt;}
.y6b{bottom:449.089067pt;}
.y35{bottom:451.049867pt;}
.y106{bottom:452.032304pt;}
.y1a2{bottom:454.372942pt;}
.yea{bottom:455.659067pt;}
.y95{bottom:456.336826pt;}
.y15d{bottom:456.338080pt;}
.y6a{bottom:463.753067pt;}
.y1a1{bottom:465.711791pt;}
.y34{bottom:465.713867pt;}
.ye9{bottom:471.684561pt;}
.y1a{bottom:471.688667pt;}
.y94{bottom:472.362320pt;}
.y15c{bottom:472.363574pt;}
.y1a0{bottom:477.050639pt;}
.y69{bottom:478.417067pt;}
.y33{bottom:480.377867pt;}
.y19{bottom:485.067700pt;}
.ye8{bottom:487.634053pt;}
.y105{bottom:487.635326pt;}
.y15b{bottom:488.389067pt;}
.y19f{bottom:488.389488pt;}
.yca{bottom:492.394660pt;}
.y68{bottom:493.081067pt;}
.y32{bottom:496.332000pt;}
.y18{bottom:498.371000pt;}
.y19e{bottom:499.728337pt;}
.ye7{bottom:503.659547pt;}
.y104{bottom:503.660820pt;}
.y15a{bottom:504.338560pt;}
.y67{bottom:507.745067pt;}
.y93{bottom:508.344013pt;}
.yc9{bottom:508.344153pt;}
.y19d{bottom:510.991187pt;}
.y31{bottom:510.996000pt;}
.y17{bottom:511.675367pt;}
.ye6{bottom:519.685041pt;}
.y103{bottom:519.686313pt;}
.y159{bottom:520.364054pt;}
.y19c{bottom:522.330036pt;}
.y66{bottom:522.409067pt;}
.y92{bottom:524.369507pt;}
.yc8{bottom:524.369647pt;}
.y16{bottom:525.054400pt;}
.y30{bottom:525.735600pt;}
.y19b{bottom:533.668885pt;}
.ye5{bottom:535.634533pt;}
.y102{bottom:535.635806pt;}
.y158{bottom:536.389547pt;}
.y65{bottom:537.073067pt;}
.y15{bottom:538.358767pt;}
.y91{bottom:540.395000pt;}
.yc7{bottom:540.395140pt;}
.y2f{bottom:540.399600pt;}
.y19a{bottom:545.007733pt;}
.y14{bottom:551.663134pt;}
.y64{bottom:551.737067pt;}
.y157{bottom:552.339040pt;}
.y2e{bottom:555.063600pt;}
.y90{bottom:556.344493pt;}
.yc6{bottom:556.344633pt;}
.y199{bottom:557.026667pt;}
.y13{bottom:565.042167pt;}
.y63{bottom:566.401067pt;}
.y156{bottom:568.364534pt;}
.y2d{bottom:569.727600pt;}
.y8f{bottom:572.369987pt;}
.yc5{bottom:572.370127pt;}
.y12{bottom:578.345467pt;}
.y62{bottom:581.065067pt;}
.y155{bottom:584.390027pt;}
.y2c{bottom:584.391600pt;}
.y140{bottom:584.995084pt;}
.y8e{bottom:588.395480pt;}
.yc4{bottom:588.395620pt;}
.y11{bottom:591.724500pt;}
.y61{bottom:595.729067pt;}
.y13f{bottom:597.014133pt;}
.y2b{bottom:599.055600pt;}
.y154{bottom:600.339520pt;}
.y8d{bottom:604.344973pt;}
.yc3{bottom:604.345113pt;}
.y10{bottom:605.027800pt;}
.y198{bottom:612.881977pt;}
.y2a{bottom:613.719707pt;}
.y13e{bottom:613.724533pt;}
.y153{bottom:616.365014pt;}
.yf{bottom:618.331101pt;}
.yc2{bottom:620.370607pt;}
.y60{bottom:622.790400pt;}
.y197{bottom:626.186344pt;}
.y13d{bottom:628.388533pt;}
.y29{bottom:629.669200pt;}
.ye{bottom:631.710133pt;}
.y152{bottom:632.390507pt;}
.yc1{bottom:636.396100pt;}
.y196{bottom:639.565377pt;}
.y13c{bottom:643.052533pt;}
.y14f{bottom:648.336507pt;}
.y8c{bottom:648.338746pt;}
.y151{bottom:648.340000pt;}
.yc0{bottom:652.345593pt;}
.y195{bottom:652.869744pt;}
.y150{bottom:654.311733pt;}
.y13b{bottom:657.716533pt;}
.y14e{bottom:664.362000pt;}
.y8b{bottom:664.364240pt;}
.y194{bottom:666.248777pt;}
.ybf{bottom:668.371087pt;}
.y13a{bottom:672.380533pt;}
.y193{bottom:679.553144pt;}
.y14d{bottom:680.387494pt;}
.y8a{bottom:680.389734pt;}
.yd{bottom:687.042400pt;}
.y139{bottom:687.044533pt;}
.y14c{bottom:696.336987pt;}
.y89{bottom:696.339226pt;}
.y192{bottom:699.584893pt;}
.y138{bottom:701.708533pt;}
.yb{bottom:704.352667pt;}
.ybe{bottom:706.392800pt;}
.yc{bottom:710.853333pt;}
.y14b{bottom:712.362480pt;}
.y88{bottom:712.364720pt;}
.y137{bottom:716.372533pt;}
.y191{bottom:719.540911pt;}
.y9{bottom:721.662800pt;}
.ybd{bottom:722.342293pt;}
.ya{bottom:728.239200pt;}
.y14a{bottom:728.387974pt;}
.y87{bottom:728.390214pt;}
.y136{bottom:731.036533pt;}
.y190{bottom:732.919943pt;}
.ybc{bottom:738.367787pt;}
.y7{bottom:739.048667pt;}
.y149{bottom:744.337467pt;}
.y86{bottom:744.339706pt;}
.y8{bottom:745.549467pt;}
.y135{bottom:745.700533pt;}
.y18f{bottom:746.224310pt;}
.ybb{bottom:754.393280pt;}
.y18e{bottom:759.528677pt;}
.y148{bottom:760.362960pt;}
.y134{bottom:760.364533pt;}
.y85{bottom:760.365200pt;}
.yba{bottom:770.342773pt;}
.y18d{bottom:772.907710pt;}
.y133{bottom:775.029733pt;}
.y147{bottom:776.388454pt;}
.y83{bottom:776.389547pt;}
.y84{bottom:782.286400pt;}
.y18c{bottom:786.211010pt;}
.yb9{bottom:786.368260pt;}
.y132{bottom:789.693733pt;}
.y146{bottom:792.337947pt;}
.y82{bottom:792.339040pt;}
.y6{bottom:795.670267pt;}
.yb8{bottom:802.389620pt;}
.y131{bottom:804.357733pt;}
.y18b{bottom:806.242760pt;}
.y145{bottom:808.363440pt;}
.y81{bottom:808.364534pt;}
.yb7{bottom:818.339113pt;}
.y130{bottom:819.021733pt;}
.y18a{bottom:819.547127pt;}
.y144{bottom:824.388934pt;}
.y80{bottom:824.390027pt;}
.y5{bottom:830.365733pt;}
.y189{bottom:832.851494pt;}
.y12f{bottom:833.685733pt;}
.yb6{bottom:834.364607pt;}
.y143{bottom:840.338427pt;}
.y7f{bottom:840.339520pt;}
.y188{bottom:846.230527pt;}
.y12e{bottom:848.350933pt;}
.y142{bottom:856.363920pt;}
.y7e{bottom:856.365014pt;}
.y187{bottom:859.534894pt;}
.y12d{bottom:863.016133pt;}
.y4{bottom:865.061200pt;}
.yb5{bottom:872.386320pt;}
.y141{bottom:872.389414pt;}
.y7d{bottom:872.390507pt;}
.y186{bottom:872.913927pt;}
.y12c{bottom:877.681333pt;}
.y185{bottom:886.218294pt;}
.yb4{bottom:888.335813pt;}
.y7a{bottom:888.338907pt;}
.y7c{bottom:888.340000pt;}
.y12b{bottom:892.346533pt;}
.y7b{bottom:894.311600pt;}
.y184{bottom:899.522661pt;}
.y3{bottom:899.680400pt;}
.yb3{bottom:904.361307pt;}
.y79{bottom:904.364400pt;}
.y12a{bottom:907.010533pt;}
.y183{bottom:919.554410pt;}
.yb2{bottom:920.386800pt;}
.y78{bottom:920.389894pt;}
.y129{bottom:921.674533pt;}
.y182{bottom:932.858777pt;}
.y2{bottom:934.375867pt;}
.yb1{bottom:936.336293pt;}
.y77{bottom:936.339387pt;}
.y128{bottom:936.339733pt;}
.y181{bottom:946.237810pt;}
.yb0{bottom:952.361787pt;}
.y76{bottom:952.364880pt;}
.y127{bottom:957.051733pt;}
.y180{bottom:959.542177pt;}
.yaf{bottom:968.387280pt;}
.y75{bottom:968.390374pt;}
.y1{bottom:968.995067pt;}
.y17f{bottom:972.921210pt;}
.y126{bottom:976.327333pt;}
.yae{bottom:984.336773pt;}
.y74{bottom:984.339867pt;}
.y17e{bottom:986.224510pt;}
.y72{bottom:1012.988800pt;}
.h10{height:21.756600pt;}
.hb{height:26.059616pt;}
.h7{height:28.407112pt;}
.h4{height:28.822399pt;}
.h13{height:29.479607pt;}
.hf{height:31.444940pt;}
.h6{height:32.639592pt;}
.h11{height:32.724924pt;}
.h5{height:32.767590pt;}
.he{height:35.376000pt;}
.h9{height:36.720000pt;}
.h12{height:38.912000pt;}
.ha{height:39.093724pt;}
.hc{height:39.307060pt;}
.h8{height:40.960410pt;}
.h3{height:43.237726pt;}
.hd{height:50.062500pt;}
.h2{height:85.536000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:55.785867pt;}
.x34{left:59.716533pt;}
.x1c{left:61.077200pt;}
.x2f{left:64.403067pt;}
.x1e{left:67.729067pt;}
.x20{left:162.217200pt;}
.x1{left:195.779467pt;}
.x32{left:197.366800pt;}
.x33{left:212.107067pt;}
.x1b{left:224.503867pt;}
.x30{left:247.407867pt;}
.xc{left:292.762133pt;}
.xd{left:303.193600pt;}
.x14{left:308.711733pt;}
.x15{left:325.795200pt;}
.x2{left:330.179467pt;}
.x1f{left:338.267600pt;}
.x7{left:350.286533pt;}
.x26{left:357.618800pt;}
.x3{left:359.659733pt;}
.x8{left:360.793600pt;}
.x25{left:366.387333pt;}
.x21{left:409.099147pt;}
.x35{left:414.160533pt;}
.x23{left:417.108533pt;}
.x22{left:421.114787pt;}
.xe{left:425.347867pt;}
.x24{left:432.982133pt;}
.x36{left:434.343264pt;}
.xf{left:435.855067pt;}
.x27{left:467.527467pt;}
.x16{left:475.087360pt;}
.x19{left:483.099067pt;}
.x1a{left:496.857067pt;}
.x4{left:510.236133pt;}
.x9{left:513.259733pt;}
.x2d{left:526.941600pt;}
.x5{left:530.192000pt;}
.xa{left:533.291200pt;}
.x28{left:537.070667pt;}
.x2e{left:541.152667pt;}
.x29{left:546.595200pt;}
.x17{left:551.130533pt;}
.x10{left:556.648667pt;}
.x11{left:567.155733pt;}
.x18{left:572.371467pt;}
.xb{left:627.779333pt;}
.x31{left:640.025067pt;}
.x6{left:644.711733pt;}
.x2b{left:648.113200pt;}
.x2c{left:667.086400pt;}
.x12{left:719.243867pt;}
.x2a{left:727.710000pt;}
.x1d{left:770.666667pt;}
}




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