
    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_215fcc900e7d2f167fec4cc1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6f8579cd389f7c175f9cbe73.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.713000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_9c209e1eb231eeac1d414d89.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6bd2b31540346f1901f31f64.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_dece8e7d66b33fb987d5c347.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8c8d00c46789ea86c12db737.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.810000;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_ea967a4a0ab16f6635f887c4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5127ae65f3415b161db82f5f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.455000;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_89d18eda6f85ce0fff6e4e5b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.807000;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_bf0d9647604104d44a24de69.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ea967a4a0ab16f6635f887c4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_e072b0d0656bac95b9b093e1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.810000;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_ea967a4a0ab16f6635f887c4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_d4d4cb289980919e023728fd.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.259000;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_5127ae65f3415b161db82f5f.woff2')format("woff");}.fff{font-family:fff;line-height:0.455000;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_ea967a4a0ab16f6635f887c4.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_e072b0d0656bac95b9b093e1.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.810000;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_ea967a4a0ab16f6635f887c4.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_5127ae65f3415b161db82f5f.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.455000;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:ff14;src:url('chunks/assets/font_d4d4cb289980919e023728fd.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.259000;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-17.358000px;}
.v3{vertical-align:-8.970000px;}
.v2{vertical-align:-7.338000px;}
.v5{vertical-align:-1.926000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.218878px;}
.ls41{letter-spacing:0.236893px;}
.ls43{letter-spacing:0.237440px;}
.ls35{letter-spacing:0.261926px;}
.ls26{letter-spacing:0.558909px;}
.lsc{letter-spacing:0.812950px;}
.ls39{letter-spacing:0.956410px;}
.ls3a{letter-spacing:1.016185px;}
.ls5{letter-spacing:1.195612px;}
.ls8{letter-spacing:1.225229px;}
.ls1b{letter-spacing:1.434614px;}
.ls1a{letter-spacing:1.793268px;}
.ls17{letter-spacing:1.853044px;}
.ls44{letter-spacing:1.912824px;}
.ls31{letter-spacing:2.038789px;}
.ls2b{letter-spacing:2.045232px;}
.ls2e{letter-spacing:2.069675px;}
.ls3f{letter-spacing:2.070073px;}
.ls36{letter-spacing:2.074654px;}
.ls21{letter-spacing:2.391024px;}
.ls27{letter-spacing:2.391030px;}
.ls13{letter-spacing:2.438851px;}
.ls6{letter-spacing:2.985900px;}
.ls3b{letter-spacing:2.988780px;}
.ls2{letter-spacing:2.989200px;}
.ls0{letter-spacing:2.991900px;}
.ls18{letter-spacing:3.646312px;}
.ls4{letter-spacing:4.227216px;}
.lsf{letter-spacing:4.483170px;}
.ls28{letter-spacing:9.898864px;}
.ls3c{letter-spacing:10.580281px;}
.ls22{letter-spacing:10.640057px;}
.lse{letter-spacing:13.294127px;}
.ls20{letter-spacing:16.318739px;}
.ls30{letter-spacing:16.617617px;}
.ls1f{letter-spacing:16.737168px;}
.ls19{letter-spacing:16.976270px;}
.ls42{letter-spacing:17.511216px;}
.ls2d{letter-spacing:17.574026px;}
.lsd{letter-spacing:17.789263px;}
.ls9{letter-spacing:20.337900px;}
.ls1c{letter-spacing:20.383480px;}
.ls29{letter-spacing:20.562858px;}
.ls2f{letter-spacing:21.101527px;}
.ls2c{letter-spacing:22.079527px;}
.ls3d{letter-spacing:22.296299px;}
.ls34{letter-spacing:22.762606px;}
.ls1d{letter-spacing:24.029791px;}
.ls10{letter-spacing:25.404630px;}
.ls2a{letter-spacing:25.464406px;}
.ls15{letter-spacing:25.583957px;}
.ls32{letter-spacing:25.685527px;}
.ls24{letter-spacing:27.437000px;}
.ls7{letter-spacing:27.993900px;}
.ls16{letter-spacing:28.094532px;}
.ls23{letter-spacing:28.393410px;}
.ls14{letter-spacing:28.811839px;}
.ls38{letter-spacing:29.110717px;}
.ls1e{letter-spacing:29.409595px;}
.lsa{letter-spacing:29.887800px;}
.ls37{letter-spacing:33.611527px;}
.ls3e{letter-spacing:35.148053px;}
.ls25{letter-spacing:38.017282px;}
.ls40{letter-spacing:41.987527px;}
.ls45{letter-spacing:117.447394px;}
.lsb{letter-spacing:229.931700px;}
.ls33{letter-spacing:237.461700px;}
.ls11{letter-spacing:237.467700px;}
.ls12{letter-spacing:712.403100px;}
.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;}
}
.ws50{word-spacing:-35.913271px;}
.ws86{word-spacing:-29.887800px;}
.wsab{word-spacing:-26.659918px;}
.wsed{word-spacing:-24.149403px;}
.wsfa{word-spacing:-23.910300px;}
.ws0{word-spacing:-21.519270px;}
.ws9b{word-spacing:-19.905275px;}
.wsd3{word-spacing:-16.079636px;}
.wsb6{word-spacing:-15.972080px;}
.wscd{word-spacing:-15.924260px;}
.ws9d{word-spacing:-15.780758px;}
.ws24{word-spacing:-15.720983px;}
.ws87{word-spacing:-15.541656px;}
.ws99{word-spacing:-15.422105px;}
.wse7{word-spacing:-15.362329px;}
.ws28{word-spacing:-15.242778px;}
.wsaf{word-spacing:-15.003676px;}
.ws18{word-spacing:-14.764573px;}
.ws4b{word-spacing:-14.704798px;}
.ws48{word-spacing:-14.645022px;}
.wsa6{word-spacing:-14.525471px;}
.ws3a{word-spacing:-14.346144px;}
.ws47{word-spacing:-14.286368px;}
.ws30{word-spacing:-14.166817px;}
.wsad{word-spacing:-14.107042px;}
.ws59{word-spacing:-13.748388px;}
.ws90{word-spacing:-13.628837px;}
.wsc4{word-spacing:-13.449510px;}
.wsdd{word-spacing:-13.389734px;}
.ws26{word-spacing:-12.911530px;}
.ws91{word-spacing:-12.851754px;}
.wsca{word-spacing:-12.720280px;}
.ws64{word-spacing:-12.552876px;}
.ws3c{word-spacing:-12.493100px;}
.ws22{word-spacing:-12.433325px;}
.ws14{word-spacing:-12.373549px;}
.ws58{word-spacing:-12.313774px;}
.ws3d{word-spacing:-12.194222px;}
.ws8d{word-spacing:-11.895344px;}
.wsa{word-spacing:-11.835648px;}
.ws23{word-spacing:-11.775793px;}
.ws8c{word-spacing:-11.716018px;}
.ws7e{word-spacing:-11.620406px;}
.ws63{word-spacing:-11.596466px;}
.ws27{word-spacing:-11.536691px;}
.ws5d{word-spacing:-11.476915px;}
.ws36{word-spacing:-11.237813px;}
.ws1e{word-spacing:-11.178037px;}
.wsf4{word-spacing:-11.058486px;}
.ws6a{word-spacing:-10.998710px;}
.wsb{word-spacing:-10.921075px;}
.wsdf{word-spacing:-10.855276px;}
.ws8f{word-spacing:-10.819384px;}
.ws6e{word-spacing:-10.759608px;}
.wsd5{word-spacing:-10.580281px;}
.ws81{word-spacing:-10.520506px;}
.ws29{word-spacing:-10.400954px;}
.ws4a{word-spacing:-10.341179px;}
.wsa2{word-spacing:-10.281403px;}
.ws42{word-spacing:-10.221628px;}
.ws35{word-spacing:-10.161852px;}
.wsa9{word-spacing:-10.102076px;}
.ws104{word-spacing:-10.042326px;}
.wseb{word-spacing:-10.042301px;}
.ws1{word-spacing:-9.863010px;}
.ws33{word-spacing:-9.862974px;}
.ws6{word-spacing:-9.791309px;}
.wse9{word-spacing:-9.743423px;}
.wsb1{word-spacing:-9.683647px;}
.wsac{word-spacing:-9.504320px;}
.ws103{word-spacing:-9.468479px;}
.ws8b{word-spacing:-9.444545px;}
.ws15{word-spacing:-9.324994px;}
.ws106{word-spacing:-9.277196px;}
.ws88{word-spacing:-9.265218px;}
.ws2f{word-spacing:-9.205442px;}
.wsd6{word-spacing:-9.145667px;}
.ws2{word-spacing:-8.966340px;}
.wse6{word-spacing:-8.906564px;}
.ws7{word-spacing:-8.876736px;}
.ws49{word-spacing:-8.846789px;}
.wsfc{word-spacing:-8.751170px;}
.ws9a{word-spacing:-8.727238px;}
.wsc5{word-spacing:-8.667462px;}
.ws9{word-spacing:-8.500147px;}
.ws82{word-spacing:-8.488135px;}
.ws31{word-spacing:-8.428360px;}
.wsbe{word-spacing:-8.129482px;}
.ws41{word-spacing:-7.950155px;}
.wsef{word-spacing:-7.938220px;}
.wsf0{word-spacing:-7.890399px;}
.ws3e{word-spacing:-7.830604px;}
.ws6c{word-spacing:-7.770828px;}
.ws34{word-spacing:-7.711052px;}
.wsbc{word-spacing:-7.591501px;}
.wsd4{word-spacing:-7.531726px;}
.ws57{word-spacing:-7.471950px;}
.wsb9{word-spacing:-7.412174px;}
.ws9f{word-spacing:-7.292623px;}
.ws51{word-spacing:-7.173090px;}
.ws7f{word-spacing:-7.125269px;}
.wsc1{word-spacing:-7.053521px;}
.wsaa{word-spacing:-6.933970px;}
.ws5a{word-spacing:-6.874194px;}
.wsf{word-spacing:-6.724800px;}
.ws39{word-spacing:-6.694867px;}
.wsa7{word-spacing:-6.635092px;}
.wsfd{word-spacing:-6.551422px;}
.ws5f{word-spacing:-6.515540px;}
.ws62{word-spacing:-6.455765px;}
.wsa5{word-spacing:-6.395989px;}
.ws6f{word-spacing:-6.276438px;}
.ws98{word-spacing:-6.264499px;}
.wse1{word-spacing:-6.216678px;}
.ws6b{word-spacing:-6.216662px;}
.wsfb{word-spacing:-6.168857px;}
.ws13{word-spacing:-6.097111px;}
.ws107{word-spacing:-6.073216px;}
.wsbb{word-spacing:-6.037336px;}
.wsf5{word-spacing:-5.977575px;}
.ws68{word-spacing:-5.977560px;}
.ws70{word-spacing:-5.858009px;}
.ws25{word-spacing:-5.798233px;}
.wsf7{word-spacing:-5.786293px;}
.ws38{word-spacing:-5.738458px;}
.ws78{word-spacing:-5.595010px;}
.ws2b{word-spacing:-5.499355px;}
.ws1c{word-spacing:-5.439580px;}
.wsc{word-spacing:-5.433638px;}
.wsf6{word-spacing:-5.403728px;}
.wsb7{word-spacing:-5.320028px;}
.ws4f{word-spacing:-5.260266px;}
.ws71{word-spacing:-5.260253px;}
.wscc{word-spacing:-5.164625px;}
.ws9e{word-spacing:-5.140702px;}
.wsc8{word-spacing:-4.973342px;}
.ws54{word-spacing:-4.961375px;}
.wsc7{word-spacing:-4.925522px;}
.ws5c{word-spacing:-4.901599px;}
.wse{word-spacing:-4.895654px;}
.ws74{word-spacing:-4.841824px;}
.ws2a{word-spacing:-4.782048px;}
.ws8e{word-spacing:-4.722272px;}
.wsba{word-spacing:-4.602721px;}
.wsbf{word-spacing:-4.542946px;}
.wsb0{word-spacing:-4.483170px;}
.ws5{word-spacing:-4.465267px;}
.wsb8{word-spacing:-4.423394px;}
.ws2d{word-spacing:-4.303843px;}
.ws101{word-spacing:-4.160392px;}
.wsae{word-spacing:-4.124516px;}
.ws2c{word-spacing:-4.064741px;}
.ws105{word-spacing:-4.016930px;}
.ws3f{word-spacing:-3.945190px;}
.wse8{word-spacing:-3.825638px;}
.ws37{word-spacing:-3.765863px;}
.wsc9{word-spacing:-3.730007px;}
.ws84{word-spacing:-3.586536px;}
.ws4e{word-spacing:-3.538724px;}
.wsee{word-spacing:-3.347442px;}
.ws1b{word-spacing:-3.347434px;}
.wsb2{word-spacing:-3.287658px;}
.ws4c{word-spacing:-3.168107px;}
.wsdb{word-spacing:-3.108331px;}
.wsda{word-spacing:-3.048556px;}
.ws17{word-spacing:-2.929004px;}
.wse5{word-spacing:-2.869229px;}
.ws16{word-spacing:-2.809453px;}
.ws89{word-spacing:-2.749678px;}
.wse0{word-spacing:-2.582312px;}
.ws5e{word-spacing:-2.570351px;}
.wsf2{word-spacing:-2.510575px;}
.wse3{word-spacing:-2.331248px;}
.wse2{word-spacing:-2.247568px;}
.ws9c{word-spacing:-2.211697px;}
.ws5b{word-spacing:-2.151922px;}
.ws46{word-spacing:-2.092146px;}
.ws32{word-spacing:-1.972595px;}
.wsd1{word-spacing:-1.793268px;}
.wscf{word-spacing:-1.733492px;}
.ws55{word-spacing:-1.434614px;}
.wsc0{word-spacing:-1.374839px;}
.wsce{word-spacing:-1.315063px;}
.ws21{word-spacing:-1.255288px;}
.wsf8{word-spacing:-1.147694px;}
.wsf9{word-spacing:-1.099874px;}
.ws56{word-spacing:-1.075961px;}
.ws1f{word-spacing:-1.016185px;}
.wsea{word-spacing:-0.777083px;}
.wscb{word-spacing:-0.717309px;}
.ws19{word-spacing:-0.717307px;}
.ws20{word-spacing:-0.478205px;}
.wsa8{word-spacing:-0.358654px;}
.wsa3{word-spacing:-0.179327px;}
.ws94{word-spacing:-0.143462px;}
.wsd2{word-spacing:-0.119551px;}
.wsa1{word-spacing:-0.059776px;}
.ws3{word-spacing:-0.053798px;}
.ws53{word-spacing:-0.047821px;}
.ws4d{word-spacing:0.000000px;}
.ws61{word-spacing:0.095641px;}
.ws44{word-spacing:0.119551px;}
.wsfe{word-spacing:0.526027px;}
.ws1d{word-spacing:0.537980px;}
.ws100{word-spacing:0.573847px;}
.wsf3{word-spacing:0.657532px;}
.ws85{word-spacing:1.016185px;}
.wsd{word-spacing:1.237363px;}
.ws40{word-spacing:1.255288px;}
.wsdc{word-spacing:1.374839px;}
.ws8a{word-spacing:1.434614px;}
.ws67{word-spacing:1.613941px;}
.ws60{word-spacing:1.721542px;}
.ws72{word-spacing:1.793268px;}
.wsf1{word-spacing:1.912819px;}
.ws1a{word-spacing:2.151922px;}
.wsd7{word-spacing:2.271473px;}
.ws83{word-spacing:2.331248px;}
.ws66{word-spacing:2.450800px;}
.ws73{word-spacing:2.510575px;}
.ws69{word-spacing:2.630126px;}
.ws43{word-spacing:2.869229px;}
.wsff{word-spacing:3.012698px;}
.wsd8{word-spacing:3.526760px;}
.wsa0{word-spacing:3.586536px;}
.ws45{word-spacing:3.646312px;}
.ws6d{word-spacing:3.885414px;}
.ws8{word-spacing:3.981082px;}
.ws11{word-spacing:4.034880px;}
.wsbd{word-spacing:4.124516px;}
.ws4{word-spacing:4.142477px;}
.wsb3{word-spacing:5.140702px;}
.ws102{word-spacing:5.977575px;}
.wsa4{word-spacing:6.455765px;}
.ws80{word-spacing:7.890399px;}
.ws7d{word-spacing:7.938220px;}
.ws2e{word-spacing:8.368584px;}
.wse4{word-spacing:8.966340px;}
.ws52{word-spacing:11.907329px;}
.ws3b{word-spacing:14.884124px;}
.wsc3{word-spacing:16.378514px;}
.ws65{word-spacing:16.498066px;}
.ws77{word-spacing:16.689389px;}
.wsde{word-spacing:20.036831px;}
.wsc2{word-spacing:21.399665px;}
.wsd9{word-spacing:26.719693px;}
.wsd0{word-spacing:27.616327px;}
.ws12{word-spacing:29.828024px;}
.ws10{word-spacing:30.880282px;}
.ws97{word-spacing:50.068168px;}
.wsb4{word-spacing:109.603623px;}
.wsb5{word-spacing:109.605189px;}
.ws7b{word-spacing:193.874867px;}
.ws7a{word-spacing:193.880567px;}
.ws76{word-spacing:194.018567px;}
.ws93{word-spacing:201.548567px;}
.wsc6{word-spacing:201.554567px;}
.ws75{word-spacing:205.979579px;}
.ws79{word-spacing:213.503579px;}
.ws7c{word-spacing:213.506567px;}
.ws92{word-spacing:213.509579px;}
.wsec{word-spacing:496.903855px;}
.ws96{word-spacing:604.645700px;}
.ws95{word-spacing:640.528738px;}
._3{margin-left:-12.194253px;}
._1{margin-left:-5.738472px;}
._1d{margin-left:-4.728232px;}
._0{margin-left:-3.586545px;}
._4{margin-left:-2.151927px;}
._7{margin-left:-1.129766px;}
._6{width:1.195512px;}
._5{width:2.241585px;}
._2{width:3.586545px;}
._2d{width:5.140759px;}
._23{width:7.986040px;}
._a{width:9.982525px;}
._27{width:13.987501px;}
._22{width:17.215416px;}
._9{width:19.725953px;}
._8{width:21.393806px;}
._c{width:22.475640px;}
._21{width:23.910300px;}
._1c{width:25.010174px;}
._b{width:26.600158px;}
._28{width:28.453186px;}
._d{width:29.887800px;}
._2e{width:31.561538px;}
._2a{width:32.757111px;}
._26{width:34.622114px;}
._20{width:35.913271px;}
._29{width:37.897741px;}
._e{width:40.073663px;}
._2b{width:44.054535px;}
._1e{width:45.369680px;}
._1b{width:50.546374px;}
._17{width:71.491797px;}
._14{width:107.835453px;}
._16{width:120.699194px;}
._12{width:141.692441px;}
._2c{width:176.404189px;}
._10{width:193.864712px;}
._15{width:200.989982px;}
._1f{width:218.741817px;}
._18{width:224.948102px;}
._24{width:226.271817px;}
._f{width:307.390817px;}
._11{width:312.603262px;}
._1a{width:468.737521px;}
._19{width:473.089196px;}
._13{width:527.413400px;}
._25{width:676.573866px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:32.877000px;}
.fs6{font-size:35.865600px;}
.fs4{font-size:43.636200px;}
.fs5{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.ye7{bottom:-353.095245px;}
.y121{bottom:-339.495345px;}
.ye1{bottom:-318.004245px;}
.y11b{bottom:-304.399845px;}
.ye2{bottom:-255.215745px;}
.yed{bottom:-252.101745px;}
.y11c{bottom:-241.615845px;}
.y127{bottom:-238.497345px;}
.yec{bottom:-217.541745px;}
.y126{bottom:-203.941845px;}
.yeb{bottom:-182.986245px;}
.y125{bottom:-169.386345px;}
.ye3{bottom:-152.962245px;}
.yea{bottom:-148.430745px;}
.ye8{bottom:-143.948745px;}
.y11d{bottom:-139.357845px;}
.y124{bottom:-134.826345px;}
.y122{bottom:-130.348845px;}
.ye9{bottom:-113.875245px;}
.y123{bottom:-100.270845px;}
.ye4{bottom:-51.190245px;}
.y11e{bottom:-37.347345px;}
.y0{bottom:0.000000px;}
.yab{bottom:2.890500px;}
.ya5{bottom:14.587500px;}
.ya6{bottom:35.220000px;}
.y14a{bottom:35.514000px;}
.yd5{bottom:35.515500px;}
.yb0{bottom:35.596500px;}
.ydf{bottom:36.555000px;}
.yac{bottom:40.783500px;}
.yde{bottom:48.073500px;}
.y12f{bottom:48.075000px;}
.ye5{bottom:51.063255px;}
.ydd{bottom:59.593500px;}
.y171{bottom:59.742000px;}
.y14f{bottom:63.415500px;}
.y11f{bottom:64.667655px;}
.ya7{bottom:68.200500px;}
.y14b{bottom:69.519000px;}
.y155{bottom:69.520500px;}
.yb1{bottom:69.522000px;}
.yd6{bottom:69.601500px;}
.ydc{bottom:71.112000px;}
.y170{bottom:71.260500px;}
.yda{bottom:72.606000px;}
.yb5{bottom:72.607500px;}
.ydb{bottom:82.630500px;}
.y12e{bottom:94.149000px;}
.ya8{bottom:101.262000px;}
.y12b{bottom:103.524000px;}
.yd7{bottom:103.525500px;}
.y118{bottom:103.605000px;}
.yb2{bottom:103.606500px;}
.y14c{bottom:103.608000px;}
.y12d{bottom:105.667500px;}
.y130{bottom:124.761000px;}
.y174{bottom:130.968000px;}
.y131{bottom:131.023500px;}
.ya9{bottom:134.371500px;}
.y156{bottom:137.529000px;}
.y14d{bottom:137.530500px;}
.yb3{bottom:137.532000px;}
.yd8{bottom:137.610000px;}
.yb9{bottom:138.165000px;}
.yb8{bottom:149.683500px;}
.ye6{bottom:152.835255px;}
.y175{bottom:154.929000px;}
.y132{bottom:154.984500px;}
.yb7{bottom:161.202000px;}
.y120{bottom:166.822155px;}
.yaa{bottom:167.466000px;}
.yd9{bottom:171.534000px;}
.yb4{bottom:171.537000px;}
.y14e{bottom:171.538500px;}
.y12c{bottom:171.613500px;}
.y157{bottom:171.615000px;}
.y119{bottom:171.661500px;}
.yb6{bottom:172.720500px;}
.y176{bottom:178.921500px;}
.y133{bottom:178.978500px;}
.y37{bottom:188.167500px;}
.y1d0{bottom:192.225000px;}
.y83{bottom:192.507000px;}
.y1cf{bottom:205.324500px;}
.y5a{bottom:205.633500px;}
.y36{bottom:205.635000px;}
.y1ce{bottom:218.424000px;}
.y82{bottom:219.039000px;}
.y190{bottom:222.877500px;}
.y35{bottom:223.101000px;}
.y116{bottom:223.473000px;}
.y1cd{bottom:231.523500px;}
.y81{bottom:236.505000px;}
.y18f{bottom:240.343500px;}
.y34{bottom:240.567000px;}
.y115{bottom:240.940500px;}
.ya3{bottom:242.745000px;}
.y1cc{bottom:244.623000px;}
.y80{bottom:253.972500px;}
.y1cb{bottom:257.724000px;}
.y18e{bottom:257.811000px;}
.y59{bottom:258.033000px;}
.y33{bottom:258.034500px;}
.y114{bottom:258.406500px;}
.yd3{bottom:258.574500px;}
.y16f{bottom:259.282500px;}
.ya2{bottom:264.667500px;}
.y1ca{bottom:270.823500px;}
.y7f{bottom:271.438500px;}
.y18d{bottom:275.277000px;}
.y32{bottom:275.500500px;}
.y113{bottom:275.872500px;}
.yd2{bottom:276.042000px;}
.y16e{bottom:276.748500px;}
.y1c9{bottom:283.923000px;}
.y7e{bottom:289.044000px;}
.ya1{bottom:290.712000px;}
.y18c{bottom:292.743000px;}
.y31{bottom:292.966500px;}
.y112{bottom:293.340000px;}
.yd1{bottom:293.508000px;}
.y16d{bottom:294.214500px;}
.y1c8{bottom:297.022500px;}
.y7d{bottom:306.510000px;}
.ya0{bottom:308.179500px;}
.y1c7{bottom:310.123500px;}
.y18b{bottom:310.210500px;}
.y30{bottom:310.434000px;}
.y111{bottom:310.806000px;}
.y148{bottom:310.971000px;}
.yd0{bottom:310.974000px;}
.y58{bottom:311.026500px;}
.y16c{bottom:311.682000px;}
.y1c6{bottom:323.223000px;}
.y7c{bottom:323.976000px;}
.y9f{bottom:325.645500px;}
.y2f{bottom:327.900000px;}
.y110{bottom:328.272000px;}
.y147{bottom:328.437000px;}
.ycf{bottom:328.441500px;}
.y57{bottom:328.492500px;}
.y16b{bottom:331.021500px;}
.y18a{bottom:332.160000px;}
.y1c5{bottom:336.322500px;}
.y7b{bottom:341.443500px;}
.y9e{bottom:343.111500px;}
.y2e{bottom:345.366000px;}
.y10f{bottom:345.739500px;}
.y146{bottom:345.903000px;}
.yce{bottom:345.907500px;}
.y56{bottom:345.960000px;}
.y16a{bottom:348.487500px;}
.y1c4{bottom:349.422000px;}
.y189{bottom:358.375500px;}
.y7a{bottom:359.047500px;}
.y9d{bottom:360.579000px;}
.y1c3{bottom:362.523000px;}
.ycd{bottom:363.373500px;}
.y55{bottom:363.426000px;}
.y2d{bottom:363.522000px;}
.y10e{bottom:363.577500px;}
.y145{bottom:364.176000px;}
.y169{bottom:365.953500px;}
.y1c2{bottom:375.622500px;}
.y188{bottom:375.841500px;}
.y79{bottom:376.513500px;}
.y9c{bottom:378.045000px;}
.ycc{bottom:380.841000px;}
.y54{bottom:380.892000px;}
.y2c{bottom:380.988000px;}
.y10d{bottom:381.045000px;}
.y144{bottom:381.643500px;}
.y168{bottom:383.421000px;}
.y1c1{bottom:388.722000px;}
.y187{bottom:393.309000px;}
.y78{bottom:393.981000px;}
.y9b{bottom:395.511000px;}
.ycb{bottom:398.307000px;}
.y53{bottom:398.359500px;}
.y2b{bottom:398.454000px;}
.y10c{bottom:398.511000px;}
.y143{bottom:399.916500px;}
.y167{bottom:400.887000px;}
.y1c0{bottom:401.821500px;}
.y186{bottom:410.775000px;}
.y77{bottom:411.447000px;}
.y9a{bottom:412.726500px;}
.y1bf{bottom:414.922500px;}
.yca{bottom:415.773000px;}
.y52{bottom:415.825500px;}
.y2a{bottom:415.921500px;}
.y10b{bottom:415.977000px;}
.y142{bottom:417.382500px;}
.y166{bottom:418.353000px;}
.y1be{bottom:428.022000px;}
.y185{bottom:428.241000px;}
.y76{bottom:428.913000px;}
.y99{bottom:430.192500px;}
.yc9{bottom:433.240500px;}
.y29{bottom:433.387500px;}
.y10a{bottom:433.444500px;}
.y51{bottom:433.885500px;}
.y141{bottom:434.848500px;}
.y165{bottom:435.820500px;}
.y1bd{bottom:441.121500px;}
.y184{bottom:445.708500px;}
.y75{bottom:446.518500px;}
.y98{bottom:447.660000px;}
.yc8{bottom:450.706500px;}
.y109{bottom:451.284000px;}
.y50{bottom:451.351500px;}
.y28{bottom:451.542000px;}
.y140{bottom:452.316000px;}
.y164{bottom:453.286500px;}
.y1bc{bottom:454.221000px;}
.y183{bottom:463.174500px;}
.y74{bottom:463.984500px;}
.y97{bottom:465.126000px;}
.y1bb{bottom:467.322000px;}
.yc7{bottom:468.172500px;}
.y108{bottom:468.750000px;}
.y4f{bottom:468.817500px;}
.y27{bottom:469.009500px;}
.y13f{bottom:469.782000px;}
.y163{bottom:470.752500px;}
.y1ba{bottom:480.421500px;}
.y182{bottom:480.640500px;}
.y73{bottom:481.450500px;}
.y96{bottom:482.592000px;}
.y107{bottom:486.216000px;}
.y4e{bottom:486.285000px;}
.y26{bottom:486.475500px;}
.y13e{bottom:487.248000px;}
.yc6{bottom:489.771000px;}
.y162{bottom:490.092000px;}
.y1b9{bottom:493.521000px;}
.y181{bottom:498.108000px;}
.y72{bottom:498.918000px;}
.y95{bottom:500.059500px;}
.y106{bottom:503.683500px;}
.y4d{bottom:503.751000px;}
.y25{bottom:503.941500px;}
.y13d{bottom:504.715500px;}
.y1b8{bottom:506.620500px;}
.yc5{bottom:507.238500px;}
.y161{bottom:507.558000px;}
.y180{bottom:515.574000px;}
.y71{bottom:516.384000px;}
.y94{bottom:517.525500px;}
.y1b7{bottom:519.720000px;}
.y105{bottom:521.149500px;}
.y4c{bottom:521.217000px;}
.y24{bottom:521.409000px;}
.yc4{bottom:524.704500px;}
.y160{bottom:525.025500px;}
.y13c{bottom:528.769500px;}
.y1b6{bottom:532.821000px;}
.y17f{bottom:533.040000px;}
.y70{bottom:533.850000px;}
.y93{bottom:534.991500px;}
.y104{bottom:538.615500px;}
.y4b{bottom:538.684500px;}
.y23{bottom:538.875000px;}
.yc3{bottom:542.170500px;}
.y15f{bottom:542.491500px;}
.y1b5{bottom:545.920500px;}
.y92{bottom:552.459000px;}
.y17e{bottom:554.991000px;}
.y103{bottom:556.083000px;}
.y4a{bottom:556.150500px;}
.y22{bottom:556.341000px;}
.y6f{bottom:556.854000px;}
.y1b4{bottom:559.020000px;}
.yc2{bottom:559.638000px;}
.y15e{bottom:559.957500px;}
.y13b{bottom:560.893500px;}
.y91{bottom:569.925000px;}
.y1b3{bottom:572.119500px;}
.y21{bottom:573.808500px;}
.y102{bottom:573.922500px;}
.yc1{bottom:577.104000px;}
.y15d{bottom:577.425000px;}
.y13a{bottom:578.359500px;}
.y17d{bottom:581.206500px;}
.y49{bottom:581.884500px;}
.y1b2{bottom:585.220500px;}
.y90{bottom:587.391000px;}
.y20{bottom:591.274500px;}
.y101{bottom:591.388500px;}
.yc0{bottom:594.570000px;}
.y15c{bottom:594.891000px;}
.y139{bottom:595.825500px;}
.y17c{bottom:598.672500px;}
.y1b1{bottom:603.027000px;}
.y8f{bottom:604.858500px;}
.y1f{bottom:608.740500px;}
.y100{bottom:608.854500px;}
.y6e{bottom:610.765500px;}
.ybf{bottom:612.037500px;}
.y15b{bottom:612.357000px;}
.y138{bottom:613.293000px;}
.y48{bottom:614.482500px;}
.y17b{bottom:616.138500px;}
.y8e{bottom:622.072500px;}
.y6d{bottom:623.865000px;}
.y1e{bottom:626.208000px;}
.yff{bottom:626.322000px;}
.y1b0{bottom:628.621500px;}
.ybe{bottom:629.503500px;}
.y137{bottom:631.296000px;}
.y47{bottom:631.948500px;}
.y17a{bottom:633.606000px;}
.y6c{bottom:636.966000px;}
.y8d{bottom:639.540000px;}
.y1d{bottom:643.674000px;}
.yfe{bottom:643.788000px;}
.y1af{bottom:646.087500px;}
.ybd{bottom:646.969500px;}
.y136{bottom:648.763500px;}
.y46{bottom:649.414500px;}
.y6b{bottom:650.065500px;}
.y8c{bottom:657.006000px;}
.yfd{bottom:661.254000px;}
.y15a{bottom:661.678500px;}
.y6a{bottom:663.165000px;}
.y1ae{bottom:663.555000px;}
.y135{bottom:666.229500px;}
.y45{bottom:666.882000px;}
.y1c{bottom:669.979500px;}
.y8b{bottom:674.472000px;}
.y159{bottom:674.778000px;}
.y69{bottom:676.264500px;}
.y179{bottom:679.543500px;}
.y1ad{bottom:681.021000px;}
.y44{bottom:684.348000px;}
.yfc{bottom:684.733500px;}
.y158{bottom:687.877500px;}
.y68{bottom:689.365500px;}
.y8a{bottom:691.939500px;}
.y178{bottom:692.643000px;}
.ybc{bottom:696.730500px;}
.y1ac{bottom:698.487000px;}
.y43{bottom:701.814000px;}
.y67{bottom:702.465000px;}
.y177{bottom:705.742500px;}
.y1b{bottom:707.541000px;}
.ybb{bottom:709.830000px;}
.y89{bottom:713.862000px;}
.y154{bottom:714.310500px;}
.yfb{bottom:715.456500px;}
.y66{bottom:715.564500px;}
.y1ab{bottom:715.953000px;}
.y134{bottom:715.980000px;}
.y42{bottom:719.281500px;}
.y1a{bottom:722.097000px;}
.yba{bottom:722.931000px;}
.y65{bottom:728.664000px;}
.y173{bottom:732.175500px;}
.yfa{bottom:732.922500px;}
.y1aa{bottom:733.420500px;}
.y41{bottom:736.747500px;}
.y19{bottom:737.341500px;}
.y88{bottom:739.906500px;}
.y64{bottom:741.763500px;}
.y12a{bottom:742.413000px;}
.yaf{bottom:749.364000px;}
.yf9{bottom:750.390000px;}
.y18{bottom:751.896000px;}
.y40{bottom:754.213500px;}
.y1a9{bottom:755.268000px;}
.y87{bottom:757.372500px;}
.y63{bottom:762.672000px;}
.y17{bottom:766.452000px;}
.yf8{bottom:767.856000px;}
.y3f{bottom:771.681000px;}
.y86{bottom:774.838500px;}
.y1a8{bottom:780.861000px;}
.y16{bottom:781.006500px;}
.yf7{bottom:785.322000px;}
.y3e{bottom:789.147000px;}
.y85{bottom:792.306000px;}
.y62{bottom:793.074000px;}
.y15{bottom:795.562500px;}
.y1a7{bottom:798.328500px;}
.yf6{bottom:802.788000px;}
.y61{bottom:806.173500px;}
.y3d{bottom:806.613000px;}
.y84{bottom:809.772000px;}
.y14{bottom:810.118500px;}
.y1a6{bottom:815.794500px;}
.y60{bottom:819.274500px;}
.yf5{bottom:820.255500px;}
.y3c{bottom:824.080500px;}
.y13{bottom:824.673000px;}
.y1a5{bottom:832.935000px;}
.yf4{bottom:838.095000px;}
.y12{bottom:839.229000px;}
.y3b{bottom:841.546500px;}
.y1a4{bottom:850.401000px;}
.y11{bottom:853.783500px;}
.y5f{bottom:855.406500px;}
.yf3{bottom:855.561000px;}
.y3a{bottom:859.012500px;}
.y1a3{bottom:867.867000px;}
.y10{bottom:868.339500px;}
.y5e{bottom:868.506000px;}
.yf2{bottom:873.027000px;}
.y39{bottom:876.480000px;}
.y5d{bottom:881.607000px;}
.yf{bottom:882.895500px;}
.y1a2{bottom:885.334500px;}
.yf1{bottom:890.494500px;}
.y38{bottom:894.538500px;}
.ye{bottom:897.450000px;}
.y1a1{bottom:902.800500px;}
.yf0{bottom:907.960500px;}
.y5c{bottom:911.290500px;}
.yd{bottom:912.006000px;}
.y153{bottom:931.068000px;}
.y152{bottom:944.167500px;}
.y172{bottom:944.173500px;}
.y1a0{bottom:952.861500px;}
.y151{bottom:957.267000px;}
.yef{bottom:957.271500px;}
.y129{bottom:957.273000px;}
.yae{bottom:961.798500px;}
.y19f{bottom:965.961000px;}
.y150{bottom:970.366500px;}
.yee{bottom:970.371000px;}
.y128{bottom:970.372500px;}
.yad{bottom:974.898000px;}
.y8{bottom:978.541500px;}
.y19e{bottom:979.060500px;}
.y19d{bottom:992.160000px;}
.y7{bottom:996.553500px;}
.y149{bottom:996.799500px;}
.yd4{bottom:996.804000px;}
.y117{bottom:996.805500px;}
.yc{bottom:997.273500px;}
.ya4{bottom:1001.331000px;}
.y19c{bottom:1005.261000px;}
.y6{bottom:1014.565500px;}
.yb{bottom:1015.285500px;}
.y19b{bottom:1018.360500px;}
.y5b{bottom:1021.230000px;}
.ye0{bottom:1027.836990px;}
.y11a{bottom:1027.838175px;}
.y19a{bottom:1031.460000px;}
.y5{bottom:1032.577500px;}
.ya{bottom:1033.297500px;}
.y199{bottom:1044.559500px;}
.y4{bottom:1050.805500px;}
.y9{bottom:1051.311000px;}
.y198{bottom:1057.660500px;}
.y3{bottom:1069.539000px;}
.y197{bottom:1070.760000px;}
.y196{bottom:1083.859500px;}
.y195{bottom:1096.959000px;}
.y194{bottom:1110.058500px;}
.y2{bottom:1115.679000px;}
.y193{bottom:1130.967000px;}
.y1{bottom:1156.435500px;}
.y192{bottom:1161.369000px;}
.y191{bottom:1174.468500px;}
.h11{height:22.619376px;}
.h9{height:24.675533px;}
.h8{height:32.900573px;}
.h12{height:34.287370px;}
.h6{height:37.336090px;}
.h5{height:37.605082px;}
.ha{height:40.826735px;}
.h4{height:41.125613px;}
.hb{height:42.859105px;}
.h3{height:45.238339px;}
.h7{height:51.723706px;}
.hf{height:85.040430px;}
.h2{height:98.701718px;}
.hc{height:185.691000px;}
.h10{height:190.216500px;}
.he{height:190.218000px;}
.hd{height:190.219500px;}
.h13{height:190.222500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:85.040415px;}
.w6{width:341.896500px;}
.w2{width:352.297500px;}
.w3{width:353.398500px;}
.w4{width:353.403000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x30{left:-922.893525px;}
.x2e{left:-906.612525px;}
.x2d{left:-888.680025px;}
.x2c{left:-816.045525px;}
.x2f{left:-596.369025px;}
.x31{left:-42.635025px;}
.x0{left:0.000000px;}
.x21{left:8.832000px;}
.x20{left:14.707500px;}
.x1f{left:20.685000px;}
.x34{left:32.941500px;}
.x22{left:41.457000px;}
.x29{left:44.448000px;}
.x1e{left:50.874000px;}
.xf{left:60.903000px;}
.x16{left:68.214000px;}
.x1a{left:72.858000px;}
.xe{left:75.846000px;}
.x26{left:77.896500px;}
.x25{left:79.821000px;}
.x24{left:85.798500px;}
.x27{left:90.790500px;}
.x35{left:106.165500px;}
.x19{left:115.933500px;}
.x23{left:117.670500px;}
.x1{left:119.488500px;}
.x8{left:166.132500px;}
.x5{left:169.323000px;}
.x6{left:190.072500px;}
.x3{left:192.541500px;}
.x2{left:193.927500px;}
.x10{left:197.251500px;}
.x33{left:200.655000px;}
.x7{left:202.393500px;}
.x4{left:206.233500px;}
.x15{left:226.183500px;}
.x32{left:233.659245px;}
.x17{left:235.305000px;}
.x18{left:253.858500px;}
.x2a{left:302.250000px;}
.x36{left:307.672500px;}
.x37{left:319.179000px;}
.x14{left:380.809500px;}
.x11{left:455.422500px;}
.x3d{left:461.400000px;}
.x28{left:467.016000px;}
.x12{left:470.367000px;}
.x1c{left:472.417500px;}
.x3e{left:482.812500px;}
.x1d{left:485.311500px;}
.xb{left:494.103000px;}
.xd{left:514.053000px;}
.xc{left:516.579000px;}
.x1b{left:522.171000px;}
.x39{left:556.462500px;}
.x9{left:559.293000px;}
.xa{left:566.200500px;}
.x13{left:568.608000px;}
.x3b{left:582.618000px;}
.x3c{left:606.529500px;}
.x38{left:618.712500px;}
.x2b{left:628.180245px;}
.x3a{left:633.853500px;}
@media print{
.v4{vertical-align:-15.429333pt;}
.v3{vertical-align:-7.973333pt;}
.v2{vertical-align:-6.522667pt;}
.v5{vertical-align:-1.712000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.194558pt;}
.ls41{letter-spacing:0.210572pt;}
.ls43{letter-spacing:0.211058pt;}
.ls35{letter-spacing:0.232823pt;}
.ls26{letter-spacing:0.496808pt;}
.lsc{letter-spacing:0.722622pt;}
.ls39{letter-spacing:0.850142pt;}
.ls3a{letter-spacing:0.903276pt;}
.ls5{letter-spacing:1.062766pt;}
.ls8{letter-spacing:1.089092pt;}
.ls1b{letter-spacing:1.275213pt;}
.ls1a{letter-spacing:1.594016pt;}
.ls17{letter-spacing:1.647150pt;}
.ls44{letter-spacing:1.700288pt;}
.ls31{letter-spacing:1.812257pt;}
.ls2b{letter-spacing:1.817984pt;}
.ls2e{letter-spacing:1.839711pt;}
.ls3f{letter-spacing:1.840065pt;}
.ls36{letter-spacing:1.844137pt;}
.ls21{letter-spacing:2.125355pt;}
.ls27{letter-spacing:2.125360pt;}
.ls13{letter-spacing:2.167867pt;}
.ls6{letter-spacing:2.654133pt;}
.ls3b{letter-spacing:2.656693pt;}
.ls2{letter-spacing:2.657067pt;}
.ls0{letter-spacing:2.659467pt;}
.ls18{letter-spacing:3.241166pt;}
.ls4{letter-spacing:3.757525pt;}
.lsf{letter-spacing:3.985040pt;}
.ls28{letter-spacing:8.798990pt;}
.ls3c{letter-spacing:9.404694pt;}
.ls22{letter-spacing:9.457828pt;}
.lse{letter-spacing:11.817002pt;}
.ls20{letter-spacing:14.505546pt;}
.ls30{letter-spacing:14.771215pt;}
.ls1f{letter-spacing:14.877483pt;}
.ls19{letter-spacing:15.090018pt;}
.ls42{letter-spacing:15.565525pt;}
.ls2d{letter-spacing:15.621357pt;}
.lsd{letter-spacing:15.812678pt;}
.ls9{letter-spacing:18.078133pt;}
.ls1c{letter-spacing:18.118649pt;}
.ls29{letter-spacing:18.278096pt;}
.ls2f{letter-spacing:18.756913pt;}
.ls2c{letter-spacing:19.626246pt;}
.ls3d{letter-spacing:19.818932pt;}
.ls34{letter-spacing:20.233427pt;}
.ls1d{letter-spacing:21.359814pt;}
.ls10{letter-spacing:22.581893pt;}
.ls2a{letter-spacing:22.635027pt;}
.ls15{letter-spacing:22.741295pt;}
.ls32{letter-spacing:22.831580pt;}
.ls24{letter-spacing:24.388445pt;}
.ls7{letter-spacing:24.883467pt;}
.ls16{letter-spacing:24.972917pt;}
.ls23{letter-spacing:25.238587pt;}
.ls14{letter-spacing:25.610524pt;}
.ls38{letter-spacing:25.876193pt;}
.ls1e{letter-spacing:26.141862pt;}
.lsa{letter-spacing:26.566933pt;}
.ls37{letter-spacing:29.876913pt;}
.ls3e{letter-spacing:31.242714pt;}
.ls25{letter-spacing:33.793139pt;}
.ls40{letter-spacing:37.322246pt;}
.ls45{letter-spacing:104.397683pt;}
.lsb{letter-spacing:204.383733pt;}
.ls33{letter-spacing:211.077067pt;}
.ls11{letter-spacing:211.082400pt;}
.ls12{letter-spacing:633.247200pt;}
.ws50{word-spacing:-31.922907pt;}
.ws86{word-spacing:-26.566933pt;}
.wsab{word-spacing:-23.697705pt;}
.wsed{word-spacing:-21.466136pt;}
.wsfa{word-spacing:-21.253600pt;}
.ws0{word-spacing:-19.128240pt;}
.ws9b{word-spacing:-17.693578pt;}
.wsd3{word-spacing:-14.293010pt;}
.wsb6{word-spacing:-14.197405pt;}
.wscd{word-spacing:-14.154898pt;}
.ws9d{word-spacing:-14.027341pt;}
.ws24{word-spacing:-13.974207pt;}
.ws87{word-spacing:-13.814805pt;}
.ws99{word-spacing:-13.708538pt;}
.wse7{word-spacing:-13.655404pt;}
.ws28{word-spacing:-13.549136pt;}
.wsaf{word-spacing:-13.336601pt;}
.ws18{word-spacing:-13.124065pt;}
.ws4b{word-spacing:-13.070931pt;}
.ws48{word-spacing:-13.017797pt;}
.wsa6{word-spacing:-12.911530pt;}
.ws3a{word-spacing:-12.752128pt;}
.ws47{word-spacing:-12.698994pt;}
.ws30{word-spacing:-12.592726pt;}
.wsad{word-spacing:-12.539593pt;}
.ws59{word-spacing:-12.220789pt;}
.ws90{word-spacing:-12.114522pt;}
.wsc4{word-spacing:-11.955120pt;}
.wsdd{word-spacing:-11.901986pt;}
.ws26{word-spacing:-11.476915pt;}
.ws91{word-spacing:-11.423781pt;}
.wsca{word-spacing:-11.306915pt;}
.ws64{word-spacing:-11.158112pt;}
.ws3c{word-spacing:-11.104978pt;}
.ws22{word-spacing:-11.051844pt;}
.ws14{word-spacing:-10.998710pt;}
.ws58{word-spacing:-10.945577pt;}
.ws3d{word-spacing:-10.839309pt;}
.ws8d{word-spacing:-10.573639pt;}
.wsa{word-spacing:-10.520576pt;}
.ws23{word-spacing:-10.467372pt;}
.ws8c{word-spacing:-10.414238pt;}
.ws7e{word-spacing:-10.329250pt;}
.ws63{word-spacing:-10.307970pt;}
.ws27{word-spacing:-10.254836pt;}
.ws5d{word-spacing:-10.201702pt;}
.ws36{word-spacing:-9.989167pt;}
.ws1e{word-spacing:-9.936033pt;}
.wsf4{word-spacing:-9.829765pt;}
.ws6a{word-spacing:-9.776631pt;}
.wsb{word-spacing:-9.707622pt;}
.wsdf{word-spacing:-9.649134pt;}
.ws8f{word-spacing:-9.617230pt;}
.ws6e{word-spacing:-9.564096pt;}
.wsd5{word-spacing:-9.404694pt;}
.ws81{word-spacing:-9.351561pt;}
.ws29{word-spacing:-9.245293pt;}
.ws4a{word-spacing:-9.192159pt;}
.wsa2{word-spacing:-9.139025pt;}
.ws42{word-spacing:-9.085891pt;}
.ws35{word-spacing:-9.032757pt;}
.wsa9{word-spacing:-8.979623pt;}
.ws104{word-spacing:-8.926512pt;}
.wseb{word-spacing:-8.926490pt;}
.ws1{word-spacing:-8.767120pt;}
.ws33{word-spacing:-8.767088pt;}
.ws6{word-spacing:-8.703386pt;}
.wse9{word-spacing:-8.660820pt;}
.wsb1{word-spacing:-8.607686pt;}
.wsac{word-spacing:-8.448285pt;}
.ws103{word-spacing:-8.416426pt;}
.ws8b{word-spacing:-8.395151pt;}
.ws15{word-spacing:-8.288883pt;}
.ws106{word-spacing:-8.246397pt;}
.ws88{word-spacing:-8.235749pt;}
.ws2f{word-spacing:-8.182615pt;}
.wsd6{word-spacing:-8.129482pt;}
.ws2{word-spacing:-7.970080pt;}
.wse6{word-spacing:-7.916946pt;}
.ws7{word-spacing:-7.890432pt;}
.ws49{word-spacing:-7.863812pt;}
.wsfc{word-spacing:-7.778818pt;}
.ws9a{word-spacing:-7.757545pt;}
.wsc5{word-spacing:-7.704411pt;}
.ws9{word-spacing:-7.555686pt;}
.ws82{word-spacing:-7.545009pt;}
.ws31{word-spacing:-7.491875pt;}
.wsbe{word-spacing:-7.226206pt;}
.ws41{word-spacing:-7.066804pt;}
.wsef{word-spacing:-7.056195pt;}
.wsf0{word-spacing:-7.013688pt;}
.ws3e{word-spacing:-6.960537pt;}
.ws6c{word-spacing:-6.907403pt;}
.ws34{word-spacing:-6.854269pt;}
.wsbc{word-spacing:-6.748001pt;}
.wsd4{word-spacing:-6.694867pt;}
.ws57{word-spacing:-6.641733pt;}
.wsb9{word-spacing:-6.588599pt;}
.ws9f{word-spacing:-6.482332pt;}
.ws51{word-spacing:-6.376080pt;}
.ws7f{word-spacing:-6.333573pt;}
.wsc1{word-spacing:-6.269796pt;}
.wsaa{word-spacing:-6.163529pt;}
.ws5a{word-spacing:-6.110395pt;}
.wsf{word-spacing:-5.977600pt;}
.ws39{word-spacing:-5.950993pt;}
.wsa7{word-spacing:-5.897859pt;}
.wsfd{word-spacing:-5.823486pt;}
.ws5f{word-spacing:-5.791591pt;}
.ws62{word-spacing:-5.738458pt;}
.wsa5{word-spacing:-5.685324pt;}
.ws6f{word-spacing:-5.579056pt;}
.ws98{word-spacing:-5.568443pt;}
.wse1{word-spacing:-5.525936pt;}
.ws6b{word-spacing:-5.525922pt;}
.wsfb{word-spacing:-5.483429pt;}
.ws13{word-spacing:-5.419654pt;}
.ws107{word-spacing:-5.398414pt;}
.wsbb{word-spacing:-5.366521pt;}
.wsf5{word-spacing:-5.313400pt;}
.ws68{word-spacing:-5.313387pt;}
.ws70{word-spacing:-5.207119pt;}
.ws25{word-spacing:-5.153985pt;}
.wsf7{word-spacing:-5.143371pt;}
.ws38{word-spacing:-5.100851pt;}
.ws78{word-spacing:-4.973342pt;}
.ws2b{word-spacing:-4.888316pt;}
.ws1c{word-spacing:-4.835182pt;}
.wsc{word-spacing:-4.829901pt;}
.wsf6{word-spacing:-4.803314pt;}
.wsb7{word-spacing:-4.728914pt;}
.ws4f{word-spacing:-4.675792pt;}
.ws71{word-spacing:-4.675780pt;}
.wscc{word-spacing:-4.590778pt;}
.ws9e{word-spacing:-4.569513pt;}
.wsc8{word-spacing:-4.420749pt;}
.ws54{word-spacing:-4.410111pt;}
.wsc7{word-spacing:-4.378242pt;}
.ws5c{word-spacing:-4.356977pt;}
.wse{word-spacing:-4.351693pt;}
.ws74{word-spacing:-4.303843pt;}
.ws2a{word-spacing:-4.250709pt;}
.ws8e{word-spacing:-4.197575pt;}
.wsba{word-spacing:-4.091308pt;}
.wsbf{word-spacing:-4.038174pt;}
.wsb0{word-spacing:-3.985040pt;}
.ws5{word-spacing:-3.969126pt;}
.wsb8{word-spacing:-3.931906pt;}
.ws2d{word-spacing:-3.825638pt;}
.ws101{word-spacing:-3.698126pt;}
.wsae{word-spacing:-3.666237pt;}
.ws2c{word-spacing:-3.613103pt;}
.ws105{word-spacing:-3.570605pt;}
.ws3f{word-spacing:-3.506835pt;}
.wse8{word-spacing:-3.400567pt;}
.ws37{word-spacing:-3.347434pt;}
.wsc9{word-spacing:-3.315562pt;}
.ws84{word-spacing:-3.188032pt;}
.ws4e{word-spacing:-3.145533pt;}
.wsee{word-spacing:-2.975504pt;}
.ws1b{word-spacing:-2.975497pt;}
.wsb2{word-spacing:-2.922363pt;}
.ws4c{word-spacing:-2.816095pt;}
.wsdb{word-spacing:-2.762961pt;}
.wsda{word-spacing:-2.709827pt;}
.ws17{word-spacing:-2.603559pt;}
.wse5{word-spacing:-2.550426pt;}
.ws16{word-spacing:-2.497292pt;}
.ws89{word-spacing:-2.444158pt;}
.wse0{word-spacing:-2.295389pt;}
.ws5e{word-spacing:-2.284756pt;}
.wsf2{word-spacing:-2.231622pt;}
.wse3{word-spacing:-2.072221pt;}
.wse2{word-spacing:-1.997838pt;}
.ws9c{word-spacing:-1.965953pt;}
.ws5b{word-spacing:-1.912819pt;}
.ws46{word-spacing:-1.859685pt;}
.ws32{word-spacing:-1.753418pt;}
.wsd1{word-spacing:-1.594016pt;}
.wscf{word-spacing:-1.540882pt;}
.ws55{word-spacing:-1.275213pt;}
.wsc0{word-spacing:-1.222079pt;}
.wsce{word-spacing:-1.168945pt;}
.ws21{word-spacing:-1.115811pt;}
.wsf8{word-spacing:-1.020173pt;}
.wsf9{word-spacing:-0.977666pt;}
.ws56{word-spacing:-0.956410pt;}
.ws1f{word-spacing:-0.903276pt;}
.wsea{word-spacing:-0.690740pt;}
.wscb{word-spacing:-0.637608pt;}
.ws19{word-spacing:-0.637606pt;}
.ws20{word-spacing:-0.425071pt;}
.wsa8{word-spacing:-0.318803pt;}
.wsa3{word-spacing:-0.159402pt;}
.ws94{word-spacing:-0.127522pt;}
.wsd2{word-spacing:-0.106268pt;}
.wsa1{word-spacing:-0.053134pt;}
.ws3{word-spacing:-0.047821pt;}
.ws53{word-spacing:-0.042507pt;}
.ws4d{word-spacing:0.000000pt;}
.ws61{word-spacing:0.085014pt;}
.ws44{word-spacing:0.106268pt;}
.wsfe{word-spacing:0.467579pt;}
.ws1d{word-spacing:0.478205pt;}
.ws100{word-spacing:0.510086pt;}
.wsf3{word-spacing:0.584473pt;}
.ws85{word-spacing:0.903276pt;}
.wsd{word-spacing:1.099878pt;}
.ws40{word-spacing:1.115811pt;}
.wsdc{word-spacing:1.222079pt;}
.ws8a{word-spacing:1.275213pt;}
.ws67{word-spacing:1.434614pt;}
.ws60{word-spacing:1.530259pt;}
.ws72{word-spacing:1.594016pt;}
.wsf1{word-spacing:1.700284pt;}
.ws1a{word-spacing:1.912819pt;}
.wsd7{word-spacing:2.019087pt;}
.ws83{word-spacing:2.072221pt;}
.ws66{word-spacing:2.178489pt;}
.ws73{word-spacing:2.231622pt;}
.ws69{word-spacing:2.337890pt;}
.ws43{word-spacing:2.550426pt;}
.wsff{word-spacing:2.677954pt;}
.wsd8{word-spacing:3.134898pt;}
.wsa0{word-spacing:3.188032pt;}
.ws45{word-spacing:3.241166pt;}
.ws6d{word-spacing:3.453701pt;}
.ws8{word-spacing:3.538739pt;}
.ws11{word-spacing:3.586560pt;}
.wsbd{word-spacing:3.666237pt;}
.ws4{word-spacing:3.682202pt;}
.wsb3{word-spacing:4.569513pt;}
.ws102{word-spacing:5.313400pt;}
.wsa4{word-spacing:5.738458pt;}
.ws80{word-spacing:7.013688pt;}
.ws7d{word-spacing:7.056195pt;}
.ws2e{word-spacing:7.438741pt;}
.wse4{word-spacing:7.970080pt;}
.ws52{word-spacing:10.584293pt;}
.ws3b{word-spacing:13.230333pt;}
.wsc3{word-spacing:14.558679pt;}
.ws65{word-spacing:14.664947pt;}
.ws77{word-spacing:14.835013pt;}
.wsde{word-spacing:17.810517pt;}
.wsc2{word-spacing:19.021924pt;}
.wsd9{word-spacing:23.750838pt;}
.wsd0{word-spacing:24.547846pt;}
.ws12{word-spacing:26.513799pt;}
.ws10{word-spacing:27.449139pt;}
.ws97{word-spacing:44.505038pt;}
.wsb4{word-spacing:97.425443pt;}
.wsb5{word-spacing:97.426835pt;}
.ws7b{word-spacing:172.333215pt;}
.ws7a{word-spacing:172.338282pt;}
.ws76{word-spacing:172.460948pt;}
.ws93{word-spacing:179.154282pt;}
.wsc6{word-spacing:179.159615pt;}
.ws75{word-spacing:183.092959pt;}
.ws79{word-spacing:189.780959pt;}
.ws7c{word-spacing:189.783615pt;}
.ws92{word-spacing:189.786293pt;}
.wsec{word-spacing:441.692315pt;}
.ws96{word-spacing:537.462845pt;}
.ws95{word-spacing:569.358878pt;}
._3{margin-left:-10.839336pt;}
._1{margin-left:-5.100864pt;}
._1d{margin-left:-4.202873pt;}
._0{margin-left:-3.188040pt;}
._4{margin-left:-1.912824pt;}
._7{margin-left:-1.004237pt;}
._6{width:1.062677pt;}
._5{width:1.992520pt;}
._2{width:3.188040pt;}
._2d{width:4.569563pt;}
._23{width:7.098702pt;}
._a{width:8.873356pt;}
._27{width:12.433334pt;}
._22{width:15.302592pt;}
._9{width:17.534181pt;}
._8{width:19.016717pt;}
._c{width:19.978347pt;}
._21{width:21.253600pt;}
._1c{width:22.231266pt;}
._b{width:23.644585pt;}
._28{width:25.291721pt;}
._d{width:26.566933pt;}
._2e{width:28.054701pt;}
._2a{width:29.117432pt;}
._26{width:30.775213pt;}
._20{width:31.922907pt;}
._29{width:33.686881pt;}
._e{width:35.621034pt;}
._2b{width:39.159587pt;}
._1e{width:40.328605pt;}
._1b{width:44.930110pt;}
._17{width:63.548264pt;}
._14{width:95.853736pt;}
._16{width:107.288173pt;}
._12{width:125.948836pt;}
._2c{width:156.803723pt;}
._10{width:172.324189pt;}
._15{width:178.657762pt;}
._1f{width:194.437171pt;}
._18{width:199.953869pt;}
._24{width:201.130504pt;}
._f{width:273.236282pt;}
._11{width:277.869566pt;}
._1a{width:416.655574pt;}
._19{width:420.523730pt;}
._13{width:468.811911pt;}
._25{width:601.398992pt;}
.fs7{font-size:29.224000pt;}
.fs6{font-size:31.880533pt;}
.fs4{font-size:38.787733pt;}
.fs5{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.ye7{bottom:-313.862440pt;}
.y121{bottom:-301.773640pt;}
.ye1{bottom:-282.670440pt;}
.y11b{bottom:-270.577640pt;}
.ye2{bottom:-226.858440pt;}
.yed{bottom:-224.090440pt;}
.y11c{bottom:-214.769640pt;}
.y127{bottom:-211.997640pt;}
.yec{bottom:-193.370440pt;}
.y126{bottom:-181.281640pt;}
.yeb{bottom:-162.654440pt;}
.y125{bottom:-150.565640pt;}
.ye3{bottom:-135.966440pt;}
.yea{bottom:-131.938440pt;}
.ye8{bottom:-127.954440pt;}
.y11d{bottom:-123.873640pt;}
.y124{bottom:-119.845640pt;}
.y122{bottom:-115.865640pt;}
.ye9{bottom:-101.222440pt;}
.y123{bottom:-89.129640pt;}
.ye4{bottom:-45.502440pt;}
.y11e{bottom:-33.197640pt;}
.y0{bottom:0.000000pt;}
.yab{bottom:2.569333pt;}
.ya5{bottom:12.966667pt;}
.ya6{bottom:31.306667pt;}
.y14a{bottom:31.568000pt;}
.yd5{bottom:31.569333pt;}
.yb0{bottom:31.641333pt;}
.ydf{bottom:32.493333pt;}
.yac{bottom:36.252000pt;}
.yde{bottom:42.732000pt;}
.y12f{bottom:42.733333pt;}
.ye5{bottom:45.389560pt;}
.ydd{bottom:52.972000pt;}
.y171{bottom:53.104000pt;}
.y14f{bottom:56.369333pt;}
.y11f{bottom:57.482360pt;}
.ya7{bottom:60.622667pt;}
.y14b{bottom:61.794667pt;}
.y155{bottom:61.796000pt;}
.yb1{bottom:61.797333pt;}
.yd6{bottom:61.868000pt;}
.ydc{bottom:63.210667pt;}
.y170{bottom:63.342667pt;}
.yda{bottom:64.538667pt;}
.yb5{bottom:64.540000pt;}
.ydb{bottom:73.449333pt;}
.y12e{bottom:83.688000pt;}
.ya8{bottom:90.010667pt;}
.y12b{bottom:92.021333pt;}
.yd7{bottom:92.022667pt;}
.y118{bottom:92.093333pt;}
.yb2{bottom:92.094667pt;}
.y14c{bottom:92.096000pt;}
.y12d{bottom:93.926667pt;}
.y130{bottom:110.898667pt;}
.y174{bottom:116.416000pt;}
.y131{bottom:116.465333pt;}
.ya9{bottom:119.441333pt;}
.y156{bottom:122.248000pt;}
.y14d{bottom:122.249333pt;}
.yb3{bottom:122.250667pt;}
.yd8{bottom:122.320000pt;}
.yb9{bottom:122.813333pt;}
.yb8{bottom:133.052000pt;}
.ye6{bottom:135.853560pt;}
.y175{bottom:137.714667pt;}
.y132{bottom:137.764000pt;}
.yb7{bottom:143.290667pt;}
.y120{bottom:148.286360pt;}
.yaa{bottom:148.858667pt;}
.yd9{bottom:152.474667pt;}
.yb4{bottom:152.477333pt;}
.y14e{bottom:152.478667pt;}
.y12c{bottom:152.545333pt;}
.y157{bottom:152.546667pt;}
.y119{bottom:152.588000pt;}
.yb6{bottom:153.529333pt;}
.y176{bottom:159.041333pt;}
.y133{bottom:159.092000pt;}
.y37{bottom:167.260000pt;}
.y1d0{bottom:170.866667pt;}
.y83{bottom:171.117333pt;}
.y1cf{bottom:182.510667pt;}
.y5a{bottom:182.785333pt;}
.y36{bottom:182.786667pt;}
.y1ce{bottom:194.154667pt;}
.y82{bottom:194.701333pt;}
.y190{bottom:198.113333pt;}
.y35{bottom:198.312000pt;}
.y116{bottom:198.642667pt;}
.y1cd{bottom:205.798667pt;}
.y81{bottom:210.226667pt;}
.y18f{bottom:213.638667pt;}
.y34{bottom:213.837333pt;}
.y115{bottom:214.169333pt;}
.ya3{bottom:215.773333pt;}
.y1cc{bottom:217.442667pt;}
.y80{bottom:225.753333pt;}
.y1cb{bottom:229.088000pt;}
.y18e{bottom:229.165333pt;}
.y59{bottom:229.362667pt;}
.y33{bottom:229.364000pt;}
.y114{bottom:229.694667pt;}
.yd3{bottom:229.844000pt;}
.y16f{bottom:230.473333pt;}
.ya2{bottom:235.260000pt;}
.y1ca{bottom:240.732000pt;}
.y7f{bottom:241.278667pt;}
.y18d{bottom:244.690667pt;}
.y32{bottom:244.889333pt;}
.y113{bottom:245.220000pt;}
.yd2{bottom:245.370667pt;}
.y16e{bottom:245.998667pt;}
.y1c9{bottom:252.376000pt;}
.y7e{bottom:256.928000pt;}
.ya1{bottom:258.410667pt;}
.y18c{bottom:260.216000pt;}
.y31{bottom:260.414667pt;}
.y112{bottom:260.746667pt;}
.yd1{bottom:260.896000pt;}
.y16d{bottom:261.524000pt;}
.y1c8{bottom:264.020000pt;}
.y7d{bottom:272.453333pt;}
.ya0{bottom:273.937333pt;}
.y1c7{bottom:275.665333pt;}
.y18b{bottom:275.742667pt;}
.y30{bottom:275.941333pt;}
.y111{bottom:276.272000pt;}
.y148{bottom:276.418667pt;}
.yd0{bottom:276.421333pt;}
.y58{bottom:276.468000pt;}
.y16c{bottom:277.050667pt;}
.y1c6{bottom:287.309333pt;}
.y7c{bottom:287.978667pt;}
.y9f{bottom:289.462667pt;}
.y2f{bottom:291.466667pt;}
.y110{bottom:291.797333pt;}
.y147{bottom:291.944000pt;}
.ycf{bottom:291.948000pt;}
.y57{bottom:291.993333pt;}
.y16b{bottom:294.241333pt;}
.y18a{bottom:295.253333pt;}
.y1c5{bottom:298.953333pt;}
.y7b{bottom:303.505333pt;}
.y9e{bottom:304.988000pt;}
.y2e{bottom:306.992000pt;}
.y10f{bottom:307.324000pt;}
.y146{bottom:307.469333pt;}
.yce{bottom:307.473333pt;}
.y56{bottom:307.520000pt;}
.y16a{bottom:309.766667pt;}
.y1c4{bottom:310.597333pt;}
.y189{bottom:318.556000pt;}
.y7a{bottom:319.153333pt;}
.y9d{bottom:320.514667pt;}
.y1c3{bottom:322.242667pt;}
.ycd{bottom:322.998667pt;}
.y55{bottom:323.045333pt;}
.y2d{bottom:323.130667pt;}
.y10e{bottom:323.180000pt;}
.y145{bottom:323.712000pt;}
.y169{bottom:325.292000pt;}
.y1c2{bottom:333.886667pt;}
.y188{bottom:334.081333pt;}
.y79{bottom:334.678667pt;}
.y9c{bottom:336.040000pt;}
.ycc{bottom:338.525333pt;}
.y54{bottom:338.570667pt;}
.y2c{bottom:338.656000pt;}
.y10d{bottom:338.706667pt;}
.y144{bottom:339.238667pt;}
.y168{bottom:340.818667pt;}
.y1c1{bottom:345.530667pt;}
.y187{bottom:349.608000pt;}
.y78{bottom:350.205333pt;}
.y9b{bottom:351.565333pt;}
.ycb{bottom:354.050667pt;}
.y53{bottom:354.097333pt;}
.y2b{bottom:354.181333pt;}
.y10c{bottom:354.232000pt;}
.y143{bottom:355.481333pt;}
.y167{bottom:356.344000pt;}
.y1c0{bottom:357.174667pt;}
.y186{bottom:365.133333pt;}
.y77{bottom:365.730667pt;}
.y9a{bottom:366.868000pt;}
.y1bf{bottom:368.820000pt;}
.yca{bottom:369.576000pt;}
.y52{bottom:369.622667pt;}
.y2a{bottom:369.708000pt;}
.y10b{bottom:369.757333pt;}
.y142{bottom:371.006667pt;}
.y166{bottom:371.869333pt;}
.y1be{bottom:380.464000pt;}
.y185{bottom:380.658667pt;}
.y76{bottom:381.256000pt;}
.y99{bottom:382.393333pt;}
.yc9{bottom:385.102667pt;}
.y29{bottom:385.233333pt;}
.y10a{bottom:385.284000pt;}
.y51{bottom:385.676000pt;}
.y141{bottom:386.532000pt;}
.y165{bottom:387.396000pt;}
.y1bd{bottom:392.108000pt;}
.y184{bottom:396.185333pt;}
.y75{bottom:396.905333pt;}
.y98{bottom:397.920000pt;}
.yc8{bottom:400.628000pt;}
.y109{bottom:401.141333pt;}
.y50{bottom:401.201333pt;}
.y28{bottom:401.370667pt;}
.y140{bottom:402.058667pt;}
.y164{bottom:402.921333pt;}
.y1bc{bottom:403.752000pt;}
.y183{bottom:411.710667pt;}
.y74{bottom:412.430667pt;}
.y97{bottom:413.445333pt;}
.y1bb{bottom:415.397333pt;}
.yc7{bottom:416.153333pt;}
.y108{bottom:416.666667pt;}
.y4f{bottom:416.726667pt;}
.y27{bottom:416.897333pt;}
.y13f{bottom:417.584000pt;}
.y163{bottom:418.446667pt;}
.y1ba{bottom:427.041333pt;}
.y182{bottom:427.236000pt;}
.y73{bottom:427.956000pt;}
.y96{bottom:428.970667pt;}
.y107{bottom:432.192000pt;}
.y4e{bottom:432.253333pt;}
.y26{bottom:432.422667pt;}
.y13e{bottom:433.109333pt;}
.yc6{bottom:435.352000pt;}
.y162{bottom:435.637333pt;}
.y1b9{bottom:438.685333pt;}
.y181{bottom:442.762667pt;}
.y72{bottom:443.482667pt;}
.y95{bottom:444.497333pt;}
.y106{bottom:447.718667pt;}
.y4d{bottom:447.778667pt;}
.y25{bottom:447.948000pt;}
.y13d{bottom:448.636000pt;}
.y1b8{bottom:450.329333pt;}
.yc5{bottom:450.878667pt;}
.y161{bottom:451.162667pt;}
.y180{bottom:458.288000pt;}
.y71{bottom:459.008000pt;}
.y94{bottom:460.022667pt;}
.y1b7{bottom:461.973333pt;}
.y105{bottom:463.244000pt;}
.y4c{bottom:463.304000pt;}
.y24{bottom:463.474667pt;}
.yc4{bottom:466.404000pt;}
.y160{bottom:466.689333pt;}
.y13c{bottom:470.017333pt;}
.y1b6{bottom:473.618667pt;}
.y17f{bottom:473.813333pt;}
.y70{bottom:474.533333pt;}
.y93{bottom:475.548000pt;}
.y104{bottom:478.769333pt;}
.y4b{bottom:478.830667pt;}
.y23{bottom:479.000000pt;}
.yc3{bottom:481.929333pt;}
.y15f{bottom:482.214667pt;}
.y1b5{bottom:485.262667pt;}
.y92{bottom:491.074667pt;}
.y17e{bottom:493.325333pt;}
.y103{bottom:494.296000pt;}
.y4a{bottom:494.356000pt;}
.y22{bottom:494.525333pt;}
.y6f{bottom:494.981333pt;}
.y1b4{bottom:496.906667pt;}
.yc2{bottom:497.456000pt;}
.y15e{bottom:497.740000pt;}
.y13b{bottom:498.572000pt;}
.y91{bottom:506.600000pt;}
.y1b3{bottom:508.550667pt;}
.y21{bottom:510.052000pt;}
.y102{bottom:510.153333pt;}
.yc1{bottom:512.981333pt;}
.y15d{bottom:513.266667pt;}
.y13a{bottom:514.097333pt;}
.y17d{bottom:516.628000pt;}
.y49{bottom:517.230667pt;}
.y1b2{bottom:520.196000pt;}
.y90{bottom:522.125333pt;}
.y20{bottom:525.577333pt;}
.y101{bottom:525.678667pt;}
.yc0{bottom:528.506667pt;}
.y15c{bottom:528.792000pt;}
.y139{bottom:529.622667pt;}
.y17c{bottom:532.153333pt;}
.y1b1{bottom:536.024000pt;}
.y8f{bottom:537.652000pt;}
.y1f{bottom:541.102667pt;}
.y100{bottom:541.204000pt;}
.y6e{bottom:542.902667pt;}
.ybf{bottom:544.033333pt;}
.y15b{bottom:544.317333pt;}
.y138{bottom:545.149333pt;}
.y48{bottom:546.206667pt;}
.y17b{bottom:547.678667pt;}
.y8e{bottom:552.953333pt;}
.y6d{bottom:554.546667pt;}
.y1e{bottom:556.629333pt;}
.yff{bottom:556.730667pt;}
.y1b0{bottom:558.774667pt;}
.ybe{bottom:559.558667pt;}
.y137{bottom:561.152000pt;}
.y47{bottom:561.732000pt;}
.y17a{bottom:563.205333pt;}
.y6c{bottom:566.192000pt;}
.y8d{bottom:568.480000pt;}
.y1d{bottom:572.154667pt;}
.yfe{bottom:572.256000pt;}
.y1af{bottom:574.300000pt;}
.ybd{bottom:575.084000pt;}
.y136{bottom:576.678667pt;}
.y46{bottom:577.257333pt;}
.y6b{bottom:577.836000pt;}
.y8c{bottom:584.005333pt;}
.yfd{bottom:587.781333pt;}
.y15a{bottom:588.158667pt;}
.y6a{bottom:589.480000pt;}
.y1ae{bottom:589.826667pt;}
.y135{bottom:592.204000pt;}
.y45{bottom:592.784000pt;}
.y1c{bottom:595.537333pt;}
.y8b{bottom:599.530667pt;}
.y159{bottom:599.802667pt;}
.y69{bottom:601.124000pt;}
.y179{bottom:604.038667pt;}
.y1ad{bottom:605.352000pt;}
.y44{bottom:608.309333pt;}
.yfc{bottom:608.652000pt;}
.y158{bottom:611.446667pt;}
.y68{bottom:612.769333pt;}
.y8a{bottom:615.057333pt;}
.y178{bottom:615.682667pt;}
.ybc{bottom:619.316000pt;}
.y1ac{bottom:620.877333pt;}
.y43{bottom:623.834667pt;}
.y67{bottom:624.413333pt;}
.y177{bottom:627.326667pt;}
.y1b{bottom:628.925333pt;}
.ybb{bottom:630.960000pt;}
.y89{bottom:634.544000pt;}
.y154{bottom:634.942667pt;}
.yfb{bottom:635.961333pt;}
.y66{bottom:636.057333pt;}
.y1ab{bottom:636.402667pt;}
.y134{bottom:636.426667pt;}
.y42{bottom:639.361333pt;}
.y1a{bottom:641.864000pt;}
.yba{bottom:642.605333pt;}
.y65{bottom:647.701333pt;}
.y173{bottom:650.822667pt;}
.yfa{bottom:651.486667pt;}
.y1aa{bottom:651.929333pt;}
.y41{bottom:654.886667pt;}
.y19{bottom:655.414667pt;}
.y88{bottom:657.694667pt;}
.y64{bottom:659.345333pt;}
.y12a{bottom:659.922667pt;}
.yaf{bottom:666.101333pt;}
.yf9{bottom:667.013333pt;}
.y18{bottom:668.352000pt;}
.y40{bottom:670.412000pt;}
.y1a9{bottom:671.349333pt;}
.y87{bottom:673.220000pt;}
.y63{bottom:677.930667pt;}
.y17{bottom:681.290667pt;}
.yf8{bottom:682.538667pt;}
.y3f{bottom:685.938667pt;}
.y86{bottom:688.745333pt;}
.y1a8{bottom:694.098667pt;}
.y16{bottom:694.228000pt;}
.yf7{bottom:698.064000pt;}
.y3e{bottom:701.464000pt;}
.y85{bottom:704.272000pt;}
.y62{bottom:704.954667pt;}
.y15{bottom:707.166667pt;}
.y1a7{bottom:709.625333pt;}
.yf6{bottom:713.589333pt;}
.y61{bottom:716.598667pt;}
.y3d{bottom:716.989333pt;}
.y84{bottom:719.797333pt;}
.y14{bottom:720.105333pt;}
.y1a6{bottom:725.150667pt;}
.y60{bottom:728.244000pt;}
.yf5{bottom:729.116000pt;}
.y3c{bottom:732.516000pt;}
.y13{bottom:733.042667pt;}
.y1a5{bottom:740.386667pt;}
.yf4{bottom:744.973333pt;}
.y12{bottom:745.981333pt;}
.y3b{bottom:748.041333pt;}
.y1a4{bottom:755.912000pt;}
.y11{bottom:758.918667pt;}
.y5f{bottom:760.361333pt;}
.yf3{bottom:760.498667pt;}
.y3a{bottom:763.566667pt;}
.y1a3{bottom:771.437333pt;}
.y10{bottom:771.857333pt;}
.y5e{bottom:772.005333pt;}
.yf2{bottom:776.024000pt;}
.y39{bottom:779.093333pt;}
.y5d{bottom:783.650667pt;}
.yf{bottom:784.796000pt;}
.y1a2{bottom:786.964000pt;}
.yf1{bottom:791.550667pt;}
.y38{bottom:795.145333pt;}
.ye{bottom:797.733333pt;}
.y1a1{bottom:802.489333pt;}
.yf0{bottom:807.076000pt;}
.y5c{bottom:810.036000pt;}
.yd{bottom:810.672000pt;}
.y153{bottom:827.616000pt;}
.y152{bottom:839.260000pt;}
.y172{bottom:839.265333pt;}
.y1a0{bottom:846.988000pt;}
.y151{bottom:850.904000pt;}
.yef{bottom:850.908000pt;}
.y129{bottom:850.909333pt;}
.yae{bottom:854.932000pt;}
.y19f{bottom:858.632000pt;}
.y150{bottom:862.548000pt;}
.yee{bottom:862.552000pt;}
.y128{bottom:862.553333pt;}
.yad{bottom:866.576000pt;}
.y8{bottom:869.814667pt;}
.y19e{bottom:870.276000pt;}
.y19d{bottom:881.920000pt;}
.y7{bottom:885.825333pt;}
.y149{bottom:886.044000pt;}
.yd4{bottom:886.048000pt;}
.y117{bottom:886.049333pt;}
.yc{bottom:886.465333pt;}
.ya4{bottom:890.072000pt;}
.y19c{bottom:893.565333pt;}
.y6{bottom:901.836000pt;}
.yb{bottom:902.476000pt;}
.y19b{bottom:905.209333pt;}
.y5b{bottom:907.760000pt;}
.ye0{bottom:913.632880pt;}
.y11a{bottom:913.633933pt;}
.y19a{bottom:916.853333pt;}
.y5{bottom:917.846667pt;}
.ya{bottom:918.486667pt;}
.y199{bottom:928.497333pt;}
.y4{bottom:934.049333pt;}
.y9{bottom:934.498667pt;}
.y198{bottom:940.142667pt;}
.y3{bottom:950.701333pt;}
.y197{bottom:951.786667pt;}
.y196{bottom:963.430667pt;}
.y195{bottom:975.074667pt;}
.y194{bottom:986.718667pt;}
.y2{bottom:991.714667pt;}
.y193{bottom:1005.304000pt;}
.y1{bottom:1027.942667pt;}
.y192{bottom:1032.328000pt;}
.y191{bottom:1043.972000pt;}
.h11{height:20.106112pt;}
.h9{height:21.933807pt;}
.h8{height:29.244954pt;}
.h12{height:30.477662pt;}
.h6{height:33.187635pt;}
.h5{height:33.426739pt;}
.ha{height:36.290431pt;}
.h4{height:36.556100pt;}
.hb{height:38.096982pt;}
.h3{height:40.211857pt;}
.h7{height:45.976627pt;}
.hf{height:75.591493pt;}
.h2{height:87.734861pt;}
.hc{height:165.058667pt;}
.h10{height:169.081333pt;}
.he{height:169.082667pt;}
.hd{height:169.084000pt;}
.h13{height:169.086667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:75.591480pt;}
.w6{width:303.908000pt;}
.w2{width:313.153333pt;}
.w3{width:314.132000pt;}
.w4{width:314.136000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x30{left:-820.349800pt;}
.x2e{left:-805.877800pt;}
.x2d{left:-789.937800pt;}
.x2c{left:-725.373800pt;}
.x2f{left:-530.105800pt;}
.x31{left:-37.897800pt;}
.x0{left:0.000000pt;}
.x21{left:7.850667pt;}
.x20{left:13.073333pt;}
.x1f{left:18.386667pt;}
.x34{left:29.281333pt;}
.x22{left:36.850667pt;}
.x29{left:39.509333pt;}
.x1e{left:45.221333pt;}
.xf{left:54.136000pt;}
.x16{left:60.634667pt;}
.x1a{left:64.762667pt;}
.xe{left:67.418667pt;}
.x26{left:69.241333pt;}
.x25{left:70.952000pt;}
.x24{left:76.265333pt;}
.x27{left:80.702667pt;}
.x35{left:94.369333pt;}
.x19{left:103.052000pt;}
.x23{left:104.596000pt;}
.x1{left:106.212000pt;}
.x8{left:147.673333pt;}
.x5{left:150.509333pt;}
.x6{left:168.953333pt;}
.x3{left:171.148000pt;}
.x2{left:172.380000pt;}
.x10{left:175.334667pt;}
.x33{left:178.360000pt;}
.x7{left:179.905333pt;}
.x4{left:183.318667pt;}
.x15{left:201.052000pt;}
.x32{left:207.697107pt;}
.x17{left:209.160000pt;}
.x18{left:225.652000pt;}
.x2a{left:268.666667pt;}
.x36{left:273.486667pt;}
.x37{left:283.714667pt;}
.x14{left:338.497333pt;}
.x11{left:404.820000pt;}
.x3d{left:410.133333pt;}
.x28{left:415.125333pt;}
.x12{left:418.104000pt;}
.x1c{left:419.926667pt;}
.x3e{left:429.166667pt;}
.x1d{left:431.388000pt;}
.xb{left:439.202667pt;}
.xd{left:456.936000pt;}
.xc{left:459.181333pt;}
.x1b{left:464.152000pt;}
.x39{left:494.633333pt;}
.x9{left:497.149333pt;}
.xa{left:503.289333pt;}
.x13{left:505.429333pt;}
.x3b{left:517.882667pt;}
.x3c{left:539.137333pt;}
.x38{left:549.966667pt;}
.x2b{left:558.382440pt;}
.x3a{left:563.425333pt;}
}




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