
    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_d3efa0f4c363681458978762.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.930000;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_0f0f8eac2897d13118b7733b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941000;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_a376d84addd9326f758d767a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942000;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_0490c637069b6e290554c0d0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941000;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_13b8c72bbc54a814829cbed3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.969000;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_8f94bd1b4de0d734928ee3fe.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.545000;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_02291017b99dd2e772b30c47.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.721000;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_17a0ebb0e4bd8178e4ac81ca.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.055000;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_064f71ddc1f7fd56fb2f0d16.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.963000;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_76bfd764ccfbbb2a562cca46.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.603000;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_c1ffdad44f9759aeae945b69.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.264000;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_47c82f2874a584b1a137734d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.060000;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_26af0ff63b537bd660c122c4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.930000;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_1ee5e5a01f22e4bb7b25ada8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.039000;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_31a0abc2de7847a0d174004a.woff2')format("woff");}.fff{font-family:fff;line-height:0.984000;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_cc3b0117c2e46148fa2d0b0e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.972000;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;}
.m2{transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-1.158348px;}
.ls17{letter-spacing:-0.946670px;}
.lsf{letter-spacing:-0.799672px;}
.ls10{letter-spacing:-0.652673px;}
.ls1{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.005880px;}
.ls19{letter-spacing:0.058499px;}
.ls13{letter-spacing:0.199918px;}
.lsd{letter-spacing:0.570354px;}
.ls5{letter-spacing:0.587994px;}
.ls9{letter-spacing:0.599754px;}
.lsc{letter-spacing:0.605634px;}
.ls8{letter-spacing:0.611514px;}
.lse{letter-spacing:0.617394px;}
.ls7{letter-spacing:0.629154px;}
.lsa{letter-spacing:0.635034px;}
.ls4{letter-spacing:0.646793px;}
.ls6{letter-spacing:0.658553px;}
.lsb{letter-spacing:0.670313px;}
.ls15{letter-spacing:13.141612px;}
.ls18{letter-spacing:13.504320px;}
.ls2{letter-spacing:18.251334px;}
.ls3{letter-spacing:19.615480px;}
.ls0{letter-spacing:29.111583px;}
.ls16{letter-spacing:529.970975px;}
.ls14{letter-spacing:581.675929px;}
.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;}
}
.ws105{word-spacing:-13.183612px;}
.ws1b7{word-spacing:-11.342400px;}
.ws1b8{word-spacing:-10.508400px;}
.ws17{word-spacing:-0.061800px;}
.ws43{word-spacing:-0.058799px;}
.ws39{word-spacing:-0.047999px;}
.ws2f{word-spacing:-0.044999px;}
.ws1b2{word-spacing:-0.043801px;}
.ws3a{word-spacing:0.000000px;}
.ws51{word-spacing:0.740872px;}
.ws197{word-spacing:10.921354px;}
.ws198{word-spacing:11.209351px;}
.ws199{word-spacing:11.272350px;}
.ws19a{word-spacing:11.276850px;}
.ws19b{word-spacing:11.393848px;}
.ws2e{word-spacing:11.884342px;}
.ws62{word-spacing:12.112676px;}
.ws35{word-spacing:12.335224px;}
.ws34{word-spacing:12.469622px;}
.ws104{word-spacing:12.662819px;}
.ws33{word-spacing:12.675419px;}
.ws1b3{word-spacing:13.030678px;}
.ws144{word-spacing:13.118146px;}
.ws1a3{word-spacing:13.130825px;}
.ws1ab{word-spacing:13.135325px;}
.ws1a0{word-spacing:13.148825px;}
.ws18d{word-spacing:13.175824px;}
.ws19c{word-spacing:13.189324px;}
.ws18f{word-spacing:13.193824px;}
.ws1b5{word-spacing:13.205881px;}
.ws1ad{word-spacing:13.207324px;}
.ws1aa{word-spacing:13.211824px;}
.ws182{word-spacing:13.220824px;}
.ws19e{word-spacing:13.229824px;}
.ws177{word-spacing:13.234324px;}
.ws196{word-spacing:13.238823px;}
.ws1a8{word-spacing:13.243323px;}
.ws191{word-spacing:13.247823px;}
.ws183{word-spacing:13.252323px;}
.ws18a{word-spacing:13.256823px;}
.ws1a4{word-spacing:13.265823px;}
.ws1a2{word-spacing:13.274823px;}
.ws19f{word-spacing:13.279323px;}
.ws185{word-spacing:13.288323px;}
.ws195{word-spacing:13.292823px;}
.ws1a9{word-spacing:13.297323px;}
.ws184{word-spacing:13.301823px;}
.ws180{word-spacing:13.306323px;}
.ws17f{word-spacing:13.310823px;}
.ws189{word-spacing:13.315322px;}
.ws1af{word-spacing:13.324322px;}
.ws187{word-spacing:13.328822px;}
.ws1ac{word-spacing:13.333322px;}
.ws18c{word-spacing:13.337822px;}
.ws32{word-spacing:13.342322px;}
.ws1b6{word-spacing:13.350423px;}
.ws193{word-spacing:13.351322px;}
.ws190{word-spacing:13.355822px;}
.ws1b4{word-spacing:13.359183px;}
.ws188{word-spacing:13.360322px;}
.ws1a1{word-spacing:13.364822px;}
.ws173{word-spacing:13.369322px;}
.ws18b{word-spacing:13.373822px;}
.ws18e{word-spacing:13.387321px;}
.ws175{word-spacing:13.396321px;}
.ws1b0{word-spacing:13.400821px;}
.ws19d{word-spacing:13.409821px;}
.ws1ae{word-spacing:13.414321px;}
.ws172{word-spacing:13.432321px;}
.ws1a7{word-spacing:13.436821px;}
.ws17b{word-spacing:13.468320px;}
.ws1b1{word-spacing:13.486320px;}
.ws192{word-spacing:13.495320px;}
.ws176{word-spacing:13.504320px;}
.ws17d{word-spacing:13.508820px;}
.ws178{word-spacing:13.540319px;}
.ws17c{word-spacing:13.571819px;}
.ws17a{word-spacing:13.580819px;}
.ws194{word-spacing:13.585319px;}
.ws186{word-spacing:13.625818px;}
.ws179{word-spacing:13.639318px;}
.ws1a5{word-spacing:13.679818px;}
.ws30{word-spacing:13.684318px;}
.ws181{word-spacing:13.702317px;}
.ws1a6{word-spacing:13.724817px;}
.ws174{word-spacing:13.747317px;}
.ws37{word-spacing:13.761428px;}
.ws12a{word-spacing:13.799827px;}
.ws31{word-spacing:13.805816px;}
.ws17e{word-spacing:13.814816px;}
.wsff{word-spacing:13.833427px;}
.wsd7{word-spacing:13.838227px;}
.ws138{word-spacing:13.847827px;}
.ws171{word-spacing:13.882315px;}
.ws101{word-spacing:13.895826px;}
.ws166{word-spacing:13.929426px;}
.ws36{word-spacing:13.939026px;}
.wsfb{word-spacing:13.958226px;}
.wsd6{word-spacing:13.982225px;}
.wsfd{word-spacing:14.020625px;}
.ws12b{word-spacing:14.068624px;}
.ws100{word-spacing:14.145423px;}
.wsfe{word-spacing:14.193423px;}
.wsa3{word-spacing:14.251022px;}
.ws38{word-spacing:14.351821px;}
.wsa8{word-spacing:14.670450px;}
.ws3b{word-spacing:14.676330px;}
.ws66{word-spacing:14.729250px;}
.ws3e{word-spacing:14.835089px;}
.wsc5{word-spacing:14.876248px;}
.wsab{word-spacing:14.982087px;}
.ws3c{word-spacing:15.158485px;}
.ws19{word-spacing:15.317244px;}
.ws136{word-spacing:15.329004px;}
.ws50{word-spacing:15.499522px;}
.ws58{word-spacing:15.711200px;}
.ws131{word-spacing:15.834678px;}
.wsd8{word-spacing:16.043400px;}
.wsfc{word-spacing:16.059600px;}
.ws127{word-spacing:16.140435px;}
.ws134{word-spacing:16.516751px;}
.ws9b{word-spacing:16.534391px;}
.ws146{word-spacing:16.716669px;}
.wsa7{word-spacing:16.857788px;}
.ws124{word-spacing:16.875428px;}
.ws67{word-spacing:16.945987px;}
.ws69{word-spacing:16.981267px;}
.ws42{word-spacing:17.057706px;}
.ws44{word-spacing:17.069466px;}
.ws13a{word-spacing:17.075346px;}
.ws14a{word-spacing:17.098866px;}
.ws106{word-spacing:17.145905px;}
.ws21{word-spacing:17.198824px;}
.wsbf{word-spacing:17.216464px;}
.ws4c{word-spacing:17.292904px;}
.ws61{word-spacing:17.322303px;}
.ws15d{word-spacing:17.363463px;}
.ws64{word-spacing:17.398742px;}
.ws65{word-spacing:17.445782px;}
.ws161{word-spacing:17.481062px;}
.wse9{word-spacing:17.498701px;}
.ws142{word-spacing:17.504581px;}
.ws60{word-spacing:17.539861px;}
.ws63{word-spacing:17.551621px;}
.wsd2{word-spacing:17.557501px;}
.wse7{word-spacing:17.592780px;}
.ws115{word-spacing:17.639820px;}
.ws68{word-spacing:17.663340px;}
.ws170{word-spacing:17.675100px;}
.ws119{word-spacing:17.680980px;}
.ws70{word-spacing:17.698619px;}
.ws85{word-spacing:17.704499px;}
.wsfa{word-spacing:17.792698px;}
.wsb{word-spacing:17.802178px;}
.ws6c{word-spacing:17.816218px;}
.ws6{word-spacing:17.820178px;}
.wsbc{word-spacing:17.822098px;}
.ws13{word-spacing:17.826178px;}
.ws24{word-spacing:17.880898px;}
.wsa0{word-spacing:17.951457px;}
.ws11{word-spacing:17.976180px;}
.ws16{word-spacing:17.988180px;}
.ws9{word-spacing:17.994180px;}
.wsba{word-spacing:18.004376px;}
.ws145{word-spacing:18.033776px;}
.ws139{word-spacing:18.063176px;}
.wsd4{word-spacing:18.104335px;}
.ws10{word-spacing:18.132181px;}
.wsf{word-spacing:18.150182px;}
.ws152{word-spacing:18.163135px;}
.ws8{word-spacing:18.168182px;}
.wsbb{word-spacing:18.169015px;}
.ws7{word-spacing:18.174182px;}
.wsa{word-spacing:18.180182px;}
.ws87{word-spacing:18.216054px;}
.wsc{word-spacing:18.216182px;}
.wsa2{word-spacing:18.239574px;}
.wsd{word-spacing:18.252183px;}
.wsa1{word-spacing:18.257214px;}
.wsb4{word-spacing:18.310133px;}
.wse{word-spacing:18.318183px;}
.ws14{word-spacing:18.324183px;}
.ws12{word-spacing:18.336183px;}
.wsa6{word-spacing:18.357173px;}
.ws15{word-spacing:18.414184px;}
.ws71{word-spacing:18.427732px;}
.ws45{word-spacing:18.433612px;}
.ws122{word-spacing:18.557091px;}
.wsf4{word-spacing:18.592370px;}
.ws5{word-spacing:18.600186px;}
.ws6e{word-spacing:18.668809px;}
.ws57{word-spacing:18.674689px;}
.ws6d{word-spacing:18.715849px;}
.wsc6{word-spacing:18.827568px;}
.ws14c{word-spacing:18.898127px;}
.ws52{word-spacing:18.915767px;}
.ws4a{word-spacing:18.956927px;}
.wsdf{word-spacing:19.068645px;}
.wsf6{word-spacing:19.145085px;}
.ws14b{word-spacing:19.180364px;}
.ws22{word-spacing:19.309723px;}
.wsd0{word-spacing:19.350883px;}
.ws12f{word-spacing:19.403802px;}
.wsb9{word-spacing:19.480241px;}
.ws157{word-spacing:19.486121px;}
.ws5e{word-spacing:19.521401px;}
.ws154{word-spacing:19.527281px;}
.ws55{word-spacing:19.591960px;}
.ws74{word-spacing:19.603720px;}
.ws4{word-spacing:19.635179px;}
.ws162{word-spacing:19.821278px;}
.ws5b{word-spacing:19.827158px;}
.wsc8{word-spacing:19.856557px;}
.ws169{word-spacing:19.862437px;}
.ws7a{word-spacing:19.885957px;}
.ws13b{word-spacing:19.932997px;}
.ws3{word-spacing:19.938781px;}
.ws123{word-spacing:19.938877px;}
.wsf9{word-spacing:19.956516px;}
.ws9e{word-spacing:19.991796px;}
.ws6b{word-spacing:20.027076px;}
.ws10b{word-spacing:20.032956px;}
.wsea{word-spacing:20.079995px;}
.ws111{word-spacing:20.221114px;}
.ws23{word-spacing:20.262273px;}
.ws7d{word-spacing:20.268153px;}
.ws53{word-spacing:20.403392px;}
.ws1a{word-spacing:20.509231px;}
.wsed{word-spacing:20.562150px;}
.ws15a{word-spacing:20.650349px;}
.wsae{word-spacing:20.797348px;}
.wsc2{word-spacing:20.844387px;}
.wse0{word-spacing:20.879667px;}
.wsa9{word-spacing:21.003146px;}
.wsf2{word-spacing:21.050185px;}
.ws11a{word-spacing:21.061945px;}
.ws118{word-spacing:21.138384px;}
.ws1d{word-spacing:21.144264px;}
.wsad{word-spacing:21.185424px;}
.ws126{word-spacing:21.220703px;}
.ws14f{word-spacing:21.279503px;}
.ws18{word-spacing:21.338302px;}
.ws79{word-spacing:21.397102px;}
.ws155{word-spacing:21.420621px;}
.ws40{word-spacing:21.479421px;}
.ws46{word-spacing:21.608780px;}
.ws27{word-spacing:21.620539px;}
.ws7e{word-spacing:21.720498px;}
.ws86{word-spacing:21.826337px;}
.ws15f{word-spacing:21.902777px;}
.ws147{word-spacing:21.908656px;}
.ws151{word-spacing:22.290853px;}
.wsc0{word-spacing:22.437851px;}
.ws72{word-spacing:22.543690px;}
.ws3f{word-spacing:22.561330px;}
.wsd1{word-spacing:22.661289px;}
.ws9a{word-spacing:22.673049px;}
.ws48{word-spacing:22.978806px;}
.ws9d{word-spacing:23.019965px;}
.ws81{word-spacing:23.090524px;}
.wsc7{word-spacing:23.178723px;}
.ws2b{word-spacing:23.243403px;}
.ws148{word-spacing:23.319842px;}
.ws28{word-spacing:23.484480px;}
.ws10d{word-spacing:23.519760px;}
.ws8a{word-spacing:23.525640px;}
.ws75{word-spacing:23.566800px;}
.ws16b{word-spacing:23.602079px;}
.wse5{word-spacing:23.619719px;}
.ws0{word-spacing:23.649600px;}
.wse3{word-spacing:23.678518px;}
.ws4d{word-spacing:23.743198px;}
.ws159{word-spacing:23.766717px;}
.wsc9{word-spacing:23.854917px;}
.ws11f{word-spacing:23.943116px;}
.wsde{word-spacing:23.948996px;}
.ws11c{word-spacing:24.001915px;}
.wse1{word-spacing:24.113634px;}
.ws5c{word-spacing:24.125394px;}
.wsc1{word-spacing:24.195953px;}
.ws109{word-spacing:24.201833px;}
.ws16d{word-spacing:24.207713px;}
.ws59{word-spacing:24.531110px;}
.wsef{word-spacing:24.542870px;}
.wsee{word-spacing:24.584029px;}
.ws29{word-spacing:24.601669px;}
.wscd{word-spacing:24.613429px;}
.ws13c{word-spacing:24.631069px;}
.ws54{word-spacing:24.683988px;}
.ws15b{word-spacing:24.695748px;}
.ws121{word-spacing:24.725148px;}
.ws8d{word-spacing:24.866266px;}
.ws78{word-spacing:24.925066px;}
.ws3d{word-spacing:24.983865px;}
.ws13e{word-spacing:25.019145px;}
.wsca{word-spacing:25.072064px;}
.wscb{word-spacing:25.083824px;}
.ws26{word-spacing:25.160263px;}
.ws14e{word-spacing:25.266102px;}
.ws107{word-spacing:25.301382px;}
.wse6{word-spacing:25.401341px;}
.ws2c{word-spacing:25.513060px;}
.wsb8{word-spacing:25.560099px;}
.ws11b{word-spacing:25.589499px;}
.ws5f{word-spacing:25.642418px;}
.ws108{word-spacing:25.701218px;}
.ws80{word-spacing:25.812937px;}
.ws143{word-spacing:25.818817px;}
.wsdd{word-spacing:25.901136px;}
.ws1c{word-spacing:25.930535px;}
.ws15e{word-spacing:25.965815px;}
.ws13f{word-spacing:26.012855px;}
.ws95{word-spacing:26.059894px;}
.wse4{word-spacing:26.071654px;}
.wsc4{word-spacing:26.095174px;}
.ws47{word-spacing:26.236292px;}
.wsf3{word-spacing:26.283332px;}
.ws16e{word-spacing:26.389171px;}
.ws99{word-spacing:26.436210px;}
.ws97{word-spacing:26.459730px;}
.ws164{word-spacing:26.536169px;}
.ws8b{word-spacing:26.624368px;}
.wscc{word-spacing:26.659648px;}
.wsf0{word-spacing:26.671408px;}
.wse8{word-spacing:26.724327px;}
.ws90{word-spacing:26.824286px;}
.wsb1{word-spacing:26.859566px;}
.wsaf{word-spacing:26.918365px;}
.wsd5{word-spacing:26.994805px;}
.ws112{word-spacing:27.030084px;}
.wsbe{word-spacing:27.053604px;}
.ws83{word-spacing:27.059484px;}
.ws113{word-spacing:27.094764px;}
.ws15c{word-spacing:27.288802px;}
.ws110{word-spacing:27.306441px;}
.ws149{word-spacing:27.424040px;}
.ws98{word-spacing:27.588678px;}
.ws10f{word-spacing:27.629838px;}
.wsb0{word-spacing:27.647478px;}
.ws2d{word-spacing:27.653358px;}
.ws4f{word-spacing:27.665118px;}
.ws114{word-spacing:27.670998px;}
.ws77{word-spacing:27.823876px;}
.wse2{word-spacing:28.000274px;}
.ws7b{word-spacing:28.012034px;}
.ws160{word-spacing:28.023794px;}
.wsc3{word-spacing:28.070834px;}
.ws7f{word-spacing:28.147273px;}
.ws91{word-spacing:28.217832px;}
.ws56{word-spacing:28.282511px;}
.ws41{word-spacing:28.353071px;}
.wsb6{word-spacing:28.388350px;}
.wsf5{word-spacing:28.394230px;}
.ws133{word-spacing:28.423630px;}
.ws1f{word-spacing:28.588268px;}
.ws5d{word-spacing:28.799946px;}
.ws93{word-spacing:28.852866px;}
.ws1e{word-spacing:28.917545px;}
.ws2a{word-spacing:29.105703px;}
.ws13d{word-spacing:29.211542px;}
.ws84{word-spacing:29.223302px;}
.wsbd{word-spacing:29.499659px;}
.wsd3{word-spacing:29.723097px;}
.ws16c{word-spacing:29.746616px;}
.ws12e{word-spacing:29.781896px;}
.ws92{word-spacing:29.946534px;}
.ws16f{word-spacing:30.011214px;}
.ws16a{word-spacing:30.234651px;}
.ws25{word-spacing:30.316971px;}
.ws11e{word-spacing:30.369890px;}
.ws89{word-spacing:30.587448px;}
.wsb5{word-spacing:30.746206px;}
.ws116{word-spacing:30.916725px;}
.wsf1{word-spacing:31.081363px;}
.ws49{word-spacing:31.269521px;}
.ws150{word-spacing:31.304801px;}
.ws8f{word-spacing:31.657597px;}
.ws7c{word-spacing:31.728156px;}
.ws94{word-spacing:32.421989px;}
.wsf8{word-spacing:32.786545px;}
.ws88{word-spacing:32.845345px;}
.ws10e{word-spacing:33.086422px;}
.ws9c{word-spacing:33.298100px;}
.ws130{word-spacing:33.492138px;}
.wscf{word-spacing:33.686176px;}
.wsce{word-spacing:33.727336px;}
.ws14d{word-spacing:34.544648px;}
.ws6a{word-spacing:34.579927px;}
.wsac{word-spacing:34.721046px;}
.ws6f{word-spacing:34.762205px;}
.ws9f{word-spacing:34.791605px;}
.wsec{word-spacing:34.885684px;}
.ws153{word-spacing:35.050322px;}
.ws4b{word-spacing:35.156161px;}
.ws82{word-spacing:35.332559px;}
.wsf7{word-spacing:35.426638px;}
.ws135{word-spacing:35.550117px;}
.ws125{word-spacing:36.014633px;}
.ws20{word-spacing:36.279230px;}
.ws140{word-spacing:36.355669px;}
.ws8c{word-spacing:36.584987px;}
.ws96{word-spacing:36.978943px;}
.wsb3{word-spacing:37.466978px;}
.ws156{word-spacing:37.608096px;}
.ws141{word-spacing:37.637496px;}
.ws73{word-spacing:37.778615px;}
.ws5a{word-spacing:37.884453px;}
.wsb2{word-spacing:38.049092px;}
.ws167{word-spacing:38.107891px;}
.ws11d{word-spacing:38.149051px;}
.ws158{word-spacing:38.219610px;}
.ws10c{word-spacing:38.701765px;}
.ws10a{word-spacing:38.789964px;}
.ws120{word-spacing:38.966362px;}
.ws163{word-spacing:39.760154px;}
.wseb{word-spacing:40.383428px;}
.ws117{word-spacing:40.401068px;}
.ws1b{word-spacing:40.653905px;}
.ws137{word-spacing:41.747574px;}
.ws4e{word-spacing:42.429647px;}
.ws8e{word-spacing:42.535486px;}
.ws2{word-spacing:42.955379px;}
.ws76{word-spacing:42.982361px;}
.ws1{word-spacing:43.099380px;}
.ws165{word-spacing:44.999181px;}
.ws132{word-spacing:46.128129px;}
.wsa4{word-spacing:46.774923px;}
.wsa5{word-spacing:49.420896px;}
.wsaa{word-spacing:50.214688px;}
.wsb7{word-spacing:56.853140px;}
.ws168{word-spacing:59.281555px;}
.ws12d{word-spacing:165.823527px;}
.ws12c{word-spacing:166.159523px;}
.ws128{word-spacing:225.822777px;}
.ws129{word-spacing:232.110699px;}
.ws103{word-spacing:469.923726px;}
.ws102{word-spacing:515.907151px;}
.wsdc{word-spacing:521.628680px;}
.wsda{word-spacing:544.620392px;}
.wsdb{word-spacing:567.376908px;}
.wsd9{word-spacing:567.612105px;}
._28{margin-left:-12.695862px;}
._17{margin-left:-5.191987px;}
._1c{margin-left:-3.916040px;}
._7{margin-left:-1.634623px;}
._5{width:1.242012px;}
._10{width:2.651853px;}
._0{width:8.954400px;}
._15{width:12.171476px;}
._f{width:14.120812px;}
._1b{width:15.758239px;}
._6{width:17.292173px;}
._4{width:18.918189px;}
._c{width:20.591550px;}
._9{width:22.578970px;}
._e{width:24.266512px;}
._1a{width:25.371941px;}
._b{width:26.530289px;}
._d{width:28.029674px;}
._11{width:29.538128px;}
._13{width:30.857925px;}
._1{width:32.877000px;}
._16{width:33.974293px;}
._2a{width:34.991523px;}
._12{width:36.220430px;}
._a{width:37.643376px;}
._14{width:39.160400px;}
._29{width:40.299764px;}
._8{width:41.841653px;}
._3{width:44.395385px;}
._19{width:49.138659px;}
._3c{width:60.351704px;}
._3d{width:65.861122px;}
._2c{width:166.140323px;}
._2f{width:188.863239px;}
._30{width:195.319158px;}
._34{width:198.587918px;}
._3a{width:211.854952px;}
._37{width:221.579630px;}
._3b{width:253.892826px;}
._2d{width:265.935876px;}
._31{width:268.115049px;}
._2b{width:297.092286px;}
._38{width:313.316083px;}
._36{width:317.348033px;}
._39{width:323.299959px;}
._35{width:327.331908px;}
._2e{width:337.315783px;}
._32{width:400.434995px;}
._33{width:402.134173px;}
._23{width:492.622642px;}
._1f{width:568.773690px;}
._1d{width:572.464844px;}
._1e{width:583.749503px;}
._20{width:596.430945px;}
._22{width:855.037312px;}
._18{width:895.697604px;}
._26{width:1425.294759px;}
._2{width:1602.252600px;}
._24{width:1639.607892px;}
._25{width:1731.971950px;}
._21{width:1946.294071px;}
._27{width:2136.314096px;}
.fc3{color:rgb(85,123,178);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:29.995200px;}
.fsf{font-size:37.800000px;}
.fse{font-size:40.800000px;}
.fs9{font-size:41.999400px;}
.fsc{font-size:43.800600px;}
.fs3{font-size:43.996200px;}
.fs7{font-size:44.999400px;}
.fsa{font-size:47.999400px;}
.fsd{font-size:53.349000px;}
.fsb{font-size:54.000000px;}
.fs6{font-size:58.799400px;}
.fs5{font-size:60.000600px;}
.fs4{font-size:61.800000px;}
.fs2{font-size:66.000600px;}
.fs0{font-size:78.000000px;}
.fs1{font-size:144.000600px;}
.y0{bottom:0.000000px;}
.y1ea{bottom:84.166905px;}
.y10d{bottom:91.417082px;}
.y6f{bottom:91.417804px;}
.y1b8{bottom:91.418340px;}
.yd7{bottom:91.418467px;}
.y160{bottom:91.430885px;}
.ya5{bottom:91.441324px;}
.y17b{bottom:91.442645px;}
.y3a{bottom:91.501843px;}
.y1e9{bottom:94.666800px;}
.ydf{bottom:99.156783px;}
.y135{bottom:99.156846px;}
.y143{bottom:100.771650px;}
.y39{bottom:103.492671px;}
.y10c{bottom:104.173350px;}
.y1b7{bottom:104.939535px;}
.y6e{bottom:109.445700px;}
.yd6{bottom:109.446363px;}
.y15f{bottom:109.458781px;}
.ya4{bottom:109.469220px;}
.y17a{bottom:109.470541px;}
.y38{bottom:115.483500px;}
.y1b6{bottom:118.460730px;}
.yde{bottom:118.885736px;}
.y134{bottom:120.161384px;}
.y10b{bottom:123.903298px;}
.y1e8{bottom:127.200150px;}
.y6d{bottom:127.389000px;}
.y15e{bottom:127.401418px;}
.y179{bottom:127.413178px;}
.ya3{bottom:127.497116px;}
.y1b5{bottom:131.896426px;}
.ydd{bottom:138.614690px;}
.y37{bottom:140.910361px;}
.y133{bottom:141.165921px;}
.y10a{bottom:143.632251px;}
.y32{bottom:145.170970px;}
.yd5{bottom:145.417350px;}
.y1b4{bottom:145.417620px;}
.y15d{bottom:145.429314px;}
.ya2{bottom:145.439753px;}
.y178{bottom:145.441074px;}
.y1e7{bottom:145.815000px;}
.y36{bottom:154.431555px;}
.y109{bottom:157.153682px;}
.ydc{bottom:158.343643px;}
.y1b3{bottom:158.938815px;}
.y132{bottom:162.170459px;}
.y31{bottom:163.113607px;}
.y15c{bottom:163.457210px;}
.ya1{bottom:163.467649px;}
.y6c{bottom:163.468259px;}
.y177{bottom:163.468970px;}
.y1e6{bottom:164.429550px;}
.y35{bottom:167.952750px;}
.y1b2{bottom:172.460010px;}
.y34{bottom:172.970100px;}
.y108{bottom:176.882635px;}
.ydb{bottom:178.072597px;}
.y30{bottom:181.141503px;}
.y15b{bottom:181.399847px;}
.y176{bottom:181.411607px;}
.y33{bottom:181.474050px;}
.yd4{bottom:181.492322px;}
.ya0{bottom:181.495545px;}
.y6b{bottom:181.496155px;}
.y1e5{bottom:183.044400px;}
.y131{bottom:183.174996px;}
.y1b1{bottom:185.896831px;}
.y107{bottom:196.611589px;}
.yda{bottom:197.801550px;}
.y2f{bottom:199.169399px;}
.y1b0{bottom:199.418025px;}
.y15a{bottom:199.427743px;}
.yd3{bottom:199.434959px;}
.y9f{bottom:199.438182px;}
.y6a{bottom:199.438792px;}
.y175{bottom:199.439503px;}
.y1e4{bottom:201.659250px;}
.y130{bottom:204.179534px;}
.y1af{bottom:212.939220px;}
.y106{bottom:216.340542px;}
.y25{bottom:217.109096px;}
.y2e{bottom:217.112036px;}
.y159{bottom:217.455639px;}
.yd2{bottom:217.462855px;}
.y9e{bottom:217.466078px;}
.y69{bottom:217.466688px;}
.y174{bottom:217.467399px;}
.yd9{bottom:217.530600px;}
.y1e3{bottom:220.274250px;}
.y12e{bottom:223.908487px;}
.y1ae{bottom:226.460415px;}
.y12f{bottom:231.137197px;}
.y24{bottom:235.136992px;}
.y2d{bottom:235.139932px;}
.y158{bottom:235.398276px;}
.y173{bottom:235.410036px;}
.yd1{bottom:235.490751px;}
.y9d{bottom:235.493974px;}
.y105{bottom:235.984297px;}
.y12d{bottom:237.344719px;}
.y1ad{bottom:239.896111px;}
.yba{bottom:248.320780px;}
.y12c{bottom:250.866150px;}
.y1e2{bottom:251.663850px;}
.y23{bottom:253.164888px;}
.y2c{bottom:253.167828px;}
.y1ac{bottom:253.417305px;}
.y157{bottom:253.426172px;}
.yd0{bottom:253.433388px;}
.y9c{bottom:253.436611px;}
.y172{bottom:253.437932px;}
.y68{bottom:253.438691px;}
.y104{bottom:255.713250px;}
.yb9{bottom:266.348676px;}
.y1ab{bottom:266.938500px;}
.y1e1{bottom:267.668550px;}
.y12b{bottom:270.595200px;}
.y22{bottom:271.107525px;}
.y2b{bottom:271.110465px;}
.y156{bottom:271.454068px;}
.ycf{bottom:271.461284px;}
.y9b{bottom:271.464507px;}
.y171{bottom:271.465828px;}
.y67{bottom:271.466587px;}
.y103{bottom:275.442450px;}
.y1aa{bottom:280.460985px;}
.yb8{bottom:284.291313px;}
.y21{bottom:289.135421px;}
.y2a{bottom:289.138361px;}
.y155{bottom:289.396705px;}
.y170{bottom:289.408465px;}
.yce{bottom:289.489180px;}
.y9a{bottom:289.492403px;}
.y66{bottom:289.494483px;}
.yb7{bottom:302.319209px;}
.y20{bottom:307.163317px;}
.y29{bottom:307.166257px;}
.y154{bottom:307.424601px;}
.ycd{bottom:307.431817px;}
.y99{bottom:307.435040px;}
.y16f{bottom:307.436361px;}
.y65{bottom:307.437120px;}
.y1a9{bottom:309.713970px;}
.yb6{bottom:320.347105px;}
.y1a8{bottom:323.149666px;}
.y1f{bottom:325.105954px;}
.y28{bottom:325.108894px;}
.y153{bottom:325.452497px;}
.yf1{bottom:325.453405px;}
.y117{bottom:325.454522px;}
.ycc{bottom:325.459713px;}
.y101{bottom:325.460755px;}
.y129{bottom:325.461872px;}
.y98{bottom:325.462936px;}
.y16e{bottom:325.464257px;}
.y64{bottom:325.465016px;}
.yb5{bottom:338.289742px;}
.y1e{bottom:343.133850px;}
.y27{bottom:343.136790px;}
.y152{bottom:343.395134px;}
.yf0{bottom:343.396042px;}
.y116{bottom:343.397159px;}
.ycb{bottom:343.402350px;}
.y100{bottom:343.403392px;}
.y128{bottom:343.404509px;}
.y97{bottom:343.405573px;}
.y16d{bottom:343.406894px;}
.y63{bottom:343.407653px;}
.y1a7{bottom:350.192055px;}
.yb4{bottom:356.317638px;}
.y1d{bottom:361.162050px;}
.y26{bottom:361.164686px;}
.y151{bottom:361.423030px;}
.yef{bottom:361.423938px;}
.y115{bottom:361.425055px;}
.yca{bottom:361.430246px;}
.yff{bottom:361.431288px;}
.y127{bottom:361.432405px;}
.y96{bottom:361.433469px;}
.y16c{bottom:361.434790px;}
.y62{bottom:361.435549px;}
.y1a6{bottom:363.713250px;}
.y1a4{bottom:363.713804px;}
.y1a5{bottom:368.645550px;}
.yb3{bottom:374.345534px;}
.y1a3{bottom:377.149500px;}
.y150{bottom:379.450926px;}
.yee{bottom:379.451834px;}
.y114{bottom:379.452951px;}
.yc9{bottom:379.458142px;}
.yfe{bottom:379.459184px;}
.y126{bottom:379.460301px;}
.y95{bottom:379.461365px;}
.y16b{bottom:379.462686px;}
.y61{bottom:379.463445px;}
.y1a2{bottom:382.166850px;}
.y1a1{bottom:390.674925px;}
.yb2{bottom:392.288171px;}
.y14f{bottom:397.393563px;}
.yed{bottom:397.394471px;}
.y113{bottom:397.395588px;}
.yc8{bottom:397.400779px;}
.yfd{bottom:397.401821px;}
.y125{bottom:397.402938px;}
.y94{bottom:397.404002px;}
.y16a{bottom:397.405323px;}
.y60{bottom:397.406082px;}
.y1c{bottom:406.823415px;}
.yb1{bottom:410.316067px;}
.y14e{bottom:415.421459px;}
.yec{bottom:415.422367px;}
.y112{bottom:415.423484px;}
.yc7{bottom:415.428675px;}
.yfc{bottom:415.429717px;}
.y124{bottom:415.430834px;}
.y93{bottom:415.431898px;}
.y169{bottom:415.433219px;}
.y1a0{bottom:417.717315px;}
.y1b{bottom:424.766594px;}
.yb0{bottom:428.343963px;}
.y19f{bottom:431.153011px;}
.y14d{bottom:433.449355px;}
.yeb{bottom:433.450263px;}
.y111{bottom:433.451380px;}
.yc6{bottom:433.456571px;}
.yfb{bottom:433.457613px;}
.y123{bottom:433.458730px;}
.y92{bottom:433.459794px;}
.y168{bottom:433.461115px;}
.y5f{bottom:433.463344px;}
.y19e{bottom:444.674205px;}
.yaf{bottom:446.286600px;}
.y1a{bottom:447.302820px;}
.y14c{bottom:451.391992px;}
.yea{bottom:451.392900px;}
.y110{bottom:451.394017px;}
.yc5{bottom:451.399208px;}
.yfa{bottom:451.400250px;}
.y122{bottom:451.401367px;}
.y91{bottom:451.402431px;}
.y167{bottom:451.403752px;}
.y5e{bottom:451.405981px;}
.yae{bottom:464.314800px;}
.y19{bottom:465.331500px;}
.y14b{bottom:469.419888px;}
.ye9{bottom:469.420796px;}
.y10f{bottom:469.421913px;}
.yc4{bottom:469.427104px;}
.yf9{bottom:469.428146px;}
.y121{bottom:469.429263px;}
.y90{bottom:469.430327px;}
.y166{bottom:469.431648px;}
.y5d{bottom:469.433877px;}
.y19d{bottom:473.927190px;}
.y18{bottom:483.274680px;}
.y14a{bottom:487.447784px;}
.y19c{bottom:487.448385px;}
.ye8{bottom:487.448692px;}
.y10e{bottom:487.449809px;}
.yc3{bottom:487.455000px;}
.yf8{bottom:487.456042px;}
.y120{bottom:487.457159px;}
.y8f{bottom:487.458223px;}
.y165{bottom:487.459544px;}
.y5c{bottom:487.461773px;}
.y19b{bottom:500.969580px;}
.y17{bottom:501.303360px;}
.y149{bottom:505.390421px;}
.ye7{bottom:505.391329px;}
.yad{bottom:505.392446px;}
.yc2{bottom:505.397637px;}
.yf7{bottom:505.398679px;}
.y11f{bottom:505.399796px;}
.y8e{bottom:505.400860px;}
.y164{bottom:505.402181px;}
.y5b{bottom:505.404410px;}
.y1e0{bottom:506.494731px;}
.y19a{bottom:514.405276px;}
.y1df{bottom:519.250561px;}
.y16{bottom:519.332040px;}
.y148{bottom:523.418317px;}
.ye6{bottom:523.419225px;}
.yac{bottom:523.420342px;}
.yc1{bottom:523.425533px;}
.yf6{bottom:523.426575px;}
.y11e{bottom:523.427692px;}
.y8d{bottom:523.428756px;}
.y163{bottom:523.430077px;}
.y5a{bottom:523.432306px;}
.y199{bottom:527.926470px;}
.y1de{bottom:532.006391px;}
.y15{bottom:537.275220px;}
.y147{bottom:541.446213px;}
.ye5{bottom:541.447121px;}
.y198{bottom:541.447665px;}
.yab{bottom:541.448238px;}
.yc0{bottom:541.453429px;}
.yf5{bottom:541.454471px;}
.y11d{bottom:541.455588px;}
.y8c{bottom:541.456652px;}
.y162{bottom:541.457973px;}
.y59{bottom:541.460202px;}
.y1dd{bottom:544.762220px;}
.y197{bottom:554.968860px;}
.y14{bottom:555.303900px;}
.y1dc{bottom:557.518050px;}
.y146{bottom:559.388850px;}
.ye4{bottom:559.389758px;}
.yaa{bottom:559.390875px;}
.ybf{bottom:559.396066px;}
.yf4{bottom:559.397108px;}
.y11c{bottom:559.398225px;}
.y8b{bottom:559.399289px;}
.y161{bottom:559.400610px;}
.y58{bottom:559.402839px;}
.y13c{bottom:560.666684px;}
.y141{bottom:560.668154px;}
.y196{bottom:568.404556px;}
.y13{bottom:573.332580px;}
.ye3{bottom:577.417654px;}
.ya9{bottom:577.418771px;}
.ybe{bottom:577.423962px;}
.yf3{bottom:577.425004px;}
.y11b{bottom:577.426121px;}
.y8a{bottom:577.427185px;}
.y57{bottom:577.430735px;}
.y13b{bottom:578.609321px;}
.y140{bottom:578.610791px;}
.y195{bottom:581.925750px;}
.y1db{bottom:586.433055px;}
.ye2{bottom:595.445550px;}
.ya8{bottom:595.446667px;}
.y194{bottom:595.446945px;}
.ybd{bottom:595.451858px;}
.yf2{bottom:595.452900px;}
.y11a{bottom:595.454017px;}
.y89{bottom:595.455081px;}
.y56{bottom:595.458631px;}
.y12{bottom:595.783305px;}
.y13a{bottom:596.637217px;}
.y13f{bottom:596.638687px;}
.y1da{bottom:599.954250px;}
.y193{bottom:608.968140px;}
.ya7{bottom:613.389304px;}
.y1d9{bottom:613.389946px;}
.ybc{bottom:613.394495px;}
.y119{bottom:613.396654px;}
.y88{bottom:613.397718px;}
.y55{bottom:613.401268px;}
.y11{bottom:613.811985px;}
.y139{bottom:614.665113px;}
.y13e{bottom:614.666583px;}
.y192{bottom:622.403836px;}
.y1d8{bottom:626.911140px;}
.y17c{bottom:627.505350px;}
.ya6{bottom:631.417200px;}
.ybb{bottom:631.422391px;}
.y118{bottom:631.424550px;}
.y87{bottom:631.425614px;}
.y54{bottom:631.429164px;}
.y10{bottom:631.840665px;}
.y138{bottom:632.607750px;}
.y13d{bottom:632.609220px;}
.y102{bottom:634.138500px;}
.y191{bottom:635.925030px;}
.y1d7{bottom:640.432335px;}
.y86{bottom:649.453510px;}
.y53{bottom:649.457060px;}
.yf{bottom:649.783845px;}
.y1d6{bottom:653.953530px;}
.y190{bottom:665.178015px;}
.y1d5{bottom:667.389226px;}
.y85{bottom:667.396147px;}
.y52{bottom:667.399697px;}
.ye{bottom:667.812525px;}
.yd8{bottom:677.423550px;}
.y18f{bottom:678.699210px;}
.y12a{bottom:678.784200px;}
.y1d4{bottom:680.910420px;}
.y84{bottom:685.424043px;}
.y51{bottom:685.427593px;}
.yd{bottom:685.841205px;}
.y142{bottom:688.138350px;}
.y18e{bottom:692.134906px;}
.y1d3{bottom:694.431615px;}
.y83{bottom:703.451939px;}
.y50{bottom:703.455489px;}
.y18d{bottom:705.656101px;}
.y1d2{bottom:707.952810px;}
.yc{bottom:708.291930px;}
.y18c{bottom:719.177295px;}
.y1d1{bottom:721.388506px;}
.y82{bottom:721.394576px;}
.y4f{bottom:721.398126px;}
.yb{bottom:726.320610px;}
.y1d0{bottom:734.909700px;}
.y81{bottom:739.422472px;}
.y4e{bottom:739.426022px;}
.ya{bottom:744.263789px;}
.y1cf{bottom:748.430895px;}
.y18b{bottom:748.431405px;}
.y80{bottom:757.450368px;}
.y4d{bottom:757.453918px;}
.y1ce{bottom:761.952090px;}
.y18a{bottom:761.952600px;}
.y9{bottom:762.292470px;}
.y1cd{bottom:775.388911px;}
.y7f{bottom:775.393005px;}
.y4c{bottom:775.396555px;}
.y8{bottom:780.321150px;}
.y1cc{bottom:788.910105px;}
.y189{bottom:791.210763px;}
.y7e{bottom:793.420901px;}
.y4b{bottom:793.424451px;}
.y1cb{bottom:802.431300px;}
.y7{bottom:807.278550px;}
.y188{bottom:809.153400px;}
.y7d{bottom:811.448797px;}
.y4a{bottom:811.452347px;}
.y1ca{bottom:815.955930px;}
.y187{bottom:827.181296px;}
.y7c{bottom:829.391434px;}
.y1c9{bottom:829.391626px;}
.y49{bottom:829.394984px;}
.y1c8{bottom:842.912820px;}
.y186{bottom:845.209192px;}
.y7b{bottom:847.419330px;}
.y48{bottom:847.422880px;}
.y1c7{bottom:856.434015px;}
.y185{bottom:863.151829px;}
.y5{bottom:865.020300px;}
.y7a{bottom:865.447226px;}
.y47{bottom:865.450776px;}
.y1c6{bottom:869.955210px;}
.y6{bottom:872.418600px;}
.y184{bottom:881.179725px;}
.y79{bottom:883.389863px;}
.y1c5{bottom:883.390906px;}
.y46{bottom:883.393413px;}
.y1c4{bottom:896.912100px;}
.y183{bottom:899.207621px;}
.y4{bottom:901.078025px;}
.y78{bottom:901.417759px;}
.y45{bottom:901.421309px;}
.y1c3{bottom:910.433295px;}
.y182{bottom:917.150258px;}
.y77{bottom:919.445655px;}
.y44{bottom:919.449205px;}
.y1c2{bottom:923.954490px;}
.y181{bottom:935.178154px;}
.y76{bottom:937.388292px;}
.y1c1{bottom:937.390186px;}
.y43{bottom:937.391842px;}
.y3{bottom:940.026587px;}
.y1c0{bottom:950.911380px;}
.y180{bottom:953.206050px;}
.y75{bottom:955.416188px;}
.y42{bottom:955.419738px;}
.y1bf{bottom:964.432575px;}
.y17f{bottom:971.149350px;}
.y74{bottom:973.444084px;}
.y41{bottom:973.447634px;}
.y1be{bottom:977.953770px;}
.y2{bottom:979.057950px;}
.y73{bottom:991.386721px;}
.y1bd{bottom:991.389466px;}
.y40{bottom:991.390271px;}
.y1bc{bottom:1004.910660px;}
.y72{bottom:1009.414617px;}
.y3f{bottom:1009.418167px;}
.y1bb{bottom:1018.431855px;}
.y71{bottom:1027.442513px;}
.y3e{bottom:1027.446063px;}
.y1ba{bottom:1031.953050px;}
.y1{bottom:1036.034400px;}
.y70{bottom:1045.385149px;}
.y3d{bottom:1045.388700px;}
.y1b9{bottom:1045.388746px;}
.y145{bottom:1114.946173px;}
.ye1{bottom:1114.946486px;}
.y137{bottom:1114.946549px;}
.y17e{bottom:1114.947657px;}
.y3c{bottom:1114.950487px;}
.y144{bottom:1129.913586px;}
.ye0{bottom:1129.913898px;}
.y136{bottom:1129.913962px;}
.y17d{bottom:1129.915070px;}
.y3b{bottom:1129.917900px;}
.ha{height:21.626539px;}
.h13{height:28.350000px;}
.hb{height:30.281567px;}
.h12{height:31.089600px;}
.h10{height:31.580233px;}
.h5{height:31.721260px;}
.hf{height:31.949574px;}
.h9{height:32.444567px;}
.hc{height:34.607567px;}
.he{height:38.934000px;}
.h11{height:40.651938px;}
.hd{height:41.982772px;}
.h8{height:42.570766px;}
.h7{height:43.260433px;}
.h6{height:44.557800px;}
.h4{height:47.586433px;}
.h2{height:56.238000px;}
.h3{height:103.824433px;}
.h1{height:1190.250000px;}
.h0{height:1190.551483px;}
.w0{width:892.914001px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039350px;}
.x8{left:89.036250px;}
.x1{left:91.077150px;}
.x6{left:94.818900px;}
.xa{left:97.030018px;}
.x16{left:107.574696px;}
.xb{left:110.465681px;}
.x14{left:154.856700px;}
.x15{left:158.938500px;}
.xf{left:171.864265px;}
.x10{left:236.323859px;}
.x3{left:253.502250px;}
.x4{left:268.384200px;}
.x9{left:270.680250px;}
.xd{left:272.466000px;}
.x11{left:310.137336px;}
.x12{left:382.420833px;}
.x7{left:457.085204px;}
.x18{left:465.335250px;}
.xc{left:469.075871px;}
.x13{left:474.433283px;}
.x17{left:479.624862px;}
.x1a{left:483.219150px;}
.x19{left:484.282650px;}
.x5{left:496.714800px;}
.xe{left:653.949839px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-1.029643pt;}
.ls17{letter-spacing:-0.841485pt;}
.lsf{letter-spacing:-0.710819pt;}
.ls10{letter-spacing:-0.580154pt;}
.ls1{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.005227pt;}
.ls19{letter-spacing:0.051999pt;}
.ls13{letter-spacing:0.177705pt;}
.lsd{letter-spacing:0.506981pt;}
.ls5{letter-spacing:0.522661pt;}
.ls9{letter-spacing:0.533115pt;}
.lsc{letter-spacing:0.538341pt;}
.ls8{letter-spacing:0.543568pt;}
.lse{letter-spacing:0.548794pt;}
.ls7{letter-spacing:0.559248pt;}
.lsa{letter-spacing:0.564474pt;}
.ls4{letter-spacing:0.574927pt;}
.ls6{letter-spacing:0.585381pt;}
.lsb{letter-spacing:0.595834pt;}
.ls15{letter-spacing:11.681433pt;}
.ls18{letter-spacing:12.003840pt;}
.ls2{letter-spacing:16.223408pt;}
.ls3{letter-spacing:17.435982pt;}
.ls0{letter-spacing:25.876963pt;}
.ls16{letter-spacing:471.085311pt;}
.ls14{letter-spacing:517.045270pt;}
.ws105{word-spacing:-11.718766pt;}
.ws1b7{word-spacing:-10.082133pt;}
.ws1b8{word-spacing:-9.340800pt;}
.ws17{word-spacing:-0.054933pt;}
.ws43{word-spacing:-0.052266pt;}
.ws39{word-spacing:-0.042666pt;}
.ws2f{word-spacing:-0.039999pt;}
.ws1b2{word-spacing:-0.038934pt;}
.ws3a{word-spacing:0.000000pt;}
.ws51{word-spacing:0.658553pt;}
.ws197{word-spacing:9.707871pt;}
.ws198{word-spacing:9.963867pt;}
.ws199{word-spacing:10.019866pt;}
.ws19a{word-spacing:10.023866pt;}
.ws19b{word-spacing:10.127865pt;}
.ws2e{word-spacing:10.563859pt;}
.ws62{word-spacing:10.766823pt;}
.ws35{word-spacing:10.964643pt;}
.ws34{word-spacing:11.084108pt;}
.ws104{word-spacing:11.255839pt;}
.ws33{word-spacing:11.267039pt;}
.ws1b3{word-spacing:11.582825pt;}
.ws144{word-spacing:11.660574pt;}
.ws1a3{word-spacing:11.671844pt;}
.ws1ab{word-spacing:11.675844pt;}
.ws1a0{word-spacing:11.687844pt;}
.ws18d{word-spacing:11.711844pt;}
.ws19c{word-spacing:11.723844pt;}
.ws18f{word-spacing:11.727844pt;}
.ws1b5{word-spacing:11.738561pt;}
.ws1ad{word-spacing:11.739843pt;}
.ws1aa{word-spacing:11.743843pt;}
.ws182{word-spacing:11.751843pt;}
.ws19e{word-spacing:11.759843pt;}
.ws177{word-spacing:11.763843pt;}
.ws196{word-spacing:11.767843pt;}
.ws1a8{word-spacing:11.771843pt;}
.ws191{word-spacing:11.775843pt;}
.ws183{word-spacing:11.779843pt;}
.ws18a{word-spacing:11.783843pt;}
.ws1a4{word-spacing:11.791843pt;}
.ws1a2{word-spacing:11.799843pt;}
.ws19f{word-spacing:11.803843pt;}
.ws185{word-spacing:11.811843pt;}
.ws195{word-spacing:11.815842pt;}
.ws1a9{word-spacing:11.819842pt;}
.ws184{word-spacing:11.823842pt;}
.ws180{word-spacing:11.827842pt;}
.ws17f{word-spacing:11.831842pt;}
.ws189{word-spacing:11.835842pt;}
.ws1af{word-spacing:11.843842pt;}
.ws187{word-spacing:11.847842pt;}
.ws1ac{word-spacing:11.851842pt;}
.ws18c{word-spacing:11.855842pt;}
.ws32{word-spacing:11.859842pt;}
.ws1b6{word-spacing:11.867043pt;}
.ws193{word-spacing:11.867842pt;}
.ws190{word-spacing:11.871842pt;}
.ws1b4{word-spacing:11.874829pt;}
.ws188{word-spacing:11.875842pt;}
.ws1a1{word-spacing:11.879842pt;}
.ws173{word-spacing:11.883842pt;}
.ws18b{word-spacing:11.887841pt;}
.ws18e{word-spacing:11.899841pt;}
.ws175{word-spacing:11.907841pt;}
.ws1b0{word-spacing:11.911841pt;}
.ws19d{word-spacing:11.919841pt;}
.ws1ae{word-spacing:11.923841pt;}
.ws172{word-spacing:11.939841pt;}
.ws1a7{word-spacing:11.943841pt;}
.ws17b{word-spacing:11.971840pt;}
.ws1b1{word-spacing:11.987840pt;}
.ws192{word-spacing:11.995840pt;}
.ws176{word-spacing:12.003840pt;}
.ws17d{word-spacing:12.007840pt;}
.ws178{word-spacing:12.035840pt;}
.ws17c{word-spacing:12.063839pt;}
.ws17a{word-spacing:12.071839pt;}
.ws194{word-spacing:12.075839pt;}
.ws186{word-spacing:12.111839pt;}
.ws179{word-spacing:12.123838pt;}
.ws1a5{word-spacing:12.159838pt;}
.ws30{word-spacing:12.163838pt;}
.ws181{word-spacing:12.179838pt;}
.ws1a6{word-spacing:12.199837pt;}
.ws174{word-spacing:12.219837pt;}
.ws37{word-spacing:12.232380pt;}
.ws12a{word-spacing:12.266513pt;}
.ws31{word-spacing:12.271836pt;}
.ws17e{word-spacing:12.279836pt;}
.wsff{word-spacing:12.296380pt;}
.wsd7{word-spacing:12.300646pt;}
.ws138{word-spacing:12.309179pt;}
.ws171{word-spacing:12.339835pt;}
.ws101{word-spacing:12.351846pt;}
.ws166{word-spacing:12.381712pt;}
.ws36{word-spacing:12.390245pt;}
.wsfb{word-spacing:12.407312pt;}
.wsd6{word-spacing:12.428645pt;}
.wsfd{word-spacing:12.462778pt;}
.ws12b{word-spacing:12.505444pt;}
.ws100{word-spacing:12.573709pt;}
.wsfe{word-spacing:12.616376pt;}
.wsa3{word-spacing:12.667575pt;}
.ws38{word-spacing:12.757174pt;}
.wsa8{word-spacing:13.040400pt;}
.ws3b{word-spacing:13.045627pt;}
.ws66{word-spacing:13.092666pt;}
.ws3e{word-spacing:13.186745pt;}
.wsc5{word-spacing:13.223332pt;}
.wsab{word-spacing:13.317411pt;}
.ws3c{word-spacing:13.474209pt;}
.ws19{word-spacing:13.615328pt;}
.ws136{word-spacing:13.625781pt;}
.ws50{word-spacing:13.777353pt;}
.ws58{word-spacing:13.965511pt;}
.ws131{word-spacing:14.075270pt;}
.wsd8{word-spacing:14.260800pt;}
.wsfc{word-spacing:14.275200pt;}
.ws127{word-spacing:14.347054pt;}
.ws134{word-spacing:14.681557pt;}
.ws9b{word-spacing:14.697237pt;}
.ws146{word-spacing:14.859262pt;}
.wsa7{word-spacing:14.984700pt;}
.ws124{word-spacing:15.000380pt;}
.ws67{word-spacing:15.063100pt;}
.ws69{word-spacing:15.094459pt;}
.ws42{word-spacing:15.162405pt;}
.ws44{word-spacing:15.172859pt;}
.ws13a{word-spacing:15.178085pt;}
.ws14a{word-spacing:15.198992pt;}
.ws106{word-spacing:15.240804pt;}
.ws21{word-spacing:15.287844pt;}
.wsbf{word-spacing:15.303524pt;}
.ws4c{word-spacing:15.371470pt;}
.ws61{word-spacing:15.397603pt;}
.ws15d{word-spacing:15.434189pt;}
.ws64{word-spacing:15.465549pt;}
.ws65{word-spacing:15.507362pt;}
.ws161{word-spacing:15.538721pt;}
.wse9{word-spacing:15.554401pt;}
.ws142{word-spacing:15.559628pt;}
.ws60{word-spacing:15.590988pt;}
.ws63{word-spacing:15.601441pt;}
.wsd2{word-spacing:15.606667pt;}
.wse7{word-spacing:15.638027pt;}
.ws115{word-spacing:15.679840pt;}
.ws68{word-spacing:15.700746pt;}
.ws170{word-spacing:15.711200pt;}
.ws119{word-spacing:15.716426pt;}
.ws70{word-spacing:15.732106pt;}
.ws85{word-spacing:15.737333pt;}
.wsfa{word-spacing:15.815732pt;}
.wsb{word-spacing:15.824158pt;}
.ws6c{word-spacing:15.836638pt;}
.ws6{word-spacing:15.840158pt;}
.wsbc{word-spacing:15.841865pt;}
.ws13{word-spacing:15.845492pt;}
.ws24{word-spacing:15.894131pt;}
.wsa0{word-spacing:15.956851pt;}
.ws11{word-spacing:15.978826pt;}
.ws16{word-spacing:15.989493pt;}
.ws9{word-spacing:15.994827pt;}
.wsba{word-spacing:16.003890pt;}
.ws145{word-spacing:16.030023pt;}
.ws139{word-spacing:16.056156pt;}
.wsd4{word-spacing:16.092742pt;}
.ws10{word-spacing:16.117495pt;}
.wsf{word-spacing:16.133495pt;}
.ws152{word-spacing:16.145009pt;}
.ws8{word-spacing:16.149495pt;}
.wsbb{word-spacing:16.150235pt;}
.ws7{word-spacing:16.154828pt;}
.wsa{word-spacing:16.160162pt;}
.ws87{word-spacing:16.192048pt;}
.wsc{word-spacing:16.192162pt;}
.wsa2{word-spacing:16.212955pt;}
.wsd{word-spacing:16.224162pt;}
.wsa1{word-spacing:16.228634pt;}
.wsb4{word-spacing:16.275674pt;}
.wse{word-spacing:16.282829pt;}
.ws14{word-spacing:16.288163pt;}
.ws12{word-spacing:16.298830pt;}
.wsa6{word-spacing:16.317487pt;}
.ws15{word-spacing:16.368164pt;}
.ws71{word-spacing:16.380206pt;}
.ws45{word-spacing:16.385433pt;}
.ws122{word-spacing:16.495192pt;}
.wsf4{word-spacing:16.526551pt;}
.ws5{word-spacing:16.533499pt;}
.ws6e{word-spacing:16.594497pt;}
.ws57{word-spacing:16.599724pt;}
.ws6d{word-spacing:16.636310pt;}
.wsc6{word-spacing:16.735616pt;}
.ws14c{word-spacing:16.798335pt;}
.ws52{word-spacing:16.814015pt;}
.ws4a{word-spacing:16.850601pt;}
.wsdf{word-spacing:16.949907pt;}
.wsf6{word-spacing:17.017853pt;}
.ws14b{word-spacing:17.049213pt;}
.ws22{word-spacing:17.164198pt;}
.wsd0{word-spacing:17.200784pt;}
.ws12f{word-spacing:17.247824pt;}
.wsb9{word-spacing:17.315770pt;}
.ws157{word-spacing:17.320997pt;}
.ws5e{word-spacing:17.352356pt;}
.ws154{word-spacing:17.357583pt;}
.ws55{word-spacing:17.415076pt;}
.ws74{word-spacing:17.425529pt;}
.ws4{word-spacing:17.453492pt;}
.ws162{word-spacing:17.618914pt;}
.ws5b{word-spacing:17.624140pt;}
.wsc8{word-spacing:17.650273pt;}
.ws169{word-spacing:17.655500pt;}
.ws7a{word-spacing:17.676406pt;}
.ws13b{word-spacing:17.718219pt;}
.ws3{word-spacing:17.723361pt;}
.ws123{word-spacing:17.723446pt;}
.wsf9{word-spacing:17.739126pt;}
.ws9e{word-spacing:17.770485pt;}
.ws6b{word-spacing:17.801845pt;}
.ws10b{word-spacing:17.807072pt;}
.wsea{word-spacing:17.848885pt;}
.ws111{word-spacing:17.974323pt;}
.ws23{word-spacing:18.010910pt;}
.ws7d{word-spacing:18.016136pt;}
.ws53{word-spacing:18.136348pt;}
.ws1a{word-spacing:18.230427pt;}
.wsed{word-spacing:18.277467pt;}
.ws15a{word-spacing:18.355866pt;}
.wsae{word-spacing:18.486531pt;}
.wsc2{word-spacing:18.528344pt;}
.wse0{word-spacing:18.559704pt;}
.wsa9{word-spacing:18.669463pt;}
.wsf2{word-spacing:18.711276pt;}
.ws11a{word-spacing:18.721729pt;}
.ws118{word-spacing:18.789675pt;}
.ws1d{word-spacing:18.794902pt;}
.wsad{word-spacing:18.831488pt;}
.ws126{word-spacing:18.862848pt;}
.ws14f{word-spacing:18.915114pt;}
.ws18{word-spacing:18.967380pt;}
.ws79{word-spacing:19.019646pt;}
.ws155{word-spacing:19.040552pt;}
.ws40{word-spacing:19.092819pt;}
.ws46{word-spacing:19.207804pt;}
.ws27{word-spacing:19.218257pt;}
.ws7e{word-spacing:19.307110pt;}
.ws86{word-spacing:19.401189pt;}
.ws15f{word-spacing:19.469135pt;}
.ws147{word-spacing:19.474361pt;}
.ws151{word-spacing:19.814091pt;}
.wsc0{word-spacing:19.944756pt;}
.ws72{word-spacing:20.038836pt;}
.ws3f{word-spacing:20.054515pt;}
.wsd1{word-spacing:20.143368pt;}
.ws9a{word-spacing:20.153821pt;}
.ws48{word-spacing:20.425605pt;}
.ws9d{word-spacing:20.462191pt;}
.ws81{word-spacing:20.524911pt;}
.wsc7{word-spacing:20.603310pt;}
.ws2b{word-spacing:20.660803pt;}
.ws148{word-spacing:20.728748pt;}
.ws28{word-spacing:20.875094pt;}
.ws10d{word-spacing:20.906453pt;}
.ws8a{word-spacing:20.911680pt;}
.ws75{word-spacing:20.948266pt;}
.ws16b{word-spacing:20.979626pt;}
.wse5{word-spacing:20.995306pt;}
.ws0{word-spacing:21.021867pt;}
.wse3{word-spacing:21.047572pt;}
.ws4d{word-spacing:21.105065pt;}
.ws159{word-spacing:21.125971pt;}
.wsc9{word-spacing:21.204370pt;}
.ws11f{word-spacing:21.282769pt;}
.wsde{word-spacing:21.287996pt;}
.ws11c{word-spacing:21.335036pt;}
.wse1{word-spacing:21.434341pt;}
.ws5c{word-spacing:21.444795pt;}
.wsc1{word-spacing:21.507514pt;}
.ws109{word-spacing:21.512740pt;}
.ws16d{word-spacing:21.517967pt;}
.ws59{word-spacing:21.805431pt;}
.wsef{word-spacing:21.815884pt;}
.wsee{word-spacing:21.852470pt;}
.ws29{word-spacing:21.868150pt;}
.wscd{word-spacing:21.878603pt;}
.ws13c{word-spacing:21.894283pt;}
.ws54{word-spacing:21.941323pt;}
.ws15b{word-spacing:21.951776pt;}
.ws121{word-spacing:21.977909pt;}
.ws8d{word-spacing:22.103348pt;}
.ws78{word-spacing:22.155614pt;}
.ws3d{word-spacing:22.207880pt;}
.ws13e{word-spacing:22.239240pt;}
.wsca{word-spacing:22.286279pt;}
.wscb{word-spacing:22.296732pt;}
.ws26{word-spacing:22.364678pt;}
.ws14e{word-spacing:22.458757pt;}
.ws107{word-spacing:22.490117pt;}
.wse6{word-spacing:22.578970pt;}
.ws2c{word-spacing:22.678275pt;}
.wsb8{word-spacing:22.720088pt;}
.ws11b{word-spacing:22.746221pt;}
.ws5f{word-spacing:22.793261pt;}
.ws108{word-spacing:22.845527pt;}
.ws80{word-spacing:22.944833pt;}
.ws143{word-spacing:22.950059pt;}
.wsdd{word-spacing:23.023232pt;}
.ws1c{word-spacing:23.049365pt;}
.ws15e{word-spacing:23.080724pt;}
.ws13f{word-spacing:23.122537pt;}
.ws95{word-spacing:23.164350pt;}
.wse4{word-spacing:23.174804pt;}
.wsc4{word-spacing:23.195710pt;}
.ws47{word-spacing:23.321149pt;}
.wsf3{word-spacing:23.362962pt;}
.ws16e{word-spacing:23.457041pt;}
.ws99{word-spacing:23.498854pt;}
.ws97{word-spacing:23.519760pt;}
.ws164{word-spacing:23.587706pt;}
.ws8b{word-spacing:23.666105pt;}
.wscc{word-spacing:23.697465pt;}
.wsf0{word-spacing:23.707918pt;}
.wse8{word-spacing:23.754958pt;}
.ws90{word-spacing:23.843810pt;}
.wsb1{word-spacing:23.875170pt;}
.wsaf{word-spacing:23.927436pt;}
.wsd5{word-spacing:23.995382pt;}
.ws112{word-spacing:24.026741pt;}
.wsbe{word-spacing:24.047648pt;}
.ws83{word-spacing:24.052875pt;}
.ws113{word-spacing:24.084234pt;}
.ws15c{word-spacing:24.256712pt;}
.ws110{word-spacing:24.272392pt;}
.ws149{word-spacing:24.376925pt;}
.ws98{word-spacing:24.523270pt;}
.ws10f{word-spacing:24.559856pt;}
.wsb0{word-spacing:24.575536pt;}
.ws2d{word-spacing:24.580763pt;}
.ws4f{word-spacing:24.591216pt;}
.ws114{word-spacing:24.596442pt;}
.ws77{word-spacing:24.732334pt;}
.wse2{word-spacing:24.889133pt;}
.ws7b{word-spacing:24.899586pt;}
.ws160{word-spacing:24.910039pt;}
.wsc3{word-spacing:24.951852pt;}
.ws7f{word-spacing:25.019798pt;}
.ws91{word-spacing:25.082517pt;}
.ws56{word-spacing:25.140010pt;}
.ws41{word-spacing:25.202729pt;}
.wsb6{word-spacing:25.234089pt;}
.wsf5{word-spacing:25.239316pt;}
.ws133{word-spacing:25.265449pt;}
.ws1f{word-spacing:25.411794pt;}
.ws5d{word-spacing:25.599952pt;}
.ws93{word-spacing:25.646992pt;}
.ws1e{word-spacing:25.704484pt;}
.ws2a{word-spacing:25.871736pt;}
.ws13d{word-spacing:25.965815pt;}
.ws84{word-spacing:25.976268pt;}
.wsbd{word-spacing:26.221919pt;}
.wsd3{word-spacing:26.420530pt;}
.ws16c{word-spacing:26.441437pt;}
.ws12e{word-spacing:26.472797pt;}
.ws92{word-spacing:26.619142pt;}
.ws16f{word-spacing:26.676634pt;}
.ws16a{word-spacing:26.875246pt;}
.ws25{word-spacing:26.948418pt;}
.ws11e{word-spacing:26.995458pt;}
.ws89{word-spacing:27.188843pt;}
.wsb5{word-spacing:27.329961pt;}
.ws116{word-spacing:27.481533pt;}
.wsf1{word-spacing:27.627878pt;}
.ws49{word-spacing:27.795130pt;}
.ws150{word-spacing:27.826489pt;}
.ws8f{word-spacing:28.140086pt;}
.ws7c{word-spacing:28.202806pt;}
.ws94{word-spacing:28.819546pt;}
.wsf8{word-spacing:29.143596pt;}
.ws88{word-spacing:29.195862pt;}
.ws10e{word-spacing:29.410153pt;}
.ws9c{word-spacing:29.598311pt;}
.ws130{word-spacing:29.770790pt;}
.wscf{word-spacing:29.943268pt;}
.wsce{word-spacing:29.979854pt;}
.ws14d{word-spacing:30.706353pt;}
.ws6a{word-spacing:30.737713pt;}
.wsac{word-spacing:30.863152pt;}
.ws6f{word-spacing:30.899738pt;}
.ws9f{word-spacing:30.925871pt;}
.wsec{word-spacing:31.009497pt;}
.ws153{word-spacing:31.155842pt;}
.ws4b{word-spacing:31.249921pt;}
.ws82{word-spacing:31.406720pt;}
.wsf7{word-spacing:31.490345pt;}
.ws135{word-spacing:31.600104pt;}
.ws125{word-spacing:32.013007pt;}
.ws20{word-spacing:32.248204pt;}
.ws140{word-spacing:32.316150pt;}
.ws8c{word-spacing:32.519988pt;}
.ws96{word-spacing:32.870171pt;}
.wsb3{word-spacing:33.303980pt;}
.ws156{word-spacing:33.429419pt;}
.ws141{word-spacing:33.455552pt;}
.ws73{word-spacing:33.580991pt;}
.ws5a{word-spacing:33.675070pt;}
.wsb2{word-spacing:33.821415pt;}
.ws167{word-spacing:33.873681pt;}
.ws11d{word-spacing:33.910267pt;}
.ws158{word-spacing:33.972987pt;}
.ws10c{word-spacing:34.401569pt;}
.ws10a{word-spacing:34.479968pt;}
.ws120{word-spacing:34.636767pt;}
.ws163{word-spacing:35.342359pt;}
.wseb{word-spacing:35.896380pt;}
.ws117{word-spacing:35.912060pt;}
.ws1b{word-spacing:36.136805pt;}
.ws137{word-spacing:37.108955pt;}
.ws4e{word-spacing:37.715242pt;}
.ws8e{word-spacing:37.809321pt;}
.ws2{word-spacing:38.182559pt;}
.ws76{word-spacing:38.206543pt;}
.ws1{word-spacing:38.310560pt;}
.ws165{word-spacing:39.999272pt;}
.ws132{word-spacing:41.002782pt;}
.wsa4{word-spacing:41.577709pt;}
.wsa5{word-spacing:43.929685pt;}
.wsaa{word-spacing:44.635278pt;}
.wsb7{word-spacing:50.536124pt;}
.ws168{word-spacing:52.694716pt;}
.ws12d{word-spacing:147.398691pt;}
.ws12c{word-spacing:147.697354pt;}
.ws128{word-spacing:200.731357pt;}
.ws129{word-spacing:206.320621pt;}
.ws103{word-spacing:417.709979pt;}
.ws102{word-spacing:458.584134pt;}
.wsdc{word-spacing:463.669937pt;}
.wsda{word-spacing:484.107015pt;}
.wsdb{word-spacing:504.335029pt;}
.wsd9{word-spacing:504.544093pt;}
._28{margin-left:-11.285211pt;}
._17{margin-left:-4.615100pt;}
._1c{margin-left:-3.480924pt;}
._7{margin-left:-1.452999pt;}
._5{width:1.104011pt;}
._10{width:2.357203pt;}
._0{width:7.959467pt;}
._15{width:10.819090pt;}
._f{width:12.551833pt;}
._1b{width:14.007324pt;}
._6{width:15.370820pt;}
._4{width:16.816168pt;}
._c{width:18.303600pt;}
._9{width:20.070195pt;}
._e{width:21.570233pt;}
._1a{width:22.552837pt;}
._b{width:23.582479pt;}
._d{width:24.915266pt;}
._11{width:26.256114pt;}
._13{width:27.429267pt;}
._1{width:29.224000pt;}
._16{width:30.199372pt;}
._2a{width:31.103576pt;}
._12{width:32.195938pt;}
._a{width:33.460779pt;}
._14{width:34.809245pt;}
._29{width:35.822012pt;}
._8{width:37.192580pt;}
._3{width:39.462564pt;}
._19{width:43.678808pt;}
._3c{width:53.645959pt;}
._3d{width:58.543219pt;}
._2c{width:147.680287pt;}
._2f{width:167.878435pt;}
._30{width:173.617030pt;}
._34{width:176.522593pt;}
._3a{width:188.315513pt;}
._37{width:196.959671pt;}
._3b{width:225.682512pt;}
._2d{width:236.387445pt;}
._31{width:238.324488pt;}
._2b{width:264.082032pt;}
._38{width:278.503185pt;}
._36{width:282.087141pt;}
._39{width:287.377741pt;}
._35{width:290.961696pt;}
._2e{width:299.836252pt;}
._32{width:355.942217pt;}
._33{width:357.452598pt;}
._23{width:437.886793pt;}
._1f{width:505.576614pt;}
._1d{width:508.857639pt;}
._1e{width:518.888447pt;}
._20{width:530.160840pt;}
._22{width:760.033166pt;}
._18{width:796.175648pt;}
._26{width:1266.928675pt;}
._2{width:1424.224533pt;}
._24{width:1457.429237pt;}
._25{width:1539.530622pt;}
._21{width:1730.039174pt;}
._27{width:1898.945863pt;}
.fs8{font-size:26.662400pt;}
.fsf{font-size:33.600000pt;}
.fse{font-size:36.266667pt;}
.fs9{font-size:37.332800pt;}
.fsc{font-size:38.933867pt;}
.fs3{font-size:39.107733pt;}
.fs7{font-size:39.999467pt;}
.fsa{font-size:42.666133pt;}
.fsd{font-size:47.421333pt;}
.fsb{font-size:48.000000pt;}
.fs6{font-size:52.266133pt;}
.fs5{font-size:53.333867pt;}
.fs4{font-size:54.933333pt;}
.fs2{font-size:58.667200pt;}
.fs0{font-size:69.333333pt;}
.fs1{font-size:128.000533pt;}
.y0{bottom:0.000000pt;}
.y1ea{bottom:74.815027pt;}
.y10d{bottom:81.259629pt;}
.y6f{bottom:81.260270pt;}
.y1b8{bottom:81.260747pt;}
.yd7{bottom:81.260860pt;}
.y160{bottom:81.271898pt;}
.ya5{bottom:81.281177pt;}
.y17b{bottom:81.282351pt;}
.y3a{bottom:81.334971pt;}
.y1e9{bottom:84.148267pt;}
.ydf{bottom:88.139363pt;}
.y135{bottom:88.139419pt;}
.y143{bottom:89.574800pt;}
.y39{bottom:91.993486pt;}
.y10c{bottom:92.598533pt;}
.y1b7{bottom:93.279587pt;}
.y6e{bottom:97.285067pt;}
.yd6{bottom:97.285656pt;}
.y15f{bottom:97.296694pt;}
.ya4{bottom:97.305973pt;}
.y17a{bottom:97.307148pt;}
.y38{bottom:102.652000pt;}
.y1b6{bottom:105.298426pt;}
.yde{bottom:105.676210pt;}
.y134{bottom:106.810119pt;}
.y10b{bottom:110.136265pt;}
.y1e8{bottom:113.066800pt;}
.y6d{bottom:113.234667pt;}
.y15e{bottom:113.245705pt;}
.y179{bottom:113.256158pt;}
.ya3{bottom:113.330770pt;}
.y1b5{bottom:117.241267pt;}
.ydd{bottom:123.213058pt;}
.y37{bottom:125.253654pt;}
.y133{bottom:125.480819pt;}
.y10a{bottom:127.673112pt;}
.y32{bottom:129.040862pt;}
.yd5{bottom:129.259867pt;}
.y1b4{bottom:129.260107pt;}
.y15d{bottom:129.270501pt;}
.ya2{bottom:129.279780pt;}
.y178{bottom:129.280955pt;}
.y1e7{bottom:129.613333pt;}
.y36{bottom:137.272494pt;}
.y109{bottom:139.692162pt;}
.ydc{bottom:140.749905pt;}
.y1b3{bottom:141.278947pt;}
.y132{bottom:144.151519pt;}
.y31{bottom:144.989873pt;}
.y15c{bottom:145.295298pt;}
.ya1{bottom:145.304577pt;}
.y6c{bottom:145.305119pt;}
.y177{bottom:145.305751pt;}
.y1e6{bottom:146.159600pt;}
.y35{bottom:149.291333pt;}
.y1b2{bottom:153.297786pt;}
.y34{bottom:153.751200pt;}
.y108{bottom:157.229009pt;}
.ydb{bottom:158.286753pt;}
.y30{bottom:161.014669pt;}
.y15b{bottom:161.244309pt;}
.y176{bottom:161.254762pt;}
.y33{bottom:161.310267pt;}
.yd4{bottom:161.326508pt;}
.ya0{bottom:161.329373pt;}
.y6b{bottom:161.329916pt;}
.y1e5{bottom:162.706133pt;}
.y131{bottom:162.822219pt;}
.y1b1{bottom:165.241627pt;}
.y107{bottom:174.765857pt;}
.yda{bottom:175.823600pt;}
.y2f{bottom:177.039466pt;}
.y1b0{bottom:177.260467pt;}
.y15a{bottom:177.269105pt;}
.yd3{bottom:177.275519pt;}
.y9f{bottom:177.278384pt;}
.y6a{bottom:177.278926pt;}
.y175{bottom:177.279558pt;}
.y1e4{bottom:179.252667pt;}
.y130{bottom:181.492919pt;}
.y1af{bottom:189.279307pt;}
.y106{bottom:192.302704pt;}
.y25{bottom:192.985863pt;}
.y2e{bottom:192.988476pt;}
.y159{bottom:193.293901pt;}
.yd2{bottom:193.300316pt;}
.y9e{bottom:193.303180pt;}
.y69{bottom:193.303723pt;}
.y174{bottom:193.304355pt;}
.yd9{bottom:193.360533pt;}
.y1e3{bottom:195.799333pt;}
.y12e{bottom:199.029766pt;}
.y1ae{bottom:201.298146pt;}
.y12f{bottom:205.455286pt;}
.y24{bottom:209.010660pt;}
.y2d{bottom:209.013273pt;}
.y158{bottom:209.242912pt;}
.y173{bottom:209.253365pt;}
.yd1{bottom:209.325112pt;}
.y9d{bottom:209.327977pt;}
.y105{bottom:209.763819pt;}
.y12d{bottom:210.973084pt;}
.y1ad{bottom:213.240987pt;}
.yba{bottom:220.729582pt;}
.y12c{bottom:222.992133pt;}
.y1e2{bottom:223.701200pt;}
.y23{bottom:225.035456pt;}
.y2c{bottom:225.038069pt;}
.y1ac{bottom:225.259827pt;}
.y157{bottom:225.267709pt;}
.yd0{bottom:225.274123pt;}
.y9c{bottom:225.276987pt;}
.y172{bottom:225.278162pt;}
.y68{bottom:225.278837pt;}
.y104{bottom:227.300667pt;}
.yb9{bottom:236.754379pt;}
.y1ab{bottom:237.278667pt;}
.y1e1{bottom:237.927600pt;}
.y12b{bottom:240.529067pt;}
.y22{bottom:240.984467pt;}
.y2b{bottom:240.987080pt;}
.y156{bottom:241.292505pt;}
.ycf{bottom:241.298919pt;}
.y9b{bottom:241.301784pt;}
.y171{bottom:241.302958pt;}
.y67{bottom:241.303633pt;}
.y103{bottom:244.837733pt;}
.y1aa{bottom:249.298653pt;}
.yb8{bottom:252.703389pt;}
.y21{bottom:257.009263pt;}
.y2a{bottom:257.011876pt;}
.y155{bottom:257.241516pt;}
.y170{bottom:257.251969pt;}
.yce{bottom:257.323716pt;}
.y9a{bottom:257.326580pt;}
.y66{bottom:257.328430pt;}
.yb7{bottom:268.728186pt;}
.y20{bottom:273.034060pt;}
.y29{bottom:273.036673pt;}
.y154{bottom:273.266312pt;}
.ycd{bottom:273.272726pt;}
.y99{bottom:273.275591pt;}
.y16f{bottom:273.276765pt;}
.y65{bottom:273.277440pt;}
.y1a9{bottom:275.301307pt;}
.yb6{bottom:284.752982pt;}
.y1a8{bottom:287.244147pt;}
.y1f{bottom:288.983070pt;}
.y28{bottom:288.985683pt;}
.y153{bottom:289.291109pt;}
.yf1{bottom:289.291916pt;}
.y117{bottom:289.292909pt;}
.ycc{bottom:289.297523pt;}
.y101{bottom:289.298449pt;}
.y129{bottom:289.299442pt;}
.y98{bottom:289.300387pt;}
.y16e{bottom:289.301562pt;}
.y64{bottom:289.302237pt;}
.yb5{bottom:300.701993pt;}
.y1e{bottom:305.007867pt;}
.y27{bottom:305.010480pt;}
.y152{bottom:305.240119pt;}
.yf0{bottom:305.240926pt;}
.y116{bottom:305.241919pt;}
.ycb{bottom:305.246533pt;}
.y100{bottom:305.247459pt;}
.y128{bottom:305.248452pt;}
.y97{bottom:305.249398pt;}
.y16d{bottom:305.250572pt;}
.y63{bottom:305.251247pt;}
.y1a7{bottom:311.281827pt;}
.yb4{bottom:316.726789pt;}
.y1d{bottom:321.032933pt;}
.y26{bottom:321.035276pt;}
.y151{bottom:321.264916pt;}
.yef{bottom:321.265723pt;}
.y115{bottom:321.266716pt;}
.yca{bottom:321.271330pt;}
.yff{bottom:321.272256pt;}
.y127{bottom:321.273249pt;}
.y96{bottom:321.274194pt;}
.y16c{bottom:321.275369pt;}
.y62{bottom:321.276044pt;}
.y1a6{bottom:323.300667pt;}
.y1a4{bottom:323.301159pt;}
.y1a5{bottom:327.684933pt;}
.yb3{bottom:332.751586pt;}
.y1a3{bottom:335.244000pt;}
.y150{bottom:337.289712pt;}
.yee{bottom:337.290519pt;}
.y114{bottom:337.291512pt;}
.yc9{bottom:337.296126pt;}
.yfe{bottom:337.297052pt;}
.y126{bottom:337.298045pt;}
.y95{bottom:337.298991pt;}
.y16b{bottom:337.300165pt;}
.y61{bottom:337.300840pt;}
.y1a2{bottom:339.703867pt;}
.y1a1{bottom:347.266600pt;}
.yb2{bottom:348.700596pt;}
.y14f{bottom:353.238723pt;}
.yed{bottom:353.239530pt;}
.y113{bottom:353.240523pt;}
.yc8{bottom:353.245137pt;}
.yfd{bottom:353.246063pt;}
.y125{bottom:353.247056pt;}
.y94{bottom:353.248001pt;}
.y16a{bottom:353.249176pt;}
.y60{bottom:353.249851pt;}
.y1c{bottom:361.620813pt;}
.yb1{bottom:364.725393pt;}
.y14e{bottom:369.263519pt;}
.yec{bottom:369.264326pt;}
.y112{bottom:369.265319pt;}
.yc7{bottom:369.269933pt;}
.yfc{bottom:369.270859pt;}
.y124{bottom:369.271852pt;}
.y93{bottom:369.272798pt;}
.y169{bottom:369.273972pt;}
.y1a0{bottom:371.304280pt;}
.y1b{bottom:377.570306pt;}
.yb0{bottom:380.750189pt;}
.y19f{bottom:383.247121pt;}
.y14d{bottom:385.288316pt;}
.yeb{bottom:385.289123pt;}
.y111{bottom:385.290116pt;}
.yc6{bottom:385.294730pt;}
.yfb{bottom:385.295656pt;}
.y123{bottom:385.296649pt;}
.y92{bottom:385.297594pt;}
.y168{bottom:385.298769pt;}
.y5f{bottom:385.300750pt;}
.y19e{bottom:395.265960pt;}
.yaf{bottom:396.699200pt;}
.y1a{bottom:397.602507pt;}
.y14c{bottom:401.237326pt;}
.yea{bottom:401.238133pt;}
.y110{bottom:401.239126pt;}
.yc5{bottom:401.243740pt;}
.yfa{bottom:401.244667pt;}
.y122{bottom:401.245659pt;}
.y91{bottom:401.246605pt;}
.y167{bottom:401.247779pt;}
.y5e{bottom:401.249761pt;}
.yae{bottom:412.724267pt;}
.y19{bottom:413.628000pt;}
.y14b{bottom:417.262123pt;}
.ye9{bottom:417.262930pt;}
.y10f{bottom:417.263923pt;}
.yc4{bottom:417.268537pt;}
.yf9{bottom:417.269463pt;}
.y121{bottom:417.270456pt;}
.y90{bottom:417.271401pt;}
.y166{bottom:417.272576pt;}
.y5d{bottom:417.274557pt;}
.y19d{bottom:421.268614pt;}
.y18{bottom:429.577493pt;}
.y14a{bottom:433.286919pt;}
.y19c{bottom:433.287453pt;}
.ye8{bottom:433.287726pt;}
.y10e{bottom:433.288719pt;}
.yc3{bottom:433.293333pt;}
.yf8{bottom:433.294260pt;}
.y120{bottom:433.295252pt;}
.y8f{bottom:433.296198pt;}
.y165{bottom:433.297372pt;}
.y5c{bottom:433.299354pt;}
.y19b{bottom:445.306293pt;}
.y17{bottom:445.602987pt;}
.y149{bottom:449.235930pt;}
.ye7{bottom:449.236737pt;}
.yad{bottom:449.237730pt;}
.yc2{bottom:449.242344pt;}
.yf7{bottom:449.243270pt;}
.y11f{bottom:449.244263pt;}
.y8e{bottom:449.245209pt;}
.y164{bottom:449.246383pt;}
.y5b{bottom:449.248365pt;}
.y1e0{bottom:450.217539pt;}
.y19a{bottom:457.249134pt;}
.y1df{bottom:461.556054pt;}
.y16{bottom:461.628480pt;}
.y148{bottom:465.260726pt;}
.ye6{bottom:465.261533pt;}
.yac{bottom:465.262526pt;}
.yc1{bottom:465.267140pt;}
.yf6{bottom:465.268067pt;}
.y11e{bottom:465.269060pt;}
.y8d{bottom:465.270005pt;}
.y163{bottom:465.271179pt;}
.y5a{bottom:465.273161pt;}
.y199{bottom:469.267974pt;}
.y1de{bottom:472.894569pt;}
.y15{bottom:477.577973pt;}
.y147{bottom:481.285523pt;}
.ye5{bottom:481.286330pt;}
.y198{bottom:481.286813pt;}
.yab{bottom:481.287323pt;}
.yc0{bottom:481.291937pt;}
.yf5{bottom:481.292863pt;}
.y11d{bottom:481.293856pt;}
.y8c{bottom:481.294801pt;}
.y162{bottom:481.295976pt;}
.y59{bottom:481.297957pt;}
.y1dd{bottom:484.233085pt;}
.y197{bottom:493.305653pt;}
.y14{bottom:493.603467pt;}
.y1dc{bottom:495.571600pt;}
.y146{bottom:497.234533pt;}
.ye4{bottom:497.235340pt;}
.yaa{bottom:497.236333pt;}
.ybf{bottom:497.240947pt;}
.yf4{bottom:497.241874pt;}
.y11c{bottom:497.242867pt;}
.y8b{bottom:497.243812pt;}
.y161{bottom:497.244987pt;}
.y58{bottom:497.246968pt;}
.y13c{bottom:498.370386pt;}
.y141{bottom:498.371693pt;}
.y196{bottom:505.248494pt;}
.y13{bottom:509.628960pt;}
.ye3{bottom:513.260137pt;}
.ya9{bottom:513.261130pt;}
.ybe{bottom:513.265744pt;}
.yf3{bottom:513.266670pt;}
.y11b{bottom:513.267663pt;}
.y8a{bottom:513.268609pt;}
.y57{bottom:513.271765pt;}
.y13b{bottom:514.319396pt;}
.y140{bottom:514.320703pt;}
.y195{bottom:517.267334pt;}
.y1db{bottom:521.273827pt;}
.ye2{bottom:529.284933pt;}
.ya8{bottom:529.285926pt;}
.y194{bottom:529.286173pt;}
.ybd{bottom:529.290540pt;}
.yf2{bottom:529.291467pt;}
.y11a{bottom:529.292460pt;}
.y89{bottom:529.293405pt;}
.y56{bottom:529.296561pt;}
.y12{bottom:529.585160pt;}
.y13a{bottom:530.344193pt;}
.y13f{bottom:530.345500pt;}
.y1da{bottom:533.292666pt;}
.y193{bottom:541.305013pt;}
.ya7{bottom:545.234937pt;}
.y1d9{bottom:545.235507pt;}
.ybc{bottom:545.239551pt;}
.y119{bottom:545.241470pt;}
.y88{bottom:545.242416pt;}
.y55{bottom:545.245572pt;}
.y11{bottom:545.610653pt;}
.y139{bottom:546.368989pt;}
.y13e{bottom:546.370296pt;}
.y192{bottom:553.247854pt;}
.y1d8{bottom:557.254347pt;}
.y17c{bottom:557.782533pt;}
.ya6{bottom:561.259733pt;}
.ybb{bottom:561.264347pt;}
.y118{bottom:561.266267pt;}
.y87{bottom:561.267212pt;}
.y54{bottom:561.270368pt;}
.y10{bottom:561.636147pt;}
.y138{bottom:562.318000pt;}
.y13d{bottom:562.319307pt;}
.y102{bottom:563.678667pt;}
.y191{bottom:565.266694pt;}
.y1d7{bottom:569.273187pt;}
.y86{bottom:577.292009pt;}
.y53{bottom:577.295165pt;}
.yf{bottom:577.585640pt;}
.y1d6{bottom:581.292026pt;}
.y190{bottom:591.269347pt;}
.y1d5{bottom:593.234867pt;}
.y85{bottom:593.241019pt;}
.y52{bottom:593.244175pt;}
.ye{bottom:593.611133pt;}
.yd8{bottom:602.154267pt;}
.y18f{bottom:603.288187pt;}
.y12a{bottom:603.363733pt;}
.y1d4{bottom:605.253707pt;}
.y84{bottom:609.265816pt;}
.y51{bottom:609.268972pt;}
.yd{bottom:609.636627pt;}
.y142{bottom:611.678533pt;}
.y18e{bottom:615.231027pt;}
.y1d3{bottom:617.272547pt;}
.y83{bottom:625.290612pt;}
.y50{bottom:625.293768pt;}
.y18d{bottom:627.249867pt;}
.y1d2{bottom:629.291386pt;}
.yc{bottom:629.592826pt;}
.y18c{bottom:639.268707pt;}
.y1d1{bottom:641.234227pt;}
.y82{bottom:641.239623pt;}
.y4f{bottom:641.242779pt;}
.yb{bottom:645.618320pt;}
.y1d0{bottom:653.253067pt;}
.y81{bottom:657.264419pt;}
.y4e{bottom:657.267575pt;}
.ya{bottom:661.567813pt;}
.y1cf{bottom:665.271907pt;}
.y18b{bottom:665.272360pt;}
.y80{bottom:673.289216pt;}
.y4d{bottom:673.292372pt;}
.y1ce{bottom:677.290746pt;}
.y18a{bottom:677.291200pt;}
.y9{bottom:677.593306pt;}
.y1cd{bottom:689.234587pt;}
.y7f{bottom:689.238226pt;}
.y4c{bottom:689.241382pt;}
.y8{bottom:693.618800pt;}
.y1cc{bottom:701.253427pt;}
.y189{bottom:703.298456pt;}
.y7e{bottom:705.263023pt;}
.y4b{bottom:705.266179pt;}
.y1cb{bottom:713.272267pt;}
.y7{bottom:717.580933pt;}
.y188{bottom:719.247467pt;}
.y7d{bottom:721.287819pt;}
.y4a{bottom:721.290975pt;}
.y1ca{bottom:725.294160pt;}
.y187{bottom:735.272263pt;}
.y7c{bottom:737.236830pt;}
.y1c9{bottom:737.237000pt;}
.y49{bottom:737.239986pt;}
.y1c8{bottom:749.255840pt;}
.y186{bottom:751.297060pt;}
.y7b{bottom:753.261626pt;}
.y48{bottom:753.264782pt;}
.y1c7{bottom:761.274680pt;}
.y185{bottom:767.246070pt;}
.y5{bottom:768.906933pt;}
.y7a{bottom:769.286423pt;}
.y47{bottom:769.289579pt;}
.y1c6{bottom:773.293520pt;}
.y6{bottom:775.483200pt;}
.y184{bottom:783.270867pt;}
.y79{bottom:785.235433pt;}
.y1c5{bottom:785.236360pt;}
.y46{bottom:785.238589pt;}
.y1c4{bottom:797.255200pt;}
.y183{bottom:799.295663pt;}
.y4{bottom:800.958245pt;}
.y78{bottom:801.260230pt;}
.y45{bottom:801.263386pt;}
.y1c3{bottom:809.274040pt;}
.y182{bottom:815.244674pt;}
.y77{bottom:817.285026pt;}
.y44{bottom:817.288182pt;}
.y1c2{bottom:821.292880pt;}
.y181{bottom:831.269470pt;}
.y76{bottom:833.234037pt;}
.y1c1{bottom:833.235720pt;}
.y43{bottom:833.237193pt;}
.y3{bottom:835.579189pt;}
.y1c0{bottom:845.254560pt;}
.y180{bottom:847.294267pt;}
.y75{bottom:849.258833pt;}
.y42{bottom:849.261989pt;}
.y1bf{bottom:857.273400pt;}
.y17f{bottom:863.243867pt;}
.y74{bottom:865.283630pt;}
.y41{bottom:865.286786pt;}
.y1be{bottom:869.292240pt;}
.y2{bottom:870.273733pt;}
.y73{bottom:881.232640pt;}
.y1bd{bottom:881.235080pt;}
.y40{bottom:881.235796pt;}
.y1bc{bottom:893.253920pt;}
.y72{bottom:897.257437pt;}
.y3f{bottom:897.260593pt;}
.y1bb{bottom:905.272760pt;}
.y71{bottom:913.282233pt;}
.y3e{bottom:913.285389pt;}
.y1ba{bottom:917.291600pt;}
.y1{bottom:920.919467pt;}
.y70{bottom:929.231244pt;}
.y3d{bottom:929.234400pt;}
.y1b9{bottom:929.234440pt;}
.y145{bottom:991.063265pt;}
.ye1{bottom:991.063543pt;}
.y137{bottom:991.063599pt;}
.y17e{bottom:991.064584pt;}
.y3c{bottom:991.067100pt;}
.y144{bottom:1004.367632pt;}
.ye0{bottom:1004.367910pt;}
.y136{bottom:1004.367966pt;}
.y17d{bottom:1004.368951pt;}
.y3b{bottom:1004.371467pt;}
.ha{height:19.223590pt;}
.h13{height:25.200000pt;}
.hb{height:26.916949pt;}
.h12{height:27.635200pt;}
.h10{height:28.071318pt;}
.h5{height:28.196676pt;}
.hf{height:28.399621pt;}
.h9{height:28.839615pt;}
.hc{height:30.762282pt;}
.he{height:34.608000pt;}
.h11{height:36.135056pt;}
.hd{height:37.318019pt;}
.h8{height:37.840681pt;}
.h7{height:38.453718pt;}
.h6{height:39.606933pt;}
.h4{height:42.299051pt;}
.h2{height:49.989333pt;}
.h3{height:92.288385pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.267985pt;}
.w0{width:793.701335pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.590533pt;}
.x8{left:79.143333pt;}
.x1{left:80.957467pt;}
.x6{left:84.283467pt;}
.xa{left:86.248905pt;}
.x16{left:95.621952pt;}
.xb{left:98.191716pt;}
.x14{left:137.650400pt;}
.x15{left:141.278667pt;}
.xf{left:152.768235pt;}
.x10{left:210.065652pt;}
.x3{left:225.335333pt;}
.x4{left:238.563733pt;}
.x9{left:240.604667pt;}
.xd{left:242.192000pt;}
.x11{left:275.677632pt;}
.x12{left:339.929629pt;}
.x7{left:406.297959pt;}
.x18{left:413.631333pt;}
.xc{left:416.956330pt;}
.x13{left:421.718473pt;}
.x17{left:426.333211pt;}
.x1a{left:429.528133pt;}
.x19{left:430.473467pt;}
.x5{left:441.524267pt;}
.xe{left:581.288745pt;}
}




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