
    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_ffeb9fd0abae66629eb35022.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_caa4ee76a7ec82703988274b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_438e3c58f292fc5effd33f7d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.919000;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_7d63894a1d5d48f9217f9e04.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_45b415aa717eb8bf47603c9c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.906000;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_bd91e33df1a17147a061f4e9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893000;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_0b20216164463588652e6c08.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_7675b1d0b13f004726b138b3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.713000;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_f2b2f39d519b56482694fa01.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.900000;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_7849e6d59957bfdfffe6fa19.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.899000;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_8ea4fd84bf4c82254efa0cf0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.673000;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_058b2b5a5c39e68a739f9aca.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_8089e8dfc2b8afe371861926.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.711000;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_540a3ae761cc3a72e25d673e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.898000;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_ba17069755f9deb6a1d21fbd.woff2')format("woff");}.fff{font-family:fff;line-height:0.603000;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_2d075d45cf0d02a77187e49c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.698000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_70e633d0aaf602757a90a69d.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.871094;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:ff12;src:url('chunks/assets/font_e9d03291f4bde684125f2a89.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.856445;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.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);}
.m1{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);}
.v2{vertical-align:-26.028000px;}
.v4{vertical-align:-16.879680px;}
.v5{vertical-align:-8.964840px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:19.572000px;}
.v7{vertical-align:21.204000px;}
.v8{vertical-align:22.482000px;}
.v3{vertical-align:23.753880px;}
.v1{vertical-align:26.028000px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000180px;}
.lsa{letter-spacing:0.015878px;}
.lsb{letter-spacing:0.028416px;}
.ls6{letter-spacing:0.034296px;}
.lsd{letter-spacing:2.387440px;}
.ls0{letter-spacing:2.984915px;}
.ls4{letter-spacing:2.985600px;}
.lsc{letter-spacing:2.987495px;}
.ls8{letter-spacing:2.988427px;}
.ls3{letter-spacing:2.990280px;}
.ls1{letter-spacing:2.990915px;}
.ls9{letter-spacing:2.995157px;}
.ls5{letter-spacing:19.728900px;}
.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;}
}
.wsa{word-spacing:-29.887800px;}
.wse4{word-spacing:-26.899200px;}
.ws67{word-spacing:-20.921400px;}
.wsc{word-spacing:-13.449600px;}
.ws13c{word-spacing:-11.955150px;}
.wse3{word-spacing:-11.545890px;}
.ws121{word-spacing:-8.357069px;}
.ws122{word-spacing:-8.345421px;}
.ws93{word-spacing:-8.155305px;}
.ws17f{word-spacing:-0.334553px;}
.ws16b{word-spacing:-0.095498px;}
.ws3{word-spacing:-0.071731px;}
.ws66{word-spacing:-0.059776px;}
.wse6{word-spacing:-0.053798px;}
.ws1f{word-spacing:-0.047821px;}
.ws118{word-spacing:-0.038719px;}
.ws4{word-spacing:0.000000px;}
.ws144{word-spacing:0.143605px;}
.ws140{word-spacing:0.956842px;}
.ws156{word-spacing:1.291443px;}
.ws188{word-spacing:1.817039px;}
.ws179{word-spacing:1.912537px;}
.ws14e{word-spacing:2.391508px;}
.ws155{word-spacing:2.486145px;}
.ws1b{word-spacing:4.034611px;}
.ws174{word-spacing:4.495949px;}
.ws157{word-spacing:4.781151px;}
.ws171{word-spacing:4.781295px;}
.ws189{word-spacing:4.781582px;}
.ws168{word-spacing:4.781869px;}
.ws14f{word-spacing:4.783160px;}
.ws148{word-spacing:5.307752px;}
.ws183{word-spacing:5.450688px;}
.wsfc{word-spacing:5.976544px;}
.ws85{word-spacing:5.976723px;}
.ws5f{word-spacing:5.976843px;}
.ws9{word-spacing:5.978038px;}
.ws103{word-spacing:5.978756px;}
.ws15d{word-spacing:6.024344px;}
.ws15e{word-spacing:6.455159px;}
.ws17a{word-spacing:7.124456px;}
.ws175{word-spacing:7.746124px;}
.ws164{word-spacing:9.946924px;}
.ws13b{word-spacing:10.471898px;}
.ws0{word-spacing:10.865464px;}
.ws14d{word-spacing:11.046702px;}
.ws159{word-spacing:11.476083px;}
.ws17e{word-spacing:11.572776px;}
.ws16a{word-spacing:11.763198px;}
.ws13e{word-spacing:11.952185px;}
.ws143{word-spacing:12.047893px;}
.ws145{word-spacing:12.049739px;}
.ws13f{word-spacing:12.862594px;}
.ws153{word-spacing:12.863311px;}
.ws146{word-spacing:13.293075px;}
.ws117{word-spacing:13.512522px;}
.ws119{word-spacing:13.512754px;}
.ws11b{word-spacing:13.514148px;}
.ws142{word-spacing:13.580477px;}
.ws187{word-spacing:13.723747px;}
.ws178{word-spacing:13.819580px;}
.ws6b{word-spacing:13.867102px;}
.ws163{word-spacing:13.914886px;}
.ws11e{word-spacing:13.926997px;}
.ws170{word-spacing:13.963520px;}
.ws186{word-spacing:14.012057px;}
.ws113{word-spacing:14.267218px;}
.ws116{word-spacing:14.270084px;}
.ws114{word-spacing:14.276921px;}
.ws115{word-spacing:14.302028px;}
.ws61{word-spacing:14.345188px;}
.ws7f{word-spacing:14.346981px;}
.wsbb{word-spacing:14.347100px;}
.ws154{word-spacing:14.394527px;}
.ws102{word-spacing:14.526248px;}
.wsd3{word-spacing:14.585904px;}
.ws169{word-spacing:14.729797px;}
.ws88{word-spacing:14.765470px;}
.ws181{word-spacing:14.872207px;}
.ws35{word-spacing:14.943900px;}
.ws14{word-spacing:15.277831px;}
.wsef{word-spacing:15.302912px;}
.ws79{word-spacing:15.361612px;}
.ws76{word-spacing:15.362807px;}
.wsdf{word-spacing:15.781775px;}
.wsce{word-spacing:15.899533px;}
.wsb8{word-spacing:15.959607px;}
.ws185{word-spacing:15.971411px;}
.wscd{word-spacing:16.019681px;}
.ws75{word-spacing:16.078501px;}
.ws31{word-spacing:16.078859px;}
.wscf{word-spacing:16.318261px;}
.ws173{word-spacing:16.401653px;}
.ws2b{word-spacing:16.437752px;}
.ws17{word-spacing:16.462687px;}
.ws132{word-spacing:16.496930px;}
.wscc{word-spacing:16.498066px;}
.ws12e{word-spacing:16.557722px;}
.ws16d{word-spacing:16.594848px;}
.ws9a{word-spacing:16.617019px;}
.wsa5{word-spacing:16.677512px;}
.ws95{word-spacing:16.688337px;}
.wsc7{word-spacing:16.688481px;}
.ws69{word-spacing:16.688624px;}
.ws149{word-spacing:16.689198px;}
.ws3b{word-spacing:16.689389px;}
.ws158{word-spacing:16.689485px;}
.ws112{word-spacing:16.690298px;}
.ws13d{word-spacing:16.690346px;}
.ws141{word-spacing:16.690489px;}
.wse8{word-spacing:16.838200px;}
.ws13{word-spacing:16.892267px;}
.ws12c{word-spacing:16.915419px;}
.ws46{word-spacing:16.916136px;}
.wsc6{word-spacing:17.095582px;}
.ws71{word-spacing:17.154461px;}
.ws32{word-spacing:17.214237px;}
.ws147{word-spacing:17.215368px;}
.ws100{word-spacing:17.275507px;}
.ws99{word-spacing:17.275746px;}
.ws1c{word-spacing:17.377690px;}
.ws182{word-spacing:17.389933px;}
.wsd8{word-spacing:17.454356px;}
.ws87{word-spacing:17.513055px;}
.wsd1{word-spacing:17.513952px;}
.ws77{word-spacing:17.752217px;}
.wsca{word-spacing:17.812830px;}
.wsd2{word-spacing:17.812949px;}
.wsfb{word-spacing:17.819543px;}
.wsa9{word-spacing:17.832223px;}
.ws15c{word-spacing:17.931545px;}
.ws16c{word-spacing:17.931673px;}
.ws7e{word-spacing:17.932740px;}
.ws29{word-spacing:18.051275px;}
.wsd4{word-spacing:18.052231px;}
.ws10f{word-spacing:18.110752px;}
.wsee{word-spacing:18.351528px;}
.ws15f{word-spacing:18.409783px;}
.ws27{word-spacing:18.410586px;}
.ws172{word-spacing:18.457986px;}
.ws15{word-spacing:18.505627px;}
.ws8a{word-spacing:18.589136px;}
.ws81{word-spacing:18.649509px;}
.ws59{word-spacing:18.650944px;}
.wse2{word-spacing:18.767666px;}
.wsb0{word-spacing:18.774404px;}
.wsb4{word-spacing:18.774566px;}
.wse7{word-spacing:18.774727px;}
.wsb3{word-spacing:18.774888px;}
.wse1{word-spacing:18.775319px;}
.wsb5{word-spacing:18.775911px;}
.wsb2{word-spacing:18.776180px;}
.wse9{word-spacing:18.776341px;}
.wsb6{word-spacing:18.776449px;}
.ws25{word-spacing:18.828178px;}
.ws126{word-spacing:18.830091px;}
.ws166{word-spacing:18.935953px;}
.wsad{word-spacing:18.947729px;}
.ws161{word-spacing:18.983726px;}
.wsc1{word-spacing:19.008820px;}
.ws17b{word-spacing:19.080132px;}
.ws167{word-spacing:19.177065px;}
.ws44{word-spacing:19.425994px;}
.wsf9{word-spacing:19.426771px;}
.ws7c{word-spacing:19.546263px;}
.wsb7{word-spacing:19.606038px;}
.wscb{word-spacing:19.607533px;}
.ws11c{word-spacing:19.665395px;}
.ws18{word-spacing:19.689945px;}
.ws160{word-spacing:19.892509px;}
.wsd{word-spacing:19.906323px;}
.ws109{word-spacing:19.964034px;}
.ws101{word-spacing:19.964632px;}
.ws1a{word-spacing:20.119579px;}
.ws1d{word-spacing:20.120010px;}
.wsc8{word-spacing:20.262733px;}
.ws41{word-spacing:20.264646px;}
.wsb9{word-spacing:20.383599px;}
.ws3a{word-spacing:20.466069px;}
.ws19{word-spacing:20.496921px;}
.ws40{word-spacing:20.503688px;}
.wsf4{word-spacing:20.562448px;}
.wsec{word-spacing:20.622642px;}
.ws23{word-spacing:20.623538px;}
.wsf2{word-spacing:20.681999px;}
.ws9f{word-spacing:20.801909px;}
.ws11{word-spacing:20.818905px;}
.wsaf{word-spacing:20.855868px;}
.ws4e{word-spacing:20.860668px;}
.wsb{word-spacing:20.860848px;}
.ws8e{word-spacing:20.861146px;}
.wsa7{word-spacing:20.861266px;}
.ws5e{word-spacing:20.861445px;}
.ws139{word-spacing:20.861565px;}
.ws28{word-spacing:20.861684px;}
.ws73{word-spacing:20.861804px;}
.ws57{word-spacing:20.861983px;}
.ws36{word-spacing:20.862163px;}
.wsf0{word-spacing:20.862282px;}
.wsfa{word-spacing:20.862581px;}
.wsdc{word-spacing:20.921042px;}
.wsbc{word-spacing:21.220756px;}
.wsab{word-spacing:21.221055px;}
.ws12b{word-spacing:21.338933px;}
.ws138{word-spacing:21.340427px;}
.ws96{word-spacing:21.399306px;}
.ws6c{word-spacing:21.638229px;}
.wsd7{word-spacing:21.638528px;}
.ws62{word-spacing:21.638648px;}
.ws65{word-spacing:21.699021px;}
.wsdd{word-spacing:21.757780px;}
.ws165{word-spacing:21.853632px;}
.ws9d{word-spacing:21.877152px;}
.ws14a{word-spacing:21.901117px;}
.ws20{word-spacing:21.937466px;}
.ws6f{word-spacing:22.056120px;}
.ws136{word-spacing:22.235746px;}
.ws54{word-spacing:22.296359px;}
.ws2a{word-spacing:22.296538px;}
.wsaa{word-spacing:22.354998px;}
.ws10b{word-spacing:22.356732px;}
.ws13a{word-spacing:22.379802px;}
.ws124{word-spacing:22.474968px;}
.ws12d{word-spacing:22.535760px;}
.ws108{word-spacing:22.594639px;}
.ws55{word-spacing:22.595775px;}
.ws11f{word-spacing:22.833562px;}
.ws7{word-spacing:22.947411px;}
.ws8{word-spacing:22.947805px;}
.ws14c{word-spacing:22.955084px;}
.ws10{word-spacing:23.024693px;}
.ws7d{word-spacing:23.252768px;}
.wsc3{word-spacing:23.253067px;}
.ws91{word-spacing:23.253426px;}
.ws10c{word-spacing:23.253485px;}
.ws26{word-spacing:23.312006px;}
.ws2{word-spacing:23.312640px;}
.ws11d{word-spacing:23.372140px;}
.wsc2{word-spacing:23.433171px;}
.ws135{word-spacing:23.491811px;}
.wsa0{word-spacing:23.491990px;}
.ws52{word-spacing:23.492289px;}
.wsac{word-spacing:23.671257px;}
.wsa4{word-spacing:23.789912px;}
.wsba{word-spacing:23.849388px;}
.wsc0{word-spacing:23.851002px;}
.ws5a{word-spacing:24.028715px;}
.ws16{word-spacing:24.154782px;}
.ws2f{word-spacing:24.209297px;}
.wsea{word-spacing:24.209872px;}
.ws9c{word-spacing:24.387309px;}
.wse0{word-spacing:24.506980px;}
.ws49{word-spacing:24.507279px;}
.ws2c{word-spacing:24.567174px;}
.ws4a{word-spacing:24.626352px;}
.ws4c{word-spacing:24.626651px;}
.ws129{word-spacing:24.627966px;}
.ws9b{word-spacing:24.687323px;}
.ws15b{word-spacing:24.722676px;}
.ws8d{word-spacing:24.748115px;}
.ws17d{word-spacing:24.769875px;}
.ws2e{word-spacing:24.806515px;}
.ws133{word-spacing:24.807292px;}
.wsf5{word-spacing:24.865693px;}
.ws84{word-spacing:24.866291px;}
.wsae{word-spacing:24.925469px;}
.ws107{word-spacing:24.926365px;}
.ws51{word-spacing:24.926963px;}
.ws10a{word-spacing:24.985244px;}
.wsf7{word-spacing:25.104616px;}
.wsf1{word-spacing:25.165707px;}
.ws48{word-spacing:25.403614px;}
.ws98{word-spacing:25.465123px;}
.ws8c{word-spacing:25.523703px;}
.ws151{word-spacing:25.535674px;}
.ws120{word-spacing:25.583000px;}
.ws2d{word-spacing:25.703030px;}
.ws12{word-spacing:25.770456px;}
.ws15a{word-spacing:25.775016px;}
.ws64{word-spacing:25.821983px;}
.ws162{word-spacing:25.822215px;}
.ws106{word-spacing:25.822282px;}
.ws16f{word-spacing:25.822789px;}
.ws80{word-spacing:25.941654px;}
.ws24{word-spacing:26.121519px;}
.ws38{word-spacing:26.121698px;}
.wse{word-spacing:26.145377px;}
.ws4d{word-spacing:26.241190px;}
.ws17c{word-spacing:26.300326px;}
.wsc9{word-spacing:26.360860px;}
.wsde{word-spacing:26.419739px;}
.wsbf{word-spacing:26.660934px;}
.ws22{word-spacing:26.778632px;}
.wsf6{word-spacing:26.780246px;}
.wsa8{word-spacing:26.838993px;}
.wsb1{word-spacing:26.844553px;}
.wse5{word-spacing:26.953214px;}
.wsfe{word-spacing:26.957779px;}
.wsa2{word-spacing:27.019049px;}
.ws104{word-spacing:27.077510px;}
.ws10e{word-spacing:27.077928px;}
.wsd9{word-spacing:27.078048px;}
.ws63{word-spacing:27.318167px;}
.ws58{word-spacing:27.497732px;}
.ws43{word-spacing:27.555775px;}
.ws8f{word-spacing:27.556193px;}
.ws90{word-spacing:27.615490px;}
.ws70{word-spacing:27.616865px;}
.ws12a{word-spacing:27.675864px;}
.ws5c{word-spacing:27.854294px;}
.ws97{word-spacing:27.856027px;}
.ws128{word-spacing:27.914488px;}
.ws110{word-spacing:28.095130px;}
.wsf3{word-spacing:28.153531px;}
.ws16e{word-spacing:28.213102px;}
.wsc4{word-spacing:28.213246px;}
.ws111{word-spacing:28.213784px;}
.ws45{word-spacing:28.215219px;}
.ws177{word-spacing:28.260875px;}
.wsd0{word-spacing:28.273679px;}
.wsf8{word-spacing:28.332678px;}
.wsd5{word-spacing:28.332857px;}
.ws72{word-spacing:28.392334px;}
.wsf{word-spacing:28.404425px;}
.ws3f{word-spacing:28.453724px;}
.ws12f{word-spacing:28.631915px;}
.ws39{word-spacing:28.836396px;}
.wsda{word-spacing:28.870539px;}
.ws6e{word-spacing:28.930554px;}
.ws50{word-spacing:28.931809px;}
.wsa1{word-spacing:29.050463px;}
.ws82{word-spacing:29.051958px;}
.wsbd{word-spacing:29.169417px;}
.ws152{word-spacing:29.217430px;}
.wsa3{word-spacing:29.288968px;}
.ws130{word-spacing:29.349760px;}
.ws9e{word-spacing:29.408459px;}
.ws127{word-spacing:29.468534px;}
.ws4b{word-spacing:29.468833px;}
.ws4f{word-spacing:29.470327px;}
.ws180{word-spacing:29.553322px;}
.ws53{word-spacing:29.589819px;}
.ws7b{word-spacing:29.707337px;}
.ws60{word-spacing:29.708473px;}
.ws184{word-spacing:29.839385px;}
.ws34{word-spacing:29.888517px;}
.ws14b{word-spacing:30.413041px;}
.ws47{word-spacing:30.485436px;}
.wsdb{word-spacing:30.605765px;}
.ws8b{word-spacing:30.663867px;}
.ws37{word-spacing:30.902969px;}
.ws1{word-spacing:31.091012px;}
.wsed{word-spacing:31.142251px;}
.ws6d{word-spacing:31.203820px;}
.ws42{word-spacing:31.262997px;}
.ws5b{word-spacing:31.381353px;}
.ws10d{word-spacing:31.382489px;}
.ws7a{word-spacing:31.560501px;}
.ws78{word-spacing:31.560680px;}
.ws83{word-spacing:31.561935px;}
.wseb{word-spacing:31.979288px;}
.wsfd{word-spacing:31.979886px;}
.ws68{word-spacing:32.218630px;}
.ws30{word-spacing:32.397718px;}
.ws3e{word-spacing:32.398794px;}
.ws6a{word-spacing:32.517628px;}
.ws134{word-spacing:32.576626px;}
.ws131{word-spacing:32.757567px;}
.ws1e{word-spacing:32.815848px;}
.ws3d{word-spacing:32.936116px;}
.ws150{word-spacing:32.947772px;}
.wsd6{word-spacing:33.174322px;}
.wsff{word-spacing:33.533753px;}
.ws56{word-spacing:33.534112px;}
.wsc5{word-spacing:33.712362px;}
.wsa6{word-spacing:33.773872px;}
.wsbe{word-spacing:33.893423px;}
.ws21{word-spacing:34.489864px;}
.ws86{word-spacing:35.207350px;}
.ws89{word-spacing:35.266827px;}
.ws137{word-spacing:35.686631px;}
.ws33{word-spacing:36.043671px;}
.ws105{word-spacing:36.402802px;}
.ws125{word-spacing:36.581950px;}
.ws5d{word-spacing:37.659046px;}
.ws74{word-spacing:38.734409px;}
.ws123{word-spacing:38.757463px;}
.ws3c{word-spacing:42.379944px;}
.ws5{word-spacing:50.067021px;}
.ws6{word-spacing:50.067164px;}
.ws176{word-spacing:57.672122px;}
.ws11a{word-spacing:71.688986px;}
.ws94{word-spacing:155.004013px;}
.ws92{word-spacing:164.520158px;}
._3{margin-left:-8.056807px;}
._5{margin-left:-5.810227px;}
._7{margin-left:-3.980420px;}
._4{margin-left:-2.788895px;}
._0{margin-left:-1.734547px;}
._1{width:1.636365px;}
._a{width:2.988499px;}
._2{width:14.596376px;}
._9{width:18.478721px;}
._8{width:23.188940px;}
._6{width:29.477280px;}
._22{width:30.529011px;}
._b{width:33.474516px;}
._d{width:35.437516px;}
._c{width:41.512516px;}
._23{width:48.086878px;}
._25{width:51.216157px;}
._24{width:52.991796px;}
._20{width:56.050477px;}
._f{width:58.079641px;}
._e{width:59.705939px;}
._21{width:66.733192px;}
._10{width:67.761280px;}
._1c{width:71.736015px;}
._1a{width:73.980015px;}
._1f{width:79.898511px;}
._16{width:83.655705px;}
._1d{width:89.576001px;}
._1e{width:96.373440px;}
._1b{width:99.253401px;}
._11{width:108.935691px;}
._12{width:115.733730px;}
._17{width:125.417730px;}
._15{width:126.896775px;}
._19{width:135.514620px;}
._13{width:145.198620px;}
._18{width:154.292775px;}
._14{width:163.976775px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(89,89,89);}
.fc4{color:rgb(38,38,38);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(178,178,178);}
.fsc{font-size:32.621220px;}
.fs0{font-size:32.727300px;}
.fs9{font-size:35.865600px;}
.fs13{font-size:36.926640px;}
.fs12{font-size:36.978180px;}
.fsb{font-size:36.980400px;}
.fsd{font-size:38.058240px;}
.fs10{font-size:38.256600px;}
.fs11{font-size:38.719380px;}
.fs15{font-size:40.892280px;}
.fs14{font-size:40.943760px;}
.fsa{font-size:41.842800px;}
.fs7{font-size:46.027200px;}
.fs3{font-size:47.820600px;}
.fsf{font-size:48.600000px;}
.fse{font-size:48.932640px;}
.fs8{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fs6{font-size:65.753400px;}
.fs2{font-size:71.731200px;}
.fs1{font-size:103.292400px;}
.fs5{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y6c{bottom:0.491850px;}
.yab{bottom:0.840000px;}
.ya9{bottom:1.248000px;}
.ye2{bottom:2.756250px;}
.y165{bottom:2.785500px;}
.ye1{bottom:17.100000px;}
.yee{bottom:27.681000px;}
.y164{bottom:29.685000px;}
.y6b{bottom:35.100300px;}
.ye3{bottom:36.976500px;}
.y69{bottom:44.026500px;}
.y162{bottom:45.029700px;}
.ye4{bottom:55.498050px;}
.y15c{bottom:57.057000px;}
.ya2{bottom:59.124750px;}
.yef{bottom:64.738650px;}
.ya0{bottom:66.763500px;}
.ye5{bottom:74.020050px;}
.y163{bottom:80.232000px;}
.y9f{bottom:80.233170px;}
.yf4{bottom:80.836500px;}
.y6a{bottom:83.300100px;}
.y9e{bottom:85.126500px;}
.y15d{bottom:85.640250px;}
.ye6{bottom:92.542050px;}
.yed{bottom:95.772000px;}
.y6e{bottom:99.355500px;}
.yf0{bottom:101.796300px;}
.ya1{bottom:106.385250px;}
.y7{bottom:108.000000px;}
.ye7{bottom:111.064050px;}
.yd2{bottom:113.332500px;}
.y110{bottom:113.334000px;}
.y17c{bottom:113.334450px;}
.y147{bottom:113.334750px;}
.y67{bottom:113.335170px;}
.y9c{bottom:113.349600px;}
.y15e{bottom:114.224100px;}
.y1{bottom:115.653000px;}
.y3b{bottom:117.554340px;}
.ya4{bottom:122.587500px;}
.y71{bottom:127.615500px;}
.y3a{bottom:128.047890px;}
.ye8{bottom:129.586050px;}
.yd1{bottom:130.906500px;}
.y10f{bottom:130.908000px;}
.y17b{bottom:130.908450px;}
.y146{bottom:130.908750px;}
.y66{bottom:130.909170px;}
.y9b{bottom:130.923600px;}
.y1c4{bottom:136.284495px;}
.yf1{bottom:138.853950px;}
.y39{bottom:141.228555px;}
.y15f{bottom:142.796700px;}
.ye9{bottom:148.108050px;}
.yd0{bottom:148.480500px;}
.y10e{bottom:148.482000px;}
.y17a{bottom:148.482450px;}
.y145{bottom:148.482750px;}
.y65{bottom:148.483170px;}
.y9a{bottom:148.497600px;}
.y1c3{bottom:149.464575px;}
.y6f{bottom:149.928000px;}
.y38{bottom:154.409220px;}
.ya7{bottom:158.050170px;}
.ya6{bottom:162.535500px;}
.y1c2{bottom:162.645240px;}
.ycf{bottom:166.054500px;}
.y10d{bottom:166.056000px;}
.y179{bottom:166.056450px;}
.y144{bottom:166.056750px;}
.y64{bottom:166.057170px;}
.y6d{bottom:166.291350px;}
.y70{bottom:166.291500px;}
.yea{bottom:166.629600px;}
.y99{bottom:166.848600px;}
.y160{bottom:171.379950px;}
.ya5{bottom:175.774500px;}
.y1c1{bottom:175.825905px;}
.yf2{bottom:175.911600px;}
.y10c{bottom:183.630000px;}
.y178{bottom:183.630450px;}
.y143{bottom:183.630750px;}
.y63{bottom:183.631170px;}
.y98{bottom:184.422600px;}
.yeb{bottom:185.151600px;}
.y37{bottom:186.480570px;}
.y1c0{bottom:189.006570px;}
.ya3{bottom:191.609850px;}
.y161{bottom:199.963200px;}
.y10b{bottom:201.204000px;}
.y177{bottom:201.204450px;}
.y142{bottom:201.204750px;}
.y62{bottom:201.205170px;}
.y97{bottom:201.996600px;}
.y1bf{bottom:202.186650px;}
.yec{bottom:203.673600px;}
.y36{bottom:204.056370px;}
.yce{bottom:204.096315px;}
.yf3{bottom:212.968650px;}
.y1be{bottom:215.367315px;}
.ycd{bottom:218.742405px;}
.y10a{bottom:218.778000px;}
.y176{bottom:218.778450px;}
.y141{bottom:218.778750px;}
.y61{bottom:218.779170px;}
.y96{bottom:219.570600px;}
.y35{bottom:221.993070px;}
.y1bd{bottom:228.547980px;}
.ycc{bottom:233.386740px;}
.y109{bottom:236.352000px;}
.y175{bottom:236.352450px;}
.y140{bottom:236.352750px;}
.y95{bottom:237.144600px;}
.ya8{bottom:238.135500px;}
.yaa{bottom:238.312500px;}
.y34{bottom:239.567070px;}
.y60{bottom:241.047720px;}
.y1bc{bottom:241.728645px;}
.ycb{bottom:248.031075px;}
.y13f{bottom:253.817250px;}
.y108{bottom:253.926000px;}
.y174{bottom:253.926450px;}
.y94{bottom:254.718600px;}
.y1bb{bottom:254.908725px;}
.y33{bottom:257.141070px;}
.yca{bottom:262.677165px;}
.y5f{bottom:263.315670px;}
.y1ba{bottom:268.089390px;}
.y13e{bottom:271.391250px;}
.y107{bottom:271.500000px;}
.y173{bottom:271.500450px;}
.y93{bottom:272.292600px;}
.y32{bottom:274.715070px;}
.yc9{bottom:277.321500px;}
.y1b9{bottom:281.270055px;}
.y13d{bottom:288.965250px;}
.y106{bottom:289.074000px;}
.y92{bottom:289.866600px;}
.y5e{bottom:290.898720px;}
.y31{bottom:292.289070px;}
.y1b8{bottom:294.450135px;}
.yc8{bottom:296.110500px;}
.y172{bottom:297.107100px;}
.y13c{bottom:306.539250px;}
.y105{bottom:306.648000px;}
.y91{bottom:307.440600px;}
.y1b7{bottom:307.630800px;}
.y5d{bottom:308.472720px;}
.y30{bottom:309.863070px;}
.y1b6{bottom:320.811465px;}
.y13b{bottom:324.113250px;}
.y104{bottom:324.222000px;}
.y5c{bottom:326.046720px;}
.y2f{bottom:327.437070px;}
.yc7{bottom:328.341000px;}
.y171{bottom:329.481300px;}
.y90{bottom:332.439600px;}
.y1b5{bottom:333.992130px;}
.y13a{bottom:341.687250px;}
.y103{bottom:341.796000px;}
.y5b{bottom:343.620720px;}
.y2e{bottom:345.011070px;}
.yc6{bottom:345.915000px;}
.y170{bottom:347.055300px;}
.y1b4{bottom:347.172210px;}
.y139{bottom:359.261250px;}
.y1b3{bottom:360.352875px;}
.y5a{bottom:361.194720px;}
.y102{bottom:362.002650px;}
.y2d{bottom:362.585070px;}
.yc5{bottom:363.489000px;}
.y16f{bottom:364.629300px;}
.y8f{bottom:366.702300px;}
.y1b2{bottom:373.533540px;}
.y138{bottom:376.835250px;}
.y59{bottom:378.768720px;}
.y101{bottom:379.576650px;}
.y2c{bottom:380.159070px;}
.yc4{bottom:381.063000px;}
.y16e{bottom:382.203300px;}
.y8e{bottom:384.275700px;}
.y1b1{bottom:386.714205px;}
.y58{bottom:396.342720px;}
.y100{bottom:397.150650px;}
.y2b{bottom:397.733070px;}
.yc3{bottom:398.637000px;}
.y137{bottom:399.008250px;}
.y16d{bottom:399.777300px;}
.y1b0{bottom:399.894285px;}
.y8d{bottom:401.849100px;}
.y1af{bottom:413.074950px;}
.y57{bottom:413.903220px;}
.yff{bottom:414.724650px;}
.y2a{bottom:415.307070px;}
.yc2{bottom:416.211000px;}
.y16c{bottom:417.351300px;}
.y8c{bottom:419.422500px;}
.y136{bottom:426.015300px;}
.y1ae{bottom:426.255615px;}
.y56{bottom:431.477220px;}
.yfe{bottom:432.298650px;}
.y29{bottom:432.881070px;}
.yc1{bottom:433.785000px;}
.y16b{bottom:434.925300px;}
.y8b{bottom:436.995900px;}
.y1ad{bottom:439.435695px;}
.y135{bottom:443.589300px;}
.y55{bottom:449.051220px;}
.yfd{bottom:449.872650px;}
.y28{bottom:450.455070px;}
.y16a{bottom:452.499300px;}
.y1ac{bottom:452.616360px;}
.y8a{bottom:454.569300px;}
.yc0{bottom:455.929950px;}
.y134{bottom:461.163300px;}
.y1ab{bottom:465.797025px;}
.y54{bottom:466.625220px;}
.yfc{bottom:467.446650px;}
.y27{bottom:468.391770px;}
.y169{bottom:470.073300px;}
.y89{bottom:472.142700px;}
.y133{bottom:478.737300px;}
.y1aa{bottom:478.977105px;}
.ybf{bottom:482.770650px;}
.y53{bottom:484.199220px;}
.yfb{bottom:485.020650px;}
.y26{bottom:485.965770px;}
.y168{bottom:487.647300px;}
.y88{bottom:489.716100px;}
.y1a9{bottom:492.157770px;}
.y132{bottom:496.311300px;}
.ybe{bottom:500.344650px;}
.y52{bottom:501.773220px;}
.yfa{bottom:502.594650px;}
.y25{bottom:503.539770px;}
.y167{bottom:505.221300px;}
.y1a8{bottom:505.338435px;}
.y87{bottom:507.289500px;}
.y131{bottom:513.885300px;}
.ybd{bottom:517.918650px;}
.y1a7{bottom:518.518515px;}
.y51{bottom:519.347220px;}
.yf9{bottom:520.168650px;}
.y24{bottom:521.113770px;}
.y86{bottom:524.862900px;}
.y130{bottom:531.459300px;}
.y1a6{bottom:531.699180px;}
.ybc{bottom:535.492650px;}
.y166{bottom:535.881000px;}
.y50{bottom:536.921220px;}
.yf8{bottom:537.742650px;}
.y23{bottom:538.687770px;}
.y85{bottom:542.436300px;}
.y1a5{bottom:544.879845px;}
.y12f{bottom:549.033300px;}
.ybb{bottom:553.066650px;}
.y4f{bottom:554.495220px;}
.yf7{bottom:555.316650px;}
.y15b{bottom:556.084500px;}
.y22{bottom:556.261770px;}
.y1a4{bottom:558.060510px;}
.y84{bottom:560.009700px;}
.yba{bottom:570.640650px;}
.y12e{bottom:571.206300px;}
.y1a3{bottom:571.241175px;}
.y4e{bottom:572.056920px;}
.yf6{bottom:572.890650px;}
.y21{bottom:573.835770px;}
.y83{bottom:577.583100px;}
.y1a2{bottom:584.421840px;}
.yb9{bottom:588.214650px;}
.y4d{bottom:589.630920px;}
.y20{bottom:591.409770px;}
.y12d{bottom:593.377650px;}
.y82{bottom:595.156500px;}
.y1a1{bottom:597.602505px;}
.yb8{bottom:605.788650px;}
.y4c{bottom:607.204920px;}
.y1f{bottom:608.983770px;}
.yf5{bottom:609.094500px;}
.y1a0{bottom:610.782585px;}
.y81{bottom:612.729900px;}
.y12c{bottom:620.387100px;}
.yb7{bottom:623.362650px;}
.y19f{bottom:623.963250px;}
.y4b{bottom:624.778920px;}
.y80{bottom:630.303300px;}
.y1e{bottom:633.446070px;}
.ye0{bottom:635.635500px;}
.y19e{bottom:637.143915px;}
.y12b{bottom:637.961100px;}
.yb6{bottom:640.936650px;}
.y4a{bottom:642.352920px;}
.y7f{bottom:647.876700px;}
.y19d{bottom:650.323995px;}
.y12a{bottom:655.535100px;}
.yb5{bottom:658.510650px;}
.y49{bottom:659.926920px;}
.y19c{bottom:663.504660px;}
.y7e{bottom:665.450100px;}
.y1d{bottom:668.349270px;}
.y129{bottom:673.109100px;}
.yb4{bottom:676.084650px;}
.y19b{bottom:676.685325px;}
.y48{bottom:677.500920px;}
.y1c{bottom:682.993605px;}
.y7d{bottom:683.024100px;}
.y19a{bottom:689.865990px;}
.y128{bottom:690.683100px;}
.yb3{bottom:693.658650px;}
.y47{bottom:695.074920px;}
.y1b{bottom:698.002905px;}
.y7c{bottom:701.375100px;}
.y199{bottom:703.046655px;}
.y127{bottom:708.257100px;}
.yb2{bottom:711.232650px;}
.y1a{bottom:712.647240px;}
.y46{bottom:712.648920px;}
.y198{bottom:716.227320px;}
.y7b{bottom:718.948500px;}
.y126{bottom:725.831100px;}
.y19{bottom:727.293330px;}
.yb1{bottom:728.670150px;}
.y197{bottom:729.407400px;}
.y45{bottom:730.222920px;}
.y7a{bottom:736.521900px;}
.y18{bottom:741.937665px;}
.y196{bottom:742.588065px;}
.y125{bottom:743.405100px;}
.yb0{bottom:746.244150px;}
.y44{bottom:747.796920px;}
.y79{bottom:754.095300px;}
.y195{bottom:755.768730px;}
.y17{bottom:756.583170px;}
.y124{bottom:760.979100px;}
.yaf{bottom:763.818150px;}
.y43{bottom:765.370920px;}
.y194{bottom:768.949395px;}
.y16{bottom:771.228675px;}
.y78{bottom:771.668700px;}
.y123{bottom:778.553100px;}
.yae{bottom:781.392150px;}
.y193{bottom:782.129475px;}
.y42{bottom:782.944920px;}
.y15{bottom:785.873010px;}
.y77{bottom:789.242100px;}
.y15a{bottom:792.012000px;}
.y192{bottom:795.310140px;}
.y122{bottom:796.127100px;}
.yad{bottom:798.966150px;}
.y14{bottom:800.517345px;}
.y41{bottom:800.518920px;}
.y76{bottom:806.815500px;}
.y191{bottom:808.490805px;}
.y159{bottom:809.586000px;}
.y121{bottom:813.591600px;}
.y13{bottom:815.163435px;}
.y40{bottom:818.092920px;}
.y190{bottom:821.670885px;}
.y75{bottom:824.388900px;}
.y158{bottom:827.160000px;}
.y12{bottom:829.807770px;}
.y120{bottom:831.165600px;}
.y18f{bottom:834.851550px;}
.y3f{bottom:835.666920px;}
.y74{bottom:841.962300px;}
.yac{bottom:842.836500px;}
.y11{bottom:844.452105px;}
.y157{bottom:844.734000px;}
.y18e{bottom:848.032215px;}
.y11f{bottom:848.739600px;}
.y3e{bottom:853.240920px;}
.y10{bottom:859.098195px;}
.y73{bottom:859.535700px;}
.y6{bottom:860.323500px;}
.y18d{bottom:861.212295px;}
.y156{bottom:862.308000px;}
.y9d{bottom:863.041500px;}
.y11e{bottom:866.313600px;}
.y3d{bottom:870.814920px;}
.yf{bottom:873.742530px;}
.y18c{bottom:874.392960px;}
.y155{bottom:879.882000px;}
.y11d{bottom:883.887600px;}
.y18b{bottom:887.573625px;}
.ye{bottom:888.387450px;}
.y3c{bottom:888.388920px;}
.ydf{bottom:888.747000px;}
.y154{bottom:897.456000px;}
.y18a{bottom:900.753705px;}
.y11c{bottom:901.461000px;}
.yde{bottom:906.321000px;}
.y72{bottom:906.934500px;}
.y5{bottom:908.674500px;}
.y189{bottom:913.934370px;}
.ydd{bottom:923.895000px;}
.y188{bottom:927.115035px;}
.y68{bottom:927.139500px;}
.y4{bottom:938.032500px;}
.yd{bottom:938.658000px;}
.y187{bottom:940.295115px;}
.ydc{bottom:941.469000px;}
.y153{bottom:949.843500px;}
.y11b{bottom:952.493220px;}
.y186{bottom:953.475780px;}
.yc{bottom:956.781000px;}
.y3{bottom:958.954500px;}
.ydb{bottom:959.043000px;}
.y152{bottom:960.999000px;}
.y185{bottom:966.656445px;}
.y11a{bottom:967.139310px;}
.y151{bottom:972.156000px;}
.yb{bottom:975.121500px;}
.yda{bottom:976.617000px;}
.y184{bottom:979.837110px;}
.y119{bottom:981.783645px;}
.y150{bottom:983.311500px;}
.y183{bottom:993.017190px;}
.ya{bottom:993.969300px;}
.yd9{bottom:994.191000px;}
.y14f{bottom:994.467000px;}
.y118{bottom:996.427980px;}
.y2{bottom:1002.291000px;}
.y14e{bottom:1005.622500px;}
.y182{bottom:1006.197855px;}
.y117{bottom:1011.074070px;}
.yd8{bottom:1011.765000px;}
.y14d{bottom:1016.778000px;}
.y181{bottom:1019.378520px;}
.y116{bottom:1025.718405px;}
.y14c{bottom:1027.935000px;}
.yd7{bottom:1029.339000px;}
.y180{bottom:1032.558600px;}
.y14a{bottom:1039.089825px;}
.y9{bottom:1040.325150px;}
.y115{bottom:1040.362740px;}
.y149{bottom:1044.141000px;}
.yd6{bottom:1046.913000px;}
.y14b{bottom:1049.761500px;}
.y17f{bottom:1054.399950px;}
.y114{bottom:1055.008830px;}
.yd5{bottom:1064.487000px;}
.y113{bottom:1069.653165px;}
.y8{bottom:1081.332000px;}
.yd4{bottom:1082.061000px;}
.y17e{bottom:1082.061450px;}
.y112{bottom:1084.297500px;}
.y148{bottom:1086.454335px;}
.yd3{bottom:1099.635000px;}
.y17d{bottom:1099.635450px;}
.y111{bottom:1103.086500px;}
.h16{height:22.280293px;}
.h17{height:22.573884px;}
.h1{height:24.545475px;}
.hf{height:24.675533px;}
.h12{height:25.257613px;}
.h22{height:25.585401px;}
.h13{height:25.590437px;}
.h21{height:25.621112px;}
.h1f{height:26.638933px;}
.h24{height:27.734071px;}
.h23{height:27.768986px;}
.h4{height:31.800699px;}
.h25{height:32.804932px;}
.he{height:32.900573px;}
.h1d{height:33.631200px;}
.h19{height:33.861387px;}
.h1b{height:37.013299px;}
.hc{height:37.336090px;}
.hb{height:37.605082px;}
.ha{height:41.006062px;}
.hd{height:41.125613px;}
.h1a{height:41.484266px;}
.h15{height:41.852293px;}
.h10{height:42.141798px;}
.h18{height:43.484293px;}
.h6{height:44.831700px;}
.h9{height:45.238339px;}
.h1e{height:49.120933px;}
.h5{height:51.216077px;}
.h8{height:55.420594px;}
.h3{height:57.828699px;}
.h2{height:73.027727px;}
.h7{height:98.701718px;}
.h11{height:185.049000px;}
.h20{height:210.591000px;}
.h1c{height:222.232500px;}
.h14{height:249.147000px;}
.h0{height:1188.000000px;}
.w3{width:274.288500px;}
.w4{width:376.579350px;}
.w2{width:376.585500px;}
.w1{width:376.588350px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x11{left:1.280250px;}
.x16{left:8.722800px;}
.x2b{left:9.769950px;}
.x3a{left:13.322400px;}
.x2a{left:14.326200px;}
.x29{left:17.363700px;}
.x38{left:19.207515px;}
.x1f{left:24.285000px;}
.x37{left:30.870600px;}
.x27{left:35.445300px;}
.x1{left:44.565000px;}
.x39{left:51.213765px;}
.x21{left:70.471500px;}
.xb{left:73.446555px;}
.x3c{left:74.899200px;}
.x33{left:84.500400px;}
.xd{left:86.148660px;}
.xa{left:88.390905px;}
.x20{left:91.729500px;}
.x15{left:93.964350px;}
.x28{left:98.853150px;}
.x4{left:104.866350px;}
.x2{left:108.000000px;}
.x1e{left:115.095000px;}
.x1a{left:120.165000px;}
.x2e{left:121.309500px;}
.x26{left:124.597200px;}
.x19{left:126.277800px;}
.x14{left:145.567950px;}
.x12{left:147.062700px;}
.x32{left:149.081850px;}
.x8{left:175.598190px;}
.x1b{left:177.593865px;}
.x3b{left:182.236350px;}
.xc{left:203.430390px;}
.x3d{left:208.122075px;}
.x6{left:211.462350px;}
.x17{left:225.893850px;}
.x22{left:234.096000px;}
.x31{left:238.953000px;}
.x2c{left:245.142300px;}
.x13{left:263.074800px;}
.x9{left:268.339740px;}
.x2d{left:273.492300px;}
.x1c{left:295.479000px;}
.x1d{left:300.589545px;}
.x7{left:303.592740px;}
.x34{left:319.671000px;}
.x18{left:335.957850px;}
.x5{left:357.071850px;}
.x35{left:363.076500px;}
.x36{left:409.302000px;}
.x3{left:455.263500px;}
.xe{left:467.967585px;}
.x25{left:474.805500px;}
.xf{left:482.910750px;}
.x2f{left:490.829400px;}
.x3f{left:495.355395px;}
.x23{left:519.811500px;}
.x30{left:561.568620px;}
.x24{left:570.864150px;}
.x10{left:598.779285px;}
.x3e{left:614.417940px;}
@media print{
.v2{vertical-align:-23.136000pt;}
.v4{vertical-align:-15.004160pt;}
.v5{vertical-align:-7.968747pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:17.397333pt;}
.v7{vertical-align:18.848000pt;}
.v8{vertical-align:19.984000pt;}
.v3{vertical-align:21.114560pt;}
.v1{vertical-align:23.136000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000160pt;}
.lsa{letter-spacing:0.014114pt;}
.lsb{letter-spacing:0.025259pt;}
.ls6{letter-spacing:0.030485pt;}
.lsd{letter-spacing:2.122169pt;}
.ls0{letter-spacing:2.653258pt;}
.ls4{letter-spacing:2.653867pt;}
.lsc{letter-spacing:2.655551pt;}
.ls8{letter-spacing:2.656380pt;}
.ls3{letter-spacing:2.658027pt;}
.ls1{letter-spacing:2.658591pt;}
.ls9{letter-spacing:2.662362pt;}
.ls5{letter-spacing:17.536800pt;}
.wsa{word-spacing:-26.566933pt;}
.wse4{word-spacing:-23.910400pt;}
.ws67{word-spacing:-18.596800pt;}
.wsc{word-spacing:-11.955200pt;}
.ws13c{word-spacing:-10.626800pt;}
.wse3{word-spacing:-10.263013pt;}
.ws121{word-spacing:-7.428505pt;}
.ws122{word-spacing:-7.418152pt;}
.ws93{word-spacing:-7.249160pt;}
.ws17f{word-spacing:-0.297380pt;}
.ws16b{word-spacing:-0.084887pt;}
.ws3{word-spacing:-0.063761pt;}
.ws66{word-spacing:-0.053134pt;}
.wse6{word-spacing:-0.047821pt;}
.ws1f{word-spacing:-0.042507pt;}
.ws118{word-spacing:-0.034417pt;}
.ws4{word-spacing:0.000000pt;}
.ws144{word-spacing:0.127649pt;}
.ws140{word-spacing:0.850527pt;}
.ws156{word-spacing:1.147949pt;}
.ws188{word-spacing:1.615146pt;}
.ws179{word-spacing:1.700033pt;}
.ws14e{word-spacing:2.125785pt;}
.ws155{word-spacing:2.209907pt;}
.ws1b{word-spacing:3.586321pt;}
.ws174{word-spacing:3.996399pt;}
.ws157{word-spacing:4.249912pt;}
.ws171{word-spacing:4.250040pt;}
.ws189{word-spacing:4.250295pt;}
.ws168{word-spacing:4.250550pt;}
.ws14f{word-spacing:4.251698pt;}
.ws148{word-spacing:4.718002pt;}
.ws183{word-spacing:4.845056pt;}
.wsfc{word-spacing:5.312483pt;}
.ws85{word-spacing:5.312643pt;}
.ws5f{word-spacing:5.312749pt;}
.ws9{word-spacing:5.313812pt;}
.ws103{word-spacing:5.314449pt;}
.ws15d{word-spacing:5.354972pt;}
.ws15e{word-spacing:5.737919pt;}
.ws17a{word-spacing:6.332850pt;}
.ws175{word-spacing:6.885444pt;}
.ws164{word-spacing:8.841710pt;}
.ws13b{word-spacing:9.308354pt;}
.ws0{word-spacing:9.658190pt;}
.ws14d{word-spacing:9.819291pt;}
.ws159{word-spacing:10.200963pt;}
.ws17e{word-spacing:10.286912pt;}
.ws16a{word-spacing:10.456176pt;}
.ws13e{word-spacing:10.624165pt;}
.ws143{word-spacing:10.709238pt;}
.ws145{word-spacing:10.710879pt;}
.ws13f{word-spacing:11.433417pt;}
.ws153{word-spacing:11.434054pt;}
.ws146{word-spacing:11.816066pt;}
.ws117{word-spacing:12.011130pt;}
.ws119{word-spacing:12.011337pt;}
.ws11b{word-spacing:12.012576pt;}
.ws142{word-spacing:12.071535pt;}
.ws187{word-spacing:12.198886pt;}
.ws178{word-spacing:12.284071pt;}
.ws6b{word-spacing:12.326313pt;}
.ws163{word-spacing:12.368788pt;}
.ws11e{word-spacing:12.379553pt;}
.ws170{word-spacing:12.412017pt;}
.ws186{word-spacing:12.455162pt;}
.ws113{word-spacing:12.681972pt;}
.ws116{word-spacing:12.684519pt;}
.ws114{word-spacing:12.690597pt;}
.ws115{word-spacing:12.712914pt;}
.ws61{word-spacing:12.751278pt;}
.ws7f{word-spacing:12.752872pt;}
.wsbb{word-spacing:12.752978pt;}
.ws154{word-spacing:12.795135pt;}
.ws102{word-spacing:12.912220pt;}
.wsd3{word-spacing:12.965248pt;}
.ws169{word-spacing:13.093153pt;}
.ws88{word-spacing:13.124862pt;}
.ws181{word-spacing:13.219739pt;}
.ws35{word-spacing:13.283467pt;}
.ws14{word-spacing:13.580294pt;}
.wsef{word-spacing:13.602589pt;}
.ws79{word-spacing:13.654766pt;}
.ws76{word-spacing:13.655829pt;}
.wsdf{word-spacing:14.028244pt;}
.wsce{word-spacing:14.132918pt;}
.wsb8{word-spacing:14.186317pt;}
.ws185{word-spacing:14.196810pt;}
.wscd{word-spacing:14.239717pt;}
.ws75{word-spacing:14.292001pt;}
.ws31{word-spacing:14.292319pt;}
.wscf{word-spacing:14.505121pt;}
.ws173{word-spacing:14.579247pt;}
.ws2b{word-spacing:14.611335pt;}
.ws17{word-spacing:14.633500pt;}
.ws132{word-spacing:14.663938pt;}
.wscc{word-spacing:14.664947pt;}
.ws12e{word-spacing:14.717975pt;}
.ws16d{word-spacing:14.750976pt;}
.ws9a{word-spacing:14.770684pt;}
.wsa5{word-spacing:14.824455pt;}
.ws95{word-spacing:14.834078pt;}
.wsc7{word-spacing:14.834205pt;}
.ws69{word-spacing:14.834333pt;}
.ws149{word-spacing:14.834843pt;}
.ws3b{word-spacing:14.835013pt;}
.ws158{word-spacing:14.835098pt;}
.ws112{word-spacing:14.835820pt;}
.ws13d{word-spacing:14.835863pt;}
.ws141{word-spacing:14.835990pt;}
.wse8{word-spacing:14.967289pt;}
.ws13{word-spacing:15.015349pt;}
.ws12c{word-spacing:15.035928pt;}
.ws46{word-spacing:15.036565pt;}
.wsc6{word-spacing:15.196073pt;}
.ws71{word-spacing:15.248410pt;}
.ws32{word-spacing:15.301544pt;}
.ws147{word-spacing:15.302549pt;}
.ws100{word-spacing:15.356006pt;}
.ws99{word-spacing:15.356219pt;}
.ws1c{word-spacing:15.446836pt;}
.ws182{word-spacing:15.457718pt;}
.wsd8{word-spacing:15.514983pt;}
.ws87{word-spacing:15.567160pt;}
.wsd1{word-spacing:15.567957pt;}
.ws77{word-spacing:15.779749pt;}
.wsca{word-spacing:15.833627pt;}
.wsd2{word-spacing:15.833733pt;}
.wsfb{word-spacing:15.839593pt;}
.wsa9{word-spacing:15.850865pt;}
.ws15c{word-spacing:15.939151pt;}
.ws16c{word-spacing:15.939265pt;}
.ws7e{word-spacing:15.940213pt;}
.ws29{word-spacing:16.045578pt;}
.wsd4{word-spacing:16.046428pt;}
.ws10f{word-spacing:16.098446pt;}
.wsee{word-spacing:16.312469pt;}
.ws15f{word-spacing:16.364252pt;}
.ws27{word-spacing:16.364965pt;}
.ws172{word-spacing:16.407099pt;}
.ws15{word-spacing:16.449447pt;}
.ws8a{word-spacing:16.523676pt;}
.ws81{word-spacing:16.577341pt;}
.ws59{word-spacing:16.578617pt;}
.wse2{word-spacing:16.682370pt;}
.wsb0{word-spacing:16.688359pt;}
.wsb4{word-spacing:16.688503pt;}
.wse7{word-spacing:16.688646pt;}
.wsb3{word-spacing:16.688790pt;}
.wse1{word-spacing:16.689172pt;}
.wsb5{word-spacing:16.689698pt;}
.wsb2{word-spacing:16.689937pt;}
.wse9{word-spacing:16.690081pt;}
.wsb6{word-spacing:16.690177pt;}
.ws25{word-spacing:16.736158pt;}
.ws126{word-spacing:16.737859pt;}
.ws166{word-spacing:16.831959pt;}
.wsad{word-spacing:16.842426pt;}
.ws161{word-spacing:16.874423pt;}
.wsc1{word-spacing:16.896729pt;}
.ws17b{word-spacing:16.960118pt;}
.ws167{word-spacing:17.046280pt;}
.ws44{word-spacing:17.267550pt;}
.wsf9{word-spacing:17.268241pt;}
.ws7c{word-spacing:17.374456pt;}
.wsb7{word-spacing:17.427589pt;}
.wscb{word-spacing:17.428918pt;}
.ws11c{word-spacing:17.480351pt;}
.ws18{word-spacing:17.502174pt;}
.ws160{word-spacing:17.682230pt;}
.wsd{word-spacing:17.694509pt;}
.ws109{word-spacing:17.745808pt;}
.ws101{word-spacing:17.746340pt;}
.ws1a{word-spacing:17.884071pt;}
.ws1d{word-spacing:17.884453pt;}
.wsc8{word-spacing:18.011318pt;}
.ws41{word-spacing:18.013018pt;}
.wsb9{word-spacing:18.118755pt;}
.ws3a{word-spacing:18.192061pt;}
.ws19{word-spacing:18.219486pt;}
.ws40{word-spacing:18.225501pt;}
.wsf4{word-spacing:18.277731pt;}
.wsec{word-spacing:18.331237pt;}
.ws23{word-spacing:18.332034pt;}
.wsf2{word-spacing:18.383999pt;}
.ws9f{word-spacing:18.490586pt;}
.ws11{word-spacing:18.505693pt;}
.wsaf{word-spacing:18.538549pt;}
.ws4e{word-spacing:18.542816pt;}
.wsb{word-spacing:18.542976pt;}
.ws8e{word-spacing:18.543241pt;}
.wsa7{word-spacing:18.543348pt;}
.ws5e{word-spacing:18.543507pt;}
.ws139{word-spacing:18.543613pt;}
.ws28{word-spacing:18.543719pt;}
.ws73{word-spacing:18.543826pt;}
.ws57{word-spacing:18.543985pt;}
.ws36{word-spacing:18.544145pt;}
.wsf0{word-spacing:18.544251pt;}
.wsfa{word-spacing:18.544516pt;}
.wsdc{word-spacing:18.596481pt;}
.wsbc{word-spacing:18.862895pt;}
.wsab{word-spacing:18.863160pt;}
.ws12b{word-spacing:18.967940pt;}
.ws138{word-spacing:18.969269pt;}
.ws96{word-spacing:19.021605pt;}
.ws6c{word-spacing:19.233982pt;}
.wsd7{word-spacing:19.234247pt;}
.ws62{word-spacing:19.234353pt;}
.ws65{word-spacing:19.288019pt;}
.wsdd{word-spacing:19.340249pt;}
.ws165{word-spacing:19.425450pt;}
.ws9d{word-spacing:19.446358pt;}
.ws14a{word-spacing:19.467660pt;}
.ws20{word-spacing:19.499970pt;}
.ws6f{word-spacing:19.605440pt;}
.ws136{word-spacing:19.765108pt;}
.ws54{word-spacing:19.818985pt;}
.ws2a{word-spacing:19.819145pt;}
.wsaa{word-spacing:19.871110pt;}
.ws10b{word-spacing:19.872651pt;}
.ws13a{word-spacing:19.893157pt;}
.ws124{word-spacing:19.977749pt;}
.ws12d{word-spacing:20.031787pt;}
.ws108{word-spacing:20.084123pt;}
.ws55{word-spacing:20.085133pt;}
.ws11f{word-spacing:20.296499pt;}
.ws7{word-spacing:20.397698pt;}
.ws8{word-spacing:20.398049pt;}
.ws14c{word-spacing:20.404519pt;}
.ws10{word-spacing:20.466394pt;}
.ws7d{word-spacing:20.669127pt;}
.wsc3{word-spacing:20.669393pt;}
.ws91{word-spacing:20.669712pt;}
.ws10c{word-spacing:20.669765pt;}
.ws26{word-spacing:20.721783pt;}
.ws2{word-spacing:20.722347pt;}
.ws11d{word-spacing:20.775236pt;}
.wsc2{word-spacing:20.829485pt;}
.ws135{word-spacing:20.881610pt;}
.wsa0{word-spacing:20.881769pt;}
.ws52{word-spacing:20.882035pt;}
.wsac{word-spacing:21.041117pt;}
.wsa4{word-spacing:21.146588pt;}
.wsba{word-spacing:21.199456pt;}
.wsc0{word-spacing:21.200891pt;}
.ws5a{word-spacing:21.358858pt;}
.ws16{word-spacing:21.470918pt;}
.ws2f{word-spacing:21.519375pt;}
.wsea{word-spacing:21.519886pt;}
.ws9c{word-spacing:21.677608pt;}
.wse0{word-spacing:21.783982pt;}
.ws49{word-spacing:21.784248pt;}
.ws2c{word-spacing:21.837488pt;}
.ws4a{word-spacing:21.890090pt;}
.ws4c{word-spacing:21.890356pt;}
.ws129{word-spacing:21.891525pt;}
.ws9b{word-spacing:21.944287pt;}
.ws15b{word-spacing:21.975712pt;}
.ws8d{word-spacing:21.998324pt;}
.ws17d{word-spacing:22.017667pt;}
.ws2e{word-spacing:22.050236pt;}
.ws133{word-spacing:22.050927pt;}
.wsf5{word-spacing:22.102838pt;}
.ws84{word-spacing:22.103370pt;}
.wsae{word-spacing:22.155972pt;}
.ws107{word-spacing:22.156769pt;}
.ws51{word-spacing:22.157301pt;}
.ws10a{word-spacing:22.209106pt;}
.wsf7{word-spacing:22.315214pt;}
.wsf1{word-spacing:22.369517pt;}
.ws48{word-spacing:22.580990pt;}
.ws98{word-spacing:22.635665pt;}
.ws8c{word-spacing:22.687736pt;}
.ws151{word-spacing:22.698377pt;}
.ws120{word-spacing:22.740445pt;}
.ws2d{word-spacing:22.847138pt;}
.ws12{word-spacing:22.907072pt;}
.ws15a{word-spacing:22.911126pt;}
.ws64{word-spacing:22.952874pt;}
.ws162{word-spacing:22.953080pt;}
.ws106{word-spacing:22.953140pt;}
.ws16f{word-spacing:22.953590pt;}
.ws80{word-spacing:23.059248pt;}
.ws24{word-spacing:23.219128pt;}
.ws38{word-spacing:23.219287pt;}
.wse{word-spacing:23.240335pt;}
.ws4d{word-spacing:23.325502pt;}
.ws17c{word-spacing:23.378067pt;}
.wsc9{word-spacing:23.431876pt;}
.wsde{word-spacing:23.484213pt;}
.wsbf{word-spacing:23.698608pt;}
.ws22{word-spacing:23.803228pt;}
.wsf6{word-spacing:23.804663pt;}
.wsa8{word-spacing:23.856883pt;}
.wsb1{word-spacing:23.861825pt;}
.wse5{word-spacing:23.958412pt;}
.wsfe{word-spacing:23.962471pt;}
.wsa2{word-spacing:24.016933pt;}
.ws104{word-spacing:24.068898pt;}
.ws10e{word-spacing:24.069270pt;}
.wsd9{word-spacing:24.069376pt;}
.ws63{word-spacing:24.282815pt;}
.ws58{word-spacing:24.442429pt;}
.ws43{word-spacing:24.494022pt;}
.ws8f{word-spacing:24.494394pt;}
.ws90{word-spacing:24.547103pt;}
.ws70{word-spacing:24.548325pt;}
.ws12a{word-spacing:24.600768pt;}
.ws5c{word-spacing:24.759372pt;}
.ws97{word-spacing:24.760913pt;}
.ws128{word-spacing:24.812878pt;}
.ws110{word-spacing:24.973449pt;}
.wsf3{word-spacing:25.025360pt;}
.ws16e{word-spacing:25.078313pt;}
.wsc4{word-spacing:25.078441pt;}
.ws111{word-spacing:25.078919pt;}
.ws45{word-spacing:25.080195pt;}
.ws177{word-spacing:25.120778pt;}
.wsd0{word-spacing:25.132160pt;}
.wsf8{word-spacing:25.184603pt;}
.wsd5{word-spacing:25.184762pt;}
.ws72{word-spacing:25.237630pt;}
.wsf{word-spacing:25.248378pt;}
.ws3f{word-spacing:25.292199pt;}
.ws12f{word-spacing:25.450591pt;}
.ws39{word-spacing:25.632352pt;}
.wsda{word-spacing:25.662701pt;}
.ws6e{word-spacing:25.716048pt;}
.ws50{word-spacing:25.717163pt;}
.wsa1{word-spacing:25.822634pt;}
.ws82{word-spacing:25.823962pt;}
.wsbd{word-spacing:25.928371pt;}
.ws152{word-spacing:25.971049pt;}
.wsa3{word-spacing:26.034638pt;}
.ws130{word-spacing:26.088675pt;}
.ws9e{word-spacing:26.140853pt;}
.ws127{word-spacing:26.194252pt;}
.ws4b{word-spacing:26.194518pt;}
.ws4f{word-spacing:26.195846pt;}
.ws180{word-spacing:26.269620pt;}
.ws53{word-spacing:26.302061pt;}
.ws7b{word-spacing:26.406522pt;}
.ws60{word-spacing:26.407532pt;}
.ws184{word-spacing:26.523898pt;}
.ws34{word-spacing:26.567571pt;}
.ws14b{word-spacing:27.033814pt;}
.ws47{word-spacing:27.098166pt;}
.wsdb{word-spacing:27.205124pt;}
.ws8b{word-spacing:27.256770pt;}
.ws37{word-spacing:27.469306pt;}
.ws1{word-spacing:27.636455pt;}
.wsed{word-spacing:27.682001pt;}
.ws6d{word-spacing:27.736729pt;}
.ws42{word-spacing:27.789331pt;}
.ws5b{word-spacing:27.894536pt;}
.ws10d{word-spacing:27.895546pt;}
.ws7a{word-spacing:28.053778pt;}
.ws78{word-spacing:28.053938pt;}
.ws83{word-spacing:28.055054pt;}
.wseb{word-spacing:28.426034pt;}
.wsfd{word-spacing:28.426566pt;}
.ws68{word-spacing:28.638782pt;}
.ws30{word-spacing:28.797971pt;}
.ws3e{word-spacing:28.798928pt;}
.ws6a{word-spacing:28.904558pt;}
.ws134{word-spacing:28.957001pt;}
.ws131{word-spacing:29.117837pt;}
.ws1e{word-spacing:29.169643pt;}
.ws3d{word-spacing:29.276548pt;}
.ws150{word-spacing:29.286908pt;}
.wsd6{word-spacing:29.488286pt;}
.wsff{word-spacing:29.807780pt;}
.ws56{word-spacing:29.808099pt;}
.wsc5{word-spacing:29.966544pt;}
.wsa6{word-spacing:30.021219pt;}
.wsbe{word-spacing:30.127487pt;}
.ws21{word-spacing:30.657657pt;}
.ws86{word-spacing:31.295422pt;}
.ws89{word-spacing:31.348291pt;}
.ws137{word-spacing:31.721450pt;}
.ws33{word-spacing:32.038818pt;}
.ws105{word-spacing:32.358047pt;}
.ws125{word-spacing:32.517289pt;}
.ws5d{word-spacing:33.474708pt;}
.ws74{word-spacing:34.430586pt;}
.ws123{word-spacing:34.451078pt;}
.ws3c{word-spacing:37.671061pt;}
.ws5{word-spacing:44.504018pt;}
.ws6{word-spacing:44.504146pt;}
.ws176{word-spacing:51.264108pt;}
.ws11a{word-spacing:63.723543pt;}
.ws94{word-spacing:137.781345pt;}
.ws92{word-spacing:146.240141pt;}
._3{margin-left:-7.161606pt;}
._5{margin-left:-5.164646pt;}
._7{margin-left:-3.538151pt;}
._4{margin-left:-2.479018pt;}
._0{margin-left:-1.541819pt;}
._1{width:1.454547pt;}
._a{width:2.656444pt;}
._2{width:12.974556pt;}
._9{width:16.425529pt;}
._8{width:20.612391pt;}
._6{width:26.202027pt;}
._22{width:27.136899pt;}
._b{width:29.755125pt;}
._d{width:31.500014pt;}
._c{width:36.900014pt;}
._23{width:42.743892pt;}
._25{width:45.525473pt;}
._24{width:47.103819pt;}
._20{width:49.822647pt;}
._f{width:51.626347pt;}
._e{width:53.071946pt;}
._21{width:59.318393pt;}
._10{width:60.232249pt;}
._1c{width:63.765347pt;}
._1a{width:65.760013pt;}
._1f{width:71.020899pt;}
._16{width:74.360627pt;}
._1d{width:79.623112pt;}
._1e{width:85.665280pt;}
._1b{width:88.225245pt;}
._11{width:96.831725pt;}
._12{width:102.874427pt;}
._17{width:111.482427pt;}
._15{width:112.797133pt;}
._19{width:120.457440pt;}
._13{width:129.065440pt;}
._18{width:137.149133pt;}
._14{width:145.757133pt;}
.fsc{font-size:28.996640pt;}
.fs0{font-size:29.090933pt;}
.fs9{font-size:31.880533pt;}
.fs13{font-size:32.823680pt;}
.fs12{font-size:32.869493pt;}
.fsb{font-size:32.871467pt;}
.fsd{font-size:33.829547pt;}
.fs10{font-size:34.005867pt;}
.fs11{font-size:34.417227pt;}
.fs15{font-size:36.348693pt;}
.fs14{font-size:36.394453pt;}
.fsa{font-size:37.193600pt;}
.fs7{font-size:40.913067pt;}
.fs3{font-size:42.507200pt;}
.fsf{font-size:43.200000pt;}
.fse{font-size:43.495680pt;}
.fs8{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fs6{font-size:58.447467pt;}
.fs2{font-size:63.761067pt;}
.fs1{font-size:91.815467pt;}
.fs5{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y6c{bottom:0.437200pt;}
.yab{bottom:0.746667pt;}
.ya9{bottom:1.109333pt;}
.ye2{bottom:2.450000pt;}
.y165{bottom:2.476000pt;}
.ye1{bottom:15.200000pt;}
.yee{bottom:24.605333pt;}
.y164{bottom:26.386667pt;}
.y6b{bottom:31.200267pt;}
.ye3{bottom:32.868000pt;}
.y69{bottom:39.134667pt;}
.y162{bottom:40.026400pt;}
.ye4{bottom:49.331600pt;}
.y15c{bottom:50.717333pt;}
.ya2{bottom:52.555333pt;}
.yef{bottom:57.545467pt;}
.ya0{bottom:59.345333pt;}
.ye5{bottom:65.795600pt;}
.y163{bottom:71.317333pt;}
.y9f{bottom:71.318373pt;}
.yf4{bottom:71.854667pt;}
.y6a{bottom:74.044533pt;}
.y9e{bottom:75.668000pt;}
.y15d{bottom:76.124667pt;}
.ye6{bottom:82.259600pt;}
.yed{bottom:85.130667pt;}
.y6e{bottom:88.316000pt;}
.yf0{bottom:90.485600pt;}
.ya1{bottom:94.564667pt;}
.y7{bottom:96.000000pt;}
.ye7{bottom:98.723600pt;}
.yd2{bottom:100.740000pt;}
.y110{bottom:100.741333pt;}
.y17c{bottom:100.741733pt;}
.y147{bottom:100.742000pt;}
.y67{bottom:100.742373pt;}
.y9c{bottom:100.755200pt;}
.y15e{bottom:101.532533pt;}
.y1{bottom:102.802667pt;}
.y3b{bottom:104.492747pt;}
.ya4{bottom:108.966667pt;}
.y71{bottom:113.436000pt;}
.y3a{bottom:113.820347pt;}
.ye8{bottom:115.187600pt;}
.yd1{bottom:116.361333pt;}
.y10f{bottom:116.362667pt;}
.y17b{bottom:116.363067pt;}
.y146{bottom:116.363333pt;}
.y66{bottom:116.363707pt;}
.y9b{bottom:116.376533pt;}
.y1c4{bottom:121.141773pt;}
.yf1{bottom:123.425733pt;}
.y39{bottom:125.536493pt;}
.y15f{bottom:126.930400pt;}
.ye9{bottom:131.651600pt;}
.yd0{bottom:131.982667pt;}
.y10e{bottom:131.984000pt;}
.y17a{bottom:131.984400pt;}
.y145{bottom:131.984667pt;}
.y65{bottom:131.985040pt;}
.y9a{bottom:131.997867pt;}
.y1c3{bottom:132.857400pt;}
.y6f{bottom:133.269333pt;}
.y38{bottom:137.252640pt;}
.ya7{bottom:140.489040pt;}
.ya6{bottom:144.476000pt;}
.y1c2{bottom:144.573547pt;}
.ycf{bottom:147.604000pt;}
.y10d{bottom:147.605333pt;}
.y179{bottom:147.605733pt;}
.y144{bottom:147.606000pt;}
.y64{bottom:147.606373pt;}
.y6d{bottom:147.814533pt;}
.y70{bottom:147.814667pt;}
.yea{bottom:148.115200pt;}
.y99{bottom:148.309867pt;}
.y160{bottom:152.337733pt;}
.ya5{bottom:156.244000pt;}
.y1c1{bottom:156.289693pt;}
.yf2{bottom:156.365867pt;}
.y10c{bottom:163.226667pt;}
.y178{bottom:163.227067pt;}
.y143{bottom:163.227333pt;}
.y63{bottom:163.227707pt;}
.y98{bottom:163.931200pt;}
.yeb{bottom:164.579200pt;}
.y37{bottom:165.760507pt;}
.y1c0{bottom:168.005840pt;}
.ya3{bottom:170.319867pt;}
.y161{bottom:177.745067pt;}
.y10b{bottom:178.848000pt;}
.y177{bottom:178.848400pt;}
.y142{bottom:178.848667pt;}
.y62{bottom:178.849040pt;}
.y97{bottom:179.552533pt;}
.y1bf{bottom:179.721467pt;}
.yec{bottom:181.043200pt;}
.y36{bottom:181.383440pt;}
.yce{bottom:181.418947pt;}
.yf3{bottom:189.305467pt;}
.y1be{bottom:191.437613pt;}
.ycd{bottom:194.437693pt;}
.y10a{bottom:194.469333pt;}
.y176{bottom:194.469733pt;}
.y141{bottom:194.470000pt;}
.y61{bottom:194.470373pt;}
.y96{bottom:195.173867pt;}
.y35{bottom:197.327173pt;}
.y1bd{bottom:203.153760pt;}
.ycc{bottom:207.454880pt;}
.y109{bottom:210.090667pt;}
.y175{bottom:210.091067pt;}
.y140{bottom:210.091333pt;}
.y95{bottom:210.795200pt;}
.ya8{bottom:211.676000pt;}
.yaa{bottom:211.833333pt;}
.y34{bottom:212.948507pt;}
.y60{bottom:214.264640pt;}
.y1bc{bottom:214.869907pt;}
.ycb{bottom:220.472067pt;}
.y13f{bottom:225.615333pt;}
.y108{bottom:225.712000pt;}
.y174{bottom:225.712400pt;}
.y94{bottom:226.416533pt;}
.y1bb{bottom:226.585533pt;}
.y33{bottom:228.569840pt;}
.yca{bottom:233.490813pt;}
.y5f{bottom:234.058373pt;}
.y1ba{bottom:238.301680pt;}
.y13e{bottom:241.236667pt;}
.y107{bottom:241.333333pt;}
.y173{bottom:241.333733pt;}
.y93{bottom:242.037867pt;}
.y32{bottom:244.191173pt;}
.yc9{bottom:246.508000pt;}
.y1b9{bottom:250.017827pt;}
.y13d{bottom:256.858000pt;}
.y106{bottom:256.954667pt;}
.y92{bottom:257.659200pt;}
.y5e{bottom:258.576640pt;}
.y31{bottom:259.812507pt;}
.y1b8{bottom:261.733453pt;}
.yc8{bottom:263.209333pt;}
.y172{bottom:264.095200pt;}
.y13c{bottom:272.479333pt;}
.y105{bottom:272.576000pt;}
.y91{bottom:273.280533pt;}
.y1b7{bottom:273.449600pt;}
.y5d{bottom:274.197973pt;}
.y30{bottom:275.433840pt;}
.y1b6{bottom:285.165747pt;}
.y13b{bottom:288.100667pt;}
.y104{bottom:288.197333pt;}
.y5c{bottom:289.819307pt;}
.y2f{bottom:291.055173pt;}
.yc7{bottom:291.858667pt;}
.y171{bottom:292.872267pt;}
.y90{bottom:295.501867pt;}
.y1b5{bottom:296.881893pt;}
.y13a{bottom:303.722000pt;}
.y103{bottom:303.818667pt;}
.y5b{bottom:305.440640pt;}
.y2e{bottom:306.676507pt;}
.yc6{bottom:307.480000pt;}
.y170{bottom:308.493600pt;}
.y1b4{bottom:308.597520pt;}
.y139{bottom:319.343333pt;}
.y1b3{bottom:320.313667pt;}
.y5a{bottom:321.061973pt;}
.y102{bottom:321.780133pt;}
.y2d{bottom:322.297840pt;}
.yc5{bottom:323.101333pt;}
.y16f{bottom:324.114933pt;}
.y8f{bottom:325.957600pt;}
.y1b2{bottom:332.029813pt;}
.y138{bottom:334.964667pt;}
.y59{bottom:336.683307pt;}
.y101{bottom:337.401467pt;}
.y2c{bottom:337.919173pt;}
.yc4{bottom:338.722667pt;}
.y16e{bottom:339.736267pt;}
.y8e{bottom:341.578400pt;}
.y1b1{bottom:343.745960pt;}
.y58{bottom:352.304640pt;}
.y100{bottom:353.022800pt;}
.y2b{bottom:353.540507pt;}
.yc3{bottom:354.344000pt;}
.y137{bottom:354.674000pt;}
.y16d{bottom:355.357600pt;}
.y1b0{bottom:355.461587pt;}
.y8d{bottom:357.199200pt;}
.y1af{bottom:367.177733pt;}
.y57{bottom:367.913973pt;}
.yff{bottom:368.644133pt;}
.y2a{bottom:369.161840pt;}
.yc2{bottom:369.965333pt;}
.y16c{bottom:370.978933pt;}
.y8c{bottom:372.820000pt;}
.y136{bottom:378.680267pt;}
.y1ae{bottom:378.893880pt;}
.y56{bottom:383.535307pt;}
.yfe{bottom:384.265467pt;}
.y29{bottom:384.783173pt;}
.yc1{bottom:385.586667pt;}
.y16b{bottom:386.600267pt;}
.y8b{bottom:388.440800pt;}
.y1ad{bottom:390.609507pt;}
.y135{bottom:394.301600pt;}
.y55{bottom:399.156640pt;}
.yfd{bottom:399.886800pt;}
.y28{bottom:400.404507pt;}
.y16a{bottom:402.221600pt;}
.y1ac{bottom:402.325653pt;}
.y8a{bottom:404.061600pt;}
.yc0{bottom:405.271067pt;}
.y134{bottom:409.922933pt;}
.y1ab{bottom:414.041800pt;}
.y54{bottom:414.777973pt;}
.yfc{bottom:415.508133pt;}
.y27{bottom:416.348240pt;}
.y169{bottom:417.842933pt;}
.y89{bottom:419.682400pt;}
.y133{bottom:425.544267pt;}
.y1aa{bottom:425.757427pt;}
.ybf{bottom:429.129467pt;}
.y53{bottom:430.399307pt;}
.yfb{bottom:431.129467pt;}
.y26{bottom:431.969573pt;}
.y168{bottom:433.464267pt;}
.y88{bottom:435.303200pt;}
.y1a9{bottom:437.473573pt;}
.y132{bottom:441.165600pt;}
.ybe{bottom:444.750800pt;}
.y52{bottom:446.020640pt;}
.yfa{bottom:446.750800pt;}
.y25{bottom:447.590907pt;}
.y167{bottom:449.085600pt;}
.y1a8{bottom:449.189720pt;}
.y87{bottom:450.924000pt;}
.y131{bottom:456.786933pt;}
.ybd{bottom:460.372133pt;}
.y1a7{bottom:460.905347pt;}
.y51{bottom:461.641973pt;}
.yf9{bottom:462.372133pt;}
.y24{bottom:463.212240pt;}
.y86{bottom:466.544800pt;}
.y130{bottom:472.408267pt;}
.y1a6{bottom:472.621493pt;}
.ybc{bottom:475.993467pt;}
.y166{bottom:476.338667pt;}
.y50{bottom:477.263307pt;}
.yf8{bottom:477.993467pt;}
.y23{bottom:478.833573pt;}
.y85{bottom:482.165600pt;}
.y1a5{bottom:484.337640pt;}
.y12f{bottom:488.029600pt;}
.ybb{bottom:491.614800pt;}
.y4f{bottom:492.884640pt;}
.yf7{bottom:493.614800pt;}
.y15b{bottom:494.297333pt;}
.y22{bottom:494.454907pt;}
.y1a4{bottom:496.053787pt;}
.y84{bottom:497.786400pt;}
.yba{bottom:507.236133pt;}
.y12e{bottom:507.738933pt;}
.y1a3{bottom:507.769933pt;}
.y4e{bottom:508.495040pt;}
.yf6{bottom:509.236133pt;}
.y21{bottom:510.076240pt;}
.y83{bottom:513.407200pt;}
.y1a2{bottom:519.486080pt;}
.yb9{bottom:522.857467pt;}
.y4d{bottom:524.116373pt;}
.y20{bottom:525.697573pt;}
.y12d{bottom:527.446800pt;}
.y82{bottom:529.028000pt;}
.y1a1{bottom:531.202227pt;}
.yb8{bottom:538.478800pt;}
.y4c{bottom:539.737707pt;}
.y1f{bottom:541.318907pt;}
.yf5{bottom:541.417333pt;}
.y1a0{bottom:542.917853pt;}
.y81{bottom:544.648800pt;}
.y12c{bottom:551.455200pt;}
.yb7{bottom:554.100133pt;}
.y19f{bottom:554.634000pt;}
.y4b{bottom:555.359040pt;}
.y80{bottom:560.269600pt;}
.y1e{bottom:563.063173pt;}
.ye0{bottom:565.009333pt;}
.y19e{bottom:566.350147pt;}
.y12b{bottom:567.076533pt;}
.yb6{bottom:569.721467pt;}
.y4a{bottom:570.980373pt;}
.y7f{bottom:575.890400pt;}
.y19d{bottom:578.065773pt;}
.y12a{bottom:582.697867pt;}
.yb5{bottom:585.342800pt;}
.y49{bottom:586.601707pt;}
.y19c{bottom:589.781920pt;}
.y7e{bottom:591.511200pt;}
.y1d{bottom:594.088240pt;}
.y129{bottom:598.319200pt;}
.yb4{bottom:600.964133pt;}
.y19b{bottom:601.498067pt;}
.y48{bottom:602.223040pt;}
.y1c{bottom:607.105427pt;}
.y7d{bottom:607.132533pt;}
.y19a{bottom:613.214213pt;}
.y128{bottom:613.940533pt;}
.yb3{bottom:616.585467pt;}
.y47{bottom:617.844373pt;}
.y1b{bottom:620.447027pt;}
.y7c{bottom:623.444533pt;}
.y199{bottom:624.930360pt;}
.y127{bottom:629.561867pt;}
.yb2{bottom:632.206800pt;}
.y1a{bottom:633.464213pt;}
.y46{bottom:633.465707pt;}
.y198{bottom:636.646507pt;}
.y7b{bottom:639.065333pt;}
.y126{bottom:645.183200pt;}
.y19{bottom:646.482960pt;}
.yb1{bottom:647.706800pt;}
.y197{bottom:648.362133pt;}
.y45{bottom:649.087040pt;}
.y7a{bottom:654.686133pt;}
.y18{bottom:659.500147pt;}
.y196{bottom:660.078280pt;}
.y125{bottom:660.804533pt;}
.yb0{bottom:663.328133pt;}
.y44{bottom:664.708373pt;}
.y79{bottom:670.306933pt;}
.y195{bottom:671.794427pt;}
.y17{bottom:672.518373pt;}
.y124{bottom:676.425867pt;}
.yaf{bottom:678.949467pt;}
.y43{bottom:680.329707pt;}
.y194{bottom:683.510573pt;}
.y16{bottom:685.536600pt;}
.y78{bottom:685.927733pt;}
.y123{bottom:692.047200pt;}
.yae{bottom:694.570800pt;}
.y193{bottom:695.226200pt;}
.y42{bottom:695.951040pt;}
.y15{bottom:698.553787pt;}
.y77{bottom:701.548533pt;}
.y15a{bottom:704.010667pt;}
.y192{bottom:706.942347pt;}
.y122{bottom:707.668533pt;}
.yad{bottom:710.192133pt;}
.y14{bottom:711.570973pt;}
.y41{bottom:711.572373pt;}
.y76{bottom:717.169333pt;}
.y191{bottom:718.658493pt;}
.y159{bottom:719.632000pt;}
.y121{bottom:723.192533pt;}
.y13{bottom:724.589720pt;}
.y40{bottom:727.193707pt;}
.y190{bottom:730.374120pt;}
.y75{bottom:732.790133pt;}
.y158{bottom:735.253333pt;}
.y12{bottom:737.606907pt;}
.y120{bottom:738.813867pt;}
.y18f{bottom:742.090267pt;}
.y3f{bottom:742.815040pt;}
.y74{bottom:748.410933pt;}
.yac{bottom:749.188000pt;}
.y11{bottom:750.624093pt;}
.y157{bottom:750.874667pt;}
.y18e{bottom:753.806413pt;}
.y11f{bottom:754.435200pt;}
.y3e{bottom:758.436373pt;}
.y10{bottom:763.642840pt;}
.y73{bottom:764.031733pt;}
.y6{bottom:764.732000pt;}
.y18d{bottom:765.522040pt;}
.y156{bottom:766.496000pt;}
.y9d{bottom:767.148000pt;}
.y11e{bottom:770.056533pt;}
.y3d{bottom:774.057707pt;}
.yf{bottom:776.660027pt;}
.y18c{bottom:777.238187pt;}
.y155{bottom:782.117333pt;}
.y11d{bottom:785.677867pt;}
.y18b{bottom:788.954333pt;}
.ye{bottom:789.677733pt;}
.y3c{bottom:789.679040pt;}
.ydf{bottom:789.997333pt;}
.y154{bottom:797.738667pt;}
.y18a{bottom:800.669960pt;}
.y11c{bottom:801.298667pt;}
.yde{bottom:805.618667pt;}
.y72{bottom:806.164000pt;}
.y5{bottom:807.710667pt;}
.y189{bottom:812.386107pt;}
.ydd{bottom:821.240000pt;}
.y188{bottom:824.102253pt;}
.y68{bottom:824.124000pt;}
.y4{bottom:833.806667pt;}
.yd{bottom:834.362667pt;}
.y187{bottom:835.817880pt;}
.ydc{bottom:836.861333pt;}
.y153{bottom:844.305333pt;}
.y11b{bottom:846.660640pt;}
.y186{bottom:847.534027pt;}
.yc{bottom:850.472000pt;}
.y3{bottom:852.404000pt;}
.ydb{bottom:852.482667pt;}
.y152{bottom:854.221333pt;}
.y185{bottom:859.250173pt;}
.y11a{bottom:859.679387pt;}
.y151{bottom:864.138667pt;}
.yb{bottom:866.774667pt;}
.yda{bottom:868.104000pt;}
.y184{bottom:870.966320pt;}
.y119{bottom:872.696573pt;}
.y150{bottom:874.054667pt;}
.y183{bottom:882.681947pt;}
.ya{bottom:883.528267pt;}
.yd9{bottom:883.725333pt;}
.y14f{bottom:883.970667pt;}
.y118{bottom:885.713760pt;}
.y2{bottom:890.925333pt;}
.y14e{bottom:893.886667pt;}
.y182{bottom:894.398093pt;}
.y117{bottom:898.732507pt;}
.yd8{bottom:899.346667pt;}
.y14d{bottom:903.802667pt;}
.y181{bottom:906.114240pt;}
.y116{bottom:911.749693pt;}
.y14c{bottom:913.720000pt;}
.yd7{bottom:914.968000pt;}
.y180{bottom:917.829867pt;}
.y14a{bottom:923.635400pt;}
.y9{bottom:924.733467pt;}
.y115{bottom:924.766880pt;}
.y149{bottom:928.125333pt;}
.yd6{bottom:930.589333pt;}
.y14b{bottom:933.121333pt;}
.y17f{bottom:937.244400pt;}
.y114{bottom:937.785627pt;}
.yd5{bottom:946.210667pt;}
.y113{bottom:950.802813pt;}
.y8{bottom:961.184000pt;}
.yd4{bottom:961.832000pt;}
.y17e{bottom:961.832400pt;}
.y112{bottom:963.820000pt;}
.y148{bottom:965.737187pt;}
.yd3{bottom:977.453333pt;}
.y17d{bottom:977.453733pt;}
.y111{bottom:980.521333pt;}
.h16{height:19.804705pt;}
.h17{height:20.065675pt;}
.h1{height:21.818200pt;}
.hf{height:21.933807pt;}
.h12{height:22.451212pt;}
.h22{height:22.742579pt;}
.h13{height:22.747055pt;}
.h21{height:22.774322pt;}
.h1f{height:23.679052pt;}
.h24{height:24.652507pt;}
.h23{height:24.683543pt;}
.h4{height:28.267288pt;}
.h25{height:29.159939pt;}
.he{height:29.244954pt;}
.h1d{height:29.894400pt;}
.h19{height:30.099011pt;}
.h1b{height:32.900710pt;}
.hc{height:33.187635pt;}
.hb{height:33.426739pt;}
.ha{height:36.449833pt;}
.hd{height:36.556100pt;}
.h1a{height:36.874903pt;}
.h15{height:37.202038pt;}
.h10{height:37.459376pt;}
.h18{height:38.652705pt;}
.h6{height:39.850400pt;}
.h9{height:40.211857pt;}
.h1e{height:43.663052pt;}
.h5{height:45.525402pt;}
.h8{height:49.262750pt;}
.h3{height:51.403288pt;}
.h2{height:64.913535pt;}
.h7{height:87.734861pt;}
.h11{height:164.488000pt;}
.h20{height:187.192000pt;}
.h1c{height:197.540000pt;}
.h14{height:221.464000pt;}
.h0{height:1056.000000pt;}
.w3{width:243.812000pt;}
.w4{width:334.737200pt;}
.w2{width:334.742667pt;}
.w1{width:334.745200pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x11{left:1.138000pt;}
.x16{left:7.753600pt;}
.x2b{left:8.684400pt;}
.x3a{left:11.842133pt;}
.x2a{left:12.734400pt;}
.x29{left:15.434400pt;}
.x38{left:17.073347pt;}
.x1f{left:21.586667pt;}
.x37{left:27.440533pt;}
.x27{left:31.506933pt;}
.x1{left:39.613333pt;}
.x39{left:45.523347pt;}
.x21{left:62.641333pt;}
.xb{left:65.285827pt;}
.x3c{left:66.577067pt;}
.x33{left:75.111467pt;}
.xd{left:76.576587pt;}
.xa{left:78.569693pt;}
.x20{left:81.537333pt;}
.x15{left:83.523867pt;}
.x28{left:87.869467pt;}
.x4{left:93.214533pt;}
.x2{left:96.000000pt;}
.x1e{left:102.306667pt;}
.x1a{left:106.813333pt;}
.x2e{left:107.830667pt;}
.x26{left:110.753067pt;}
.x19{left:112.246933pt;}
.x14{left:129.393733pt;}
.x12{left:130.722400pt;}
.x32{left:132.517200pt;}
.x8{left:156.087280pt;}
.x1b{left:157.861213pt;}
.x3b{left:161.987867pt;}
.xc{left:180.827013pt;}
.x3d{left:184.997400pt;}
.x6{left:187.966533pt;}
.x17{left:200.794533pt;}
.x22{left:208.085333pt;}
.x31{left:212.402667pt;}
.x2c{left:217.904267pt;}
.x13{left:233.844267pt;}
.x9{left:238.524213pt;}
.x2d{left:243.104267pt;}
.x1c{left:262.648000pt;}
.x1d{left:267.190707pt;}
.x7{left:269.860213pt;}
.x34{left:284.152000pt;}
.x18{left:298.629200pt;}
.x5{left:317.397200pt;}
.x35{left:322.734667pt;}
.x36{left:363.824000pt;}
.x3{left:404.678667pt;}
.xe{left:415.971187pt;}
.x25{left:422.049333pt;}
.xf{left:429.254000pt;}
.x2f{left:436.292800pt;}
.x3f{left:440.315907pt;}
.x23{left:462.054667pt;}
.x30{left:499.172107pt;}
.x24{left:507.434800pt;}
.x10{left:532.248253pt;}
.x3e{left:546.149280pt;}
}




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