
    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_61661dda0a887698f7eccdc2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.902000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_51f2915fc04e35367d455f8f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002000;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_0bd569e81d6c794697db8585.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.684000;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_ff24abfbfbe46a35fc4ae641.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.887000;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_ad2664556c3384bca508a3bc.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c17d7cf771e1134c1dbe6acc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.170000;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_99c54723faa1c97d8efddc2d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;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_837f0228ed3fc6fa30d80560.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910000;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_605f0996ce5fac5baec0d483.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_41f34e5f44a7b00189792af9.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.002000;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_a26e1c127815c4c1a8438587.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.901000;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_df0e6c9cfe0785651adda025.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.696000;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_49c1e0382fe32cd8eb29cc7f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.923000;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_e1fc996701f03e4227b43b13.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_ee598f2977401e1855523aa2.woff2')format("woff");}.fff{font-family:fff;line-height:0.698000;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_2a2f1e6af809f737bc7da10a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.923000;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_9db103a44ee6f6fe9ce3a02a.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.899000;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_87b4c81a45c5f28b21eb71ed.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_823e6d19f7f563839e52a8a3.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.899000;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_9c7bc14bfb892e52d378e867.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_d90ab1ab94fc893f0c57d169.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.170000;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:-22.854000px;}
.v3{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.690000px;}
.ls8{letter-spacing:0.000000px;}
.ls3a{letter-spacing:0.000312px;}
.ls23{letter-spacing:0.000767px;}
.ls63{letter-spacing:0.002246px;}
.ls3d{letter-spacing:0.002481px;}
.ls0{letter-spacing:0.002525px;}
.ls1c{letter-spacing:0.003031px;}
.ls13{letter-spacing:0.003269px;}
.ls2f{letter-spacing:0.004172px;}
.ls18{letter-spacing:0.004200px;}
.ls2{letter-spacing:0.004738px;}
.ls19{letter-spacing:0.004896px;}
.ls61{letter-spacing:0.458387px;}
.ls2d{letter-spacing:0.464387px;}
.ls1d{letter-spacing:2.984525px;}
.ls27{letter-spacing:2.985954px;}
.ls11{letter-spacing:2.986894px;}
.ls48{letter-spacing:2.988615px;}
.ls3e{letter-spacing:2.991954px;}
.ls9{letter-spacing:2.992894px;}
.ls60{letter-spacing:3.002207px;}
.ls59{letter-spacing:3.443602px;}
.ls20{letter-spacing:3.994868px;}
.ls3b{letter-spacing:4.000868px;}
.ls34{letter-spacing:4.688646px;}
.lsa{letter-spacing:4.841856px;}
.lsb{letter-spacing:4.949453px;}
.lsd{letter-spacing:5.003251px;}
.lsc{letter-spacing:5.218445px;}
.ls28{letter-spacing:6.456538px;}
.ls29{letter-spacing:6.458446px;}
.ls5b{letter-spacing:6.517690px;}
.ls5a{letter-spacing:8.297139px;}
.ls2a{letter-spacing:9.458207px;}
.ls57{letter-spacing:9.962338px;}
.ls1e{letter-spacing:9.982525px;}
.ls46{letter-spacing:13.284538px;}
.ls4b{letter-spacing:13.716538px;}
.ls4c{letter-spacing:13.818538px;}
.ls4d{letter-spacing:13.820446px;}
.ls4e{letter-spacing:13.824538px;}
.ls25{letter-spacing:16.598338px;}
.ls37{letter-spacing:16.598446px;}
.ls2b{letter-spacing:16.598727px;}
.ls17{letter-spacing:16.602538px;}
.ls1b{letter-spacing:16.604338px;}
.ls2c{letter-spacing:16.604400px;}
.ls4f{letter-spacing:16.820207px;}
.ls3f{letter-spacing:17.002200px;}
.ls58{letter-spacing:17.066387px;}
.ls50{letter-spacing:17.271652px;}
.ls62{letter-spacing:18.323937px;}
.ls10{letter-spacing:18.826178px;}
.ls1a{letter-spacing:19.586525px;}
.ls24{letter-spacing:19.592525px;}
.ls26{letter-spacing:19.593954px;}
.ls39{letter-spacing:19.604207px;}
.ls51{letter-spacing:19.850207px;}
.ls7{letter-spacing:19.916316px;}
.ls56{letter-spacing:19.918200px;}
.ls54{letter-spacing:19.920493px;}
.ls6{letter-spacing:19.922316px;}
.ls31{letter-spacing:20.342338px;}
.ls33{letter-spacing:20.345607px;}
.ls2e{letter-spacing:20.346538px;}
.ls32{letter-spacing:20.351306px;}
.ls1f{letter-spacing:20.602868px;}
.ls12{letter-spacing:21.375411px;}
.ls3c{letter-spacing:21.376200px;}
.ls40{letter-spacing:21.380727px;}
.ls38{letter-spacing:21.381269px;}
.ls21{letter-spacing:21.382200px;}
.lse{letter-spacing:21.412118px;}
.ls15{letter-spacing:21.786305px;}
.ls47{letter-spacing:21.815596px;}
.ls5{letter-spacing:22.112316px;}
.ls4{letter-spacing:22.118316px;}
.ls41{letter-spacing:22.250387px;}
.ls30{letter-spacing:23.335140px;}
.ls35{letter-spacing:23.446200px;}
.ls5e{letter-spacing:23.530172px;}
.ls42{letter-spacing:24.243269px;}
.ls16{letter-spacing:24.906065px;}
.ls55{letter-spacing:24.912065px;}
.ls5d{letter-spacing:25.523607px;}
.ls52{letter-spacing:25.820727px;}
.ls36{letter-spacing:26.072646px;}
.ls53{letter-spacing:26.436305px;}
.ls49{letter-spacing:26.597596px;}
.ls5c{letter-spacing:27.676172px;}
.ls43{letter-spacing:27.683602px;}
.ls4a{letter-spacing:27.689602px;}
.ls45{letter-spacing:27.895690px;}
.ls14{letter-spacing:29.883008px;}
.ls22{letter-spacing:29.890893px;}
.ls3{letter-spacing:30.624532px;}
.lsf{letter-spacing:30.796894px;}
.ls5f{letter-spacing:31.360172px;}
.ls44{letter-spacing:32.543139px;}
.ls1{letter-spacing:50.804525px;}
.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;}
}
.wsb0{word-spacing:-59.775600px;}
.wsa5{word-spacing:-34.364992px;}
.ws3a{word-spacing:-33.457225px;}
.ws8a{word-spacing:-31.376212px;}
.ws91{word-spacing:-30.545332px;}
.ws4{word-spacing:-29.881822px;}
.ws36{word-spacing:-28.238780px;}
.wsae{word-spacing:-27.641618px;}
.ws39{word-spacing:-20.707004px;}
.ws33{word-spacing:-20.438012px;}
.ws32{word-spacing:-20.384214px;}
.ws35{word-spacing:-20.330415px;}
.ws3c{word-spacing:-20.169020px;}
.wsb2{word-spacing:-19.062439px;}
.ws89{word-spacing:-16.611639px;}
.wsd4{word-spacing:-16.551864px;}
.wsee{word-spacing:-16.312761px;}
.wsfd{word-spacing:-16.073659px;}
.ws11e{word-spacing:-15.894332px;}
.ws97{word-spacing:-15.715005px;}
.ws4a{word-spacing:-15.655230px;}
.wsaf{word-spacing:-15.302554px;}
.wsf7{word-spacing:-15.296576px;}
.ws188{word-spacing:-15.267986px;}
.ws20{word-spacing:-15.160389px;}
.ws57{word-spacing:-15.057474px;}
.ws18e{word-spacing:-15.052792px;}
.ws52{word-spacing:-14.997698px;}
.ws175{word-spacing:-14.945196px;}
.wsd5{word-spacing:-14.878147px;}
.ws120{word-spacing:-14.698820px;}
.ws10{word-spacing:-14.622405px;}
.wsfc{word-spacing:-14.579269px;}
.ws1c{word-spacing:-14.514808px;}
.ws17a{word-spacing:-14.461010px;}
.ws78{word-spacing:-14.459718px;}
.ws70{word-spacing:-14.451042px;}
.ws6f{word-spacing:-14.449877px;}
.ws6e{word-spacing:-14.447063px;}
.wsf0{word-spacing:-14.399942px;}
.ws90{word-spacing:-14.280391px;}
.ws1a6{word-spacing:-14.138220px;}
.ws6b{word-spacing:-13.981513px;}
.wse{word-spacing:-13.976824px;}
.ws14b{word-spacing:-13.921737px;}
.wsa7{word-spacing:-13.861962px;}
.wsc8{word-spacing:-13.802186px;}
.ws14f{word-spacing:-13.742410px;}
.ws162{word-spacing:-13.707832px;}
.ws141{word-spacing:-13.682635px;}
.wsbd{word-spacing:-13.569061px;}
.ws13d{word-spacing:-13.383757px;}
.ws1e{word-spacing:-13.331244px;}
.wsf1{word-spacing:-13.270183px;}
.ws6c{word-spacing:-13.264206px;}
.ws73{word-spacing:-13.084879px;}
.ws5b{word-spacing:-13.025103px;}
.ws5d{word-spacing:-12.845776px;}
.wse6{word-spacing:-12.786001px;}
.ws151{word-spacing:-12.726225px;}
.ws178{word-spacing:-12.722968px;}
.ws1d{word-spacing:-12.685663px;}
.wscd{word-spacing:-12.666450px;}
.wse0{word-spacing:-12.606674px;}
.wse2{word-spacing:-12.594381px;}
.ws9e{word-spacing:-12.546898px;}
.ws9f{word-spacing:-12.487123px;}
.wsa9{word-spacing:-12.427347px;}
.ws173{word-spacing:-12.416671px;}
.ws138{word-spacing:-12.367572px;}
.wsb3{word-spacing:-12.313774px;}
.ws15c{word-spacing:-12.309074px;}
.ws117{word-spacing:-12.307796px;}
.ws153{word-spacing:-12.248020px;}
.wse5{word-spacing:-12.188245px;}
.ws177{word-spacing:-12.136209px;}
.ws6d{word-spacing:-12.128469px;}
.ws179{word-spacing:-12.093880px;}
.ws74{word-spacing:-12.074671px;}
.ws17b{word-spacing:-12.040082px;}
.ws110{word-spacing:-11.949142px;}
.ws192{word-spacing:-11.878687px;}
.ws49{word-spacing:-11.829591px;}
.ws1a8{word-spacing:-11.771090px;}
.ws103{word-spacing:-11.769816px;}
.wscb{word-spacing:-11.710040px;}
.ws12e{word-spacing:-11.675969px;}
.ws130{word-spacing:-11.650264px;}
.ws15a{word-spacing:-11.609695px;}
.ws132{word-spacing:-11.590489px;}
.ws12{word-spacing:-11.555896px;}
.ws105{word-spacing:-11.530713px;}
.ws7a{word-spacing:-11.470938px;}
.ws77{word-spacing:-11.411162px;}
.ws67{word-spacing:-11.351386px;}
.ws8c{word-spacing:-11.291611px;}
.ws19d{word-spacing:-11.286904px;}
.ws47{word-spacing:-11.172060px;}
.ws10f{word-spacing:-11.112284px;}
.wsd{word-spacing:-11.071711px;}
.ws5a{word-spacing:-11.052508px;}
.ws114{word-spacing:-10.992733px;}
.ws30{word-spacing:-10.932957px;}
.ws3f{word-spacing:-10.910316px;}
.wsda{word-spacing:-10.879159px;}
.wsf4{word-spacing:-10.873182px;}
.ws142{word-spacing:-10.813406px;}
.ws11{word-spacing:-10.748920px;}
.wseb{word-spacing:-10.717091px;}
.ws9c{word-spacing:-10.693855px;}
.ws11d{word-spacing:-10.634079px;}
.wsc{word-spacing:-10.587525px;}
.ws14e{word-spacing:-10.574304px;}
.ws14a{word-spacing:-10.514528px;}
.ws13{word-spacing:-10.479928px;}
.wsfa{word-spacing:-10.454752px;}
.ws125{word-spacing:-10.394977px;}
.ws53{word-spacing:-10.361245px;}
.ws24{word-spacing:-10.318533px;}
.ws48{word-spacing:-10.275426px;}
.ws99{word-spacing:-10.215650px;}
.ws1ae{word-spacing:-10.157138px;}
.wsa0{word-spacing:-10.155874px;}
.ws145{word-spacing:-10.059088px;}
.wsb1{word-spacing:-10.042301px;}
.ws140{word-spacing:-10.036323px;}
.ws2a{word-spacing:-9.987474px;}
.ws68{word-spacing:-9.984743px;}
.ws2c{word-spacing:-9.976578px;}
.ws2{word-spacing:-9.976548px;}
.ws2b{word-spacing:-9.964128px;}
.wsf3{word-spacing:-9.960381px;}
.ws2d{word-spacing:-9.941979px;}
.ws8{word-spacing:-9.941944px;}
.ws126{word-spacing:-9.916772px;}
.wsdf{word-spacing:-9.856996px;}
.ws160{word-spacing:-9.838558px;}
.ws15b{word-spacing:-9.834348px;}
.ws163{word-spacing:-9.820241px;}
.ws58{word-spacing:-9.797221px;}
.ws159{word-spacing:-9.795441px;}
.ws165{word-spacing:-9.793365px;}
.ws16a{word-spacing:-9.790145px;}
.ws45{word-spacing:-9.737445px;}
.ws149{word-spacing:-9.677670px;}
.ws187{word-spacing:-9.672952px;}
.ws71{word-spacing:-9.617894px;}
.wsf9{word-spacing:-9.558118px;}
.ws15{word-spacing:-9.511557px;}
.ws9d{word-spacing:-9.498343px;}
.wsfe{word-spacing:-9.438567px;}
.ws10c{word-spacing:-9.378792px;}
.ws18{word-spacing:-9.350162px;}
.ws158{word-spacing:-9.339863px;}
.ws66{word-spacing:-9.319016px;}
.ws54{word-spacing:-9.259240px;}
.ws5{word-spacing:-9.242565px;}
.ws1a9{word-spacing:-9.235064px;}
.ws181{word-spacing:-9.229446px;}
.ws189{word-spacing:-9.224640px;}
.ws1a3{word-spacing:-9.212903px;}
.wsab{word-spacing:-9.205442px;}
.wsa6{word-spacing:-9.199465px;}
.ws6{word-spacing:-9.188767px;}
.wsc0{word-spacing:-9.184851px;}
.ws69{word-spacing:-9.145667px;}
.ws9a{word-spacing:-9.139689px;}
.ws143{word-spacing:-9.079914px;}
.ws60{word-spacing:-9.020138px;}
.ws171{word-spacing:-8.973573px;}
.ws96{word-spacing:-8.900587px;}
.ws1af{word-spacing:-8.865976px;}
.ws72{word-spacing:-8.846789px;}
.ws8e{word-spacing:-8.840811px;}
.wse3{word-spacing:-8.805324px;}
.wscc{word-spacing:-8.781036px;}
.ws15f{word-spacing:-8.758380px;}
.ws101{word-spacing:-8.721260px;}
.ws134{word-spacing:-8.661484px;}
.ws111{word-spacing:-8.601709px;}
.ws19{word-spacing:-8.489388px;}
.ws100{word-spacing:-8.482158px;}
.wsf2{word-spacing:-8.424820px;}
.ws10b{word-spacing:-8.422382px;}
.ws87{word-spacing:-8.362606px;}
.ws146{word-spacing:-8.302831px;}
.ws22{word-spacing:-8.274194px;}
.wse7{word-spacing:-8.243055px;}
.wsde{word-spacing:-8.183280px;}
.wse4{word-spacing:-8.129482px;}
.ws61{word-spacing:-8.123504px;}
.ws16e{word-spacing:-8.112799px;}
.ws92{word-spacing:-8.063728px;}
.ws1b{word-spacing:-8.059000px;}
.ws4d{word-spacing:-8.003953px;}
.ws131{word-spacing:-7.944177px;}
.ws41{word-spacing:-7.907473px;}
.ws43{word-spacing:-7.884402px;}
.wsef{word-spacing:-7.824626px;}
.ws27{word-spacing:-7.771328px;}
.ws28{word-spacing:-7.769117px;}
.ws13f{word-spacing:-7.765535px;}
.ws29{word-spacing:-7.764850px;}
.ws10d{word-spacing:-7.705075px;}
.ws1b4{word-spacing:-7.628613px;}
.ws109{word-spacing:-7.585524px;}
.ws12c{word-spacing:-7.525748px;}
.ws11c{word-spacing:-7.465972px;}
.ws186{word-spacing:-7.413420px;}
.wsf8{word-spacing:-7.406197px;}
.ws94{word-spacing:-7.346421px;}
.ws44{word-spacing:-7.292623px;}
.wse9{word-spacing:-7.286646px;}
.ws88{word-spacing:-7.226870px;}
.ws46{word-spacing:-7.167094px;}
.wsb9{word-spacing:-7.113296px;}
.ws10e{word-spacing:-7.107319px;}
.ws167{word-spacing:-6.990770px;}
.ws155{word-spacing:-6.971735px;}
.ws106{word-spacing:-6.927992px;}
.ws4b{word-spacing:-6.868216px;}
.ws112{word-spacing:-6.808441px;}
.ws11a{word-spacing:-6.768598px;}
.ws176{word-spacing:-6.767839px;}
.wsfb{word-spacing:-6.748665px;}
.wse8{word-spacing:-6.694867px;}
.ws139{word-spacing:-6.691218px;}
.ws8d{word-spacing:-6.688890px;}
.wsd6{word-spacing:-6.575316px;}
.ws4f{word-spacing:-6.569338px;}
.ws1b0{word-spacing:-6.498847px;}
.ws5c{word-spacing:-6.490298px;}
.wsa8{word-spacing:-6.449787px;}
.ws157{word-spacing:-6.391250px;}
.ws122{word-spacing:-6.390012px;}
.ws156{word-spacing:-6.387834px;}
.wsbf{word-spacing:-6.336214px;}
.ws76{word-spacing:-6.330236px;}
.ws4c{word-spacing:-6.276438px;}
.wsce{word-spacing:-6.273889px;}
.wsd0{word-spacing:-6.270460px;}
.ws148{word-spacing:-6.210685px;}
.ws4e{word-spacing:-6.150909px;}
.ws65{word-spacing:-6.091134px;}
.ws174{word-spacing:-6.068460px;}
.wsa1{word-spacing:-5.971582px;}
.ws5e{word-spacing:-5.911807px;}
.ws16c{word-spacing:-5.799468px;}
.ws121{word-spacing:-5.792256px;}
.wsf6{word-spacing:-5.732480px;}
.ws190{word-spacing:-5.691871px;}
.ws6a{word-spacing:-5.612929px;}
.ws12b{word-spacing:-5.553153px;}
.ws136{word-spacing:-5.493378px;}
.ws172{word-spacing:-5.476677px;}
.ws129{word-spacing:-5.373826px;}
.ws17f{word-spacing:-5.315282px;}
.ws11b{word-spacing:-5.314051px;}
.ws8f{word-spacing:-5.254275px;}
.ws63{word-spacing:-5.194500px;}
.wsb{word-spacing:-5.153887px;}
.ws5f{word-spacing:-5.134724px;}
.ws1a{word-spacing:-5.100088px;}
.ws14d{word-spacing:-5.074948px;}
.ws12d{word-spacing:-5.015173px;}
.ws108{word-spacing:-4.955397px;}
.wsaa{word-spacing:-4.895622px;}
.ws1b6{word-spacing:-4.777298px;}
.ws11f{word-spacing:-4.776070px;}
.ws102{word-spacing:-4.656519px;}
.ws107{word-spacing:-4.596744px;}
.ws23{word-spacing:-4.562104px;}
.wsd7{word-spacing:-4.542946px;}
.ws59{word-spacing:-4.526954px;}
.ws26{word-spacing:-4.491153px;}
.wsd8{word-spacing:-4.483170px;}
.ws55{word-spacing:-4.417417px;}
.ws1b5{word-spacing:-4.400709px;}
.ws137{word-spacing:-4.357641px;}
.ws127{word-spacing:-4.297866px;}
.ws25{word-spacing:-4.293112px;}
.wsd9{word-spacing:-4.244068px;}
.wsec{word-spacing:-4.196954px;}
.wsed{word-spacing:-4.192298px;}
.ws14{word-spacing:-4.131717px;}
.wsd1{word-spacing:-4.058763px;}
.wsff{word-spacing:-3.998988px;}
.ws19b{word-spacing:-3.970322px;}
.ws75{word-spacing:-3.939212px;}
.ws170{word-spacing:-3.916524px;}
.wsea{word-spacing:-3.879436px;}
.ws8b{word-spacing:-3.819661px;}
.ws166{word-spacing:-3.808927px;}
.ws104{word-spacing:-3.759885px;}
.ws9b{word-spacing:-3.700110px;}
.ws42{word-spacing:-3.667869px;}
.ws118{word-spacing:-3.580558px;}
.ws13b{word-spacing:-3.520783px;}
.ws17{word-spacing:-3.486136px;}
.ws1b1{word-spacing:-3.324741px;}
.ws15e{word-spacing:-3.270943px;}
.ws15d{word-spacing:-3.217144px;}
.ws14c{word-spacing:-3.102354px;}
.ws1a7{word-spacing:-3.055749px;}
.ws13c{word-spacing:-3.042578px;}
.ws9{word-spacing:-3.001951px;}
.wsf5{word-spacing:-2.863251px;}
.ws10a{word-spacing:-2.803476px;}
.ws19c{word-spacing:-2.732959px;}
.ws16{word-spacing:-2.679160px;}
.ws16b{word-spacing:-2.517765px;}
.ws12a{word-spacing:-2.504598px;}
.ws19e{word-spacing:-2.463967px;}
.ws16f{word-spacing:-2.410168px;}
.ws64{word-spacing:-2.385046px;}
.ws1f{word-spacing:-2.302572px;}
.ws135{word-spacing:-2.205720px;}
.ws93{word-spacing:-2.145944px;}
.ws56{word-spacing:-2.086168px;}
.wsc9{word-spacing:-2.026393px;}
.ws128{word-spacing:-1.727515px;}
.ws150{word-spacing:-1.667739px;}
.ws119{word-spacing:-1.488412px;}
.wsdd{word-spacing:-1.315063px;}
.ws95{word-spacing:-1.249310px;}
.ws1ab{word-spacing:-1.172805px;}
.ws113{word-spacing:-1.069983px;}
.ws115{word-spacing:-1.010208px;}
.ws199{word-spacing:-0.957612px;}
.wsc5{word-spacing:-0.950432px;}
.ws180{word-spacing:-0.742418px;}
.ws19a{word-spacing:-0.527224px;}
.ws1b3{word-spacing:-0.312031px;}
.ws152{word-spacing:-0.292900px;}
.ws98{word-spacing:-0.173349px;}
.wsac{word-spacing:-0.059776px;}
.ws144{word-spacing:-0.053798px;}
.ws18f{word-spacing:-0.043039px;}
.ws3{word-spacing:-0.041843px;}
.ws2e{word-spacing:0.000000px;}
.ws51{word-spacing:0.005380px;}
.ws147{word-spacing:0.005978px;}
.ws16d{word-spacing:0.010760px;}
.ws1ba{word-spacing:0.172155px;}
.ws21{word-spacing:0.225953px;}
.ws123{word-spacing:0.245080px;}
.ws116{word-spacing:0.304856px;}
.ws124{word-spacing:0.424407px;}
.ws168{word-spacing:0.656340px;}
.ws62{word-spacing:0.663509px;}
.ws1ad{word-spacing:1.409518px;}
.wsa3{word-spacing:1.799246px;}
.wsa4{word-spacing:2.038348px;}
.ws1b2{word-spacing:2.055099px;}
.ws1bb{word-spacing:2.431688px;}
.ws191{word-spacing:2.969672px;}
.ws1b9{word-spacing:3.400059px;}
.ws3b{word-spacing:3.448477px;}
.ws34{word-spacing:3.609873px;}
.ws19f{word-spacing:3.830446px;}
.ws1b7{word-spacing:3.938043px;}
.ws1b8{word-spacing:4.207035px;}
.ws161{word-spacing:4.368430px;}
.ws38{word-spacing:5.708010px;}
.ws50{word-spacing:5.982382px;}
.ws169{word-spacing:6.143777px;}
.ws1ac{word-spacing:7.919124px;}
.wsd3{word-spacing:8.039654px;}
.ws164{word-spacing:8.241915px;}
.wsb7{word-spacing:9.824544px;}
.wsbb{word-spacing:9.862974px;}
.wsad{word-spacing:9.922750px;}
.ws185{word-spacing:11.093230px;}
.ws31{word-spacing:11.303044px;}
.ws1a5{word-spacing:11.954004px;}
.ws37{word-spacing:12.217617px;}
.ws184{word-spacing:12.222996px;}
.ws17d{word-spacing:13.514158px;}
.wsb6{word-spacing:13.552430px;}
.ws183{word-spacing:15.289505px;}
.ws198{word-spacing:15.773691px;}
.ws13a{word-spacing:16.233261px;}
.ws18d{word-spacing:16.419272px;}
.wsba{word-spacing:16.557841px;}
.ws13e{word-spacing:16.731302px;}
.ws3e{word-spacing:16.742062px;}
.wsc7{word-spacing:17.205237px;}
.ws195{word-spacing:17.710433px;}
.wsf{word-spacing:18.416452px;}
.ws1a2{word-spacing:18.732603px;}
.ws1a1{word-spacing:18.786401px;}
.ws7c{word-spacing:19.072314px;}
.ws1aa{word-spacing:19.378184px;}
.ws1a4{word-spacing:19.485780px;}
.ws17c{word-spacing:19.916168px;}
.wsbc{word-spacing:19.970544px;}
.wsc3{word-spacing:20.380430px;}
.wse1{word-spacing:20.667237px;}
.ws18b{word-spacing:20.776942px;}
.wsc6{word-spacing:20.812430px;}
.ws7b{word-spacing:21.142771px;}
.ws12f{word-spacing:21.153945px;}
.ws133{word-spacing:21.374371px;}
.wsbe{word-spacing:21.698543px;}
.ws1a0{word-spacing:22.014305px;}
.wsd2{word-spacing:22.977908px;}
.wsc4{word-spacing:23.698430px;}
.ws193{word-spacing:23.960999px;}
.ws18c{word-spacing:24.112443px;}
.ws194{word-spacing:24.542830px;}
.ws196{word-spacing:24.650427px;}
.wsb5{word-spacing:25.223063px;}
.wsc2{word-spacing:25.229063px;}
.wsca{word-spacing:25.258430px;}
.wsa{word-spacing:25.392845px;}
.ws182{word-spacing:25.780193px;}
.ws154{word-spacing:26.318177px;}
.wsdb{word-spacing:26.649237px;}
.ws79{word-spacing:26.827469px;}
.wsb4{word-spacing:26.861063px;}
.wscf{word-spacing:27.002544px;}
.wsb8{word-spacing:27.442430px;}
.wsdc{word-spacing:27.456681px;}
.ws7{word-spacing:29.834008px;}
.wsc1{word-spacing:29.999063px;}
.ws1{word-spacing:31.418178px;}
.ws0{word-spacing:31.504255px;}
.ws18a{word-spacing:34.065147px;}
.wsa2{word-spacing:34.376948px;}
.ws17e{word-spacing:41.110694px;}
.ws197{word-spacing:54.821578px;}
.ws84{word-spacing:73.198884px;}
.ws80{word-spacing:80.370211px;}
.ws2f{word-spacing:80.625869px;}
.ws83{word-spacing:132.100635px;}
.ws86{word-spacing:137.971528px;}
.ws7f{word-spacing:169.766621px;}
.ws81{word-spacing:210.611954px;}
.ws7e{word-spacing:238.850734px;}
.ws85{word-spacing:301.479517px;}
.ws82{word-spacing:470.912198px;}
.ws7d{word-spacing:499.150979px;}
.ws3d{word-spacing:921.308360px;}
.ws40{word-spacing:964.293281px;}
._1{margin-left:-7.833025px;}
._4{margin-left:-6.133018px;}
._3{margin-left:-4.961375px;}
._15{margin-left:-3.732714px;}
._2{margin-left:-2.668393px;}
._5{margin-left:-1.506355px;}
._7{width:1.398758px;}
._0{width:2.410162px;}
._2e{width:3.466985px;}
._c{width:4.519066px;}
._e{width:5.756429px;}
._b{width:7.316582px;}
._10{width:9.414720px;}
._2d{width:13.348225px;}
._2a{width:16.655884px;}
._16{width:17.672069px;}
._2f{width:18.936911px;}
._8{width:20.819981px;}
._6{width:22.272538px;}
._a{width:23.970016px;}
._14{width:25.801550px;}
._18{width:26.949263px;}
._30{width:28.502651px;}
._17{width:29.887800px;}
._2b{width:31.240536px;}
._29{width:33.577467px;}
._2c{width:36.507124px;}
._11{width:39.541824px;}
._12{width:40.671590px;}
._d{width:41.693760px;}
._f{width:43.684301px;}
._34{width:51.048362px;}
._1b{width:59.060665px;}
._1a{width:68.741940px;}
._19{width:80.697600px;}
._32{width:143.265139px;}
._31{width:161.448998px;}
._36{width:162.686362px;}
._13{width:170.917517px;}
._1c{width:174.413076px;}
._9{width:189.101376px;}
._27{width:237.575856px;}
._37{width:254.681626px;}
._20{width:273.240737px;}
._26{width:301.479517px;}
._35{width:330.860160px;}
._21{width:379.372537px;}
._22{width:387.088904px;}
._1d{width:412.327540px;}
._24{width:492.295379px;}
._1f{width:499.150979px;}
._33{width:569.301087px;}
._25{width:578.555344px;}
._28{width:604.701517px;}
._23{width:746.498198px;}
._1e{width:888.288879px;}
.fc3{color:rgb(128,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(64,128,89);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs4{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs5{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.ye3{bottom:193.615500px;}
.y2b{bottom:193.617000px;}
.y7c{bottom:199.330500px;}
.y214{bottom:210.055500px;}
.y2a{bottom:211.549500px;}
.y52{bottom:215.769000px;}
.y163{bottom:221.103000px;}
.y7b{bottom:224.568000px;}
.y213{bottom:226.492500px;}
.y242{bottom:226.494000px;}
.ya1{bottom:229.482000px;}
.y186{bottom:232.207500px;}
.y13d{bottom:233.515500px;}
.y51{bottom:237.412500px;}
.y162{bottom:239.035500px;}
.yc3{bottom:239.146500px;}
.y7a{bottom:242.500500px;}
.y212{bottom:242.931000px;}
.y241{bottom:244.120500px;}
.ya0{bottom:247.414500px;}
.y1c5{bottom:247.719000px;}
.y121{bottom:247.776000px;}
.y29{bottom:253.144500px;}
.y185{bottom:254.446500px;}
.y50{bottom:255.345000px;}
.y161{bottom:256.968000px;}
.yc2{bottom:257.179500px;}
.y19e{bottom:258.783000px;}
.y211{bottom:259.299000px;}
.y150{bottom:259.441500px;}
.y240{bottom:260.559000px;}
.y79{bottom:260.998500px;}
.y9f{bottom:265.347000px;}
.y1c4{bottom:265.651500px;}
.y120{bottom:265.708500px;}
.y28{bottom:269.581500px;}
.y184{bottom:272.379000px;}
.y4f{bottom:273.277500px;}
.y160{bottom:274.900500px;}
.y210{bottom:275.736000px;}
.y23f{bottom:276.997500px;}
.y78{bottom:278.931000px;}
.y9e{bottom:283.279500px;}
.y1c3{bottom:283.584000px;}
.y11f{bottom:283.641000px;}
.yc1{bottom:285.972000px;}
.y27{bottom:286.020000px;}
.y183{bottom:290.313000px;}
.y4e{bottom:291.210000px;}
.y20f{bottom:292.174500px;}
.y23e{bottom:294.624000px;}
.y77{bottom:296.863500px;}
.ye2{bottom:301.212000px;}
.y9d{bottom:301.213500px;}
.y1c2{bottom:301.516500px;}
.y11e{bottom:301.573500px;}
.y26{bottom:302.458500px;}
.y19d{bottom:303.028500px;}
.yc0{bottom:303.904500px;}
.y182{bottom:308.245500px;}
.y20e{bottom:308.613000px;}
.y4d{bottom:309.142500px;}
.y15f{bottom:310.015500px;}
.y23d{bottom:311.062500px;}
.y76{bottom:314.796000px;}
.y1e5{bottom:315.690000px;}
.y25{bottom:318.897000px;}
.y9c{bottom:319.146000px;}
.y1c1{bottom:319.449000px;}
.y11d{bottom:319.506000px;}
.y19c{bottom:320.961000px;}
.ybf{bottom:321.838500px;}
.y20d{bottom:325.051500px;}
.y181{bottom:326.178000px;}
.y4c{bottom:327.076500px;}
.y23c{bottom:328.690500px;}
.y75{bottom:332.728500px;}
.y24{bottom:335.335500px;}
.y9b{bottom:337.078500px;}
.y1c0{bottom:337.383000px;}
.y11c{bottom:337.800000px;}
.y19b{bottom:338.895000px;}
.ybe{bottom:339.771000px;}
.y20c{bottom:341.490000px;}
.y180{bottom:344.110500px;}
.y4b{bottom:345.009000px;}
.y23b{bottom:345.129000px;}
.y74{bottom:350.662500px;}
.y23{bottom:351.774000px;}
.y9a{bottom:355.011000px;}
.y1bf{bottom:355.315500px;}
.y11b{bottom:355.732500px;}
.y19a{bottom:356.827500px;}
.y15e{bottom:357.085500px;}
.ybd{bottom:357.802500px;}
.y20b{bottom:357.928500px;}
.y268{bottom:358.207500px;}
.y23a{bottom:361.567500px;}
.y17f{bottom:362.043000px;}
.y4a{bottom:362.941500px;}
.y1e4{bottom:363.043500px;}
.y22{bottom:366.979500px;}
.y99{bottom:372.943500px;}
.y1be{bottom:373.248000px;}
.y11a{bottom:373.665000px;}
.y20a{bottom:374.295000px;}
.y267{bottom:374.644500px;}
.y199{bottom:374.760000px;}
.y15d{bottom:375.018000px;}
.ybc{bottom:375.736500px;}
.y239{bottom:378.006000px;}
.y49{bottom:380.874000px;}
.y1e3{bottom:380.976000px;}
.y21{bottom:383.418000px;}
.y73{bottom:385.798500px;}
.y209{bottom:390.733500px;}
.ye1{bottom:390.876000px;}
.y98{bottom:390.877500px;}
.y266{bottom:391.083000px;}
.y119{bottom:391.597500px;}
.y17e{bottom:392.047500px;}
.y198{bottom:392.692500px;}
.y15c{bottom:392.952000px;}
.ybb{bottom:393.669000px;}
.y238{bottom:395.632500px;}
.y48{bottom:398.806500px;}
.y1e2{bottom:398.910000px;}
.y20{bottom:399.856500px;}
.y13c{bottom:402.891000px;}
.y72{bottom:404.296500px;}
.y208{bottom:407.172000px;}
.y265{bottom:407.521500px;}
.ye0{bottom:408.810000px;}
.y118{bottom:409.531500px;}
.y197{bottom:410.625000px;}
.y15b{bottom:410.884500px;}
.yba{bottom:411.601500px;}
.y237{bottom:412.071000px;}
.y1f{bottom:415.062000px;}
.y47{bottom:416.740500px;}
.y1e1{bottom:416.842500px;}
.y1bd{bottom:419.599500px;}
.y13b{bottom:420.823500px;}
.y71{bottom:422.793000px;}
.y207{bottom:423.610500px;}
.y264{bottom:423.960000px;}
.ydf{bottom:426.742500px;}
.y117{bottom:427.464000px;}
.y236{bottom:428.509500px;}
.y196{bottom:428.557500px;}
.y15a{bottom:428.817000px;}
.yb9{bottom:429.534000px;}
.y1e{bottom:431.500500px;}
.y97{bottom:433.696500px;}
.y46{bottom:434.673000px;}
.y1e0{bottom:435.279000px;}
.y17d{bottom:436.993500px;}
.y1bc{bottom:437.532000px;}
.y13a{bottom:438.757500px;}
.y206{bottom:439.977000px;}
.y263{bottom:440.398500px;}
.yde{bottom:444.675000px;}
.y116{bottom:445.756500px;}
.y235{bottom:446.136000px;}
.y195{bottom:446.491500px;}
.y159{bottom:446.749500px;}
.y1d{bottom:447.939000px;}
.y96{bottom:451.629000px;}
.y45{bottom:452.605500px;}
.y1df{bottom:453.211500px;}
.y17c{bottom:454.927500px;}
.y1bb{bottom:455.464500px;}
.y205{bottom:456.415500px;}
.y139{bottom:456.690000px;}
.y262{bottom:456.837000px;}
.y70{bottom:458.494500px;}
.yb8{bottom:459.921000px;}
.y234{bottom:462.574500px;}
.ydd{bottom:462.607500px;}
.y115{bottom:463.690500px;}
.y1c{bottom:464.376000px;}
.y158{bottom:464.682000px;}
.yf8{bottom:469.480500px;}
.y1de{bottom:471.649500px;}
.y204{bottom:472.854000px;}
.y17b{bottom:472.860000px;}
.y261{bottom:473.275500px;}
.y1ba{bottom:473.398500px;}
.y138{bottom:475.126500px;}
.y194{bottom:475.792500px;}
.y6f{bottom:476.428500px;}
.y233{bottom:479.013000px;}
.ydc{bottom:480.540000px;}
.y1b{bottom:480.814500px;}
.y114{bottom:481.623000px;}
.y157{bottom:482.614500px;}
.y203{bottom:489.220500px;}
.y1dd{bottom:489.582000px;}
.y260{bottom:489.714000px;}
.y17a{bottom:490.792500px;}
.y1b9{bottom:491.331000px;}
.y137{bottom:493.059000px;}
.y6e{bottom:494.925000px;}
.y232{bottom:495.451500px;}
.y1a{bottom:497.253000px;}
.ydb{bottom:498.472500px;}
.y113{bottom:499.555500px;}
.yf7{bottom:500.263500px;}
.y156{bottom:500.548500px;}
.y44{bottom:504.648000px;}
.y95{bottom:505.195500px;}
.yb7{bottom:505.252500px;}
.y202{bottom:505.659000px;}
.y25f{bottom:506.152500px;}
.y1dc{bottom:508.018500px;}
.y179{bottom:508.725000px;}
.y1b8{bottom:509.566500px;}
.y136{bottom:511.495500px;}
.y6d{bottom:512.859000px;}
.y231{bottom:513.079500px;}
.y19{bottom:513.691500px;}
.yda{bottom:516.406500px;}
.y112{bottom:517.488000px;}
.y155{bottom:518.481000px;}
.y193{bottom:520.038000px;}
.y43{bottom:521.085000px;}
.y201{bottom:522.097500px;}
.y94{bottom:522.232500px;}
.y25e{bottom:522.591000px;}
.yb6{bottom:523.185000px;}
.y1db{bottom:525.952500px;}
.y178{bottom:526.657500px;}
.y1b7{bottom:527.500500px;}
.y135{bottom:529.428000px;}
.y230{bottom:529.518000px;}
.y18{bottom:530.130000px;}
.y6c{bottom:530.791500px;}
.yd9{bottom:534.339000px;}
.y111{bottom:535.420500px;}
.y154{bottom:536.413500px;}
.y42{bottom:537.523500px;}
.y192{bottom:537.970500px;}
.y200{bottom:538.536000px;}
.y25d{bottom:539.028000px;}
.y93{bottom:539.268000px;}
.yb5{bottom:541.119000px;}
.yf6{bottom:543.001500px;}
.y1da{bottom:543.885000px;}
.y177{bottom:544.590000px;}
.y17{bottom:545.335500px;}
.y1b6{bottom:545.433000px;}
.y22f{bottom:545.955000px;}
.y134{bottom:547.360500px;}
.y6b{bottom:548.724000px;}
.yd8{bottom:552.271500px;}
.y110{bottom:553.353000px;}
.y41{bottom:553.962000px;}
.y153{bottom:554.346000px;}
.y1ff{bottom:554.902500px;}
.y25c{bottom:555.466500px;}
.y92{bottom:555.706500px;}
.y191{bottom:555.903000px;}
.yb4{bottom:559.051500px;}
.yf5{bottom:560.934000px;}
.y16{bottom:561.774000px;}
.y1d9{bottom:561.817500px;}
.y22e{bottom:562.393500px;}
.y176{bottom:562.524000px;}
.y1b5{bottom:563.365500px;}
.y133{bottom:565.293000px;}
.y6a{bottom:567.222000px;}
.yd7{bottom:570.204000px;}
.y40{bottom:570.400500px;}
.y10f{bottom:571.287000px;}
.y1fe{bottom:571.341000px;}
.y25b{bottom:571.905000px;}
.y152{bottom:572.278500px;}
.y91{bottom:572.742000px;}
.y190{bottom:573.837000px;}
.yb3{bottom:577.083000px;}
.y15{bottom:578.212500px;}
.yf4{bottom:578.866500px;}
.y1d8{bottom:579.750000px;}
.y22d{bottom:580.021500px;}
.y175{bottom:580.456500px;}
.y1b4{bottom:581.602500px;}
.y132{bottom:583.225500px;}
.y69{bottom:585.154500px;}
.y3f{bottom:586.839000px;}
.y1fd{bottom:587.779500px;}
.y25a{bottom:588.343500px;}
.y90{bottom:589.180500px;}
.y10e{bottom:589.219500px;}
.y18f{bottom:591.769500px;}
.y14{bottom:594.651000px;}
.yb2{bottom:595.017000px;}
.y22c{bottom:596.460000px;}
.y174{bottom:598.389000px;}
.y1b3{bottom:599.535000px;}
.y131{bottom:601.158000px;}
.yd6{bottom:601.210500px;}
.y68{bottom:603.087000px;}
.y3e{bottom:603.277500px;}
.yf3{bottom:603.672000px;}
.y1fc{bottom:604.146000px;}
.y259{bottom:604.782000px;}
.y8f{bottom:606.217500px;}
.y10d{bottom:607.512000px;}
.y18e{bottom:609.702000px;}
.y13{bottom:611.089500px;}
.y1d7{bottom:612.160500px;}
.y22b{bottom:612.898500px;}
.yb1{bottom:612.949500px;}
.y173{bottom:616.321500px;}
.y1b2{bottom:617.772000px;}
.yd5{bottom:619.143000px;}
.y3d{bottom:620.313000px;}
.yf2{bottom:620.334000px;}
.y1fb{bottom:620.584500px;}
.y14f{bottom:620.697000px;}
.y67{bottom:621.019500px;}
.y258{bottom:621.220500px;}
.y8e{bottom:622.656000px;}
.y10c{bottom:625.446000px;}
.y151{bottom:626.326500px;}
.y12{bottom:627.528000px;}
.y18d{bottom:627.634500px;}
.y22a{bottom:629.337000px;}
.yb0{bottom:630.882000px;}
.y172{bottom:634.254000px;}
.y1b1{bottom:635.704500px;}
.yf1{bottom:636.996000px;}
.yd4{bottom:637.000500px;}
.y1fa{bottom:637.023000px;}
.y257{bottom:637.659000px;}
.y3c{bottom:637.798500px;}
.y14e{bottom:638.629500px;}
.y66{bottom:638.952000px;}
.y130{bottom:639.541500px;}
.y8d{bottom:639.691500px;}
.y10b{bottom:643.378500px;}
.y11{bottom:643.965000px;}
.y18c{bottom:645.567000px;}
.y229{bottom:646.963500px;}
.yaf{bottom:648.814500px;}
.y171{bottom:652.188000px;}
.y1f9{bottom:653.389500px;}
.yf0{bottom:653.658000px;}
.y256{bottom:654.097500px;}
.yd3{bottom:654.858000px;}
.y8c{bottom:656.727000px;}
.y14d{bottom:656.857500px;}
.y65{bottom:656.886000px;}
.y1d6{bottom:659.514000px;}
.y10{bottom:660.403500px;}
.y10a{bottom:661.311000px;}
.y228{bottom:663.402000px;}
.y18b{bottom:663.499500px;}
.yae{bottom:666.847500px;}
.y1f8{bottom:669.828000px;}
.y170{bottom:670.120500px;}
.y255{bottom:670.536000px;}
.y8b{bottom:673.165500px;}
.y14c{bottom:674.790000px;}
.y64{bottom:674.818500px;}
.yf{bottom:676.842000px;}
.yef{bottom:677.193000px;}
.y1d5{bottom:677.446500px;}
.y109{bottom:679.243500px;}
.y227{bottom:679.840500px;}
.y18a{bottom:681.433500px;}
.yd2{bottom:684.370500px;}
.yad{bottom:684.780000px;}
.y1f7{bottom:686.266500px;}
.y254{bottom:686.974500px;}
.y12f{bottom:689.881500px;}
.y8a{bottom:690.202500px;}
.y14b{bottom:692.722500px;}
.y63{bottom:692.751000px;}
.ye{bottom:693.280500px;}
.y1b0{bottom:693.972000px;}
.yee{bottom:695.125500px;}
.y1d4{bottom:695.379000px;}
.y226{bottom:697.467000px;}
.y108{bottom:697.537500px;}
.y189{bottom:699.366000px;}
.y16f{bottom:700.123500px;}
.yd1{bottom:702.303000px;}
.y1f6{bottom:702.633000px;}
.yac{bottom:702.712500px;}
.y253{bottom:703.411500px;}
.y89{bottom:706.641000px;}
.y12e{bottom:707.814000px;}
.yd{bottom:709.719000px;}
.y1af{bottom:710.410500px;}
.y14a{bottom:710.949000px;}
.y62{bottom:711.249000px;}
.y3b{bottom:712.200000px;}
.y1d3{bottom:713.311500px;}
.y225{bottom:713.905500px;}
.y107{bottom:715.470000px;}
.y1f5{bottom:719.071500px;}
.y252{bottom:719.850000px;}
.yed{bottom:720.154500px;}
.yab{bottom:720.645000px;}
.y88{bottom:723.676500px;}
.yc{bottom:724.924500px;}
.y12d{bottom:725.746500px;}
.y1ae{bottom:726.849000px;}
.y3a{bottom:728.638500px;}
.y149{bottom:728.883000px;}
.y61{bottom:729.181500px;}
.y224{bottom:730.344000px;}
.y1d2{bottom:731.245500px;}
.yd0{bottom:733.309500px;}
.y106{bottom:733.402500px;}
.y1f4{bottom:735.510000px;}
.y16e{bottom:736.104000px;}
.y251{bottom:736.288500px;}
.yec{bottom:738.087000px;}
.y87{bottom:740.115000px;}
.yb{bottom:741.363000px;}
.y1ad{bottom:743.287500px;}
.y12c{bottom:743.679000px;}
.y39{bottom:745.077000px;}
.y148{bottom:746.815500px;}
.y60{bottom:747.114000px;}
.y223{bottom:747.972000px;}
.y1d1{bottom:749.178000px;}
.ycf{bottom:751.242000px;}
.y105{bottom:751.335000px;}
.y1f3{bottom:751.876500px;}
.y250{bottom:752.727000px;}
.y188{bottom:753.118500px;}
.yeb{bottom:754.749000px;}
.y86{bottom:757.150500px;}
.ya{bottom:757.801500px;}
.y1ac{bottom:759.724500px;}
.y38{bottom:761.515500px;}
.y222{bottom:764.410500px;}
.y5f{bottom:765.612000px;}
.yaa{bottom:765.976500px;}
.y1d0{bottom:767.110500px;}
.y1f2{bottom:768.315000px;}
.yce{bottom:769.099500px;}
.y24f{bottom:769.165500px;}
.y104{bottom:769.629000px;}
.yea{bottom:771.411000px;}
.y85{bottom:774.187500px;}
.y9{bottom:774.240000px;}
.y12b{bottom:776.085000px;}
.y1ab{bottom:776.163000px;}
.y37{bottom:777.954000px;}
.y147{bottom:778.176000px;}
.y221{bottom:780.849000px;}
.y5e{bottom:783.544500px;}
.ya9{bottom:783.910500px;}
.y16d{bottom:784.041000px;}
.y1f1{bottom:784.681500px;}
.y1cf{bottom:785.043000px;}
.y187{bottom:785.547000px;}
.y24e{bottom:785.604000px;}
.ycd{bottom:786.957000px;}
.y103{bottom:787.561500px;}
.y84{bottom:790.626000px;}
.y8{bottom:790.678500px;}
.y1aa{bottom:792.601500px;}
.y36{bottom:794.392500px;}
.ye9{bottom:794.946000px;}
.y220{bottom:797.286000px;}
.y1f0{bottom:801.120000px;}
.y5d{bottom:801.477000px;}
.ya8{bottom:801.843000px;}
.y16c{bottom:801.973500px;}
.y24d{bottom:802.042500px;}
.y1ce{bottom:802.975500px;}
.ycc{bottom:804.814500px;}
.y102{bottom:805.494000px;}
.y83{bottom:807.661500px;}
.y1a9{bottom:809.040000px;}
.y35{bottom:810.831000px;}
.ye8{bottom:812.878500px;}
.y21f{bottom:813.724500px;}
.y1ef{bottom:817.558500px;}
.y24c{bottom:818.481000px;}
.y5c{bottom:819.409500px;}
.ya7{bottom:819.775500px;}
.y16b{bottom:819.906000px;}
.y1cd{bottom:820.908000px;}
.ycb{bottom:822.672000px;}
.y101{bottom:823.428000px;}
.y12a{bottom:823.434000px;}
.y82{bottom:824.100000px;}
.y146{bottom:824.479500px;}
.y1a8{bottom:825.478500px;}
.y34{bottom:827.269500px;}
.ye7{bottom:830.811000px;}
.y21e{bottom:831.352500px;}
.y1ee{bottom:833.925000px;}
.y24b{bottom:834.919500px;}
.ya6{bottom:837.808500px;}
.y16a{bottom:837.861000px;}
.y5b{bottom:837.907500px;}
.y1cc{bottom:838.842000px;}
.yca{bottom:840.529500px;}
.y81{bottom:841.135500px;}
.y100{bottom:841.360500px;}
.y129{bottom:841.368000px;}
.y1a7{bottom:841.917000px;}
.y145{bottom:842.413500px;}
.y33{bottom:843.706500px;}
.y7{bottom:844.038000px;}
.y21d{bottom:847.791000px;}
.ye6{bottom:848.745000px;}
.y1ed{bottom:850.363500px;}
.y24a{bottom:851.358000px;}
.ya5{bottom:855.741000px;}
.y169{bottom:855.795000px;}
.y5a{bottom:855.840000px;}
.y1cb{bottom:856.774500px;}
.y80{bottom:857.574000px;}
.y1a6{bottom:858.355500px;}
.yc9{bottom:858.463500px;}
.y128{bottom:859.300500px;}
.yff{bottom:859.653000px;}
.y32{bottom:860.145000px;}
.y144{bottom:860.346000px;}
.y6{bottom:860.476500px;}
.y21c{bottom:864.229500px;}
.ye5{bottom:866.677500px;}
.y1ec{bottom:866.802000px;}
.y249{bottom:867.796500px;}
.ya4{bottom:873.673500px;}
.y168{bottom:873.727500px;}
.y59{bottom:873.774000px;}
.y7f{bottom:874.611000px;}
.y1ca{bottom:874.707000px;}
.y1a5{bottom:874.794000px;}
.y31{bottom:876.583500px;}
.y5{bottom:876.915000px;}
.y127{bottom:877.233000px;}
.yfe{bottom:877.587000px;}
.y143{bottom:878.278500px;}
.y21b{bottom:880.668000px;}
.y1eb{bottom:883.240500px;}
.y248{bottom:884.233500px;}
.ye4{bottom:884.610000px;}
.yc8{bottom:887.974500px;}
.y1a4{bottom:891.232500px;}
.ya3{bottom:891.606000px;}
.y167{bottom:891.660000px;}
.y58{bottom:891.706500px;}
.y7e{bottom:892.095000px;}
.y1c9{bottom:892.639500px;}
.y30{bottom:893.022000px;}
.y126{bottom:895.165500px;}
.yfd{bottom:895.519500px;}
.y142{bottom:896.211000px;}
.y21a{bottom:898.294500px;}
.y1ea{bottom:899.607000px;}
.y247{bottom:900.672000px;}
.y4{bottom:902.521500px;}
.yc7{bottom:905.907000px;}
.y1a3{bottom:907.671000px;}
.ya2{bottom:909.538500px;}
.y166{bottom:909.592500px;}
.y57{bottom:909.639000px;}
.y1c8{bottom:910.572000px;}
.y125{bottom:913.098000px;}
.yfc{bottom:913.812000px;}
.y141{bottom:914.143500px;}
.y219{bottom:914.733000px;}
.y2f{bottom:915.886500px;}
.y1e9{bottom:916.045500px;}
.y246{bottom:917.110500px;}
.y3{bottom:920.455500px;}
.y1a2{bottom:924.108000px;}
.y165{bottom:927.549000px;}
.y56{bottom:927.571500px;}
.y1c7{bottom:928.504500px;}
.y124{bottom:931.032000px;}
.y218{bottom:931.171500px;}
.yfb{bottom:931.746000px;}
.y140{bottom:932.076000px;}
.y1e8{bottom:932.412000px;}
.y245{bottom:933.549000px;}
.yc6{bottom:934.000500px;}
.y164{bottom:945.481500px;}
.y55{bottom:945.504000px;}
.y2e{bottom:946.512000px;}
.y1a1{bottom:948.048000px;}
.y217{bottom:948.798000px;}
.y1e7{bottom:948.850500px;}
.y123{bottom:948.964500px;}
.yfa{bottom:949.678500px;}
.y244{bottom:949.987500px;}
.y13f{bottom:950.010000px;}
.y1c6{bottom:960.915000px;}
.y54{bottom:963.436500px;}
.yc5{bottom:963.588000px;}
.y2d{bottom:964.446000px;}
.y1a0{bottom:964.486500px;}
.y216{bottom:965.236500px;}
.y1e6{bottom:965.289000px;}
.y7d{bottom:965.449500px;}
.y243{bottom:966.426000px;}
.y122{bottom:966.897000px;}
.yf9{bottom:967.611000px;}
.y13e{bottom:967.942500px;}
.y2{bottom:972.403500px;}
.y53{bottom:981.370500px;}
.yc4{bottom:981.445500px;}
.y215{bottom:982.864500px;}
.y19f{bottom:986.749500px;}
.y1{bottom:999.303000px;}
.y2c{bottom:1038.157500px;}
.h4{height:26.479133px;}
.h9{height:37.443686px;}
.hb{height:37.712678px;}
.hd{height:41.544042px;}
.ha{height:44.891476px;}
.h6{height:44.951251px;}
.h5{height:49.333133px;}
.hc{height:50.017576px;}
.h8{height:50.023576px;}
.h7{height:50.283571px;}
.h2{height:50.728903px;}
.h3{height:50.734903px;}
.h1{height:60.426194px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1b{left:200.781000px;}
.x9{left:202.147500px;}
.xb{left:203.356500px;}
.x15{left:204.837000px;}
.x10{left:206.259000px;}
.x21{left:209.056500px;}
.x13{left:211.489500px;}
.x1d{left:214.981500px;}
.x11{left:217.090500px;}
.xc{left:219.795000px;}
.x2{left:223.873500px;}
.x3{left:226.830000px;}
.x1{left:235.522500px;}
.x8{left:244.666500px;}
.x5{left:251.250000px;}
.xd{left:253.915500px;}
.x16{left:273.778500px;}
.x1c{left:276.237000px;}
.xf{left:281.053500px;}
.x1e{left:289.447500px;}
.x1a{left:303.523500px;}
.x14{left:313.380000px;}
.x1f{left:321.271500px;}
.x7{left:324.294000px;}
.xa{left:340.833000px;}
.x19{left:346.539000px;}
.x6{left:348.696000px;}
.xe{left:376.108500px;}
.x4{left:425.314500px;}
.x12{left:441.025500px;}
.x20{left:548.509500px;}
.x17{left:607.818000px;}
.x18{left:630.781500px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v3{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.280000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls3a{letter-spacing:0.000278pt;}
.ls23{letter-spacing:0.000681pt;}
.ls63{letter-spacing:0.001997pt;}
.ls3d{letter-spacing:0.002205pt;}
.ls0{letter-spacing:0.002245pt;}
.ls1c{letter-spacing:0.002694pt;}
.ls13{letter-spacing:0.002906pt;}
.ls2f{letter-spacing:0.003709pt;}
.ls18{letter-spacing:0.003733pt;}
.ls2{letter-spacing:0.004212pt;}
.ls19{letter-spacing:0.004352pt;}
.ls61{letter-spacing:0.407455pt;}
.ls2d{letter-spacing:0.412788pt;}
.ls1d{letter-spacing:2.652911pt;}
.ls27{letter-spacing:2.654181pt;}
.ls11{letter-spacing:2.655017pt;}
.ls48{letter-spacing:2.656546pt;}
.ls3e{letter-spacing:2.659514pt;}
.ls9{letter-spacing:2.660350pt;}
.ls60{letter-spacing:2.668629pt;}
.ls59{letter-spacing:3.060980pt;}
.ls20{letter-spacing:3.550993pt;}
.ls3b{letter-spacing:3.556327pt;}
.ls34{letter-spacing:4.167686pt;}
.lsa{letter-spacing:4.303872pt;}
.lsb{letter-spacing:4.399514pt;}
.lsd{letter-spacing:4.447334pt;}
.lsc{letter-spacing:4.638618pt;}
.ls28{letter-spacing:5.739145pt;}
.ls29{letter-spacing:5.740841pt;}
.ls5b{letter-spacing:5.793503pt;}
.ls5a{letter-spacing:7.375235pt;}
.ls2a{letter-spacing:8.407295pt;}
.ls57{letter-spacing:8.855412pt;}
.ls1e{letter-spacing:8.873356pt;}
.ls46{letter-spacing:11.808479pt;}
.ls4b{letter-spacing:12.192479pt;}
.ls4c{letter-spacing:12.283145pt;}
.ls4d{letter-spacing:12.284841pt;}
.ls4e{letter-spacing:12.288479pt;}
.ls25{letter-spacing:14.754079pt;}
.ls37{letter-spacing:14.754174pt;}
.ls2b{letter-spacing:14.754424pt;}
.ls17{letter-spacing:14.757812pt;}
.ls1b{letter-spacing:14.759412pt;}
.ls2c{letter-spacing:14.759467pt;}
.ls4f{letter-spacing:14.951295pt;}
.ls3f{letter-spacing:15.113067pt;}
.ls58{letter-spacing:15.170122pt;}
.ls50{letter-spacing:15.352580pt;}
.ls62{letter-spacing:16.287944pt;}
.ls10{letter-spacing:16.734380pt;}
.ls1a{letter-spacing:17.410245pt;}
.ls24{letter-spacing:17.415578pt;}
.ls26{letter-spacing:17.416848pt;}
.ls39{letter-spacing:17.425962pt;}
.ls51{letter-spacing:17.644629pt;}
.ls7{letter-spacing:17.703392pt;}
.ls56{letter-spacing:17.705067pt;}
.ls54{letter-spacing:17.707105pt;}
.ls6{letter-spacing:17.708725pt;}
.ls31{letter-spacing:18.082079pt;}
.ls33{letter-spacing:18.084984pt;}
.ls2e{letter-spacing:18.085812pt;}
.ls32{letter-spacing:18.090050pt;}
.ls1f{letter-spacing:18.313660pt;}
.ls12{letter-spacing:19.000365pt;}
.ls3c{letter-spacing:19.001067pt;}
.ls40{letter-spacing:19.005090pt;}
.ls38{letter-spacing:19.005573pt;}
.ls21{letter-spacing:19.006400pt;}
.lse{letter-spacing:19.032994pt;}
.ls15{letter-spacing:19.365605pt;}
.ls47{letter-spacing:19.391641pt;}
.ls5{letter-spacing:19.655392pt;}
.ls4{letter-spacing:19.660725pt;}
.ls41{letter-spacing:19.778122pt;}
.ls30{letter-spacing:20.742347pt;}
.ls35{letter-spacing:20.841067pt;}
.ls5e{letter-spacing:20.915709pt;}
.ls42{letter-spacing:21.549573pt;}
.ls16{letter-spacing:22.138724pt;}
.ls55{letter-spacing:22.144058pt;}
.ls5d{letter-spacing:22.687651pt;}
.ls52{letter-spacing:22.951757pt;}
.ls36{letter-spacing:23.175686pt;}
.ls53{letter-spacing:23.498938pt;}
.ls49{letter-spacing:23.642307pt;}
.ls5c{letter-spacing:24.601042pt;}
.ls43{letter-spacing:24.607646pt;}
.ls4a{letter-spacing:24.612980pt;}
.ls45{letter-spacing:24.796169pt;}
.ls14{letter-spacing:26.562673pt;}
.ls22{letter-spacing:26.569682pt;}
.ls3{letter-spacing:27.221806pt;}
.lsf{letter-spacing:27.375017pt;}
.ls5f{letter-spacing:27.875709pt;}
.ls44{letter-spacing:28.927235pt;}
.ls1{letter-spacing:45.159578pt;}
.wsb0{word-spacing:-53.133867pt;}
.wsa5{word-spacing:-30.546660pt;}
.ws3a{word-spacing:-29.739756pt;}
.ws8a{word-spacing:-27.889967pt;}
.ws91{word-spacing:-27.151406pt;}
.ws4{word-spacing:-26.561620pt;}
.ws36{word-spacing:-25.101138pt;}
.wsae{word-spacing:-24.570327pt;}
.ws39{word-spacing:-18.406226pt;}
.ws33{word-spacing:-18.167122pt;}
.ws32{word-spacing:-18.119301pt;}
.ws35{word-spacing:-18.071480pt;}
.ws3c{word-spacing:-17.928018pt;}
.wsb2{word-spacing:-16.944390pt;}
.ws89{word-spacing:-14.765902pt;}
.wsd4{word-spacing:-14.712768pt;}
.wsee{word-spacing:-14.500232pt;}
.wsfd{word-spacing:-14.287697pt;}
.ws11e{word-spacing:-14.128295pt;}
.ws97{word-spacing:-13.968894pt;}
.ws4a{word-spacing:-13.915760pt;}
.wsaf{word-spacing:-13.602270pt;}
.wsf7{word-spacing:-13.596956pt;}
.ws188{word-spacing:-13.571543pt;}
.ws20{word-spacing:-13.475901pt;}
.ws57{word-spacing:-13.384421pt;}
.ws18e{word-spacing:-13.380260pt;}
.ws52{word-spacing:-13.331287pt;}
.ws175{word-spacing:-13.284618pt;}
.wsd5{word-spacing:-13.225019pt;}
.ws120{word-spacing:-13.065618pt;}
.ws10{word-spacing:-12.997693pt;}
.wsfc{word-spacing:-12.959350pt;}
.ws1c{word-spacing:-12.902052pt;}
.ws17a{word-spacing:-12.854231pt;}
.ws78{word-spacing:-12.853082pt;}
.ws70{word-spacing:-12.845371pt;}
.ws6f{word-spacing:-12.844335pt;}
.ws6e{word-spacing:-12.841833pt;}
.wsf0{word-spacing:-12.799948pt;}
.ws90{word-spacing:-12.693681pt;}
.ws1a6{word-spacing:-12.567306pt;}
.ws6b{word-spacing:-12.428011pt;}
.wse{word-spacing:-12.423844pt;}
.ws14b{word-spacing:-12.374878pt;}
.wsa7{word-spacing:-12.321744pt;}
.wsc8{word-spacing:-12.268610pt;}
.ws14f{word-spacing:-12.215476pt;}
.ws162{word-spacing:-12.184740pt;}
.ws141{word-spacing:-12.162342pt;}
.wsbd{word-spacing:-12.061388pt;}
.ws13d{word-spacing:-11.896673pt;}
.ws1e{word-spacing:-11.849994pt;}
.wsf1{word-spacing:-11.795718pt;}
.ws6c{word-spacing:-11.790405pt;}
.ws73{word-spacing:-11.631003pt;}
.ws5b{word-spacing:-11.577870pt;}
.ws5d{word-spacing:-11.418468pt;}
.wse6{word-spacing:-11.365334pt;}
.ws151{word-spacing:-11.312200pt;}
.ws178{word-spacing:-11.309305pt;}
.ws1d{word-spacing:-11.276145pt;}
.wscd{word-spacing:-11.259066pt;}
.wse0{word-spacing:-11.205932pt;}
.wse2{word-spacing:-11.195006pt;}
.ws9e{word-spacing:-11.152799pt;}
.ws9f{word-spacing:-11.099665pt;}
.wsa9{word-spacing:-11.046531pt;}
.ws173{word-spacing:-11.037041pt;}
.ws138{word-spacing:-10.993397pt;}
.wsb3{word-spacing:-10.945577pt;}
.ws15c{word-spacing:-10.941399pt;}
.ws117{word-spacing:-10.940263pt;}
.ws153{word-spacing:-10.887129pt;}
.wse5{word-spacing:-10.833995pt;}
.ws177{word-spacing:-10.787741pt;}
.ws6d{word-spacing:-10.780862pt;}
.ws179{word-spacing:-10.750116pt;}
.ws74{word-spacing:-10.733041pt;}
.ws17b{word-spacing:-10.702295pt;}
.ws110{word-spacing:-10.621460pt;}
.ws192{word-spacing:-10.558833pt;}
.ws49{word-spacing:-10.515192pt;}
.ws1a8{word-spacing:-10.463191pt;}
.ws103{word-spacing:-10.462058pt;}
.wscb{word-spacing:-10.408924pt;}
.ws12e{word-spacing:-10.378639pt;}
.ws130{word-spacing:-10.355791pt;}
.ws15a{word-spacing:-10.319729pt;}
.ws132{word-spacing:-10.302657pt;}
.ws12{word-spacing:-10.271908pt;}
.ws105{word-spacing:-10.249523pt;}
.ws7a{word-spacing:-10.196389pt;}
.ws77{word-spacing:-10.143255pt;}
.ws67{word-spacing:-10.090121pt;}
.ws8c{word-spacing:-10.036987pt;}
.ws19d{word-spacing:-10.032804pt;}
.ws47{word-spacing:-9.930720pt;}
.ws10f{word-spacing:-9.877586pt;}
.wsd{word-spacing:-9.841521pt;}
.ws5a{word-spacing:-9.824452pt;}
.ws114{word-spacing:-9.771318pt;}
.ws30{word-spacing:-9.718184pt;}
.ws3f{word-spacing:-9.698058pt;}
.wsda{word-spacing:-9.670364pt;}
.wsf4{word-spacing:-9.665050pt;}
.ws142{word-spacing:-9.611916pt;}
.ws11{word-spacing:-9.554596pt;}
.wseb{word-spacing:-9.526303pt;}
.ws9c{word-spacing:-9.505649pt;}
.ws11d{word-spacing:-9.452515pt;}
.wsc{word-spacing:-9.411133pt;}
.ws14e{word-spacing:-9.399381pt;}
.ws14a{word-spacing:-9.346247pt;}
.ws13{word-spacing:-9.315492pt;}
.wsfa{word-spacing:-9.293113pt;}
.ws125{word-spacing:-9.239979pt;}
.ws53{word-spacing:-9.209995pt;}
.ws24{word-spacing:-9.172029pt;}
.ws48{word-spacing:-9.133712pt;}
.ws99{word-spacing:-9.080578pt;}
.ws1ae{word-spacing:-9.028567pt;}
.wsa0{word-spacing:-9.027444pt;}
.ws145{word-spacing:-8.941412pt;}
.wsb1{word-spacing:-8.926490pt;}
.ws140{word-spacing:-8.921176pt;}
.ws2a{word-spacing:-8.877755pt;}
.ws68{word-spacing:-8.875327pt;}
.ws2c{word-spacing:-8.868069pt;}
.ws2{word-spacing:-8.868042pt;}
.ws2b{word-spacing:-8.857003pt;}
.wsf3{word-spacing:-8.853672pt;}
.ws2d{word-spacing:-8.837315pt;}
.ws8{word-spacing:-8.837284pt;}
.ws126{word-spacing:-8.814908pt;}
.wsdf{word-spacing:-8.761775pt;}
.ws160{word-spacing:-8.745385pt;}
.ws15b{word-spacing:-8.741642pt;}
.ws163{word-spacing:-8.729103pt;}
.ws58{word-spacing:-8.708641pt;}
.ws159{word-spacing:-8.707058pt;}
.ws165{word-spacing:-8.705213pt;}
.ws16a{word-spacing:-8.702351pt;}
.ws45{word-spacing:-8.655507pt;}
.ws149{word-spacing:-8.602373pt;}
.ws187{word-spacing:-8.598180pt;}
.ws71{word-spacing:-8.549239pt;}
.wsf9{word-spacing:-8.496105pt;}
.ws15{word-spacing:-8.454717pt;}
.ws9d{word-spacing:-8.442971pt;}
.wsfe{word-spacing:-8.389838pt;}
.ws10c{word-spacing:-8.336704pt;}
.ws18{word-spacing:-8.311255pt;}
.ws158{word-spacing:-8.302100pt;}
.ws66{word-spacing:-8.283570pt;}
.ws54{word-spacing:-8.230436pt;}
.ws5{word-spacing:-8.215613pt;}
.ws1a9{word-spacing:-8.208945pt;}
.ws181{word-spacing:-8.203952pt;}
.ws189{word-spacing:-8.199680pt;}
.ws1a3{word-spacing:-8.189247pt;}
.wsab{word-spacing:-8.182615pt;}
.wsa6{word-spacing:-8.177302pt;}
.ws6{word-spacing:-8.167793pt;}
.wsc0{word-spacing:-8.164312pt;}
.ws69{word-spacing:-8.129482pt;}
.ws9a{word-spacing:-8.124168pt;}
.ws143{word-spacing:-8.071034pt;}
.ws60{word-spacing:-8.017900pt;}
.ws171{word-spacing:-7.976509pt;}
.ws96{word-spacing:-7.911633pt;}
.ws1af{word-spacing:-7.880868pt;}
.ws72{word-spacing:-7.863812pt;}
.ws8e{word-spacing:-7.858499pt;}
.wse3{word-spacing:-7.826954pt;}
.wscc{word-spacing:-7.805365pt;}
.ws15f{word-spacing:-7.785226pt;}
.ws101{word-spacing:-7.752231pt;}
.ws134{word-spacing:-7.699097pt;}
.ws111{word-spacing:-7.645963pt;}
.ws19{word-spacing:-7.546122pt;}
.ws100{word-spacing:-7.539696pt;}
.wsf2{word-spacing:-7.488729pt;}
.ws10b{word-spacing:-7.486562pt;}
.ws87{word-spacing:-7.433428pt;}
.ws146{word-spacing:-7.380294pt;}
.ws22{word-spacing:-7.354839pt;}
.wse7{word-spacing:-7.327160pt;}
.wsde{word-spacing:-7.274026pt;}
.wse4{word-spacing:-7.226206pt;}
.ws61{word-spacing:-7.220892pt;}
.ws16e{word-spacing:-7.211377pt;}
.ws92{word-spacing:-7.167759pt;}
.ws1b{word-spacing:-7.163556pt;}
.ws4d{word-spacing:-7.114625pt;}
.ws131{word-spacing:-7.061491pt;}
.ws41{word-spacing:-7.028865pt;}
.ws43{word-spacing:-7.008357pt;}
.wsef{word-spacing:-6.955223pt;}
.ws27{word-spacing:-6.907847pt;}
.ws28{word-spacing:-6.905882pt;}
.ws13f{word-spacing:-6.902698pt;}
.ws29{word-spacing:-6.902089pt;}
.ws10d{word-spacing:-6.848955pt;}
.ws1b4{word-spacing:-6.780989pt;}
.ws109{word-spacing:-6.742688pt;}
.ws12c{word-spacing:-6.689554pt;}
.ws11c{word-spacing:-6.636420pt;}
.ws186{word-spacing:-6.589706pt;}
.wsf8{word-spacing:-6.583286pt;}
.ws94{word-spacing:-6.530152pt;}
.ws44{word-spacing:-6.482332pt;}
.wse9{word-spacing:-6.477018pt;}
.ws88{word-spacing:-6.423884pt;}
.ws46{word-spacing:-6.370751pt;}
.wsb9{word-spacing:-6.322930pt;}
.ws10e{word-spacing:-6.317617pt;}
.ws167{word-spacing:-6.214018pt;}
.ws155{word-spacing:-6.197098pt;}
.ws106{word-spacing:-6.158215pt;}
.ws4b{word-spacing:-6.105081pt;}
.ws112{word-spacing:-6.051947pt;}
.ws11a{word-spacing:-6.016531pt;}
.ws176{word-spacing:-6.015857pt;}
.wsfb{word-spacing:-5.998814pt;}
.wse8{word-spacing:-5.950993pt;}
.ws139{word-spacing:-5.947749pt;}
.ws8d{word-spacing:-5.945680pt;}
.wsd6{word-spacing:-5.844725pt;}
.ws4f{word-spacing:-5.839412pt;}
.ws1b0{word-spacing:-5.776753pt;}
.ws5c{word-spacing:-5.769154pt;}
.wsa8{word-spacing:-5.733144pt;}
.ws157{word-spacing:-5.681111pt;}
.ws122{word-spacing:-5.680010pt;}
.ws156{word-spacing:-5.678075pt;}
.wsbf{word-spacing:-5.632190pt;}
.ws76{word-spacing:-5.626876pt;}
.ws4c{word-spacing:-5.579056pt;}
.wsce{word-spacing:-5.576790pt;}
.wsd0{word-spacing:-5.573743pt;}
.ws148{word-spacing:-5.520609pt;}
.ws4e{word-spacing:-5.467475pt;}
.ws65{word-spacing:-5.414341pt;}
.ws174{word-spacing:-5.394186pt;}
.wsa1{word-spacing:-5.308073pt;}
.ws5e{word-spacing:-5.254939pt;}
.ws16c{word-spacing:-5.155082pt;}
.ws121{word-spacing:-5.148672pt;}
.wsf6{word-spacing:-5.095538pt;}
.ws190{word-spacing:-5.059441pt;}
.ws6a{word-spacing:-4.989270pt;}
.ws12b{word-spacing:-4.936136pt;}
.ws136{word-spacing:-4.883002pt;}
.ws172{word-spacing:-4.868157pt;}
.ws129{word-spacing:-4.776735pt;}
.ws17f{word-spacing:-4.724695pt;}
.ws11b{word-spacing:-4.723601pt;}
.ws8f{word-spacing:-4.670467pt;}
.ws63{word-spacing:-4.617333pt;}
.wsb{word-spacing:-4.581233pt;}
.ws5f{word-spacing:-4.564199pt;}
.ws1a{word-spacing:-4.533412pt;}
.ws14d{word-spacing:-4.511065pt;}
.ws12d{word-spacing:-4.457931pt;}
.ws108{word-spacing:-4.404798pt;}
.wsaa{word-spacing:-4.351664pt;}
.ws1b6{word-spacing:-4.246487pt;}
.ws11f{word-spacing:-4.245396pt;}
.ws102{word-spacing:-4.139128pt;}
.ws107{word-spacing:-4.085994pt;}
.ws23{word-spacing:-4.055204pt;}
.wsd7{word-spacing:-4.038174pt;}
.ws59{word-spacing:-4.023959pt;}
.ws26{word-spacing:-3.992136pt;}
.wsd8{word-spacing:-3.985040pt;}
.ws55{word-spacing:-3.926593pt;}
.ws1b5{word-spacing:-3.911741pt;}
.ws137{word-spacing:-3.873459pt;}
.ws127{word-spacing:-3.820325pt;}
.ws25{word-spacing:-3.816100pt;}
.wsd9{word-spacing:-3.772505pt;}
.wsec{word-spacing:-3.730626pt;}
.wsed{word-spacing:-3.726487pt;}
.ws14{word-spacing:-3.672637pt;}
.wsd1{word-spacing:-3.607790pt;}
.wsff{word-spacing:-3.554656pt;}
.ws19b{word-spacing:-3.529175pt;}
.ws75{word-spacing:-3.501522pt;}
.ws170{word-spacing:-3.481354pt;}
.wsea{word-spacing:-3.448388pt;}
.ws8b{word-spacing:-3.395254pt;}
.ws166{word-spacing:-3.385713pt;}
.ws104{word-spacing:-3.342120pt;}
.ws9b{word-spacing:-3.288986pt;}
.ws42{word-spacing:-3.260328pt;}
.ws118{word-spacing:-3.182719pt;}
.ws13b{word-spacing:-3.129585pt;}
.ws17{word-spacing:-3.098788pt;}
.ws1b1{word-spacing:-2.955325pt;}
.ws15e{word-spacing:-2.907505pt;}
.ws15d{word-spacing:-2.859684pt;}
.ws14c{word-spacing:-2.757648pt;}
.ws1a7{word-spacing:-2.716221pt;}
.ws13c{word-spacing:-2.704514pt;}
.ws9{word-spacing:-2.668401pt;}
.wsf5{word-spacing:-2.545112pt;}
.ws10a{word-spacing:-2.491978pt;}
.ws19c{word-spacing:-2.429297pt;}
.ws16{word-spacing:-2.381476pt;}
.ws16b{word-spacing:-2.238013pt;}
.ws12a{word-spacing:-2.226309pt;}
.ws19e{word-spacing:-2.190193pt;}
.ws16f{word-spacing:-2.142372pt;}
.ws64{word-spacing:-2.120041pt;}
.ws1f{word-spacing:-2.046730pt;}
.ws135{word-spacing:-1.960640pt;}
.ws93{word-spacing:-1.907506pt;}
.ws56{word-spacing:-1.854372pt;}
.wsc9{word-spacing:-1.801238pt;}
.ws128{word-spacing:-1.535569pt;}
.ws150{word-spacing:-1.482435pt;}
.ws119{word-spacing:-1.323033pt;}
.wsdd{word-spacing:-1.168945pt;}
.ws95{word-spacing:-1.110498pt;}
.ws1ab{word-spacing:-1.042493pt;}
.ws113{word-spacing:-0.951096pt;}
.ws115{word-spacing:-0.897962pt;}
.ws199{word-spacing:-0.851210pt;}
.wsc5{word-spacing:-0.844828pt;}
.ws180{word-spacing:-0.659927pt;}
.ws19a{word-spacing:-0.468644pt;}
.ws1b3{word-spacing:-0.277361pt;}
.ws152{word-spacing:-0.260356pt;}
.ws98{word-spacing:-0.154088pt;}
.wsac{word-spacing:-0.053134pt;}
.ws144{word-spacing:-0.047820pt;}
.ws18f{word-spacing:-0.038257pt;}
.ws3{word-spacing:-0.037194pt;}
.ws2e{word-spacing:0.000000pt;}
.ws51{word-spacing:0.004782pt;}
.ws147{word-spacing:0.005313pt;}
.ws16d{word-spacing:0.009564pt;}
.ws1ba{word-spacing:0.153027pt;}
.ws21{word-spacing:0.200847pt;}
.ws123{word-spacing:0.217849pt;}
.ws116{word-spacing:0.270983pt;}
.ws124{word-spacing:0.377250pt;}
.ws168{word-spacing:0.583414pt;}
.ws62{word-spacing:0.589786pt;}
.ws1ad{word-spacing:1.252905pt;}
.wsa3{word-spacing:1.599329pt;}
.wsa4{word-spacing:1.811865pt;}
.ws1b2{word-spacing:1.826755pt;}
.ws1bb{word-spacing:2.161500pt;}
.ws191{word-spacing:2.639708pt;}
.ws1b9{word-spacing:3.022275pt;}
.ws3b{word-spacing:3.065313pt;}
.ws34{word-spacing:3.208776pt;}
.ws19f{word-spacing:3.404841pt;}
.ws1b7{word-spacing:3.500483pt;}
.ws1b8{word-spacing:3.739587pt;}
.ws161{word-spacing:3.883049pt;}
.ws38{word-spacing:5.073787pt;}
.ws50{word-spacing:5.317673pt;}
.ws169{word-spacing:5.461135pt;}
.ws1ac{word-spacing:7.039222pt;}
.wsd3{word-spacing:7.146359pt;}
.ws164{word-spacing:7.326147pt;}
.wsb7{word-spacing:8.732928pt;}
.wsbb{word-spacing:8.767088pt;}
.wsad{word-spacing:8.820222pt;}
.ws185{word-spacing:9.860649pt;}
.ws31{word-spacing:10.047150pt;}
.ws1a5{word-spacing:10.625782pt;}
.ws37{word-spacing:10.860104pt;}
.ws184{word-spacing:10.864886pt;}
.ws17d{word-spacing:12.012585pt;}
.wsb6{word-spacing:12.046604pt;}
.ws183{word-spacing:13.590671pt;}
.ws198{word-spacing:14.021059pt;}
.ws13a{word-spacing:14.429565pt;}
.ws18d{word-spacing:14.594908pt;}
.wsba{word-spacing:14.718081pt;}
.ws13e{word-spacing:14.872269pt;}
.ws3e{word-spacing:14.881833pt;}
.wsc7{word-spacing:15.293544pt;}
.ws195{word-spacing:15.742607pt;}
.wsf{word-spacing:16.370179pt;}
.ws1a2{word-spacing:16.651203pt;}
.ws1a1{word-spacing:16.699023pt;}
.ws7c{word-spacing:16.953168pt;}
.ws1aa{word-spacing:17.225052pt;}
.ws1a4{word-spacing:17.320694pt;}
.ws17c{word-spacing:17.703260pt;}
.wsbc{word-spacing:17.751594pt;}
.wsc3{word-spacing:18.115937pt;}
.wse1{word-spacing:18.370877pt;}
.ws18b{word-spacing:18.468393pt;}
.wsc6{word-spacing:18.499937pt;}
.ws7b{word-spacing:18.793574pt;}
.ws12f{word-spacing:18.803507pt;}
.ws133{word-spacing:18.999441pt;}
.wsbe{word-spacing:19.287594pt;}
.ws1a0{word-spacing:19.568271pt;}
.wsd2{word-spacing:20.424807pt;}
.wsc4{word-spacing:21.065271pt;}
.ws193{word-spacing:21.298666pt;}
.ws18c{word-spacing:21.433283pt;}
.ws194{word-spacing:21.815849pt;}
.ws196{word-spacing:21.911491pt;}
.wsb5{word-spacing:22.420500pt;}
.wsc2{word-spacing:22.425834pt;}
.wsca{word-spacing:22.451937pt;}
.wsa{word-spacing:22.571418pt;}
.ws182{word-spacing:22.915727pt;}
.ws154{word-spacing:23.393935pt;}
.wsdb{word-spacing:23.688211pt;}
.ws79{word-spacing:23.846639pt;}
.wsb4{word-spacing:23.876500pt;}
.wscf{word-spacing:24.002261pt;}
.wsb8{word-spacing:24.393271pt;}
.wsdc{word-spacing:24.405939pt;}
.ws7{word-spacing:26.519119pt;}
.wsc1{word-spacing:26.665834pt;}
.ws1{word-spacing:27.927269pt;}
.ws0{word-spacing:28.003782pt;}
.ws18a{word-spacing:30.280131pt;}
.wsa2{word-spacing:30.557287pt;}
.ws17e{word-spacing:36.542839pt;}
.ws197{word-spacing:48.730291pt;}
.ws84{word-spacing:65.065675pt;}
.ws80{word-spacing:71.440188pt;}
.ws2f{word-spacing:71.667439pt;}
.ws83{word-spacing:117.422787pt;}
.ws86{word-spacing:122.641359pt;}
.ws7f{word-spacing:150.903663pt;}
.ws81{word-spacing:187.210626pt;}
.ws7e{word-spacing:212.311764pt;}
.ws85{word-spacing:267.981793pt;}
.ws82{word-spacing:418.588621pt;}
.ws7d{word-spacing:443.689759pt;}
.ws3d{word-spacing:818.940764pt;}
.ws40{word-spacing:857.149583pt;}
._1{margin-left:-6.962689pt;}
._4{margin-left:-5.451571pt;}
._3{margin-left:-4.410111pt;}
._15{margin-left:-3.317968pt;}
._2{margin-left:-2.371905pt;}
._5{margin-left:-1.338982pt;}
._7{width:1.243341pt;}
._0{width:2.142366pt;}
._2e{width:3.081764pt;}
._c{width:4.016947pt;}
._e{width:5.116826pt;}
._b{width:6.503629pt;}
._10{width:8.368640pt;}
._2d{width:11.865089pt;}
._2a{width:14.805230pt;}
._16{width:15.708506pt;}
._2f{width:16.832810pt;}
._8{width:18.506650pt;}
._6{width:19.797811pt;}
._a{width:21.306681pt;}
._14{width:22.934711pt;}
._18{width:23.954900pt;}
._30{width:25.335689pt;}
._17{width:26.566933pt;}
._2b{width:27.769365pt;}
._29{width:29.846637pt;}
._2c{width:32.450777pt;}
._11{width:35.148288pt;}
._12{width:36.152525pt;}
._d{width:37.061120pt;}
._f{width:38.830490pt;}
._34{width:45.376322pt;}
._1b{width:52.498369pt;}
._1a{width:61.103947pt;}
._19{width:71.731200pt;}
._32{width:127.346790pt;}
._31{width:143.510221pt;}
._36{width:144.610099pt;}
._13{width:151.926682pt;}
._1c{width:155.033846pt;}
._9{width:168.090112pt;}
._27{width:211.178539pt;}
._37{width:226.383667pt;}
._20{width:242.880655pt;}
._26{width:267.981793pt;}
._35{width:294.097920pt;}
._21{width:337.220033pt;}
._22{width:344.079026pt;}
._1d{width:366.513369pt;}
._24{width:437.595892pt;}
._1f{width:443.689759pt;}
._33{width:506.045411pt;}
._25{width:514.271417pt;}
._28{width:537.512460pt;}
._23{width:663.553954pt;}
._1e{width:789.590115pt;}
.fs3{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs4{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs5{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.ye3{bottom:172.102667pt;}
.y2b{bottom:172.104000pt;}
.y7c{bottom:177.182667pt;}
.y214{bottom:186.716000pt;}
.y2a{bottom:188.044000pt;}
.y52{bottom:191.794667pt;}
.y163{bottom:196.536000pt;}
.y7b{bottom:199.616000pt;}
.y213{bottom:201.326667pt;}
.y242{bottom:201.328000pt;}
.ya1{bottom:203.984000pt;}
.y186{bottom:206.406667pt;}
.y13d{bottom:207.569333pt;}
.y51{bottom:211.033333pt;}
.y162{bottom:212.476000pt;}
.yc3{bottom:212.574667pt;}
.y7a{bottom:215.556000pt;}
.y212{bottom:215.938667pt;}
.y241{bottom:216.996000pt;}
.ya0{bottom:219.924000pt;}
.y1c5{bottom:220.194667pt;}
.y121{bottom:220.245333pt;}
.y29{bottom:225.017333pt;}
.y185{bottom:226.174667pt;}
.y50{bottom:226.973333pt;}
.y161{bottom:228.416000pt;}
.yc2{bottom:228.604000pt;}
.y19e{bottom:230.029333pt;}
.y211{bottom:230.488000pt;}
.y150{bottom:230.614667pt;}
.y240{bottom:231.608000pt;}
.y79{bottom:231.998667pt;}
.y9f{bottom:235.864000pt;}
.y1c4{bottom:236.134667pt;}
.y120{bottom:236.185333pt;}
.y28{bottom:239.628000pt;}
.y184{bottom:242.114667pt;}
.y4f{bottom:242.913333pt;}
.y160{bottom:244.356000pt;}
.y210{bottom:245.098667pt;}
.y23f{bottom:246.220000pt;}
.y78{bottom:247.938667pt;}
.y9e{bottom:251.804000pt;}
.y1c3{bottom:252.074667pt;}
.y11f{bottom:252.125333pt;}
.yc1{bottom:254.197333pt;}
.y27{bottom:254.240000pt;}
.y183{bottom:258.056000pt;}
.y4e{bottom:258.853333pt;}
.y20f{bottom:259.710667pt;}
.y23e{bottom:261.888000pt;}
.y77{bottom:263.878667pt;}
.ye2{bottom:267.744000pt;}
.y9d{bottom:267.745333pt;}
.y1c2{bottom:268.014667pt;}
.y11e{bottom:268.065333pt;}
.y26{bottom:268.852000pt;}
.y19d{bottom:269.358667pt;}
.yc0{bottom:270.137333pt;}
.y182{bottom:273.996000pt;}
.y20e{bottom:274.322667pt;}
.y4d{bottom:274.793333pt;}
.y15f{bottom:275.569333pt;}
.y23d{bottom:276.500000pt;}
.y76{bottom:279.818667pt;}
.y1e5{bottom:280.613333pt;}
.y25{bottom:283.464000pt;}
.y9c{bottom:283.685333pt;}
.y1c1{bottom:283.954667pt;}
.y11d{bottom:284.005333pt;}
.y19c{bottom:285.298667pt;}
.ybf{bottom:286.078667pt;}
.y20d{bottom:288.934667pt;}
.y181{bottom:289.936000pt;}
.y4c{bottom:290.734667pt;}
.y23c{bottom:292.169333pt;}
.y75{bottom:295.758667pt;}
.y24{bottom:298.076000pt;}
.y9b{bottom:299.625333pt;}
.y1c0{bottom:299.896000pt;}
.y11c{bottom:300.266667pt;}
.y19b{bottom:301.240000pt;}
.ybe{bottom:302.018667pt;}
.y20c{bottom:303.546667pt;}
.y180{bottom:305.876000pt;}
.y4b{bottom:306.674667pt;}
.y23b{bottom:306.781333pt;}
.y74{bottom:311.700000pt;}
.y23{bottom:312.688000pt;}
.y9a{bottom:315.565333pt;}
.y1bf{bottom:315.836000pt;}
.y11b{bottom:316.206667pt;}
.y19a{bottom:317.180000pt;}
.y15e{bottom:317.409333pt;}
.ybd{bottom:318.046667pt;}
.y20b{bottom:318.158667pt;}
.y268{bottom:318.406667pt;}
.y23a{bottom:321.393333pt;}
.y17f{bottom:321.816000pt;}
.y4a{bottom:322.614667pt;}
.y1e4{bottom:322.705333pt;}
.y22{bottom:326.204000pt;}
.y99{bottom:331.505333pt;}
.y1be{bottom:331.776000pt;}
.y11a{bottom:332.146667pt;}
.y20a{bottom:332.706667pt;}
.y267{bottom:333.017333pt;}
.y199{bottom:333.120000pt;}
.y15d{bottom:333.349333pt;}
.ybc{bottom:333.988000pt;}
.y239{bottom:336.005333pt;}
.y49{bottom:338.554667pt;}
.y1e3{bottom:338.645333pt;}
.y21{bottom:340.816000pt;}
.y73{bottom:342.932000pt;}
.y209{bottom:347.318667pt;}
.ye1{bottom:347.445333pt;}
.y98{bottom:347.446667pt;}
.y266{bottom:347.629333pt;}
.y119{bottom:348.086667pt;}
.y17e{bottom:348.486667pt;}
.y198{bottom:349.060000pt;}
.y15c{bottom:349.290667pt;}
.ybb{bottom:349.928000pt;}
.y238{bottom:351.673333pt;}
.y48{bottom:354.494667pt;}
.y1e2{bottom:354.586667pt;}
.y20{bottom:355.428000pt;}
.y13c{bottom:358.125333pt;}
.y72{bottom:359.374667pt;}
.y208{bottom:361.930667pt;}
.y265{bottom:362.241333pt;}
.ye0{bottom:363.386667pt;}
.y118{bottom:364.028000pt;}
.y197{bottom:365.000000pt;}
.y15b{bottom:365.230667pt;}
.yba{bottom:365.868000pt;}
.y237{bottom:366.285333pt;}
.y1f{bottom:368.944000pt;}
.y47{bottom:370.436000pt;}
.y1e1{bottom:370.526667pt;}
.y1bd{bottom:372.977333pt;}
.y13b{bottom:374.065333pt;}
.y71{bottom:375.816000pt;}
.y207{bottom:376.542667pt;}
.y264{bottom:376.853333pt;}
.ydf{bottom:379.326667pt;}
.y117{bottom:379.968000pt;}
.y236{bottom:380.897333pt;}
.y196{bottom:380.940000pt;}
.y15a{bottom:381.170667pt;}
.yb9{bottom:381.808000pt;}
.y1e{bottom:383.556000pt;}
.y97{bottom:385.508000pt;}
.y46{bottom:386.376000pt;}
.y1e0{bottom:386.914667pt;}
.y17d{bottom:388.438667pt;}
.y1bc{bottom:388.917333pt;}
.y13a{bottom:390.006667pt;}
.y206{bottom:391.090667pt;}
.y263{bottom:391.465333pt;}
.yde{bottom:395.266667pt;}
.y116{bottom:396.228000pt;}
.y235{bottom:396.565333pt;}
.y195{bottom:396.881333pt;}
.y159{bottom:397.110667pt;}
.y1d{bottom:398.168000pt;}
.y96{bottom:401.448000pt;}
.y45{bottom:402.316000pt;}
.y1df{bottom:402.854667pt;}
.y17c{bottom:404.380000pt;}
.y1bb{bottom:404.857333pt;}
.y205{bottom:405.702667pt;}
.y139{bottom:405.946667pt;}
.y262{bottom:406.077333pt;}
.y70{bottom:407.550667pt;}
.yb8{bottom:408.818667pt;}
.y234{bottom:411.177333pt;}
.ydd{bottom:411.206667pt;}
.y115{bottom:412.169333pt;}
.y1c{bottom:412.778667pt;}
.y158{bottom:413.050667pt;}
.yf8{bottom:417.316000pt;}
.y1de{bottom:419.244000pt;}
.y204{bottom:420.314667pt;}
.y17b{bottom:420.320000pt;}
.y261{bottom:420.689333pt;}
.y1ba{bottom:420.798667pt;}
.y138{bottom:422.334667pt;}
.y194{bottom:422.926667pt;}
.y6f{bottom:423.492000pt;}
.y233{bottom:425.789333pt;}
.ydc{bottom:427.146667pt;}
.y1b{bottom:427.390667pt;}
.y114{bottom:428.109333pt;}
.y157{bottom:428.990667pt;}
.y203{bottom:434.862667pt;}
.y1dd{bottom:435.184000pt;}
.y260{bottom:435.301333pt;}
.y17a{bottom:436.260000pt;}
.y1b9{bottom:436.738667pt;}
.y137{bottom:438.274667pt;}
.y6e{bottom:439.933333pt;}
.y232{bottom:440.401333pt;}
.y1a{bottom:442.002667pt;}
.ydb{bottom:443.086667pt;}
.y113{bottom:444.049333pt;}
.yf7{bottom:444.678667pt;}
.y156{bottom:444.932000pt;}
.y44{bottom:448.576000pt;}
.y95{bottom:449.062667pt;}
.yb7{bottom:449.113333pt;}
.y202{bottom:449.474667pt;}
.y25f{bottom:449.913333pt;}
.y1dc{bottom:451.572000pt;}
.y179{bottom:452.200000pt;}
.y1b8{bottom:452.948000pt;}
.y136{bottom:454.662667pt;}
.y6d{bottom:455.874667pt;}
.y231{bottom:456.070667pt;}
.y19{bottom:456.614667pt;}
.yda{bottom:459.028000pt;}
.y112{bottom:459.989333pt;}
.y155{bottom:460.872000pt;}
.y193{bottom:462.256000pt;}
.y43{bottom:463.186667pt;}
.y201{bottom:464.086667pt;}
.y94{bottom:464.206667pt;}
.y25e{bottom:464.525333pt;}
.yb6{bottom:465.053333pt;}
.y1db{bottom:467.513333pt;}
.y178{bottom:468.140000pt;}
.y1b7{bottom:468.889333pt;}
.y135{bottom:470.602667pt;}
.y230{bottom:470.682667pt;}
.y18{bottom:471.226667pt;}
.y6c{bottom:471.814667pt;}
.yd9{bottom:474.968000pt;}
.y111{bottom:475.929333pt;}
.y154{bottom:476.812000pt;}
.y42{bottom:477.798667pt;}
.y192{bottom:478.196000pt;}
.y200{bottom:478.698667pt;}
.y25d{bottom:479.136000pt;}
.y93{bottom:479.349333pt;}
.yb5{bottom:480.994667pt;}
.yf6{bottom:482.668000pt;}
.y1da{bottom:483.453333pt;}
.y177{bottom:484.080000pt;}
.y17{bottom:484.742667pt;}
.y1b6{bottom:484.829333pt;}
.y22f{bottom:485.293333pt;}
.y134{bottom:486.542667pt;}
.y6b{bottom:487.754667pt;}
.yd8{bottom:490.908000pt;}
.y110{bottom:491.869333pt;}
.y41{bottom:492.410667pt;}
.y153{bottom:492.752000pt;}
.y1ff{bottom:493.246667pt;}
.y25c{bottom:493.748000pt;}
.y92{bottom:493.961333pt;}
.y191{bottom:494.136000pt;}
.yb4{bottom:496.934667pt;}
.yf5{bottom:498.608000pt;}
.y16{bottom:499.354667pt;}
.y1d9{bottom:499.393333pt;}
.y22e{bottom:499.905333pt;}
.y176{bottom:500.021333pt;}
.y1b5{bottom:500.769333pt;}
.y133{bottom:502.482667pt;}
.y6a{bottom:504.197333pt;}
.yd7{bottom:506.848000pt;}
.y40{bottom:507.022667pt;}
.y10f{bottom:507.810667pt;}
.y1fe{bottom:507.858667pt;}
.y25b{bottom:508.360000pt;}
.y152{bottom:508.692000pt;}
.y91{bottom:509.104000pt;}
.y190{bottom:510.077333pt;}
.yb3{bottom:512.962667pt;}
.y15{bottom:513.966667pt;}
.yf4{bottom:514.548000pt;}
.y1d8{bottom:515.333333pt;}
.y22d{bottom:515.574667pt;}
.y175{bottom:515.961333pt;}
.y1b4{bottom:516.980000pt;}
.y132{bottom:518.422667pt;}
.y69{bottom:520.137333pt;}
.y3f{bottom:521.634667pt;}
.y1fd{bottom:522.470667pt;}
.y25a{bottom:522.972000pt;}
.y90{bottom:523.716000pt;}
.y10e{bottom:523.750667pt;}
.y18f{bottom:526.017333pt;}
.y14{bottom:528.578667pt;}
.yb2{bottom:528.904000pt;}
.y22c{bottom:530.186667pt;}
.y174{bottom:531.901333pt;}
.y1b3{bottom:532.920000pt;}
.y131{bottom:534.362667pt;}
.yd6{bottom:534.409333pt;}
.y68{bottom:536.077333pt;}
.y3e{bottom:536.246667pt;}
.yf3{bottom:536.597333pt;}
.y1fc{bottom:537.018667pt;}
.y259{bottom:537.584000pt;}
.y8f{bottom:538.860000pt;}
.y10d{bottom:540.010667pt;}
.y18e{bottom:541.957333pt;}
.y13{bottom:543.190667pt;}
.y1d7{bottom:544.142667pt;}
.y22b{bottom:544.798667pt;}
.yb1{bottom:544.844000pt;}
.y173{bottom:547.841333pt;}
.y1b2{bottom:549.130667pt;}
.yd5{bottom:550.349333pt;}
.y3d{bottom:551.389333pt;}
.yf2{bottom:551.408000pt;}
.y1fb{bottom:551.630667pt;}
.y14f{bottom:551.730667pt;}
.y67{bottom:552.017333pt;}
.y258{bottom:552.196000pt;}
.y8e{bottom:553.472000pt;}
.y10c{bottom:555.952000pt;}
.y151{bottom:556.734667pt;}
.y12{bottom:557.802667pt;}
.y18d{bottom:557.897333pt;}
.y22a{bottom:559.410667pt;}
.yb0{bottom:560.784000pt;}
.y172{bottom:563.781333pt;}
.y1b1{bottom:565.070667pt;}
.yf1{bottom:566.218667pt;}
.yd4{bottom:566.222667pt;}
.y1fa{bottom:566.242667pt;}
.y257{bottom:566.808000pt;}
.y3c{bottom:566.932000pt;}
.y14e{bottom:567.670667pt;}
.y66{bottom:567.957333pt;}
.y130{bottom:568.481333pt;}
.y8d{bottom:568.614667pt;}
.y10b{bottom:571.892000pt;}
.y11{bottom:572.413333pt;}
.y18c{bottom:573.837333pt;}
.y229{bottom:575.078667pt;}
.yaf{bottom:576.724000pt;}
.y171{bottom:579.722667pt;}
.y1f9{bottom:580.790667pt;}
.yf0{bottom:581.029333pt;}
.y256{bottom:581.420000pt;}
.yd3{bottom:582.096000pt;}
.y8c{bottom:583.757333pt;}
.y14d{bottom:583.873333pt;}
.y65{bottom:583.898667pt;}
.y1d6{bottom:586.234667pt;}
.y10{bottom:587.025333pt;}
.y10a{bottom:587.832000pt;}
.y228{bottom:589.690667pt;}
.y18b{bottom:589.777333pt;}
.yae{bottom:592.753333pt;}
.y1f8{bottom:595.402667pt;}
.y170{bottom:595.662667pt;}
.y255{bottom:596.032000pt;}
.y8b{bottom:598.369333pt;}
.y14c{bottom:599.813333pt;}
.y64{bottom:599.838667pt;}
.yf{bottom:601.637333pt;}
.yef{bottom:601.949333pt;}
.y1d5{bottom:602.174667pt;}
.y109{bottom:603.772000pt;}
.y227{bottom:604.302667pt;}
.y18a{bottom:605.718667pt;}
.yd2{bottom:608.329333pt;}
.yad{bottom:608.693333pt;}
.y1f7{bottom:610.014667pt;}
.y254{bottom:610.644000pt;}
.y12f{bottom:613.228000pt;}
.y8a{bottom:613.513333pt;}
.y14b{bottom:615.753333pt;}
.y63{bottom:615.778667pt;}
.ye{bottom:616.249333pt;}
.y1b0{bottom:616.864000pt;}
.yee{bottom:617.889333pt;}
.y1d4{bottom:618.114667pt;}
.y226{bottom:619.970667pt;}
.y108{bottom:620.033333pt;}
.y189{bottom:621.658667pt;}
.y16f{bottom:622.332000pt;}
.yd1{bottom:624.269333pt;}
.y1f6{bottom:624.562667pt;}
.yac{bottom:624.633333pt;}
.y253{bottom:625.254667pt;}
.y89{bottom:628.125333pt;}
.y12e{bottom:629.168000pt;}
.yd{bottom:630.861333pt;}
.y1af{bottom:631.476000pt;}
.y14a{bottom:631.954667pt;}
.y62{bottom:632.221333pt;}
.y3b{bottom:633.066667pt;}
.y1d3{bottom:634.054667pt;}
.y225{bottom:634.582667pt;}
.y107{bottom:635.973333pt;}
.y1f5{bottom:639.174667pt;}
.y252{bottom:639.866667pt;}
.yed{bottom:640.137333pt;}
.yab{bottom:640.573333pt;}
.y88{bottom:643.268000pt;}
.yc{bottom:644.377333pt;}
.y12d{bottom:645.108000pt;}
.y1ae{bottom:646.088000pt;}
.y3a{bottom:647.678667pt;}
.y149{bottom:647.896000pt;}
.y61{bottom:648.161333pt;}
.y224{bottom:649.194667pt;}
.y1d2{bottom:649.996000pt;}
.yd0{bottom:651.830667pt;}
.y106{bottom:651.913333pt;}
.y1f4{bottom:653.786667pt;}
.y16e{bottom:654.314667pt;}
.y251{bottom:654.478667pt;}
.yec{bottom:656.077333pt;}
.y87{bottom:657.880000pt;}
.yb{bottom:658.989333pt;}
.y1ad{bottom:660.700000pt;}
.y12c{bottom:661.048000pt;}
.y39{bottom:662.290667pt;}
.y148{bottom:663.836000pt;}
.y60{bottom:664.101333pt;}
.y223{bottom:664.864000pt;}
.y1d1{bottom:665.936000pt;}
.ycf{bottom:667.770667pt;}
.y105{bottom:667.853333pt;}
.y1f3{bottom:668.334667pt;}
.y250{bottom:669.090667pt;}
.y188{bottom:669.438667pt;}
.yeb{bottom:670.888000pt;}
.y86{bottom:673.022667pt;}
.ya{bottom:673.601333pt;}
.y1ac{bottom:675.310667pt;}
.y38{bottom:676.902667pt;}
.y222{bottom:679.476000pt;}
.y5f{bottom:680.544000pt;}
.yaa{bottom:680.868000pt;}
.y1d0{bottom:681.876000pt;}
.y1f2{bottom:682.946667pt;}
.yce{bottom:683.644000pt;}
.y24f{bottom:683.702667pt;}
.y104{bottom:684.114667pt;}
.yea{bottom:685.698667pt;}
.y85{bottom:688.166667pt;}
.y9{bottom:688.213333pt;}
.y12b{bottom:689.853333pt;}
.y1ab{bottom:689.922667pt;}
.y37{bottom:691.514667pt;}
.y147{bottom:691.712000pt;}
.y221{bottom:694.088000pt;}
.y5e{bottom:696.484000pt;}
.ya9{bottom:696.809333pt;}
.y16d{bottom:696.925333pt;}
.y1f1{bottom:697.494667pt;}
.y1cf{bottom:697.816000pt;}
.y187{bottom:698.264000pt;}
.y24e{bottom:698.314667pt;}
.ycd{bottom:699.517333pt;}
.y103{bottom:700.054667pt;}
.y84{bottom:702.778667pt;}
.y8{bottom:702.825333pt;}
.y1aa{bottom:704.534667pt;}
.y36{bottom:706.126667pt;}
.ye9{bottom:706.618667pt;}
.y220{bottom:708.698667pt;}
.y1f0{bottom:712.106667pt;}
.y5d{bottom:712.424000pt;}
.ya8{bottom:712.749333pt;}
.y16c{bottom:712.865333pt;}
.y24d{bottom:712.926667pt;}
.y1ce{bottom:713.756000pt;}
.ycc{bottom:715.390667pt;}
.y102{bottom:715.994667pt;}
.y83{bottom:717.921333pt;}
.y1a9{bottom:719.146667pt;}
.y35{bottom:720.738667pt;}
.ye8{bottom:722.558667pt;}
.y21f{bottom:723.310667pt;}
.y1ef{bottom:726.718667pt;}
.y24c{bottom:727.538667pt;}
.y5c{bottom:728.364000pt;}
.ya7{bottom:728.689333pt;}
.y16b{bottom:728.805333pt;}
.y1cd{bottom:729.696000pt;}
.ycb{bottom:731.264000pt;}
.y101{bottom:731.936000pt;}
.y12a{bottom:731.941333pt;}
.y82{bottom:732.533333pt;}
.y146{bottom:732.870667pt;}
.y1a8{bottom:733.758667pt;}
.y34{bottom:735.350667pt;}
.ye7{bottom:738.498667pt;}
.y21e{bottom:738.980000pt;}
.y1ee{bottom:741.266667pt;}
.y24b{bottom:742.150667pt;}
.ya6{bottom:744.718667pt;}
.y16a{bottom:744.765333pt;}
.y5b{bottom:744.806667pt;}
.y1cc{bottom:745.637333pt;}
.yca{bottom:747.137333pt;}
.y81{bottom:747.676000pt;}
.y100{bottom:747.876000pt;}
.y129{bottom:747.882667pt;}
.y1a7{bottom:748.370667pt;}
.y145{bottom:748.812000pt;}
.y33{bottom:749.961333pt;}
.y7{bottom:750.256000pt;}
.y21d{bottom:753.592000pt;}
.ye6{bottom:754.440000pt;}
.y1ed{bottom:755.878667pt;}
.y24a{bottom:756.762667pt;}
.ya5{bottom:760.658667pt;}
.y169{bottom:760.706667pt;}
.y5a{bottom:760.746667pt;}
.y1cb{bottom:761.577333pt;}
.y80{bottom:762.288000pt;}
.y1a6{bottom:762.982667pt;}
.yc9{bottom:763.078667pt;}
.y128{bottom:763.822667pt;}
.yff{bottom:764.136000pt;}
.y32{bottom:764.573333pt;}
.y144{bottom:764.752000pt;}
.y6{bottom:764.868000pt;}
.y21c{bottom:768.204000pt;}
.ye5{bottom:770.380000pt;}
.y1ec{bottom:770.490667pt;}
.y249{bottom:771.374667pt;}
.ya4{bottom:776.598667pt;}
.y168{bottom:776.646667pt;}
.y59{bottom:776.688000pt;}
.y7f{bottom:777.432000pt;}
.y1ca{bottom:777.517333pt;}
.y1a5{bottom:777.594667pt;}
.y31{bottom:779.185333pt;}
.y5{bottom:779.480000pt;}
.y127{bottom:779.762667pt;}
.yfe{bottom:780.077333pt;}
.y143{bottom:780.692000pt;}
.y21b{bottom:782.816000pt;}
.y1eb{bottom:785.102667pt;}
.y248{bottom:785.985333pt;}
.ye4{bottom:786.320000pt;}
.yc8{bottom:789.310667pt;}
.y1a4{bottom:792.206667pt;}
.ya3{bottom:792.538667pt;}
.y167{bottom:792.586667pt;}
.y58{bottom:792.628000pt;}
.y7e{bottom:792.973333pt;}
.y1c9{bottom:793.457333pt;}
.y30{bottom:793.797333pt;}
.y126{bottom:795.702667pt;}
.yfd{bottom:796.017333pt;}
.y142{bottom:796.632000pt;}
.y21a{bottom:798.484000pt;}
.y1ea{bottom:799.650667pt;}
.y247{bottom:800.597333pt;}
.y4{bottom:802.241333pt;}
.yc7{bottom:805.250667pt;}
.y1a3{bottom:806.818667pt;}
.ya2{bottom:808.478667pt;}
.y166{bottom:808.526667pt;}
.y57{bottom:808.568000pt;}
.y1c8{bottom:809.397333pt;}
.y125{bottom:811.642667pt;}
.yfc{bottom:812.277333pt;}
.y141{bottom:812.572000pt;}
.y219{bottom:813.096000pt;}
.y2f{bottom:814.121333pt;}
.y1e9{bottom:814.262667pt;}
.y246{bottom:815.209333pt;}
.y3{bottom:818.182667pt;}
.y1a2{bottom:821.429333pt;}
.y165{bottom:824.488000pt;}
.y56{bottom:824.508000pt;}
.y1c7{bottom:825.337333pt;}
.y124{bottom:827.584000pt;}
.y218{bottom:827.708000pt;}
.yfb{bottom:828.218667pt;}
.y140{bottom:828.512000pt;}
.y1e8{bottom:828.810667pt;}
.y245{bottom:829.821333pt;}
.yc6{bottom:830.222667pt;}
.y164{bottom:840.428000pt;}
.y55{bottom:840.448000pt;}
.y2e{bottom:841.344000pt;}
.y1a1{bottom:842.709333pt;}
.y217{bottom:843.376000pt;}
.y1e7{bottom:843.422667pt;}
.y123{bottom:843.524000pt;}
.yfa{bottom:844.158667pt;}
.y244{bottom:844.433333pt;}
.y13f{bottom:844.453333pt;}
.y1c6{bottom:854.146667pt;}
.y54{bottom:856.388000pt;}
.yc5{bottom:856.522667pt;}
.y2d{bottom:857.285333pt;}
.y1a0{bottom:857.321333pt;}
.y216{bottom:857.988000pt;}
.y1e6{bottom:858.034667pt;}
.y7d{bottom:858.177333pt;}
.y243{bottom:859.045333pt;}
.y122{bottom:859.464000pt;}
.yf9{bottom:860.098667pt;}
.y13e{bottom:860.393333pt;}
.y2{bottom:864.358667pt;}
.y53{bottom:872.329333pt;}
.yc4{bottom:872.396000pt;}
.y215{bottom:873.657333pt;}
.y19f{bottom:877.110667pt;}
.y1{bottom:888.269333pt;}
.y2c{bottom:922.806667pt;}
.h4{height:23.537007pt;}
.h9{height:33.283277pt;}
.hb{height:33.522381pt;}
.hd{height:36.928037pt;}
.ha{height:39.903534pt;}
.h6{height:39.956668pt;}
.h5{height:43.851674pt;}
.hc{height:44.460067pt;}
.h8{height:44.465401pt;}
.h7{height:44.696508pt;}
.h2{height:45.092358pt;}
.h3{height:45.097692pt;}
.h1{height:53.712173pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:178.472000pt;}
.x9{left:179.686667pt;}
.xb{left:180.761333pt;}
.x15{left:182.077333pt;}
.x10{left:183.341333pt;}
.x21{left:185.828000pt;}
.x13{left:187.990667pt;}
.x1d{left:191.094667pt;}
.x11{left:192.969333pt;}
.xc{left:195.373333pt;}
.x2{left:198.998667pt;}
.x3{left:201.626667pt;}
.x1{left:209.353333pt;}
.x8{left:217.481333pt;}
.x5{left:223.333333pt;}
.xd{left:225.702667pt;}
.x16{left:243.358667pt;}
.x1c{left:245.544000pt;}
.xf{left:249.825333pt;}
.x1e{left:257.286667pt;}
.x1a{left:269.798667pt;}
.x14{left:278.560000pt;}
.x1f{left:285.574667pt;}
.x7{left:288.261333pt;}
.xa{left:302.962667pt;}
.x19{left:308.034667pt;}
.x6{left:309.952000pt;}
.xe{left:334.318667pt;}
.x4{left:378.057333pt;}
.x12{left:392.022667pt;}
.x20{left:487.564000pt;}
.x17{left:540.282667pt;}
.x18{left:560.694667pt;}
}




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