
    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_b41f8366d445868974d0fdd2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_5664ef5c5241cbe865f72551.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_0821df70a7318c8c52b11cbf.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_d08c5d4e1c6f9e81ef503391.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.239258;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_5f9dc01c0ee0e03f01c5184f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b61ac7fd1a7eaa5e1bbfeb4c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_9ae22ef3a414068822c74848.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e2884c01dde5505fa8f2502c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-33.121728px;}
.v4{vertical-align:-18.719970px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.000015px;}
.v6{vertical-align:27.358128px;}
.v1{vertical-align:33.120000px;}
.v5{vertical-align:46.800000px;}
.ls6f{letter-spacing:-0.487740px;}
.ls81{letter-spacing:-0.434044px;}
.ls79{letter-spacing:-0.429569px;}
.ls7a{letter-spacing:-0.407196px;}
.ls7f{letter-spacing:-0.398247px;}
.ls75{letter-spacing:-0.393772px;}
.ls84{letter-spacing:-0.389297px;}
.ls92{letter-spacing:-0.382464px;}
.ls80{letter-spacing:-0.380348px;}
.ls71{letter-spacing:-0.366924px;}
.ls8d{letter-spacing:-0.364536px;}
.ls6a{letter-spacing:-0.358560px;}
.ls7d{letter-spacing:-0.353500px;}
.ls4b{letter-spacing:-0.352584px;}
.ls8e{letter-spacing:-0.346608px;}
.ls68{letter-spacing:-0.340632px;}
.ls77{letter-spacing:-0.340076px;}
.ls69{letter-spacing:-0.334656px;}
.ls46{letter-spacing:-0.328680px;}
.ls82{letter-spacing:-0.326652px;}
.ls5e{letter-spacing:-0.322704px;}
.ls45{letter-spacing:-0.310752px;}
.ls2c{letter-spacing:-0.304776px;}
.ls6b{letter-spacing:-0.298800px;}
.ls44{letter-spacing:-0.292824px;}
.ls74{letter-spacing:-0.268481px;}
.ls43{letter-spacing:-0.256968px;}
.ls8a{letter-spacing:-0.238464px;}
.ls20{letter-spacing:-0.235872px;}
.ls93{letter-spacing:-0.233064px;}
.ls4d{letter-spacing:-0.231840px;}
.ls76{letter-spacing:-0.223734px;}
.ls91{letter-spacing:-0.221112px;}
.ls2d{letter-spacing:-0.218592px;}
.ls6c{letter-spacing:-0.215136px;}
.ls8f{letter-spacing:-0.203184px;}
.ls7b{letter-spacing:-0.192411px;}
.ls1f{letter-spacing:-0.185328px;}
.ls5b{letter-spacing:-0.173304px;}
.ls4e{letter-spacing:-0.145728px;}
.ls61{letter-spacing:-0.143424px;}
.ls4f{letter-spacing:-0.139104px;}
.ls6e{letter-spacing:-0.131472px;}
.ls22{letter-spacing:-0.108000px;}
.ls27{letter-spacing:-0.093600px;}
.ls5d{letter-spacing:-0.083664px;}
.ls6d{letter-spacing:-0.077688px;}
.ls23{letter-spacing:-0.064800px;}
.ls4a{letter-spacing:-0.052992px;}
.ls25{letter-spacing:-0.050400px;}
.ls29{letter-spacing:-0.046368px;}
.ls72{letter-spacing:-0.044747px;}
.ls26{letter-spacing:-0.036000px;}
.ls2b{letter-spacing:-0.029880px;}
.ls60{letter-spacing:-0.023904px;}
.ls5c{letter-spacing:-0.019872px;}
.ls5a{letter-spacing:-0.017928px;}
.ls21{letter-spacing:-0.014400px;}
.ls50{letter-spacing:-0.011952px;}
.ls28{letter-spacing:-0.007200px;}
.ls4c{letter-spacing:-0.006624px;}
.ls8c{letter-spacing:-0.003888px;}
.ls24{letter-spacing:0.000000px;}
.ls37{letter-spacing:0.005976px;}
.ls73{letter-spacing:0.008949px;}
.ls3f{letter-spacing:0.011952px;}
.ls63{letter-spacing:0.013248px;}
.ls51{letter-spacing:0.017928px;}
.ls64{letter-spacing:0.019872px;}
.ls48{letter-spacing:0.023904px;}
.ls34{letter-spacing:0.029880px;}
.ls33{letter-spacing:0.035856px;}
.ls36{letter-spacing:0.041832px;}
.ls2e{letter-spacing:0.047808px;}
.ls19{letter-spacing:0.053784px;}
.ls2f{letter-spacing:0.059760px;}
.ls3c{letter-spacing:0.065736px;}
.ls41{letter-spacing:0.066240px;}
.ls32{letter-spacing:0.071712px;}
.ls40{letter-spacing:0.077688px;}
.ls59{letter-spacing:0.089640px;}
.ls86{letter-spacing:0.092736px;}
.ls49{letter-spacing:0.095616px;}
.ls54{letter-spacing:0.101592px;}
.ls56{letter-spacing:0.107568px;}
.lsa{letter-spacing:0.113544px;}
.ls55{letter-spacing:0.119232px;}
.ls9{letter-spacing:0.119520px;}
.ls14{letter-spacing:0.125496px;}
.ls1a{letter-spacing:0.131472px;}
.ls5{letter-spacing:0.137448px;}
.ls17{letter-spacing:0.143424px;}
.lsb{letter-spacing:0.149400px;}
.ls4{letter-spacing:0.155376px;}
.lsd{letter-spacing:0.161352px;}
.ls1c{letter-spacing:0.167328px;}
.ls3{letter-spacing:0.173304px;}
.ls16{letter-spacing:0.179280px;}
.ls7e{letter-spacing:0.183462px;}
.ls8{letter-spacing:0.185256px;}
.ls15{letter-spacing:0.191232px;}
.ls10{letter-spacing:0.197208px;}
.ls3d{letter-spacing:0.203184px;}
.ls1b{letter-spacing:0.209160px;}
.ls67{letter-spacing:0.210310px;}
.ls7{letter-spacing:0.215136px;}
.ls18{letter-spacing:0.221112px;}
.lsc{letter-spacing:0.227088px;}
.lsf{letter-spacing:0.233064px;}
.ls3a{letter-spacing:0.239040px;}
.ls6{letter-spacing:0.245016px;}
.ls78{letter-spacing:0.246107px;}
.ls2{letter-spacing:0.250992px;}
.ls7c{letter-spacing:0.255057px;}
.lse{letter-spacing:0.256968px;}
.ls38{letter-spacing:0.262944px;}
.ls2a{letter-spacing:0.268920px;}
.ls1e{letter-spacing:0.274896px;}
.ls8b{letter-spacing:0.278208px;}
.ls3b{letter-spacing:0.280872px;}
.ls47{letter-spacing:0.284832px;}
.ls13{letter-spacing:0.286848px;}
.ls65{letter-spacing:0.292824px;}
.ls5f{letter-spacing:0.298800px;}
.ls85{letter-spacing:0.304776px;}
.ls42{letter-spacing:0.310752px;}
.ls83{letter-spacing:0.313228px;}
.ls53{letter-spacing:0.316728px;}
.ls66{letter-spacing:0.322177px;}
.ls30{letter-spacing:0.322704px;}
.ls11{letter-spacing:0.328680px;}
.ls58{letter-spacing:0.358560px;}
.ls0{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.361800px;}
.ls90{letter-spacing:0.382464px;}
.ls70{letter-spacing:0.442993px;}
.ls31{letter-spacing:0.507960px;}
.ls52{letter-spacing:5.940144px;}
.ls62{letter-spacing:10.260792px;}
.ls88{letter-spacing:14.581440px;}
.ls87{letter-spacing:16.021656px;}
.ls12{letter-spacing:16.738776px;}
.ls1d{letter-spacing:18.902088px;}
.ls57{letter-spacing:19.619208px;}
.ls3e{letter-spacing:24.662952px;}
.ls39{letter-spacing:34.021368px;}
.ls89{letter-spacing:39.782232px;}
.ls35{letter-spacing:65.520864px;}
.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;}
}
.ws1c1{word-spacing:-16.652736px;}
.ws0{word-spacing:-16.513632px;}
.wsc0{word-spacing:-16.420896px;}
.ws107{word-spacing:-15.298560px;}
.ws104{word-spacing:-15.262704px;}
.ws105{word-spacing:-15.220872px;}
.ws106{word-spacing:-15.202944px;}
.ws3{word-spacing:-15.196968px;}
.ws50{word-spacing:-15.179040px;}
.ws1c3{word-spacing:-15.173064px;}
.ws1c4{word-spacing:-15.167088px;}
.ws2{word-spacing:-15.125256px;}
.ws1c5{word-spacing:-15.119280px;}
.ws51{word-spacing:-15.113304px;}
.ws16a{word-spacing:-14.975856px;}
.ws1{word-spacing:-14.940000px;}
.ws108{word-spacing:-14.928048px;}
.ws109{word-spacing:-14.916096px;}
.ws16b{word-spacing:-14.862312px;}
.ws52{word-spacing:-14.629248px;}
.ws170{word-spacing:-12.752838px;}
.ws16e{word-spacing:-12.694667px;}
.ws16c{word-spacing:-12.394864px;}
.ws16f{word-spacing:-12.099535px;}
.ws16d{word-spacing:-12.032415px;}
.ws1c2{word-spacing:-9.716112px;}
.ws1b2{word-spacing:-0.514588px;}
.wsb8{word-spacing:-0.284832px;}
.ws1aa{word-spacing:-0.201361px;}
.wse4{word-spacing:-0.131472px;}
.ws1ca{word-spacing:-0.125496px;}
.ws12b{word-spacing:-0.119232px;}
.ws19e{word-spacing:-0.113544px;}
.ws1ea{word-spacing:-0.107568px;}
.ws72{word-spacing:-0.095616px;}
.wse3{word-spacing:-0.071712px;}
.wsb9{word-spacing:-0.066240px;}
.ws1db{word-spacing:-0.065736px;}
.ws1c6{word-spacing:-0.059760px;}
.wsea{word-spacing:-0.053784px;}
.wsc3{word-spacing:-0.047808px;}
.ws1bf{word-spacing:-0.041832px;}
.ws43{word-spacing:-0.029880px;}
.ws199{word-spacing:-0.019872px;}
.ws13f{word-spacing:-0.017928px;}
.ws189{word-spacing:-0.013248px;}
.wsc9{word-spacing:-0.011952px;}
.ws7{word-spacing:0.000000px;}
.ws17{word-spacing:0.005976px;}
.wse5{word-spacing:0.006624px;}
.wsc{word-spacing:0.007200px;}
.ws4{word-spacing:0.008424px;}
.ws81{word-spacing:0.011952px;}
.ws6{word-spacing:0.014400px;}
.ws188{word-spacing:0.017928px;}
.ws137{word-spacing:0.019872px;}
.wsce{word-spacing:0.023904px;}
.ws1ad{word-spacing:0.031323px;}
.ws9f{word-spacing:0.035856px;}
.ws181{word-spacing:0.041832px;}
.wsa{word-spacing:0.050400px;}
.wsca{word-spacing:0.052992px;}
.ws5{word-spacing:0.058968px;}
.ws1a4{word-spacing:0.059760px;}
.ws9{word-spacing:0.064800px;}
.ws147{word-spacing:0.065736px;}
.ws136{word-spacing:0.071712px;}
.ws1ab{word-spacing:0.076070px;}
.ws201{word-spacing:0.083664px;}
.ws1a8{word-spacing:0.085019px;}
.wsb{word-spacing:0.093600px;}
.ws59{word-spacing:0.107568px;}
.ws8{word-spacing:0.108000px;}
.ws180{word-spacing:0.119520px;}
.ws17f{word-spacing:0.125496px;}
.ws75{word-spacing:0.137448px;}
.ws184{word-spacing:0.143424px;}
.ws1e2{word-spacing:0.149400px;}
.ws1b3{word-spacing:0.161088px;}
.ws1a9{word-spacing:0.174513px;}
.ws1b7{word-spacing:0.187937px;}
.ws1b6{word-spacing:0.205835px;}
.ws1f2{word-spacing:0.209160px;}
.ws1b4{word-spacing:0.214785px;}
.ws1cc{word-spacing:0.238464px;}
.ws1af{word-spacing:0.281905px;}
.ws1a7{word-spacing:0.295329px;}
.ws1c0{word-spacing:0.310752px;}
.ws1bc{word-spacing:0.317702px;}
.ws1b5{word-spacing:0.344550px;}
.ws215{word-spacing:0.412344px;}
.ws25{word-spacing:0.484056px;}
.wsb7{word-spacing:0.507960px;}
.wsda{word-spacing:0.531864px;}
.ws1e9{word-spacing:0.543816px;}
.ws15e{word-spacing:0.615528px;}
.ws98{word-spacing:0.663336px;}
.ws8a{word-spacing:0.669312px;}
.ws1e0{word-spacing:0.717120px;}
.ws111{word-spacing:0.723096px;}
.wse{word-spacing:0.729072px;}
.ws142{word-spacing:0.735048px;}
.ws5a{word-spacing:0.747000px;}
.ws198{word-spacing:0.854568px;}
.ws1bb{word-spacing:0.854664px;}
.ws1ae{word-spacing:0.868088px;}
.ws1b9{word-spacing:0.908360px;}
.ws1be{word-spacing:0.917309px;}
.ws1ac{word-spacing:0.921784px;}
.ws1b8{word-spacing:0.926259px;}
.ws138{word-spacing:0.932256px;}
.ws1b1{word-spacing:0.935208px;}
.ws1b0{word-spacing:0.957582px;}
.ws1ba{word-spacing:0.962056px;}
.ws1bd{word-spacing:1.011278px;}
.ws192{word-spacing:1.416312px;}
.wscb{word-spacing:1.422288px;}
.wsd3{word-spacing:1.434240px;}
.wsbd{word-spacing:1.458144px;}
.ws1d4{word-spacing:1.464120px;}
.ws1d1{word-spacing:1.517904px;}
.ws27{word-spacing:1.571688px;}
.ws57{word-spacing:1.834632px;}
.ws18a{word-spacing:1.960128px;}
.ws56{word-spacing:2.019888px;}
.ws89{word-spacing:2.061720px;}
.ws4c{word-spacing:2.085624px;}
.ws12{word-spacing:2.097576px;}
.wse2{word-spacing:2.109528px;}
.ws1c{word-spacing:2.115504px;}
.ws155{word-spacing:2.133432px;}
.ws120{word-spacing:2.151360px;}
.ws19d{word-spacing:2.169288px;}
.ws116{word-spacing:2.181240px;}
.ws1d3{word-spacing:2.187216px;}
.ws22{word-spacing:2.193192px;}
.wsa8{word-spacing:2.635416px;}
.ws55{word-spacing:2.772864px;}
.ws86{word-spacing:2.784816px;}
.wsac{word-spacing:2.802744px;}
.ws97{word-spacing:2.820672px;}
.ws1c8{word-spacing:2.826648px;}
.ws171{word-spacing:2.856528px;}
.ws15{word-spacing:2.874456px;}
.ws175{word-spacing:2.892384px;}
.ws24{word-spacing:2.910312px;}
.ws185{word-spacing:3.029832px;}
.wsd8{word-spacing:3.035808px;}
.wsab{word-spacing:3.537792px;}
.ws61{word-spacing:3.561696px;}
.ws13{word-spacing:3.567672px;}
.ws58{word-spacing:3.573648px;}
.ws6e{word-spacing:3.585600px;}
.ws125{word-spacing:3.615480px;}
.ws18d{word-spacing:3.627432px;}
.ws95{word-spacing:3.633408px;}
.wsc2{word-spacing:3.639384px;}
.ws135{word-spacing:3.645360px;}
.wsbf{word-spacing:4.254912px;}
.ws183{word-spacing:4.266864px;}
.wsdf{word-spacing:4.278816px;}
.ws5f{word-spacing:4.284792px;}
.wsc8{word-spacing:4.302720px;}
.ws37{word-spacing:4.320648px;}
.ws11a{word-spacing:4.338576px;}
.wse9{word-spacing:4.344552px;}
.wsb1{word-spacing:4.362480px;}
.ws186{word-spacing:4.434192px;}
.ws10c{word-spacing:4.972032px;}
.ws195{word-spacing:4.978008px;}
.ws159{word-spacing:4.989960px;}
.ws82{word-spacing:5.043744px;}
.ws194{word-spacing:5.049720px;}
.ws92{word-spacing:5.055696px;}
.ws67{word-spacing:5.061672px;}
.ws9d{word-spacing:5.067648px;}
.ws19{word-spacing:5.103504px;}
.wsfc{word-spacing:5.139360px;}
.ws10e{word-spacing:5.163264px;}
.ws64{word-spacing:5.181192px;}
.ws1f0{word-spacing:5.527800px;}
.ws213{word-spacing:5.563656px;}
.ws21{word-spacing:5.683176px;}
.ws19b{word-spacing:5.754888px;}
.ws1cf{word-spacing:5.772816px;}
.wse0{word-spacing:5.778792px;}
.wsf1{word-spacing:5.802696px;}
.ws93{word-spacing:5.808672px;}
.ws167{word-spacing:5.910264px;}
.ws1fa{word-spacing:5.928192px;}
.ws168{word-spacing:6.083568px;}
.wsf{word-spacing:6.388344px;}
.ws182{word-spacing:6.412248px;}
.ws113{word-spacing:6.418224px;}
.ws130{word-spacing:6.430176px;}
.ws146{word-spacing:6.483960px;}
.ws45{word-spacing:6.489936px;}
.wsa2{word-spacing:6.525792px;}
.ws9a{word-spacing:6.543720px;}
.ws10d{word-spacing:7.099488px;}
.ws1fe{word-spacing:7.117416px;}
.ws1fb{word-spacing:7.123392px;}
.wsd9{word-spacing:7.129368px;}
.ws9e{word-spacing:7.141320px;}
.ws90{word-spacing:7.171200px;}
.ws3b{word-spacing:7.195104px;}
.ws2f{word-spacing:7.201080px;}
.ws44{word-spacing:7.224984px;}
.ws1da{word-spacing:7.236936px;}
.wsae{word-spacing:7.242912px;}
.ws1ff{word-spacing:7.266816px;}
.ws15a{word-spacing:7.290720px;}
.ws19f{word-spacing:7.344504px;}
.wscc{word-spacing:7.380360px;}
.ws1a0{word-spacing:7.834536px;}
.ws29{word-spacing:7.864416px;}
.ws2a{word-spacing:7.900272px;}
.ws1f{word-spacing:7.936128px;}
.ws54{word-spacing:7.942104px;}
.wsf5{word-spacing:7.948080px;}
.ws14d{word-spacing:7.954056px;}
.wsb6{word-spacing:7.971984px;}
.ws6d{word-spacing:8.049672px;}
.wsd0{word-spacing:8.073576px;}
.ws100{word-spacing:8.569584px;}
.wsf3{word-spacing:8.635320px;}
.wsa0{word-spacing:8.641296px;}
.ws71{word-spacing:8.659224px;}
.wsf4{word-spacing:8.784720px;}
.wsa6{word-spacing:9.262800px;}
.ws14a{word-spacing:9.280728px;}
.ws1f3{word-spacing:9.292680px;}
.ws119{word-spacing:9.328536px;}
.ws13d{word-spacing:9.352440px;}
.ws112{word-spacing:9.364392px;}
.wsaf{word-spacing:9.370368px;}
.ws1d7{word-spacing:9.406224px;}
.ws1d6{word-spacing:9.465984px;}
.ws7d{word-spacing:9.531720px;}
.ws5b{word-spacing:9.950040px;}
.ws174{word-spacing:10.021752px;}
.wsa5{word-spacing:10.027728px;}
.ws5d{word-spacing:10.051632px;}
.ws128{word-spacing:10.057608px;}
.wsdd{word-spacing:10.069560px;}
.wsdc{word-spacing:10.087488px;}
.ws115{word-spacing:10.105416px;}
.ws179{word-spacing:10.278720px;}
.wsfe{word-spacing:10.708992px;}
.ws1d8{word-spacing:10.792656px;}
.ws10f{word-spacing:10.816560px;}
.ws123{word-spacing:10.822536px;}
.ws47{word-spacing:10.828512px;}
.ws17c{word-spacing:10.834488px;}
.ws60{word-spacing:10.846440px;}
.ws6c{word-spacing:10.948032px;}
.ws10b{word-spacing:10.959984px;}
.ws11c{word-spacing:11.384280px;}
.ws127{word-spacing:11.455992px;}
.wsaa{word-spacing:11.461968px;}
.wsdb{word-spacing:11.479896px;}
.ws8e{word-spacing:11.497824px;}
.wsba{word-spacing:11.509776px;}
.wsad{word-spacing:11.515752px;}
.ws11d{word-spacing:11.533680px;}
.wsf9{word-spacing:11.557584px;}
.ws10a{word-spacing:11.575512px;}
.ws99{word-spacing:11.689056px;}
.ws18c{word-spacing:12.059568px;}
.wsbb{word-spacing:12.202992px;}
.ws20{word-spacing:12.250800px;}
.ws3e{word-spacing:12.274704px;}
.ws11{word-spacing:12.280680px;}
.ws3f{word-spacing:12.920112px;}
.wsa1{word-spacing:12.967920px;}
.ws28{word-spacing:13.003776px;}
.wsf2{word-spacing:13.009752px;}
.ws18{word-spacing:13.021704px;}
.ws173{word-spacing:13.039632px;}
.ws129{word-spacing:13.451976px;}
.ws196{word-spacing:13.607352px;}
.wsb0{word-spacing:13.649184px;}
.ws154{word-spacing:13.685040px;}
.ws1cd{word-spacing:13.708944px;}
.ws40{word-spacing:13.804560px;}
.ws12c{word-spacing:13.828464px;}
.ws1fd{word-spacing:14.276664px;}
.ws12e{word-spacing:14.342400px;}
.wsa4{word-spacing:14.354352px;}
.ws42{word-spacing:14.390208px;}
.ws1d9{word-spacing:14.408136px;}
.ws6b{word-spacing:14.414112px;}
.ws10{word-spacing:14.426064px;}
.ws68{word-spacing:14.432040px;}
.ws87{word-spacing:14.438016px;}
.ws1dd{word-spacing:14.455944px;}
.ws101{word-spacing:14.593392px;}
.ws1fc{word-spacing:14.886216px;}
.wsd{word-spacing:15.047568px;}
.ws14b{word-spacing:15.131232px;}
.ws2d{word-spacing:15.173064px;}
.ws1f6{word-spacing:15.716880px;}
.ws76{word-spacing:15.782616px;}
.ws208{word-spacing:15.794568px;}
.ws94{word-spacing:15.800544px;}
.ws169{word-spacing:15.824448px;}
.ws73{word-spacing:15.836400px;}
.ws102{word-spacing:15.848352px;}
.wsd6{word-spacing:15.854328px;}
.ws78{word-spacing:15.866280px;}
.ws1d{word-spacing:15.872256px;}
.ws150{word-spacing:15.979824px;}
.ws77{word-spacing:15.985800px;}
.ws14f{word-spacing:16.105320px;}
.ws2b{word-spacing:16.410096px;}
.ws2c{word-spacing:16.451928px;}
.ws14e{word-spacing:16.457904px;}
.ws158{word-spacing:16.559496px;}
.ws17e{word-spacing:16.571448px;}
.ws4e{word-spacing:16.601328px;}
.ws1f5{word-spacing:16.661088px;}
.ws200{word-spacing:16.673040px;}
.ws165{word-spacing:17.210880px;}
.ws85{word-spacing:17.222832px;}
.ws126{word-spacing:17.228808px;}
.ws1d2{word-spacing:17.264664px;}
.ws139{word-spacing:17.276616px;}
.wsef{word-spacing:17.330400px;}
.ws133{word-spacing:17.479800px;}
.ws15f{word-spacing:17.993736px;}
.ws91{word-spacing:18.167040px;}
.ws18b{word-spacing:18.513648px;}
.ws4b{word-spacing:18.627192px;}
.ws204{word-spacing:18.639144px;}
.wsc5{word-spacing:18.663048px;}
.ws1de{word-spacing:18.675000px;}
.wsde{word-spacing:18.704880px;}
.ws160{word-spacing:18.716832px;}
.ws151{word-spacing:18.740736px;}
.ws140{word-spacing:19.374192px;}
.ws4a{word-spacing:19.386144px;}
.wse1{word-spacing:19.433952px;}
.wsbe{word-spacing:19.445904px;}
.ws1dc{word-spacing:19.463832px;}
.wsa9{word-spacing:19.541520px;}
.ws141{word-spacing:19.553472px;}
.ws1f9{word-spacing:20.067408px;}
.ws121{word-spacing:20.109240px;}
.ws110{word-spacing:20.133144px;}
.ws178{word-spacing:20.139120px;}
.wsd2{word-spacing:20.163024px;}
.ws39{word-spacing:20.169000px;}
.ws7c{word-spacing:20.186928px;}
.ws1b{word-spacing:20.192904px;}
.ws145{word-spacing:20.270592px;}
.ws1c7{word-spacing:20.850264px;}
.ws144{word-spacing:20.868192px;}
.ws9c{word-spacing:20.898072px;}
.ws38{word-spacing:20.904048px;}
.wsc6{word-spacing:20.910024px;}
.ws49{word-spacing:20.916000px;}
.ws13b{word-spacing:21.501648px;}
.ws62{word-spacing:21.561408px;}
.wse8{word-spacing:21.615192px;}
.ws162{word-spacing:22.105224px;}
.ws1a5{word-spacing:22.200840px;}
.ws122{word-spacing:22.302432px;}
.ws8d{word-spacing:22.320360px;}
.ws17d{word-spacing:22.326336px;}
.ws143{word-spacing:22.344264px;}
.ws3c{word-spacing:22.350240px;}
.ws118{word-spacing:22.469760px;}
.wsd1{word-spacing:22.995648px;}
.wsfd{word-spacing:23.007600px;}
.wsee{word-spacing:23.019552px;}
.wse7{word-spacing:23.031504px;}
.ws14{word-spacing:23.085288px;}
.ws17a{word-spacing:23.682888px;}
.ws46{word-spacing:23.742648px;}
.ws30{word-spacing:23.760576px;}
.wsc7{word-spacing:23.784480px;}
.wsd7{word-spacing:23.886072px;}
.ws190{word-spacing:24.394032px;}
.ws1f1{word-spacing:24.411960px;}
.ws20c{word-spacing:24.417936px;}
.ws212{word-spacing:24.447816px;}
.ws31{word-spacing:24.477696px;}
.ws74{word-spacing:24.483672px;}
.ws7f{word-spacing:24.501600px;}
.ws117{word-spacing:25.141032px;}
.ws193{word-spacing:25.147008px;}
.ws8f{word-spacing:25.176888px;}
.ws16{word-spacing:25.409952px;}
.ws69{word-spacing:25.870104px;}
.ws96{word-spacing:25.923888px;}
.ws172{word-spacing:25.959744px;}
.ws5c{word-spacing:26.611128px;}
.ws1e4{word-spacing:26.646984px;}
.ws6f{word-spacing:26.658936px;}
.wseb{word-spacing:26.670888px;}
.wse6{word-spacing:26.688816px;}
.ws187{word-spacing:27.172872px;}
.ws132{word-spacing:27.370080px;}
.ws17b{word-spacing:27.388008px;}
.wsd5{word-spacing:27.477648px;}
.wsd4{word-spacing:27.985608px;}
.ws80{word-spacing:28.039392px;}
.ws4f{word-spacing:28.075248px;}
.wsbc{word-spacing:28.099152px;}
.ws3a{word-spacing:28.200744px;}
.ws18f{word-spacing:28.475640px;}
.ws20d{word-spacing:28.744560px;}
.wsa3{word-spacing:28.792368px;}
.ws65{word-spacing:28.810296px;}
.ws1e{word-spacing:28.828224px;}
.ws12a{word-spacing:28.834200px;}
.ws191{word-spacing:28.971648px;}
.ws18e{word-spacing:29.276424px;}
.ws214{word-spacing:29.360088px;}
.ws1ec{word-spacing:29.425824px;}
.wsed{word-spacing:29.521440px;}
.ws4d{word-spacing:29.557296px;}
.ws41{word-spacing:29.569248px;}
.ws148{word-spacing:30.142944px;}
.wscd{word-spacing:30.214656px;}
.ws149{word-spacing:30.232584px;}
.ws209{word-spacing:30.376008px;}
.ws103{word-spacing:30.985560px;}
.wsb4{word-spacing:31.003488px;}
.wsf0{word-spacing:31.672800px;}
.wscf{word-spacing:31.846104px;}
.ws1e7{word-spacing:32.264424px;}
.wsc4{word-spacing:32.383944px;}
.ws1eb{word-spacing:33.041304px;}
.ws5e{word-spacing:33.065208px;}
.ws1a3{word-spacing:33.095088px;}
.ws3d{word-spacing:33.118992px;}
.ws11b{word-spacing:33.130944px;}
.ws13e{word-spacing:33.160824px;}
.ws1f4{word-spacing:33.274368px;}
.ws114{word-spacing:33.310224px;}
.ws83{word-spacing:33.758424px;}
.ws84{word-spacing:33.877944px;}
.ws48{word-spacing:34.487496px;}
.ws1df{word-spacing:34.547256px;}
.ws13c{word-spacing:34.565184px;}
.wsec{word-spacing:34.583112px;}
.ws14c{word-spacing:34.678728px;}
.ws197{word-spacing:35.210592px;}
.ws1a{word-spacing:35.276328px;}
.ws63{word-spacing:35.288280px;}
.wsf7{word-spacing:35.324136px;}
.ws23{word-spacing:36.005400px;}
.wsfb{word-spacing:36.029304px;}
.wsb2{word-spacing:36.698616px;}
.ws152{word-spacing:37.391832px;}
.ws177{word-spacing:37.397808px;}
.ws9b{word-spacing:37.475496px;}
.ws163{word-spacing:38.043216px;}
.ws12f{word-spacing:38.186640px;}
.ws131{word-spacing:38.808144px;}
.ws166{word-spacing:38.820096px;}
.ws153{word-spacing:38.891808px;}
.ws12d{word-spacing:38.939616px;}
.ws20f{word-spacing:39.477456px;}
.wsf8{word-spacing:40.332024px;}
.ws15d{word-spacing:40.421664px;}
.ws1ef{word-spacing:40.941576px;}
.ws15c{word-spacing:40.947552px;}
.ws134{word-spacing:41.395752px;}
.ws1e3{word-spacing:41.479488px;}
.ws1c9{word-spacing:41.706504px;}
.ws203{word-spacing:41.712480px;}
.ws32{word-spacing:41.760288px;}
.ws11f{word-spacing:41.837976px;}
.ws8b{word-spacing:41.873832px;}
.ws26{word-spacing:41.976288px;}
.wsc1{word-spacing:43.875792px;}
.ws19c{word-spacing:44.049096px;}
.wsfa{word-spacing:44.766216px;}
.ws124{word-spacing:45.387720px;}
.ws53{word-spacing:46.063008px;}
.ws2e{word-spacing:46.068984px;}
.ws19a{word-spacing:46.098864px;}
.ws88{word-spacing:46.104840px;}
.ws7b{word-spacing:46.230336px;}
.ws1d5{word-spacing:46.559016px;}
.ws164{word-spacing:46.750248px;}
.ws13a{word-spacing:46.810008px;}
.wsb5{word-spacing:46.935504px;}
.ws11e{word-spacing:47.503224px;}
.ws8c{word-spacing:48.387672px;}
.ws20e{word-spacing:48.782088px;}
.ws15b{word-spacing:48.871728px;}
.ws211{word-spacing:49.009176px;}
.ws33{word-spacing:49.021128px;}
.wsf6{word-spacing:49.189824px;}
.ws210{word-spacing:49.666536px;}
.ws36{word-spacing:49.702392px;}
.ws6a{word-spacing:49.720320px;}
.ws34{word-spacing:50.359752px;}
.ws161{word-spacing:50.401584px;}
.ws35{word-spacing:50.425488px;}
.ws1ee{word-spacing:51.501168px;}
.ws1e5{word-spacing:51.841800px;}
.ws1e6{word-spacing:51.925464px;}
.ws1e1{word-spacing:52.564896px;}
.ws206{word-spacing:52.959312px;}
.ws20b{word-spacing:54.005112px;}
.ws7e{word-spacing:54.023040px;}
.ws7a{word-spacing:54.728208px;}
.ws20a{word-spacing:56.048904px;}
.ws1a6{word-spacing:56.873592px;}
.ws1cb{word-spacing:58.325760px;}
.ws202{word-spacing:59.748048px;}
.ws79{word-spacing:61.857576px;}
.ws1a1{word-spacing:64.791792px;}
.ws157{word-spacing:65.514888px;}
.ws156{word-spacing:66.315672px;}
.ws1ed{word-spacing:67.486968px;}
.ws1d0{word-spacing:67.726008px;}
.ws207{word-spacing:69.058656px;}
.ws176{word-spacing:69.124392px;}
.wsa7{word-spacing:69.166224px;}
.ws1ce{word-spacing:74.323512px;}
.wsb3{word-spacing:76.970880px;}
.ws1e8{word-spacing:79.002720px;}
.ws66{word-spacing:79.241760px;}
.wsff{word-spacing:82.164024px;}
.ws205{word-spacing:83.317392px;}
.ws1f8{word-spacing:83.490696px;}
.ws1f7{word-spacing:84.165984px;}
.ws1a2{word-spacing:100.773288px;}
.ws70{word-spacing:115.265088px;}
._13{margin-left:-46.774152px;}
._12{margin-left:-37.367928px;}
._14{margin-left:-32.389920px;}
._15{margin-left:-11.517840px;}
._f{margin-left:-10.135296px;}
._5{margin-left:-8.915184px;}
._2{margin-left:-6.764472px;}
._3{margin-left:-4.489992px;}
._4{margin-left:-2.455200px;}
._1{margin-left:-1.280448px;}
._0{width:1.179360px;}
._a{width:4.386384px;}
._10{width:12.979872px;}
._11{width:15.125256px;}
._8{width:18.181944px;}
._9{width:25.756560px;}
._6{width:27.649728px;}
._7{width:41.757696px;}
._e{width:51.491664px;}
._d{width:343.327645px;}
._c{width:458.188874px;}
._b{width:465.618705px;}
.fc1{color:rgb(128,128,0);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:44.746800px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y168{bottom:91.202430px;}
.y2d{bottom:91.561638px;}
.y12f{bottom:94.261242px;}
.y1cd{bottom:95.160450px;}
.y10b{bottom:97.145316px;}
.y88{bottom:100.935930px;}
.yc3{bottom:103.261710px;}
.y205{bottom:103.982790px;}
.y4f{bottom:103.990224px;}
.y167{bottom:108.482034px;}
.y2c{bottom:108.841242px;}
.y12e{bottom:111.540846px;}
.y10a{bottom:114.424920px;}
.y87{bottom:118.215534px;}
.yc2{bottom:120.541314px;}
.y204{bottom:121.262394px;}
.y4e{bottom:121.269828px;}
.y166{bottom:125.761638px;}
.y2b{bottom:126.120846px;}
.y12d{bottom:128.820450px;}
.y109{bottom:131.704524px;}
.y86{bottom:135.495138px;}
.yc1{bottom:137.820918px;}
.y203{bottom:138.541998px;}
.y4d{bottom:138.549432px;}
.y165{bottom:143.041242px;}
.y2a{bottom:143.400450px;}
.ye0{bottom:147.007362px;}
.y1b5{bottom:147.180446px;}
.y1cc{bottom:147.360446px;}
.y108{bottom:148.984128px;}
.y1b7{bottom:151.320128px;}
.y85{bottom:152.774742px;}
.y12c{bottom:154.920450px;}
.yc0{bottom:155.100522px;}
.y4c{bottom:155.829036px;}
.y164{bottom:160.320846px;}
.y29{bottom:160.500450px;}
.y1cb{bottom:160.680450px;}
.ydf{bottom:164.286966px;}
.y202{bottom:164.821458px;}
.y107{bottom:166.263732px;}
.y84{bottom:169.875066px;}
.ybf{bottom:172.200846px;}
.y4b{bottom:173.108640px;}
.y12b{bottom:174.004698px;}
.y163{bottom:177.600450px;}
.y28{bottom:179.587686px;}
.yde{bottom:181.566570px;}
.y201{bottom:181.921782px;}
.y106{bottom:183.364056px;}
.y83{bottom:187.154670px;}
.ybe{bottom:189.480450px;}
.y4a{bottom:190.208964px;}
.y12a{bottom:191.284302px;}
.y1b2{bottom:196.680450px;}
.y27{bottom:196.867290px;}
.y1b1{bottom:197.040600px;}
.ydd{bottom:198.666894px;}
.y200{bottom:199.201386px;}
.y105{bottom:200.643660px;}
.y162{bottom:203.700450px;}
.y1bf{bottom:204.240450px;}
.y236{bottom:204.255588px;}
.y82{bottom:204.434274px;}
.y1b4{bottom:207.120446px;}
.y49{bottom:207.488568px;}
.y129{bottom:208.563906px;}
.y26{bottom:213.967614px;}
.y1b0{bottom:215.580450px;}
.ybd{bottom:215.760450px;}
.ydc{bottom:215.946498px;}
.y1ae{bottom:216.300450px;}
.y104{bottom:217.923264px;}
.y1b3{bottom:220.440450px;}
.y81{bottom:221.713878px;}
.y1b6{bottom:222.240450px;}
.y161{bottom:222.794544px;}
.y48{bottom:224.768172px;}
.y1ff{bottom:225.480846px;}
.y128{bottom:225.664230px;}
.y235{bottom:230.535048px;}
.y25{bottom:231.247218px;}
.ydb{bottom:233.226102px;}
.ybc{bottom:234.660450px;}
.y80{bottom:238.993482px;}
.y160{bottom:240.074148px;}
.y47{bottom:242.047776px;}
.y1fe{bottom:242.760918px;}
.y127{bottom:242.943834px;}
.y103{bottom:244.202724px;}
.y24{bottom:248.526822px;}
.y1c9{bottom:249.600446px;}
.yda{bottom:250.505706px;}
.ybb{bottom:251.940450px;}
.y234{bottom:256.814508px;}
.y15f{bottom:257.174472px;}
.y46{bottom:259.327380px;}
.y1fd{bottom:260.040522px;}
.y126{bottom:260.223438px;}
.y1bb{bottom:260.760446px;}
.y102{bottom:261.482328px;}
.y1c8{bottom:262.920450px;}
.y7f{bottom:265.093662px;}
.y23{bottom:265.806426px;}
.yd9{bottom:267.785310px;}
.y1ca{bottom:269.760450px;}
.yba{bottom:271.048746px;}
.y1ba{bottom:274.080450px;}
.y15e{bottom:274.454076px;}
.y1c5{bottom:276.060337px;}
.y45{bottom:276.427704px;}
.y1fc{bottom:277.320126px;}
.y125{bottom:277.503042px;}
.y101{bottom:278.761932px;}
.y7e{bottom:282.373266px;}
.y233{bottom:282.914688px;}
.y22{bottom:283.086030px;}
.yd8{bottom:285.064914px;}
.yb9{bottom:288.328350px;}
.y1c4{bottom:289.560446px;}
.y15d{bottom:291.733680px;}
.y1fb{bottom:294.420450px;}
.y124{bottom:294.782646px;}
.y100{bottom:295.862256px;}
.y7d{bottom:299.652870px;}
.y21{bottom:300.365634px;}
.y1c6{bottom:301.260450px;}
.y44{bottom:302.707164px;}
.yb8{bottom:305.428674px;}
.y1c3{bottom:307.560443px;}
.y15c{bottom:309.013284px;}
.y232{bottom:309.194148px;}
.yd7{bottom:311.165094px;}
.y1fa{bottom:311.700450px;}
.y123{bottom:312.062250px;}
.yff{bottom:313.141860px;}
.y7c{bottom:316.932474px;}
.y20{bottom:317.465958px;}
.y43{bottom:319.986768px;}
.y1c2{bottom:320.880446px;}
.yb7{bottom:322.708278px;}
.y15b{bottom:326.292888px;}
.y231{bottom:326.473752px;}
.yd6{bottom:328.444698px;}
.yfe{bottom:330.421464px;}
.y1f9{bottom:330.781314px;}
.y1c1{bottom:334.200450px;}
.y7b{bottom:334.212078px;}
.y1c7{bottom:334.741124px;}
.y1f{bottom:334.745562px;}
.y42{bottom:337.266372px;}
.y122{bottom:338.162430px;}
.yb6{bottom:339.987882px;}
.y1b9{bottom:340.320446px;}
.y15a{bottom:343.572492px;}
.y230{bottom:343.753356px;}
.yd5{bottom:345.724302px;}
.yfd{bottom:347.701068px;}
.y1f8{bottom:347.881638px;}
.y1e{bottom:352.025166px;}
.y1b8{bottom:353.640450px;}
.y41{bottom:354.545976px;}
.y121{bottom:355.442034px;}
.yb5{bottom:357.267486px;}
.y7a{bottom:360.491538px;}
.y159{bottom:360.672816px;}
.yd4{bottom:363.003906px;}
.yfc{bottom:364.980672px;}
.y1f7{bottom:365.161242px;}
.y1be{bottom:367.320446px;}
.y1d{bottom:369.304770px;}
.y22f{bottom:370.032816px;}
.y40{bottom:371.825580px;}
.y120{bottom:372.721638px;}
.yb4{bottom:374.547090px;}
.y1bd{bottom:376.140446px;}
.y79{bottom:377.591862px;}
.y158{bottom:377.952420px;}
.yd3{bottom:380.283510px;}
.yfb{bottom:382.080996px;}
.y1f6{bottom:382.440846px;}
.y1c{bottom:386.584374px;}
.y22e{bottom:387.312420px;}
.y1af{bottom:388.200600px;}
.y3f{bottom:388.925904px;}
.y1bc{bottom:389.460450px;}
.y11f{bottom:390.001242px;}
.yb3{bottom:391.826694px;}
.y1c0{bottom:393.960600px;}
.y78{bottom:394.871466px;}
.y157{bottom:395.232024px;}
.yd2{bottom:397.383834px;}
.yfa{bottom:399.360600px;}
.y1f5{bottom:399.720450px;}
.y1b{bottom:403.684698px;}
.y22d{bottom:404.412744px;}
.y3e{bottom:406.205508px;}
.y11e{bottom:407.280846px;}
.yb2{bottom:408.927018px;}
.y77{bottom:412.151070px;}
.yd1{bottom:414.663438px;}
.y1a{bottom:420.964302px;}
.y156{bottom:421.511484px;}
.y22c{bottom:422.412456px;}
.y3d{bottom:423.485112px;}
.y11d{bottom:424.560450px;}
.yf9{bottom:425.640450px;}
.y1f4{bottom:425.820450px;}
.yb1{bottom:426.206622px;}
.yd0{bottom:431.943042px;}
.y19{bottom:438.243906px;}
.y155{bottom:438.791088px;}
.y76{bottom:439.510692px;}
.y1ad{bottom:439.684914px;}
.y3c{bottom:440.764716px;}
.y22b{bottom:442.033158px;}
.yb0{bottom:443.486226px;}
.yf8{bottom:444.720450px;}
.y1f3{bottom:444.907908px;}
.ycf{bottom:449.222646px;}
.y11c{bottom:450.660450px;}
.y18{bottom:455.523510px;}
.y154{bottom:456.070692px;}
.y75{bottom:456.790296px;}
.y3b{bottom:458.044320px;}
.y22a{bottom:459.133482px;}
.y187{bottom:459.660126px;}
.yaf{bottom:460.765830px;}
.yf7{bottom:461.820522px;}
.y1f2{bottom:462.187512px;}
.y1ac{bottom:463.264716px;}
.yce{bottom:466.502250px;}
.y11b{bottom:469.750746px;}
.y153{bottom:473.171016px;}
.y74{bottom:473.890620px;}
.y3a{bottom:475.323924px;}
.y229{bottom:476.413086px;}
.y186{bottom:476.760450px;}
.y1f1{bottom:479.467116px;}
.y1ab{bottom:480.544320px;}
.yf6{bottom:480.720450px;}
.y17{bottom:481.802970px;}
.ycd{bottom:483.781854px;}
.y11a{bottom:487.030350px;}
.yae{bottom:487.045290px;}
.y152{bottom:490.450620px;}
.y39{bottom:492.424248px;}
.y228{bottom:493.692690px;}
.y1f0{bottom:496.746720px;}
.y1aa{bottom:497.823924px;}
.y16{bottom:499.082574px;}
.yf5{bottom:499.805166px;}
.ycc{bottom:500.882178px;}
.y73{bottom:501.250242px;}
.y185{bottom:503.040600px;}
.y119{bottom:504.130674px;}
.yad{bottom:504.145614px;}
.y151{bottom:507.730224px;}
.y38{bottom:509.703852px;}
.y1ef{bottom:513.847044px;}
.y1a9{bottom:514.924248px;}
.y15{bottom:516.182898px;}
.yf4{bottom:517.084770px;}
.y72{bottom:518.529846px;}
.y227{bottom:519.972150px;}
.y118{bottom:521.410278px;}
.yac{bottom:521.425218px;}
.y184{bottom:522.128892px;}
.y37{bottom:526.983456px;}
.ycb{bottom:527.161638px;}
.y1ee{bottom:531.126648px;}
.y14{bottom:533.462502px;}
.y150{bottom:534.009684px;}
.yf3{bottom:534.364374px;}
.y226{bottom:537.251754px;}
.y117{bottom:538.689882px;}
.yab{bottom:538.704822px;}
.y183{bottom:539.408496px;}
.y1a8{bottom:542.283870px;}
.y36{bottom:544.263060px;}
.yca{bottom:544.441242px;}
.y71{bottom:545.889468px;}
.y13{bottom:550.742106px;}
.y14f{bottom:551.289288px;}
.yf2{bottom:551.643978px;}
.y225{bottom:554.531358px;}
.y116{bottom:555.969486px;}
.yaa{bottom:555.984426px;}
.y182{bottom:556.508820px;}
.y1ed{bottom:557.406108px;}
.y1a7{bottom:559.563474px;}
.y35{bottom:561.542664px;}
.yc9{bottom:561.720846px;}
.y70{bottom:563.169072px;}
.y12{bottom:568.021710px;}
.y14e{bottom:568.389612px;}
.yf1{bottom:568.744302px;}
.y224{bottom:571.631682px;}
.y115{bottom:573.249090px;}
.ya9{bottom:573.264030px;}
.y181{bottom:573.788424px;}
.y1ec{bottom:574.685712px;}
.y1a6{bottom:576.843078px;}
.y34{bottom:578.642988px;}
.yc8{bottom:579.000450px;}
.y11{bottom:585.301314px;}
.y14d{bottom:585.669216px;}
.yf0{bottom:586.023906px;}
.y223{bottom:588.911286px;}
.y6f{bottom:590.528694px;}
.ya8{bottom:590.543634px;}
.y180{bottom:591.068028px;}
.y1eb{bottom:591.965316px;}
.y33{bottom:595.922592px;}
.y10{bottom:602.580918px;}
.y14c{bottom:602.948820px;}
.yef{bottom:603.303510px;}
.y1a5{bottom:604.202700px;}
.yc7{bottom:605.100450px;}
.y222{bottom:606.190890px;}
.y6e{bottom:607.629018px;}
.ya7{bottom:607.643958px;}
.y1ea{bottom:609.244920px;}
.y32{bottom:613.202196px;}
.y17f{bottom:617.347488px;}
.yf{bottom:619.681242px;}
.y14b{bottom:620.228424px;}
.yee{bottom:620.583114px;}
.y1a4{bottom:621.303024px;}
.yc6{bottom:624.180990px;}
.y6d{bottom:624.908622px;}
.ya6{bottom:624.923562px;}
.y1e9{bottom:626.345244px;}
.y31{bottom:630.481800px;}
.y221{bottom:632.470350px;}
.y17e{bottom:634.627092px;}
.ye{bottom:636.960846px;}
.y14a{bottom:637.508028px;}
.yed{bottom:637.862718px;}
.y1a3{bottom:638.582628px;}
.y6c{bottom:642.188226px;}
.ya5{bottom:642.203166px;}
.y1e8{bottom:643.624848px;}
.y30{bottom:647.761404px;}
.y220{bottom:649.749954px;}
.yc5{bottom:650.460450px;}
.y17d{bottom:651.727416px;}
.yd{bottom:654.240450px;}
.yec{bottom:655.142322px;}
.y1a2{bottom:655.862232px;}
.y6b{bottom:659.467830px;}
.ya4{bottom:659.482770px;}
.y1e7{bottom:660.904452px;}
.y149{bottom:663.787488px;}
.y2f{bottom:665.041008px;}
.y21f{bottom:667.029558px;}
.yeb{bottom:672.242646px;}
.y6a{bottom:676.747434px;}
.ya3{bottom:676.762374px;}
.y17c{bottom:679.087038px;}
.yc{bottom:680.340450px;}
.y148{bottom:680.887812px;}
.y2e{bottom:682.141332px;}
.y1a1{bottom:683.221854px;}
.y21e{bottom:684.129882px;}
.y114{bottom:685.747290px;}
.y1e6{bottom:687.183912px;}
.yea{bottom:689.522250px;}
.y69{bottom:694.027038px;}
.ya2{bottom:694.041978px;}
.y147{bottom:698.167416px;}
.y21d{bottom:701.409486px;}
.y113{bottom:703.026894px;}
.y1e5{bottom:704.463516px;}
.y17b{bottom:706.446660px;}
.ye9{bottom:706.801854px;}
.yb{bottom:708.420450px;}
.y1a0{bottom:709.501314px;}
.y68{bottom:711.127362px;}
.ya1{bottom:711.142302px;}
.y146{bottom:715.447020px;}
.y112{bottom:720.127218px;}
.y1e4{bottom:721.743120px;}
.y19f{bottom:726.780918px;}
.y21c{bottom:727.688946px;}
.y67{bottom:728.406966px;}
.ya0{bottom:728.421906px;}
.y145{bottom:732.726624px;}
.ye8{bottom:733.081314px;}
.y17a{bottom:733.806282px;}
.ya{bottom:735.420450px;}
.y111{bottom:737.406822px;}
.y1e3{bottom:738.843444px;}
.y19e{bottom:743.881242px;}
.y21b{bottom:744.968550px;}
.y66{bottom:745.686570px;}
.y144{bottom:750.006228px;}
.ye7{bottom:750.360918px;}
.y110{bottom:754.686426px;}
.y9f{bottom:754.701366px;}
.y1e2{bottom:756.123048px;}
.y19d{bottom:761.160846px;}
.y179{bottom:761.165904px;}
.y21a{bottom:762.248154px;}
.y65{bottom:762.966174px;}
.y9{bottom:765.120450px;}
.ye6{bottom:767.640522px;}
.y10f{bottom:771.966030px;}
.y9e{bottom:771.980970px;}
.y1e1{bottom:773.402652px;}
.y143{bottom:776.285688px;}
.y19c{bottom:778.440450px;}
.ye5{bottom:784.740846px;}
.y178{bottom:788.346246px;}
.y219{bottom:788.348334px;}
.y64{bottom:789.245634px;}
.y9d{bottom:789.260574px;}
.y1e0{bottom:790.682256px;}
.y142{bottom:793.386012px;}
.y8{bottom:794.820450px;}
.ye4{bottom:802.020450px;}
.y19b{bottom:804.540600px;}
.y177{bottom:805.625850px;}
.y218{bottom:805.627938px;}
.y63{bottom:806.345958px;}
.y9c{bottom:806.360898px;}
.y1df{bottom:807.961860px;}
.y141{bottom:820.745634px;}
.y176{bottom:822.905454px;}
.y217{bottom:822.907542px;}
.y19a{bottom:823.625418px;}
.y62{bottom:823.625562px;}
.y9b{bottom:823.640502px;}
.y7{bottom:823.800450px;}
.y1de{bottom:825.062184px;}
.ye3{bottom:828.300450px;}
.y175{bottom:840.185058px;}
.y216{bottom:840.187146px;}
.y199{bottom:840.905022px;}
.y61{bottom:840.905166px;}
.y9a{bottom:840.920106px;}
.y1dd{bottom:842.341788px;}
.y6{bottom:845.220450px;}
.ye2{bottom:847.200990px;}
.y140{bottom:848.105256px;}
.y174{bottom:857.464662px;}
.y215{bottom:857.466750px;}
.y198{bottom:858.184626px;}
.y60{bottom:858.184770px;}
.y99{bottom:858.199710px;}
.y1dc{bottom:859.621392px;}
.ye1{bottom:873.480450px;}
.y173{bottom:874.744266px;}
.y214{bottom:874.746354px;}
.y5{bottom:874.920450px;}
.y197{bottom:875.464230px;}
.y5f{bottom:875.464374px;}
.y13f{bottom:875.464878px;}
.y98{bottom:875.479314px;}
.y1db{bottom:876.900996px;}
.y172{bottom:891.844590px;}
.y196{bottom:892.743834px;}
.y5e{bottom:892.743978px;}
.y13e{bottom:892.744482px;}
.y97{bottom:892.758918px;}
.y1da{bottom:894.180600px;}
.y213{bottom:900.846534px;}
.y171{bottom:909.124194px;}
.y195{bottom:909.844158px;}
.y5d{bottom:909.844302px;}
.y13d{bottom:909.844806px;}
.y96{bottom:909.859242px;}
.y1d9{bottom:911.280450px;}
.y4{bottom:912.900882px;}
.y212{bottom:918.126138px;}
.y194{bottom:927.123762px;}
.y5c{bottom:927.123906px;}
.y13c{bottom:927.124410px;}
.y95{bottom:927.138846px;}
.y1d8{bottom:930.363060px;}
.y3{bottom:933.960450px;}
.y170{bottom:935.403654px;}
.y211{bottom:935.405742px;}
.y193{bottom:944.403366px;}
.y5b{bottom:944.403510px;}
.y13b{bottom:944.404014px;}
.y94{bottom:944.418450px;}
.y1d7{bottom:947.642664px;}
.y16f{bottom:952.683258px;}
.y210{bottom:952.685346px;}
.y192{bottom:961.682970px;}
.y5a{bottom:961.683114px;}
.y13a{bottom:961.683618px;}
.y93{bottom:961.698054px;}
.y2{bottom:964.200432px;}
.y1d6{bottom:964.922268px;}
.y16e{bottom:969.962862px;}
.y20f{bottom:969.964950px;}
.y191{bottom:978.962574px;}
.y59{bottom:978.962718px;}
.y139{bottom:978.963222px;}
.y92{bottom:978.977658px;}
.y16d{bottom:987.242466px;}
.y20e{bottom:987.244554px;}
.y1{bottom:988.320450px;}
.y1d5{bottom:992.102610px;}
.y190{bottom:996.242178px;}
.y58{bottom:996.242322px;}
.y138{bottom:996.242826px;}
.y91{bottom:996.257262px;}
.y16c{bottom:1004.342790px;}
.y20d{bottom:1004.344878px;}
.y1d4{bottom:1009.382214px;}
.y18f{bottom:1013.342502px;}
.y57{bottom:1013.342646px;}
.y16b{bottom:1021.622394px;}
.y20c{bottom:1021.624482px;}
.y10e{bottom:1022.342502px;}
.y137{bottom:1022.343006px;}
.y90{bottom:1022.357442px;}
.y18e{bottom:1030.622106px;}
.y56{bottom:1030.622250px;}
.y1d3{bottom:1036.741836px;}
.y10d{bottom:1039.622106px;}
.y136{bottom:1039.622610px;}
.y8f{bottom:1039.637046px;}
.y55{bottom:1047.901854px;}
.y20b{bottom:1047.903942px;}
.y18d{bottom:1056.901566px;}
.y10c{bottom:1056.901710px;}
.y135{bottom:1056.902214px;}
.y8e{bottom:1056.916650px;}
.y1d2{bottom:1063.021296px;}
.yc4{bottom:1065.181458px;}
.y20a{bottom:1065.183546px;}
.y18c{bottom:1074.181170px;}
.y54{bottom:1074.181314px;}
.y134{bottom:1074.181818px;}
.y8d{bottom:1074.196254px;}
.y1d1{bottom:1080.300900px;}
.y16a{bottom:1082.461062px;}
.y209{bottom:1082.463150px;}
.y18b{bottom:1091.460774px;}
.y53{bottom:1091.460918px;}
.y133{bottom:1091.461422px;}
.y8c{bottom:1091.475858px;}
.y1d0{bottom:1097.580504px;}
.y169{bottom:1099.740666px;}
.y18a{bottom:1108.740378px;}
.y52{bottom:1108.740522px;}
.y132{bottom:1108.741026px;}
.y208{bottom:1108.742610px;}
.y8b{bottom:1108.755462px;}
.y1cf{bottom:1124.760846px;}
.y189{bottom:1125.840702px;}
.y51{bottom:1125.840846px;}
.y131{bottom:1125.841350px;}
.y207{bottom:1125.842934px;}
.y8a{bottom:1125.855786px;}
.y1ce{bottom:1142.040450px;}
.y188{bottom:1143.120306px;}
.y50{bottom:1143.120450px;}
.y130{bottom:1143.120954px;}
.y206{bottom:1143.122538px;}
.y89{bottom:1143.135390px;}
.h8{height:46.669514px;}
.h3{height:47.344922px;}
.h5{height:58.651172px;}
.h7{height:60.226875px;}
.hc{height:61.423863px;}
.h9{height:64.669529px;}
.hb{height:65.516722px;}
.h6{height:66.757500px;}
.h4{height:70.664062px;}
.h2{height:81.736875px;}
.h1{height:84.898125px;}
.ha{height:93.469514px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.xc{left:85.020900px;}
.x24{left:92.220900px;}
.x7{left:106.260900px;}
.x4{left:109.680450px;}
.xe{left:112.020468px;}
.x2{left:117.241674px;}
.x1{left:133.080900px;}
.xf{left:175.740900px;}
.x16{left:231.900900px;}
.x1d{left:240.000900px;}
.x1e{left:246.121144px;}
.x29{left:248.460900px;}
.x5{left:264.840900px;}
.x2f{left:266.820275px;}
.x1f{left:272.580900px;}
.x20{left:273.840522px;}
.x2e{left:285.000900px;}
.x9{left:295.440900px;}
.x30{left:299.400900px;}
.x8{left:309.480900px;}
.x13{left:319.560900px;}
.x2a{left:325.681571px;}
.x3{left:336.840900px;}
.x12{left:338.280900px;}
.x2d{left:365.100900px;}
.x6{left:369.780900px;}
.xa{left:400.200900px;}
.x22{left:404.161034px;}
.x21{left:411.540900px;}
.x27{left:415.860748px;}
.x26{left:418.020900px;}
.x15{left:420.540900px;}
.x2c{left:440.520928px;}
.xb{left:446.460900px;}
.x2b{left:448.080900px;}
.xd{left:472.020684px;}
.x1c{left:483.360194px;}
.x11{left:498.841476px;}
.x25{left:515.400900px;}
.x1b{left:522.600900px;}
.x10{left:553.560900px;}
.x1a{left:581.460491px;}
.x19{left:585.960900px;}
.x28{left:592.980914px;}
.x23{left:596.400491px;}
.x17{left:604.140900px;}
.x18{left:607.380568px;}
.x14{left:727.080900px;}
@media print{
.v2{vertical-align:-29.441536pt;}
.v4{vertical-align:-16.639974pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.000013pt;}
.v6{vertical-align:24.318336pt;}
.v1{vertical-align:29.440000pt;}
.v5{vertical-align:41.600000pt;}
.ls6f{letter-spacing:-0.433547pt;}
.ls81{letter-spacing:-0.385817pt;}
.ls79{letter-spacing:-0.381839pt;}
.ls7a{letter-spacing:-0.361952pt;}
.ls7f{letter-spacing:-0.353997pt;}
.ls75{letter-spacing:-0.350019pt;}
.ls84{letter-spacing:-0.346042pt;}
.ls92{letter-spacing:-0.339968pt;}
.ls80{letter-spacing:-0.338087pt;}
.ls71{letter-spacing:-0.326154pt;}
.ls8d{letter-spacing:-0.324032pt;}
.ls6a{letter-spacing:-0.318720pt;}
.ls7d{letter-spacing:-0.314222pt;}
.ls4b{letter-spacing:-0.313408pt;}
.ls8e{letter-spacing:-0.308096pt;}
.ls68{letter-spacing:-0.302784pt;}
.ls77{letter-spacing:-0.302289pt;}
.ls69{letter-spacing:-0.297472pt;}
.ls46{letter-spacing:-0.292160pt;}
.ls82{letter-spacing:-0.290357pt;}
.ls5e{letter-spacing:-0.286848pt;}
.ls45{letter-spacing:-0.276224pt;}
.ls2c{letter-spacing:-0.270912pt;}
.ls6b{letter-spacing:-0.265600pt;}
.ls44{letter-spacing:-0.260288pt;}
.ls74{letter-spacing:-0.238650pt;}
.ls43{letter-spacing:-0.228416pt;}
.ls8a{letter-spacing:-0.211968pt;}
.ls20{letter-spacing:-0.209664pt;}
.ls93{letter-spacing:-0.207168pt;}
.ls4d{letter-spacing:-0.206080pt;}
.ls76{letter-spacing:-0.198875pt;}
.ls91{letter-spacing:-0.196544pt;}
.ls2d{letter-spacing:-0.194304pt;}
.ls6c{letter-spacing:-0.191232pt;}
.ls8f{letter-spacing:-0.180608pt;}
.ls7b{letter-spacing:-0.171032pt;}
.ls1f{letter-spacing:-0.164736pt;}
.ls5b{letter-spacing:-0.154048pt;}
.ls4e{letter-spacing:-0.129536pt;}
.ls61{letter-spacing:-0.127488pt;}
.ls4f{letter-spacing:-0.123648pt;}
.ls6e{letter-spacing:-0.116864pt;}
.ls22{letter-spacing:-0.096000pt;}
.ls27{letter-spacing:-0.083200pt;}
.ls5d{letter-spacing:-0.074368pt;}
.ls6d{letter-spacing:-0.069056pt;}
.ls23{letter-spacing:-0.057600pt;}
.ls4a{letter-spacing:-0.047104pt;}
.ls25{letter-spacing:-0.044800pt;}
.ls29{letter-spacing:-0.041216pt;}
.ls72{letter-spacing:-0.039775pt;}
.ls26{letter-spacing:-0.032000pt;}
.ls2b{letter-spacing:-0.026560pt;}
.ls60{letter-spacing:-0.021248pt;}
.ls5c{letter-spacing:-0.017664pt;}
.ls5a{letter-spacing:-0.015936pt;}
.ls21{letter-spacing:-0.012800pt;}
.ls50{letter-spacing:-0.010624pt;}
.ls28{letter-spacing:-0.006400pt;}
.ls4c{letter-spacing:-0.005888pt;}
.ls8c{letter-spacing:-0.003456pt;}
.ls24{letter-spacing:0.000000pt;}
.ls37{letter-spacing:0.005312pt;}
.ls73{letter-spacing:0.007955pt;}
.ls3f{letter-spacing:0.010624pt;}
.ls63{letter-spacing:0.011776pt;}
.ls51{letter-spacing:0.015936pt;}
.ls64{letter-spacing:0.017664pt;}
.ls48{letter-spacing:0.021248pt;}
.ls34{letter-spacing:0.026560pt;}
.ls33{letter-spacing:0.031872pt;}
.ls36{letter-spacing:0.037184pt;}
.ls2e{letter-spacing:0.042496pt;}
.ls19{letter-spacing:0.047808pt;}
.ls2f{letter-spacing:0.053120pt;}
.ls3c{letter-spacing:0.058432pt;}
.ls41{letter-spacing:0.058880pt;}
.ls32{letter-spacing:0.063744pt;}
.ls40{letter-spacing:0.069056pt;}
.ls59{letter-spacing:0.079680pt;}
.ls86{letter-spacing:0.082432pt;}
.ls49{letter-spacing:0.084992pt;}
.ls54{letter-spacing:0.090304pt;}
.ls56{letter-spacing:0.095616pt;}
.lsa{letter-spacing:0.100928pt;}
.ls55{letter-spacing:0.105984pt;}
.ls9{letter-spacing:0.106240pt;}
.ls14{letter-spacing:0.111552pt;}
.ls1a{letter-spacing:0.116864pt;}
.ls5{letter-spacing:0.122176pt;}
.ls17{letter-spacing:0.127488pt;}
.lsb{letter-spacing:0.132800pt;}
.ls4{letter-spacing:0.138112pt;}
.lsd{letter-spacing:0.143424pt;}
.ls1c{letter-spacing:0.148736pt;}
.ls3{letter-spacing:0.154048pt;}
.ls16{letter-spacing:0.159360pt;}
.ls7e{letter-spacing:0.163077pt;}
.ls8{letter-spacing:0.164672pt;}
.ls15{letter-spacing:0.169984pt;}
.ls10{letter-spacing:0.175296pt;}
.ls3d{letter-spacing:0.180608pt;}
.ls1b{letter-spacing:0.185920pt;}
.ls67{letter-spacing:0.186942pt;}
.ls7{letter-spacing:0.191232pt;}
.ls18{letter-spacing:0.196544pt;}
.lsc{letter-spacing:0.201856pt;}
.lsf{letter-spacing:0.207168pt;}
.ls3a{letter-spacing:0.212480pt;}
.ls6{letter-spacing:0.217792pt;}
.ls78{letter-spacing:0.218762pt;}
.ls2{letter-spacing:0.223104pt;}
.ls7c{letter-spacing:0.226717pt;}
.lse{letter-spacing:0.228416pt;}
.ls38{letter-spacing:0.233728pt;}
.ls2a{letter-spacing:0.239040pt;}
.ls1e{letter-spacing:0.244352pt;}
.ls8b{letter-spacing:0.247296pt;}
.ls3b{letter-spacing:0.249664pt;}
.ls47{letter-spacing:0.253184pt;}
.ls13{letter-spacing:0.254976pt;}
.ls65{letter-spacing:0.260288pt;}
.ls5f{letter-spacing:0.265600pt;}
.ls85{letter-spacing:0.270912pt;}
.ls42{letter-spacing:0.276224pt;}
.ls83{letter-spacing:0.278425pt;}
.ls53{letter-spacing:0.281536pt;}
.ls66{letter-spacing:0.286380pt;}
.ls30{letter-spacing:0.286848pt;}
.ls11{letter-spacing:0.292160pt;}
.ls58{letter-spacing:0.318720pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.321600pt;}
.ls90{letter-spacing:0.339968pt;}
.ls70{letter-spacing:0.393772pt;}
.ls31{letter-spacing:0.451520pt;}
.ls52{letter-spacing:5.280128pt;}
.ls62{letter-spacing:9.120704pt;}
.ls88{letter-spacing:12.961280pt;}
.ls87{letter-spacing:14.241472pt;}
.ls12{letter-spacing:14.878912pt;}
.ls1d{letter-spacing:16.801856pt;}
.ls57{letter-spacing:17.439296pt;}
.ls3e{letter-spacing:21.922624pt;}
.ls39{letter-spacing:30.241216pt;}
.ls89{letter-spacing:35.361984pt;}
.ls35{letter-spacing:58.240768pt;}
.ws1c1{word-spacing:-14.802432pt;}
.ws0{word-spacing:-14.678784pt;}
.wsc0{word-spacing:-14.596352pt;}
.ws107{word-spacing:-13.598720pt;}
.ws104{word-spacing:-13.566848pt;}
.ws105{word-spacing:-13.529664pt;}
.ws106{word-spacing:-13.513728pt;}
.ws3{word-spacing:-13.508416pt;}
.ws50{word-spacing:-13.492480pt;}
.ws1c3{word-spacing:-13.487168pt;}
.ws1c4{word-spacing:-13.481856pt;}
.ws2{word-spacing:-13.444672pt;}
.ws1c5{word-spacing:-13.439360pt;}
.ws51{word-spacing:-13.434048pt;}
.ws16a{word-spacing:-13.311872pt;}
.ws1{word-spacing:-13.280000pt;}
.ws108{word-spacing:-13.269376pt;}
.ws109{word-spacing:-13.258752pt;}
.ws16b{word-spacing:-13.210944pt;}
.ws52{word-spacing:-13.003776pt;}
.ws170{word-spacing:-11.335856pt;}
.ws16e{word-spacing:-11.284149pt;}
.ws16c{word-spacing:-11.017657pt;}
.ws16f{word-spacing:-10.755142pt;}
.ws16d{word-spacing:-10.695480pt;}
.ws1c2{word-spacing:-8.636544pt;}
.ws1b2{word-spacing:-0.457412pt;}
.wsb8{word-spacing:-0.253184pt;}
.ws1aa{word-spacing:-0.178987pt;}
.wse4{word-spacing:-0.116864pt;}
.ws1ca{word-spacing:-0.111552pt;}
.ws12b{word-spacing:-0.105984pt;}
.ws19e{word-spacing:-0.100928pt;}
.ws1ea{word-spacing:-0.095616pt;}
.ws72{word-spacing:-0.084992pt;}
.wse3{word-spacing:-0.063744pt;}
.wsb9{word-spacing:-0.058880pt;}
.ws1db{word-spacing:-0.058432pt;}
.ws1c6{word-spacing:-0.053120pt;}
.wsea{word-spacing:-0.047808pt;}
.wsc3{word-spacing:-0.042496pt;}
.ws1bf{word-spacing:-0.037184pt;}
.ws43{word-spacing:-0.026560pt;}
.ws199{word-spacing:-0.017664pt;}
.ws13f{word-spacing:-0.015936pt;}
.ws189{word-spacing:-0.011776pt;}
.wsc9{word-spacing:-0.010624pt;}
.ws7{word-spacing:0.000000pt;}
.ws17{word-spacing:0.005312pt;}
.wse5{word-spacing:0.005888pt;}
.wsc{word-spacing:0.006400pt;}
.ws4{word-spacing:0.007488pt;}
.ws81{word-spacing:0.010624pt;}
.ws6{word-spacing:0.012800pt;}
.ws188{word-spacing:0.015936pt;}
.ws137{word-spacing:0.017664pt;}
.wsce{word-spacing:0.021248pt;}
.ws1ad{word-spacing:0.027842pt;}
.ws9f{word-spacing:0.031872pt;}
.ws181{word-spacing:0.037184pt;}
.wsa{word-spacing:0.044800pt;}
.wsca{word-spacing:0.047104pt;}
.ws5{word-spacing:0.052416pt;}
.ws1a4{word-spacing:0.053120pt;}
.ws9{word-spacing:0.057600pt;}
.ws147{word-spacing:0.058432pt;}
.ws136{word-spacing:0.063744pt;}
.ws1ab{word-spacing:0.067617pt;}
.ws201{word-spacing:0.074368pt;}
.ws1a8{word-spacing:0.075572pt;}
.wsb{word-spacing:0.083200pt;}
.ws59{word-spacing:0.095616pt;}
.ws8{word-spacing:0.096000pt;}
.ws180{word-spacing:0.106240pt;}
.ws17f{word-spacing:0.111552pt;}
.ws75{word-spacing:0.122176pt;}
.ws184{word-spacing:0.127488pt;}
.ws1e2{word-spacing:0.132800pt;}
.ws1b3{word-spacing:0.143190pt;}
.ws1a9{word-spacing:0.155122pt;}
.ws1b7{word-spacing:0.167055pt;}
.ws1b6{word-spacing:0.182965pt;}
.ws1f2{word-spacing:0.185920pt;}
.ws1b4{word-spacing:0.190920pt;}
.ws1cc{word-spacing:0.211968pt;}
.ws1af{word-spacing:0.250582pt;}
.ws1a7{word-spacing:0.262515pt;}
.ws1c0{word-spacing:0.276224pt;}
.ws1bc{word-spacing:0.282402pt;}
.ws1b5{word-spacing:0.306267pt;}
.ws215{word-spacing:0.366528pt;}
.ws25{word-spacing:0.430272pt;}
.wsb7{word-spacing:0.451520pt;}
.wsda{word-spacing:0.472768pt;}
.ws1e9{word-spacing:0.483392pt;}
.ws15e{word-spacing:0.547136pt;}
.ws98{word-spacing:0.589632pt;}
.ws8a{word-spacing:0.594944pt;}
.ws1e0{word-spacing:0.637440pt;}
.ws111{word-spacing:0.642752pt;}
.wse{word-spacing:0.648064pt;}
.ws142{word-spacing:0.653376pt;}
.ws5a{word-spacing:0.664000pt;}
.ws198{word-spacing:0.759616pt;}
.ws1bb{word-spacing:0.759701pt;}
.ws1ae{word-spacing:0.771634pt;}
.ws1b9{word-spacing:0.807431pt;}
.ws1be{word-spacing:0.815386pt;}
.ws1ac{word-spacing:0.819364pt;}
.ws1b8{word-spacing:0.823341pt;}
.ws138{word-spacing:0.828672pt;}
.ws1b1{word-spacing:0.831296pt;}
.ws1b0{word-spacing:0.851184pt;}
.ws1ba{word-spacing:0.855161pt;}
.ws1bd{word-spacing:0.898913pt;}
.ws192{word-spacing:1.258944pt;}
.wscb{word-spacing:1.264256pt;}
.wsd3{word-spacing:1.274880pt;}
.wsbd{word-spacing:1.296128pt;}
.ws1d4{word-spacing:1.301440pt;}
.ws1d1{word-spacing:1.349248pt;}
.ws27{word-spacing:1.397056pt;}
.ws57{word-spacing:1.630784pt;}
.ws18a{word-spacing:1.742336pt;}
.ws56{word-spacing:1.795456pt;}
.ws89{word-spacing:1.832640pt;}
.ws4c{word-spacing:1.853888pt;}
.ws12{word-spacing:1.864512pt;}
.wse2{word-spacing:1.875136pt;}
.ws1c{word-spacing:1.880448pt;}
.ws155{word-spacing:1.896384pt;}
.ws120{word-spacing:1.912320pt;}
.ws19d{word-spacing:1.928256pt;}
.ws116{word-spacing:1.938880pt;}
.ws1d3{word-spacing:1.944192pt;}
.ws22{word-spacing:1.949504pt;}
.wsa8{word-spacing:2.342592pt;}
.ws55{word-spacing:2.464768pt;}
.ws86{word-spacing:2.475392pt;}
.wsac{word-spacing:2.491328pt;}
.ws97{word-spacing:2.507264pt;}
.ws1c8{word-spacing:2.512576pt;}
.ws171{word-spacing:2.539136pt;}
.ws15{word-spacing:2.555072pt;}
.ws175{word-spacing:2.571008pt;}
.ws24{word-spacing:2.586944pt;}
.ws185{word-spacing:2.693184pt;}
.wsd8{word-spacing:2.698496pt;}
.wsab{word-spacing:3.144704pt;}
.ws61{word-spacing:3.165952pt;}
.ws13{word-spacing:3.171264pt;}
.ws58{word-spacing:3.176576pt;}
.ws6e{word-spacing:3.187200pt;}
.ws125{word-spacing:3.213760pt;}
.ws18d{word-spacing:3.224384pt;}
.ws95{word-spacing:3.229696pt;}
.wsc2{word-spacing:3.235008pt;}
.ws135{word-spacing:3.240320pt;}
.wsbf{word-spacing:3.782144pt;}
.ws183{word-spacing:3.792768pt;}
.wsdf{word-spacing:3.803392pt;}
.ws5f{word-spacing:3.808704pt;}
.wsc8{word-spacing:3.824640pt;}
.ws37{word-spacing:3.840576pt;}
.ws11a{word-spacing:3.856512pt;}
.wse9{word-spacing:3.861824pt;}
.wsb1{word-spacing:3.877760pt;}
.ws186{word-spacing:3.941504pt;}
.ws10c{word-spacing:4.419584pt;}
.ws195{word-spacing:4.424896pt;}
.ws159{word-spacing:4.435520pt;}
.ws82{word-spacing:4.483328pt;}
.ws194{word-spacing:4.488640pt;}
.ws92{word-spacing:4.493952pt;}
.ws67{word-spacing:4.499264pt;}
.ws9d{word-spacing:4.504576pt;}
.ws19{word-spacing:4.536448pt;}
.wsfc{word-spacing:4.568320pt;}
.ws10e{word-spacing:4.589568pt;}
.ws64{word-spacing:4.605504pt;}
.ws1f0{word-spacing:4.913600pt;}
.ws213{word-spacing:4.945472pt;}
.ws21{word-spacing:5.051712pt;}
.ws19b{word-spacing:5.115456pt;}
.ws1cf{word-spacing:5.131392pt;}
.wse0{word-spacing:5.136704pt;}
.wsf1{word-spacing:5.157952pt;}
.ws93{word-spacing:5.163264pt;}
.ws167{word-spacing:5.253568pt;}
.ws1fa{word-spacing:5.269504pt;}
.ws168{word-spacing:5.407616pt;}
.wsf{word-spacing:5.678528pt;}
.ws182{word-spacing:5.699776pt;}
.ws113{word-spacing:5.705088pt;}
.ws130{word-spacing:5.715712pt;}
.ws146{word-spacing:5.763520pt;}
.ws45{word-spacing:5.768832pt;}
.wsa2{word-spacing:5.800704pt;}
.ws9a{word-spacing:5.816640pt;}
.ws10d{word-spacing:6.310656pt;}
.ws1fe{word-spacing:6.326592pt;}
.ws1fb{word-spacing:6.331904pt;}
.wsd9{word-spacing:6.337216pt;}
.ws9e{word-spacing:6.347840pt;}
.ws90{word-spacing:6.374400pt;}
.ws3b{word-spacing:6.395648pt;}
.ws2f{word-spacing:6.400960pt;}
.ws44{word-spacing:6.422208pt;}
.ws1da{word-spacing:6.432832pt;}
.wsae{word-spacing:6.438144pt;}
.ws1ff{word-spacing:6.459392pt;}
.ws15a{word-spacing:6.480640pt;}
.ws19f{word-spacing:6.528448pt;}
.wscc{word-spacing:6.560320pt;}
.ws1a0{word-spacing:6.964032pt;}
.ws29{word-spacing:6.990592pt;}
.ws2a{word-spacing:7.022464pt;}
.ws1f{word-spacing:7.054336pt;}
.ws54{word-spacing:7.059648pt;}
.wsf5{word-spacing:7.064960pt;}
.ws14d{word-spacing:7.070272pt;}
.wsb6{word-spacing:7.086208pt;}
.ws6d{word-spacing:7.155264pt;}
.wsd0{word-spacing:7.176512pt;}
.ws100{word-spacing:7.617408pt;}
.wsf3{word-spacing:7.675840pt;}
.wsa0{word-spacing:7.681152pt;}
.ws71{word-spacing:7.697088pt;}
.wsf4{word-spacing:7.808640pt;}
.wsa6{word-spacing:8.233600pt;}
.ws14a{word-spacing:8.249536pt;}
.ws1f3{word-spacing:8.260160pt;}
.ws119{word-spacing:8.292032pt;}
.ws13d{word-spacing:8.313280pt;}
.ws112{word-spacing:8.323904pt;}
.wsaf{word-spacing:8.329216pt;}
.ws1d7{word-spacing:8.361088pt;}
.ws1d6{word-spacing:8.414208pt;}
.ws7d{word-spacing:8.472640pt;}
.ws5b{word-spacing:8.844480pt;}
.ws174{word-spacing:8.908224pt;}
.wsa5{word-spacing:8.913536pt;}
.ws5d{word-spacing:8.934784pt;}
.ws128{word-spacing:8.940096pt;}
.wsdd{word-spacing:8.950720pt;}
.wsdc{word-spacing:8.966656pt;}
.ws115{word-spacing:8.982592pt;}
.ws179{word-spacing:9.136640pt;}
.wsfe{word-spacing:9.519104pt;}
.ws1d8{word-spacing:9.593472pt;}
.ws10f{word-spacing:9.614720pt;}
.ws123{word-spacing:9.620032pt;}
.ws47{word-spacing:9.625344pt;}
.ws17c{word-spacing:9.630656pt;}
.ws60{word-spacing:9.641280pt;}
.ws6c{word-spacing:9.731584pt;}
.ws10b{word-spacing:9.742208pt;}
.ws11c{word-spacing:10.119360pt;}
.ws127{word-spacing:10.183104pt;}
.wsaa{word-spacing:10.188416pt;}
.wsdb{word-spacing:10.204352pt;}
.ws8e{word-spacing:10.220288pt;}
.wsba{word-spacing:10.230912pt;}
.wsad{word-spacing:10.236224pt;}
.ws11d{word-spacing:10.252160pt;}
.wsf9{word-spacing:10.273408pt;}
.ws10a{word-spacing:10.289344pt;}
.ws99{word-spacing:10.390272pt;}
.ws18c{word-spacing:10.719616pt;}
.wsbb{word-spacing:10.847104pt;}
.ws20{word-spacing:10.889600pt;}
.ws3e{word-spacing:10.910848pt;}
.ws11{word-spacing:10.916160pt;}
.ws3f{word-spacing:11.484544pt;}
.wsa1{word-spacing:11.527040pt;}
.ws28{word-spacing:11.558912pt;}
.wsf2{word-spacing:11.564224pt;}
.ws18{word-spacing:11.574848pt;}
.ws173{word-spacing:11.590784pt;}
.ws129{word-spacing:11.957312pt;}
.ws196{word-spacing:12.095424pt;}
.wsb0{word-spacing:12.132608pt;}
.ws154{word-spacing:12.164480pt;}
.ws1cd{word-spacing:12.185728pt;}
.ws40{word-spacing:12.270720pt;}
.ws12c{word-spacing:12.291968pt;}
.ws1fd{word-spacing:12.690368pt;}
.ws12e{word-spacing:12.748800pt;}
.wsa4{word-spacing:12.759424pt;}
.ws42{word-spacing:12.791296pt;}
.ws1d9{word-spacing:12.807232pt;}
.ws6b{word-spacing:12.812544pt;}
.ws10{word-spacing:12.823168pt;}
.ws68{word-spacing:12.828480pt;}
.ws87{word-spacing:12.833792pt;}
.ws1dd{word-spacing:12.849728pt;}
.ws101{word-spacing:12.971904pt;}
.ws1fc{word-spacing:13.232192pt;}
.wsd{word-spacing:13.375616pt;}
.ws14b{word-spacing:13.449984pt;}
.ws2d{word-spacing:13.487168pt;}
.ws1f6{word-spacing:13.970560pt;}
.ws76{word-spacing:14.028992pt;}
.ws208{word-spacing:14.039616pt;}
.ws94{word-spacing:14.044928pt;}
.ws169{word-spacing:14.066176pt;}
.ws73{word-spacing:14.076800pt;}
.ws102{word-spacing:14.087424pt;}
.wsd6{word-spacing:14.092736pt;}
.ws78{word-spacing:14.103360pt;}
.ws1d{word-spacing:14.108672pt;}
.ws150{word-spacing:14.204288pt;}
.ws77{word-spacing:14.209600pt;}
.ws14f{word-spacing:14.315840pt;}
.ws2b{word-spacing:14.586752pt;}
.ws2c{word-spacing:14.623936pt;}
.ws14e{word-spacing:14.629248pt;}
.ws158{word-spacing:14.719552pt;}
.ws17e{word-spacing:14.730176pt;}
.ws4e{word-spacing:14.756736pt;}
.ws1f5{word-spacing:14.809856pt;}
.ws200{word-spacing:14.820480pt;}
.ws165{word-spacing:15.298560pt;}
.ws85{word-spacing:15.309184pt;}
.ws126{word-spacing:15.314496pt;}
.ws1d2{word-spacing:15.346368pt;}
.ws139{word-spacing:15.356992pt;}
.wsef{word-spacing:15.404800pt;}
.ws133{word-spacing:15.537600pt;}
.ws15f{word-spacing:15.994432pt;}
.ws91{word-spacing:16.148480pt;}
.ws18b{word-spacing:16.456576pt;}
.ws4b{word-spacing:16.557504pt;}
.ws204{word-spacing:16.568128pt;}
.wsc5{word-spacing:16.589376pt;}
.ws1de{word-spacing:16.600000pt;}
.wsde{word-spacing:16.626560pt;}
.ws160{word-spacing:16.637184pt;}
.ws151{word-spacing:16.658432pt;}
.ws140{word-spacing:17.221504pt;}
.ws4a{word-spacing:17.232128pt;}
.wse1{word-spacing:17.274624pt;}
.wsbe{word-spacing:17.285248pt;}
.ws1dc{word-spacing:17.301184pt;}
.wsa9{word-spacing:17.370240pt;}
.ws141{word-spacing:17.380864pt;}
.ws1f9{word-spacing:17.837696pt;}
.ws121{word-spacing:17.874880pt;}
.ws110{word-spacing:17.896128pt;}
.ws178{word-spacing:17.901440pt;}
.wsd2{word-spacing:17.922688pt;}
.ws39{word-spacing:17.928000pt;}
.ws7c{word-spacing:17.943936pt;}
.ws1b{word-spacing:17.949248pt;}
.ws145{word-spacing:18.018304pt;}
.ws1c7{word-spacing:18.533568pt;}
.ws144{word-spacing:18.549504pt;}
.ws9c{word-spacing:18.576064pt;}
.ws38{word-spacing:18.581376pt;}
.wsc6{word-spacing:18.586688pt;}
.ws49{word-spacing:18.592000pt;}
.ws13b{word-spacing:19.112576pt;}
.ws62{word-spacing:19.165696pt;}
.wse8{word-spacing:19.213504pt;}
.ws162{word-spacing:19.649088pt;}
.ws1a5{word-spacing:19.734080pt;}
.ws122{word-spacing:19.824384pt;}
.ws8d{word-spacing:19.840320pt;}
.ws17d{word-spacing:19.845632pt;}
.ws143{word-spacing:19.861568pt;}
.ws3c{word-spacing:19.866880pt;}
.ws118{word-spacing:19.973120pt;}
.wsd1{word-spacing:20.440576pt;}
.wsfd{word-spacing:20.451200pt;}
.wsee{word-spacing:20.461824pt;}
.wse7{word-spacing:20.472448pt;}
.ws14{word-spacing:20.520256pt;}
.ws17a{word-spacing:21.051456pt;}
.ws46{word-spacing:21.104576pt;}
.ws30{word-spacing:21.120512pt;}
.wsc7{word-spacing:21.141760pt;}
.wsd7{word-spacing:21.232064pt;}
.ws190{word-spacing:21.683584pt;}
.ws1f1{word-spacing:21.699520pt;}
.ws20c{word-spacing:21.704832pt;}
.ws212{word-spacing:21.731392pt;}
.ws31{word-spacing:21.757952pt;}
.ws74{word-spacing:21.763264pt;}
.ws7f{word-spacing:21.779200pt;}
.ws117{word-spacing:22.347584pt;}
.ws193{word-spacing:22.352896pt;}
.ws8f{word-spacing:22.379456pt;}
.ws16{word-spacing:22.586624pt;}
.ws69{word-spacing:22.995648pt;}
.ws96{word-spacing:23.043456pt;}
.ws172{word-spacing:23.075328pt;}
.ws5c{word-spacing:23.654336pt;}
.ws1e4{word-spacing:23.686208pt;}
.ws6f{word-spacing:23.696832pt;}
.wseb{word-spacing:23.707456pt;}
.wse6{word-spacing:23.723392pt;}
.ws187{word-spacing:24.153664pt;}
.ws132{word-spacing:24.328960pt;}
.ws17b{word-spacing:24.344896pt;}
.wsd5{word-spacing:24.424576pt;}
.wsd4{word-spacing:24.876096pt;}
.ws80{word-spacing:24.923904pt;}
.ws4f{word-spacing:24.955776pt;}
.wsbc{word-spacing:24.977024pt;}
.ws3a{word-spacing:25.067328pt;}
.ws18f{word-spacing:25.311680pt;}
.ws20d{word-spacing:25.550720pt;}
.wsa3{word-spacing:25.593216pt;}
.ws65{word-spacing:25.609152pt;}
.ws1e{word-spacing:25.625088pt;}
.ws12a{word-spacing:25.630400pt;}
.ws191{word-spacing:25.752576pt;}
.ws18e{word-spacing:26.023488pt;}
.ws214{word-spacing:26.097856pt;}
.ws1ec{word-spacing:26.156288pt;}
.wsed{word-spacing:26.241280pt;}
.ws4d{word-spacing:26.273152pt;}
.ws41{word-spacing:26.283776pt;}
.ws148{word-spacing:26.793728pt;}
.wscd{word-spacing:26.857472pt;}
.ws149{word-spacing:26.873408pt;}
.ws209{word-spacing:27.000896pt;}
.ws103{word-spacing:27.542720pt;}
.wsb4{word-spacing:27.558656pt;}
.wsf0{word-spacing:28.153600pt;}
.wscf{word-spacing:28.307648pt;}
.ws1e7{word-spacing:28.679488pt;}
.wsc4{word-spacing:28.785728pt;}
.ws1eb{word-spacing:29.370048pt;}
.ws5e{word-spacing:29.391296pt;}
.ws1a3{word-spacing:29.417856pt;}
.ws3d{word-spacing:29.439104pt;}
.ws11b{word-spacing:29.449728pt;}
.ws13e{word-spacing:29.476288pt;}
.ws1f4{word-spacing:29.577216pt;}
.ws114{word-spacing:29.609088pt;}
.ws83{word-spacing:30.007488pt;}
.ws84{word-spacing:30.113728pt;}
.ws48{word-spacing:30.655552pt;}
.ws1df{word-spacing:30.708672pt;}
.ws13c{word-spacing:30.724608pt;}
.wsec{word-spacing:30.740544pt;}
.ws14c{word-spacing:30.825536pt;}
.ws197{word-spacing:31.298304pt;}
.ws1a{word-spacing:31.356736pt;}
.ws63{word-spacing:31.367360pt;}
.wsf7{word-spacing:31.399232pt;}
.ws23{word-spacing:32.004800pt;}
.wsfb{word-spacing:32.026048pt;}
.wsb2{word-spacing:32.620992pt;}
.ws152{word-spacing:33.237184pt;}
.ws177{word-spacing:33.242496pt;}
.ws9b{word-spacing:33.311552pt;}
.ws163{word-spacing:33.816192pt;}
.ws12f{word-spacing:33.943680pt;}
.ws131{word-spacing:34.496128pt;}
.ws166{word-spacing:34.506752pt;}
.ws153{word-spacing:34.570496pt;}
.ws12d{word-spacing:34.612992pt;}
.ws20f{word-spacing:35.091072pt;}
.wsf8{word-spacing:35.850688pt;}
.ws15d{word-spacing:35.930368pt;}
.ws1ef{word-spacing:36.392512pt;}
.ws15c{word-spacing:36.397824pt;}
.ws134{word-spacing:36.796224pt;}
.ws1e3{word-spacing:36.870656pt;}
.ws1c9{word-spacing:37.072448pt;}
.ws203{word-spacing:37.077760pt;}
.ws32{word-spacing:37.120256pt;}
.ws11f{word-spacing:37.189312pt;}
.ws8b{word-spacing:37.221184pt;}
.ws26{word-spacing:37.312256pt;}
.wsc1{word-spacing:39.000704pt;}
.ws19c{word-spacing:39.154752pt;}
.wsfa{word-spacing:39.792192pt;}
.ws124{word-spacing:40.344640pt;}
.ws53{word-spacing:40.944896pt;}
.ws2e{word-spacing:40.950208pt;}
.ws19a{word-spacing:40.976768pt;}
.ws88{word-spacing:40.982080pt;}
.ws7b{word-spacing:41.093632pt;}
.ws1d5{word-spacing:41.385792pt;}
.ws164{word-spacing:41.555776pt;}
.ws13a{word-spacing:41.608896pt;}
.wsb5{word-spacing:41.720448pt;}
.ws11e{word-spacing:42.225088pt;}
.ws8c{word-spacing:43.011264pt;}
.ws20e{word-spacing:43.361856pt;}
.ws15b{word-spacing:43.441536pt;}
.ws211{word-spacing:43.563712pt;}
.ws33{word-spacing:43.574336pt;}
.wsf6{word-spacing:43.724288pt;}
.ws210{word-spacing:44.148032pt;}
.ws36{word-spacing:44.179904pt;}
.ws6a{word-spacing:44.195840pt;}
.ws34{word-spacing:44.764224pt;}
.ws161{word-spacing:44.801408pt;}
.ws35{word-spacing:44.822656pt;}
.ws1ee{word-spacing:45.778816pt;}
.ws1e5{word-spacing:46.081600pt;}
.ws1e6{word-spacing:46.155968pt;}
.ws1e1{word-spacing:46.724352pt;}
.ws206{word-spacing:47.074944pt;}
.ws20b{word-spacing:48.004544pt;}
.ws7e{word-spacing:48.020480pt;}
.ws7a{word-spacing:48.647296pt;}
.ws20a{word-spacing:49.821248pt;}
.ws1a6{word-spacing:50.554304pt;}
.ws1cb{word-spacing:51.845120pt;}
.ws202{word-spacing:53.109376pt;}
.ws79{word-spacing:54.984512pt;}
.ws1a1{word-spacing:57.592704pt;}
.ws157{word-spacing:58.235456pt;}
.ws156{word-spacing:58.947264pt;}
.ws1ed{word-spacing:59.988416pt;}
.ws1d0{word-spacing:60.200896pt;}
.ws207{word-spacing:61.385472pt;}
.ws176{word-spacing:61.443904pt;}
.wsa7{word-spacing:61.481088pt;}
.ws1ce{word-spacing:66.065344pt;}
.wsb3{word-spacing:68.418560pt;}
.ws1e8{word-spacing:70.224640pt;}
.ws66{word-spacing:70.437120pt;}
.wsff{word-spacing:73.034688pt;}
.ws205{word-spacing:74.059904pt;}
.ws1f8{word-spacing:74.213952pt;}
.ws1f7{word-spacing:74.814208pt;}
.ws1a2{word-spacing:89.576256pt;}
.ws70{word-spacing:102.457856pt;}
._13{margin-left:-41.577024pt;}
._12{margin-left:-33.215936pt;}
._14{margin-left:-28.791040pt;}
._15{margin-left:-10.238080pt;}
._f{margin-left:-9.009152pt;}
._5{margin-left:-7.924608pt;}
._2{margin-left:-6.012864pt;}
._3{margin-left:-3.991104pt;}
._4{margin-left:-2.182400pt;}
._1{margin-left:-1.138176pt;}
._0{width:1.048320pt;}
._a{width:3.899008pt;}
._10{width:11.537664pt;}
._11{width:13.444672pt;}
._8{width:16.161728pt;}
._9{width:22.894720pt;}
._6{width:24.577536pt;}
._7{width:37.117952pt;}
._e{width:45.770368pt;}
._d{width:305.180129pt;}
._c{width:407.278999pt;}
._b{width:413.883294pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:39.774933pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y168{bottom:81.068827pt;}
.y2d{bottom:81.388123pt;}
.y12f{bottom:83.787771pt;}
.y1cd{bottom:84.587067pt;}
.y10b{bottom:86.351392pt;}
.y88{bottom:89.720827pt;}
.yc3{bottom:91.788187pt;}
.y205{bottom:92.429147pt;}
.y4f{bottom:92.435755pt;}
.y167{bottom:96.428475pt;}
.y2c{bottom:96.747771pt;}
.y12e{bottom:99.147419pt;}
.y10a{bottom:101.711040pt;}
.y87{bottom:105.080475pt;}
.yc2{bottom:107.147835pt;}
.y204{bottom:107.788795pt;}
.y4e{bottom:107.795403pt;}
.y166{bottom:111.788123pt;}
.y2b{bottom:112.107419pt;}
.y12d{bottom:114.507067pt;}
.y109{bottom:117.070688pt;}
.y86{bottom:120.440123pt;}
.yc1{bottom:122.507483pt;}
.y203{bottom:123.148443pt;}
.y4d{bottom:123.155051pt;}
.y165{bottom:127.147771pt;}
.y2a{bottom:127.467067pt;}
.ye0{bottom:130.673211pt;}
.y1b5{bottom:130.827063pt;}
.y1cc{bottom:130.987063pt;}
.y108{bottom:132.430336pt;}
.y1b7{bottom:134.506780pt;}
.y85{bottom:135.799771pt;}
.y12c{bottom:137.707067pt;}
.yc0{bottom:137.867131pt;}
.y4c{bottom:138.514699pt;}
.y164{bottom:142.507419pt;}
.y29{bottom:142.667067pt;}
.y1cb{bottom:142.827067pt;}
.ydf{bottom:146.032859pt;}
.y202{bottom:146.507963pt;}
.y107{bottom:147.789984pt;}
.y84{bottom:151.000059pt;}
.ybf{bottom:153.067419pt;}
.y4b{bottom:153.874347pt;}
.y12b{bottom:154.670843pt;}
.y163{bottom:157.867067pt;}
.y28{bottom:159.633499pt;}
.yde{bottom:161.392507pt;}
.y201{bottom:161.708251pt;}
.y106{bottom:162.990272pt;}
.y83{bottom:166.359707pt;}
.ybe{bottom:168.427067pt;}
.y4a{bottom:169.074635pt;}
.y12a{bottom:170.030491pt;}
.y1b2{bottom:174.827067pt;}
.y27{bottom:174.993147pt;}
.y1b1{bottom:175.147200pt;}
.ydd{bottom:176.592795pt;}
.y200{bottom:177.067899pt;}
.y105{bottom:178.349920pt;}
.y162{bottom:181.067067pt;}
.y1bf{bottom:181.547067pt;}
.y236{bottom:181.560523pt;}
.y82{bottom:181.719355pt;}
.y1b4{bottom:184.107063pt;}
.y49{bottom:184.434283pt;}
.y129{bottom:185.390139pt;}
.y26{bottom:190.193435pt;}
.y1b0{bottom:191.627067pt;}
.ybd{bottom:191.787067pt;}
.ydc{bottom:191.952443pt;}
.y1ae{bottom:192.267067pt;}
.y104{bottom:193.709568pt;}
.y1b3{bottom:195.947067pt;}
.y81{bottom:197.079003pt;}
.y1b6{bottom:197.547067pt;}
.y161{bottom:198.039595pt;}
.y48{bottom:199.793931pt;}
.y1ff{bottom:200.427419pt;}
.y128{bottom:200.590427pt;}
.y235{bottom:204.920043pt;}
.y25{bottom:205.553083pt;}
.ydb{bottom:207.312091pt;}
.ybc{bottom:208.587067pt;}
.y80{bottom:212.438651pt;}
.y160{bottom:213.399243pt;}
.y47{bottom:215.153579pt;}
.y1fe{bottom:215.787483pt;}
.y127{bottom:215.950075pt;}
.y103{bottom:217.069088pt;}
.y24{bottom:220.912731pt;}
.y1c9{bottom:221.867063pt;}
.yda{bottom:222.671739pt;}
.ybb{bottom:223.947067pt;}
.y234{bottom:228.279563pt;}
.y15f{bottom:228.599531pt;}
.y46{bottom:230.513227pt;}
.y1fd{bottom:231.147131pt;}
.y126{bottom:231.309723pt;}
.y1bb{bottom:231.787063pt;}
.y102{bottom:232.428736pt;}
.y1c8{bottom:233.707067pt;}
.y7f{bottom:235.638811pt;}
.y23{bottom:236.272379pt;}
.yd9{bottom:238.031387pt;}
.y1ca{bottom:239.787067pt;}
.yba{bottom:240.932219pt;}
.y1ba{bottom:243.627067pt;}
.y15e{bottom:243.959179pt;}
.y1c5{bottom:245.386966pt;}
.y45{bottom:245.713515pt;}
.y1fc{bottom:246.506779pt;}
.y125{bottom:246.669371pt;}
.y101{bottom:247.788384pt;}
.y7e{bottom:250.998459pt;}
.y233{bottom:251.479723pt;}
.y22{bottom:251.632027pt;}
.yd8{bottom:253.391035pt;}
.yb9{bottom:256.291867pt;}
.y1c4{bottom:257.387063pt;}
.y15d{bottom:259.318827pt;}
.y1fb{bottom:261.707067pt;}
.y124{bottom:262.029019pt;}
.y100{bottom:262.988672pt;}
.y7d{bottom:266.358107pt;}
.y21{bottom:266.991675pt;}
.y1c6{bottom:267.787067pt;}
.y44{bottom:269.073035pt;}
.yb8{bottom:271.492155pt;}
.y1c3{bottom:273.387060pt;}
.y15c{bottom:274.678475pt;}
.y232{bottom:274.839243pt;}
.yd7{bottom:276.591195pt;}
.y1fa{bottom:277.067067pt;}
.y123{bottom:277.388667pt;}
.yff{bottom:278.348320pt;}
.y7c{bottom:281.717755pt;}
.y20{bottom:282.191963pt;}
.y43{bottom:284.432683pt;}
.y1c2{bottom:285.227063pt;}
.yb7{bottom:286.851803pt;}
.y15b{bottom:290.038123pt;}
.y231{bottom:290.198891pt;}
.yd6{bottom:291.950843pt;}
.yfe{bottom:293.707968pt;}
.y1f9{bottom:294.027835pt;}
.y1c1{bottom:297.067067pt;}
.y7b{bottom:297.077403pt;}
.y1c7{bottom:297.547666pt;}
.y1f{bottom:297.551611pt;}
.y42{bottom:299.792331pt;}
.y122{bottom:300.588827pt;}
.yb6{bottom:302.211451pt;}
.y1b9{bottom:302.507063pt;}
.y15a{bottom:305.397771pt;}
.y230{bottom:305.558539pt;}
.yd5{bottom:307.310491pt;}
.yfd{bottom:309.067616pt;}
.y1f8{bottom:309.228123pt;}
.y1e{bottom:312.911259pt;}
.y1b8{bottom:314.347067pt;}
.y41{bottom:315.151979pt;}
.y121{bottom:315.948475pt;}
.yb5{bottom:317.571099pt;}
.y7a{bottom:320.436923pt;}
.y159{bottom:320.598059pt;}
.yd4{bottom:322.670139pt;}
.yfc{bottom:324.427264pt;}
.y1f7{bottom:324.587771pt;}
.y1be{bottom:326.507063pt;}
.y1d{bottom:328.270907pt;}
.y22f{bottom:328.918059pt;}
.y40{bottom:330.511627pt;}
.y120{bottom:331.308123pt;}
.yb4{bottom:332.930747pt;}
.y1bd{bottom:334.347063pt;}
.y79{bottom:335.637211pt;}
.y158{bottom:335.957707pt;}
.yd3{bottom:338.029787pt;}
.yfb{bottom:339.627552pt;}
.y1f6{bottom:339.947419pt;}
.y1c{bottom:343.630555pt;}
.y22e{bottom:344.277707pt;}
.y1af{bottom:345.067200pt;}
.y3f{bottom:345.711915pt;}
.y1bc{bottom:346.187067pt;}
.y11f{bottom:346.667771pt;}
.yb3{bottom:348.290395pt;}
.y1c0{bottom:350.187200pt;}
.y78{bottom:350.996859pt;}
.y157{bottom:351.317355pt;}
.yd2{bottom:353.230075pt;}
.yfa{bottom:354.987200pt;}
.y1f5{bottom:355.307067pt;}
.y1b{bottom:358.830843pt;}
.y22d{bottom:359.477995pt;}
.y3e{bottom:361.071563pt;}
.y11e{bottom:362.027419pt;}
.yb2{bottom:363.490683pt;}
.y77{bottom:366.356507pt;}
.yd1{bottom:368.589723pt;}
.y1a{bottom:374.190491pt;}
.y156{bottom:374.676875pt;}
.y22c{bottom:375.477739pt;}
.y3d{bottom:376.431211pt;}
.y11d{bottom:377.387067pt;}
.yf9{bottom:378.347067pt;}
.y1f4{bottom:378.507067pt;}
.yb1{bottom:378.850331pt;}
.yd0{bottom:383.949371pt;}
.y19{bottom:389.550139pt;}
.y155{bottom:390.036523pt;}
.y76{bottom:390.676171pt;}
.y1ad{bottom:390.831035pt;}
.y3c{bottom:391.790859pt;}
.y22b{bottom:392.918363pt;}
.yb0{bottom:394.209979pt;}
.yf8{bottom:395.307067pt;}
.y1f3{bottom:395.473696pt;}
.ycf{bottom:399.309019pt;}
.y11c{bottom:400.587067pt;}
.y18{bottom:404.909787pt;}
.y154{bottom:405.396171pt;}
.y75{bottom:406.035819pt;}
.y3b{bottom:407.150507pt;}
.y22a{bottom:408.118651pt;}
.y187{bottom:408.586779pt;}
.yaf{bottom:409.569627pt;}
.yf7{bottom:410.507131pt;}
.y1f2{bottom:410.833344pt;}
.y1ac{bottom:411.790859pt;}
.yce{bottom:414.668667pt;}
.y11b{bottom:417.556219pt;}
.y153{bottom:420.596459pt;}
.y74{bottom:421.236107pt;}
.y3a{bottom:422.510155pt;}
.y229{bottom:423.478299pt;}
.y186{bottom:423.787067pt;}
.y1f1{bottom:426.192992pt;}
.y1ab{bottom:427.150507pt;}
.yf6{bottom:427.307067pt;}
.y17{bottom:428.269307pt;}
.ycd{bottom:430.028315pt;}
.y11a{bottom:432.915867pt;}
.yae{bottom:432.929147pt;}
.y152{bottom:435.956107pt;}
.y39{bottom:437.710443pt;}
.y228{bottom:438.837947pt;}
.y1f0{bottom:441.552640pt;}
.y1aa{bottom:442.510155pt;}
.y16{bottom:443.628955pt;}
.yf5{bottom:444.271259pt;}
.ycc{bottom:445.228603pt;}
.y73{bottom:445.555771pt;}
.y185{bottom:447.147200pt;}
.y119{bottom:448.116155pt;}
.yad{bottom:448.129435pt;}
.y151{bottom:451.315755pt;}
.y38{bottom:453.070091pt;}
.y1ef{bottom:456.752928pt;}
.y1a9{bottom:457.710443pt;}
.y15{bottom:458.829243pt;}
.yf4{bottom:459.630907pt;}
.y72{bottom:460.915419pt;}
.y227{bottom:462.197467pt;}
.y118{bottom:463.475803pt;}
.yac{bottom:463.489083pt;}
.y184{bottom:464.114571pt;}
.y37{bottom:468.429739pt;}
.ycb{bottom:468.588123pt;}
.y1ee{bottom:472.112576pt;}
.y14{bottom:474.188891pt;}
.y150{bottom:474.675275pt;}
.yf3{bottom:474.990555pt;}
.y226{bottom:477.557115pt;}
.y117{bottom:478.835451pt;}
.yab{bottom:478.848731pt;}
.y183{bottom:479.474219pt;}
.y1a8{bottom:482.030107pt;}
.y36{bottom:483.789387pt;}
.yca{bottom:483.947771pt;}
.y71{bottom:485.235083pt;}
.y13{bottom:489.548539pt;}
.y14f{bottom:490.034923pt;}
.yf2{bottom:490.350203pt;}
.y225{bottom:492.916763pt;}
.y116{bottom:494.195099pt;}
.yaa{bottom:494.208379pt;}
.y182{bottom:494.674507pt;}
.y1ed{bottom:495.472096pt;}
.y1a7{bottom:497.389755pt;}
.y35{bottom:499.149035pt;}
.yc9{bottom:499.307419pt;}
.y70{bottom:500.594731pt;}
.y12{bottom:504.908187pt;}
.y14e{bottom:505.235211pt;}
.yf1{bottom:505.550491pt;}
.y224{bottom:508.117051pt;}
.y115{bottom:509.554747pt;}
.ya9{bottom:509.568027pt;}
.y181{bottom:510.034155pt;}
.y1ec{bottom:510.831744pt;}
.y1a6{bottom:512.749403pt;}
.y34{bottom:514.349323pt;}
.yc8{bottom:514.667067pt;}
.y11{bottom:520.267835pt;}
.y14d{bottom:520.594859pt;}
.yf0{bottom:520.910139pt;}
.y223{bottom:523.476699pt;}
.y6f{bottom:524.914395pt;}
.ya8{bottom:524.927675pt;}
.y180{bottom:525.393803pt;}
.y1eb{bottom:526.191392pt;}
.y33{bottom:529.708971pt;}
.y10{bottom:535.627483pt;}
.y14c{bottom:535.954507pt;}
.yef{bottom:536.269787pt;}
.y1a5{bottom:537.069067pt;}
.yc7{bottom:537.867067pt;}
.y222{bottom:538.836347pt;}
.y6e{bottom:540.114683pt;}
.ya7{bottom:540.127963pt;}
.y1ea{bottom:541.551040pt;}
.y32{bottom:545.068619pt;}
.y17f{bottom:548.753323pt;}
.yf{bottom:550.827771pt;}
.y14b{bottom:551.314155pt;}
.yee{bottom:551.629435pt;}
.y1a4{bottom:552.269355pt;}
.yc6{bottom:554.827547pt;}
.y6d{bottom:555.474331pt;}
.ya6{bottom:555.487611pt;}
.y1e9{bottom:556.751328pt;}
.y31{bottom:560.428267pt;}
.y221{bottom:562.195867pt;}
.y17e{bottom:564.112971pt;}
.ye{bottom:566.187419pt;}
.y14a{bottom:566.673803pt;}
.yed{bottom:566.989083pt;}
.y1a3{bottom:567.629003pt;}
.y6c{bottom:570.833979pt;}
.ya5{bottom:570.847259pt;}
.y1e8{bottom:572.110976pt;}
.y30{bottom:575.787915pt;}
.y220{bottom:577.555515pt;}
.yc5{bottom:578.187067pt;}
.y17d{bottom:579.313259pt;}
.yd{bottom:581.547067pt;}
.yec{bottom:582.348731pt;}
.y1a2{bottom:582.988651pt;}
.y6b{bottom:586.193627pt;}
.ya4{bottom:586.206907pt;}
.y1e7{bottom:587.470624pt;}
.y149{bottom:590.033323pt;}
.y2f{bottom:591.147563pt;}
.y21f{bottom:592.915163pt;}
.yeb{bottom:597.549019pt;}
.y6a{bottom:601.553275pt;}
.ya3{bottom:601.566555pt;}
.y17c{bottom:603.632923pt;}
.yc{bottom:604.747067pt;}
.y148{bottom:605.233611pt;}
.y2e{bottom:606.347851pt;}
.y1a1{bottom:607.308315pt;}
.y21e{bottom:608.115451pt;}
.y114{bottom:609.553147pt;}
.y1e6{bottom:610.830144pt;}
.yea{bottom:612.908667pt;}
.y69{bottom:616.912923pt;}
.ya2{bottom:616.926203pt;}
.y147{bottom:620.593259pt;}
.y21d{bottom:623.475099pt;}
.y113{bottom:624.912795pt;}
.y1e5{bottom:626.189792pt;}
.y17b{bottom:627.952587pt;}
.ye9{bottom:628.268315pt;}
.yb{bottom:629.707067pt;}
.y1a0{bottom:630.667835pt;}
.y68{bottom:632.113211pt;}
.ya1{bottom:632.126491pt;}
.y146{bottom:635.952907pt;}
.y112{bottom:640.113083pt;}
.y1e4{bottom:641.549440pt;}
.y19f{bottom:646.027483pt;}
.y21c{bottom:646.834619pt;}
.y67{bottom:647.472859pt;}
.ya0{bottom:647.486139pt;}
.y145{bottom:651.312555pt;}
.ye8{bottom:651.627835pt;}
.y17a{bottom:652.272251pt;}
.ya{bottom:653.707067pt;}
.y111{bottom:655.472731pt;}
.y1e3{bottom:656.749728pt;}
.y19e{bottom:661.227771pt;}
.y21b{bottom:662.194267pt;}
.y66{bottom:662.832507pt;}
.y144{bottom:666.672203pt;}
.ye7{bottom:666.987483pt;}
.y110{bottom:670.832379pt;}
.y9f{bottom:670.845659pt;}
.y1e2{bottom:672.109376pt;}
.y19d{bottom:676.587419pt;}
.y179{bottom:676.591915pt;}
.y21a{bottom:677.553915pt;}
.y65{bottom:678.192155pt;}
.y9{bottom:680.107067pt;}
.ye6{bottom:682.347131pt;}
.y10f{bottom:686.192027pt;}
.y9e{bottom:686.205307pt;}
.y1e1{bottom:687.469024pt;}
.y143{bottom:690.031723pt;}
.y19c{bottom:691.947067pt;}
.ye5{bottom:697.547419pt;}
.y178{bottom:700.752219pt;}
.y219{bottom:700.754075pt;}
.y64{bottom:701.551675pt;}
.y9d{bottom:701.564955pt;}
.y1e0{bottom:702.828672pt;}
.y142{bottom:705.232011pt;}
.y8{bottom:706.507067pt;}
.ye4{bottom:712.907067pt;}
.y19b{bottom:715.147200pt;}
.y177{bottom:716.111867pt;}
.y218{bottom:716.113723pt;}
.y63{bottom:716.751963pt;}
.y9c{bottom:716.765243pt;}
.y1df{bottom:718.188320pt;}
.y141{bottom:729.551675pt;}
.y176{bottom:731.471515pt;}
.y217{bottom:731.473371pt;}
.y19a{bottom:732.111483pt;}
.y62{bottom:732.111611pt;}
.y9b{bottom:732.124891pt;}
.y7{bottom:732.267067pt;}
.y1de{bottom:733.388608pt;}
.ye3{bottom:736.267067pt;}
.y175{bottom:746.831163pt;}
.y216{bottom:746.833019pt;}
.y199{bottom:747.471131pt;}
.y61{bottom:747.471259pt;}
.y9a{bottom:747.484539pt;}
.y1dd{bottom:748.748256pt;}
.y6{bottom:751.307067pt;}
.ye2{bottom:753.067547pt;}
.y140{bottom:753.871339pt;}
.y174{bottom:762.190811pt;}
.y215{bottom:762.192667pt;}
.y198{bottom:762.830779pt;}
.y60{bottom:762.830907pt;}
.y99{bottom:762.844187pt;}
.y1dc{bottom:764.107904pt;}
.ye1{bottom:776.427067pt;}
.y173{bottom:777.550459pt;}
.y214{bottom:777.552315pt;}
.y5{bottom:777.707067pt;}
.y197{bottom:778.190427pt;}
.y5f{bottom:778.190555pt;}
.y13f{bottom:778.191003pt;}
.y98{bottom:778.203835pt;}
.y1db{bottom:779.467552pt;}
.y172{bottom:792.750747pt;}
.y196{bottom:793.550075pt;}
.y5e{bottom:793.550203pt;}
.y13e{bottom:793.550651pt;}
.y97{bottom:793.563483pt;}
.y1da{bottom:794.827200pt;}
.y213{bottom:800.752475pt;}
.y171{bottom:808.110395pt;}
.y195{bottom:808.750363pt;}
.y5d{bottom:808.750491pt;}
.y13d{bottom:808.750939pt;}
.y96{bottom:808.763771pt;}
.y1d9{bottom:810.027067pt;}
.y4{bottom:811.467451pt;}
.y212{bottom:816.112123pt;}
.y194{bottom:824.110011pt;}
.y5c{bottom:824.110139pt;}
.y13c{bottom:824.110587pt;}
.y95{bottom:824.123419pt;}
.y1d8{bottom:826.989387pt;}
.y3{bottom:830.187067pt;}
.y170{bottom:831.469915pt;}
.y211{bottom:831.471771pt;}
.y193{bottom:839.469659pt;}
.y5b{bottom:839.469787pt;}
.y13b{bottom:839.470235pt;}
.y94{bottom:839.483067pt;}
.y1d7{bottom:842.349035pt;}
.y16f{bottom:846.829563pt;}
.y210{bottom:846.831419pt;}
.y192{bottom:854.829307pt;}
.y5a{bottom:854.829435pt;}
.y13a{bottom:854.829883pt;}
.y93{bottom:854.842715pt;}
.y2{bottom:857.067051pt;}
.y1d6{bottom:857.708683pt;}
.y16e{bottom:862.189211pt;}
.y20f{bottom:862.191067pt;}
.y191{bottom:870.188955pt;}
.y59{bottom:870.189083pt;}
.y139{bottom:870.189531pt;}
.y92{bottom:870.202363pt;}
.y16d{bottom:877.548859pt;}
.y20e{bottom:877.550715pt;}
.y1{bottom:878.507067pt;}
.y1d5{bottom:881.868987pt;}
.y190{bottom:885.548603pt;}
.y58{bottom:885.548731pt;}
.y138{bottom:885.549179pt;}
.y91{bottom:885.562011pt;}
.y16c{bottom:892.749147pt;}
.y20d{bottom:892.751003pt;}
.y1d4{bottom:897.228635pt;}
.y18f{bottom:900.748891pt;}
.y57{bottom:900.749019pt;}
.y16b{bottom:908.108795pt;}
.y20c{bottom:908.110651pt;}
.y10e{bottom:908.748891pt;}
.y137{bottom:908.749339pt;}
.y90{bottom:908.762171pt;}
.y18e{bottom:916.108539pt;}
.y56{bottom:916.108667pt;}
.y1d3{bottom:921.548299pt;}
.y10d{bottom:924.108539pt;}
.y136{bottom:924.108987pt;}
.y8f{bottom:924.121819pt;}
.y55{bottom:931.468315pt;}
.y20b{bottom:931.470171pt;}
.y18d{bottom:939.468059pt;}
.y10c{bottom:939.468187pt;}
.y135{bottom:939.468635pt;}
.y8e{bottom:939.481467pt;}
.y1d2{bottom:944.907819pt;}
.yc4{bottom:946.827963pt;}
.y20a{bottom:946.829819pt;}
.y18c{bottom:954.827707pt;}
.y54{bottom:954.827835pt;}
.y134{bottom:954.828283pt;}
.y8d{bottom:954.841115pt;}
.y1d1{bottom:960.267467pt;}
.y16a{bottom:962.187611pt;}
.y209{bottom:962.189467pt;}
.y18b{bottom:970.187355pt;}
.y53{bottom:970.187483pt;}
.y133{bottom:970.187931pt;}
.y8c{bottom:970.200763pt;}
.y1d0{bottom:975.627115pt;}
.y169{bottom:977.547259pt;}
.y18a{bottom:985.547003pt;}
.y52{bottom:985.547131pt;}
.y132{bottom:985.547579pt;}
.y208{bottom:985.548987pt;}
.y8b{bottom:985.560411pt;}
.y1cf{bottom:999.787419pt;}
.y189{bottom:1000.747291pt;}
.y51{bottom:1000.747419pt;}
.y131{bottom:1000.747867pt;}
.y207{bottom:1000.749275pt;}
.y8a{bottom:1000.760699pt;}
.y1ce{bottom:1015.147067pt;}
.y188{bottom:1016.106939pt;}
.y50{bottom:1016.107067pt;}
.y130{bottom:1016.107515pt;}
.y206{bottom:1016.108923pt;}
.y89{bottom:1016.120347pt;}
.h8{height:41.484012pt;}
.h3{height:42.084375pt;}
.h5{height:52.134375pt;}
.h7{height:53.535000pt;}
.hc{height:54.598989pt;}
.h9{height:57.484026pt;}
.hb{height:58.237086pt;}
.h6{height:59.340000pt;}
.h4{height:62.812500pt;}
.h2{height:72.655000pt;}
.h1{height:75.465000pt;}
.ha{height:83.084012pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.xc{left:75.574133pt;}
.x24{left:81.974133pt;}
.x7{left:94.454133pt;}
.x4{left:97.493733pt;}
.xe{left:99.573749pt;}
.x2{left:104.214821pt;}
.x1{left:118.294133pt;}
.xf{left:156.214133pt;}
.x16{left:206.134133pt;}
.x1d{left:213.334133pt;}
.x1e{left:218.774350pt;}
.x29{left:220.854133pt;}
.x5{left:235.414133pt;}
.x2f{left:237.173578pt;}
.x1f{left:242.294133pt;}
.x20{left:243.413798pt;}
.x2e{left:253.334133pt;}
.x9{left:262.614133pt;}
.x30{left:266.134133pt;}
.x8{left:275.094133pt;}
.x13{left:284.054133pt;}
.x2a{left:289.494730pt;}
.x3{left:299.414133pt;}
.x12{left:300.694133pt;}
.x2d{left:324.534133pt;}
.x6{left:328.694133pt;}
.xa{left:355.734133pt;}
.x22{left:359.254252pt;}
.x21{left:365.814133pt;}
.x27{left:369.653998pt;}
.x26{left:371.574133pt;}
.x15{left:373.814133pt;}
.x2c{left:391.574158pt;}
.xb{left:396.854133pt;}
.x2b{left:398.294133pt;}
.xd{left:419.573941pt;}
.x1c{left:429.653506pt;}
.x11{left:443.414645pt;}
.x25{left:458.134133pt;}
.x1b{left:464.534133pt;}
.x10{left:492.054133pt;}
.x1a{left:516.853769pt;}
.x19{left:520.854133pt;}
.x28{left:527.094146pt;}
.x23{left:530.133769pt;}
.x17{left:537.014133pt;}
.x18{left:539.893839pt;}
.x14{left:646.294133pt;}
}




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