
    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_566c599e9c029714f0dac6fe.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_48c4dcf1e74a036b1d4f811e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8ae19e4c1c632d72cbf3da16.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e121dca927e6c78b6b628ab5.woff')format("woff");}.ff4{font-family:ff4;line-height:0.840332;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_03fb9f52fbe69280fffa2634.woff')format("woff");}.ff5{font-family:ff5;line-height:0.893000;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_eecfa22d4f427ce496dd27f0.woff')format("woff");}.ff6{font-family:ff6;line-height:0.887317;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237927,0.000000,-0.076751,0.237927,0,0);-ms-transform:matrix(0.237927,0.000000,-0.076751,0.237927,0,0);-webkit-transform:matrix(0.237927,0.000000,-0.076751,0.237927,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-48.660000px;}
.v4{vertical-align:-32.166000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v3{vertical-align:32.166000px;}
.v5{vertical-align:41.856000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.150000px;}
.ls2{letter-spacing:81.021072px;}
.ls4{letter-spacing:378.621072px;}
.ls3{letter-spacing:541.755072px;}
.ls5{letter-spacing:543.567072px;}
.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;}
}
.wsda{word-spacing:-71.424000px;}
.ws4{word-spacing:-57.003600px;}
.ws210{word-spacing:-55.944000px;}
.wsbb{word-spacing:-55.496448px;}
.ws7{word-spacing:-46.536900px;}
.ws29{word-spacing:-46.386900px;}
.wscb{word-spacing:-41.126403px;}
.ws3{word-spacing:-39.883200px;}
.ws8{word-spacing:-39.600000px;}
.wsd7{word-spacing:-39.140352px;}
.ws0{word-spacing:-38.434800px;}
.ws1{word-spacing:-38.412300px;}
.ws5e{word-spacing:-38.057400px;}
.wse5{word-spacing:-38.052000px;}
.ws2{word-spacing:-37.944000px;}
.ws106{word-spacing:-37.529100px;}
.wsb2{word-spacing:-35.664576px;}
.ws194{word-spacing:-32.562000px;}
.ws150{word-spacing:-32.490900px;}
.ws111{word-spacing:-32.410200px;}
.ws37{word-spacing:-32.400000px;}
.wsb9{word-spacing:-32.372928px;}
.ws189{word-spacing:-32.372400px;}
.ws1b1{word-spacing:-32.366400px;}
.ws197{word-spacing:-32.341500px;}
.ws1a7{word-spacing:-32.334000px;}
.ws15d{word-spacing:-32.302200px;}
.ws125{word-spacing:-32.300100px;}
.ws9b{word-spacing:-32.275800px;}
.ws205{word-spacing:-32.275500px;}
.ws1d3{word-spacing:-32.259000px;}
.ws8c{word-spacing:-32.255700px;}
.ws1e4{word-spacing:-32.226300px;}
.ws1fa{word-spacing:-32.225400px;}
.ws18d{word-spacing:-32.224500px;}
.ws208{word-spacing:-32.223900px;}
.ws6d{word-spacing:-32.219400px;}
.ws1ee{word-spacing:-32.190900px;}
.ws18c{word-spacing:-32.186700px;}
.ws11b{word-spacing:-32.153700px;}
.ws131{word-spacing:-32.146500px;}
.ws13c{word-spacing:-32.131200px;}
.ws152{word-spacing:-32.130900px;}
.ws103{word-spacing:-32.127000px;}
.ws5d{word-spacing:-32.125500px;}
.ws147{word-spacing:-32.125200px;}
.ws1d0{word-spacing:-32.118000px;}
.ws6e{word-spacing:-32.103900px;}
.ws7c{word-spacing:-32.095200px;}
.ws60{word-spacing:-32.092500px;}
.ws1b4{word-spacing:-32.080500px;}
.ws176{word-spacing:-32.076000px;}
.ws8a{word-spacing:-32.042100px;}
.ws1c9{word-spacing:-32.017800px;}
.ws161{word-spacing:-31.995300px;}
.ws160{word-spacing:-31.971900px;}
.ws51{word-spacing:-31.961700px;}
.ws22{word-spacing:-31.953900px;}
.ws6b{word-spacing:-31.911300px;}
.ws40{word-spacing:-31.909500px;}
.ws107{word-spacing:-31.903800px;}
.ws112{word-spacing:-31.893000px;}
.ws1e1{word-spacing:-31.892100px;}
.ws8d{word-spacing:-31.890900px;}
.ws151{word-spacing:-31.887000px;}
.wsd2{word-spacing:-31.869300px;}
.ws1c1{word-spacing:-31.867200px;}
.wsd3{word-spacing:-31.835100px;}
.ws1cd{word-spacing:-31.826400px;}
.ws178{word-spacing:-31.794000px;}
.ws1e2{word-spacing:-31.785600px;}
.ws1c0{word-spacing:-31.782600px;}
.ws6{word-spacing:-31.766700px;}
.ws8e{word-spacing:-31.732500px;}
.wsf9{word-spacing:-31.723800px;}
.ws5b{word-spacing:-31.720500px;}
.wsac{word-spacing:-31.713000px;}
.wsb8{word-spacing:-31.705500px;}
.wsdd{word-spacing:-31.656600px;}
.ws5{word-spacing:-31.654200px;}
.ws177{word-spacing:-31.600800px;}
.ws1a9{word-spacing:-31.582200px;}
.ws102{word-spacing:-31.553400px;}
.wsce{word-spacing:-31.549200px;}
.wsa9{word-spacing:-31.545900px;}
.wsa8{word-spacing:-31.492500px;}
.wse4{word-spacing:-31.467000px;}
.ws19e{word-spacing:-31.466700px;}
.ws1a{word-spacing:-31.427700px;}
.ws105{word-spacing:-31.374900px;}
.ws10a{word-spacing:-31.347000px;}
.ws17{word-spacing:-31.346700px;}
.wsaa{word-spacing:-31.342200px;}
.wsc9{word-spacing:-31.325400px;}
.ws156{word-spacing:-31.316100px;}
.wsef{word-spacing:-31.314000px;}
.ws202{word-spacing:-31.313400px;}
.ws185{word-spacing:-31.269900px;}
.ws209{word-spacing:-31.251300px;}
.wse6{word-spacing:-31.236900px;}
.ws1bc{word-spacing:-31.194600px;}
.ws34{word-spacing:-31.167000px;}
.wsb3{word-spacing:-31.071900px;}
.ws16a{word-spacing:-31.062600px;}
.ws1e5{word-spacing:-31.055700px;}
.wsa1{word-spacing:-31.049400px;}
.ws104{word-spacing:-30.987000px;}
.ws20f{word-spacing:-30.866100px;}
.ws122{word-spacing:-30.793500px;}
.ws1f{word-spacing:-30.779400px;}
.ws4d{word-spacing:-30.746700px;}
.ws141{word-spacing:-30.739500px;}
.wsb0{word-spacing:-30.612000px;}
.ws1a1{word-spacing:-30.590100px;}
.wsf6{word-spacing:-30.440100px;}
.wsf{word-spacing:-30.288600px;}
.wsbe{word-spacing:-30.268800px;}
.wsbd{word-spacing:-30.247500px;}
.wse8{word-spacing:-30.246300px;}
.ws1d4{word-spacing:-30.245400px;}
.wsb6{word-spacing:-30.222600px;}
.wsb7{word-spacing:-30.210900px;}
.ws9{word-spacing:-30.185100px;}
.wsdc{word-spacing:-30.118800px;}
.wsfb{word-spacing:-30.115200px;}
.ws1bf{word-spacing:-30.098700px;}
.wscd{word-spacing:-30.093600px;}
.wsec{word-spacing:-30.048000px;}
.ws12d{word-spacing:-29.965500px;}
.ws57{word-spacing:-29.965200px;}
.ws31{word-spacing:-29.867700px;}
.ws146{word-spacing:-29.718900px;}
.ws82{word-spacing:-29.675100px;}
.ws10{word-spacing:-29.650500px;}
.ws171{word-spacing:-29.626800px;}
.ws132{word-spacing:-29.622600px;}
.ws26{word-spacing:-29.609700px;}
.ws84{word-spacing:-29.605200px;}
.wsa{word-spacing:-29.502600px;}
.ws14c{word-spacing:-29.484000px;}
.ws12c{word-spacing:-29.475000px;}
.ws38{word-spacing:-29.438100px;}
.ws144{word-spacing:-29.426400px;}
.wsc2{word-spacing:-29.404800px;}
.wsbf{word-spacing:-29.398800px;}
.ws1b6{word-spacing:-29.290200px;}
.ws14e{word-spacing:-29.251500px;}
.ws16{word-spacing:-29.249400px;}
.ws15f{word-spacing:-29.130900px;}
.ws149{word-spacing:-29.108700px;}
.ws3d{word-spacing:-29.096100px;}
.ws83{word-spacing:-28.968300px;}
.ws174{word-spacing:-28.914000px;}
.wsc{word-spacing:-28.913700px;}
.ws73{word-spacing:-28.905600px;}
.ws139{word-spacing:-28.897200px;}
.wsb4{word-spacing:-28.803900px;}
.wsbc{word-spacing:-28.782600px;}
.ws153{word-spacing:-28.643400px;}
.wsc6{word-spacing:-28.593300px;}
.ws46{word-spacing:-28.528200px;}
.ws114{word-spacing:-28.519500px;}
.ws52{word-spacing:-28.345500px;}
.ws4c{word-spacing:-28.278000px;}
.ws1cc{word-spacing:-28.190100px;}
.ws1dc{word-spacing:-28.116000px;}
.ws13b{word-spacing:-27.965400px;}
.ws110{word-spacing:-27.926100px;}
.ws99{word-spacing:-27.925500px;}
.ws88{word-spacing:-27.805500px;}
.ws30{word-spacing:-27.766800px;}
.wsa2{word-spacing:-27.752700px;}
.ws1c7{word-spacing:-27.708600px;}
.ws190{word-spacing:-27.567000px;}
.ws1c3{word-spacing:-27.525600px;}
.ws1d6{word-spacing:-27.515100px;}
.wsff{word-spacing:-27.473700px;}
.ws1f7{word-spacing:-27.423900px;}
.ws12b{word-spacing:-27.411900px;}
.wsdb{word-spacing:-27.342600px;}
.ws11{word-spacing:-27.223800px;}
.ws193{word-spacing:-27.186600px;}
.ws62{word-spacing:-27.177300px;}
.ws7a{word-spacing:-27.162000px;}
.wsf4{word-spacing:-27.138600px;}
.ws16b{word-spacing:-27.119700px;}
.ws201{word-spacing:-27.024300px;}
.ws19f{word-spacing:-26.975400px;}
.ws1ce{word-spacing:-26.934000px;}
.wse1{word-spacing:-26.766000px;}
.ws162{word-spacing:-26.748600px;}
.ws172{word-spacing:-26.742600px;}
.wsab{word-spacing:-26.627280px;}
.ws229{word-spacing:-26.451600px;}
.ws11d{word-spacing:-26.445600px;}
.ws1b2{word-spacing:-26.412600px;}
.wsae{word-spacing:-26.304900px;}
.ws236{word-spacing:-26.190300px;}
.ws5c{word-spacing:-26.189400px;}
.ws7f{word-spacing:-26.130900px;}
.ws23a{word-spacing:-26.109000px;}
.ws217{word-spacing:-26.098200px;}
.ws199{word-spacing:-26.094000px;}
.ws21a{word-spacing:-26.084100px;}
.ws21e{word-spacing:-26.075100px;}
.ws10c{word-spacing:-26.025600px;}
.ws23d{word-spacing:-25.996800px;}
.ws213{word-spacing:-25.988400px;}
.ws231{word-spacing:-25.954200px;}
.ws232{word-spacing:-25.948200px;}
.wscc{word-spacing:-25.945500px;}
.ws2d{word-spacing:-25.899000px;}
.ws222{word-spacing:-25.884600px;}
.ws32{word-spacing:-25.884000px;}
.ws22d{word-spacing:-25.813200px;}
.ws179{word-spacing:-25.788300px;}
.ws2b{word-spacing:-25.768500px;}
.ws121{word-spacing:-25.751400px;}
.ws234{word-spacing:-25.702200px;}
.ws8b{word-spacing:-25.645500px;}
.ws15c{word-spacing:-25.645200px;}
.wsfc{word-spacing:-25.405500px;}
.ws92{word-spacing:-25.320000px;}
.ws2f{word-spacing:-25.302900px;}
.ws1e6{word-spacing:-25.302600px;}
.ws211{word-spacing:-25.222200px;}
.wsd9{word-spacing:-25.220640px;}
.ws16e{word-spacing:-25.206600px;}
.ws166{word-spacing:-25.073700px;}
.ws1b9{word-spacing:-25.055400px;}
.ws28{word-spacing:-24.925200px;}
.ws15{word-spacing:-24.897000px;}
.ws5a{word-spacing:-24.875700px;}
.ws20a{word-spacing:-24.828600px;}
.ws19a{word-spacing:-24.782100px;}
.ws1a8{word-spacing:-24.745500px;}
.ws1bb{word-spacing:-24.732900px;}
.ws145{word-spacing:-24.687000px;}
.wsed{word-spacing:-24.659700px;}
.ws11c{word-spacing:-24.632700px;}
.ws1f1{word-spacing:-24.606600px;}
.ws13e{word-spacing:-24.448200px;}
.wsb{word-spacing:-24.366300px;}
.ws123{word-spacing:-24.355800px;}
.ws23c{word-spacing:-24.266400px;}
.ws15e{word-spacing:-24.240600px;}
.ws5f{word-spacing:-24.233700px;}
.ws15a{word-spacing:-24.160500px;}
.ws225{word-spacing:-24.110700px;}
.ws1b3{word-spacing:-24.063900px;}
.ws6c{word-spacing:-24.000600px;}
.ws91{word-spacing:-23.997900px;}
.ws1d5{word-spacing:-23.972100px;}
.wsee{word-spacing:-23.926800px;}
.ws77{word-spacing:-23.910900px;}
.ws17e{word-spacing:-23.895900px;}
.ws158{word-spacing:-23.870100px;}
.wsa5{word-spacing:-23.848800px;}
.ws14f{word-spacing:-23.811900px;}
.ws218{word-spacing:-23.799600px;}
.ws1a0{word-spacing:-23.782500px;}
.wsc7{word-spacing:-23.675400px;}
.ws1d8{word-spacing:-23.643900px;}
.ws9d{word-spacing:-23.580900px;}
.wsd{word-spacing:-23.497200px;}
.ws164{word-spacing:-23.431200px;}
.ws206{word-spacing:-23.353800px;}
.ws1c2{word-spacing:-23.254500px;}
.ws136{word-spacing:-23.192700px;}
.ws1cb{word-spacing:-23.159400px;}
.ws159{word-spacing:-23.113500px;}
.ws182{word-spacing:-23.086800px;}
.ws7b{word-spacing:-23.085000px;}
.ws63{word-spacing:-23.076900px;}
.ws22a{word-spacing:-23.068200px;}
.wsd1{word-spacing:-23.065500px;}
.ws72{word-spacing:-22.844100px;}
.wsc1{word-spacing:-22.831872px;}
.ws1a3{word-spacing:-22.765500px;}
.ws12a{word-spacing:-22.642200px;}
.ws41{word-spacing:-22.557900px;}
.ws165{word-spacing:-22.428600px;}
.ws167{word-spacing:-22.424100px;}
.wsf0{word-spacing:-22.345500px;}
.ws124{word-spacing:-22.336500px;}
.ws87{word-spacing:-22.253700px;}
.ws21{word-spacing:-22.240800px;}
.ws43{word-spacing:-22.186800px;}
.ws70{word-spacing:-22.047300px;}
.ws195{word-spacing:-21.939000px;}
.ws1dd{word-spacing:-21.896400px;}
.wsa0{word-spacing:-21.873600px;}
.ws109{word-spacing:-21.861600px;}
.ws198{word-spacing:-21.833700px;}
.ws15b{word-spacing:-21.813000px;}
.ws239{word-spacing:-21.705000px;}
.ws1f9{word-spacing:-21.644700px;}
.ws1fb{word-spacing:-21.523800px;}
.ws1ae{word-spacing:-21.440100px;}
.ws90{word-spacing:-21.392700px;}
.wse3{word-spacing:-21.266700px;}
.ws49{word-spacing:-21.168000px;}
.ws137{word-spacing:-21.114000px;}
.ws9c{word-spacing:-21.090000px;}
.ws148{word-spacing:-21.087000px;}
.ws1b{word-spacing:-21.084000px;}
.ws18a{word-spacing:-20.988600px;}
.ws24{word-spacing:-20.924700px;}
.wsa7{word-spacing:-20.862600px;}
.ws192{word-spacing:-20.858700px;}
.ws23{word-spacing:-20.795100px;}
.ws1d{word-spacing:-20.663700px;}
.ws59{word-spacing:-20.611200px;}
.ws1d1{word-spacing:-20.548500px;}
.ws1c{word-spacing:-20.469000px;}
.wse7{word-spacing:-20.451600px;}
.ws187{word-spacing:-20.264100px;}
.ws237{word-spacing:-20.188200px;}
.ws76{word-spacing:-20.179800px;}
.ws175{word-spacing:-20.166600px;}
.ws183{word-spacing:-20.132400px;}
.ws56{word-spacing:-20.127000px;}
.ws1fd{word-spacing:-20.103900px;}
.ws170{word-spacing:-20.060700px;}
.ws20c{word-spacing:-20.056800px;}
.ws16f{word-spacing:-19.946700px;}
.ws39{word-spacing:-19.875000px;}
.ws173{word-spacing:-19.783500px;}
.ws61{word-spacing:-19.707300px;}
.ws12f{word-spacing:-19.674600px;}
.ws85{word-spacing:-19.631100px;}
.ws1ac{word-spacing:-19.531200px;}
.ws207{word-spacing:-19.352100px;}
.ws1e8{word-spacing:-19.301400px;}
.ws2a{word-spacing:-19.199700px;}
.ws10e{word-spacing:-19.087800px;}
.ws48{word-spacing:-18.852300px;}
.ws1c5{word-spacing:-18.822600px;}
.ws13d{word-spacing:-18.805500px;}
.ws21f{word-spacing:-18.748200px;}
.ws1d7{word-spacing:-18.695100px;}
.ws221{word-spacing:-18.688200px;}
.ws100{word-spacing:-18.593100px;}
.wsf8{word-spacing:-18.507000px;}
.ws3b{word-spacing:-18.478500px;}
.ws68{word-spacing:-18.457200px;}
.ws1ff{word-spacing:-18.186000px;}
.ws14{word-spacing:-18.171900px;}
.ws2e{word-spacing:-18.168300px;}
.wsf7{word-spacing:-18.132900px;}
.ws1e0{word-spacing:-18.102600px;}
.ws215{word-spacing:-17.997300px;}
.wsc4{word-spacing:-17.912700px;}
.ws143{word-spacing:-17.902200px;}
.wsa4{word-spacing:-17.829900px;}
.ws130{word-spacing:-17.786700px;}
.ws11a{word-spacing:-17.719500px;}
.ws235{word-spacing:-17.681700px;}
.ws1a4{word-spacing:-17.560500px;}
.ws22e{word-spacing:-17.499000px;}
.ws1f0{word-spacing:-17.365500px;}
.ws1d2{word-spacing:-17.338500px;}
.ws27{word-spacing:-17.310600px;}
.ws12{word-spacing:-17.305500px;}
.ws238{word-spacing:-17.279100px;}
.wsa3{word-spacing:-17.199900px;}
.ws3e{word-spacing:-17.154300px;}
.ws1ec{word-spacing:-17.093700px;}
.ws75{word-spacing:-17.066700px;}
.ws20d{word-spacing:-17.033700px;}
.ws11e{word-spacing:-17.005500px;}
.ws1cf{word-spacing:-16.939200px;}
.ws1ba{word-spacing:-16.772100px;}
.ws120{word-spacing:-16.767000px;}
.ws36{word-spacing:-16.668600px;}
.ws12e{word-spacing:-16.569300px;}
.ws200{word-spacing:-16.480800px;}
.ws89{word-spacing:-16.418700px;}
.ws4b{word-spacing:-16.405500px;}
.ws13{word-spacing:-16.313100px;}
.ws19b{word-spacing:-16.178400px;}
.ws180{word-spacing:-16.105500px;}
.ws1fc{word-spacing:-16.022100px;}
.ws16c{word-spacing:-15.981900px;}
.ws1e9{word-spacing:-15.930000px;}
.ws4a{word-spacing:-15.897900px;}
.wse{word-spacing:-15.871200px;}
.ws14b{word-spacing:-15.780000px;}
.ws128{word-spacing:-15.708300px;}
.ws67{word-spacing:-15.561000px;}
.ws3a{word-spacing:-15.364500px;}
.ws226{word-spacing:-15.327000px;}
.ws127{word-spacing:-15.251400px;}
.ws1fe{word-spacing:-15.224100px;}
.ws1b7{word-spacing:-15.215700px;}
.ws214{word-spacing:-15.003900px;}
.ws42{word-spacing:-14.993400px;}
.ws50{word-spacing:-14.906700px;}
.ws1df{word-spacing:-14.895300px;}
.ws113{word-spacing:-14.605200px;}
.ws1e3{word-spacing:-14.411100px;}
.ws1b8{word-spacing:-14.006700px;}
.ws16d{word-spacing:-13.955400px;}
.ws17a{word-spacing:-13.884900px;}
.ws1b5{word-spacing:-13.872000px;}
.ws119{word-spacing:-13.828800px;}
.wsc0{word-spacing:-13.553040px;}
.ws79{word-spacing:-13.405500px;}
.wsfe{word-spacing:-13.068600px;}
.ws47{word-spacing:-13.062600px;}
.ws21c{word-spacing:-12.959100px;}
.ws33{word-spacing:-12.880200px;}
.ws18b{word-spacing:-12.777600px;}
.wsb5{word-spacing:-12.747000px;}
.ws19{word-spacing:-12.725100px;}
.ws154{word-spacing:-12.685500px;}
.ws212{word-spacing:-12.641700px;}
.ws94{word-spacing:-12.541500px;}
.wsc8{word-spacing:-12.516900px;}
.ws18{word-spacing:-12.267000px;}
.wsf5{word-spacing:-12.198900px;}
.ws1f8{word-spacing:-12.174000px;}
.ws45{word-spacing:-11.980500px;}
.ws17f{word-spacing:-11.965500px;}
.wsf2{word-spacing:-11.900700px;}
.wsc5{word-spacing:-11.885400px;}
.ws20b{word-spacing:-11.486700px;}
.ws138{word-spacing:-11.478600px;}
.ws1da{word-spacing:-11.424600px;}
.wsd0{word-spacing:-11.307000px;}
.ws7d{word-spacing:-11.276400px;}
.ws1f2{word-spacing:-11.261100px;}
.ws17c{word-spacing:-11.150100px;}
.wse2{word-spacing:-11.085600px;}
.ws64{word-spacing:-10.980000px;}
.ws1f4{word-spacing:-10.914000px;}
.ws155{word-spacing:-10.902600px;}
.ws21b{word-spacing:-10.686000px;}
.ws230{word-spacing:-10.576800px;}
.ws9f{word-spacing:-10.531500px;}
.ws19d{word-spacing:-10.444800px;}
.ws108{word-spacing:-10.368000px;}
.ws169{word-spacing:-10.336800px;}
.ws140{word-spacing:-10.287000px;}
.ws69{word-spacing:-10.177200px;}
.ws18f{word-spacing:-10.165500px;}
.ws7e{word-spacing:-9.963300px;}
.ws86{word-spacing:-9.805500px;}
.ws13a{word-spacing:-9.740100px;}
.ws117{word-spacing:-9.697500px;}
.ws10f{word-spacing:-9.636900px;}
.ws23b{word-spacing:-9.597300px;}
.ws1ad{word-spacing:-9.456900px;}
.ws22c{word-spacing:-9.365100px;}
.ws10d{word-spacing:-9.051900px;}
.ws93{word-spacing:-9.036000px;}
.ws20{word-spacing:-8.853000px;}
.ws168{word-spacing:-8.673600px;}
.ws1a5{word-spacing:-8.569800px;}
.ws53{word-spacing:-8.561400px;}
.ws1f3{word-spacing:-8.536200px;}
.ws1c8{word-spacing:-8.070600px;}
.ws1de{word-spacing:-8.024100px;}
.ws223{word-spacing:-7.998300px;}
.ws1e{word-spacing:-7.706700px;}
.ws13f{word-spacing:-6.759000px;}
.ws35{word-spacing:-6.580800px;}
.wsfa{word-spacing:-6.358800px;}
.ws18e{word-spacing:-6.338700px;}
.ws19c{word-spacing:-5.941500px;}
.ws1ed{word-spacing:-5.800800px;}
.ws1c4{word-spacing:-5.142600px;}
.ws126{word-spacing:-5.113500px;}
.ws196{word-spacing:-5.056800px;}
.ws95{word-spacing:-4.693200px;}
.ws4f{word-spacing:-4.477200px;}
.ws1db{word-spacing:-4.445400px;}
.ws4e{word-spacing:-4.386900px;}
.ws97{word-spacing:-4.011900px;}
.ws11f{word-spacing:-3.950100px;}
.ws163{word-spacing:-3.932100px;}
.ws233{word-spacing:-3.919800px;}
.wsa6{word-spacing:-3.797700px;}
.ws1ef{word-spacing:-3.702600px;}
.ws9e{word-spacing:-3.693600px;}
.ws157{word-spacing:-3.580800px;}
.ws1e7{word-spacing:-3.578700px;}
.ws135{word-spacing:-3.272100px;}
.ws3c{word-spacing:-3.144300px;}
.wscf{word-spacing:-3.073200px;}
.ws98{word-spacing:-2.994000px;}
.ws1ea{word-spacing:-2.949900px;}
.ws115{word-spacing:-2.713500px;}
.wsf3{word-spacing:-2.558400px;}
.ws58{word-spacing:-2.386800px;}
.wsea{word-spacing:-2.349300px;}
.ws1ca{word-spacing:-2.262600px;}
.ws1eb{word-spacing:-2.033700px;}
.ws216{word-spacing:-1.919100px;}
.wsad{word-spacing:-1.901100px;}
.ws129{word-spacing:-1.641000px;}
.ws1bd{word-spacing:-1.483500px;}
.ws227{word-spacing:-1.310400px;}
.ws80{word-spacing:-1.220700px;}
.ws78{word-spacing:-1.204500px;}
.ws3f{word-spacing:-1.171200px;}
.wse9{word-spacing:-1.144200px;}
.ws101{word-spacing:-0.758400px;}
.ws1d9{word-spacing:-0.640800px;}
.wseb{word-spacing:-0.639900px;}
.ws2c{word-spacing:-0.207600px;}
.ws188{word-spacing:-0.102600px;}
.ws65{word-spacing:-0.081000px;}
.wsaf{word-spacing:0.000000px;}
.ws1b0{word-spacing:0.422700px;}
.ws25{word-spacing:0.441900px;}
.ws9a{word-spacing:0.638700px;}
.ws20e{word-spacing:0.713700px;}
.wsf1{word-spacing:0.960000px;}
.ws55{word-spacing:1.050300px;}
.ws134{word-spacing:1.398000px;}
.ws1a2{word-spacing:1.499400px;}
.ws228{word-spacing:1.553400px;}
.ws6f{word-spacing:2.078700px;}
.ws1c6{word-spacing:2.286600px;}
.ws1af{word-spacing:3.093300px;}
.ws142{word-spacing:3.236100px;}
.ws10b{word-spacing:3.363900px;}
.ws14a{word-spacing:4.340700px;}
.ws118{word-spacing:4.876200px;}
.ws81{word-spacing:4.895100px;}
.ws96{word-spacing:4.928400px;}
.wsfd{word-spacing:5.014800px;}
.ws21d{word-spacing:5.034900px;}
.ws181{word-spacing:5.696100px;}
.ws14d{word-spacing:5.877300px;}
.ws1f5{word-spacing:6.006300px;}
.ws71{word-spacing:6.171000px;}
.ws203{word-spacing:6.275100px;}
.ws6a{word-spacing:6.923700px;}
.ws184{word-spacing:7.237800px;}
.ws74{word-spacing:7.763700px;}
.ws54{word-spacing:8.182200px;}
.ws1a6{word-spacing:8.200800px;}
.ws204{word-spacing:8.404500px;}
.ws44{word-spacing:8.870100px;}
.ws22b{word-spacing:10.538100px;}
.ws1aa{word-spacing:10.753200px;}
.ws133{word-spacing:10.775400px;}
.ws186{word-spacing:11.799000px;}
.ws1be{word-spacing:12.190500px;}
.wsc3{word-spacing:12.214500px;}
.wsd8{word-spacing:12.802200px;}
.ws224{word-spacing:13.317900px;}
.ws191{word-spacing:14.283900px;}
.ws1ab{word-spacing:15.014400px;}
.ws17d{word-spacing:15.633000px;}
.ws116{word-spacing:16.390500px;}
.ws66{word-spacing:17.599800px;}
.ws17b{word-spacing:20.378100px;}
.ws8f{word-spacing:23.827800px;}
.wsb1{word-spacing:23.853360px;}
.ws219{word-spacing:26.505300px;}
.ws1f6{word-spacing:27.634500px;}
.ws22f{word-spacing:27.775200px;}
.ws220{word-spacing:47.520900px;}
.wsd5{word-spacing:83.208960px;}
.wsd4{word-spacing:111.813360px;}
.wsca{word-spacing:183.462960px;}
.wsba{word-spacing:183.792960px;}
.wsd6{word-spacing:439.866720px;}
.wsde{word-spacing:625.062144px;}
.wse0{word-spacing:657.099360px;}
.wsdf{word-spacing:932.759808px;}
._4b{margin-left:-559.986288px;}
._37{margin-left:-557.342352px;}
._2f{margin-left:-517.650192px;}
._24{margin-left:-476.390112px;}
._2d{margin-left:-463.052112px;}
._3f{margin-left:-433.988352px;}
._2c{margin-left:-424.830192px;}
._36{margin-left:-352.518960px;}
._31{margin-left:-336.282192px;}
._3d{margin-left:-334.856352px;}
._43{margin-left:-327.356832px;}
._35{margin-left:-310.602384px;}
._41{margin-left:-307.256928px;}
._46{margin-left:-304.826832px;}
._44{margin-left:-266.528832px;}
._4a{margin-left:-249.198000px;}
._30{margin-left:-245.851635px;}
._33{margin-left:-204.324000px;}
._45{margin-left:-202.310832px;}
._1e{margin-left:-189.770640px;}
._3c{margin-left:-185.172000px;}
._42{margin-left:-182.782221px;}
._49{margin-left:-177.558192px;}
._19{margin-left:-167.420640px;}
._27{margin-left:-159.750000px;}
._3e{margin-left:-150.668352px;}
._48{margin-left:-147.662640px;}
._47{margin-left:-144.015552px;}
._2e{margin-left:-135.026928px;}
._1d{margin-left:-127.436640px;}
._34{margin-left:-115.518000px;}
._1b{margin-left:-101.988192px;}
._28{margin-left:-99.348720px;}
._40{margin-left:-95.468352px;}
._1c{margin-left:-91.518000px;}
._4e{margin-left:-88.266096px;}
._3a{margin-left:-81.888000px;}
._21{margin-left:-74.202000px;}
._22{margin-left:-71.198112px;}
._26{margin-left:-68.908224px;}
._4d{margin-left:-67.248000px;}
._25{margin-left:-62.846928px;}
._3b{margin-left:-60.486000px;}
._32{margin-left:-59.024112px;}
._39{margin-left:-54.192192px;}
._4c{margin-left:-52.605984px;}
._23{margin-left:-46.766112px;}
._1f{margin-left:-45.446112px;}
._2a{margin-left:-39.691872px;}
._20{margin-left:-33.986112px;}
._d{margin-left:-1.181400px;}
._1{width:1.036500px;}
._29{width:2.475888px;}
._57{width:11.142900px;}
._58{width:12.677700px;}
._11{width:15.093000px;}
._3{width:16.733700px;}
._4{width:17.825400px;}
._0{width:18.850800px;}
._8{width:20.245800px;}
._9{width:21.248700px;}
._5{width:23.235000px;}
._6{width:24.311100px;}
._e{width:25.361700px;}
._f{width:26.489400px;}
._12{width:27.614700px;}
._b{width:29.252400px;}
._a{width:30.343800px;}
._7{width:31.792200px;}
._52{width:33.848100px;}
._c{width:35.464200px;}
._15{width:37.023000px;}
._50{width:38.335200px;}
._55{width:39.636000px;}
._10{width:40.817100px;}
._14{width:43.040400px;}
._18{width:44.140800px;}
._2{width:45.213900px;}
._1a{width:46.276800px;}
._16{width:47.766300px;}
._4f{width:48.783600px;}
._17{width:52.313700px;}
._53{width:54.871200px;}
._13{width:56.343000px;}
._51{width:58.617000px;}
._2b{width:59.630700px;}
._38{width:60.763800px;}
._54{width:62.036400px;}
._59{width:66.397500px;}
._56{width:75.546300px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.664000px;}
.fs7{font-size:48.300000px;}
.fs2{font-size:59.700000px;}
.fs4{font-size:71.424000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:75.048180px;}
.fs5{font-size:107.136000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y11a{bottom:2.550000px;}
.y118{bottom:2.580000px;}
.y116{bottom:2.611500px;}
.y114{bottom:2.640000px;}
.y11c{bottom:3.346500px;}
.yea{bottom:3.771000px;}
.yc3{bottom:4.372500px;}
.ye4{bottom:4.392000px;}
.yc0{bottom:4.411500px;}
.ydf{bottom:4.441500px;}
.ya5{bottom:4.453500px;}
.yd2{bottom:5.221500px;}
.yb6{bottom:5.359500px;}
.ybb{bottom:5.937000px;}
.yc6{bottom:5.998500px;}
.yb3{bottom:6.711000px;}
.y18e{bottom:7.065000px;}
.yaa{bottom:7.383000px;}
.yf7{bottom:8.686500px;}
.ye3{bottom:8.829000px;}
.yde{bottom:8.929500px;}
.y34{bottom:9.586500px;}
.yb7{bottom:9.834000px;}
.ybc{bottom:10.425000px;}
.yc7{bottom:10.531500px;}
.ybf{bottom:12.399000px;}
.y4e{bottom:12.825000px;}
.y87{bottom:13.546500px;}
.yec{bottom:16.545000px;}
.ya7{bottom:16.605000px;}
.ye9{bottom:16.875000px;}
.ye0{bottom:16.971000px;}
.ya4{bottom:17.016000px;}
.y1d5{bottom:17.686500px;}
.yd4{bottom:17.857500px;}
.yc5{bottom:18.654000px;}
.yb5{bottom:19.342500px;}
.y1f9{bottom:20.355000px;}
.y1b2{bottom:20.565000px;}
.yeb{bottom:21.069000px;}
.yd1{bottom:22.333500px;}
.y18d{bottom:23.446500px;}
.yb1{bottom:23.815500px;}
.y33{bottom:25.965000px;}
.y4d{bottom:29.205000px;}
.y86{bottom:29.925000px;}
.yd3{bottom:30.352500px;}
.yb4{bottom:31.833000px;}
.y1f8{bottom:33.855000px;}
.ya6{bottom:33.886500px;}
.y1d4{bottom:34.065000px;}
.yb2{bottom:35.095500px;}
.y1b1{bottom:36.946500px;}
.y221{bottom:38.355000px;}
.y18c{bottom:39.825000px;}
.y131{bottom:41.625000px;}
.y32{bottom:42.346500px;}
.yf6{bottom:43.246500px;}
.y4c{bottom:45.586500px;}
.y85{bottom:46.305000px;}
.y1d3{bottom:50.446500px;}
.y1f7{bottom:51.136500px;}
.y220{bottom:51.855000px;}
.y1b0{bottom:53.325000px;}
.y18b{bottom:56.205000px;}
.y130{bottom:57.825000px;}
.y31{bottom:58.725000px;}
.ya2{bottom:59.805000px;}
.yf5{bottom:60.525000px;}
.y4b{bottom:61.965000px;}
.y84{bottom:62.865000px;}
.y1f6{bottom:64.636500px;}
.y21f{bottom:65.355000px;}
.y1d2{bottom:66.825000px;}
.y1af{bottom:69.705000px;}
.y18a{bottom:72.586500px;}
.y156{bottom:73.486500px;}
.y12f{bottom:74.386500px;}
.y30{bottom:75.105000px;}
.yf4{bottom:77.625000px;}
.y1f5{bottom:78.136500px;}
.y4a{bottom:78.346500px;}
.y83{bottom:79.065000px;}
.ya1{bottom:82.486500px;}
.y21e{bottom:82.636500px;}
.y1d1{bottom:83.205000px;}
.y189{bottom:88.965000px;}
.y155{bottom:89.865000px;}
.y12e{bottom:90.765000px;}
.y2f{bottom:91.486500px;}
.y49{bottom:94.725000px;}
.yf3{bottom:94.905000px;}
.y1ae{bottom:95.086500px;}
.y82{bottom:95.625000px;}
.y21d{bottom:96.136500px;}
.y1f4{bottom:101.715000px;}
.ya0{bottom:102.825000px;}
.y188{bottom:105.346500px;}
.y154{bottom:106.246500px;}
.y1a{bottom:106.800000px;}
.y12d{bottom:107.145000px;}
.y2e{bottom:107.865000px;}
.y1d0{bottom:108.586500px;}
.y21c{bottom:109.636500px;}
.y48{bottom:111.105000px;}
.y1ad{bottom:111.465000px;}
.y81{bottom:111.825000px;}
.yf2{bottom:121.365000px;}
.y153{bottom:122.625000px;}
.y21b{bottom:123.136500px;}
.y12c{bottom:123.525000px;}
.y2d{bottom:124.246500px;}
.y1cf{bottom:124.965000px;}
.y47{bottom:127.486500px;}
.y1ac{bottom:127.846500px;}
.y80{bottom:128.386500px;}
.y187{bottom:130.725000px;}
.y152{bottom:139.005000px;}
.y12b{bottom:139.905000px;}
.y1f3{bottom:140.415000px;}
.y2c{bottom:140.625000px;}
.y1ce{bottom:141.346500px;}
.y46{bottom:143.865000px;}
.y1ab{bottom:144.225000px;}
.y7f{bottom:144.765000px;}
.y186{bottom:147.105000px;}
.yf1{bottom:148.365000px;}
.y165{bottom:151.965000px;}
.y21a{bottom:153.915000px;}
.y151{bottom:155.386500px;}
.y12a{bottom:156.286500px;}
.y1f2{bottom:156.795000px;}
.y2b{bottom:157.005000px;}
.ya3{bottom:157.650000px;}
.y1cd{bottom:157.725000px;}
.y1aa{bottom:160.605000px;}
.y185{bottom:163.486500px;}
.y164{bottom:168.346500px;}
.y45{bottom:169.246500px;}
.y7e{bottom:170.145000px;}
.y219{bottom:171.196500px;}
.y150{bottom:171.765000px;}
.y129{bottom:172.665000px;}
.y1f1{bottom:173.175000px;}
.y2a{bottom:173.386500px;}
.y1cc{bottom:174.105000px;}
.y1a9{bottom:176.986500px;}
.y184{bottom:179.865000px;}
.y218{bottom:184.696500px;}
.y163{bottom:184.725000px;}
.y44{bottom:185.625000px;}
.y7d{bottom:186.525000px;}
.y14f{bottom:188.145000px;}
.y128{bottom:189.046500px;}
.y1f0{bottom:189.375000px;}
.y1c0{bottom:189.765000px;}
.y1cb{bottom:190.486500px;}
.y1a8{bottom:193.365000px;}
.y183{bottom:196.246500px;}
.y217{bottom:198.196500px;}
.y29{bottom:198.765000px;}
.y43{bottom:202.005000px;}
.yf0{bottom:202.725000px;}
.y7c{bottom:202.905000px;}
.y14e{bottom:204.525000px;}
.y1ef{bottom:205.936500px;}
.y1bf{bottom:206.145000px;}
.y1ca{bottom:206.865000px;}
.y1a7{bottom:209.746500px;}
.y162{bottom:210.105000px;}
.y182{bottom:212.625000px;}
.y127{bottom:214.425000px;}
.y28{bottom:215.145000px;}
.y216{bottom:215.475000px;}
.y42{bottom:218.386500px;}
.y7b{bottom:219.286500px;}
.yef{bottom:220.005000px;}
.y1ee{bottom:222.315000px;}
.y1be{bottom:222.525000px;}
.y1c9{bottom:223.246500px;}
.y1a6{bottom:226.125000px;}
.y161{bottom:226.665000px;}
.y215{bottom:228.975000px;}
.y181{bottom:229.005000px;}
.y14d{bottom:229.905000px;}
.y126{bottom:230.805000px;}
.y27{bottom:231.525000px;}
.y41{bottom:234.765000px;}
.y7a{bottom:235.665000px;}
.y1ed{bottom:238.696500px;}
.y1bd{bottom:238.905000px;}
.y1c8{bottom:239.625000px;}
.y214{bottom:242.475000px;}
.y1a5{bottom:242.505000px;}
.y160{bottom:242.865000px;}
.yed{bottom:243.046500px;}
.y180{bottom:245.386500px;}
.y14c{bottom:246.286500px;}
.y125{bottom:247.186500px;}
.y26{bottom:247.905000px;}
.y40{bottom:251.145000px;}
.y79{bottom:252.046500px;}
.y1ec{bottom:255.075000px;}
.y213{bottom:255.975000px;}
.y1c7{bottom:256.005000px;}
.y15f{bottom:259.425000px;}
.y17f{bottom:261.765000px;}
.y14b{bottom:262.665000px;}
.y124{bottom:263.565000px;}
.y25{bottom:264.286500px;}
.y3f{bottom:267.525000px;}
.y1a4{bottom:268.065000px;}
.y78{bottom:268.425000px;}
.y1eb{bottom:271.455000px;}
.y1c6{bottom:272.386500px;}
.y212{bottom:273.075000px;}
.y15e{bottom:275.625000px;}
.y17e{bottom:278.145000px;}
.y14a{bottom:279.046500px;}
.y123{bottom:279.946500px;}
.y24{bottom:280.665000px;}
.y3e{bottom:283.905000px;}
.y1a3{bottom:284.265000px;}
.y77{bottom:284.805000px;}
.y211{bottom:286.575000px;}
.y1ea{bottom:287.836500px;}
.y1c5{bottom:288.765000px;}
.y15d{bottom:292.186500px;}
.y149{bottom:295.425000px;}
.y122{bottom:296.325000px;}
.y23{bottom:297.046500px;}
.y210{bottom:300.075000px;}
.y3d{bottom:300.465000px;}
.y1a2{bottom:300.645000px;}
.y76{bottom:301.186500px;}
.y17d{bottom:303.525000px;}
.y1e9{bottom:304.215000px;}
.y1c4{bottom:305.145000px;}
.y15c{bottom:308.565000px;}
.ye7{bottom:310.546500px;}
.y148{bottom:311.805000px;}
.y121{bottom:312.705000px;}
.y22{bottom:313.425000px;}
.y20f{bottom:313.575000px;}
.y3c{bottom:316.665000px;}
.y1a1{bottom:317.025000px;}
.y75{bottom:317.565000px;}
.y17c{bottom:319.905000px;}
.y1c3{bottom:321.525000px;}
.y15b{bottom:324.946500px;}
.ye6{bottom:327.825000px;}
.y147{bottom:328.186500px;}
.y120{bottom:329.086500px;}
.y1e8{bottom:329.595000px;}
.y21{bottom:329.805000px;}
.y20e{bottom:330.855000px;}
.y3b{bottom:333.225000px;}
.y1a0{bottom:333.405000px;}
.y74{bottom:333.946500px;}
.y17b{bottom:336.465000px;}
.y1c2{bottom:337.905000px;}
.yee{bottom:340.725000px;}
.y15a{bottom:341.325000px;}
.y20d{bottom:344.355000px;}
.y146{bottom:344.565000px;}
.y11f{bottom:345.465000px;}
.y1e7{bottom:345.975000px;}
.y20{bottom:346.186500px;}
.y9f{bottom:348.346500px;}
.y3a{bottom:349.425000px;}
.y19f{bottom:349.965000px;}
.y73{bottom:350.325000px;}
.ye5{bottom:350.865000px;}
.y17a{bottom:352.665000px;}
.y159{bottom:357.705000px;}
.y20c{bottom:357.855000px;}
.y145{bottom:360.946500px;}
.y11e{bottom:361.846500px;}
.y1e6{bottom:362.355000px;}
.y1f{bottom:362.565000px;}
.y1c1{bottom:364.005000px;}
.y9e{bottom:365.625000px;}
.y39{bottom:365.986500px;}
.y19e{bottom:366.165000px;}
.y72{bottom:366.705000px;}
.y179{bottom:369.225000px;}
.ye8{bottom:370.425000px;}
.y20b{bottom:371.355000px;}
.ye1{bottom:371.565000px;}
.y158{bottom:374.086500px;}
.y144{bottom:377.325000px;}
.y11d{bottom:378.225000px;}
.y1e5{bottom:378.736500px;}
.y1e{bottom:378.946500px;}
.y38{bottom:382.365000px;}
.y9d{bottom:382.725000px;}
.y71{bottom:383.086500px;}
.y178{bottom:385.425000px;}
.y20a{bottom:388.636500px;}
.y143{bottom:393.705000px;}
.y1e4{bottom:395.115000px;}
.y1d{bottom:395.325000px;}
.y19d{bottom:398.925000px;}
.y70{bottom:399.465000px;}
.y9c{bottom:400.005000px;}
.y177{bottom:401.986500px;}
.y209{bottom:402.136500px;}
.y37{bottom:407.746500px;}
.y1e3{bottom:411.495000px;}
.y1c{bottom:411.705000px;}
.y19c{bottom:415.486500px;}
.y208{bottom:415.636500px;}
.y157{bottom:415.846500px;}
.y9b{bottom:417.286500px;}
.y176{bottom:418.365000px;}
.y142{bottom:419.265000px;}
.ydc{bottom:423.225000px;}
.y36{bottom:424.125000px;}
.y6f{bottom:424.846500px;}
.y1e2{bottom:427.875000px;}
.y1bc{bottom:428.265000px;}
.y207{bottom:429.136500px;}
.y9a{bottom:434.565000px;}
.y175{bottom:434.746500px;}
.y141{bottom:435.465000px;}
.y1b{bottom:437.805000px;}
.y35{bottom:440.325000px;}
.ydb{bottom:440.505000px;}
.y19b{bottom:440.865000px;}
.y6e{bottom:441.225000px;}
.y1e1{bottom:444.255000px;}
.y206{bottom:446.415000px;}
.ye2{bottom:448.575000px;}
.y174{bottom:451.125000px;}
.y99{bottom:451.846500px;}
.y140{bottom:452.025000px;}
.y1bb{bottom:453.465000px;}
.y19a{bottom:457.246500px;}
.y6d{bottom:457.605000px;}
.yda{bottom:457.786500px;}
.y205{bottom:459.915000px;}
.y1e0{bottom:460.636500px;}
.y173{bottom:467.505000px;}
.y13f{bottom:468.225000px;}
.y98{bottom:469.125000px;}
.y1ba{bottom:470.025000px;}
.y204{bottom:473.415000px;}
.y199{bottom:473.625000px;}
.y6c{bottom:473.986500px;}
.yd9{bottom:475.065000px;}
.y1d6{bottom:476.550000px;}
.y1df{bottom:477.015000px;}
.y13e{bottom:484.786500px;}
.y97{bottom:486.225000px;}
.y203{bottom:486.915000px;}
.y198{bottom:490.005000px;}
.y6b{bottom:490.365000px;}
.yd8{bottom:492.346500px;}
.y172{bottom:492.886500px;}
.y1de{bottom:493.395000px;}
.ydd{bottom:495.375000px;}
.y13d{bottom:501.165000px;}
.y1b9{bottom:502.786500px;}
.y96{bottom:503.505000px;}
.y202{bottom:504.195000px;}
.y197{bottom:506.386500px;}
.y6a{bottom:506.746500px;}
.y171{bottom:509.265000px;}
.y112{bottom:511.065000px;}
.yd7{bottom:512.505000px;}
.y13c{bottom:517.545000px;}
.y201{bottom:517.695000px;}
.y1dd{bottom:518.775000px;}
.y1b8{bottom:519.165000px;}
.y95{bottom:520.786500px;}
.y196{bottom:522.765000px;}
.y69{bottom:523.125000px;}
.y11b{bottom:523.800000px;}
.y170{bottom:525.645000px;}
.yd6{bottom:529.786500px;}
.y200{bottom:531.195000px;}
.y13b{bottom:533.925000px;}
.y1dc{bottom:535.155000px;}
.y1b7{bottom:535.545000px;}
.y111{bottom:536.986500px;}
.y94{bottom:538.065000px;}
.y195{bottom:539.145000px;}
.y119{bottom:539.175000px;}
.y68{bottom:539.505000px;}
.y16f{bottom:542.025000px;}
.y1ff{bottom:544.695000px;}
.yd5{bottom:547.065000px;}
.y13a{bottom:550.125000px;}
.y1db{bottom:551.715000px;}
.y1b6{bottom:551.925000px;}
.y110{bottom:553.365000px;}
.y117{bottom:553.725000px;}
.y93{bottom:555.346500px;}
.y194{bottom:555.525000px;}
.y67{bottom:556.065000px;}
.y16e{bottom:558.405000px;}
.y1fe{bottom:561.975000px;}
.y139{bottom:566.686500px;}
.y1da{bottom:567.915000px;}
.y1b5{bottom:568.125000px;}
.y115{bottom:568.275000px;}
.y193{bottom:571.905000px;}
.y66{bottom:572.265000px;}
.y10f{bottom:574.425000px;}
.y16d{bottom:574.786500px;}
.y1fd{bottom:575.475000px;}
.y19{bottom:581.146500px;}
.y92{bottom:581.986500px;}
.y113{bottom:582.825000px;}
.y138{bottom:583.065000px;}
.y1d9{bottom:584.475000px;}
.y1b4{bottom:584.686500px;}
.y192{bottom:588.286500px;}
.y65{bottom:588.825000px;}
.y1fc{bottom:588.975000px;}
.y16c{bottom:591.165000px;}
.y18{bottom:598.425000px;}
.y1d8{bottom:600.675000px;}
.y10e{bottom:600.705000px;}
.y1b3{bottom:601.065000px;}
.y191{bottom:604.665000px;}
.y64{bottom:605.025000px;}
.y1fb{bottom:606.075000px;}
.y16b{bottom:607.545000px;}
.y137{bottom:608.446500px;}
.ycf{bottom:612.045000px;}
.y1d7{bottom:617.055000px;}
.y91{bottom:617.446500px;}
.y10d{bottom:617.986500px;}
.y1fa{bottom:619.575000px;}
.y63{bottom:621.586500px;}
.y16a{bottom:623.925000px;}
.y136{bottom:624.825000px;}
.yce{bottom:629.325000px;}
.y190{bottom:630.045000px;}
.y17{bottom:630.646500px;}
.y90{bottom:633.825000px;}
.y10c{bottom:635.265000px;}
.y62{bottom:637.965000px;}
.y169{bottom:640.305000px;}
.y135{bottom:641.205000px;}
.ycd{bottom:646.425000px;}
.y16{bottom:647.925000px;}
.y8f{bottom:650.205000px;}
.y10b{bottom:652.545000px;}
.y61{bottom:654.346500px;}
.y168{bottom:656.686500px;}
.ycc{bottom:663.705000px;}
.y15{bottom:665.025000px;}
.y8e{bottom:666.586500px;}
.y10a{bottom:669.825000px;}
.y60{bottom:670.725000px;}
.yd0{bottom:670.875000px;}
.ycb{bottom:680.986500px;}
.y167{bottom:682.065000px;}
.y14{bottom:682.305000px;}
.y8d{bottom:682.965000px;}
.y109{bottom:686.925000px;}
.y5f{bottom:696.645000px;}
.yca{bottom:698.265000px;}
.y166{bottom:698.445000px;}
.y8c{bottom:699.345000px;}
.y13{bottom:699.586500px;}
.y108{bottom:704.205000px;}
.yc9{bottom:715.545000px;}
.y8b{bottom:715.725000px;}
.y12{bottom:716.865000px;}
.y107{bottom:721.486500px;}
.y5e{bottom:732.105000px;}
.y11{bottom:734.146500px;}
.yc8{bottom:735.705000px;}
.y106{bottom:738.765000px;}
.y5d{bottom:748.486500px;}
.y10{bottom:751.425000px;}
.y105{bottom:758.925000px;}
.yc1{bottom:760.186500px;}
.y5c{bottom:764.865000px;}
.yf{bottom:768.525000px;}
.y104{bottom:776.205000px;}
.y5b{bottom:781.245000px;}
.ybd{bottom:784.486500px;}
.ye{bottom:785.805000px;}
.y103{bottom:793.486500px;}
.y5a{bottom:797.625000px;}
.yd{bottom:803.086500px;}
.y102{bottom:810.765000px;}
.y59{bottom:814.005000px;}
.yb8{bottom:814.186500px;}
.yc{bottom:820.365000px;}
.y101{bottom:828.045000px;}
.y58{bottom:830.386500px;}
.yb{bottom:837.645000px;}
.y134{bottom:839.386500px;}
.y100{bottom:845.325000px;}
.y57{bottom:846.765000px;}
.ya{bottom:854.925000px;}
.y133{bottom:855.765000px;}
.yc4{bottom:856.650000px;}
.yff{bottom:862.425000px;}
.yc2{bottom:862.575000px;}
.y56{bottom:863.145000px;}
.y132{bottom:872.145000px;}
.y9{bottom:872.745000px;}
.y55{bottom:879.525000px;}
.yfe{bottom:879.705000px;}
.ybe{bottom:886.875000px;}
.y8a{bottom:888.525000px;}
.yaf{bottom:893.565000px;}
.y54{bottom:895.905000px;}
.yfd{bottom:896.986500px;}
.y89{bottom:904.905000px;}
.yba{bottom:910.650000px;}
.yae{bottom:910.845000px;}
.y53{bottom:912.465000px;}
.y8{bottom:913.065000px;}
.yb9{bottom:913.500000px;}
.yfc{bottom:914.265000px;}
.y88{bottom:921.465000px;}
.yad{bottom:928.125000px;}
.y18f{bottom:928.665000px;}
.y7{bottom:930.345000px;}
.yfb{bottom:934.425000px;}
.y52{bottom:937.665000px;}
.yb0{bottom:941.925000px;}
.yac{bottom:945.225000px;}
.y6{bottom:947.625000px;}
.yfa{bottom:951.705000px;}
.y51{bottom:954.225000px;}
.yab{bottom:962.505000px;}
.yf9{bottom:968.986500px;}
.y50{bottom:970.425000px;}
.ya8{bottom:983.925000px;}
.y5{bottom:984.705000px;}
.yf8{bottom:986.265000px;}
.y4f{bottom:986.805000px;}
.y4{bottom:1015.665000px;}
.y3{bottom:1055.265000px;}
.ya9{bottom:1083.225000px;}
.y2{bottom:1086.225000px;}
.y1{bottom:1117.186500px;}
.h20{height:14.475000px;}
.h23{height:15.300000px;}
.h15{height:16.200000px;}
.ha{height:23.775000px;}
.h1c{height:26.625000px;}
.h14{height:28.425000px;}
.h7{height:28.500000px;}
.h8{height:28.928813px;}
.he{height:28.949156px;}
.h16{height:30.225000px;}
.h18{height:30.680063px;}
.hf{height:30.698063px;}
.h10{height:30.861469px;}
.h21{height:32.734570px;}
.h22{height:33.560010px;}
.h3{height:40.460742px;}
.h1d{height:40.725000px;}
.h4{height:41.481006px;}
.h17{height:41.775000px;}
.h1{height:48.796875px;}
.h12{height:49.592250px;}
.hd{height:49.627125px;}
.hc{height:52.200000px;}
.hb{height:52.905375px;}
.h13{height:55.589888px;}
.h1a{height:61.115156px;}
.h11{height:67.484250px;}
.h19{height:67.496250px;}
.h1b{height:70.857375px;}
.h9{height:70.905375px;}
.h2{height:73.195313px;}
.h1e{height:79.358063px;}
.h1f{height:108.577459px;}
.h5{height:454.950000px;}
.h24{height:631.650000px;}
.h6{height:1001.400000px;}
.h0{height:1188.000000px;}
.w8{width:18.000000px;}
.w6{width:19.800000px;}
.w7{width:34.200000px;}
.w5{width:37.800000px;}
.w2{width:55.800000px;}
.wb{width:69.075000px;}
.w10{width:79.575000px;}
.w3{width:81.600000px;}
.we{width:91.200000px;}
.wf{width:95.175000px;}
.wd{width:121.350000px;}
.w9{width:166.650000px;}
.wa{width:182.850000px;}
.w4{width:192.450000px;}
.wc{width:274.875000px;}
.w1{width:460.200000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x27{left:1.023000px;}
.x1e{left:2.725500px;}
.x36{left:4.411500px;}
.x3f{left:8.055000px;}
.x24{left:10.375500px;}
.xa{left:11.404500px;}
.x2b{left:13.135500px;}
.x4{left:14.700000px;}
.x1c{left:16.585500px;}
.x26{left:27.229500px;}
.x17{left:30.352500px;}
.x5{left:36.300000px;}
.x37{left:42.010500px;}
.x1f{left:43.038000px;}
.x6{left:44.760000px;}
.x38{left:45.765000px;}
.x9{left:46.845000px;}
.x43{left:48.000000px;}
.x3a{left:51.820500px;}
.x12{left:56.851500px;}
.x35{left:60.018000px;}
.x46{left:62.400000px;}
.x1{left:66.960000px;}
.x15{left:68.175000px;}
.xd{left:71.872500px;}
.x3d{left:76.260000px;}
.x7{left:81.480000px;}
.x45{left:83.820000px;}
.x2{left:88.560000px;}
.x30{left:90.222000px;}
.x13{left:92.371500px;}
.x44{left:94.260000px;}
.x20{left:97.020000px;}
.x1d{left:99.796500px;}
.x11{left:103.272000px;}
.x1b{left:107.595000px;}
.x34{left:113.625000px;}
.xb{left:115.500000px;}
.x33{left:129.784500px;}
.xc{left:134.250000px;}
.x2f{left:137.092500px;}
.x1a{left:140.437500px;}
.x21{left:145.050000px;}
.x29{left:151.575000px;}
.x2e{left:157.032000px;}
.x19{left:159.466500px;}
.x18{left:162.990000px;}
.x16{left:167.077500px;}
.x32{left:173.155500px;}
.xf{left:175.125000px;}
.x14{left:177.321000px;}
.x31{left:179.850000px;}
.x10{left:182.959500px;}
.x2d{left:187.950000px;}
.x22{left:191.880000px;}
.xe{left:216.000000px;}
.x3c{left:224.638500px;}
.x39{left:232.254000px;}
.x3b{left:254.973000px;}
.x25{left:266.400000px;}
.x28{left:308.520000px;}
.x2a{left:366.300000px;}
.x2c{left:412.920000px;}
.x23{left:425.700000px;}
.x3{left:457.800000px;}
.x3e{left:468.225000px;}
.x8{left:517.500000px;}
.x40{left:589.500000px;}
.x41{left:680.625000px;}
.x42{left:775.725000px;}
@media print{
.v2{vertical-align:-43.253333pt;}
.v4{vertical-align:-28.592000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v3{vertical-align:28.592000pt;}
.v5{vertical-align:37.205333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.133333pt;}
.ls2{letter-spacing:72.018731pt;}
.ls4{letter-spacing:336.552064pt;}
.ls3{letter-spacing:481.560064pt;}
.ls5{letter-spacing:483.170731pt;}
.wsda{word-spacing:-63.488000pt;}
.ws4{word-spacing:-50.669867pt;}
.ws210{word-spacing:-49.728000pt;}
.wsbb{word-spacing:-49.330176pt;}
.ws7{word-spacing:-41.366133pt;}
.ws29{word-spacing:-41.232800pt;}
.wscb{word-spacing:-36.556803pt;}
.ws3{word-spacing:-35.451733pt;}
.ws8{word-spacing:-35.200000pt;}
.wsd7{word-spacing:-34.791424pt;}
.ws0{word-spacing:-34.164267pt;}
.ws1{word-spacing:-34.144267pt;}
.ws5e{word-spacing:-33.828800pt;}
.wse5{word-spacing:-33.824000pt;}
.ws2{word-spacing:-33.728000pt;}
.ws106{word-spacing:-33.359200pt;}
.wsb2{word-spacing:-31.701845pt;}
.ws194{word-spacing:-28.944000pt;}
.ws150{word-spacing:-28.880800pt;}
.ws111{word-spacing:-28.809067pt;}
.ws37{word-spacing:-28.800000pt;}
.wsb9{word-spacing:-28.775936pt;}
.ws189{word-spacing:-28.775467pt;}
.ws1b1{word-spacing:-28.770133pt;}
.ws197{word-spacing:-28.748000pt;}
.ws1a7{word-spacing:-28.741333pt;}
.ws15d{word-spacing:-28.713067pt;}
.ws125{word-spacing:-28.711200pt;}
.ws9b{word-spacing:-28.689600pt;}
.ws205{word-spacing:-28.689333pt;}
.ws1d3{word-spacing:-28.674667pt;}
.ws8c{word-spacing:-28.671733pt;}
.ws1e4{word-spacing:-28.645600pt;}
.ws1fa{word-spacing:-28.644800pt;}
.ws18d{word-spacing:-28.644000pt;}
.ws208{word-spacing:-28.643467pt;}
.ws6d{word-spacing:-28.639467pt;}
.ws1ee{word-spacing:-28.614133pt;}
.ws18c{word-spacing:-28.610400pt;}
.ws11b{word-spacing:-28.581067pt;}
.ws131{word-spacing:-28.574667pt;}
.ws13c{word-spacing:-28.561067pt;}
.ws152{word-spacing:-28.560800pt;}
.ws103{word-spacing:-28.557333pt;}
.ws5d{word-spacing:-28.556000pt;}
.ws147{word-spacing:-28.555733pt;}
.ws1d0{word-spacing:-28.549333pt;}
.ws6e{word-spacing:-28.536800pt;}
.ws7c{word-spacing:-28.529067pt;}
.ws60{word-spacing:-28.526667pt;}
.ws1b4{word-spacing:-28.516000pt;}
.ws176{word-spacing:-28.512000pt;}
.ws8a{word-spacing:-28.481867pt;}
.ws1c9{word-spacing:-28.460267pt;}
.ws161{word-spacing:-28.440267pt;}
.ws160{word-spacing:-28.419467pt;}
.ws51{word-spacing:-28.410400pt;}
.ws22{word-spacing:-28.403467pt;}
.ws6b{word-spacing:-28.365600pt;}
.ws40{word-spacing:-28.364000pt;}
.ws107{word-spacing:-28.358933pt;}
.ws112{word-spacing:-28.349333pt;}
.ws1e1{word-spacing:-28.348533pt;}
.ws8d{word-spacing:-28.347467pt;}
.ws151{word-spacing:-28.344000pt;}
.wsd2{word-spacing:-28.328267pt;}
.ws1c1{word-spacing:-28.326400pt;}
.wsd3{word-spacing:-28.297867pt;}
.ws1cd{word-spacing:-28.290133pt;}
.ws178{word-spacing:-28.261333pt;}
.ws1e2{word-spacing:-28.253867pt;}
.ws1c0{word-spacing:-28.251200pt;}
.ws6{word-spacing:-28.237067pt;}
.ws8e{word-spacing:-28.206667pt;}
.wsf9{word-spacing:-28.198933pt;}
.ws5b{word-spacing:-28.196000pt;}
.wsac{word-spacing:-28.189333pt;}
.wsb8{word-spacing:-28.182667pt;}
.wsdd{word-spacing:-28.139200pt;}
.ws5{word-spacing:-28.137067pt;}
.ws177{word-spacing:-28.089600pt;}
.ws1a9{word-spacing:-28.073067pt;}
.ws102{word-spacing:-28.047467pt;}
.wsce{word-spacing:-28.043733pt;}
.wsa9{word-spacing:-28.040800pt;}
.wsa8{word-spacing:-27.993333pt;}
.wse4{word-spacing:-27.970667pt;}
.ws19e{word-spacing:-27.970400pt;}
.ws1a{word-spacing:-27.935733pt;}
.ws105{word-spacing:-27.888800pt;}
.ws10a{word-spacing:-27.864000pt;}
.ws17{word-spacing:-27.863733pt;}
.wsaa{word-spacing:-27.859733pt;}
.wsc9{word-spacing:-27.844800pt;}
.ws156{word-spacing:-27.836533pt;}
.wsef{word-spacing:-27.834667pt;}
.ws202{word-spacing:-27.834133pt;}
.ws185{word-spacing:-27.795467pt;}
.ws209{word-spacing:-27.778933pt;}
.wse6{word-spacing:-27.766133pt;}
.ws1bc{word-spacing:-27.728533pt;}
.ws34{word-spacing:-27.704000pt;}
.wsb3{word-spacing:-27.619467pt;}
.ws16a{word-spacing:-27.611200pt;}
.ws1e5{word-spacing:-27.605067pt;}
.wsa1{word-spacing:-27.599467pt;}
.ws104{word-spacing:-27.544000pt;}
.ws20f{word-spacing:-27.436533pt;}
.ws122{word-spacing:-27.372000pt;}
.ws1f{word-spacing:-27.359467pt;}
.ws4d{word-spacing:-27.330400pt;}
.ws141{word-spacing:-27.324000pt;}
.wsb0{word-spacing:-27.210667pt;}
.ws1a1{word-spacing:-27.191200pt;}
.wsf6{word-spacing:-27.057867pt;}
.wsf{word-spacing:-26.923200pt;}
.wsbe{word-spacing:-26.905600pt;}
.wsbd{word-spacing:-26.886667pt;}
.wse8{word-spacing:-26.885600pt;}
.ws1d4{word-spacing:-26.884800pt;}
.wsb6{word-spacing:-26.864533pt;}
.wsb7{word-spacing:-26.854133pt;}
.ws9{word-spacing:-26.831200pt;}
.wsdc{word-spacing:-26.772267pt;}
.wsfb{word-spacing:-26.769067pt;}
.ws1bf{word-spacing:-26.754400pt;}
.wscd{word-spacing:-26.749867pt;}
.wsec{word-spacing:-26.709333pt;}
.ws12d{word-spacing:-26.636000pt;}
.ws57{word-spacing:-26.635733pt;}
.ws31{word-spacing:-26.549067pt;}
.ws146{word-spacing:-26.416800pt;}
.ws82{word-spacing:-26.377867pt;}
.ws10{word-spacing:-26.356000pt;}
.ws171{word-spacing:-26.334933pt;}
.ws132{word-spacing:-26.331200pt;}
.ws26{word-spacing:-26.319733pt;}
.ws84{word-spacing:-26.315733pt;}
.wsa{word-spacing:-26.224533pt;}
.ws14c{word-spacing:-26.208000pt;}
.ws12c{word-spacing:-26.200000pt;}
.ws38{word-spacing:-26.167200pt;}
.ws144{word-spacing:-26.156800pt;}
.wsc2{word-spacing:-26.137600pt;}
.wsbf{word-spacing:-26.132267pt;}
.ws1b6{word-spacing:-26.035733pt;}
.ws14e{word-spacing:-26.001333pt;}
.ws16{word-spacing:-25.999467pt;}
.ws15f{word-spacing:-25.894133pt;}
.ws149{word-spacing:-25.874400pt;}
.ws3d{word-spacing:-25.863200pt;}
.ws83{word-spacing:-25.749600pt;}
.ws174{word-spacing:-25.701333pt;}
.wsc{word-spacing:-25.701067pt;}
.ws73{word-spacing:-25.693867pt;}
.ws139{word-spacing:-25.686400pt;}
.wsb4{word-spacing:-25.603467pt;}
.wsbc{word-spacing:-25.584533pt;}
.ws153{word-spacing:-25.460800pt;}
.wsc6{word-spacing:-25.416267pt;}
.ws46{word-spacing:-25.358400pt;}
.ws114{word-spacing:-25.350667pt;}
.ws52{word-spacing:-25.196000pt;}
.ws4c{word-spacing:-25.136000pt;}
.ws1cc{word-spacing:-25.057867pt;}
.ws1dc{word-spacing:-24.992000pt;}
.ws13b{word-spacing:-24.858133pt;}
.ws110{word-spacing:-24.823200pt;}
.ws99{word-spacing:-24.822667pt;}
.ws88{word-spacing:-24.716000pt;}
.ws30{word-spacing:-24.681600pt;}
.wsa2{word-spacing:-24.669067pt;}
.ws1c7{word-spacing:-24.629867pt;}
.ws190{word-spacing:-24.504000pt;}
.ws1c3{word-spacing:-24.467200pt;}
.ws1d6{word-spacing:-24.457867pt;}
.wsff{word-spacing:-24.421067pt;}
.ws1f7{word-spacing:-24.376800pt;}
.ws12b{word-spacing:-24.366133pt;}
.wsdb{word-spacing:-24.304533pt;}
.ws11{word-spacing:-24.198933pt;}
.ws193{word-spacing:-24.165867pt;}
.ws62{word-spacing:-24.157600pt;}
.ws7a{word-spacing:-24.144000pt;}
.wsf4{word-spacing:-24.123200pt;}
.ws16b{word-spacing:-24.106400pt;}
.ws201{word-spacing:-24.021600pt;}
.ws19f{word-spacing:-23.978133pt;}
.ws1ce{word-spacing:-23.941333pt;}
.wse1{word-spacing:-23.792000pt;}
.ws162{word-spacing:-23.776533pt;}
.ws172{word-spacing:-23.771200pt;}
.wsab{word-spacing:-23.668693pt;}
.ws229{word-spacing:-23.512533pt;}
.ws11d{word-spacing:-23.507200pt;}
.ws1b2{word-spacing:-23.477867pt;}
.wsae{word-spacing:-23.382133pt;}
.ws236{word-spacing:-23.280267pt;}
.ws5c{word-spacing:-23.279467pt;}
.ws7f{word-spacing:-23.227467pt;}
.ws23a{word-spacing:-23.208000pt;}
.ws217{word-spacing:-23.198400pt;}
.ws199{word-spacing:-23.194667pt;}
.ws21a{word-spacing:-23.185867pt;}
.ws21e{word-spacing:-23.177867pt;}
.ws10c{word-spacing:-23.133867pt;}
.ws23d{word-spacing:-23.108267pt;}
.ws213{word-spacing:-23.100800pt;}
.ws231{word-spacing:-23.070400pt;}
.ws232{word-spacing:-23.065067pt;}
.wscc{word-spacing:-23.062667pt;}
.ws2d{word-spacing:-23.021333pt;}
.ws222{word-spacing:-23.008533pt;}
.ws32{word-spacing:-23.008000pt;}
.ws22d{word-spacing:-22.945067pt;}
.ws179{word-spacing:-22.922933pt;}
.ws2b{word-spacing:-22.905333pt;}
.ws121{word-spacing:-22.890133pt;}
.ws234{word-spacing:-22.846400pt;}
.ws8b{word-spacing:-22.796000pt;}
.ws15c{word-spacing:-22.795733pt;}
.wsfc{word-spacing:-22.582667pt;}
.ws92{word-spacing:-22.506667pt;}
.ws2f{word-spacing:-22.491467pt;}
.ws1e6{word-spacing:-22.491200pt;}
.ws211{word-spacing:-22.419733pt;}
.wsd9{word-spacing:-22.418347pt;}
.ws16e{word-spacing:-22.405867pt;}
.ws166{word-spacing:-22.287733pt;}
.ws1b9{word-spacing:-22.271467pt;}
.ws28{word-spacing:-22.155733pt;}
.ws15{word-spacing:-22.130667pt;}
.ws5a{word-spacing:-22.111733pt;}
.ws20a{word-spacing:-22.069867pt;}
.ws19a{word-spacing:-22.028533pt;}
.ws1a8{word-spacing:-21.996000pt;}
.ws1bb{word-spacing:-21.984800pt;}
.ws145{word-spacing:-21.944000pt;}
.wsed{word-spacing:-21.919733pt;}
.ws11c{word-spacing:-21.895733pt;}
.ws1f1{word-spacing:-21.872533pt;}
.ws13e{word-spacing:-21.731733pt;}
.wsb{word-spacing:-21.658933pt;}
.ws123{word-spacing:-21.649600pt;}
.ws23c{word-spacing:-21.570133pt;}
.ws15e{word-spacing:-21.547200pt;}
.ws5f{word-spacing:-21.541067pt;}
.ws15a{word-spacing:-21.476000pt;}
.ws225{word-spacing:-21.431733pt;}
.ws1b3{word-spacing:-21.390133pt;}
.ws6c{word-spacing:-21.333867pt;}
.ws91{word-spacing:-21.331467pt;}
.ws1d5{word-spacing:-21.308533pt;}
.wsee{word-spacing:-21.268267pt;}
.ws77{word-spacing:-21.254133pt;}
.ws17e{word-spacing:-21.240800pt;}
.ws158{word-spacing:-21.217867pt;}
.wsa5{word-spacing:-21.198933pt;}
.ws14f{word-spacing:-21.166133pt;}
.ws218{word-spacing:-21.155200pt;}
.ws1a0{word-spacing:-21.140000pt;}
.wsc7{word-spacing:-21.044800pt;}
.ws1d8{word-spacing:-21.016800pt;}
.ws9d{word-spacing:-20.960800pt;}
.wsd{word-spacing:-20.886400pt;}
.ws164{word-spacing:-20.827733pt;}
.ws206{word-spacing:-20.758933pt;}
.ws1c2{word-spacing:-20.670667pt;}
.ws136{word-spacing:-20.615733pt;}
.ws1cb{word-spacing:-20.586133pt;}
.ws159{word-spacing:-20.545333pt;}
.ws182{word-spacing:-20.521600pt;}
.ws7b{word-spacing:-20.520000pt;}
.ws63{word-spacing:-20.512800pt;}
.ws22a{word-spacing:-20.505067pt;}
.wsd1{word-spacing:-20.502667pt;}
.ws72{word-spacing:-20.305867pt;}
.wsc1{word-spacing:-20.294997pt;}
.ws1a3{word-spacing:-20.236000pt;}
.ws12a{word-spacing:-20.126400pt;}
.ws41{word-spacing:-20.051467pt;}
.ws165{word-spacing:-19.936533pt;}
.ws167{word-spacing:-19.932533pt;}
.wsf0{word-spacing:-19.862667pt;}
.ws124{word-spacing:-19.854667pt;}
.ws87{word-spacing:-19.781067pt;}
.ws21{word-spacing:-19.769600pt;}
.ws43{word-spacing:-19.721600pt;}
.ws70{word-spacing:-19.597600pt;}
.ws195{word-spacing:-19.501333pt;}
.ws1dd{word-spacing:-19.463467pt;}
.wsa0{word-spacing:-19.443200pt;}
.ws109{word-spacing:-19.432533pt;}
.ws198{word-spacing:-19.407733pt;}
.ws15b{word-spacing:-19.389333pt;}
.ws239{word-spacing:-19.293333pt;}
.ws1f9{word-spacing:-19.239733pt;}
.ws1fb{word-spacing:-19.132267pt;}
.ws1ae{word-spacing:-19.057867pt;}
.ws90{word-spacing:-19.015733pt;}
.wse3{word-spacing:-18.903733pt;}
.ws49{word-spacing:-18.816000pt;}
.ws137{word-spacing:-18.768000pt;}
.ws9c{word-spacing:-18.746667pt;}
.ws148{word-spacing:-18.744000pt;}
.ws1b{word-spacing:-18.741333pt;}
.ws18a{word-spacing:-18.656533pt;}
.ws24{word-spacing:-18.599733pt;}
.wsa7{word-spacing:-18.544533pt;}
.ws192{word-spacing:-18.541067pt;}
.ws23{word-spacing:-18.484533pt;}
.ws1d{word-spacing:-18.367733pt;}
.ws59{word-spacing:-18.321067pt;}
.ws1d1{word-spacing:-18.265333pt;}
.ws1c{word-spacing:-18.194667pt;}
.wse7{word-spacing:-18.179200pt;}
.ws187{word-spacing:-18.012533pt;}
.ws237{word-spacing:-17.945067pt;}
.ws76{word-spacing:-17.937600pt;}
.ws175{word-spacing:-17.925867pt;}
.ws183{word-spacing:-17.895467pt;}
.ws56{word-spacing:-17.890667pt;}
.ws1fd{word-spacing:-17.870133pt;}
.ws170{word-spacing:-17.831733pt;}
.ws20c{word-spacing:-17.828267pt;}
.ws16f{word-spacing:-17.730400pt;}
.ws39{word-spacing:-17.666667pt;}
.ws173{word-spacing:-17.585333pt;}
.ws61{word-spacing:-17.517600pt;}
.ws12f{word-spacing:-17.488533pt;}
.ws85{word-spacing:-17.449867pt;}
.ws1ac{word-spacing:-17.361067pt;}
.ws207{word-spacing:-17.201867pt;}
.ws1e8{word-spacing:-17.156800pt;}
.ws2a{word-spacing:-17.066400pt;}
.ws10e{word-spacing:-16.966933pt;}
.ws48{word-spacing:-16.757600pt;}
.ws1c5{word-spacing:-16.731200pt;}
.ws13d{word-spacing:-16.716000pt;}
.ws21f{word-spacing:-16.665067pt;}
.ws1d7{word-spacing:-16.617867pt;}
.ws221{word-spacing:-16.611733pt;}
.ws100{word-spacing:-16.527200pt;}
.wsf8{word-spacing:-16.450667pt;}
.ws3b{word-spacing:-16.425333pt;}
.ws68{word-spacing:-16.406400pt;}
.ws1ff{word-spacing:-16.165333pt;}
.ws14{word-spacing:-16.152800pt;}
.ws2e{word-spacing:-16.149600pt;}
.wsf7{word-spacing:-16.118133pt;}
.ws1e0{word-spacing:-16.091200pt;}
.ws215{word-spacing:-15.997600pt;}
.wsc4{word-spacing:-15.922400pt;}
.ws143{word-spacing:-15.913067pt;}
.wsa4{word-spacing:-15.848800pt;}
.ws130{word-spacing:-15.810400pt;}
.ws11a{word-spacing:-15.750667pt;}
.ws235{word-spacing:-15.717067pt;}
.ws1a4{word-spacing:-15.609333pt;}
.ws22e{word-spacing:-15.554667pt;}
.ws1f0{word-spacing:-15.436000pt;}
.ws1d2{word-spacing:-15.412000pt;}
.ws27{word-spacing:-15.387200pt;}
.ws12{word-spacing:-15.382667pt;}
.ws238{word-spacing:-15.359200pt;}
.wsa3{word-spacing:-15.288800pt;}
.ws3e{word-spacing:-15.248267pt;}
.ws1ec{word-spacing:-15.194400pt;}
.ws75{word-spacing:-15.170400pt;}
.ws20d{word-spacing:-15.141067pt;}
.ws11e{word-spacing:-15.116000pt;}
.ws1cf{word-spacing:-15.057067pt;}
.ws1ba{word-spacing:-14.908533pt;}
.ws120{word-spacing:-14.904000pt;}
.ws36{word-spacing:-14.816533pt;}
.ws12e{word-spacing:-14.728267pt;}
.ws200{word-spacing:-14.649600pt;}
.ws89{word-spacing:-14.594400pt;}
.ws4b{word-spacing:-14.582667pt;}
.ws13{word-spacing:-14.500533pt;}
.ws19b{word-spacing:-14.380800pt;}
.ws180{word-spacing:-14.316000pt;}
.ws1fc{word-spacing:-14.241867pt;}
.ws16c{word-spacing:-14.206133pt;}
.ws1e9{word-spacing:-14.160000pt;}
.ws4a{word-spacing:-14.131467pt;}
.wse{word-spacing:-14.107733pt;}
.ws14b{word-spacing:-14.026667pt;}
.ws128{word-spacing:-13.962933pt;}
.ws67{word-spacing:-13.832000pt;}
.ws3a{word-spacing:-13.657333pt;}
.ws226{word-spacing:-13.624000pt;}
.ws127{word-spacing:-13.556800pt;}
.ws1fe{word-spacing:-13.532533pt;}
.ws1b7{word-spacing:-13.525067pt;}
.ws214{word-spacing:-13.336800pt;}
.ws42{word-spacing:-13.327467pt;}
.ws50{word-spacing:-13.250400pt;}
.ws1df{word-spacing:-13.240267pt;}
.ws113{word-spacing:-12.982400pt;}
.ws1e3{word-spacing:-12.809867pt;}
.ws1b8{word-spacing:-12.450400pt;}
.ws16d{word-spacing:-12.404800pt;}
.ws17a{word-spacing:-12.342133pt;}
.ws1b5{word-spacing:-12.330667pt;}
.ws119{word-spacing:-12.292267pt;}
.wsc0{word-spacing:-12.047147pt;}
.ws79{word-spacing:-11.916000pt;}
.wsfe{word-spacing:-11.616533pt;}
.ws47{word-spacing:-11.611200pt;}
.ws21c{word-spacing:-11.519200pt;}
.ws33{word-spacing:-11.449067pt;}
.ws18b{word-spacing:-11.357867pt;}
.wsb5{word-spacing:-11.330667pt;}
.ws19{word-spacing:-11.311200pt;}
.ws154{word-spacing:-11.276000pt;}
.ws212{word-spacing:-11.237067pt;}
.ws94{word-spacing:-11.148000pt;}
.wsc8{word-spacing:-11.126133pt;}
.ws18{word-spacing:-10.904000pt;}
.wsf5{word-spacing:-10.843467pt;}
.ws1f8{word-spacing:-10.821333pt;}
.ws45{word-spacing:-10.649333pt;}
.ws17f{word-spacing:-10.636000pt;}
.wsf2{word-spacing:-10.578400pt;}
.wsc5{word-spacing:-10.564800pt;}
.ws20b{word-spacing:-10.210400pt;}
.ws138{word-spacing:-10.203200pt;}
.ws1da{word-spacing:-10.155200pt;}
.wsd0{word-spacing:-10.050667pt;}
.ws7d{word-spacing:-10.023467pt;}
.ws1f2{word-spacing:-10.009867pt;}
.ws17c{word-spacing:-9.911200pt;}
.wse2{word-spacing:-9.853867pt;}
.ws64{word-spacing:-9.760000pt;}
.ws1f4{word-spacing:-9.701333pt;}
.ws155{word-spacing:-9.691200pt;}
.ws21b{word-spacing:-9.498667pt;}
.ws230{word-spacing:-9.401600pt;}
.ws9f{word-spacing:-9.361333pt;}
.ws19d{word-spacing:-9.284267pt;}
.ws108{word-spacing:-9.216000pt;}
.ws169{word-spacing:-9.188267pt;}
.ws140{word-spacing:-9.144000pt;}
.ws69{word-spacing:-9.046400pt;}
.ws18f{word-spacing:-9.036000pt;}
.ws7e{word-spacing:-8.856267pt;}
.ws86{word-spacing:-8.716000pt;}
.ws13a{word-spacing:-8.657867pt;}
.ws117{word-spacing:-8.620000pt;}
.ws10f{word-spacing:-8.566133pt;}
.ws23b{word-spacing:-8.530933pt;}
.ws1ad{word-spacing:-8.406133pt;}
.ws22c{word-spacing:-8.324533pt;}
.ws10d{word-spacing:-8.046133pt;}
.ws93{word-spacing:-8.032000pt;}
.ws20{word-spacing:-7.869333pt;}
.ws168{word-spacing:-7.709867pt;}
.ws1a5{word-spacing:-7.617600pt;}
.ws53{word-spacing:-7.610133pt;}
.ws1f3{word-spacing:-7.587733pt;}
.ws1c8{word-spacing:-7.173867pt;}
.ws1de{word-spacing:-7.132533pt;}
.ws223{word-spacing:-7.109600pt;}
.ws1e{word-spacing:-6.850400pt;}
.ws13f{word-spacing:-6.008000pt;}
.ws35{word-spacing:-5.849600pt;}
.wsfa{word-spacing:-5.652267pt;}
.ws18e{word-spacing:-5.634400pt;}
.ws19c{word-spacing:-5.281333pt;}
.ws1ed{word-spacing:-5.156267pt;}
.ws1c4{word-spacing:-4.571200pt;}
.ws126{word-spacing:-4.545333pt;}
.ws196{word-spacing:-4.494933pt;}
.ws95{word-spacing:-4.171733pt;}
.ws4f{word-spacing:-3.979733pt;}
.ws1db{word-spacing:-3.951467pt;}
.ws4e{word-spacing:-3.899467pt;}
.ws97{word-spacing:-3.566133pt;}
.ws11f{word-spacing:-3.511200pt;}
.ws163{word-spacing:-3.495200pt;}
.ws233{word-spacing:-3.484267pt;}
.wsa6{word-spacing:-3.375733pt;}
.ws1ef{word-spacing:-3.291200pt;}
.ws9e{word-spacing:-3.283200pt;}
.ws157{word-spacing:-3.182933pt;}
.ws1e7{word-spacing:-3.181067pt;}
.ws135{word-spacing:-2.908533pt;}
.ws3c{word-spacing:-2.794933pt;}
.wscf{word-spacing:-2.731733pt;}
.ws98{word-spacing:-2.661333pt;}
.ws1ea{word-spacing:-2.622133pt;}
.ws115{word-spacing:-2.412000pt;}
.wsf3{word-spacing:-2.274133pt;}
.ws58{word-spacing:-2.121600pt;}
.wsea{word-spacing:-2.088267pt;}
.ws1ca{word-spacing:-2.011200pt;}
.ws1eb{word-spacing:-1.807733pt;}
.ws216{word-spacing:-1.705867pt;}
.wsad{word-spacing:-1.689867pt;}
.ws129{word-spacing:-1.458667pt;}
.ws1bd{word-spacing:-1.318667pt;}
.ws227{word-spacing:-1.164800pt;}
.ws80{word-spacing:-1.085067pt;}
.ws78{word-spacing:-1.070667pt;}
.ws3f{word-spacing:-1.041067pt;}
.wse9{word-spacing:-1.017067pt;}
.ws101{word-spacing:-0.674133pt;}
.ws1d9{word-spacing:-0.569600pt;}
.wseb{word-spacing:-0.568800pt;}
.ws2c{word-spacing:-0.184533pt;}
.ws188{word-spacing:-0.091200pt;}
.ws65{word-spacing:-0.072000pt;}
.wsaf{word-spacing:0.000000pt;}
.ws1b0{word-spacing:0.375733pt;}
.ws25{word-spacing:0.392800pt;}
.ws9a{word-spacing:0.567733pt;}
.ws20e{word-spacing:0.634400pt;}
.wsf1{word-spacing:0.853333pt;}
.ws55{word-spacing:0.933600pt;}
.ws134{word-spacing:1.242667pt;}
.ws1a2{word-spacing:1.332800pt;}
.ws228{word-spacing:1.380800pt;}
.ws6f{word-spacing:1.847733pt;}
.ws1c6{word-spacing:2.032533pt;}
.ws1af{word-spacing:2.749600pt;}
.ws142{word-spacing:2.876533pt;}
.ws10b{word-spacing:2.990133pt;}
.ws14a{word-spacing:3.858400pt;}
.ws118{word-spacing:4.334400pt;}
.ws81{word-spacing:4.351200pt;}
.ws96{word-spacing:4.380800pt;}
.wsfd{word-spacing:4.457600pt;}
.ws21d{word-spacing:4.475467pt;}
.ws181{word-spacing:5.063200pt;}
.ws14d{word-spacing:5.224267pt;}
.ws1f5{word-spacing:5.338933pt;}
.ws71{word-spacing:5.485333pt;}
.ws203{word-spacing:5.577867pt;}
.ws6a{word-spacing:6.154400pt;}
.ws184{word-spacing:6.433600pt;}
.ws74{word-spacing:6.901067pt;}
.ws54{word-spacing:7.273067pt;}
.ws1a6{word-spacing:7.289600pt;}
.ws204{word-spacing:7.470667pt;}
.ws44{word-spacing:7.884533pt;}
.ws22b{word-spacing:9.367200pt;}
.ws1aa{word-spacing:9.558400pt;}
.ws133{word-spacing:9.578133pt;}
.ws186{word-spacing:10.488000pt;}
.ws1be{word-spacing:10.836000pt;}
.wsc3{word-spacing:10.857333pt;}
.wsd8{word-spacing:11.379733pt;}
.ws224{word-spacing:11.838133pt;}
.ws191{word-spacing:12.696800pt;}
.ws1ab{word-spacing:13.346133pt;}
.ws17d{word-spacing:13.896000pt;}
.ws116{word-spacing:14.569333pt;}
.ws66{word-spacing:15.644267pt;}
.ws17b{word-spacing:18.113867pt;}
.ws8f{word-spacing:21.180267pt;}
.wsb1{word-spacing:21.202987pt;}
.ws219{word-spacing:23.560267pt;}
.ws1f6{word-spacing:24.564000pt;}
.ws22f{word-spacing:24.689067pt;}
.ws220{word-spacing:42.240800pt;}
.wsd5{word-spacing:73.963520pt;}
.wsd4{word-spacing:99.389653pt;}
.wsca{word-spacing:163.078187pt;}
.wsba{word-spacing:163.371520pt;}
.wsd6{word-spacing:390.992640pt;}
.wsde{word-spacing:555.610795pt;}
.wse0{word-spacing:584.088320pt;}
.wsdf{word-spacing:829.119829pt;}
._4b{margin-left:-497.765589pt;}
._37{margin-left:-495.415424pt;}
._2f{margin-left:-460.133504pt;}
._24{margin-left:-423.457877pt;}
._2d{margin-left:-411.601877pt;}
._3f{margin-left:-385.767424pt;}
._2c{margin-left:-377.626837pt;}
._36{margin-left:-313.350187pt;}
._31{margin-left:-298.917504pt;}
._3d{margin-left:-297.650091pt;}
._43{margin-left:-290.983851pt;}
._35{margin-left:-276.091008pt;}
._41{margin-left:-273.117269pt;}
._46{margin-left:-270.957184pt;}
._44{margin-left:-236.914517pt;}
._4a{margin-left:-221.509333pt;}
._30{margin-left:-218.534787pt;}
._33{margin-left:-181.621333pt;}
._45{margin-left:-179.831851pt;}
._1e{margin-left:-168.685013pt;}
._3c{margin-left:-164.597333pt;}
._42{margin-left:-162.473085pt;}
._49{margin-left:-157.829504pt;}
._19{margin-left:-148.818347pt;}
._27{margin-left:-142.000000pt;}
._3e{margin-left:-133.927424pt;}
._48{margin-left:-131.255680pt;}
._47{margin-left:-128.013824pt;}
._2e{margin-left:-120.023936pt;}
._1d{margin-left:-113.277013pt;}
._34{margin-left:-102.682667pt;}
._1b{margin-left:-90.656171pt;}
._28{margin-left:-88.309973pt;}
._40{margin-left:-84.860757pt;}
._1c{margin-left:-81.349333pt;}
._4e{margin-left:-78.458752pt;}
._3a{margin-left:-72.789333pt;}
._21{margin-left:-65.957333pt;}
._22{margin-left:-63.287211pt;}
._26{margin-left:-61.251755pt;}
._4d{margin-left:-59.776000pt;}
._25{margin-left:-55.863936pt;}
._3b{margin-left:-53.765333pt;}
._32{margin-left:-52.465877pt;}
._39{margin-left:-48.170837pt;}
._4c{margin-left:-46.760875pt;}
._23{margin-left:-41.569877pt;}
._1f{margin-left:-40.396544pt;}
._2a{margin-left:-35.281664pt;}
._20{margin-left:-30.209877pt;}
._d{margin-left:-1.050133pt;}
._1{width:0.921333pt;}
._29{width:2.200789pt;}
._57{width:9.904800pt;}
._58{width:11.269067pt;}
._11{width:13.416000pt;}
._3{width:14.874400pt;}
._4{width:15.844800pt;}
._0{width:16.756267pt;}
._8{width:17.996267pt;}
._9{width:18.887733pt;}
._5{width:20.653333pt;}
._6{width:21.609867pt;}
._e{width:22.543733pt;}
._f{width:23.546133pt;}
._12{width:24.546400pt;}
._b{width:26.002133pt;}
._a{width:26.972267pt;}
._7{width:28.259733pt;}
._52{width:30.087200pt;}
._c{width:31.523733pt;}
._15{width:32.909333pt;}
._50{width:34.075733pt;}
._55{width:35.232000pt;}
._10{width:36.281867pt;}
._14{width:38.258133pt;}
._18{width:39.236267pt;}
._2{width:40.190133pt;}
._1a{width:41.134933pt;}
._16{width:42.458933pt;}
._4f{width:43.363200pt;}
._17{width:46.501067pt;}
._53{width:48.774400pt;}
._13{width:50.082667pt;}
._51{width:52.104000pt;}
._2b{width:53.005067pt;}
._38{width:54.012267pt;}
._54{width:55.143467pt;}
._59{width:59.020000pt;}
._56{width:67.152267pt;}
.fs3{font-size:37.034667pt;}
.fs7{font-size:42.933333pt;}
.fs2{font-size:53.066667pt;}
.fs4{font-size:63.488000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:66.709494pt;}
.fs5{font-size:95.232000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y11a{bottom:2.266667pt;}
.y118{bottom:2.293333pt;}
.y116{bottom:2.321333pt;}
.y114{bottom:2.346667pt;}
.y11c{bottom:2.974667pt;}
.yea{bottom:3.352000pt;}
.yc3{bottom:3.886667pt;}
.ye4{bottom:3.904000pt;}
.yc0{bottom:3.921333pt;}
.ydf{bottom:3.948000pt;}
.ya5{bottom:3.958667pt;}
.yd2{bottom:4.641333pt;}
.yb6{bottom:4.764000pt;}
.ybb{bottom:5.277333pt;}
.yc6{bottom:5.332000pt;}
.yb3{bottom:5.965333pt;}
.y18e{bottom:6.280000pt;}
.yaa{bottom:6.562667pt;}
.yf7{bottom:7.721333pt;}
.ye3{bottom:7.848000pt;}
.yde{bottom:7.937333pt;}
.y34{bottom:8.521333pt;}
.yb7{bottom:8.741333pt;}
.ybc{bottom:9.266667pt;}
.yc7{bottom:9.361333pt;}
.ybf{bottom:11.021333pt;}
.y4e{bottom:11.400000pt;}
.y87{bottom:12.041333pt;}
.yec{bottom:14.706667pt;}
.ya7{bottom:14.760000pt;}
.ye9{bottom:15.000000pt;}
.ye0{bottom:15.085333pt;}
.ya4{bottom:15.125333pt;}
.y1d5{bottom:15.721333pt;}
.yd4{bottom:15.873333pt;}
.yc5{bottom:16.581333pt;}
.yb5{bottom:17.193333pt;}
.y1f9{bottom:18.093333pt;}
.y1b2{bottom:18.280000pt;}
.yeb{bottom:18.728000pt;}
.yd1{bottom:19.852000pt;}
.y18d{bottom:20.841333pt;}
.yb1{bottom:21.169333pt;}
.y33{bottom:23.080000pt;}
.y4d{bottom:25.960000pt;}
.y86{bottom:26.600000pt;}
.yd3{bottom:26.980000pt;}
.yb4{bottom:28.296000pt;}
.y1f8{bottom:30.093333pt;}
.ya6{bottom:30.121333pt;}
.y1d4{bottom:30.280000pt;}
.yb2{bottom:31.196000pt;}
.y1b1{bottom:32.841333pt;}
.y221{bottom:34.093333pt;}
.y18c{bottom:35.400000pt;}
.y131{bottom:37.000000pt;}
.y32{bottom:37.641333pt;}
.yf6{bottom:38.441333pt;}
.y4c{bottom:40.521333pt;}
.y85{bottom:41.160000pt;}
.y1d3{bottom:44.841333pt;}
.y1f7{bottom:45.454667pt;}
.y220{bottom:46.093333pt;}
.y1b0{bottom:47.400000pt;}
.y18b{bottom:49.960000pt;}
.y130{bottom:51.400000pt;}
.y31{bottom:52.200000pt;}
.ya2{bottom:53.160000pt;}
.yf5{bottom:53.800000pt;}
.y4b{bottom:55.080000pt;}
.y84{bottom:55.880000pt;}
.y1f6{bottom:57.454667pt;}
.y21f{bottom:58.093333pt;}
.y1d2{bottom:59.400000pt;}
.y1af{bottom:61.960000pt;}
.y18a{bottom:64.521333pt;}
.y156{bottom:65.321333pt;}
.y12f{bottom:66.121333pt;}
.y30{bottom:66.760000pt;}
.yf4{bottom:69.000000pt;}
.y1f5{bottom:69.454667pt;}
.y4a{bottom:69.641333pt;}
.y83{bottom:70.280000pt;}
.ya1{bottom:73.321333pt;}
.y21e{bottom:73.454667pt;}
.y1d1{bottom:73.960000pt;}
.y189{bottom:79.080000pt;}
.y155{bottom:79.880000pt;}
.y12e{bottom:80.680000pt;}
.y2f{bottom:81.321333pt;}
.y49{bottom:84.200000pt;}
.yf3{bottom:84.360000pt;}
.y1ae{bottom:84.521333pt;}
.y82{bottom:85.000000pt;}
.y21d{bottom:85.454667pt;}
.y1f4{bottom:90.413333pt;}
.ya0{bottom:91.400000pt;}
.y188{bottom:93.641333pt;}
.y154{bottom:94.441333pt;}
.y1a{bottom:94.933333pt;}
.y12d{bottom:95.240000pt;}
.y2e{bottom:95.880000pt;}
.y1d0{bottom:96.521333pt;}
.y21c{bottom:97.454667pt;}
.y48{bottom:98.760000pt;}
.y1ad{bottom:99.080000pt;}
.y81{bottom:99.400000pt;}
.yf2{bottom:107.880000pt;}
.y153{bottom:109.000000pt;}
.y21b{bottom:109.454667pt;}
.y12c{bottom:109.800000pt;}
.y2d{bottom:110.441333pt;}
.y1cf{bottom:111.080000pt;}
.y47{bottom:113.321333pt;}
.y1ac{bottom:113.641333pt;}
.y80{bottom:114.121333pt;}
.y187{bottom:116.200000pt;}
.y152{bottom:123.560000pt;}
.y12b{bottom:124.360000pt;}
.y1f3{bottom:124.813333pt;}
.y2c{bottom:125.000000pt;}
.y1ce{bottom:125.641333pt;}
.y46{bottom:127.880000pt;}
.y1ab{bottom:128.200000pt;}
.y7f{bottom:128.680000pt;}
.y186{bottom:130.760000pt;}
.yf1{bottom:131.880000pt;}
.y165{bottom:135.080000pt;}
.y21a{bottom:136.813333pt;}
.y151{bottom:138.121333pt;}
.y12a{bottom:138.921333pt;}
.y1f2{bottom:139.373333pt;}
.y2b{bottom:139.560000pt;}
.ya3{bottom:140.133333pt;}
.y1cd{bottom:140.200000pt;}
.y1aa{bottom:142.760000pt;}
.y185{bottom:145.321333pt;}
.y164{bottom:149.641333pt;}
.y45{bottom:150.441333pt;}
.y7e{bottom:151.240000pt;}
.y219{bottom:152.174667pt;}
.y150{bottom:152.680000pt;}
.y129{bottom:153.480000pt;}
.y1f1{bottom:153.933333pt;}
.y2a{bottom:154.121333pt;}
.y1cc{bottom:154.760000pt;}
.y1a9{bottom:157.321333pt;}
.y184{bottom:159.880000pt;}
.y218{bottom:164.174667pt;}
.y163{bottom:164.200000pt;}
.y44{bottom:165.000000pt;}
.y7d{bottom:165.800000pt;}
.y14f{bottom:167.240000pt;}
.y128{bottom:168.041333pt;}
.y1f0{bottom:168.333333pt;}
.y1c0{bottom:168.680000pt;}
.y1cb{bottom:169.321333pt;}
.y1a8{bottom:171.880000pt;}
.y183{bottom:174.441333pt;}
.y217{bottom:176.174667pt;}
.y29{bottom:176.680000pt;}
.y43{bottom:179.560000pt;}
.yf0{bottom:180.200000pt;}
.y7c{bottom:180.360000pt;}
.y14e{bottom:181.800000pt;}
.y1ef{bottom:183.054667pt;}
.y1bf{bottom:183.240000pt;}
.y1ca{bottom:183.880000pt;}
.y1a7{bottom:186.441333pt;}
.y162{bottom:186.760000pt;}
.y182{bottom:189.000000pt;}
.y127{bottom:190.600000pt;}
.y28{bottom:191.240000pt;}
.y216{bottom:191.533333pt;}
.y42{bottom:194.121333pt;}
.y7b{bottom:194.921333pt;}
.yef{bottom:195.560000pt;}
.y1ee{bottom:197.613333pt;}
.y1be{bottom:197.800000pt;}
.y1c9{bottom:198.441333pt;}
.y1a6{bottom:201.000000pt;}
.y161{bottom:201.480000pt;}
.y215{bottom:203.533333pt;}
.y181{bottom:203.560000pt;}
.y14d{bottom:204.360000pt;}
.y126{bottom:205.160000pt;}
.y27{bottom:205.800000pt;}
.y41{bottom:208.680000pt;}
.y7a{bottom:209.480000pt;}
.y1ed{bottom:212.174667pt;}
.y1bd{bottom:212.360000pt;}
.y1c8{bottom:213.000000pt;}
.y214{bottom:215.533333pt;}
.y1a5{bottom:215.560000pt;}
.y160{bottom:215.880000pt;}
.yed{bottom:216.041333pt;}
.y180{bottom:218.121333pt;}
.y14c{bottom:218.921333pt;}
.y125{bottom:219.721333pt;}
.y26{bottom:220.360000pt;}
.y40{bottom:223.240000pt;}
.y79{bottom:224.041333pt;}
.y1ec{bottom:226.733333pt;}
.y213{bottom:227.533333pt;}
.y1c7{bottom:227.560000pt;}
.y15f{bottom:230.600000pt;}
.y17f{bottom:232.680000pt;}
.y14b{bottom:233.480000pt;}
.y124{bottom:234.280000pt;}
.y25{bottom:234.921333pt;}
.y3f{bottom:237.800000pt;}
.y1a4{bottom:238.280000pt;}
.y78{bottom:238.600000pt;}
.y1eb{bottom:241.293333pt;}
.y1c6{bottom:242.121333pt;}
.y212{bottom:242.733333pt;}
.y15e{bottom:245.000000pt;}
.y17e{bottom:247.240000pt;}
.y14a{bottom:248.041333pt;}
.y123{bottom:248.841333pt;}
.y24{bottom:249.480000pt;}
.y3e{bottom:252.360000pt;}
.y1a3{bottom:252.680000pt;}
.y77{bottom:253.160000pt;}
.y211{bottom:254.733333pt;}
.y1ea{bottom:255.854667pt;}
.y1c5{bottom:256.680000pt;}
.y15d{bottom:259.721333pt;}
.y149{bottom:262.600000pt;}
.y122{bottom:263.400000pt;}
.y23{bottom:264.041333pt;}
.y210{bottom:266.733333pt;}
.y3d{bottom:267.080000pt;}
.y1a2{bottom:267.240000pt;}
.y76{bottom:267.721333pt;}
.y17d{bottom:269.800000pt;}
.y1e9{bottom:270.413333pt;}
.y1c4{bottom:271.240000pt;}
.y15c{bottom:274.280000pt;}
.ye7{bottom:276.041333pt;}
.y148{bottom:277.160000pt;}
.y121{bottom:277.960000pt;}
.y22{bottom:278.600000pt;}
.y20f{bottom:278.733333pt;}
.y3c{bottom:281.480000pt;}
.y1a1{bottom:281.800000pt;}
.y75{bottom:282.280000pt;}
.y17c{bottom:284.360000pt;}
.y1c3{bottom:285.800000pt;}
.y15b{bottom:288.841333pt;}
.ye6{bottom:291.400000pt;}
.y147{bottom:291.721333pt;}
.y120{bottom:292.521333pt;}
.y1e8{bottom:292.973333pt;}
.y21{bottom:293.160000pt;}
.y20e{bottom:294.093333pt;}
.y3b{bottom:296.200000pt;}
.y1a0{bottom:296.360000pt;}
.y74{bottom:296.841333pt;}
.y17b{bottom:299.080000pt;}
.y1c2{bottom:300.360000pt;}
.yee{bottom:302.866667pt;}
.y15a{bottom:303.400000pt;}
.y20d{bottom:306.093333pt;}
.y146{bottom:306.280000pt;}
.y11f{bottom:307.080000pt;}
.y1e7{bottom:307.533333pt;}
.y20{bottom:307.721333pt;}
.y9f{bottom:309.641333pt;}
.y3a{bottom:310.600000pt;}
.y19f{bottom:311.080000pt;}
.y73{bottom:311.400000pt;}
.ye5{bottom:311.880000pt;}
.y17a{bottom:313.480000pt;}
.y159{bottom:317.960000pt;}
.y20c{bottom:318.093333pt;}
.y145{bottom:320.841333pt;}
.y11e{bottom:321.641333pt;}
.y1e6{bottom:322.093333pt;}
.y1f{bottom:322.280000pt;}
.y1c1{bottom:323.560000pt;}
.y9e{bottom:325.000000pt;}
.y39{bottom:325.321333pt;}
.y19e{bottom:325.480000pt;}
.y72{bottom:325.960000pt;}
.y179{bottom:328.200000pt;}
.ye8{bottom:329.266667pt;}
.y20b{bottom:330.093333pt;}
.ye1{bottom:330.280000pt;}
.y158{bottom:332.521333pt;}
.y144{bottom:335.400000pt;}
.y11d{bottom:336.200000pt;}
.y1e5{bottom:336.654667pt;}
.y1e{bottom:336.841333pt;}
.y38{bottom:339.880000pt;}
.y9d{bottom:340.200000pt;}
.y71{bottom:340.521333pt;}
.y178{bottom:342.600000pt;}
.y20a{bottom:345.454667pt;}
.y143{bottom:349.960000pt;}
.y1e4{bottom:351.213333pt;}
.y1d{bottom:351.400000pt;}
.y19d{bottom:354.600000pt;}
.y70{bottom:355.080000pt;}
.y9c{bottom:355.560000pt;}
.y177{bottom:357.321333pt;}
.y209{bottom:357.454667pt;}
.y37{bottom:362.441333pt;}
.y1e3{bottom:365.773333pt;}
.y1c{bottom:365.960000pt;}
.y19c{bottom:369.321333pt;}
.y208{bottom:369.454667pt;}
.y157{bottom:369.641333pt;}
.y9b{bottom:370.921333pt;}
.y176{bottom:371.880000pt;}
.y142{bottom:372.680000pt;}
.ydc{bottom:376.200000pt;}
.y36{bottom:377.000000pt;}
.y6f{bottom:377.641333pt;}
.y1e2{bottom:380.333333pt;}
.y1bc{bottom:380.680000pt;}
.y207{bottom:381.454667pt;}
.y9a{bottom:386.280000pt;}
.y175{bottom:386.441333pt;}
.y141{bottom:387.080000pt;}
.y1b{bottom:389.160000pt;}
.y35{bottom:391.400000pt;}
.ydb{bottom:391.560000pt;}
.y19b{bottom:391.880000pt;}
.y6e{bottom:392.200000pt;}
.y1e1{bottom:394.893333pt;}
.y206{bottom:396.813333pt;}
.ye2{bottom:398.733333pt;}
.y174{bottom:401.000000pt;}
.y99{bottom:401.641333pt;}
.y140{bottom:401.800000pt;}
.y1bb{bottom:403.080000pt;}
.y19a{bottom:406.441333pt;}
.y6d{bottom:406.760000pt;}
.yda{bottom:406.921333pt;}
.y205{bottom:408.813333pt;}
.y1e0{bottom:409.454667pt;}
.y173{bottom:415.560000pt;}
.y13f{bottom:416.200000pt;}
.y98{bottom:417.000000pt;}
.y1ba{bottom:417.800000pt;}
.y204{bottom:420.813333pt;}
.y199{bottom:421.000000pt;}
.y6c{bottom:421.321333pt;}
.yd9{bottom:422.280000pt;}
.y1d6{bottom:423.600000pt;}
.y1df{bottom:424.013333pt;}
.y13e{bottom:430.921333pt;}
.y97{bottom:432.200000pt;}
.y203{bottom:432.813333pt;}
.y198{bottom:435.560000pt;}
.y6b{bottom:435.880000pt;}
.yd8{bottom:437.641333pt;}
.y172{bottom:438.121333pt;}
.y1de{bottom:438.573333pt;}
.ydd{bottom:440.333333pt;}
.y13d{bottom:445.480000pt;}
.y1b9{bottom:446.921333pt;}
.y96{bottom:447.560000pt;}
.y202{bottom:448.173333pt;}
.y197{bottom:450.121333pt;}
.y6a{bottom:450.441333pt;}
.y171{bottom:452.680000pt;}
.y112{bottom:454.280000pt;}
.yd7{bottom:455.560000pt;}
.y13c{bottom:460.040000pt;}
.y201{bottom:460.173333pt;}
.y1dd{bottom:461.133333pt;}
.y1b8{bottom:461.480000pt;}
.y95{bottom:462.921333pt;}
.y196{bottom:464.680000pt;}
.y69{bottom:465.000000pt;}
.y11b{bottom:465.600000pt;}
.y170{bottom:467.240000pt;}
.yd6{bottom:470.921333pt;}
.y200{bottom:472.173333pt;}
.y13b{bottom:474.600000pt;}
.y1dc{bottom:475.693333pt;}
.y1b7{bottom:476.040000pt;}
.y111{bottom:477.321333pt;}
.y94{bottom:478.280000pt;}
.y195{bottom:479.240000pt;}
.y119{bottom:479.266667pt;}
.y68{bottom:479.560000pt;}
.y16f{bottom:481.800000pt;}
.y1ff{bottom:484.173333pt;}
.yd5{bottom:486.280000pt;}
.y13a{bottom:489.000000pt;}
.y1db{bottom:490.413333pt;}
.y1b6{bottom:490.600000pt;}
.y110{bottom:491.880000pt;}
.y117{bottom:492.200000pt;}
.y93{bottom:493.641333pt;}
.y194{bottom:493.800000pt;}
.y67{bottom:494.280000pt;}
.y16e{bottom:496.360000pt;}
.y1fe{bottom:499.533333pt;}
.y139{bottom:503.721333pt;}
.y1da{bottom:504.813333pt;}
.y1b5{bottom:505.000000pt;}
.y115{bottom:505.133333pt;}
.y193{bottom:508.360000pt;}
.y66{bottom:508.680000pt;}
.y10f{bottom:510.600000pt;}
.y16d{bottom:510.921333pt;}
.y1fd{bottom:511.533333pt;}
.y19{bottom:516.574667pt;}
.y92{bottom:517.321333pt;}
.y113{bottom:518.066667pt;}
.y138{bottom:518.280000pt;}
.y1d9{bottom:519.533333pt;}
.y1b4{bottom:519.721333pt;}
.y192{bottom:522.921333pt;}
.y65{bottom:523.400000pt;}
.y1fc{bottom:523.533333pt;}
.y16c{bottom:525.480000pt;}
.y18{bottom:531.933333pt;}
.y1d8{bottom:533.933333pt;}
.y10e{bottom:533.960000pt;}
.y1b3{bottom:534.280000pt;}
.y191{bottom:537.480000pt;}
.y64{bottom:537.800000pt;}
.y1fb{bottom:538.733333pt;}
.y16b{bottom:540.040000pt;}
.y137{bottom:540.841333pt;}
.ycf{bottom:544.040000pt;}
.y1d7{bottom:548.493333pt;}
.y91{bottom:548.841333pt;}
.y10d{bottom:549.321333pt;}
.y1fa{bottom:550.733333pt;}
.y63{bottom:552.521333pt;}
.y16a{bottom:554.600000pt;}
.y136{bottom:555.400000pt;}
.yce{bottom:559.400000pt;}
.y190{bottom:560.040000pt;}
.y17{bottom:560.574667pt;}
.y90{bottom:563.400000pt;}
.y10c{bottom:564.680000pt;}
.y62{bottom:567.080000pt;}
.y169{bottom:569.160000pt;}
.y135{bottom:569.960000pt;}
.ycd{bottom:574.600000pt;}
.y16{bottom:575.933333pt;}
.y8f{bottom:577.960000pt;}
.y10b{bottom:580.040000pt;}
.y61{bottom:581.641333pt;}
.y168{bottom:583.721333pt;}
.ycc{bottom:589.960000pt;}
.y15{bottom:591.133333pt;}
.y8e{bottom:592.521333pt;}
.y10a{bottom:595.400000pt;}
.y60{bottom:596.200000pt;}
.yd0{bottom:596.333333pt;}
.ycb{bottom:605.321333pt;}
.y167{bottom:606.280000pt;}
.y14{bottom:606.493333pt;}
.y8d{bottom:607.080000pt;}
.y109{bottom:610.600000pt;}
.y5f{bottom:619.240000pt;}
.yca{bottom:620.680000pt;}
.y166{bottom:620.840000pt;}
.y8c{bottom:621.640000pt;}
.y13{bottom:621.854667pt;}
.y108{bottom:625.960000pt;}
.yc9{bottom:636.040000pt;}
.y8b{bottom:636.200000pt;}
.y12{bottom:637.213333pt;}
.y107{bottom:641.321333pt;}
.y5e{bottom:650.760000pt;}
.y11{bottom:652.574667pt;}
.yc8{bottom:653.960000pt;}
.y106{bottom:656.680000pt;}
.y5d{bottom:665.321333pt;}
.y10{bottom:667.933333pt;}
.y105{bottom:674.600000pt;}
.yc1{bottom:675.721333pt;}
.y5c{bottom:679.880000pt;}
.yf{bottom:683.133333pt;}
.y104{bottom:689.960000pt;}
.y5b{bottom:694.440000pt;}
.ybd{bottom:697.321333pt;}
.ye{bottom:698.493333pt;}
.y103{bottom:705.321333pt;}
.y5a{bottom:709.000000pt;}
.yd{bottom:713.854667pt;}
.y102{bottom:720.680000pt;}
.y59{bottom:723.560000pt;}
.yb8{bottom:723.721333pt;}
.yc{bottom:729.213333pt;}
.y101{bottom:736.040000pt;}
.y58{bottom:738.121333pt;}
.yb{bottom:744.573333pt;}
.y134{bottom:746.121333pt;}
.y100{bottom:751.400000pt;}
.y57{bottom:752.680000pt;}
.ya{bottom:759.933333pt;}
.y133{bottom:760.680000pt;}
.yc4{bottom:761.466667pt;}
.yff{bottom:766.600000pt;}
.yc2{bottom:766.733333pt;}
.y56{bottom:767.240000pt;}
.y132{bottom:775.240000pt;}
.y9{bottom:775.773333pt;}
.y55{bottom:781.800000pt;}
.yfe{bottom:781.960000pt;}
.ybe{bottom:788.333333pt;}
.y8a{bottom:789.800000pt;}
.yaf{bottom:794.280000pt;}
.y54{bottom:796.360000pt;}
.yfd{bottom:797.321333pt;}
.y89{bottom:804.360000pt;}
.yba{bottom:809.466667pt;}
.yae{bottom:809.640000pt;}
.y53{bottom:811.080000pt;}
.y8{bottom:811.613333pt;}
.yb9{bottom:812.000000pt;}
.yfc{bottom:812.680000pt;}
.y88{bottom:819.080000pt;}
.yad{bottom:825.000000pt;}
.y18f{bottom:825.480000pt;}
.y7{bottom:826.973333pt;}
.yfb{bottom:830.600000pt;}
.y52{bottom:833.480000pt;}
.yb0{bottom:837.266667pt;}
.yac{bottom:840.200000pt;}
.y6{bottom:842.333333pt;}
.yfa{bottom:845.960000pt;}
.y51{bottom:848.200000pt;}
.yab{bottom:855.560000pt;}
.yf9{bottom:861.321333pt;}
.y50{bottom:862.600000pt;}
.ya8{bottom:874.600000pt;}
.y5{bottom:875.293333pt;}
.yf8{bottom:876.680000pt;}
.y4f{bottom:877.160000pt;}
.y4{bottom:902.813333pt;}
.y3{bottom:938.013333pt;}
.ya9{bottom:962.866667pt;}
.y2{bottom:965.533333pt;}
.y1{bottom:993.054667pt;}
.h20{height:12.866667pt;}
.h23{height:13.600000pt;}
.h15{height:14.400000pt;}
.ha{height:21.133333pt;}
.h1c{height:23.666667pt;}
.h14{height:25.266667pt;}
.h7{height:25.333333pt;}
.h8{height:25.714500pt;}
.he{height:25.732583pt;}
.h16{height:26.866667pt;}
.h18{height:27.271167pt;}
.hf{height:27.287167pt;}
.h10{height:27.432417pt;}
.h21{height:29.097396pt;}
.h22{height:29.831120pt;}
.h3{height:35.965104pt;}
.h1d{height:36.200000pt;}
.h4{height:36.872005pt;}
.h17{height:37.133333pt;}
.h1{height:43.375000pt;}
.h12{height:44.082000pt;}
.hd{height:44.113000pt;}
.hc{height:46.400000pt;}
.hb{height:47.027000pt;}
.h13{height:49.413233pt;}
.h1a{height:54.324583pt;}
.h11{height:59.986000pt;}
.h19{height:59.996667pt;}
.h1b{height:62.984333pt;}
.h9{height:63.027000pt;}
.h2{height:65.062500pt;}
.h1e{height:70.540500pt;}
.h1f{height:96.513297pt;}
.h5{height:404.400000pt;}
.h24{height:561.466667pt;}
.h6{height:890.133333pt;}
.h0{height:1056.000000pt;}
.w8{width:16.000000pt;}
.w6{width:17.600000pt;}
.w7{width:30.400000pt;}
.w5{width:33.600000pt;}
.w2{width:49.600000pt;}
.wb{width:61.400000pt;}
.w10{width:70.733333pt;}
.w3{width:72.533333pt;}
.we{width:81.066667pt;}
.wf{width:84.600000pt;}
.wd{width:107.866667pt;}
.w9{width:148.133333pt;}
.wa{width:162.533333pt;}
.w4{width:171.066667pt;}
.wc{width:244.333333pt;}
.w1{width:409.066667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x27{left:0.909333pt;}
.x1e{left:2.422667pt;}
.x36{left:3.921333pt;}
.x3f{left:7.160000pt;}
.x24{left:9.222667pt;}
.xa{left:10.137333pt;}
.x2b{left:11.676000pt;}
.x4{left:13.066667pt;}
.x1c{left:14.742667pt;}
.x26{left:24.204000pt;}
.x17{left:26.980000pt;}
.x5{left:32.266667pt;}
.x37{left:37.342667pt;}
.x1f{left:38.256000pt;}
.x6{left:39.786667pt;}
.x38{left:40.680000pt;}
.x9{left:41.640000pt;}
.x43{left:42.666667pt;}
.x3a{left:46.062667pt;}
.x12{left:50.534667pt;}
.x35{left:53.349333pt;}
.x46{left:55.466667pt;}
.x1{left:59.520000pt;}
.x15{left:60.600000pt;}
.xd{left:63.886667pt;}
.x3d{left:67.786667pt;}
.x7{left:72.426667pt;}
.x45{left:74.506667pt;}
.x2{left:78.720000pt;}
.x30{left:80.197333pt;}
.x13{left:82.108000pt;}
.x44{left:83.786667pt;}
.x20{left:86.240000pt;}
.x1d{left:88.708000pt;}
.x11{left:91.797333pt;}
.x1b{left:95.640000pt;}
.x34{left:101.000000pt;}
.xb{left:102.666667pt;}
.x33{left:115.364000pt;}
.xc{left:119.333333pt;}
.x2f{left:121.860000pt;}
.x1a{left:124.833333pt;}
.x21{left:128.933333pt;}
.x29{left:134.733333pt;}
.x2e{left:139.584000pt;}
.x19{left:141.748000pt;}
.x18{left:144.880000pt;}
.x16{left:148.513333pt;}
.x32{left:153.916000pt;}
.xf{left:155.666667pt;}
.x14{left:157.618667pt;}
.x31{left:159.866667pt;}
.x10{left:162.630667pt;}
.x2d{left:167.066667pt;}
.x22{left:170.560000pt;}
.xe{left:192.000000pt;}
.x3c{left:199.678667pt;}
.x39{left:206.448000pt;}
.x3b{left:226.642667pt;}
.x25{left:236.800000pt;}
.x28{left:274.240000pt;}
.x2a{left:325.600000pt;}
.x2c{left:367.040000pt;}
.x23{left:378.400000pt;}
.x3{left:406.933333pt;}
.x3e{left:416.200000pt;}
.x8{left:460.000000pt;}
.x40{left:524.000000pt;}
.x41{left:605.000000pt;}
.x42{left:689.533333pt;}
}




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