
    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_375b1ac1388c586b86cf977a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.171387;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_850f55e78c5b54bff101a2fc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.674805;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_5596bc0ad812933530908977.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.965332;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_7ff5a95b851ca4047b957fab.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.863000;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_a15f851602ae9bb18885dd1f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.006348;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_cb864f1b7474e3def074f31d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.965332;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_23b0fda719ee1b05686daad3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.171387;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_a9ead5f239cf68a75dc80921.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.281250;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f00743b23b2302eef0dc1cc7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.870000;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_abc9389073b51e36051c3d02.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.006348;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_3f4c6b6e0d1bf20568b41ea3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.734863;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_073c6ca460688f8fe4ce5514.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.945312;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_5a0e92ddd2d4bd7fdb272b21.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.734863;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_6292faf3685e27580ad4b8da.woff2')format("woff");}.fff{font-family:fff;line-height:1.171387;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_69eb2e35a0be7b0a0d761f37.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;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_b560527627b1b90417a81202.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.734863;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_c5d4350059ee7bc5cb0b5d88.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.734863;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;}
.m4{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);}
.m2{transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250551,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2c{letter-spacing:-3.732480px;}
.ls3d{letter-spacing:-3.499200px;}
.ls42{letter-spacing:-3.421440px;}
.lse{letter-spacing:-3.265920px;}
.ls4c{letter-spacing:-3.188160px;}
.ls35{letter-spacing:-3.110400px;}
.ls2d{letter-spacing:-2.566080px;}
.ls3c{letter-spacing:-1.555200px;}
.ls1c{letter-spacing:-0.466560px;}
.ls8{letter-spacing:-0.360000px;}
.ls41{letter-spacing:-0.324000px;}
.ls10{letter-spacing:-0.311040px;}
.ls6{letter-spacing:-0.287280px;}
.ls1e{letter-spacing:-0.264960px;}
.lsd{letter-spacing:-0.233280px;}
.ls1f{letter-spacing:-0.198720px;}
.lsb{letter-spacing:-0.155520px;}
.ls20{letter-spacing:-0.132480px;}
.ls11{letter-spacing:-0.077760px;}
.ls17{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.057600px;}
.ls1a{letter-spacing:0.066240px;}
.ls2e{letter-spacing:0.077760px;}
.ls9{letter-spacing:0.119520px;}
.ls4a{letter-spacing:0.149760px;}
.ls12{letter-spacing:0.155520px;}
.ls47{letter-spacing:0.178848px;}
.ls49{letter-spacing:0.186624px;}
.ls7{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.233280px;}
.ls1d{letter-spacing:0.264960px;}
.ls48{letter-spacing:0.272160px;}
.lsc{letter-spacing:0.311040px;}
.ls4b{letter-spacing:0.329760px;}
.ls21{letter-spacing:0.331200px;}
.ls3{letter-spacing:0.658800px;}
.lsa{letter-spacing:0.699840px;}
.ls43{letter-spacing:0.855360px;}
.ls3b{letter-spacing:1.010880px;}
.ls32{letter-spacing:2.099520px;}
.ls2a{letter-spacing:4.976640px;}
.ls4{letter-spacing:5.533920px;}
.ls1b{letter-spacing:5.554080px;}
.ls5{letter-spacing:5.665680px;}
.ls13{letter-spacing:5.676480px;}
.ls40{letter-spacing:5.745600px;}
.ls1{letter-spacing:6.224400px;}
.ls15{letter-spacing:6.454080px;}
.ls14{letter-spacing:6.511680px;}
.ls0{letter-spacing:6.719760px;}
.ls16{letter-spacing:6.798960px;}
.ls3e{letter-spacing:7.153920px;}
.ls36{letter-spacing:7.853760px;}
.ls24{letter-spacing:9.331200px;}
.ls2b{letter-spacing:10.031040px;}
.ls37{letter-spacing:10.730880px;}
.ls22{letter-spacing:11.430720px;}
.ls44{letter-spacing:15.625990px;}
.ls39{letter-spacing:15.785280px;}
.ls45{letter-spacing:15.958018px;}
.ls3a{letter-spacing:20.139840px;}
.ls30{letter-spacing:20.839680px;}
.ls2f{letter-spacing:21.539520px;}
.ls31{letter-spacing:26.593920px;}
.ls28{letter-spacing:34.174800px;}
.ls25{letter-spacing:34.205760px;}
.ls27{letter-spacing:34.215840px;}
.ls26{letter-spacing:34.225200px;}
.ls38{letter-spacing:36.624960px;}
.ls23{letter-spacing:38.102400px;}
.ls29{letter-spacing:39.579840px;}
.ls3f{letter-spacing:42.456960px;}
.ls34{letter-spacing:43.856640px;}
.ls33{letter-spacing:44.556480px;}
.ls18{letter-spacing:51.788160px;}
.ls46{letter-spacing:61.352640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1c{word-spacing:-108.011760px;}
.wsf8{word-spacing:-107.998252px;}
.wsff{word-spacing:-86.067360px;}
.ws87{word-spacing:-50.544000px;}
.ws0{word-spacing:-34.916400px;}
.ws3b{word-spacing:-31.696560px;}
.ws1d{word-spacing:-31.409280px;}
.ws94{word-spacing:-31.122000px;}
.wsed{word-spacing:-30.643200px;}
.ws1{word-spacing:-21.354480px;}
.ws56{word-spacing:-20.528640px;}
.ws3d{word-spacing:-20.450880px;}
.ws3c{word-spacing:-20.217600px;}
.ws1f{word-spacing:-20.139840px;}
.ws8{word-spacing:-20.062080px;}
.ws1e{word-spacing:-19.984320px;}
.wsa{word-spacing:-19.906560px;}
.wsca{word-spacing:-18.662400px;}
.ws3e{word-spacing:-18.648000px;}
.ws89{word-spacing:-17.651520px;}
.ws59{word-spacing:-17.487360px;}
.ws57{word-spacing:-17.288640px;}
.ws58{word-spacing:-17.222400px;}
.ws95{word-spacing:-17.107200px;}
.ws100{word-spacing:-17.029440px;}
.ws5a{word-spacing:-17.023680px;}
.ws5b{word-spacing:-16.957440px;}
.ws9{word-spacing:-16.951680px;}
.wsee{word-spacing:-16.796160px;}
.wscb{word-spacing:-16.718400px;}
.ws88{word-spacing:-16.485120px;}
.ws4{word-spacing:-5.533920px;}
.ws33{word-spacing:-5.365440px;}
.wse2{word-spacing:-5.287680px;}
.wsef{word-spacing:-4.665600px;}
.ws7a{word-spacing:-4.587840px;}
.ws76{word-spacing:-4.276800px;}
.wsbd{word-spacing:-3.965760px;}
.wsf6{word-spacing:-3.888000px;}
.wsde{word-spacing:-3.654720px;}
.ws77{word-spacing:-3.576960px;}
.wsbe{word-spacing:-3.499200px;}
.wsa5{word-spacing:-3.421440px;}
.wsd3{word-spacing:-3.265920px;}
.ws98{word-spacing:-2.799360px;}
.wsa6{word-spacing:-2.643840px;}
.ws16{word-spacing:-2.488320px;}
.ws8c{word-spacing:-2.099520px;}
.ws8d{word-spacing:-2.021760px;}
.ws53{word-spacing:-1.788480px;}
.ws25{word-spacing:-1.399680px;}
.ws26{word-spacing:-1.321920px;}
.ws43{word-spacing:-1.088640px;}
.ws102{word-spacing:-1.026000px;}
.wsc7{word-spacing:-1.010880px;}
.wsf4{word-spacing:-0.855360px;}
.ws92{word-spacing:-0.777600px;}
.wscd{word-spacing:-0.699840px;}
.ws6a{word-spacing:-0.529920px;}
.ws6d{word-spacing:-0.397440px;}
.ws6e{word-spacing:-0.331200px;}
.ws1b{word-spacing:-0.311040px;}
.ws20{word-spacing:-0.252720px;}
.ws13{word-spacing:-0.233280px;}
.ws2{word-spacing:-0.095760px;}
.ws90{word-spacing:-0.077760px;}
.ws67{word-spacing:-0.066240px;}
.ws3{word-spacing:0.000000px;}
.ws68{word-spacing:0.066240px;}
.ws47{word-spacing:0.077760px;}
.ws80{word-spacing:0.155520px;}
.ws7{word-spacing:0.179280px;}
.ws6b{word-spacing:0.198720px;}
.ws14{word-spacing:0.233280px;}
.ws6c{word-spacing:0.264960px;}
.wscc{word-spacing:0.287280px;}
.ws29{word-spacing:0.311040px;}
.wsf0{word-spacing:0.324000px;}
.ws69{word-spacing:0.331200px;}
.ws6{word-spacing:0.360000px;}
.wsfd{word-spacing:0.383040px;}
.wsb{word-spacing:0.388800px;}
.ws21{word-spacing:0.421200px;}
.ws7e{word-spacing:0.466560px;}
.wse0{word-spacing:0.574560px;}
.ws101{word-spacing:0.622080px;}
.ws55{word-spacing:0.699840px;}
.ws2a{word-spacing:0.777600px;}
.wsc{word-spacing:0.855360px;}
.ws8b{word-spacing:0.933120px;}
.wsf1{word-spacing:1.080000px;}
.ws15{word-spacing:1.088640px;}
.ws5{word-spacing:1.185840px;}
.ws5c{word-spacing:1.244880px;}
.ws2f{word-spacing:1.788480px;}
.wse3{word-spacing:1.866240px;}
.wsb3{word-spacing:2.099520px;}
.wsa7{word-spacing:2.177280px;}
.wsf9{word-spacing:2.181439px;}
.wsfe{word-spacing:2.255040px;}
.wsfc{word-spacing:2.296044px;}
.wsfb{word-spacing:2.328797px;}
.wsb4{word-spacing:2.332800px;}
.wse4{word-spacing:2.410560px;}
.wsfa{word-spacing:2.442796px;}
.ws65{word-spacing:2.566080px;}
.ws22{word-spacing:2.643840px;}
.ws6f{word-spacing:2.954880px;}
.ws23{word-spacing:3.032640px;}
.wsf5{word-spacing:3.188160px;}
.ws37{word-spacing:3.265920px;}
.ws18{word-spacing:3.654720px;}
.ws5e{word-spacing:3.732480px;}
.ws1a{word-spacing:3.965760px;}
.ws85{word-spacing:4.043520px;}
.ws5f{word-spacing:4.432320px;}
.ws86{word-spacing:4.510080px;}
.ws19{word-spacing:4.587840px;}
.ws42{word-spacing:4.665600px;}
.wsf3{word-spacing:4.976640px;}
.wsd2{word-spacing:5.054400px;}
.wsba{word-spacing:5.132160px;}
.wsbb{word-spacing:5.287680px;}
.ws12{word-spacing:5.443200px;}
.wsb1{word-spacing:5.520960px;}
.wsda{word-spacing:5.832000px;}
.wsc3{word-spacing:5.909760px;}
.wsc4{word-spacing:5.987520px;}
.ws51{word-spacing:6.143040px;}
.ws50{word-spacing:6.220800px;}
.wsbf{word-spacing:6.531840px;}
.ws4f{word-spacing:6.609600px;}
.ws52{word-spacing:6.842880px;}
.ws9a{word-spacing:6.920640px;}
.wsdf{word-spacing:7.153920px;}
.ws99{word-spacing:7.231680px;}
.ws44{word-spacing:7.542720px;}
.wsb6{word-spacing:7.931520px;}
.wsb5{word-spacing:8.009280px;}
.wse5{word-spacing:8.164800px;}
.ws30{word-spacing:8.320320px;}
.ws31{word-spacing:9.020160px;}
.ws81{word-spacing:9.097920px;}
.ws7f{word-spacing:9.331200px;}
.ws82{word-spacing:9.408960px;}
.ws40{word-spacing:9.486720px;}
.ws3f{word-spacing:9.642240px;}
.ws35{word-spacing:9.720000px;}
.wsd5{word-spacing:10.108800px;}
.wsa4{word-spacing:10.186560px;}
.wsc0{word-spacing:10.342080px;}
.ws34{word-spacing:10.419840px;}
.wsa8{word-spacing:11.197440px;}
.ws72{word-spacing:11.275200px;}
.ws71{word-spacing:11.508480px;}
.ws73{word-spacing:11.586240px;}
.ws70{word-spacing:11.819520px;}
.ws48{word-spacing:11.897280px;}
.ws49{word-spacing:12.363840px;}
.wsa9{word-spacing:12.441600px;}
.wsdb{word-spacing:12.597120px;}
.ws5d{word-spacing:12.674880px;}
.ws4b{word-spacing:13.296960px;}
.ws61{word-spacing:13.685760px;}
.ws2b{word-spacing:14.074560px;}
.ws2c{word-spacing:14.385600px;}
.wsf{word-spacing:14.774400px;}
.ws75{word-spacing:15.318720px;}
.ws41{word-spacing:15.474240px;}
.wsf7{word-spacing:15.863040px;}
.wsc6{word-spacing:16.018560px;}
.ws74{word-spacing:16.251840px;}
.wse1{word-spacing:16.718400px;}
.ws84{word-spacing:16.951680px;}
.ws9b{word-spacing:17.651520px;}
.ws7b{word-spacing:18.351360px;}
.wsaa{word-spacing:19.128960px;}
.wsab{word-spacing:19.517760px;}
.wsb2{word-spacing:19.828800px;}
.wsce{word-spacing:20.450880px;}
.ws8a{word-spacing:20.528640px;}
.ws8e{word-spacing:20.839680px;}
.ws9e{word-spacing:21.150720px;}
.ws91{word-spacing:21.228480px;}
.ws96{word-spacing:21.306240px;}
.ws11{word-spacing:21.695040px;}
.ws10{word-spacing:21.772800px;}
.ws36{word-spacing:22.394880px;}
.ws38{word-spacing:22.472640px;}
.ws3a{word-spacing:22.550400px;}
.ws39{word-spacing:22.628160px;}
.wsd9{word-spacing:22.705920px;}
.ws46{word-spacing:23.172480px;}
.ws97{word-spacing:23.405760px;}
.ws24{word-spacing:24.105600px;}
.wsac{word-spacing:24.883200px;}
.ws28{word-spacing:25.583040px;}
.ws27{word-spacing:25.660800px;}
.wsd1{word-spacing:26.049600px;}
.wsa0{word-spacing:26.282880px;}
.wsa1{word-spacing:26.749440px;}
.ws54{word-spacing:26.982720px;}
.wsa2{word-spacing:27.060480px;}
.ws32{word-spacing:27.449280px;}
.ws4d{word-spacing:27.760320px;}
.ws4c{word-spacing:28.226880px;}
.wsd{word-spacing:28.460160px;}
.wsd0{word-spacing:28.848960px;}
.wscf{word-spacing:29.082240px;}
.ws8f{word-spacing:29.160000px;}
.ws45{word-spacing:29.859840px;}
.ws78{word-spacing:30.404160px;}
.wsb0{word-spacing:30.637440px;}
.wsaf{word-spacing:31.259520px;}
.ws9f{word-spacing:31.337280px;}
.wsdd{word-spacing:32.736960px;}
.ws2e{word-spacing:33.203520px;}
.wse8{word-spacing:33.514560px;}
.ws2d{word-spacing:33.981120px;}
.wsb8{word-spacing:34.214400px;}
.ws83{word-spacing:35.691840px;}
.wsc1{word-spacing:36.391680px;}
.wsc2{word-spacing:36.469440px;}
.wse6{word-spacing:36.858240px;}
.wsb9{word-spacing:37.091520px;}
.ws7c{word-spacing:37.791360px;}
.ws7d{word-spacing:38.180160px;}
.ws60{word-spacing:39.268800px;}
.ws79{word-spacing:41.446080px;}
.ws9c{word-spacing:42.145920px;}
.wsbc{word-spacing:42.612480px;}
.ws9d{word-spacing:43.390080px;}
.wsad{word-spacing:43.934400px;}
.wsae{word-spacing:44.089920px;}
.ws4a{word-spacing:44.323200px;}
.wsb7{word-spacing:45.100800px;}
.ws64{word-spacing:45.722880px;}
.wse9{word-spacing:46.422720px;}
.wsea{word-spacing:46.733760px;}
.wsf2{word-spacing:47.200320px;}
.ws4e{word-spacing:47.900160px;}
.wsc5{word-spacing:49.766400px;}
.ws62{word-spacing:51.477120px;}
.ws63{word-spacing:52.099200px;}
.ws93{word-spacing:52.643520px;}
.wsc8{word-spacing:54.354240px;}
.wse7{word-spacing:54.665280px;}
.wsc9{word-spacing:54.820800px;}
.wse{word-spacing:55.831680px;}
.wsd6{word-spacing:57.231360px;}
.wsa3{word-spacing:58.708800px;}
.ws17{word-spacing:59.408640px;}
.wsd4{word-spacing:61.585920px;}
.ws66{word-spacing:66.718080px;}
.wsdc{word-spacing:71.616960px;}
.wsec{word-spacing:77.448960px;}
.wseb{word-spacing:77.837760px;}
.wsd7{word-spacing:86.080320px;}
.wsd8{word-spacing:86.546880px;}
._1b{margin-left:-783.603716px;}
._16{margin-left:-432.099966px;}
._1c{margin-left:-181.252374px;}
._12{margin-left:-69.152369px;}
._d{margin-left:-64.246475px;}
._6{margin-left:-61.453291px;}
._1a{margin-left:-54.865654px;}
._8{margin-left:-50.324839px;}
._9{margin-left:-48.162444px;}
._10{margin-left:-43.521178px;}
._c{margin-left:-41.676338px;}
._e{margin-left:-37.930490px;}
._18{margin-left:-36.717518px;}
._15{margin-left:-34.771146px;}
._11{margin-left:-33.395076px;}
._f{margin-left:-31.971481px;}
._a{margin-left:-30.335103px;}
._b{margin-left:-28.859662px;}
._7{margin-left:-26.222015px;}
._19{margin-left:-24.639643px;}
._14{margin-left:-22.688950px;}
._17{margin-left:-17.257039px;}
._27{margin-left:-15.806622px;}
._28{margin-left:-6.075936px;}
._22{margin-left:-3.802824px;}
._21{margin-left:-2.738592px;}
._0{margin-left:-1.340640px;}
._3{width:1.317600px;}
._1{width:2.434248px;}
._5{width:3.822336px;}
._2{width:4.993704px;}
._4{width:6.706584px;}
._13{width:9.797747px;}
._24{width:10.886400px;}
._1f{width:13.955040px;}
._26{width:20.096850px;}
._25{width:21.173391px;}
._1e{width:22.461408px;}
._1d{width:33.912000px;}
._23{width:37.692000px;}
._20{width:52.282080px;}
.fc7{color:rgb(11,15,50);}
.fc8{color:rgb(37,63,106);}
.fc5{color:rgb(42,157,142);}
.fc3{color:rgb(42,157,143);}
.fc6{color:rgb(231,71,35);}
.fc4{color:rgb(118,113,113);}
.fc2{color:transparent;}
.fca{color:rgb(255,255,255);}
.fc9{color:rgb(42,42,42);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(38,38,38);}
.fs10{font-size:53.855796px;}
.fs11{font-size:55.001664px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fsd{font-size:69.366937px;}
.fs4{font-size:72.000000px;}
.fsc{font-size:73.084021px;}
.fs12{font-size:76.884949px;}
.fs3{font-size:77.760000px;}
.fsf{font-size:80.629981px;}
.fs8{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.fsb{font-size:107.998252px;}
.fsa{font-size:108.000000px;}
.fs7{font-size:108.011760px;}
.fs2{font-size:131.760000px;}
.fse{font-size:132.836845px;}
.fs9{font-size:167.760000px;}
.fs13{font-size:329.760000px;}
.fs6{font-size:5643.185040px;}
.y0{bottom:0.000000px;}
.yd5{bottom:8.100000px;}
.y83{bottom:19.440000px;}
.y22d{bottom:20.520000px;}
.y21b{bottom:51.640528px;}
.y82{bottom:61.920000px;}
.y24b{bottom:64.984500px;}
.y206{bottom:69.443684px;}
.y247{bottom:81.360000px;}
.y211{bottom:87.257471px;}
.y1e3{bottom:112.140000px;}
.y1d0{bottom:113.292000px;}
.y205{bottom:113.384160px;}
.ya2{bottom:113.443200px;}
.y209{bottom:114.897340px;}
.y1b{bottom:118.005840px;}
.y81{bottom:119.545200px;}
.y163{bottom:123.199920px;}
.y38{bottom:124.177680px;}
.y246{bottom:124.921440px;}
.y19c{bottom:127.964160px;}
.y210{bottom:128.309590px;}
.y55{bottom:129.537360px;}
.yc1{bottom:130.010400px;}
.yfb{bottom:133.044480px;}
.yee{bottom:133.094160px;}
.y17c{bottom:134.922240px;}
.y10e{bottom:135.104400px;}
.y1e2{bottom:135.376560px;}
.y145{bottom:137.261520px;}
.ye1{bottom:137.648160px;}
.y204{bottom:140.016960px;}
.y12f{bottom:140.318640px;}
.y1be{bottom:142.498800px;}
.y245{bottom:153.537120px;}
.y1cf{bottom:153.979920px;}
.ya1{bottom:154.131120px;}
.y1a{bottom:154.189440px;}
.yfa{bottom:155.549520px;}
.yed{bottom:155.599200px;}
.y19b{bottom:156.579840px;}
.yc0{bottom:158.451120px;}
.ye0{bottom:160.153200px;}
.y80{bottom:160.233120px;}
.y37{bottom:160.361280px;}
.y1e1{bottom:162.009360px;}
.y10d{bottom:163.545120px;}
.y162{bottom:163.693440px;}
.y144{bottom:165.877200px;}
.y203{bottom:166.474800px;}
.y12e{bottom:168.759360px;}
.y54{bottom:170.225280px;}
.y1bd{bottom:170.939520px;}
.y17b{bottom:174.696480px;}
.yf9{bottom:178.054560px;}
.yec{bottom:178.104240px;}
.y20f{bottom:181.825120px;}
.y1ce{bottom:182.420640px;}
.ydf{bottom:182.658240px;}
.y19a{bottom:185.195520px;}
.ybf{bottom:187.066800px;}
.y1e0{bottom:188.642160px;}
.y19{bottom:190.373040px;}
.y56{bottom:191.331870px;}
.y161{bottom:192.309120px;}
.y10c{bottom:192.335760px;}
.y202{bottom:193.107600px;}
.y244{bottom:194.400000px;}
.y143{bottom:194.492880px;}
.ya0{bottom:194.819040px;}
.y36{bottom:196.727040px;}
.y12d{bottom:197.375040px;}
.y1bc{bottom:199.555200px;}
.yf8{bottom:200.559600px;}
.yeb{bottom:200.609280px;}
.y7f{bottom:200.726640px;}
.yde{bottom:204.981120px;}
.y53{bottom:210.913200px;}
.y1cd{bottom:211.036320px;}
.y199{bottom:213.811200px;}
.y17a{bottom:214.470720px;}
.y1df{bottom:215.100000px;}
.ybe{bottom:215.682480px;}
.y201{bottom:219.565440px;}
.y10b{bottom:220.951440px;}
.y243{bottom:222.834960px;}
.yf7{bottom:222.882480px;}
.yea{bottom:222.932160px;}
.y142{bottom:223.108560px;}
.y12c{bottom:225.990720px;}
.y18{bottom:226.738800px;}
.ydd{bottom:227.486160px;}
.y1bb{bottom:228.345840px;}
.y35{bottom:232.910640px;}
.y160{bottom:232.997040px;}
.y9f{bottom:235.506960px;}
.y52{bottom:239.353920px;}
.y7e{bottom:241.414560px;}
.y198{bottom:242.601840px;}
.y1de{bottom:243.711000px;}
.yf6{bottom:245.387520px;}
.ye9{bottom:245.437200px;}
.y200{bottom:246.198240px;}
.y10a{bottom:249.567120px;}
.ydc{bottom:249.991200px;}
.y242{bottom:251.450640px;}
.y141{bottom:251.724240px;}
.y1cc{bottom:251.899200px;}
.y179{bottom:254.244960px;}
.y12b{bottom:254.781360px;}
.ybd{bottom:256.545360px;}
.y1ba{bottom:256.961520px;}
.y15f{bottom:261.612720px;}
.y17{bottom:262.922400px;}
.y9e{bottom:263.947680px;}
.yf5{bottom:267.892560px;}
.ye8{bottom:267.942240px;}
.y51{bottom:268.144560px;}
.y34{bottom:269.094240px;}
.y197{bottom:271.217520px;}
.ydb{bottom:272.496240px;}
.y1ff{bottom:272.656080px;}
.y109{bottom:278.182800px;}
.y241{bottom:280.066320px;}
.y140{bottom:280.339920px;}
.y1dd{bottom:280.620000px;}
.y7d{bottom:282.102480px;}
.y178{bottom:283.035600px;}
.y12a{bottom:283.397040px;}
.ybc{bottom:284.986080px;}
.y1b9{bottom:285.577200px;}
.y15e{bottom:290.228400px;}
.yf4{bottom:290.397600px;}
.ye7{bottom:290.447280px;}
.y9d{bottom:292.738320px;}
.yda{bottom:295.001280px;}
.y50{bottom:296.760240px;}
.y216{bottom:297.302581px;}
.y16{bottom:299.288160px;}
.y1fe{bottom:299.288880px;}
.y196{bottom:299.833200px;}
.y33{bottom:305.460000px;}
.y108{bottom:306.798480px;}
.y1cb{bottom:309.130560px;}
.y177{bottom:311.651280px;}
.y129{bottom:312.012720px;}
.yf3{bottom:312.902640px;}
.ye6{bottom:312.952320px;}
.ybb{bottom:313.776720px;}
.y1b8{bottom:314.192880px;}
.y1dc{bottom:317.340000px;}
.yd9{bottom:317.506320px;}
.y15d{bottom:318.844080px;}
.y21a{bottom:319.215707px;}
.y240{bottom:320.929200px;}
.y13f{bottom:321.202800px;}
.y9c{bottom:321.354000px;}
.y7c{bottom:322.790400px;}
.y4f{bottom:325.375920px;}
.y1fd{bottom:325.746720px;}
.y195{bottom:328.448880px;}
.yf2{bottom:335.407680px;}
.ye5{bottom:335.457360px;}
.y15{bottom:335.471760px;}
.y1ca{bottom:337.746240px;}
.y176{bottom:340.266960px;}
.y128{bottom:340.628400px;}
.y32{bottom:340.920000px;}
.yba{bottom:342.392400px;}
.y15c{bottom:347.459760px;}
.y107{bottom:347.661360px;}
.y23f{bottom:349.369920px;}
.y13e{bottom:349.818480px;}
.y9b{bottom:349.969680px;}
.y1fc{bottom:352.379520px;}
.y4e{bottom:353.991600px;}
.y1db{bottom:354.060000px;}
.y1b7{bottom:355.055760px;}
.y194{bottom:357.064560px;}
.yf1{bottom:357.730560px;}
.ye4{bottom:357.780240px;}
.yd8{bottom:357.829920px;}
.y7b{bottom:363.478320px;}
.y219{bottom:363.595734px;}
.y1c9{bottom:366.361920px;}
.y175{bottom:368.882640px;}
.y127{bottom:369.244080px;}
.y14{bottom:371.655360px;}
.y15b{bottom:376.250400px;}
.y106{bottom:376.277040px;}
.y31{bottom:376.380000px;}
.y23e{bottom:378.160560px;}
.y13d{bottom:378.434160px;}
.y9a{bottom:378.585360px;}
.y1fb{bottom:378.837360px;}
.yf0{bottom:380.235600px;}
.ye3{bottom:380.285280px;}
.yd7{bottom:380.334960px;}
.yb9{bottom:383.255280px;}
.y1b6{bottom:383.496480px;}
.y193{bottom:385.855200px;}
.y1da{bottom:390.780000px;}
.y71{bottom:391.345602px;}
.y64{bottom:392.848572px;}
.y4d{bottom:394.854480px;}
.y1c8{bottom:394.977600px;}
.y174{bottom:397.498320px;}
.y126{bottom:398.034720px;}
.yef{bottom:402.740640px;}
.ye2{bottom:402.790320px;}
.yd6{bottom:402.840000px;}
.y7a{bottom:404.166240px;}
.y15a{bottom:404.866080px;}
.y105{bottom:404.892720px;}
.y1fa{bottom:405.470160px;}
.y13c{bottom:407.049840px;}
.y99{bottom:407.201040px;}
.y13{bottom:408.021120px;}
.y218{bottom:408.582931px;}
.yb8{bottom:411.696000px;}
.y1b5{bottom:412.287120px;}
.y30{bottom:414.090720px;}
.y192{bottom:414.470880px;}
.y23d{bottom:418.848480px;}
.y1c7{bottom:423.768240px;}
.y63{bottom:425.252100px;}
.y173{bottom:426.288960px;}
.y125{bottom:426.650400px;}
.y220{bottom:432.102900px;}
.y1f9{bottom:432.102960px;}
.y104{bottom:433.508400px;}
.y4c{bottom:435.542400px;}
.y13b{bottom:435.665520px;}
.y1d9{bottom:439.732800px;}
.y1b4{bottom:440.902800px;}
.yd4{bottom:441.720000px;}
.y191{bottom:443.086560px;}
.y12{bottom:444.204720px;}
.y79{bottom:444.854160px;}
.y159{bottom:445.728960px;}
.y98{bottom:448.063920px;}
.y2f{bottom:450.274320px;}
.y1c6{bottom:452.383920px;}
.yb7{bottom:452.558880px;}
.y172{bottom:454.904640px;}
.y217{bottom:455.067332px;}
.y124{bottom:455.266080px;}
.y70{bottom:456.152658px;}
.y62{bottom:457.655628px;}
.y1f8{bottom:458.560800px;}
.y23c{bottom:459.536400px;}
.y103{bottom:462.124080px;}
.y13a{bottom:464.281200px;}
.y1b3{bottom:469.518480px;}
.y190{bottom:471.702240px;}
.y158{bottom:474.169680px;}
.y4b{bottom:476.230320px;}
.y97{bottom:476.504640px;}
.yd3{bottom:478.842480px;}
.y11{bottom:480.388320px;}
.y1d8{bottom:480.420720px;}
.yb6{bottom:480.999600px;}
.y1f7{bottom:485.193600px;}
.y78{bottom:485.542080px;}
.y2e{bottom:486.640080px;}
.y23b{bottom:487.977120px;}
.y6f{bottom:488.556186px;}
.y61{bottom:490.059156px;}
.y102{bottom:490.739760px;}
.y139{bottom:493.071840px;}
.y171{bottom:494.678880px;}
.y123{bottom:496.128960px;}
.y1b2{bottom:498.134160px;}
.y18f{bottom:500.317920px;}
.y157{bottom:502.785360px;}
.y96{bottom:505.295280px;}
.y1d7{bottom:508.861440px;}
.yb5{bottom:509.615280px;}
.y1f6{bottom:511.651440px;}
.y10{bottom:516.754080px;}
.y4a{bottom:516.918240px;}
.y101{bottom:519.530400px;}
.yd2{bottom:519.705360px;}
.y6e{bottom:520.959714px;}
.y138{bottom:521.687520px;}
.y60{bottom:522.462684px;}
.y2d{bottom:522.823680px;}
.y77{bottom:526.035600px;}
.y23a{bottom:528.796080px;}
.y18e{bottom:529.108560px;}
.y156{bottom:531.401040px;}
.y95{bottom:533.910960px;}
.y170{bottom:534.453120px;}
.y122{bottom:536.816880px;}
.y1d6{bottom:537.652080px;}
.yb4{bottom:538.230960px;}
.y1f5{bottom:538.284240px;}
.y1b1{bottom:538.997040px;}
.yd1{bottom:548.146080px;}
.y137{bottom:550.303200px;}
.y1c5{bottom:550.478160px;}
.yf{bottom:552.937680px;}
.y239{bottom:557.411760px;}
.y49{bottom:557.606160px;}
.y18d{bottom:557.724240px;}
.y2c{bottom:559.007280px;}
.y155{bottom:560.016720px;}
.y94{bottom:562.526640px;}
.y208{bottom:564.107644px;}
.y21f{bottom:564.742050px;}
.y1f4{bottom:564.742080px;}
.y121{bottom:565.257600px;}
.y76{bottom:566.723520px;}
.yb3{bottom:567.021600px;}
.y1b0{bottom:567.437760px;}
.y16f{bottom:574.421760px;}
.y1d5{bottom:578.340000px;}
.y136{bottom:578.918880px;}
.y6d{bottom:585.766770px;}
.y48{bottom:586.046880px;}
.y18c{bottom:586.339920px;}
.y5f{bottom:587.269740px;}
.y154{bottom:588.807360px;}
.yd0{bottom:589.008960px;}
.ye{bottom:589.303440px;}
.y215{bottom:590.346643px;}
.y93{bottom:591.142320px;}
.y1f3{bottom:591.374880px;}
.y120{bottom:593.873280px;}
.y2b{bottom:595.373040px;}
.yb2{bottom:595.637280px;}
.y1af{bottom:596.053440px;}
.y238{bottom:598.099680px;}
.y75{bottom:607.411440px;}
.y135{bottom:607.534560px;}
.y16e{bottom:614.196000px;}
.y47{bottom:614.662560px;}
.y18b{bottom:614.955600px;}
.y1d4{bottom:617.220000px;}
.y153{bottom:617.423040px;}
.ycf{bottom:617.449680px;}
.y1f2{bottom:617.832720px;}
.y6c{bottom:618.170298px;}
.y5e{bottom:619.673268px;}
.y11f{bottom:622.488960px;}
.y1ae{bottom:624.844080px;}
.yd{bottom:625.487040px;}
.y2a{bottom:631.556640px;}
.y92{bottom:632.005200px;}
.y134{bottom:636.325200px;}
.yb1{bottom:636.500160px;}
.y237{bottom:638.787600px;}
.y214{bottom:640.641864px;}
.y46{bottom:643.278240px;}
.y18a{bottom:643.571280px;}
.y1f1{bottom:644.465520px;}
.y152{bottom:646.038720px;}
.yce{bottom:646.065360px;}
.y74{bottom:648.099360px;}
.y6b{bottom:650.573826px;}
.y11e{bottom:651.279600px;}
.y5d{bottom:652.076796px;}
.y16d{bottom:653.970240px;}
.y91{bottom:660.445920px;}
.yc{bottom:661.670640px;}
.y1d3{bottom:661.680000px;}
.yb0{bottom:664.940880px;}
.y1ad{bottom:665.706960px;}
.y29{bottom:667.922400px;}
.y1f0{bottom:670.923360px;}
.y45{bottom:671.893920px;}
.y189{bottom:672.361920px;}
.y151{bottom:674.654400px;}
.ycd{bottom:674.681040px;}
.y236{bottom:679.475520px;}
.y11d{bottom:679.895280px;}
.y73{bottom:688.787280px;}
.y90{bottom:689.236560px;}
.y213{bottom:689.809384px;}
.yaf{bottom:693.556560px;}
.y16c{bottom:693.938880px;}
.y1ac{bottom:694.147680px;}
.y21e{bottom:697.556100px;}
.y1ef{bottom:697.556160px;}
.yb{bottom:698.036400px;}
.y44{bottom:700.684560px;}
.y188{bottom:700.977600px;}
.ycc{bottom:703.471680px;}
.y28{bottom:704.106000px;}
.y235{bottom:707.916240px;}
.y11c{bottom:708.510960px;}
.y6a{bottom:715.380882px;}
.y150{bottom:715.517280px;}
.y5c{bottom:716.883852px;}
.y8f{bottom:717.852240px;}
.yae{bottom:722.172240px;}
.y1d2{bottom:722.347200px;}
.y1ab{bottom:722.763360px;}
.y1ee{bottom:724.014000px;}
.y43{bottom:729.300240px;}
.y72{bottom:729.475200px;}
.y187{bottom:729.593280px;}
.ycb{bottom:732.087360px;}
.y16b{bottom:733.713120px;}
.ya{bottom:734.220000px;}
.y1c4{bottom:734.419440px;}
.y11b{bottom:737.126640px;}
.y212{bottom:738.858110px;}
.y27{bottom:740.289600px;}
.y14f{bottom:743.958000px;}
.y8e{bottom:746.467920px;}
.y69{bottom:747.784410px;}
.y234{bottom:748.779120px;}
.y5b{bottom:749.287380px;}
.y1ed{bottom:750.646800px;}
.y133{bottom:750.962880px;}
.y186{bottom:758.208960px;}
.y100{bottom:760.703040px;}
.y1c3{bottom:762.860160px;}
.yad{bottom:763.035120px;}
.y1aa{bottom:763.626240px;}
.y11a{bottom:765.742320px;}
.y42{bottom:770.163120px;}
.y9{bottom:772.560000px;}
.y14e{bottom:772.748640px;}
.yca{bottom:772.950240px;}
.y16a{bottom:773.487360px;}
.y26{bottom:776.655360px;}
.y1ec{bottom:777.104640px;}
.y233{bottom:777.219840px;}
.y68{bottom:780.187938px;}
.y5a{bottom:781.690908px;}
.y185{bottom:786.999600px;}
.y8d{bottom:787.330800px;}
.yff{bottom:789.318720px;}
.yac{bottom:791.475840px;}
.y132{bottom:791.650800px;}
.y1a9{bottom:792.066960px;}
.y119{bottom:794.532960px;}
.yc9{bottom:801.390960px;}
.y1c2{bottom:803.723040px;}
.y1eb{bottom:803.737440px;}
.y232{bottom:806.010480px;}
.y41{bottom:810.851040px;}
.y67{bottom:812.591466px;}
.y25{bottom:812.838960px;}
.y169{bottom:813.261600px;}
.y14d{bottom:813.436560px;}
.y59{bottom:814.094436px;}
.y8{bottom:815.400000px;}
.y184{bottom:815.615280px;}
.y22b{bottom:817.261200px;}
.yfe{bottom:817.934400px;}
.yab{bottom:820.266480px;}
.y1a8{bottom:820.682640px;}
.y118{bottom:823.148640px;}
.y8c{bottom:828.018720px;}
.yc8{bottom:830.006640px;}
.y1ea{bottom:830.195280px;}
.y1c1{bottom:832.163760px;}
.y1d1{bottom:832.338720px;}
.y231{bottom:834.626160px;}
.y14c{bottom:842.052240px;}
.y207{bottom:842.787635px;}
.y22a{bottom:843.894000px;}
.y183{bottom:844.230960px;}
.y66{bottom:844.994994px;}
.y58{bottom:846.497964px;}
.yfd{bottom:846.725040px;}
.yaa{bottom:848.882160px;}
.y24{bottom:849.204720px;}
.y1a7{bottom:849.298320px;}
.y40{bottom:851.344560px;}
.y117{bottom:851.764320px;}
.y8b{bottom:856.459440px;}
.y1e9{bottom:856.828080px;}
.yc7{bottom:858.622320px;}
.y1c0{bottom:860.779440px;}
.y7{bottom:861.284520px;}
.y229{bottom:870.351840px;}
.y20e{bottom:872.588592px;}
.y182{bottom:872.846640px;}
.y230{bottom:875.489040px;}
.y131{bottom:877.497840px;}
.y1a6{bottom:878.088960px;}
.y116{bottom:880.380000px;}
.y14b{bottom:882.915120px;}
.y1e8{bottom:883.460880px;}
.y8a{bottom:885.075120px;}
.y23{bottom:885.388320px;}
.yc6{bottom:887.238000px;}
.yfc{bottom:887.412960px;}
.y1bf{bottom:889.570080px;}
.ya9{bottom:889.745040px;}
.y3f{bottom:892.032480px;}
.y228{bottom:896.984700px;}
.y181{bottom:901.462320px;}
.y22f{bottom:903.929760px;}
.y1a5{bottom:906.704640px;}
.y115{bottom:909.717840px;}
.y65{bottom:909.802050px;}
.y1e7{bottom:909.918720px;}
.y57{bottom:911.305020px;}
.y14a{bottom:911.355840px;}
.y89{bottom:913.690800px;}
.yc5{bottom:916.028640px;}
.ya8{bottom:918.185760px;}
.y130{bottom:918.360720px;}
.y22{bottom:921.571920px;}
.y6{bottom:921.960000px;}
.y20d{bottom:923.553867px;}
.y180{bottom:930.252960px;}
.y22e{bottom:932.545500px;}
.y3e{bottom:932.720400px;}
.y1a4{bottom:935.320320px;}
.y1e6{bottom:936.551520px;}
.y21d{bottom:936.551550px;}
.y114{bottom:939.959460px;}
.y149{bottom:939.971520px;}
.y88{bottom:942.481440px;}
.yc4{bottom:944.644320px;}
.ya7{bottom:946.801440px;}
.y227{bottom:950.075280px;}
.y168{bottom:952.218720px;}
.y21{bottom:957.937680px;}
.y17f{bottom:958.868640px;}
.y1e5{bottom:963.009360px;}
.y1a3{bottom:963.936000px;}
.y113{bottom:968.579460px;}
.y148{bottom:968.587200px;}
.y87{bottom:971.097120px;}
.y20c{bottom:972.721386px;}
.yc3{bottom:973.260000px;}
.y3d{bottom:973.408320px;}
.ya6{bottom:975.417120px;}
.y5{bottom:975.770640px;}
.y226{bottom:976.533120px;}
.y167{bottom:980.659440px;}
.y17e{bottom:987.484320px;}
.y21c{bottom:989.642100px;}
.y1e4{bottom:989.642160px;}
.y1a2{bottom:992.726640px;}
.y20{bottom:994.121280px;}
.y112{bottom:997.189920px;}
.y147{bottom:997.202880px;}
.y225{bottom:1003.165920px;}
.y166{bottom:1009.275120px;}
.y4{bottom:1011.954240px;}
.y86{bottom:1011.960000px;}
.y3c{bottom:1014.096240px;}
.yc2{bottom:1014.480000px;}
.y17d{bottom:1016.100000px;}
.ya5{bottom:1016.280000px;}
.y20b{bottom:1020.457788px;}
.y1a1{bottom:1021.342320px;}
.y146{bottom:1025.993520px;}
.y111{bottom:1026.000000px;}
.y224{bottom:1029.623760px;}
.y1f{bottom:1030.304880px;}
.y165{bottom:1037.890800px;}
.y24a{bottom:1038.060720px;}
.y22c{bottom:1040.220000px;}
.y3{bottom:1048.320000px;}
.y1a0{bottom:1049.958000px;}
.y85{bottom:1051.200000px;}
.y3b{bottom:1054.784160px;}
.ya4{bottom:1055.700000px;}
.y223{bottom:1056.256560px;}
.y249{bottom:1066.501440px;}
.y164{bottom:1066.506480px;}
.y1e{bottom:1066.670640px;}
.y110{bottom:1066.681440px;}
.y19f{bottom:1078.573680px;}
.y222{bottom:1082.889360px;}
.y2{bottom:1086.663420px;}
.y84{bottom:1090.440000px;}
.ya3{bottom:1094.760000px;}
.y10f{bottom:1095.297120px;}
.y3a{bottom:1095.472080px;}
.y1d{bottom:1102.854240px;}
.y19e{bottom:1107.189360px;}
.y248{bottom:1107.364320px;}
.y221{bottom:1109.347200px;}
.y1{bottom:1131.120000px;}
.y19d{bottom:1135.980000px;}
.y39{bottom:1136.160000px;}
.y20a{bottom:1137.168637px;}
.y1c{bottom:1139.220000px;}
.hf{height:25.560000px;}
.hd{height:38.520000px;}
.h5{height:48.030469px;}
.h1f{height:50.147951px;}
.h1c{height:50.297803px;}
.h20{height:51.214929px;}
.h22{height:52.207031px;}
.h1b{height:52.993052px;}
.h9{height:55.645664px;}
.h7{height:56.383594px;}
.h11{height:61.082227px;}
.h10{height:61.679531px;}
.h4{height:63.824414px;}
.h8{height:67.042969px;}
.h21{height:71.591600px;}
.ha{height:72.406406px;}
.h26{height:72.582086px;}
.h1e{height:75.078795px;}
.h23{height:76.279219px;}
.h15{height:78.310547px;}
.he{height:78.440273px;}
.h13{height:81.101250px;}
.h19{height:82.738895px;}
.hc{height:82.749244px;}
.h12{height:87.859687px;}
.h3{height:89.167148px;}
.h1d{height:96.319685px;}
.h17{height:100.498213px;}
.h16{height:100.564453px;}
.h24{height:108.721500px;}
.h6{height:122.688633px;}
.h14{height:144.776880px;}
.h25{height:307.056797px;}
.h0{height:1262.835000px;}
.h18{height:1262.842500px;}
.h2{height:1262.880000px;}
.h1{height:1263.000000px;}
.h1a{height:1263.374968px;}
.hb{height:4870.068690px;}
.w4{width:45.180000px;}
.w5{width:201.601500px;}
.w7{width:212.220000px;}
.w6{width:223.200000px;}
.w9{width:573.840000px;}
.w8{width:892.389000px;}
.w0{width:892.395000px;}
.w1{width:892.500000px;}
.w2{width:892.980000px;}
.w3{width:893.250000px;}
.x0{left:0.000000px;}
.x40{left:10.800000px;}
.xe{left:12.240000px;}
.xd{left:17.460000px;}
.xf{left:56.340000px;}
.x13{left:61.560000px;}
.x11{left:67.140000px;}
.xb{left:69.768153px;}
.xa{left:87.878495px;}
.x2{left:127.635300px;}
.x33{left:144.000000px;}
.x19{left:150.652080px;}
.x37{left:152.117551px;}
.x3d{left:153.123451px;}
.x4{left:154.276740px;}
.x14{left:158.220000px;}
.x3f{left:160.199820px;}
.x18{left:167.758560px;}
.x17{left:174.780000px;}
.x30{left:181.624320px;}
.x9{left:184.292325px;}
.x15{left:196.738560px;}
.x1a{left:201.044160px;}
.x2e{left:208.615140px;}
.x16{left:228.417840px;}
.x31{left:233.801280px;}
.x2f{left:235.629180px;}
.x3a{left:252.172292px;}
.x38{left:255.846328px;}
.x3b{left:256.861268px;}
.x1{left:301.320000px;}
.x39{left:302.688302px;}
.x3c{left:303.694052px;}
.x3{left:326.520000px;}
.x10{left:329.220000px;}
.x1c{left:337.482000px;}
.x20{left:338.939280px;}
.x21{left:346.325040px;}
.x1d{left:348.825600px;}
.x1b{left:359.804880px;}
.x32{left:370.440000px;}
.x35{left:377.118000px;}
.x34{left:378.738000px;}
.x23{left:380.322720px;}
.x22{left:407.348640px;}
.x1e{left:419.205600px;}
.x6{left:422.100000px;}
.x1f{left:440.816400px;}
.x5{left:446.400000px;}
.x12{left:552.420000px;}
.x8{left:553.501725px;}
.x25{left:561.042000px;}
.x24{left:563.194800px;}
.x26{left:564.287760px;}
.x28{left:568.063440px;}
.x29{left:574.356240px;}
.x2b{left:591.098400px;}
.x2c{left:600.819120px;}
.x2d{left:602.624160px;}
.x2a{left:611.616240px;}
.x27{left:658.431360px;}
.x7{left:691.740000px;}
.xc{left:765.900000px;}
.x41{left:777.882000px;}
.x42{left:790.671000px;}
.x36{left:804.320017px;}
.x3e{left:828.277500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2c{letter-spacing:-3.317760pt;}
.ls3d{letter-spacing:-3.110400pt;}
.ls42{letter-spacing:-3.041280pt;}
.lse{letter-spacing:-2.903040pt;}
.ls4c{letter-spacing:-2.833920pt;}
.ls35{letter-spacing:-2.764800pt;}
.ls2d{letter-spacing:-2.280960pt;}
.ls3c{letter-spacing:-1.382400pt;}
.ls1c{letter-spacing:-0.414720pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls41{letter-spacing:-0.288000pt;}
.ls10{letter-spacing:-0.276480pt;}
.ls6{letter-spacing:-0.255360pt;}
.ls1e{letter-spacing:-0.235520pt;}
.lsd{letter-spacing:-0.207360pt;}
.ls1f{letter-spacing:-0.176640pt;}
.lsb{letter-spacing:-0.138240pt;}
.ls20{letter-spacing:-0.117760pt;}
.ls11{letter-spacing:-0.069120pt;}
.ls17{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.051200pt;}
.ls1a{letter-spacing:0.058880pt;}
.ls2e{letter-spacing:0.069120pt;}
.ls9{letter-spacing:0.106240pt;}
.ls4a{letter-spacing:0.133120pt;}
.ls12{letter-spacing:0.138240pt;}
.ls47{letter-spacing:0.158976pt;}
.ls49{letter-spacing:0.165888pt;}
.ls7{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.207360pt;}
.ls1d{letter-spacing:0.235520pt;}
.ls48{letter-spacing:0.241920pt;}
.lsc{letter-spacing:0.276480pt;}
.ls4b{letter-spacing:0.293120pt;}
.ls21{letter-spacing:0.294400pt;}
.ls3{letter-spacing:0.585600pt;}
.lsa{letter-spacing:0.622080pt;}
.ls43{letter-spacing:0.760320pt;}
.ls3b{letter-spacing:0.898560pt;}
.ls32{letter-spacing:1.866240pt;}
.ls2a{letter-spacing:4.423680pt;}
.ls4{letter-spacing:4.919040pt;}
.ls1b{letter-spacing:4.936960pt;}
.ls5{letter-spacing:5.036160pt;}
.ls13{letter-spacing:5.045760pt;}
.ls40{letter-spacing:5.107200pt;}
.ls1{letter-spacing:5.532800pt;}
.ls15{letter-spacing:5.736960pt;}
.ls14{letter-spacing:5.788160pt;}
.ls0{letter-spacing:5.973120pt;}
.ls16{letter-spacing:6.043520pt;}
.ls3e{letter-spacing:6.359040pt;}
.ls36{letter-spacing:6.981120pt;}
.ls24{letter-spacing:8.294400pt;}
.ls2b{letter-spacing:8.916480pt;}
.ls37{letter-spacing:9.538560pt;}
.ls22{letter-spacing:10.160640pt;}
.ls44{letter-spacing:13.889769pt;}
.ls39{letter-spacing:14.031360pt;}
.ls45{letter-spacing:14.184905pt;}
.ls3a{letter-spacing:17.902080pt;}
.ls30{letter-spacing:18.524160pt;}
.ls2f{letter-spacing:19.146240pt;}
.ls31{letter-spacing:23.639040pt;}
.ls28{letter-spacing:30.377600pt;}
.ls25{letter-spacing:30.405120pt;}
.ls27{letter-spacing:30.414080pt;}
.ls26{letter-spacing:30.422400pt;}
.ls38{letter-spacing:32.555520pt;}
.ls23{letter-spacing:33.868800pt;}
.ls29{letter-spacing:35.182080pt;}
.ls3f{letter-spacing:37.739520pt;}
.ls34{letter-spacing:38.983680pt;}
.ls33{letter-spacing:39.605760pt;}
.ls18{letter-spacing:46.033920pt;}
.ls46{letter-spacing:54.535680pt;}
.ws1c{word-spacing:-96.010453pt;}
.wsf8{word-spacing:-95.998446pt;}
.wsff{word-spacing:-76.504320pt;}
.ws87{word-spacing:-44.928000pt;}
.ws0{word-spacing:-31.036800pt;}
.ws3b{word-spacing:-28.174720pt;}
.ws1d{word-spacing:-27.919360pt;}
.ws94{word-spacing:-27.664000pt;}
.wsed{word-spacing:-27.238400pt;}
.ws1{word-spacing:-18.981760pt;}
.ws56{word-spacing:-18.247680pt;}
.ws3d{word-spacing:-18.178560pt;}
.ws3c{word-spacing:-17.971200pt;}
.ws1f{word-spacing:-17.902080pt;}
.ws8{word-spacing:-17.832960pt;}
.ws1e{word-spacing:-17.763840pt;}
.wsa{word-spacing:-17.694720pt;}
.wsca{word-spacing:-16.588800pt;}
.ws3e{word-spacing:-16.576000pt;}
.ws89{word-spacing:-15.690240pt;}
.ws59{word-spacing:-15.544320pt;}
.ws57{word-spacing:-15.367680pt;}
.ws58{word-spacing:-15.308800pt;}
.ws95{word-spacing:-15.206400pt;}
.ws100{word-spacing:-15.137280pt;}
.ws5a{word-spacing:-15.132160pt;}
.ws5b{word-spacing:-15.073280pt;}
.ws9{word-spacing:-15.068160pt;}
.wsee{word-spacing:-14.929920pt;}
.wscb{word-spacing:-14.860800pt;}
.ws88{word-spacing:-14.653440pt;}
.ws4{word-spacing:-4.919040pt;}
.ws33{word-spacing:-4.769280pt;}
.wse2{word-spacing:-4.700160pt;}
.wsef{word-spacing:-4.147200pt;}
.ws7a{word-spacing:-4.078080pt;}
.ws76{word-spacing:-3.801600pt;}
.wsbd{word-spacing:-3.525120pt;}
.wsf6{word-spacing:-3.456000pt;}
.wsde{word-spacing:-3.248640pt;}
.ws77{word-spacing:-3.179520pt;}
.wsbe{word-spacing:-3.110400pt;}
.wsa5{word-spacing:-3.041280pt;}
.wsd3{word-spacing:-2.903040pt;}
.ws98{word-spacing:-2.488320pt;}
.wsa6{word-spacing:-2.350080pt;}
.ws16{word-spacing:-2.211840pt;}
.ws8c{word-spacing:-1.866240pt;}
.ws8d{word-spacing:-1.797120pt;}
.ws53{word-spacing:-1.589760pt;}
.ws25{word-spacing:-1.244160pt;}
.ws26{word-spacing:-1.175040pt;}
.ws43{word-spacing:-0.967680pt;}
.ws102{word-spacing:-0.912000pt;}
.wsc7{word-spacing:-0.898560pt;}
.wsf4{word-spacing:-0.760320pt;}
.ws92{word-spacing:-0.691200pt;}
.wscd{word-spacing:-0.622080pt;}
.ws6a{word-spacing:-0.471040pt;}
.ws6d{word-spacing:-0.353280pt;}
.ws6e{word-spacing:-0.294400pt;}
.ws1b{word-spacing:-0.276480pt;}
.ws20{word-spacing:-0.224640pt;}
.ws13{word-spacing:-0.207360pt;}
.ws2{word-spacing:-0.085120pt;}
.ws90{word-spacing:-0.069120pt;}
.ws67{word-spacing:-0.058880pt;}
.ws3{word-spacing:0.000000pt;}
.ws68{word-spacing:0.058880pt;}
.ws47{word-spacing:0.069120pt;}
.ws80{word-spacing:0.138240pt;}
.ws7{word-spacing:0.159360pt;}
.ws6b{word-spacing:0.176640pt;}
.ws14{word-spacing:0.207360pt;}
.ws6c{word-spacing:0.235520pt;}
.wscc{word-spacing:0.255360pt;}
.ws29{word-spacing:0.276480pt;}
.wsf0{word-spacing:0.288000pt;}
.ws69{word-spacing:0.294400pt;}
.ws6{word-spacing:0.320000pt;}
.wsfd{word-spacing:0.340480pt;}
.wsb{word-spacing:0.345600pt;}
.ws21{word-spacing:0.374400pt;}
.ws7e{word-spacing:0.414720pt;}
.wse0{word-spacing:0.510720pt;}
.ws101{word-spacing:0.552960pt;}
.ws55{word-spacing:0.622080pt;}
.ws2a{word-spacing:0.691200pt;}
.wsc{word-spacing:0.760320pt;}
.ws8b{word-spacing:0.829440pt;}
.wsf1{word-spacing:0.960000pt;}
.ws15{word-spacing:0.967680pt;}
.ws5{word-spacing:1.054080pt;}
.ws5c{word-spacing:1.106560pt;}
.ws2f{word-spacing:1.589760pt;}
.wse3{word-spacing:1.658880pt;}
.wsb3{word-spacing:1.866240pt;}
.wsa7{word-spacing:1.935360pt;}
.wsf9{word-spacing:1.939057pt;}
.wsfe{word-spacing:2.004480pt;}
.wsfc{word-spacing:2.040928pt;}
.wsfb{word-spacing:2.070041pt;}
.wsb4{word-spacing:2.073600pt;}
.wse4{word-spacing:2.142720pt;}
.wsfa{word-spacing:2.171374pt;}
.ws65{word-spacing:2.280960pt;}
.ws22{word-spacing:2.350080pt;}
.ws6f{word-spacing:2.626560pt;}
.ws23{word-spacing:2.695680pt;}
.wsf5{word-spacing:2.833920pt;}
.ws37{word-spacing:2.903040pt;}
.ws18{word-spacing:3.248640pt;}
.ws5e{word-spacing:3.317760pt;}
.ws1a{word-spacing:3.525120pt;}
.ws85{word-spacing:3.594240pt;}
.ws5f{word-spacing:3.939840pt;}
.ws86{word-spacing:4.008960pt;}
.ws19{word-spacing:4.078080pt;}
.ws42{word-spacing:4.147200pt;}
.wsf3{word-spacing:4.423680pt;}
.wsd2{word-spacing:4.492800pt;}
.wsba{word-spacing:4.561920pt;}
.wsbb{word-spacing:4.700160pt;}
.ws12{word-spacing:4.838400pt;}
.wsb1{word-spacing:4.907520pt;}
.wsda{word-spacing:5.184000pt;}
.wsc3{word-spacing:5.253120pt;}
.wsc4{word-spacing:5.322240pt;}
.ws51{word-spacing:5.460480pt;}
.ws50{word-spacing:5.529600pt;}
.wsbf{word-spacing:5.806080pt;}
.ws4f{word-spacing:5.875200pt;}
.ws52{word-spacing:6.082560pt;}
.ws9a{word-spacing:6.151680pt;}
.wsdf{word-spacing:6.359040pt;}
.ws99{word-spacing:6.428160pt;}
.ws44{word-spacing:6.704640pt;}
.wsb6{word-spacing:7.050240pt;}
.wsb5{word-spacing:7.119360pt;}
.wse5{word-spacing:7.257600pt;}
.ws30{word-spacing:7.395840pt;}
.ws31{word-spacing:8.017920pt;}
.ws81{word-spacing:8.087040pt;}
.ws7f{word-spacing:8.294400pt;}
.ws82{word-spacing:8.363520pt;}
.ws40{word-spacing:8.432640pt;}
.ws3f{word-spacing:8.570880pt;}
.ws35{word-spacing:8.640000pt;}
.wsd5{word-spacing:8.985600pt;}
.wsa4{word-spacing:9.054720pt;}
.wsc0{word-spacing:9.192960pt;}
.ws34{word-spacing:9.262080pt;}
.wsa8{word-spacing:9.953280pt;}
.ws72{word-spacing:10.022400pt;}
.ws71{word-spacing:10.229760pt;}
.ws73{word-spacing:10.298880pt;}
.ws70{word-spacing:10.506240pt;}
.ws48{word-spacing:10.575360pt;}
.ws49{word-spacing:10.990080pt;}
.wsa9{word-spacing:11.059200pt;}
.wsdb{word-spacing:11.197440pt;}
.ws5d{word-spacing:11.266560pt;}
.ws4b{word-spacing:11.819520pt;}
.ws61{word-spacing:12.165120pt;}
.ws2b{word-spacing:12.510720pt;}
.ws2c{word-spacing:12.787200pt;}
.wsf{word-spacing:13.132800pt;}
.ws75{word-spacing:13.616640pt;}
.ws41{word-spacing:13.754880pt;}
.wsf7{word-spacing:14.100480pt;}
.wsc6{word-spacing:14.238720pt;}
.ws74{word-spacing:14.446080pt;}
.wse1{word-spacing:14.860800pt;}
.ws84{word-spacing:15.068160pt;}
.ws9b{word-spacing:15.690240pt;}
.ws7b{word-spacing:16.312320pt;}
.wsaa{word-spacing:17.003520pt;}
.wsab{word-spacing:17.349120pt;}
.wsb2{word-spacing:17.625600pt;}
.wsce{word-spacing:18.178560pt;}
.ws8a{word-spacing:18.247680pt;}
.ws8e{word-spacing:18.524160pt;}
.ws9e{word-spacing:18.800640pt;}
.ws91{word-spacing:18.869760pt;}
.ws96{word-spacing:18.938880pt;}
.ws11{word-spacing:19.284480pt;}
.ws10{word-spacing:19.353600pt;}
.ws36{word-spacing:19.906560pt;}
.ws38{word-spacing:19.975680pt;}
.ws3a{word-spacing:20.044800pt;}
.ws39{word-spacing:20.113920pt;}
.wsd9{word-spacing:20.183040pt;}
.ws46{word-spacing:20.597760pt;}
.ws97{word-spacing:20.805120pt;}
.ws24{word-spacing:21.427200pt;}
.wsac{word-spacing:22.118400pt;}
.ws28{word-spacing:22.740480pt;}
.ws27{word-spacing:22.809600pt;}
.wsd1{word-spacing:23.155200pt;}
.wsa0{word-spacing:23.362560pt;}
.wsa1{word-spacing:23.777280pt;}
.ws54{word-spacing:23.984640pt;}
.wsa2{word-spacing:24.053760pt;}
.ws32{word-spacing:24.399360pt;}
.ws4d{word-spacing:24.675840pt;}
.ws4c{word-spacing:25.090560pt;}
.wsd{word-spacing:25.297920pt;}
.wsd0{word-spacing:25.643520pt;}
.wscf{word-spacing:25.850880pt;}
.ws8f{word-spacing:25.920000pt;}
.ws45{word-spacing:26.542080pt;}
.ws78{word-spacing:27.025920pt;}
.wsb0{word-spacing:27.233280pt;}
.wsaf{word-spacing:27.786240pt;}
.ws9f{word-spacing:27.855360pt;}
.wsdd{word-spacing:29.099520pt;}
.ws2e{word-spacing:29.514240pt;}
.wse8{word-spacing:29.790720pt;}
.ws2d{word-spacing:30.205440pt;}
.wsb8{word-spacing:30.412800pt;}
.ws83{word-spacing:31.726080pt;}
.wsc1{word-spacing:32.348160pt;}
.wsc2{word-spacing:32.417280pt;}
.wse6{word-spacing:32.762880pt;}
.wsb9{word-spacing:32.970240pt;}
.ws7c{word-spacing:33.592320pt;}
.ws7d{word-spacing:33.937920pt;}
.ws60{word-spacing:34.905600pt;}
.ws79{word-spacing:36.840960pt;}
.ws9c{word-spacing:37.463040pt;}
.wsbc{word-spacing:37.877760pt;}
.ws9d{word-spacing:38.568960pt;}
.wsad{word-spacing:39.052800pt;}
.wsae{word-spacing:39.191040pt;}
.ws4a{word-spacing:39.398400pt;}
.wsb7{word-spacing:40.089600pt;}
.ws64{word-spacing:40.642560pt;}
.wse9{word-spacing:41.264640pt;}
.wsea{word-spacing:41.541120pt;}
.wsf2{word-spacing:41.955840pt;}
.ws4e{word-spacing:42.577920pt;}
.wsc5{word-spacing:44.236800pt;}
.ws62{word-spacing:45.757440pt;}
.ws63{word-spacing:46.310400pt;}
.ws93{word-spacing:46.794240pt;}
.wsc8{word-spacing:48.314880pt;}
.wse7{word-spacing:48.591360pt;}
.wsc9{word-spacing:48.729600pt;}
.wse{word-spacing:49.628160pt;}
.wsd6{word-spacing:50.872320pt;}
.wsa3{word-spacing:52.185600pt;}
.ws17{word-spacing:52.807680pt;}
.wsd4{word-spacing:54.743040pt;}
.ws66{word-spacing:59.304960pt;}
.wsdc{word-spacing:63.659520pt;}
.wsec{word-spacing:68.843520pt;}
.wseb{word-spacing:69.189120pt;}
.wsd7{word-spacing:76.515840pt;}
.wsd8{word-spacing:76.930560pt;}
._1b{margin-left:-696.536637pt;}
._16{margin-left:-384.088858pt;}
._1c{margin-left:-161.113222pt;}
._12{margin-left:-61.468773pt;}
._d{margin-left:-57.107978pt;}
._6{margin-left:-54.625147pt;}
._1a{margin-left:-48.769470pt;}
._8{margin-left:-44.733190pt;}
._9{margin-left:-42.811061pt;}
._10{margin-left:-38.685492pt;}
._c{margin-left:-37.045633pt;}
._e{margin-left:-33.715991pt;}
._18{margin-left:-32.637794pt;}
._15{margin-left:-30.907685pt;}
._11{margin-left:-29.684512pt;}
._f{margin-left:-28.419094pt;}
._a{margin-left:-26.964536pt;}
._b{margin-left:-25.653033pt;}
._7{margin-left:-23.308458pt;}
._19{margin-left:-21.901905pt;}
._14{margin-left:-20.167956pt;}
._17{margin-left:-15.339590pt;}
._27{margin-left:-14.050331pt;}
._28{margin-left:-5.400832pt;}
._22{margin-left:-3.380288pt;}
._21{margin-left:-2.434304pt;}
._0{margin-left:-1.191680pt;}
._3{width:1.171200pt;}
._1{width:2.163776pt;}
._5{width:3.397632pt;}
._2{width:4.438848pt;}
._4{width:5.961408pt;}
._13{width:8.709108pt;}
._24{width:9.676800pt;}
._1f{width:12.404480pt;}
._26{width:17.863867pt;}
._25{width:18.820792pt;}
._1e{width:19.965696pt;}
._1d{width:30.144000pt;}
._23{width:33.504000pt;}
._20{width:46.472960pt;}
.fs10{font-size:47.871819pt;}
.fs11{font-size:48.890368pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fsd{font-size:61.659499pt;}
.fs4{font-size:64.000000pt;}
.fsc{font-size:64.963574pt;}
.fs12{font-size:68.342177pt;}
.fs3{font-size:69.120000pt;}
.fsf{font-size:71.671094pt;}
.fs8{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.fsb{font-size:95.998446pt;}
.fsa{font-size:96.000000pt;}
.fs7{font-size:96.010453pt;}
.fs2{font-size:117.120000pt;}
.fse{font-size:118.077196pt;}
.fs9{font-size:149.120000pt;}
.fs13{font-size:293.120000pt;}
.fs6{font-size:5016.164480pt;}
.y0{bottom:0.000000pt;}
.yd5{bottom:7.200000pt;}
.y83{bottom:17.280000pt;}
.y22d{bottom:18.240000pt;}
.y21b{bottom:45.902692pt;}
.y82{bottom:55.040000pt;}
.y24b{bottom:57.764000pt;}
.y206{bottom:61.727719pt;}
.y247{bottom:72.320000pt;}
.y211{bottom:77.562197pt;}
.y1e3{bottom:99.680000pt;}
.y1d0{bottom:100.704000pt;}
.y205{bottom:100.785920pt;}
.ya2{bottom:100.838400pt;}
.y209{bottom:102.130969pt;}
.y1b{bottom:104.894080pt;}
.y81{bottom:106.262400pt;}
.y163{bottom:109.511040pt;}
.y38{bottom:110.380160pt;}
.y246{bottom:111.041280pt;}
.y19c{bottom:113.745920pt;}
.y210{bottom:114.052969pt;}
.y55{bottom:115.144320pt;}
.yc1{bottom:115.564800pt;}
.yfb{bottom:118.261760pt;}
.yee{bottom:118.305920pt;}
.y17c{bottom:119.930880pt;}
.y10e{bottom:120.092800pt;}
.y1e2{bottom:120.334720pt;}
.y145{bottom:122.010240pt;}
.ye1{bottom:122.353920pt;}
.y204{bottom:124.459520pt;}
.y12f{bottom:124.727680pt;}
.y1be{bottom:126.665600pt;}
.y245{bottom:136.477440pt;}
.y1cf{bottom:136.871040pt;}
.ya1{bottom:137.005440pt;}
.y1a{bottom:137.057280pt;}
.yfa{bottom:138.266240pt;}
.yed{bottom:138.310400pt;}
.y19b{bottom:139.182080pt;}
.yc0{bottom:140.845440pt;}
.ye0{bottom:142.358400pt;}
.y80{bottom:142.429440pt;}
.y37{bottom:142.543360pt;}
.y1e1{bottom:144.008320pt;}
.y10d{bottom:145.373440pt;}
.y162{bottom:145.505280pt;}
.y144{bottom:147.446400pt;}
.y203{bottom:147.977600pt;}
.y12e{bottom:150.008320pt;}
.y54{bottom:151.311360pt;}
.y1bd{bottom:151.946240pt;}
.y17b{bottom:155.285760pt;}
.yf9{bottom:158.270720pt;}
.yec{bottom:158.314880pt;}
.y20f{bottom:161.622329pt;}
.y1ce{bottom:162.151680pt;}
.ydf{bottom:162.362880pt;}
.y19a{bottom:164.618240pt;}
.ybf{bottom:166.281600pt;}
.y1e0{bottom:167.681920pt;}
.y19{bottom:169.220480pt;}
.y56{bottom:170.072773pt;}
.y161{bottom:170.941440pt;}
.y10c{bottom:170.965120pt;}
.y202{bottom:171.651200pt;}
.y244{bottom:172.800000pt;}
.y143{bottom:172.882560pt;}
.ya0{bottom:173.172480pt;}
.y36{bottom:174.868480pt;}
.y12d{bottom:175.444480pt;}
.y1bc{bottom:177.382400pt;}
.yf8{bottom:178.275200pt;}
.yeb{bottom:178.319360pt;}
.y7f{bottom:178.423680pt;}
.yde{bottom:182.205440pt;}
.y53{bottom:187.478400pt;}
.y1cd{bottom:187.587840pt;}
.y199{bottom:190.054400pt;}
.y17a{bottom:190.640640pt;}
.y1df{bottom:191.200000pt;}
.ybe{bottom:191.717760pt;}
.y201{bottom:195.169280pt;}
.y10b{bottom:196.401280pt;}
.y243{bottom:198.075520pt;}
.yf7{bottom:198.117760pt;}
.yea{bottom:198.161920pt;}
.y142{bottom:198.318720pt;}
.y12c{bottom:200.880640pt;}
.y18{bottom:201.545600pt;}
.ydd{bottom:202.209920pt;}
.y1bb{bottom:202.974080pt;}
.y35{bottom:207.031680pt;}
.y160{bottom:207.108480pt;}
.y9f{bottom:209.339520pt;}
.y52{bottom:212.759040pt;}
.y7e{bottom:214.590720pt;}
.y198{bottom:215.646080pt;}
.y1de{bottom:216.632000pt;}
.yf6{bottom:218.122240pt;}
.ye9{bottom:218.166400pt;}
.y200{bottom:218.842880pt;}
.y10a{bottom:221.837440pt;}
.ydc{bottom:222.214400pt;}
.y242{bottom:223.511680pt;}
.y141{bottom:223.754880pt;}
.y1cc{bottom:223.910400pt;}
.y179{bottom:225.995520pt;}
.y12b{bottom:226.472320pt;}
.ybd{bottom:228.040320pt;}
.y1ba{bottom:228.410240pt;}
.y15f{bottom:232.544640pt;}
.y17{bottom:233.708800pt;}
.y9e{bottom:234.620160pt;}
.yf5{bottom:238.126720pt;}
.ye8{bottom:238.170880pt;}
.y51{bottom:238.350720pt;}
.y34{bottom:239.194880pt;}
.y197{bottom:241.082240pt;}
.ydb{bottom:242.218880pt;}
.y1ff{bottom:242.360960pt;}
.y109{bottom:247.273600pt;}
.y241{bottom:248.947840pt;}
.y140{bottom:249.191040pt;}
.y1dd{bottom:249.440000pt;}
.y7d{bottom:250.757760pt;}
.y178{bottom:251.587200pt;}
.y12a{bottom:251.908480pt;}
.ybc{bottom:253.320960pt;}
.y1b9{bottom:253.846400pt;}
.y15e{bottom:257.980800pt;}
.yf4{bottom:258.131200pt;}
.ye7{bottom:258.175360pt;}
.y9d{bottom:260.211840pt;}
.yda{bottom:262.223360pt;}
.y50{bottom:263.786880pt;}
.y216{bottom:264.268960pt;}
.y16{bottom:266.033920pt;}
.y1fe{bottom:266.034560pt;}
.y196{bottom:266.518400pt;}
.y33{bottom:271.520000pt;}
.y108{bottom:272.709760pt;}
.y1cb{bottom:274.782720pt;}
.y177{bottom:277.023360pt;}
.y129{bottom:277.344640pt;}
.yf3{bottom:278.135680pt;}
.ye6{bottom:278.179840pt;}
.ybb{bottom:278.912640pt;}
.y1b8{bottom:279.282560pt;}
.y1dc{bottom:282.080000pt;}
.yd9{bottom:282.227840pt;}
.y15d{bottom:283.416960pt;}
.y21a{bottom:283.747295pt;}
.y240{bottom:285.270400pt;}
.y13f{bottom:285.513600pt;}
.y9c{bottom:285.648000pt;}
.y7c{bottom:286.924800pt;}
.y4f{bottom:289.223040pt;}
.y1fd{bottom:289.552640pt;}
.y195{bottom:291.954560pt;}
.yf2{bottom:298.140160pt;}
.ye5{bottom:298.184320pt;}
.y15{bottom:298.197120pt;}
.y1ca{bottom:300.218880pt;}
.y176{bottom:302.459520pt;}
.y128{bottom:302.780800pt;}
.y32{bottom:303.040000pt;}
.yba{bottom:304.348800pt;}
.y15c{bottom:308.853120pt;}
.y107{bottom:309.032320pt;}
.y23f{bottom:310.551040pt;}
.y13e{bottom:310.949760pt;}
.y9b{bottom:311.084160pt;}
.y1fc{bottom:313.226240pt;}
.y4e{bottom:314.659200pt;}
.y1db{bottom:314.720000pt;}
.y1b7{bottom:315.605120pt;}
.y194{bottom:317.390720pt;}
.yf1{bottom:317.982720pt;}
.ye4{bottom:318.026880pt;}
.yd8{bottom:318.071040pt;}
.y7b{bottom:323.091840pt;}
.y219{bottom:323.196208pt;}
.y1c9{bottom:325.655040pt;}
.y175{bottom:327.895680pt;}
.y127{bottom:328.216960pt;}
.y14{bottom:330.360320pt;}
.y15b{bottom:334.444800pt;}
.y106{bottom:334.468480pt;}
.y31{bottom:334.560000pt;}
.y23e{bottom:336.142720pt;}
.y13d{bottom:336.385920pt;}
.y9a{bottom:336.520320pt;}
.y1fb{bottom:336.744320pt;}
.yf0{bottom:337.987200pt;}
.ye3{bottom:338.031360pt;}
.yd7{bottom:338.075520pt;}
.yb9{bottom:340.671360pt;}
.y1b6{bottom:340.885760pt;}
.y193{bottom:342.982400pt;}
.y1da{bottom:347.360000pt;}
.y71{bottom:347.862757pt;}
.y64{bottom:349.198731pt;}
.y4d{bottom:350.981760pt;}
.y1c8{bottom:351.091200pt;}
.y174{bottom:353.331840pt;}
.y126{bottom:353.808640pt;}
.yef{bottom:357.991680pt;}
.ye2{bottom:358.035840pt;}
.yd6{bottom:358.080000pt;}
.y7a{bottom:359.258880pt;}
.y15a{bottom:359.880960pt;}
.y105{bottom:359.904640pt;}
.y1fa{bottom:360.417920pt;}
.y13c{bottom:361.822080pt;}
.y99{bottom:361.956480pt;}
.y13{bottom:362.685440pt;}
.y218{bottom:363.184828pt;}
.yb8{bottom:365.952000pt;}
.y1b5{bottom:366.477440pt;}
.y30{bottom:368.080640pt;}
.y192{bottom:368.418560pt;}
.y23d{bottom:372.309760pt;}
.y1c7{bottom:376.682880pt;}
.y63{bottom:378.001867pt;}
.y173{bottom:378.923520pt;}
.y125{bottom:379.244800pt;}
.y220{bottom:384.091467pt;}
.y1f9{bottom:384.091520pt;}
.y104{bottom:385.340800pt;}
.y4c{bottom:387.148800pt;}
.y13b{bottom:387.258240pt;}
.y1d9{bottom:390.873600pt;}
.y1b4{bottom:391.913600pt;}
.yd4{bottom:392.640000pt;}
.y191{bottom:393.854720pt;}
.y12{bottom:394.848640pt;}
.y79{bottom:395.425920pt;}
.y159{bottom:396.203520pt;}
.y98{bottom:398.279040pt;}
.y2f{bottom:400.243840pt;}
.y1c6{bottom:402.119040pt;}
.yb7{bottom:402.274560pt;}
.y172{bottom:404.359680pt;}
.y217{bottom:404.504295pt;}
.y124{bottom:404.680960pt;}
.y70{bottom:405.469029pt;}
.y62{bottom:406.805003pt;}
.y1f8{bottom:407.609600pt;}
.y23c{bottom:408.476800pt;}
.y103{bottom:410.776960pt;}
.y13a{bottom:412.694400pt;}
.y1b3{bottom:417.349760pt;}
.y190{bottom:419.290880pt;}
.y158{bottom:421.484160pt;}
.y4b{bottom:423.315840pt;}
.y97{bottom:423.559680pt;}
.yd3{bottom:425.637760pt;}
.y11{bottom:427.011840pt;}
.y1d8{bottom:427.040640pt;}
.yb6{bottom:427.555200pt;}
.y1f7{bottom:431.283200pt;}
.y78{bottom:431.592960pt;}
.y2e{bottom:432.568960pt;}
.y23b{bottom:433.757440pt;}
.y6f{bottom:434.272165pt;}
.y61{bottom:435.608139pt;}
.y102{bottom:436.213120pt;}
.y139{bottom:438.286080pt;}
.y171{bottom:439.714560pt;}
.y123{bottom:441.003520pt;}
.y1b2{bottom:442.785920pt;}
.y18f{bottom:444.727040pt;}
.y157{bottom:446.920320pt;}
.y96{bottom:449.151360pt;}
.y1d7{bottom:452.321280pt;}
.yb5{bottom:452.991360pt;}
.y1f6{bottom:454.801280pt;}
.y10{bottom:459.336960pt;}
.y4a{bottom:459.482880pt;}
.y101{bottom:461.804800pt;}
.yd2{bottom:461.960320pt;}
.y6e{bottom:463.075301pt;}
.y138{bottom:463.722240pt;}
.y60{bottom:464.411275pt;}
.y2d{bottom:464.732160pt;}
.y77{bottom:467.587200pt;}
.y23a{bottom:470.040960pt;}
.y18e{bottom:470.318720pt;}
.y156{bottom:472.356480pt;}
.y95{bottom:474.587520pt;}
.y170{bottom:475.069440pt;}
.y122{bottom:477.170560pt;}
.y1d6{bottom:477.912960pt;}
.yb4{bottom:478.427520pt;}
.y1f5{bottom:478.474880pt;}
.y1b1{bottom:479.108480pt;}
.yd1{bottom:487.240960pt;}
.y137{bottom:489.158400pt;}
.y1c5{bottom:489.313920pt;}
.yf{bottom:491.500160pt;}
.y239{bottom:495.477120pt;}
.y49{bottom:495.649920pt;}
.y18d{bottom:495.754880pt;}
.y2c{bottom:496.895360pt;}
.y155{bottom:497.792640pt;}
.y94{bottom:500.023680pt;}
.y208{bottom:501.429017pt;}
.y21f{bottom:501.992933pt;}
.y1f4{bottom:501.992960pt;}
.y121{bottom:502.451200pt;}
.y76{bottom:503.754240pt;}
.yb3{bottom:504.019200pt;}
.y1b0{bottom:504.389120pt;}
.y16f{bottom:510.597120pt;}
.y1d5{bottom:514.080000pt;}
.y136{bottom:514.594560pt;}
.y6d{bottom:520.681573pt;}
.y48{bottom:520.930560pt;}
.y18c{bottom:521.191040pt;}
.y5f{bottom:522.017547pt;}
.y154{bottom:523.384320pt;}
.yd0{bottom:523.563520pt;}
.ye{bottom:523.825280pt;}
.y215{bottom:524.752572pt;}
.y93{bottom:525.459840pt;}
.y1f3{bottom:525.666560pt;}
.y120{bottom:527.887360pt;}
.y2b{bottom:529.220480pt;}
.yb2{bottom:529.455360pt;}
.y1af{bottom:529.825280pt;}
.y238{bottom:531.644160pt;}
.y75{bottom:539.921280pt;}
.y135{bottom:540.030720pt;}
.y16e{bottom:545.952000pt;}
.y47{bottom:546.366720pt;}
.y18b{bottom:546.627200pt;}
.y1d4{bottom:548.640000pt;}
.y153{bottom:548.820480pt;}
.ycf{bottom:548.844160pt;}
.y1f2{bottom:549.184640pt;}
.y6c{bottom:549.484709pt;}
.y5e{bottom:550.820683pt;}
.y11f{bottom:553.323520pt;}
.y1ae{bottom:555.416960pt;}
.yd{bottom:555.988480pt;}
.y2a{bottom:561.383680pt;}
.y92{bottom:561.782400pt;}
.y134{bottom:565.622400pt;}
.yb1{bottom:565.777920pt;}
.y237{bottom:567.811200pt;}
.y214{bottom:569.459435pt;}
.y46{bottom:571.802880pt;}
.y18a{bottom:572.063360pt;}
.y1f1{bottom:572.858240pt;}
.y152{bottom:574.256640pt;}
.yce{bottom:574.280320pt;}
.y74{bottom:576.088320pt;}
.y6b{bottom:578.287845pt;}
.y11e{bottom:578.915200pt;}
.y5d{bottom:579.623819pt;}
.y16d{bottom:581.306880pt;}
.y91{bottom:587.063040pt;}
.yc{bottom:588.151680pt;}
.y1d3{bottom:588.160000pt;}
.yb0{bottom:591.058560pt;}
.y1ad{bottom:591.739520pt;}
.y29{bottom:593.708800pt;}
.y1f0{bottom:596.376320pt;}
.y45{bottom:597.239040pt;}
.y189{bottom:597.655040pt;}
.y151{bottom:599.692800pt;}
.ycd{bottom:599.716480pt;}
.y236{bottom:603.978240pt;}
.y11d{bottom:604.351360pt;}
.y73{bottom:612.255360pt;}
.y90{bottom:612.654720pt;}
.y213{bottom:613.163897pt;}
.yaf{bottom:616.494720pt;}
.y16c{bottom:616.834560pt;}
.y1ac{bottom:617.020160pt;}
.y21e{bottom:620.049867pt;}
.y1ef{bottom:620.049920pt;}
.yb{bottom:620.476800pt;}
.y44{bottom:622.830720pt;}
.y188{bottom:623.091200pt;}
.ycc{bottom:625.308160pt;}
.y28{bottom:625.872000pt;}
.y235{bottom:629.258880pt;}
.y11c{bottom:629.787520pt;}
.y6a{bottom:635.894117pt;}
.y150{bottom:636.015360pt;}
.y5c{bottom:637.230091pt;}
.y8f{bottom:638.090880pt;}
.yae{bottom:641.930880pt;}
.y1d2{bottom:642.086400pt;}
.y1ab{bottom:642.456320pt;}
.y1ee{bottom:643.568000pt;}
.y43{bottom:648.266880pt;}
.y72{bottom:648.422400pt;}
.y187{bottom:648.527360pt;}
.ycb{bottom:650.744320pt;}
.y16b{bottom:652.189440pt;}
.ya{bottom:652.640000pt;}
.y1c4{bottom:652.817280pt;}
.y11b{bottom:655.223680pt;}
.y212{bottom:656.762764pt;}
.y27{bottom:658.035200pt;}
.y14f{bottom:661.296000pt;}
.y8e{bottom:663.527040pt;}
.y69{bottom:664.697253pt;}
.y234{bottom:665.581440pt;}
.y5b{bottom:666.033227pt;}
.y1ed{bottom:667.241600pt;}
.y133{bottom:667.522560pt;}
.y186{bottom:673.963520pt;}
.y100{bottom:676.180480pt;}
.y1c3{bottom:678.097920pt;}
.yad{bottom:678.253440pt;}
.y1aa{bottom:678.778880pt;}
.y11a{bottom:680.659840pt;}
.y42{bottom:684.589440pt;}
.y9{bottom:686.720000pt;}
.y14e{bottom:686.887680pt;}
.yca{bottom:687.066880pt;}
.y16a{bottom:687.544320pt;}
.y26{bottom:690.360320pt;}
.y1ec{bottom:690.759680pt;}
.y233{bottom:690.862080pt;}
.y68{bottom:693.500389pt;}
.y5a{bottom:694.836363pt;}
.y185{bottom:699.555200pt;}
.y8d{bottom:699.849600pt;}
.yff{bottom:701.616640pt;}
.yac{bottom:703.534080pt;}
.y132{bottom:703.689600pt;}
.y1a9{bottom:704.059520pt;}
.y119{bottom:706.251520pt;}
.yc9{bottom:712.347520pt;}
.y1c2{bottom:714.420480pt;}
.y1eb{bottom:714.433280pt;}
.y232{bottom:716.453760pt;}
.y41{bottom:720.756480pt;}
.y67{bottom:722.303525pt;}
.y25{bottom:722.523520pt;}
.y169{bottom:722.899200pt;}
.y14d{bottom:723.054720pt;}
.y59{bottom:723.639499pt;}
.y8{bottom:724.800000pt;}
.y184{bottom:724.991360pt;}
.y22b{bottom:726.454400pt;}
.yfe{bottom:727.052800pt;}
.yab{bottom:729.125760pt;}
.y1a8{bottom:729.495680pt;}
.y118{bottom:731.687680pt;}
.y8c{bottom:736.016640pt;}
.yc8{bottom:737.783680pt;}
.y1ea{bottom:737.951360pt;}
.y1c1{bottom:739.701120pt;}
.y1d1{bottom:739.856640pt;}
.y231{bottom:741.889920pt;}
.y14c{bottom:748.490880pt;}
.y207{bottom:749.144564pt;}
.y22a{bottom:750.128000pt;}
.y183{bottom:750.427520pt;}
.y66{bottom:751.106661pt;}
.y58{bottom:752.442635pt;}
.yfd{bottom:752.644480pt;}
.yaa{bottom:754.561920pt;}
.y24{bottom:754.848640pt;}
.y1a7{bottom:754.931840pt;}
.y40{bottom:756.750720pt;}
.y117{bottom:757.123840pt;}
.y8b{bottom:761.297280pt;}
.y1e9{bottom:761.624960pt;}
.yc7{bottom:763.219840pt;}
.y1c0{bottom:765.137280pt;}
.y7{bottom:765.586240pt;}
.y229{bottom:773.646080pt;}
.y20e{bottom:775.634304pt;}
.y182{bottom:775.863680pt;}
.y230{bottom:778.212480pt;}
.y131{bottom:779.998080pt;}
.y1a6{bottom:780.523520pt;}
.y116{bottom:782.560000pt;}
.y14b{bottom:784.813440pt;}
.y1e8{bottom:785.298560pt;}
.y8a{bottom:786.733440pt;}
.y23{bottom:787.011840pt;}
.yc6{bottom:788.656000pt;}
.yfc{bottom:788.811520pt;}
.y1bf{bottom:790.728960pt;}
.ya9{bottom:790.884480pt;}
.y3f{bottom:792.917760pt;}
.y228{bottom:797.319733pt;}
.y181{bottom:801.299840pt;}
.y22f{bottom:803.493120pt;}
.y1a5{bottom:805.959680pt;}
.y115{bottom:808.638080pt;}
.y65{bottom:808.712933pt;}
.y1e7{bottom:808.816640pt;}
.y57{bottom:810.048907pt;}
.y14a{bottom:810.094080pt;}
.y89{bottom:812.169600pt;}
.yc5{bottom:814.247680pt;}
.ya8{bottom:816.165120pt;}
.y130{bottom:816.320640pt;}
.y22{bottom:819.175040pt;}
.y6{bottom:819.520000pt;}
.y20d{bottom:820.936770pt;}
.y180{bottom:826.891520pt;}
.y22e{bottom:828.929333pt;}
.y3e{bottom:829.084800pt;}
.y1a4{bottom:831.395840pt;}
.y1e6{bottom:832.490240pt;}
.y21d{bottom:832.490267pt;}
.y114{bottom:835.519520pt;}
.y149{bottom:835.530240pt;}
.y88{bottom:837.761280pt;}
.yc4{bottom:839.683840pt;}
.ya7{bottom:841.601280pt;}
.y227{bottom:844.511360pt;}
.y168{bottom:846.416640pt;}
.y21{bottom:851.500160pt;}
.y17f{bottom:852.327680pt;}
.y1e5{bottom:856.008320pt;}
.y1a3{bottom:856.832000pt;}
.y113{bottom:860.959520pt;}
.y148{bottom:860.966400pt;}
.y87{bottom:863.197440pt;}
.y20c{bottom:864.641232pt;}
.yc3{bottom:865.120000pt;}
.y3d{bottom:865.251840pt;}
.ya6{bottom:867.037440pt;}
.y5{bottom:867.351680pt;}
.y226{bottom:868.029440pt;}
.y167{bottom:871.697280pt;}
.y17e{bottom:877.763840pt;}
.y21c{bottom:879.681867pt;}
.y1e4{bottom:879.681920pt;}
.y1a2{bottom:882.423680pt;}
.y20{bottom:883.663360pt;}
.y112{bottom:886.391040pt;}
.y147{bottom:886.402560pt;}
.y225{bottom:891.703040pt;}
.y166{bottom:897.133440pt;}
.y4{bottom:899.514880pt;}
.y86{bottom:899.520000pt;}
.y3c{bottom:901.418880pt;}
.yc2{bottom:901.760000pt;}
.y17d{bottom:903.200000pt;}
.ya5{bottom:903.360000pt;}
.y20b{bottom:907.073590pt;}
.y1a1{bottom:907.859840pt;}
.y146{bottom:911.994240pt;}
.y111{bottom:912.000000pt;}
.y224{bottom:915.221120pt;}
.y1f{bottom:915.826560pt;}
.y165{bottom:922.569600pt;}
.y24a{bottom:922.720640pt;}
.y22c{bottom:924.640000pt;}
.y3{bottom:931.840000pt;}
.y1a0{bottom:933.296000pt;}
.y85{bottom:934.400000pt;}
.y3b{bottom:937.585920pt;}
.ya4{bottom:938.400000pt;}
.y223{bottom:938.894720pt;}
.y249{bottom:948.001280pt;}
.y164{bottom:948.005760pt;}
.y1e{bottom:948.151680pt;}
.y110{bottom:948.161280pt;}
.y19f{bottom:958.732160pt;}
.y222{bottom:962.568320pt;}
.y2{bottom:965.923040pt;}
.y84{bottom:969.280000pt;}
.ya3{bottom:973.120000pt;}
.y10f{bottom:973.597440pt;}
.y3a{bottom:973.752960pt;}
.y1d{bottom:980.314880pt;}
.y19e{bottom:984.168320pt;}
.y248{bottom:984.323840pt;}
.y221{bottom:986.086400pt;}
.y1{bottom:1005.440000pt;}
.y19d{bottom:1009.760000pt;}
.y39{bottom:1009.920000pt;}
.y20a{bottom:1010.816566pt;}
.y1c{bottom:1012.640000pt;}
.hf{height:22.720000pt;}
.hd{height:34.240000pt;}
.h5{height:42.693750pt;}
.h1f{height:44.575957pt;}
.h1c{height:44.709158pt;}
.h20{height:45.524381pt;}
.h22{height:46.406250pt;}
.h1b{height:47.104935pt;}
.h9{height:49.462812pt;}
.h7{height:50.118750pt;}
.h11{height:54.295312pt;}
.h10{height:54.826250pt;}
.h4{height:56.732813pt;}
.h8{height:59.593750pt;}
.h21{height:63.636978pt;}
.ha{height:64.361250pt;}
.h26{height:64.517410pt;}
.h1e{height:66.736707pt;}
.h23{height:67.803750pt;}
.h15{height:69.609375pt;}
.he{height:69.724687pt;}
.h13{height:72.090000pt;}
.h19{height:73.545685pt;}
.hc{height:73.554883pt;}
.h12{height:78.097500pt;}
.h3{height:79.259687pt;}
.h1d{height:85.617498pt;}
.h17{height:89.331745pt;}
.h16{height:89.390625pt;}
.h24{height:96.641333pt;}
.h6{height:109.056562pt;}
.h14{height:128.690560pt;}
.h25{height:272.939375pt;}
.h0{height:1122.520000pt;}
.h18{height:1122.526667pt;}
.h2{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h1a{height:1122.999972pt;}
.hb{height:4328.949946pt;}
.w4{width:40.160000pt;}
.w5{width:179.201333pt;}
.w7{width:188.640000pt;}
.w6{width:198.400000pt;}
.w9{width:510.080000pt;}
.w8{width:793.234667pt;}
.w0{width:793.240000pt;}
.w1{width:793.333333pt;}
.w2{width:793.760000pt;}
.w3{width:794.000000pt;}
.x0{left:0.000000pt;}
.x40{left:9.600000pt;}
.xe{left:10.880000pt;}
.xd{left:15.520000pt;}
.xf{left:50.080000pt;}
.x13{left:54.720000pt;}
.x11{left:59.680000pt;}
.xb{left:62.016136pt;}
.xa{left:78.114218pt;}
.x2{left:113.453600pt;}
.x33{left:128.000000pt;}
.x19{left:133.912960pt;}
.x37{left:135.215601pt;}
.x3d{left:136.109734pt;}
.x4{left:137.134880pt;}
.x14{left:140.640000pt;}
.x3f{left:142.399840pt;}
.x18{left:149.118720pt;}
.x17{left:155.360000pt;}
.x30{left:161.443840pt;}
.x9{left:163.815400pt;}
.x15{left:174.878720pt;}
.x1a{left:178.705920pt;}
.x2e{left:185.435680pt;}
.x16{left:203.038080pt;}
.x31{left:207.823360pt;}
.x2f{left:209.448160pt;}
.x3a{left:224.153148pt;}
.x38{left:227.418958pt;}
.x3b{left:228.321127pt;}
.x1{left:267.840000pt;}
.x39{left:269.056269pt;}
.x3c{left:269.950269pt;}
.x3{left:290.240000pt;}
.x10{left:292.640000pt;}
.x1c{left:299.984000pt;}
.x20{left:301.279360pt;}
.x21{left:307.844480pt;}
.x1d{left:310.067200pt;}
.x1b{left:319.826560pt;}
.x32{left:329.280000pt;}
.x35{left:335.216000pt;}
.x34{left:336.656000pt;}
.x23{left:338.064640pt;}
.x22{left:362.087680pt;}
.x1e{left:372.627200pt;}
.x6{left:375.200000pt;}
.x1f{left:391.836800pt;}
.x5{left:396.800000pt;}
.x12{left:491.040000pt;}
.x8{left:492.001533pt;}
.x25{left:498.704000pt;}
.x24{left:500.617600pt;}
.x26{left:501.589120pt;}
.x28{left:504.945280pt;}
.x29{left:510.538880pt;}
.x2b{left:525.420800pt;}
.x2c{left:534.061440pt;}
.x2d{left:535.665920pt;}
.x2a{left:543.658880pt;}
.x27{left:585.272320pt;}
.x7{left:614.880000pt;}
.xc{left:680.800000pt;}
.x41{left:691.450667pt;}
.x42{left:702.818667pt;}
.x36{left:714.951126pt;}
.x3e{left:736.246667pt;}
}




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