
    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_646689731c590517fe57f0c1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.955000;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_91def8adc4976499584e6655.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.955000;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_c92da2997c371426e20a2131.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.754395;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_7ecd3109ce11961b3d70fa25.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.973000;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_f6bbd2b37e0bfeb8d5c7eff4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.973145;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_2e327caea1126417883bb165.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958000;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_c2de475f09ac1fade178c1e7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.974609;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_4f06f5218bddbb94db93a343.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.007000;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_612c65ae54d135f15c7248b8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.973000;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_d9b370373fccfc25316718cb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c2a975e85a96f8b0fcd9ee90.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.896484;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_ace028ce26ec19d7a279dd81.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.954000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_29d90c676f6fb05e35478dff.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_29d90c676f6fb05e35478dff.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_39941e9d3cba7952a0a86190.woff2')format("woff");}.fff{font-family:fff;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_8ab28b4fb6998d7386f1d3ac.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_7b2a84383a4bafa899d0f585.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.675781;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;}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.932600px;}
.v2{vertical-align:23.976000px;}
.ls21{letter-spacing:-7.056000px;}
.ls1b{letter-spacing:-4.980000px;}
.lsd{letter-spacing:-1.800000px;}
.ls3{letter-spacing:-1.584000px;}
.lse{letter-spacing:-1.560000px;}
.ls2{letter-spacing:-1.512000px;}
.ls19{letter-spacing:-1.500000px;}
.lsc{letter-spacing:-1.368000px;}
.ls14{letter-spacing:-1.152000px;}
.ls18{letter-spacing:-1.140000px;}
.ls1f{letter-spacing:-1.008000px;}
.ls24{letter-spacing:-0.960000px;}
.ls1c{letter-spacing:-0.936000px;}
.ls6{letter-spacing:-0.864000px;}
.ls1a{letter-spacing:-0.840000px;}
.lsf{letter-spacing:-0.780000px;}
.ls17{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.660000px;}
.lsb{letter-spacing:-0.648000px;}
.ls26{letter-spacing:-0.600000px;}
.ls15{letter-spacing:-0.540000px;}
.ls27{letter-spacing:-0.480000px;}
.ls25{letter-spacing:-0.420000px;}
.ls10{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.288000px;}
.ls16{letter-spacing:-0.240000px;}
.ls9{letter-spacing:-0.216000px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.251856px;}
.ls20{letter-spacing:0.432000px;}
.ls7{letter-spacing:1.097448px;}
.ls23{letter-spacing:2.088600px;}
.ls0{letter-spacing:3.117000px;}
.ls5{letter-spacing:3.586200px;}
.ls4{letter-spacing:3.586800px;}
.ls1d{letter-spacing:4.056000px;}
.ls22{letter-spacing:9.919200px;}
.ls12{letter-spacing:11.949600px;}
.ls13{letter-spacing:404.821800px;}
.ls1e{letter-spacing:818.173800px;}
.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;}
}
.wsd5{word-spacing:-18.000000px;}
.wsfd{word-spacing:-16.488000px;}
.wsfa{word-spacing:-16.344000px;}
.wsa4{word-spacing:-15.768000px;}
.ws82{word-spacing:-15.696000px;}
.wsc6{word-spacing:-15.552000px;}
.wsf9{word-spacing:-15.336000px;}
.ws5a{word-spacing:-14.976000px;}
.ws1{word-spacing:-14.904000px;}
.ws0{word-spacing:-14.112000px;}
.ws10e{word-spacing:-13.740000px;}
.ws87{word-spacing:-13.620000px;}
.ws86{word-spacing:-13.260000px;}
.ws96{word-spacing:-13.080000px;}
.ws84{word-spacing:-12.840000px;}
.wsae{word-spacing:-12.780000px;}
.ws85{word-spacing:-12.060000px;}
.wse6{word-spacing:-10.008000px;}
.wse7{word-spacing:-9.936000px;}
.ws3e{word-spacing:-9.780408px;}
.wsb2{word-spacing:-8.640000px;}
.wse9{word-spacing:-6.264000px;}
.wse5{word-spacing:-6.192000px;}
.wse4{word-spacing:-6.120000px;}
.ws27{word-spacing:-5.832000px;}
.ws94{word-spacing:-5.040000px;}
.ws31{word-spacing:-4.896000px;}
.ws5d{word-spacing:-4.608000px;}
.ws122{word-spacing:-4.440000px;}
.ws123{word-spacing:-4.380000px;}
.ws11{word-spacing:-4.320000px;}
.ws80{word-spacing:-4.248000px;}
.wscd{word-spacing:-4.176000px;}
.wsb5{word-spacing:-4.104000px;}
.ws19{word-spacing:-4.032000px;}
.ws101{word-spacing:-3.960000px;}
.ws6f{word-spacing:-3.888000px;}
.wsb4{word-spacing:-3.816000px;}
.ws118{word-spacing:-3.660000px;}
.ws45{word-spacing:-3.600000px;}
.ws121{word-spacing:-3.540000px;}
.ws106{word-spacing:-3.528000px;}
.ws119{word-spacing:-3.420000px;}
.ws38{word-spacing:-3.384000px;}
.ws5{word-spacing:-3.240000px;}
.ws79{word-spacing:-3.168000px;}
.ws104{word-spacing:-3.096000px;}
.ws6d{word-spacing:-3.024000px;}
.ws10c{word-spacing:-2.952000px;}
.ws7e{word-spacing:-2.880000px;}
.wscc{word-spacing:-2.736000px;}
.ws129{word-spacing:-2.700000px;}
.ws63{word-spacing:-2.664000px;}
.ws53{word-spacing:-2.520000px;}
.ws42{word-spacing:-2.376000px;}
.ws134{word-spacing:-2.340000px;}
.wscf{word-spacing:-2.304000px;}
.ws54{word-spacing:-2.232000px;}
.ws120{word-spacing:-2.220000px;}
.ws69{word-spacing:-2.160000px;}
.ws7b{word-spacing:-2.088000px;}
.ws6a{word-spacing:-1.944000px;}
.ws25{word-spacing:-1.872000px;}
.ws24{word-spacing:-1.800000px;}
.ws135{word-spacing:-1.740000px;}
.ws73{word-spacing:-1.728000px;}
.wsb{word-spacing:-1.656000px;}
.ws124{word-spacing:-1.620000px;}
.ws26{word-spacing:-1.584000px;}
.ws76{word-spacing:-1.512000px;}
.wsa{word-spacing:-1.440000px;}
.ws13{word-spacing:-1.368000px;}
.ws75{word-spacing:-1.296000px;}
.ws8{word-spacing:-1.224000px;}
.ws20{word-spacing:-1.152000px;}
.wsdb{word-spacing:-1.080000px;}
.ws112{word-spacing:-1.020000px;}
.ws113{word-spacing:-0.960000px;}
.ws4f{word-spacing:-0.936000px;}
.ws4{word-spacing:-0.864000px;}
.ws18{word-spacing:-0.792000px;}
.ws78{word-spacing:-0.720000px;}
.ws115{word-spacing:-0.660000px;}
.ws29{word-spacing:-0.648000px;}
.ws2a{word-spacing:-0.576000px;}
.ws5e{word-spacing:-0.504000px;}
.ws64{word-spacing:-0.432000px;}
.ws127{word-spacing:-0.300000px;}
.ws58{word-spacing:-0.288000px;}
.wscb{word-spacing:-0.216000px;}
.ws46{word-spacing:-0.144000px;}
.ws12d{word-spacing:-0.120000px;}
.ws77{word-spacing:-0.072000px;}
.ws133{word-spacing:-0.060000px;}
.ws2{word-spacing:0.000000px;}
.ws3f{word-spacing:0.072000px;}
.ws12c{word-spacing:0.120000px;}
.wsc9{word-spacing:0.144000px;}
.ws47{word-spacing:0.216000px;}
.ws3d{word-spacing:0.288000px;}
.ws36{word-spacing:0.360000px;}
.ws128{word-spacing:0.420000px;}
.wsc{word-spacing:0.432000px;}
.ws125{word-spacing:0.480000px;}
.ws37{word-spacing:0.504000px;}
.ws1a{word-spacing:0.576000px;}
.ws126{word-spacing:0.600000px;}
.ws5c{word-spacing:0.648000px;}
.ws93{word-spacing:0.660000px;}
.ws32{word-spacing:0.720000px;}
.ws114{word-spacing:0.780000px;}
.ws7{word-spacing:0.792000px;}
.ws2d{word-spacing:0.864000px;}
.ws12f{word-spacing:0.900000px;}
.ws110{word-spacing:0.960000px;}
.ws44{word-spacing:1.008000px;}
.ws11f{word-spacing:1.020000px;}
.wsc8{word-spacing:1.080000px;}
.wsa1{word-spacing:1.140000px;}
.ws4c{word-spacing:1.152000px;}
.ws67{word-spacing:1.224000px;}
.ws11a{word-spacing:1.260000px;}
.ws11c{word-spacing:1.380000px;}
.ws5f{word-spacing:1.440000px;}
.ws11b{word-spacing:1.500000px;}
.ws14{word-spacing:1.512000px;}
.ws92{word-spacing:1.560000px;}
.wsd1{word-spacing:1.584000px;}
.ws1d{word-spacing:1.656000px;}
.ws130{word-spacing:1.680000px;}
.ws7a{word-spacing:1.728000px;}
.ws68{word-spacing:1.800000px;}
.ws48{word-spacing:1.872000px;}
.ws8e{word-spacing:1.944000px;}
.ws1c{word-spacing:2.016000px;}
.ws56{word-spacing:2.088000px;}
.ws12a{word-spacing:2.100000px;}
.ws22{word-spacing:2.160000px;}
.ws8c{word-spacing:2.232000px;}
.ws3a{word-spacing:2.304000px;}
.ws43{word-spacing:2.376000px;}
.ws23{word-spacing:2.448000px;}
.wsc7{word-spacing:2.520000px;}
.ws8b{word-spacing:2.592000px;}
.ws4d{word-spacing:2.736000px;}
.ws28{word-spacing:2.808000px;}
.ws2e{word-spacing:2.880000px;}
.ws40{word-spacing:3.024000px;}
.ws11e{word-spacing:3.060000px;}
.ws16{word-spacing:3.096000px;}
.wsc4{word-spacing:3.168000px;}
.ws55{word-spacing:3.240000px;}
.ws9{word-spacing:3.312000px;}
.ws50{word-spacing:3.384000px;}
.wsd6{word-spacing:3.456000px;}
.ws15{word-spacing:3.528000px;}
.ws52{word-spacing:3.600000px;}
.ws5b{word-spacing:3.672000px;}
.ws2c{word-spacing:3.744000px;}
.ws72{word-spacing:3.816000px;}
.ws12e{word-spacing:3.840000px;}
.ws61{word-spacing:3.888000px;}
.wse0{word-spacing:3.960000px;}
.ws74{word-spacing:4.032000px;}
.ws8f{word-spacing:4.104000px;}
.ws8d{word-spacing:4.176000px;}
.ws10f{word-spacing:4.200000px;}
.ws6{word-spacing:4.248000px;}
.ws111{word-spacing:4.260000px;}
.ws6e{word-spacing:4.320000px;}
.wsd2{word-spacing:4.392000px;}
.ws17{word-spacing:4.464000px;}
.ws11d{word-spacing:4.500000px;}
.ws10{word-spacing:4.536000px;}
.ws49{word-spacing:4.608000px;}
.ws103{word-spacing:4.680000px;}
.ws2f{word-spacing:4.752000px;}
.wsdf{word-spacing:4.824000px;}
.ws7d{word-spacing:4.896000px;}
.ws6c{word-spacing:4.968000px;}
.ws59{word-spacing:5.040000px;}
.ws4e{word-spacing:5.112000px;}
.ws7f{word-spacing:5.184000px;}
.wsce{word-spacing:5.328000px;}
.ws117{word-spacing:5.340000px;}
.ws1e{word-spacing:5.400000px;}
.ws41{word-spacing:5.472000px;}
.ws91{word-spacing:5.544000px;}
.ws33{word-spacing:5.616000px;}
.ws70{word-spacing:5.688000px;}
.ws65{word-spacing:5.760000px;}
.wsca{word-spacing:5.832000px;}
.ws21{word-spacing:5.976000px;}
.ws7c{word-spacing:6.120000px;}
.ws39{word-spacing:6.192000px;}
.wsb6{word-spacing:6.264000px;}
.wsd9{word-spacing:6.408000px;}
.ws51{word-spacing:6.480000px;}
.ws62{word-spacing:6.552000px;}
.ws60{word-spacing:6.624000px;}
.ws3{word-spacing:6.696000px;}
.ws12{word-spacing:6.768000px;}
.ws4a{word-spacing:6.840000px;}
.ws90{word-spacing:6.984000px;}
.ws102{word-spacing:7.056000px;}
.wsb3{word-spacing:7.200000px;}
.wsd3{word-spacing:7.272000px;}
.ws4b{word-spacing:7.344000px;}
.ws71{word-spacing:7.416000px;}
.ws57{word-spacing:7.560000px;}
.wsd7{word-spacing:7.632000px;}
.ws8a{word-spacing:7.776000px;}
.ws116{word-spacing:7.860000px;}
.wsda{word-spacing:7.920000px;}
.ws81{word-spacing:8.136000px;}
.wse{word-spacing:8.208000px;}
.ws6b{word-spacing:8.280000px;}
.ws1b{word-spacing:8.352000px;}
.ws3b{word-spacing:8.424000px;}
.wse3{word-spacing:8.496000px;}
.ws105{word-spacing:8.568000px;}
.ws109{word-spacing:8.640000px;}
.wsd4{word-spacing:8.784000px;}
.wsc5{word-spacing:8.856000px;}
.ws30{word-spacing:8.928000px;}
.wsa3{word-spacing:9.072000px;}
.ws12b{word-spacing:9.120000px;}
.wsd0{word-spacing:9.216000px;}
.ws66{word-spacing:9.360000px;}
.wsf{word-spacing:9.432000px;}
.ws107{word-spacing:9.720000px;}
.wsa2{word-spacing:9.792000px;}
.ws10a{word-spacing:9.936000px;}
.ws131{word-spacing:10.080000px;}
.ws108{word-spacing:10.152000px;}
.ws132{word-spacing:10.200000px;}
.ws34{word-spacing:10.656000px;}
.wsd{word-spacing:10.728000px;}
.ws2b{word-spacing:10.800000px;}
.ws10b{word-spacing:11.088000px;}
.ws10d{word-spacing:12.024000px;}
.wse1{word-spacing:12.528000px;}
.wsa0{word-spacing:12.600000px;}
.ws35{word-spacing:12.672000px;}
.ws3c{word-spacing:12.816000px;}
.wsd8{word-spacing:12.960000px;}
.ws1f{word-spacing:13.176000px;}
.wse2{word-spacing:13.248000px;}
.wsea{word-spacing:13.536000px;}
.wseb{word-spacing:14.256000px;}
.wsdc{word-spacing:14.544000px;}
.wsf3{word-spacing:14.976000px;}
.wse8{word-spacing:15.840000px;}
.wsf1{word-spacing:16.704000px;}
.wsde{word-spacing:16.776000px;}
.wsf2{word-spacing:17.640000px;}
.wsef{word-spacing:18.360000px;}
.wsdd{word-spacing:19.728000px;}
.wsec{word-spacing:25.776000px;}
.wsf6{word-spacing:26.208000px;}
.wsed{word-spacing:28.008000px;}
.wsf4{word-spacing:28.728000px;}
.wsf0{word-spacing:32.760000px;}
.wsee{word-spacing:41.040000px;}
.wsf5{word-spacing:41.616000px;}
.wsfc{word-spacing:166.660200px;}
.wsaf{word-spacing:182.858400px;}
.ws9b{word-spacing:189.607800px;}
.wsb0{word-spacing:224.092200px;}
.wsb1{word-spacing:224.092800px;}
.ws9e{word-spacing:230.193000px;}
.ws9c{word-spacing:240.033000px;}
.wsbc{word-spacing:240.907800px;}
.wsbf{word-spacing:244.065000px;}
.wsbb{word-spacing:245.265000px;}
.ws99{word-spacing:252.241800px;}
.wsbd{word-spacing:261.103800px;}
.ws9a{word-spacing:261.393000px;}
.wsc0{word-spacing:265.387200px;}
.wsbe{word-spacing:276.067200px;}
.wsb7{word-spacing:281.978400px;}
.ws9d{word-spacing:312.753000px;}
.wsc3{word-spacing:312.909000px;}
.wsc2{word-spacing:317.266200px;}
.ws89{word-spacing:318.745800px;}
.wsf7{word-spacing:324.331200px;}
.ws88{word-spacing:330.955800px;}
.ws98{word-spacing:334.113000px;}
.ws97{word-spacing:341.281800px;}
.ws9f{word-spacing:347.793000px;}
.wsf8{word-spacing:352.296000px;}
.wsba{word-spacing:372.238200px;}
.wsc1{word-spacing:400.612200px;}
.wsaa{word-spacing:415.655400px;}
.wsa7{word-spacing:421.686000px;}
.wsfb{word-spacing:423.504000px;}
.wsa9{word-spacing:447.335400px;}
.wsfe{word-spacing:459.331200px;}
.wsab{word-spacing:464.135400px;}
.wsa8{word-spacing:488.375400px;}
.wsa5{word-spacing:514.686000px;}
.wsa6{word-spacing:517.175400px;}
.wsff{word-spacing:526.224000px;}
.ws100{word-spacing:546.516000px;}
.wsac{word-spacing:588.270600px;}
.wsad{word-spacing:613.825200px;}
.ws83{word-spacing:670.672200px;}
.ws95{word-spacing:670.993800px;}
.wsb9{word-spacing:696.864600px;}
.wsb8{word-spacing:707.992200px;}
._a{margin-left:-10.152000px;}
._2c{margin-left:-9.151200px;}
._4{margin-left:-8.148000px;}
._9{margin-left:-6.868800px;}
._b{margin-left:-5.472000px;}
._8{margin-left:-4.449600px;}
._2{margin-left:-3.276000px;}
._5{margin-left:-2.023200px;}
._0{margin-left:-1.008000px;}
._6{width:1.051200px;}
._7{width:2.275200px;}
._c{width:3.906000px;}
._19{width:4.975200px;}
._28{width:6.264000px;}
._29{width:7.488000px;}
._2b{width:9.640800px;}
._1e{width:15.804000px;}
._26{width:37.080000px;}
._1a{width:113.196600px;}
._1f{width:138.612000px;}
._16{width:175.446000px;}
._20{width:196.147200px;}
._1d{width:213.561600px;}
._12{width:215.041800px;}
._e{width:230.098800px;}
._21{width:250.831200px;}
._13{width:275.013000px;}
._1c{width:292.546200px;}
._23{width:303.504600px;}
._25{width:322.429200px;}
._14{width:332.613000px;}
._24{width:334.512000px;}
._10{width:347.112000px;}
._11{width:361.339200px;}
._18{width:379.998000px;}
._17{width:389.274000px;}
._1b{width:421.973400px;}
._22{width:442.548000px;}
._f{width:545.342400px;}
._2a{width:563.877000px;}
._27{width:644.604000px;}
._d{width:718.548600px;}
._15{width:1077.135000px;}
._3{width:1329.586800px;}
._1{width:2135.274000px;}
.fc7{color:rgb(120,21,25);}
.fc6{color:rgb(17,85,204);}
.fc1{color:rgb(128,0,0);}
.fc5{color:rgb(34,34,34);}
.fc4{color:rgb(35,35,35);}
.fc3{color:rgb(35,31,32);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:41.976000px;}
.fs3{font-size:45.000000px;}
.fs5{font-size:60.000000px;}
.fs6{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs1{font-size:96.000000px;}
.y15c{bottom:-5.352600px;}
.y112{bottom:-5.334150px;}
.y0{bottom:0.000000px;}
.y2{bottom:16.138200px;}
.y1{bottom:17.966550px;}
.y173{bottom:55.598850px;}
.y5d{bottom:57.998850px;}
.y15a{bottom:59.319750px;}
.y88{bottom:67.598850px;}
.y110{bottom:69.545250px;}
.y2f{bottom:74.232300px;}
.y197{bottom:74.948850px;}
.y172{bottom:77.198850px;}
.y5c{bottom:79.598850px;}
.y159{bottom:80.919750px;}
.y233{bottom:81.612450px;}
.y87{bottom:89.198850px;}
.y10f{bottom:91.145250px;}
.y2e{bottom:95.832300px;}
.y196{bottom:96.548850px;}
.y171{bottom:98.798850px;}
.y232{bottom:99.612450px;}
.y5b{bottom:101.198850px;}
.y158{bottom:102.519750px;}
.y138{bottom:104.797800px;}
.yd6{bottom:110.720400px;}
.y86{bottom:110.798850px;}
.y10e{bottom:112.745250px;}
.y1f2{bottom:116.870400px;}
.y2d{bottom:117.432300px;}
.y195{bottom:118.148850px;}
.y170{bottom:120.398850px;}
.y5a{bottom:122.798850px;}
.y157{bottom:124.119750px;}
.y231{bottom:129.612450px;}
.yd5{bottom:132.320400px;}
.y85{bottom:132.398850px;}
.y137{bottom:134.797800px;}
.y1f1{bottom:138.470400px;}
.y2c{bottom:139.032300px;}
.y194{bottom:139.748850px;}
.yf2{bottom:141.238950px;}
.y16f{bottom:141.998850px;}
.y59{bottom:144.398850px;}
.y111{bottom:151.624500px;}
.yd4{bottom:153.920400px;}
.y84{bottom:153.998850px;}
.y156{bottom:157.719750px;}
.y230{bottom:159.612450px;}
.y1f0{bottom:160.070400px;}
.y2b{bottom:160.632300px;}
.y193{bottom:161.348850px;}
.yf1{bottom:162.838950px;}
.y58{bottom:165.998850px;}
.yab{bottom:170.798850px;}
.y83{bottom:175.598850px;}
.y155{bottom:179.319750px;}
.y1ef{bottom:181.670400px;}
.y2a{bottom:182.232300px;}
.y192{bottom:182.948850px;}
.yf0{bottom:184.438950px;}
.y57{bottom:187.598850px;}
.y136{bottom:187.702650px;}
.y22f{bottom:189.612450px;}
.yaa{bottom:192.398850px;}
.yd3{bottom:197.120400px;}
.y82{bottom:197.198850px;}
.y154{bottom:200.919750px;}
.y29{bottom:203.832300px;}
.y191{bottom:204.548850px;}
.yef{bottom:206.038950px;}
.y22e{bottom:207.612450px;}
.y1ee{bottom:215.270400px;}
.y135{bottom:217.702650px;}
.yd2{bottom:218.720400px;}
.y81{bottom:218.798850px;}
.y56{bottom:221.198850px;}
.y153{bottom:222.519750px;}
.y1cc{bottom:223.198050px;}
.ya9{bottom:225.998850px;}
.y190{bottom:226.148850px;}
.y205{bottom:228.398850px;}
.y28{bottom:237.432300px;}
.y22d{bottom:237.612450px;}
.yee{bottom:239.638950px;}
.yd1{bottom:240.320400px;}
.y16e{bottom:240.398850px;}
.y134{bottom:242.788350px;}
.y55{bottom:242.798850px;}
.y152{bottom:244.119750px;}
.ya8{bottom:247.598850px;}
.y18f{bottom:247.748850px;}
.y1cb{bottom:248.283900px;}
.y1ed{bottom:248.870400px;}
.y204{bottom:249.998850px;}
.y80{bottom:252.398850px;}
.y22c{bottom:255.612450px;}
.yed{bottom:258.388950px;}
.y27{bottom:259.032300px;}
.yd0{bottom:261.920400px;}
.y16d{bottom:261.998850px;}
.y54{bottom:264.398850px;}
.y151{bottom:265.719750px;}
.y133{bottom:267.874200px;}
.y18e{bottom:269.348850px;}
.y1ca{bottom:269.883900px;}
.y1ec{bottom:270.470400px;}
.y7f{bottom:273.998850px;}
.y26{bottom:280.632300px;}
.ya7{bottom:281.198850px;}
.yec{bottom:281.293800px;}
.ycf{bottom:283.520400px;}
.y16c{bottom:283.598850px;}
.y22b{bottom:285.612450px;}
.y53{bottom:285.998850px;}
.y18d{bottom:290.948850px;}
.y1eb{bottom:292.070400px;}
.y1c5{bottom:294.969750px;}
.y7e{bottom:295.598850px;}
.y15b{bottom:299.136000px;}
.y25{bottom:302.232300px;}
.ya6{bottom:302.798850px;}
.y132{bottom:303.529050px;}
.yce{bottom:305.120400px;}
.y16b{bottom:305.198850px;}
.y52{bottom:307.598850px;}
.yeb{bottom:311.293800px;}
.y18c{bottom:312.548850px;}
.y1ea{bottom:313.670400px;}
.y22a{bottom:315.612450px;}
.y7d{bottom:317.198850px;}
.y24{bottom:323.832300px;}
.ycd{bottom:326.720400px;}
.y16a{bottom:326.798850px;}
.y1c4{bottom:328.569600px;}
.y51{bottom:329.198850px;}
.y18b{bottom:334.148850px;}
.yea{bottom:334.198650px;}
.ye8{bottom:334.353300px;}
.y1e9{bottom:335.270400px;}
.ya5{bottom:336.398850px;}
.y131{bottom:337.129050px;}
.y7c{bottom:338.798850px;}
.y23{bottom:345.432300px;}
.y229{bottom:345.612450px;}
.ye7{bottom:346.353300px;}
.ycc{bottom:348.320400px;}
.y169{bottom:348.398850px;}
.y1c3{bottom:350.169600px;}
.y50{bottom:350.798850px;}
.y18a{bottom:355.748850px;}
.ya4{bottom:357.998850px;}
.y7b{bottom:360.398850px;}
.y228{bottom:363.612450px;}
.ye9{bottom:364.198650px;}
.ye6{bottom:364.353300px;}
.y22{bottom:367.032300px;}
.y1e8{bottom:368.870400px;}
.ycb{bottom:369.920400px;}
.y168{bottom:369.998850px;}
.y130{bottom:370.729050px;}
.y1c2{bottom:371.769750px;}
.y4f{bottom:372.398850px;}
.y189{bottom:377.348850px;}
.ya3{bottom:379.598850px;}
.y10d{bottom:381.545250px;}
.y7a{bottom:381.998850px;}
.y21{bottom:388.632300px;}
.y1e7{bottom:390.470400px;}
.yca{bottom:391.520400px;}
.y167{bottom:391.598850px;}
.y12f{bottom:392.329050px;}
.y1c1{bottom:393.369750px;}
.y227{bottom:393.612450px;}
.y4e{bottom:393.998850px;}
.y188{bottom:398.948850px;}
.ya2{bottom:401.198850px;}
.y79{bottom:403.598850px;}
.y1e6{bottom:412.070400px;}
.yc9{bottom:413.120400px;}
.y166{bottom:413.198850px;}
.y12e{bottom:413.929050px;}
.y10c{bottom:415.145250px;}
.y203{bottom:415.598850px;}
.ye5{bottom:417.258150px;}
.y251{bottom:417.929850px;}
.y187{bottom:420.548850px;}
.y20{bottom:422.232300px;}
.y226{bottom:423.612450px;}
.y78{bottom:425.198850px;}
.y1c0{bottom:426.969750px;}
.y4d{bottom:427.598850px;}
.y1e5{bottom:433.670400px;}
.ya1{bottom:434.798850px;}
.ye4{bottom:435.258150px;}
.y12d{bottom:435.529050px;}
.y250{bottom:435.929850px;}
.y10b{bottom:436.745250px;}
.y202{bottom:437.198850px;}
.y225{bottom:441.612450px;}
.y186{bottom:442.148850px;}
.y1f{bottom:443.832300px;}
.y77{bottom:446.798850px;}
.y1c9{bottom:448.569600px;}
.y1bf{bottom:448.569750px;}
.y4c{bottom:449.198850px;}
.y1e4{bottom:455.270400px;}
.yc8{bottom:456.320400px;}
.ya0{bottom:456.398850px;}
.y12c{bottom:457.129050px;}
.y10a{bottom:458.345250px;}
.y201{bottom:458.798850px;}
.y224{bottom:459.612450px;}
.y185{bottom:463.748850px;}
.ye3{bottom:465.258150px;}
.y1e{bottom:465.432300px;}
.y24f{bottom:468.929850px;}
.y1c8{bottom:470.169600px;}
.y1be{bottom:470.169750px;}
.y4b{bottom:470.798850px;}
.yc7{bottom:477.920400px;}
.y9f{bottom:477.998850px;}
.y109{bottom:479.945250px;}
.y76{bottom:480.398850px;}
.y184{bottom:485.348850px;}
.y24e{bottom:486.929850px;}
.y1d{bottom:487.032300px;}
.y1e3{bottom:488.870400px;}
.y223{bottom:489.612450px;}
.y4a{bottom:492.398850px;}
.y12b{bottom:493.729050px;}
.ye2{bottom:495.258150px;}
.yc6{bottom:499.520400px;}
.y9e{bottom:499.598850px;}
.y108{bottom:501.545250px;}
.y75{bottom:501.998850px;}
.y1c7{bottom:503.769600px;}
.y1bd{bottom:503.769750px;}
.y183{bottom:506.948850px;}
.y222{bottom:507.612450px;}
.y1c{bottom:508.632300px;}
.y49{bottom:513.998850px;}
.y24d{bottom:516.929850px;}
.ye1{bottom:518.163000px;}
.yc5{bottom:521.120400px;}
.y9d{bottom:521.198850px;}
.y1e2{bottom:522.470400px;}
.y107{bottom:523.145250px;}
.y74{bottom:523.598850px;}
.y1bc{bottom:525.369750px;}
.y221{bottom:525.612450px;}
.y182{bottom:528.548850px;}
.y1b{bottom:530.232300px;}
.y165{bottom:533.198850px;}
.y150{bottom:534.519750px;}
.y24c{bottom:534.929850px;}
.y48{bottom:535.598850px;}
.y12a{bottom:542.329050px;}
.yc4{bottom:542.720400px;}
.y9c{bottom:542.798850px;}
.y1e1{bottom:544.070400px;}
.y106{bottom:544.745250px;}
.y73{bottom:545.198850px;}
.y1bb{bottom:546.969750px;}
.y200{bottom:547.598850px;}
.y1a{bottom:551.832300px;}
.y164{bottom:554.798850px;}
.y220{bottom:555.612450px;}
.ye0{bottom:555.998850px;}
.y47{bottom:557.198850px;}
.y129{bottom:563.929050px;}
.yc3{bottom:564.320400px;}
.y9b{bottom:564.398850px;}
.y1e0{bottom:565.670400px;}
.y72{bottom:566.798850px;}
.y24b{bottom:567.929850px;}
.y14f{bottom:568.119750px;}
.y1ff{bottom:569.198850px;}
.y19{bottom:573.432300px;}
.y21f{bottom:573.612450px;}
.y163{bottom:576.398850px;}
.y46{bottom:578.798850px;}
.y1c6{bottom:580.569600px;}
.y1ba{bottom:580.569750px;}
.y128{bottom:585.529050px;}
.y9a{bottom:585.998850px;}
.y71{bottom:588.398850px;}
.ydf{bottom:589.598850px;}
.y21e{bottom:591.612450px;}
.y18{bottom:595.032300px;}
.yc2{bottom:597.920400px;}
.y24a{bottom:597.929850px;}
.y162{bottom:597.998850px;}
.y1df{bottom:599.270400px;}
.y181{bottom:599.348850px;}
.y45{bottom:600.398850px;}
.y14e{bottom:601.719750px;}
.y1fe{bottom:602.798850px;}
.y1b9{bottom:605.655600px;}
.y99{bottom:607.598850px;}
.y105{bottom:608.345250px;}
.y21d{bottom:609.612450px;}
.y70{bottom:609.998850px;}
.yde{bottom:611.198850px;}
.y17{bottom:616.632300px;}
.y127{bottom:619.129050px;}
.y161{bottom:619.598850px;}
.y1de{bottom:620.870400px;}
.y180{bottom:620.948850px;}
.y44{bottom:621.998850px;}
.y14d{bottom:623.319750px;}
.y1fd{bottom:624.398850px;}
.y104{bottom:627.137250px;}
.y1b8{bottom:627.255450px;}
.y249{bottom:627.929850px;}
.yc1{bottom:631.520400px;}
.y6f{bottom:631.598850px;}
.y126{bottom:632.629050px;}
.ydd{bottom:632.798850px;}
.y16{bottom:638.232300px;}
.y21c{bottom:639.612450px;}
.y98{bottom:641.198850px;}
.y17f{bottom:642.548850px;}
.y43{bottom:643.598850px;}
.y14c{bottom:644.919750px;}
.y1fc{bottom:645.998850px;}
.y103{bottom:650.139150px;}
.yc0{bottom:653.120400px;}
.y6e{bottom:653.198850px;}
.ydc{bottom:654.398850px;}
.y1dd{bottom:654.470400px;}
.y248{bottom:657.929850px;}
.y15{bottom:659.832300px;}
.y125{bottom:662.629050px;}
.y97{bottom:662.798850px;}
.y17e{bottom:664.148850px;}
.y42{bottom:665.198850px;}
.y1b7{bottom:668.091300px;}
.y21b{bottom:669.612450px;}
.ybf{bottom:674.720400px;}
.y6d{bottom:674.798850px;}
.y124{bottom:675.033900px;}
.y247{bottom:675.929850px;}
.ydb{bottom:675.998850px;}
.y14b{bottom:678.519750px;}
.y1fb{bottom:679.598850px;}
.y102{bottom:680.139150px;}
.y14{bottom:681.432300px;}
.y96{bottom:684.398850px;}
.y17d{bottom:685.748850px;}
.y21a{bottom:687.612450px;}
.y1dc{bottom:688.070400px;}
.ybe{bottom:696.320400px;}
.y6c{bottom:696.398850px;}
.y14a{bottom:697.269750px;}
.y1fa{bottom:701.198850px;}
.y101{bottom:703.141200px;}
.y123{bottom:705.033900px;}
.y219{bottom:705.612450px;}
.y246{bottom:705.929850px;}
.y95{bottom:705.998850px;}
.y17c{bottom:707.348850px;}
.y41{bottom:708.398850px;}
.yda{bottom:712.598850px;}
.y100{bottom:715.141200px;}
.y122{bottom:717.438750px;}
.y1b6{bottom:717.441300px;}
.ybd{bottom:717.920400px;}
.y160{bottom:717.998850px;}
.y13{bottom:718.032300px;}
.y1db{bottom:721.670400px;}
.y245{bottom:723.929850px;}
.y149{bottom:727.269750px;}
.y94{bottom:727.598850px;}
.y17b{bottom:728.948850px;}
.y121{bottom:729.438750px;}
.y40{bottom:729.998850px;}
.y1a6{bottom:731.348850px;}
.y6b{bottom:732.998850px;}
.yff{bottom:733.141200px;}
.y1f9{bottom:734.798850px;}
.y218{bottom:735.612450px;}
.ybc{bottom:739.520400px;}
.y15f{bottom:739.598850px;}
.y1b5{bottom:742.527150px;}
.y120{bottom:747.438750px;}
.y93{bottom:749.198850px;}
.y17a{bottom:750.548850px;}
.y3f{bottom:751.598850px;}
.y1a5{bottom:752.948850px;}
.y217{bottom:753.612450px;}
.y244{bottom:753.929850px;}
.y1da{bottom:755.270400px;}
.yfe{bottom:756.143250px;}
.y1f8{bottom:756.398850px;}
.y11f{bottom:759.843600px;}
.ybb{bottom:761.120400px;}
.yd9{bottom:761.198850px;}
.y1b4{bottom:764.127150px;}
.y147{bottom:768.174600px;}
.y12{bottom:769.182300px;}
.y179{bottom:772.148850px;}
.y3e{bottom:773.198850px;}
.y148{bottom:774.174600px;}
.y1a4{bottom:774.548850px;}
.y1d9{bottom:776.870400px;}
.y92{bottom:782.798850px;}
.y216{bottom:783.612450px;}
.y243{bottom:783.929850px;}
.y6a{bottom:784.148850px;}
.yfd{bottom:786.143250px;}
.y146{bottom:786.174600px;}
.y11e{bottom:789.843600px;}
.y1f7{bottom:789.998850px;}
.y178{bottom:793.748850px;}
.yba{bottom:794.720400px;}
.y3d{bottom:794.798850px;}
.y1a3{bottom:796.148850px;}
.y215{bottom:801.612450px;}
.y11d{bottom:802.248450px;}
.y11{bottom:802.782300px;}
.y145{bottom:804.174600px;}
.y91{bottom:804.398850px;}
.y69{bottom:805.748850px;}
.yfc{bottom:809.145150px;}
.y1d8{bottom:810.470400px;}
.y1b3{bottom:810.813000px;}
.y242{bottom:813.929850px;}
.y177{bottom:815.348850px;}
.yb9{bottom:816.320400px;}
.y3c{bottom:816.398850px;}
.y1a2{bottom:817.748850px;}
.y214{bottom:819.612450px;}
.yfb{bottom:821.145150px;}
.y1f6{bottom:823.598850px;}
.y10{bottom:824.382300px;}
.y90{bottom:825.998850px;}
.y144{bottom:827.079450px;}
.y68{bottom:827.348850px;}
.y241{bottom:831.929850px;}
.y1d7{bottom:832.070400px;}
.y11c{bottom:832.248450px;}
.y1b2{bottom:832.413000px;}
.y176{bottom:836.948850px;}
.yb8{bottom:837.920400px;}
.yfa{bottom:839.145150px;}
.y1a1{bottom:839.348850px;}
.y11b{bottom:844.653300px;}
.y1f5{bottom:845.198850px;}
.yf{bottom:845.982300px;}
.y8f{bottom:847.598850px;}
.y67{bottom:848.948850px;}
.y213{bottom:852.612450px;}
.y1b1{bottom:854.013000px;}
.y143{bottom:857.079450px;}
.y175{bottom:858.548850px;}
.yb7{bottom:859.520400px;}
.y3b{bottom:859.598850px;}
.y1a0{bottom:860.948850px;}
.y240{bottom:861.929850px;}
.yf9{bottom:862.147200px;}
.ye{bottom:867.582300px;}
.y1d6{bottom:868.670400px;}
.y8e{bottom:869.198850px;}
.y66{bottom:870.548850px;}
.y212{bottom:870.612450px;}
.y11a{bottom:874.653300px;}
.y1b0{bottom:875.612850px;}
.y142{bottom:879.984300px;}
.y174{bottom:880.148850px;}
.yb6{bottom:881.120400px;}
.y3a{bottom:881.198850px;}
.y1f4{bottom:881.798850px;}
.y19f{bottom:882.548850px;}
.yd8{bottom:884.198850px;}
.yd{bottom:889.182300px;}
.y8d{bottom:890.798850px;}
.y23f{bottom:891.929850px;}
.yf8{bottom:892.147200px;}
.y65{bottom:892.148850px;}
.y1af{bottom:897.213000px;}
.y211{bottom:900.612450px;}
.yb5{bottom:902.720400px;}
.y39{bottom:902.798850px;}
.y19e{bottom:904.148850px;}
.y119{bottom:905.058150px;}
.y141{bottom:909.984300px;}
.yc{bottom:910.782300px;}
.y15e{bottom:912.398850px;}
.y64{bottom:913.748850px;}
.yf7{bottom:915.149100px;}
.y1d5{bottom:919.820400px;}
.y23e{bottom:921.929850px;}
.y1ae{bottom:922.298700px;}
.y118{bottom:923.058150px;}
.yb4{bottom:924.320400px;}
.y38{bottom:924.398850px;}
.y19d{bottom:925.748850px;}
.yb{bottom:932.382300px;}
.y1f3{bottom:932.948850px;}
.y210{bottom:933.612450px;}
.y117{bottom:933.963000px;}
.y63{bottom:935.348850px;}
.y23d{bottom:939.929850px;}
.y1d4{bottom:941.420400px;}
.y1ad{bottom:943.898700px;}
.yf6{bottom:945.149100px;}
.yb3{bottom:945.920400px;}
.y37{bottom:945.998850px;}
.y19c{bottom:947.348850px;}
.y140{bottom:950.889150px;}
.y20f{bottom:951.612450px;}
.ya{bottom:953.982300px;}
.y62{bottom:956.948850px;}
.y23c{bottom:957.929850px;}
.y1d3{bottom:963.020400px;}
.y1ac{bottom:965.498700px;}
.y116{bottom:966.548850px;}
.yb2{bottom:967.520400px;}
.y36{bottom:967.598850px;}
.y13f{bottom:968.889150px;}
.y19b{bottom:968.948850px;}
.y20e{bottom:969.612450px;}
.y9{bottom:975.582300px;}
.y61{bottom:978.548850px;}
.yf5{bottom:986.162100px;}
.y20d{bottom:987.612450px;}
.y23b{bottom:987.929850px;}
.y115{bottom:988.148850px;}
.yb1{bottom:989.120400px;}
.y35{bottom:989.198850px;}
.y19a{bottom:990.548850px;}
.y1ab{bottom:990.584550px;}
.y13e{bottom:993.975000px;}
.y8{bottom:997.182300px;}
.y1d2{bottom:999.620400px;}
.y60{bottom:1000.148850px;}
.yf4{bottom:1004.162100px;}
.y20c{bottom:1005.612450px;}
.yb0{bottom:1010.720400px;}
.y8c{bottom:1010.798850px;}
.y199{bottom:1012.148850px;}
.y23a{bottom:1020.929850px;}
.y1d1{bottom:1021.220400px;}
.y5f{bottom:1021.748850px;}
.y34{bottom:1025.798850px;}
.yf3{bottom:1027.113000px;}
.y13d{bottom:1029.629850px;}
.y1aa{bottom:1031.420400px;}
.yaf{bottom:1032.320400px;}
.y8b{bottom:1032.398850px;}
.y198{bottom:1033.748850px;}
.y7{bottom:1033.782300px;}
.y20b{bottom:1035.612450px;}
.y239{bottom:1038.929850px;}
.y1d0{bottom:1042.820400px;}
.y5e{bottom:1043.348850px;}
.y15d{bottom:1047.398850px;}
.y1a9{bottom:1052.120400px;}
.y20a{bottom:1053.612450px;}
.yae{bottom:1053.920400px;}
.y8a{bottom:1053.998850px;}
.yd7{bottom:1055.348850px;}
.y238{bottom:1056.929850px;}
.y13c{bottom:1063.229850px;}
.y1cf{bottom:1064.420400px;}
.y114{bottom:1064.948850px;}
.y209{bottom:1071.612450px;}
.y1a8{bottom:1072.820400px;}
.y237{bottom:1074.929850px;}
.y33{bottom:1076.948850px;}
.y6{bottom:1081.482300px;}
.y13b{bottom:1084.829700px;}
.y1ce{bottom:1086.020400px;}
.y113{bottom:1086.548850px;}
.y208{bottom:1089.612450px;}
.yad{bottom:1090.520400px;}
.y89{bottom:1090.598850px;}
.y1a7{bottom:1093.520400px;}
.y32{bottom:1098.548850px;}
.y5{bottom:1103.082300px;}
.y207{bottom:1107.612450px;}
.y1cd{bottom:1107.620400px;}
.y236{bottom:1107.929850px;}
.y13a{bottom:1118.429850px;}
.y31{bottom:1120.148850px;}
.y235{bottom:1125.929850px;}
.y4{bottom:1136.682300px;}
.y139{bottom:1137.179850px;}
.y206{bottom:1140.612450px;}
.yac{bottom:1141.220400px;}
.y30{bottom:1141.748850px;}
.y234{bottom:1143.929850px;}
.y3{bottom:1193.084700px;}
.h10{height:42.840000px;}
.hb{height:42.960000px;}
.hc{height:43.593750px;}
.hf{height:44.149219px;}
.hd{height:45.000000px;}
.ha{height:49.992188px;}
.h13{height:51.120000px;}
.h5{height:51.408000px;}
.h8{height:51.552000px;}
.h7{height:54.000000px;}
.h9{height:54.030816px;}
.h14{height:54.457031px;}
.h6{height:54.562500px;}
.h2{height:58.800000px;}
.h12{height:59.640000px;}
.h3{height:62.076600px;}
.h4{height:72.609375px;}
.he{height:209.520000px;}
.h11{height:211.678500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:691.800000px;}
.w3{width:697.833000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5e{left:12.658650px;}
.x33{left:25.520850px;}
.x2{left:54.000000px;}
.x1e{left:60.750150px;}
.x3d{left:62.850000px;}
.x5d{left:97.540500px;}
.x32{left:100.108500px;}
.x5{left:108.000000px;}
.x27{left:172.925550px;}
.x26{left:177.747150px;}
.xf{left:185.851050px;}
.x47{left:194.151300px;}
.x46{left:198.973050px;}
.xe{left:203.123250px;}
.xd{left:205.582950px;}
.x1f{left:210.120750px;}
.x3e{left:218.761500px;}
.x50{left:226.033050px;}
.x35{left:234.243000px;}
.xc{left:249.904200px;}
.x36{left:253.143300px;}
.x42{left:272.887950px;}
.x2f{left:284.483700px;}
.x12{left:291.900000px;}
.x28{left:295.182900px;}
.x29{left:298.926000px;}
.x20{left:312.922350px;}
.x10{left:317.474550px;}
.x11{left:319.072200px;}
.x48{left:320.473800px;}
.x56{left:331.738500px;}
.x51{left:334.408350px;}
.x34{left:343.192200px;}
.x5f{left:344.775000px;}
.x5a{left:352.408050px;}
.x61{left:372.536700px;}
.x3f{left:374.793600px;}
.x37{left:383.738850px;}
.x2b{left:396.832050px;}
.x2a{left:401.653650px;}
.x15{left:412.761900px;}
.x4a{left:417.947850px;}
.x49{left:422.769450px;}
.x14{left:426.906150px;}
.x38{left:428.183400px;}
.x13{left:429.366000px;}
.x21{left:433.903650px;}
.x1{left:436.736700px;}
.x52{left:449.829450px;}
.x43{left:470.324100px;}
.x60{left:485.625000px;}
.x62{left:493.811700px;}
.x30{left:508.390200px;}
.x18{left:515.726250px;}
.x3{left:518.317800px;}
.x63{left:520.811700px;}
.x4{left:523.278450px;}
.x40{left:532.512450px;}
.x22{left:536.748600px;}
.x4b{left:539.773200px;}
.x16{left:541.300800px;}
.x17{left:542.898450px;}
.x39{left:547.993800px;}
.x58{left:554.780850px;}
.x53{left:557.450850px;}
.x3a{left:566.894250px;}
.x44{left:572.260800px;}
.x5b{left:575.450550px;}
.x8{left:592.746450px;}
.x9{left:598.375800px;}
.x2d{left:620.738550px;}
.x2c{left:625.560300px;}
.xa{left:632.655900px;}
.xb{left:637.341000px;}
.x4d{left:639.900900px;}
.x4c{left:644.722650px;}
.x1a{left:650.775750px;}
.x19{left:653.235450px;}
.x23{left:657.773100px;}
.x6{left:665.220750px;}
.x45{left:667.760400px;}
.x64{left:669.161700px;}
.x54{left:671.782650px;}
.x7{left:672.943050px;}
.x41{left:688.544550px;}
.x65{left:696.161700px;}
.x3b{left:720.026700px;}
.x3c{left:723.769650px;}
.x31{left:732.296700px;}
.x2e{left:742.952700px;}
.x1d{left:747.583500px;}
.x4e{left:753.347550px;}
.x4f{left:757.090650px;}
.x24{left:758.457900px;}
.x25{left:760.618050px;}
.x1b{left:765.170250px;}
.x1c{left:766.767900px;}
.x55{left:771.025200px;}
.x57{left:774.775200px;}
.x59{left:777.445050px;}
.x5c{left:789.024900px;}
.x66{left:838.913400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.717867pt;}
.v2{vertical-align:21.312000pt;}
.ls21{letter-spacing:-6.272000pt;}
.ls1b{letter-spacing:-4.426667pt;}
.lsd{letter-spacing:-1.600000pt;}
.ls3{letter-spacing:-1.408000pt;}
.lse{letter-spacing:-1.386667pt;}
.ls2{letter-spacing:-1.344000pt;}
.ls19{letter-spacing:-1.333333pt;}
.lsc{letter-spacing:-1.216000pt;}
.ls14{letter-spacing:-1.024000pt;}
.ls18{letter-spacing:-1.013333pt;}
.ls1f{letter-spacing:-0.896000pt;}
.ls24{letter-spacing:-0.853333pt;}
.ls1c{letter-spacing:-0.832000pt;}
.ls6{letter-spacing:-0.768000pt;}
.ls1a{letter-spacing:-0.746667pt;}
.lsf{letter-spacing:-0.693333pt;}
.ls17{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.586667pt;}
.lsb{letter-spacing:-0.576000pt;}
.ls26{letter-spacing:-0.533333pt;}
.ls15{letter-spacing:-0.480000pt;}
.ls27{letter-spacing:-0.426667pt;}
.ls25{letter-spacing:-0.373333pt;}
.ls10{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls16{letter-spacing:-0.213333pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.223872pt;}
.ls20{letter-spacing:0.384000pt;}
.ls7{letter-spacing:0.975509pt;}
.ls23{letter-spacing:1.856533pt;}
.ls0{letter-spacing:2.770667pt;}
.ls5{letter-spacing:3.187733pt;}
.ls4{letter-spacing:3.188267pt;}
.ls1d{letter-spacing:3.605333pt;}
.ls22{letter-spacing:8.817067pt;}
.ls12{letter-spacing:10.621867pt;}
.ls13{letter-spacing:359.841600pt;}
.ls1e{letter-spacing:727.265600pt;}
.wsd5{word-spacing:-16.000000pt;}
.wsfd{word-spacing:-14.656000pt;}
.wsfa{word-spacing:-14.528000pt;}
.wsa4{word-spacing:-14.016000pt;}
.ws82{word-spacing:-13.952000pt;}
.wsc6{word-spacing:-13.824000pt;}
.wsf9{word-spacing:-13.632000pt;}
.ws5a{word-spacing:-13.312000pt;}
.ws1{word-spacing:-13.248000pt;}
.ws0{word-spacing:-12.544000pt;}
.ws10e{word-spacing:-12.213333pt;}
.ws87{word-spacing:-12.106667pt;}
.ws86{word-spacing:-11.786667pt;}
.ws96{word-spacing:-11.626667pt;}
.ws84{word-spacing:-11.413333pt;}
.wsae{word-spacing:-11.360000pt;}
.ws85{word-spacing:-10.720000pt;}
.wse6{word-spacing:-8.896000pt;}
.wse7{word-spacing:-8.832000pt;}
.ws3e{word-spacing:-8.693696pt;}
.wsb2{word-spacing:-7.680000pt;}
.wse9{word-spacing:-5.568000pt;}
.wse5{word-spacing:-5.504000pt;}
.wse4{word-spacing:-5.440000pt;}
.ws27{word-spacing:-5.184000pt;}
.ws94{word-spacing:-4.480000pt;}
.ws31{word-spacing:-4.352000pt;}
.ws5d{word-spacing:-4.096000pt;}
.ws122{word-spacing:-3.946667pt;}
.ws123{word-spacing:-3.893333pt;}
.ws11{word-spacing:-3.840000pt;}
.ws80{word-spacing:-3.776000pt;}
.wscd{word-spacing:-3.712000pt;}
.wsb5{word-spacing:-3.648000pt;}
.ws19{word-spacing:-3.584000pt;}
.ws101{word-spacing:-3.520000pt;}
.ws6f{word-spacing:-3.456000pt;}
.wsb4{word-spacing:-3.392000pt;}
.ws118{word-spacing:-3.253333pt;}
.ws45{word-spacing:-3.200000pt;}
.ws121{word-spacing:-3.146667pt;}
.ws106{word-spacing:-3.136000pt;}
.ws119{word-spacing:-3.040000pt;}
.ws38{word-spacing:-3.008000pt;}
.ws5{word-spacing:-2.880000pt;}
.ws79{word-spacing:-2.816000pt;}
.ws104{word-spacing:-2.752000pt;}
.ws6d{word-spacing:-2.688000pt;}
.ws10c{word-spacing:-2.624000pt;}
.ws7e{word-spacing:-2.560000pt;}
.wscc{word-spacing:-2.432000pt;}
.ws129{word-spacing:-2.400000pt;}
.ws63{word-spacing:-2.368000pt;}
.ws53{word-spacing:-2.240000pt;}
.ws42{word-spacing:-2.112000pt;}
.ws134{word-spacing:-2.080000pt;}
.wscf{word-spacing:-2.048000pt;}
.ws54{word-spacing:-1.984000pt;}
.ws120{word-spacing:-1.973333pt;}
.ws69{word-spacing:-1.920000pt;}
.ws7b{word-spacing:-1.856000pt;}
.ws6a{word-spacing:-1.728000pt;}
.ws25{word-spacing:-1.664000pt;}
.ws24{word-spacing:-1.600000pt;}
.ws135{word-spacing:-1.546667pt;}
.ws73{word-spacing:-1.536000pt;}
.wsb{word-spacing:-1.472000pt;}
.ws124{word-spacing:-1.440000pt;}
.ws26{word-spacing:-1.408000pt;}
.ws76{word-spacing:-1.344000pt;}
.wsa{word-spacing:-1.280000pt;}
.ws13{word-spacing:-1.216000pt;}
.ws75{word-spacing:-1.152000pt;}
.ws8{word-spacing:-1.088000pt;}
.ws20{word-spacing:-1.024000pt;}
.wsdb{word-spacing:-0.960000pt;}
.ws112{word-spacing:-0.906667pt;}
.ws113{word-spacing:-0.853333pt;}
.ws4f{word-spacing:-0.832000pt;}
.ws4{word-spacing:-0.768000pt;}
.ws18{word-spacing:-0.704000pt;}
.ws78{word-spacing:-0.640000pt;}
.ws115{word-spacing:-0.586667pt;}
.ws29{word-spacing:-0.576000pt;}
.ws2a{word-spacing:-0.512000pt;}
.ws5e{word-spacing:-0.448000pt;}
.ws64{word-spacing:-0.384000pt;}
.ws127{word-spacing:-0.266667pt;}
.ws58{word-spacing:-0.256000pt;}
.wscb{word-spacing:-0.192000pt;}
.ws46{word-spacing:-0.128000pt;}
.ws12d{word-spacing:-0.106667pt;}
.ws77{word-spacing:-0.064000pt;}
.ws133{word-spacing:-0.053333pt;}
.ws2{word-spacing:0.000000pt;}
.ws3f{word-spacing:0.064000pt;}
.ws12c{word-spacing:0.106667pt;}
.wsc9{word-spacing:0.128000pt;}
.ws47{word-spacing:0.192000pt;}
.ws3d{word-spacing:0.256000pt;}
.ws36{word-spacing:0.320000pt;}
.ws128{word-spacing:0.373333pt;}
.wsc{word-spacing:0.384000pt;}
.ws125{word-spacing:0.426667pt;}
.ws37{word-spacing:0.448000pt;}
.ws1a{word-spacing:0.512000pt;}
.ws126{word-spacing:0.533333pt;}
.ws5c{word-spacing:0.576000pt;}
.ws93{word-spacing:0.586667pt;}
.ws32{word-spacing:0.640000pt;}
.ws114{word-spacing:0.693333pt;}
.ws7{word-spacing:0.704000pt;}
.ws2d{word-spacing:0.768000pt;}
.ws12f{word-spacing:0.800000pt;}
.ws110{word-spacing:0.853333pt;}
.ws44{word-spacing:0.896000pt;}
.ws11f{word-spacing:0.906667pt;}
.wsc8{word-spacing:0.960000pt;}
.wsa1{word-spacing:1.013333pt;}
.ws4c{word-spacing:1.024000pt;}
.ws67{word-spacing:1.088000pt;}
.ws11a{word-spacing:1.120000pt;}
.ws11c{word-spacing:1.226667pt;}
.ws5f{word-spacing:1.280000pt;}
.ws11b{word-spacing:1.333333pt;}
.ws14{word-spacing:1.344000pt;}
.ws92{word-spacing:1.386667pt;}
.wsd1{word-spacing:1.408000pt;}
.ws1d{word-spacing:1.472000pt;}
.ws130{word-spacing:1.493333pt;}
.ws7a{word-spacing:1.536000pt;}
.ws68{word-spacing:1.600000pt;}
.ws48{word-spacing:1.664000pt;}
.ws8e{word-spacing:1.728000pt;}
.ws1c{word-spacing:1.792000pt;}
.ws56{word-spacing:1.856000pt;}
.ws12a{word-spacing:1.866667pt;}
.ws22{word-spacing:1.920000pt;}
.ws8c{word-spacing:1.984000pt;}
.ws3a{word-spacing:2.048000pt;}
.ws43{word-spacing:2.112000pt;}
.ws23{word-spacing:2.176000pt;}
.wsc7{word-spacing:2.240000pt;}
.ws8b{word-spacing:2.304000pt;}
.ws4d{word-spacing:2.432000pt;}
.ws28{word-spacing:2.496000pt;}
.ws2e{word-spacing:2.560000pt;}
.ws40{word-spacing:2.688000pt;}
.ws11e{word-spacing:2.720000pt;}
.ws16{word-spacing:2.752000pt;}
.wsc4{word-spacing:2.816000pt;}
.ws55{word-spacing:2.880000pt;}
.ws9{word-spacing:2.944000pt;}
.ws50{word-spacing:3.008000pt;}
.wsd6{word-spacing:3.072000pt;}
.ws15{word-spacing:3.136000pt;}
.ws52{word-spacing:3.200000pt;}
.ws5b{word-spacing:3.264000pt;}
.ws2c{word-spacing:3.328000pt;}
.ws72{word-spacing:3.392000pt;}
.ws12e{word-spacing:3.413333pt;}
.ws61{word-spacing:3.456000pt;}
.wse0{word-spacing:3.520000pt;}
.ws74{word-spacing:3.584000pt;}
.ws8f{word-spacing:3.648000pt;}
.ws8d{word-spacing:3.712000pt;}
.ws10f{word-spacing:3.733333pt;}
.ws6{word-spacing:3.776000pt;}
.ws111{word-spacing:3.786667pt;}
.ws6e{word-spacing:3.840000pt;}
.wsd2{word-spacing:3.904000pt;}
.ws17{word-spacing:3.968000pt;}
.ws11d{word-spacing:4.000000pt;}
.ws10{word-spacing:4.032000pt;}
.ws49{word-spacing:4.096000pt;}
.ws103{word-spacing:4.160000pt;}
.ws2f{word-spacing:4.224000pt;}
.wsdf{word-spacing:4.288000pt;}
.ws7d{word-spacing:4.352000pt;}
.ws6c{word-spacing:4.416000pt;}
.ws59{word-spacing:4.480000pt;}
.ws4e{word-spacing:4.544000pt;}
.ws7f{word-spacing:4.608000pt;}
.wsce{word-spacing:4.736000pt;}
.ws117{word-spacing:4.746667pt;}
.ws1e{word-spacing:4.800000pt;}
.ws41{word-spacing:4.864000pt;}
.ws91{word-spacing:4.928000pt;}
.ws33{word-spacing:4.992000pt;}
.ws70{word-spacing:5.056000pt;}
.ws65{word-spacing:5.120000pt;}
.wsca{word-spacing:5.184000pt;}
.ws21{word-spacing:5.312000pt;}
.ws7c{word-spacing:5.440000pt;}
.ws39{word-spacing:5.504000pt;}
.wsb6{word-spacing:5.568000pt;}
.wsd9{word-spacing:5.696000pt;}
.ws51{word-spacing:5.760000pt;}
.ws62{word-spacing:5.824000pt;}
.ws60{word-spacing:5.888000pt;}
.ws3{word-spacing:5.952000pt;}
.ws12{word-spacing:6.016000pt;}
.ws4a{word-spacing:6.080000pt;}
.ws90{word-spacing:6.208000pt;}
.ws102{word-spacing:6.272000pt;}
.wsb3{word-spacing:6.400000pt;}
.wsd3{word-spacing:6.464000pt;}
.ws4b{word-spacing:6.528000pt;}
.ws71{word-spacing:6.592000pt;}
.ws57{word-spacing:6.720000pt;}
.wsd7{word-spacing:6.784000pt;}
.ws8a{word-spacing:6.912000pt;}
.ws116{word-spacing:6.986667pt;}
.wsda{word-spacing:7.040000pt;}
.ws81{word-spacing:7.232000pt;}
.wse{word-spacing:7.296000pt;}
.ws6b{word-spacing:7.360000pt;}
.ws1b{word-spacing:7.424000pt;}
.ws3b{word-spacing:7.488000pt;}
.wse3{word-spacing:7.552000pt;}
.ws105{word-spacing:7.616000pt;}
.ws109{word-spacing:7.680000pt;}
.wsd4{word-spacing:7.808000pt;}
.wsc5{word-spacing:7.872000pt;}
.ws30{word-spacing:7.936000pt;}
.wsa3{word-spacing:8.064000pt;}
.ws12b{word-spacing:8.106667pt;}
.wsd0{word-spacing:8.192000pt;}
.ws66{word-spacing:8.320000pt;}
.wsf{word-spacing:8.384000pt;}
.ws107{word-spacing:8.640000pt;}
.wsa2{word-spacing:8.704000pt;}
.ws10a{word-spacing:8.832000pt;}
.ws131{word-spacing:8.960000pt;}
.ws108{word-spacing:9.024000pt;}
.ws132{word-spacing:9.066667pt;}
.ws34{word-spacing:9.472000pt;}
.wsd{word-spacing:9.536000pt;}
.ws2b{word-spacing:9.600000pt;}
.ws10b{word-spacing:9.856000pt;}
.ws10d{word-spacing:10.688000pt;}
.wse1{word-spacing:11.136000pt;}
.wsa0{word-spacing:11.200000pt;}
.ws35{word-spacing:11.264000pt;}
.ws3c{word-spacing:11.392000pt;}
.wsd8{word-spacing:11.520000pt;}
.ws1f{word-spacing:11.712000pt;}
.wse2{word-spacing:11.776000pt;}
.wsea{word-spacing:12.032000pt;}
.wseb{word-spacing:12.672000pt;}
.wsdc{word-spacing:12.928000pt;}
.wsf3{word-spacing:13.312000pt;}
.wse8{word-spacing:14.080000pt;}
.wsf1{word-spacing:14.848000pt;}
.wsde{word-spacing:14.912000pt;}
.wsf2{word-spacing:15.680000pt;}
.wsef{word-spacing:16.320000pt;}
.wsdd{word-spacing:17.536000pt;}
.wsec{word-spacing:22.912000pt;}
.wsf6{word-spacing:23.296000pt;}
.wsed{word-spacing:24.896000pt;}
.wsf4{word-spacing:25.536000pt;}
.wsf0{word-spacing:29.120000pt;}
.wsee{word-spacing:36.480000pt;}
.wsf5{word-spacing:36.992000pt;}
.wsfc{word-spacing:148.142400pt;}
.wsaf{word-spacing:162.540800pt;}
.ws9b{word-spacing:168.540267pt;}
.wsb0{word-spacing:199.193067pt;}
.wsb1{word-spacing:199.193600pt;}
.ws9e{word-spacing:204.616000pt;}
.ws9c{word-spacing:213.362667pt;}
.wsbc{word-spacing:214.140267pt;}
.wsbf{word-spacing:216.946667pt;}
.wsbb{word-spacing:218.013333pt;}
.ws99{word-spacing:224.214933pt;}
.wsbd{word-spacing:232.092267pt;}
.ws9a{word-spacing:232.349333pt;}
.wsc0{word-spacing:235.899733pt;}
.wsbe{word-spacing:245.393067pt;}
.wsb7{word-spacing:250.647467pt;}
.ws9d{word-spacing:278.002667pt;}
.wsc3{word-spacing:278.141333pt;}
.wsc2{word-spacing:282.014400pt;}
.ws89{word-spacing:283.329600pt;}
.wsf7{word-spacing:288.294400pt;}
.ws88{word-spacing:294.182933pt;}
.ws98{word-spacing:296.989333pt;}
.ws97{word-spacing:303.361600pt;}
.ws9f{word-spacing:309.149333pt;}
.wsf8{word-spacing:313.152000pt;}
.wsba{word-spacing:330.878400pt;}
.wsc1{word-spacing:356.099733pt;}
.wsaa{word-spacing:369.471467pt;}
.wsa7{word-spacing:374.832000pt;}
.wsfb{word-spacing:376.448000pt;}
.wsa9{word-spacing:397.631467pt;}
.wsfe{word-spacing:408.294400pt;}
.wsab{word-spacing:412.564800pt;}
.wsa8{word-spacing:434.111467pt;}
.wsa5{word-spacing:457.498667pt;}
.wsa6{word-spacing:459.711467pt;}
.wsff{word-spacing:467.754667pt;}
.ws100{word-spacing:485.792000pt;}
.wsac{word-spacing:522.907200pt;}
.wsad{word-spacing:545.622400pt;}
.ws83{word-spacing:596.153067pt;}
.ws95{word-spacing:596.438933pt;}
.wsb9{word-spacing:619.435200pt;}
.wsb8{word-spacing:629.326400pt;}
._a{margin-left:-9.024000pt;}
._2c{margin-left:-8.134400pt;}
._4{margin-left:-7.242667pt;}
._9{margin-left:-6.105600pt;}
._b{margin-left:-4.864000pt;}
._8{margin-left:-3.955200pt;}
._2{margin-left:-2.912000pt;}
._5{margin-left:-1.798400pt;}
._0{margin-left:-0.896000pt;}
._6{width:0.934400pt;}
._7{width:2.022400pt;}
._c{width:3.472000pt;}
._19{width:4.422400pt;}
._28{width:5.568000pt;}
._29{width:6.656000pt;}
._2b{width:8.569600pt;}
._1e{width:14.048000pt;}
._26{width:32.960000pt;}
._1a{width:100.619200pt;}
._1f{width:123.210667pt;}
._16{width:155.952000pt;}
._20{width:174.353067pt;}
._1d{width:189.832533pt;}
._12{width:191.148267pt;}
._e{width:204.532267pt;}
._21{width:222.961067pt;}
._13{width:244.456000pt;}
._1c{width:260.041067pt;}
._23{width:269.781867pt;}
._25{width:286.603733pt;}
._14{width:295.656000pt;}
._24{width:297.344000pt;}
._10{width:308.544000pt;}
._11{width:321.190400pt;}
._18{width:337.776000pt;}
._17{width:346.021333pt;}
._1b{width:375.087467pt;}
._22{width:393.376000pt;}
._f{width:484.748800pt;}
._2a{width:501.224000pt;}
._27{width:572.981333pt;}
._d{width:638.709867pt;}
._15{width:957.453333pt;}
._3{width:1181.854933pt;}
._1{width:1898.021333pt;}
.fs4{font-size:37.312000pt;}
.fs3{font-size:40.000000pt;}
.fs5{font-size:53.333333pt;}
.fs6{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs1{font-size:85.333333pt;}
.y15c{bottom:-4.757867pt;}
.y112{bottom:-4.741467pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:14.345067pt;}
.y1{bottom:15.970267pt;}
.y173{bottom:49.421200pt;}
.y5d{bottom:51.554533pt;}
.y15a{bottom:52.728667pt;}
.y88{bottom:60.087867pt;}
.y110{bottom:61.818000pt;}
.y2f{bottom:65.984267pt;}
.y197{bottom:66.621200pt;}
.y172{bottom:68.621200pt;}
.y5c{bottom:70.754533pt;}
.y159{bottom:71.928667pt;}
.y233{bottom:72.544400pt;}
.y87{bottom:79.287867pt;}
.y10f{bottom:81.018000pt;}
.y2e{bottom:85.184267pt;}
.y196{bottom:85.821200pt;}
.y171{bottom:87.821200pt;}
.y232{bottom:88.544400pt;}
.y5b{bottom:89.954533pt;}
.y158{bottom:91.128667pt;}
.y138{bottom:93.153600pt;}
.yd6{bottom:98.418133pt;}
.y86{bottom:98.487867pt;}
.y10e{bottom:100.218000pt;}
.y1f2{bottom:103.884800pt;}
.y2d{bottom:104.384267pt;}
.y195{bottom:105.021200pt;}
.y170{bottom:107.021200pt;}
.y5a{bottom:109.154533pt;}
.y157{bottom:110.328667pt;}
.y231{bottom:115.211067pt;}
.yd5{bottom:117.618133pt;}
.y85{bottom:117.687867pt;}
.y137{bottom:119.820267pt;}
.y1f1{bottom:123.084800pt;}
.y2c{bottom:123.584267pt;}
.y194{bottom:124.221200pt;}
.yf2{bottom:125.545733pt;}
.y16f{bottom:126.221200pt;}
.y59{bottom:128.354533pt;}
.y111{bottom:134.777333pt;}
.yd4{bottom:136.818133pt;}
.y84{bottom:136.887867pt;}
.y156{bottom:140.195333pt;}
.y230{bottom:141.877733pt;}
.y1f0{bottom:142.284800pt;}
.y2b{bottom:142.784267pt;}
.y193{bottom:143.421200pt;}
.yf1{bottom:144.745733pt;}
.y58{bottom:147.554533pt;}
.yab{bottom:151.821200pt;}
.y83{bottom:156.087867pt;}
.y155{bottom:159.395333pt;}
.y1ef{bottom:161.484800pt;}
.y2a{bottom:161.984267pt;}
.y192{bottom:162.621200pt;}
.yf0{bottom:163.945733pt;}
.y57{bottom:166.754533pt;}
.y136{bottom:166.846800pt;}
.y22f{bottom:168.544400pt;}
.yaa{bottom:171.021200pt;}
.yd3{bottom:175.218133pt;}
.y82{bottom:175.287867pt;}
.y154{bottom:178.595333pt;}
.y29{bottom:181.184267pt;}
.y191{bottom:181.821200pt;}
.yef{bottom:183.145733pt;}
.y22e{bottom:184.544400pt;}
.y1ee{bottom:191.351467pt;}
.y135{bottom:193.513467pt;}
.yd2{bottom:194.418133pt;}
.y81{bottom:194.487867pt;}
.y56{bottom:196.621200pt;}
.y153{bottom:197.795333pt;}
.y1cc{bottom:198.398267pt;}
.ya9{bottom:200.887867pt;}
.y190{bottom:201.021200pt;}
.y205{bottom:203.021200pt;}
.y28{bottom:211.050933pt;}
.y22d{bottom:211.211067pt;}
.yee{bottom:213.012400pt;}
.yd1{bottom:213.618133pt;}
.y16e{bottom:213.687867pt;}
.y134{bottom:215.811867pt;}
.y55{bottom:215.821200pt;}
.y152{bottom:216.995333pt;}
.ya8{bottom:220.087867pt;}
.y18f{bottom:220.221200pt;}
.y1cb{bottom:220.696800pt;}
.y1ed{bottom:221.218133pt;}
.y204{bottom:222.221200pt;}
.y80{bottom:224.354533pt;}
.y22c{bottom:227.211067pt;}
.yed{bottom:229.679067pt;}
.y27{bottom:230.250933pt;}
.yd0{bottom:232.818133pt;}
.y16d{bottom:232.887867pt;}
.y54{bottom:235.021200pt;}
.y151{bottom:236.195333pt;}
.y133{bottom:238.110400pt;}
.y18e{bottom:239.421200pt;}
.y1ca{bottom:239.896800pt;}
.y1ec{bottom:240.418133pt;}
.y7f{bottom:243.554533pt;}
.y26{bottom:249.450933pt;}
.ya7{bottom:249.954533pt;}
.yec{bottom:250.038933pt;}
.ycf{bottom:252.018133pt;}
.y16c{bottom:252.087867pt;}
.y22b{bottom:253.877733pt;}
.y53{bottom:254.221200pt;}
.y18d{bottom:258.621200pt;}
.y1eb{bottom:259.618133pt;}
.y1c5{bottom:262.195333pt;}
.y7e{bottom:262.754533pt;}
.y15b{bottom:265.898667pt;}
.y25{bottom:268.650933pt;}
.ya6{bottom:269.154533pt;}
.y132{bottom:269.803600pt;}
.yce{bottom:271.218133pt;}
.y16b{bottom:271.287867pt;}
.y52{bottom:273.421200pt;}
.yeb{bottom:276.705600pt;}
.y18c{bottom:277.821200pt;}
.y1ea{bottom:278.818133pt;}
.y22a{bottom:280.544400pt;}
.y7d{bottom:281.954533pt;}
.y24{bottom:287.850933pt;}
.ycd{bottom:290.418133pt;}
.y16a{bottom:290.487867pt;}
.y1c4{bottom:292.061867pt;}
.y51{bottom:292.621200pt;}
.y18b{bottom:297.021200pt;}
.yea{bottom:297.065467pt;}
.ye8{bottom:297.202933pt;}
.y1e9{bottom:298.018133pt;}
.ya5{bottom:299.021200pt;}
.y131{bottom:299.670267pt;}
.y7c{bottom:301.154533pt;}
.y23{bottom:307.050933pt;}
.y229{bottom:307.211067pt;}
.ye7{bottom:307.869600pt;}
.ycc{bottom:309.618133pt;}
.y169{bottom:309.687867pt;}
.y1c3{bottom:311.261867pt;}
.y50{bottom:311.821200pt;}
.y18a{bottom:316.221200pt;}
.ya4{bottom:318.221200pt;}
.y7b{bottom:320.354533pt;}
.y228{bottom:323.211067pt;}
.ye9{bottom:323.732133pt;}
.ye6{bottom:323.869600pt;}
.y22{bottom:326.250933pt;}
.y1e8{bottom:327.884800pt;}
.ycb{bottom:328.818133pt;}
.y168{bottom:328.887867pt;}
.y130{bottom:329.536933pt;}
.y1c2{bottom:330.462000pt;}
.y4f{bottom:331.021200pt;}
.y189{bottom:335.421200pt;}
.ya3{bottom:337.421200pt;}
.y10d{bottom:339.151333pt;}
.y7a{bottom:339.554533pt;}
.y21{bottom:345.450933pt;}
.y1e7{bottom:347.084800pt;}
.yca{bottom:348.018133pt;}
.y167{bottom:348.087867pt;}
.y12f{bottom:348.736933pt;}
.y1c1{bottom:349.662000pt;}
.y227{bottom:349.877733pt;}
.y4e{bottom:350.221200pt;}
.y188{bottom:354.621200pt;}
.ya2{bottom:356.621200pt;}
.y79{bottom:358.754533pt;}
.y1e6{bottom:366.284800pt;}
.yc9{bottom:367.218133pt;}
.y166{bottom:367.287867pt;}
.y12e{bottom:367.936933pt;}
.y10c{bottom:369.018000pt;}
.y203{bottom:369.421200pt;}
.ye5{bottom:370.896133pt;}
.y251{bottom:371.493200pt;}
.y187{bottom:373.821200pt;}
.y20{bottom:375.317600pt;}
.y226{bottom:376.544400pt;}
.y78{bottom:377.954533pt;}
.y1c0{bottom:379.528667pt;}
.y4d{bottom:380.087867pt;}
.y1e5{bottom:385.484800pt;}
.ya1{bottom:386.487867pt;}
.ye4{bottom:386.896133pt;}
.y12d{bottom:387.136933pt;}
.y250{bottom:387.493200pt;}
.y10b{bottom:388.218000pt;}
.y202{bottom:388.621200pt;}
.y225{bottom:392.544400pt;}
.y186{bottom:393.021200pt;}
.y1f{bottom:394.517600pt;}
.y77{bottom:397.154533pt;}
.y1c9{bottom:398.728533pt;}
.y1bf{bottom:398.728667pt;}
.y4c{bottom:399.287867pt;}
.y1e4{bottom:404.684800pt;}
.yc8{bottom:405.618133pt;}
.ya0{bottom:405.687867pt;}
.y12c{bottom:406.336933pt;}
.y10a{bottom:407.418000pt;}
.y201{bottom:407.821200pt;}
.y224{bottom:408.544400pt;}
.y185{bottom:412.221200pt;}
.ye3{bottom:413.562800pt;}
.y1e{bottom:413.717600pt;}
.y24f{bottom:416.826533pt;}
.y1c8{bottom:417.928533pt;}
.y1be{bottom:417.928667pt;}
.y4b{bottom:418.487867pt;}
.yc7{bottom:424.818133pt;}
.y9f{bottom:424.887867pt;}
.y109{bottom:426.618000pt;}
.y76{bottom:427.021200pt;}
.y184{bottom:431.421200pt;}
.y24e{bottom:432.826533pt;}
.y1d{bottom:432.917600pt;}
.y1e3{bottom:434.551467pt;}
.y223{bottom:435.211067pt;}
.y4a{bottom:437.687867pt;}
.y12b{bottom:438.870267pt;}
.ye2{bottom:440.229467pt;}
.yc6{bottom:444.018133pt;}
.y9e{bottom:444.087867pt;}
.y108{bottom:445.818000pt;}
.y75{bottom:446.221200pt;}
.y1c7{bottom:447.795200pt;}
.y1bd{bottom:447.795333pt;}
.y183{bottom:450.621200pt;}
.y222{bottom:451.211067pt;}
.y1c{bottom:452.117600pt;}
.y49{bottom:456.887867pt;}
.y24d{bottom:459.493200pt;}
.ye1{bottom:460.589333pt;}
.yc5{bottom:463.218133pt;}
.y9d{bottom:463.287867pt;}
.y1e2{bottom:464.418133pt;}
.y107{bottom:465.018000pt;}
.y74{bottom:465.421200pt;}
.y1bc{bottom:466.995333pt;}
.y221{bottom:467.211067pt;}
.y182{bottom:469.821200pt;}
.y1b{bottom:471.317600pt;}
.y165{bottom:473.954533pt;}
.y150{bottom:475.128667pt;}
.y24c{bottom:475.493200pt;}
.y48{bottom:476.087867pt;}
.y12a{bottom:482.070267pt;}
.yc4{bottom:482.418133pt;}
.y9c{bottom:482.487867pt;}
.y1e1{bottom:483.618133pt;}
.y106{bottom:484.218000pt;}
.y73{bottom:484.621200pt;}
.y1bb{bottom:486.195333pt;}
.y200{bottom:486.754533pt;}
.y1a{bottom:490.517600pt;}
.y164{bottom:493.154533pt;}
.y220{bottom:493.877733pt;}
.ye0{bottom:494.221200pt;}
.y47{bottom:495.287867pt;}
.y129{bottom:501.270267pt;}
.yc3{bottom:501.618133pt;}
.y9b{bottom:501.687867pt;}
.y1e0{bottom:502.818133pt;}
.y72{bottom:503.821200pt;}
.y24b{bottom:504.826533pt;}
.y14f{bottom:504.995333pt;}
.y1ff{bottom:505.954533pt;}
.y19{bottom:509.717600pt;}
.y21f{bottom:509.877733pt;}
.y163{bottom:512.354533pt;}
.y46{bottom:514.487867pt;}
.y1c6{bottom:516.061867pt;}
.y1ba{bottom:516.062000pt;}
.y128{bottom:520.470267pt;}
.y9a{bottom:520.887867pt;}
.y71{bottom:523.021200pt;}
.ydf{bottom:524.087867pt;}
.y21e{bottom:525.877733pt;}
.y18{bottom:528.917600pt;}
.yc2{bottom:531.484800pt;}
.y24a{bottom:531.493200pt;}
.y162{bottom:531.554533pt;}
.y1df{bottom:532.684800pt;}
.y181{bottom:532.754533pt;}
.y45{bottom:533.687867pt;}
.y14e{bottom:534.862000pt;}
.y1fe{bottom:535.821200pt;}
.y1b9{bottom:538.360533pt;}
.y99{bottom:540.087867pt;}
.y105{bottom:540.751333pt;}
.y21d{bottom:541.877733pt;}
.y70{bottom:542.221200pt;}
.yde{bottom:543.287867pt;}
.y17{bottom:548.117600pt;}
.y127{bottom:550.336933pt;}
.y161{bottom:550.754533pt;}
.y1de{bottom:551.884800pt;}
.y180{bottom:551.954533pt;}
.y44{bottom:552.887867pt;}
.y14d{bottom:554.062000pt;}
.y1fd{bottom:555.021200pt;}
.y104{bottom:557.455333pt;}
.y1b8{bottom:557.560400pt;}
.y249{bottom:558.159867pt;}
.yc1{bottom:561.351467pt;}
.y6f{bottom:561.421200pt;}
.y126{bottom:562.336933pt;}
.ydd{bottom:562.487867pt;}
.y16{bottom:567.317600pt;}
.y21c{bottom:568.544400pt;}
.y98{bottom:569.954533pt;}
.y17f{bottom:571.154533pt;}
.y43{bottom:572.087867pt;}
.y14c{bottom:573.262000pt;}
.y1fc{bottom:574.221200pt;}
.y103{bottom:577.901467pt;}
.yc0{bottom:580.551467pt;}
.y6e{bottom:580.621200pt;}
.ydc{bottom:581.687867pt;}
.y1dd{bottom:581.751467pt;}
.y248{bottom:584.826533pt;}
.y15{bottom:586.517600pt;}
.y125{bottom:589.003600pt;}
.y97{bottom:589.154533pt;}
.y17e{bottom:590.354533pt;}
.y42{bottom:591.287867pt;}
.y1b7{bottom:593.858933pt;}
.y21b{bottom:595.211067pt;}
.ybf{bottom:599.751467pt;}
.y6d{bottom:599.821200pt;}
.y124{bottom:600.030133pt;}
.y247{bottom:600.826533pt;}
.ydb{bottom:600.887867pt;}
.y14b{bottom:603.128667pt;}
.y1fb{bottom:604.087867pt;}
.y102{bottom:604.568133pt;}
.y14{bottom:605.717600pt;}
.y96{bottom:608.354533pt;}
.y17d{bottom:609.554533pt;}
.y21a{bottom:611.211067pt;}
.y1dc{bottom:611.618133pt;}
.ybe{bottom:618.951467pt;}
.y6c{bottom:619.021200pt;}
.y14a{bottom:619.795333pt;}
.y1fa{bottom:623.287867pt;}
.y101{bottom:625.014400pt;}
.y123{bottom:626.696800pt;}
.y219{bottom:627.211067pt;}
.y246{bottom:627.493200pt;}
.y95{bottom:627.554533pt;}
.y17c{bottom:628.754533pt;}
.y41{bottom:629.687867pt;}
.yda{bottom:633.421200pt;}
.y100{bottom:635.681067pt;}
.y122{bottom:637.723333pt;}
.y1b6{bottom:637.725600pt;}
.ybd{bottom:638.151467pt;}
.y160{bottom:638.221200pt;}
.y13{bottom:638.250933pt;}
.y1db{bottom:641.484800pt;}
.y245{bottom:643.493200pt;}
.y149{bottom:646.462000pt;}
.y94{bottom:646.754533pt;}
.y17b{bottom:647.954533pt;}
.y121{bottom:648.390000pt;}
.y40{bottom:648.887867pt;}
.y1a6{bottom:650.087867pt;}
.y6b{bottom:651.554533pt;}
.yff{bottom:651.681067pt;}
.y1f9{bottom:653.154533pt;}
.y218{bottom:653.877733pt;}
.ybc{bottom:657.351467pt;}
.y15f{bottom:657.421200pt;}
.y1b5{bottom:660.024133pt;}
.y120{bottom:664.390000pt;}
.y93{bottom:665.954533pt;}
.y17a{bottom:667.154533pt;}
.y3f{bottom:668.087867pt;}
.y1a5{bottom:669.287867pt;}
.y217{bottom:669.877733pt;}
.y244{bottom:670.159867pt;}
.y1da{bottom:671.351467pt;}
.yfe{bottom:672.127333pt;}
.y1f8{bottom:672.354533pt;}
.y11f{bottom:675.416533pt;}
.ybb{bottom:676.551467pt;}
.yd9{bottom:676.621200pt;}
.y1b4{bottom:679.224133pt;}
.y147{bottom:682.821867pt;}
.y12{bottom:683.717600pt;}
.y179{bottom:686.354533pt;}
.y3e{bottom:687.287867pt;}
.y148{bottom:688.155200pt;}
.y1a4{bottom:688.487867pt;}
.y1d9{bottom:690.551467pt;}
.y92{bottom:695.821200pt;}
.y216{bottom:696.544400pt;}
.y243{bottom:696.826533pt;}
.y6a{bottom:697.021200pt;}
.yfd{bottom:698.794000pt;}
.y146{bottom:698.821867pt;}
.y11e{bottom:702.083200pt;}
.y1f7{bottom:702.221200pt;}
.y178{bottom:705.554533pt;}
.yba{bottom:706.418133pt;}
.y3d{bottom:706.487867pt;}
.y1a3{bottom:707.687867pt;}
.y215{bottom:712.544400pt;}
.y11d{bottom:713.109733pt;}
.y11{bottom:713.584267pt;}
.y145{bottom:714.821867pt;}
.y91{bottom:715.021200pt;}
.y69{bottom:716.221200pt;}
.yfc{bottom:719.240133pt;}
.y1d8{bottom:720.418133pt;}
.y1b3{bottom:720.722667pt;}
.y242{bottom:723.493200pt;}
.y177{bottom:724.754533pt;}
.yb9{bottom:725.618133pt;}
.y3c{bottom:725.687867pt;}
.y1a2{bottom:726.887867pt;}
.y214{bottom:728.544400pt;}
.yfb{bottom:729.906800pt;}
.y1f6{bottom:732.087867pt;}
.y10{bottom:732.784267pt;}
.y90{bottom:734.221200pt;}
.y144{bottom:735.181733pt;}
.y68{bottom:735.421200pt;}
.y241{bottom:739.493200pt;}
.y1d7{bottom:739.618133pt;}
.y11c{bottom:739.776400pt;}
.y1b2{bottom:739.922667pt;}
.y176{bottom:743.954533pt;}
.yb8{bottom:744.818133pt;}
.yfa{bottom:745.906800pt;}
.y1a1{bottom:746.087867pt;}
.y11b{bottom:750.802933pt;}
.y1f5{bottom:751.287867pt;}
.yf{bottom:751.984267pt;}
.y8f{bottom:753.421200pt;}
.y67{bottom:754.621200pt;}
.y213{bottom:757.877733pt;}
.y1b1{bottom:759.122667pt;}
.y143{bottom:761.848400pt;}
.y175{bottom:763.154533pt;}
.yb7{bottom:764.018133pt;}
.y3b{bottom:764.087867pt;}
.y1a0{bottom:765.287867pt;}
.y240{bottom:766.159867pt;}
.yf9{bottom:766.353067pt;}
.ye{bottom:771.184267pt;}
.y1d6{bottom:772.151467pt;}
.y8e{bottom:772.621200pt;}
.y66{bottom:773.821200pt;}
.y212{bottom:773.877733pt;}
.y11a{bottom:777.469600pt;}
.y1b0{bottom:778.322533pt;}
.y142{bottom:782.208267pt;}
.y174{bottom:782.354533pt;}
.yb6{bottom:783.218133pt;}
.y3a{bottom:783.287867pt;}
.y1f4{bottom:783.821200pt;}
.y19f{bottom:784.487867pt;}
.yd8{bottom:785.954533pt;}
.yd{bottom:790.384267pt;}
.y8d{bottom:791.821200pt;}
.y23f{bottom:792.826533pt;}
.yf8{bottom:793.019733pt;}
.y65{bottom:793.021200pt;}
.y1af{bottom:797.522667pt;}
.y211{bottom:800.544400pt;}
.yb5{bottom:802.418133pt;}
.y39{bottom:802.487867pt;}
.y19e{bottom:803.687867pt;}
.y119{bottom:804.496133pt;}
.y141{bottom:808.874933pt;}
.yc{bottom:809.584267pt;}
.y15e{bottom:811.021200pt;}
.y64{bottom:812.221200pt;}
.yf7{bottom:813.465867pt;}
.y1d5{bottom:817.618133pt;}
.y23e{bottom:819.493200pt;}
.y1ae{bottom:819.821067pt;}
.y118{bottom:820.496133pt;}
.yb4{bottom:821.618133pt;}
.y38{bottom:821.687867pt;}
.y19d{bottom:822.887867pt;}
.yb{bottom:828.784267pt;}
.y1f3{bottom:829.287867pt;}
.y210{bottom:829.877733pt;}
.y117{bottom:830.189333pt;}
.y63{bottom:831.421200pt;}
.y23d{bottom:835.493200pt;}
.y1d4{bottom:836.818133pt;}
.y1ad{bottom:839.021067pt;}
.yf6{bottom:840.132533pt;}
.yb3{bottom:840.818133pt;}
.y37{bottom:840.887867pt;}
.y19c{bottom:842.087867pt;}
.y140{bottom:845.234800pt;}
.y20f{bottom:845.877733pt;}
.ya{bottom:847.984267pt;}
.y62{bottom:850.621200pt;}
.y23c{bottom:851.493200pt;}
.y1d3{bottom:856.018133pt;}
.y1ac{bottom:858.221067pt;}
.y116{bottom:859.154533pt;}
.yb2{bottom:860.018133pt;}
.y36{bottom:860.087867pt;}
.y13f{bottom:861.234800pt;}
.y19b{bottom:861.287867pt;}
.y20e{bottom:861.877733pt;}
.y9{bottom:867.184267pt;}
.y61{bottom:869.821200pt;}
.yf5{bottom:876.588533pt;}
.y20d{bottom:877.877733pt;}
.y23b{bottom:878.159867pt;}
.y115{bottom:878.354533pt;}
.yb1{bottom:879.218133pt;}
.y35{bottom:879.287867pt;}
.y19a{bottom:880.487867pt;}
.y1ab{bottom:880.519600pt;}
.y13e{bottom:883.533333pt;}
.y8{bottom:886.384267pt;}
.y1d2{bottom:888.551467pt;}
.y60{bottom:889.021200pt;}
.yf4{bottom:892.588533pt;}
.y20c{bottom:893.877733pt;}
.yb0{bottom:898.418133pt;}
.y8c{bottom:898.487867pt;}
.y199{bottom:899.687867pt;}
.y23a{bottom:907.493200pt;}
.y1d1{bottom:907.751467pt;}
.y5f{bottom:908.221200pt;}
.y34{bottom:911.821200pt;}
.yf3{bottom:912.989333pt;}
.y13d{bottom:915.226533pt;}
.y1aa{bottom:916.818133pt;}
.yaf{bottom:917.618133pt;}
.y8b{bottom:917.687867pt;}
.y198{bottom:918.887867pt;}
.y7{bottom:918.917600pt;}
.y20b{bottom:920.544400pt;}
.y239{bottom:923.493200pt;}
.y1d0{bottom:926.951467pt;}
.y5e{bottom:927.421200pt;}
.y15d{bottom:931.021200pt;}
.y1a9{bottom:935.218133pt;}
.y20a{bottom:936.544400pt;}
.yae{bottom:936.818133pt;}
.y8a{bottom:936.887867pt;}
.yd7{bottom:938.087867pt;}
.y238{bottom:939.493200pt;}
.y13c{bottom:945.093200pt;}
.y1cf{bottom:946.151467pt;}
.y114{bottom:946.621200pt;}
.y209{bottom:952.544400pt;}
.y1a8{bottom:953.618133pt;}
.y237{bottom:955.493200pt;}
.y33{bottom:957.287867pt;}
.y6{bottom:961.317600pt;}
.y13b{bottom:964.293067pt;}
.y1ce{bottom:965.351467pt;}
.y113{bottom:965.821200pt;}
.y208{bottom:968.544400pt;}
.yad{bottom:969.351467pt;}
.y89{bottom:969.421200pt;}
.y1a7{bottom:972.018133pt;}
.y32{bottom:976.487867pt;}
.y5{bottom:980.517600pt;}
.y207{bottom:984.544400pt;}
.y1cd{bottom:984.551467pt;}
.y236{bottom:984.826533pt;}
.y13a{bottom:994.159867pt;}
.y31{bottom:995.687867pt;}
.y235{bottom:1000.826533pt;}
.y4{bottom:1010.384267pt;}
.y139{bottom:1010.826533pt;}
.y206{bottom:1013.877733pt;}
.yac{bottom:1014.418133pt;}
.y30{bottom:1014.887867pt;}
.y234{bottom:1016.826533pt;}
.y3{bottom:1060.519733pt;}
.h10{height:38.080000pt;}
.hb{height:38.186667pt;}
.hc{height:38.750000pt;}
.hf{height:39.243750pt;}
.hd{height:40.000000pt;}
.ha{height:44.437500pt;}
.h13{height:45.440000pt;}
.h5{height:45.696000pt;}
.h8{height:45.824000pt;}
.h7{height:48.000000pt;}
.h9{height:48.027392pt;}
.h14{height:48.406250pt;}
.h6{height:48.500000pt;}
.h2{height:52.266667pt;}
.h12{height:53.013333pt;}
.h3{height:55.179200pt;}
.h4{height:64.541667pt;}
.he{height:186.240000pt;}
.h11{height:188.158667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:614.933333pt;}
.w3{width:620.296000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5e{left:11.252133pt;}
.x33{left:22.685200pt;}
.x2{left:48.000000pt;}
.x1e{left:54.000133pt;}
.x3d{left:55.866667pt;}
.x5d{left:86.702667pt;}
.x32{left:88.985333pt;}
.x5{left:96.000000pt;}
.x27{left:153.711600pt;}
.x26{left:157.997467pt;}
.xf{left:165.200933pt;}
.x47{left:172.578933pt;}
.x46{left:176.864933pt;}
.xe{left:180.554000pt;}
.xd{left:182.740400pt;}
.x1f{left:186.774000pt;}
.x3e{left:194.454667pt;}
.x50{left:200.918267pt;}
.x35{left:208.216000pt;}
.xc{left:222.137067pt;}
.x36{left:225.016267pt;}
.x42{left:242.567067pt;}
.x2f{left:252.874400pt;}
.x12{left:259.466667pt;}
.x28{left:262.384800pt;}
.x29{left:265.712000pt;}
.x20{left:278.153200pt;}
.x10{left:282.199600pt;}
.x11{left:283.619733pt;}
.x48{left:284.865600pt;}
.x56{left:294.878667pt;}
.x51{left:297.251867pt;}
.x34{left:305.059733pt;}
.x5f{left:306.466667pt;}
.x5a{left:313.251600pt;}
.x61{left:331.143733pt;}
.x3f{left:333.149867pt;}
.x37{left:341.101200pt;}
.x2b{left:352.739600pt;}
.x2a{left:357.025467pt;}
.x15{left:366.899467pt;}
.x4a{left:371.509200pt;}
.x49{left:375.795067pt;}
.x14{left:379.472133pt;}
.x38{left:380.607467pt;}
.x13{left:381.658667pt;}
.x21{left:385.692133pt;}
.x1{left:388.210400pt;}
.x52{left:399.848400pt;}
.x43{left:418.065867pt;}
.x60{left:431.666667pt;}
.x62{left:438.943733pt;}
.x30{left:451.902400pt;}
.x18{left:458.423333pt;}
.x3{left:460.726933pt;}
.x63{left:462.943733pt;}
.x4{left:465.136400pt;}
.x40{left:473.344400pt;}
.x22{left:477.109867pt;}
.x4b{left:479.798400pt;}
.x16{left:481.156267pt;}
.x17{left:482.576400pt;}
.x39{left:487.105600pt;}
.x58{left:493.138533pt;}
.x53{left:495.511867pt;}
.x3a{left:503.906000pt;}
.x44{left:508.676267pt;}
.x5b{left:511.511600pt;}
.x8{left:526.885733pt;}
.x9{left:531.889600pt;}
.x2d{left:551.767600pt;}
.x2c{left:556.053600pt;}
.xa{left:562.360800pt;}
.xb{left:566.525333pt;}
.x4d{left:568.800800pt;}
.x4c{left:573.086800pt;}
.x1a{left:578.467333pt;}
.x19{left:580.653733pt;}
.x23{left:584.687200pt;}
.x6{left:591.307333pt;}
.x45{left:593.564800pt;}
.x64{left:594.810400pt;}
.x54{left:597.140133pt;}
.x7{left:598.171600pt;}
.x41{left:612.039600pt;}
.x65{left:618.810400pt;}
.x3b{left:640.023733pt;}
.x3c{left:643.350800pt;}
.x31{left:650.930400pt;}
.x2e{left:660.402400pt;}
.x1d{left:664.518667pt;}
.x4e{left:669.642267pt;}
.x4f{left:672.969467pt;}
.x24{left:674.184800pt;}
.x25{left:676.104933pt;}
.x1b{left:680.151333pt;}
.x1c{left:681.571467pt;}
.x55{left:685.355733pt;}
.x57{left:688.689067pt;}
.x59{left:691.062267pt;}
.x5c{left:701.355467pt;}
.x66{left:745.700800pt;}
}




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