
    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_dcb606e132c6d3f1883e9015.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_c42e974e14822e782065495c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.900391;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_6e5ba7449d34c75f3cf65c9c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.731445;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_2dac849d5ecb0800a245477a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.727539;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;}
.m17{transform:matrix(0.000000,-0.249993,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249993,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249993,0.250000,0.000000,0,0);}
.m15{transform:matrix(0.000000,-0.249996,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249996,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249996,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);}
.m14{transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250040,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.267947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267947,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.267972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267972,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.267998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267998,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.268024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268024,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.268050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268050,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.268076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268076,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.268102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268102,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.268127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268127,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.268334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268334,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.268360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268360,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.268386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268386,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.268412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268412,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.268438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268438,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.268464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268464,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.268490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268490,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.268515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268515,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.268541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268541,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.271194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271194,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-14.043600px;}
.v0{vertical-align:0.000000px;}
.ls9a{letter-spacing:-1.201112px;}
.ls96{letter-spacing:-1.201097px;}
.ls40{letter-spacing:-0.393256px;}
.ls46{letter-spacing:-0.285804px;}
.ls43{letter-spacing:-0.235368px;}
.ls30{letter-spacing:-0.218556px;}
.ls3b{letter-spacing:-0.201744px;}
.ls2f{letter-spacing:-0.184932px;}
.ls84{letter-spacing:-0.168120px;}
.ls2e{letter-spacing:-0.151308px;}
.ls2b{letter-spacing:-0.134496px;}
.ls4a{letter-spacing:-0.134191px;}
.ls31{letter-spacing:-0.129600px;}
.ls99{letter-spacing:-0.125575px;}
.ls95{letter-spacing:-0.125571px;}
.ls34{letter-spacing:-0.117684px;}
.lsb{letter-spacing:-0.115200px;}
.ls2a{letter-spacing:-0.100872px;}
.ls42{letter-spacing:-0.100800px;}
.ls47{letter-spacing:-0.086400px;}
.ls36{letter-spacing:-0.084060px;}
.ls25{letter-spacing:-0.083916px;}
.lse{letter-spacing:-0.072000px;}
.ls39{letter-spacing:-0.067248px;}
.ls4f{letter-spacing:-0.061934px;}
.ls23{letter-spacing:-0.059940px;}
.ls1f{letter-spacing:-0.057600px;}
.ls24{letter-spacing:-0.047952px;}
.lsf{letter-spacing:-0.043200px;}
.ls4d{letter-spacing:-0.041290px;}
.ls27{letter-spacing:-0.035964px;}
.ls35{letter-spacing:-0.033624px;}
.ls4b{letter-spacing:-0.030967px;}
.ls3a{letter-spacing:-0.028800px;}
.ls20{letter-spacing:-0.023976px;}
.ls2{letter-spacing:-0.021600px;}
.ls4e{letter-spacing:-0.020645px;}
.ls7e{letter-spacing:-0.019224px;}
.ls37{letter-spacing:-0.016812px;}
.ls14{letter-spacing:-0.014400px;}
.ls22{letter-spacing:-0.011988px;}
.ls3{letter-spacing:-0.010800px;}
.lsc{letter-spacing:0.000000px;}
.ls49{letter-spacing:0.010322px;}
.ls9{letter-spacing:0.010800px;}
.ls11{letter-spacing:0.011988px;}
.ls48{letter-spacing:0.014400px;}
.ls4{letter-spacing:0.019188px;}
.ls8c{letter-spacing:0.019224px;}
.ls8{letter-spacing:0.021600px;}
.ls10{letter-spacing:0.023976px;}
.ls5{letter-spacing:0.028800px;}
.lsa{letter-spacing:0.032400px;}
.ls1b{letter-spacing:0.035964px;}
.ls32{letter-spacing:0.038376px;}
.ls50{letter-spacing:0.038448px;}
.ls6{letter-spacing:0.043200px;}
.ls1a{letter-spacing:0.047952px;}
.ls12{letter-spacing:0.050400px;}
.ls1e{letter-spacing:0.057564px;}
.ls17{letter-spacing:0.057600px;}
.ls68{letter-spacing:0.057672px;}
.ls9b{letter-spacing:0.057673px;}
.ls19{letter-spacing:0.059940px;}
.ls7{letter-spacing:0.064800px;}
.ls8d{letter-spacing:0.067284px;}
.ls1d{letter-spacing:0.071928px;}
.ls85{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.075492px;}
.ls76{letter-spacing:0.075900px;}
.ls45{letter-spacing:0.076752px;}
.ls13{letter-spacing:0.079200px;}
.ls29{letter-spacing:0.083916px;}
.ls2d{letter-spacing:0.100800px;}
.ls6e{letter-spacing:0.105732px;}
.ls15{letter-spacing:0.107892px;}
.ls18{letter-spacing:0.129600px;}
.ls1c{letter-spacing:0.131868px;}
.ls4c{letter-spacing:0.134191px;}
.ls2c{letter-spacing:0.134316px;}
.ls16{letter-spacing:0.143856px;}
.ls33{letter-spacing:0.172692px;}
.ls91{letter-spacing:0.173108px;}
.ls21{letter-spacing:0.179820px;}
.ls44{letter-spacing:0.191880px;}
.ls28{letter-spacing:0.211068px;}
.ls1{letter-spacing:0.263880px;}
.ls8f{letter-spacing:0.528941px;}
.ls3c{letter-spacing:0.757736px;}
.ls3d{letter-spacing:0.824878px;}
.ls3e{letter-spacing:0.911202px;}
.ls6b{letter-spacing:0.944967px;}
.ls6d{letter-spacing:0.954053px;}
.ls79{letter-spacing:0.967731px;}
.ls6c{letter-spacing:0.972226px;}
.ls41{letter-spacing:0.997526px;}
.ls5a{letter-spacing:1.174574px;}
.ls78{letter-spacing:1.309283px;}
.ls7b{letter-spacing:1.347234px;}
.ls7c{letter-spacing:1.413646px;}
.ls77{letter-spacing:1.470572px;}
.ls7a{letter-spacing:1.480059px;}
.ls75{letter-spacing:1.518010px;}
.ls87{letter-spacing:1.644524px;}
.ls89{letter-spacing:1.682993px;}
.ls71{letter-spacing:1.744554px;}
.ls88{letter-spacing:1.779164px;}
.ls90{letter-spacing:1.846483px;}
.ls51{letter-spacing:1.912322px;}
.ls8e{letter-spacing:2.000357px;}
.ls8b{letter-spacing:2.279253px;}
.ls8a{letter-spacing:2.298487px;}
.ls57{letter-spacing:2.475341px;}
.ls80{letter-spacing:2.476679px;}
.ls58{letter-spacing:2.523877px;}
.ls86{letter-spacing:2.548532px;}
.ls53{letter-spacing:2.552999px;}
.ls56{letter-spacing:2.562706px;}
.ls55{letter-spacing:2.582121px;}
.ls70{letter-spacing:2.635004px;}
.ls52{letter-spacing:2.640364px;}
.ls54{letter-spacing:2.650071px;}
.ls59{letter-spacing:2.669486px;}
.ls72{letter-spacing:2.671349px;}
.ls73{letter-spacing:2.753125px;}
.ls6f{letter-spacing:2.771297px;}
.ls6a{letter-spacing:2.807642px;}
.ls82{letter-spacing:3.460198px;}
.ls93{letter-spacing:3.477765px;}
.ls83{letter-spacing:3.495962px;}
.ls7f{letter-spacing:3.531727px;}
.ls94{letter-spacing:3.838050px;}
.ls98{letter-spacing:3.838099px;}
.ls67{letter-spacing:6.991920px;}
.ls60{letter-spacing:7.098741px;}
.ls61{letter-spacing:9.060363px;}
.ls92{letter-spacing:9.746338px;}
.ls97{letter-spacing:9.891356px;}
.ls65{letter-spacing:11.614356px;}
.ls5f{letter-spacing:11.643489px;}
.ls5b{letter-spacing:11.692044px;}
.ls66{letter-spacing:13.508001px;}
.ls5d{letter-spacing:13.546845px;}
.ls62{letter-spacing:13.575978px;}
.ls5e{letter-spacing:13.634244px;}
.ls63{letter-spacing:13.653666px;}
.ls5c{letter-spacing:13.721643px;}
.lsd{letter-spacing:70.189200px;}
.ls26{letter-spacing:75.056868px;}
.ls38{letter-spacing:103.141620px;}
.ls3f{letter-spacing:151.691154px;}
.ls69{letter-spacing:182.805660px;}
.ls81{letter-spacing:183.533549px;}
.ls7d{letter-spacing:184.324316px;}
.ls74{letter-spacing:184.400216px;}
.ls64{letter-spacing:562.723317px;}
.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;}
}
.wsa9{word-spacing:-208.119116px;}
.ws99{word-spacing:-205.521210px;}
.wsaf{word-spacing:-183.641211px;}
.wsb5{word-spacing:-183.565311px;}
.wsba{word-spacing:-181.763215px;}
.wsa3{word-spacing:-181.397296px;}
.ws4f{word-spacing:-175.670154px;}
.ws47{word-spacing:-145.171620px;}
.ws6{word-spacing:-97.189200px;}
.ws8b{word-spacing:-35.969544px;}
.ws8c{word-spacing:-33.337863px;}
.ws23{word-spacing:-29.910060px;}
.ws50{word-spacing:-23.585744px;}
.ws15{word-spacing:-18.079200px;}
.ws93{word-spacing:-6.972498px;}
.ws94{word-spacing:-6.953076px;}
.ws91{word-spacing:-6.865677px;}
.ws96{word-spacing:-6.826833px;}
.ws92{word-spacing:-6.535503px;}
.wsd4{word-spacing:-4.762147px;}
.ws95{word-spacing:-4.758390px;}
.wsd3{word-spacing:-4.617195px;}
.ws90{word-spacing:-4.603014px;}
.wsd1{word-spacing:-3.532361px;}
.wsb9{word-spacing:-1.761393px;}
.wsbc{word-spacing:-1.725628px;}
.wsbb{word-spacing:-1.689864px;}
.wsa0{word-spacing:-1.399278px;}
.wsc2{word-spacing:-1.394480px;}
.ws87{word-spacing:-1.378425px;}
.ws82{word-spacing:-1.359011px;}
.ws80{word-spacing:-1.349304px;}
.wsa5{word-spacing:-1.344761px;}
.ws86{word-spacing:-1.291060px;}
.wsa4{word-spacing:-1.262985px;}
.ws81{word-spacing:-1.261939px;}
.wsa1{word-spacing:-1.226640px;}
.ws83{word-spacing:-1.223110px;}
.ws85{word-spacing:-1.174574px;}
.wsca{word-spacing:-1.144435px;}
.wscd{word-spacing:-1.134818px;}
.ws84{word-spacing:-1.126038px;}
.wscc{word-spacing:-1.125201px;}
.wscb{word-spacing:-0.961710px;}
.wsc3{word-spacing:-0.846305px;}
.wsac{word-spacing:-0.759005px;}
.ws20{word-spacing:-0.755580px;}
.wsb0{word-spacing:-0.721055px;}
.wsb4{word-spacing:-0.711567px;}
.wsb8{word-spacing:-0.706345px;}
.wsc7{word-spacing:-0.692431px;}
.ws2d{word-spacing:-0.673812px;}
.wsb3{word-spacing:-0.664129px;}
.wsb2{word-spacing:-0.654642px;}
.wsc5{word-spacing:-0.625112px;}
.wsb1{word-spacing:-0.588229px;}
.wsa{word-spacing:-0.555600px;}
.wsad{word-spacing:-0.550278px;}
.ws30{word-spacing:-0.538860px;}
.wsc8{word-spacing:-0.528941px;}
.wsc4{word-spacing:-0.490472px;}
.ws1e{word-spacing:-0.456072px;}
.ws32{word-spacing:-0.451992px;}
.ws7f{word-spacing:-0.446532px;}
.ws21{word-spacing:-0.407664px;}
.ws22{word-spacing:-0.394980px;}
.ws13{word-spacing:-0.378600px;}
.ws0{word-spacing:-0.338400px;}
.wsa2{word-spacing:-0.336190px;}
.wsc1{word-spacing:-0.331200px;}
.ws9f{word-spacing:-0.326808px;}
.ws67{word-spacing:-0.316800px;}
.ws69{word-spacing:-0.303600px;}
.ws6b{word-spacing:-0.300600px;}
.ws42{word-spacing:-0.300384px;}
.ws14{word-spacing:-0.280200px;}
.ws43{word-spacing:-0.268632px;}
.ws40{word-spacing:-0.263736px;}
.ws2f{word-spacing:-0.263460px;}
.ws58{word-spacing:-0.260400px;}
.ws64{word-spacing:-0.253344px;}
.ws3b{word-spacing:-0.244800px;}
.ws59{word-spacing:-0.241800px;}
.wsbf{word-spacing:-0.230400px;}
.ws19{word-spacing:-0.227772px;}
.ws8{word-spacing:-0.226800px;}
.ws4b{word-spacing:-0.218556px;}
.wsae{word-spacing:-0.208726px;}
.ws3c{word-spacing:-0.206220px;}
.ws18{word-spacing:-0.203796px;}
.ws1f{word-spacing:-0.202704px;}
.ws6d{word-spacing:-0.201744px;}
.ws17{word-spacing:-0.191808px;}
.ws37{word-spacing:-0.191352px;}
.ws46{word-spacing:-0.184932px;}
.ws2{word-spacing:-0.184716px;}
.ws70{word-spacing:-0.172692px;}
.ws35{word-spacing:-0.167832px;}
.ws2e{word-spacing:-0.166464px;}
.ws12{word-spacing:-0.162000px;}
.ws4d{word-spacing:-0.158400px;}
.ws28{word-spacing:-0.155844px;}
.ws27{word-spacing:-0.153504px;}
.ws5c{word-spacing:-0.151308px;}
.ws26{word-spacing:-0.149184px;}
.ws5f{word-spacing:-0.144000px;}
.ws68{word-spacing:-0.134496px;}
.ws29{word-spacing:-0.131868px;}
.ws48{word-spacing:-0.129000px;}
.ws16{word-spacing:-0.119880px;}
.ws5d{word-spacing:-0.117684px;}
.ws34{word-spacing:-0.107892px;}
.ws3f{word-spacing:-0.100800px;}
.ws31{word-spacing:-0.099288px;}
.ws41{word-spacing:-0.095904px;}
.ws66{word-spacing:-0.084060px;}
.ws6c{word-spacing:-0.072000px;}
.ws1d{word-spacing:-0.071400px;}
.ws6a{word-spacing:-0.070800px;}
.ws7d{word-spacing:-0.067284px;}
.ws4a{word-spacing:-0.067248px;}
.ws36{word-spacing:-0.059940px;}
.ws1b{word-spacing:-0.050400px;}
.ws2c{word-spacing:-0.047952px;}
.wsc0{word-spacing:-0.043200px;}
.ws24{word-spacing:-0.036372px;}
.ws61{word-spacing:-0.029688px;}
.ws3e{word-spacing:-0.028800px;}
.wse{word-spacing:-0.021600px;}
.ws78{word-spacing:-0.020645px;}
.wsa6{word-spacing:-0.019224px;}
.ws74{word-spacing:-0.014400px;}
.wsf{word-spacing:-0.010800px;}
.wsc{word-spacing:0.000000px;}
.ws1{word-spacing:0.008388px;}
.ws10{word-spacing:0.010800px;}
.ws1a{word-spacing:0.014400px;}
.ws65{word-spacing:0.016812px;}
.wscf{word-spacing:0.019224px;}
.ws62{word-spacing:0.022800px;}
.ws49{word-spacing:0.026256px;}
.wsb7{word-spacing:0.028800px;}
.wsd5{word-spacing:0.028837px;}
.wsb{word-spacing:0.043200px;}
.ws97{word-spacing:0.048555px;}
.ws7e{word-spacing:0.050436px;}
.ws5e{word-spacing:0.057600px;}
.wsce{word-spacing:0.067284px;}
.ws4c{word-spacing:0.072000px;}
.ws4{word-spacing:0.083232px;}
.ws4e{word-spacing:0.086400px;}
.ws9e{word-spacing:0.100872px;}
.ws76{word-spacing:0.103224px;}
.ws7a{word-spacing:0.113546px;}
.ws88{word-spacing:0.116487px;}
.ws73{word-spacing:0.117684px;}
.ws5a{word-spacing:0.118800px;}
.ws1c{word-spacing:0.121800px;}
.wsd{word-spacing:0.129600px;}
.wsa7{word-spacing:0.133776px;}
.ws72{word-spacing:0.136200px;}
.ws77{word-spacing:0.144514px;}
.ws11{word-spacing:0.151200px;}
.ws3d{word-spacing:0.151308px;}
.ws7c{word-spacing:0.175481px;}
.ws44{word-spacing:0.184932px;}
.ws25{word-spacing:0.192288px;}
.ws3{word-spacing:0.194400px;}
.ws45{word-spacing:0.201744px;}
.ws89{word-spacing:0.218544px;}
.ws7{word-spacing:0.226200px;}
.wsbd{word-spacing:0.229152px;}
.ws33{word-spacing:0.230400px;}
.ws75{word-spacing:0.247738px;}
.wsbe{word-spacing:0.252180px;}
.ws71{word-spacing:0.268992px;}
.wsab{word-spacing:0.307992px;}
.ws7b{word-spacing:0.309672px;}
.ws60{word-spacing:0.319428px;}
.ws79{word-spacing:0.330317px;}
.ws3a{word-spacing:0.373800px;}
.ws2b{word-spacing:0.374400px;}
.ws2a{word-spacing:0.417600px;}
.wsc6{word-spacing:0.625112px;}
.wsc9{word-spacing:0.980944px;}
.wsd0{word-spacing:7.878168px;}
.wsd2{word-spacing:8.238878px;}
.ws63{word-spacing:27.057600px;}
.ws5b{word-spacing:27.201000px;}
.ws5{word-spacing:43.059000px;}
.ws9{word-spacing:43.276200px;}
.ws9b{word-spacing:48.764334px;}
.ws9c{word-spacing:48.801368px;}
.ws9d{word-spacing:48.810134px;}
.ws9a{word-spacing:48.822565px;}
.wsaa{word-spacing:49.654623px;}
.ws6f{word-spacing:61.381392px;}
.ws38{word-spacing:61.414416px;}
.ws39{word-spacing:61.549512px;}
.ws6e{word-spacing:61.684008px;}
.wsb6{word-spacing:105.881320px;}
.ws98{word-spacing:106.309359px;}
.wsa8{word-spacing:108.785185px;}
.ws51{word-spacing:113.526594px;}
.ws53{word-spacing:125.679594px;}
.ws57{word-spacing:125.852045px;}
.ws56{word-spacing:134.157494px;}
.ws8a{word-spacing:188.064057px;}
.ws52{word-spacing:374.610367px;}
.ws54{word-spacing:378.253694px;}
.ws8f{word-spacing:417.940080px;}
.ws8e{word-spacing:449.433120px;}
.ws8d{word-spacing:480.042771px;}
.ws55{word-spacing:621.401994px;}
._8b{margin-left:-185.310704px;}
._8a{margin-left:-183.792399px;}
._77{margin-left:-182.096477px;}
._76{margin-left:-180.379569px;}
._78{margin-left:-179.234724px;}
._f{margin-left:-152.113650px;}
._13{margin-left:-151.049154px;}
._10{margin-left:-149.705322px;}
._e{margin-left:-104.236560px;}
._d{margin-left:-102.957420px;}
._11{margin-left:-85.183458px;}
._7{margin-left:-74.733696px;}
._3{margin-left:-70.188600px;}
._c{margin-left:-61.113480px;}
._87{margin-left:-48.826961px;}
._6f{margin-left:-47.782144px;}
._4{margin-left:-42.859200px;}
._a3{margin-left:-11.542499px;}
._57{margin-left:-7.064246px;}
._4b{margin-left:-5.322012px;}
._4d{margin-left:-3.785976px;}
._12{margin-left:-2.198430px;}
._22{margin-left:-1.044644px;}
._6{width:1.022016px;}
._43{width:2.147846px;}
._52{width:3.971560px;}
._51{width:5.186259px;}
._4a{width:7.147491px;}
._50{width:8.828049px;}
._65{width:10.093179px;}
._61{width:11.546109px;}
._6a{width:13.800864px;}
._8e{width:17.747463px;}
._2{width:25.979400px;}
._b{width:30.827496px;}
._19{width:37.230600px;}
._a{width:63.129600px;}
._9{width:66.053976px;}
._1{width:70.189200px;}
._7e{width:73.763581px;}
._5{width:74.997060px;}
._2f{width:90.820334px;}
._6d{width:97.595606px;}
._85{width:99.411056px;}
._74{width:101.182679px;}
._8{width:103.243272px;}
._2e{width:105.480173px;}
._1c{width:108.645121px;}
._0{width:111.556800px;}
._4f{width:121.517041px;}
._4e{width:123.922611px;}
._80{width:131.182000px;}
._7f{width:132.200845px;}
._6c{width:133.958606px;}
._84{width:135.055856px;}
._37{width:144.112421px;}
._36{width:147.614190px;}
._73{width:149.059079px;}
._71{width:150.103746px;}
._72{width:151.538923px;}
._89{width:152.833990px;}
._3c{width:163.435675px;}
._40{width:173.155718px;}
._24{width:176.214758px;}
._7a{width:179.489254px;}
._70{width:180.506720px;}
._75{width:181.525977px;}
._41{width:182.763187px;}
._8c{width:183.769487px;}
._25{width:185.830345px;}
._99{width:187.214252px;}
._3d{width:199.723474px;}
._38{width:203.481043px;}
._79{width:205.690349px;}
._35{width:208.438075px;}
._5e{width:210.328824px;}
._42{width:214.469658px;}
._26{width:218.256600px;}
._5f{width:222.178294px;}
._3f{width:224.344077px;}
._27{width:227.972128px;}
._33{width:228.995405px;}
._7c{width:230.479469px;}
._20{width:233.077469px;}
._49{width:235.637678px;}
._2c{width:237.692955px;}
._1a{width:241.525013px;}
._30{width:249.788745px;}
._53{width:252.183189px;}
._1d{width:254.232710px;}
._2d{width:256.542857px;}
._1b{width:258.847169px;}
._31{width:260.319438px;}
._1e{width:263.757908px;}
._98{width:265.999648px;}
._34{width:270.296916px;}
._48{width:271.772926px;}
._21{width:274.409035px;}
._44{width:275.434805px;}
._5a{width:278.433888px;}
._28{width:280.212379px;}
._39{width:281.329606px;}
._23{width:283.460810px;}
._45{width:285.954106px;}
._3a{width:288.621512px;}
._29{width:290.052082px;}
._3e{width:291.244759px;}
._9a{width:293.413858px;}
._3b{width:295.121341px;}
._56{width:303.633888px;}
._88{width:307.850626px;}
._4c{width:311.326053px;}
._81{width:314.230407px;}
._32{width:316.747136px;}
._90{width:318.523406px;}
._1f{width:321.698278px;}
._5b{width:328.744536px;}
._64{width:334.659996px;}
._5c{width:338.960420px;}
._66{width:346.536999px;}
._7b{width:362.729452px;}
._8d{width:367.515436px;}
._67{width:379.956683px;}
._63{width:382.098792px;}
._58{width:384.337008px;}
._a2{width:385.419380px;}
._62{width:386.812853px;}
._7d{width:390.006246px;}
._8f{width:395.643297px;}
._16{width:397.889796px;}
._60{width:409.253078px;}
._6e{width:436.717745px;}
._59{width:441.002984px;}
._86{width:443.719140px;}
._46{width:453.959427px;}
._2a{width:459.586138px;}
._47{width:461.857671px;}
._2b{width:466.873992px;}
._5d{width:473.253803px;}
._9e{width:475.920642px;}
._9c{width:501.857626px;}
._9b{width:507.618826px;}
._9f{width:513.379239px;}
._6b{width:523.182868px;}
._a1{width:527.074647px;}
._83{width:530.040850px;}
._a0{width:533.386966px;}
._9d{width:538.576426px;}
._55{width:549.000957px;}
._68{width:556.441479px;}
._69{width:564.809952px;}
._95{width:577.979980px;}
._14{width:646.378445px;}
._97{width:654.487937px;}
._96{width:667.841622px;}
._93{width:675.772693px;}
._18{width:696.322073px;}
._92{width:712.726834px;}
._94{width:817.991404px;}
._91{width:860.573078px;}
._15{width:895.137245px;}
._17{width:1143.443796px;}
._54{width:1419.639275px;}
._82{width:1721.958320px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(192,192,192);}
.fc2{color:rgb(51,154,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,51,0);}
.fs25{font-size:54.595299px;}
.fs28{font-size:54.595998px;}
.fs26{font-size:54.596115px;}
.fs29{font-size:54.597630px;}
.fs17{font-size:59.785399px;}
.fs8{font-size:71.104488px;}
.fs9{font-size:71.107777px;}
.fsa{font-size:71.111066px;}
.fsb{font-size:71.114355px;}
.fsc{font-size:71.117644px;}
.fsd{font-size:71.120933px;}
.fse{font-size:71.124222px;}
.fsf{font-size:71.127512px;}
.fs10{font-size:71.130801px;}
.fs11{font-size:71.157124px;}
.fs12{font-size:71.160415px;}
.fs13{font-size:71.163706px;}
.fs14{font-size:71.166998px;}
.fs15{font-size:71.170289px;}
.fs16{font-size:71.173581px;}
.fs18{font-size:71.176872px;}
.fs19{font-size:71.180164px;}
.fs1e{font-size:71.717400px;}
.fs6{font-size:72.000000px;}
.fs0{font-size:83.880000px;}
.fs22{font-size:89.410800px;}
.fs20{font-size:90.862200px;}
.fs21{font-size:94.875600px;}
.fs1a{font-size:95.916000px;}
.fs1c{font-size:96.120000px;}
.fs2a{font-size:96.122461px;}
.fs23{font-size:96.171000px;}
.fs24{font-size:96.594036px;}
.fs27{font-size:96.595273px;}
.fs1d{font-size:97.072200px;}
.fs1f{font-size:97.110000px;}
.fs1b{font-size:103.224000px;}
.fs2{font-size:108.000000px;}
.fs5{font-size:119.880000px;}
.fs4{font-size:144.000000px;}
.fs7{font-size:168.120000px;}
.fs3{font-size:191.880000px;}
.fs1{font-size:263.880000px;}
.y0{bottom:0.000000px;}
.y1{bottom:35.040000px;}
.yea{bottom:91.380000px;}
.y45{bottom:103.532250px;}
.yae{bottom:104.431050px;}
.y63{bottom:114.212451px;}
.yd7{bottom:117.480000px;}
.ye9{bottom:119.370000px;}
.y1c{bottom:121.170000px;}
.y8b{bottom:121.890000px;}
.y5e{bottom:125.000626px;}
.y4{bottom:125.310900px;}
.y11c{bottom:131.321628px;}
.y62{bottom:132.050892px;}
.y7e{bottom:132.780000px;}
.yad{bottom:134.761200px;}
.y6e{bottom:139.170450px;}
.y33{bottom:143.222250px;}
.yd6{bottom:144.300000px;}
.y25{bottom:145.200000px;}
.y44{bottom:146.641200px;}
.ye8{bottom:147.360000px;}
.y9e{bottom:156.090000px;}
.y3{bottom:164.280000px;}
.yac{bottom:165.181050px;}
.y5f{bottom:170.461304px;}
.yd5{bottom:171.120000px;}
.y1b{bottom:171.572250px;}
.y91{bottom:174.721050px;}
.y8a{bottom:174.900000px;}
.ye7{bottom:175.350000px;}
.y10{bottom:177.959250px;}
.y61{bottom:178.267593px;}
.y6d{bottom:182.280150px;}
.y32{bottom:186.421200px;}
.y7d{bottom:186.958800px;}
.ybd{bottom:189.120150px;}
.y43{bottom:189.750000px;}
.yab{bottom:195.600900px;}
.yf5{bottom:196.230000px;}
.yd4{bottom:197.850000px;}
.y60{bottom:199.619607px;}
.yb9{bottom:199.920150px;}
.ye6{bottom:203.250000px;}
.y102{bottom:206.131200px;}
.y74{bottom:210.450000px;}
.ybc{bottom:210.630150px;}
.y1a{bottom:214.681200px;}
.yf{bottom:217.020150px;}
.yb8{bottom:221.430000px;}
.yf4{bottom:222.510000px;}
.y59{bottom:224.258294px;}
.y56{bottom:224.287187px;}
.yd3{bottom:224.670000px;}
.y6c{bottom:225.390000px;}
.yaa{bottom:226.020750px;}
.y31{bottom:229.530000px;}
.ye5{bottom:231.240000px;}
.ybb{bottom:232.140000px;}
.y42{bottom:234.210000px;}
.y7c{bottom:234.388950px;}
.y101{bottom:235.020000px;}
.y90{bottom:235.290600px;}
.y9d{bottom:239.614350px;}
.yb7{bottom:242.940000px;}
.yc8{bottom:243.930900px;}
.y58{bottom:245.596487px;}
.y55{bottom:245.624393px;}
.y10e{bottom:245.812279px;}
.y11a{bottom:246.884586px;}
.y84{bottom:246.899550px;}
.yf3{bottom:248.880000px;}
.yd2{bottom:251.400000px;}
.yfa{bottom:251.670150px;}
.yba{bottom:253.650000px;}
.ye{bottom:255.989250px;}
.ya9{bottom:256.440600px;}
.y19{bottom:257.790000px;}
.ye4{bottom:259.230000px;}
.y68{bottom:260.850600px;}
.y10d{bottom:263.722509px;}
.y119{bottom:264.795045px;}
.y57{bottom:266.934681px;}
.y54{bottom:266.961600px;}
.y3a{bottom:267.421200px;}
.y73{bottom:269.850000px;}
.y9c{bottom:272.013450px;}
.y30{bottom:273.990000px;}
.yc7{bottom:274.350750px;}
.yf2{bottom:275.250000px;}
.yd1{bottom:278.220000px;}
.y6b{bottom:278.400000px;}
.y7b{bottom:281.819100px;}
.y104{bottom:285.142783px;}
.y5b{bottom:285.156863px;}
.y41{bottom:285.960000px;}
.y111{bottom:286.125591px;}
.ya8{bottom:286.860450px;}
.ye3{bottom:287.130000px;}
.y89{bottom:287.220000px;}
.y23{bottom:288.209850px;}
.yd{bottom:288.389100px;}
.yf9{bottom:294.780000px;}
.y8f{bottom:295.860000px;}
.y83{bottom:297.390000px;}
.yf1{bottom:301.620000px;}
.y18{bottom:302.340150px;}
.y9b{bottom:304.322550px;}
.yc6{bottom:304.770600px;}
.yd0{bottom:305.040000px;}
.y24{bottom:308.820000px;}
.y22{bottom:309.809850px;}
.y39{bottom:310.530000px;}
.y105{bottom:313.492846px;}
.ye2{bottom:315.120000px;}
.ya7{bottom:317.280300px;}
.y112{bottom:318.705675px;}
.y5a{bottom:325.522153px;}
.y53{bottom:325.594779px;}
.yc{bottom:327.450000px;}
.yf0{bottom:327.990000px;}
.y7a{bottom:329.249250px;}
.y72{bottom:329.250000px;}
.ycf{bottom:331.770000px;}
.yc5{bottom:335.190450px;}
.y9a{bottom:336.631650px;}
.y40{bottom:337.710000px;}
.y106{bottom:341.842908px;}
.ye1{bottom:343.110000px;}
.y17{bottom:345.450000px;}
.y88{bottom:346.530000px;}
.ya6{bottom:347.700150px;}
.yf8{bottom:347.790000px;}
.y113{bottom:351.285759px;}
.yeb{bottom:353.280000px;}
.y8e{bottom:355.170000px;}
.y38{bottom:356.250000px;}
.y82{bottom:356.700000px;}
.yce{bottom:358.590000px;}
.yef{bottom:358.680000px;}
.yb{bottom:359.850000px;}
.yb4{bottom:361.290000px;}
.y2c{bottom:363.807600px;}
.y100{bottom:364.979700px;}
.yc4{bottom:365.610300px;}
.y99{bottom:369.030900px;}
.ye0{bottom:371.100000px;}
.y107{bottom:371.183734px;}
.yb6{bottom:372.000000px;}
.y2f{bottom:374.069850px;}
.y79{bottom:376.679400px;}
.ya5{bottom:378.030450px;}
.y67{bottom:381.901050px;}
.yb3{bottom:382.800000px;}
.y2{bottom:383.070000px;}
.y114{bottom:383.777191px;}
.y10f{bottom:384.504055px;}
.ycd{bottom:385.320000px;}
.y11b{bottom:385.488134px;}
.y52{bottom:386.832239px;}
.y1d{bottom:387.210000px;}
.y71{bottom:388.650000px;}
.y3f{bottom:389.460000px;}
.y5d{bottom:391.848464px;}
.y5c{bottom:391.869606px;}
.yb5{bottom:393.510000px;}
.yff{bottom:395.129250px;}
.y16{bottom:395.852250px;}
.yc3{bottom:396.030150px;}
.y2b{bottom:396.208200px;}
.ydf{bottom:399.000000px;}
.y108{bottom:399.533797px;}
.y87{bottom:399.540000px;}
.ya{bottom:400.890000px;}
.y98{bottom:401.340000px;}
.yb2{bottom:404.310000px;}
.yf7{bottom:407.100000px;}
.y51{bottom:408.167472px;}
.y8d{bottom:408.180000px;}
.y81{bottom:408.450000px;}
.ya4{bottom:408.450300px;}
.y2e{bottom:410.070000px;}
.y4e{bottom:410.978375px;}
.y4b{bottom:410.998633px;}
.ycc{bottom:412.140000px;}
.y37{bottom:414.210000px;}
.y1e{bottom:415.380000px;}
.y115{bottom:416.357275px;}
.y70{bottom:421.230000px;}
.y78{bottom:424.109700px;}
.yfe{bottom:425.190000px;}
.yc2{bottom:426.450000px;}
.yde{bottom:426.990000px;}
.y109{bottom:427.883860px;}
.y2a{bottom:428.698800px;}
.y50{bottom:429.502705px;}
.y4d{bottom:432.312622px;}
.y4a{bottom:432.331893px;}
.y97{bottom:433.650150px;}
.y48{bottom:434.871396px;}
.ya3{bottom:438.870150px;}
.y15{bottom:438.961200px;}
.ycb{bottom:442.020000px;}
.y6a{bottom:442.470600px;}
.y3e{bottom:442.471050px;}
.y2d{bottom:446.070000px;}
.y116{bottom:448.848556px;}
.y9{bottom:450.570000px;}
.y4f{bottom:450.837938px;}
.y6f{bottom:453.090000px;}
.y4c{bottom:453.646868px;}
.y49{bottom:453.665152px;}
.ydd{bottom:454.980000px;}
.yfd{bottom:455.339550px;}
.y47{bottom:456.203669px;}
.y10a{bottom:456.233923px;}
.yc1{bottom:456.869850px;}
.y86{bottom:458.850000px;}
.y36{bottom:459.930000px;}
.y80{bottom:460.200000px;}
.y29{bottom:461.099400px;}
.y8c{bottom:467.490150px;}
.ya2{bottom:469.290000px;}
.y96{bottom:471.270000px;}
.y77{bottom:471.539850px;}
.yca{bottom:471.810000px;}
.yee{bottom:479.280300px;}
.y117{bottom:481.428640px;}
.y14{bottom:482.070000px;}
.yfc{bottom:484.320600px;}
.y10b{bottom:485.664749px;}
.ydc{bottom:486.120000px;}
.yc0{bottom:486.388800px;}
.y8{bottom:489.630900px;}
.y28{bottom:493.500000px;}
.ya1{bottom:499.709250px;}
.y66{bottom:503.040000px;}
.y3d{bottom:503.040600px;}
.y85{bottom:510.600000px;}
.yfb{bottom:512.400000px;}
.y7f{bottom:513.211500px;}
.y118{bottom:514.008724px;}
.y10c{bottom:514.014812px;}
.ybf{bottom:515.009400px;}
.ydb{bottom:517.260000px;}
.y35{bottom:517.890000px;}
.y76{bottom:518.970000px;}
.yed{bottom:522.390150px;}
.yb1{bottom:522.660000px;}
.y13{bottom:526.530150px;}
.y7{bottom:528.600000px;}
.y20{bottom:530.309850px;}
.y27{bottom:534.180000px;}
.ya0{bottom:535.080000px;}
.y46{bottom:539.025664px;}
.ybe{bottom:543.720000px;}
.yb0{bottom:544.170000px;}
.y95{bottom:549.210000px;}
.yda{bottom:549.840000px;}
.y21{bottom:550.920000px;}
.y1f{bottom:551.820000px;}
.y110{bottom:559.282583px;}
.y103{bottom:559.286292px;}
.yf6{bottom:563.608950px;}
.y69{bottom:563.609550px;}
.y34{bottom:563.610000px;}
.yec{bottom:565.590000px;}
.yaf{bottom:565.680000px;}
.y75{bottom:567.749250px;}
.y65{bottom:569.329745px;}
.y64{bottom:569.342680px;}
.y6{bottom:569.640000px;}
.y26{bottom:572.970000px;}
.yd8{bottom:575.491200px;}
.y9f{bottom:577.920000px;}
.yc9{bottom:581.340000px;}
.yd9{bottom:584.850900px;}
.y12{bottom:635.430000px;}
.y3c{bottom:642.630000px;}
.y94{bottom:644.790000px;}
.y5{bottom:664.320000px;}
.y92{bottom:666.390000px;}
.y11{bottom:693.030000px;}
.y93{bottom:694.020000px;}
.y3b{bottom:697.350000px;}
.h28{height:39.080424px;}
.h2d{height:39.080924px;}
.h29{height:39.081008px;}
.h2e{height:39.082093px;}
.h26{height:39.240371px;}
.h2b{height:39.240873px;}
.h27{height:39.240958px;}
.h2c{height:39.242047px;}
.h18{height:41.540343px;}
.h9{height:49.405121px;}
.ha{height:49.407406px;}
.hb{height:49.409691px;}
.hc{height:49.411976px;}
.hd{height:49.414261px;}
.he{height:49.416547px;}
.hf{height:49.418832px;}
.h10{height:49.421118px;}
.h11{height:49.423403px;}
.h12{height:49.441693px;}
.h13{height:49.443980px;}
.h14{height:49.446267px;}
.h15{height:49.448553px;}
.h16{height:49.450840px;}
.h17{height:49.453128px;}
.h19{height:49.455415px;}
.h1a{height:49.457702px;}
.h1f{height:49.830986px;}
.h7{height:50.027344px;}
.h1{height:58.281855px;}
.h23{height:62.124789px;}
.h21{height:63.133257px;}
.h24{height:65.835812px;}
.h22{height:65.921865px;}
.h25{height:66.125410px;}
.h2a{height:66.126256px;}
.h1b{height:66.644760px;}
.h1d{height:66.786504px;}
.h2f{height:66.788214px;}
.h1e{height:67.448116px;}
.h20{height:67.474380px;}
.h1c{height:71.722535px;}
.h3{height:75.041016px;}
.h6{height:83.295527px;}
.h5{height:100.054688px;}
.h8{height:116.813848px;}
.h4{height:133.322871px;}
.h2{height:183.350215px;}
.h0{height:805.500000px;}
.w0{width:1167.000000px;}
.x0{left:0.000000px;}
.x5d{left:54.225600px;}
.x41{left:57.464850px;}
.x40{left:71.055750px;}
.x5c{left:76.095750px;}
.x42{left:78.614100px;}
.xc{left:92.115750px;}
.xf{left:93.735750px;}
.x1{left:97.155750px;}
.x5e{left:98.235750px;}
.x65{left:99.945150px;}
.x64{left:105.435900px;}
.x2b{left:113.659779px;}
.x61{left:127.844250px;}
.x69{left:132.435600px;}
.x62{left:133.785900px;}
.x12{left:137.655750px;}
.x6b{left:142.246350px;}
.x13{left:151.155750px;}
.x14{left:164.655750px;}
.x35{left:180.315750px;}
.x3{left:184.905750px;}
.x82{left:188.512313px;}
.x17{left:196.401240px;}
.x78{left:202.733608px;}
.x4{left:205.155750px;}
.x66{left:206.775750px;}
.x18{left:208.640312px;}
.x77{left:211.283395px;}
.x43{left:215.235750px;}
.x15{left:218.655750px;}
.x76{left:219.833182px;}
.x58{left:222.435750px;}
.x57{left:226.755750px;}
.x5{left:232.155750px;}
.xb{left:235.125750px;}
.x44{left:240.435900px;}
.x75{left:241.703789px;}
.xe{left:243.855900px;}
.x6a{left:248.445750px;}
.xa{left:255.285750px;}
.xd{left:256.995900px;}
.x6c{left:281.747250px;}
.x79{left:288.505238px;}
.x24{left:301.602122px;}
.x22{left:315.746301px;}
.x7a{left:318.926232px;}
.x23{left:324.544968px;}
.x25{left:331.831060px;}
.x31{left:344.492550px;}
.x32{left:347.548876px;}
.x19{left:370.512791px;}
.x81{left:374.637478px;}
.x7b{left:378.688490px;}
.x5b{left:382.725750px;}
.x5a{left:384.165750px;}
.x1a{left:387.340859px;}
.x59{left:388.485750px;}
.x45{left:391.366050px;}
.x1b{left:393.910621px;}
.x9{left:398.115750px;}
.x10{left:399.735750px;}
.x46{left:402.166500px;}
.x2{left:409.095750px;}
.x67{left:429.615750px;}
.x7c{left:438.360746px;}
.x6d{left:457.247250px;}
.x7d{left:468.871893px;}
.x16{left:473.509600px;}
.x92{left:475.724816px;}
.x34{left:478.687997px;}
.x2d{left:494.501443px;}
.x7e{left:498.123004px;}
.x3a{left:505.665750px;}
.x30{left:513.505257px;}
.x3b{left:514.845750px;}
.x7f{left:528.634001px;}
.x3d{left:531.226350px;}
.x2a{left:538.105940px;}
.x3c{left:544.006200px;}
.x47{left:546.255750px;}
.x56{left:550.215750px;}
.x2f{left:552.882546px;}
.x80{left:559.055145px;}
.x3f{left:560.294700px;}
.x3e{left:562.095150px;}
.x48{left:563.895750px;}
.x68{left:577.935600px;}
.x37{left:588.645750px;}
.x36{left:591.795750px;}
.x74{left:596.655300px;}
.x6e{left:598.818450px;}
.x6{left:603.405750px;}
.x38{left:618.345750px;}
.x6f{left:628.787850px;}
.x91{left:632.243502px;}
.x7{left:643.905750px;}
.x86{left:646.465341px;}
.x39{left:651.915750px;}
.x85{left:654.925211px;}
.x8{left:657.405750px;}
.x84{left:663.475235px;}
.x1c{left:677.060314px;}
.x83{left:685.436454px;}
.x1e{left:688.488621px;}
.x11{left:691.154850px;}
.x49{left:697.275750px;}
.x87{left:701.727358px;}
.x55{left:706.185900px;}
.x1d{left:707.293799px;}
.x54{left:711.945750px;}
.x4a{left:718.066200px;}
.x4b{left:725.626500px;}
.x88{left:732.149196px;}
.x33{left:734.931915px;}
.x70{left:754.517100px;}
.x71{left:760.186200px;}
.x89{left:762.661190px;}
.x27{left:777.944972px;}
.x63{left:792.405750px;}
.x29{left:805.430534px;}
.x26{left:812.310584px;}
.x2e{left:817.503923px;}
.x28{left:819.598410px;}
.x8a{left:822.335102px;}
.x1f{left:849.960597px;}
.x8b{left:852.846945px;}
.x51{left:859.005750px;}
.x4c{left:869.715750px;}
.x21{left:871.015768px;}
.x52{left:875.476500px;}
.x20{left:877.943731px;}
.x4d{left:879.795450px;}
.x8c{left:883.358788px;}
.x4e{left:887.355750px;}
.x72{left:903.286350px;}
.x8d{left:912.610862px;}
.x73{left:933.885750px;}
.x5f{left:938.025750px;}
.x8e{left:943.032700px;}
.x60{left:948.375300px;}
.x8f{left:973.544543px;}
.x90{left:1003.966382px;}
.x2c{left:1031.317012px;}
.x4f{left:1035.495750px;}
.x53{left:1037.295750px;}
.x50{left:1049.086650px;}
@media print{
.v1{vertical-align:-12.483200pt;}
.v0{vertical-align:0.000000pt;}
.ls9a{letter-spacing:-1.067655pt;}
.ls96{letter-spacing:-1.067641pt;}
.ls40{letter-spacing:-0.349561pt;}
.ls46{letter-spacing:-0.254048pt;}
.ls43{letter-spacing:-0.209216pt;}
.ls30{letter-spacing:-0.194272pt;}
.ls3b{letter-spacing:-0.179328pt;}
.ls2f{letter-spacing:-0.164384pt;}
.ls84{letter-spacing:-0.149440pt;}
.ls2e{letter-spacing:-0.134496pt;}
.ls2b{letter-spacing:-0.119552pt;}
.ls4a{letter-spacing:-0.119281pt;}
.ls31{letter-spacing:-0.115200pt;}
.ls99{letter-spacing:-0.111622pt;}
.ls95{letter-spacing:-0.111619pt;}
.ls34{letter-spacing:-0.104608pt;}
.lsb{letter-spacing:-0.102400pt;}
.ls2a{letter-spacing:-0.089664pt;}
.ls42{letter-spacing:-0.089600pt;}
.ls47{letter-spacing:-0.076800pt;}
.ls36{letter-spacing:-0.074720pt;}
.ls25{letter-spacing:-0.074592pt;}
.lse{letter-spacing:-0.064000pt;}
.ls39{letter-spacing:-0.059776pt;}
.ls4f{letter-spacing:-0.055053pt;}
.ls23{letter-spacing:-0.053280pt;}
.ls1f{letter-spacing:-0.051200pt;}
.ls24{letter-spacing:-0.042624pt;}
.lsf{letter-spacing:-0.038400pt;}
.ls4d{letter-spacing:-0.036702pt;}
.ls27{letter-spacing:-0.031968pt;}
.ls35{letter-spacing:-0.029888pt;}
.ls4b{letter-spacing:-0.027526pt;}
.ls3a{letter-spacing:-0.025600pt;}
.ls20{letter-spacing:-0.021312pt;}
.ls2{letter-spacing:-0.019200pt;}
.ls4e{letter-spacing:-0.018351pt;}
.ls7e{letter-spacing:-0.017088pt;}
.ls37{letter-spacing:-0.014944pt;}
.ls14{letter-spacing:-0.012800pt;}
.ls22{letter-spacing:-0.010656pt;}
.ls3{letter-spacing:-0.009600pt;}
.lsc{letter-spacing:0.000000pt;}
.ls49{letter-spacing:0.009175pt;}
.ls9{letter-spacing:0.009600pt;}
.ls11{letter-spacing:0.010656pt;}
.ls48{letter-spacing:0.012800pt;}
.ls4{letter-spacing:0.017056pt;}
.ls8c{letter-spacing:0.017088pt;}
.ls8{letter-spacing:0.019200pt;}
.ls10{letter-spacing:0.021312pt;}
.ls5{letter-spacing:0.025600pt;}
.lsa{letter-spacing:0.028800pt;}
.ls1b{letter-spacing:0.031968pt;}
.ls32{letter-spacing:0.034112pt;}
.ls50{letter-spacing:0.034176pt;}
.ls6{letter-spacing:0.038400pt;}
.ls1a{letter-spacing:0.042624pt;}
.ls12{letter-spacing:0.044800pt;}
.ls1e{letter-spacing:0.051168pt;}
.ls17{letter-spacing:0.051200pt;}
.ls68{letter-spacing:0.051264pt;}
.ls9b{letter-spacing:0.051265pt;}
.ls19{letter-spacing:0.053280pt;}
.ls7{letter-spacing:0.057600pt;}
.ls8d{letter-spacing:0.059808pt;}
.ls1d{letter-spacing:0.063936pt;}
.ls85{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.067104pt;}
.ls76{letter-spacing:0.067467pt;}
.ls45{letter-spacing:0.068224pt;}
.ls13{letter-spacing:0.070400pt;}
.ls29{letter-spacing:0.074592pt;}
.ls2d{letter-spacing:0.089600pt;}
.ls6e{letter-spacing:0.093984pt;}
.ls15{letter-spacing:0.095904pt;}
.ls18{letter-spacing:0.115200pt;}
.ls1c{letter-spacing:0.117216pt;}
.ls4c{letter-spacing:0.119281pt;}
.ls2c{letter-spacing:0.119392pt;}
.ls16{letter-spacing:0.127872pt;}
.ls33{letter-spacing:0.153504pt;}
.ls91{letter-spacing:0.153874pt;}
.ls21{letter-spacing:0.159840pt;}
.ls44{letter-spacing:0.170560pt;}
.ls28{letter-spacing:0.187616pt;}
.ls1{letter-spacing:0.234560pt;}
.ls8f{letter-spacing:0.470169pt;}
.ls3c{letter-spacing:0.673543pt;}
.ls3d{letter-spacing:0.733225pt;}
.ls3e{letter-spacing:0.809957pt;}
.ls6b{letter-spacing:0.839971pt;}
.ls6d{letter-spacing:0.848047pt;}
.ls79{letter-spacing:0.860205pt;}
.ls6c{letter-spacing:0.864200pt;}
.ls41{letter-spacing:0.886690pt;}
.ls5a{letter-spacing:1.044065pt;}
.ls78{letter-spacing:1.163807pt;}
.ls7b{letter-spacing:1.197541pt;}
.ls7c{letter-spacing:1.256575pt;}
.ls77{letter-spacing:1.307175pt;}
.ls7a{letter-spacing:1.315608pt;}
.ls75{letter-spacing:1.349342pt;}
.ls87{letter-spacing:1.461799pt;}
.ls89{letter-spacing:1.495993pt;}
.ls71{letter-spacing:1.550715pt;}
.ls88{letter-spacing:1.581479pt;}
.ls90{letter-spacing:1.641318pt;}
.ls51{letter-spacing:1.699842pt;}
.ls8e{letter-spacing:1.778095pt;}
.ls8b{letter-spacing:2.026002pt;}
.ls8a{letter-spacing:2.043099pt;}
.ls57{letter-spacing:2.200303pt;}
.ls80{letter-spacing:2.201493pt;}
.ls58{letter-spacing:2.243446pt;}
.ls86{letter-spacing:2.265361pt;}
.ls53{letter-spacing:2.269332pt;}
.ls56{letter-spacing:2.277961pt;}
.ls55{letter-spacing:2.295218pt;}
.ls70{letter-spacing:2.342226pt;}
.ls52{letter-spacing:2.346990pt;}
.ls54{letter-spacing:2.355619pt;}
.ls59{letter-spacing:2.372876pt;}
.ls72{letter-spacing:2.374532pt;}
.ls73{letter-spacing:2.447222pt;}
.ls6f{letter-spacing:2.463375pt;}
.ls6a{letter-spacing:2.495682pt;}
.ls82{letter-spacing:3.075732pt;}
.ls93{letter-spacing:3.091347pt;}
.ls83{letter-spacing:3.107522pt;}
.ls7f{letter-spacing:3.139313pt;}
.ls94{letter-spacing:3.411600pt;}
.ls98{letter-spacing:3.411643pt;}
.ls67{letter-spacing:6.215040pt;}
.ls60{letter-spacing:6.309992pt;}
.ls61{letter-spacing:8.053656pt;}
.ls92{letter-spacing:8.663412pt;}
.ls97{letter-spacing:8.792316pt;}
.ls65{letter-spacing:10.323872pt;}
.ls5f{letter-spacing:10.349768pt;}
.ls5b{letter-spacing:10.392928pt;}
.ls66{letter-spacing:12.007112pt;}
.ls5d{letter-spacing:12.041640pt;}
.ls62{letter-spacing:12.067536pt;}
.ls5e{letter-spacing:12.119328pt;}
.ls63{letter-spacing:12.136592pt;}
.ls5c{letter-spacing:12.197016pt;}
.lsd{letter-spacing:62.390400pt;}
.ls26{letter-spacing:66.717216pt;}
.ls38{letter-spacing:91.681440pt;}
.ls3f{letter-spacing:134.836581pt;}
.ls69{letter-spacing:162.493920pt;}
.ls81{letter-spacing:163.140933pt;}
.ls7d{letter-spacing:163.843836pt;}
.ls74{letter-spacing:163.911303pt;}
.ls64{letter-spacing:500.198504pt;}
.wsa9{word-spacing:-184.994770pt;}
.ws99{word-spacing:-182.685520pt;}
.wsaf{word-spacing:-163.236632pt;}
.wsb5{word-spacing:-163.169165pt;}
.wsba{word-spacing:-161.567303pt;}
.wsa3{word-spacing:-161.242041pt;}
.ws4f{word-spacing:-156.151248pt;}
.ws47{word-spacing:-129.041440pt;}
.ws6{word-spacing:-86.390400pt;}
.ws8b{word-spacing:-31.972928pt;}
.ws8c{word-spacing:-29.633656pt;}
.ws23{word-spacing:-26.586720pt;}
.ws50{word-spacing:-20.965106pt;}
.ws15{word-spacing:-16.070400pt;}
.ws93{word-spacing:-6.197776pt;}
.ws94{word-spacing:-6.180512pt;}
.ws91{word-spacing:-6.102824pt;}
.ws96{word-spacing:-6.068296pt;}
.ws92{word-spacing:-5.809336pt;}
.wsd4{word-spacing:-4.233020pt;}
.ws95{word-spacing:-4.229680pt;}
.wsd3{word-spacing:-4.104173pt;}
.ws90{word-spacing:-4.091568pt;}
.wsd1{word-spacing:-3.139876pt;}
.wsb9{word-spacing:-1.565682pt;}
.wsbc{word-spacing:-1.533892pt;}
.wsbb{word-spacing:-1.502101pt;}
.wsa0{word-spacing:-1.243803pt;}
.wsc2{word-spacing:-1.239537pt;}
.ws87{word-spacing:-1.225267pt;}
.ws82{word-spacing:-1.208010pt;}
.ws80{word-spacing:-1.199381pt;}
.wsa5{word-spacing:-1.195343pt;}
.ws86{word-spacing:-1.147609pt;}
.wsa4{word-spacing:-1.122653pt;}
.ws81{word-spacing:-1.121723pt;}
.wsa1{word-spacing:-1.090346pt;}
.ws83{word-spacing:-1.087209pt;}
.ws85{word-spacing:-1.044065pt;}
.wsca{word-spacing:-1.017275pt;}
.wscd{word-spacing:-1.008727pt;}
.ws84{word-spacing:-1.000922pt;}
.wscc{word-spacing:-1.000178pt;}
.wscb{word-spacing:-0.854853pt;}
.wsc3{word-spacing:-0.752271pt;}
.wsac{word-spacing:-0.674671pt;}
.ws20{word-spacing:-0.671627pt;}
.wsb0{word-spacing:-0.640937pt;}
.wsb4{word-spacing:-0.632504pt;}
.wsb8{word-spacing:-0.627863pt;}
.wsc7{word-spacing:-0.615494pt;}
.ws2d{word-spacing:-0.598944pt;}
.wsb3{word-spacing:-0.590337pt;}
.wsb2{word-spacing:-0.581904pt;}
.wsc5{word-spacing:-0.555655pt;}
.wsb1{word-spacing:-0.522870pt;}
.wsa{word-spacing:-0.493867pt;}
.wsad{word-spacing:-0.489136pt;}
.ws30{word-spacing:-0.478987pt;}
.wsc8{word-spacing:-0.470169pt;}
.wsc4{word-spacing:-0.435975pt;}
.ws1e{word-spacing:-0.405397pt;}
.ws32{word-spacing:-0.401771pt;}
.ws7f{word-spacing:-0.396917pt;}
.ws21{word-spacing:-0.362368pt;}
.ws22{word-spacing:-0.351093pt;}
.ws13{word-spacing:-0.336533pt;}
.ws0{word-spacing:-0.300800pt;}
.wsa2{word-spacing:-0.298836pt;}
.wsc1{word-spacing:-0.294400pt;}
.ws9f{word-spacing:-0.290496pt;}
.ws67{word-spacing:-0.281600pt;}
.ws69{word-spacing:-0.269867pt;}
.ws6b{word-spacing:-0.267200pt;}
.ws42{word-spacing:-0.267008pt;}
.ws14{word-spacing:-0.249067pt;}
.ws43{word-spacing:-0.238784pt;}
.ws40{word-spacing:-0.234432pt;}
.ws2f{word-spacing:-0.234187pt;}
.ws58{word-spacing:-0.231467pt;}
.ws64{word-spacing:-0.225195pt;}
.ws3b{word-spacing:-0.217600pt;}
.ws59{word-spacing:-0.214933pt;}
.wsbf{word-spacing:-0.204800pt;}
.ws19{word-spacing:-0.202464pt;}
.ws8{word-spacing:-0.201600pt;}
.ws4b{word-spacing:-0.194272pt;}
.wsae{word-spacing:-0.185535pt;}
.ws3c{word-spacing:-0.183307pt;}
.ws18{word-spacing:-0.181152pt;}
.ws1f{word-spacing:-0.180181pt;}
.ws6d{word-spacing:-0.179328pt;}
.ws17{word-spacing:-0.170496pt;}
.ws37{word-spacing:-0.170091pt;}
.ws46{word-spacing:-0.164384pt;}
.ws2{word-spacing:-0.164192pt;}
.ws70{word-spacing:-0.153504pt;}
.ws35{word-spacing:-0.149184pt;}
.ws2e{word-spacing:-0.147968pt;}
.ws12{word-spacing:-0.144000pt;}
.ws4d{word-spacing:-0.140800pt;}
.ws28{word-spacing:-0.138528pt;}
.ws27{word-spacing:-0.136448pt;}
.ws5c{word-spacing:-0.134496pt;}
.ws26{word-spacing:-0.132608pt;}
.ws5f{word-spacing:-0.128000pt;}
.ws68{word-spacing:-0.119552pt;}
.ws29{word-spacing:-0.117216pt;}
.ws48{word-spacing:-0.114667pt;}
.ws16{word-spacing:-0.106560pt;}
.ws5d{word-spacing:-0.104608pt;}
.ws34{word-spacing:-0.095904pt;}
.ws3f{word-spacing:-0.089600pt;}
.ws31{word-spacing:-0.088256pt;}
.ws41{word-spacing:-0.085248pt;}
.ws66{word-spacing:-0.074720pt;}
.ws6c{word-spacing:-0.064000pt;}
.ws1d{word-spacing:-0.063467pt;}
.ws6a{word-spacing:-0.062933pt;}
.ws7d{word-spacing:-0.059808pt;}
.ws4a{word-spacing:-0.059776pt;}
.ws36{word-spacing:-0.053280pt;}
.ws1b{word-spacing:-0.044800pt;}
.ws2c{word-spacing:-0.042624pt;}
.wsc0{word-spacing:-0.038400pt;}
.ws24{word-spacing:-0.032331pt;}
.ws61{word-spacing:-0.026389pt;}
.ws3e{word-spacing:-0.025600pt;}
.wse{word-spacing:-0.019200pt;}
.ws78{word-spacing:-0.018351pt;}
.wsa6{word-spacing:-0.017088pt;}
.ws74{word-spacing:-0.012800pt;}
.wsf{word-spacing:-0.009600pt;}
.wsc{word-spacing:0.000000pt;}
.ws1{word-spacing:0.007456pt;}
.ws10{word-spacing:0.009600pt;}
.ws1a{word-spacing:0.012800pt;}
.ws65{word-spacing:0.014944pt;}
.wscf{word-spacing:0.017088pt;}
.ws62{word-spacing:0.020267pt;}
.ws49{word-spacing:0.023339pt;}
.wsb7{word-spacing:0.025600pt;}
.wsd5{word-spacing:0.025633pt;}
.wsb{word-spacing:0.038400pt;}
.ws97{word-spacing:0.043160pt;}
.ws7e{word-spacing:0.044832pt;}
.ws5e{word-spacing:0.051200pt;}
.wsce{word-spacing:0.059808pt;}
.ws4c{word-spacing:0.064000pt;}
.ws4{word-spacing:0.073984pt;}
.ws4e{word-spacing:0.076800pt;}
.ws9e{word-spacing:0.089664pt;}
.ws76{word-spacing:0.091755pt;}
.ws7a{word-spacing:0.100930pt;}
.ws88{word-spacing:0.103544pt;}
.ws73{word-spacing:0.104608pt;}
.ws5a{word-spacing:0.105600pt;}
.ws1c{word-spacing:0.108267pt;}
.wsd{word-spacing:0.115200pt;}
.wsa7{word-spacing:0.118912pt;}
.ws72{word-spacing:0.121067pt;}
.ws77{word-spacing:0.128457pt;}
.ws11{word-spacing:0.134400pt;}
.ws3d{word-spacing:0.134496pt;}
.ws7c{word-spacing:0.155983pt;}
.ws44{word-spacing:0.164384pt;}
.ws25{word-spacing:0.170923pt;}
.ws3{word-spacing:0.172800pt;}
.ws45{word-spacing:0.179328pt;}
.ws89{word-spacing:0.194261pt;}
.ws7{word-spacing:0.201067pt;}
.wsbd{word-spacing:0.203691pt;}
.ws33{word-spacing:0.204800pt;}
.ws75{word-spacing:0.220211pt;}
.wsbe{word-spacing:0.224160pt;}
.ws71{word-spacing:0.239104pt;}
.wsab{word-spacing:0.273771pt;}
.ws7b{word-spacing:0.275264pt;}
.ws60{word-spacing:0.283936pt;}
.ws79{word-spacing:0.293615pt;}
.ws3a{word-spacing:0.332267pt;}
.ws2b{word-spacing:0.332800pt;}
.ws2a{word-spacing:0.371200pt;}
.wsc6{word-spacing:0.555655pt;}
.wsc9{word-spacing:0.871950pt;}
.wsd0{word-spacing:7.002816pt;}
.wsd2{word-spacing:7.323447pt;}
.ws63{word-spacing:24.051200pt;}
.ws5b{word-spacing:24.178667pt;}
.ws5{word-spacing:38.274667pt;}
.ws9{word-spacing:38.467733pt;}
.ws9b{word-spacing:43.346074pt;}
.ws9c{word-spacing:43.378994pt;}
.ws9d{word-spacing:43.386786pt;}
.ws9a{word-spacing:43.397836pt;}
.wsaa{word-spacing:44.137443pt;}
.ws6f{word-spacing:54.561237pt;}
.ws38{word-spacing:54.590592pt;}
.ws39{word-spacing:54.710677pt;}
.ws6e{word-spacing:54.830229pt;}
.wsb6{word-spacing:94.116729pt;}
.ws98{word-spacing:94.497208pt;}
.wsa8{word-spacing:96.697942pt;}
.ws51{word-spacing:100.912528pt;}
.ws53{word-spacing:111.715195pt;}
.ws57{word-spacing:111.868484pt;}
.ws56{word-spacing:119.251106pt;}
.ws8a{word-spacing:167.168051pt;}
.ws52{word-spacing:332.986993pt;}
.ws54{word-spacing:336.225506pt;}
.ws8f{word-spacing:371.502293pt;}
.ws8e{word-spacing:399.496107pt;}
.ws8d{word-spacing:426.704685pt;}
.ws55{word-spacing:552.357328pt;}
._8b{margin-left:-164.720626pt;}
._8a{margin-left:-163.371022pt;}
._77{margin-left:-161.863535pt;}
._76{margin-left:-160.337394pt;}
._78{margin-left:-159.319755pt;}
._f{margin-left:-135.212133pt;}
._13{margin-left:-134.265915pt;}
._10{margin-left:-133.071397pt;}
._e{margin-left:-92.654720pt;}
._d{margin-left:-91.517707pt;}
._11{margin-left:-75.718629pt;}
._7{margin-left:-66.429952pt;}
._3{margin-left:-62.389867pt;}
._c{margin-left:-54.323093pt;}
._87{margin-left:-43.401743pt;}
._6f{margin-left:-42.473017pt;}
._4{margin-left:-38.097067pt;}
._a3{margin-left:-10.259999pt;}
._57{margin-left:-6.279330pt;}
._4b{margin-left:-4.730677pt;}
._4d{margin-left:-3.365312pt;}
._12{margin-left:-1.954160pt;}
._22{margin-left:-0.928573pt;}
._6{width:0.908459pt;}
._43{width:1.909197pt;}
._52{width:3.530275pt;}
._51{width:4.610008pt;}
._4a{width:6.353325pt;}
._50{width:7.847155pt;}
._65{width:8.971715pt;}
._61{width:10.263208pt;}
._6a{width:12.267435pt;}
._8e{width:15.775522pt;}
._2{width:23.092800pt;}
._b{width:27.402219pt;}
._19{width:33.093867pt;}
._a{width:56.115200pt;}
._9{width:58.714645pt;}
._1{width:62.390400pt;}
._7e{width:65.567628pt;}
._5{width:66.664053pt;}
._2f{width:80.729186pt;}
._6d{width:86.751650pt;}
._85{width:88.365383pt;}
._74{width:89.940159pt;}
._8{width:91.771797pt;}
._2e{width:93.760154pt;}
._1c{width:96.573441pt;}
._0{width:99.161600pt;}
._4f{width:108.015147pt;}
._4e{width:110.153432pt;}
._80{width:116.606222pt;}
._7f{width:117.511863pt;}
._6c{width:119.074316pt;}
._84{width:120.049650pt;}
._37{width:128.099930pt;}
._36{width:131.212614pt;}
._73{width:132.496959pt;}
._71{width:133.425552pt;}
._72{width:134.701265pt;}
._89{width:135.852436pt;}
._3c{width:145.276155pt;}
._40{width:153.916194pt;}
._24{width:156.635341pt;}
._7a{width:159.546004pt;}
._70{width:160.450418pt;}
._75{width:161.356424pt;}
._41{width:162.456166pt;}
._8c{width:163.350655pt;}
._25{width:165.182529pt;}
._99{width:166.412669pt;}
._3d{width:177.531977pt;}
._38{width:180.872038pt;}
._79{width:182.835866pt;}
._35{width:185.278289pt;}
._5e{width:186.958955pt;}
._42{width:190.639696pt;}
._26{width:194.005867pt;}
._5f{width:197.491817pt;}
._3f{width:199.416957pt;}
._27{width:202.641891pt;}
._33{width:203.551471pt;}
._7c{width:204.870639pt;}
._20{width:207.179972pt;}
._49{width:209.455714pt;}
._2c{width:211.282627pt;}
._1a{width:214.688900pt;}
._30{width:222.034440pt;}
._53{width:224.162835pt;}
._1d{width:225.984631pt;}
._2d{width:228.038095pt;}
._1b{width:230.086372pt;}
._31{width:231.395056pt;}
._1e{width:234.451474pt;}
._98{width:236.444132pt;}
._34{width:240.263925pt;}
._48{width:241.575935pt;}
._21{width:243.919142pt;}
._44{width:244.830937pt;}
._5a{width:247.496789pt;}
._28{width:249.077670pt;}
._39{width:250.070760pt;}
._23{width:251.965165pt;}
._45{width:254.181428pt;}
._3a{width:256.552455pt;}
._29{width:257.824073pt;}
._3e{width:258.884230pt;}
._9a{width:260.812318pt;}
._3b{width:262.330081pt;}
._56{width:269.896789pt;}
._88{width:273.645001pt;}
._4c{width:276.734269pt;}
._81{width:279.315917pt;}
._32{width:281.553010pt;}
._90{width:283.131916pt;}
._1f{width:285.954025pt;}
._5b{width:292.217365pt;}
._64{width:297.475552pt;}
._5c{width:301.298151pt;}
._66{width:308.032888pt;}
._7b{width:322.426179pt;}
._8d{width:326.680387pt;}
._67{width:337.739274pt;}
._63{width:339.643371pt;}
._58{width:341.632896pt;}
._a2{width:342.595005pt;}
._62{width:343.833647pt;}
._7d{width:346.672219pt;}
._8f{width:351.682930pt;}
._16{width:353.679819pt;}
._60{width:363.780514pt;}
._6e{width:388.193551pt;}
._59{width:392.002653pt;}
._86{width:394.417013pt;}
._46{width:403.519491pt;}
._2a{width:408.521011pt;}
._47{width:410.540152pt;}
._2b{width:414.999104pt;}
._5d{width:420.670047pt;}
._9e{width:423.040570pt;}
._9c{width:446.095668pt;}
._9b{width:451.216734pt;}
._9f{width:456.337102pt;}
._6b{width:465.051438pt;}
._a1{width:468.510798pt;}
._83{width:471.147422pt;}
._a0{width:474.121748pt;}
._9d{width:478.734601pt;}
._55{width:488.000851pt;}
._68{width:494.614648pt;}
._69{width:502.053291pt;}
._95{width:513.759982pt;}
._14{width:574.558618pt;}
._97{width:581.767055pt;}
._96{width:593.636998pt;}
._93{width:600.686838pt;}
._18{width:618.952954pt;}
._92{width:633.534963pt;}
._94{width:727.103470pt;}
._91{width:764.953847pt;}
._15{width:795.677551pt;}
._17{width:1016.394485pt;}
._54{width:1261.901578pt;}
._82{width:1530.629618pt;}
.fs25{font-size:48.529154pt;}
.fs28{font-size:48.529776pt;}
.fs26{font-size:48.529880pt;}
.fs29{font-size:48.531227pt;}
.fs17{font-size:53.142577pt;}
.fs8{font-size:63.203990pt;}
.fs9{font-size:63.206913pt;}
.fsa{font-size:63.209836pt;}
.fsb{font-size:63.212760pt;}
.fsc{font-size:63.215683pt;}
.fsd{font-size:63.218607pt;}
.fse{font-size:63.221531pt;}
.fsf{font-size:63.224455pt;}
.fs10{font-size:63.227379pt;}
.fs11{font-size:63.250777pt;}
.fs12{font-size:63.253702pt;}
.fs13{font-size:63.256628pt;}
.fs14{font-size:63.259553pt;}
.fs15{font-size:63.262479pt;}
.fs16{font-size:63.265405pt;}
.fs18{font-size:63.268331pt;}
.fs19{font-size:63.271257pt;}
.fs1e{font-size:63.748800pt;}
.fs6{font-size:64.000000pt;}
.fs0{font-size:74.560000pt;}
.fs22{font-size:79.476267pt;}
.fs20{font-size:80.766400pt;}
.fs21{font-size:84.333867pt;}
.fs1a{font-size:85.258667pt;}
.fs1c{font-size:85.440000pt;}
.fs2a{font-size:85.442187pt;}
.fs23{font-size:85.485333pt;}
.fs24{font-size:85.861366pt;}
.fs27{font-size:85.862465pt;}
.fs1d{font-size:86.286400pt;}
.fs1f{font-size:86.320000pt;}
.fs1b{font-size:91.754667pt;}
.fs2{font-size:96.000000pt;}
.fs5{font-size:106.560000pt;}
.fs4{font-size:128.000000pt;}
.fs7{font-size:149.440000pt;}
.fs3{font-size:170.560000pt;}
.fs1{font-size:234.560000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:31.146667pt;}
.yea{bottom:81.226667pt;}
.y45{bottom:92.028667pt;}
.yae{bottom:92.827600pt;}
.y63{bottom:101.522179pt;}
.yd7{bottom:104.426667pt;}
.ye9{bottom:106.106667pt;}
.y1c{bottom:107.706667pt;}
.y8b{bottom:108.346667pt;}
.y5e{bottom:111.111667pt;}
.y4{bottom:111.387467pt;}
.y11c{bottom:116.730336pt;}
.y62{bottom:117.378571pt;}
.y7e{bottom:118.026667pt;}
.yad{bottom:119.787733pt;}
.y6e{bottom:123.707067pt;}
.y33{bottom:127.308667pt;}
.yd6{bottom:128.266667pt;}
.y25{bottom:129.066667pt;}
.y44{bottom:130.347733pt;}
.ye8{bottom:130.986667pt;}
.y9e{bottom:138.746667pt;}
.y3{bottom:146.026667pt;}
.yac{bottom:146.827600pt;}
.y5f{bottom:151.521160pt;}
.yd5{bottom:152.106667pt;}
.y1b{bottom:152.508667pt;}
.y91{bottom:155.307600pt;}
.y8a{bottom:155.466667pt;}
.ye7{bottom:155.866667pt;}
.y10{bottom:158.186000pt;}
.y61{bottom:158.460082pt;}
.y6d{bottom:162.026800pt;}
.y32{bottom:165.707733pt;}
.y7d{bottom:166.185600pt;}
.ybd{bottom:168.106800pt;}
.y43{bottom:168.666667pt;}
.yab{bottom:173.867467pt;}
.yf5{bottom:174.426667pt;}
.yd4{bottom:175.866667pt;}
.y60{bottom:177.439650pt;}
.yb9{bottom:177.706800pt;}
.ye6{bottom:180.666667pt;}
.y102{bottom:183.227733pt;}
.y74{bottom:187.066667pt;}
.ybc{bottom:187.226800pt;}
.y1a{bottom:190.827733pt;}
.yf{bottom:192.906800pt;}
.yb8{bottom:196.826667pt;}
.yf4{bottom:197.786667pt;}
.y59{bottom:199.340705pt;}
.y56{bottom:199.366388pt;}
.yd3{bottom:199.706667pt;}
.y6c{bottom:200.346667pt;}
.yaa{bottom:200.907333pt;}
.y31{bottom:204.026667pt;}
.ye5{bottom:205.546667pt;}
.ybb{bottom:206.346667pt;}
.y42{bottom:208.186667pt;}
.y7c{bottom:208.345733pt;}
.y101{bottom:208.906667pt;}
.y90{bottom:209.147200pt;}
.y9d{bottom:212.990533pt;}
.yb7{bottom:215.946667pt;}
.yc8{bottom:216.827467pt;}
.y58{bottom:218.307989pt;}
.y55{bottom:218.332794pt;}
.y10e{bottom:218.499804pt;}
.y11a{bottom:219.452965pt;}
.y84{bottom:219.466267pt;}
.yf3{bottom:221.226667pt;}
.yd2{bottom:223.466667pt;}
.yfa{bottom:223.706800pt;}
.yba{bottom:225.466667pt;}
.ye{bottom:227.546000pt;}
.ya9{bottom:227.947200pt;}
.y19{bottom:229.146667pt;}
.ye4{bottom:230.426667pt;}
.y68{bottom:231.867200pt;}
.y10d{bottom:234.420008pt;}
.y119{bottom:235.373373pt;}
.y57{bottom:237.275272pt;}
.y54{bottom:237.299200pt;}
.y3a{bottom:237.707733pt;}
.y73{bottom:239.866667pt;}
.y9c{bottom:241.789733pt;}
.y30{bottom:243.546667pt;}
.yc7{bottom:243.867333pt;}
.yf2{bottom:244.666667pt;}
.yd1{bottom:247.306667pt;}
.y6b{bottom:247.466667pt;}
.y7b{bottom:250.505867pt;}
.y104{bottom:253.460251pt;}
.y5b{bottom:253.472767pt;}
.y41{bottom:254.186667pt;}
.y111{bottom:254.333858pt;}
.ya8{bottom:254.987067pt;}
.ye3{bottom:255.226667pt;}
.y89{bottom:255.306667pt;}
.y23{bottom:256.186533pt;}
.yd{bottom:256.345867pt;}
.yf9{bottom:262.026667pt;}
.y8f{bottom:262.986667pt;}
.y83{bottom:264.346667pt;}
.yf1{bottom:268.106667pt;}
.y18{bottom:268.746800pt;}
.y9b{bottom:270.508933pt;}
.yc6{bottom:270.907200pt;}
.yd0{bottom:271.146667pt;}
.y24{bottom:274.506667pt;}
.y22{bottom:275.386533pt;}
.y39{bottom:276.026667pt;}
.y105{bottom:278.660307pt;}
.ye2{bottom:280.106667pt;}
.ya7{bottom:282.026933pt;}
.y112{bottom:283.293933pt;}
.y5a{bottom:289.353025pt;}
.y53{bottom:289.417581pt;}
.yc{bottom:291.066667pt;}
.yf0{bottom:291.546667pt;}
.y7a{bottom:292.666000pt;}
.y72{bottom:292.666667pt;}
.ycf{bottom:294.906667pt;}
.yc5{bottom:297.947067pt;}
.y9a{bottom:299.228133pt;}
.y40{bottom:300.186667pt;}
.y106{bottom:303.860363pt;}
.ye1{bottom:304.986667pt;}
.y17{bottom:307.066667pt;}
.y88{bottom:308.026667pt;}
.ya6{bottom:309.066800pt;}
.yf8{bottom:309.146667pt;}
.y113{bottom:312.254008pt;}
.yeb{bottom:314.026667pt;}
.y8e{bottom:315.706667pt;}
.y38{bottom:316.666667pt;}
.y82{bottom:317.066667pt;}
.yce{bottom:318.746667pt;}
.yef{bottom:318.826667pt;}
.yb{bottom:319.866667pt;}
.yb4{bottom:321.146667pt;}
.y2c{bottom:323.384533pt;}
.y100{bottom:324.426400pt;}
.yc4{bottom:324.986933pt;}
.y99{bottom:328.027467pt;}
.ye0{bottom:329.866667pt;}
.y107{bottom:329.941097pt;}
.yb6{bottom:330.666667pt;}
.y2f{bottom:332.506533pt;}
.y79{bottom:334.826133pt;}
.ya5{bottom:336.027067pt;}
.y67{bottom:339.467600pt;}
.yb3{bottom:340.266667pt;}
.y2{bottom:340.506667pt;}
.y114{bottom:341.135280pt;}
.y10f{bottom:341.781382pt;}
.ycd{bottom:342.506667pt;}
.y11b{bottom:342.656119pt;}
.y52{bottom:343.850879pt;}
.y1d{bottom:344.186667pt;}
.y71{bottom:345.466667pt;}
.y3f{bottom:346.186667pt;}
.y5d{bottom:348.309746pt;}
.y5c{bottom:348.328539pt;}
.yb5{bottom:349.786667pt;}
.yff{bottom:351.226000pt;}
.y16{bottom:351.868667pt;}
.yc3{bottom:352.026800pt;}
.y2b{bottom:352.185067pt;}
.ydf{bottom:354.666667pt;}
.y108{bottom:355.141153pt;}
.y87{bottom:355.146667pt;}
.ya{bottom:356.346667pt;}
.y98{bottom:356.746667pt;}
.yb2{bottom:359.386667pt;}
.yf7{bottom:361.866667pt;}
.y51{bottom:362.815530pt;}
.y8d{bottom:362.826667pt;}
.y81{bottom:363.066667pt;}
.ya4{bottom:363.066933pt;}
.y2e{bottom:364.506667pt;}
.y4e{bottom:365.314111pt;}
.y4b{bottom:365.332118pt;}
.ycc{bottom:366.346667pt;}
.y37{bottom:368.186667pt;}
.y1e{bottom:369.226667pt;}
.y115{bottom:370.095355pt;}
.y70{bottom:374.426667pt;}
.y78{bottom:376.986400pt;}
.yfe{bottom:377.946667pt;}
.yc2{bottom:379.066667pt;}
.yde{bottom:379.546667pt;}
.y109{bottom:380.341209pt;}
.y2a{bottom:381.065600pt;}
.y50{bottom:381.780182pt;}
.y4d{bottom:384.277886pt;}
.y4a{bottom:384.295016pt;}
.y97{bottom:385.466800pt;}
.y48{bottom:386.552352pt;}
.ya3{bottom:390.106800pt;}
.y15{bottom:390.187733pt;}
.ycb{bottom:392.906667pt;}
.y6a{bottom:393.307200pt;}
.y3e{bottom:393.307600pt;}
.y2d{bottom:396.506667pt;}
.y116{bottom:398.976495pt;}
.y9{bottom:400.506667pt;}
.y4f{bottom:400.744834pt;}
.y6f{bottom:402.746667pt;}
.y4c{bottom:403.241661pt;}
.y49{bottom:403.257913pt;}
.ydd{bottom:404.426667pt;}
.yfd{bottom:404.746267pt;}
.y47{bottom:405.514372pt;}
.y10a{bottom:405.541265pt;}
.yc1{bottom:406.106533pt;}
.y86{bottom:407.866667pt;}
.y36{bottom:408.826667pt;}
.y80{bottom:409.066667pt;}
.y29{bottom:409.866133pt;}
.y8c{bottom:415.546800pt;}
.ya2{bottom:417.146667pt;}
.y96{bottom:418.906667pt;}
.y77{bottom:419.146533pt;}
.yca{bottom:419.386667pt;}
.yee{bottom:426.026933pt;}
.y117{bottom:427.936569pt;}
.y14{bottom:428.506667pt;}
.yfc{bottom:430.507200pt;}
.y10b{bottom:431.701999pt;}
.ydc{bottom:432.106667pt;}
.yc0{bottom:432.345600pt;}
.y8{bottom:435.227467pt;}
.y28{bottom:438.666667pt;}
.ya1{bottom:444.186000pt;}
.y66{bottom:447.146667pt;}
.y3d{bottom:447.147200pt;}
.y85{bottom:453.866667pt;}
.yfb{bottom:455.466667pt;}
.y7f{bottom:456.188000pt;}
.y118{bottom:456.896644pt;}
.y10c{bottom:456.902055pt;}
.ybf{bottom:457.786133pt;}
.ydb{bottom:459.786667pt;}
.y35{bottom:460.346667pt;}
.y76{bottom:461.306667pt;}
.yed{bottom:464.346800pt;}
.yb1{bottom:464.586667pt;}
.y13{bottom:468.026800pt;}
.y7{bottom:469.866667pt;}
.y20{bottom:471.386533pt;}
.y27{bottom:474.826667pt;}
.ya0{bottom:475.626667pt;}
.y46{bottom:479.133924pt;}
.ybe{bottom:483.306667pt;}
.yb0{bottom:483.706667pt;}
.y95{bottom:488.186667pt;}
.yda{bottom:488.746667pt;}
.y21{bottom:489.706667pt;}
.y1f{bottom:490.506667pt;}
.y110{bottom:497.140074pt;}
.y103{bottom:497.143370pt;}
.yf6{bottom:500.985733pt;}
.y69{bottom:500.986267pt;}
.y34{bottom:500.986667pt;}
.yec{bottom:502.746667pt;}
.yaf{bottom:502.826667pt;}
.y75{bottom:504.666000pt;}
.y65{bottom:506.070885pt;}
.y64{bottom:506.082382pt;}
.y6{bottom:506.346667pt;}
.y26{bottom:509.306667pt;}
.yd8{bottom:511.547733pt;}
.y9f{bottom:513.706667pt;}
.yc9{bottom:516.746667pt;}
.yd9{bottom:519.867467pt;}
.y12{bottom:564.826667pt;}
.y3c{bottom:571.226667pt;}
.y94{bottom:573.146667pt;}
.y5{bottom:590.506667pt;}
.y92{bottom:592.346667pt;}
.y11{bottom:616.026667pt;}
.y93{bottom:616.906667pt;}
.y3b{bottom:619.866667pt;}
.h28{height:34.738155pt;}
.h2d{height:34.738599pt;}
.h29{height:34.738674pt;}
.h2e{height:34.739638pt;}
.h26{height:34.880330pt;}
.h2b{height:34.880776pt;}
.h27{height:34.880851pt;}
.h2c{height:34.881819pt;}
.h18{height:36.924750pt;}
.h9{height:43.915663pt;}
.ha{height:43.917694pt;}
.hb{height:43.919725pt;}
.hc{height:43.921756pt;}
.hd{height:43.923788pt;}
.he{height:43.925819pt;}
.hf{height:43.927851pt;}
.h10{height:43.929882pt;}
.h11{height:43.931914pt;}
.h12{height:43.948172pt;}
.h13{height:43.950204pt;}
.h14{height:43.952237pt;}
.h15{height:43.954270pt;}
.h16{height:43.956303pt;}
.h17{height:43.958336pt;}
.h19{height:43.960369pt;}
.h1a{height:43.962402pt;}
.h1f{height:44.294210pt;}
.h7{height:44.468750pt;}
.h1{height:51.806094pt;}
.h23{height:55.222035pt;}
.h21{height:56.118451pt;}
.h24{height:58.520721pt;}
.h22{height:58.597213pt;}
.h25{height:58.778142pt;}
.h2a{height:58.778894pt;}
.h1b{height:59.239786pt;}
.h1d{height:59.365781pt;}
.h2f{height:59.367301pt;}
.h1e{height:59.953880pt;}
.h20{height:59.977227pt;}
.h1c{height:63.753365pt;}
.h3{height:66.703125pt;}
.h6{height:74.040469pt;}
.h5{height:88.937500pt;}
.h8{height:103.834531pt;}
.h4{height:118.509219pt;}
.h2{height:162.977969pt;}
.h0{height:716.000000pt;}
.w0{width:1037.333333pt;}
.x0{left:0.000000pt;}
.x5d{left:48.200533pt;}
.x41{left:51.079867pt;}
.x40{left:63.160667pt;}
.x5c{left:67.640667pt;}
.x42{left:69.879200pt;}
.xc{left:81.880667pt;}
.xf{left:83.320667pt;}
.x1{left:86.360667pt;}
.x5e{left:87.320667pt;}
.x65{left:88.840133pt;}
.x64{left:93.720800pt;}
.x2b{left:101.030915pt;}
.x61{left:113.639333pt;}
.x69{left:117.720533pt;}
.x62{left:118.920800pt;}
.x12{left:122.360667pt;}
.x6b{left:126.441200pt;}
.x13{left:134.360667pt;}
.x14{left:146.360667pt;}
.x35{left:160.280667pt;}
.x3{left:164.360667pt;}
.x82{left:167.566500pt;}
.x17{left:174.578880pt;}
.x78{left:180.207651pt;}
.x4{left:182.360667pt;}
.x66{left:183.800667pt;}
.x18{left:185.458055pt;}
.x77{left:187.807462pt;}
.x43{left:191.320667pt;}
.x15{left:194.360667pt;}
.x76{left:195.407273pt;}
.x58{left:197.720667pt;}
.x57{left:201.560667pt;}
.x5{left:206.360667pt;}
.xb{left:209.000667pt;}
.x44{left:213.720800pt;}
.x75{left:214.847812pt;}
.xe{left:216.760800pt;}
.x6a{left:220.840667pt;}
.xa{left:226.920667pt;}
.xd{left:228.440800pt;}
.x6c{left:250.442000pt;}
.x79{left:256.449100pt;}
.x24{left:268.090775pt;}
.x22{left:280.663379pt;}
.x7a{left:283.489984pt;}
.x23{left:288.484416pt;}
.x25{left:294.960942pt;}
.x31{left:306.215600pt;}
.x32{left:308.932334pt;}
.x19{left:329.344703pt;}
.x81{left:333.011091pt;}
.x7b{left:336.611991pt;}
.x5b{left:340.200667pt;}
.x5a{left:341.480667pt;}
.x1a{left:344.302986pt;}
.x59{left:345.320667pt;}
.x45{left:347.880933pt;}
.x1b{left:350.142774pt;}
.x9{left:353.880667pt;}
.x10{left:355.320667pt;}
.x46{left:357.481333pt;}
.x2{left:363.640667pt;}
.x67{left:381.880667pt;}
.x7c{left:389.653997pt;}
.x6d{left:406.442000pt;}
.x7d{left:416.775016pt;}
.x16{left:420.897422pt;}
.x92{left:422.866503pt;}
.x34{left:425.500442pt;}
.x2d{left:439.556838pt;}
.x7e{left:442.776004pt;}
.x3a{left:449.480667pt;}
.x30{left:456.449118pt;}
.x3b{left:457.640667pt;}
.x7f{left:469.896890pt;}
.x3d{left:472.201200pt;}
.x2a{left:478.316391pt;}
.x3c{left:483.561067pt;}
.x47{left:485.560667pt;}
.x56{left:489.080667pt;}
.x2f{left:491.451152pt;}
.x80{left:496.937907pt;}
.x3f{left:498.039733pt;}
.x3e{left:499.640133pt;}
.x48{left:501.240667pt;}
.x68{left:513.720533pt;}
.x37{left:523.240667pt;}
.x36{left:526.040667pt;}
.x74{left:530.360267pt;}
.x6e{left:532.283067pt;}
.x6{left:536.360667pt;}
.x38{left:549.640667pt;}
.x6f{left:558.922533pt;}
.x91{left:561.994224pt;}
.x7{left:572.360667pt;}
.x86{left:574.635859pt;}
.x39{left:579.480667pt;}
.x85{left:582.155743pt;}
.x8{left:584.360667pt;}
.x84{left:589.755765pt;}
.x1c{left:601.831390pt;}
.x83{left:609.276848pt;}
.x1e{left:611.989886pt;}
.x11{left:614.359867pt;}
.x49{left:619.800667pt;}
.x87{left:623.757652pt;}
.x55{left:627.720800pt;}
.x1d{left:628.705599pt;}
.x54{left:632.840667pt;}
.x4a{left:638.281067pt;}
.x4b{left:645.001333pt;}
.x88{left:650.799286pt;}
.x33{left:653.272814pt;}
.x70{left:670.681867pt;}
.x71{left:675.721067pt;}
.x89{left:677.921058pt;}
.x27{left:691.506642pt;}
.x63{left:704.360667pt;}
.x29{left:715.938253pt;}
.x26{left:722.053853pt;}
.x2e{left:726.670154pt;}
.x28{left:728.531920pt;}
.x8a{left:730.964535pt;}
.x1f{left:755.520531pt;}
.x8b{left:758.086173pt;}
.x51{left:763.560667pt;}
.x4c{left:773.080667pt;}
.x21{left:774.236238pt;}
.x52{left:778.201333pt;}
.x20{left:780.394428pt;}
.x4d{left:782.040400pt;}
.x8c{left:785.207812pt;}
.x4e{left:788.760667pt;}
.x72{left:802.921200pt;}
.x8d{left:811.209655pt;}
.x73{left:830.120667pt;}
.x5f{left:833.800667pt;}
.x8e{left:838.251289pt;}
.x60{left:843.000267pt;}
.x8f{left:865.372927pt;}
.x90{left:892.414562pt;}
.x2c{left:916.726233pt;}
.x4f{left:920.440667pt;}
.x53{left:922.040667pt;}
.x50{left:932.521467pt;}
}




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