
    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_049000da84509414752d4292.woff')format("woff");}.ff1{font-family:ff1;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f0b9effa51064a836df5b9fc.woff')format("woff");}.ff2{font-family:ff2;line-height:1.034000;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_4c194b1bc2e3706e166c4062.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921000;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_5b82564ac1ba961ae9b5471f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.209000;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_efdb1b13c75baf94f2773476.woff')format("woff");}.ff5{font-family:ff5;line-height:1.001000;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_039d7bb01ed486aa427c5826.woff')format("woff");}.ff6{font-family:ff6;line-height:0.944000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b981036f934aaba0545e84cd.woff')format("woff");}.ff7{font-family:ff7;line-height:0.706000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_dce93a8a64f0a879642e3f23.woff')format("woff");}.ff8{font-family:ff8;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e5ac8b806f9e3ee0c351687a.woff')format("woff");}.ff9{font-family:ff9;line-height:1.163000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_73e1848897f250d6d7ed7922.woff')format("woff");}.ffa{font-family:ffa;line-height:0.869000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_60901dd79a5682bf01915241.woff')format("woff");}.ffb{font-family:ffb;line-height:0.902000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_62e68544795b4dccf86bb5b2.woff')format("woff");}.ffc{font-family:ffc;line-height:0.863281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_f0d555603f0898fc51e6cb45.woff')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_bc6003ad126dec5a4fd00b43.woff')format("woff");}.ffe{font-family:ffe;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_fcb99371dc77eecda6bdb2ad.woff')format("woff");}.fff{font-family:fff;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_3c952c77df3c30d283535656.woff')format("woff");}.ff10{font-family:ff10;line-height:0.769000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_22f7b3bcb6ec0ba1251d184b.woff')format("woff");}.ff11{font-family:ff11;line-height:0.046000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_0c0bfec2f9844825ae460301.woff')format("woff");}.ff12{font-family:ff12;line-height:0.791000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_0ad132484adc7f312f58b3e9.woff')format("woff");}.ff13{font-family:ff13;line-height:1.163000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_c9fbd45acfbb3ef03f2db3b1.woff')format("woff");}.ff14{font-family:ff14;line-height:0.681000;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:ff15;src:url('chunks/assets/font_731f5f4794dbff10f13de071.woff')format("woff");}.ff15{font-family:ff15;line-height:0.888000;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;}
