
    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_ca5eced3b11f93c027dc24b0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_99a028ad7b8fff492fb1084a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_e4d6cb323d399f9158cf6ed3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.825000;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_6ef66ac46c7fcff61ae8caa7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.126000;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_681d9479db531e03e3471181.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.065581;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_a56730ea064d3db8f4189a1f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.136000;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_c99c9b56cff86e4dde2d7d07.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.223000;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_59d86bfad3ddce5da643ef33.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.239000;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_5dc42bab8ec5df80e9746677.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.090000;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_0e47b2731c5d302b82dcff7b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.328000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_a7fdf7fba062e4319dd5ca7f.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.126000;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_e8be2cc7ad358728a3a55d45.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.144000;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_d304876db222aa8b5c121375.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.169000;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_f2c42b3e209f045b2cd5a3d0.woff2')format("woff");}.fff{font-family:fff;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;}
.m2{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(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:-19.199890px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.216937px;}
.v1{vertical-align:24.000000px;}
.v4{vertical-align:56.976000px;}
.ls9{letter-spacing:-0.840000px;}
.ls16{letter-spacing:-0.192000px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.096000px;}
.ls19{letter-spacing:0.336000px;}
.lse{letter-spacing:0.484800px;}
.ls13{letter-spacing:0.672000px;}
.ls1{letter-spacing:0.840000px;}
.ls18{letter-spacing:1.156800px;}
.ls1d{letter-spacing:1.439985px;}
.lsc{letter-spacing:1.631916px;}
.ls14{letter-spacing:1.632000px;}
.ls1c{letter-spacing:1.905600px;}
.ls11{letter-spacing:2.208000px;}
.lsd{letter-spacing:2.256000px;}
.ls1a{letter-spacing:2.395200px;}
.ls10{letter-spacing:2.688078px;}
.ls12{letter-spacing:5.524800px;}
.lsa{letter-spacing:6.249666px;}
.ls15{letter-spacing:6.969600px;}
.ls1b{letter-spacing:8.865587px;}
.ls17{letter-spacing:9.753600px;}
.lsf{letter-spacing:25.248000px;}
.ls8{letter-spacing:86.288411px;}
.ls6{letter-spacing:119.640590px;}
.ls2{letter-spacing:157.510189px;}
.ls4{letter-spacing:167.628589px;}
.ls5{letter-spacing:181.126217px;}
.ls7{letter-spacing:291.464398px;}
.ls3{letter-spacing:325.604488px;}
.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;}
}
.wsfe{word-spacing:-15.840000px;}
.ws1d{word-spacing:-15.000000px;}
.wsba{word-spacing:-13.332000px;}
.ws14b{word-spacing:-12.672000px;}
.ws3{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.120000px;}
.wsc8{word-spacing:-12.000000px;}
.ws144{word-spacing:-11.808000px;}
.ws6{word-spacing:-11.520000px;}
.ws6e{word-spacing:-11.340000px;}
.wsc7{word-spacing:-9.984000px;}
.ws2{word-spacing:-9.408000px;}
.ws101{word-spacing:-9.216000px;}
.ws4{word-spacing:-8.694000px;}
.wsc3{word-spacing:-8.400000px;}
.wscc{word-spacing:-6.000000px;}
.ws1e{word-spacing:-1.890000px;}
.wsac{word-spacing:-1.440000px;}
.wsa5{word-spacing:-1.380000px;}
.ws173{word-spacing:-1.344000px;}
.ws8a{word-spacing:-1.260000px;}
.wsb2{word-spacing:-1.140000px;}
.wse4{word-spacing:-1.080000px;}
.wsa4{word-spacing:-1.020000px;}
.wsaf{word-spacing:-0.960000px;}
.ws88{word-spacing:-0.900000px;}
.wsab{word-spacing:-0.840000px;}
.ws100{word-spacing:-0.780000px;}
.wsc5{word-spacing:-0.720000px;}
.wsc2{word-spacing:-0.660000px;}
.wse5{word-spacing:-0.600000px;}
.ws14d{word-spacing:-0.576000px;}
.ws92{word-spacing:-0.540000px;}
.ws86{word-spacing:-0.480000px;}
.ws172{word-spacing:-0.432000px;}
.ws74{word-spacing:-0.420000px;}
.ws121{word-spacing:-0.384000px;}
.ws26{word-spacing:-0.360000px;}
.ws11b{word-spacing:-0.336000px;}
.ws11{word-spacing:-0.300000px;}
.ws138{word-spacing:-0.288000px;}
.ws87{word-spacing:-0.240000px;}
.ws10a{word-spacing:-0.192000px;}
.wsef{word-spacing:-0.180000px;}
.ws9d{word-spacing:-0.120000px;}
.ws46{word-spacing:-0.060000px;}
.ws1{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.ws122{word-spacing:0.048000px;}
.wsee{word-spacing:0.060000px;}
.ws10f{word-spacing:0.096000px;}
.ws8f{word-spacing:0.120000px;}
.ws25{word-spacing:0.180000px;}
.ws133{word-spacing:0.192000px;}
.ws65{word-spacing:0.240000px;}
.ws174{word-spacing:0.288000px;}
.ws6b{word-spacing:0.300000px;}
.ws7c{word-spacing:0.360000px;}
.ws152{word-spacing:0.384000px;}
.ws3c{word-spacing:0.420000px;}
.ws16{word-spacing:0.480000px;}
.ws54{word-spacing:0.540000px;}
.ws113{word-spacing:0.576000px;}
.wsb9{word-spacing:0.600000px;}
.ws164{word-spacing:0.624000px;}
.ws7f{word-spacing:0.660000px;}
.ws142{word-spacing:0.672000px;}
.ws9f{word-spacing:0.720000px;}
.ws11d{word-spacing:0.768000px;}
.wsa3{word-spacing:0.780000px;}
.wsda{word-spacing:0.840000px;}
.ws73{word-spacing:0.900000px;}
.ws128{word-spacing:0.912000px;}
.ws76{word-spacing:0.960000px;}
.ws139{word-spacing:1.008000px;}
.wsa7{word-spacing:1.020000px;}
.ws11f{word-spacing:1.056000px;}
.wsbc{word-spacing:1.080000px;}
.ws103{word-spacing:1.104000px;}
.ws93{word-spacing:1.140000px;}
.ws160{word-spacing:1.152000px;}
.ws52{word-spacing:1.200000px;}
.ws134{word-spacing:1.248000px;}
.ws79{word-spacing:1.260000px;}
.ws132{word-spacing:1.296000px;}
.ws2c{word-spacing:1.320000px;}
.ws107{word-spacing:1.344000px;}
.ws1f{word-spacing:1.380000px;}
.ws8d{word-spacing:1.440000px;}
.ws16c{word-spacing:1.488000px;}
.ws59{word-spacing:1.500000px;}
.ws130{word-spacing:1.536000px;}
.wsf7{word-spacing:1.560000px;}
.ws109{word-spacing:1.584000px;}
.ws7b{word-spacing:1.620000px;}
.wse7{word-spacing:1.680000px;}
.ws15a{word-spacing:1.728000px;}
.ws7d{word-spacing:1.740000px;}
.ws175{word-spacing:1.776000px;}
.ws21{word-spacing:1.800000px;}
.ws124{word-spacing:1.824000px;}
.ws2a{word-spacing:1.860000px;}
.ws14e{word-spacing:1.872000px;}
.ws3f{word-spacing:1.920000px;}
.ws125{word-spacing:1.968000px;}
.ws84{word-spacing:1.980000px;}
.ws14f{word-spacing:2.016000px;}
.ws22{word-spacing:2.040000px;}
.ws4d{word-spacing:2.100000px;}
.ws120{word-spacing:2.112000px;}
.wsa0{word-spacing:2.160000px;}
.ws13c{word-spacing:2.208000px;}
.ws10{word-spacing:2.220000px;}
.wsa{word-spacing:2.280000px;}
.ws35{word-spacing:2.340000px;}
.ws15e{word-spacing:2.352000px;}
.ws3b{word-spacing:2.400000px;}
.ws166{word-spacing:2.448000px;}
.ws5d{word-spacing:2.460000px;}
.wsb0{word-spacing:2.520000px;}
.ws14a{word-spacing:2.544000px;}
.ws80{word-spacing:2.580000px;}
.ws11a{word-spacing:2.592000px;}
.ws2d{word-spacing:2.640000px;}
.wsbd{word-spacing:2.700000px;}
.ws77{word-spacing:2.760000px;}
.ws10c{word-spacing:2.784000px;}
.ws61{word-spacing:2.820000px;}
.ws11c{word-spacing:2.832000px;}
.ws49{word-spacing:2.880000px;}
.ws8b{word-spacing:2.940000px;}
.ws85{word-spacing:3.000000px;}
.ws16d{word-spacing:3.024000px;}
.ws60{word-spacing:3.060000px;}
.wse6{word-spacing:3.120000px;}
.ws3e{word-spacing:3.180000px;}
.ws108{word-spacing:3.216000px;}
.wsa8{word-spacing:3.240000px;}
.ws154{word-spacing:3.264000px;}
.ws17{word-spacing:3.300000px;}
.ws10d{word-spacing:3.312000px;}
.ws7e{word-spacing:3.360000px;}
.ws13d{word-spacing:3.408000px;}
.ws29{word-spacing:3.420000px;}
.ws105{word-spacing:3.456000px;}
.ws4e{word-spacing:3.480000px;}
.wsb6{word-spacing:3.540000px;}
.ws118{word-spacing:3.552000px;}
.ws4f{word-spacing:3.600000px;}
.ws116{word-spacing:3.648000px;}
.ws8c{word-spacing:3.660000px;}
.wsb8{word-spacing:3.720000px;}
.ws115{word-spacing:3.744000px;}
.wse{word-spacing:3.780000px;}
.ws6a{word-spacing:3.840000px;}
.ws30{word-spacing:3.900000px;}
.ws149{word-spacing:3.936000px;}
.ws58{word-spacing:3.960000px;}
.ws28{word-spacing:4.020000px;}
.ws104{word-spacing:4.032000px;}
.ws2f{word-spacing:4.080000px;}
.wsb1{word-spacing:4.140000px;}
.ws8e{word-spacing:4.200000px;}
.ws143{word-spacing:4.224000px;}
.ws15{word-spacing:4.260000px;}
.wsa9{word-spacing:4.320000px;}
.ws106{word-spacing:4.368000px;}
.ws48{word-spacing:4.380000px;}
.wsd1{word-spacing:4.440000px;}
.ws117{word-spacing:4.464000px;}
.ws5e{word-spacing:4.500000px;}
.ws110{word-spacing:4.512000px;}
.ws9e{word-spacing:4.560000px;}
.ws150{word-spacing:4.608000px;}
.wsb3{word-spacing:4.620000px;}
.ws39{word-spacing:4.680000px;}
.ws20{word-spacing:4.740000px;}
.ws14{word-spacing:4.800000px;}
.ws2e{word-spacing:4.860000px;}
.ws162{word-spacing:4.896000px;}
.ws5a{word-spacing:4.920000px;}
.ws151{word-spacing:4.944000px;}
.ws66{word-spacing:4.980000px;}
.wsf{word-spacing:5.040000px;}
.ws163{word-spacing:5.088000px;}
.ws5f{word-spacing:5.100000px;}
.ws102{word-spacing:5.136000px;}
.ws31{word-spacing:5.160000px;}
.ws41{word-spacing:5.220000px;}
.ws15d{word-spacing:5.232000px;}
.ws44{word-spacing:5.280000px;}
.ws148{word-spacing:5.328000px;}
.ws2b{word-spacing:5.340000px;}
.ws165{word-spacing:5.376000px;}
.ws91{word-spacing:5.400000px;}
.ws126{word-spacing:5.424000px;}
.wsb{word-spacing:5.460000px;}
.ws111{word-spacing:5.472000px;}
.ws71{word-spacing:5.520000px;}
.wsf0{word-spacing:5.580000px;}
.ws15c{word-spacing:5.616000px;}
.ws89{word-spacing:5.640000px;}
.ws27{word-spacing:5.700000px;}
.ws170{word-spacing:5.712000px;}
.ws9{word-spacing:5.760000px;}
.ws13e{word-spacing:5.808000px;}
.ws82{word-spacing:5.820000px;}
.ws6d{word-spacing:5.880000px;}
.ws12c{word-spacing:5.904000px;}
.wsd3{word-spacing:5.940000px;}
.wsc0{word-spacing:6.000000px;}
.ws53{word-spacing:6.060000px;}
.ws112{word-spacing:6.096000px;}
.ws12{word-spacing:6.120000px;}
.ws70{word-spacing:6.180000px;}
.ws16a{word-spacing:6.192000px;}
.ws9a{word-spacing:6.240000px;}
.ws137{word-spacing:6.288000px;}
.ws55{word-spacing:6.300000px;}
.wsd5{word-spacing:6.360000px;}
.ws13b{word-spacing:6.384000px;}
.ws99{word-spacing:6.420000px;}
.ws16b{word-spacing:6.432000px;}
.ws68{word-spacing:6.480000px;}
.ws10e{word-spacing:6.528000px;}
.ws13{word-spacing:6.540000px;}
.ws45{word-spacing:6.600000px;}
.ws69{word-spacing:6.660000px;}
.ws171{word-spacing:6.672000px;}
.ws9b{word-spacing:6.720000px;}
.ws96{word-spacing:6.780000px;}
.ws36{word-spacing:6.840000px;}
.ws57{word-spacing:6.900000px;}
.ws147{word-spacing:6.912000px;}
.wsad{word-spacing:6.960000px;}
.ws14c{word-spacing:7.008000px;}
.ws6f{word-spacing:7.020000px;}
.wsea{word-spacing:7.080000px;}
.wse1{word-spacing:7.140000px;}
.ws72{word-spacing:7.200000px;}
.ws114{word-spacing:7.248000px;}
.wsc1{word-spacing:7.260000px;}
.ws4c{word-spacing:7.320000px;}
.ws6c{word-spacing:7.380000px;}
.wsd0{word-spacing:7.440000px;}
.ws95{word-spacing:7.560000px;}
.wsb4{word-spacing:7.620000px;}
.ws47{word-spacing:7.680000px;}
.wse0{word-spacing:7.740000px;}
.ws5b{word-spacing:7.800000px;}
.ws11e{word-spacing:7.824000px;}
.ws3d{word-spacing:7.860000px;}
.wsc{word-spacing:7.920000px;}
.wsa1{word-spacing:7.980000px;}
.wsc6{word-spacing:8.040000px;}
.wsb5{word-spacing:8.100000px;}
.ws34{word-spacing:8.160000px;}
.ws13a{word-spacing:8.208000px;}
.wsa6{word-spacing:8.220000px;}
.ws161{word-spacing:8.256000px;}
.ws33{word-spacing:8.280000px;}
.ws3a{word-spacing:8.340000px;}
.ws50{word-spacing:8.400000px;}
.ws123{word-spacing:8.448000px;}
.wsca{word-spacing:8.460000px;}
.ws131{word-spacing:8.496000px;}
.wsd4{word-spacing:8.520000px;}
.ws155{word-spacing:8.544000px;}
.wsa2{word-spacing:8.580000px;}
.ws4b{word-spacing:8.640000px;}
.wsd7{word-spacing:8.700000px;}
.ws18{word-spacing:8.760000px;}
.ws15b{word-spacing:8.784000px;}
.ws7{word-spacing:8.820000px;}
.ws40{word-spacing:8.880000px;}
.ws24{word-spacing:8.940000px;}
.ws98{word-spacing:9.000000px;}
.ws5c{word-spacing:9.060000px;}
.ws37{word-spacing:9.120000px;}
.ws119{word-spacing:9.168000px;}
.ws75{word-spacing:9.180000px;}
.ws67{word-spacing:9.240000px;}
.wsed{word-spacing:9.300000px;}
.wscb{word-spacing:9.360000px;}
.ws62{word-spacing:9.420000px;}
.ws56{word-spacing:9.480000px;}
.wse9{word-spacing:9.540000px;}
.ws156{word-spacing:9.552000px;}
.ws136{word-spacing:9.600000px;}
.wsf4{word-spacing:9.660000px;}
.ws15f{word-spacing:9.696000px;}
.wsf1{word-spacing:9.720000px;}
.ws12a{word-spacing:9.744000px;}
.ws4a{word-spacing:9.780000px;}
.wsd8{word-spacing:9.840000px;}
.ws9c{word-spacing:9.900000px;}
.ws16e{word-spacing:9.936000px;}
.ws8{word-spacing:9.960000px;}
.wse2{word-spacing:10.020000px;}
.ws23{word-spacing:10.140000px;}
.ws32{word-spacing:10.200000px;}
.wse3{word-spacing:10.320000px;}
.wsbe{word-spacing:10.380000px;}
.wsf9{word-spacing:10.500000px;}
.ws78{word-spacing:10.620000px;}
.wsd9{word-spacing:10.680000px;}
.wsce{word-spacing:10.740000px;}
.wsdb{word-spacing:10.800000px;}
.ws153{word-spacing:10.848000px;}
.ws1a{word-spacing:10.860000px;}
.ws1c{word-spacing:10.920000px;}
.ws94{word-spacing:10.980000px;}
.wsf2{word-spacing:11.100000px;}
.wsfa{word-spacing:11.220000px;}
.wscf{word-spacing:11.280000px;}
.ws12d{word-spacing:11.328000px;}
.wsae{word-spacing:11.340000px;}
.ws81{word-spacing:11.460000px;}
.wsd2{word-spacing:11.520000px;}
.ws12e{word-spacing:11.568000px;}
.ws1b{word-spacing:11.580000px;}
.ws16f{word-spacing:11.616000px;}
.ws63{word-spacing:11.640000px;}
.ws12b{word-spacing:11.664000px;}
.ws7a{word-spacing:11.700000px;}
.wsfc{word-spacing:11.820000px;}
.wsf6{word-spacing:11.940000px;}
.ws83{word-spacing:12.060000px;}
.wsf8{word-spacing:12.120000px;}
.ws127{word-spacing:12.144000px;}
.ws90{word-spacing:12.240000px;}
.wsd6{word-spacing:12.360000px;}
.ws64{word-spacing:12.480000px;}
.ws140{word-spacing:12.624000px;}
.ws129{word-spacing:12.816000px;}
.wsaa{word-spacing:12.900000px;}
.wsb7{word-spacing:13.080000px;}
.wsbf{word-spacing:13.200000px;}
.wsec{word-spacing:13.320000px;}
.ws42{word-spacing:13.620000px;}
.ws12f{word-spacing:13.968000px;}
.wsfb{word-spacing:14.040000px;}
.wsfd{word-spacing:14.160000px;}
.ws51{word-spacing:14.640000px;}
.ws38{word-spacing:15.060000px;}
.wsdc{word-spacing:15.420000px;}
.ws145{word-spacing:15.456000px;}
.wsf5{word-spacing:15.540000px;}
.ws43{word-spacing:15.840000px;}
.wsbb{word-spacing:15.900000px;}
.ws146{word-spacing:16.080000px;}
.wsd{word-spacing:16.140000px;}
.ws168{word-spacing:16.320000px;}
.wsdd{word-spacing:16.500000px;}
.wsf3{word-spacing:16.620000px;}
.wsde{word-spacing:17.460000px;}
.wse8{word-spacing:18.180000px;}
.wsff{word-spacing:18.300000px;}
.ws10b{word-spacing:18.432000px;}
.ws97{word-spacing:18.540000px;}
.ws135{word-spacing:18.864000px;}
.wseb{word-spacing:19.140000px;}
.ws19{word-spacing:19.668000px;}
.ws158{word-spacing:20.400000px;}
.wsdf{word-spacing:20.580000px;}
.ws169{word-spacing:21.072000px;}
.ws157{word-spacing:21.984000px;}
.ws167{word-spacing:22.656000px;}
.ws141{word-spacing:25.248000px;}
.ws13f{word-spacing:27.936000px;}
.ws159{word-spacing:45.600000px;}
.ws176{word-spacing:73.056000px;}
.wsc9{word-spacing:187.248000px;}
.wsc4{word-spacing:219.696000px;}
.wscd{word-spacing:582.864000px;}
._59{margin-left:-15.600000px;}
._e{margin-left:-13.332000px;}
._10{margin-left:-11.340000px;}
._16{margin-left:-9.984614px;}
._50{margin-left:-8.268000px;}
._1{margin-left:-5.317800px;}
._5{margin-left:-3.880800px;}
._3{margin-left:-2.808000px;}
._0{margin-left:-1.632000px;}
._2{width:1.298400px;}
._8{width:2.307600px;}
._c{width:4.009200px;}
._9{width:5.106000px;}
._13{width:6.468000px;}
._a{width:7.686000px;}
._b{width:8.880000px;}
._6{width:9.997200px;}
._12{width:11.340000px;}
._19{width:12.708074px;}
._15{width:14.755200px;}
._58{width:16.552800px;}
._f{width:18.660000px;}
._d{width:19.668000px;}
._5a{width:22.320000px;}
._57{width:25.248000px;}
._11{width:30.000000px;}
._14{width:33.000000px;}
._43{width:37.632000px;}
._4{width:39.665409px;}
._1c{width:50.205600px;}
._5c{width:56.255991px;}
._5b{width:73.056000px;}
._56{width:74.112000px;}
._25{width:79.248000px;}
._23{width:82.223992px;}
._28{width:88.127992px;}
._48{width:100.752000px;}
._22{width:105.840000px;}
._47{width:115.080000px;}
._18{width:135.935994px;}
._2a{width:143.471992px;}
._20{width:173.567992px;}
._4a{width:186.808800px;}
._4e{width:189.496800px;}
._26{width:194.253592px;}
._27{width:198.765600px;}
._33{width:206.111992px;}
._2d{width:208.895992px;}
._1a{width:214.895994px;}
._45{width:226.776000px;}
._1b{width:229.079994px;}
._2f{width:258.626392px;}
._4f{width:277.728000px;}
._54{width:284.015987px;}
._30{width:314.512800px;}
._1f{width:319.583994px;}
._49{width:332.160000px;}
._1d{width:336.624000px;}
._1e{width:380.925594px;}
._40{width:393.264000px;}
._51{width:399.743987px;}
._17{width:409.576800px;}
._3b{width:461.709600px;}
._46{width:475.776000px;}
._4b{width:521.184000px;}
._52{width:534.383987px;}
._53{width:542.351987px;}
._4d{width:548.400000px;}
._42{width:554.496000px;}
._29{width:571.776000px;}
._38{width:611.757600px;}
._32{width:624.600000px;}
._36{width:641.088000px;}
._2b{width:680.664000px;}
._44{width:687.792000px;}
._31{width:710.371192px;}
._2e{width:711.501600px;}
._4c{width:749.136000px;}
._55{width:798.624000px;}
._34{width:839.184000px;}
._24{width:854.400000px;}
._2c{width:894.045600px;}
._21{width:928.464000px;}
._3c{width:932.207922px;}
._37{width:1034.733522px;}
._3a{width:1134.863922px;}
._41{width:1200.336000px;}
._35{width:1285.199922px;}
._39{width:1437.119922px;}
._7{width:1739.904000px;}
._3f{width:2070.767924px;}
._3d{width:2146.223924px;}
._3e{width:2212.751924px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:33.600000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:78.000000px;}
.fs6{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:35.925007px;}
.y4b{bottom:49.625399px;}
.y27{bottom:49.625999px;}
.y24{bottom:50.758198px;}
.y5{bottom:66.525004px;}
.y148{bottom:89.999966px;}
.y145{bottom:89.999983px;}
.y140{bottom:89.999999px;}
.y48{bottom:90.000000px;}
.y79{bottom:90.797516px;}
.y81{bottom:90.797550px;}
.y19d{bottom:90.797562px;}
.y128{bottom:90.937042px;}
.y21b{bottom:91.139516px;}
.yc0{bottom:91.202516px;}
.y104{bottom:91.207042px;}
.y4{bottom:97.125005px;}
.y188{bottom:99.102450px;}
.y1b6{bottom:100.236919px;}
.yf2{bottom:101.732516px;}
.y16c{bottom:103.547516px;}
.ya9{bottom:104.297516px;}
.y176{bottom:104.297550px;}
.y21a{bottom:105.383516px;}
.y1e2{bottom:105.694052px;}
.y78{bottom:108.797516px;}
.y80{bottom:108.797550px;}
.y19c{bottom:108.797562px;}
.y127{bottom:108.937042px;}
.ybf{bottom:109.202516px;}
.y103{bottom:109.207042px;}
.y1b5{bottom:114.480919px;}
.y22b{bottom:116.555518px;}
.y187{bottom:117.330450px;}
.y219{bottom:119.627516px;}
.yf1{bottom:119.732516px;}
.y1e1{bottom:119.938052px;}
.y16b{bottom:121.547516px;}
.ya8{bottom:122.297516px;}
.y175{bottom:122.297550px;}
.y77{bottom:126.797516px;}
.y7f{bottom:126.797550px;}
.y19b{bottom:126.797562px;}
.y126{bottom:126.937042px;}
.ybe{bottom:127.202516px;}
.y102{bottom:127.207042px;}
.y1b4{bottom:128.724919px;}
.y22a{bottom:130.799518px;}
.y218{bottom:133.871516px;}
.y1e0{bottom:134.182052px;}
.y186{bottom:135.474450px;}
.yf0{bottom:137.732516px;}
.y23{bottom:139.264499px;}
.y16a{bottom:139.547516px;}
.y47{bottom:139.817104px;}
.ya7{bottom:140.297516px;}
.y174{bottom:140.297550px;}
.y1b3{bottom:142.968919px;}
.y1b8{bottom:142.992919px;}
.y76{bottom:144.797516px;}
.y7e{bottom:144.797550px;}
.y19a{bottom:144.797562px;}
.y125{bottom:144.937042px;}
.y229{bottom:145.043518px;}
.ybd{bottom:145.202516px;}
.y101{bottom:145.207042px;}
.y217{bottom:148.115516px;}
.y1df{bottom:148.426052px;}
.y185{bottom:153.618450px;}
.yef{bottom:155.732516px;}
.y1b2{bottom:157.212919px;}
.y1b7{bottom:157.236919px;}
.y169{bottom:157.547516px;}
.y46{bottom:157.817104px;}
.ya6{bottom:158.297516px;}
.y228{bottom:159.287518px;}
.y216{bottom:162.359516px;}
.y1de{bottom:162.670052px;}
.y75{bottom:162.797516px;}
.y199{bottom:162.797562px;}
.y124{bottom:162.937042px;}
.ybc{bottom:163.202516px;}
.y100{bottom:163.207042px;}
.y184{bottom:167.862450px;}
.y227{bottom:173.531518px;}
.yee{bottom:173.732516px;}
.y1b0{bottom:175.440919px;}
.y168{bottom:175.547516px;}
.y45{bottom:175.817104px;}
.ya5{bottom:176.297516px;}
.y173{bottom:176.297550px;}
.y215{bottom:176.603516px;}
.y1dd{bottom:176.914052px;}
.y74{bottom:180.797516px;}
.y7d{bottom:180.797550px;}
.y198{bottom:180.797562px;}
.y123{bottom:180.937042px;}
.ybb{bottom:181.202516px;}
.yff{bottom:181.207042px;}
.y183{bottom:186.006450px;}
.y226{bottom:187.775518px;}
.y1af{bottom:189.684919px;}
.y214{bottom:190.847516px;}
.y1dc{bottom:191.158052px;}
.yed{bottom:191.732516px;}
.y167{bottom:193.547516px;}
.ya4{bottom:194.297516px;}
.y1a{bottom:196.933500px;}
.y73{bottom:198.797516px;}
.y197{bottom:198.797562px;}
.y122{bottom:198.937042px;}
.yba{bottom:199.202516px;}
.yfe{bottom:199.207042px;}
.y225{bottom:202.019518px;}
.y1ae{bottom:203.928919px;}
.y182{bottom:204.150450px;}
.y213{bottom:205.091516px;}
.y1db{bottom:205.402052px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.yec{bottom:209.732516px;}
.y166{bottom:211.547516px;}
.y44{bottom:211.817093px;}
.ya3{bottom:212.297516px;}
.y72{bottom:216.797516px;}
.y196{bottom:216.797562px;}
.yb9{bottom:217.202516px;}
.yfd{bottom:217.207042px;}
.y1ad{bottom:218.172919px;}
.y212{bottom:219.335516px;}
.y1da{bottom:219.646052px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y181{bottom:222.294450px;}
.yeb{bottom:227.732516px;}
.y165{bottom:229.547516px;}
.ya2{bottom:230.297516px;}
.y149{bottom:230.639966px;}
.y146{bottom:230.639983px;}
.y141{bottom:230.640000px;}
.y224{bottom:231.275518px;}
.y1ac{bottom:232.416919px;}
.y211{bottom:233.579516px;}
.y1d9{bottom:233.890052px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y71{bottom:234.797516px;}
.y195{bottom:234.797562px;}
.y121{bottom:234.937042px;}
.yb8{bottom:235.202516px;}
.yfc{bottom:235.207042px;}
.y180{bottom:240.438450px;}
.y223{bottom:245.519518px;}
.yea{bottom:245.732516px;}
.y1ab{bottom:246.660919px;}
.y1b1{bottom:246.684917px;}
.y164{bottom:247.547516px;}
.y210{bottom:247.823516px;}
.y1d8{bottom:248.134052px;}
.ya1{bottom:248.297516px;}
.y70{bottom:252.797516px;}
.y194{bottom:252.797562px;}
.yb7{bottom:253.202516px;}
.yfb{bottom:253.207042px;}
.y17f{bottom:258.582450px;}
.y222{bottom:259.763518px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y20f{bottom:262.067516px;}
.y1d7{bottom:262.378052px;}
.ye9{bottom:263.732516px;}
.y1a9{bottom:264.804919px;}
.y163{bottom:265.547516px;}
.y43{bottom:265.817093px;}
.ya0{bottom:266.297516px;}
.y6f{bottom:270.797516px;}
.y193{bottom:270.797562px;}
.yb6{bottom:271.202516px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y221{bottom:274.007518px;}
.y20e{bottom:276.311516px;}
.y1d6{bottom:276.622052px;}
.y17e{bottom:276.726450px;}
.y1a8{bottom:279.048919px;}
.ye8{bottom:281.732516px;}
.y162{bottom:283.547516px;}
.y42{bottom:283.817093px;}
.y9f{bottom:284.297516px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y220{bottom:288.251518px;}
.y6e{bottom:288.797516px;}
.y192{bottom:288.797562px;}
.y120{bottom:288.937042px;}
.yb5{bottom:289.202516px;}
.yfa{bottom:289.207042px;}
.y20d{bottom:290.555516px;}
.y1d5{bottom:290.866052px;}
.y1a7{bottom:293.292919px;}
.y17a{bottom:296.315539px;}
.ye7{bottom:299.732516px;}
.y161{bottom:301.547516px;}
.y9e{bottom:302.297516px;}
.y17d{bottom:304.734450px;}
.y20c{bottom:304.799516px;}
.y1d4{bottom:305.110052px;}
.y6d{bottom:306.797516px;}
.y191{bottom:306.797562px;}
.y11f{bottom:306.937042px;}
.yb4{bottom:307.202516px;}
.y1a6{bottom:307.536919px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y179{bottom:310.559539px;}
.y21f{bottom:317.507518px;}
.y17c{bottom:318.978450px;}
.y20b{bottom:319.043516px;}
.y1d3{bottom:319.354052px;}
.y160{bottom:319.547516px;}
.y9d{bottom:320.297516px;}
.y41{bottom:320.567093px;}
.y1a5{bottom:321.780919px;}
.y1aa{bottom:321.804919px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y6c{bottom:324.797516px;}
.y190{bottom:324.797562px;}
.y178{bottom:324.803539px;}
.y11e{bottom:324.937042px;}
.yb3{bottom:325.202516px;}
.y21e{bottom:331.751518px;}
.y17b{bottom:333.222450px;}
.y20a{bottom:333.287516px;}
.y1d2{bottom:333.598052px;}
.ye6{bottom:335.732516px;}
.y15f{bottom:337.547516px;}
.y9c{bottom:338.297516px;}
.y40{bottom:338.567093px;}
.y177{bottom:339.047539px;}
.y1a3{bottom:339.924917px;}
.y6b{bottom:342.797516px;}
.y18f{bottom:342.797562px;}
.yf9{bottom:342.937042px;}
.yb2{bottom:343.202516px;}
.y209{bottom:347.531516px;}
.y1d1{bottom:347.842052px;}
.y11{bottom:348.133500px;}
.y1a2{bottom:354.168917px;}
.y15e{bottom:355.547516px;}
.y9b{bottom:356.297516px;}
.y3f{bottom:356.567093px;}
.y6a{bottom:360.797516px;}
.y18e{bottom:360.797562px;}
.yf8{bottom:360.937042px;}
.yb1{bottom:361.202516px;}
.y208{bottom:361.775516px;}
.y1d0{bottom:362.086052px;}
.y1a1{bottom:368.412917px;}
.y15d{bottom:373.547516px;}
.y9a{bottom:374.297516px;}
.y3e{bottom:374.567093px;}
.y207{bottom:376.019516px;}
.y1cf{bottom:376.330052px;}
.y69{bottom:378.797516px;}
.y18d{bottom:378.797562px;}
.yf7{bottom:378.937042px;}
.yb0{bottom:379.202516px;}
.y1a0{bottom:382.656917px;}
.y1a4{bottom:382.680917px;}
.ye5{bottom:383.702516px;}
.y10{bottom:386.785499px;}
.y206{bottom:390.263516px;}
.y1ce{bottom:390.574052px;}
.y15c{bottom:391.547516px;}
.y99{bottom:392.297516px;}
.y3d{bottom:392.567093px;}
.y68{bottom:396.797516px;}
.y18c{bottom:396.797562px;}
.yf6{bottom:396.937042px;}
.yaf{bottom:397.202516px;}
.ye4{bottom:401.702516px;}
.y21d{bottom:404.495516px;}
.y205{bottom:404.507516px;}
.y1cd{bottom:404.818052px;}
.yf{bottom:408.044999px;}
.y15b{bottom:409.547516px;}
.y98{bottom:410.297516px;}
.y3c{bottom:410.567093px;}
.y19f{bottom:410.664917px;}
.y67{bottom:414.797516px;}
.y18b{bottom:414.797562px;}
.yf5{bottom:414.937042px;}
.yae{bottom:415.202516px;}
.y21c{bottom:418.739516px;}
.y204{bottom:418.751516px;}
.y1cc{bottom:419.062052px;}
.ye3{bottom:419.702516px;}
.y15a{bottom:427.547516px;}
.y97{bottom:428.297516px;}
.y3b{bottom:428.567093px;}
.y19e{bottom:432.047562px;}
.y66{bottom:432.797516px;}
.y18a{bottom:432.797562px;}
.yf4{bottom:432.937042px;}
.y203{bottom:432.995516px;}
.yad{bottom:433.202516px;}
.y1cb{bottom:433.306052px;}
.ye2{bottom:437.702516px;}
.y159{bottom:445.547516px;}
.y96{bottom:446.297516px;}
.y3a{bottom:446.567093px;}
.y202{bottom:447.239516px;}
.y1ca{bottom:447.550052px;}
.y65{bottom:450.797516px;}
.yf3{bottom:450.937042px;}
.yac{bottom:451.202516px;}
.ye1{bottom:455.702516px;}
.y201{bottom:461.483516px;}
.y1c9{bottom:461.794052px;}
.y158{bottom:463.547516px;}
.y95{bottom:464.297516px;}
.y39{bottom:464.567093px;}
.y64{bottom:468.797516px;}
.y189{bottom:468.797562px;}
.yab{bottom:469.202516px;}
.ye0{bottom:473.702516px;}
.y200{bottom:475.727516px;}
.y157{bottom:481.547516px;}
.y94{bottom:482.297516px;}
.y38{bottom:482.567093px;}
.ye{bottom:484.864502px;}
.y63{bottom:486.797516px;}
.ycb{bottom:487.202516px;}
.y1ff{bottom:489.971516px;}
.ydf{bottom:491.702516px;}
.y1c8{bottom:494.344070px;}
.y156{bottom:499.547516px;}
.y93{bottom:500.297516px;}
.y37{bottom:500.567093px;}
.yd{bottom:502.864502px;}
.y1fe{bottom:504.215516px;}
.y62{bottom:504.797516px;}
.yaa{bottom:505.202516px;}
.y10f{bottom:505.272308px;}
.y13f{bottom:506.280917px;}
.yde{bottom:509.702516px;}
.y155{bottom:517.547516px;}
.y92{bottom:518.297516px;}
.y1fd{bottom:518.459516px;}
.y36{bottom:518.567093px;}
.yc{bottom:520.864502px;}
.y61{bottom:522.797516px;}
.yca{bottom:523.202516px;}
.y10e{bottom:523.774200px;}
.y13e{bottom:524.508917px;}
.ydd{bottom:527.702516px;}
.y1fc{bottom:532.703516px;}
.y154{bottom:535.547516px;}
.y91{bottom:536.297516px;}
.y35{bottom:536.567093px;}
.yb{bottom:538.864499px;}
.y60{bottom:540.797516px;}
.yc9{bottom:541.202516px;}
.y10d{bottom:542.276230px;}
.y13d{bottom:542.652917px;}
.ydc{bottom:545.702516px;}
.y1fb{bottom:546.947516px;}
.y14a{bottom:551.051966px;}
.y147{bottom:551.051983px;}
.y142{bottom:551.052000px;}
.y153{bottom:553.547516px;}
.y90{bottom:554.297516px;}
.y34{bottom:554.567093px;}
.ya{bottom:556.864499px;}
.y5f{bottom:558.797516px;}
.yc8{bottom:559.202516px;}
.y143{bottom:560.052000px;}
.y10c{bottom:560.778168px;}
.y13c{bottom:560.796917px;}
.y1fa{bottom:561.191516px;}
.ydb{bottom:563.702516px;}
.y1c7{bottom:568.637682px;}
.y152{bottom:571.547516px;}
.y8f{bottom:572.297516px;}
.y33{bottom:572.567093px;}
.y1f9{bottom:575.435516px;}
.y5e{bottom:576.797516px;}
.yc7{bottom:577.202516px;}
.y13b{bottom:578.940917px;}
.y10b{bottom:579.280197px;}
.yda{bottom:581.702516px;}
.y1c6{bottom:582.881682px;}
.y151{bottom:589.547516px;}
.y1f8{bottom:589.679516px;}
.y8e{bottom:590.297516px;}
.y32{bottom:590.567093px;}
.y5d{bottom:594.797516px;}
.yc6{bottom:595.202516px;}
.y13a{bottom:597.084917px;}
.y1c5{bottom:597.125682px;}
.y10a{bottom:597.782089px;}
.yd9{bottom:599.702516px;}
.y1f7{bottom:603.923516px;}
.y150{bottom:607.547516px;}
.y8d{bottom:608.297516px;}
.y31{bottom:608.567093px;}
.y1c4{bottom:611.369682px;}
.y5c{bottom:612.797516px;}
.yc5{bottom:613.202516px;}
.y139{bottom:615.228917px;}
.y109{bottom:616.283981px;}
.yd8{bottom:617.702516px;}
.y1f6{bottom:618.167516px;}
.y14f{bottom:625.547516px;}
.y1c3{bottom:625.613682px;}
.y8c{bottom:626.297516px;}
.y30{bottom:626.567093px;}
.y5b{bottom:630.797516px;}
.yc4{bottom:631.202516px;}
.y1f5{bottom:632.411516px;}
.y138{bottom:633.372917px;}
.y108{bottom:634.786057px;}
.yd7{bottom:635.702516px;}
.y1c2{bottom:639.857682px;}
.y14e{bottom:643.547516px;}
.y236{bottom:644.189533px;}
.y8b{bottom:644.297516px;}
.y2f{bottom:644.567093px;}
.y9{bottom:645.510000px;}
.y1f4{bottom:646.655516px;}
.y5a{bottom:648.797516px;}
.yc3{bottom:649.202516px;}
.y137{bottom:651.516917px;}
.y107{bottom:653.287949px;}
.yd6{bottom:653.702516px;}
.y1c1{bottom:654.101682px;}
.y1f3{bottom:660.899516px;}
.y14d{bottom:661.547516px;}
.y8a{bottom:662.297516px;}
.y2e{bottom:662.567093px;}
.y235{bottom:663.233688px;}
.y8{bottom:666.771000px;}
.y59{bottom:666.797516px;}
.y1c0{bottom:668.345682px;}
.y136{bottom:669.660917px;}
.yd5{bottom:671.702516px;}
.y106{bottom:671.789978px;}
.y1f2{bottom:675.143516px;}
.y14c{bottom:679.547516px;}
.y89{bottom:680.297516px;}
.y2d{bottom:680.567093px;}
.y1bf{bottom:682.589682px;}
.y58{bottom:684.797516px;}
.y234{bottom:685.030930px;}
.yc2{bottom:685.202516px;}
.y135{bottom:687.804917px;}
.y1f1{bottom:689.387516px;}
.yd4{bottom:689.702516px;}
.y11d{bottom:691.603785px;}
.y172{bottom:697.547516px;}
.y88{bottom:698.297516px;}
.y233{bottom:702.034061px;}
.y57{bottom:702.797516px;}
.yc1{bottom:703.202516px;}
.y1f0{bottom:703.631516px;}
.y11c{bottom:705.847785px;}
.y133{bottom:705.960917px;}
.yd3{bottom:707.702516px;}
.y14b{bottom:715.547516px;}
.y87{bottom:716.297516px;}
.y1ef{bottom:717.875516px;}
.y1be{bottom:718.577682px;}
.y11b{bottom:720.091785px;}
.y132{bottom:720.204917px;}
.y56{bottom:720.797516px;}
.y232{bottom:721.078033px;}
.y7{bottom:726.298500px;}
.y2c{bottom:729.059696px;}
.y1ee{bottom:732.119516px;}
.y171{bottom:733.547516px;}
.y86{bottom:734.297516px;}
.y11a{bottom:734.335785px;}
.y131{bottom:734.448917px;}
.y134{bottom:734.460917px;}
.y55{bottom:738.797516px;}
.y2b{bottom:743.303696px;}
.yd2{bottom:743.702516px;}
.y231{bottom:744.956736px;}
.y1ed{bottom:746.363516px;}
.y1bd{bottom:747.077545px;}
.y170{bottom:751.547516px;}
.y85{bottom:752.297516px;}
.y119{bottom:752.572840px;}
.y130{bottom:752.592917px;}
.y3{bottom:752.599495px;}
.y54{bottom:756.797516px;}
.y230{bottom:759.200736px;}
.y1ec{bottom:760.607516px;}
.y144{bottom:765.660000px;}
.y16f{bottom:769.547516px;}
.y84{bottom:770.297516px;}
.y116{bottom:770.728840px;}
.y12f{bottom:770.736917px;}
.y53{bottom:774.797516px;}
.y1eb{bottom:774.851516px;}
.y1bc{bottom:779.333516px;}
.y22f{bottom:780.992736px;}
.y2a{bottom:781.152191px;}
.y115{bottom:784.972840px;}
.y118{bottom:784.984840px;}
.y16e{bottom:787.547516px;}
.y12e{bottom:788.880917px;}
.y1ea{bottom:789.095516px;}
.yd1{bottom:791.672516px;}
.y52{bottom:792.797516px;}
.y1bb{bottom:793.577516px;}
.y22e{bottom:795.236736px;}
.y114{bottom:799.216840px;}
.y117{bottom:799.228840px;}
.y1e9{bottom:803.339516px;}
.y83{bottom:806.297516px;}
.y12d{bottom:807.024917px;}
.yd0{bottom:809.672516px;}
.y51{bottom:810.797516px;}
.y22d{bottom:817.028736px;}
.y113{bottom:817.360840px;}
.y1e8{bottom:817.583516px;}
.y1ba{bottom:822.053516px;}
.y16d{bottom:823.547516px;}
.y29{bottom:823.895529px;}
.y82{bottom:824.297516px;}
.y12c{bottom:825.168917px;}
.ycf{bottom:827.672516px;}
.y50{bottom:828.797516px;}
.y22c{bottom:831.272736px;}
.y1e7{bottom:831.827516px;}
.y112{bottom:835.510803px;}
.y1b9{bottom:836.297516px;}
.yce{bottom:845.672516px;}
.y1e6{bottom:846.071516px;}
.y28{bottom:846.398529px;}
.y4f{bottom:846.797516px;}
.y12b{bottom:853.176917px;}
.y111{bottom:853.656734px;}
.y1e5{bottom:860.315516px;}
.ycd{bottom:863.672516px;}
.y4e{bottom:864.797516px;}
.y12a{bottom:867.420917px;}
.y1e4{bottom:874.559516px;}
.y2{bottom:879.369000px;}
.y110{bottom:881.664734px;}
.y129{bottom:881.664917px;}
.y4d{bottom:882.797516px;}
.y1e3{bottom:888.803516px;}
.ycc{bottom:899.672516px;}
.y4c{bottom:900.797516px;}
.y105{bottom:903.047516px;}
.y26{bottom:925.867084px;}
.y7a{bottom:939.670349px;}
.y7c{bottom:940.110892px;}
.y4a{bottom:940.111075px;}
.y25{bottom:940.111084px;}
.y7b{bottom:940.626892px;}
.y49{bottom:940.627075px;}
.y1{bottom:966.726000px;}
.h17{height:29.299200px;}
.h7{height:32.130000px;}
.ha{height:33.840000px;}
.h13{height:41.856000px;}
.hb{height:42.048000px;}
.h16{height:42.528000px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h1b{height:48.427273px;}
.h1a{height:48.451017px;}
.h1d{height:48.451273px;}
.h19{height:48.499273px;}
.h18{height:48.516137px;}
.h1e{height:49.104000px;}
.h10{height:52.320000px;}
.h11{height:53.160000px;}
.h15{height:53.640000px;}
.hc{height:54.862258px;}
.h2{height:55.080000px;}
.hf{height:59.340000px;}
.h14{height:61.380000px;}
.he{height:64.866000px;}
.h12{height:65.274000px;}
.hd{height:69.108000px;}
.h5{height:78.030000px;}
.h1c{height:98.832000px;}
.h4{height:119.055004px;}
.h9{height:999.000000px;}
.h8{height:999.213000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w3{width:659.055000px;}
.w4{width:659.250000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:76.535402px;}
.x8{left:77.598450px;}
.x9{left:78.746400px;}
.x14{left:81.047420px;}
.x16{left:85.535402px;}
.xa{left:93.545402px;}
.x5c{left:97.799400px;}
.x1{left:102.045000px;}
.xc{left:103.295402px;}
.x2{left:106.297500px;}
.x5b{left:107.303409px;}
.x17{left:134.926200px;}
.x34{left:149.170200px;}
.x18{left:153.070200px;}
.x2b{left:157.210649px;}
.x35{left:163.414200px;}
.x15{left:166.307487px;}
.x19{left:171.214200px;}
.x36{left:177.658200px;}
.x2c{left:180.454649px;}
.x1a{left:189.358200px;}
.x37{left:195.802200px;}
.x4{left:203.484001px;}
.x1b{left:207.502200px;}
.x50{left:209.086649px;}
.xd{left:210.769341px;}
.x3b{left:213.922200px;}
.xe{left:219.755547px;}
.x38{left:224.290200px;}
.x1c{left:225.646200px;}
.x2d{left:226.942649px;}
.x52{left:231.106651px;}
.x39{left:238.534200px;}
.x1d{left:243.790200px;}
.x2e{left:250.186649px;}
.x3a{left:252.778200px;}
.x1e{left:261.934200px;}
.x51{left:266.062649px;}
.x3c{left:270.922200px;}
.x2f{left:273.430649px;}
.x1f{left:280.090200px;}
.x3d{left:285.166200px;}
.x30{left:296.674649px;}
.x20{left:298.234200px;}
.x3e{left:299.410200px;}
.x3f{left:313.654200px;}
.xf{left:315.203547px;}
.x21{left:316.378200px;}
.x10{left:324.203547px;}
.x40{left:327.898200px;}
.x53{left:330.922651px;}
.x31{left:332.962649px;}
.x22{left:334.534200px;}
.x59{left:337.475402px;}
.x41{left:342.142200px;}
.x54{left:345.166651px;}
.x5a{left:346.475402px;}
.x32{left:351.106649px;}
.x23{left:352.678200px;}
.x42{left:356.386200px;}
.x55{left:359.410651px;}
.x33{left:369.334649px;}
.x24{left:370.822200px;}
.x43{left:374.530200px;}
.x25{left:388.966200px;}
.x44{left:403.018200px;}
.x26{left:407.110200px;}
.x45{left:417.262200px;}
.x27{left:425.254200px;}
.x46{left:431.506200px;}
.x56{left:433.122894px;}
.x57{left:437.622894px;}
.x28{left:443.398200px;}
.x47{left:445.750200px;}
.x58{left:449.622894px;}
.x3{left:454.959000px;}
.x11{left:461.675547px;}
.x48{left:463.906200px;}
.x12{left:470.695221px;}
.x49{left:478.150200px;}
.x29{left:479.686200px;}
.x4c{left:482.026200px;}
.x5{left:485.858414px;}
.x4a{left:492.394200px;}
.x2a{left:497.830200px;}
.x4d{left:500.170200px;}
.x13{left:505.499400px;}
.x4b{left:506.638200px;}
.x4e{left:518.314200px;}
.x7{left:521.631592px;}
.x4f{left:532.558200px;}
.xb{left:559.720184px;}
@media print{
.v2{vertical-align:-17.066569pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.081721pt;}
.v1{vertical-align:21.333333pt;}
.v4{vertical-align:50.645333pt;}
.ls9{letter-spacing:-0.746667pt;}
.ls16{letter-spacing:-0.170667pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.085333pt;}
.ls19{letter-spacing:0.298667pt;}
.lse{letter-spacing:0.430933pt;}
.ls13{letter-spacing:0.597333pt;}
.ls1{letter-spacing:0.746667pt;}
.ls18{letter-spacing:1.028267pt;}
.ls1d{letter-spacing:1.279987pt;}
.lsc{letter-spacing:1.450592pt;}
.ls14{letter-spacing:1.450667pt;}
.ls1c{letter-spacing:1.693867pt;}
.ls11{letter-spacing:1.962667pt;}
.lsd{letter-spacing:2.005333pt;}
.ls1a{letter-spacing:2.129067pt;}
.ls10{letter-spacing:2.389402pt;}
.ls12{letter-spacing:4.910933pt;}
.lsa{letter-spacing:5.555259pt;}
.ls15{letter-spacing:6.195200pt;}
.ls1b{letter-spacing:7.880522pt;}
.ls17{letter-spacing:8.669867pt;}
.lsf{letter-spacing:22.442667pt;}
.ls8{letter-spacing:76.700810pt;}
.ls6{letter-spacing:106.347192pt;}
.ls2{letter-spacing:140.009057pt;}
.ls4{letter-spacing:149.003190pt;}
.ls5{letter-spacing:161.001082pt;}
.ls7{letter-spacing:259.079465pt;}
.ls3{letter-spacing:289.426212pt;}
.wsfe{word-spacing:-14.080000pt;}
.ws1d{word-spacing:-13.333333pt;}
.wsba{word-spacing:-11.850667pt;}
.ws14b{word-spacing:-11.264000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.773333pt;}
.wsc8{word-spacing:-10.666667pt;}
.ws144{word-spacing:-10.496000pt;}
.ws6{word-spacing:-10.240000pt;}
.ws6e{word-spacing:-10.080000pt;}
.wsc7{word-spacing:-8.874667pt;}
.ws2{word-spacing:-8.362667pt;}
.ws101{word-spacing:-8.192000pt;}
.ws4{word-spacing:-7.728000pt;}
.wsc3{word-spacing:-7.466667pt;}
.wscc{word-spacing:-5.333333pt;}
.ws1e{word-spacing:-1.680000pt;}
.wsac{word-spacing:-1.280000pt;}
.wsa5{word-spacing:-1.226667pt;}
.ws173{word-spacing:-1.194667pt;}
.ws8a{word-spacing:-1.120000pt;}
.wsb2{word-spacing:-1.013333pt;}
.wse4{word-spacing:-0.960000pt;}
.wsa4{word-spacing:-0.906667pt;}
.wsaf{word-spacing:-0.853333pt;}
.ws88{word-spacing:-0.800000pt;}
.wsab{word-spacing:-0.746667pt;}
.ws100{word-spacing:-0.693333pt;}
.wsc5{word-spacing:-0.640000pt;}
.wsc2{word-spacing:-0.586667pt;}
.wse5{word-spacing:-0.533333pt;}
.ws14d{word-spacing:-0.512000pt;}
.ws92{word-spacing:-0.480000pt;}
.ws86{word-spacing:-0.426667pt;}
.ws172{word-spacing:-0.384000pt;}
.ws74{word-spacing:-0.373333pt;}
.ws121{word-spacing:-0.341333pt;}
.ws26{word-spacing:-0.320000pt;}
.ws11b{word-spacing:-0.298667pt;}
.ws11{word-spacing:-0.266667pt;}
.ws138{word-spacing:-0.256000pt;}
.ws87{word-spacing:-0.213333pt;}
.ws10a{word-spacing:-0.170667pt;}
.wsef{word-spacing:-0.160000pt;}
.ws9d{word-spacing:-0.106667pt;}
.ws46{word-spacing:-0.053333pt;}
.ws1{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.ws122{word-spacing:0.042667pt;}
.wsee{word-spacing:0.053333pt;}
.ws10f{word-spacing:0.085333pt;}
.ws8f{word-spacing:0.106667pt;}
.ws25{word-spacing:0.160000pt;}
.ws133{word-spacing:0.170667pt;}
.ws65{word-spacing:0.213333pt;}
.ws174{word-spacing:0.256000pt;}
.ws6b{word-spacing:0.266667pt;}
.ws7c{word-spacing:0.320000pt;}
.ws152{word-spacing:0.341333pt;}
.ws3c{word-spacing:0.373333pt;}
.ws16{word-spacing:0.426667pt;}
.ws54{word-spacing:0.480000pt;}
.ws113{word-spacing:0.512000pt;}
.wsb9{word-spacing:0.533333pt;}
.ws164{word-spacing:0.554667pt;}
.ws7f{word-spacing:0.586667pt;}
.ws142{word-spacing:0.597333pt;}
.ws9f{word-spacing:0.640000pt;}
.ws11d{word-spacing:0.682667pt;}
.wsa3{word-spacing:0.693333pt;}
.wsda{word-spacing:0.746667pt;}
.ws73{word-spacing:0.800000pt;}
.ws128{word-spacing:0.810667pt;}
.ws76{word-spacing:0.853333pt;}
.ws139{word-spacing:0.896000pt;}
.wsa7{word-spacing:0.906667pt;}
.ws11f{word-spacing:0.938667pt;}
.wsbc{word-spacing:0.960000pt;}
.ws103{word-spacing:0.981333pt;}
.ws93{word-spacing:1.013333pt;}
.ws160{word-spacing:1.024000pt;}
.ws52{word-spacing:1.066667pt;}
.ws134{word-spacing:1.109333pt;}
.ws79{word-spacing:1.120000pt;}
.ws132{word-spacing:1.152000pt;}
.ws2c{word-spacing:1.173333pt;}
.ws107{word-spacing:1.194667pt;}
.ws1f{word-spacing:1.226667pt;}
.ws8d{word-spacing:1.280000pt;}
.ws16c{word-spacing:1.322667pt;}
.ws59{word-spacing:1.333333pt;}
.ws130{word-spacing:1.365333pt;}
.wsf7{word-spacing:1.386667pt;}
.ws109{word-spacing:1.408000pt;}
.ws7b{word-spacing:1.440000pt;}
.wse7{word-spacing:1.493333pt;}
.ws15a{word-spacing:1.536000pt;}
.ws7d{word-spacing:1.546667pt;}
.ws175{word-spacing:1.578667pt;}
.ws21{word-spacing:1.600000pt;}
.ws124{word-spacing:1.621333pt;}
.ws2a{word-spacing:1.653333pt;}
.ws14e{word-spacing:1.664000pt;}
.ws3f{word-spacing:1.706667pt;}
.ws125{word-spacing:1.749333pt;}
.ws84{word-spacing:1.760000pt;}
.ws14f{word-spacing:1.792000pt;}
.ws22{word-spacing:1.813333pt;}
.ws4d{word-spacing:1.866667pt;}
.ws120{word-spacing:1.877333pt;}
.wsa0{word-spacing:1.920000pt;}
.ws13c{word-spacing:1.962667pt;}
.ws10{word-spacing:1.973333pt;}
.wsa{word-spacing:2.026667pt;}
.ws35{word-spacing:2.080000pt;}
.ws15e{word-spacing:2.090667pt;}
.ws3b{word-spacing:2.133333pt;}
.ws166{word-spacing:2.176000pt;}
.ws5d{word-spacing:2.186667pt;}
.wsb0{word-spacing:2.240000pt;}
.ws14a{word-spacing:2.261333pt;}
.ws80{word-spacing:2.293333pt;}
.ws11a{word-spacing:2.304000pt;}
.ws2d{word-spacing:2.346667pt;}
.wsbd{word-spacing:2.400000pt;}
.ws77{word-spacing:2.453333pt;}
.ws10c{word-spacing:2.474667pt;}
.ws61{word-spacing:2.506667pt;}
.ws11c{word-spacing:2.517333pt;}
.ws49{word-spacing:2.560000pt;}
.ws8b{word-spacing:2.613333pt;}
.ws85{word-spacing:2.666667pt;}
.ws16d{word-spacing:2.688000pt;}
.ws60{word-spacing:2.720000pt;}
.wse6{word-spacing:2.773333pt;}
.ws3e{word-spacing:2.826667pt;}
.ws108{word-spacing:2.858667pt;}
.wsa8{word-spacing:2.880000pt;}
.ws154{word-spacing:2.901333pt;}
.ws17{word-spacing:2.933333pt;}
.ws10d{word-spacing:2.944000pt;}
.ws7e{word-spacing:2.986667pt;}
.ws13d{word-spacing:3.029333pt;}
.ws29{word-spacing:3.040000pt;}
.ws105{word-spacing:3.072000pt;}
.ws4e{word-spacing:3.093333pt;}
.wsb6{word-spacing:3.146667pt;}
.ws118{word-spacing:3.157333pt;}
.ws4f{word-spacing:3.200000pt;}
.ws116{word-spacing:3.242667pt;}
.ws8c{word-spacing:3.253333pt;}
.wsb8{word-spacing:3.306667pt;}
.ws115{word-spacing:3.328000pt;}
.wse{word-spacing:3.360000pt;}
.ws6a{word-spacing:3.413333pt;}
.ws30{word-spacing:3.466667pt;}
.ws149{word-spacing:3.498667pt;}
.ws58{word-spacing:3.520000pt;}
.ws28{word-spacing:3.573333pt;}
.ws104{word-spacing:3.584000pt;}
.ws2f{word-spacing:3.626667pt;}
.wsb1{word-spacing:3.680000pt;}
.ws8e{word-spacing:3.733333pt;}
.ws143{word-spacing:3.754667pt;}
.ws15{word-spacing:3.786667pt;}
.wsa9{word-spacing:3.840000pt;}
.ws106{word-spacing:3.882667pt;}
.ws48{word-spacing:3.893333pt;}
.wsd1{word-spacing:3.946667pt;}
.ws117{word-spacing:3.968000pt;}
.ws5e{word-spacing:4.000000pt;}
.ws110{word-spacing:4.010667pt;}
.ws9e{word-spacing:4.053333pt;}
.ws150{word-spacing:4.096000pt;}
.wsb3{word-spacing:4.106667pt;}
.ws39{word-spacing:4.160000pt;}
.ws20{word-spacing:4.213333pt;}
.ws14{word-spacing:4.266667pt;}
.ws2e{word-spacing:4.320000pt;}
.ws162{word-spacing:4.352000pt;}
.ws5a{word-spacing:4.373333pt;}
.ws151{word-spacing:4.394667pt;}
.ws66{word-spacing:4.426667pt;}
.wsf{word-spacing:4.480000pt;}
.ws163{word-spacing:4.522667pt;}
.ws5f{word-spacing:4.533333pt;}
.ws102{word-spacing:4.565333pt;}
.ws31{word-spacing:4.586667pt;}
.ws41{word-spacing:4.640000pt;}
.ws15d{word-spacing:4.650667pt;}
.ws44{word-spacing:4.693333pt;}
.ws148{word-spacing:4.736000pt;}
.ws2b{word-spacing:4.746667pt;}
.ws165{word-spacing:4.778667pt;}
.ws91{word-spacing:4.800000pt;}
.ws126{word-spacing:4.821333pt;}
.wsb{word-spacing:4.853333pt;}
.ws111{word-spacing:4.864000pt;}
.ws71{word-spacing:4.906667pt;}
.wsf0{word-spacing:4.960000pt;}
.ws15c{word-spacing:4.992000pt;}
.ws89{word-spacing:5.013333pt;}
.ws27{word-spacing:5.066667pt;}
.ws170{word-spacing:5.077333pt;}
.ws9{word-spacing:5.120000pt;}
.ws13e{word-spacing:5.162667pt;}
.ws82{word-spacing:5.173333pt;}
.ws6d{word-spacing:5.226667pt;}
.ws12c{word-spacing:5.248000pt;}
.wsd3{word-spacing:5.280000pt;}
.wsc0{word-spacing:5.333333pt;}
.ws53{word-spacing:5.386667pt;}
.ws112{word-spacing:5.418667pt;}
.ws12{word-spacing:5.440000pt;}
.ws70{word-spacing:5.493333pt;}
.ws16a{word-spacing:5.504000pt;}
.ws9a{word-spacing:5.546667pt;}
.ws137{word-spacing:5.589333pt;}
.ws55{word-spacing:5.600000pt;}
.wsd5{word-spacing:5.653333pt;}
.ws13b{word-spacing:5.674667pt;}
.ws99{word-spacing:5.706667pt;}
.ws16b{word-spacing:5.717333pt;}
.ws68{word-spacing:5.760000pt;}
.ws10e{word-spacing:5.802667pt;}
.ws13{word-spacing:5.813333pt;}
.ws45{word-spacing:5.866667pt;}
.ws69{word-spacing:5.920000pt;}
.ws171{word-spacing:5.930667pt;}
.ws9b{word-spacing:5.973333pt;}
.ws96{word-spacing:6.026667pt;}
.ws36{word-spacing:6.080000pt;}
.ws57{word-spacing:6.133333pt;}
.ws147{word-spacing:6.144000pt;}
.wsad{word-spacing:6.186667pt;}
.ws14c{word-spacing:6.229333pt;}
.ws6f{word-spacing:6.240000pt;}
.wsea{word-spacing:6.293333pt;}
.wse1{word-spacing:6.346667pt;}
.ws72{word-spacing:6.400000pt;}
.ws114{word-spacing:6.442667pt;}
.wsc1{word-spacing:6.453333pt;}
.ws4c{word-spacing:6.506667pt;}
.ws6c{word-spacing:6.560000pt;}
.wsd0{word-spacing:6.613333pt;}
.ws95{word-spacing:6.720000pt;}
.wsb4{word-spacing:6.773333pt;}
.ws47{word-spacing:6.826667pt;}
.wse0{word-spacing:6.880000pt;}
.ws5b{word-spacing:6.933333pt;}
.ws11e{word-spacing:6.954667pt;}
.ws3d{word-spacing:6.986667pt;}
.wsc{word-spacing:7.040000pt;}
.wsa1{word-spacing:7.093333pt;}
.wsc6{word-spacing:7.146667pt;}
.wsb5{word-spacing:7.200000pt;}
.ws34{word-spacing:7.253333pt;}
.ws13a{word-spacing:7.296000pt;}
.wsa6{word-spacing:7.306667pt;}
.ws161{word-spacing:7.338667pt;}
.ws33{word-spacing:7.360000pt;}
.ws3a{word-spacing:7.413333pt;}
.ws50{word-spacing:7.466667pt;}
.ws123{word-spacing:7.509333pt;}
.wsca{word-spacing:7.520000pt;}
.ws131{word-spacing:7.552000pt;}
.wsd4{word-spacing:7.573333pt;}
.ws155{word-spacing:7.594667pt;}
.wsa2{word-spacing:7.626667pt;}
.ws4b{word-spacing:7.680000pt;}
.wsd7{word-spacing:7.733333pt;}
.ws18{word-spacing:7.786667pt;}
.ws15b{word-spacing:7.808000pt;}
.ws7{word-spacing:7.840000pt;}
.ws40{word-spacing:7.893333pt;}
.ws24{word-spacing:7.946667pt;}
.ws98{word-spacing:8.000000pt;}
.ws5c{word-spacing:8.053333pt;}
.ws37{word-spacing:8.106667pt;}
.ws119{word-spacing:8.149333pt;}
.ws75{word-spacing:8.160000pt;}
.ws67{word-spacing:8.213333pt;}
.wsed{word-spacing:8.266667pt;}
.wscb{word-spacing:8.320000pt;}
.ws62{word-spacing:8.373333pt;}
.ws56{word-spacing:8.426667pt;}
.wse9{word-spacing:8.480000pt;}
.ws156{word-spacing:8.490667pt;}
.ws136{word-spacing:8.533333pt;}
.wsf4{word-spacing:8.586667pt;}
.ws15f{word-spacing:8.618667pt;}
.wsf1{word-spacing:8.640000pt;}
.ws12a{word-spacing:8.661333pt;}
.ws4a{word-spacing:8.693333pt;}
.wsd8{word-spacing:8.746667pt;}
.ws9c{word-spacing:8.800000pt;}
.ws16e{word-spacing:8.832000pt;}
.ws8{word-spacing:8.853333pt;}
.wse2{word-spacing:8.906667pt;}
.ws23{word-spacing:9.013333pt;}
.ws32{word-spacing:9.066667pt;}
.wse3{word-spacing:9.173333pt;}
.wsbe{word-spacing:9.226667pt;}
.wsf9{word-spacing:9.333333pt;}
.ws78{word-spacing:9.440000pt;}
.wsd9{word-spacing:9.493333pt;}
.wsce{word-spacing:9.546667pt;}
.wsdb{word-spacing:9.600000pt;}
.ws153{word-spacing:9.642667pt;}
.ws1a{word-spacing:9.653333pt;}
.ws1c{word-spacing:9.706667pt;}
.ws94{word-spacing:9.760000pt;}
.wsf2{word-spacing:9.866667pt;}
.wsfa{word-spacing:9.973333pt;}
.wscf{word-spacing:10.026667pt;}
.ws12d{word-spacing:10.069333pt;}
.wsae{word-spacing:10.080000pt;}
.ws81{word-spacing:10.186667pt;}
.wsd2{word-spacing:10.240000pt;}
.ws12e{word-spacing:10.282667pt;}
.ws1b{word-spacing:10.293333pt;}
.ws16f{word-spacing:10.325333pt;}
.ws63{word-spacing:10.346667pt;}
.ws12b{word-spacing:10.368000pt;}
.ws7a{word-spacing:10.400000pt;}
.wsfc{word-spacing:10.506667pt;}
.wsf6{word-spacing:10.613333pt;}
.ws83{word-spacing:10.720000pt;}
.wsf8{word-spacing:10.773333pt;}
.ws127{word-spacing:10.794667pt;}
.ws90{word-spacing:10.880000pt;}
.wsd6{word-spacing:10.986667pt;}
.ws64{word-spacing:11.093333pt;}
.ws140{word-spacing:11.221333pt;}
.ws129{word-spacing:11.392000pt;}
.wsaa{word-spacing:11.466667pt;}
.wsb7{word-spacing:11.626667pt;}
.wsbf{word-spacing:11.733333pt;}
.wsec{word-spacing:11.840000pt;}
.ws42{word-spacing:12.106667pt;}
.ws12f{word-spacing:12.416000pt;}
.wsfb{word-spacing:12.480000pt;}
.wsfd{word-spacing:12.586667pt;}
.ws51{word-spacing:13.013333pt;}
.ws38{word-spacing:13.386667pt;}
.wsdc{word-spacing:13.706667pt;}
.ws145{word-spacing:13.738667pt;}
.wsf5{word-spacing:13.813333pt;}
.ws43{word-spacing:14.080000pt;}
.wsbb{word-spacing:14.133333pt;}
.ws146{word-spacing:14.293333pt;}
.wsd{word-spacing:14.346667pt;}
.ws168{word-spacing:14.506667pt;}
.wsdd{word-spacing:14.666667pt;}
.wsf3{word-spacing:14.773333pt;}
.wsde{word-spacing:15.520000pt;}
.wse8{word-spacing:16.160000pt;}
.wsff{word-spacing:16.266667pt;}
.ws10b{word-spacing:16.384000pt;}
.ws97{word-spacing:16.480000pt;}
.ws135{word-spacing:16.768000pt;}
.wseb{word-spacing:17.013333pt;}
.ws19{word-spacing:17.482667pt;}
.ws158{word-spacing:18.133333pt;}
.wsdf{word-spacing:18.293333pt;}
.ws169{word-spacing:18.730667pt;}
.ws157{word-spacing:19.541333pt;}
.ws167{word-spacing:20.138667pt;}
.ws141{word-spacing:22.442667pt;}
.ws13f{word-spacing:24.832000pt;}
.ws159{word-spacing:40.533333pt;}
.ws176{word-spacing:64.938667pt;}
.wsc9{word-spacing:166.442667pt;}
.wsc4{word-spacing:195.285333pt;}
.wscd{word-spacing:518.101333pt;}
._59{margin-left:-13.866667pt;}
._e{margin-left:-11.850667pt;}
._10{margin-left:-10.080000pt;}
._16{margin-left:-8.875213pt;}
._50{margin-left:-7.349333pt;}
._1{margin-left:-4.726933pt;}
._5{margin-left:-3.449600pt;}
._3{margin-left:-2.496000pt;}
._0{margin-left:-1.450667pt;}
._2{width:1.154133pt;}
._8{width:2.051200pt;}
._c{width:3.563733pt;}
._9{width:4.538667pt;}
._13{width:5.749333pt;}
._a{width:6.832000pt;}
._b{width:7.893333pt;}
._6{width:8.886400pt;}
._12{width:10.080000pt;}
._19{width:11.296066pt;}
._15{width:13.115733pt;}
._58{width:14.713600pt;}
._f{width:16.586667pt;}
._d{width:17.482667pt;}
._5a{width:19.840000pt;}
._57{width:22.442667pt;}
._11{width:26.666667pt;}
._14{width:29.333333pt;}
._43{width:33.450667pt;}
._4{width:35.258141pt;}
._1c{width:44.627200pt;}
._5c{width:50.005325pt;}
._5b{width:64.938667pt;}
._56{width:65.877333pt;}
._25{width:70.442667pt;}
._23{width:73.087993pt;}
._28{width:78.335993pt;}
._48{width:89.557333pt;}
._22{width:94.080000pt;}
._47{width:102.293333pt;}
._18{width:120.831994pt;}
._2a{width:127.530659pt;}
._20{width:154.282659pt;}
._4a{width:166.052267pt;}
._4e{width:168.441600pt;}
._26{width:172.669859pt;}
._27{width:176.680533pt;}
._33{width:183.210659pt;}
._2d{width:185.685326pt;}
._1a{width:191.018661pt;}
._45{width:201.578667pt;}
._1b{width:203.626661pt;}
._2f{width:229.890126pt;}
._4f{width:246.869333pt;}
._54{width:252.458655pt;}
._30{width:279.566933pt;}
._1f{width:284.074661pt;}
._49{width:295.253333pt;}
._1d{width:299.221333pt;}
._1e{width:338.600528pt;}
._40{width:349.568000pt;}
._51{width:355.327988pt;}
._17{width:364.068267pt;}
._3b{width:410.408533pt;}
._46{width:422.912000pt;}
._4b{width:463.274667pt;}
._52{width:475.007988pt;}
._53{width:482.090655pt;}
._4d{width:487.466667pt;}
._42{width:492.885333pt;}
._29{width:508.245333pt;}
._38{width:543.784533pt;}
._32{width:555.200000pt;}
._36{width:569.856000pt;}
._2b{width:605.034667pt;}
._44{width:611.370667pt;}
._31{width:631.441059pt;}
._2e{width:632.445867pt;}
._4c{width:665.898667pt;}
._55{width:709.888000pt;}
._34{width:745.941333pt;}
._24{width:759.466667pt;}
._2c{width:794.707200pt;}
._21{width:825.301333pt;}
._3c{width:828.629264pt;}
._37{width:919.763131pt;}
._3a{width:1008.767931pt;}
._41{width:1066.965333pt;}
._35{width:1142.399931pt;}
._39{width:1277.439931pt;}
._7{width:1546.581333pt;}
._3f{width:1840.682599pt;}
._3d{width:1907.754599pt;}
._3e{width:1966.890599pt;}
.fs9{font-size:29.866667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:69.333333pt;}
.fs6{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:31.933340pt;}
.y4b{bottom:44.111465pt;}
.y27{bottom:44.112000pt;}
.y24{bottom:45.118398pt;}
.y5{bottom:59.133337pt;}
.y148{bottom:79.999969pt;}
.y145{bottom:79.999985pt;}
.y140{bottom:79.999999pt;}
.y48{bottom:80.000000pt;}
.y79{bottom:80.708903pt;}
.y81{bottom:80.708933pt;}
.y19d{bottom:80.708944pt;}
.y128{bottom:80.832926pt;}
.y21b{bottom:81.012903pt;}
.yc0{bottom:81.068903pt;}
.y104{bottom:81.072926pt;}
.y4{bottom:86.333337pt;}
.y188{bottom:88.091067pt;}
.y1b6{bottom:89.099483pt;}
.yf2{bottom:90.428903pt;}
.y16c{bottom:92.042236pt;}
.ya9{bottom:92.708903pt;}
.y176{bottom:92.708933pt;}
.y21a{bottom:93.674236pt;}
.y1e2{bottom:93.950269pt;}
.y78{bottom:96.708903pt;}
.y80{bottom:96.708933pt;}
.y19c{bottom:96.708944pt;}
.y127{bottom:96.832926pt;}
.ybf{bottom:97.068903pt;}
.y103{bottom:97.072926pt;}
.y1b5{bottom:101.760817pt;}
.y22b{bottom:103.604905pt;}
.y187{bottom:104.293733pt;}
.y219{bottom:106.335570pt;}
.yf1{bottom:106.428903pt;}
.y1e1{bottom:106.611602pt;}
.y16b{bottom:108.042236pt;}
.ya8{bottom:108.708903pt;}
.y175{bottom:108.708933pt;}
.y77{bottom:112.708903pt;}
.y7f{bottom:112.708933pt;}
.y19b{bottom:112.708944pt;}
.y126{bottom:112.832926pt;}
.ybe{bottom:113.068903pt;}
.y102{bottom:113.072926pt;}
.y1b4{bottom:114.422150pt;}
.y22a{bottom:116.266238pt;}
.y218{bottom:118.996903pt;}
.y1e0{bottom:119.272935pt;}
.y186{bottom:120.421733pt;}
.yf0{bottom:122.428903pt;}
.y23{bottom:123.790666pt;}
.y16a{bottom:124.042236pt;}
.y47{bottom:124.281871pt;}
.ya7{bottom:124.708903pt;}
.y174{bottom:124.708933pt;}
.y1b3{bottom:127.083483pt;}
.y1b8{bottom:127.104817pt;}
.y76{bottom:128.708903pt;}
.y7e{bottom:128.708933pt;}
.y19a{bottom:128.708944pt;}
.y125{bottom:128.832926pt;}
.y229{bottom:128.927572pt;}
.ybd{bottom:129.068903pt;}
.y101{bottom:129.072926pt;}
.y217{bottom:131.658236pt;}
.y1df{bottom:131.934269pt;}
.y185{bottom:136.549733pt;}
.yef{bottom:138.428903pt;}
.y1b2{bottom:139.744817pt;}
.y1b7{bottom:139.766150pt;}
.y169{bottom:140.042236pt;}
.y46{bottom:140.281871pt;}
.ya6{bottom:140.708903pt;}
.y228{bottom:141.588905pt;}
.y216{bottom:144.319570pt;}
.y1de{bottom:144.595602pt;}
.y75{bottom:144.708903pt;}
.y199{bottom:144.708944pt;}
.y124{bottom:144.832926pt;}
.ybc{bottom:145.068903pt;}
.y100{bottom:145.072926pt;}
.y184{bottom:149.211067pt;}
.y227{bottom:154.250238pt;}
.yee{bottom:154.428903pt;}
.y1b0{bottom:155.947484pt;}
.y168{bottom:156.042236pt;}
.y45{bottom:156.281871pt;}
.ya5{bottom:156.708903pt;}
.y173{bottom:156.708933pt;}
.y215{bottom:156.980903pt;}
.y1dd{bottom:157.256935pt;}
.y74{bottom:160.708903pt;}
.y7d{bottom:160.708933pt;}
.y198{bottom:160.708944pt;}
.y123{bottom:160.832926pt;}
.ybb{bottom:161.068903pt;}
.yff{bottom:161.072926pt;}
.y183{bottom:165.339067pt;}
.y226{bottom:166.911572pt;}
.y1af{bottom:168.608817pt;}
.y214{bottom:169.642236pt;}
.y1dc{bottom:169.918269pt;}
.yed{bottom:170.428903pt;}
.y167{bottom:172.042236pt;}
.ya4{bottom:172.708903pt;}
.y1a{bottom:175.052000pt;}
.y73{bottom:176.708903pt;}
.y197{bottom:176.708944pt;}
.y122{bottom:176.832926pt;}
.yba{bottom:177.068903pt;}
.yfe{bottom:177.072926pt;}
.y225{bottom:179.572905pt;}
.y1ae{bottom:181.270150pt;}
.y182{bottom:181.467067pt;}
.y213{bottom:182.303570pt;}
.y1db{bottom:182.579602pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.yec{bottom:186.428903pt;}
.y166{bottom:188.042236pt;}
.y44{bottom:188.281860pt;}
.ya3{bottom:188.708903pt;}
.y72{bottom:192.708903pt;}
.y196{bottom:192.708944pt;}
.yb9{bottom:193.068903pt;}
.yfd{bottom:193.072926pt;}
.y1ad{bottom:193.931484pt;}
.y212{bottom:194.964903pt;}
.y1da{bottom:195.240935pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y181{bottom:197.595067pt;}
.yeb{bottom:202.428903pt;}
.y165{bottom:204.042236pt;}
.ya2{bottom:204.708903pt;}
.y149{bottom:205.013303pt;}
.y146{bottom:205.013318pt;}
.y141{bottom:205.013333pt;}
.y224{bottom:205.578238pt;}
.y1ac{bottom:206.592817pt;}
.y211{bottom:207.626236pt;}
.y1d9{bottom:207.902269pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y71{bottom:208.708903pt;}
.y195{bottom:208.708944pt;}
.y121{bottom:208.832926pt;}
.yb8{bottom:209.068903pt;}
.yfc{bottom:209.072926pt;}
.y180{bottom:213.723067pt;}
.y223{bottom:218.239572pt;}
.yea{bottom:218.428903pt;}
.y1ab{bottom:219.254150pt;}
.y1b1{bottom:219.275482pt;}
.y164{bottom:220.042236pt;}
.y210{bottom:220.287570pt;}
.y1d8{bottom:220.563602pt;}
.ya1{bottom:220.708903pt;}
.y70{bottom:224.708903pt;}
.y194{bottom:224.708944pt;}
.yb7{bottom:225.068903pt;}
.yfb{bottom:225.072926pt;}
.y17f{bottom:229.851067pt;}
.y222{bottom:230.900905pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y20f{bottom:232.948903pt;}
.y1d7{bottom:233.224935pt;}
.ye9{bottom:234.428903pt;}
.y1a9{bottom:235.382150pt;}
.y163{bottom:236.042236pt;}
.y43{bottom:236.281860pt;}
.ya0{bottom:236.708903pt;}
.y6f{bottom:240.708903pt;}
.y193{bottom:240.708944pt;}
.yb6{bottom:241.068903pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y221{bottom:243.562238pt;}
.y20e{bottom:245.610236pt;}
.y1d6{bottom:245.886269pt;}
.y17e{bottom:245.979067pt;}
.y1a8{bottom:248.043484pt;}
.ye8{bottom:250.428903pt;}
.y162{bottom:252.042236pt;}
.y42{bottom:252.281860pt;}
.y9f{bottom:252.708903pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y220{bottom:256.223572pt;}
.y6e{bottom:256.708903pt;}
.y192{bottom:256.708944pt;}
.y120{bottom:256.832926pt;}
.yb5{bottom:257.068903pt;}
.yfa{bottom:257.072926pt;}
.y20d{bottom:258.271570pt;}
.y1d5{bottom:258.547602pt;}
.y1a7{bottom:260.704817pt;}
.y17a{bottom:263.391590pt;}
.ye7{bottom:266.428903pt;}
.y161{bottom:268.042236pt;}
.y9e{bottom:268.708903pt;}
.y17d{bottom:270.875067pt;}
.y20c{bottom:270.932903pt;}
.y1d4{bottom:271.208935pt;}
.y6d{bottom:272.708903pt;}
.y191{bottom:272.708944pt;}
.y11f{bottom:272.832926pt;}
.yb4{bottom:273.068903pt;}
.y1a6{bottom:273.366150pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y179{bottom:276.052923pt;}
.y21f{bottom:282.228905pt;}
.y17c{bottom:283.536400pt;}
.y20b{bottom:283.594236pt;}
.y1d3{bottom:283.870269pt;}
.y160{bottom:284.042236pt;}
.y9d{bottom:284.708903pt;}
.y41{bottom:284.948527pt;}
.y1a5{bottom:286.027484pt;}
.y1aa{bottom:286.048817pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y6c{bottom:288.708903pt;}
.y190{bottom:288.708944pt;}
.y178{bottom:288.714257pt;}
.y11e{bottom:288.832926pt;}
.yb3{bottom:289.068903pt;}
.y21e{bottom:294.890238pt;}
.y17b{bottom:296.197733pt;}
.y20a{bottom:296.255570pt;}
.y1d2{bottom:296.531602pt;}
.ye6{bottom:298.428903pt;}
.y15f{bottom:300.042236pt;}
.y9c{bottom:300.708903pt;}
.y40{bottom:300.948527pt;}
.y177{bottom:301.375590pt;}
.y1a3{bottom:302.155482pt;}
.y6b{bottom:304.708903pt;}
.y18f{bottom:304.708944pt;}
.yf9{bottom:304.832926pt;}
.yb2{bottom:305.068903pt;}
.y209{bottom:308.916903pt;}
.y1d1{bottom:309.192935pt;}
.y11{bottom:309.452000pt;}
.y1a2{bottom:314.816815pt;}
.y15e{bottom:316.042236pt;}
.y9b{bottom:316.708903pt;}
.y3f{bottom:316.948527pt;}
.y6a{bottom:320.708903pt;}
.y18e{bottom:320.708944pt;}
.yf8{bottom:320.832926pt;}
.yb1{bottom:321.068903pt;}
.y208{bottom:321.578236pt;}
.y1d0{bottom:321.854269pt;}
.y1a1{bottom:327.478148pt;}
.y15d{bottom:332.042236pt;}
.y9a{bottom:332.708903pt;}
.y3e{bottom:332.948527pt;}
.y207{bottom:334.239570pt;}
.y1cf{bottom:334.515602pt;}
.y69{bottom:336.708903pt;}
.y18d{bottom:336.708944pt;}
.yf7{bottom:336.832926pt;}
.yb0{bottom:337.068903pt;}
.y1a0{bottom:340.139482pt;}
.y1a4{bottom:340.160815pt;}
.ye5{bottom:341.068903pt;}
.y10{bottom:343.809333pt;}
.y206{bottom:346.900903pt;}
.y1ce{bottom:347.176935pt;}
.y15c{bottom:348.042236pt;}
.y99{bottom:348.708903pt;}
.y3d{bottom:348.948527pt;}
.y68{bottom:352.708903pt;}
.y18c{bottom:352.708944pt;}
.yf6{bottom:352.832926pt;}
.yaf{bottom:353.068903pt;}
.ye4{bottom:357.068903pt;}
.y21d{bottom:359.551570pt;}
.y205{bottom:359.562236pt;}
.y1cd{bottom:359.838269pt;}
.yf{bottom:362.706666pt;}
.y15b{bottom:364.042236pt;}
.y98{bottom:364.708903pt;}
.y3c{bottom:364.948527pt;}
.y19f{bottom:365.035482pt;}
.y67{bottom:368.708903pt;}
.y18b{bottom:368.708944pt;}
.yf5{bottom:368.832926pt;}
.yae{bottom:369.068903pt;}
.y21c{bottom:372.212903pt;}
.y204{bottom:372.223570pt;}
.y1cc{bottom:372.499602pt;}
.ye3{bottom:373.068903pt;}
.y15a{bottom:380.042236pt;}
.y97{bottom:380.708903pt;}
.y3b{bottom:380.948527pt;}
.y19e{bottom:384.042277pt;}
.y66{bottom:384.708903pt;}
.y18a{bottom:384.708944pt;}
.yf4{bottom:384.832926pt;}
.y203{bottom:384.884903pt;}
.yad{bottom:385.068903pt;}
.y1cb{bottom:385.160935pt;}
.ye2{bottom:389.068903pt;}
.y159{bottom:396.042236pt;}
.y96{bottom:396.708903pt;}
.y3a{bottom:396.948527pt;}
.y202{bottom:397.546236pt;}
.y1ca{bottom:397.822269pt;}
.y65{bottom:400.708903pt;}
.yf3{bottom:400.832926pt;}
.yac{bottom:401.068903pt;}
.ye1{bottom:405.068903pt;}
.y201{bottom:410.207570pt;}
.y1c9{bottom:410.483602pt;}
.y158{bottom:412.042236pt;}
.y95{bottom:412.708903pt;}
.y39{bottom:412.948527pt;}
.y64{bottom:416.708903pt;}
.y189{bottom:416.708944pt;}
.yab{bottom:417.068903pt;}
.ye0{bottom:421.068903pt;}
.y200{bottom:422.868903pt;}
.y157{bottom:428.042236pt;}
.y94{bottom:428.708903pt;}
.y38{bottom:428.948527pt;}
.ye{bottom:430.990669pt;}
.y63{bottom:432.708903pt;}
.ycb{bottom:433.068903pt;}
.y1ff{bottom:435.530236pt;}
.ydf{bottom:437.068903pt;}
.y1c8{bottom:439.416951pt;}
.y156{bottom:444.042236pt;}
.y93{bottom:444.708903pt;}
.y37{bottom:444.948527pt;}
.yd{bottom:446.990669pt;}
.y1fe{bottom:448.191570pt;}
.y62{bottom:448.708903pt;}
.yaa{bottom:449.068903pt;}
.y10f{bottom:449.130941pt;}
.y13f{bottom:450.027482pt;}
.yde{bottom:453.068903pt;}
.y155{bottom:460.042236pt;}
.y92{bottom:460.708903pt;}
.y1fd{bottom:460.852903pt;}
.y36{bottom:460.948527pt;}
.yc{bottom:462.990669pt;}
.y61{bottom:464.708903pt;}
.yca{bottom:465.068903pt;}
.y10e{bottom:465.577067pt;}
.y13e{bottom:466.230148pt;}
.ydd{bottom:469.068903pt;}
.y1fc{bottom:473.514236pt;}
.y154{bottom:476.042236pt;}
.y91{bottom:476.708903pt;}
.y35{bottom:476.948527pt;}
.yb{bottom:478.990666pt;}
.y60{bottom:480.708903pt;}
.yc9{bottom:481.068903pt;}
.y10d{bottom:482.023315pt;}
.y13d{bottom:482.358148pt;}
.ydc{bottom:485.068903pt;}
.y1fb{bottom:486.175570pt;}
.y14a{bottom:489.823969pt;}
.y147{bottom:489.823985pt;}
.y142{bottom:489.824000pt;}
.y153{bottom:492.042236pt;}
.y90{bottom:492.708903pt;}
.y34{bottom:492.948527pt;}
.ya{bottom:494.990666pt;}
.y5f{bottom:496.708903pt;}
.yc8{bottom:497.068903pt;}
.y143{bottom:497.824000pt;}
.y10c{bottom:498.469482pt;}
.y13c{bottom:498.486148pt;}
.y1fa{bottom:498.836903pt;}
.ydb{bottom:501.068903pt;}
.y1c7{bottom:505.455718pt;}
.y152{bottom:508.042236pt;}
.y8f{bottom:508.708903pt;}
.y33{bottom:508.948527pt;}
.y1f9{bottom:511.498236pt;}
.y5e{bottom:512.708903pt;}
.yc7{bottom:513.068903pt;}
.y13b{bottom:514.614148pt;}
.y10b{bottom:514.915731pt;}
.yda{bottom:517.068903pt;}
.y1c6{bottom:518.117051pt;}
.y151{bottom:524.042236pt;}
.y1f8{bottom:524.159570pt;}
.y8e{bottom:524.708903pt;}
.y32{bottom:524.948527pt;}
.y5d{bottom:528.708903pt;}
.yc6{bottom:529.068903pt;}
.y13a{bottom:530.742148pt;}
.y1c5{bottom:530.778384pt;}
.y10a{bottom:531.361857pt;}
.yd9{bottom:533.068903pt;}
.y1f7{bottom:536.820903pt;}
.y150{bottom:540.042236pt;}
.y8d{bottom:540.708903pt;}
.y31{bottom:540.948527pt;}
.y1c4{bottom:543.439718pt;}
.y5c{bottom:544.708903pt;}
.yc5{bottom:545.068903pt;}
.y139{bottom:546.870148pt;}
.y109{bottom:547.807983pt;}
.yd8{bottom:549.068903pt;}
.y1f6{bottom:549.482236pt;}
.y14f{bottom:556.042236pt;}
.y1c3{bottom:556.101051pt;}
.y8c{bottom:556.708903pt;}
.y30{bottom:556.948527pt;}
.y5b{bottom:560.708903pt;}
.yc4{bottom:561.068903pt;}
.y1f5{bottom:562.143570pt;}
.y138{bottom:562.998148pt;}
.y108{bottom:564.254272pt;}
.yd7{bottom:565.068903pt;}
.y1c2{bottom:568.762384pt;}
.y14e{bottom:572.042236pt;}
.y236{bottom:572.612918pt;}
.y8b{bottom:572.708903pt;}
.y2f{bottom:572.948527pt;}
.y9{bottom:573.786667pt;}
.y1f4{bottom:574.804903pt;}
.y5a{bottom:576.708903pt;}
.yc3{bottom:577.068903pt;}
.y137{bottom:579.126148pt;}
.y107{bottom:580.700399pt;}
.yd6{bottom:581.068903pt;}
.y1c1{bottom:581.423718pt;}
.y1f3{bottom:587.466236pt;}
.y14d{bottom:588.042236pt;}
.y8a{bottom:588.708903pt;}
.y2e{bottom:588.948527pt;}
.y235{bottom:589.541056pt;}
.y8{bottom:592.685334pt;}
.y59{bottom:592.708903pt;}
.y1c0{bottom:594.085051pt;}
.y136{bottom:595.254148pt;}
.yd5{bottom:597.068903pt;}
.y106{bottom:597.146647pt;}
.y1f2{bottom:600.127570pt;}
.y14c{bottom:604.042236pt;}
.y89{bottom:604.708903pt;}
.y2d{bottom:604.948527pt;}
.y1bf{bottom:606.746384pt;}
.y58{bottom:608.708903pt;}
.y234{bottom:608.916382pt;}
.yc2{bottom:609.068903pt;}
.y135{bottom:611.382148pt;}
.y1f1{bottom:612.788903pt;}
.yd4{bottom:613.068903pt;}
.y11d{bottom:614.758920pt;}
.y172{bottom:620.042236pt;}
.y88{bottom:620.708903pt;}
.y233{bottom:624.030276pt;}
.y57{bottom:624.708903pt;}
.yc1{bottom:625.068903pt;}
.y1f0{bottom:625.450236pt;}
.y11c{bottom:627.420253pt;}
.y133{bottom:627.520815pt;}
.yd3{bottom:629.068903pt;}
.y14b{bottom:636.042236pt;}
.y87{bottom:636.708903pt;}
.y1ef{bottom:638.111570pt;}
.y1be{bottom:638.735718pt;}
.y11b{bottom:640.081587pt;}
.y132{bottom:640.182148pt;}
.y56{bottom:640.708903pt;}
.y232{bottom:640.958252pt;}
.y7{bottom:645.598667pt;}
.y2c{bottom:648.053063pt;}
.y1ee{bottom:650.772903pt;}
.y171{bottom:652.042236pt;}
.y86{bottom:652.708903pt;}
.y11a{bottom:652.742920pt;}
.y131{bottom:652.843482pt;}
.y134{bottom:652.854148pt;}
.y55{bottom:656.708903pt;}
.y2b{bottom:660.714396pt;}
.yd2{bottom:661.068903pt;}
.y231{bottom:662.183765pt;}
.y1ed{bottom:663.434236pt;}
.y1bd{bottom:664.068929pt;}
.y170{bottom:668.042236pt;}
.y85{bottom:668.708903pt;}
.y119{bottom:668.953635pt;}
.y130{bottom:668.971482pt;}
.y3{bottom:668.977329pt;}
.y54{bottom:672.708903pt;}
.y230{bottom:674.845098pt;}
.y1ec{bottom:676.095570pt;}
.y144{bottom:680.586667pt;}
.y16f{bottom:684.042236pt;}
.y84{bottom:684.708903pt;}
.y116{bottom:685.092302pt;}
.y12f{bottom:685.099482pt;}
.y53{bottom:688.708903pt;}
.y1eb{bottom:688.756903pt;}
.y1bc{bottom:692.740903pt;}
.y22f{bottom:694.215765pt;}
.y2a{bottom:694.357503pt;}
.y115{bottom:697.753635pt;}
.y118{bottom:697.764302pt;}
.y16e{bottom:700.042236pt;}
.y12e{bottom:701.227482pt;}
.y1ea{bottom:701.418236pt;}
.yd1{bottom:703.708903pt;}
.y52{bottom:704.708903pt;}
.y1bb{bottom:705.402236pt;}
.y22e{bottom:706.877098pt;}
.y114{bottom:710.414969pt;}
.y117{bottom:710.425635pt;}
.y1e9{bottom:714.079570pt;}
.y83{bottom:716.708903pt;}
.y12d{bottom:717.355482pt;}
.yd0{bottom:719.708903pt;}
.y51{bottom:720.708903pt;}
.y22d{bottom:726.247765pt;}
.y113{bottom:726.542969pt;}
.y1e8{bottom:726.740903pt;}
.y1ba{bottom:730.714236pt;}
.y16d{bottom:732.042236pt;}
.y29{bottom:732.351581pt;}
.y82{bottom:732.708903pt;}
.y12c{bottom:733.483482pt;}
.ycf{bottom:735.708903pt;}
.y50{bottom:736.708903pt;}
.y22c{bottom:738.909098pt;}
.y1e7{bottom:739.402236pt;}
.y112{bottom:742.676270pt;}
.y1b9{bottom:743.375570pt;}
.yce{bottom:751.708903pt;}
.y1e6{bottom:752.063570pt;}
.y28{bottom:752.354248pt;}
.y4f{bottom:752.708903pt;}
.y12b{bottom:758.379482pt;}
.y111{bottom:758.805986pt;}
.y1e5{bottom:764.724903pt;}
.ycd{bottom:767.708903pt;}
.y4e{bottom:768.708903pt;}
.y12a{bottom:771.040815pt;}
.y1e4{bottom:777.386236pt;}
.y2{bottom:781.661334pt;}
.y110{bottom:783.701986pt;}
.y129{bottom:783.702148pt;}
.y4d{bottom:784.708903pt;}
.y1e3{bottom:790.047570pt;}
.ycc{bottom:799.708903pt;}
.y4c{bottom:800.708903pt;}
.y105{bottom:802.708903pt;}
.y26{bottom:822.992964pt;}
.y7a{bottom:835.262533pt;}
.y7c{bottom:835.654126pt;}
.y4a{bottom:835.654289pt;}
.y25{bottom:835.654297pt;}
.y7b{bottom:836.112793pt;}
.y49{bottom:836.112956pt;}
.y1{bottom:859.312000pt;}
.h17{height:26.043733pt;}
.h7{height:28.560000pt;}
.ha{height:30.080000pt;}
.h13{height:37.205333pt;}
.hb{height:37.376000pt;}
.h16{height:37.802667pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h1b{height:43.046465pt;}
.h1a{height:43.067571pt;}
.h1d{height:43.067798pt;}
.h19{height:43.110465pt;}
.h18{height:43.125455pt;}
.h1e{height:43.648000pt;}
.h10{height:46.506667pt;}
.h11{height:47.253333pt;}
.h15{height:47.680000pt;}
.hc{height:48.766452pt;}
.h2{height:48.960000pt;}
.hf{height:52.746667pt;}
.h14{height:54.560000pt;}
.he{height:57.658667pt;}
.h12{height:58.021333pt;}
.hd{height:61.429333pt;}
.h5{height:69.360000pt;}
.h1c{height:87.850667pt;}
.h4{height:105.826671pt;}
.h9{height:888.000000pt;}
.h8{height:888.189333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w3{width:585.826667pt;}
.w4{width:586.000000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:68.031469pt;}
.x8{left:68.976400pt;}
.x9{left:69.996800pt;}
.x14{left:72.042151pt;}
.x16{left:76.031469pt;}
.xa{left:83.151469pt;}
.x5c{left:86.932800pt;}
.x1{left:90.706667pt;}
.xc{left:91.818135pt;}
.x2{left:94.486667pt;}
.x5b{left:95.380808pt;}
.x17{left:119.934400pt;}
.x34{left:132.595733pt;}
.x18{left:136.062400pt;}
.x2b{left:139.742799pt;}
.x35{left:145.257067pt;}
.x15{left:147.828878pt;}
.x19{left:152.190400pt;}
.x36{left:157.918400pt;}
.x2c{left:160.404132pt;}
.x1a{left:168.318400pt;}
.x37{left:174.046400pt;}
.x4{left:180.874667pt;}
.x1b{left:184.446400pt;}
.x50{left:185.854799pt;}
.xd{left:187.350525pt;}
.x3b{left:190.153067pt;}
.xe{left:195.338264pt;}
.x38{left:199.369067pt;}
.x1c{left:200.574400pt;}
.x2d{left:201.726799pt;}
.x52{left:205.428134pt;}
.x39{left:212.030400pt;}
.x1d{left:216.702400pt;}
.x2e{left:222.388132pt;}
.x3a{left:224.691733pt;}
.x1e{left:232.830400pt;}
.x51{left:236.500132pt;}
.x3c{left:240.819733pt;}
.x2f{left:243.049466pt;}
.x1f{left:248.969067pt;}
.x3d{left:253.481067pt;}
.x30{left:263.710799pt;}
.x20{left:265.097067pt;}
.x3e{left:266.142400pt;}
.x3f{left:278.803733pt;}
.xf{left:280.180931pt;}
.x21{left:281.225067pt;}
.x10{left:288.180931pt;}
.x40{left:291.465067pt;}
.x53{left:294.153468pt;}
.x31{left:295.966799pt;}
.x22{left:297.363733pt;}
.x59{left:299.978135pt;}
.x41{left:304.126400pt;}
.x54{left:306.814801pt;}
.x5a{left:307.978135pt;}
.x32{left:312.094799pt;}
.x23{left:313.491733pt;}
.x42{left:316.787733pt;}
.x55{left:319.476134pt;}
.x33{left:328.297466pt;}
.x24{left:329.619733pt;}
.x43{left:332.915733pt;}
.x25{left:345.747733pt;}
.x44{left:358.238400pt;}
.x26{left:361.875733pt;}
.x45{left:370.899733pt;}
.x27{left:378.003733pt;}
.x46{left:383.561067pt;}
.x56{left:384.998128pt;}
.x57{left:388.998128pt;}
.x28{left:394.131733pt;}
.x47{left:396.222400pt;}
.x58{left:399.664795pt;}
.x3{left:404.408000pt;}
.x11{left:410.378264pt;}
.x48{left:412.361067pt;}
.x12{left:418.395752pt;}
.x49{left:425.022400pt;}
.x29{left:426.387733pt;}
.x4c{left:428.467733pt;}
.x5{left:431.874146pt;}
.x4a{left:437.683733pt;}
.x2a{left:442.515733pt;}
.x4d{left:444.595733pt;}
.x13{left:449.332800pt;}
.x4b{left:450.345067pt;}
.x4e{left:460.723733pt;}
.x7{left:463.672526pt;}
.x4f{left:473.385067pt;}
.xb{left:497.529053pt;}
}




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