
    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_4134118bf9c7d44715a8cbf5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b181c7334a333014f57a33ba.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_9c4b3ff3639686aa6bb5a814.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.713000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ca633ec1ccdd13cee76553cb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1f3e8d73b12604d1aa361a48.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.810000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7fed585979f3e4de5aead0ac.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.895000;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_d5af48531d34ccf2f5cfeeac.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_abbe9141e2826f480c9a06e5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.535000;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_eb41fe70796d2f5eb7ae5440.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_40601702538ab56b99b806d5.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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_c833d64886ac816ab0897186.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;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_ea1af9b2db4271be52515b76.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.694000;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_d84bcb9e845b4932c91513fd.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.898000;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_b7060f1f657d8d5ba55a2645.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.636000;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_70cefa48d32a45979c625b77.woff2')format("woff");}.fff{font-family:fff;line-height:1.400000;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_1ea0b9955f6ac81e4847d4f5.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.686000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-16.872000px;}
.v3{vertical-align:-8.964000px;}
.v9{vertical-align:-5.982000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:5.868000px;}
.vc{vertical-align:11.094000px;}
.v6{vertical-align:14.838000px;}
.v8{vertical-align:20.088000px;}
.v5{vertical-align:21.690000px;}
.v1{vertical-align:23.754000px;}
.v4{vertical-align:26.070000px;}
.va{vertical-align:40.440000px;}
.vb{vertical-align:81.444000px;}
.lsc{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.000564px;}
.ls3f{letter-spacing:0.000775px;}
.ls46{letter-spacing:0.002023px;}
.ls35{letter-spacing:0.002245px;}
.ls24{letter-spacing:0.002685px;}
.lsb{letter-spacing:0.002915px;}
.ls17{letter-spacing:0.003269px;}
.ls15{letter-spacing:0.004172px;}
.ls33{letter-spacing:0.004200px;}
.ls4e{letter-spacing:0.004769px;}
.ls39{letter-spacing:0.004896px;}
.ls20{letter-spacing:1.127110px;}
.ls55{letter-spacing:1.606648px;}
.ls37{letter-spacing:1.665333px;}
.lse{letter-spacing:2.449834px;}
.ls4{letter-spacing:2.964877px;}
.ls0{letter-spacing:2.984915px;}
.ls69{letter-spacing:2.987675px;}
.ls52{letter-spacing:2.988017px;}
.ls2{letter-spacing:2.988084px;}
.ls3e{letter-spacing:2.988775px;}
.lsf{letter-spacing:2.988780px;}
.ls10{letter-spacing:2.989492px;}
.ls42{letter-spacing:2.989994px;}
.ls2c{letter-spacing:2.990525px;}
.ls1{letter-spacing:2.991113px;}
.ls53{letter-spacing:2.992766px;}
.ls21{letter-spacing:2.993251px;}
.ls16{letter-spacing:3.994868px;}
.ls5d{letter-spacing:4.026538px;}
.ls36{letter-spacing:4.281333px;}
.ls68{letter-spacing:6.036538px;}
.ls3c{letter-spacing:6.427866px;}
.ls34{letter-spacing:6.433866px;}
.ls27{letter-spacing:6.516305px;}
.ls3d{letter-spacing:6.764108px;}
.ls3b{letter-spacing:7.825213px;}
.ls58{letter-spacing:7.836538px;}
.ls62{letter-spacing:8.298312px;}
.ls57{letter-spacing:9.448648px;}
.ls32{letter-spacing:9.962338px;}
.ls5a{letter-spacing:11.358538px;}
.ls50{letter-spacing:13.278538px;}
.ls5f{letter-spacing:13.284538px;}
.ls22{letter-spacing:13.974538px;}
.ls65{letter-spacing:14.115056px;}
.ls8{letter-spacing:14.652084px;}
.ls41{letter-spacing:16.601607px;}
.ls45{letter-spacing:16.602538px;}
.ls1d{letter-spacing:16.832245px;}
.ls1e{letter-spacing:16.832400px;}
.ls51{letter-spacing:17.382538px;}
.ls2b{letter-spacing:17.978338px;}
.ls2a{letter-spacing:17.979411px;}
.ls4a{letter-spacing:19.079607px;}
.ls40{letter-spacing:19.590775px;}
.ls59{letter-spacing:19.594648px;}
.ls44{letter-spacing:19.596775px;}
.ls2e{letter-spacing:20.412538px;}
.ls64{letter-spacing:20.454538px;}
.ls63{letter-spacing:20.920200px;}
.lsa{letter-spacing:21.417113px;}
.ls3a{letter-spacing:21.597269px;}
.ls5c{letter-spacing:21.666538px;}
.ls49{letter-spacing:22.068775px;}
.ls4b{letter-spacing:22.256245px;}
.ls1a{letter-spacing:23.312484px;}
.ls26{letter-spacing:23.748538px;}
.ls4d{letter-spacing:23.775333px;}
.ls1b{letter-spacing:24.537269px;}
.ls48{letter-spacing:24.670200px;}
.ls6{letter-spacing:24.987113px;}
.ls31{letter-spacing:25.058338px;}
.ls3{letter-spacing:26.000915px;}
.ls4c{letter-spacing:26.391333px;}
.ls47{letter-spacing:26.538775px;}
.ls38{letter-spacing:26.767866px;}
.ls2d{letter-spacing:26.928305px;}
.ls54{letter-spacing:28.094532px;}
.ls1c{letter-spacing:28.400108px;}
.ls23{letter-spacing:28.749411px;}
.ls67{letter-spacing:29.236618px;}
.ls5b{letter-spacing:29.564525px;}
.ls25{letter-spacing:30.270305px;}
.ls9{letter-spacing:30.650915px;}
.ls11{letter-spacing:31.388108px;}
.ls5{letter-spacing:31.424915px;}
.ls30{letter-spacing:31.495866px;}
.ls66{letter-spacing:31.998538px;}
.ls56{letter-spacing:32.474525px;}
.ls4f{letter-spacing:33.510538px;}
.ls14{letter-spacing:33.812338px;}
.ls28{letter-spacing:35.055269px;}
.lsd{letter-spacing:35.863409px;}
.ls18{letter-spacing:36.799140px;}
.ls13{letter-spacing:36.800525px;}
.ls2f{letter-spacing:37.068305px;}
.ls29{letter-spacing:38.036525px;}
.ls19{letter-spacing:38.041213px;}
.ls43{letter-spacing:39.588065px;}
.ls12{letter-spacing:40.574108px;}
.ls7{letter-spacing:61.071113px;}
.ls60{letter-spacing:107.016538px;}
.ls61{letter-spacing:110.946538px;}
.ls5e{letter-spacing:196.368538px;}
.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;}
}
.wsb9{word-spacing:-83.088084px;}
.wsc4{word-spacing:-59.775600px;}
.ws2{word-spacing:-50.809387px;}
.wsbb{word-spacing:-42.918881px;}
.wsc5{word-spacing:-41.783144px;}
.wsb4{word-spacing:-38.937826px;}
.wseb{word-spacing:-36.224014px;}
.wsb2{word-spacing:-35.148053px;}
.wsc9{word-spacing:-34.729624px;}
.wsbc{word-spacing:-31.633157px;}
.ws153{word-spacing:-30.629017px;}
.wsb5{word-spacing:-29.015076px;}
.wsb6{word-spacing:-25.942610px;}
.ws159{word-spacing:-22.346727px;}
.ws158{word-spacing:-21.156626px;}
.ws152{word-spacing:-20.217522px;}
.ws31{word-spacing:-17.983557px;}
.ws12f{word-spacing:-14.943900px;}
.ws1d{word-spacing:-14.920027px;}
.ws79{word-spacing:-11.955150px;}
.ws13a{word-spacing:-1.195512px;}
.ws36{word-spacing:-0.896634px;}
.ws179{word-spacing:-0.860771px;}
.ws132{word-spacing:-0.836858px;}
.ws90{word-spacing:-0.777083px;}
.ws6e{word-spacing:-0.717307px;}
.ws151{word-spacing:-0.657532px;}
.ws5b{word-spacing:-0.597756px;}
.ws18b{word-spacing:-0.478206px;}
.ws3e{word-spacing:-0.478205px;}
.ws3f{word-spacing:-0.418429px;}
.ws40{word-spacing:-0.358654px;}
.ws1b7{word-spacing:-0.334744px;}
.wse0{word-spacing:-0.298878px;}
.ws2e{word-spacing:-0.286924px;}
.ws164{word-spacing:-0.179327px;}
.wsff{word-spacing:-0.119551px;}
.wsb8{word-spacing:-0.059776px;}
.ws3{word-spacing:-0.053798px;}
.ws15c{word-spacing:-0.047821px;}
.wsbd{word-spacing:-0.041843px;}
.ws5e{word-spacing:0.000000px;}
.ws105{word-spacing:0.059776px;}
.ws59{word-spacing:0.239102px;}
.ws166{word-spacing:0.358654px;}
.wsdf{word-spacing:0.478205px;}
.ws4d{word-spacing:0.537980px;}
.ws19d{word-spacing:0.573847px;}
.ws1a8{word-spacing:0.604074px;}
.ws1a9{word-spacing:0.621668px;}
.wsc7{word-spacing:0.717307px;}
.ws195{word-spacing:0.765130px;}
.wse1{word-spacing:0.777083px;}
.wsa3{word-spacing:0.836858px;}
.ws43{word-spacing:0.896634px;}
.ws14f{word-spacing:0.956410px;}
.wsa5{word-spacing:1.075961px;}
.ws1b5{word-spacing:1.147694px;}
.ws198{word-spacing:1.243336px;}
.ws50{word-spacing:1.255288px;}
.ws1a{word-spacing:1.344960px;}
.ws178{word-spacing:1.530259px;}
.wsde{word-spacing:1.554166px;}
.ws100{word-spacing:1.613941px;}
.ws51{word-spacing:1.673717px;}
.ws1b6{word-spacing:1.721542px;}
.ws16c{word-spacing:1.733492px;}
.wsd8{word-spacing:1.793268px;}
.ws103{word-spacing:1.853044px;}
.ws117{word-spacing:1.912819px;}
.ws68{word-spacing:1.972595px;}
.ws181{word-spacing:2.032370px;}
.ws17f{word-spacing:2.060125px;}
.wse9{word-spacing:2.092146px;}
.wsa6{word-spacing:2.151922px;}
.ws16d{word-spacing:2.271473px;}
.ws73{word-spacing:2.331248px;}
.ws19b{word-spacing:2.343209px;}
.ws87{word-spacing:2.450800px;}
.ws7c{word-spacing:2.630126px;}
.wsd0{word-spacing:2.689902px;}
.ws16f{word-spacing:2.749678px;}
.ws1a2{word-spacing:2.773595px;}
.wsfb{word-spacing:2.857937px;}
.wsfa{word-spacing:2.869236px;}
.wse2{word-spacing:2.929004px;}
.ws77{word-spacing:2.988780px;}
.ws69{word-spacing:3.040481px;}
.ws6a{word-spacing:3.048556px;}
.ws72{word-spacing:3.108331px;}
.ws191{word-spacing:3.203980px;}
.ws184{word-spacing:3.287658px;}
.ws37{word-spacing:3.347434px;}
.wsb1{word-spacing:3.347442px;}
.wsd7{word-spacing:3.466985px;}
.ws82{word-spacing:3.526760px;}
.wsf9{word-spacing:3.586536px;}
.ws16a{word-spacing:3.646312px;}
.ws18f{word-spacing:3.682186px;}
.wsbe{word-spacing:3.706087px;}
.ws183{word-spacing:3.765863px;}
.ws1af{word-spacing:3.777827px;}
.ws4c{word-spacing:3.825638px;}
.ws19f{word-spacing:3.825648px;}
.ws111{word-spacing:3.885414px;}
.ws1b0{word-spacing:3.921289px;}
.ws3a{word-spacing:3.945190px;}
.ws13f{word-spacing:4.004965px;}
.ws7d{word-spacing:4.064741px;}
.ws23{word-spacing:4.064751px;}
.ws136{word-spacing:4.124516px;}
.ws196{word-spacing:4.160392px;}
.wse7{word-spacing:4.184292px;}
.ws18d{word-spacing:4.208213px;}
.wsa2{word-spacing:4.244068px;}
.ws189{word-spacing:4.303854px;}
.wsd3{word-spacing:4.363619px;}
.ws8c{word-spacing:4.423394px;}
.wsa4{word-spacing:4.483170px;}
.ws170{word-spacing:4.513322px;}
.ws11f{word-spacing:4.542946px;}
.wsbf{word-spacing:4.602721px;}
.ws163{word-spacing:4.662497px;}
.ws123{word-spacing:4.671881px;}
.ws56{word-spacing:4.722272px;}
.ws30{word-spacing:4.734239px;}
.ws27{word-spacing:4.782060px;}
.ws118{word-spacing:4.901599px;}
.ws142{word-spacing:4.909366px;}
.ws145{word-spacing:4.934134px;}
.ws102{word-spacing:4.961375px;}
.ws5a{word-spacing:5.021150px;}
.ws157{word-spacing:5.080926px;}
.ws1a1{word-spacing:5.116804px;}
.ws11a{word-spacing:5.140702px;}
.ws104{word-spacing:5.200477px;}
.ws12b{word-spacing:5.204134px;}
.ws12c{word-spacing:5.204375px;}
.wsfc{word-spacing:5.212445px;}
.ws113{word-spacing:5.320028px;}
.ws46{word-spacing:5.379804px;}
.ws1b9{word-spacing:5.403728px;}
.ws141{word-spacing:5.439580px;}
.ws1b1{word-spacing:5.547190px;}
.ws17a{word-spacing:5.559131px;}
.ws156{word-spacing:5.678682px;}
.ws3b{word-spacing:5.798233px;}
.wsba{word-spacing:5.858009px;}
.wsa8{word-spacing:5.925398px;}
.ws76{word-spacing:5.939129px;}
.wsf6{word-spacing:5.941148px;}
.wsf7{word-spacing:5.945728px;}
.ws146{word-spacing:5.950690px;}
.ws78{word-spacing:5.961520px;}
.ws42{word-spacing:5.977560px;}
.ws124{word-spacing:5.977575px;}
.ws18c{word-spacing:6.025396px;}
.ws3c{word-spacing:6.097111px;}
.wsd9{word-spacing:6.156887px;}
.ws17b{word-spacing:6.216662px;}
.ws15{word-spacing:6.240614px;}
.ws12a{word-spacing:6.273748px;}
.ws44{word-spacing:6.276438px;}
.ws99{word-spacing:6.336214px;}
.ws98{word-spacing:6.395989px;}
.ws60{word-spacing:6.455765px;}
.ws34{word-spacing:6.455781px;}
.wse5{word-spacing:6.515540px;}
.ws171{word-spacing:6.575316px;}
.ws1{word-spacing:6.575340px;}
.wsd2{word-spacing:6.635092px;}
.ws47{word-spacing:6.694867px;}
.ws1b{word-spacing:6.724800px;}
.ws13c{word-spacing:6.754643px;}
.wsc0{word-spacing:6.874194px;}
.wsb0{word-spacing:6.886166px;}
.ws134{word-spacing:6.933970px;}
.ws1a0{word-spacing:6.933987px;}
.wsdb{word-spacing:7.053521px;}
.ws186{word-spacing:7.077449px;}
.ws5c{word-spacing:7.113296px;}
.wsf2{word-spacing:7.154686px;}
.wsf1{word-spacing:7.156745px;}
.ws84{word-spacing:7.173072px;}
.ws1ab{word-spacing:7.173090px;}
.ws24{word-spacing:7.220911px;}
.ws165{word-spacing:7.232848px;}
.wsee{word-spacing:7.292623px;}
.ws16b{word-spacing:7.352399px;}
.ws3d{word-spacing:7.412174px;}
.ws193{word-spacing:7.412193px;}
.wscd{word-spacing:7.457234px;}
.wscf{word-spacing:7.471950px;}
.ws10d{word-spacing:7.591501px;}
.ws33{word-spacing:7.603475px;}
.ws9e{word-spacing:7.711052px;}
.ws35{word-spacing:7.746937px;}
.ws194{word-spacing:7.794758px;}
.ws6f{word-spacing:7.825618px;}
.ws70{word-spacing:7.830604px;}
.wsd4{word-spacing:7.838338px;}
.wsd6{word-spacing:7.890379px;}
.ws133{word-spacing:7.896600px;}
.wsd1{word-spacing:7.950155px;}
.ws1ba{word-spacing:7.986040px;}
.ws150{word-spacing:8.069706px;}
.ws5d{word-spacing:8.129482px;}
.ws1ac{word-spacing:8.177323px;}
.ws10b{word-spacing:8.189257px;}
.ws13e{word-spacing:8.216134px;}
.ws114{word-spacing:8.249033px;}
.ws49{word-spacing:8.368584px;}
.ws22{word-spacing:8.368605px;}
.ws8b{word-spacing:8.428360px;}
.ws8d{word-spacing:8.488135px;}
.ws63{word-spacing:8.547911px;}
.wsaf{word-spacing:8.606546px;}
.ws8a{word-spacing:8.607686px;}
.ws187{word-spacing:8.607708px;}
.ws1b2{word-spacing:8.655529px;}
.ws75{word-spacing:8.667462px;}
.ws128{word-spacing:8.684537px;}
.wsa9{word-spacing:8.727238px;}
.wsed{word-spacing:8.787013px;}
.ws140{word-spacing:8.906564px;}
.ws137{word-spacing:8.966340px;}
.wsda{word-spacing:9.026116px;}
.ws109{word-spacing:9.085891px;}
.ws121{word-spacing:9.145667px;}
.ws17c{word-spacing:9.265218px;}
.ws174{word-spacing:9.277196px;}
.ws6b{word-spacing:9.324994px;}
.ws127{word-spacing:9.357629px;}
.ws4e{word-spacing:9.384769px;}
.wsb7{word-spacing:9.564096px;}
.ws1a4{word-spacing:9.611941px;}
.ws1a5{word-spacing:9.659761px;}
.ws65{word-spacing:9.683647px;}
.wsec{word-spacing:9.743423px;}
.ws25{word-spacing:9.755402px;}
.ws29{word-spacing:9.803223px;}
.ws41{word-spacing:9.862974px;}
.ws1aa{word-spacing:9.898864px;}
.ws7a{word-spacing:9.982525px;}
.ws1b4{word-spacing:10.041539px;}
.wsac{word-spacing:10.042301px;}
.ws2b{word-spacing:10.042326px;}
.ws129{word-spacing:10.075969px;}
.ws199{word-spacing:10.137967px;}
.wsdc{word-spacing:10.161852px;}
.wse3{word-spacing:10.221628px;}
.ws18{word-spacing:10.221696px;}
.wsa1{word-spacing:10.281403px;}
.ws4f{word-spacing:10.341179px;}
.ws52{word-spacing:10.400954px;}
.wsae{word-spacing:10.460730px;}
.wsc8{word-spacing:10.520506px;}
.ws1f{word-spacing:10.580281px;}
.ws61{word-spacing:10.640057px;}
.ws19e{word-spacing:10.663994px;}
.ws88{word-spacing:10.699832px;}
.ws93{word-spacing:10.759608px;}
.ws1b3{word-spacing:10.807456px;}
.ws7e{word-spacing:10.819384px;}
.ws182{word-spacing:10.879159px;}
.wse6{word-spacing:10.938935px;}
.ws11e{word-spacing:10.948225px;}
.ws1a6{word-spacing:10.950917px;}
.ws131{word-spacing:10.998710px;}
.ws162{word-spacing:11.118262px;}
.ws81{word-spacing:11.178037px;}
.ws10f{word-spacing:11.237813px;}
.ws143{word-spacing:11.297024px;}
.ws67{word-spacing:11.297588px;}
.ws1e{word-spacing:11.357364px;}
.ws11c{word-spacing:11.417140px;}
.ws4b{word-spacing:11.476915px;}
.ws1ad{word-spacing:11.572585px;}
.ws138{word-spacing:11.596466px;}
.ws149{word-spacing:11.613676px;}
.ws126{word-spacing:11.656242px;}
.ws94{word-spacing:11.716018px;}
.ws45{word-spacing:11.775793px;}
.wsf{word-spacing:11.889446px;}
.ws62{word-spacing:11.895344px;}
.wsa7{word-spacing:11.955120px;}
.ws197{word-spacing:12.194253px;}
.ws155{word-spacing:12.253998px;}
.wsfe{word-spacing:12.313774px;}
.wscc{word-spacing:12.433325px;}
.wsca{word-spacing:12.460309px;}
.ws9c{word-spacing:12.493100px;}
.ws139{word-spacing:12.505216px;}
.wse4{word-spacing:12.552876px;}
.ws5f{word-spacing:12.672427px;}
.ws101{word-spacing:12.732203px;}
.ws119{word-spacing:12.791978px;}
.ws13b{word-spacing:12.851754px;}
.ws176{word-spacing:12.959383px;}
.ws57{word-spacing:13.031081px;}
.ws167{word-spacing:13.090856px;}
.ws11d{word-spacing:13.150632px;}
.ws15a{word-spacing:13.207346px;}
.wsf4{word-spacing:13.210408px;}
.wsf5{word-spacing:13.225694px;}
.ws8e{word-spacing:13.569061px;}
.ws192{word-spacing:13.581050px;}
.ws175{word-spacing:13.676692px;}
.ws9b{word-spacing:13.688612px;}
.ws74{word-spacing:13.748388px;}
.ws96{word-spacing:13.808164px;}
.ws80{word-spacing:13.867939px;}
.wsc1{word-spacing:13.908763px;}
.ws147{word-spacing:13.987490px;}
.ws17{word-spacing:14.041382px;}
.ws110{word-spacing:14.047266px;}
.ws1a3{word-spacing:14.059256px;}
.ws54{word-spacing:14.107042px;}
.ws26{word-spacing:14.107077px;}
.ws169{word-spacing:14.166817px;}
.ws177{word-spacing:14.250539px;}
.ws161{word-spacing:14.286368px;}
.ws0{word-spacing:14.346180px;}
.ws1a7{word-spacing:14.394001px;}
.ws17d{word-spacing:14.465695px;}
.ws53{word-spacing:14.525471px;}
.ws6c{word-spacing:14.645022px;}
.ws38{word-spacing:14.704798px;}
.ws148{word-spacing:14.764573px;}
.ws19{word-spacing:14.794560px;}
.ws14a{word-spacing:14.884124px;}
.ws58{word-spacing:14.943900px;}
.ws86{word-spacing:15.003676px;}
.ws10{word-spacing:15.009754px;}
.ws115{word-spacing:15.123227px;}
.ws13{word-spacing:15.171149px;}
.ws9a{word-spacing:15.242778px;}
.ws19a{word-spacing:15.350413px;}
.wsdd{word-spacing:15.362329px;}
.ws6d{word-spacing:15.422105px;}
.wsa0{word-spacing:15.481880px;}
.ws12d{word-spacing:15.541656px;}
.wsc6{word-spacing:15.601432px;}
.ws12{word-spacing:15.655334px;}
.ws2f{word-spacing:15.732977px;}
.ws8{word-spacing:15.816730px;}
.ws19c{word-spacing:15.828619px;}
.ws83{word-spacing:15.840534px;}
.ws14e{word-spacing:15.864824px;}
.wsfd{word-spacing:15.960085px;}
.ws39{word-spacing:16.019861px;}
.ws6{word-spacing:16.193318px;}
.ws160{word-spacing:16.199188px;}
.ws89{word-spacing:16.258963px;}
.ws21{word-spacing:16.306825px;}
.wsc2{word-spacing:16.318739px;}
.ws7b{word-spacing:16.378514px;}
.ws28{word-spacing:16.498107px;}
.wsf3{word-spacing:16.524415px;}
.ws97{word-spacing:16.557841px;}
.ws55{word-spacing:16.737168px;}
.ws91{word-spacing:16.742683px;}
.ws66{word-spacing:16.916495px;}
.ws173{word-spacing:16.928492px;}
.ws180{word-spacing:16.955024px;}
.ws120{word-spacing:16.976270px;}
.ws130{word-spacing:17.155597px;}
.ws7f{word-spacing:17.215373px;}
.ws14d{word-spacing:17.275148px;}
.wsa{word-spacing:17.376883px;}
.ws107{word-spacing:17.394700px;}
.ws95{word-spacing:17.633802px;}
.ws85{word-spacing:17.753353px;}
.ws1b8{word-spacing:17.789263px;}
.wsaa{word-spacing:17.813129px;}
.ws32{word-spacing:17.884904px;}
.ws1c{word-spacing:17.932680px;}
.ws18a{word-spacing:17.932725px;}
.ws190{word-spacing:17.980546px;}
.ws188{word-spacing:18.028366px;}
.ws12e{word-spacing:18.060600px;}
.ws71{word-spacing:18.171782px;}
.ws168{word-spacing:18.231558px;}
.ws10a{word-spacing:18.709763px;}
.wsf0{word-spacing:19.008641px;}
.ws5{word-spacing:19.044634px;}
.wsce{word-spacing:19.247743px;}
.ws108{word-spacing:19.307519px;}
.ws11b{word-spacing:19.486846px;}
.ws48{word-spacing:19.546621px;}
.wsab{word-spacing:19.606397px;}
.ws92{word-spacing:19.666172px;}
.ws144{word-spacing:19.823024px;}
.ws9f{word-spacing:19.905275px;}
.ws8f{word-spacing:19.965050px;}
.wsd5{word-spacing:20.024826px;}
.wsc3{word-spacing:20.084602px;}
.ws20{word-spacing:20.144377px;}
.ws14{word-spacing:20.174400px;}
.ws112{word-spacing:20.323704px;}
.ws10e{word-spacing:20.503031px;}
.ws116{word-spacing:20.682358px;}
.wsef{word-spacing:20.837975px;}
.ws125{word-spacing:20.861684px;}
.ws10c{word-spacing:20.921460px;}
.ws64{word-spacing:21.041011px;}
.ws172{word-spacing:21.133670px;}
.wse{word-spacing:21.250368px;}
.ws135{word-spacing:21.465773px;}
.wsad{word-spacing:21.519216px;}
.ws14b{word-spacing:21.611024px;}
.ws4a{word-spacing:21.698543px;}
.ws154{word-spacing:21.818094px;}
.ws16{word-spacing:21.895949px;}
.ws11{word-spacing:22.003546px;}
.wse8{word-spacing:22.106547px;}
.ws4{word-spacing:22.164941px;}
.ws16e{word-spacing:22.176748px;}
.ws9d{word-spacing:22.356074px;}
.wsf8{word-spacing:23.013606px;}
.ws13d{word-spacing:23.098784px;}
.wsea{word-spacing:23.248309px;}
.ws9{word-spacing:23.563699px;}
.wsb{word-spacing:23.671296px;}
.wsc{word-spacing:23.994086px;}
.ws1ae{word-spacing:24.723250px;}
.ws185{word-spacing:24.747098px;}
.ws7{word-spacing:25.392845px;}
.wsd{word-spacing:26.737805px;}
.ws18e{word-spacing:27.230030px;}
.wscb{word-spacing:27.366983px;}
.ws17e{word-spacing:27.496776px;}
.ws2a{word-spacing:28.644539px;}
.ws106{word-spacing:29.865022px;}
.ws14c{word-spacing:32.183024px;}
.wsb3{word-spacing:33.773214px;}
.ws2c{word-spacing:46.146879px;}
.ws2d{word-spacing:53.463431px;}
.ws122{word-spacing:58.398517px;}
.ws15b{word-spacing:59.775750px;}
.ws15d{word-spacing:65.798590px;}
.ws15e{word-spacing:91.202590px;}
.ws15f{word-spacing:99.849413px;}
._15{margin-left:-43.211796px;}
._17{margin-left:-34.222285px;}
._16{margin-left:-33.147350px;}
._10{margin-left:-23.231719px;}
._1{margin-left:-11.476944px;}
._11{margin-left:-10.214921px;}
._3{margin-left:-7.298627px;}
._4{margin-left:-5.397779px;}
._6{margin-left:-3.538724px;}
._5{margin-left:-2.533492px;}
._0{margin-left:-1.434618px;}
._9{width:1.792980px;}
._2{width:3.186859px;}
._13{width:6.760879px;}
._7{width:13.329966px;}
._41{width:14.672966px;}
._54{width:15.725208px;}
._40{width:16.925377px;}
._12{width:18.533265px;}
._b{width:20.401458px;}
._c{width:22.378998px;}
._8{width:25.823063px;}
._3f{width:26.981716px;}
._14{width:28.632512px;}
._a{width:29.887800px;}
._d{width:32.361520px;}
._f{width:33.862678px;}
._18{width:35.865360px;}
._57{width:37.682633px;}
._55{width:39.165071px;}
._e{width:40.567470px;}
._58{width:42.898874px;}
._3e{width:45.164980px;}
._53{width:52.554839px;}
._56{width:57.336974px;}
._52{width:64.461169px;}
._25{width:70.078220px;}
._2a{width:71.730900px;}
._45{width:73.281814px;}
._4b{width:74.598145px;}
._3d{width:80.625532px;}
._29{width:82.347073px;}
._27{width:86.990431px;}
._26{width:88.987434px;}
._19{width:96.135413px;}
._44{width:98.940821px;}
._2c{width:104.535832px;}
._4a{width:109.124618px;}
._47{width:111.804563px;}
._1c{width:114.227499px;}
._49{width:116.414992px;}
._51{width:117.912014px;}
._48{width:121.751248px;}
._50{width:124.475030px;}
._1a{width:125.649797px;}
._31{width:128.446132px;}
._42{width:129.533725px;}
._1e{width:137.586905px;}
._28{width:155.386773px;}
._23{width:160.946312px;}
._4e{width:165.648567px;}
._4d{width:167.083185px;}
._30{width:172.728007px;}
._46{width:194.101824px;}
._3b{width:195.442792px;}
._32{width:196.686128px;}
._3a{width:199.316261px;}
._20{width:203.495246px;}
._1d{width:205.983248px;}
._35{width:215.240521px;}
._39{width:223.178740px;}
._2e{width:225.904514px;}
._22{width:229.342655px;}
._21{width:234.656694px;}
._37{width:239.150821px;}
._24{width:242.365298px;}
._1f{width:244.981552px;}
._2b{width:252.444947px;}
._3c{width:261.291758px;}
._4f{width:269.275807px;}
._4c{width:279.891980px;}
._33{width:286.971421px;}
._43{width:299.139940px;}
._2f{width:315.042113px;}
._34{width:319.011223px;}
._36{width:325.658286px;}
._2d{width:338.952413px;}
._38{width:349.568586px;}
._1b{width:396.303788px;}
.fc4{color:rgb(255,0,0);}
.fc2{color:rgb(0,255,0);}
.fc1{color:rgb(236,0,140);}
.fc3{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:29.887800px;}
.fs6{font-size:41.842800px;}
.fs8{font-size:46.718813px;}
.fs2{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs5{font-size:120.000000px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y39{bottom:113.332500px;}
.y1e4{bottom:117.367500px;}
.y38{bottom:126.783000px;}
.y1e3{bottom:130.818000px;}
.y5c{bottom:131.265000px;}
.y103{bottom:131.266500px;}
.y21c{bottom:140.269500px;}
.y1e2{bottom:144.267000px;}
.y37{bottom:144.451500px;}
.y91{bottom:148.825500px;}
.y174{bottom:149.035500px;}
.y5b{bottom:149.197500px;}
.yd9{bottom:149.199000px;}
.y36{bottom:153.681000px;}
.y21b{bottom:153.718500px;}
.y102{bottom:155.028000px;}
.y1e1{bottom:157.717500px;}
.y90{bottom:166.758000px;}
.y173{bottom:166.969500px;}
.yb3{bottom:167.130000px;}
.y35{bottom:167.131500px;}
.y21a{bottom:167.167500px;}
.y1e0{bottom:171.166500px;}
.yff{bottom:179.626500px;}
.y100{bottom:179.808000px;}
.y219{bottom:180.618000px;}
.y1df{bottom:184.615500px;}
.y8f{bottom:184.690500px;}
.y34{bottom:184.800000px;}
.y172{bottom:184.902000px;}
.yd8{bottom:184.917000px;}
.y5a{bottom:185.064000px;}
.yfc{bottom:187.008000px;}
.y33{bottom:194.031000px;}
.y218{bottom:194.104500px;}
.yfb{bottom:197.257500px;}
.y101{bottom:197.259000px;}
.y1de{bottom:198.066000px;}
.y8e{bottom:202.623000px;}
.y171{bottom:202.834500px;}
.yd7{bottom:202.849500px;}
.y59{bottom:202.996500px;}
.y126{bottom:203.583000px;}
.y217{bottom:207.553500px;}
.yfe{bottom:211.455000px;}
.y1dd{bottom:211.515000px;}
.y32{bottom:211.755000px;}
.yfd{bottom:215.938500px;}
.y8d{bottom:220.557000px;}
.y170{bottom:220.767000px;}
.yd6{bottom:220.782000px;}
.y31{bottom:220.929000px;}
.y216{bottom:221.002500px;}
.y125{bottom:221.515500px;}
.y197{bottom:221.727000px;}
.y1bf{bottom:226.117500px;}
.y215{bottom:234.453000px;}
.y8c{bottom:238.489500px;}
.y30{bottom:238.597500px;}
.y16f{bottom:238.699500px;}
.yd5{bottom:238.714500px;}
.yfa{bottom:238.734000px;}
.y58{bottom:238.861500px;}
.y124{bottom:239.448000px;}
.y196{bottom:239.659500px;}
.y2f{bottom:247.828500px;}
.y214{bottom:247.902000px;}
.y8b{bottom:256.422000px;}
.y16e{bottom:256.632000px;}
.yd4{bottom:256.648500px;}
.yf9{bottom:256.666500px;}
.y57{bottom:256.794000px;}
.y123{bottom:257.382000px;}
.y195{bottom:257.593500px;}
.y2e{bottom:261.277500px;}
.y213{bottom:261.388500px;}
.y24d{bottom:265.762500px;}
.y1be{bottom:267.705000px;}
.y13f{bottom:269.512500px;}
.y8a{bottom:274.354500px;}
.y16d{bottom:274.566000px;}
.yd3{bottom:274.581000px;}
.yf8{bottom:274.599000px;}
.yb2{bottom:274.726500px;}
.y56{bottom:274.728000px;}
.y212{bottom:274.837500px;}
.y122{bottom:275.314500px;}
.y194{bottom:275.526000px;}
.y2d{bottom:278.947500px;}
.y24c{bottom:279.211500px;}
.y1bd{bottom:281.154000px;}
.y13e{bottom:287.445000px;}
.y2c{bottom:288.177000px;}
.y211{bottom:288.324000px;}
.y89{bottom:292.287000px;}
.y16c{bottom:292.498500px;}
.yd2{bottom:292.513500px;}
.yf7{bottom:292.531500px;}
.y55{bottom:292.660500px;}
.y121{bottom:293.247000px;}
.y193{bottom:293.458500px;}
.y1bc{bottom:294.604500px;}
.y210{bottom:301.774500px;}
.y13d{bottom:305.377500px;}
.y2b{bottom:305.845500px;}
.y24b{bottom:306.111000px;}
.y1bb{bottom:308.053500px;}
.y88{bottom:310.219500px;}
.y16b{bottom:310.431000px;}
.yd1{bottom:310.446000px;}
.yf6{bottom:310.465500px;}
.y54{bottom:310.593000px;}
.y120{bottom:311.179500px;}
.y192{bottom:311.391000px;}
.y2a{bottom:315.076500px;}
.y20f{bottom:315.223500px;}
.y24a{bottom:319.560000px;}
.y1ba{bottom:321.502500px;}
.y13c{bottom:323.311500px;}
.y87{bottom:328.153500px;}
.y16a{bottom:328.363500px;}
.yd0{bottom:328.378500px;}
.yf5{bottom:328.398000px;}
.y29{bottom:328.525500px;}
.y20e{bottom:328.710000px;}
.y11f{bottom:329.112000px;}
.y191{bottom:329.323500px;}
.y249{bottom:333.009000px;}
.yb1{bottom:334.654500px;}
.y1b9{bottom:334.953000px;}
.y13b{bottom:341.244000px;}
.y20d{bottom:342.159000px;}
.y86{bottom:346.086000px;}
.y28{bottom:346.194000px;}
.ycf{bottom:346.311000px;}
.yf4{bottom:346.330500px;}
.y53{bottom:346.458000px;}
.y248{bottom:346.459500px;}
.y11e{bottom:347.044500px;}
.y190{bottom:347.257500px;}
.y1b8{bottom:349.000500px;}
.y27{bottom:355.425000px;}
.y5d{bottom:355.500000px;}
.y20c{bottom:355.645500px;}
.y13a{bottom:359.176500px;}
.y247{bottom:359.908500px;}
.y169{bottom:361.908000px;}
.y1b7{bottom:362.449500px;}
.y85{bottom:364.018500px;}
.yce{bottom:364.245000px;}
.yf3{bottom:364.263000px;}
.y52{bottom:364.392000px;}
.yb0{bottom:364.687500px;}
.y11d{bottom:364.978500px;}
.y18f{bottom:365.190000px;}
.y26{bottom:368.874000px;}
.y20b{bottom:369.094500px;}
.y246{bottom:373.359000px;}
.y1b6{bottom:375.898500px;}
.y168{bottom:375.955500px;}
.y139{bottom:377.109000px;}
.y84{bottom:381.951000px;}
.ycd{bottom:382.177500px;}
.yf2{bottom:382.195500px;}
.y25{bottom:382.324500px;}
.y20a{bottom:382.545000px;}
.yaf{bottom:382.620000px;}
.y18e{bottom:383.122500px;}
.y245{bottom:386.808000px;}
.y11c{bottom:388.986000px;}
.y1b5{bottom:389.349000px;}
.y167{bottom:389.404500px;}
.y138{bottom:395.041500px;}
.y24{bottom:395.773500px;}
.y209{bottom:395.994000px;}
.y83{bottom:399.883500px;}
.ycc{bottom:400.110000px;}
.yf1{bottom:400.129500px;}
.y51{bottom:400.257000px;}
.yae{bottom:400.552500px;}
.y18d{bottom:401.055000px;}
.y1b4{bottom:402.798000px;}
.y166{bottom:402.855000px;}
.y23{bottom:409.224000px;}
.y208{bottom:409.480500px;}
.y137{bottom:412.974000px;}
.y244{bottom:413.707500px;}
.yf0{bottom:414.352500px;}
.y1b3{bottom:416.248500px;}
.y165{bottom:416.304000px;}
.y82{bottom:417.816000px;}
.yef{bottom:418.062000px;}
.y50{bottom:418.189500px;}
.yad{bottom:418.485000px;}
.y18c{bottom:418.987500px;}
.y11b{bottom:420.327000px;}
.ycb{bottom:422.602500px;}
.y22{bottom:422.673000px;}
.y207{bottom:422.929500px;}
.y243{bottom:427.156500px;}
.y164{bottom:429.753000px;}
.y1b2{bottom:430.294500px;}
.y136{bottom:430.908000px;}
.y81{bottom:435.750000px;}
.yee{bottom:435.994500px;}
.y21{bottom:436.122000px;}
.yac{bottom:436.417500px;}
.y18b{bottom:436.920000px;}
.y11a{bottom:438.261000px;}
.y242{bottom:440.605500px;}
.y163{bottom:443.203500px;}
.y206{bottom:445.518000px;}
.y135{bottom:448.840500px;}
.yca{bottom:449.740500px;}
.y80{bottom:453.682500px;}
.y4f{bottom:454.054500px;}
.y241{bottom:454.056000px;}
.yed{bottom:454.114500px;}
.yab{bottom:454.350000px;}
.y1b1{bottom:454.654500px;}
.y18a{bottom:454.854000px;}
.y119{bottom:456.193500px;}
.y162{bottom:456.652500px;}
.y20{bottom:465.697500px;}
.y134{bottom:466.773000px;}
.y240{bottom:467.505000px;}
.yc9{bottom:467.673000px;}
.y161{bottom:470.101500px;}
.y7f{bottom:471.615000px;}
.y4e{bottom:471.988500px;}
.yec{bottom:472.047000px;}
.yaa{bottom:472.284000px;}
.y189{bottom:472.786500px;}
.y205{bottom:474.100500px;}
.y118{bottom:474.126000px;}
.y23f{bottom:480.954000px;}
.y160{bottom:483.552000px;}
.y1f{bottom:483.631500px;}
.y133{bottom:484.705500px;}
.yc8{bottom:485.607000px;}
.y7e{bottom:489.547500px;}
.y4d{bottom:489.921000px;}
.yeb{bottom:489.979500px;}
.ya9{bottom:490.216500px;}
.y204{bottom:492.033000px;}
.y1dc{bottom:494.122500px;}
.y23e{bottom:494.404500px;}
.y1b0{bottom:494.758500px;}
.y117{bottom:495.873000px;}
.y15f{bottom:497.001000px;}
.y188{bottom:498.220500px;}
.y1e{bottom:501.564000px;}
.y132{bottom:502.638000px;}
.yc7{bottom:503.539500px;}
.y1af{bottom:505.009500px;}
.y7d{bottom:507.480000px;}
.y4c{bottom:507.853500px;}
.yea{bottom:507.912000px;}
.ya8{bottom:508.149000px;}
.y203{bottom:509.967000px;}
.y15e{bottom:511.048500px;}
.y1db{bottom:512.055000px;}
.y116{bottom:513.805500px;}
.y131{bottom:520.572000px;}
.y23d{bottom:521.304000px;}
.yc6{bottom:521.472000px;}
.y1d{bottom:525.088500px;}
.y7c{bottom:525.414000px;}
.y187{bottom:525.649500px;}
.y4b{bottom:525.786000px;}
.ye9{bottom:525.844500px;}
.ya7{bottom:526.081500px;}
.y202{bottom:527.899500px;}
.y1da{bottom:529.987500px;}
.y115{bottom:531.738000px;}
.y23c{bottom:534.753000px;}
.y15d{bottom:535.407000px;}
.y130{bottom:538.504500px;}
.yc5{bottom:539.404500px;}
.y7b{bottom:543.346500px;}
.y4a{bottom:543.718500px;}
.ye8{bottom:543.777000px;}
.ya6{bottom:544.014000px;}
.y1ae{bottom:544.623000px;}
.y201{bottom:545.832000px;}
.y1d9{bottom:547.920000px;}
.y23b{bottom:548.202000px;}
.y114{bottom:549.670500px;}
.y1ad{bottom:554.874000px;}
.y12f{bottom:556.437000px;}
.yc4{bottom:557.337000px;}
.y1c{bottom:558.516000px;}
.y186{bottom:560.454000px;}
.y7a{bottom:561.279000px;}
.y49{bottom:561.651000px;}
.y23a{bottom:561.652500px;}
.ye7{bottom:561.711000px;}
.ya5{bottom:561.948000px;}
.y200{bottom:563.764500px;}
.y1d8{bottom:565.852500px;}
.y1b{bottom:573.459000px;}
.y113{bottom:573.678000px;}
.y12e{bottom:574.369500px;}
.y239{bottom:575.101500px;}
.yc3{bottom:575.269500px;}
.y185{bottom:578.386500px;}
.y79{bottom:579.211500px;}
.y48{bottom:579.585000px;}
.ye6{bottom:579.643500px;}
.ya4{bottom:579.880500px;}
.y15c{bottom:581.401562px;}
.y1ff{bottom:581.697000px;}
.y1d7{bottom:583.786500px;}
.y1a{bottom:588.550500px;}
.y12d{bottom:592.302000px;}
.yc2{bottom:593.203500px;}
.y15b{bottom:594.540697px;}
.y184{bottom:596.320500px;}
.y78{bottom:597.144000px;}
.y47{bottom:597.517500px;}
.ye5{bottom:597.576000px;}
.ya3{bottom:597.813000px;}
.y1fe{bottom:599.629500px;}
.y238{bottom:602.001000px;}
.y19{bottom:603.495000px;}
.y1ac{bottom:603.963000px;}
.y112{bottom:605.020500px;}
.y1d6{bottom:606.307500px;}
.y15a{bottom:607.681297px;}
.y12c{bottom:610.234500px;}
.yc1{bottom:611.136000px;}
.y183{bottom:614.253000px;}
.y46{bottom:615.450000px;}
.ye4{bottom:615.508500px;}
.ya2{bottom:615.745500px;}
.y1fd{bottom:617.563500px;}
.y18{bottom:618.438000px;}
.y77{bottom:619.411500px;}
.y159{bottom:620.820432px;}
.y1ab{bottom:621.895500px;}
.y111{bottom:622.953000px;}
.y12b{bottom:628.168500px;}
.y237{bottom:628.900500px;}
.yc0{bottom:629.068500px;}
.y182{bottom:632.185500px;}
.y17{bottom:633.382500px;}
.ye3{bottom:633.441000px;}
.y1d5{bottom:633.619500px;}
.ya1{bottom:633.678000px;}
.y158{bottom:633.959568px;}
.y1fc{bottom:635.496000px;}
.y1aa{bottom:639.828000px;}
.y110{bottom:640.885500px;}
.y76{bottom:641.679000px;}
.y236{bottom:642.349500px;}
.y12a{bottom:646.101000px;}
.ybf{bottom:647.001000px;}
.y157{bottom:647.100168px;}
.y16{bottom:648.327000px;}
.y181{bottom:650.118000px;}
.y45{bottom:651.315000px;}
.ye2{bottom:651.375000px;}
.y1d4{bottom:651.552000px;}
.ya0{bottom:651.610500px;}
.y1fb{bottom:653.428500px;}
.y235{bottom:655.798500px;}
.y1a9{bottom:657.760500px;}
.y10f{bottom:658.819500px;}
.y156{bottom:660.239303px;}
.y15{bottom:663.270000px;}
.y129{bottom:664.033500px;}
.ybe{bottom:664.933500px;}
.y75{bottom:667.461000px;}
.y180{bottom:668.050500px;}
.y44{bottom:669.247500px;}
.y234{bottom:669.249000px;}
.ye1{bottom:669.307500px;}
.y1d3{bottom:669.484500px;}
.y9f{bottom:669.544500px;}
.y1fa{bottom:671.361000px;}
.y155{bottom:673.963149px;}
.y1a8{bottom:675.694500px;}
.y10e{bottom:676.752000px;}
.y14{bottom:678.214500px;}
.y128{bottom:681.966000px;}
.y233{bottom:682.698000px;}
.ybd{bottom:682.867500px;}
.y74{bottom:685.393500px;}
.y17f{bottom:685.983000px;}
.y43{bottom:687.181500px;}
.ye0{bottom:687.240000px;}
.y1d2{bottom:687.417000px;}
.y9e{bottom:687.477000px;}
.y13{bottom:693.159000px;}
.y1a7{bottom:693.627000px;}
.y1f9{bottom:694.398000px;}
.y10d{bottom:694.684500px;}
.y232{bottom:696.147000px;}
.y154{bottom:698.091000px;}
.ybc{bottom:700.800000px;}
.y73{bottom:703.326000px;}
.y17e{bottom:703.917000px;}
.y42{bottom:705.114000px;}
.ydf{bottom:705.172500px;}
.y1d1{bottom:705.349500px;}
.y9d{bottom:705.409500px;}
.y12{bottom:708.102000px;}
.y231{bottom:709.597500px;}
.y1a6{bottom:711.559500px;}
.y10c{bottom:712.617000px;}
.ybb{bottom:718.732500px;}
.y72{bottom:721.260000px;}
.y17d{bottom:721.849500px;}
.y1f8{bottom:722.980500px;}
.y11{bottom:723.046500px;}
.yde{bottom:723.105000px;}
.y1d0{bottom:723.282000px;}
.y9c{bottom:723.342000px;}
.y1a5{bottom:729.492000px;}
.y10b{bottom:730.549500px;}
.y230{bottom:736.497000px;}
.yba{bottom:736.665000px;}
.y153{bottom:736.759500px;}
.y10{bottom:737.991000px;}
.y71{bottom:739.192500px;}
.y17c{bottom:739.782000px;}
.y1f7{bottom:740.913000px;}
.y41{bottom:740.979000px;}
.y1cf{bottom:741.216000px;}
.ydd{bottom:741.225000px;}
.y9b{bottom:741.274500px;}
.y1a4{bottom:747.424500px;}
.y10a{bottom:748.482000px;}
.y22f{bottom:749.946000px;}
.yf{bottom:752.934000px;}
.yb9{bottom:754.597500px;}
.y152{bottom:754.692000px;}
.y70{bottom:757.125000px;}
.y17b{bottom:757.714500px;}
.y1f6{bottom:758.845500px;}
.y40{bottom:758.911500px;}
.y1ce{bottom:759.148500px;}
.ydc{bottom:759.157500px;}
.y9a{bottom:759.207000px;}
.y22e{bottom:763.395000px;}
.y1a3{bottom:765.357000px;}
.y127{bottom:766.414500px;}
.y109{bottom:766.416000px;}
.ye{bottom:767.878500px;}
.yb8{bottom:772.530000px;}
.y151{bottom:772.624500px;}
.y6f{bottom:775.057500px;}
.y17a{bottom:775.647000px;}
.y1f5{bottom:776.778000px;}
.y3f{bottom:776.845500px;}
.y1cd{bottom:777.081000px;}
.ydb{bottom:777.090000px;}
.y99{bottom:777.141000px;}
.yd{bottom:782.823000px;}
.y1a2{bottom:783.291000px;}
.y108{bottom:784.348500px;}
.y22d{bottom:790.294500px;}
.yb7{bottom:790.464000px;}
.y150{bottom:790.557000px;}
.y6e{bottom:792.990000px;}
.y179{bottom:793.579500px;}
.y1f4{bottom:794.712000px;}
.y3e{bottom:794.778000px;}
.y1cc{bottom:795.013500px;}
.yda{bottom:795.024000px;}
.y98{bottom:795.073500px;}
.yc{bottom:797.766000px;}
.y1a1{bottom:801.223500px;}
.y107{bottom:802.281000px;}
.y22c{bottom:803.743500px;}
.y14f{bottom:808.491000px;}
.y6d{bottom:810.922500px;}
.y178{bottom:811.513500px;}
.y1f3{bottom:812.644500px;}
.yb{bottom:812.710500px;}
.y1cb{bottom:812.829000px;}
.yb6{bottom:812.956500px;}
.y22b{bottom:817.194000px;}
.y97{bottom:818.542500px;}
.y1a0{bottom:819.156000px;}
.y14e{bottom:826.423500px;}
.ya{bottom:827.655000px;}
.y6c{bottom:828.856500px;}
.y177{bottom:829.446000px;}
.y1f2{bottom:830.577000px;}
.y3d{bottom:830.643000px;}
.y1ca{bottom:830.761500px;}
.y19f{bottom:837.088500px;}
.y9{bottom:842.598000px;}
.y22a{bottom:844.093500px;}
.y14d{bottom:844.356000px;}
.y6b{bottom:846.789000px;}
.y176{bottom:847.378500px;}
.y1f1{bottom:848.509500px;}
.y3c{bottom:848.575500px;}
.y1c9{bottom:848.694000px;}
.y106{bottom:852.045000px;}
.y8{bottom:857.542500px;}
.y19e{bottom:859.360500px;}
.y14c{bottom:862.288500px;}
.yb5{bottom:862.720500px;}
.y6a{bottom:864.721500px;}
.y175{bottom:865.311000px;}
.y105{bottom:865.494000px;}
.y1f0{bottom:866.442000px;}
.y3b{bottom:866.508000px;}
.y1c8{bottom:866.626500px;}
.y19d{bottom:869.611500px;}
.y229{bottom:870.991500px;}
.y7{bottom:872.485500px;}
.yb4{bottom:876.169500px;}
.y104{bottom:878.943000px;}
.y14b{bottom:880.221000px;}
.y69{bottom:882.654000px;}
.y1ef{bottom:884.374500px;}
.y96{bottom:884.440500px;}
.y3a{bottom:884.442000px;}
.y1c7{bottom:884.559000px;}
.y6{bottom:887.430000px;}
.y228{bottom:897.891000px;}
.y14a{bottom:898.155000px;}
.y1ee{bottom:902.308500px;}
.y95{bottom:902.373000px;}
.y5{bottom:902.374500px;}
.y1c6{bottom:902.491500px;}
.y19c{bottom:903.865500px;}
.y227{bottom:911.340000px;}
.y149{bottom:916.087500px;}
.y1ed{bottom:920.241000px;}
.y68{bottom:920.307000px;}
.y1c5{bottom:920.425500px;}
.y19b{bottom:921.798000px;}
.y226{bottom:924.790500px;}
.y148{bottom:933.694500px;}
.y1ec{bottom:938.173500px;}
.y67{bottom:938.239500px;}
.y1c4{bottom:938.358000px;}
.y19a{bottom:939.730500px;}
.y147{bottom:951.627000px;}
.y225{bottom:951.688500px;}
.y4{bottom:954.330000px;}
.y1eb{bottom:956.106000px;}
.y66{bottom:956.172000px;}
.y1c3{bottom:956.290500px;}
.y199{bottom:957.663000px;}
.y224{bottom:965.139000px;}
.y146{bottom:969.561000px;}
.y1ea{bottom:974.038500px;}
.y65{bottom:974.104500px;}
.y1c2{bottom:974.223000px;}
.y3{bottom:974.302500px;}
.y223{bottom:978.588000px;}
.y198{bottom:980.784000px;}
.y145{bottom:987.493500px;}
.y1e9{bottom:991.972500px;}
.y94{bottom:992.037000px;}
.y64{bottom:992.038500px;}
.y1c1{bottom:992.155500px;}
.y144{bottom:1005.426000px;}
.y222{bottom:1005.487500px;}
.y1e8{bottom:1009.905000px;}
.y93{bottom:1009.969500px;}
.y63{bottom:1009.971000px;}
.y1c0{bottom:1010.089500px;}
.y221{bottom:1018.936500px;}
.y143{bottom:1023.358500px;}
.y1e7{bottom:1027.837500px;}
.y62{bottom:1027.903500px;}
.y220{bottom:1032.387000px;}
.y2{bottom:1039.309500px;}
.y142{bottom:1041.291000px;}
.y1e6{bottom:1045.770000px;}
.y61{bottom:1045.836000px;}
.y141{bottom:1059.223500px;}
.y21f{bottom:1059.285000px;}
.y1e5{bottom:1063.702500px;}
.y60{bottom:1063.768500px;}
.y21e{bottom:1072.735500px;}
.y140{bottom:1077.157500px;}
.y1{bottom:1081.152000px;}
.y5f{bottom:1081.701000px;}
.y21d{bottom:1086.184500px;}
.y92{bottom:1099.633500px;}
.y5e{bottom:1099.635000px;}
.h13{height:0.000000px;}
.h12{height:29.457331px;}
.h7{height:29.840054px;}
.h15{height:32.142544px;}
.h14{height:32.703169px;}
.h1b{height:32.804932px;}
.h5{height:32.900573px;}
.h19{height:33.140573px;}
.h16{height:33.474420px;}
.h6{height:35.865450px;}
.h3{height:37.658880px;}
.ha{height:41.006062px;}
.h4{height:41.125613px;}
.h9{height:41.842920px;}
.hc{height:42.799330px;}
.h1a{height:43.994573px;}
.hb{height:44.831700px;}
.he{height:49.892047px;}
.hf{height:51.147331px;}
.hd{height:55.527331px;}
.h2{height:59.619450px;}
.h10{height:70.365331px;}
.h17{height:83.239330px;}
.h11{height:85.271700px;}
.h1{height:98.701718px;}
.h8{height:117.773438px;}
.h18{height:124.243330px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xb{left:48.000000px;}
.x6{left:73.446000px;}
.x4{left:79.200000px;}
.x24{left:83.947500px;}
.x8{left:85.401000px;}
.x5{left:88.389000px;}
.x3{left:91.080000px;}
.x1b{left:96.244500px;}
.x20{left:100.851000px;}
.xc{left:103.479000px;}
.x19{left:118.324500px;}
.x1c{left:125.068500px;}
.xd{left:141.240000px;}
.x1e{left:143.745000px;}
.x1{left:151.563000px;}
.x27{left:154.609500px;}
.x2{left:183.715500px;}
.x21{left:188.337000px;}
.x25{left:201.433500px;}
.x7{left:203.428500px;}
.x26{left:219.897000px;}
.x1f{left:227.547000px;}
.x1a{left:237.042224px;}
.x23{left:251.017500px;}
.x22{left:354.769500px;}
.x9{left:467.967000px;}
.x10{left:469.477500px;}
.x28{left:473.944500px;}
.xa{left:482.910000px;}
.x29{left:495.355500px;}
.x11{left:532.180500px;}
.x18{left:537.547500px;}
.x13{left:557.103000px;}
.x14{left:558.217500px;}
.x1d{left:560.836500px;}
.x12{left:564.202500px;}
.xe{left:576.991500px;}
.x16{left:581.179500px;}
.x15{left:587.364000px;}
.x17{left:602.766000px;}
.xf{left:606.520500px;}
@media print{
.v2{vertical-align:-14.997333pt;}
.v3{vertical-align:-7.968000pt;}
.v9{vertical-align:-5.317333pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:5.216000pt;}
.vc{vertical-align:9.861333pt;}
.v6{vertical-align:13.189333pt;}
.v8{vertical-align:17.856000pt;}
.v5{vertical-align:19.280000pt;}
.v1{vertical-align:21.114667pt;}
.v4{vertical-align:23.173333pt;}
.va{vertical-align:35.946667pt;}
.vb{vertical-align:72.394667pt;}
.lsc{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.000501pt;}
.ls3f{letter-spacing:0.000689pt;}
.ls46{letter-spacing:0.001799pt;}
.ls35{letter-spacing:0.001995pt;}
.ls24{letter-spacing:0.002387pt;}
.lsb{letter-spacing:0.002591pt;}
.ls17{letter-spacing:0.002906pt;}
.ls15{letter-spacing:0.003709pt;}
.ls33{letter-spacing:0.003733pt;}
.ls4e{letter-spacing:0.004239pt;}
.ls39{letter-spacing:0.004352pt;}
.ls20{letter-spacing:1.001876pt;}
.ls55{letter-spacing:1.428132pt;}
.ls37{letter-spacing:1.480296pt;}
.lse{letter-spacing:2.177630pt;}
.ls4{letter-spacing:2.635446pt;}
.ls0{letter-spacing:2.653258pt;}
.ls69{letter-spacing:2.655711pt;}
.ls52{letter-spacing:2.656015pt;}
.ls2{letter-spacing:2.656075pt;}
.ls3e{letter-spacing:2.656689pt;}
.lsf{letter-spacing:2.656693pt;}
.ls10{letter-spacing:2.657326pt;}
.ls42{letter-spacing:2.657773pt;}
.ls2c{letter-spacing:2.658245pt;}
.ls1{letter-spacing:2.658767pt;}
.ls53{letter-spacing:2.660237pt;}
.ls21{letter-spacing:2.660667pt;}
.ls16{letter-spacing:3.550993pt;}
.ls5d{letter-spacing:3.579145pt;}
.ls36{letter-spacing:3.805629pt;}
.ls68{letter-spacing:5.365812pt;}
.ls3c{letter-spacing:5.713659pt;}
.ls34{letter-spacing:5.718992pt;}
.ls27{letter-spacing:5.792271pt;}
.ls3d{letter-spacing:6.012540pt;}
.ls3b{letter-spacing:6.955745pt;}
.ls58{letter-spacing:6.965812pt;}
.ls62{letter-spacing:7.376277pt;}
.ls57{letter-spacing:8.398798pt;}
.ls32{letter-spacing:8.855412pt;}
.ls5a{letter-spacing:10.096479pt;}
.ls50{letter-spacing:11.803145pt;}
.ls5f{letter-spacing:11.808479pt;}
.ls22{letter-spacing:12.421812pt;}
.ls65{letter-spacing:12.546717pt;}
.ls8{letter-spacing:13.024075pt;}
.ls41{letter-spacing:14.756984pt;}
.ls45{letter-spacing:14.757812pt;}
.ls1d{letter-spacing:14.961995pt;}
.ls1e{letter-spacing:14.962133pt;}
.ls51{letter-spacing:15.451145pt;}
.ls2b{letter-spacing:15.980745pt;}
.ls2a{letter-spacing:15.981698pt;}
.ls4a{letter-spacing:16.959651pt;}
.ls40{letter-spacing:17.414022pt;}
.ls59{letter-spacing:17.417465pt;}
.ls44{letter-spacing:17.419356pt;}
.ls2e{letter-spacing:18.144479pt;}
.ls64{letter-spacing:18.181812pt;}
.ls63{letter-spacing:18.595733pt;}
.lsa{letter-spacing:19.037433pt;}
.ls3a{letter-spacing:19.197573pt;}
.ls5c{letter-spacing:19.259145pt;}
.ls49{letter-spacing:19.616689pt;}
.ls4b{letter-spacing:19.783329pt;}
.ls1a{letter-spacing:20.722208pt;}
.ls26{letter-spacing:21.109812pt;}
.ls4d{letter-spacing:21.133630pt;}
.ls1b{letter-spacing:21.810906pt;}
.ls48{letter-spacing:21.929067pt;}
.ls6{letter-spacing:22.210767pt;}
.ls31{letter-spacing:22.274079pt;}
.ls3{letter-spacing:23.111925pt;}
.ls4c{letter-spacing:23.458962pt;}
.ls47{letter-spacing:23.590022pt;}
.ls38{letter-spacing:23.793659pt;}
.ls2d{letter-spacing:23.936271pt;}
.ls54{letter-spacing:24.972917pt;}
.ls1c{letter-spacing:25.244540pt;}
.ls23{letter-spacing:25.555032pt;}
.ls67{letter-spacing:25.988105pt;}
.ls5b{letter-spacing:26.279578pt;}
.ls25{letter-spacing:26.906938pt;}
.ls9{letter-spacing:27.245258pt;}
.ls11{letter-spacing:27.900540pt;}
.ls5{letter-spacing:27.933258pt;}
.ls30{letter-spacing:27.996326pt;}
.ls66{letter-spacing:28.443145pt;}
.ls56{letter-spacing:28.866245pt;}
.ls4f{letter-spacing:29.787145pt;}
.ls14{letter-spacing:30.055412pt;}
.ls28{letter-spacing:31.160239pt;}
.lsd{letter-spacing:31.878586pt;}
.ls18{letter-spacing:32.710347pt;}
.ls13{letter-spacing:32.711578pt;}
.ls2f{letter-spacing:32.949605pt;}
.ls29{letter-spacing:33.810245pt;}
.ls19{letter-spacing:33.814412pt;}
.ls43{letter-spacing:35.189391pt;}
.ls12{letter-spacing:36.065873pt;}
.ls7{letter-spacing:54.285433pt;}
.ls60{letter-spacing:95.125812pt;}
.ls61{letter-spacing:98.619145pt;}
.ls5e{letter-spacing:174.549812pt;}
.wsb9{word-spacing:-73.856075pt;}
.wsc4{word-spacing:-53.133867pt;}
.ws2{word-spacing:-45.163900pt;}
.wsbb{word-spacing:-38.150116pt;}
.wsc5{word-spacing:-37.140573pt;}
.wsb4{word-spacing:-34.611401pt;}
.wseb{word-spacing:-32.199123pt;}
.wsb2{word-spacing:-31.242714pt;}
.wsc9{word-spacing:-30.870777pt;}
.wsbc{word-spacing:-28.118362pt;}
.ws153{word-spacing:-27.225793pt;}
.wsb5{word-spacing:-25.791179pt;}
.wsb6{word-spacing:-23.060098pt;}
.ws159{word-spacing:-19.863757pt;}
.ws158{word-spacing:-18.805890pt;}
.ws152{word-spacing:-17.971131pt;}
.ws31{word-spacing:-15.985384pt;}
.ws12f{word-spacing:-13.283467pt;}
.ws1d{word-spacing:-13.262246pt;}
.ws79{word-spacing:-10.626800pt;}
.ws13a{word-spacing:-1.062677pt;}
.ws36{word-spacing:-0.797008pt;}
.ws179{word-spacing:-0.765130pt;}
.ws132{word-spacing:-0.743874pt;}
.ws90{word-spacing:-0.690740pt;}
.ws6e{word-spacing:-0.637606pt;}
.ws151{word-spacing:-0.584473pt;}
.ws5b{word-spacing:-0.531339pt;}
.ws18b{word-spacing:-0.425072pt;}
.ws3e{word-spacing:-0.425071pt;}
.ws3f{word-spacing:-0.371937pt;}
.ws40{word-spacing:-0.318803pt;}
.ws1b7{word-spacing:-0.297550pt;}
.wse0{word-spacing:-0.265669pt;}
.ws2e{word-spacing:-0.255043pt;}
.ws164{word-spacing:-0.159402pt;}
.wsff{word-spacing:-0.106268pt;}
.wsb8{word-spacing:-0.053134pt;}
.ws3{word-spacing:-0.047821pt;}
.ws15c{word-spacing:-0.042507pt;}
.wsbd{word-spacing:-0.037194pt;}
.ws5e{word-spacing:0.000000pt;}
.ws105{word-spacing:0.053134pt;}
.ws59{word-spacing:0.212535pt;}
.ws166{word-spacing:0.318803pt;}
.wsdf{word-spacing:0.425071pt;}
.ws4d{word-spacing:0.478205pt;}
.ws19d{word-spacing:0.510086pt;}
.ws1a8{word-spacing:0.536955pt;}
.ws1a9{word-spacing:0.552594pt;}
.wsc7{word-spacing:0.637606pt;}
.ws195{word-spacing:0.680115pt;}
.wse1{word-spacing:0.690740pt;}
.wsa3{word-spacing:0.743874pt;}
.ws43{word-spacing:0.797008pt;}
.ws14f{word-spacing:0.850142pt;}
.wsa5{word-spacing:0.956410pt;}
.ws1b5{word-spacing:1.020173pt;}
.ws198{word-spacing:1.105187pt;}
.ws50{word-spacing:1.115811pt;}
.ws1a{word-spacing:1.195520pt;}
.ws178{word-spacing:1.360230pt;}
.wsde{word-spacing:1.381481pt;}
.ws100{word-spacing:1.434614pt;}
.ws51{word-spacing:1.487748pt;}
.ws1b6{word-spacing:1.530259pt;}
.ws16c{word-spacing:1.540882pt;}
.wsd8{word-spacing:1.594016pt;}
.ws103{word-spacing:1.647150pt;}
.ws117{word-spacing:1.700284pt;}
.ws68{word-spacing:1.753418pt;}
.ws181{word-spacing:1.806551pt;}
.ws17f{word-spacing:1.831222pt;}
.wse9{word-spacing:1.859685pt;}
.wsa6{word-spacing:1.912819pt;}
.ws16d{word-spacing:2.019087pt;}
.ws73{word-spacing:2.072221pt;}
.ws19b{word-spacing:2.082853pt;}
.ws87{word-spacing:2.178489pt;}
.ws7c{word-spacing:2.337890pt;}
.wsd0{word-spacing:2.391024pt;}
.ws16f{word-spacing:2.444158pt;}
.ws1a2{word-spacing:2.465418pt;}
.wsfb{word-spacing:2.540389pt;}
.wsfa{word-spacing:2.550432pt;}
.wse2{word-spacing:2.603559pt;}
.ws77{word-spacing:2.656693pt;}
.ws69{word-spacing:2.702650pt;}
.ws6a{word-spacing:2.709827pt;}
.ws72{word-spacing:2.762961pt;}
.ws191{word-spacing:2.847982pt;}
.ws184{word-spacing:2.922363pt;}
.ws37{word-spacing:2.975497pt;}
.wsb1{word-spacing:2.975504pt;}
.wsd7{word-spacing:3.081764pt;}
.ws82{word-spacing:3.134898pt;}
.wsf9{word-spacing:3.188032pt;}
.ws16a{word-spacing:3.241166pt;}
.ws18f{word-spacing:3.273054pt;}
.wsbe{word-spacing:3.294300pt;}
.ws183{word-spacing:3.347434pt;}
.ws1af{word-spacing:3.358069pt;}
.ws4c{word-spacing:3.400567pt;}
.ws19f{word-spacing:3.400576pt;}
.ws111{word-spacing:3.453701pt;}
.ws1b0{word-spacing:3.485590pt;}
.ws3a{word-spacing:3.506835pt;}
.ws13f{word-spacing:3.559969pt;}
.ws7d{word-spacing:3.613103pt;}
.ws23{word-spacing:3.613112pt;}
.ws136{word-spacing:3.666237pt;}
.ws196{word-spacing:3.698126pt;}
.wse7{word-spacing:3.719371pt;}
.ws18d{word-spacing:3.740634pt;}
.wsa2{word-spacing:3.772505pt;}
.ws189{word-spacing:3.825648pt;}
.wsd3{word-spacing:3.878772pt;}
.ws8c{word-spacing:3.931906pt;}
.wsa4{word-spacing:3.985040pt;}
.ws170{word-spacing:4.011842pt;}
.ws11f{word-spacing:4.038174pt;}
.wsbf{word-spacing:4.091308pt;}
.ws163{word-spacing:4.144442pt;}
.ws123{word-spacing:4.152783pt;}
.ws56{word-spacing:4.197575pt;}
.ws30{word-spacing:4.208213pt;}
.ws27{word-spacing:4.250720pt;}
.ws118{word-spacing:4.356977pt;}
.ws142{word-spacing:4.363881pt;}
.ws145{word-spacing:4.385897pt;}
.ws102{word-spacing:4.410111pt;}
.ws5a{word-spacing:4.463245pt;}
.ws157{word-spacing:4.516379pt;}
.ws1a1{word-spacing:4.548270pt;}
.ws11a{word-spacing:4.569513pt;}
.ws104{word-spacing:4.622646pt;}
.ws12b{word-spacing:4.625897pt;}
.ws12c{word-spacing:4.626111pt;}
.wsfc{word-spacing:4.633285pt;}
.ws113{word-spacing:4.728914pt;}
.ws46{word-spacing:4.782048pt;}
.ws1b9{word-spacing:4.803314pt;}
.ws141{word-spacing:4.835182pt;}
.ws1b1{word-spacing:4.930835pt;}
.ws17a{word-spacing:4.941450pt;}
.ws156{word-spacing:5.047717pt;}
.ws3b{word-spacing:5.153985pt;}
.wsba{word-spacing:5.207119pt;}
.wsa8{word-spacing:5.267021pt;}
.ws76{word-spacing:5.279226pt;}
.wsf6{word-spacing:5.281020pt;}
.wsf7{word-spacing:5.285092pt;}
.ws146{word-spacing:5.289502pt;}
.ws78{word-spacing:5.299129pt;}
.ws42{word-spacing:5.313387pt;}
.ws124{word-spacing:5.313400pt;}
.ws18c{word-spacing:5.355907pt;}
.ws3c{word-spacing:5.419654pt;}
.wsd9{word-spacing:5.472788pt;}
.ws17b{word-spacing:5.525922pt;}
.ws15{word-spacing:5.547213pt;}
.ws12a{word-spacing:5.576665pt;}
.ws44{word-spacing:5.579056pt;}
.ws99{word-spacing:5.632190pt;}
.ws98{word-spacing:5.685324pt;}
.ws60{word-spacing:5.738458pt;}
.ws34{word-spacing:5.738472pt;}
.wse5{word-spacing:5.791591pt;}
.ws171{word-spacing:5.844725pt;}
.ws1{word-spacing:5.844747pt;}
.wsd2{word-spacing:5.897859pt;}
.ws47{word-spacing:5.950993pt;}
.ws1b{word-spacing:5.977600pt;}
.ws13c{word-spacing:6.004127pt;}
.wsc0{word-spacing:6.110395pt;}
.wsb0{word-spacing:6.121037pt;}
.ws134{word-spacing:6.163529pt;}
.ws1a0{word-spacing:6.163544pt;}
.wsdb{word-spacing:6.269796pt;}
.ws186{word-spacing:6.291066pt;}
.ws5c{word-spacing:6.322930pt;}
.wsf2{word-spacing:6.359721pt;}
.wsf1{word-spacing:6.361551pt;}
.ws84{word-spacing:6.376064pt;}
.ws1ab{word-spacing:6.376080pt;}
.ws24{word-spacing:6.418587pt;}
.ws165{word-spacing:6.429198pt;}
.wsee{word-spacing:6.482332pt;}
.ws16b{word-spacing:6.535466pt;}
.ws3d{word-spacing:6.588599pt;}
.ws193{word-spacing:6.588616pt;}
.wscd{word-spacing:6.628653pt;}
.wscf{word-spacing:6.641733pt;}
.ws10d{word-spacing:6.748001pt;}
.ws33{word-spacing:6.758645pt;}
.ws9e{word-spacing:6.854269pt;}
.ws35{word-spacing:6.886166pt;}
.ws194{word-spacing:6.928674pt;}
.ws6f{word-spacing:6.956105pt;}
.ws70{word-spacing:6.960537pt;}
.wsd4{word-spacing:6.967411pt;}
.wsd6{word-spacing:7.013670pt;}
.ws133{word-spacing:7.019200pt;}
.wsd1{word-spacing:7.066804pt;}
.ws1ba{word-spacing:7.098702pt;}
.ws150{word-spacing:7.173072pt;}
.ws5d{word-spacing:7.226206pt;}
.ws1ac{word-spacing:7.268731pt;}
.ws10b{word-spacing:7.279340pt;}
.ws13e{word-spacing:7.303230pt;}
.ws114{word-spacing:7.332474pt;}
.ws49{word-spacing:7.438741pt;}
.ws22{word-spacing:7.438760pt;}
.ws8b{word-spacing:7.491875pt;}
.ws8d{word-spacing:7.545009pt;}
.ws63{word-spacing:7.598143pt;}
.wsaf{word-spacing:7.650263pt;}
.ws8a{word-spacing:7.651277pt;}
.ws187{word-spacing:7.651296pt;}
.ws1b2{word-spacing:7.693803pt;}
.ws75{word-spacing:7.704411pt;}
.ws128{word-spacing:7.719588pt;}
.wsa9{word-spacing:7.757545pt;}
.wsed{word-spacing:7.810678pt;}
.ws140{word-spacing:7.916946pt;}
.ws137{word-spacing:7.970080pt;}
.wsda{word-spacing:8.023214pt;}
.ws109{word-spacing:8.076348pt;}
.ws121{word-spacing:8.129482pt;}
.ws17c{word-spacing:8.235749pt;}
.ws174{word-spacing:8.246397pt;}
.ws6b{word-spacing:8.288883pt;}
.ws127{word-spacing:8.317892pt;}
.ws4e{word-spacing:8.342017pt;}
.wsb7{word-spacing:8.501419pt;}
.ws1a4{word-spacing:8.543947pt;}
.ws1a5{word-spacing:8.586454pt;}
.ws65{word-spacing:8.607686pt;}
.wsec{word-spacing:8.660820pt;}
.ws25{word-spacing:8.671469pt;}
.ws29{word-spacing:8.713976pt;}
.ws41{word-spacing:8.767088pt;}
.ws1aa{word-spacing:8.798990pt;}
.ws7a{word-spacing:8.873356pt;}
.ws1b4{word-spacing:8.925812pt;}
.wsac{word-spacing:8.926490pt;}
.ws2b{word-spacing:8.926512pt;}
.ws129{word-spacing:8.956417pt;}
.ws199{word-spacing:9.011526pt;}
.wsdc{word-spacing:9.032757pt;}
.wse3{word-spacing:9.085891pt;}
.ws18{word-spacing:9.085952pt;}
.wsa1{word-spacing:9.139025pt;}
.ws4f{word-spacing:9.192159pt;}
.ws52{word-spacing:9.245293pt;}
.wsae{word-spacing:9.298427pt;}
.wsc8{word-spacing:9.351561pt;}
.ws1f{word-spacing:9.404694pt;}
.ws61{word-spacing:9.457828pt;}
.ws19e{word-spacing:9.479106pt;}
.ws88{word-spacing:9.510962pt;}
.ws93{word-spacing:9.564096pt;}
.ws1b3{word-spacing:9.606627pt;}
.ws7e{word-spacing:9.617230pt;}
.ws182{word-spacing:9.670364pt;}
.wse6{word-spacing:9.723498pt;}
.ws11e{word-spacing:9.731756pt;}
.ws1a6{word-spacing:9.734149pt;}
.ws131{word-spacing:9.776631pt;}
.ws162{word-spacing:9.882899pt;}
.ws81{word-spacing:9.936033pt;}
.ws10f{word-spacing:9.989167pt;}
.ws143{word-spacing:10.041799pt;}
.ws67{word-spacing:10.042301pt;}
.ws1e{word-spacing:10.095435pt;}
.ws11c{word-spacing:10.148569pt;}
.ws4b{word-spacing:10.201702pt;}
.ws1ad{word-spacing:10.286742pt;}
.ws138{word-spacing:10.307970pt;}
.ws149{word-spacing:10.323267pt;}
.ws126{word-spacing:10.361104pt;}
.ws94{word-spacing:10.414238pt;}
.ws45{word-spacing:10.467372pt;}
.wsf{word-spacing:10.568397pt;}
.ws62{word-spacing:10.573639pt;}
.wsa7{word-spacing:10.626773pt;}
.ws197{word-spacing:10.839336pt;}
.ws155{word-spacing:10.892443pt;}
.wsfe{word-spacing:10.945577pt;}
.wscc{word-spacing:11.051844pt;}
.wsca{word-spacing:11.075830pt;}
.ws9c{word-spacing:11.104978pt;}
.ws139{word-spacing:11.115747pt;}
.wse4{word-spacing:11.158112pt;}
.ws5f{word-spacing:11.264380pt;}
.ws101{word-spacing:11.317514pt;}
.ws119{word-spacing:11.370647pt;}
.ws13b{word-spacing:11.423781pt;}
.ws176{word-spacing:11.519451pt;}
.ws57{word-spacing:11.583183pt;}
.ws167{word-spacing:11.636317pt;}
.ws11d{word-spacing:11.689451pt;}
.ws15a{word-spacing:11.739863pt;}
.wsf4{word-spacing:11.742585pt;}
.wsf5{word-spacing:11.756172pt;}
.ws8e{word-spacing:12.061388pt;}
.ws192{word-spacing:12.072045pt;}
.ws175{word-spacing:12.157059pt;}
.ws9b{word-spacing:12.167655pt;}
.ws74{word-spacing:12.220789pt;}
.ws96{word-spacing:12.273923pt;}
.ws80{word-spacing:12.327057pt;}
.wsc1{word-spacing:12.363345pt;}
.ws147{word-spacing:12.433325pt;}
.ws17{word-spacing:12.481229pt;}
.ws110{word-spacing:12.486459pt;}
.ws1a3{word-spacing:12.497117pt;}
.ws54{word-spacing:12.539593pt;}
.ws26{word-spacing:12.539624pt;}
.ws169{word-spacing:12.592726pt;}
.ws177{word-spacing:12.667146pt;}
.ws161{word-spacing:12.698994pt;}
.ws0{word-spacing:12.752160pt;}
.ws1a7{word-spacing:12.794667pt;}
.ws17d{word-spacing:12.858396pt;}
.ws53{word-spacing:12.911530pt;}
.ws6c{word-spacing:13.017797pt;}
.ws38{word-spacing:13.070931pt;}
.ws148{word-spacing:13.124065pt;}
.ws19{word-spacing:13.150720pt;}
.ws14a{word-spacing:13.230333pt;}
.ws58{word-spacing:13.283467pt;}
.ws86{word-spacing:13.336601pt;}
.ws10{word-spacing:13.342003pt;}
.ws115{word-spacing:13.442868pt;}
.ws13{word-spacing:13.485466pt;}
.ws9a{word-spacing:13.549136pt;}
.ws19a{word-spacing:13.644811pt;}
.wsdd{word-spacing:13.655404pt;}
.ws6d{word-spacing:13.708538pt;}
.wsa0{word-spacing:13.761671pt;}
.ws12d{word-spacing:13.814805pt;}
.wsc6{word-spacing:13.867939pt;}
.ws12{word-spacing:13.915853pt;}
.ws2f{word-spacing:13.984869pt;}
.ws8{word-spacing:14.059315pt;}
.ws19c{word-spacing:14.069883pt;}
.ws83{word-spacing:14.080475pt;}
.ws14e{word-spacing:14.102066pt;}
.wsfd{word-spacing:14.186742pt;}
.ws39{word-spacing:14.239876pt;}
.ws6{word-spacing:14.394061pt;}
.ws160{word-spacing:14.399278pt;}
.ws89{word-spacing:14.452412pt;}
.ws21{word-spacing:14.494955pt;}
.wsc2{word-spacing:14.505546pt;}
.ws7b{word-spacing:14.558679pt;}
.ws28{word-spacing:14.664984pt;}
.wsf3{word-spacing:14.688369pt;}
.ws97{word-spacing:14.718081pt;}
.ws55{word-spacing:14.877483pt;}
.ws91{word-spacing:14.882385pt;}
.ws66{word-spacing:15.036884pt;}
.ws173{word-spacing:15.047549pt;}
.ws180{word-spacing:15.071133pt;}
.ws120{word-spacing:15.090018pt;}
.ws130{word-spacing:15.249420pt;}
.ws7f{word-spacing:15.302554pt;}
.ws14d{word-spacing:15.355687pt;}
.wsa{word-spacing:15.446118pt;}
.ws107{word-spacing:15.461955pt;}
.ws95{word-spacing:15.674491pt;}
.ws85{word-spacing:15.780758pt;}
.ws1b8{word-spacing:15.812678pt;}
.wsaa{word-spacing:15.833892pt;}
.ws32{word-spacing:15.897693pt;}
.ws1c{word-spacing:15.940160pt;}
.ws18a{word-spacing:15.940200pt;}
.ws190{word-spacing:15.982707pt;}
.ws188{word-spacing:16.025214pt;}
.ws12e{word-spacing:16.053867pt;}
.ws71{word-spacing:16.152695pt;}
.ws168{word-spacing:16.205829pt;}
.ws10a{word-spacing:16.630900pt;}
.wsf0{word-spacing:16.896570pt;}
.ws5{word-spacing:16.928563pt;}
.wsce{word-spacing:17.109105pt;}
.ws108{word-spacing:17.162239pt;}
.ws11b{word-spacing:17.321641pt;}
.ws48{word-spacing:17.374774pt;}
.wsab{word-spacing:17.427908pt;}
.ws92{word-spacing:17.481042pt;}
.ws144{word-spacing:17.620466pt;}
.ws9f{word-spacing:17.693578pt;}
.ws8f{word-spacing:17.746711pt;}
.wsd5{word-spacing:17.799845pt;}
.wsc3{word-spacing:17.852979pt;}
.ws20{word-spacing:17.906113pt;}
.ws14{word-spacing:17.932800pt;}
.ws112{word-spacing:18.065515pt;}
.ws10e{word-spacing:18.224916pt;}
.ws116{word-spacing:18.384318pt;}
.wsef{word-spacing:18.522644pt;}
.ws125{word-spacing:18.543719pt;}
.ws10c{word-spacing:18.596853pt;}
.ws64{word-spacing:18.703121pt;}
.ws172{word-spacing:18.785485pt;}
.wse{word-spacing:18.889216pt;}
.ws135{word-spacing:19.080687pt;}
.wsad{word-spacing:19.128192pt;}
.ws14b{word-spacing:19.209799pt;}
.ws4a{word-spacing:19.287594pt;}
.ws154{word-spacing:19.393861pt;}
.ws16{word-spacing:19.463066pt;}
.ws11{word-spacing:19.558707pt;}
.wse8{word-spacing:19.650264pt;}
.ws4{word-spacing:19.702170pt;}
.ws16e{word-spacing:19.712665pt;}
.ws9d{word-spacing:19.872066pt;}
.wsf8{word-spacing:20.456539pt;}
.ws13d{word-spacing:20.532253pt;}
.wsea{word-spacing:20.665164pt;}
.ws9{word-spacing:20.945510pt;}
.wsb{word-spacing:21.041152pt;}
.wsc{word-spacing:21.328077pt;}
.ws1ae{word-spacing:21.976222pt;}
.ws185{word-spacing:21.997421pt;}
.ws7{word-spacing:22.571418pt;}
.wsd{word-spacing:23.766938pt;}
.ws18e{word-spacing:24.204471pt;}
.wscb{word-spacing:24.326207pt;}
.ws17e{word-spacing:24.441579pt;}
.ws2a{word-spacing:25.461813pt;}
.ws106{word-spacing:26.546686pt;}
.ws14c{word-spacing:28.607133pt;}
.wsb3{word-spacing:30.020635pt;}
.ws2c{word-spacing:41.019448pt;}
.ws2d{word-spacing:47.523050pt;}
.ws122{word-spacing:51.909793pt;}
.ws15b{word-spacing:53.134000pt;}
.ws15d{word-spacing:58.487636pt;}
.ws15e{word-spacing:81.068969pt;}
.ws15f{word-spacing:88.755034pt;}
._15{margin-left:-38.410485pt;}
._17{margin-left:-30.419809pt;}
._16{margin-left:-29.464311pt;}
._10{margin-left:-20.650417pt;}
._1{margin-left:-10.201728pt;}
._11{margin-left:-9.079930pt;}
._3{margin-left:-6.487669pt;}
._4{margin-left:-4.798026pt;}
._6{margin-left:-3.145533pt;}
._5{margin-left:-2.251993pt;}
._0{margin-left:-1.275216pt;}
._9{width:1.593760pt;}
._2{width:2.832764pt;}
._13{width:6.009670pt;}
._7{width:11.848859pt;}
._41{width:13.042636pt;}
._54{width:13.977963pt;}
._40{width:15.044780pt;}
._12{width:16.474013pt;}
._b{width:18.134629pt;}
._c{width:19.892443pt;}
._8{width:22.953834pt;}
._3f{width:23.983747pt;}
._14{width:25.451122pt;}
._a{width:26.566933pt;}
._d{width:28.765795pt;}
._f{width:30.100158pt;}
._18{width:31.880320pt;}
._57{width:33.495674pt;}
._55{width:34.813397pt;}
._e{width:36.059973pt;}
._58{width:38.132332pt;}
._3e{width:40.146649pt;}
._53{width:46.715413pt;}
._56{width:50.966199pt;}
._52{width:57.298817pt;}
._25{width:62.291751pt;}
._2a{width:63.760800pt;}
._45{width:65.139390pt;}
._4b{width:66.309462pt;}
._3d{width:71.667139pt;}
._29{width:73.197398pt;}
._27{width:77.324827pt;}
._26{width:79.099941pt;}
._19{width:85.453700pt;}
._44{width:87.947397pt;}
._2c{width:92.920739pt;}
._4a{width:96.999660pt;}
._47{width:99.381834pt;}
._1c{width:101.535554pt;}
._49{width:103.479993pt;}
._51{width:104.810679pt;}
._48{width:108.223331pt;}
._50{width:110.644471pt;}
._1a{width:111.688709pt;}
._31{width:114.174339pt;}
._42{width:115.141089pt;}
._1e{width:122.299471pt;}
._28{width:138.121576pt;}
._23{width:143.063389pt;}
._4e{width:147.243171pt;}
._4d{width:148.518387pt;}
._30{width:153.536006pt;}
._46{width:172.534955pt;}
._3b{width:173.726926pt;}
._32{width:174.832114pt;}
._3a{width:177.170010pt;}
._20{width:180.884663pt;}
._1d{width:183.096221pt;}
._35{width:191.324907pt;}
._39{width:198.381102pt;}
._2e{width:200.804013pt;}
._22{width:203.860138pt;}
._21{width:208.583728pt;}
._37{width:212.578507pt;}
._24{width:215.435821pt;}
._1f{width:217.761379pt;}
._2b{width:224.395509pt;}
._3c{width:232.259341pt;}
._4f{width:239.356273pt;}
._4c{width:248.792871pt;}
._33{width:255.085707pt;}
._43{width:265.902169pt;}
._2f{width:280.037434pt;}
._34{width:283.565531pt;}
._36{width:289.474032pt;}
._2d{width:301.291034pt;}
._38{width:310.727632pt;}
._1b{width:352.270034pt;}
.fs7{font-size:26.566933pt;}
.fs6{font-size:37.193600pt;}
.fs8{font-size:41.527834pt;}
.fs2{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs5{font-size:106.666667pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:100.740000pt;}
.y1e4{bottom:104.326667pt;}
.y38{bottom:112.696000pt;}
.y1e3{bottom:116.282667pt;}
.y5c{bottom:116.680000pt;}
.y103{bottom:116.681333pt;}
.y21c{bottom:124.684000pt;}
.y1e2{bottom:128.237333pt;}
.y37{bottom:128.401333pt;}
.y91{bottom:132.289333pt;}
.y174{bottom:132.476000pt;}
.y5b{bottom:132.620000pt;}
.yd9{bottom:132.621333pt;}
.y36{bottom:136.605333pt;}
.y21b{bottom:136.638667pt;}
.y102{bottom:137.802667pt;}
.y1e1{bottom:140.193333pt;}
.y90{bottom:148.229333pt;}
.y173{bottom:148.417333pt;}
.yb3{bottom:148.560000pt;}
.y35{bottom:148.561333pt;}
.y21a{bottom:148.593333pt;}
.y1e0{bottom:152.148000pt;}
.yff{bottom:159.668000pt;}
.y100{bottom:159.829333pt;}
.y219{bottom:160.549333pt;}
.y1df{bottom:164.102667pt;}
.y8f{bottom:164.169333pt;}
.y34{bottom:164.266667pt;}
.y172{bottom:164.357333pt;}
.yd8{bottom:164.370667pt;}
.y5a{bottom:164.501333pt;}
.yfc{bottom:166.229333pt;}
.y33{bottom:172.472000pt;}
.y218{bottom:172.537333pt;}
.yfb{bottom:175.340000pt;}
.y101{bottom:175.341333pt;}
.y1de{bottom:176.058667pt;}
.y8e{bottom:180.109333pt;}
.y171{bottom:180.297333pt;}
.yd7{bottom:180.310667pt;}
.y59{bottom:180.441333pt;}
.y126{bottom:180.962667pt;}
.y217{bottom:184.492000pt;}
.yfe{bottom:187.960000pt;}
.y1dd{bottom:188.013333pt;}
.y32{bottom:188.226667pt;}
.yfd{bottom:191.945333pt;}
.y8d{bottom:196.050667pt;}
.y170{bottom:196.237333pt;}
.yd6{bottom:196.250667pt;}
.y31{bottom:196.381333pt;}
.y216{bottom:196.446667pt;}
.y125{bottom:196.902667pt;}
.y197{bottom:197.090667pt;}
.y1bf{bottom:200.993333pt;}
.y215{bottom:208.402667pt;}
.y8c{bottom:211.990667pt;}
.y30{bottom:212.086667pt;}
.y16f{bottom:212.177333pt;}
.yd5{bottom:212.190667pt;}
.yfa{bottom:212.208000pt;}
.y58{bottom:212.321333pt;}
.y124{bottom:212.842667pt;}
.y196{bottom:213.030667pt;}
.y2f{bottom:220.292000pt;}
.y214{bottom:220.357333pt;}
.y8b{bottom:227.930667pt;}
.y16e{bottom:228.117333pt;}
.yd4{bottom:228.132000pt;}
.yf9{bottom:228.148000pt;}
.y57{bottom:228.261333pt;}
.y123{bottom:228.784000pt;}
.y195{bottom:228.972000pt;}
.y2e{bottom:232.246667pt;}
.y213{bottom:232.345333pt;}
.y24d{bottom:236.233333pt;}
.y1be{bottom:237.960000pt;}
.y13f{bottom:239.566667pt;}
.y8a{bottom:243.870667pt;}
.y16d{bottom:244.058667pt;}
.yd3{bottom:244.072000pt;}
.yf8{bottom:244.088000pt;}
.yb2{bottom:244.201333pt;}
.y56{bottom:244.202667pt;}
.y212{bottom:244.300000pt;}
.y122{bottom:244.724000pt;}
.y194{bottom:244.912000pt;}
.y2d{bottom:247.953333pt;}
.y24c{bottom:248.188000pt;}
.y1bd{bottom:249.914667pt;}
.y13e{bottom:255.506667pt;}
.y2c{bottom:256.157333pt;}
.y211{bottom:256.288000pt;}
.y89{bottom:259.810667pt;}
.y16c{bottom:259.998667pt;}
.yd2{bottom:260.012000pt;}
.yf7{bottom:260.028000pt;}
.y55{bottom:260.142667pt;}
.y121{bottom:260.664000pt;}
.y193{bottom:260.852000pt;}
.y1bc{bottom:261.870667pt;}
.y210{bottom:268.244000pt;}
.y13d{bottom:271.446667pt;}
.y2b{bottom:271.862667pt;}
.y24b{bottom:272.098667pt;}
.y1bb{bottom:273.825333pt;}
.y88{bottom:275.750667pt;}
.y16b{bottom:275.938667pt;}
.yd1{bottom:275.952000pt;}
.yf6{bottom:275.969333pt;}
.y54{bottom:276.082667pt;}
.y120{bottom:276.604000pt;}
.y192{bottom:276.792000pt;}
.y2a{bottom:280.068000pt;}
.y20f{bottom:280.198667pt;}
.y24a{bottom:284.053333pt;}
.y1ba{bottom:285.780000pt;}
.y13c{bottom:287.388000pt;}
.y87{bottom:291.692000pt;}
.y16a{bottom:291.878667pt;}
.yd0{bottom:291.892000pt;}
.yf5{bottom:291.909333pt;}
.y29{bottom:292.022667pt;}
.y20e{bottom:292.186667pt;}
.y11f{bottom:292.544000pt;}
.y191{bottom:292.732000pt;}
.y249{bottom:296.008000pt;}
.yb1{bottom:297.470667pt;}
.y1b9{bottom:297.736000pt;}
.y13b{bottom:303.328000pt;}
.y20d{bottom:304.141333pt;}
.y86{bottom:307.632000pt;}
.y28{bottom:307.728000pt;}
.ycf{bottom:307.832000pt;}
.yf4{bottom:307.849333pt;}
.y53{bottom:307.962667pt;}
.y248{bottom:307.964000pt;}
.y11e{bottom:308.484000pt;}
.y190{bottom:308.673333pt;}
.y1b8{bottom:310.222667pt;}
.y27{bottom:315.933333pt;}
.y5d{bottom:316.000000pt;}
.y20c{bottom:316.129333pt;}
.y13a{bottom:319.268000pt;}
.y247{bottom:319.918667pt;}
.y169{bottom:321.696000pt;}
.y1b7{bottom:322.177333pt;}
.y85{bottom:323.572000pt;}
.yce{bottom:323.773333pt;}
.yf3{bottom:323.789333pt;}
.y52{bottom:323.904000pt;}
.yb0{bottom:324.166667pt;}
.y11d{bottom:324.425333pt;}
.y18f{bottom:324.613333pt;}
.y26{bottom:327.888000pt;}
.y20b{bottom:328.084000pt;}
.y246{bottom:331.874667pt;}
.y1b6{bottom:334.132000pt;}
.y168{bottom:334.182667pt;}
.y139{bottom:335.208000pt;}
.y84{bottom:339.512000pt;}
.ycd{bottom:339.713333pt;}
.yf2{bottom:339.729333pt;}
.y25{bottom:339.844000pt;}
.y20a{bottom:340.040000pt;}
.yaf{bottom:340.106667pt;}
.y18e{bottom:340.553333pt;}
.y245{bottom:343.829333pt;}
.y11c{bottom:345.765333pt;}
.y1b5{bottom:346.088000pt;}
.y167{bottom:346.137333pt;}
.y138{bottom:351.148000pt;}
.y24{bottom:351.798667pt;}
.y209{bottom:351.994667pt;}
.y83{bottom:355.452000pt;}
.ycc{bottom:355.653333pt;}
.yf1{bottom:355.670667pt;}
.y51{bottom:355.784000pt;}
.yae{bottom:356.046667pt;}
.y18d{bottom:356.493333pt;}
.y1b4{bottom:358.042667pt;}
.y166{bottom:358.093333pt;}
.y23{bottom:363.754667pt;}
.y208{bottom:363.982667pt;}
.y137{bottom:367.088000pt;}
.y244{bottom:367.740000pt;}
.yf0{bottom:368.313333pt;}
.y1b3{bottom:369.998667pt;}
.y165{bottom:370.048000pt;}
.y82{bottom:371.392000pt;}
.yef{bottom:371.610667pt;}
.y50{bottom:371.724000pt;}
.yad{bottom:371.986667pt;}
.y18c{bottom:372.433333pt;}
.y11b{bottom:373.624000pt;}
.ycb{bottom:375.646667pt;}
.y22{bottom:375.709333pt;}
.y207{bottom:375.937333pt;}
.y243{bottom:379.694667pt;}
.y164{bottom:382.002667pt;}
.y1b2{bottom:382.484000pt;}
.y136{bottom:383.029333pt;}
.y81{bottom:387.333333pt;}
.yee{bottom:387.550667pt;}
.y21{bottom:387.664000pt;}
.yac{bottom:387.926667pt;}
.y18b{bottom:388.373333pt;}
.y11a{bottom:389.565333pt;}
.y242{bottom:391.649333pt;}
.y163{bottom:393.958667pt;}
.y206{bottom:396.016000pt;}
.y135{bottom:398.969333pt;}
.yca{bottom:399.769333pt;}
.y80{bottom:403.273333pt;}
.y4f{bottom:403.604000pt;}
.y241{bottom:403.605333pt;}
.yed{bottom:403.657333pt;}
.yab{bottom:403.866667pt;}
.y1b1{bottom:404.137333pt;}
.y18a{bottom:404.314667pt;}
.y119{bottom:405.505333pt;}
.y162{bottom:405.913333pt;}
.y20{bottom:413.953333pt;}
.y134{bottom:414.909333pt;}
.y240{bottom:415.560000pt;}
.yc9{bottom:415.709333pt;}
.y161{bottom:417.868000pt;}
.y7f{bottom:419.213333pt;}
.y4e{bottom:419.545333pt;}
.yec{bottom:419.597333pt;}
.yaa{bottom:419.808000pt;}
.y189{bottom:420.254667pt;}
.y205{bottom:421.422667pt;}
.y118{bottom:421.445333pt;}
.y23f{bottom:427.514667pt;}
.y160{bottom:429.824000pt;}
.y1f{bottom:429.894667pt;}
.y133{bottom:430.849333pt;}
.yc8{bottom:431.650667pt;}
.y7e{bottom:435.153333pt;}
.y4d{bottom:435.485333pt;}
.yeb{bottom:435.537333pt;}
.ya9{bottom:435.748000pt;}
.y204{bottom:437.362667pt;}
.y1dc{bottom:439.220000pt;}
.y23e{bottom:439.470667pt;}
.y1b0{bottom:439.785333pt;}
.y117{bottom:440.776000pt;}
.y15f{bottom:441.778667pt;}
.y188{bottom:442.862667pt;}
.y1e{bottom:445.834667pt;}
.y132{bottom:446.789333pt;}
.yc7{bottom:447.590667pt;}
.y1af{bottom:448.897333pt;}
.y7d{bottom:451.093333pt;}
.y4c{bottom:451.425333pt;}
.yea{bottom:451.477333pt;}
.ya8{bottom:451.688000pt;}
.y203{bottom:453.304000pt;}
.y15e{bottom:454.265333pt;}
.y1db{bottom:455.160000pt;}
.y116{bottom:456.716000pt;}
.y131{bottom:462.730667pt;}
.y23d{bottom:463.381333pt;}
.yc6{bottom:463.530667pt;}
.y1d{bottom:466.745333pt;}
.y7c{bottom:467.034667pt;}
.y187{bottom:467.244000pt;}
.y4b{bottom:467.365333pt;}
.ye9{bottom:467.417333pt;}
.ya7{bottom:467.628000pt;}
.y202{bottom:469.244000pt;}
.y1da{bottom:471.100000pt;}
.y115{bottom:472.656000pt;}
.y23c{bottom:475.336000pt;}
.y15d{bottom:475.917333pt;}
.y130{bottom:478.670667pt;}
.yc5{bottom:479.470667pt;}
.y7b{bottom:482.974667pt;}
.y4a{bottom:483.305333pt;}
.ye8{bottom:483.357333pt;}
.ya6{bottom:483.568000pt;}
.y1ae{bottom:484.109333pt;}
.y201{bottom:485.184000pt;}
.y1d9{bottom:487.040000pt;}
.y23b{bottom:487.290667pt;}
.y114{bottom:488.596000pt;}
.y1ad{bottom:493.221333pt;}
.y12f{bottom:494.610667pt;}
.yc4{bottom:495.410667pt;}
.y1c{bottom:496.458667pt;}
.y186{bottom:498.181333pt;}
.y7a{bottom:498.914667pt;}
.y49{bottom:499.245333pt;}
.y23a{bottom:499.246667pt;}
.ye7{bottom:499.298667pt;}
.ya5{bottom:499.509333pt;}
.y200{bottom:501.124000pt;}
.y1d8{bottom:502.980000pt;}
.y1b{bottom:509.741333pt;}
.y113{bottom:509.936000pt;}
.y12e{bottom:510.550667pt;}
.y239{bottom:511.201333pt;}
.yc3{bottom:511.350667pt;}
.y185{bottom:514.121333pt;}
.y79{bottom:514.854667pt;}
.y48{bottom:515.186667pt;}
.ye6{bottom:515.238667pt;}
.ya4{bottom:515.449333pt;}
.y15c{bottom:516.801388pt;}
.y1ff{bottom:517.064000pt;}
.y1d7{bottom:518.921333pt;}
.y1a{bottom:523.156000pt;}
.y12d{bottom:526.490667pt;}
.yc2{bottom:527.292000pt;}
.y15b{bottom:528.480620pt;}
.y184{bottom:530.062667pt;}
.y78{bottom:530.794667pt;}
.y47{bottom:531.126667pt;}
.ye5{bottom:531.178667pt;}
.ya3{bottom:531.389333pt;}
.y1fe{bottom:533.004000pt;}
.y238{bottom:535.112000pt;}
.y19{bottom:536.440000pt;}
.y1ac{bottom:536.856000pt;}
.y112{bottom:537.796000pt;}
.y1d6{bottom:538.940000pt;}
.y15a{bottom:540.161153pt;}
.y12c{bottom:542.430667pt;}
.yc1{bottom:543.232000pt;}
.y183{bottom:546.002667pt;}
.y46{bottom:547.066667pt;}
.ye4{bottom:547.118667pt;}
.ya2{bottom:547.329333pt;}
.y1fd{bottom:548.945333pt;}
.y18{bottom:549.722667pt;}
.y77{bottom:550.588000pt;}
.y159{bottom:551.840384pt;}
.y1ab{bottom:552.796000pt;}
.y111{bottom:553.736000pt;}
.y12b{bottom:558.372000pt;}
.y237{bottom:559.022667pt;}
.yc0{bottom:559.172000pt;}
.y182{bottom:561.942667pt;}
.y17{bottom:563.006667pt;}
.ye3{bottom:563.058667pt;}
.y1d5{bottom:563.217333pt;}
.ya1{bottom:563.269333pt;}
.y158{bottom:563.519616pt;}
.y1fc{bottom:564.885333pt;}
.y1aa{bottom:568.736000pt;}
.y110{bottom:569.676000pt;}
.y76{bottom:570.381333pt;}
.y236{bottom:570.977333pt;}
.y12a{bottom:574.312000pt;}
.ybf{bottom:575.112000pt;}
.y157{bottom:575.200149pt;}
.y16{bottom:576.290667pt;}
.y181{bottom:577.882667pt;}
.y45{bottom:578.946667pt;}
.ye2{bottom:579.000000pt;}
.y1d4{bottom:579.157333pt;}
.ya0{bottom:579.209333pt;}
.y1fb{bottom:580.825333pt;}
.y235{bottom:582.932000pt;}
.y1a9{bottom:584.676000pt;}
.y10f{bottom:585.617333pt;}
.y156{bottom:586.879380pt;}
.y15{bottom:589.573333pt;}
.y129{bottom:590.252000pt;}
.ybe{bottom:591.052000pt;}
.y75{bottom:593.298667pt;}
.y180{bottom:593.822667pt;}
.y44{bottom:594.886667pt;}
.y234{bottom:594.888000pt;}
.ye1{bottom:594.940000pt;}
.y1d3{bottom:595.097333pt;}
.y9f{bottom:595.150667pt;}
.y1fa{bottom:596.765333pt;}
.y155{bottom:599.078354pt;}
.y1a8{bottom:600.617333pt;}
.y10e{bottom:601.557333pt;}
.y14{bottom:602.857333pt;}
.y128{bottom:606.192000pt;}
.y233{bottom:606.842667pt;}
.ybd{bottom:606.993333pt;}
.y74{bottom:609.238667pt;}
.y17f{bottom:609.762667pt;}
.y43{bottom:610.828000pt;}
.ye0{bottom:610.880000pt;}
.y1d2{bottom:611.037333pt;}
.y9e{bottom:611.090667pt;}
.y13{bottom:616.141333pt;}
.y1a7{bottom:616.557333pt;}
.y1f9{bottom:617.242667pt;}
.y10d{bottom:617.497333pt;}
.y232{bottom:618.797333pt;}
.y154{bottom:620.525333pt;}
.ybc{bottom:622.933333pt;}
.y73{bottom:625.178667pt;}
.y17e{bottom:625.704000pt;}
.y42{bottom:626.768000pt;}
.ydf{bottom:626.820000pt;}
.y1d1{bottom:626.977333pt;}
.y9d{bottom:627.030667pt;}
.y12{bottom:629.424000pt;}
.y231{bottom:630.753333pt;}
.y1a6{bottom:632.497333pt;}
.y10c{bottom:633.437333pt;}
.ybb{bottom:638.873333pt;}
.y72{bottom:641.120000pt;}
.y17d{bottom:641.644000pt;}
.y1f8{bottom:642.649333pt;}
.y11{bottom:642.708000pt;}
.yde{bottom:642.760000pt;}
.y1d0{bottom:642.917333pt;}
.y9c{bottom:642.970667pt;}
.y1a5{bottom:648.437333pt;}
.y10b{bottom:649.377333pt;}
.y230{bottom:654.664000pt;}
.yba{bottom:654.813333pt;}
.y153{bottom:654.897333pt;}
.y10{bottom:655.992000pt;}
.y71{bottom:657.060000pt;}
.y17c{bottom:657.584000pt;}
.y1f7{bottom:658.589333pt;}
.y41{bottom:658.648000pt;}
.y1cf{bottom:658.858667pt;}
.ydd{bottom:658.866667pt;}
.y9b{bottom:658.910667pt;}
.y1a4{bottom:664.377333pt;}
.y10a{bottom:665.317333pt;}
.y22f{bottom:666.618667pt;}
.yf{bottom:669.274667pt;}
.yb9{bottom:670.753333pt;}
.y152{bottom:670.837333pt;}
.y70{bottom:673.000000pt;}
.y17b{bottom:673.524000pt;}
.y1f6{bottom:674.529333pt;}
.y40{bottom:674.588000pt;}
.y1ce{bottom:674.798667pt;}
.ydc{bottom:674.806667pt;}
.y9a{bottom:674.850667pt;}
.y22e{bottom:678.573333pt;}
.y1a3{bottom:680.317333pt;}
.y127{bottom:681.257333pt;}
.y109{bottom:681.258667pt;}
.ye{bottom:682.558667pt;}
.yb8{bottom:686.693333pt;}
.y151{bottom:686.777333pt;}
.y6f{bottom:688.940000pt;}
.y17a{bottom:689.464000pt;}
.y1f5{bottom:690.469333pt;}
.y3f{bottom:690.529333pt;}
.y1cd{bottom:690.738667pt;}
.ydb{bottom:690.746667pt;}
.y99{bottom:690.792000pt;}
.yd{bottom:695.842667pt;}
.y1a2{bottom:696.258667pt;}
.y108{bottom:697.198667pt;}
.y22d{bottom:702.484000pt;}
.yb7{bottom:702.634667pt;}
.y150{bottom:702.717333pt;}
.y6e{bottom:704.880000pt;}
.y179{bottom:705.404000pt;}
.y1f4{bottom:706.410667pt;}
.y3e{bottom:706.469333pt;}
.y1cc{bottom:706.678667pt;}
.yda{bottom:706.688000pt;}
.y98{bottom:706.732000pt;}
.yc{bottom:709.125333pt;}
.y1a1{bottom:712.198667pt;}
.y107{bottom:713.138667pt;}
.y22c{bottom:714.438667pt;}
.y14f{bottom:718.658667pt;}
.y6d{bottom:720.820000pt;}
.y178{bottom:721.345333pt;}
.y1f3{bottom:722.350667pt;}
.yb{bottom:722.409333pt;}
.y1cb{bottom:722.514667pt;}
.yb6{bottom:722.628000pt;}
.y22b{bottom:726.394667pt;}
.y97{bottom:727.593333pt;}
.y1a0{bottom:728.138667pt;}
.y14e{bottom:734.598667pt;}
.ya{bottom:735.693333pt;}
.y6c{bottom:736.761333pt;}
.y177{bottom:737.285333pt;}
.y1f2{bottom:738.290667pt;}
.y3d{bottom:738.349333pt;}
.y1ca{bottom:738.454667pt;}
.y19f{bottom:744.078667pt;}
.y9{bottom:748.976000pt;}
.y22a{bottom:750.305333pt;}
.y14d{bottom:750.538667pt;}
.y6b{bottom:752.701333pt;}
.y176{bottom:753.225333pt;}
.y1f1{bottom:754.230667pt;}
.y3c{bottom:754.289333pt;}
.y1c9{bottom:754.394667pt;}
.y106{bottom:757.373333pt;}
.y8{bottom:762.260000pt;}
.y19e{bottom:763.876000pt;}
.y14c{bottom:766.478667pt;}
.yb5{bottom:766.862667pt;}
.y6a{bottom:768.641333pt;}
.y175{bottom:769.165333pt;}
.y105{bottom:769.328000pt;}
.y1f0{bottom:770.170667pt;}
.y3b{bottom:770.229333pt;}
.y1c8{bottom:770.334667pt;}
.y19d{bottom:772.988000pt;}
.y229{bottom:774.214667pt;}
.y7{bottom:775.542667pt;}
.yb4{bottom:778.817333pt;}
.y104{bottom:781.282667pt;}
.y14b{bottom:782.418667pt;}
.y69{bottom:784.581333pt;}
.y1ef{bottom:786.110667pt;}
.y96{bottom:786.169333pt;}
.y3a{bottom:786.170667pt;}
.y1c7{bottom:786.274667pt;}
.y6{bottom:788.826667pt;}
.y228{bottom:798.125333pt;}
.y14a{bottom:798.360000pt;}
.y1ee{bottom:802.052000pt;}
.y95{bottom:802.109333pt;}
.y5{bottom:802.110667pt;}
.y1c6{bottom:802.214667pt;}
.y19c{bottom:803.436000pt;}
.y227{bottom:810.080000pt;}
.y149{bottom:814.300000pt;}
.y1ed{bottom:817.992000pt;}
.y68{bottom:818.050667pt;}
.y1c5{bottom:818.156000pt;}
.y19b{bottom:819.376000pt;}
.y226{bottom:822.036000pt;}
.y148{bottom:829.950667pt;}
.y1ec{bottom:833.932000pt;}
.y67{bottom:833.990667pt;}
.y1c4{bottom:834.096000pt;}
.y19a{bottom:835.316000pt;}
.y147{bottom:845.890667pt;}
.y225{bottom:845.945333pt;}
.y4{bottom:848.293333pt;}
.y1eb{bottom:849.872000pt;}
.y66{bottom:849.930667pt;}
.y1c3{bottom:850.036000pt;}
.y199{bottom:851.256000pt;}
.y224{bottom:857.901333pt;}
.y146{bottom:861.832000pt;}
.y1ea{bottom:865.812000pt;}
.y65{bottom:865.870667pt;}
.y1c2{bottom:865.976000pt;}
.y3{bottom:866.046667pt;}
.y223{bottom:869.856000pt;}
.y198{bottom:871.808000pt;}
.y145{bottom:877.772000pt;}
.y1e9{bottom:881.753333pt;}
.y94{bottom:881.810667pt;}
.y64{bottom:881.812000pt;}
.y1c1{bottom:881.916000pt;}
.y144{bottom:893.712000pt;}
.y222{bottom:893.766667pt;}
.y1e8{bottom:897.693333pt;}
.y93{bottom:897.750667pt;}
.y63{bottom:897.752000pt;}
.y1c0{bottom:897.857333pt;}
.y221{bottom:905.721333pt;}
.y143{bottom:909.652000pt;}
.y1e7{bottom:913.633333pt;}
.y62{bottom:913.692000pt;}
.y220{bottom:917.677333pt;}
.y2{bottom:923.830667pt;}
.y142{bottom:925.592000pt;}
.y1e6{bottom:929.573333pt;}
.y61{bottom:929.632000pt;}
.y141{bottom:941.532000pt;}
.y21f{bottom:941.586667pt;}
.y1e5{bottom:945.513333pt;}
.y60{bottom:945.572000pt;}
.y21e{bottom:953.542667pt;}
.y140{bottom:957.473333pt;}
.y1{bottom:961.024000pt;}
.y5f{bottom:961.512000pt;}
.y21d{bottom:965.497333pt;}
.y92{bottom:977.452000pt;}
.y5e{bottom:977.453333pt;}
.h13{height:0.000000pt;}
.h12{height:26.184294pt;}
.h7{height:26.524493pt;}
.h15{height:28.571150pt;}
.h14{height:29.069484pt;}
.h1b{height:29.159939pt;}
.h5{height:29.244954pt;}
.h19{height:29.458287pt;}
.h16{height:29.755040pt;}
.h6{height:31.880400pt;}
.h3{height:33.474560pt;}
.ha{height:36.449833pt;}
.h4{height:36.556100pt;}
.h9{height:37.193707pt;}
.hc{height:38.043849pt;}
.h1a{height:39.106287pt;}
.hb{height:39.850400pt;}
.he{height:44.348486pt;}
.hf{height:45.464294pt;}
.hd{height:49.357628pt;}
.h2{height:52.995067pt;}
.h10{height:62.546961pt;}
.h17{height:73.990515pt;}
.h11{height:75.797067pt;}
.h1{height:87.734861pt;}
.h8{height:104.687500pt;}
.h18{height:110.438515pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xb{left:42.666667pt;}
.x6{left:65.285333pt;}
.x4{left:70.400000pt;}
.x24{left:74.620000pt;}
.x8{left:75.912000pt;}
.x5{left:78.568000pt;}
.x3{left:80.960000pt;}
.x1b{left:85.550667pt;}
.x20{left:89.645333pt;}
.xc{left:91.981333pt;}
.x19{left:105.177333pt;}
.x1c{left:111.172000pt;}
.xd{left:125.546667pt;}
.x1e{left:127.773333pt;}
.x1{left:134.722667pt;}
.x27{left:137.430667pt;}
.x2{left:163.302667pt;}
.x21{left:167.410667pt;}
.x25{left:179.052000pt;}
.x7{left:180.825333pt;}
.x26{left:195.464000pt;}
.x1f{left:202.264000pt;}
.x1a{left:210.704199pt;}
.x23{left:223.126667pt;}
.x22{left:315.350667pt;}
.x9{left:415.970667pt;}
.x10{left:417.313333pt;}
.x28{left:421.284000pt;}
.xa{left:429.253333pt;}
.x29{left:440.316000pt;}
.x11{left:473.049333pt;}
.x18{left:477.820000pt;}
.x13{left:495.202667pt;}
.x14{left:496.193333pt;}
.x1d{left:498.521333pt;}
.x12{left:501.513333pt;}
.xe{left:512.881333pt;}
.x16{left:516.604000pt;}
.x15{left:522.101333pt;}
.x17{left:535.792000pt;}
.xf{left:539.129333pt;}
}




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