
    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_414e59c8ff0a2304f9155638.woff')format("woff");}.ff1{font-family:ff1;line-height:0.932000;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_d995b38507b31f59fb2bd8d4.woff')format("woff");}.ff2{font-family:ff2;line-height:0.934000;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_b78777924e849e7b133764b5.woff')format("woff");}.ff3{font-family:ff3;line-height:1.008000;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_d70f67d2565f255a52529802.woff')format("woff");}.ff4{font-family:ff4;line-height:1.115000;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_e8c7b8099589ab9f8cc6d509.woff')format("woff");}.ff5{font-family:ff5;line-height:0.965000;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_c4944da69c7855c908b76733.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_e38177c251087e24a53dd18c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_a6584af63ebd66d6dfbb8cfd.woff')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_15f1f302dd9b6c98bfa0af84.woff')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_80b96fcf112363ee6f41fd05.woff')format("woff");}.ffa{font-family:ffa;line-height:0.719000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.996242px;}
.ls23{letter-spacing:-2.447996px;}
.ls2b{letter-spacing:-0.935999px;}
.ls39{letter-spacing:-0.863999px;}
.ls1d{letter-spacing:-0.575999px;}
.ls4c{letter-spacing:-0.539999px;}
.ls53{letter-spacing:-0.527999px;}
.ls29{letter-spacing:-0.503999px;}
.ls10{letter-spacing:-0.479999px;}
.ls1c{letter-spacing:-0.431999px;}
.ls16{letter-spacing:-0.419999px;}
.ls1b{letter-spacing:-0.359999px;}
.ls4e{letter-spacing:-0.329999px;}
.ls1a{letter-spacing:-0.300000px;}
.ls20{letter-spacing:-0.288000px;}
.ls55{letter-spacing:-0.264000px;}
.ls1e{letter-spacing:-0.216000px;}
.ls43{letter-spacing:-0.180000px;}
.ls14{letter-spacing:-0.168000px;}
.ls2a{letter-spacing:-0.144000px;}
.ls52{letter-spacing:-0.132000px;}
.ls15{letter-spacing:-0.072000px;}
.ls54{letter-spacing:-0.066000px;}
.ls4d{letter-spacing:-0.060000px;}
.lsf{letter-spacing:0.000000px;}
.ls3a{letter-spacing:0.002280px;}
.ls3c{letter-spacing:0.018000px;}
.ls11{letter-spacing:0.060000px;}
.ls24{letter-spacing:0.072000px;}
.ls13{letter-spacing:0.084000px;}
.lse{letter-spacing:0.120000px;}
.ls37{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.216000px;}
.ls17{letter-spacing:0.240000px;}
.ls38{letter-spacing:0.279000px;}
.ls1f{letter-spacing:0.288000px;}
.ls46{letter-spacing:0.314999px;}
.ls50{letter-spacing:0.329999px;}
.ls6{letter-spacing:0.359999px;}
.ls4{letter-spacing:0.393779px;}
.ls51{letter-spacing:0.395999px;}
.ls33{letter-spacing:0.438779px;}
.ls4f{letter-spacing:0.461999px;}
.ls25{letter-spacing:0.472499px;}
.ls42{letter-spacing:0.479999px;}
.ls5{letter-spacing:0.483779px;}
.ls9{letter-spacing:0.494999px;}
.lsc{letter-spacing:0.506279px;}
.ls18{letter-spacing:0.539999px;}
.ls27{letter-spacing:0.562499px;}
.ls21{letter-spacing:0.575999px;}
.ls28{letter-spacing:0.584999px;}
.ls19{letter-spacing:0.899999px;}
.ls31{letter-spacing:1.093498px;}
.ls3e{letter-spacing:1.149778px;}
.ls40{letter-spacing:1.158718px;}
.ls44{letter-spacing:1.181218px;}
.ls41{letter-spacing:1.192498px;}
.ls49{letter-spacing:1.205998px;}
.ls36{letter-spacing:2.375996px;}
.ls4b{letter-spacing:3.172495px;}
.ls30{letter-spacing:3.253495px;}
.lsb{letter-spacing:3.590994px;}
.ls45{letter-spacing:4.387493px;}
.ls22{letter-spacing:4.751992px;}
.ls34{letter-spacing:5.975990px;}
.ls7{letter-spacing:7.190988px;}
.ls2f{letter-spacing:7.202268px;}
.ls48{letter-spacing:8.788486px;}
.ls26{letter-spacing:10.802263px;}
.ls4a{letter-spacing:11.949761px;}
.ls32{letter-spacing:13.175979px;}
.ls35{letter-spacing:19.149749px;}
.ls8{letter-spacing:20.375967px;}
.lsd{letter-spacing:22.749744px;}
.ls3f{letter-spacing:22.919963px;}
.lsa{letter-spacing:29.157733px;}
.ls3d{letter-spacing:32.757728px;}
.ls3b{letter-spacing:53.663314px;}
.ls2d{letter-spacing:74.330881px;}
.ls47{letter-spacing:193.175691px;}
.ls2e{letter-spacing:194.402089px;}
.ls2c{letter-spacing:430.379311px;}
.ls1{letter-spacing:846.772645px;}
.ls3{letter-spacing:905.566551px;}
.ls2{letter-spacing:1167.184133px;}
.ls0{letter-spacing:1335.171864px;}
.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;}
}
.ws57{word-spacing:-19.799968px;}
.ws2{word-spacing:-19.583969px;}
.ws7d{word-spacing:-19.439969px;}
.ws75{word-spacing:-19.295969px;}
.ws3{word-spacing:-19.223969px;}
.wsc9{word-spacing:-19.151969px;}
.ws38{word-spacing:-19.079969px;}
.ws7c{word-spacing:-19.007970px;}
.ws39{word-spacing:-18.935970px;}
.ws58{word-spacing:-18.863970px;}
.ws37{word-spacing:-18.791970px;}
.ws36{word-spacing:-18.719970px;}
.ws7{word-spacing:-18.647970px;}
.wsa{word-spacing:-18.215971px;}
.ws8{word-spacing:-17.927971px;}
.ws6{word-spacing:-17.855971px;}
.ws3a{word-spacing:-17.639972px;}
.ws9{word-spacing:-17.621972px;}
.wscd{word-spacing:-17.357972px;}
.wscc{word-spacing:-17.093973px;}
.ws4{word-spacing:-16.919973px;}
.ws84{word-spacing:-16.499974px;}
.wscb{word-spacing:-16.367974px;}
.ws86{word-spacing:-16.259974px;}
.ws1{word-spacing:-16.079974px;}
.ws85{word-spacing:-16.019974px;}
.ws9d{word-spacing:-15.839975px;}
.ws5{word-spacing:-15.719975px;}
.ws9e{word-spacing:-15.599975px;}
.ws0{word-spacing:-15.539975px;}
.ws83{word-spacing:-14.699976px;}
.wsca{word-spacing:-14.639977px;}
.ws35{word-spacing:-14.399977px;}
.wsbd{word-spacing:-5.183992px;}
.wsbc{word-spacing:-5.039992px;}
.ws6a{word-spacing:-4.967992px;}
.ws88{word-spacing:-4.751992px;}
.ws74{word-spacing:-4.391993px;}
.ws5f{word-spacing:-4.247993px;}
.ws3f{word-spacing:-3.959994px;}
.ws41{word-spacing:-3.815994px;}
.ws64{word-spacing:-3.527994px;}
.wsc8{word-spacing:-3.383995px;}
.wsc4{word-spacing:-3.167995px;}
.wsc3{word-spacing:-3.095995px;}
.ws3b{word-spacing:-3.023995px;}
.ws2c{word-spacing:-2.807996px;}
.ws1d{word-spacing:-2.735996px;}
.ws1e{word-spacing:-2.663996px;}
.wsaa{word-spacing:-2.099997px;}
.ws25{word-spacing:-2.015997px;}
.wsc0{word-spacing:-1.943997px;}
.ws2d{word-spacing:-1.871997px;}
.wsab{word-spacing:-1.739997px;}
.ws68{word-spacing:-1.583997px;}
.wsbe{word-spacing:-1.511998px;}
.ws89{word-spacing:-1.439998px;}
.wsac{word-spacing:-1.139998px;}
.wsa6{word-spacing:-0.899999px;}
.wsf{word-spacing:-0.839999px;}
.ws8b{word-spacing:-0.791999px;}
.ws9f{word-spacing:-0.779999px;}
.ws15{word-spacing:-0.659999px;}
.ws81{word-spacing:-0.647999px;}
.ws22{word-spacing:-0.575999px;}
.wsb{word-spacing:-0.539999px;}
.ws49{word-spacing:-0.503999px;}
.wsd{word-spacing:-0.419999px;}
.ws14{word-spacing:-0.359999px;}
.ws45{word-spacing:-0.288000px;}
.ws96{word-spacing:-0.240000px;}
.wse{word-spacing:-0.216000px;}
.ws95{word-spacing:-0.120000px;}
.ws53{word-spacing:-0.072000px;}
.wsc{word-spacing:0.000000px;}
.wsa7{word-spacing:0.060000px;}
.wsd3{word-spacing:0.066000px;}
.ws13{word-spacing:0.072000px;}
.ws70{word-spacing:0.144000px;}
.ws71{word-spacing:0.216000px;}
.ws11{word-spacing:0.252000px;}
.ws40{word-spacing:0.288000px;}
.wsa5{word-spacing:0.300000px;}
.ws10{word-spacing:0.335999px;}
.ws59{word-spacing:0.359999px;}
.ws82{word-spacing:0.395999px;}
.ws30{word-spacing:0.431999px;}
.wsd7{word-spacing:0.461999px;}
.ws16{word-spacing:0.479999px;}
.ws12{word-spacing:0.503999px;}
.wsd6{word-spacing:0.527999px;}
.ws23{word-spacing:0.575999px;}
.ws56{word-spacing:0.719999px;}
.ws29{word-spacing:0.791999px;}
.ws65{word-spacing:0.863999px;}
.ws2e{word-spacing:0.935999px;}
.ws2b{word-spacing:1.079998px;}
.ws5d{word-spacing:1.223998px;}
.wsad{word-spacing:1.259998px;}
.ws28{word-spacing:1.439998px;}
.ws2a{word-spacing:1.727997px;}
.ws6f{word-spacing:1.799997px;}
.ws52{word-spacing:2.015997px;}
.ws51{word-spacing:2.159997px;}
.ws97{word-spacing:2.279996px;}
.ws3e{word-spacing:2.303996px;}
.ws72{word-spacing:2.447996px;}
.ws98{word-spacing:2.459996px;}
.ws1c{word-spacing:2.735996px;}
.ws1b{word-spacing:2.807996px;}
.wsce{word-spacing:2.939995px;}
.ws3d{word-spacing:2.951995px;}
.wsd0{word-spacing:3.059995px;}
.ws5a{word-spacing:3.239995px;}
.ws27{word-spacing:3.311995px;}
.ws6e{word-spacing:3.383995px;}
.wsd5{word-spacing:3.563994px;}
.wscf{word-spacing:3.659994px;}
.ws4c{word-spacing:3.671994px;}
.ws73{word-spacing:3.815994px;}
.ws26{word-spacing:3.887994px;}
.wsd4{word-spacing:3.959994px;}
.ws20{word-spacing:4.031994px;}
.ws4d{word-spacing:4.103993px;}
.ws1f{word-spacing:4.175993px;}
.wsa2{word-spacing:4.319993px;}
.ws43{word-spacing:4.391993px;}
.ws44{word-spacing:4.535993px;}
.wsa4{word-spacing:4.679993px;}
.wsa3{word-spacing:4.799992px;}
.ws1a{word-spacing:4.967992px;}
.ws4e{word-spacing:5.039992px;}
.ws61{word-spacing:5.183992px;}
.ws19{word-spacing:5.327991px;}
.ws9c{word-spacing:5.339991px;}
.ws47{word-spacing:5.615991px;}
.ws6b{word-spacing:5.687991px;}
.ws9a{word-spacing:5.759991px;}
.ws9b{word-spacing:5.999990px;}
.ws99{word-spacing:6.059990px;}
.wsba{word-spacing:6.191990px;}
.wsb9{word-spacing:6.407990px;}
.ws7e{word-spacing:6.479990px;}
.ws31{word-spacing:6.551990px;}
.ws79{word-spacing:6.911989px;}
.ws2f{word-spacing:6.983989px;}
.wsb7{word-spacing:7.271988px;}
.ws8d{word-spacing:7.487988px;}
.ws17{word-spacing:7.631988px;}
.ws46{word-spacing:7.703988px;}
.ws5c{word-spacing:7.775988px;}
.wsbb{word-spacing:8.063987px;}
.ws54{word-spacing:8.135987px;}
.wsb6{word-spacing:8.423987px;}
.wsc2{word-spacing:8.783986px;}
.ws55{word-spacing:8.927986px;}
.wsbf{word-spacing:9.359985px;}
.ws80{word-spacing:9.647985px;}
.ws7f{word-spacing:10.007984px;}
.ws50{word-spacing:10.079984px;}
.ws92{word-spacing:10.139984px;}
.ws4f{word-spacing:10.151984px;}
.ws3c{word-spacing:10.583983px;}
.ws93{word-spacing:10.799983px;}
.ws94{word-spacing:10.859983px;}
.ws18{word-spacing:10.871983px;}
.ws78{word-spacing:11.231982px;}
.ws24{word-spacing:11.375982px;}
.wsa9{word-spacing:11.519982px;}
.ws7b{word-spacing:11.735981px;}
.wsae{word-spacing:11.879981px;}
.wsc5{word-spacing:12.023981px;}
.wsa8{word-spacing:12.059981px;}
.wsb8{word-spacing:12.239980px;}
.ws42{word-spacing:12.527980px;}
.ws66{word-spacing:12.815979px;}
.ws4b{word-spacing:12.959979px;}
.ws77{word-spacing:13.463978px;}
.wsa0{word-spacing:13.499978px;}
.ws7a{word-spacing:13.751978px;}
.wsa1{word-spacing:14.279977px;}
.wsd2{word-spacing:14.321977px;}
.wsaf{word-spacing:14.459977px;}
.ws67{word-spacing:14.759976px;}
.wsc7{word-spacing:14.831976px;}
.wsd1{word-spacing:14.849976px;}
.ws60{word-spacing:14.975976px;}
.ws8c{word-spacing:15.335975px;}
.wsc1{word-spacing:16.991973px;}
.ws63{word-spacing:17.351972px;}
.ws62{word-spacing:18.431971px;}
.ws6d{word-spacing:18.503970px;}
.ws6c{word-spacing:18.575970px;}
.ws8a{word-spacing:18.791970px;}
.wsc6{word-spacing:18.935970px;}
.ws4a{word-spacing:19.223969px;}
.ws5b{word-spacing:19.727968px;}
.ws8f{word-spacing:19.799968px;}
.ws90{word-spacing:20.087968px;}
.ws8e{word-spacing:20.159968px;}
.ws21{word-spacing:20.591967px;}
.ws91{word-spacing:20.807967px;}
.ws69{word-spacing:20.951966px;}
.ws87{word-spacing:22.175965px;}
.ws32{word-spacing:22.391964px;}
.ws33{word-spacing:22.535964px;}
.ws34{word-spacing:23.327963px;}
.ws5e{word-spacing:25.775959px;}
.ws76{word-spacing:29.375953px;}
.ws48{word-spacing:34.847944px;}
.wsb2{word-spacing:71.219886px;}
.wsb4{word-spacing:71.459886px;}
.wsb3{word-spacing:71.759885px;}
.wsb5{word-spacing:72.059885px;}
.wsb1{word-spacing:80.159872px;}
.wsb0{word-spacing:80.459871px;}
._11{margin-left:-14.513135px;}
._10{margin-left:-13.302152px;}
._d{margin-left:-11.539367px;}
._a{margin-left:-10.489165px;}
._e{margin-left:-8.959948px;}
._f{margin-left:-7.696131px;}
._b{margin-left:-5.360362px;}
._c{margin-left:-4.182114px;}
._5{margin-left:-2.136093px;}
._0{margin-left:-1.020027px;}
._1{width:1.266056px;}
._6{width:2.850593px;}
._8{width:5.235742px;}
._9{width:6.398218px;}
._7{width:11.249809px;}
._19{width:15.083083px;}
._14{width:16.453942px;}
._15{width:86.824373px;}
._16{width:112.240332px;}
._17{width:128.375795px;}
._18{width:193.175691px;}
._13{width:337.401116px;}
._3{width:765.784832px;}
._4{width:918.772530px;}
._2{width:1005.424391px;}
._12{width:1224.784040px;}
.fc4{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc3{color:rgb(5,5,5);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:23.999962px;}
.fs1{font-size:35.999942px;}
.fs8{font-size:39.599937px;}
.fs4{font-size:41.999933px;}
.fs7{font-size:47.999923px;}
.fs0{font-size:59.999904px;}
.fs6{font-size:65.999894px;}
.fs2{font-size:71.999885px;}
.fs3{font-size:83.999866px;}
.y9{bottom:-0.002627px;}
.ye3{bottom:-0.001454px;}
.ya4{bottom:-0.001179px;}
.ydd{bottom:-0.000248px;}
.y0{bottom:0.000000px;}
.ya{bottom:3.295868px;}
.yc8{bottom:5.095869px;}
.y77{bottom:5.095907px;}
.y7{bottom:5.096726px;}
.y74{bottom:5.096732px;}
.ya7{bottom:5.097387px;}
.ye5{bottom:5.097615px;}
.yea{bottom:5.097773px;}
.ybf{bottom:5.098135px;}
.yed{bottom:5.098352px;}
.yf0{bottom:5.098427px;}
.y62{bottom:5.098490px;}
.yfe{bottom:5.098725px;}
.y6f{bottom:5.098827px;}
.ydf{bottom:5.098882px;}
.y69{bottom:5.099150px;}
.y104{bottom:5.101656px;}
.ycb{bottom:5.101681px;}
.y71{bottom:5.101684px;}
.yf2{bottom:5.101884px;}
.y65{bottom:5.101986px;}
.ybd{bottom:5.102056px;}
.y100{bottom:5.102182px;}
.y102{bottom:5.102219px;}
.y7a{bottom:5.102281px;}
.yb{bottom:5.995863px;}
.yfb{bottom:28.197150px;}
.yce{bottom:28.199956px;}
.yca{bottom:28.200744px;}
.y68{bottom:28.201063px;}
.y76{bottom:28.495869px;}
.y73{bottom:28.496695px;}
.ya6{bottom:28.497350px;}
.yf8{bottom:28.498035px;}
.yc1{bottom:28.498172px;}
.yef{bottom:28.498389px;}
.yc4{bottom:28.498787px;}
.y6e{bottom:28.498789px;}
.yf4{bottom:28.501921px;}
.y64{bottom:28.501948px;}
.ycd{bottom:51.599918px;}
.yc9{bottom:51.600707px;}
.y4{bottom:67.800792px;}
.yde{bottom:93.900960px;}
.ye0{bottom:98.999842px;}
.y155{bottom:101.148288px;}
.y3b{bottom:102.631486px;}
.y105{bottom:104.700732px;}
.y70{bottom:104.999040px;}
.y16c{bottom:105.098382px;}
.ya2{bottom:107.099829px;}
.yc6{bottom:111.900721px;}
.ydc{bottom:117.300960px;}
.ya1{bottom:118.277061px;}
.y103{bottom:122.099040px;}
.y154{bottom:124.548251px;}
.y3a{bottom:125.724849px;}
.y6d{bottom:128.100960px;}
.y16b{bottom:128.191745px;}
.yc3{bottom:129.900960px;}
.y123{bottom:131.098890px;}
.yc5{bottom:134.999784px;}
.ya0{bottom:141.677023px;}
.y101{bottom:145.499040px;}
.y153{bottom:147.641614px;}
.y39{bottom:149.124811px;}
.y122{bottom:150.601259px;}
.y16a{bottom:151.591707px;}
.y9f{bottom:164.773236px;}
.yff{bottom:168.899040px;}
.y121{bottom:170.100328px;}
.y152{bottom:171.041576px;}
.y38{bottom:172.218174px;}
.y169{bottom:174.991670px;}
.yc0{bottom:176.400000px;}
.y6c{bottom:180.004812px;}
.yc2{bottom:181.498210px;}
.y9e{bottom:188.173199px;}
.y120{bottom:189.301197px;}
.yfd{bottom:192.000960px;}
.y151{bottom:194.134939px;}
.y37{bottom:195.618137px;}
.y168{bottom:198.085033px;}
.y6b{bottom:203.098175px;}
.y11f{bottom:208.799666px;}
.y9d{bottom:211.573161px;}
.yfa{bottom:215.400960px;}
.y150{bottom:217.534902px;}
.y36{bottom:219.018100px;}
.yfc{bottom:220.499647px;}
.y167{bottom:221.484996px;}
.ybe{bottom:223.200000px;}
.y6a{bottom:226.498138px;}
.y11e{bottom:228.298285px;}
.y9c{bottom:234.666525px;}
.y14f{bottom:240.934865px;}
.y35{bottom:242.111463px;}
.y67{bottom:244.800000px;}
.y166{bottom:244.884958px;}
.ybc{bottom:247.199040px;}
.y11d{bottom:247.800054px;}
.y179{bottom:248.998102px;}
.y9b{bottom:258.066487px;}
.yf7{bottom:261.900000px;}
.y178{bottom:262.799580px;}
.y14e{bottom:264.028228px;}
.y34{bottom:265.511425px;}
.y11c{bottom:266.098074px;}
.yf9{bottom:266.998073px;}
.y165{bottom:267.978321px;}
.y66{bottom:273.001063px;}
.ybb{bottom:276.299558px;}
.yf6{bottom:278.698054px;}
.y9a{bottom:281.466450px;}
.y11b{bottom:283.499546px;}
.y177{bottom:283.801046px;}
.y14d{bottom:287.428190px;}
.y33{bottom:288.911388px;}
.y63{bottom:291.299040px;}
.y164{bottom:291.378284px;}
.yba{bottom:299.699520px;}
.y176{bottom:303.298915px;}
.y99{bottom:304.559813px;}
.y11a{bottom:306.899509px;}
.yf3{bottom:308.399040px;}
.y14c{bottom:310.828153px;}
.y32{bottom:312.004751px;}
.yf5{bottom:313.500998px;}
.y163{bottom:314.778246px;}
.yb9{bottom:320.997986px;}
.y175{bottom:324.896030px;}
.y98{bottom:327.959775px;}
.y119{bottom:329.997972px;}
.y14b{bottom:333.924366px;}
.y31{bottom:335.404713px;}
.y162{bottom:337.871609px;}
.yb8{bottom:338.431109px;}
.y61{bottom:338.700960px;}
.y174{bottom:346.197946px;}
.y97{bottom:351.053138px;}
.y118{bottom:351.597937px;}
.yf1{bottom:355.199040px;}
.y14a{bottom:357.324328px;}
.y30{bottom:358.804676px;}
.y161{bottom:361.271572px;}
.yb7{bottom:361.831071px;}
.y60{bottom:367.812611px;}
.y117{bottom:369.024310px;}
.y173{bottom:372.000905px;}
.y96{bottom:374.453101px;}
.yee{bottom:378.300960px;}
.y149{bottom:380.724291px;}
.y2f{bottom:381.900889px;}
.y160{bottom:384.367785px;}
.yb6{bottom:384.924434px;}
.y5f{bottom:390.905975px;}
.y116{bottom:392.117673px;}
.y95{bottom:397.853063px;}
.y148{bottom:403.817654px;}
.y2e{bottom:405.300852px;}
.y15f{bottom:407.767748px;}
.yb5{bottom:408.324397px;}
.y5e{bottom:414.305937px;}
.y172{bottom:414.896486px;}
.y115{bottom:415.517635px;}
.y94{bottom:420.946426px;}
.y2d{bottom:425.100820px;}
.yec{bottom:425.100960px;}
.y147{bottom:427.217616px;}
.y15e{bottom:431.167710px;}
.yb4{bottom:431.724359px;}
.y2c{bottom:436.197802px;}
.y171{bottom:436.198402px;}
.y5d{bottom:437.705900px;}
.y114{bottom:438.917598px;}
.y93{bottom:444.346389px;}
.ye9{bottom:449.100000px;}
.y146{bottom:450.310980px;}
.y15d{bottom:454.261073px;}
.yb3{bottom:454.817722px;}
.y170{bottom:455.399271px;}
.y2b{bottom:459.597765px;}
.yeb{bottom:460.200764px;}
.y5c{bottom:460.799263px;}
.y113{bottom:462.010961px;}
.y92{bottom:467.746352px;}
.y16f{bottom:468.899850px;}
.y145{bottom:473.710942px;}
.y15c{bottom:477.661036px;}
.ye8{bottom:478.199535px;}
.yb2{bottom:478.217685px;}
.y2a{bottom:479.699232px;}
.y5b{bottom:484.199225px;}
.y112{bottom:485.410923px;}
.y16e{bottom:488.398919px;}
.y29{bottom:490.817665px;}
.y91{bottom:490.842565px;}
.y144{bottom:497.110905px;}
.y15b{bottom:501.060998px;}
.yb1{bottom:501.311048px;}
.ye7{bottom:501.599497px;}
.y5a{bottom:505.200692px;}
.y16d{bottom:507.000689px;}
.y111{bottom:508.810886px;}
.y28{bottom:513.911028px;}
.y90{bottom:514.242527px;}
.y59{bottom:516.317474px;}
.y143{bottom:520.204268px;}
.y15a{bottom:524.154361px;}
.yb0{bottom:524.711010px;}
.y110{bottom:531.904249px;}
.y27{bottom:537.310990px;}
.y8f{bottom:537.642490px;}
.ye6{bottom:538.797638px;}
.y58{bottom:539.717436px;}
.y142{bottom:543.604230px;}
.y159{bottom:547.554324px;}
.ye4{bottom:548.100000px;}
.yaf{bottom:548.110973px;}
.y10f{bottom:555.304212px;}
.y26{bottom:560.404353px;}
.y8e{bottom:560.735853px;}
.y57{bottom:563.117399px;}
.y141{bottom:567.004193px;}
.y158{bottom:570.954286px;}
.ye2{bottom:571.199040px;}
.yae{bottom:571.204336px;}
.y10e{bottom:578.397575px;}
.y25{bottom:583.804316px;}
.y8d{bottom:584.135815px;}
.y56{bottom:586.210762px;}
.y140{bottom:590.097556px;}
.y157{bottom:594.047650px;}
.yad{bottom:594.604299px;}
.y10d{bottom:601.797537px;}
.y24{bottom:607.204278px;}
.y8c{bottom:607.535778px;}
.y55{bottom:609.610725px;}
.y13f{bottom:613.497518px;}
.y156{bottom:617.447612px;}
.yac{bottom:618.004261px;}
.y10c{bottom:623.397503px;}
.y23{bottom:630.300492px;}
.y8b{bottom:630.629141px;}
.y54{bottom:633.010687px;}
.ydb{bottom:635.097484px;}
.y10b{bottom:640.847575px;}
.yab{bottom:641.100474px;}
.yda{bottom:646.223866px;}
.y22{bottom:650.397459px;}
.y13e{bottom:652.197456px;}
.y8a{bottom:654.029104px;}
.y53{bottom:656.104050px;}
.y21{bottom:661.498942px;}
.y10a{bottom:663.940938px;}
.yaa{bottom:664.500437px;}
.yd9{bottom:669.623829px;}
.y13d{bottom:673.797422px;}
.y89{bottom:677.122467px;}
.y52{bottom:679.504013px;}
.ya9{bottom:684.597405px;}
.y20{bottom:684.898904px;}
.y109{bottom:687.340900px;}
.ya5{bottom:690.300000px;}
.y13c{bottom:691.198894px;}
.yd8{bottom:692.717192px;}
.ya8{bottom:695.397387px;}
.y88{bottom:700.522429px;}
.y51{bottom:702.903975px;}
.y1f{bottom:704.698872px;}
.y108{bottom:710.437113px;}
.y13b{bottom:712.497960px;}
.y1e{bottom:715.810555px;}
.yd7{bottom:716.117154px;}
.y87{bottom:723.922392px;}
.y50{bottom:725.997338px;}
.y13a{bottom:728.998834px;}
.y107{bottom:733.837076px;}
.ya3{bottom:737.100000px;}
.y1d{bottom:739.210517px;}
.y86{bottom:747.015755px;}
.y139{bottom:748.497302px;}
.y4f{bottom:749.397301px;}
.y106{bottom:757.237038px;}
.y1c{bottom:762.303880px;}
.yd6{bottom:762.610480px;}
.y138{bottom:768.000271px;}
.y4e{bottom:769.197269px;}
.y85{bottom:770.415717px;}
.y4d{bottom:780.330401px;}
.y1b{bottom:785.703843px;}
.yd5{bottom:786.010442px;}
.y137{bottom:787.197240px;}
.y84{bottom:793.815680px;}
.y4c{bottom:803.730364px;}
.y136{bottom:806.700209px;}
.y1a{bottom:809.103805px;}
.y83{bottom:816.911893px;}
.y135{bottom:826.198678px;}
.y4b{bottom:827.130327px;}
.y19{bottom:832.197168px;}
.yd4{bottom:832.503768px;}
.y82{bottom:840.311855px;}
.y134{bottom:845.400147px;}
.y4a{bottom:850.223690px;}
.y18{bottom:855.597131px;}
.yd3{bottom:855.903731px;}
.y81{bottom:863.711818px;}
.y133{bottom:864.898616px;}
.y49{bottom:873.623652px;}
.y17{bottom:875.698599px;}
.yd2{bottom:878.997094px;}
.y132{bottom:884.397085px;}
.y16{bottom:885.598553px;}
.y80{bottom:886.805181px;}
.y48{bottom:897.023615px;}
.yd1{bottom:902.397056px;}
.y131{bottom:903.598554px;}
.y15{bottom:905.097622px;}
.y7f{bottom:910.205144px;}
.y47{bottom:920.116978px;}
.y14{bottom:922.197594px;}
.y130{bottom:923.097023px;}
.yd0{bottom:923.997022px;}
.y13{bottom:932.398508px;}
.y7e{bottom:933.298507px;}
.ycc{bottom:936.900000px;}
.ycf{bottom:941.996993px;}
.y12f{bottom:942.599992px;}
.y46{bottom:943.516940px;}
.y12{bottom:951.599977px;}
.y7d{bottom:953.399975px;}
.y12e{bottom:962.098461px;}
.y7c{bottom:965.099956px;}
.y45{bottom:966.610303px;}
.y11{bottom:969.298854px;}
.y12d{bottom:981.299930px;}
.y10{bottom:983.698831px;}
.y7b{bottom:988.499918px;}
.y44{bottom:990.010266px;}
.ye1{bottom:998.999002px;}
.y12c{bottom:1000.798399px;}
.yf{bottom:1004.398798px;}
.y79{bottom:1006.797600px;}
.y43{bottom:1013.410229px;}
.ye{bottom:1019.099719px;}
.y12b{bottom:1020.296868px;}
.y78{bottom:1034.998344px;}
.y42{bottom:1036.506442px;}
.y12a{bottom:1039.498337px;}
.yd{bottom:1046.397876px;}
.y75{bottom:1053.302400px;}
.y129{bottom:1058.996806px;}
.y41{bottom:1059.906404px;}
.yc{bottom:1070.399787px;}
.yc7{bottom:1076.702400px;}
.y128{bottom:1078.498724px;}
.y8{bottom:1079.402400px;}
.y40{bottom:1083.303517px;}
.y127{bottom:1097.696744px;}
.y72{bottom:1099.800000px;}
.y6{bottom:1103.400000px;}
.y3f{bottom:1106.399730px;}
.y126{bottom:1117.199712px;}
.y5{bottom:1129.196693px;}
.y3e{bottom:1129.799692px;}
.y125{bottom:1136.698181px;}
.y3{bottom:1144.798768px;}
.y3d{bottom:1153.199655px;}
.y124{bottom:1156.197550px;}
.y2{bottom:1164.297837px;}
.y3c{bottom:1183.498106px;}
.y1{bottom:1183.799606px;}
.hc{height:18.671970px;}
.h12{height:23.099040px;}
.h15{height:23.101848px;}
.h1d{height:23.400000px;}
.h5{height:23.402808px;}
.h8{height:23.996232px;}
.h4{height:28.007955px;}
.h1f{height:29.987952px;}
.h18{height:37.343940px;}
.h3{height:42.719932px;}
.h2{height:42.839931px;}
.h20{height:46.499040px;}
.h13{height:46.501848px;}
.hb{height:46.679925px;}
.h16{height:46.797192px;}
.h14{height:46.800000px;}
.h7{height:47.399040px;}
.h19{height:47.988204px;}
.h22{height:50.759919px;}
.h11{height:51.263918px;}
.he{height:51.347918px;}
.h6{height:51.407918px;}
.h10{height:51.839917px;}
.h21{height:54.804992px;}
.hd{height:56.015910px;}
.ha{height:56.672189px;}
.h9{height:59.975904px;}
.hf{height:62.639900px;}
.h23{height:65.351895px;}
.h1b{height:69.899040px;}
.h1a{height:69.901848px;}
.h1e{height:425.401920px;}
.h17{height:434.100960px;}
.h1c{height:515.998080px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w4{width:127.499040px;}
.w3{width:127.800000px;}
.w5{width:169.498080px;}
.wa{width:260.400960px;}
.w9{width:446.400000px;}
.w2{width:478.200960px;}
.w6{width:541.800000px;}
.w7{width:709.200000px;}
.w8{width:710.100000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.099919px;}
.x1a{left:10.201065px;}
.x32{left:16.198573px;}
.x19{left:21.301680px;}
.x29{left:26.999870px;}
.x26{left:33.901659px;}
.x16{left:66.900707px;}
.x2{left:79.799040px;}
.x2f{left:89.998455px;}
.x1{left:91.498954px;}
.x1d{left:95.700747px;}
.x2b{left:99.899154px;}
.x33{left:102.298936px;}
.x1b{left:112.800720px;}
.x37{left:113.998918px;}
.x7{left:122.997206px;}
.x5{left:125.098907px;}
.x12{left:144.598869px;}
.x9{left:166.801233px;}
.x31{left:170.098327px;}
.x36{left:171.598840px;}
.x38{left:173.101223px;}
.xf{left:176.389068px;}
.x27{left:193.198191px;}
.x11{left:197.680979px;}
.x20{left:230.399965px;}
.x24{left:237.000702px;}
.x18{left:249.299182px;}
.x17{left:261.900000px;}
.xd{left:267.601072px;}
.x1c{left:272.100465px;}
.xb{left:275.999033px;}
.x35{left:296.099526px;}
.x15{left:299.993955px;}
.x23{left:302.098017px;}
.xa{left:307.207233px;}
.xc{left:312.897999px;}
.x2a{left:338.403959px;}
.x2d{left:346.201760px;}
.xe{left:374.099626px;}
.x2c{left:431.400810px;}
.x8{left:446.399286px;}
.x13{left:467.697752px;}
.x10{left:473.097743px;}
.x2e{left:537.899040px;}
.x34{left:554.097613px;}
.x4{left:558.000000px;}
.x21{left:570.297588px;}
.x1e{left:647.400464px;}
.x1f{left:649.798274px;}
.x6{left:685.800000px;}
.x28{left:689.398211px;}
.x25{left:691.499707px;}
.x30{left:701.998877px;}
.x14{left:746.697740px;}
.x22{left:801.597217px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.329993pt;}
.ls23{letter-spacing:-2.175997pt;}
.ls2b{letter-spacing:-0.831999pt;}
.ls39{letter-spacing:-0.767999pt;}
.ls1d{letter-spacing:-0.511999pt;}
.ls4c{letter-spacing:-0.479999pt;}
.ls53{letter-spacing:-0.469333pt;}
.ls29{letter-spacing:-0.447999pt;}
.ls10{letter-spacing:-0.426666pt;}
.ls1c{letter-spacing:-0.383999pt;}
.ls16{letter-spacing:-0.373333pt;}
.ls1b{letter-spacing:-0.319999pt;}
.ls4e{letter-spacing:-0.293333pt;}
.ls1a{letter-spacing:-0.266666pt;}
.ls20{letter-spacing:-0.256000pt;}
.ls55{letter-spacing:-0.234666pt;}
.ls1e{letter-spacing:-0.192000pt;}
.ls43{letter-spacing:-0.160000pt;}
.ls14{letter-spacing:-0.149333pt;}
.ls2a{letter-spacing:-0.128000pt;}
.ls52{letter-spacing:-0.117333pt;}
.ls15{letter-spacing:-0.064000pt;}
.ls54{letter-spacing:-0.058667pt;}
.ls4d{letter-spacing:-0.053333pt;}
.lsf{letter-spacing:0.000000pt;}
.ls3a{letter-spacing:0.002027pt;}
.ls3c{letter-spacing:0.016000pt;}
.ls11{letter-spacing:0.053333pt;}
.ls24{letter-spacing:0.064000pt;}
.ls13{letter-spacing:0.074667pt;}
.lse{letter-spacing:0.106666pt;}
.ls37{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.192000pt;}
.ls17{letter-spacing:0.213333pt;}
.ls38{letter-spacing:0.248000pt;}
.ls1f{letter-spacing:0.256000pt;}
.ls46{letter-spacing:0.280000pt;}
.ls50{letter-spacing:0.293333pt;}
.ls6{letter-spacing:0.319999pt;}
.ls4{letter-spacing:0.350026pt;}
.ls51{letter-spacing:0.351999pt;}
.ls33{letter-spacing:0.390026pt;}
.ls4f{letter-spacing:0.410666pt;}
.ls25{letter-spacing:0.419999pt;}
.ls42{letter-spacing:0.426666pt;}
.ls5{letter-spacing:0.430026pt;}
.ls9{letter-spacing:0.439999pt;}
.lsc{letter-spacing:0.450026pt;}
.ls18{letter-spacing:0.479999pt;}
.ls27{letter-spacing:0.499999pt;}
.ls21{letter-spacing:0.511999pt;}
.ls28{letter-spacing:0.519999pt;}
.ls19{letter-spacing:0.799999pt;}
.ls31{letter-spacing:0.971998pt;}
.ls3e{letter-spacing:1.022025pt;}
.ls40{letter-spacing:1.029972pt;}
.ls44{letter-spacing:1.049972pt;}
.ls41{letter-spacing:1.059998pt;}
.ls49{letter-spacing:1.071998pt;}
.ls36{letter-spacing:2.111997pt;}
.ls4b{letter-spacing:2.819995pt;}
.ls30{letter-spacing:2.891995pt;}
.lsb{letter-spacing:3.191995pt;}
.ls45{letter-spacing:3.899994pt;}
.ls22{letter-spacing:4.223993pt;}
.ls34{letter-spacing:5.311992pt;}
.ls7{letter-spacing:6.391990pt;}
.ls2f{letter-spacing:6.402016pt;}
.ls48{letter-spacing:7.811988pt;}
.ls26{letter-spacing:9.602011pt;}
.ls4a{letter-spacing:10.622010pt;}
.ls32{letter-spacing:11.711981pt;}
.ls35{letter-spacing:17.021999pt;}
.ls8{letter-spacing:18.111971pt;}
.lsd{letter-spacing:20.221994pt;}
.ls3f{letter-spacing:20.373301pt;}
.lsa{letter-spacing:25.917985pt;}
.ls3d{letter-spacing:29.117980pt;}
.ls3b{letter-spacing:47.700724pt;}
.ls2d{letter-spacing:66.071894pt;}
.ls47{letter-spacing:171.711725pt;}
.ls2e{letter-spacing:172.801857pt;}
.ls2c{letter-spacing:382.559388pt;}
.ls1{letter-spacing:752.686796pt;}
.ls3{letter-spacing:804.948045pt;}
.ls2{letter-spacing:1037.497007pt;}
.ls0{letter-spacing:1186.819434pt;}
.ws57{word-spacing:-17.599972pt;}
.ws2{word-spacing:-17.407972pt;}
.ws7d{word-spacing:-17.279972pt;}
.ws75{word-spacing:-17.151973pt;}
.ws3{word-spacing:-17.087973pt;}
.wsc9{word-spacing:-17.023973pt;}
.ws38{word-spacing:-16.959973pt;}
.ws7c{word-spacing:-16.895973pt;}
.ws39{word-spacing:-16.831973pt;}
.ws58{word-spacing:-16.767973pt;}
.ws37{word-spacing:-16.703973pt;}
.ws36{word-spacing:-16.639973pt;}
.ws7{word-spacing:-16.575973pt;}
.wsa{word-spacing:-16.191974pt;}
.ws8{word-spacing:-15.935975pt;}
.ws6{word-spacing:-15.871975pt;}
.ws3a{word-spacing:-15.679975pt;}
.ws9{word-spacing:-15.663975pt;}
.wscd{word-spacing:-15.429309pt;}
.wscc{word-spacing:-15.194642pt;}
.ws4{word-spacing:-15.039976pt;}
.ws84{word-spacing:-14.666643pt;}
.wscb{word-spacing:-14.549310pt;}
.ws86{word-spacing:-14.453310pt;}
.ws1{word-spacing:-14.293310pt;}
.ws85{word-spacing:-14.239977pt;}
.ws9d{word-spacing:-14.079977pt;}
.ws5{word-spacing:-13.973311pt;}
.ws9e{word-spacing:-13.866644pt;}
.ws0{word-spacing:-13.813311pt;}
.ws83{word-spacing:-13.066646pt;}
.wsca{word-spacing:-13.013313pt;}
.ws35{word-spacing:-12.799980pt;}
.wsbd{word-spacing:-4.607993pt;}
.wsbc{word-spacing:-4.479993pt;}
.ws6a{word-spacing:-4.415993pt;}
.ws88{word-spacing:-4.223993pt;}
.ws74{word-spacing:-3.903994pt;}
.ws5f{word-spacing:-3.775994pt;}
.ws3f{word-spacing:-3.519994pt;}
.ws41{word-spacing:-3.391995pt;}
.ws64{word-spacing:-3.135995pt;}
.wsc8{word-spacing:-3.007995pt;}
.wsc4{word-spacing:-2.815995pt;}
.wsc3{word-spacing:-2.751996pt;}
.ws3b{word-spacing:-2.687996pt;}
.ws2c{word-spacing:-2.495996pt;}
.ws1d{word-spacing:-2.431996pt;}
.ws1e{word-spacing:-2.367996pt;}
.wsaa{word-spacing:-1.866664pt;}
.ws25{word-spacing:-1.791997pt;}
.wsc0{word-spacing:-1.727997pt;}
.ws2d{word-spacing:-1.663997pt;}
.wsab{word-spacing:-1.546664pt;}
.ws68{word-spacing:-1.407998pt;}
.wsbe{word-spacing:-1.343998pt;}
.ws89{word-spacing:-1.279998pt;}
.wsac{word-spacing:-1.013332pt;}
.wsa6{word-spacing:-0.799999pt;}
.wsf{word-spacing:-0.746665pt;}
.ws8b{word-spacing:-0.703999pt;}
.ws9f{word-spacing:-0.693332pt;}
.ws15{word-spacing:-0.586666pt;}
.ws81{word-spacing:-0.575999pt;}
.ws22{word-spacing:-0.511999pt;}
.wsb{word-spacing:-0.479999pt;}
.ws49{word-spacing:-0.447999pt;}
.wsd{word-spacing:-0.373333pt;}
.ws14{word-spacing:-0.319999pt;}
.ws45{word-spacing:-0.256000pt;}
.ws96{word-spacing:-0.213333pt;}
.wse{word-spacing:-0.192000pt;}
.ws95{word-spacing:-0.106666pt;}
.ws53{word-spacing:-0.064000pt;}
.wsc{word-spacing:0.000000pt;}
.wsa7{word-spacing:0.053333pt;}
.wsd3{word-spacing:0.058667pt;}
.ws13{word-spacing:0.064000pt;}
.ws70{word-spacing:0.128000pt;}
.ws71{word-spacing:0.192000pt;}
.ws11{word-spacing:0.224000pt;}
.ws40{word-spacing:0.256000pt;}
.wsa5{word-spacing:0.266666pt;}
.ws10{word-spacing:0.298666pt;}
.ws59{word-spacing:0.319999pt;}
.ws82{word-spacing:0.351999pt;}
.ws30{word-spacing:0.383999pt;}
.wsd7{word-spacing:0.410666pt;}
.ws16{word-spacing:0.426666pt;}
.ws12{word-spacing:0.447999pt;}
.wsd6{word-spacing:0.469333pt;}
.ws23{word-spacing:0.511999pt;}
.ws56{word-spacing:0.639999pt;}
.ws29{word-spacing:0.703999pt;}
.ws65{word-spacing:0.767999pt;}
.ws2e{word-spacing:0.831999pt;}
.ws2b{word-spacing:0.959998pt;}
.ws5d{word-spacing:1.087998pt;}
.wsad{word-spacing:1.119998pt;}
.ws28{word-spacing:1.279998pt;}
.ws2a{word-spacing:1.535998pt;}
.ws6f{word-spacing:1.599997pt;}
.ws52{word-spacing:1.791997pt;}
.ws51{word-spacing:1.919997pt;}
.ws97{word-spacing:2.026663pt;}
.ws3e{word-spacing:2.047997pt;}
.ws72{word-spacing:2.175997pt;}
.ws98{word-spacing:2.186663pt;}
.ws1c{word-spacing:2.431996pt;}
.ws1b{word-spacing:2.495996pt;}
.wsce{word-spacing:2.613329pt;}
.ws3d{word-spacing:2.623996pt;}
.wsd0{word-spacing:2.719996pt;}
.ws5a{word-spacing:2.879995pt;}
.ws27{word-spacing:2.943995pt;}
.ws6e{word-spacing:3.007995pt;}
.wsd5{word-spacing:3.167995pt;}
.wscf{word-spacing:3.253328pt;}
.ws4c{word-spacing:3.263995pt;}
.ws73{word-spacing:3.391995pt;}
.ws26{word-spacing:3.455994pt;}
.wsd4{word-spacing:3.519994pt;}
.ws20{word-spacing:3.583994pt;}
.ws4d{word-spacing:3.647994pt;}
.ws1f{word-spacing:3.711994pt;}
.wsa2{word-spacing:3.839994pt;}
.ws43{word-spacing:3.903994pt;}
.ws44{word-spacing:4.031994pt;}
.wsa4{word-spacing:4.159993pt;}
.wsa3{word-spacing:4.266660pt;}
.ws1a{word-spacing:4.415993pt;}
.ws4e{word-spacing:4.479993pt;}
.ws61{word-spacing:4.607993pt;}
.ws19{word-spacing:4.735992pt;}
.ws9c{word-spacing:4.746659pt;}
.ws47{word-spacing:4.991992pt;}
.ws6b{word-spacing:5.055992pt;}
.ws9a{word-spacing:5.119992pt;}
.ws9b{word-spacing:5.333325pt;}
.ws99{word-spacing:5.386658pt;}
.wsba{word-spacing:5.503991pt;}
.wsb9{word-spacing:5.695991pt;}
.ws7e{word-spacing:5.759991pt;}
.ws31{word-spacing:5.823991pt;}
.ws79{word-spacing:6.143990pt;}
.ws2f{word-spacing:6.207990pt;}
.wsb7{word-spacing:6.463990pt;}
.ws8d{word-spacing:6.655989pt;}
.ws17{word-spacing:6.783989pt;}
.ws46{word-spacing:6.847989pt;}
.ws5c{word-spacing:6.911989pt;}
.wsbb{word-spacing:7.167989pt;}
.ws54{word-spacing:7.231988pt;}
.wsb6{word-spacing:7.487988pt;}
.wsc2{word-spacing:7.807988pt;}
.ws55{word-spacing:7.935987pt;}
.wsbf{word-spacing:8.319987pt;}
.ws80{word-spacing:8.575986pt;}
.ws7f{word-spacing:8.895986pt;}
.ws50{word-spacing:8.959986pt;}
.ws92{word-spacing:9.013319pt;}
.ws4f{word-spacing:9.023986pt;}
.ws3c{word-spacing:9.407985pt;}
.ws93{word-spacing:9.599985pt;}
.ws94{word-spacing:9.653318pt;}
.ws18{word-spacing:9.663985pt;}
.ws78{word-spacing:9.983984pt;}
.ws24{word-spacing:10.111984pt;}
.wsa9{word-spacing:10.239984pt;}
.ws7b{word-spacing:10.431983pt;}
.wsae{word-spacing:10.559983pt;}
.wsc5{word-spacing:10.687983pt;}
.wsa8{word-spacing:10.719983pt;}
.wsb8{word-spacing:10.879983pt;}
.ws42{word-spacing:11.135982pt;}
.ws66{word-spacing:11.391982pt;}
.ws4b{word-spacing:11.519982pt;}
.ws77{word-spacing:11.967981pt;}
.wsa0{word-spacing:11.999981pt;}
.ws7a{word-spacing:12.223980pt;}
.wsa1{word-spacing:12.693313pt;}
.wsd2{word-spacing:12.730646pt;}
.wsaf{word-spacing:12.853313pt;}
.ws67{word-spacing:13.119979pt;}
.wsc7{word-spacing:13.183979pt;}
.wsd1{word-spacing:13.199979pt;}
.ws60{word-spacing:13.311979pt;}
.ws8c{word-spacing:13.631978pt;}
.wsc1{word-spacing:15.103976pt;}
.ws63{word-spacing:15.423975pt;}
.ws62{word-spacing:16.383974pt;}
.ws6d{word-spacing:16.447974pt;}
.ws6c{word-spacing:16.511974pt;}
.ws8a{word-spacing:16.703973pt;}
.wsc6{word-spacing:16.831973pt;}
.ws4a{word-spacing:17.087973pt;}
.ws5b{word-spacing:17.535972pt;}
.ws8f{word-spacing:17.599972pt;}
.ws90{word-spacing:17.855971pt;}
.ws8e{word-spacing:17.919971pt;}
.ws21{word-spacing:18.303971pt;}
.ws91{word-spacing:18.495970pt;}
.ws69{word-spacing:18.623970pt;}
.ws87{word-spacing:19.711968pt;}
.ws32{word-spacing:19.903968pt;}
.ws33{word-spacing:20.031968pt;}
.ws34{word-spacing:20.735967pt;}
.ws5e{word-spacing:22.911963pt;}
.ws76{word-spacing:26.111958pt;}
.ws48{word-spacing:30.975950pt;}
.wsb2{word-spacing:63.306565pt;}
.wsb4{word-spacing:63.519898pt;}
.wsb3{word-spacing:63.786565pt;}
.wsb5{word-spacing:64.053231pt;}
.wsb1{word-spacing:71.253219pt;}
.wsb0{word-spacing:71.519886pt;}
._11{margin-left:-12.900565pt;}
._10{margin-left:-11.824135pt;}
._d{margin-left:-10.257215pt;}
._a{margin-left:-9.323702pt;}
._e{margin-left:-7.964398pt;}
._f{margin-left:-6.841006pt;}
._b{margin-left:-4.764767pt;}
._c{margin-left:-3.717434pt;}
._5{margin-left:-1.898749pt;}
._0{margin-left:-0.906691pt;}
._1{width:1.125383pt;}
._6{width:2.533860pt;}
._8{width:4.653993pt;}
._9{width:5.687305pt;}
._7{width:9.999830pt;}
._19{width:13.407185pt;}
._14{width:14.625726pt;}
._15{width:77.177221pt;}
._16{width:99.769184pt;}
._17{width:114.111817pt;}
._18{width:171.711725pt;}
._13{width:299.912103pt;}
._3{width:680.697629pt;}
._4{width:816.686693pt;}
._2{width:893.710570pt;}
._12{width:1088.696925pt;}
.fs5{font-size:21.333299pt;}
.fs1{font-size:31.999949pt;}
.fs8{font-size:35.199944pt;}
.fs4{font-size:37.333274pt;}
.fs7{font-size:42.666598pt;}
.fs0{font-size:53.333248pt;}
.fs6{font-size:58.666573pt;}
.fs2{font-size:63.999898pt;}
.fs3{font-size:74.666547pt;}
.y9{bottom:-0.002335pt;}
.ye3{bottom:-0.001292pt;}
.ya4{bottom:-0.001048pt;}
.ydd{bottom:-0.000220pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:2.929660pt;}
.yc8{bottom:4.529661pt;}
.y77{bottom:4.529695pt;}
.y7{bottom:4.530423pt;}
.y74{bottom:4.530429pt;}
.ya7{bottom:4.531011pt;}
.ye5{bottom:4.531213pt;}
.yea{bottom:4.531354pt;}
.ybf{bottom:4.531675pt;}
.yed{bottom:4.531868pt;}
.yf0{bottom:4.531935pt;}
.y62{bottom:4.531991pt;}
.yfe{bottom:4.532200pt;}
.y6f{bottom:4.532291pt;}
.ydf{bottom:4.532339pt;}
.y69{bottom:4.532578pt;}
.y104{bottom:4.534806pt;}
.ycb{bottom:4.534828pt;}
.y71{bottom:4.534830pt;}
.yf2{bottom:4.535008pt;}
.y65{bottom:4.535098pt;}
.ybd{bottom:4.535161pt;}
.y100{bottom:4.535273pt;}
.y102{bottom:4.535306pt;}
.y7a{bottom:4.535361pt;}
.yb{bottom:5.329656pt;}
.yfb{bottom:25.064134pt;}
.yce{bottom:25.066627pt;}
.yca{bottom:25.067328pt;}
.y68{bottom:25.067612pt;}
.y76{bottom:25.329661pt;}
.y73{bottom:25.330395pt;}
.ya6{bottom:25.330978pt;}
.yf8{bottom:25.331587pt;}
.yc1{bottom:25.331709pt;}
.yef{bottom:25.331901pt;}
.yc4{bottom:25.332255pt;}
.y6e{bottom:25.332257pt;}
.yf4{bottom:25.335041pt;}
.y64{bottom:25.335065pt;}
.ycd{bottom:45.866594pt;}
.yc9{bottom:45.867295pt;}
.y4{bottom:60.267370pt;}
.yde{bottom:83.467520pt;}
.ye0{bottom:87.999859pt;}
.y155{bottom:89.909589pt;}
.y3b{bottom:91.227987pt;}
.y105{bottom:93.067318pt;}
.y70{bottom:93.332480pt;}
.y16c{bottom:93.420784pt;}
.ya2{bottom:95.199848pt;}
.yc6{bottom:99.467308pt;}
.ydc{bottom:104.267520pt;}
.ya1{bottom:105.135165pt;}
.y103{bottom:108.532480pt;}
.y154{bottom:110.709556pt;}
.y3a{bottom:111.755421pt;}
.y6d{bottom:113.867520pt;}
.y16b{bottom:113.948218pt;}
.yc3{bottom:115.467520pt;}
.y123{bottom:116.532347pt;}
.yc5{bottom:119.999808pt;}
.ya0{bottom:125.935132pt;}
.y101{bottom:129.332480pt;}
.y153{bottom:131.236990pt;}
.y39{bottom:132.555388pt;}
.y122{bottom:133.867786pt;}
.y16a{bottom:134.748184pt;}
.y9f{bottom:146.465099pt;}
.yff{bottom:150.132480pt;}
.y121{bottom:151.200291pt;}
.y152{bottom:152.036957pt;}
.y38{bottom:153.082822pt;}
.y169{bottom:155.548151pt;}
.yc0{bottom:156.800000pt;}
.y6c{bottom:160.004277pt;}
.yc2{bottom:161.331742pt;}
.y9e{bottom:167.265066pt;}
.y120{bottom:168.267731pt;}
.yfd{bottom:170.667520pt;}
.y151{bottom:172.564391pt;}
.y37{bottom:173.882788pt;}
.y168{bottom:176.075585pt;}
.y6b{bottom:180.531711pt;}
.y11f{bottom:185.599703pt;}
.y9d{bottom:188.065032pt;}
.yfa{bottom:191.467520pt;}
.y150{bottom:193.364357pt;}
.y36{bottom:194.682755pt;}
.yfc{bottom:195.999686pt;}
.y167{bottom:196.875552pt;}
.ybe{bottom:198.400000pt;}
.y6a{bottom:201.331678pt;}
.y11e{bottom:202.931809pt;}
.y9c{bottom:208.592466pt;}
.y14f{bottom:214.164324pt;}
.y35{bottom:215.210189pt;}
.y67{bottom:217.600000pt;}
.y166{bottom:217.675518pt;}
.ybc{bottom:219.732480pt;}
.y11d{bottom:220.266714pt;}
.y179{bottom:221.331646pt;}
.y9b{bottom:229.392433pt;}
.yf7{bottom:232.800000pt;}
.y178{bottom:233.599626pt;}
.y14e{bottom:234.691758pt;}
.y34{bottom:236.010156pt;}
.y11c{bottom:236.531622pt;}
.yf9{bottom:237.331620pt;}
.y165{bottom:238.202952pt;}
.y66{bottom:242.667612pt;}
.ybb{bottom:245.599607pt;}
.yf6{bottom:247.731604pt;}
.y9a{bottom:250.192400pt;}
.y11b{bottom:251.999597pt;}
.y177{bottom:252.267596pt;}
.y14d{bottom:255.491725pt;}
.y33{bottom:256.810122pt;}
.y63{bottom:258.932480pt;}
.y164{bottom:259.002919pt;}
.yba{bottom:266.399574pt;}
.y176{bottom:269.599035pt;}
.y99{bottom:270.719834pt;}
.y11a{bottom:272.799564pt;}
.yf3{bottom:274.132480pt;}
.y14c{bottom:276.291691pt;}
.y32{bottom:277.337556pt;}
.yf5{bottom:278.667554pt;}
.y163{bottom:279.802886pt;}
.yb9{bottom:285.331543pt;}
.y175{bottom:288.796471pt;}
.y98{bottom:291.519800pt;}
.y119{bottom:293.331531pt;}
.y14b{bottom:296.821658pt;}
.y31{bottom:298.137523pt;}
.y162{bottom:300.330319pt;}
.yb8{bottom:300.827652pt;}
.y61{bottom:301.067520pt;}
.y174{bottom:307.731508pt;}
.y97{bottom:312.047234pt;}
.y118{bottom:312.531500pt;}
.yf1{bottom:315.732480pt;}
.y14a{bottom:317.621625pt;}
.y30{bottom:318.937490pt;}
.y161{bottom:321.130286pt;}
.yb7{bottom:321.627619pt;}
.y60{bottom:326.944544pt;}
.y117{bottom:328.021608pt;}
.y173{bottom:330.667471pt;}
.y96{bottom:332.847201pt;}
.yee{bottom:336.267520pt;}
.y149{bottom:338.421592pt;}
.y2f{bottom:339.467457pt;}
.y160{bottom:341.660253pt;}
.yb6{bottom:342.155053pt;}
.y5f{bottom:347.471977pt;}
.y116{bottom:348.549042pt;}
.y95{bottom:353.647167pt;}
.y148{bottom:358.949026pt;}
.y2e{bottom:360.267424pt;}
.y15f{bottom:362.460220pt;}
.yb5{bottom:362.955019pt;}
.y5e{bottom:368.271944pt;}
.y172{bottom:368.796877pt;}
.y115{bottom:369.349009pt;}
.y94{bottom:374.174601pt;}
.y2d{bottom:377.867395pt;}
.yec{bottom:377.867520pt;}
.y147{bottom:379.748992pt;}
.y15e{bottom:383.260187pt;}
.yb4{bottom:383.754986pt;}
.y2c{bottom:387.731380pt;}
.y171{bottom:387.731913pt;}
.y5d{bottom:389.071911pt;}
.y114{bottom:390.148976pt;}
.y93{bottom:394.974568pt;}
.ye9{bottom:399.200000pt;}
.y146{bottom:400.276426pt;}
.y15d{bottom:403.787621pt;}
.yb3{bottom:404.282420pt;}
.y170{bottom:404.799352pt;}
.y2b{bottom:408.531346pt;}
.yeb{bottom:409.067345pt;}
.y5c{bottom:409.599345pt;}
.y113{bottom:410.676410pt;}
.y92{bottom:415.774535pt;}
.y16f{bottom:416.799866pt;}
.y145{bottom:421.076393pt;}
.y15c{bottom:424.587587pt;}
.ye8{bottom:425.066253pt;}
.yb2{bottom:425.082387pt;}
.y2a{bottom:426.399318pt;}
.y5b{bottom:430.399311pt;}
.y112{bottom:431.476376pt;}
.y16e{bottom:434.132372pt;}
.y29{bottom:436.282369pt;}
.y91{bottom:436.304502pt;}
.y144{bottom:441.876360pt;}
.y15b{bottom:445.387554pt;}
.yb1{bottom:445.609820pt;}
.ye7{bottom:445.866220pt;}
.y5a{bottom:449.067281pt;}
.y16d{bottom:450.667279pt;}
.y111{bottom:452.276343pt;}
.y28{bottom:456.809802pt;}
.y90{bottom:457.104469pt;}
.y59{bottom:458.948866pt;}
.y143{bottom:462.403793pt;}
.y15a{bottom:465.914988pt;}
.yb0{bottom:466.409787pt;}
.y110{bottom:472.803777pt;}
.y27{bottom:477.609769pt;}
.y8f{bottom:477.904435pt;}
.ye6{bottom:478.931234pt;}
.y58{bottom:479.748832pt;}
.y142{bottom:483.203760pt;}
.y159{bottom:486.714955pt;}
.ye4{bottom:487.200000pt;}
.yaf{bottom:487.209754pt;}
.y10f{bottom:493.603744pt;}
.y26{bottom:498.137203pt;}
.y8e{bottom:498.431869pt;}
.y57{bottom:500.548799pt;}
.y141{bottom:504.003727pt;}
.y158{bottom:507.514921pt;}
.ye2{bottom:507.732480pt;}
.yae{bottom:507.737188pt;}
.y10e{bottom:514.131177pt;}
.y25{bottom:518.937170pt;}
.y8d{bottom:519.231836pt;}
.y56{bottom:521.076233pt;}
.y140{bottom:524.531161pt;}
.y157{bottom:528.042355pt;}
.yad{bottom:528.537154pt;}
.y10d{bottom:534.931144pt;}
.y24{bottom:539.737136pt;}
.y8c{bottom:540.031803pt;}
.y55{bottom:541.876200pt;}
.y13f{bottom:545.331127pt;}
.y156{bottom:548.842322pt;}
.yac{bottom:549.337121pt;}
.y10c{bottom:554.131113pt;}
.y23{bottom:560.267104pt;}
.y8b{bottom:560.559236pt;}
.y54{bottom:562.676166pt;}
.ydb{bottom:564.531097pt;}
.y10b{bottom:569.642289pt;}
.yab{bottom:569.867088pt;}
.yda{bottom:574.421214pt;}
.y22{bottom:578.131075pt;}
.y13e{bottom:579.731072pt;}
.y8a{bottom:581.359203pt;}
.y53{bottom:583.203600pt;}
.y21{bottom:587.999059pt;}
.y10a{bottom:590.169722pt;}
.yaa{bottom:590.667055pt;}
.yd9{bottom:595.221181pt;}
.y13d{bottom:598.931042pt;}
.y89{bottom:601.886637pt;}
.y52{bottom:604.003567pt;}
.ya9{bottom:608.531026pt;}
.y20{bottom:608.799026pt;}
.y109{bottom:610.969689pt;}
.ya5{bottom:613.600000pt;}
.y13c{bottom:614.399017pt;}
.yd8{bottom:615.748615pt;}
.ya8{bottom:618.131011pt;}
.y88{bottom:622.686604pt;}
.y51{bottom:624.803534pt;}
.y1f{bottom:626.398998pt;}
.y108{bottom:631.499656pt;}
.y13b{bottom:633.331520pt;}
.y1e{bottom:636.276049pt;}
.yd7{bottom:636.548582pt;}
.y87{bottom:643.486570pt;}
.y50{bottom:645.330967pt;}
.y13a{bottom:647.998963pt;}
.y107{bottom:652.299623pt;}
.ya3{bottom:655.200000pt;}
.y1d{bottom:657.076015pt;}
.y86{bottom:664.014004pt;}
.y139{bottom:665.330935pt;}
.y4f{bottom:666.130934pt;}
.y106{bottom:673.099590pt;}
.y1c{bottom:677.603449pt;}
.yd6{bottom:677.875982pt;}
.y138{bottom:682.666908pt;}
.y4e{bottom:683.730906pt;}
.y85{bottom:684.813971pt;}
.y4d{bottom:693.627024pt;}
.y1b{bottom:698.403416pt;}
.yd5{bottom:698.675949pt;}
.y137{bottom:699.730880pt;}
.y84{bottom:705.613938pt;}
.y4c{bottom:714.426990pt;}
.y136{bottom:717.066853pt;}
.y1a{bottom:719.203383pt;}
.y83{bottom:726.143905pt;}
.y135{bottom:734.398825pt;}
.y4b{bottom:735.226957pt;}
.y19{bottom:739.730816pt;}
.yd4{bottom:740.003349pt;}
.y82{bottom:746.943872pt;}
.y134{bottom:751.466798pt;}
.y4a{bottom:755.754391pt;}
.y18{bottom:760.530783pt;}
.yd3{bottom:760.803316pt;}
.y81{bottom:767.743838pt;}
.y133{bottom:768.798770pt;}
.y49{bottom:776.554358pt;}
.y17{bottom:778.398755pt;}
.yd2{bottom:781.330750pt;}
.y132{bottom:786.130742pt;}
.y16{bottom:787.198714pt;}
.y80{bottom:788.271272pt;}
.y48{bottom:797.354324pt;}
.yd1{bottom:802.130717pt;}
.y131{bottom:803.198715pt;}
.y15{bottom:804.531219pt;}
.y7f{bottom:809.071239pt;}
.y47{bottom:817.881758pt;}
.y14{bottom:819.731195pt;}
.y130{bottom:820.530687pt;}
.yd0{bottom:821.330686pt;}
.y13{bottom:828.798674pt;}
.y7e{bottom:829.598673pt;}
.ycc{bottom:832.800000pt;}
.ycf{bottom:837.330660pt;}
.y12f{bottom:837.866659pt;}
.y46{bottom:838.681725pt;}
.y12{bottom:845.866647pt;}
.y7d{bottom:847.466644pt;}
.y12e{bottom:855.198632pt;}
.y7c{bottom:857.866627pt;}
.y45{bottom:859.209159pt;}
.y11{bottom:861.598981pt;}
.y12d{bottom:872.266604pt;}
.y10{bottom:874.398961pt;}
.y7b{bottom:878.666594pt;}
.y44{bottom:880.009125pt;}
.ye1{bottom:887.999113pt;}
.y12c{bottom:889.598577pt;}
.yf{bottom:892.798932pt;}
.y79{bottom:894.931200pt;}
.y43{bottom:900.809092pt;}
.ye{bottom:905.866417pt;}
.y12b{bottom:906.930549pt;}
.y78{bottom:919.998528pt;}
.y42{bottom:921.339059pt;}
.y12a{bottom:923.998522pt;}
.yd{bottom:930.131445pt;}
.y75{bottom:936.268800pt;}
.y129{bottom:941.330494pt;}
.y41{bottom:942.139026pt;}
.yc{bottom:951.466478pt;}
.yc7{bottom:957.068800pt;}
.y128{bottom:958.665533pt;}
.y8{bottom:959.468800pt;}
.y40{bottom:962.936459pt;}
.y127{bottom:975.730439pt;}
.y72{bottom:977.600000pt;}
.y6{bottom:980.800000pt;}
.y3f{bottom:983.466426pt;}
.y126{bottom:993.066411pt;}
.y5{bottom:1003.730394pt;}
.y3e{bottom:1004.266393pt;}
.y125{bottom:1010.398383pt;}
.y3{bottom:1017.598905pt;}
.y3d{bottom:1025.066360pt;}
.y124{bottom:1027.731156pt;}
.y2{bottom:1034.931411pt;}
.y3c{bottom:1051.998317pt;}
.y1{bottom:1052.266316pt;}
.hc{height:16.597307pt;}
.h12{height:20.532480pt;}
.h15{height:20.534976pt;}
.h1d{height:20.800000pt;}
.h5{height:20.802496pt;}
.h8{height:21.329984pt;}
.h4{height:24.895960pt;}
.h1f{height:26.655957pt;}
.h18{height:33.194614pt;}
.h3{height:37.973273pt;}
.h2{height:38.079939pt;}
.h20{height:41.332480pt;}
.h13{height:41.334976pt;}
.hb{height:41.493267pt;}
.h16{height:41.597504pt;}
.h14{height:41.600000pt;}
.h7{height:42.132480pt;}
.h19{height:42.656182pt;}
.h22{height:45.119928pt;}
.h11{height:45.567927pt;}
.he{height:45.642594pt;}
.h6{height:45.695927pt;}
.h10{height:46.079926pt;}
.h21{height:48.715549pt;}
.hd{height:49.791920pt;}
.ha{height:50.375279pt;}
.h9{height:53.311915pt;}
.hf{height:55.679911pt;}
.h23{height:58.090574pt;}
.h1b{height:62.132480pt;}
.h1a{height:62.134976pt;}
.h1e{height:378.135040pt;}
.h17{height:385.867520pt;}
.h1c{height:458.664960pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w4{width:113.332480pt;}
.w3{width:113.600000pt;}
.w5{width:150.664960pt;}
.wa{width:231.467520pt;}
.w9{width:396.800000pt;}
.w2{width:425.067520pt;}
.w6{width:481.600000pt;}
.w7{width:630.400000pt;}
.w8{width:631.200000pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.199928pt;}
.x1a{left:9.067613pt;}
.x32{left:14.398732pt;}
.x19{left:18.934826pt;}
.x29{left:23.999885pt;}
.x26{left:30.134808pt;}
.x16{left:59.467295pt;}
.x2{left:70.932480pt;}
.x2f{left:79.998627pt;}
.x1{left:81.332403pt;}
.x1d{left:85.067331pt;}
.x2b{left:88.799248pt;}
.x33{left:90.932388pt;}
.x1b{left:100.267306pt;}
.x37{left:101.332371pt;}
.x7{left:109.330850pt;}
.x5{left:111.199028pt;}
.x12{left:128.532328pt;}
.x9{left:148.267763pt;}
.x31{left:151.198513pt;}
.x36{left:152.532303pt;}
.x38{left:153.867754pt;}
.xf{left:156.790282pt;}
.x27{left:171.731725pt;}
.x11{left:175.716426pt;}
.x20{left:204.799969pt;}
.x24{left:210.667290pt;}
.x18{left:221.599273pt;}
.x17{left:232.800000pt;}
.xd{left:237.867619pt;}
.x1c{left:241.867080pt;}
.xb{left:245.332474pt;}
.x35{left:263.199579pt;}
.x15{left:266.661293pt;}
.x23{left:268.531570pt;}
.xa{left:273.073096pt;}
.xc{left:278.131555pt;}
.x2a{left:300.803519pt;}
.x2d{left:307.734897pt;}
.xe{left:332.533001pt;}
.x2c{left:383.467386pt;}
.x8{left:396.799365pt;}
.x13{left:415.731335pt;}
.x10{left:420.531327pt;}
.x2e{left:478.132480pt;}
.x34{left:492.531212pt;}
.x4{left:496.000000pt;}
.x21{left:506.931189pt;}
.x1e{left:575.467079pt;}
.x1f{left:577.598466pt;}
.x6{left:609.600000pt;}
.x28{left:612.798409pt;}
.x25{left:614.666406pt;}
.x30{left:623.999002pt;}
.x14{left:663.731325pt;}
.x22{left:712.530860pt;}
}




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