.ff16{font-family:sans-serif;visibility:hidden;}
.ff17{font-family:sans-serif;visibility:hidden;}
.ff18{font-family:sans-serif;visibility:hidden;}
.ff19{font-family:sans-serif;visibility:hidden;}
.ff1a{font-family:sans-serif;visibility:hidden;}
.ff1b{font-family:sans-serif;visibility:hidden;}
.ff1c{font-family:sans-serif;visibility:hidden;}
.ff1d{font-family:sans-serif;visibility:hidden;}
.ff1e{font-family:sans-serif;visibility:hidden;}
.ff1f{font-family:sans-serif;visibility:hidden;}
.ff20{font-family:sans-serif;visibility:hidden;}
.ff21{font-family:sans-serif;visibility:hidden;}
.ff22{font-family:sans-serif;visibility:hidden;}
.ff23{font-family:sans-serif;visibility:hidden;}
.ff24{font-family:sans-serif;visibility:hidden;}
.ff25{font-family:sans-serif;visibility:hidden;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-9.816000px;}
.v4{vertical-align:-7.324200px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:26.028000px;}
.v1{vertical-align:31.236000px;}
.ls13{letter-spacing:-0.032760px;}
.ls16{letter-spacing:-0.005218px;}
.ls9{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000655px;}
.ls8{letter-spacing:0.001064px;}
.ls23{letter-spacing:0.001265px;}
.ls1{letter-spacing:0.002316px;}
.ls19{letter-spacing:0.003056px;}
.ls39{letter-spacing:0.003573px;}
.ls0{letter-spacing:0.003723px;}
.ls5{letter-spacing:0.004200px;}
.ls2d{letter-spacing:0.005021px;}
.ls2a{letter-spacing:0.005226px;}
.ls7{letter-spacing:0.006655px;}
.ls12{letter-spacing:0.009360px;}
.ls15{letter-spacing:0.046800px;}
.ls11{letter-spacing:0.067860px;}
.ls14{letter-spacing:0.105300px;}
.ls1a{letter-spacing:2.984915px;}
.ls29{letter-spacing:15.935518px;}
.ls2b{letter-spacing:15.941518px;}
.ls28{letter-spacing:19.925518px;}
.ls22{letter-spacing:20.312915px;}
.lsb{letter-spacing:20.364479px;}
.ls36{letter-spacing:21.104287px;}
.ls21{letter-spacing:21.158915px;}
.ls3a{letter-spacing:21.614287px;}
.ls34{letter-spacing:21.992287px;}
.ls2e{letter-spacing:22.502287px;}
.ls2f{letter-spacing:22.508287px;}
.ls35{letter-spacing:23.402287px;}
.ls31{letter-spacing:23.408287px;}
.ls37{letter-spacing:25.298287px;}
.ls30{letter-spacing:25.496287px;}
.ls33{letter-spacing:26.054287px;}
.ls27{letter-spacing:26.145056px;}
.ls38{letter-spacing:26.234287px;}
.ls1f{letter-spacing:27.854915px;}
.ls20{letter-spacing:27.860915px;}
.ls18{letter-spacing:28.065056px;}
.ls17{letter-spacing:28.071056px;}
.ls1d{letter-spacing:28.262915px;}
.ls1c{letter-spacing:28.268915px;}
.ls1b{letter-spacing:28.322915px;}
.ls25{letter-spacing:28.525864px;}
.ls24{letter-spacing:28.531864px;}
.ls2{letter-spacing:30.327723px;}
.ls4{letter-spacing:30.329131px;}
.ls3{letter-spacing:30.333723px;}
.ls1e{letter-spacing:30.980915px;}
.ls32{letter-spacing:31.214287px;}
.ls26{letter-spacing:31.520915px;}
.lsa{letter-spacing:37.164479px;}
.ls2c{letter-spacing:37.430287px;}
.lsc{letter-spacing:250.113240px;}
.lsd{letter-spacing:250.136640px;}
.lsf{letter-spacing:250.161327px;}
.lse{letter-spacing:250.183440px;}
.ls10{letter-spacing:250.206840px;}
.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;}
}
.ws14a{word-spacing:-35.858427px;}
.ws27{word-spacing:-35.112422px;}
.ws6c{word-spacing:-25.397521px;}
.ws145{word-spacing:-19.546752px;}
.ws98{word-spacing:-19.510886px;}
.ws144{word-spacing:-19.475021px;}
.ws122{word-spacing:-19.403290px;}
.ws120{word-spacing:-19.331558px;}
.ws2d{word-spacing:-19.188096px;}
.ws17f{word-spacing:-19.044634px;}
.ws14f{word-spacing:-18.972902px;}
.ws188{word-spacing:-18.614246px;}
.ws18c{word-spacing:-18.542515px;}
.ws190{word-spacing:-18.470784px;}
.wscb{word-spacing:-18.399053px;}
.ws146{word-spacing:-18.327322px;}
.ws3a{word-spacing:-18.255590px;}
.wsa5{word-spacing:-18.112128px;}
.ws8c{word-spacing:-17.968666px;}
.ws91{word-spacing:-17.825203px;}
.ws43{word-spacing:-17.753472px;}
.ws14d{word-spacing:-17.681741px;}
.ws15e{word-spacing:-17.638702px;}
.ws165{word-spacing:-17.610010px;}
.ws182{word-spacing:-17.394816px;}
.wsd1{word-spacing:-17.323085px;}
.wsd3{word-spacing:-17.107891px;}
.ws11f{word-spacing:-17.036160px;}
.ws4f{word-spacing:-16.964429px;}
.ws16d{word-spacing:-16.921390px;}
.wsaf{word-spacing:-16.892698px;}
.ws10d{word-spacing:-16.820966px;}
.ws15c{word-spacing:-16.749235px;}
.wse9{word-spacing:-16.605773px;}
.ws22{word-spacing:-16.534042px;}
.ws12a{word-spacing:-16.462310px;}
.ws5f{word-spacing:-16.390579px;}
.ws12f{word-spacing:-16.318848px;}
.ws44{word-spacing:-16.247117px;}
.ws14e{word-spacing:-16.204078px;}
.ws153{word-spacing:-16.175386px;}
.ws6f{word-spacing:-16.031923px;}
.ws13b{word-spacing:-15.960192px;}
.ws5c{word-spacing:-15.888461px;}
.wsb0{word-spacing:-15.744998px;}
.ws157{word-spacing:-15.701960px;}
.ws148{word-spacing:-15.673267px;}
.wsdc{word-spacing:-15.601536px;}
.wsb6{word-spacing:-15.529805px;}
.ws116{word-spacing:-15.458074px;}
.ws15d{word-spacing:-15.343304px;}
.wsa3{word-spacing:-15.314611px;}
.ws111{word-spacing:-15.171149px;}
.ws54{word-spacing:-15.099418px;}
.wseb{word-spacing:-15.027686px;}
.ws3e{word-spacing:-14.955955px;}
.wsea{word-spacing:-14.812493px;}
.wsf1{word-spacing:-14.763698px;}
.ws2f{word-spacing:-14.740762px;}
.ws160{word-spacing:-14.680358px;}
.wsa7{word-spacing:-14.669030px;}
.ws115{word-spacing:-14.597299px;}
.ws89{word-spacing:-14.525568px;}
.ws108{word-spacing:-14.453837px;}
.ws149{word-spacing:-14.410798px;}
.ws39{word-spacing:-14.382106px;}
.wsdd{word-spacing:-14.310374px;}
.ws60{word-spacing:-14.095181px;}
.ws7{word-spacing:-14.085830px;}
.ws56{word-spacing:-14.023450px;}
.ws1a{word-spacing:-14.020375px;}
.wsde{word-spacing:-13.951718px;}
.ws135{word-spacing:-13.879987px;}
.wsfd{word-spacing:-13.808256px;}
.ws18d{word-spacing:-13.736525px;}
.ws11b{word-spacing:-13.593062px;}
.ws75{word-spacing:-13.521331px;}
.ws161{word-spacing:-13.478292px;}
.ws81{word-spacing:-13.449600px;}
.ws166{word-spacing:-13.406561px;}
.ws2e{word-spacing:-13.377869px;}
.ws51{word-spacing:-13.306138px;}
.wsf5{word-spacing:-13.234406px;}
.wsab{word-spacing:-13.090944px;}
.wsa{word-spacing:-13.038556px;}
.wsf8{word-spacing:-13.019213px;}
.wsd6{word-spacing:-12.947482px;}
.wsee{word-spacing:-12.875750px;}
.ws15{word-spacing:-12.842193px;}
.wsf0{word-spacing:-12.804019px;}
.ws177{word-spacing:-12.760980px;}
.ws119{word-spacing:-12.732288px;}
.wsec{word-spacing:-12.660557px;}
.ws6e{word-spacing:-12.588826px;}
.ws128{word-spacing:-12.517094px;}
.ws17b{word-spacing:-12.474056px;}
.ws16e{word-spacing:-12.463308px;}
.ws16b{word-spacing:-12.458799px;}
.wsb4{word-spacing:-12.445363px;}
.ws15b{word-spacing:-12.402324px;}
.ws3f{word-spacing:-12.373632px;}
.wsce{word-spacing:-12.301901px;}
.ws25{word-spacing:-12.230170px;}
.ws11a{word-spacing:-12.158438px;}
.ws83{word-spacing:-12.086707px;}
.ws97{word-spacing:-12.014976px;}
.ws9d{word-spacing:-11.943245px;}
.ws4b{word-spacing:-11.871514px;}
.wsf{word-spacing:-11.860374px;}
.ws49{word-spacing:-11.799782px;}
.ws158{word-spacing:-11.739752px;}
.ws30{word-spacing:-11.728051px;}
.ws16c{word-spacing:-11.717457px;}
.ws176{word-spacing:-11.715556px;}
.ws189{word-spacing:-11.712465px;}
.ws63{word-spacing:-11.703683px;}
.ws187{word-spacing:-11.700755px;}
.ws150{word-spacing:-11.699082px;}
.ws18f{word-spacing:-11.698787px;}
.ws4e{word-spacing:-11.656320px;}
.ws118{word-spacing:-11.631698px;}
.ws3c{word-spacing:-11.584589px;}
.ws71{word-spacing:-11.512858px;}
.wsd8{word-spacing:-11.441126px;}
.ws114{word-spacing:-11.369395px;}
.wse3{word-spacing:-11.297664px;}
.wse1{word-spacing:-11.241698px;}
.wsdf{word-spacing:-11.241479px;}
.ws80{word-spacing:-11.225933px;}
.wsf7{word-spacing:-11.154202px;}
.wsd2{word-spacing:-11.082470px;}
.ws29{word-spacing:-11.010739px;}
.ws4d{word-spacing:-10.939008px;}
.ws13{word-spacing:-10.878555px;}
.ws123{word-spacing:-10.867277px;}
.ws1d{word-spacing:-10.813100px;}
.wsbc{word-spacing:-10.795546px;}
.ws5{word-spacing:-10.752507px;}
.ws12d{word-spacing:-10.723814px;}
.ws90{word-spacing:-10.652083px;}
.ws12c{word-spacing:-10.580352px;}
.ws77{word-spacing:-10.508621px;}
.ws42{word-spacing:-10.436890px;}
.ws33{word-spacing:-10.365158px;}
.ws169{word-spacing:-10.322120px;}
.ws40{word-spacing:-10.293427px;}
.ws8e{word-spacing:-10.221696px;}
.wsd4{word-spacing:-10.149965px;}
.ws53{word-spacing:-10.078234px;}
.ws7b{word-spacing:-10.006502px;}
.ws136{word-spacing:-9.997987px;}
.ws10{word-spacing:-9.962190px;}
.ws13f{word-spacing:-9.934771px;}
.ws16a{word-spacing:-9.891732px;}
.ws31{word-spacing:-9.863040px;}
.ws82{word-spacing:-9.791309px;}
.wsc{word-spacing:-9.765826px;}
.ws48{word-spacing:-9.719578px;}
.wsdb{word-spacing:-9.647846px;}
.ws55{word-spacing:-9.576115px;}
.ws13a{word-spacing:-9.504384px;}
.wsd{word-spacing:-9.438553px;}
.ws92{word-spacing:-9.432653px;}
.ws170{word-spacing:-9.402319px;}
.ws17a{word-spacing:-9.389614px;}
.wsb2{word-spacing:-9.360922px;}
.ws192{word-spacing:-9.338536px;}
.ws47{word-spacing:-9.217459px;}
.ws8{word-spacing:-9.111280px;}
.ws109{word-spacing:-9.073997px;}
.wscf{word-spacing:-9.002266px;}
.ws8d{word-spacing:-8.930534px;}
.wsa4{word-spacing:-8.858803px;}
.ws147{word-spacing:-8.787072px;}
.wsd9{word-spacing:-8.715341px;}
.ws180{word-spacing:-8.672302px;}
.wsac{word-spacing:-8.643610px;}
.ws15f{word-spacing:-8.571878px;}
.ws35{word-spacing:-8.500147px;}
.ws126{word-spacing:-8.477562px;}
.ws17{word-spacing:-8.456734px;}
.ws95{word-spacing:-8.428416px;}
.ws3b{word-spacing:-8.356685px;}
.ws8a{word-spacing:-8.284954px;}
.ws181{word-spacing:-8.141491px;}
.ws14{word-spacing:-7.998552px;}
.ws99{word-spacing:-7.998029px;}
.ws85{word-spacing:-7.926298px;}
.ws121{word-spacing:-7.854566px;}
.ws12{word-spacing:-7.802188px;}
.ws5a{word-spacing:-7.639373px;}
.wsa8{word-spacing:-7.567642px;}
.ws4c{word-spacing:-7.495910px;}
.ws34{word-spacing:-7.424179px;}
.ws12e{word-spacing:-7.352448px;}
.ws84{word-spacing:-7.280717px;}
.ws1c{word-spacing:-7.278552px;}
.ws164{word-spacing:-7.208986px;}
.ws2b{word-spacing:-7.137254px;}
.ws16f{word-spacing:-7.099415px;}
.ws17c{word-spacing:-7.094056px;}
.ws67{word-spacing:-7.065523px;}
.ws69{word-spacing:-7.035683px;}
.wsba{word-spacing:-6.993792px;}
.wsf6{word-spacing:-6.778598px;}
.ws8b{word-spacing:-6.706867px;}
.ws74{word-spacing:-6.635136px;}
.ws9c{word-spacing:-6.583267px;}
.ws9b{word-spacing:-6.563405px;}
.ws174{word-spacing:-6.533973px;}
.ws37{word-spacing:-6.491674px;}
.ws5d{word-spacing:-6.419942px;}
.ws70{word-spacing:-6.348211px;}
.ws10b{word-spacing:-6.328151px;}
.ws129{word-spacing:-6.276480px;}
.ws167{word-spacing:-6.233441px;}
.ws142{word-spacing:-6.204749px;}
.ws152{word-spacing:-6.173599px;}
.ws12b{word-spacing:-6.061286px;}
.ws21{word-spacing:-5.989555px;}
.ws171{word-spacing:-5.917824px;}
.wsbd{word-spacing:-5.846093px;}
.ws175{word-spacing:-5.774362px;}
.ws16{word-spacing:-5.707641px;}
.wsb7{word-spacing:-5.702630px;}
.ws66{word-spacing:-5.630899px;}
.wsa2{word-spacing:-5.559168px;}
.ws104{word-spacing:-5.487437px;}
.ws14b{word-spacing:-5.482007px;}
.ws24{word-spacing:-5.415706px;}
.ws58{word-spacing:-5.343974px;}
.wscd{word-spacing:-5.272243px;}
.ws2a{word-spacing:-5.200512px;}
.ws131{word-spacing:-5.057050px;}
.ws14c{word-spacing:-5.014011px;}
.ws93{word-spacing:-4.985318px;}
.wsad{word-spacing:-4.913587px;}
.ws168{word-spacing:-4.841856px;}
.wsf4{word-spacing:-4.770125px;}
.wsfa{word-spacing:-4.554931px;}
.ws13c{word-spacing:-4.483200px;}
.wsb9{word-spacing:-4.411469px;}
.ws1f{word-spacing:-4.339738px;}
.ws11{word-spacing:-4.333095px;}
.ws9e{word-spacing:-4.331681px;}
.ws10f{word-spacing:-4.268006px;}
.wsb{word-spacing:-4.267640px;}
.ws50{word-spacing:-4.227124px;}
.ws57{word-spacing:-4.196275px;}
.ws32{word-spacing:-4.124544px;}
.ws154{word-spacing:-4.043894px;}
.ws155{word-spacing:-3.981082px;}
.ws46{word-spacing:-3.909350px;}
.ws1b{word-spacing:-3.850562px;}
.ws7e{word-spacing:-3.837619px;}
.ws23{word-spacing:-3.814421px;}
.ws18a{word-spacing:-3.774972px;}
.ws162{word-spacing:-3.765888px;}
.wse8{word-spacing:-3.694157px;}
.wse7{word-spacing:-3.688230px;}
.ws110{word-spacing:-3.622426px;}
.ws138{word-spacing:-3.550694px;}
.ws172{word-spacing:-3.478963px;}
.ws18b{word-spacing:-3.435924px;}
.ws156{word-spacing:-3.407232px;}
.ws186{word-spacing:-3.364193px;}
.ws141{word-spacing:-3.263770px;}
.ws173{word-spacing:-3.220731px;}
.wsf9{word-spacing:-3.192038px;}
.ws18{word-spacing:-3.154912px;}
.ws130{word-spacing:-3.048576px;}
.wsb1{word-spacing:-3.022562px;}
.wsd5{word-spacing:-2.976845px;}
.ws61{word-spacing:-2.833382px;}
.wsda{word-spacing:-2.761651px;}
.ws151{word-spacing:-2.646881px;}
.ws140{word-spacing:-2.546458px;}
.ws10e{word-spacing:-2.474726px;}
.ws5b{word-spacing:-2.402995px;}
.wsae{word-spacing:-2.380421px;}
.ws5e{word-spacing:-2.331264px;}
.ws139{word-spacing:-2.259533px;}
.ws15a{word-spacing:-2.144763px;}
.wsaa{word-spacing:-2.044339px;}
.wsa0{word-spacing:-2.032562px;}
.ws19{word-spacing:-1.911274px;}
.ws18e{word-spacing:-1.900877px;}
.ws11d{word-spacing:-1.829146px;}
.ws17d{word-spacing:-1.757414px;}
.ws6b{word-spacing:-1.702562px;}
.ws6a{word-spacing:-1.695124px;}
.ws8f{word-spacing:-1.613952px;}
.ws9{word-spacing:-1.584001px;}
.ws17e{word-spacing:-1.570913px;}
.ws45{word-spacing:-1.542221px;}
.ws179{word-spacing:-1.470490px;}
.ws11c{word-spacing:-1.327027px;}
.ws159{word-spacing:-1.183565px;}
.ws3d{word-spacing:-1.111834px;}
.ws20{word-spacing:-0.896640px;}
.ws76{word-spacing:-0.802562px;}
.ws7f{word-spacing:-0.753178px;}
.ws52{word-spacing:-0.621124px;}
.ws163{word-spacing:-0.537984px;}
.wsc3{word-spacing:-0.488365px;}
.wsc5{word-spacing:-0.477698px;}
.ws13d{word-spacing:-0.466253px;}
.ws102{word-spacing:-0.251059px;}
.wsd7{word-spacing:-0.220562px;}
.wsc8{word-spacing:-0.179328px;}
.ws7a{word-spacing:-0.107597px;}
.ws1e{word-spacing:-0.103292px;}
.ws4{word-spacing:-0.086077px;}
.ws64{word-spacing:-0.071731px;}
.ws3{word-spacing:-0.059776px;}
.wsa6{word-spacing:-0.047821px;}
.ws78{word-spacing:-0.035866px;}
.wse{word-spacing:0.000000px;}
.ws191{word-spacing:0.251059px;}
.wsb5{word-spacing:0.265438px;}
.ws6d{word-spacing:0.361438px;}
.ws26{word-spacing:0.487579px;}
.ws4a{word-spacing:0.872876px;}
.ws28{word-spacing:1.687579px;}
.ws185{word-spacing:1.757414px;}
.ws87{word-spacing:1.813438px;}
.ws88{word-spacing:1.819438px;}
.ws193{word-spacing:2.187802px;}
.wsc7{word-spacing:2.331264px;}
.ws36{word-spacing:2.354538px;}
.ws41{word-spacing:2.390538px;}
.ws7c{word-spacing:2.671438px;}
.ws143{word-spacing:2.833382px;}
.ws94{word-spacing:2.857438px;}
.ws178{word-spacing:3.120307px;}
.wsca{word-spacing:4.063438px;}
.wsc9{word-spacing:4.070538px;}
.ws59{word-spacing:4.220538px;}
.ws96{word-spacing:4.291438px;}
.ws124{word-spacing:4.357438px;}
.wsbb{word-spacing:4.370538px;}
.ws9a{word-spacing:4.705579px;}
.ws9f{word-spacing:4.729438px;}
.wsa9{word-spacing:5.155438px;}
.ws7d{word-spacing:5.587438px;}
.ws2c{word-spacing:5.599579px;}
.wsfc{word-spacing:5.719579px;}
.ws38{word-spacing:6.223438px;}
.wsa1{word-spacing:6.313438px;}
.wsc0{word-spacing:7.029628px;}
.ws105{word-spacing:7.261438px;}
.ws184{word-spacing:8.930534px;}
.ws183{word-spacing:9.576115px;}
.wsb8{word-spacing:9.872876px;}
.ws86{word-spacing:11.803438px;}
.ws79{word-spacing:12.631438px;}
.ws133{word-spacing:16.031923px;}
.wsbf{word-spacing:18.876751px;}
.wsc1{word-spacing:18.881759px;}
.wsf2{word-spacing:20.266988px;}
.ws107{word-spacing:20.554988px;}
.ws106{word-spacing:20.944988px;}
.ws134{word-spacing:21.172988px;}
.ws101{word-spacing:22.152010px;}
.wsef{word-spacing:22.198988px;}
.wsed{word-spacing:22.402988px;}
.wse4{word-spacing:22.828988px;}
.wsbe{word-spacing:22.866517px;}
.ws6{word-spacing:23.312640px;}
.ws62{word-spacing:23.326988px;}
.ws117{word-spacing:23.398988px;}
.wse0{word-spacing:23.788988px;}
.wse2{word-spacing:23.794988px;}
.ws137{word-spacing:24.310988px;}
.ws125{word-spacing:24.710400px;}
.wse5{word-spacing:25.708988px;}
.wsfe{word-spacing:26.346010px;}
.ws127{word-spacing:26.560988px;}
.ws73{word-spacing:26.827469px;}
.ws1{word-spacing:27.200395px;}
.ws2{word-spacing:27.286472px;}
.wsd0{word-spacing:27.766988px;}
.ws68{word-spacing:28.000988px;}
.ws112{word-spacing:28.018988px;}
.ws10c{word-spacing:28.708988px;}
.ws10a{word-spacing:28.986010px;}
.wsfb{word-spacing:29.010010px;}
.ws132{word-spacing:29.980988px;}
.ws72{word-spacing:31.418178px;}
.ws103{word-spacing:31.494010px;}
.ws11e{word-spacing:31.504255px;}
.wscc{word-spacing:32.698988px;}
.ws65{word-spacing:36.978679px;}
.ws13e{word-spacing:37.081972px;}
.wsc6{word-spacing:37.550916px;}
.wsc4{word-spacing:37.565759px;}
.wsb3{word-spacing:47.600692px;}
.ws0{word-spacing:48.226275px;}
.wse6{word-spacing:114.204968px;}
.wsff{word-spacing:129.946090px;}
.ws113{word-spacing:156.410598px;}
.ws100{word-spacing:185.544648px;}
.wsc2{word-spacing:770.720916px;}
.wsf3{word-spacing:1238.737706px;}
._2c{margin-left:-9.399608px;}
._23{margin-left:-8.263411px;}
._22{margin-left:-6.986606px;}
._7{margin-left:-5.956798px;}
._0{margin-left:-3.967200px;}
._1{margin-left:-2.238007px;}
._5{margin-left:-1.231087px;}
._18{width:1.007374px;}
._3{width:2.172553px;}
._c{width:3.967200px;}
._1c{width:5.204864px;}
._d{width:6.252364px;}
._2f{width:8.823467px;}
._30{width:10.515111px;}
._2d{width:16.906579px;}
._10{width:18.219725px;}
._e{width:19.582618px;}
._2e{width:20.589962px;}
._1d{width:21.763234px;}
._26{width:23.245569px;}
._17{width:25.179438px;}
._b{width:26.980275px;}
._8{width:28.394746px;}
._16{width:30.088979px;}
._2{width:31.203072px;}
._14{width:32.852890px;}
._4{width:34.572580px;}
._9{width:36.261848px;}
._12{width:37.658880px;}
._11{width:38.820919px;}
._1f{width:39.822443px;}
._f{width:41.044586px;}
._1e{width:42.103499px;}
._1b{width:44.329882px;}
._21{width:45.334118px;}
._13{width:46.869154px;}
._6{width:48.907137px;}
._20{width:50.642227px;}
._15{width:53.935586px;}
._a{width:54.941511px;}
._29{width:56.498582px;}
._2b{width:57.760198px;}
._28{width:59.866841px;}
._2a{width:62.190950px;}
._1a{width:64.483634px;}
._19{width:65.639246px;}
._24{width:108.153405px;}
._25{width:133.277468px;}
._27{width:143.902870px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:30.710400px;}
.fsf{font-size:42.000000px;}
.fs7{font-size:42.120000px;}
.fs8{font-size:42.178500px;}
.fsd{font-size:43.872000px;}
.fs9{font-size:46.800000px;}
.fsa{font-size:46.858500px;}
.fs5{font-size:47.820600px;}
.fsc{font-size:51.600000px;}
.fs2{font-size:59.775600px;}
.fsb{font-size:60.000000px;}
.fs4{font-size:65.454600px;}
.fs3{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs6{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.yff{bottom:7.454264px;}
.y84{bottom:8.056620px;}
.y73{bottom:8.074170px;}
.yfe{bottom:9.253702px;}
.ye0{bottom:10.128938px;}
.y7a{bottom:16.410420px;}
.y83{bottom:16.468920px;}
.yfd{bottom:20.746109px;}
.y100{bottom:27.105835px;}
.ydf{bottom:28.372688px;}
.y158{bottom:37.070344px;}
.y79{bottom:37.686870px;}
.y81{bottom:37.762920px;}
.y70{bottom:37.774620px;}
.y77{bottom:39.430170px;}
.y7f{bottom:39.482820px;}
.y6e{bottom:39.500370px;}
.ye1{bottom:47.670603px;}
.y156{bottom:52.039144px;}
.yf0{bottom:57.059250px;}
.y120{bottom:61.114748px;}
.y12a{bottom:61.559840px;}
.y16{bottom:63.168000px;}
.y75{bottom:63.573120px;}
.y7d{bottom:63.649170px;}
.y6c{bottom:63.660870px;}
.y101{bottom:70.886582px;}
.y76{bottom:74.553570px;}
.y7e{bottom:74.617920px;}
.y6d{bottom:74.641320px;}
.y108{bottom:75.052708px;}
.y78{bottom:75.226320px;}
.y80{bottom:75.302370px;}
.y6f{bottom:75.319920px;}
.y82{bottom:75.390120px;}
.y71{bottom:75.407670px;}
.yef{bottom:75.992063px;}
.y155{bottom:81.976744px;}
.ye2{bottom:83.842196px;}
.yee{bottom:94.924875px;}
.y159{bottom:96.945544px;}
.y7b{bottom:97.064370px;}
.y7c{bottom:97.140420px;}
.y72{bottom:97.152120px;}
.y74{bottom:97.210620px;}
.y124{bottom:103.981027px;}
.y1c8{bottom:108.000000px;}
.y11e{bottom:109.348500px;}
.ybd{bottom:111.546000px;}
.y154{bottom:111.914344px;}
.y125{bottom:112.092420px;}
.yd2{bottom:112.782000px;}
.yed{bottom:113.857688px;}
.y102{bottom:114.667328px;}
.y15{bottom:115.351500px;}
.y63{bottom:115.860420px;}
.y62{bottom:115.948170px;}
.y1ae{bottom:117.696000px;}
.ye3{bottom:120.013789px;}
.y149{bottom:120.201000px;}
.y121{bottom:121.261607px;}
.y126{bottom:122.401698px;}
.y12b{bottom:122.819429px;}
.y6a{bottom:122.833620px;}
.y13a{bottom:123.043500px;}
.y60{bottom:123.231420px;}
.y106{bottom:123.833107px;}
.yfb{bottom:126.486000px;}
.y9f{bottom:126.730500px;}
.yb1{bottom:128.857500px;}
.y4a{bottom:129.661500px;}
.y4b{bottom:129.663000px;}
.yec{bottom:132.790500px;}
.y30{bottom:133.366500px;}
.y17e{bottom:134.460000px;}
.y16b{bottom:135.394500px;}
.y18e{bottom:138.066000px;}
.y15e{bottom:138.817230px;}
.y153{bottom:141.851944px;}
.y1c7{bottom:143.862000px;}
.y68{bottom:144.127620px;}
.y57{bottom:144.291420px;}
.y51{bottom:144.361620px;}
.y5e{bottom:144.507870px;}
.y11d{bottom:145.210500px;}
.y66{bottom:145.853370px;}
.y55{bottom:146.011320px;}
.y4f{bottom:146.104920px;}
.y5c{bottom:146.251170px;}
.y107{bottom:147.357539px;}
.ybc{bottom:147.406500px;}
.y1da{bottom:147.583500px;}
.yd1{bottom:148.644000px;}
.y14{bottom:148.986000px;}
.y15f{bottom:150.943207px;}
.ye9{bottom:151.117230px;}
.yeb{bottom:151.723313px;}
.y198{bottom:152.442000px;}
.y1ad{bottom:153.558000px;}
.yf3{bottom:154.210500px;}
.y127{bottom:155.694816px;}
.y148{bottom:156.063000px;}
.ye4{bottom:156.185381px;}
.y15a{bottom:156.820744px;}
.y12e{bottom:157.809003px;}
.y157{bottom:158.202094px;}
.y103{bottom:158.448074px;}
.y139{bottom:158.905500px;}
.y128{bottom:159.893503px;}
.y12f{bottom:162.007691px;}
.yfa{bottom:162.348000px;}
.y9e{bottom:162.592500px;}
.yb0{bottom:164.719500px;}
.y49{bottom:165.523500px;}
.y1d6{bottom:168.501000px;}
.y2f{bottom:169.228500px;}
.y64{bottom:170.013870px;}
.y53{bottom:170.177670px;}
.y4d{bottom:170.247870px;}
.y17d{bottom:170.320500px;}
.y5a{bottom:170.394120px;}
.yea{bottom:170.656125px;}
.y16a{bottom:171.256500px;}
.y152{bottom:171.789544px;}
.y18d{bottom:173.926500px;}
.y160{bottom:175.362885px;}
.yf2{bottom:175.879500px;}
.y1c6{bottom:179.722500px;}
.y65{bottom:181.000170px;}
.y11c{bottom:181.072500px;}
.y54{bottom:181.146420px;}
.y4e{bottom:181.234170px;}
.y5b{bottom:181.380420px;}
.y122{bottom:181.408465px;}
.y67{bottom:181.672920px;}
.y69{bottom:181.754820px;}
.y56{bottom:181.830870px;}
.y50{bottom:181.901070px;}
.y58{bottom:181.918620px;}
.y52{bottom:181.988820px;}
.y5d{bottom:182.047320px;}
.y5f{bottom:182.135070px;}
.y13{bottom:182.622000px;}
.ybb{bottom:183.268500px;}
.y1d9{bottom:183.445500px;}
.y12c{bottom:184.079018px;}
.yd0{bottom:184.506000px;}
.y109{bottom:184.698227px;}
.y10a{bottom:188.896915px;}
.y1dc{bottom:189.418500px;}
.y147{bottom:191.925000px;}
.ye5{bottom:192.356974px;}
.y1e3{bottom:193.063500px;}
.y138{bottom:194.767500px;}
.yf1{bottom:197.548500px;}
.yf9{bottom:198.210000px;}
.y9d{bottom:198.454500px;}
.yaf{bottom:200.581500px;}
.y48{bottom:201.385500px;}
.y151{bottom:201.727144px;}
.y104{bottom:202.228820px;}
.y197{bottom:203.248500px;}
.y6b{bottom:203.505120px;}
.y59{bottom:203.663070px;}
.y61{bottom:203.885370px;}
.y1ac{bottom:204.363000px;}
.y2e{bottom:205.090500px;}
.y17c{bottom:206.182500px;}
.y169{bottom:207.118500px;}
.y18c{bottom:209.788500px;}
.y87{bottom:213.250500px;}
.y12{bottom:216.258000px;}
.y15b{bottom:216.695944px;}
.y11b{bottom:216.933000px;}
.yba{bottom:219.130500px;}
.y1d8{bottom:219.307500px;}
.ycf{bottom:220.368000px;}
.y1db{bottom:225.280500px;}
.yde{bottom:227.659500px;}
.y146{bottom:227.787000px;}
.ye6{bottom:228.528566px;}
.y1c5{bottom:228.925500px;}
.y137{bottom:230.629500px;}
.y150{bottom:231.664744px;}
.yf8{bottom:234.072000px;}
.y9c{bottom:234.316500px;}
.y86{bottom:234.919500px;}
.yae{bottom:236.443500px;}
.y47{bottom:237.247500px;}
.y196{bottom:239.110500px;}
.y1ab{bottom:240.225000px;}
.y2d{bottom:240.951000px;}
.y123{bottom:241.555324px;}
.y17b{bottom:242.044500px;}
.y168{bottom:242.980500px;}
.y12d{bottom:245.338606px;}
.y18b{bottom:245.650500px;}
.y105{bottom:246.009567px;}
.y11{bottom:249.894000px;}
.y11a{bottom:252.795000px;}
.yb9{bottom:254.992500px;}
.y1d7{bottom:255.169500px;}
.yce{bottom:256.228500px;}
.y14f{bottom:261.602344px;}
.y145{bottom:263.649000px;}
.ye7{bottom:264.700159px;}
.y1c4{bottom:264.787500px;}
.y136{bottom:266.491500px;}
.yf7{bottom:269.934000px;}
.y9b{bottom:270.177000px;}
.yad{bottom:272.305500px;}
.y46{bottom:273.109500px;}
.y195{bottom:274.971000px;}
.y1aa{bottom:276.087000px;}
.y15c{bottom:276.571144px;}
.y2c{bottom:276.813000px;}
.y17a{bottom:277.906500px;}
.y1e2{bottom:278.128500px;}
.y167{bottom:278.842500px;}
.y18a{bottom:281.512500px;}
.y10{bottom:283.530000px;}
.y119{bottom:288.657000px;}
.yb8{bottom:290.854500px;}
.y1b3{bottom:291.030000px;}
.y14e{bottom:291.539944px;}
.ycd{bottom:292.090500px;}
.y144{bottom:299.511000px;}
.ye8{bottom:300.871752px;}
.y135{bottom:302.353500px;}
.y9a{bottom:306.039000px;}
.yac{bottom:308.166000px;}
.y45{bottom:308.971500px;}
.y1a9{bottom:311.949000px;}
.y2b{bottom:312.675000px;}
.y179{bottom:313.768500px;}
.y1c3{bottom:313.990500px;}
.y166{bottom:314.704500px;}
.yf{bottom:317.166000px;}
.y189{bottom:317.374500px;}
.y14d{bottom:321.477544px;}
.y118{bottom:324.519000px;}
.y194{bottom:325.777500px;}
.yb7{bottom:326.716500px;}
.y1b2{bottom:326.892000px;}
.ycc{bottom:327.952500px;}
.yf6{bottom:333.217500px;}
.y143{bottom:335.371500px;}
.y15d{bottom:336.446344px;}
.y134{bottom:338.214000px;}
.y99{bottom:341.901000px;}
.yab{bottom:344.028000px;}
.y44{bottom:344.832000px;}
.y14b{bottom:347.365875px;}
.y2a{bottom:348.537000px;}
.y178{bottom:349.629000px;}
.y1c2{bottom:349.852500px;}
.y165{bottom:350.565000px;}
.y188{bottom:353.236500px;}
.yf5{bottom:354.886500px;}
.y117{bottom:360.381000px;}
.ye{bottom:360.882000px;}
.y193{bottom:361.639500px;}
.yb6{bottom:362.577000px;}
.y1a8{bottom:362.754000px;}
.ycb{bottom:363.814500px;}
.y14c{bottom:365.361188px;}
.y142{bottom:371.233500px;}
.y133{bottom:374.076000px;}
.y1d5{bottom:377.698500px;}
.y98{bottom:377.763000px;}
.yaa{bottom:379.890000px;}
.y43{bottom:380.694000px;}
.y29{bottom:384.399000px;}
.y177{bottom:385.491000px;}
.y1c1{bottom:385.713000px;}
.y164{bottom:386.427000px;}
.y187{bottom:389.097000px;}
.y116{bottom:396.243000px;}
.yb5{bottom:398.439000px;}
.y1a7{bottom:398.616000px;}
.yca{bottom:399.676500px;}
.y141{bottom:407.095500px;}
.y132{bottom:409.938000px;}
.y1d4{bottom:413.560500px;}
.y97{bottom:413.625000px;}
.y192{bottom:415.255500px;}
.ya9{bottom:415.752000px;}
.y42{bottom:416.556000px;}
.y28{bottom:420.261000px;}
.y176{bottom:421.353000px;}
.y163{bottom:422.289000px;}
.yd{bottom:422.920500px;}
.y186{bottom:424.959000px;}
.y115{bottom:432.103500px;}
.yb4{bottom:434.301000px;}
.y1a6{bottom:434.478000px;}
.y1c0{bottom:434.916000px;}
.yc9{bottom:435.537000px;}
.y140{bottom:442.957500px;}
.y1b1{bottom:449.421000px;}
.y96{bottom:449.485500px;}
.ya8{bottom:451.614000px;}
.y41{bottom:452.418000px;}
.y27{bottom:456.121500px;}
.y175{bottom:457.215000px;}
.y162{bottom:458.151000px;}
.y185{bottom:460.821000px;}
.y114{bottom:467.965500px;}
.y1bf{bottom:470.778000px;}
.yc8{bottom:471.399000px;}
.y131{bottom:473.221500px;}
.yc{bottom:476.341500px;}
.y13f{bottom:478.819500px;}
.yb3{bottom:481.741500px;}
.y1a5{bottom:485.283000px;}
.y95{bottom:485.347500px;}
.ya7{bottom:487.476000px;}
.y40{bottom:488.280000px;}
.y174{bottom:493.077000px;}
.y130{bottom:494.890500px;}
.y184{bottom:496.683000px;}
.y1d3{bottom:500.227500px;}
.y113{bottom:503.827500px;}
.y1be{bottom:506.640000px;}
.yc7{bottom:507.261000px;}
.y26{bottom:509.737500px;}
.yb{bottom:512.203500px;}
.y13e{bottom:514.681500px;}
.y1e1{bottom:519.981000px;}
.y1a4{bottom:521.145000px;}
.y94{bottom:521.209500px;}
.y161{bottom:521.434500px;}
.ya6{bottom:523.336500px;}
.y3f{bottom:524.142000px;}
.yb2{bottom:526.260000px;}
.y173{bottom:528.939000px;}
.y11f{bottom:530.854500px;}
.y183{bottom:532.545000px;}
.y1d2{bottom:536.089500px;}
.y112{bottom:539.689500px;}
.y1bd{bottom:542.502000px;}
.yc6{bottom:543.123000px;}
.ya{bottom:548.064000px;}
.y13d{bottom:550.542000px;}
.y14a{bottom:551.547000px;}
.y1e0{bottom:555.843000px;}
.y1a3{bottom:557.007000px;}
.y93{bottom:557.071500px;}
.ya5{bottom:559.198500px;}
.y3e{bottom:560.002500px;}
.y172{bottom:564.799500px;}
.y182{bottom:568.405500px;}
.y191{bottom:568.407000px;}
.y1b0{bottom:571.950000px;}
.y111{bottom:575.551500px;}
.yc5{bottom:578.985000px;}
.y9{bottom:583.926000px;}
.y13c{bottom:586.404000px;}
.y1d1{bottom:586.894500px;}
.y25{bottom:591.166500px;}
.y1bc{bottom:591.703500px;}
.ya4{bottom:595.060500px;}
.y3d{bottom:595.864500px;}
.y171{bottom:600.661500px;}
.y181{bottom:604.267500px;}
.y92{bottom:604.512000px;}
.y1a2{bottom:607.812000px;}
.y110{bottom:611.413500px;}
.yc4{bottom:614.847000px;}
.y8{bottom:619.788000px;}
.y1d0{bottom:622.756500px;}
.y24{bottom:624.801000px;}
.y1bb{bottom:627.565500px;}
.yf4{bottom:628.720500px;}
.ydd{bottom:629.599500px;}
.ya3{bottom:630.922500px;}
.y3c{bottom:631.726500px;}
.y13b{bottom:633.844500px;}
.y170{bottom:636.523500px;}
.y180{bottom:640.129500px;}
.y1a1{bottom:643.674000px;}
.y10f{bottom:647.274000px;}
.yc3{bottom:650.707500px;}
.y91{bottom:651.952500px;}
.y7{bottom:655.650000px;}
.y23{bottom:658.437000px;}
.y1cf{bottom:658.618500px;}
.y1ba{bottom:663.427500px;}
.ydc{bottom:665.461500px;}
.ya2{bottom:666.784500px;}
.y3b{bottom:667.588500px;}
.y16f{bottom:672.385500px;}
.y190{bottom:675.991500px;}
.y1df{bottom:676.768500px;}
.y1a0{bottom:679.536000px;}
.y85{bottom:682.065000px;}
.y6{bottom:691.512000px;}
.y22{bottom:692.073000px;}
.y17f{bottom:693.745500px;}
.y1af{bottom:694.480500px;}
.yc2{bottom:698.148000px;}
.ydb{bottom:701.322000px;}
.ya1{bottom:702.646500px;}
.y3a{bottom:703.450500px;}
.y1ce{bottom:709.423500px;}
.y10e{bottom:710.559000px;}
.y4c{bottom:712.177500px;}
.y1b9{bottom:712.630500px;}
.y90{bottom:721.557000px;}
.y21{bottom:725.709000px;}
.y18f{bottom:729.607500px;}
.y19f{bottom:730.341000px;}
.y10d{bottom:732.226500px;}
.y16e{bottom:735.669000px;}
.yda{bottom:737.184000px;}
.y39{bottom:739.312500px;}
.y5{bottom:744.931500px;}
.y1cd{bottom:745.285500px;}
.y1b8{bottom:748.492500px;}
.ya0{bottom:750.087000px;}
.y129{bottom:750.909000px;}
.y10c{bottom:753.895500px;}
.y16d{bottom:757.338000px;}
.y8f{bottom:757.419000px;}
.yc1{bottom:759.097500px;}
.y20{bottom:759.345000px;}
.y19e{bottom:766.203000px;}
.yd9{bottom:773.046000px;}
.y38{bottom:775.173000px;}
.y1cc{bottom:781.147500px;}
.y1b7{bottom:784.353000px;}
.y4{bottom:789.450000px;}
.yfc{bottom:789.859500px;}
.y1f{bottom:792.981000px;}
.y8e{bottom:793.281000px;}
.yc0{bottom:794.959500px;}
.yd8{bottom:808.908000px;}
.y37{bottom:811.035000px;}
.y19d{bottom:817.009500px;}
.y1de{bottom:820.215000px;}
.y1e{bottom:826.617000px;}
.y8d{bottom:829.143000px;}
.ybf{bottom:830.821500px;}
.y1cb{bottom:831.952500px;}
.y1b6{bottom:833.556000px;}
.yd7{bottom:844.770000px;}
.y36{bottom:846.897000px;}
.y19c{bottom:852.871500px;}
.y1d{bottom:860.253000px;}
.y3{bottom:860.307000px;}
.y8c{bottom:865.005000px;}
.ybe{bottom:866.683500px;}
.y1ca{bottom:867.814500px;}
.y1b5{bottom:869.418000px;}
.yd6{bottom:880.632000px;}
.y35{bottom:882.759000px;}
.y19b{bottom:888.732000px;}
.y1c{bottom:893.889000px;}
.y8b{bottom:900.867000px;}
.y1c9{bottom:903.676500px;}
.y1b4{bottom:905.280000px;}
.yd5{bottom:916.492500px;}
.y34{bottom:918.621000px;}
.y2{bottom:922.137000px;}
.y1b{bottom:927.523500px;}
.y8a{bottom:936.727500px;}
.y19a{bottom:939.538500px;}
.y1dd{bottom:941.142000px;}
.yd4{bottom:952.354500px;}
.y33{bottom:954.483000px;}
.y1a{bottom:961.159500px;}
.y89{bottom:972.589500px;}
.y199{bottom:975.400500px;}
.y1{bottom:983.968500px;}
.y32{bottom:990.343500px;}
.y19{bottom:994.795500px;}
.yd3{bottom:999.795000px;}
.y88{bottom:1008.451500px;}
.y10b{bottom:1009.914000px;}
.y31{bottom:1026.205500px;}
.y18{bottom:1028.431500px;}
.y16c{bottom:1031.173500px;}
.y17{bottom:1062.067500px;}
.h18{height:28.529962px;}
.hb{height:31.939629px;}
.hd{height:31.983990px;}
.h19{height:39.018000px;}
.h17{height:40.757088px;}
.hc{height:43.929844px;}
.he{height:43.990857px;}
.h6{height:45.883675px;}
.h15{height:47.936400px;}
.hf{height:48.810938px;}
.h10{height:48.871951px;}
.h7{height:49.156405px;}
.h12{height:50.283571px;}
.h5{height:53.081088px;}
.h4{height:53.870131px;}
.h14{height:55.740000px;}
.h11{height:64.643977px;}
.h8{height:65.490586px;}
.h9{height:72.511265px;}
.h2{height:73.377798px;}
.h3{height:73.383798px;}
.h1{height:89.262000px;}
.ha{height:216.403200px;}
.h16{height:284.290560px;}
.h13{height:376.043100px;}
.h0{height:1188.000000px;}
.w3{width:315.878400px;}
.w2{width:414.991200px;}
.w1{width:677.662235px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x16{left:6.859115px;}
.x5c{left:10.981710px;}
.x5d{left:12.781148px;}
.x3e{left:15.018750px;}
.x5b{left:23.335277px;}
.x48{left:26.827043px;}
.x49{left:28.626480px;}
.x47{left:30.312810px;}
.x3c{left:31.913672px;}
.x3d{left:41.457422px;}
.x68{left:49.580550px;}
.x6b{left:52.046175px;}
.x6a{left:53.747738px;}
.x69{left:56.869613px;}
.x4e{left:69.540555px;}
.x60{left:70.604867px;}
.x20{left:75.833540px;}
.x14{left:80.396540px;}
.x28{left:91.640240px;}
.x4f{left:100.292292px;}
.x61{left:105.227892px;}
.x11{left:108.000000px;}
.x50{left:109.158806px;}
.x41{left:113.344212px;}
.x1{left:116.580000px;}
.x13{left:120.169510px;}
.x42{left:122.210726px;}
.x62{left:123.348656px;}
.x9{left:125.193000px;}
.x63{left:126.343969px;}
.x5a{left:127.482328px;}
.xb{left:128.722500px;}
.x6{left:129.765000px;}
.x51{left:131.389357px;}
.x12{left:134.338500px;}
.x43{left:136.688700px;}
.x44{left:139.684014px;}
.x64{left:142.179019px;}
.x52{left:144.637715px;}
.x53{left:147.224407px;}
.x7{left:148.701000px;}
.x15{left:150.502940px;}
.xf{left:151.897500px;}
.x2{left:153.889500px;}
.x45{left:155.354115px;}
.x46{left:158.649335px;}
.x2e{left:160.717040px;}
.x65{left:163.521098px;}
.x4{left:164.893500px;}
.x66{left:166.816318px;}
.x54{left:168.566485px;}
.x55{left:171.861705px;}
.x5{left:175.960500px;}
.x40{left:182.028000px;}
.xd{left:186.537000px;}
.x67{left:189.082463px;}
.x56{left:192.598440px;}
.x2a{left:195.068240px;}
.x57{left:197.946412px;}
.x58{left:203.131041px;}
.x4a{left:205.421904px;}
.x4b{left:210.769875px;}
.x39{left:212.214258px;}
.x19{left:214.811990px;}
.x4c{left:215.954505px;}
.x3a{left:222.834375px;}
.x3b{left:233.095605px;}
.x27{left:235.298690px;}
.x5e{left:238.171383px;}
.x5f{left:243.356013px;}
.x1f{left:245.378240px;}
.x17{left:250.099190px;}
.x38{left:251.508000px;}
.x2d{left:262.079990px;}
.xa{left:301.206000px;}
.x3{left:308.820000px;}
.x18{left:320.217290px;}
.x36{left:322.381500px;}
.x29{left:330.718040px;}
.x2b{left:335.614490px;}
.x8{left:341.596500px;}
.xc{left:345.346500px;}
.x1c{left:346.670990px;}
.x3f{left:356.747813px;}
.x2f{left:365.461190px;}
.x6c{left:369.837159px;}
.x1d{left:384.883190px;}
.x6d{left:401.514113px;}
.x6e{left:403.975050px;}
.x2c{left:405.744290px;}
.x1e{left:415.642490px;}
.x1a{left:420.205490px;}
.xe{left:423.267000px;}
.x32{left:431.595440px;}
.x37{left:450.223500px;}
.x10{left:454.611000px;}
.x33{left:469.813490px;}
.x4d{left:472.828500px;}
.x1b{left:490.329440px;}
.x34{left:501.315740px;}
.x30{left:505.129940px;}
.x23{left:516.437990px;}
.x59{left:519.789000px;}
.x35{left:534.883040px;}
.x25{left:554.679440px;}
.x31{left:575.259740px;}
.x26{left:585.409490px;}
.x21{left:589.972490px;}
.x24{left:619.602740px;}
.x22{left:660.084740px;}
@media print{
.v2{vertical-align:-8.725333pt;}
.v4{vertical-align:-6.510400pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:23.136000pt;}
.v1{vertical-align:27.765333pt;}
.ls13{letter-spacing:-0.029120pt;}
.ls16{letter-spacing:-0.004638pt;}
.ls9{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000582pt;}
.ls8{letter-spacing:0.000945pt;}
.ls23{letter-spacing:0.001125pt;}
.ls1{letter-spacing:0.002059pt;}
.ls19{letter-spacing:0.002717pt;}
.ls39{letter-spacing:0.003176pt;}
.ls0{letter-spacing:0.003310pt;}
.ls5{letter-spacing:0.003733pt;}
.ls2d{letter-spacing:0.004463pt;}
.ls2a{letter-spacing:0.004646pt;}
.ls7{letter-spacing:0.005915pt;}
.ls12{letter-spacing:0.008320pt;}
.ls15{letter-spacing:0.041600pt;}
.ls11{letter-spacing:0.060320pt;}
.ls14{letter-spacing:0.093600pt;}
.ls1a{letter-spacing:2.653258pt;}
.ls29{letter-spacing:14.164905pt;}
.ls2b{letter-spacing:14.170238pt;}
.ls28{letter-spacing:17.711572pt;}
.ls22{letter-spacing:18.055925pt;}
.lsb{letter-spacing:18.101759pt;}
.ls36{letter-spacing:18.759366pt;}
.ls21{letter-spacing:18.807925pt;}
.ls3a{letter-spacing:19.212699pt;}
.ls34{letter-spacing:19.548699pt;}
.ls2e{letter-spacing:20.002033pt;}
.ls2f{letter-spacing:20.007366pt;}
.ls35{letter-spacing:20.802033pt;}
.ls31{letter-spacing:20.807366pt;}
.ls37{letter-spacing:22.487366pt;}
.ls30{letter-spacing:22.663366pt;}
.ls33{letter-spacing:23.159366pt;}
.ls27{letter-spacing:23.240050pt;}
.ls38{letter-spacing:23.319366pt;}
.ls1f{letter-spacing:24.759925pt;}
.ls20{letter-spacing:24.765258pt;}
.ls18{letter-spacing:24.946717pt;}
.ls17{letter-spacing:24.952050pt;}
.ls1d{letter-spacing:25.122591pt;}
.ls1c{letter-spacing:25.127925pt;}
.ls1b{letter-spacing:25.175925pt;}
.ls25{letter-spacing:25.356324pt;}
.ls24{letter-spacing:25.361657pt;}
.ls2{letter-spacing:26.957976pt;}
.ls4{letter-spacing:26.959227pt;}
.ls3{letter-spacing:26.963310pt;}
.ls1e{letter-spacing:27.538591pt;}
.ls32{letter-spacing:27.746033pt;}
.ls26{letter-spacing:28.018591pt;}
.lsa{letter-spacing:33.035093pt;}
.ls2c{letter-spacing:33.271366pt;}
.lsc{letter-spacing:222.322880pt;}
.lsd{letter-spacing:222.343680pt;}
.lsf{letter-spacing:222.365624pt;}
.lse{letter-spacing:222.385280pt;}
.ls10{letter-spacing:222.406080pt;}
.ws14a{word-spacing:-31.874157pt;}
.ws27{word-spacing:-31.211042pt;}
.ws6c{word-spacing:-22.575574pt;}
.ws145{word-spacing:-17.374891pt;}
.ws98{word-spacing:-17.343010pt;}
.ws144{word-spacing:-17.311130pt;}
.ws122{word-spacing:-17.247369pt;}
.ws120{word-spacing:-17.183607pt;}
.ws2d{word-spacing:-17.056085pt;}
.ws17f{word-spacing:-16.928563pt;}
.ws14f{word-spacing:-16.864802pt;}
.ws188{word-spacing:-16.545997pt;}
.ws18c{word-spacing:-16.482236pt;}
.ws190{word-spacing:-16.418475pt;}
.wscb{word-spacing:-16.354714pt;}
.ws146{word-spacing:-16.290953pt;}
.ws3a{word-spacing:-16.227191pt;}
.wsa5{word-spacing:-16.099669pt;}
.ws8c{word-spacing:-15.972147pt;}
.ws91{word-spacing:-15.844625pt;}
.ws43{word-spacing:-15.780864pt;}
.ws14d{word-spacing:-15.717103pt;}
.ws15e{word-spacing:-15.678846pt;}
.ws165{word-spacing:-15.653342pt;}
.ws182{word-spacing:-15.462059pt;}
.wsd1{word-spacing:-15.398298pt;}
.wsd3{word-spacing:-15.207014pt;}
.ws11f{word-spacing:-15.143253pt;}
.ws4f{word-spacing:-15.079492pt;}
.ws16d{word-spacing:-15.041236pt;}
.wsaf{word-spacing:-15.015731pt;}
.ws10d{word-spacing:-14.951970pt;}
.ws15c{word-spacing:-14.888209pt;}
.wse9{word-spacing:-14.760687pt;}
.ws22{word-spacing:-14.696926pt;}
.ws12a{word-spacing:-14.633165pt;}
.ws5f{word-spacing:-14.569404pt;}
.ws12f{word-spacing:-14.505643pt;}
.ws44{word-spacing:-14.441882pt;}
.ws14e{word-spacing:-14.403625pt;}
.ws153{word-spacing:-14.378121pt;}
.ws6f{word-spacing:-14.250598pt;}
.ws13b{word-spacing:-14.186837pt;}
.ws5c{word-spacing:-14.123076pt;}
.wsb0{word-spacing:-13.995554pt;}
.ws157{word-spacing:-13.957297pt;}
.ws148{word-spacing:-13.931793pt;}
.wsdc{word-spacing:-13.868032pt;}
.wsb6{word-spacing:-13.804271pt;}
.ws116{word-spacing:-13.740510pt;}
.ws15d{word-spacing:-13.638492pt;}
.wsa3{word-spacing:-13.612988pt;}
.ws111{word-spacing:-13.485466pt;}
.ws54{word-spacing:-13.421705pt;}
.wseb{word-spacing:-13.357943pt;}
.ws3e{word-spacing:-13.294182pt;}
.wsea{word-spacing:-13.166660pt;}
.wsf1{word-spacing:-13.123287pt;}
.ws2f{word-spacing:-13.102899pt;}
.ws160{word-spacing:-13.049207pt;}
.wsa7{word-spacing:-13.039138pt;}
.ws115{word-spacing:-12.975377pt;}
.ws89{word-spacing:-12.911616pt;}
.ws108{word-spacing:-12.847855pt;}
.ws149{word-spacing:-12.809598pt;}
.ws39{word-spacing:-12.784094pt;}
.wsdd{word-spacing:-12.720333pt;}
.ws60{word-spacing:-12.529050pt;}
.ws7{word-spacing:-12.520738pt;}
.ws56{word-spacing:-12.465289pt;}
.ws1a{word-spacing:-12.462556pt;}
.wsde{word-spacing:-12.401527pt;}
.ws135{word-spacing:-12.337766pt;}
.wsfd{word-spacing:-12.274005pt;}
.ws18d{word-spacing:-12.210244pt;}
.ws11b{word-spacing:-12.082722pt;}
.ws75{word-spacing:-12.018961pt;}
.ws161{word-spacing:-11.980704pt;}
.ws81{word-spacing:-11.955200pt;}
.ws166{word-spacing:-11.916943pt;}
.ws2e{word-spacing:-11.891439pt;}
.ws51{word-spacing:-11.827678pt;}
.wsf5{word-spacing:-11.763917pt;}
.wsab{word-spacing:-11.636395pt;}
.wsa{word-spacing:-11.589828pt;}
.wsf8{word-spacing:-11.572634pt;}
.wsd6{word-spacing:-11.508873pt;}
.wsee{word-spacing:-11.445111pt;}
.ws15{word-spacing:-11.415282pt;}
.wsf0{word-spacing:-11.381350pt;}
.ws177{word-spacing:-11.343094pt;}
.ws119{word-spacing:-11.317589pt;}
.wsec{word-spacing:-11.253828pt;}
.ws6e{word-spacing:-11.190067pt;}
.ws128{word-spacing:-11.126306pt;}
.ws17b{word-spacing:-11.088049pt;}
.ws16e{word-spacing:-11.078496pt;}
.ws16b{word-spacing:-11.074488pt;}
.wsb4{word-spacing:-11.062545pt;}
.ws15b{word-spacing:-11.024288pt;}
.ws3f{word-spacing:-10.998784pt;}
.wsce{word-spacing:-10.935023pt;}
.ws25{word-spacing:-10.871262pt;}
.ws11a{word-spacing:-10.807501pt;}
.ws83{word-spacing:-10.743740pt;}
.ws97{word-spacing:-10.679979pt;}
.ws9d{word-spacing:-10.616218pt;}
.ws4b{word-spacing:-10.552457pt;}
.wsf{word-spacing:-10.542554pt;}
.ws49{word-spacing:-10.488695pt;}
.ws158{word-spacing:-10.435335pt;}
.ws30{word-spacing:-10.424934pt;}
.ws16c{word-spacing:-10.415517pt;}
.ws176{word-spacing:-10.413827pt;}
.ws189{word-spacing:-10.411080pt;}
.ws63{word-spacing:-10.403273pt;}
.ws187{word-spacing:-10.400671pt;}
.ws150{word-spacing:-10.399184pt;}
.ws18f{word-spacing:-10.398921pt;}
.ws4e{word-spacing:-10.361173pt;}
.ws118{word-spacing:-10.339287pt;}
.ws3c{word-spacing:-10.297412pt;}
.ws71{word-spacing:-10.233651pt;}
.wsd8{word-spacing:-10.169890pt;}
.ws114{word-spacing:-10.106129pt;}
.wse3{word-spacing:-10.042368pt;}
.wse1{word-spacing:-9.992620pt;}
.wsdf{word-spacing:-9.992426pt;}
.ws80{word-spacing:-9.978607pt;}
.wsf7{word-spacing:-9.914846pt;}
.wsd2{word-spacing:-9.851085pt;}
.ws29{word-spacing:-9.787324pt;}
.ws4d{word-spacing:-9.723563pt;}
.ws13{word-spacing:-9.669826pt;}
.ws123{word-spacing:-9.659802pt;}
.ws1d{word-spacing:-9.611644pt;}
.wsbc{word-spacing:-9.596041pt;}
.ws5{word-spacing:-9.557784pt;}
.ws12d{word-spacing:-9.532279pt;}
.ws90{word-spacing:-9.468518pt;}
.ws12c{word-spacing:-9.404757pt;}
.ws77{word-spacing:-9.340996pt;}
.ws42{word-spacing:-9.277235pt;}
.ws33{word-spacing:-9.213474pt;}
.ws169{word-spacing:-9.175217pt;}
.ws40{word-spacing:-9.149713pt;}
.ws8e{word-spacing:-9.085952pt;}
.wsd4{word-spacing:-9.022191pt;}
.ws53{word-spacing:-8.958430pt;}
.ws7b{word-spacing:-8.894669pt;}
.ws136{word-spacing:-8.887100pt;}
.ws10{word-spacing:-8.855280pt;}
.ws13f{word-spacing:-8.830908pt;}
.ws16a{word-spacing:-8.792651pt;}
.ws31{word-spacing:-8.767147pt;}
.ws82{word-spacing:-8.703386pt;}
.wsc{word-spacing:-8.680735pt;}
.ws48{word-spacing:-8.639625pt;}
.wsdb{word-spacing:-8.575863pt;}
.ws55{word-spacing:-8.512102pt;}
.ws13a{word-spacing:-8.448341pt;}
.wsd{word-spacing:-8.389825pt;}
.ws92{word-spacing:-8.384580pt;}
.ws170{word-spacing:-8.357617pt;}
.ws17a{word-spacing:-8.346324pt;}
.wsb2{word-spacing:-8.320819pt;}
.ws192{word-spacing:-8.300921pt;}
.ws47{word-spacing:-8.193297pt;}
.ws8{word-spacing:-8.098916pt;}
.ws109{word-spacing:-8.065775pt;}
.wscf{word-spacing:-8.002014pt;}
.ws8d{word-spacing:-7.938253pt;}
.wsa4{word-spacing:-7.874492pt;}
.ws147{word-spacing:-7.810731pt;}
.wsd9{word-spacing:-7.746970pt;}
.ws180{word-spacing:-7.708713pt;}
.wsac{word-spacing:-7.683209pt;}
.ws15f{word-spacing:-7.619447pt;}
.ws35{word-spacing:-7.555686pt;}
.ws126{word-spacing:-7.535611pt;}
.ws17{word-spacing:-7.517097pt;}
.ws95{word-spacing:-7.491925pt;}
.ws3b{word-spacing:-7.428164pt;}
.ws8a{word-spacing:-7.364403pt;}
.ws181{word-spacing:-7.236881pt;}
.ws14{word-spacing:-7.109824pt;}
.ws99{word-spacing:-7.109359pt;}
.ws85{word-spacing:-7.045598pt;}
.ws121{word-spacing:-6.981837pt;}
.ws12{word-spacing:-6.935279pt;}
.ws5a{word-spacing:-6.790554pt;}
.wsa8{word-spacing:-6.726793pt;}
.ws4c{word-spacing:-6.663031pt;}
.ws34{word-spacing:-6.599270pt;}
.ws12e{word-spacing:-6.535509pt;}
.ws84{word-spacing:-6.471748pt;}
.ws1c{word-spacing:-6.469824pt;}
.ws164{word-spacing:-6.407987pt;}
.ws2b{word-spacing:-6.344226pt;}
.ws16f{word-spacing:-6.310591pt;}
.ws17c{word-spacing:-6.305828pt;}
.ws67{word-spacing:-6.280465pt;}
.ws69{word-spacing:-6.253940pt;}
.wsba{word-spacing:-6.216704pt;}
.wsf6{word-spacing:-6.025421pt;}
.ws8b{word-spacing:-5.961660pt;}
.ws74{word-spacing:-5.897899pt;}
.ws9c{word-spacing:-5.851793pt;}
.ws9b{word-spacing:-5.834138pt;}
.ws174{word-spacing:-5.807976pt;}
.ws37{word-spacing:-5.770377pt;}
.ws5d{word-spacing:-5.706615pt;}
.ws70{word-spacing:-5.642854pt;}
.ws10b{word-spacing:-5.625023pt;}
.ws129{word-spacing:-5.579093pt;}
.ws167{word-spacing:-5.540837pt;}
.ws142{word-spacing:-5.515332pt;}
.ws152{word-spacing:-5.487643pt;}
.ws12b{word-spacing:-5.387810pt;}
.ws21{word-spacing:-5.324049pt;}
.ws171{word-spacing:-5.260288pt;}
.wsbd{word-spacing:-5.196527pt;}
.ws175{word-spacing:-5.132766pt;}
.ws16{word-spacing:-5.073459pt;}
.wsb7{word-spacing:-5.069005pt;}
.ws66{word-spacing:-5.005244pt;}
.wsa2{word-spacing:-4.941483pt;}
.ws104{word-spacing:-4.877722pt;}
.ws14b{word-spacing:-4.872895pt;}
.ws24{word-spacing:-4.813961pt;}
.ws58{word-spacing:-4.750199pt;}
.wscd{word-spacing:-4.686438pt;}
.ws2a{word-spacing:-4.622677pt;}
.ws131{word-spacing:-4.495155pt;}
.ws14c{word-spacing:-4.456899pt;}
.ws93{word-spacing:-4.431394pt;}
.wsad{word-spacing:-4.367633pt;}
.ws168{word-spacing:-4.303872pt;}
.wsf4{word-spacing:-4.240111pt;}
.wsfa{word-spacing:-4.048828pt;}
.ws13c{word-spacing:-3.985067pt;}
.wsb9{word-spacing:-3.921306pt;}
.ws1f{word-spacing:-3.857545pt;}
.ws11{word-spacing:-3.851640pt;}
.ws9e{word-spacing:-3.850383pt;}
.ws10f{word-spacing:-3.793783pt;}
.wsb{word-spacing:-3.793458pt;}
.ws50{word-spacing:-3.757444pt;}
.ws57{word-spacing:-3.730022pt;}
.ws32{word-spacing:-3.666261pt;}
.ws154{word-spacing:-3.594573pt;}
.ws155{word-spacing:-3.538739pt;}
.ws46{word-spacing:-3.474978pt;}
.ws1b{word-spacing:-3.422722pt;}
.ws7e{word-spacing:-3.411217pt;}
.ws23{word-spacing:-3.390596pt;}
.ws18a{word-spacing:-3.355530pt;}
.ws162{word-spacing:-3.347456pt;}
.wse8{word-spacing:-3.283695pt;}
.wse7{word-spacing:-3.278426pt;}
.ws110{word-spacing:-3.219934pt;}
.ws138{word-spacing:-3.156173pt;}
.ws172{word-spacing:-3.092412pt;}
.ws18b{word-spacing:-3.054155pt;}
.ws156{word-spacing:-3.028651pt;}
.ws186{word-spacing:-2.990394pt;}
.ws141{word-spacing:-2.901129pt;}
.ws173{word-spacing:-2.862872pt;}
.wsf9{word-spacing:-2.837367pt;}
.ws18{word-spacing:-2.804366pt;}
.ws130{word-spacing:-2.709845pt;}
.wsb1{word-spacing:-2.686722pt;}
.wsd5{word-spacing:-2.646084pt;}
.ws61{word-spacing:-2.518562pt;}
.wsda{word-spacing:-2.454801pt;}
.ws151{word-spacing:-2.352783pt;}
.ws140{word-spacing:-2.263518pt;}
.ws10e{word-spacing:-2.199757pt;}
.ws5b{word-spacing:-2.135996pt;}
.wsae{word-spacing:-2.115930pt;}
.ws5e{word-spacing:-2.072235pt;}
.ws139{word-spacing:-2.008474pt;}
.ws15a{word-spacing:-1.906456pt;}
.wsaa{word-spacing:-1.817190pt;}
.wsa0{word-spacing:-1.806722pt;}
.ws19{word-spacing:-1.698911pt;}
.ws18e{word-spacing:-1.689668pt;}
.ws11d{word-spacing:-1.625907pt;}
.ws17d{word-spacing:-1.562146pt;}
.ws6b{word-spacing:-1.513388pt;}
.ws6a{word-spacing:-1.506777pt;}
.ws8f{word-spacing:-1.434624pt;}
.ws9{word-spacing:-1.408001pt;}
.ws17e{word-spacing:-1.396367pt;}
.ws45{word-spacing:-1.370863pt;}
.ws179{word-spacing:-1.307102pt;}
.ws11c{word-spacing:-1.179580pt;}
.ws159{word-spacing:-1.052058pt;}
.ws3d{word-spacing:-0.988297pt;}
.ws20{word-spacing:-0.797013pt;}
.ws76{word-spacing:-0.713388pt;}
.ws7f{word-spacing:-0.669491pt;}
.ws52{word-spacing:-0.552110pt;}
.ws163{word-spacing:-0.478208pt;}
.wsc3{word-spacing:-0.434103pt;}
.wsc5{word-spacing:-0.424620pt;}
.ws13d{word-spacing:-0.414447pt;}
.ws102{word-spacing:-0.223164pt;}
.wsd7{word-spacing:-0.196055pt;}
.wsc8{word-spacing:-0.159403pt;}
.ws7a{word-spacing:-0.095642pt;}
.ws1e{word-spacing:-0.091815pt;}
.ws4{word-spacing:-0.076513pt;}
.ws64{word-spacing:-0.063761pt;}
.ws3{word-spacing:-0.053134pt;}
.wsa6{word-spacing:-0.042507pt;}
.ws78{word-spacing:-0.031881pt;}
.wse{word-spacing:0.000000pt;}
.ws191{word-spacing:0.223164pt;}
.wsb5{word-spacing:0.235945pt;}
.ws6d{word-spacing:0.321278pt;}
.ws26{word-spacing:0.433404pt;}
.ws4a{word-spacing:0.775890pt;}
.ws28{word-spacing:1.500070pt;}
.ws185{word-spacing:1.562146pt;}
.ws87{word-spacing:1.611945pt;}
.ws88{word-spacing:1.617278pt;}
.ws193{word-spacing:1.944713pt;}
.wsc7{word-spacing:2.072235pt;}
.ws36{word-spacing:2.092922pt;}
.ws41{word-spacing:2.124922pt;}
.ws7c{word-spacing:2.374612pt;}
.ws143{word-spacing:2.518562pt;}
.ws94{word-spacing:2.539945pt;}
.ws178{word-spacing:2.773606pt;}
.wsca{word-spacing:3.611945pt;}
.wsc9{word-spacing:3.618256pt;}
.ws59{word-spacing:3.751589pt;}
.ws96{word-spacing:3.814612pt;}
.ws124{word-spacing:3.873278pt;}
.wsbb{word-spacing:3.884922pt;}
.ws9a{word-spacing:4.182737pt;}
.ws9f{word-spacing:4.203945pt;}
.wsa9{word-spacing:4.582612pt;}
.ws7d{word-spacing:4.966612pt;}
.ws2c{word-spacing:4.977404pt;}
.wsfc{word-spacing:5.084070pt;}
.ws38{word-spacing:5.531945pt;}
.wsa1{word-spacing:5.611945pt;}
.wsc0{word-spacing:6.248558pt;}
.ws105{word-spacing:6.454612pt;}
.ws184{word-spacing:7.938253pt;}
.ws183{word-spacing:8.512102pt;}
.wsb8{word-spacing:8.775890pt;}
.ws86{word-spacing:10.491945pt;}
.ws79{word-spacing:11.227945pt;}
.ws133{word-spacing:14.250598pt;}
.wsbf{word-spacing:16.779334pt;}
.wsc1{word-spacing:16.783786pt;}
.wsf2{word-spacing:18.015101pt;}
.ws107{word-spacing:18.271101pt;}
.ws106{word-spacing:18.617767pt;}
.ws134{word-spacing:18.820434pt;}
.ws101{word-spacing:19.690675pt;}
.wsef{word-spacing:19.732434pt;}
.wsed{word-spacing:19.913767pt;}
.wse4{word-spacing:20.292434pt;}
.wsbe{word-spacing:20.325793pt;}
.ws6{word-spacing:20.722347pt;}
.ws62{word-spacing:20.735101pt;}
.ws117{word-spacing:20.799101pt;}
.wse0{word-spacing:21.145767pt;}
.wse2{word-spacing:21.151101pt;}
.ws137{word-spacing:21.609767pt;}
.ws125{word-spacing:21.964800pt;}
.wse5{word-spacing:22.852434pt;}
.wsfe{word-spacing:23.418675pt;}
.ws127{word-spacing:23.609767pt;}
.ws73{word-spacing:23.846639pt;}
.ws1{word-spacing:24.178129pt;}
.ws2{word-spacing:24.254642pt;}
.wsd0{word-spacing:24.681767pt;}
.ws68{word-spacing:24.889767pt;}
.ws112{word-spacing:24.905767pt;}
.ws10c{word-spacing:25.519101pt;}
.ws10a{word-spacing:25.765342pt;}
.wsfb{word-spacing:25.786675pt;}
.ws132{word-spacing:26.649767pt;}
.ws72{word-spacing:27.927269pt;}
.ws103{word-spacing:27.994675pt;}
.ws11e{word-spacing:28.003782pt;}
.wscc{word-spacing:29.065767pt;}
.ws65{word-spacing:32.869937pt;}
.ws13e{word-spacing:32.961753pt;}
.wsc6{word-spacing:33.378592pt;}
.wsc4{word-spacing:33.391786pt;}
.wsb3{word-spacing:42.311726pt;}
.ws0{word-spacing:42.867800pt;}
.wse6{word-spacing:101.515527pt;}
.wsff{word-spacing:115.507635pt;}
.ws113{word-spacing:139.031643pt;}
.ws100{word-spacing:164.928576pt;}
.wsc2{word-spacing:685.085258pt;}
.wsf3{word-spacing:1101.100183pt;}
._2c{margin-left:-8.355207pt;}
._23{margin-left:-7.345254pt;}
._22{margin-left:-6.210317pt;}
._7{margin-left:-5.294931pt;}
._0{margin-left:-3.526400pt;}
._1{margin-left:-1.989340pt;}
._5{margin-left:-1.094299pt;}
._18{width:0.895444pt;}
._3{width:1.931158pt;}
._c{width:3.526400pt;}
._1c{width:4.626546pt;}
._d{width:5.557657pt;}
._2f{width:7.843082pt;}
._30{width:9.346765pt;}
._2d{width:15.028070pt;}
._10{width:16.195311pt;}
._e{width:17.406771pt;}
._2e{width:18.302189pt;}
._1d{width:19.345097pt;}
._26{width:20.662728pt;}
._17{width:22.381723pt;}
._b{width:23.982467pt;}
._8{width:25.239774pt;}
._16{width:26.745759pt;}
._2{width:27.736064pt;}
._14{width:29.202569pt;}
._4{width:30.731182pt;}
._9{width:32.232754pt;}
._12{width:33.474560pt;}
._11{width:34.507484pt;}
._1f{width:35.397727pt;}
._f{width:36.484077pt;}
._1e{width:37.425333pt;}
._1b{width:39.404339pt;}
._21{width:40.296994pt;}
._13{width:41.661470pt;}
._6{width:43.473011pt;}
._20{width:45.015313pt;}
._15{width:47.942743pt;}
._a{width:48.836899pt;}
._29{width:50.220962pt;}
._2b{width:51.342398pt;}
._28{width:53.214970pt;}
._2a{width:55.280845pt;}
._1a{width:57.318786pt;}
._19{width:58.345996pt;}
._24{width:96.136360pt;}
._25{width:118.468860pt;}
._27{width:127.913662pt;}
.fse{font-size:27.298133pt;}
.fsf{font-size:37.333333pt;}
.fs7{font-size:37.440000pt;}
.fs8{font-size:37.492000pt;}
.fsd{font-size:38.997333pt;}
.fs9{font-size:41.600000pt;}
.fsa{font-size:41.652000pt;}
.fs5{font-size:42.507200pt;}
.fsc{font-size:45.866667pt;}
.fs2{font-size:53.133867pt;}
.fsb{font-size:53.333333pt;}
.fs4{font-size:58.181867pt;}
.fs3{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs6{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.yff{bottom:6.626013pt;}
.y84{bottom:7.161440pt;}
.y73{bottom:7.177040pt;}
.yfe{bottom:8.225513pt;}
.ye0{bottom:9.003500pt;}
.y7a{bottom:14.587040pt;}
.y83{bottom:14.639040pt;}
.yfd{bottom:18.440986pt;}
.y100{bottom:24.094076pt;}
.ydf{bottom:25.220167pt;}
.y158{bottom:32.951417pt;}
.y79{bottom:33.499440pt;}
.y81{bottom:33.567040pt;}
.y70{bottom:33.577440pt;}
.y77{bottom:35.049040pt;}
.y7f{bottom:35.095840pt;}
.y6e{bottom:35.111440pt;}
.ye1{bottom:42.373870pt;}
.y156{bottom:46.257017pt;}
.yf0{bottom:50.719333pt;}
.y120{bottom:54.324221pt;}
.y12a{bottom:54.719858pt;}
.y16{bottom:56.149333pt;}
.y75{bottom:56.509440pt;}
.y7d{bottom:56.577040pt;}
.y6c{bottom:56.587440pt;}
.y101{bottom:63.010295pt;}
.y76{bottom:66.269840pt;}
.y7e{bottom:66.327040pt;}
.y6d{bottom:66.347840pt;}
.y108{bottom:66.713518pt;}
.y78{bottom:66.867840pt;}
.y80{bottom:66.935440pt;}
.y6f{bottom:66.951040pt;}
.y82{bottom:67.013440pt;}
.y71{bottom:67.029040pt;}
.yef{bottom:67.548500pt;}
.y155{bottom:72.868217pt;}
.ye2{bottom:74.526397pt;}
.yee{bottom:84.377667pt;}
.y159{bottom:86.173817pt;}
.y7b{bottom:86.279440pt;}
.y7c{bottom:86.347040pt;}
.y72{bottom:86.357440pt;}
.y74{bottom:86.409440pt;}
.y124{bottom:92.427580pt;}
.y1c8{bottom:96.000000pt;}
.y11e{bottom:97.198667pt;}
.ybd{bottom:99.152000pt;}
.y154{bottom:99.479417pt;}
.y125{bottom:99.637707pt;}
.yd2{bottom:100.250667pt;}
.yed{bottom:101.206833pt;}
.y102{bottom:101.926514pt;}
.y15{bottom:102.534667pt;}
.y63{bottom:102.987040pt;}
.y62{bottom:103.065040pt;}
.y1ae{bottom:104.618667pt;}
.ye3{bottom:106.678923pt;}
.y149{bottom:106.845333pt;}
.y121{bottom:107.788095pt;}
.y126{bottom:108.801509pt;}
.y12b{bottom:109.172826pt;}
.y6a{bottom:109.185440pt;}
.y13a{bottom:109.372000pt;}
.y60{bottom:109.539040pt;}
.y106{bottom:110.073873pt;}
.yfb{bottom:112.432000pt;}
.y9f{bottom:112.649333pt;}
.yb1{bottom:114.540000pt;}
.y4a{bottom:115.254667pt;}
.y4b{bottom:115.256000pt;}
.yec{bottom:118.036000pt;}
.y30{bottom:118.548000pt;}
.y17e{bottom:119.520000pt;}
.y16b{bottom:120.350667pt;}
.y18e{bottom:122.725333pt;}
.y15e{bottom:123.393094pt;}
.y153{bottom:126.090617pt;}
.y1c7{bottom:127.877333pt;}
.y68{bottom:128.113440pt;}
.y57{bottom:128.259040pt;}
.y51{bottom:128.321440pt;}
.y5e{bottom:128.451440pt;}
.y11d{bottom:129.076000pt;}
.y66{bottom:129.647440pt;}
.y55{bottom:129.787840pt;}
.y4f{bottom:129.871040pt;}
.y5c{bottom:130.001040pt;}
.y107{bottom:130.984479pt;}
.ybc{bottom:131.028000pt;}
.y1da{bottom:131.185333pt;}
.yd1{bottom:132.128000pt;}
.y14{bottom:132.432000pt;}
.y15f{bottom:134.171740pt;}
.ye9{bottom:134.326427pt;}
.yeb{bottom:134.865167pt;}
.y198{bottom:135.504000pt;}
.y1ad{bottom:136.496000pt;}
.yf3{bottom:137.076000pt;}
.y127{bottom:138.395392pt;}
.y148{bottom:138.722667pt;}
.ye4{bottom:138.831450pt;}
.y15a{bottom:139.396217pt;}
.y12e{bottom:140.274670pt;}
.y157{bottom:140.624083pt;}
.y103{bottom:140.842733pt;}
.y139{bottom:141.249333pt;}
.y128{bottom:142.127559pt;}
.y12f{bottom:144.006836pt;}
.yfa{bottom:144.309333pt;}
.y9e{bottom:144.526667pt;}
.yb0{bottom:146.417333pt;}
.y49{bottom:147.132000pt;}
.y1d6{bottom:149.778667pt;}
.y2f{bottom:150.425333pt;}
.y64{bottom:151.123440pt;}
.y53{bottom:151.269040pt;}
.y4d{bottom:151.331440pt;}
.y17d{bottom:151.396000pt;}
.y5a{bottom:151.461440pt;}
.yea{bottom:151.694333pt;}
.y16a{bottom:152.228000pt;}
.y152{bottom:152.701817pt;}
.y18d{bottom:154.601333pt;}
.y160{bottom:155.878120pt;}
.yf2{bottom:156.337333pt;}
.y1c6{bottom:159.753333pt;}
.y65{bottom:160.889040pt;}
.y11c{bottom:160.953333pt;}
.y54{bottom:161.019040pt;}
.y4e{bottom:161.097040pt;}
.y5b{bottom:161.227040pt;}
.y122{bottom:161.251969pt;}
.y67{bottom:161.487040pt;}
.y69{bottom:161.559840pt;}
.y56{bottom:161.627440pt;}
.y50{bottom:161.689840pt;}
.y58{bottom:161.705440pt;}
.y52{bottom:161.767840pt;}
.y5d{bottom:161.819840pt;}
.y5f{bottom:161.897840pt;}
.y13{bottom:162.330667pt;}
.ybb{bottom:162.905333pt;}
.y1d9{bottom:163.062667pt;}
.y12c{bottom:163.625793pt;}
.yd0{bottom:164.005333pt;}
.y109{bottom:164.176202pt;}
.y10a{bottom:167.908369pt;}
.y1dc{bottom:168.372000pt;}
.y147{bottom:170.600000pt;}
.ye5{bottom:170.983977pt;}
.y1e3{bottom:171.612000pt;}
.y138{bottom:173.126667pt;}
.yf1{bottom:175.598667pt;}
.yf9{bottom:176.186667pt;}
.y9d{bottom:176.404000pt;}
.yaf{bottom:178.294667pt;}
.y48{bottom:179.009333pt;}
.y151{bottom:179.313017pt;}
.y104{bottom:179.758951pt;}
.y197{bottom:180.665333pt;}
.y6b{bottom:180.893440pt;}
.y59{bottom:181.033840pt;}
.y61{bottom:181.231440pt;}
.y1ac{bottom:181.656000pt;}
.y2e{bottom:182.302667pt;}
.y17c{bottom:183.273333pt;}
.y169{bottom:184.105333pt;}
.y18c{bottom:186.478667pt;}
.y87{bottom:189.556000pt;}
.y12{bottom:192.229333pt;}
.y15b{bottom:192.618617pt;}
.y11b{bottom:192.829333pt;}
.yba{bottom:194.782667pt;}
.y1d8{bottom:194.940000pt;}
.ycf{bottom:195.882667pt;}
.y1db{bottom:200.249333pt;}
.yde{bottom:202.364000pt;}
.y146{bottom:202.477333pt;}
.ye6{bottom:203.136503pt;}
.y1c5{bottom:203.489333pt;}
.y137{bottom:205.004000pt;}
.y150{bottom:205.924217pt;}
.yf8{bottom:208.064000pt;}
.y9c{bottom:208.281333pt;}
.y86{bottom:208.817333pt;}
.yae{bottom:210.172000pt;}
.y47{bottom:210.886667pt;}
.y196{bottom:212.542667pt;}
.y1ab{bottom:213.533333pt;}
.y2d{bottom:214.178667pt;}
.y123{bottom:214.715843pt;}
.y17b{bottom:215.150667pt;}
.y168{bottom:215.982667pt;}
.y12d{bottom:218.078761pt;}
.y18b{bottom:218.356000pt;}
.y105{bottom:218.675170pt;}
.y11{bottom:222.128000pt;}
.y11a{bottom:224.706667pt;}
.yb9{bottom:226.660000pt;}
.y1d7{bottom:226.817333pt;}
.yce{bottom:227.758667pt;}
.y14f{bottom:232.535417pt;}
.y145{bottom:234.354667pt;}
.ye7{bottom:235.289030pt;}
.y1c4{bottom:235.366667pt;}
.y136{bottom:236.881333pt;}
.yf7{bottom:239.941333pt;}
.y9b{bottom:240.157333pt;}
.yad{bottom:242.049333pt;}
.y46{bottom:242.764000pt;}
.y195{bottom:244.418667pt;}
.y1aa{bottom:245.410667pt;}
.y15c{bottom:245.841017pt;}
.y2c{bottom:246.056000pt;}
.y17a{bottom:247.028000pt;}
.y1e2{bottom:247.225333pt;}
.y167{bottom:247.860000pt;}
.y18a{bottom:250.233333pt;}
.y10{bottom:252.026667pt;}
.y119{bottom:256.584000pt;}
.yb8{bottom:258.537333pt;}
.y1b3{bottom:258.693333pt;}
.y14e{bottom:259.146617pt;}
.ycd{bottom:259.636000pt;}
.y144{bottom:266.232000pt;}
.ye8{bottom:267.441557pt;}
.y135{bottom:268.758667pt;}
.y9a{bottom:272.034667pt;}
.yac{bottom:273.925333pt;}
.y45{bottom:274.641333pt;}
.y1a9{bottom:277.288000pt;}
.y2b{bottom:277.933333pt;}
.y179{bottom:278.905333pt;}
.y1c3{bottom:279.102667pt;}
.y166{bottom:279.737333pt;}
.yf{bottom:281.925333pt;}
.y189{bottom:282.110667pt;}
.y14d{bottom:285.757817pt;}
.y118{bottom:288.461333pt;}
.y194{bottom:289.580000pt;}
.yb7{bottom:290.414667pt;}
.y1b2{bottom:290.570667pt;}
.ycc{bottom:291.513333pt;}
.yf6{bottom:296.193333pt;}
.y143{bottom:298.108000pt;}
.y15d{bottom:299.063417pt;}
.y134{bottom:300.634667pt;}
.y99{bottom:303.912000pt;}
.yab{bottom:305.802667pt;}
.y44{bottom:306.517333pt;}
.y14b{bottom:308.769667pt;}
.y2a{bottom:309.810667pt;}
.y178{bottom:310.781333pt;}
.y1c2{bottom:310.980000pt;}
.y165{bottom:311.613333pt;}
.y188{bottom:313.988000pt;}
.yf5{bottom:315.454667pt;}
.y117{bottom:320.338667pt;}
.ye{bottom:320.784000pt;}
.y193{bottom:321.457333pt;}
.yb6{bottom:322.290667pt;}
.y1a8{bottom:322.448000pt;}
.ycb{bottom:323.390667pt;}
.y14c{bottom:324.765500pt;}
.y142{bottom:329.985333pt;}
.y133{bottom:332.512000pt;}
.y1d5{bottom:335.732000pt;}
.y98{bottom:335.789333pt;}
.yaa{bottom:337.680000pt;}
.y43{bottom:338.394667pt;}
.y29{bottom:341.688000pt;}
.y177{bottom:342.658667pt;}
.y1c1{bottom:342.856000pt;}
.y164{bottom:343.490667pt;}
.y187{bottom:345.864000pt;}
.y116{bottom:352.216000pt;}
.yb5{bottom:354.168000pt;}
.y1a7{bottom:354.325333pt;}
.yca{bottom:355.268000pt;}
.y141{bottom:361.862667pt;}
.y132{bottom:364.389333pt;}
.y1d4{bottom:367.609333pt;}
.y97{bottom:367.666667pt;}
.y192{bottom:369.116000pt;}
.ya9{bottom:369.557333pt;}
.y42{bottom:370.272000pt;}
.y28{bottom:373.565333pt;}
.y176{bottom:374.536000pt;}
.y163{bottom:375.368000pt;}
.yd{bottom:375.929333pt;}
.y186{bottom:377.741333pt;}
.y115{bottom:384.092000pt;}
.yb4{bottom:386.045333pt;}
.y1a6{bottom:386.202667pt;}
.y1c0{bottom:386.592000pt;}
.yc9{bottom:387.144000pt;}
.y140{bottom:393.740000pt;}
.y1b1{bottom:399.485333pt;}
.y96{bottom:399.542667pt;}
.ya8{bottom:401.434667pt;}
.y41{bottom:402.149333pt;}
.y27{bottom:405.441333pt;}
.y175{bottom:406.413333pt;}
.y162{bottom:407.245333pt;}
.y185{bottom:409.618667pt;}
.y114{bottom:415.969333pt;}
.y1bf{bottom:418.469333pt;}
.yc8{bottom:419.021333pt;}
.y131{bottom:420.641333pt;}
.yc{bottom:423.414667pt;}
.y13f{bottom:425.617333pt;}
.yb3{bottom:428.214667pt;}
.y1a5{bottom:431.362667pt;}
.y95{bottom:431.420000pt;}
.ya7{bottom:433.312000pt;}
.y40{bottom:434.026667pt;}
.y174{bottom:438.290667pt;}
.y130{bottom:439.902667pt;}
.y184{bottom:441.496000pt;}
.y1d3{bottom:444.646667pt;}
.y113{bottom:447.846667pt;}
.y1be{bottom:450.346667pt;}
.yc7{bottom:450.898667pt;}
.y26{bottom:453.100000pt;}
.yb{bottom:455.292000pt;}
.y13e{bottom:457.494667pt;}
.y1e1{bottom:462.205333pt;}
.y1a4{bottom:463.240000pt;}
.y94{bottom:463.297333pt;}
.y161{bottom:463.497333pt;}
.ya6{bottom:465.188000pt;}
.y3f{bottom:465.904000pt;}
.yb2{bottom:467.786667pt;}
.y173{bottom:470.168000pt;}
.y11f{bottom:471.870667pt;}
.y183{bottom:473.373333pt;}
.y1d2{bottom:476.524000pt;}
.y112{bottom:479.724000pt;}
.y1bd{bottom:482.224000pt;}
.yc6{bottom:482.776000pt;}
.ya{bottom:487.168000pt;}
.y13d{bottom:489.370667pt;}
.y14a{bottom:490.264000pt;}
.y1e0{bottom:494.082667pt;}
.y1a3{bottom:495.117333pt;}
.y93{bottom:495.174667pt;}
.ya5{bottom:497.065333pt;}
.y3e{bottom:497.780000pt;}
.y172{bottom:502.044000pt;}
.y182{bottom:505.249333pt;}
.y191{bottom:505.250667pt;}
.y1b0{bottom:508.400000pt;}
.y111{bottom:511.601333pt;}
.yc5{bottom:514.653333pt;}
.y9{bottom:519.045333pt;}
.y13c{bottom:521.248000pt;}
.y1d1{bottom:521.684000pt;}
.y25{bottom:525.481333pt;}
.y1bc{bottom:525.958667pt;}
.ya4{bottom:528.942667pt;}
.y3d{bottom:529.657333pt;}
.y171{bottom:533.921333pt;}
.y181{bottom:537.126667pt;}
.y92{bottom:537.344000pt;}
.y1a2{bottom:540.277333pt;}
.y110{bottom:543.478667pt;}
.yc4{bottom:546.530667pt;}
.y8{bottom:550.922667pt;}
.y1d0{bottom:553.561333pt;}
.y24{bottom:555.378667pt;}
.y1bb{bottom:557.836000pt;}
.yf4{bottom:558.862667pt;}
.ydd{bottom:559.644000pt;}
.ya3{bottom:560.820000pt;}
.y3c{bottom:561.534667pt;}
.y13b{bottom:563.417333pt;}
.y170{bottom:565.798667pt;}
.y180{bottom:569.004000pt;}
.y1a1{bottom:572.154667pt;}
.y10f{bottom:575.354667pt;}
.yc3{bottom:578.406667pt;}
.y91{bottom:579.513333pt;}
.y7{bottom:582.800000pt;}
.y23{bottom:585.277333pt;}
.y1cf{bottom:585.438667pt;}
.y1ba{bottom:589.713333pt;}
.ydc{bottom:591.521333pt;}
.ya2{bottom:592.697333pt;}
.y3b{bottom:593.412000pt;}
.y16f{bottom:597.676000pt;}
.y190{bottom:600.881333pt;}
.y1df{bottom:601.572000pt;}
.y1a0{bottom:604.032000pt;}
.y85{bottom:606.280000pt;}
.y6{bottom:614.677333pt;}
.y22{bottom:615.176000pt;}
.y17f{bottom:616.662667pt;}
.y1af{bottom:617.316000pt;}
.yc2{bottom:620.576000pt;}
.ydb{bottom:623.397333pt;}
.ya1{bottom:624.574667pt;}
.y3a{bottom:625.289333pt;}
.y1ce{bottom:630.598667pt;}
.y10e{bottom:631.608000pt;}
.y4c{bottom:633.046667pt;}
.y1b9{bottom:633.449333pt;}
.y90{bottom:641.384000pt;}
.y21{bottom:645.074667pt;}
.y18f{bottom:648.540000pt;}
.y19f{bottom:649.192000pt;}
.y10d{bottom:650.868000pt;}
.y16e{bottom:653.928000pt;}
.yda{bottom:655.274667pt;}
.y39{bottom:657.166667pt;}
.y5{bottom:662.161333pt;}
.y1cd{bottom:662.476000pt;}
.y1b8{bottom:665.326667pt;}
.ya0{bottom:666.744000pt;}
.y129{bottom:667.474667pt;}
.y10c{bottom:670.129333pt;}
.y16d{bottom:673.189333pt;}
.y8f{bottom:673.261333pt;}
.yc1{bottom:674.753333pt;}
.y20{bottom:674.973333pt;}
.y19e{bottom:681.069333pt;}
.yd9{bottom:687.152000pt;}
.y38{bottom:689.042667pt;}
.y1cc{bottom:694.353333pt;}
.y1b7{bottom:697.202667pt;}
.y4{bottom:701.733333pt;}
.yfc{bottom:702.097333pt;}
.y1f{bottom:704.872000pt;}
.y8e{bottom:705.138667pt;}
.yc0{bottom:706.630667pt;}
.yd8{bottom:719.029333pt;}
.y37{bottom:720.920000pt;}
.y19d{bottom:726.230667pt;}
.y1de{bottom:729.080000pt;}
.y1e{bottom:734.770667pt;}
.y8d{bottom:737.016000pt;}
.ybf{bottom:738.508000pt;}
.y1cb{bottom:739.513333pt;}
.y1b6{bottom:740.938667pt;}
.yd7{bottom:750.906667pt;}
.y36{bottom:752.797333pt;}
.y19c{bottom:758.108000pt;}
.y1d{bottom:764.669333pt;}
.y3{bottom:764.717333pt;}
.y8c{bottom:768.893333pt;}
.ybe{bottom:770.385333pt;}
.y1ca{bottom:771.390667pt;}
.y1b5{bottom:772.816000pt;}
.yd6{bottom:782.784000pt;}
.y35{bottom:784.674667pt;}
.y19b{bottom:789.984000pt;}
.y1c{bottom:794.568000pt;}
.y8b{bottom:800.770667pt;}
.y1c9{bottom:803.268000pt;}
.y1b4{bottom:804.693333pt;}
.yd5{bottom:814.660000pt;}
.y34{bottom:816.552000pt;}
.y2{bottom:819.677333pt;}
.y1b{bottom:824.465333pt;}
.y8a{bottom:832.646667pt;}
.y19a{bottom:835.145333pt;}
.y1dd{bottom:836.570667pt;}
.yd4{bottom:846.537333pt;}
.y33{bottom:848.429333pt;}
.y1a{bottom:854.364000pt;}
.y89{bottom:864.524000pt;}
.y199{bottom:867.022667pt;}
.y1{bottom:874.638667pt;}
.y32{bottom:880.305333pt;}
.y19{bottom:884.262667pt;}
.yd3{bottom:888.706667pt;}
.y88{bottom:896.401333pt;}
.y10b{bottom:897.701333pt;}
.y31{bottom:912.182667pt;}
.y18{bottom:914.161333pt;}
.y16c{bottom:916.598667pt;}
.y17{bottom:944.060000pt;}
.h18{height:25.359966pt;}
.hb{height:28.390781pt;}
.hd{height:28.430213pt;}
.h19{height:34.682667pt;}
.h17{height:36.228523pt;}
.hc{height:39.048750pt;}
.he{height:39.102984pt;}
.h6{height:40.785489pt;}
.h15{height:42.610133pt;}
.hf{height:43.387500pt;}
.h10{height:43.441734pt;}
.h7{height:43.694582pt;}
.h12{height:44.696508pt;}
.h5{height:47.183189pt;}
.h4{height:47.884561pt;}
.h14{height:49.546667pt;}
.h11{height:57.461313pt;}
.h8{height:58.213854pt;}
.h9{height:64.454458pt;}
.h2{height:65.224709pt;}
.h3{height:65.230043pt;}
.h1{height:79.344000pt;}
.ha{height:192.358400pt;}
.h16{height:252.702720pt;}
.h13{height:334.260533pt;}
.h0{height:1056.000000pt;}
.w3{width:280.780800pt;}
.w2{width:368.881067pt;}
.w1{width:602.366431pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x16{left:6.096991pt;}
.x5c{left:9.761520pt;}
.x5d{left:11.361020pt;}
.x3e{left:13.350000pt;}
.x5b{left:20.742468pt;}
.x48{left:23.846260pt;}
.x49{left:25.445760pt;}
.x47{left:26.944720pt;}
.x3c{left:28.367708pt;}
.x3d{left:36.851042pt;}
.x68{left:44.071600pt;}
.x6b{left:46.263267pt;}
.x6a{left:47.775767pt;}
.x69{left:50.550767pt;}
.x4e{left:61.813827pt;}
.x60{left:62.759882pt;}
.x20{left:67.407591pt;}
.x14{left:71.463591pt;}
.x28{left:81.457991pt;}
.x4f{left:89.148704pt;}
.x61{left:93.535904pt;}
.x11{left:96.000000pt;}
.x50{left:97.030050pt;}
.x41{left:100.750410pt;}
.x1{left:103.626667pt;}
.x13{left:106.817342pt;}
.x42{left:108.631756pt;}
.x62{left:109.643250pt;}
.x9{left:111.282667pt;}
.x63{left:112.305751pt;}
.x5a{left:113.317625pt;}
.xb{left:114.420000pt;}
.x6{left:115.346667pt;}
.x51{left:116.790539pt;}
.x12{left:119.412000pt;}
.x43{left:121.501067pt;}
.x44{left:124.163568pt;}
.x64{left:126.381351pt;}
.x52{left:128.566858pt;}
.x53{left:130.866139pt;}
.x7{left:132.178667pt;}
.x15{left:133.780391pt;}
.xf{left:135.020000pt;}
.x2{left:136.790667pt;}
.x45{left:138.092547pt;}
.x46{left:141.021631pt;}
.x2e{left:142.859591pt;}
.x65{left:145.352087pt;}
.x4{left:146.572000pt;}
.x66{left:148.281171pt;}
.x54{left:149.836876pt;}
.x55{left:152.765960pt;}
.x5{left:156.409333pt;}
.x40{left:161.802667pt;}
.xd{left:165.810667pt;}
.x67{left:168.073300pt;}
.x56{left:171.198614pt;}
.x2a{left:173.393991pt;}
.x57{left:175.952366pt;}
.x58{left:180.560925pt;}
.x4a{left:182.597248pt;}
.x4b{left:187.351000pt;}
.x39{left:188.634896pt;}
.x19{left:190.943991pt;}
.x4c{left:191.959560pt;}
.x3a{left:198.075000pt;}
.x3b{left:207.196094pt;}
.x27{left:209.154391pt;}
.x5e{left:211.707896pt;}
.x5f{left:216.316456pt;}
.x1f{left:218.113991pt;}
.x17{left:222.310391pt;}
.x38{left:223.562667pt;}
.x2d{left:232.959991pt;}
.xa{left:267.738667pt;}
.x3{left:274.506667pt;}
.x18{left:284.637591pt;}
.x36{left:286.561333pt;}
.x29{left:293.971591pt;}
.x2b{left:298.323991pt;}
.x8{left:303.641333pt;}
.xc{left:306.974667pt;}
.x1c{left:308.151991pt;}
.x3f{left:317.109167pt;}
.x2f{left:324.854391pt;}
.x6c{left:328.744142pt;}
.x1d{left:342.118391pt;}
.x6d{left:356.901433pt;}
.x6e{left:359.088933pt;}
.x2c{left:360.661591pt;}
.x1e{left:369.459991pt;}
.x1a{left:373.515991pt;}
.xe{left:376.237333pt;}
.x32{left:383.640391pt;}
.x37{left:400.198667pt;}
.x10{left:404.098667pt;}
.x33{left:417.611991pt;}
.x4d{left:420.292000pt;}
.x1b{left:435.848391pt;}
.x34{left:445.613991pt;}
.x30{left:449.004391pt;}
.x23{left:459.055991pt;}
.x59{left:462.034667pt;}
.x35{left:475.451591pt;}
.x25{left:493.048391pt;}
.x31{left:511.341991pt;}
.x26{left:520.363991pt;}
.x21{left:524.419991pt;}
.x24{left:550.757991pt;}
.x22{left:586.741991pt;}
}




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