
    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_80ed27ae605767c6311b5c70.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.922000;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_d952431eee597e67fca4c2f1.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a336aaface2d0135cd0a2fee.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.688000;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_4ab9ce901e6fc3b750f0a024.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_387ed03d8ffffa15c023a1a2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.712000;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_6f2e397dbc1f2e552fe10dd3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.924000;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_d0407e5703e01eafa8544fee.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.703235;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_c90e085bfc9a1f81ebd47b4c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.859000;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_34a19e9474438e2028555838.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666000;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_ddfa02580236730313ba937e.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_5cc8c7d9ce24c0a014edd96d.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_c9b6c81f070ac06c9318f020.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.705000;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_f5c742de8ce4badfeb5000a8.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_31d0d32bac20c107e40147ac.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.678000;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_f2faa048e3081cca620e3898.woff2')format("woff");}.fff{font-family:fff;line-height:0.727000;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_71661ab200e58e357f5d9d54.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.678000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_ebe64a3960b42e7332b005ac.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_edcbf7242aecca1913db4a3a.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_c6601898754f719cf9b7514c.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.882000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_a57a503897250d28d01dc866.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_e54a04146916b2af14520b94.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.666000;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:ff16;src:url('chunks/assets/font_a7a8ea3f60f82c43d75ae49f.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.687000;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:ff17;src:url('chunks/assets/font_3dd07a25e32bc5589fe5621e.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.714046;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:ff18;src:url('chunks/assets/font_5a82eaab53f0636e99b7e5a7.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.666000;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:ff19;src:url('chunks/assets/font_3f2b05ccba5e9c946abe2467.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.677000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{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:-26.030400px;}
.v3{vertical-align:-8.966400px;}
.v6{vertical-align:-5.977200px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:21.692400px;}
.v5{vertical-align:22.854000px;}
.v1{vertical-align:26.031000px;}
.lsf{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.011677px;}
.ls9{letter-spacing:0.017885px;}
.ls17{letter-spacing:0.018125px;}
.ls26{letter-spacing:0.023293px;}
.ls25{letter-spacing:0.023893px;}
.ls8{letter-spacing:0.026927px;}
.ls20{letter-spacing:0.029645px;}
.ls1{letter-spacing:0.029872px;}
.ls1f{letter-spacing:0.035566px;}
.ls0{letter-spacing:0.035831px;}
.ls1d{letter-spacing:0.036166px;}
.ls1c{letter-spacing:0.046372px;}
.ls1a{letter-spacing:0.046972px;}
.ls12{letter-spacing:0.047695px;}
.lse{letter-spacing:0.047815px;}
.ls10{letter-spacing:0.048136px;}
.ls16{letter-spacing:1.320233px;}
.ls3{letter-spacing:3.001023px;}
.ls1e{letter-spacing:3.006483px;}
.ls22{letter-spacing:3.006614px;}
.ls1b{letter-spacing:3.007083px;}
.ls4{letter-spacing:3.024809px;}
.ls2{letter-spacing:4.426406px;}
.ls19{letter-spacing:17.809083px;}
.ls21{letter-spacing:19.113014px;}
.lsd{letter-spacing:19.316283px;}
.ls24{letter-spacing:19.937077px;}
.ls15{letter-spacing:20.467177px;}
.lsb{letter-spacing:22.931943px;}
.ls5{letter-spacing:25.267192px;}
.ls18{letter-spacing:25.277883px;}
.ls7{letter-spacing:26.080143px;}
.lsa{letter-spacing:26.494083px;}
.ls6{letter-spacing:27.897329px;}
.ls11{letter-spacing:27.955083px;}
.lsc{letter-spacing:29.717883px;}
.ls14{letter-spacing:119.514772px;}
.ls13{letter-spacing:143.260372px;}
.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;}
}
.ws5f{word-spacing:-0.101613px;}
.wsb1{word-spacing:-0.101493px;}
.ws1ad{word-spacing:-0.089629px;}
.ws1f{word-spacing:-0.077709px;}
.ws7{word-spacing:-0.074720px;}
.ws77{word-spacing:-0.065753px;}
.wse{word-spacing:-0.059776px;}
.ws0{word-spacing:-0.053798px;}
.ws60{word-spacing:0.000000px;}
.wsc9{word-spacing:9.904904px;}
.wsd6{word-spacing:9.905504px;}
.ws16c{word-spacing:9.931891px;}
.ws2{word-spacing:12.231798px;}
.ws3{word-spacing:12.497317px;}
.ws51{word-spacing:13.283551px;}
.ws1a5{word-spacing:13.597299px;}
.ws9d{word-spacing:13.654904px;}
.wsf7{word-spacing:13.703168px;}
.ws4b{word-spacing:13.797798px;}
.ws54{word-spacing:13.930951px;}
.ws184{word-spacing:14.117551px;}
.ws15a{word-spacing:14.260951px;}
.ws4e{word-spacing:14.470633px;}
.ws103{word-spacing:14.482904px;}
.ws8f{word-spacing:14.574151px;}
.ws190{word-spacing:14.656998px;}
.ws90{word-spacing:14.728543px;}
.ws150{word-spacing:14.769751px;}
.ws151{word-spacing:14.769943px;}
.ws195{word-spacing:14.814171px;}
.ws101{word-spacing:14.815111px;}
.ws14f{word-spacing:14.849744px;}
.ws102{word-spacing:14.905033px;}
.ws169{word-spacing:14.908033px;}
.ws21{word-spacing:15.069151px;}
.ws20{word-spacing:15.074833px;}
.ws149{word-spacing:15.108751px;}
.wsac{word-spacing:15.224233px;}
.ws9f{word-spacing:15.351704px;}
.ws179{word-spacing:15.438751px;}
.wsdb{word-spacing:15.461504px;}
.ws24{word-spacing:15.497551px;}
.ws12b{word-spacing:15.595351px;}
.ws191{word-spacing:15.609798px;}
.ws8e{word-spacing:15.772351px;}
.ws153{word-spacing:15.773743px;}
.ws140{word-spacing:15.827598px;}
.ws29{word-spacing:15.921704px;}
.ws148{word-spacing:15.931033px;}
.ws163{word-spacing:16.078037px;}
.ws162{word-spacing:16.082440px;}
.ws93{word-spacing:16.107104px;}
.wsec{word-spacing:16.133743px;}
.ws2a{word-spacing:16.190233px;}
.ws35{word-spacing:16.250264px;}
.wsea{word-spacing:16.274551px;}
.ws36{word-spacing:16.277551px;}
.ws123{word-spacing:16.437751px;}
.ws154{word-spacing:16.459998px;}
.ws16a{word-spacing:16.474904px;}
.ws9e{word-spacing:16.535833px;}
.ws50{word-spacing:16.552951px;}
.ws15c{word-spacing:16.567633px;}
.ws125{word-spacing:16.645304px;}
.ws146{word-spacing:16.679504px;}
.ws147{word-spacing:16.705951px;}
.ws2c{word-spacing:16.733743px;}
.ws13{word-spacing:16.856551px;}
.ws171{word-spacing:16.903951px;}
.ws172{word-spacing:16.909633px;}
.ws3b{word-spacing:17.000744px;}
.wsfc{word-spacing:17.085151px;}
.wsf1{word-spacing:17.164543px;}
.ws14{word-spacing:17.218351px;}
.ws58{word-spacing:17.290033px;}
.ws95{word-spacing:17.301943px;}
.ws47{word-spacing:17.329304px;}
.ws52{word-spacing:17.347633px;}
.ws53{word-spacing:17.353351px;}
.ws22{word-spacing:17.362304px;}
.wsc2{word-spacing:17.420103px;}
.wsc3{word-spacing:17.422149px;}
.wsab{word-spacing:17.428951px;}
.ws124{word-spacing:17.467393px;}
.ws152{word-spacing:17.494951px;}
.wscf{word-spacing:17.530543px;}
.wsdf{word-spacing:17.549551px;}
.ws7d{word-spacing:17.592704px;}
.ws27{word-spacing:17.889943px;}
.ws18c{word-spacing:17.902951px;}
.wseb{word-spacing:17.956951px;}
.ws57{word-spacing:17.976151px;}
.wsaf{word-spacing:18.070904px;}
.ws189{word-spacing:18.098143px;}
.ws118{word-spacing:18.120704px;}
.ws117{word-spacing:18.187033px;}
.wsfd{word-spacing:18.190116px;}
.wsf{word-spacing:18.284743px;}
.ws19e{word-spacing:18.308509px;}
.ws1ae{word-spacing:18.328899px;}
.ws136{word-spacing:18.376503px;}
.ws197{word-spacing:18.376758px;}
.ws1a9{word-spacing:18.376863px;}
.ws4{word-spacing:18.376998px;}
.ws19a{word-spacing:18.377598px;}
.ws19f{word-spacing:18.379149px;}
.ws1a1{word-spacing:18.385799px;}
.ws1a8{word-spacing:18.398708px;}
.ws1aa{word-spacing:18.398768px;}
.wsef{word-spacing:18.399949px;}
.ws1a4{word-spacing:18.403299px;}
.ws160{word-spacing:18.403899px;}
.wsee{word-spacing:18.408751px;}
.wsc4{word-spacing:18.412858px;}
.ws19b{word-spacing:18.413098px;}
.wsd{word-spacing:18.424696px;}
.ws185{word-spacing:18.499951px;}
.ws157{word-spacing:18.521833px;}
.ws4a{word-spacing:18.527233px;}
.ws37{word-spacing:18.535544px;}
.ws38{word-spacing:18.562543px;}
.wsf4{word-spacing:18.567751px;}
.wsf0{word-spacing:18.592033px;}
.ws18e{word-spacing:18.663751px;}
.ws156{word-spacing:18.679633px;}
.ws11f{word-spacing:18.789751px;}
.ws155{word-spacing:18.804704px;}
.wsd3{word-spacing:18.908551px;}
.ws43{word-spacing:19.013143px;}
.ws39{word-spacing:19.065433px;}
.ws12a{word-spacing:19.114033px;}
.wsaa{word-spacing:19.217551px;}
.wsf3{word-spacing:19.222531px;}
.ws145{word-spacing:19.232598px;}
.ws182{word-spacing:19.233704px;}
.wsf8{word-spacing:19.238551px;}
.ws3a{word-spacing:19.307233px;}
.wsc1{word-spacing:19.335313px;}
.wsd4{word-spacing:19.352551px;}
.ws97{word-spacing:19.359151px;}
.ws98{word-spacing:19.359751px;}
.ws26{word-spacing:19.383163px;}
.wse1{word-spacing:19.480116px;}
.ws187{word-spacing:19.487311px;}
.ws188{word-spacing:19.492993px;}
.ws86{word-spacing:19.563343px;}
.ws2b{word-spacing:19.629523px;}
.ws1{word-spacing:19.705732px;}
.ws1a7{word-spacing:19.708196px;}
.ws198{word-spacing:19.708796px;}
.ws1a2{word-spacing:19.717225px;}
.ws1a6{word-spacing:19.717825px;}
.ws1ab{word-spacing:19.724059px;}
.ws19c{word-spacing:19.724659px;}
.wsc{word-spacing:19.743316px;}
.wsb{word-spacing:19.749549px;}
.ws1af{word-spacing:19.753555px;}
.ws19d{word-spacing:19.753615px;}
.ws192{word-spacing:19.758198px;}
.ws138{word-spacing:19.849951px;}
.ws141{word-spacing:19.864904px;}
.ws19{word-spacing:19.865444px;}
.ws1a{word-spacing:19.865504px;}
.wsc0{word-spacing:19.877468px;}
.wsa7{word-spacing:19.881151px;}
.ws88{word-spacing:19.883149px;}
.ws1b{word-spacing:19.892143px;}
.ws3d{word-spacing:19.892263px;}
.ws11a{word-spacing:19.892323px;}
.ws109{word-spacing:19.892431px;}
.ws1d{word-spacing:19.892551px;}
.ws63{word-spacing:19.898233px;}
.ws59{word-spacing:19.898833px;}
.ws112{word-spacing:19.910833px;}
.wsb5{word-spacing:19.911516px;}
.wsb2{word-spacing:19.912116px;}
.ws174{word-spacing:19.913196px;}
.ws12f{word-spacing:19.919598px;}
.ws2d{word-spacing:19.941811px;}
.ws48{word-spacing:19.977104px;}
.ws92{word-spacing:20.002033px;}
.ws3c{word-spacing:20.016751px;}
.ws137{word-spacing:20.046943px;}
.wsc6{word-spacing:20.155904px;}
.wse6{word-spacing:20.183551px;}
.wse9{word-spacing:20.238704px;}
.ws68{word-spacing:20.312773px;}
.ws1a0{word-spacing:20.327532px;}
.ws122{word-spacing:20.350904px;}
.ws23{word-spacing:20.407033px;}
.ws11{word-spacing:20.458351px;}
.wsc7{word-spacing:20.630744px;}
.wsca{word-spacing:20.635351px;}
.wsae{word-spacing:20.653033px;}
.ws8a{word-spacing:20.679433px;}
.ws100{word-spacing:20.684504px;}
.wsed{word-spacing:20.756316px;}
.wsa0{word-spacing:20.792743px;}
.wsfa{word-spacing:20.825833px;}
.ws18{word-spacing:20.991433px;}
.ws78{word-spacing:21.065743px;}
.ws25{word-spacing:21.079904px;}
.ws14b{word-spacing:21.163351px;}
.ws1ac{word-spacing:21.301408px;}
.ws199{word-spacing:21.304225px;}
.ws84{word-spacing:21.344556px;}
.ws120{word-spacing:21.465151px;}
.ws79{word-spacing:21.503551px;}
.ws8c{word-spacing:21.538351px;}
.ws159{word-spacing:21.580998px;}
.ws87{word-spacing:21.605143px;}
.ws4c{word-spacing:21.701551px;}
.ws13c{word-spacing:21.735943px;}
.ws14a{word-spacing:21.792751px;}
.ws17{word-spacing:21.843433px;}
.ws166{word-spacing:21.893143px;}
.ws1a3{word-spacing:21.902396px;}
.ws173{word-spacing:21.939751px;}
.ws4f{word-spacing:21.954751px;}
.ws18f{word-spacing:22.127233px;}
.ws18b{word-spacing:22.129998px;}
.ws42{word-spacing:22.175551px;}
.ws13f{word-spacing:22.211504px;}
.ws178{word-spacing:22.217551px;}
.wsce{word-spacing:22.229749px;}
.ws193{word-spacing:22.243731px;}
.ws13e{word-spacing:22.244233px;}
.ws13d{word-spacing:22.244593px;}
.ws104{word-spacing:22.259504px;}
.wsf6{word-spacing:22.285951px;}
.wsd0{word-spacing:22.313743px;}
.ws181{word-spacing:22.418551px;}
.wsf2{word-spacing:22.445598px;}
.wsb3{word-spacing:22.539834px;}
.ws61{word-spacing:22.548271px;}
.ws194{word-spacing:22.561398px;}
.ws170{word-spacing:22.562551px;}
.ws14e{word-spacing:22.568504px;}
.ws71{word-spacing:22.638343px;}
.ws49{word-spacing:22.728151px;}
.ws81{word-spacing:22.808743px;}
.ws15b{word-spacing:22.877233px;}
.wscd{word-spacing:22.940233px;}
.wse7{word-spacing:22.982743px;}
.wsd7{word-spacing:23.105233px;}
.ws96{word-spacing:23.110398px;}
.ws31{word-spacing:23.118704px;}
.ws9c{word-spacing:23.145704px;}
.ws32{word-spacing:23.155033px;}
.ws85{word-spacing:23.227484px;}
.ws91{word-spacing:23.236904px;}
.ws18d{word-spacing:23.390551px;}
.ws12d{word-spacing:23.391751px;}
.ws16f{word-spacing:23.440398px;}
.ws121{word-spacing:23.444143px;}
.ws15{word-spacing:23.454343px;}
.ws2f{word-spacing:23.454943px;}
.ws168{word-spacing:23.514343px;}
.wsa9{word-spacing:23.518351px;}
.ws14c{word-spacing:23.526198px;}
.wsf5{word-spacing:23.544751px;}
.ws6c{word-spacing:23.577751px;}
.ws6d{word-spacing:23.578351px;}
.ws56{word-spacing:23.677951px;}
.ws196{word-spacing:23.767398px;}
.ws9a{word-spacing:23.784751px;}
.ws16d{word-spacing:23.803716px;}
.wsdc{word-spacing:23.873233px;}
.ws180{word-spacing:23.934343px;}
.wse8{word-spacing:23.940151px;}
.ws30{word-spacing:23.944033px;}
.ws70{word-spacing:24.058633px;}
.wsd9{word-spacing:24.135151px;}
.wsa8{word-spacing:24.223904px;}
.ws8b{word-spacing:24.280033px;}
.ws16{word-spacing:24.364716px;}
.wsa6{word-spacing:24.391033px;}
.ws10{word-spacing:24.410551px;}
.wse0{word-spacing:24.444943px;}
.ws119{word-spacing:24.458551px;}
.wsde{word-spacing:24.459516px;}
.ws175{word-spacing:24.475351px;}
.ws10d{word-spacing:24.490033px;}
.wscc{word-spacing:24.496273px;}
.wsf9{word-spacing:24.501151px;}
.ws142{word-spacing:24.560833px;}
.ws9b{word-spacing:24.623743px;}
.ws40{word-spacing:24.624386px;}
.ws75{word-spacing:24.624686px;}
.wse5{word-spacing:24.631351px;}
.wsfb{word-spacing:24.661543px;}
.ws186{word-spacing:24.723104px;}
.ws10a{word-spacing:24.780787px;}
.ws83{word-spacing:24.794012px;}
.ws41{word-spacing:24.795752px;}
.ws76{word-spacing:24.803925px;}
.ws82{word-spacing:24.915151px;}
.ws13b{word-spacing:24.928633px;}
.ws17b{word-spacing:24.952633px;}
.ws108{word-spacing:24.967351px;}
.ws99{word-spacing:24.969156px;}
.wsdd{word-spacing:25.008151px;}
.ws14d{word-spacing:25.051951px;}
.ws16b{word-spacing:25.275103px;}
.wsd5{word-spacing:25.350613px;}
.ws18a{word-spacing:25.380943px;}
.wsd8{word-spacing:25.533433px;}
.ws46{word-spacing:25.584751px;}
.ws28{word-spacing:25.636351px;}
.wsa3{word-spacing:25.759904px;}
.ws34{word-spacing:25.808316px;}
.ws94{word-spacing:25.911751px;}
.ws12{word-spacing:26.060143px;}
.ws11b{word-spacing:26.137351px;}
.ws11c{word-spacing:26.143633px;}
.ws11d{word-spacing:26.191951px;}
.ws11e{word-spacing:26.198233px;}
.wsfe{word-spacing:26.281904px;}
.ws167{word-spacing:26.285143px;}
.ws73{word-spacing:26.340516px;}
.ws89{word-spacing:26.427751px;}
.ws111{word-spacing:26.442151px;}
.ws5a{word-spacing:26.465551px;}
.ws1c{word-spacing:26.533531px;}
.ws7a{word-spacing:26.631343px;}
.ws2e{word-spacing:26.678383px;}
.wsa5{word-spacing:26.705143px;}
.ws55{word-spacing:26.761116px;}
.ws177{word-spacing:26.817151px;}
.ws126{word-spacing:26.825551px;}
.wsd2{word-spacing:26.832433px;}
.ws4d{word-spacing:26.955151px;}
.wsa{word-spacing:27.057874px;}
.ws15d{word-spacing:27.080233px;}
.ws8{word-spacing:27.083491px;}
.ws9{word-spacing:27.083593px;}
.ws33{word-spacing:27.219104px;}
.ws7f{word-spacing:27.279151px;}
.wsda{word-spacing:27.291943px;}
.wsff{word-spacing:27.348433px;}
.ws127{word-spacing:27.376951px;}
.wsc5{word-spacing:27.522104px;}
.ws176{word-spacing:27.556544px;}
.wsb0{word-spacing:27.565951px;}
.wscb{word-spacing:27.604351px;}
.ws158{word-spacing:27.718998px;}
.ws12e{word-spacing:27.734833px;}
.ws12c{word-spacing:27.753433px;}
.ws74{word-spacing:27.813151px;}
.ws6{word-spacing:27.988776px;}
.wsa2{word-spacing:28.019551px;}
.ws5{word-spacing:28.190317px;}
.ws16e{word-spacing:28.294951px;}
.ws139{word-spacing:28.444351px;}
.ws13a{word-spacing:28.470798px;}
.ws110{word-spacing:28.721551px;}
.wsa1{word-spacing:28.852304px;}
.ws6b{word-spacing:28.989433px;}
.ws128{word-spacing:28.990951px;}
.ws7b{word-spacing:29.016198px;}
.ws3e{word-spacing:29.101814px;}
.ws1e{word-spacing:29.101874px;}
.ws6e{word-spacing:29.127068px;}
.wsc8{word-spacing:29.215364px;}
.ws3f{word-spacing:29.313337px;}
.ws8d{word-spacing:29.345551px;}
.ws17e{word-spacing:29.424104px;}
.ws10f{word-spacing:29.434951px;}
.ws17a{word-spacing:29.481343px;}
.ws129{word-spacing:29.522743px;}
.ws6a{word-spacing:29.569951px;}
.ws183{word-spacing:29.590398px;}
.ws44{word-spacing:29.658343px;}
.ws10c{word-spacing:29.686304px;}
.ws144{word-spacing:29.706151px;}
.ws6f{word-spacing:29.796668px;}
.wse2{word-spacing:29.936504px;}
.wse3{word-spacing:29.968633px;}
.wsa4{word-spacing:30.072751px;}
.ws5d{word-spacing:30.099704px;}
.ws17f{word-spacing:30.329833px;}
.wsd1{word-spacing:31.063184px;}
.ws17c{word-spacing:31.487833px;}
.ws69{word-spacing:31.529143px;}
.ws45{word-spacing:31.552398px;}
.ws107{word-spacing:32.135749px;}
.wse4{word-spacing:32.156551px;}
.ws7e{word-spacing:33.094951px;}
.wsad{word-spacing:33.155316px;}
.ws72{word-spacing:33.208891px;}
.ws7c{word-spacing:33.588104px;}
.ws114{word-spacing:34.230433px;}
.ws80{word-spacing:34.930543px;}
.ws116{word-spacing:35.293351px;}
.ws17d{word-spacing:35.875304px;}
.ws113{word-spacing:36.457998px;}
.ws5e{word-spacing:36.743468px;}
.ws115{word-spacing:36.921151px;}
.ws10b{word-spacing:36.931904px;}
.ws10e{word-spacing:38.336551px;}
.ws143{word-spacing:39.723104px;}
.ws5b{word-spacing:39.973904px;}
.ws105{word-spacing:40.335751px;}
.ws106{word-spacing:40.362798px;}
.ws5c{word-spacing:51.855751px;}
.ws64{word-spacing:71.670944px;}
.wsb4{word-spacing:72.956671px;}
.wsb8{word-spacing:74.452904px;}
.ws65{word-spacing:74.577104px;}
.ws67{word-spacing:81.633704px;}
.wsb6{word-spacing:83.378504px;}
.wsb9{word-spacing:89.396504px;}
.ws66{word-spacing:89.521304px;}
.wsbf{word-spacing:101.559104px;}
.wsbe{word-spacing:104.464904px;}
.wsb7{word-spacing:116.503304px;}
.wsbb{word-spacing:116.549196px;}
.ws161{word-spacing:121.521253px;}
.wsbc{word-spacing:131.446904px;}
.wsbd{word-spacing:131.493996px;}
.wsba{word-spacing:134.399196px;}
.ws15e{word-spacing:138.786853px;}
.ws165{word-spacing:142.906304px;}
.ws15f{word-spacing:167.687504px;}
.ws135{word-spacing:192.101376px;}
.ws164{word-spacing:209.284304px;}
.ws134{word-spacing:233.598853px;}
.ws130{word-spacing:244.599253px;}
.ws131{word-spacing:252.693253px;}
.ws132{word-spacing:276.355453px;}
.ws133{word-spacing:278.430853px;}
.ws62{word-spacing:1241.684760px;}
._6{margin-left:-6.582300px;}
._19{margin-left:-5.581968px;}
._9{margin-left:-4.174860px;}
._0{margin-left:-2.822849px;}
._4{margin-left:-1.655649px;}
._7{width:1.002995px;}
._b{width:2.060638px;}
._6e{width:3.915230px;}
._13{width:9.580739px;}
._2f{width:10.683199px;}
._17{width:15.233803px;}
._f{width:16.669040px;}
._55{width:17.677469px;}
._2{width:18.819657px;}
._1{width:21.000687px;}
._31{width:22.381109px;}
._15{width:23.788224px;}
._a{width:25.460791px;}
._d{width:26.509311px;}
._2b{width:27.580233px;}
._5{width:28.628788px;}
._18{width:29.678178px;}
._2d{width:30.886831px;}
._e{width:32.951554px;}
._51{width:33.968605px;}
._16{width:35.334093px;}
._12{width:36.699206px;}
._11{width:38.012762px;}
._c{width:40.388978px;}
._30{width:41.940767px;}
._10{width:44.474486px;}
._53{width:45.960393px;}
._50{width:49.742004px;}
._8{width:54.586852px;}
._2c{width:55.716402px;}
._52{width:60.246420px;}
._14{width:61.605637px;}
._54{width:63.494369px;}
._2e{width:71.161137px;}
._44{width:72.461302px;}
._35{width:75.245317px;}
._1a{width:77.595400px;}
._37{width:80.039278px;}
._24{width:81.739732px;}
._34{width:82.984552px;}
._3f{width:86.721652px;}
._36{width:87.745751px;}
._26{width:89.673705px;}
._58{width:95.026744px;}
._20{width:96.684052px;}
._39{width:98.132760px;}
._45{width:99.235770px;}
._23{width:100.419652px;}
._3e{width:101.665252px;}
._3c{width:104.571052px;}
._41{width:113.760329px;}
._1f{width:115.363252px;}
._3a{width:116.609452px;}
._2a{width:119.197550px;}
._65{width:120.655312px;}
._1e{width:125.740612px;}
._47{width:128.238225px;}
._3b{width:131.553052px;}
._3{width:135.677379px;}
._22{width:140.684332px;}
._49{width:146.496772px;}
._5f{width:149.212610px;}
._43{width:151.115878px;}
._48{width:158.204572px;}
._4a{width:161.441572px;}
._56{width:165.628883px;}
._61{width:168.535823px;}
._42{width:169.789020px;}
._4e{width:181.003678px;}
._57{width:189.957901px;}
._60{width:195.758687px;}
._28{width:198.437278px;}
._4d{width:199.676820px;}
._33{width:201.941627px;}
._64{width:204.305458px;}
._6d{width:208.617999px;}
._27{width:217.110420px;}
._6b{width:222.350758px;}
._67{width:224.342715px;}
._4f{width:227.403133px;}
._5d{width:228.452158px;}
._63{width:232.207949px;}
._62{width:241.275235px;}
._29{width:244.836733px;}
._5c{width:247.125600px;}
._69{width:248.375794px;}
._40{width:255.656985px;}
._5a{width:264.194236px;}
._6c{width:268.750213px;}
._3d{width:272.228776px;}
._5e{width:274.851733px;}
._4c{width:285.544785px;}
._4b{width:287.172976px;}
._38{width:300.542163px;}
._25{width:302.978385px;}
._46{width:315.486363px;}
._21{width:319.550176px;}
._6a{width:326.891985px;}
._1d{width:332.919363px;}
._68{width:343.463776px;}
._5b{width:349.565176px;}
._66{width:371.777163px;}
._59{width:377.878563px;}
._1c{width:382.815543px;}
._1b{width:495.883362px;}
._32{width:660.377978px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:29.887920px;}
.fs8{font-size:35.865504px;}
.fs5{font-size:41.843088px;}
.fs3{font-size:47.820672px;}
.fs0{font-size:53.798256px;}
.fs4{font-size:59.775840px;}
.fs7{font-size:65.753400px;}
.fs2{font-size:71.731020px;}
.fs1{font-size:74.719800px;}
.fs6{font-size:77.708580px;}
.y0{bottom:0.000000px;}
.y52{bottom:5.400285px;}
.y51{bottom:41.265795px;}
.y1{bottom:54.000000px;}
.y18f{bottom:57.704145px;}
.y1b4{bottom:57.746955px;}
.y33{bottom:57.757665px;}
.y138{bottom:59.198550px;}
.y85{bottom:59.240820px;}
.y50{bottom:59.304960px;}
.y168{bottom:59.312310px;}
.y103{bottom:59.347200px;}
.ya9{bottom:59.379165px;}
.y15a{bottom:59.733270px;}
.yce{bottom:59.893140px;}
.y18e{bottom:74.142510px;}
.y1b3{bottom:74.228100px;}
.y32{bottom:76.907145px;}
.y137{bottom:77.131290px;}
.y4f{bottom:77.344140px;}
.y167{bottom:77.358825px;}
.y102{bottom:77.428590px;}
.y84{bottom:77.543085px;}
.ycd{bottom:78.520455px;}
.ya8{bottom:78.891045px;}
.y159{bottom:82.341075px;}
.y18d{bottom:90.580860px;}
.y1b2{bottom:90.709260px;}
.y136{bottom:95.064045px;}
.y4e{bottom:95.383290px;}
.y166{bottom:95.405355px;}
.y101{bottom:95.510025px;}
.y83{bottom:95.518095px;}
.y31{bottom:96.056550px;}
.ya7{bottom:97.004400px;}
.ycc{bottom:97.147800px;}
.y158{bottom:100.808550px;}
.y18c{bottom:107.019150px;}
.y1b1{bottom:107.190450px;}
.y135{bottom:112.996800px;}
.y4d{bottom:113.422500px;}
.y165{bottom:113.451900px;}
.y82{bottom:113.493150px;}
.y100{bottom:113.591400px;}
.ya6{bottom:115.117800px;}
.y30{bottom:115.206150px;}
.ycb{bottom:115.775100px;}
.y157{bottom:119.276100px;}
.y18b{bottom:123.457500px;}
.y134{bottom:130.929600px;}
.y81{bottom:131.468100px;}
.y164{bottom:131.498400px;}
.yff{bottom:131.672850px;}
.y1b0{bottom:131.691000px;}
.y4c{bottom:132.285600px;}
.ya5{bottom:133.231200px;}
.y2f{bottom:134.355600px;}
.yca{bottom:134.402400px;}
.y156{bottom:137.743500px;}
.y18a{bottom:139.896000px;}
.y1af{bottom:148.172250px;}
.y133{bottom:148.862250px;}
.y80{bottom:149.443200px;}
.y163{bottom:149.544900px;}
.yfe{bottom:149.754300px;}
.y4b{bottom:150.324750px;}
.ya4{bottom:151.344600px;}
.yc9{bottom:153.029850px;}
.y2e{bottom:153.505050px;}
.y155{bottom:156.211050px;}
.y189{bottom:161.240400px;}
.y1ae{bottom:164.653350px;}
.y132{bottom:166.795050px;}
.y162{bottom:167.591400px;}
.yfd{bottom:167.835600px;}
.y4a{bottom:168.363900px;}
.ya3{bottom:169.457850px;}
.y7f{bottom:171.244200px;}
.yc8{bottom:171.657150px;}
.y2d{bottom:172.654500px;}
.y154{bottom:174.678450px;}
.y188{bottom:177.678750px;}
.y1ad{bottom:181.134450px;}
.y131{bottom:184.727850px;}
.y161{bottom:185.637900px;}
.y49{bottom:186.403050px;}
.ya2{bottom:187.571250px;}
.yc7{bottom:190.284450px;}
.yfc{bottom:191.276250px;}
.y2c{bottom:191.803950px;}
.y153{bottom:193.146000px;}
.y187{bottom:194.117100px;}
.y1ac{bottom:197.615700px;}
.y130{bottom:202.660500px;}
.y48{bottom:204.442200px;}
.ya1{bottom:205.684650px;}
.yc6{bottom:208.911750px;}
.yfb{bottom:209.820900px;}
.y160{bottom:210.471150px;}
.y186{bottom:210.555450px;}
.y2b{bottom:210.953400px;}
.y152{bottom:211.613400px;}
.y1ab{bottom:214.096800px;}
.y12f{bottom:220.593300px;}
.y47{bottom:222.481500px;}
.ya0{bottom:223.798050px;}
.y7e{bottom:224.212200px;}
.y185{bottom:226.993800px;}
.yc5{bottom:227.539200px;}
.y2a{bottom:230.102850px;}
.y151{bottom:234.221250px;}
.y12e{bottom:238.526100px;}
.y1aa{bottom:238.597500px;}
.y46{bottom:240.520650px;}
.y9f{bottom:241.911450px;}
.y7d{bottom:242.187150px;}
.y184{bottom:243.432150px;}
.yc4{bottom:246.166500px;}
.y29{bottom:249.252300px;}
.y150{bottom:252.688650px;}
.y15f{bottom:254.793450px;}
.y1a9{bottom:255.078600px;}
.y12d{bottom:256.458750px;}
.y45{bottom:258.559800px;}
.y9e{bottom:260.024700px;}
.y7c{bottom:260.162250px;}
.y183{bottom:264.776700px;}
.yc3{bottom:264.793800px;}
.yfa{bottom:268.269300px;}
.y28{bottom:268.401900px;}
.y14f{bottom:271.156200px;}
.y15e{bottom:272.839950px;}
.y12c{bottom:274.391550px;}
.y44{bottom:276.598950px;}
.y7b{bottom:278.137200px;}
.y9d{bottom:278.138100px;}
.y1a8{bottom:279.579300px;}
.y182{bottom:281.215050px;}
.yc2{bottom:283.421250px;}
.yf9{bottom:286.350750px;}
.y27{bottom:287.551350px;}
.y14e{bottom:289.623600px;}
.y15d{bottom:290.886450px;}
.y12b{bottom:292.324350px;}
.y43{bottom:294.638100px;}
.y1a7{bottom:296.060400px;}
.y7a{bottom:296.112150px;}
.y9c{bottom:296.251500px;}
.y181{bottom:297.653400px;}
.yc1{bottom:302.048550px;}
.yf8{bottom:304.432200px;}
.y26{bottom:306.700800px;}
.y14d{bottom:308.091150px;}
.y15c{bottom:308.933100px;}
.y12a{bottom:310.257000px;}
.y1a6{bottom:312.541500px;}
.y42{bottom:312.677250px;}
.y79{bottom:314.087250px;}
.y180{bottom:314.091750px;}
.y9b{bottom:314.364900px;}
.yc0{bottom:320.675850px;}
.yf7{bottom:322.513650px;}
.y25{bottom:325.850250px;}
.y14c{bottom:326.558550px;}
.y15b{bottom:326.979600px;}
.y129{bottom:328.189800px;}
.y1a5{bottom:329.022750px;}
.y17f{bottom:330.530100px;}
.y41{bottom:330.716400px;}
.y78{bottom:332.062200px;}
.y9a{bottom:332.478300px;}
.ybf{bottom:339.303150px;}
.yf6{bottom:340.594950px;}
.y24{bottom:344.999700px;}
.y14b{bottom:345.026100px;}
.y1a4{bottom:345.503850px;}
.y128{bottom:346.122600px;}
.y40{bottom:348.755700px;}
.y17e{bottom:349.879800px;}
.y77{bottom:350.037300px;}
.y99{bottom:350.591700px;}
.ybe{bottom:357.930450px;}
.yf5{bottom:358.676400px;}
.y1a3{bottom:361.985100px;}
.y127{bottom:364.055400px;}
.y23{bottom:364.149150px;}
.y3f{bottom:366.794850px;}
.y76{bottom:368.012250px;}
.y98{bottom:368.704950px;}
.ybd{bottom:376.557900px;}
.yf4{bottom:376.757850px;}
.y126{bottom:381.988050px;}
.y17d{bottom:382.126500px;}
.y22{bottom:383.298600px;}
.y3e{bottom:384.834000px;}
.y75{bottom:385.987350px;}
.y1a2{bottom:386.485650px;}
.y97{bottom:386.818350px;}
.y14a{bottom:394.789500px;}
.yf3{bottom:394.839150px;}
.y17c{bottom:399.013200px;}
.y125{bottom:399.920850px;}
.y21{bottom:402.448200px;}
.y3d{bottom:402.873150px;}
.y1a1{bottom:402.966750px;}
.y74{bottom:403.962300px;}
.y96{bottom:404.931750px;}
.yf2{bottom:412.920600px;}
.y17b{bottom:415.899900px;}
.y124{bottom:417.853650px;}
.y3c{bottom:420.912300px;}
.y20{bottom:421.597650px;}
.y73{bottom:421.937250px;}
.y95{bottom:423.045150px;}
.ybc{bottom:426.321300px;}
.y149{bottom:427.400550px;}
.y1a0{bottom:427.467450px;}
.yf1{bottom:431.002050px;}
.y17a{bottom:432.786450px;}
.y123{bottom:435.786300px;}
.y3b{bottom:438.951450px;}
.y1f{bottom:440.747100px;}
.y94{bottom:441.158550px;}
.ybb{bottom:442.759650px;}
.y72{bottom:443.738400px;}
.y19f{bottom:443.948550px;}
.y148{bottom:445.333350px;}
.yf0{bottom:449.083500px;}
.y179{bottom:449.673150px;}
.y122{bottom:453.719100px;}
.y3a{bottom:456.990600px;}
.y93{bottom:459.271800px;}
.y1e{bottom:459.896550px;}
.y19e{bottom:460.429800px;}
.y71{bottom:462.166050px;}
.y147{bottom:463.266000px;}
.y178{bottom:466.559850px;}
.yef{bottom:467.164800px;}
.yba{bottom:471.601500px;}
.y121{bottom:471.651900px;}
.y39{bottom:475.029750px;}
.y19d{bottom:476.910900px;}
.y92{bottom:477.385200px;}
.y1d{bottom:479.046000px;}
.y146{bottom:481.198800px;}
.y177{bottom:483.446550px;}
.yee{bottom:485.246250px;}
.y120{bottom:489.584550px;}
.y38{bottom:493.068900px;}
.yb9{bottom:493.303350px;}
.y91{bottom:495.498600px;}
.y1c{bottom:498.195450px;}
.y145{bottom:499.131600px;}
.y176{bottom:500.333250px;}
.y19c{bottom:501.411450px;}
.yed{bottom:503.327700px;}
.y11f{bottom:507.517350px;}
.y37{bottom:511.108200px;}
.yb8{bottom:511.236150px;}
.y90{bottom:513.612000px;}
.y70{bottom:515.133900px;}
.y144{bottom:517.064250px;}
.y1b{bottom:517.345050px;}
.y19b{bottom:517.892700px;}
.y175{bottom:520.131300px;}
.yec{bottom:521.409150px;}
.y11e{bottom:525.450150px;}
.y36{bottom:529.147350px;}
.yb7{bottom:529.168950px;}
.y8f{bottom:531.725400px;}
.y6f{bottom:533.108850px;}
.y19a{bottom:534.373800px;}
.y143{bottom:534.997050px;}
.y1a{bottom:536.494500px;}
.yeb{bottom:539.490450px;}
.y11d{bottom:543.382800px;}
.yb6{bottom:547.101600px;}
.y35{bottom:547.186500px;}
.y8e{bottom:549.838650px;}
.y199{bottom:550.855050px;}
.y6e{bottom:551.083950px;}
.y174{bottom:552.378000px;}
.y142{bottom:552.929850px;}
.y19{bottom:555.643950px;}
.y11c{bottom:561.315600px;}
.yea{bottom:562.931100px;}
.yb5{bottom:565.034400px;}
.y198{bottom:567.336150px;}
.y8d{bottom:567.952050px;}
.y6d{bottom:569.058900px;}
.y34{bottom:569.976150px;}
.y173{bottom:570.310800px;}
.y141{bottom:570.862500px;}
.y11b{bottom:579.248400px;}
.yb4{bottom:582.967200px;}
.y197{bottom:583.817250px;}
.y8c{bottom:586.065450px;}
.y6c{bottom:587.034000px;}
.y172{bottom:588.243450px;}
.y140{bottom:588.795300px;}
.y11a{bottom:597.181050px;}
.y18{bottom:597.473850px;}
.yb3{bottom:600.900000px;}
.y8b{bottom:604.178850px;}
.y6b{bottom:605.008950px;}
.y171{bottom:606.176250px;}
.y13f{bottom:606.728100px;}
.y196{bottom:608.317950px;}
.y119{bottom:615.113850px;}
.yb2{bottom:618.832650px;}
.ye9{bottom:621.379650px;}
.y8a{bottom:622.292250px;}
.y6a{bottom:622.984050px;}
.y170{bottom:624.109050px;}
.y13e{bottom:624.660750px;}
.y195{bottom:624.799050px;}
.y118{bottom:633.046650px;}
.yb1{bottom:636.765450px;}
.ye8{bottom:639.460950px;}
.y89{bottom:640.405650px;}
.y69{bottom:640.959000px;}
.y194{bottom:641.280300px;}
.y16f{bottom:642.041700px;}
.y13d{bottom:642.593550px;}
.y17{bottom:643.338300px;}
.y117{bottom:650.979300px;}
.yb0{bottom:654.698250px;}
.ye7{bottom:657.542400px;}
.y193{bottom:657.761400px;}
.y88{bottom:658.518900px;}
.y68{bottom:658.933950px;}
.y16e{bottom:659.974500px;}
.y13c{bottom:660.526350px;}
.y16{bottom:670.464900px;}
.yaf{bottom:672.630900px;}
.y116{bottom:673.670250px;}
.y192{bottom:674.242500px;}
.ye6{bottom:675.623850px;}
.y87{bottom:676.632300px;}
.y67{bottom:676.909050px;}
.y16d{bottom:677.907300px;}
.y13b{bottom:678.459000px;}
.y15{bottom:688.397700px;}
.yae{bottom:690.563700px;}
.ye5{bottom:693.705150px;}
.y86{bottom:694.745700px;}
.y66{bottom:694.884000px;}
.y16c{bottom:695.839950px;}
.y191{bottom:698.743200px;}
.y13a{bottom:703.894800px;}
.y14{bottom:706.330350px;}
.yad{bottom:708.496500px;}
.ye4{bottom:711.786600px;}
.y65{bottom:712.859100px;}
.y16b{bottom:713.772750px;}
.y190{bottom:715.224300px;}
.y139{bottom:721.827600px;}
.y13{bottom:724.263150px;}
.yac{bottom:726.429150px;}
.ye3{bottom:729.868050px;}
.y115{bottom:731.553300px;}
.y16a{bottom:731.705550px;}
.y12{bottom:742.195950px;}
.yab{bottom:744.361950px;}
.ye2{bottom:749.100450px;}
.y11{bottom:760.128600px;}
.y64{bottom:762.622500px;}
.y114{bottom:764.164350px;}
.ye1{bottom:767.181900px;}
.yaa{bottom:769.797750px;}
.y10{bottom:778.061400px;}
.y169{bottom:781.468950px;}
.y113{bottom:782.097150px;}
.ye0{bottom:785.263350px;}
.y63{bottom:795.233550px;}
.yf{bottom:795.994200px;}
.y112{bottom:800.029950px;}
.ydf{bottom:803.344650px;}
.y62{bottom:813.166350px;}
.ye{bottom:813.927000px;}
.y111{bottom:817.962600px;}
.yde{bottom:821.426100px;}
.y1c3{bottom:826.769550px;}
.y61{bottom:831.099000px;}
.yd{bottom:831.859650px;}
.y110{bottom:835.895400px;}
.ydd{bottom:839.507550px;}
.y1c2{bottom:843.207900px;}
.y60{bottom:849.031800px;}
.yc{bottom:849.792450px;}
.y10f{bottom:853.828200px;}
.ydc{bottom:857.588850px;}
.y1c1{bottom:859.646250px;}
.y1c8{bottom:866.080350px;}
.y5f{bottom:866.964600px;}
.ydb{bottom:875.670300px;}
.y1c0{bottom:876.084600px;}
.y10e{bottom:879.264000px;}
.y1c7{bottom:882.518700px;}
.y5e{bottom:884.897250px;}
.yb{bottom:887.098050px;}
.yda{bottom:893.751750px;}
.y1bf{bottom:898.957050px;}
.y5d{bottom:902.830050px;}
.ya{bottom:908.247900px;}
.yd9{bottom:911.833200px;}
.y10d{bottom:913.319700px;}
.y1be{bottom:915.395400px;}
.y5c{bottom:920.762850px;}
.y9{bottom:922.890000px;}
.yd8{bottom:929.914500px;}
.y10c{bottom:931.252500px;}
.y1bd{bottom:931.833750px;}
.y5b{bottom:938.695500px;}
.y8{bottom:947.330400px;}
.yd7{bottom:947.995950px;}
.y1bc{bottom:948.272100px;}
.y10b{bottom:949.185150px;}
.y1c6{bottom:954.706200px;}
.y5a{bottom:956.628300px;}
.yd6{bottom:966.077400px;}
.y10a{bottom:967.117950px;}
.y7{bottom:968.480250px;}
.y1bb{bottom:971.144550px;}
.y59{bottom:974.561100px;}
.yd5{bottom:984.158850px;}
.y109{bottom:985.050750px;}
.y1ba{bottom:987.582900px;}
.y58{bottom:992.493750px;}
.y6{bottom:995.531850px;}
.yd4{bottom:1002.240150px;}
.y108{bottom:1002.983400px;}
.y1b9{bottom:1004.021400px;}
.y57{bottom:1010.426550px;}
.yd3{bottom:1020.321600px;}
.y1c5{bottom:1020.459750px;}
.y107{bottom:1020.916200px;}
.y1b8{bottom:1026.893850px;}
.y56{bottom:1028.359350px;}
.y1c4{bottom:1036.898100px;}
.yd2{bottom:1038.403050px;}
.y106{bottom:1038.849000px;}
.y5{bottom:1041.730350px;}
.y1b7{bottom:1043.332200px;}
.y55{bottom:1046.292000px;}
.yd1{bottom:1056.484350px;}
.y105{bottom:1056.781650px;}
.y1b6{bottom:1059.770550px;}
.y4{bottom:1062.651900px;}
.y54{bottom:1071.727800px;}
.yd0{bottom:1074.565800px;}
.y104{bottom:1074.714450px;}
.y1b5{bottom:1076.208900px;}
.y53{bottom:1089.660600px;}
.ycf{bottom:1092.647250px;}
.y2{bottom:1114.465500px;}
.y3{bottom:1130.903850px;}
.h11{height:31.382316px;}
.h9{height:31.848568px;}
.h7{height:33.150978px;}
.h3{height:37.335990px;}
.he{height:37.927770px;}
.h8{height:38.519551px;}
.h4{height:40.348692px;}
.ha{height:44.831880px;}
.h10{height:46.740426px;}
.hd{height:47.079434px;}
.h5{height:52.303860px;}
.hb{height:53.074716px;}
.hc{height:54.784549px;}
.h6{height:59.181978px;}
.h2{height:1147.500000px;}
.hf{height:1149.000000px;}
.h0{height:1262.834550px;}
.h1{height:1263.000000px;}
.w5{width:742.500000px;}
.w3{width:744.000000px;}
.w4{width:745.500000px;}
.w2{width:747.000000px;}
.w0{width:892.913400px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:6.599685px;}
.x2{left:9.599685px;}
.x40{left:16.562175px;}
.x25{left:18.554895px;}
.x3d{left:21.543660px;}
.x18{left:23.643330px;}
.x7{left:25.531185px;}
.x8{left:38.399415px;}
.x6{left:39.942645px;}
.x17{left:43.630860px;}
.x35{left:49.833435px;}
.x4{left:61.375665px;}
.x3b{left:62.866080px;}
.x1{left:66.000000px;}
.x3a{left:67.535955px;}
.x1a{left:69.000000px;}
.x9{left:70.569990px;}
.x37{left:72.973935px;}
.x33{left:74.324805px;}
.x2e{left:79.762785px;}
.x34{left:81.277950px;}
.xc{left:88.500000px;}
.x39{left:93.168900px;}
.x32{left:95.806800px;}
.x31{left:99.957750px;}
.x16{left:105.071250px;}
.x30{left:107.014650px;}
.x22{left:109.070700px;}
.x21{left:113.740650px;}
.x1c{left:119.178600px;}
.x23{left:120.693750px;}
.x3c{left:124.400550px;}
.x20{left:135.222600px;}
.x1f{left:139.373550px;}
.x1e{left:146.430450px;}
.x3e{left:155.777700px;}
.x36{left:164.374650px;}
.x15{left:172.617750px;}
.x13{left:192.439200px;}
.x12{left:197.109150px;}
.xd{left:200.823900px;}
.x14{left:204.062250px;}
.x38{left:206.265450px;}
.x2f{left:213.054300px;}
.x11{left:218.591100px;}
.x10{left:222.742050px;}
.xf{left:229.798950px;}
.x5{left:278.625600px;}
.x24{left:296.212650px;}
.x1d{left:302.501100px;}
.xe{left:335.838600px;}
.x3{left:363.885750px;}
.x26{left:382.857000px;}
.xa{left:385.857000px;}
.x2d{left:388.477650px;}
.x41{left:392.819550px;}
.x3f{left:394.919250px;}
.xb{left:400.801050px;}
.x2c{left:478.594950px;}
.x27{left:480.650250px;}
.x2b{left:488.973150px;}
.x28{left:491.723250px;}
.x29{left:493.746750px;}
.x2a{left:499.662300px;}
.x19{left:708.079050px;}
@media print{
.v2{vertical-align:-23.138133pt;}
.v3{vertical-align:-7.970133pt;}
.v6{vertical-align:-5.313067pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:19.282133pt;}
.v5{vertical-align:20.314667pt;}
.v1{vertical-align:23.138667pt;}
.lsf{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.010379pt;}
.ls9{letter-spacing:0.015898pt;}
.ls17{letter-spacing:0.016111pt;}
.ls26{letter-spacing:0.020705pt;}
.ls25{letter-spacing:0.021238pt;}
.ls8{letter-spacing:0.023935pt;}
.ls20{letter-spacing:0.026351pt;}
.ls1{letter-spacing:0.026553pt;}
.ls1f{letter-spacing:0.031614pt;}
.ls0{letter-spacing:0.031850pt;}
.ls1d{letter-spacing:0.032147pt;}
.ls1c{letter-spacing:0.041220pt;}
.ls1a{letter-spacing:0.041753pt;}
.ls12{letter-spacing:0.042395pt;}
.lse{letter-spacing:0.042502pt;}
.ls10{letter-spacing:0.042788pt;}
.ls16{letter-spacing:1.173540pt;}
.ls3{letter-spacing:2.667576pt;}
.ls1e{letter-spacing:2.672429pt;}
.ls22{letter-spacing:2.672546pt;}
.ls1b{letter-spacing:2.672963pt;}
.ls4{letter-spacing:2.688719pt;}
.ls2{letter-spacing:3.934583pt;}
.ls19{letter-spacing:15.830296pt;}
.ls21{letter-spacing:16.989346pt;}
.lsd{letter-spacing:17.170029pt;}
.ls24{letter-spacing:17.721846pt;}
.ls15{letter-spacing:18.193046pt;}
.lsb{letter-spacing:20.383949pt;}
.ls5{letter-spacing:22.459726pt;}
.ls18{letter-spacing:22.469229pt;}
.ls7{letter-spacing:23.182349pt;}
.lsa{letter-spacing:23.550296pt;}
.ls6{letter-spacing:24.797626pt;}
.ls11{letter-spacing:24.848963pt;}
.lsc{letter-spacing:26.415896pt;}
.ls14{letter-spacing:106.235353pt;}
.ls13{letter-spacing:127.342553pt;}
.ws5f{word-spacing:-0.090323pt;}
.wsb1{word-spacing:-0.090216pt;}
.ws1ad{word-spacing:-0.079670pt;}
.ws1f{word-spacing:-0.069074pt;}
.ws7{word-spacing:-0.066418pt;}
.ws77{word-spacing:-0.058447pt;}
.wse{word-spacing:-0.053134pt;}
.ws0{word-spacing:-0.047821pt;}
.ws60{word-spacing:0.000000pt;}
.wsc9{word-spacing:8.804359pt;}
.wsd6{word-spacing:8.804893pt;}
.ws16c{word-spacing:8.828348pt;}
.ws2{word-spacing:10.872709pt;}
.ws3{word-spacing:11.108727pt;}
.ws51{word-spacing:11.807601pt;}
.ws1a5{word-spacing:12.086488pt;}
.ws9d{word-spacing:12.137693pt;}
.wsf7{word-spacing:12.180593pt;}
.ws4b{word-spacing:12.264710pt;}
.ws54{word-spacing:12.383068pt;}
.ws184{word-spacing:12.548934pt;}
.ws15a{word-spacing:12.676401pt;}
.ws4e{word-spacing:12.862785pt;}
.ws103{word-spacing:12.873693pt;}
.ws8f{word-spacing:12.954801pt;}
.ws190{word-spacing:13.028442pt;}
.ws90{word-spacing:13.092038pt;}
.ws150{word-spacing:13.128668pt;}
.ws151{word-spacing:13.128838pt;}
.ws195{word-spacing:13.168152pt;}
.ws101{word-spacing:13.168988pt;}
.ws14f{word-spacing:13.199773pt;}
.ws102{word-spacing:13.248918pt;}
.ws169{word-spacing:13.251585pt;}
.ws21{word-spacing:13.394801pt;}
.ws20{word-spacing:13.399852pt;}
.ws149{word-spacing:13.430001pt;}
.wsac{word-spacing:13.532652pt;}
.ws9f{word-spacing:13.645959pt;}
.ws179{word-spacing:13.723334pt;}
.wsdb{word-spacing:13.743559pt;}
.ws24{word-spacing:13.775601pt;}
.ws12b{word-spacing:13.862534pt;}
.ws191{word-spacing:13.875376pt;}
.ws8e{word-spacing:14.019868pt;}
.ws153{word-spacing:14.021105pt;}
.ws140{word-spacing:14.068976pt;}
.ws29{word-spacing:14.152626pt;}
.ws148{word-spacing:14.160918pt;}
.ws163{word-spacing:14.291588pt;}
.ws162{word-spacing:14.295502pt;}
.ws93{word-spacing:14.317426pt;}
.wsec{word-spacing:14.341105pt;}
.ws2a{word-spacing:14.391318pt;}
.ws35{word-spacing:14.444679pt;}
.wsea{word-spacing:14.466268pt;}
.ws36{word-spacing:14.468934pt;}
.ws123{word-spacing:14.611334pt;}
.ws154{word-spacing:14.631110pt;}
.ws16a{word-spacing:14.644359pt;}
.ws9e{word-spacing:14.698518pt;}
.ws50{word-spacing:14.713734pt;}
.ws15c{word-spacing:14.726785pt;}
.ws125{word-spacing:14.795826pt;}
.ws146{word-spacing:14.826226pt;}
.ws147{word-spacing:14.849734pt;}
.ws2c{word-spacing:14.874438pt;}
.ws13{word-spacing:14.983601pt;}
.ws171{word-spacing:15.025734pt;}
.ws172{word-spacing:15.030785pt;}
.ws3b{word-spacing:15.111773pt;}
.wsfc{word-spacing:15.186801pt;}
.wsf1{word-spacing:15.257372pt;}
.ws14{word-spacing:15.305201pt;}
.ws58{word-spacing:15.368918pt;}
.ws95{word-spacing:15.379505pt;}
.ws47{word-spacing:15.403826pt;}
.ws52{word-spacing:15.420118pt;}
.ws53{word-spacing:15.425201pt;}
.ws22{word-spacing:15.433159pt;}
.wsc2{word-spacing:15.484536pt;}
.wsc3{word-spacing:15.486355pt;}
.wsab{word-spacing:15.492401pt;}
.ws124{word-spacing:15.526572pt;}
.ws152{word-spacing:15.551068pt;}
.wscf{word-spacing:15.582705pt;}
.wsdf{word-spacing:15.599601pt;}
.ws7d{word-spacing:15.637959pt;}
.ws27{word-spacing:15.902172pt;}
.ws18c{word-spacing:15.913734pt;}
.wseb{word-spacing:15.961734pt;}
.ws57{word-spacing:15.978801pt;}
.wsaf{word-spacing:16.063026pt;}
.ws189{word-spacing:16.087238pt;}
.ws118{word-spacing:16.107293pt;}
.ws117{word-spacing:16.166252pt;}
.wsfd{word-spacing:16.168992pt;}
.wsf{word-spacing:16.253105pt;}
.ws19e{word-spacing:16.274231pt;}
.ws1ae{word-spacing:16.292354pt;}
.ws136{word-spacing:16.334669pt;}
.ws197{word-spacing:16.334896pt;}
.ws1a9{word-spacing:16.334989pt;}
.ws4{word-spacing:16.335109pt;}
.ws19a{word-spacing:16.335642pt;}
.ws19f{word-spacing:16.337022pt;}
.ws1a1{word-spacing:16.342932pt;}
.ws1a8{word-spacing:16.354407pt;}
.ws1aa{word-spacing:16.354461pt;}
.wsef{word-spacing:16.355511pt;}
.ws1a4{word-spacing:16.358488pt;}
.ws160{word-spacing:16.359021pt;}
.wsee{word-spacing:16.363334pt;}
.wsc4{word-spacing:16.366985pt;}
.ws19b{word-spacing:16.367198pt;}
.wsd{word-spacing:16.377508pt;}
.ws185{word-spacing:16.444401pt;}
.ws157{word-spacing:16.463852pt;}
.ws4a{word-spacing:16.468652pt;}
.ws37{word-spacing:16.476039pt;}
.ws38{word-spacing:16.500038pt;}
.wsf4{word-spacing:16.504668pt;}
.wsf0{word-spacing:16.526252pt;}
.ws18e{word-spacing:16.590001pt;}
.ws156{word-spacing:16.604118pt;}
.ws11f{word-spacing:16.702001pt;}
.ws155{word-spacing:16.715293pt;}
.wsd3{word-spacing:16.807601pt;}
.ws43{word-spacing:16.900572pt;}
.ws39{word-spacing:16.947052pt;}
.ws12a{word-spacing:16.990252pt;}
.wsaa{word-spacing:17.082268pt;}
.wsf3{word-spacing:17.086694pt;}
.ws145{word-spacing:17.095643pt;}
.ws182{word-spacing:17.096626pt;}
.wsf8{word-spacing:17.100934pt;}
.ws3a{word-spacing:17.161985pt;}
.wsc1{word-spacing:17.186945pt;}
.wsd4{word-spacing:17.202268pt;}
.ws97{word-spacing:17.208134pt;}
.ws98{word-spacing:17.208668pt;}
.ws26{word-spacing:17.229478pt;}
.wse1{word-spacing:17.315659pt;}
.ws187{word-spacing:17.322054pt;}
.ws188{word-spacing:17.327105pt;}
.ws86{word-spacing:17.389638pt;}
.ws2b{word-spacing:17.448465pt;}
.ws1{word-spacing:17.516207pt;}
.ws1a7{word-spacing:17.518397pt;}
.ws198{word-spacing:17.518930pt;}
.ws1a2{word-spacing:17.526422pt;}
.ws1a6{word-spacing:17.526955pt;}
.ws1ab{word-spacing:17.532497pt;}
.ws19c{word-spacing:17.533030pt;}
.wsc{word-spacing:17.549614pt;}
.wsb{word-spacing:17.555155pt;}
.ws1af{word-spacing:17.558716pt;}
.ws19d{word-spacing:17.558769pt;}
.ws192{word-spacing:17.562842pt;}
.ws138{word-spacing:17.644401pt;}
.ws141{word-spacing:17.657693pt;}
.ws19{word-spacing:17.658173pt;}
.ws1a{word-spacing:17.658226pt;}
.wsc0{word-spacing:17.668860pt;}
.wsa7{word-spacing:17.672134pt;}
.ws88{word-spacing:17.673911pt;}
.ws1b{word-spacing:17.681905pt;}
.ws3d{word-spacing:17.682012pt;}
.ws11a{word-spacing:17.682065pt;}
.ws109{word-spacing:17.682161pt;}
.ws1d{word-spacing:17.682268pt;}
.ws63{word-spacing:17.687318pt;}
.ws59{word-spacing:17.687852pt;}
.ws112{word-spacing:17.698518pt;}
.wsb5{word-spacing:17.699126pt;}
.wsb2{word-spacing:17.699659pt;}
.ws174{word-spacing:17.700619pt;}
.ws12f{word-spacing:17.706310pt;}
.ws2d{word-spacing:17.726054pt;}
.ws48{word-spacing:17.757426pt;}
.ws92{word-spacing:17.779585pt;}
.ws3c{word-spacing:17.792668pt;}
.ws137{word-spacing:17.819505pt;}
.wsc6{word-spacing:17.916359pt;}
.wse6{word-spacing:17.940934pt;}
.wse9{word-spacing:17.989959pt;}
.ws68{word-spacing:18.055798pt;}
.ws1a0{word-spacing:18.068918pt;}
.ws122{word-spacing:18.089693pt;}
.ws23{word-spacing:18.139585pt;}
.ws11{word-spacing:18.185201pt;}
.wsc7{word-spacing:18.338439pt;}
.wsca{word-spacing:18.342534pt;}
.wsae{word-spacing:18.358252pt;}
.ws8a{word-spacing:18.381718pt;}
.ws100{word-spacing:18.386226pt;}
.wsed{word-spacing:18.450059pt;}
.wsa0{word-spacing:18.482438pt;}
.wsfa{word-spacing:18.511852pt;}
.ws18{word-spacing:18.659052pt;}
.ws78{word-spacing:18.725105pt;}
.ws25{word-spacing:18.737693pt;}
.ws14b{word-spacing:18.811868pt;}
.ws1ac{word-spacing:18.934585pt;}
.ws199{word-spacing:18.937089pt;}
.ws84{word-spacing:18.972939pt;}
.ws120{word-spacing:19.080134pt;}
.ws79{word-spacing:19.114268pt;}
.ws8c{word-spacing:19.145201pt;}
.ws159{word-spacing:19.183110pt;}
.ws87{word-spacing:19.204572pt;}
.ws4c{word-spacing:19.290268pt;}
.ws13c{word-spacing:19.320838pt;}
.ws14a{word-spacing:19.371334pt;}
.ws17{word-spacing:19.416385pt;}
.ws166{word-spacing:19.460572pt;}
.ws1a3{word-spacing:19.468797pt;}
.ws173{word-spacing:19.502001pt;}
.ws4f{word-spacing:19.515334pt;}
.ws18f{word-spacing:19.668652pt;}
.ws18b{word-spacing:19.671110pt;}
.ws42{word-spacing:19.711601pt;}
.ws13f{word-spacing:19.743559pt;}
.ws178{word-spacing:19.748934pt;}
.wsce{word-spacing:19.759777pt;}
.ws193{word-spacing:19.772205pt;}
.ws13e{word-spacing:19.772652pt;}
.ws13d{word-spacing:19.772972pt;}
.ws104{word-spacing:19.786226pt;}
.wsf6{word-spacing:19.809734pt;}
.wsd0{word-spacing:19.834438pt;}
.ws181{word-spacing:19.927601pt;}
.wsf2{word-spacing:19.951643pt;}
.wsb3{word-spacing:20.035408pt;}
.ws61{word-spacing:20.042908pt;}
.ws194{word-spacing:20.054576pt;}
.ws170{word-spacing:20.055601pt;}
.ws14e{word-spacing:20.060893pt;}
.ws71{word-spacing:20.122972pt;}
.ws49{word-spacing:20.202801pt;}
.ws81{word-spacing:20.274438pt;}
.ws15b{word-spacing:20.335318pt;}
.wscd{word-spacing:20.391318pt;}
.wse7{word-spacing:20.429105pt;}
.wsd7{word-spacing:20.537985pt;}
.ws96{word-spacing:20.542576pt;}
.ws31{word-spacing:20.549959pt;}
.ws9c{word-spacing:20.573959pt;}
.ws32{word-spacing:20.582252pt;}
.ws85{word-spacing:20.646653pt;}
.ws91{word-spacing:20.655026pt;}
.ws18d{word-spacing:20.791601pt;}
.ws12d{word-spacing:20.792668pt;}
.ws16f{word-spacing:20.835910pt;}
.ws121{word-spacing:20.839238pt;}
.ws15{word-spacing:20.848305pt;}
.ws2f{word-spacing:20.848838pt;}
.ws168{word-spacing:20.901638pt;}
.wsa9{word-spacing:20.905201pt;}
.ws14c{word-spacing:20.912176pt;}
.wsf5{word-spacing:20.928668pt;}
.ws6c{word-spacing:20.958001pt;}
.ws6d{word-spacing:20.958534pt;}
.ws56{word-spacing:21.047068pt;}
.ws196{word-spacing:21.126576pt;}
.ws9a{word-spacing:21.142001pt;}
.ws16d{word-spacing:21.158859pt;}
.wsdc{word-spacing:21.220652pt;}
.ws180{word-spacing:21.274972pt;}
.wse8{word-spacing:21.280134pt;}
.ws30{word-spacing:21.283585pt;}
.ws70{word-spacing:21.385452pt;}
.wsd9{word-spacing:21.453468pt;}
.wsa8{word-spacing:21.532359pt;}
.ws8b{word-spacing:21.582252pt;}
.ws16{word-spacing:21.657526pt;}
.wsa6{word-spacing:21.680918pt;}
.ws10{word-spacing:21.698268pt;}
.wse0{word-spacing:21.728838pt;}
.ws119{word-spacing:21.740934pt;}
.wsde{word-spacing:21.741792pt;}
.ws175{word-spacing:21.755868pt;}
.ws10d{word-spacing:21.768918pt;}
.wscc{word-spacing:21.774465pt;}
.wsf9{word-spacing:21.778801pt;}
.ws142{word-spacing:21.831852pt;}
.ws9b{word-spacing:21.887772pt;}
.ws40{word-spacing:21.888343pt;}
.ws75{word-spacing:21.888610pt;}
.wse5{word-spacing:21.894534pt;}
.wsfb{word-spacing:21.921372pt;}
.ws186{word-spacing:21.976093pt;}
.ws10a{word-spacing:22.027366pt;}
.ws83{word-spacing:22.039122pt;}
.ws41{word-spacing:22.040669pt;}
.ws76{word-spacing:22.047933pt;}
.ws82{word-spacing:22.146801pt;}
.ws13b{word-spacing:22.158785pt;}
.ws17b{word-spacing:22.180118pt;}
.ws108{word-spacing:22.193201pt;}
.ws99{word-spacing:22.194806pt;}
.wsdd{word-spacing:22.229468pt;}
.ws14d{word-spacing:22.268401pt;}
.ws16b{word-spacing:22.466758pt;}
.wsd5{word-spacing:22.533878pt;}
.ws18a{word-spacing:22.560838pt;}
.wsd8{word-spacing:22.696385pt;}
.ws46{word-spacing:22.742001pt;}
.ws28{word-spacing:22.787868pt;}
.wsa3{word-spacing:22.897693pt;}
.ws34{word-spacing:22.940726pt;}
.ws94{word-spacing:23.032668pt;}
.ws12{word-spacing:23.164572pt;}
.ws11b{word-spacing:23.233201pt;}
.ws11c{word-spacing:23.238785pt;}
.ws11d{word-spacing:23.281734pt;}
.ws11e{word-spacing:23.287318pt;}
.wsfe{word-spacing:23.361693pt;}
.ws167{word-spacing:23.364572pt;}
.ws73{word-spacing:23.413792pt;}
.ws89{word-spacing:23.491334pt;}
.ws111{word-spacing:23.504134pt;}
.ws5a{word-spacing:23.524934pt;}
.ws1c{word-spacing:23.585361pt;}
.ws7a{word-spacing:23.672305pt;}
.ws2e{word-spacing:23.714118pt;}
.wsa5{word-spacing:23.737905pt;}
.ws55{word-spacing:23.787659pt;}
.ws177{word-spacing:23.837468pt;}
.ws126{word-spacing:23.844934pt;}
.wsd2{word-spacing:23.851052pt;}
.ws4d{word-spacing:23.960134pt;}
.wsa{word-spacing:24.051443pt;}
.ws15d{word-spacing:24.071318pt;}
.ws8{word-spacing:24.074214pt;}
.ws9{word-spacing:24.074305pt;}
.ws33{word-spacing:24.194759pt;}
.ws7f{word-spacing:24.248134pt;}
.wsda{word-spacing:24.259505pt;}
.wsff{word-spacing:24.309718pt;}
.ws127{word-spacing:24.335068pt;}
.wsc5{word-spacing:24.464093pt;}
.ws176{word-spacing:24.494706pt;}
.wsb0{word-spacing:24.503068pt;}
.wscb{word-spacing:24.537201pt;}
.ws158{word-spacing:24.639110pt;}
.ws12e{word-spacing:24.653185pt;}
.ws12c{word-spacing:24.669718pt;}
.ws74{word-spacing:24.722801pt;}
.ws6{word-spacing:24.878912pt;}
.wsa2{word-spacing:24.906268pt;}
.ws5{word-spacing:25.058060pt;}
.ws16e{word-spacing:25.151068pt;}
.ws139{word-spacing:25.283868pt;}
.ws13a{word-spacing:25.307376pt;}
.ws110{word-spacing:25.530268pt;}
.wsa1{word-spacing:25.646493pt;}
.ws6b{word-spacing:25.768385pt;}
.ws128{word-spacing:25.769734pt;}
.ws7b{word-spacing:25.792176pt;}
.ws3e{word-spacing:25.868280pt;}
.ws1e{word-spacing:25.868333pt;}
.ws6e{word-spacing:25.890727pt;}
.wsc8{word-spacing:25.969213pt;}
.ws3f{word-spacing:26.056300pt;}
.ws8d{word-spacing:26.084934pt;}
.ws17e{word-spacing:26.154759pt;}
.ws10f{word-spacing:26.164401pt;}
.ws17a{word-spacing:26.205638pt;}
.ws129{word-spacing:26.242438pt;}
.ws6a{word-spacing:26.284401pt;}
.ws183{word-spacing:26.302576pt;}
.ws44{word-spacing:26.362972pt;}
.ws10c{word-spacing:26.387826pt;}
.ws144{word-spacing:26.405468pt;}
.ws6f{word-spacing:26.485927pt;}
.wse2{word-spacing:26.610226pt;}
.wse3{word-spacing:26.638785pt;}
.wsa4{word-spacing:26.731334pt;}
.ws5d{word-spacing:26.755293pt;}
.ws17f{word-spacing:26.959852pt;}
.wsd1{word-spacing:27.611719pt;}
.ws17c{word-spacing:27.989185pt;}
.ws69{word-spacing:28.025905pt;}
.ws45{word-spacing:28.046576pt;}
.ws107{word-spacing:28.565111pt;}
.wse4{word-spacing:28.583601pt;}
.ws7e{word-spacing:29.417734pt;}
.wsad{word-spacing:29.471392pt;}
.ws72{word-spacing:29.519014pt;}
.ws7c{word-spacing:29.856093pt;}
.ws114{word-spacing:30.427052pt;}
.ws80{word-spacing:31.049372pt;}
.ws116{word-spacing:31.371868pt;}
.ws17d{word-spacing:31.889159pt;}
.ws113{word-spacing:32.407110pt;}
.ws5e{word-spacing:32.660860pt;}
.ws115{word-spacing:32.818801pt;}
.ws10b{word-spacing:32.828359pt;}
.ws10e{word-spacing:34.076934pt;}
.ws143{word-spacing:35.309426pt;}
.ws5b{word-spacing:35.532359pt;}
.ws105{word-spacing:35.854001pt;}
.ws106{word-spacing:35.878043pt;}
.ws5c{word-spacing:46.094001pt;}
.ws64{word-spacing:63.707506pt;}
.wsb4{word-spacing:64.850374pt;}
.wsb8{word-spacing:66.180359pt;}
.ws65{word-spacing:66.290759pt;}
.ws67{word-spacing:72.563293pt;}
.wsb6{word-spacing:74.114226pt;}
.wsb9{word-spacing:79.463559pt;}
.ws66{word-spacing:79.574493pt;}
.wsbf{word-spacing:90.274759pt;}
.wsbe{word-spacing:92.857693pt;}
.wsb7{word-spacing:103.558493pt;}
.wsbb{word-spacing:103.599286pt;}
.ws161{word-spacing:108.018892pt;}
.wsbc{word-spacing:116.841693pt;}
.wsbd{word-spacing:116.883552pt;}
.wsba{word-spacing:119.465952pt;}
.ws15e{word-spacing:123.366092pt;}
.ws165{word-spacing:127.027826pt;}
.ws15f{word-spacing:149.055559pt;}
.ws135{word-spacing:170.756779pt;}
.ws164{word-spacing:186.030493pt;}
.ws134{word-spacing:207.643425pt;}
.ws130{word-spacing:217.421558pt;}
.ws131{word-spacing:224.616225pt;}
.ws132{word-spacing:245.649292pt;}
.ws133{word-spacing:247.494092pt;}
.ws62{word-spacing:1103.719787pt;}
._6{margin-left:-5.850933pt;}
._19{margin-left:-4.961749pt;}
._9{margin-left:-3.710986pt;}
._0{margin-left:-2.509199pt;}
._4{margin-left:-1.471688pt;}
._7{width:0.891551pt;}
._b{width:1.831678pt;}
._6e{width:3.480205pt;}
._13{width:8.516212pt;}
._2f{width:9.496177pt;}
._17{width:13.541158pt;}
._f{width:14.816925pt;}
._55{width:15.713306pt;}
._2{width:16.728584pt;}
._1{width:18.667277pt;}
._31{width:19.894320pt;}
._15{width:21.145088pt;}
._a{width:22.631814pt;}
._d{width:23.563832pt;}
._2b{width:24.515763pt;}
._5{width:25.447812pt;}
._18{width:26.380603pt;}
._2d{width:27.454961pt;}
._e{width:29.290270pt;}
._51{width:30.194316pt;}
._16{width:31.408082pt;}
._12{width:32.621516pt;}
._11{width:33.789122pt;}
._c{width:35.901314pt;}
._30{width:37.280681pt;}
._10{width:39.532877pt;}
._53{width:40.853683pt;}
._50{width:44.215115pt;}
._8{width:48.521646pt;}
._2c{width:49.525690pt;}
._52{width:53.552373pt;}
._14{width:54.760566pt;}
._54{width:56.439439pt;}
._2e{width:63.254344pt;}
._44{width:64.410046pt;}
._35{width:66.884727pt;}
._1a{width:68.973689pt;}
._37{width:71.146025pt;}
._24{width:72.657540pt;}
._34{width:73.764047pt;}
._3f{width:77.085913pt;}
._36{width:77.996223pt;}
._26{width:79.709960pt;}
._58{width:84.468217pt;}
._20{width:85.941380pt;}
._39{width:87.229120pt;}
._45{width:88.209573pt;}
._23{width:89.261913pt;}
._3e{width:90.369113pt;}
._3c{width:92.952047pt;}
._41{width:101.120293pt;}
._1f{width:102.545113pt;}
._3a{width:103.652847pt;}
._2a{width:105.953378pt;}
._65{width:107.249166pt;}
._1e{width:111.769433pt;}
._47{width:113.989533pt;}
._3b{width:116.936047pt;}
._3{width:120.602114pt;}
._22{width:125.052740pt;}
._49{width:130.219353pt;}
._5f{width:132.633431pt;}
._43{width:134.325225pt;}
._48{width:140.626287pt;}
._4a{width:143.503620pt;}
._56{width:147.225673pt;}
._61{width:149.809620pt;}
._42{width:150.923574pt;}
._4e{width:160.892158pt;}
._57{width:168.851468pt;}
._60{width:174.007722pt;}
._28{width:176.388692pt;}
._4d{width:177.490507pt;}
._33{width:179.503669pt;}
._64{width:181.604851pt;}
._6d{width:185.438221pt;}
._27{width:192.987040pt;}
._6b{width:197.645118pt;}
._67{width:199.415747pt;}
._4f{width:202.136119pt;}
._5d{width:203.068585pt;}
._63{width:206.407066pt;}
._62{width:214.466876pt;}
._29{width:217.632652pt;}
._5c{width:219.667200pt;}
._69{width:220.778484pt;}
._40{width:227.250653pt;}
._5a{width:234.839321pt;}
._6c{width:238.889079pt;}
._3d{width:241.981134pt;}
._5e{width:244.312652pt;}
._4c{width:253.817586pt;}
._4b{width:255.264867pt;}
._38{width:267.148589pt;}
._25{width:269.314120pt;}
._46{width:280.432323pt;}
._21{width:284.044601pt;}
._6a{width:290.570653pt;}
._1d{width:295.928323pt;}
._68{width:305.301134pt;}
._5b{width:310.724601pt;}
._66{width:330.468589pt;}
._59{width:335.892056pt;}
._1c{width:340.280483pt;}
._1b{width:440.785211pt;}
._32{width:587.002647pt;}
.fs9{font-size:26.567040pt;}
.fs8{font-size:31.880448pt;}
.fs5{font-size:37.193856pt;}
.fs3{font-size:42.507264pt;}
.fs0{font-size:47.820672pt;}
.fs4{font-size:53.134080pt;}
.fs7{font-size:58.447467pt;}
.fs2{font-size:63.760907pt;}
.fs1{font-size:66.417600pt;}
.fs6{font-size:69.074293pt;}
.y0{bottom:0.000000pt;}
.y52{bottom:4.800253pt;}
.y51{bottom:36.680707pt;}
.y1{bottom:48.000000pt;}
.y18f{bottom:51.292573pt;}
.y1b4{bottom:51.330627pt;}
.y33{bottom:51.340147pt;}
.y138{bottom:52.620933pt;}
.y85{bottom:52.658507pt;}
.y50{bottom:52.715520pt;}
.y168{bottom:52.722053pt;}
.y103{bottom:52.753067pt;}
.ya9{bottom:52.781480pt;}
.y15a{bottom:53.096240pt;}
.yce{bottom:53.238347pt;}
.y18e{bottom:65.904453pt;}
.y1b3{bottom:65.980533pt;}
.y32{bottom:68.361907pt;}
.y137{bottom:68.561147pt;}
.y4f{bottom:68.750347pt;}
.y167{bottom:68.763400pt;}
.y102{bottom:68.825413pt;}
.y84{bottom:68.927187pt;}
.ycd{bottom:69.795960pt;}
.ya8{bottom:70.125373pt;}
.y159{bottom:73.192067pt;}
.y18d{bottom:80.516320pt;}
.y1b2{bottom:80.630453pt;}
.y136{bottom:84.501373pt;}
.y4e{bottom:84.785147pt;}
.y166{bottom:84.804760pt;}
.y101{bottom:84.897800pt;}
.y83{bottom:84.904973pt;}
.y31{bottom:85.383600pt;}
.ya7{bottom:86.226133pt;}
.ycc{bottom:86.353600pt;}
.y158{bottom:89.607600pt;}
.y18c{bottom:95.128133pt;}
.y1b1{bottom:95.280400pt;}
.y135{bottom:100.441600pt;}
.y4d{bottom:100.820000pt;}
.y165{bottom:100.846133pt;}
.y82{bottom:100.882800pt;}
.y100{bottom:100.970133pt;}
.ya6{bottom:102.326933pt;}
.y30{bottom:102.405467pt;}
.ycb{bottom:102.911200pt;}
.y157{bottom:106.023200pt;}
.y18b{bottom:109.740000pt;}
.y134{bottom:116.381867pt;}
.y81{bottom:116.860533pt;}
.y164{bottom:116.887467pt;}
.yff{bottom:117.042533pt;}
.y1b0{bottom:117.058667pt;}
.y4c{bottom:117.587200pt;}
.ya5{bottom:118.427733pt;}
.y2f{bottom:119.427200pt;}
.yca{bottom:119.468800pt;}
.y156{bottom:122.438667pt;}
.y18a{bottom:124.352000pt;}
.y1af{bottom:131.708667pt;}
.y133{bottom:132.322000pt;}
.y80{bottom:132.838400pt;}
.y163{bottom:132.928800pt;}
.yfe{bottom:133.114933pt;}
.y4b{bottom:133.622000pt;}
.ya4{bottom:134.528533pt;}
.yc9{bottom:136.026533pt;}
.y2e{bottom:136.448933pt;}
.y155{bottom:138.854267pt;}
.y189{bottom:143.324800pt;}
.y1ae{bottom:146.358533pt;}
.y132{bottom:148.262267pt;}
.y162{bottom:148.970133pt;}
.yfd{bottom:149.187200pt;}
.y4a{bottom:149.656800pt;}
.ya3{bottom:150.629200pt;}
.y7f{bottom:152.217067pt;}
.yc8{bottom:152.584133pt;}
.y2d{bottom:153.470667pt;}
.y154{bottom:155.269733pt;}
.y188{bottom:157.936667pt;}
.y1ad{bottom:161.008400pt;}
.y131{bottom:164.202533pt;}
.y161{bottom:165.011467pt;}
.y49{bottom:165.691600pt;}
.ya2{bottom:166.730000pt;}
.yc7{bottom:169.141733pt;}
.yfc{bottom:170.023333pt;}
.y2c{bottom:170.492400pt;}
.y153{bottom:171.685333pt;}
.y187{bottom:172.548533pt;}
.y1ac{bottom:175.658400pt;}
.y130{bottom:180.142667pt;}
.y48{bottom:181.726400pt;}
.ya1{bottom:182.830800pt;}
.yc6{bottom:185.699333pt;}
.yfb{bottom:186.507467pt;}
.y160{bottom:187.085467pt;}
.y186{bottom:187.160400pt;}
.y2b{bottom:187.514133pt;}
.y152{bottom:188.100800pt;}
.y1ab{bottom:190.308267pt;}
.y12f{bottom:196.082933pt;}
.y47{bottom:197.761333pt;}
.ya0{bottom:198.931600pt;}
.y7e{bottom:199.299733pt;}
.y185{bottom:201.772267pt;}
.yc5{bottom:202.257067pt;}
.y2a{bottom:204.535867pt;}
.y151{bottom:208.196667pt;}
.y12e{bottom:212.023200pt;}
.y1aa{bottom:212.086667pt;}
.y46{bottom:213.796133pt;}
.y9f{bottom:215.032400pt;}
.y7d{bottom:215.277467pt;}
.y184{bottom:216.384133pt;}
.yc4{bottom:218.814667pt;}
.y29{bottom:221.557600pt;}
.y150{bottom:224.612133pt;}
.y15f{bottom:226.483067pt;}
.y1a9{bottom:226.736533pt;}
.y12d{bottom:227.963333pt;}
.y45{bottom:229.830933pt;}
.y9e{bottom:231.133067pt;}
.y7c{bottom:231.255333pt;}
.y183{bottom:235.357067pt;}
.yc3{bottom:235.372267pt;}
.yfa{bottom:238.461600pt;}
.y28{bottom:238.579467pt;}
.y14f{bottom:241.027733pt;}
.y15e{bottom:242.524400pt;}
.y12c{bottom:243.903600pt;}
.y44{bottom:245.865733pt;}
.y7b{bottom:247.233067pt;}
.y9d{bottom:247.233867pt;}
.y1a8{bottom:248.514933pt;}
.y182{bottom:249.968933pt;}
.yc2{bottom:251.930000pt;}
.yf9{bottom:254.534000pt;}
.y27{bottom:255.601200pt;}
.y14e{bottom:257.443200pt;}
.y15d{bottom:258.565733pt;}
.y12b{bottom:259.843867pt;}
.y43{bottom:261.900533pt;}
.y1a7{bottom:263.164800pt;}
.y7a{bottom:263.210800pt;}
.y9c{bottom:263.334667pt;}
.y181{bottom:264.580800pt;}
.yc1{bottom:268.487600pt;}
.yf8{bottom:270.606400pt;}
.y26{bottom:272.622933pt;}
.y14d{bottom:273.858800pt;}
.y15c{bottom:274.607200pt;}
.y12a{bottom:275.784000pt;}
.y1a6{bottom:277.814667pt;}
.y42{bottom:277.935333pt;}
.y79{bottom:279.188667pt;}
.y180{bottom:279.192667pt;}
.y9b{bottom:279.435467pt;}
.yc0{bottom:285.045200pt;}
.yf7{bottom:286.678800pt;}
.y25{bottom:289.644667pt;}
.y14c{bottom:290.274267pt;}
.y15b{bottom:290.648533pt;}
.y129{bottom:291.724267pt;}
.y1a5{bottom:292.464667pt;}
.y17f{bottom:293.804533pt;}
.y41{bottom:293.970133pt;}
.y78{bottom:295.166400pt;}
.y9a{bottom:295.536267pt;}
.ybf{bottom:301.602800pt;}
.yf6{bottom:302.751067pt;}
.y24{bottom:306.666400pt;}
.y14b{bottom:306.689867pt;}
.y1a4{bottom:307.114533pt;}
.y128{bottom:307.664533pt;}
.y40{bottom:310.005067pt;}
.y17e{bottom:311.004267pt;}
.y77{bottom:311.144267pt;}
.y99{bottom:311.637067pt;}
.ybe{bottom:318.160400pt;}
.yf5{bottom:318.823467pt;}
.y1a3{bottom:321.764533pt;}
.y127{bottom:323.604800pt;}
.y23{bottom:323.688133pt;}
.y3f{bottom:326.039867pt;}
.y76{bottom:327.122000pt;}
.y98{bottom:327.737733pt;}
.ybd{bottom:334.718133pt;}
.yf4{bottom:334.895867pt;}
.y126{bottom:339.544933pt;}
.y17d{bottom:339.668000pt;}
.y22{bottom:340.709867pt;}
.y3e{bottom:342.074667pt;}
.y75{bottom:343.099867pt;}
.y1a2{bottom:343.542800pt;}
.y97{bottom:343.838533pt;}
.y14a{bottom:350.924000pt;}
.yf3{bottom:350.968133pt;}
.y17c{bottom:354.678400pt;}
.y125{bottom:355.485200pt;}
.y21{bottom:357.731733pt;}
.y3d{bottom:358.109467pt;}
.y1a1{bottom:358.192667pt;}
.y74{bottom:359.077600pt;}
.y96{bottom:359.939333pt;}
.yf2{bottom:367.040533pt;}
.y17b{bottom:369.688800pt;}
.y124{bottom:371.425467pt;}
.y3c{bottom:374.144267pt;}
.y20{bottom:374.753467pt;}
.y73{bottom:375.055333pt;}
.y95{bottom:376.040133pt;}
.ybc{bottom:378.952267pt;}
.y149{bottom:379.911600pt;}
.y1a0{bottom:379.971067pt;}
.yf1{bottom:383.112933pt;}
.y17a{bottom:384.699067pt;}
.y123{bottom:387.365600pt;}
.y3b{bottom:390.179067pt;}
.y1f{bottom:391.775200pt;}
.y94{bottom:392.140933pt;}
.ybb{bottom:393.564133pt;}
.y72{bottom:394.434133pt;}
.y19f{bottom:394.620933pt;}
.y148{bottom:395.851867pt;}
.yf0{bottom:399.185333pt;}
.y179{bottom:399.709467pt;}
.y122{bottom:403.305867pt;}
.y3a{bottom:406.213867pt;}
.y93{bottom:408.241600pt;}
.y1e{bottom:408.796933pt;}
.y19e{bottom:409.270933pt;}
.y71{bottom:410.814267pt;}
.y147{bottom:411.792000pt;}
.y178{bottom:414.719867pt;}
.yef{bottom:415.257600pt;}
.yba{bottom:419.201333pt;}
.y121{bottom:419.246133pt;}
.y39{bottom:422.248667pt;}
.y19d{bottom:423.920800pt;}
.y92{bottom:424.342400pt;}
.y1d{bottom:425.818667pt;}
.y146{bottom:427.732267pt;}
.y177{bottom:429.730267pt;}
.yee{bottom:431.330000pt;}
.y120{bottom:435.186267pt;}
.y38{bottom:438.283467pt;}
.yb9{bottom:438.491867pt;}
.y91{bottom:440.443200pt;}
.y1c{bottom:442.840400pt;}
.y145{bottom:443.672533pt;}
.y176{bottom:444.740667pt;}
.y19c{bottom:445.699067pt;}
.yed{bottom:447.402400pt;}
.y11f{bottom:451.126533pt;}
.y37{bottom:454.318400pt;}
.yb8{bottom:454.432133pt;}
.y90{bottom:456.544000pt;}
.y70{bottom:457.896800pt;}
.y144{bottom:459.612667pt;}
.y1b{bottom:459.862267pt;}
.y19b{bottom:460.349067pt;}
.y175{bottom:462.338933pt;}
.yec{bottom:463.474800pt;}
.y11e{bottom:467.066800pt;}
.y36{bottom:470.353200pt;}
.yb7{bottom:470.372400pt;}
.y8f{bottom:472.644800pt;}
.y6f{bottom:473.874533pt;}
.y19a{bottom:474.998933pt;}
.y143{bottom:475.552933pt;}
.y1a{bottom:476.884000pt;}
.yeb{bottom:479.547067pt;}
.y11d{bottom:483.006933pt;}
.yb6{bottom:486.312533pt;}
.y35{bottom:486.388000pt;}
.y8e{bottom:488.745467pt;}
.y199{bottom:489.648933pt;}
.y6e{bottom:489.852400pt;}
.y174{bottom:491.002667pt;}
.y142{bottom:491.493200pt;}
.y19{bottom:493.905733pt;}
.y11c{bottom:498.947200pt;}
.yea{bottom:500.383200pt;}
.yb5{bottom:502.252800pt;}
.y198{bottom:504.298800pt;}
.y8d{bottom:504.846267pt;}
.y6d{bottom:505.830133pt;}
.y34{bottom:506.645467pt;}
.y173{bottom:506.942933pt;}
.y141{bottom:507.433333pt;}
.y11b{bottom:514.887467pt;}
.yb4{bottom:518.193067pt;}
.y197{bottom:518.948667pt;}
.y8c{bottom:520.947067pt;}
.y6c{bottom:521.808000pt;}
.y172{bottom:522.883067pt;}
.y140{bottom:523.373600pt;}
.y11a{bottom:530.827600pt;}
.y18{bottom:531.087867pt;}
.yb3{bottom:534.133333pt;}
.y8b{bottom:537.047867pt;}
.y6b{bottom:537.785733pt;}
.y171{bottom:538.823333pt;}
.y13f{bottom:539.313867pt;}
.y196{bottom:540.727067pt;}
.y119{bottom:546.767867pt;}
.yb2{bottom:550.073467pt;}
.ye9{bottom:552.337467pt;}
.y8a{bottom:553.148667pt;}
.y6a{bottom:553.763600pt;}
.y170{bottom:554.763600pt;}
.y13e{bottom:555.254000pt;}
.y195{bottom:555.376933pt;}
.y118{bottom:562.708133pt;}
.yb1{bottom:566.013733pt;}
.ye8{bottom:568.409733pt;}
.y89{bottom:569.249467pt;}
.y69{bottom:569.741333pt;}
.y194{bottom:570.026933pt;}
.y16f{bottom:570.703733pt;}
.y13d{bottom:571.194267pt;}
.y17{bottom:571.856267pt;}
.y117{bottom:578.648267pt;}
.yb0{bottom:581.954000pt;}
.ye7{bottom:584.482133pt;}
.y193{bottom:584.676800pt;}
.y88{bottom:585.350133pt;}
.y68{bottom:585.719067pt;}
.y16e{bottom:586.644000pt;}
.y13c{bottom:587.134533pt;}
.y16{bottom:595.968800pt;}
.yaf{bottom:597.894133pt;}
.y116{bottom:598.818000pt;}
.y192{bottom:599.326667pt;}
.ye6{bottom:600.554533pt;}
.y87{bottom:601.450933pt;}
.y67{bottom:601.696933pt;}
.y16d{bottom:602.584267pt;}
.y13b{bottom:603.074667pt;}
.y15{bottom:611.909067pt;}
.yae{bottom:613.834400pt;}
.ye5{bottom:616.626800pt;}
.y86{bottom:617.551733pt;}
.y66{bottom:617.674667pt;}
.y16c{bottom:618.524400pt;}
.y191{bottom:621.105067pt;}
.y13a{bottom:625.684267pt;}
.y14{bottom:627.849200pt;}
.yad{bottom:629.774667pt;}
.ye4{bottom:632.699200pt;}
.y65{bottom:633.652533pt;}
.y16b{bottom:634.464667pt;}
.y190{bottom:635.754933pt;}
.y139{bottom:641.624533pt;}
.y13{bottom:643.789467pt;}
.yac{bottom:645.714800pt;}
.ye3{bottom:648.771600pt;}
.y115{bottom:650.269600pt;}
.y16a{bottom:650.404933pt;}
.y12{bottom:659.729733pt;}
.yab{bottom:661.655067pt;}
.ye2{bottom:665.867067pt;}
.y11{bottom:675.669867pt;}
.y64{bottom:677.886667pt;}
.y114{bottom:679.257200pt;}
.ye1{bottom:681.939467pt;}
.yaa{bottom:684.264667pt;}
.y10{bottom:691.610133pt;}
.y169{bottom:694.639067pt;}
.y113{bottom:695.197467pt;}
.ye0{bottom:698.011867pt;}
.y63{bottom:706.874267pt;}
.yf{bottom:707.550400pt;}
.y112{bottom:711.137733pt;}
.ydf{bottom:714.084133pt;}
.y62{bottom:722.814533pt;}
.ye{bottom:723.490667pt;}
.y111{bottom:727.077867pt;}
.yde{bottom:730.156533pt;}
.y1c3{bottom:734.906267pt;}
.y61{bottom:738.754667pt;}
.yd{bottom:739.430800pt;}
.y110{bottom:743.018133pt;}
.ydd{bottom:746.228933pt;}
.y1c2{bottom:749.518133pt;}
.y60{bottom:754.694933pt;}
.yc{bottom:755.371067pt;}
.y10f{bottom:758.958400pt;}
.ydc{bottom:762.301200pt;}
.y1c1{bottom:764.130000pt;}
.y1c8{bottom:769.849200pt;}
.y5f{bottom:770.635200pt;}
.ydb{bottom:778.373600pt;}
.y1c0{bottom:778.741867pt;}
.y10e{bottom:781.568000pt;}
.y1c7{bottom:784.461067pt;}
.y5e{bottom:786.575333pt;}
.yb{bottom:788.531600pt;}
.yda{bottom:794.446000pt;}
.y1bf{bottom:799.072933pt;}
.y5d{bottom:802.515600pt;}
.ya{bottom:807.331467pt;}
.yd9{bottom:810.518400pt;}
.y10d{bottom:811.839733pt;}
.y1be{bottom:813.684800pt;}
.y5c{bottom:818.455867pt;}
.y9{bottom:820.346667pt;}
.yd8{bottom:826.590667pt;}
.y10c{bottom:827.780000pt;}
.y1bd{bottom:828.296667pt;}
.y5b{bottom:834.396000pt;}
.y8{bottom:842.071467pt;}
.yd7{bottom:842.663067pt;}
.y1bc{bottom:842.908533pt;}
.y10b{bottom:843.720133pt;}
.y1c6{bottom:848.627733pt;}
.y5a{bottom:850.336267pt;}
.yd6{bottom:858.735467pt;}
.y10a{bottom:859.660400pt;}
.y7{bottom:860.871333pt;}
.y1bb{bottom:863.239600pt;}
.y59{bottom:866.276533pt;}
.yd5{bottom:874.807867pt;}
.y109{bottom:875.600667pt;}
.y1ba{bottom:877.851467pt;}
.y58{bottom:882.216667pt;}
.y6{bottom:884.917200pt;}
.yd4{bottom:890.880133pt;}
.y108{bottom:891.540800pt;}
.y1b9{bottom:892.463467pt;}
.y57{bottom:898.156933pt;}
.yd3{bottom:906.952533pt;}
.y1c5{bottom:907.075333pt;}
.y107{bottom:907.481067pt;}
.y1b8{bottom:912.794533pt;}
.y56{bottom:914.097200pt;}
.y1c4{bottom:921.687200pt;}
.yd2{bottom:923.024933pt;}
.y106{bottom:923.421333pt;}
.y5{bottom:925.982533pt;}
.y1b7{bottom:927.406400pt;}
.y55{bottom:930.037333pt;}
.yd1{bottom:939.097200pt;}
.y105{bottom:939.361467pt;}
.y1b6{bottom:942.018267pt;}
.y4{bottom:944.579467pt;}
.y54{bottom:952.646933pt;}
.yd0{bottom:955.169600pt;}
.y104{bottom:955.301733pt;}
.y1b5{bottom:956.630133pt;}
.y53{bottom:968.587200pt;}
.ycf{bottom:971.242000pt;}
.y2{bottom:990.636000pt;}
.y3{bottom:1005.247867pt;}
.h11{height:27.895392pt;}
.h9{height:28.309838pt;}
.h7{height:29.467536pt;}
.h3{height:33.187546pt;}
.he{height:33.713574pt;}
.h8{height:34.239601pt;}
.h4{height:35.865504pt;}
.ha{height:39.850560pt;}
.h10{height:41.547045pt;}
.hd{height:41.848386pt;}
.h5{height:46.492320pt;}
.hb{height:47.177525pt;}
.hc{height:48.697377pt;}
.h6{height:52.606202pt;}
.h2{height:1020.000000pt;}
.hf{height:1021.333333pt;}
.h0{height:1122.519600pt;}
.h1{height:1122.666667pt;}
.w5{width:660.000000pt;}
.w3{width:661.333333pt;}
.w4{width:662.666667pt;}
.w2{width:664.000000pt;}
.w0{width:793.700800pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:5.866387pt;}
.x2{left:8.533053pt;}
.x40{left:14.721933pt;}
.x25{left:16.493240pt;}
.x3d{left:19.149920pt;}
.x18{left:21.016293pt;}
.x7{left:22.694387pt;}
.x8{left:34.132813pt;}
.x6{left:35.504573pt;}
.x17{left:38.782987pt;}
.x35{left:44.296387pt;}
.x4{left:54.556147pt;}
.x3b{left:55.880960pt;}
.x1{left:58.666667pt;}
.x3a{left:60.031960pt;}
.x1a{left:61.333333pt;}
.x9{left:62.728880pt;}
.x37{left:64.865720pt;}
.x33{left:66.066493pt;}
.x2e{left:70.900253pt;}
.x34{left:72.247067pt;}
.xc{left:78.666667pt;}
.x39{left:82.816800pt;}
.x32{left:85.161600pt;}
.x31{left:88.851333pt;}
.x16{left:93.396667pt;}
.x30{left:95.124133pt;}
.x22{left:96.951733pt;}
.x21{left:101.102800pt;}
.x1c{left:105.936533pt;}
.x23{left:107.283333pt;}
.x3c{left:110.578267pt;}
.x20{left:120.197867pt;}
.x1f{left:123.887600pt;}
.x1e{left:130.160400pt;}
.x3e{left:138.469067pt;}
.x36{left:146.110800pt;}
.x15{left:153.438000pt;}
.x13{left:171.057067pt;}
.x12{left:175.208133pt;}
.xd{left:178.510133pt;}
.x14{left:181.388667pt;}
.x38{left:183.347067pt;}
.x2f{left:189.381600pt;}
.x11{left:194.303200pt;}
.x10{left:197.992933pt;}
.xf{left:204.265733pt;}
.x5{left:247.667200pt;}
.x24{left:263.300133pt;}
.x1d{left:268.889867pt;}
.xe{left:298.523200pt;}
.x3{left:323.454000pt;}
.x26{left:340.317333pt;}
.xa{left:342.984000pt;}
.x2d{left:345.313467pt;}
.x41{left:349.172933pt;}
.x3f{left:351.039333pt;}
.xb{left:356.267600pt;}
.x2c{left:425.417733pt;}
.x27{left:427.244667pt;}
.x2b{left:434.642800pt;}
.x28{left:437.087333pt;}
.x29{left:438.886000pt;}
.x2a{left:444.144267pt;}
.x19{left:629.403600pt;}
}




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