
    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_ffee37568088e71687c65fa2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.056641;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_65fb7f761bfe6303a8c33ed1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.850586;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_edfe90f348c118d126fcf89e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_6cf36755159bbef18dfb86df.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.850586;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_7d80d6ce28d9b6e699216512.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c5beb456d23984055fedb881.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.793457;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_f1cdd47ece0b0846a2c7d49d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_8309f224aaff6a7d2f343e6f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.951172;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_a0b39bb75db95c41586e2f32.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.947754;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_36af207ffcbb284ba38f64bc.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.962402;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_51cc08ea17d730ba0693db48.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.128906;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_ab7961bc99a1f20b733347e5.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.128906;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_23ec1cd63aa8dcba2197e9e2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.761230;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_51126a92b3b24fc14b4a76a5.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.760254;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_1e1fec43619757ea53cf4e14.woff2')format("woff");}.fff{font-family:fff;line-height:0.973145;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_d48dd720d7c604ca1eadddc0.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.976074;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_a619dde3534cdad46b50b3c7.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.901855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_4909cbc926517f2984bf052b.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.128906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_add616475219704d653d3a9e.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.927734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_2332e9ab5311f66ee22938aa.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_ee395d065e8a7690d6572ab7.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_da0c602c086cf700591a6c83.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.922363;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_5bbe71a8922142d81e041ac5.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_f4ed349330f91612b79cd969.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.128906;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);}
.v2{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.120000px;}
.v1{vertical-align:18.000000px;}
.ls1e{letter-spacing:-1.710000px;}
.ls1f{letter-spacing:-1.188000px;}
.ls16{letter-spacing:-0.900000px;}
.ls9{letter-spacing:-0.720000px;}
.ls25{letter-spacing:-0.360000px;}
.ls1a{letter-spacing:-0.324000px;}
.ls1b{letter-spacing:-0.288000px;}
.ls15{letter-spacing:-0.198000px;}
.ls12{letter-spacing:-0.180000px;}
.ls11{letter-spacing:-0.097800px;}
.ls27{letter-spacing:-0.090000px;}
.ls26{letter-spacing:-0.054000px;}
.ls8{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.031680px;}
.lsa{letter-spacing:0.048960px;}
.ls19{letter-spacing:0.054000px;}
.ls21{letter-spacing:0.144000px;}
.ls22{letter-spacing:0.216000px;}
.ls1d{letter-spacing:0.252000px;}
.ls1c{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.302400px;}
.ls0{letter-spacing:0.324000px;}
.ls24{letter-spacing:0.342000px;}
.ls28{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.385800px;}
.ls14{letter-spacing:0.432000px;}
.ls3{letter-spacing:0.468000px;}
.ls13{letter-spacing:0.540000px;}
.ls5{letter-spacing:0.558000px;}
.lse{letter-spacing:0.630000px;}
.ls2{letter-spacing:0.670320px;}
.ls38{letter-spacing:0.684000px;}
.ls4{letter-spacing:0.738000px;}
.ls2d{letter-spacing:0.900000px;}
.ls34{letter-spacing:0.936000px;}
.ls2e{letter-spacing:1.008000px;}
.ls39{letter-spacing:1.044000px;}
.ls18{letter-spacing:1.080000px;}
.ls29{letter-spacing:1.116000px;}
.ls33{letter-spacing:1.134000px;}
.ls31{letter-spacing:1.152000px;}
.ls2b{letter-spacing:1.170000px;}
.ls17{letter-spacing:1.188000px;}
.ls20{letter-spacing:1.242000px;}
.ls23{letter-spacing:1.260000px;}
.ls6{letter-spacing:1.278000px;}
.lsf{letter-spacing:1.386000px;}
.ls2c{letter-spacing:1.404000px;}
.ls36{letter-spacing:1.458000px;}
.ls37{letter-spacing:1.512000px;}
.lsc{letter-spacing:1.530000px;}
.ls2f{letter-spacing:1.620000px;}
.ls30{letter-spacing:1.656000px;}
.ls32{letter-spacing:1.710000px;}
.ls2a{letter-spacing:1.728000px;}
.lsb{letter-spacing:1.800000px;}
.ls10{letter-spacing:4.266000px;}
.ls35{letter-spacing:5.706000px;}
.sc_{text-shadow:none;}
.sc4{text-shadow:-0.015em 0 rgb(0,128,0),0 0.015em rgb(0,128,0),0.015em 0 rgb(0,128,0),0 -0.015em  rgb(0,128,0);}
.sc3{text-shadow:-0.015em 0 rgb(0,176,80),0 0.015em rgb(0,176,80),0.015em 0 rgb(0,176,80),0 -0.015em  rgb(0,176,80);}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(0,128,128),0 0.015em rgb(0,128,128),0.015em 0 rgb(0,128,128),0 -0.015em  rgb(0,128,128);}
.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;}
.sc4{-webkit-text-stroke:0.015em rgb(0,128,0);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(0,176,80);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,128,128);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws23{word-spacing:-54.000000px;}
.ws5{word-spacing:-20.437920px;}
.ws3{word-spacing:-16.560000px;}
.wsd{word-spacing:-15.966720px;}
.ws4{word-spacing:-15.840000px;}
.ws29{word-spacing:-15.426000px;}
.ws2a{word-spacing:-15.336000px;}
.ws2f{word-spacing:-15.228000px;}
.wsa{word-spacing:-14.958600px;}
.ws7{word-spacing:-14.814000px;}
.ws31{word-spacing:-14.760000px;}
.ws2d{word-spacing:-14.670000px;}
.ws2c{word-spacing:-14.652000px;}
.ws28{word-spacing:-14.616000px;}
.ws8{word-spacing:-14.544000px;}
.ws30{word-spacing:-14.472000px;}
.ws27{word-spacing:-14.418000px;}
.ws12{word-spacing:-14.292000px;}
.ws1d{word-spacing:-14.274000px;}
.ws14{word-spacing:-14.202000px;}
.ws26{word-spacing:-14.184000px;}
.ws2e{word-spacing:-14.166000px;}
.ws2b{word-spacing:-14.148000px;}
.ws25{word-spacing:-14.130000px;}
.ws13{word-spacing:-14.094000px;}
.wsf{word-spacing:-13.752000px;}
.ws6{word-spacing:-13.716000px;}
.wse{word-spacing:-13.446000px;}
.ws24{word-spacing:-13.374000px;}
.ws1e{word-spacing:-13.356000px;}
.ws19{word-spacing:-13.302000px;}
.ws1a{word-spacing:-13.266000px;}
.ws1f{word-spacing:-13.230000px;}
.ws22{word-spacing:-13.158000px;}
.ws0{word-spacing:-13.147200px;}
.ws15{word-spacing:-13.068000px;}
.wsc{word-spacing:-13.049400px;}
.ws10{word-spacing:-13.014000px;}
.ws16{word-spacing:-12.834000px;}
.ws11{word-spacing:-12.816000px;}
.ws18{word-spacing:-12.726000px;}
.ws17{word-spacing:-12.690000px;}
.ws21{word-spacing:-12.114000px;}
.ws1c{word-spacing:-11.826000px;}
.ws1b{word-spacing:-11.304000px;}
.ws9{word-spacing:-9.720000px;}
.ws2{word-spacing:-9.576000px;}
.ws1{word-spacing:-8.856000px;}
.ws20{word-spacing:-8.316000px;}
.wsb{word-spacing:0.000000px;}
._13{margin-left:-2.963760px;}
._1{margin-left:-1.296000px;}
._0{width:1.169040px;}
._8{width:2.232960px;}
._d{width:3.756960px;}
._3{width:4.769280px;}
._4{width:5.941440px;}
._2{width:7.529760px;}
._b{width:8.644800px;}
._5{width:9.803520px;}
._6{width:10.929600px;}
._a{width:11.963520px;}
._c{width:14.102640px;}
._10{width:15.233760px;}
._12{width:17.012160px;}
._9{width:18.146880px;}
._7{width:19.353600px;}
._11{width:21.338640px;}
._21{width:22.401840px;}
._f{width:23.977680px;}
._e{width:25.204800px;}
._20{width:26.222880px;}
._1c{width:27.486000px;}
._1d{width:29.226000px;}
._23{width:30.312000px;}
._2e{width:31.392000px;}
._2f{width:33.102960px;}
._34{width:34.260000px;}
._2a{width:35.262000px;}
._24{width:36.774000px;}
._16{width:38.016000px;}
._17{width:39.042000px;}
._26{width:40.554000px;}
._37{width:41.678640px;}
._1b{width:42.876000px;}
._25{width:43.974960px;}
._27{width:45.214080px;}
._2d{width:47.449920px;}
._39{width:49.025760px;}
._28{width:50.112000px;}
._29{width:51.840000px;}
._1f{width:53.824800px;}
._36{width:54.894480px;}
._22{width:56.052000px;}
._35{width:57.928800px;}
._32{width:59.567760px;}
._33{width:60.623040px;}
._14{width:63.342000px;}
._15{width:64.692000px;}
._1a{width:66.384960px;}
._30{width:69.552000px;}
._3b{width:70.605600px;}
._31{width:72.876000px;}
._3c{width:74.039760px;}
._2c{width:75.384000px;}
._3d{width:77.603760px;}
._18{width:80.244000px;}
._19{width:81.432000px;}
._41{width:82.572720px;}
._2b{width:94.068000px;}
._3e{width:95.124480px;}
._1e{width:102.492000px;}
._3a{width:119.345760px;}
._38{width:125.064000px;}
._40{width:155.989920px;}
._3f{width:157.107840px;}
.fc7{color:transparent;}
.fc6{color:rgb(79,129,189);}
.fc5{color:rgb(31,73,125);}
.fc2{color:rgb(0,128,0);}
.fc9{color:rgb(127,127,127);}
.fc8{color:rgb(38,38,38);}
.fc4{color:rgb(0,176,80);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,128,128);}
.fsc{font-size:2.880000px;}
.fs4{font-size:18.000000px;}
.fs9{font-size:23.760000px;}
.fs7{font-size:30.240000px;}
.fs6{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fse{font-size:41.760000px;}
.fsf{font-size:45.360000px;}
.fsa{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fsd{font-size:74.880000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y4d{bottom:-18.390000px;}
.y0{bottom:0.000000px;}
.yf{bottom:1.260000px;}
.y14{bottom:1.440000px;}
.y3d{bottom:1.785000px;}
.y1c{bottom:1.980000px;}
.y28{bottom:2.160000px;}
.y54{bottom:2.340000px;}
.y4c{bottom:2.850000px;}
.yc7{bottom:3.045000px;}
.yeb{bottom:3.060000px;}
.yca{bottom:3.225000px;}
.y23{bottom:3.240000px;}
.yee{bottom:3.270000px;}
.y25{bottom:3.420000px;}
.yd6{bottom:4.140000px;}
.ydb{bottom:4.320000px;}
.y22{bottom:4.500000px;}
.y136{bottom:6.105000px;}
.y12e{bottom:6.120000px;}
.y139{bottom:6.285000px;}
.y133{bottom:6.300000px;}
.y45{bottom:6.480000px;}
.y43{bottom:6.660000px;}
.y17c{bottom:7.725000px;}
.y16e{bottom:7.740000px;}
.y3b{bottom:9.165000px;}
.y1f{bottom:9.180000px;}
.y17e{bottom:10.965000px;}
.y171{bottom:10.980000px;}
.y51{bottom:11.700000px;}
.y12{bottom:12.060000px;}
.y41{bottom:12.600000px;}
.y52{bottom:13.680000px;}
.y9{bottom:14.400000px;}
.y2{bottom:14.580000px;}
.yd{bottom:15.480000px;}
.y3f{bottom:16.230000px;}
.y53{bottom:16.560000px;}
.y1a{bottom:17.460000px;}
.y189{bottom:18.360000px;}
.y11a{bottom:18.540000px;}
.y100{bottom:19.080000px;}
.y119{bottom:19.260000px;}
.y4b{bottom:27.330000px;}
.y3a{bottom:30.585000px;}
.y1e{bottom:30.780000px;}
.y188{bottom:33.840000px;}
.y170{bottom:34.020000px;}
.y118{bottom:34.560000px;}
.y184{bottom:35.280000px;}
.y19{bottom:38.340000px;}
.y11{bottom:38.385000px;}
.y8{bottom:45.540000px;}
.y55{bottom:47.520000px;}
.yc{bottom:48.780000px;}
.y4a{bottom:50.550000px;}
.y39{bottom:52.005000px;}
.y3{bottom:58.320000px;}
.y50{bottom:63.720000px;}
.y18{bottom:69.840000px;}
.y49{bottom:73.590000px;}
.y38{bottom:73.605000px;}
.y1{bottom:74.520000px;}
.y7{bottom:76.680000px;}
.y17{bottom:90.720000px;}
.y37{bottom:95.025000px;}
.y48{bottom:97.350000px;}
.y5{bottom:107.640000px;}
.y6{bottom:107.820000px;}
.y46{bottom:113.040000px;}
.y36{bottom:116.445000px;}
.y147{bottom:117.180000px;}
.y16f{bottom:117.720000px;}
.yfe{bottom:117.900000px;}
.yd4{bottom:118.080000px;}
.y84{bottom:118.620000px;}
.y1cd{bottom:118.980000px;}
.yb3{bottom:119.340000px;}
.y16{bottom:122.220000px;}
.y1c0{bottom:122.580000px;}
.y1a8{bottom:122.760000px;}
.y44{bottom:132.480000px;}
.y182{bottom:132.660000px;}
.y146{bottom:135.540000px;}
.y35{bottom:138.045000px;}
.yfd{bottom:140.040000px;}
.yd3{bottom:140.400000px;}
.y83{bottom:140.760000px;}
.y1cc{bottom:141.300000px;}
.yb2{bottom:141.660000px;}
.y1bf{bottom:144.720000px;}
.y1a7{bottom:144.900000px;}
.y42{bottom:151.740000px;}
.y145{bottom:153.900000px;}
.y181{bottom:154.980000px;}
.y34{bottom:159.825000px;}
.yfc{bottom:162.360000px;}
.yd2{bottom:162.540000px;}
.y82{bottom:163.080000px;}
.y1cb{bottom:163.440000px;}
.yb1{bottom:163.800000px;}
.y1be{bottom:167.040000px;}
.y1a6{bottom:167.220000px;}
.y40{bottom:171.180000px;}
.y144{bottom:172.440000px;}
.y180{bottom:177.120000px;}
.y33{bottom:181.245000px;}
.yfb{bottom:184.680000px;}
.yd1{bottom:184.860000px;}
.y81{bottom:185.220000px;}
.y1ca{bottom:185.760000px;}
.yb0{bottom:186.120000px;}
.y1bd{bottom:189.360000px;}
.y1a5{bottom:189.540000px;}
.y143{bottom:190.800000px;}
.y3e{bottom:196.560000px;}
.y17f{bottom:199.440000px;}
.y32{bottom:202.665000px;}
.yfa{bottom:206.850000px;}
.yd0{bottom:207.210000px;}
.y80{bottom:207.570000px;}
.y1c9{bottom:208.110000px;}
.yaf{bottom:208.290000px;}
.y142{bottom:209.205000px;}
.y1bc{bottom:211.530000px;}
.y1a4{bottom:211.710000px;}
.y17d{bottom:211.725000px;}
.y3c{bottom:222.345000px;}
.y31{bottom:224.310000px;}
.y141{bottom:227.565000px;}
.yf9{bottom:229.170000px;}
.y29{bottom:229.185000px;}
.ycf{bottom:229.350000px;}
.y7f{bottom:229.890000px;}
.y1c8{bottom:230.250000px;}
.yae{bottom:230.610000px;}
.y1bb{bottom:233.850000px;}
.y1a3{bottom:234.030000px;}
.y17b{bottom:234.765000px;}
.y30{bottom:245.730000px;}
.y140{bottom:246.105000px;}
.yce{bottom:249.330000px;}
.yf8{bottom:251.310000px;}
.y7e{bottom:252.030000px;}
.y1c7{bottom:252.570000px;}
.yad{bottom:252.750000px;}
.y1ba{bottom:255.990000px;}
.y1a2{bottom:256.170000px;}
.ycd{bottom:261.225000px;}
.y13f{bottom:264.465000px;}
.y2f{bottom:267.150000px;}
.yf7{bottom:273.630000px;}
.y7d{bottom:274.350000px;}
.y1c6{bottom:274.710000px;}
.yac{bottom:275.070000px;}
.ycc{bottom:276.525000px;}
.y1b9{bottom:278.310000px;}
.y1a1{bottom:278.490000px;}
.y13e{bottom:282.825000px;}
.y2e{bottom:288.570000px;}
.ycb{bottom:291.825000px;}
.yf6{bottom:295.770000px;}
.y7c{bottom:296.490000px;}
.y1c5{bottom:297.030000px;}
.yab{bottom:297.390000px;}
.y1b8{bottom:300.450000px;}
.y1a0{bottom:300.630000px;}
.y13d{bottom:301.185000px;}
.yc9{bottom:307.125000px;}
.y2d{bottom:310.170000px;}
.yf5{bottom:318.090000px;}
.y7b{bottom:318.810000px;}
.y1c4{bottom:319.170000px;}
.yaa{bottom:319.530000px;}
.y13c{bottom:320.445000px;}
.yc8{bottom:322.605000px;}
.y1b7{bottom:322.770000px;}
.y19f{bottom:322.950000px;}
.y2c{bottom:331.590000px;}
.yc6{bottom:338.625000px;}
.yf4{bottom:340.230000px;}
.y7a{bottom:340.950000px;}
.y1c3{bottom:341.490000px;}
.ya9{bottom:341.850000px;}
.y1b6{bottom:344.910000px;}
.y19e{bottom:345.090000px;}
.y13b{bottom:351.030000px;}
.y2b{bottom:353.010000px;}
.yf3{bottom:362.550000px;}
.y79{bottom:363.270000px;}
.y1c2{bottom:363.630000px;}
.ya8{bottom:363.990000px;}
.yc5{bottom:366.150000px;}
.y1b5{bottom:367.230000px;}
.y19d{bottom:367.410000px;}
.y13a{bottom:373.350000px;}
.y2a{bottom:374.610000px;}
.y16d{bottom:380.010000px;}
.yf2{bottom:382.530000px;}
.y78{bottom:385.590000px;}
.y1c1{bottom:385.950000px;}
.ya7{bottom:386.310000px;}
.yc4{bottom:387.390000px;}
.y138{bottom:387.765000px;}
.y1b4{bottom:389.550000px;}
.y19c{bottom:389.730000px;}
.yf1{bottom:394.425000px;}
.y16c{bottom:402.150000px;}
.y137{bottom:406.305000px;}
.y77{bottom:407.730000px;}
.yc3{bottom:408.270000px;}
.ya6{bottom:408.450000px;}
.yf0{bottom:409.725000px;}
.y19b{bottom:410.790000px;}
.y1b3{bottom:411.690000px;}
.y16b{bottom:424.470000px;}
.y135{bottom:424.665000px;}
.yef{bottom:425.025000px;}
.y76{bottom:430.050000px;}
.yc2{bottom:430.410000px;}
.ya5{bottom:430.770000px;}
.y19a{bottom:431.670000px;}
.y1b2{bottom:434.010000px;}
.yed{bottom:440.325000px;}
.y134{bottom:443.055000px;}
.y16a{bottom:446.655000px;}
.y17a{bottom:448.095000px;}
.y75{bottom:452.235000px;}
.yc1{bottom:452.775000px;}
.ya4{bottom:452.955000px;}
.y199{bottom:454.035000px;}
.yec{bottom:455.835000px;}
.y1b1{bottom:456.195000px;}
.y132{bottom:461.415000px;}
.y169{bottom:468.975000px;}
.y179{bottom:470.415000px;}
.yea{bottom:471.855000px;}
.y74{bottom:474.555000px;}
.y1cf{bottom:474.735000px;}
.yc0{bottom:474.915000px;}
.ya3{bottom:475.275000px;}
.y198{bottom:476.175000px;}
.y1b0{bottom:478.515000px;}
.y131{bottom:479.955000px;}
.y168{bottom:491.115000px;}
.y178{bottom:492.735000px;}
.y73{bottom:496.695000px;}
.ybf{bottom:497.235000px;}
.ya2{bottom:497.595000px;}
.y1ce{bottom:497.775000px;}
.y130{bottom:498.315000px;}
.y197{bottom:498.495000px;}
.y1af{bottom:499.215000px;}
.ye9{bottom:499.395000px;}
.y1ae{bottom:511.455000px;}
.y167{bottom:513.435000px;}
.y177{bottom:514.875000px;}
.y12f{bottom:516.675000px;}
.y72{bottom:519.015000px;}
.ybe{bottom:519.375000px;}
.ya1{bottom:519.735000px;}
.ye8{bottom:520.095000px;}
.y196{bottom:520.635000px;}
.y1ad{bottom:526.935000px;}
.y166{bottom:535.755000px;}
.y12d{bottom:535.935000px;}
.y176{bottom:537.195000px;}
.y71{bottom:541.155000px;}
.ybd{bottom:541.695000px;}
.ya0{bottom:542.055000px;}
.y1ac{bottom:542.235000px;}
.y195{bottom:542.955000px;}
.y1ab{bottom:557.535000px;}
.y165{bottom:557.895000px;}
.y175{bottom:559.335000px;}
.y70{bottom:563.475000px;}
.ybc{bottom:564.015000px;}
.y9f{bottom:564.195000px;}
.y194{bottom:565.095000px;}
.y12c{bottom:566.535000px;}
.y1aa{bottom:572.835000px;}
.y164{bottom:580.215000px;}
.y174{bottom:581.655000px;}
.y6f{bottom:585.795000px;}
.ybb{bottom:586.155000px;}
.y9e{bottom:586.515000px;}
.ye7{bottom:587.235000px;}
.y193{bottom:587.415000px;}
.y12b{bottom:588.675000px;}
.y1a9{bottom:589.035000px;}
.y173{bottom:593.895000px;}
.y163{bottom:602.355000px;}
.y6e{bottom:607.935000px;}
.yba{bottom:608.475000px;}
.y9d{bottom:608.655000px;}
.y192{bottom:609.735000px;}
.ye6{bottom:610.095000px;}
.y12a{bottom:610.995000px;}
.y116{bottom:611.535000px;}
.y27{bottom:616.035000px;}
.y172{bottom:616.935000px;}
.y162{bottom:622.335000px;}
.y26{bottom:626.115000px;}
.y6d{bottom:630.255000px;}
.yb9{bottom:630.615000px;}
.y9c{bottom:630.975000px;}
.y191{bottom:631.875000px;}
.ye5{bottom:633.135000px;}
.y129{bottom:633.315000px;}
.y115{bottom:633.675000px;}
.y161{bottom:634.215000px;}
.y24{bottom:641.595000px;}
.y160{bottom:649.515000px;}
.y6c{bottom:652.395000px;}
.yb8{bottom:652.935000px;}
.y9b{bottom:653.295000px;}
.y190{bottom:654.195000px;}
.y128{bottom:655.455000px;}
.y114{bottom:655.995000px;}
.ye4{bottom:656.175000px;}
.y21{bottom:658.515000px;}
.y15f{bottom:664.815000px;}
.y18f{bottom:668.595000px;}
.y6b{bottom:674.715000px;}
.yb7{bottom:675.075000px;}
.y9a{bottom:675.435000px;}
.y20{bottom:676.905000px;}
.y127{bottom:677.805000px;}
.y113{bottom:678.345000px;}
.ye3{bottom:679.245000px;}
.y15e{bottom:680.325000px;}
.y1d{bottom:683.745000px;}
.y18e{bottom:683.925000px;}
.y15d{bottom:695.625000px;}
.y6a{bottom:696.885000px;}
.yb6{bottom:697.425000px;}
.y99{bottom:697.785000px;}
.y18d{bottom:699.405000px;}
.y126{bottom:699.945000px;}
.y112{bottom:700.485000px;}
.ye2{bottom:702.285000px;}
.y15c{bottom:710.925000px;}
.y18c{bottom:714.705000px;}
.y69{bottom:719.205000px;}
.yb5{bottom:719.745000px;}
.y98{bottom:719.925000px;}
.y125{bottom:722.265000px;}
.y111{bottom:722.805000px;}
.ye1{bottom:725.325000px;}
.y1b{bottom:726.765000px;}
.y15b{bottom:726.945000px;}
.y18b{bottom:730.005000px;}
.y15{bottom:735.045000px;}
.y68{bottom:741.525000px;}
.yb4{bottom:741.885000px;}
.y97{bottom:742.245000px;}
.y124{bottom:744.405000px;}
.y110{bottom:744.945000px;}
.ye0{bottom:748.185000px;}
.y15a{bottom:754.665000px;}
.y18a{bottom:760.605000px;}
.y67{bottom:763.665000px;}
.y96{bottom:764.385000px;}
.y123{bottom:766.725000px;}
.y10f{bottom:767.265000px;}
.ydf{bottom:771.225000px;}
.y159{bottom:776.805000px;}
.y66{bottom:785.985000px;}
.y95{bottom:786.705000px;}
.y122{bottom:789.045000px;}
.y10e{bottom:789.405000px;}
.y187{bottom:791.385000px;}
.yde{bottom:794.265000px;}
.y158{bottom:799.125000px;}
.y65{bottom:808.125000px;}
.y94{bottom:809.025000px;}
.y121{bottom:811.185000px;}
.y10d{bottom:811.725000px;}
.ydd{bottom:816.405000px;}
.y157{bottom:821.265000px;}
.y64{bottom:830.445000px;}
.ydc{bottom:830.805000px;}
.y93{bottom:831.165000px;}
.y120{bottom:833.505000px;}
.y10c{bottom:834.045000px;}
.y183{bottom:838.185000px;}
.y156{bottom:843.585000px;}
.yda{bottom:847.185000px;}
.y63{bottom:852.585000px;}
.y92{bottom:853.485000px;}
.y186{bottom:854.205000px;}
.y11f{bottom:855.645000px;}
.y10b{bottom:856.185000px;}
.yd9{bottom:863.745000px;}
.y155{bottom:865.725000px;}
.y13{bottom:866.085000px;}
.y185{bottom:870.225000px;}
.y62{bottom:874.905000px;}
.y10{bottom:875.085000px;}
.y91{bottom:875.625000px;}
.y11e{bottom:877.965000px;}
.y10a{bottom:878.505000px;}
.yd8{bottom:880.125000px;}
.y154{bottom:888.045000px;}
.yd7{bottom:896.505000px;}
.y61{bottom:897.225000px;}
.y90{bottom:897.945000px;}
.y11d{bottom:900.105000px;}
.y109{bottom:900.645000px;}
.y153{bottom:910.365000px;}
.yd5{bottom:913.830000px;}
.y60{bottom:919.410000px;}
.y8f{bottom:920.130000px;}
.y108{bottom:923.010000px;}
.y11c{bottom:923.730000px;}
.ye{bottom:927.510000px;}
.yb{bottom:932.550000px;}
.y11b{bottom:939.390000px;}
.y5f{bottom:941.730000px;}
.y8e{bottom:942.450000px;}
.y107{bottom:942.990000px;}
.y106{bottom:954.690000px;}
.y152{bottom:954.870000px;}
.y5e{bottom:963.870000px;}
.y8d{bottom:964.590000px;}
.y105{bottom:970.170000px;}
.y151{bottom:977.010000px;}
.y104{bottom:985.470000px;}
.y5d{bottom:986.190000px;}
.y8c{bottom:986.910000px;}
.y150{bottom:991.590000px;}
.y103{bottom:1000.770000px;}
.y14f{bottom:1006.890000px;}
.y5c{bottom:1008.330000px;}
.y8b{bottom:1009.230000px;}
.ya{bottom:1013.550000px;}
.y102{bottom:1016.070000px;}
.y117{bottom:1016.790000px;}
.y14e{bottom:1022.190000px;}
.y4{bottom:1030.290000px;}
.y5b{bottom:1030.650000px;}
.y8a{bottom:1031.370000px;}
.yff{bottom:1032.270000px;}
.y14d{bottom:1037.490000px;}
.y47{bottom:1043.280000px;}
.y101{bottom:1048.290000px;}
.y5a{bottom:1052.790000px;}
.y14c{bottom:1052.970000px;}
.y89{bottom:1053.690000px;}
.y14b{bottom:1068.270000px;}
.y59{bottom:1075.110000px;}
.y88{bottom:1075.830000px;}
.y14a{bottom:1083.570000px;}
.y58{bottom:1097.430000px;}
.y87{bottom:1098.150000px;}
.y149{bottom:1098.870000px;}
.y148{bottom:1115.070000px;}
.y57{bottom:1119.570000px;}
.y86{bottom:1120.290000px;}
.y85{bottom:1142.610000px;}
.y56{bottom:1142.790000px;}
.y4f{bottom:1161.000000px;}
.y4e{bottom:1185.840000px;}
.h2c{height:1.999688px;}
.ha{height:5.025000px;}
.h21{height:6.825000px;}
.h16{height:6.840000px;}
.h12{height:8.280000px;}
.he{height:9.000000px;}
.h1e{height:10.065000px;}
.hb{height:12.190430px;}
.h37{height:15.285000px;}
.h4b{height:15.300000px;}
.h56{height:15.330000px;}
.h1d{height:15.465000px;}
.h4a{height:15.480000px;}
.h3e{height:15.501000px;}
.h4c{height:15.510000px;}
.h39{height:16.365000px;}
.h3b{height:16.380000px;}
.h3a{height:16.402500px;}
.h22{height:16.543828px;}
.h3c{height:16.560000px;}
.h1b{height:16.905000px;}
.h32{height:17.640000px;}
.h17{height:17.820000px;}
.h43{height:18.345000px;}
.h49{height:18.358500px;}
.h47{height:18.360000px;}
.h45{height:18.381000px;}
.h18{height:18.390000px;}
.h46{height:18.396000px;}
.h44{height:18.525000px;}
.h48{height:18.540000px;}
.h29{height:19.258500px;}
.h2a{height:19.438500px;}
.h27{height:19.440000px;}
.h13{height:21.055781px;}
.hf{height:22.975313px;}
.h50{height:23.025000px;}
.h11{height:23.980781px;}
.h25{height:25.380000px;}
.h23{height:25.776000px;}
.h33{height:27.898500px;}
.h2{height:28.798500px;}
.h24{height:29.145586px;}
.h57{height:30.585000px;}
.h55{height:30.600000px;}
.h41{height:30.765000px;}
.h54{height:30.780000px;}
.h3f{height:31.305000px;}
.h1f{height:32.835938px;}
.h35{height:34.684453px;}
.h38{height:38.089687px;}
.h28{height:40.472227px;}
.h42{height:40.842773px;}
.h3d{height:41.373281px;}
.h26{height:41.493516px;}
.h14{height:43.020000px;}
.h36{height:44.000156px;}
.hd{height:44.860781px;}
.h1a{height:45.695391px;}
.h4e{height:46.078500px;}
.h53{height:46.080000px;}
.h40{height:46.785000px;}
.h52{height:47.520000px;}
.h15{height:49.253906px;}
.h19{height:50.100469px;}
.h3{height:50.597578px;}
.hc{height:52.402500px;}
.h2f{height:54.000000px;}
.h6{height:54.457031px;}
.h1c{height:54.507656px;}
.h31{height:56.084062px;}
.h30{height:56.160000px;}
.h8{height:57.051211px;}
.h2e{height:63.180000px;}
.h9{height:64.853086px;}
.h7{height:66.585000px;}
.h4{height:70.664062px;}
.h34{height:72.562500px;}
.h2b{height:83.518500px;}
.h2d{height:114.660000px;}
.h5{height:124.590000px;}
.h10{height:131.040000px;}
.h4f{height:194.430000px;}
.h51{height:203.385000px;}
.h4d{height:206.130000px;}
.h20{height:386.835000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1c{width:41.925000px;}
.w26{width:44.121000px;}
.w27{width:47.145000px;}
.w28{width:47.325000px;}
.w22{width:50.400000px;}
.w1f{width:51.645000px;}
.w10{width:52.189500px;}
.w48{width:52.545000px;}
.w49{width:56.865000px;}
.w2d{width:58.665000px;}
.w46{width:59.025000px;}
.w23{width:60.825000px;}
.w21{width:61.380000px;}
.w47{width:63.741000px;}
.w16{width:64.461000px;}
.w1b{width:66.045000px;}
.w19{width:67.485000px;}
.w45{width:69.156000px;}
.w3b{width:70.189500px;}
.w25{width:77.385000px;}
.w1d{width:78.829500px;}
.w18{width:80.625000px;}
.w1a{width:81.021000px;}
.w20{width:81.741000px;}
.w17{width:84.405000px;}
.w4a{width:87.825000px;}
.w4c{width:91.065000px;}
.w15{width:94.485000px;}
.w37{width:96.681000px;}
.w2c{width:97.365000px;}
.w32{width:97.905000px;}
.w38{width:101.145000px;}
.w4{width:101.329500px;}
.w44{width:108.525000px;}
.w3c{width:114.861000px;}
.w43{width:116.301000px;}
.w36{width:119.325000px;}
.w31{width:122.241000px;}
.w2b{width:123.681000px;}
.w2f{width:127.429500px;}
.w42{width:128.196000px;}
.w29{width:128.509500px;}
.w34{width:128.869500px;}
.w3d{width:138.960000px;}
.w4b{width:145.101000px;}
.w9{width:154.429500px;}
.w14{width:162.000000px;}
.w13{width:162.019500px;}
.w3a{width:197.835000px;}
.w35{width:229.020000px;}
.w4d{width:236.175000px;}
.w8{width:243.915000px;}
.w1e{width:245.175000px;}
.w24{width:263.175000px;}
.w3{width:265.155000px;}
.w2a{width:266.820000px;}
.w30{width:268.800000px;}
.w11{width:280.320000px;}
.w40{width:322.039500px;}
.w3f{width:324.015000px;}
.w3e{width:324.019500px;}
.wc{width:325.815000px;}
.wf{width:333.555000px;}
.we{width:338.284500px;}
.w12{width:339.315000px;}
.wb{width:349.264500px;}
.w41{width:353.055000px;}
.w2{width:414.424500px;}
.w7{width:431.164500px;}
.w39{width:477.244500px;}
.w33{width:518.490000px;}
.w2e{width:519.030000px;}
.wa{width:520.650000px;}
.wd{width:573.660000px;}
.w5{width:575.730000px;}
.w6{width:675.090000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3e{left:2.520000px;}
.x2{left:3.769500px;}
.x2b{left:4.860000px;}
.x15{left:6.465000px;}
.x8{left:7.725000px;}
.x28{left:9.345000px;}
.x47{left:10.440000px;}
.x33{left:11.505000px;}
.x2e{left:13.500000px;}
.x42{left:15.105000px;}
.x40{left:16.560000px;}
.x13{left:17.809500px;}
.x38{left:19.065000px;}
.x20{left:20.340000px;}
.x39{left:21.945000px;}
.x35{left:23.025000px;}
.x22{left:24.840000px;}
.x30{left:25.905000px;}
.x2d{left:26.985000px;}
.x24{left:28.425000px;}
.x2f{left:30.045000px;}
.x41{left:31.485000px;}
.x17{left:32.565000px;}
.x26{left:33.840000px;}
.x23{left:35.640000px;}
.x25{left:36.900000px;}
.xb{left:38.370000px;}
.x5b{left:40.305000px;}
.x48{left:41.940000px;}
.x4f{left:43.560000px;}
.x49{left:44.820000px;}
.x4e{left:46.980000px;}
.x1b{left:49.500000px;}
.x55{left:50.565000px;}
.x53{left:53.625000px;}
.x60{left:55.425000px;}
.x54{left:56.520000px;}
.x56{left:59.400000px;}
.x62{left:62.625000px;}
.x1c{left:73.620000px;}
.x1d{left:77.580000px;}
.x50{left:81.570000px;}
.x63{left:101.010000px;}
.x1{left:106.786500px;}
.x5{left:108.036000px;}
.x32{left:111.450000px;}
.x12{left:122.025000px;}
.x18{left:143.445000px;}
.x59{left:160.050000px;}
.x14{left:164.385000px;}
.x4{left:166.890000px;}
.x51{left:178.245000px;}
.x31{left:186.885000px;}
.x6{left:209.385000px;}
.xc{left:221.115000px;}
.x4a{left:235.485000px;}
.x43{left:236.565000px;}
.x34{left:238.545000px;}
.x9{left:263.385000px;}
.x1a{left:270.075000px;}
.xd{left:273.705000px;}
.x52{left:293.115000px;}
.xe{left:303.405000px;}
.x36{left:320.295000px;}
.x57{left:324.028500px;}
.xf{left:341.025000px;}
.x37{left:381.675000px;}
.x58{left:430.095000px;}
.x16{left:444.720000px;}
.x11{left:450.480000px;}
.xa{left:458.220000px;}
.x19{left:462.705000px;}
.x4b{left:465.960000px;}
.x5d{left:499.260000px;}
.x44{left:503.400000px;}
.x3{left:521.220000px;}
.x3a{left:523.560000px;}
.x27{left:530.220000px;}
.x7{left:540.120000px;}
.x5f{left:550.560000px;}
.x1e{left:557.220000px;}
.x5a{left:558.300000px;}
.x10{left:573.990000px;}
.x4c{left:585.300000px;}
.x29{left:597.720000px;}
.x3b{left:600.960000px;}
.x1f{left:621.690000px;}
.x45{left:627.090000px;}
.x3c{left:645.090000px;}
.x5c{left:674.610000px;}
.x2a{left:678.750000px;}
.x4d{left:681.990000px;}
.x3d{left:692.250000px;}
.x61{left:695.670000px;}
.x21{left:706.110000px;}
.x46{left:724.470000px;}
.x5e{left:731.490000px;}
.x3f{left:739.590000px;}
.x2c{left:744.810000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:13.440000pt;}
.v1{vertical-align:16.000000pt;}
.ls1e{letter-spacing:-1.520000pt;}
.ls1f{letter-spacing:-1.056000pt;}
.ls16{letter-spacing:-0.800000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls25{letter-spacing:-0.320000pt;}
.ls1a{letter-spacing:-0.288000pt;}
.ls1b{letter-spacing:-0.256000pt;}
.ls15{letter-spacing:-0.176000pt;}
.ls12{letter-spacing:-0.160000pt;}
.ls11{letter-spacing:-0.086933pt;}
.ls27{letter-spacing:-0.080000pt;}
.ls26{letter-spacing:-0.048000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.028160pt;}
.lsa{letter-spacing:0.043520pt;}
.ls19{letter-spacing:0.048000pt;}
.ls21{letter-spacing:0.128000pt;}
.ls22{letter-spacing:0.192000pt;}
.ls1d{letter-spacing:0.224000pt;}
.ls1c{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.268800pt;}
.ls0{letter-spacing:0.288000pt;}
.ls24{letter-spacing:0.304000pt;}
.ls28{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.342933pt;}
.ls14{letter-spacing:0.384000pt;}
.ls3{letter-spacing:0.416000pt;}
.ls13{letter-spacing:0.480000pt;}
.ls5{letter-spacing:0.496000pt;}
.lse{letter-spacing:0.560000pt;}
.ls2{letter-spacing:0.595840pt;}
.ls38{letter-spacing:0.608000pt;}
.ls4{letter-spacing:0.656000pt;}
.ls2d{letter-spacing:0.800000pt;}
.ls34{letter-spacing:0.832000pt;}
.ls2e{letter-spacing:0.896000pt;}
.ls39{letter-spacing:0.928000pt;}
.ls18{letter-spacing:0.960000pt;}
.ls29{letter-spacing:0.992000pt;}
.ls33{letter-spacing:1.008000pt;}
.ls31{letter-spacing:1.024000pt;}
.ls2b{letter-spacing:1.040000pt;}
.ls17{letter-spacing:1.056000pt;}
.ls20{letter-spacing:1.104000pt;}
.ls23{letter-spacing:1.120000pt;}
.ls6{letter-spacing:1.136000pt;}
.lsf{letter-spacing:1.232000pt;}
.ls2c{letter-spacing:1.248000pt;}
.ls36{letter-spacing:1.296000pt;}
.ls37{letter-spacing:1.344000pt;}
.lsc{letter-spacing:1.360000pt;}
.ls2f{letter-spacing:1.440000pt;}
.ls30{letter-spacing:1.472000pt;}
.ls32{letter-spacing:1.520000pt;}
.ls2a{letter-spacing:1.536000pt;}
.lsb{letter-spacing:1.600000pt;}
.ls10{letter-spacing:3.792000pt;}
.ls35{letter-spacing:5.072000pt;}
.ws23{word-spacing:-48.000000pt;}
.ws5{word-spacing:-18.167040pt;}
.ws3{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.192640pt;}
.ws4{word-spacing:-14.080000pt;}
.ws29{word-spacing:-13.712000pt;}
.ws2a{word-spacing:-13.632000pt;}
.ws2f{word-spacing:-13.536000pt;}
.wsa{word-spacing:-13.296533pt;}
.ws7{word-spacing:-13.168000pt;}
.ws31{word-spacing:-13.120000pt;}
.ws2d{word-spacing:-13.040000pt;}
.ws2c{word-spacing:-13.024000pt;}
.ws28{word-spacing:-12.992000pt;}
.ws8{word-spacing:-12.928000pt;}
.ws30{word-spacing:-12.864000pt;}
.ws27{word-spacing:-12.816000pt;}
.ws12{word-spacing:-12.704000pt;}
.ws1d{word-spacing:-12.688000pt;}
.ws14{word-spacing:-12.624000pt;}
.ws26{word-spacing:-12.608000pt;}
.ws2e{word-spacing:-12.592000pt;}
.ws2b{word-spacing:-12.576000pt;}
.ws25{word-spacing:-12.560000pt;}
.ws13{word-spacing:-12.528000pt;}
.wsf{word-spacing:-12.224000pt;}
.ws6{word-spacing:-12.192000pt;}
.wse{word-spacing:-11.952000pt;}
.ws24{word-spacing:-11.888000pt;}
.ws1e{word-spacing:-11.872000pt;}
.ws19{word-spacing:-11.824000pt;}
.ws1a{word-spacing:-11.792000pt;}
.ws1f{word-spacing:-11.760000pt;}
.ws22{word-spacing:-11.696000pt;}
.ws0{word-spacing:-11.686400pt;}
.ws15{word-spacing:-11.616000pt;}
.wsc{word-spacing:-11.599467pt;}
.ws10{word-spacing:-11.568000pt;}
.ws16{word-spacing:-11.408000pt;}
.ws11{word-spacing:-11.392000pt;}
.ws18{word-spacing:-11.312000pt;}
.ws17{word-spacing:-11.280000pt;}
.ws21{word-spacing:-10.768000pt;}
.ws1c{word-spacing:-10.512000pt;}
.ws1b{word-spacing:-10.048000pt;}
.ws9{word-spacing:-8.640000pt;}
.ws2{word-spacing:-8.512000pt;}
.ws1{word-spacing:-7.872000pt;}
.ws20{word-spacing:-7.392000pt;}
.wsb{word-spacing:0.000000pt;}
._13{margin-left:-2.634453pt;}
._1{margin-left:-1.152000pt;}
._0{width:1.039147pt;}
._8{width:1.984853pt;}
._d{width:3.339520pt;}
._3{width:4.239360pt;}
._4{width:5.281280pt;}
._2{width:6.693120pt;}
._b{width:7.684267pt;}
._5{width:8.714240pt;}
._6{width:9.715200pt;}
._a{width:10.634240pt;}
._c{width:12.535680pt;}
._10{width:13.541120pt;}
._12{width:15.121920pt;}
._9{width:16.130560pt;}
._7{width:17.203200pt;}
._11{width:18.967680pt;}
._21{width:19.912747pt;}
._f{width:21.313493pt;}
._e{width:22.404267pt;}
._20{width:23.309227pt;}
._1c{width:24.432000pt;}
._1d{width:25.978667pt;}
._23{width:26.944000pt;}
._2e{width:27.904000pt;}
._2f{width:29.424853pt;}
._34{width:30.453333pt;}
._2a{width:31.344000pt;}
._24{width:32.688000pt;}
._16{width:33.792000pt;}
._17{width:34.704000pt;}
._26{width:36.048000pt;}
._37{width:37.047680pt;}
._1b{width:38.112000pt;}
._25{width:39.088853pt;}
._27{width:40.190293pt;}
._2d{width:42.177707pt;}
._39{width:43.578453pt;}
._28{width:44.544000pt;}
._29{width:46.080000pt;}
._1f{width:47.844267pt;}
._36{width:48.795093pt;}
._22{width:49.824000pt;}
._35{width:51.492267pt;}
._32{width:52.949120pt;}
._33{width:53.887147pt;}
._14{width:56.304000pt;}
._15{width:57.504000pt;}
._1a{width:59.008853pt;}
._30{width:61.824000pt;}
._3b{width:62.760533pt;}
._31{width:64.778667pt;}
._3c{width:65.813120pt;}
._2c{width:67.008000pt;}
._3d{width:68.981120pt;}
._18{width:71.328000pt;}
._19{width:72.384000pt;}
._41{width:73.397973pt;}
._2b{width:83.616000pt;}
._3e{width:84.555093pt;}
._1e{width:91.104000pt;}
._3a{width:106.085120pt;}
._38{width:111.168000pt;}
._40{width:138.657707pt;}
._3f{width:139.651413pt;}
.fsc{font-size:2.560000pt;}
.fs4{font-size:16.000000pt;}
.fs9{font-size:21.120000pt;}
.fs7{font-size:26.880000pt;}
.fs6{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fse{font-size:37.120000pt;}
.fsf{font-size:40.320000pt;}
.fsa{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fsd{font-size:66.560000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y4d{bottom:-16.346667pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:1.120000pt;}
.y14{bottom:1.280000pt;}
.y3d{bottom:1.586667pt;}
.y1c{bottom:1.760000pt;}
.y28{bottom:1.920000pt;}
.y54{bottom:2.080000pt;}
.y4c{bottom:2.533333pt;}
.yc7{bottom:2.706667pt;}
.yeb{bottom:2.720000pt;}
.yca{bottom:2.866667pt;}
.y23{bottom:2.880000pt;}
.yee{bottom:2.906667pt;}
.y25{bottom:3.040000pt;}
.yd6{bottom:3.680000pt;}
.ydb{bottom:3.840000pt;}
.y22{bottom:4.000000pt;}
.y136{bottom:5.426667pt;}
.y12e{bottom:5.440000pt;}
.y139{bottom:5.586667pt;}
.y133{bottom:5.600000pt;}
.y45{bottom:5.760000pt;}
.y43{bottom:5.920000pt;}
.y17c{bottom:6.866667pt;}
.y16e{bottom:6.880000pt;}
.y3b{bottom:8.146667pt;}
.y1f{bottom:8.160000pt;}
.y17e{bottom:9.746667pt;}
.y171{bottom:9.760000pt;}
.y51{bottom:10.400000pt;}
.y12{bottom:10.720000pt;}
.y41{bottom:11.200000pt;}
.y52{bottom:12.160000pt;}
.y9{bottom:12.800000pt;}
.y2{bottom:12.960000pt;}
.yd{bottom:13.760000pt;}
.y3f{bottom:14.426667pt;}
.y53{bottom:14.720000pt;}
.y1a{bottom:15.520000pt;}
.y189{bottom:16.320000pt;}
.y11a{bottom:16.480000pt;}
.y100{bottom:16.960000pt;}
.y119{bottom:17.120000pt;}
.y4b{bottom:24.293333pt;}
.y3a{bottom:27.186667pt;}
.y1e{bottom:27.360000pt;}
.y188{bottom:30.080000pt;}
.y170{bottom:30.240000pt;}
.y118{bottom:30.720000pt;}
.y184{bottom:31.360000pt;}
.y19{bottom:34.080000pt;}
.y11{bottom:34.120000pt;}
.y8{bottom:40.480000pt;}
.y55{bottom:42.240000pt;}
.yc{bottom:43.360000pt;}
.y4a{bottom:44.933333pt;}
.y39{bottom:46.226667pt;}
.y3{bottom:51.840000pt;}
.y50{bottom:56.640000pt;}
.y18{bottom:62.080000pt;}
.y49{bottom:65.413333pt;}
.y38{bottom:65.426667pt;}
.y1{bottom:66.240000pt;}
.y7{bottom:68.160000pt;}
.y17{bottom:80.640000pt;}
.y37{bottom:84.466667pt;}
.y48{bottom:86.533333pt;}
.y5{bottom:95.680000pt;}
.y6{bottom:95.840000pt;}
.y46{bottom:100.480000pt;}
.y36{bottom:103.506667pt;}
.y147{bottom:104.160000pt;}
.y16f{bottom:104.640000pt;}
.yfe{bottom:104.800000pt;}
.yd4{bottom:104.960000pt;}
.y84{bottom:105.440000pt;}
.y1cd{bottom:105.760000pt;}
.yb3{bottom:106.080000pt;}
.y16{bottom:108.640000pt;}
.y1c0{bottom:108.960000pt;}
.y1a8{bottom:109.120000pt;}
.y44{bottom:117.760000pt;}
.y182{bottom:117.920000pt;}
.y146{bottom:120.480000pt;}
.y35{bottom:122.706667pt;}
.yfd{bottom:124.480000pt;}
.yd3{bottom:124.800000pt;}
.y83{bottom:125.120000pt;}
.y1cc{bottom:125.600000pt;}
.yb2{bottom:125.920000pt;}
.y1bf{bottom:128.640000pt;}
.y1a7{bottom:128.800000pt;}
.y42{bottom:134.880000pt;}
.y145{bottom:136.800000pt;}
.y181{bottom:137.760000pt;}
.y34{bottom:142.066667pt;}
.yfc{bottom:144.320000pt;}
.yd2{bottom:144.480000pt;}
.y82{bottom:144.960000pt;}
.y1cb{bottom:145.280000pt;}
.yb1{bottom:145.600000pt;}
.y1be{bottom:148.480000pt;}
.y1a6{bottom:148.640000pt;}
.y40{bottom:152.160000pt;}
.y144{bottom:153.280000pt;}
.y180{bottom:157.440000pt;}
.y33{bottom:161.106667pt;}
.yfb{bottom:164.160000pt;}
.yd1{bottom:164.320000pt;}
.y81{bottom:164.640000pt;}
.y1ca{bottom:165.120000pt;}
.yb0{bottom:165.440000pt;}
.y1bd{bottom:168.320000pt;}
.y1a5{bottom:168.480000pt;}
.y143{bottom:169.600000pt;}
.y3e{bottom:174.720000pt;}
.y17f{bottom:177.280000pt;}
.y32{bottom:180.146667pt;}
.yfa{bottom:183.866667pt;}
.yd0{bottom:184.186667pt;}
.y80{bottom:184.506667pt;}
.y1c9{bottom:184.986667pt;}
.yaf{bottom:185.146667pt;}
.y142{bottom:185.960000pt;}
.y1bc{bottom:188.026667pt;}
.y1a4{bottom:188.186667pt;}
.y17d{bottom:188.200000pt;}
.y3c{bottom:197.640000pt;}
.y31{bottom:199.386667pt;}
.y141{bottom:202.280000pt;}
.yf9{bottom:203.706667pt;}
.y29{bottom:203.720000pt;}
.ycf{bottom:203.866667pt;}
.y7f{bottom:204.346667pt;}
.y1c8{bottom:204.666667pt;}
.yae{bottom:204.986667pt;}
.y1bb{bottom:207.866667pt;}
.y1a3{bottom:208.026667pt;}
.y17b{bottom:208.680000pt;}
.y30{bottom:218.426667pt;}
.y140{bottom:218.760000pt;}
.yce{bottom:221.626667pt;}
.yf8{bottom:223.386667pt;}
.y7e{bottom:224.026667pt;}
.y1c7{bottom:224.506667pt;}
.yad{bottom:224.666667pt;}
.y1ba{bottom:227.546667pt;}
.y1a2{bottom:227.706667pt;}
.ycd{bottom:232.200000pt;}
.y13f{bottom:235.080000pt;}
.y2f{bottom:237.466667pt;}
.yf7{bottom:243.226667pt;}
.y7d{bottom:243.866667pt;}
.y1c6{bottom:244.186667pt;}
.yac{bottom:244.506667pt;}
.ycc{bottom:245.800000pt;}
.y1b9{bottom:247.386667pt;}
.y1a1{bottom:247.546667pt;}
.y13e{bottom:251.400000pt;}
.y2e{bottom:256.506667pt;}
.ycb{bottom:259.400000pt;}
.yf6{bottom:262.906667pt;}
.y7c{bottom:263.546667pt;}
.y1c5{bottom:264.026667pt;}
.yab{bottom:264.346667pt;}
.y1b8{bottom:267.066667pt;}
.y1a0{bottom:267.226667pt;}
.y13d{bottom:267.720000pt;}
.yc9{bottom:273.000000pt;}
.y2d{bottom:275.706667pt;}
.yf5{bottom:282.746667pt;}
.y7b{bottom:283.386667pt;}
.y1c4{bottom:283.706667pt;}
.yaa{bottom:284.026667pt;}
.y13c{bottom:284.840000pt;}
.yc8{bottom:286.760000pt;}
.y1b7{bottom:286.906667pt;}
.y19f{bottom:287.066667pt;}
.y2c{bottom:294.746667pt;}
.yc6{bottom:301.000000pt;}
.yf4{bottom:302.426667pt;}
.y7a{bottom:303.066667pt;}
.y1c3{bottom:303.546667pt;}
.ya9{bottom:303.866667pt;}
.y1b6{bottom:306.586667pt;}
.y19e{bottom:306.746667pt;}
.y13b{bottom:312.026667pt;}
.y2b{bottom:313.786667pt;}
.yf3{bottom:322.266667pt;}
.y79{bottom:322.906667pt;}
.y1c2{bottom:323.226667pt;}
.ya8{bottom:323.546667pt;}
.yc5{bottom:325.466667pt;}
.y1b5{bottom:326.426667pt;}
.y19d{bottom:326.586667pt;}
.y13a{bottom:331.866667pt;}
.y2a{bottom:332.986667pt;}
.y16d{bottom:337.786667pt;}
.yf2{bottom:340.026667pt;}
.y78{bottom:342.746667pt;}
.y1c1{bottom:343.066667pt;}
.ya7{bottom:343.386667pt;}
.yc4{bottom:344.346667pt;}
.y138{bottom:344.680000pt;}
.y1b4{bottom:346.266667pt;}
.y19c{bottom:346.426667pt;}
.yf1{bottom:350.600000pt;}
.y16c{bottom:357.466667pt;}
.y137{bottom:361.160000pt;}
.y77{bottom:362.426667pt;}
.yc3{bottom:362.906667pt;}
.ya6{bottom:363.066667pt;}
.yf0{bottom:364.200000pt;}
.y19b{bottom:365.146667pt;}
.y1b3{bottom:365.946667pt;}
.y16b{bottom:377.306667pt;}
.y135{bottom:377.480000pt;}
.yef{bottom:377.800000pt;}
.y76{bottom:382.266667pt;}
.yc2{bottom:382.586667pt;}
.ya5{bottom:382.906667pt;}
.y19a{bottom:383.706667pt;}
.y1b2{bottom:385.786667pt;}
.yed{bottom:391.400000pt;}
.y134{bottom:393.826667pt;}
.y16a{bottom:397.026667pt;}
.y17a{bottom:398.306667pt;}
.y75{bottom:401.986667pt;}
.yc1{bottom:402.466667pt;}
.ya4{bottom:402.626667pt;}
.y199{bottom:403.586667pt;}
.yec{bottom:405.186667pt;}
.y1b1{bottom:405.506667pt;}
.y132{bottom:410.146667pt;}
.y169{bottom:416.866667pt;}
.y179{bottom:418.146667pt;}
.yea{bottom:419.426667pt;}
.y74{bottom:421.826667pt;}
.y1cf{bottom:421.986667pt;}
.yc0{bottom:422.146667pt;}
.ya3{bottom:422.466667pt;}
.y198{bottom:423.266667pt;}
.y1b0{bottom:425.346667pt;}
.y131{bottom:426.626667pt;}
.y168{bottom:436.546667pt;}
.y178{bottom:437.986667pt;}
.y73{bottom:441.506667pt;}
.ybf{bottom:441.986667pt;}
.ya2{bottom:442.306667pt;}
.y1ce{bottom:442.466667pt;}
.y130{bottom:442.946667pt;}
.y197{bottom:443.106667pt;}
.y1af{bottom:443.746667pt;}
.ye9{bottom:443.906667pt;}
.y1ae{bottom:454.626667pt;}
.y167{bottom:456.386667pt;}
.y177{bottom:457.666667pt;}
.y12f{bottom:459.266667pt;}
.y72{bottom:461.346667pt;}
.ybe{bottom:461.666667pt;}
.ya1{bottom:461.986667pt;}
.ye8{bottom:462.306667pt;}
.y196{bottom:462.786667pt;}
.y1ad{bottom:468.386667pt;}
.y166{bottom:476.226667pt;}
.y12d{bottom:476.386667pt;}
.y176{bottom:477.506667pt;}
.y71{bottom:481.026667pt;}
.ybd{bottom:481.506667pt;}
.ya0{bottom:481.826667pt;}
.y1ac{bottom:481.986667pt;}
.y195{bottom:482.626667pt;}
.y1ab{bottom:495.586667pt;}
.y165{bottom:495.906667pt;}
.y175{bottom:497.186667pt;}
.y70{bottom:500.866667pt;}
.ybc{bottom:501.346667pt;}
.y9f{bottom:501.506667pt;}
.y194{bottom:502.306667pt;}
.y12c{bottom:503.586667pt;}
.y1aa{bottom:509.186667pt;}
.y164{bottom:515.746667pt;}
.y174{bottom:517.026667pt;}
.y6f{bottom:520.706667pt;}
.ybb{bottom:521.026667pt;}
.y9e{bottom:521.346667pt;}
.ye7{bottom:521.986667pt;}
.y193{bottom:522.146667pt;}
.y12b{bottom:523.266667pt;}
.y1a9{bottom:523.586667pt;}
.y173{bottom:527.906667pt;}
.y163{bottom:535.426667pt;}
.y6e{bottom:540.386667pt;}
.yba{bottom:540.866667pt;}
.y9d{bottom:541.026667pt;}
.y192{bottom:541.986667pt;}
.ye6{bottom:542.306667pt;}
.y12a{bottom:543.106667pt;}
.y116{bottom:543.586667pt;}
.y27{bottom:547.586667pt;}
.y172{bottom:548.386667pt;}
.y162{bottom:553.186667pt;}
.y26{bottom:556.546667pt;}
.y6d{bottom:560.226667pt;}
.yb9{bottom:560.546667pt;}
.y9c{bottom:560.866667pt;}
.y191{bottom:561.666667pt;}
.ye5{bottom:562.786667pt;}
.y129{bottom:562.946667pt;}
.y115{bottom:563.266667pt;}
.y161{bottom:563.746667pt;}
.y24{bottom:570.306667pt;}
.y160{bottom:577.346667pt;}
.y6c{bottom:579.906667pt;}
.yb8{bottom:580.386667pt;}
.y9b{bottom:580.706667pt;}
.y190{bottom:581.506667pt;}
.y128{bottom:582.626667pt;}
.y114{bottom:583.106667pt;}
.ye4{bottom:583.266667pt;}
.y21{bottom:585.346667pt;}
.y15f{bottom:590.946667pt;}
.y18f{bottom:594.306667pt;}
.y6b{bottom:599.746667pt;}
.yb7{bottom:600.066667pt;}
.y9a{bottom:600.386667pt;}
.y20{bottom:601.693333pt;}
.y127{bottom:602.493333pt;}
.y113{bottom:602.973333pt;}
.ye3{bottom:603.773333pt;}
.y15e{bottom:604.733333pt;}
.y1d{bottom:607.773333pt;}
.y18e{bottom:607.933333pt;}
.y15d{bottom:618.333333pt;}
.y6a{bottom:619.453333pt;}
.yb6{bottom:619.933333pt;}
.y99{bottom:620.253333pt;}
.y18d{bottom:621.693333pt;}
.y126{bottom:622.173333pt;}
.y112{bottom:622.653333pt;}
.ye2{bottom:624.253333pt;}
.y15c{bottom:631.933333pt;}
.y18c{bottom:635.293333pt;}
.y69{bottom:639.293333pt;}
.yb5{bottom:639.773333pt;}
.y98{bottom:639.933333pt;}
.y125{bottom:642.013333pt;}
.y111{bottom:642.493333pt;}
.ye1{bottom:644.733333pt;}
.y1b{bottom:646.013333pt;}
.y15b{bottom:646.173333pt;}
.y18b{bottom:648.893333pt;}
.y15{bottom:653.373333pt;}
.y68{bottom:659.133333pt;}
.yb4{bottom:659.453333pt;}
.y97{bottom:659.773333pt;}
.y124{bottom:661.693333pt;}
.y110{bottom:662.173333pt;}
.ye0{bottom:665.053333pt;}
.y15a{bottom:670.813333pt;}
.y18a{bottom:676.093333pt;}
.y67{bottom:678.813333pt;}
.y96{bottom:679.453333pt;}
.y123{bottom:681.533333pt;}
.y10f{bottom:682.013333pt;}
.ydf{bottom:685.533333pt;}
.y159{bottom:690.493333pt;}
.y66{bottom:698.653333pt;}
.y95{bottom:699.293333pt;}
.y122{bottom:701.373333pt;}
.y10e{bottom:701.693333pt;}
.y187{bottom:703.453333pt;}
.yde{bottom:706.013333pt;}
.y158{bottom:710.333333pt;}
.y65{bottom:718.333333pt;}
.y94{bottom:719.133333pt;}
.y121{bottom:721.053333pt;}
.y10d{bottom:721.533333pt;}
.ydd{bottom:725.693333pt;}
.y157{bottom:730.013333pt;}
.y64{bottom:738.173333pt;}
.ydc{bottom:738.493333pt;}
.y93{bottom:738.813333pt;}
.y120{bottom:740.893333pt;}
.y10c{bottom:741.373333pt;}
.y183{bottom:745.053333pt;}
.y156{bottom:749.853333pt;}
.yda{bottom:753.053333pt;}
.y63{bottom:757.853333pt;}
.y92{bottom:758.653333pt;}
.y186{bottom:759.293333pt;}
.y11f{bottom:760.573333pt;}
.y10b{bottom:761.053333pt;}
.yd9{bottom:767.773333pt;}
.y155{bottom:769.533333pt;}
.y13{bottom:769.853333pt;}
.y185{bottom:773.533333pt;}
.y62{bottom:777.693333pt;}
.y10{bottom:777.853333pt;}
.y91{bottom:778.333333pt;}
.y11e{bottom:780.413333pt;}
.y10a{bottom:780.893333pt;}
.yd8{bottom:782.333333pt;}
.y154{bottom:789.373333pt;}
.yd7{bottom:796.893333pt;}
.y61{bottom:797.533333pt;}
.y90{bottom:798.173333pt;}
.y11d{bottom:800.093333pt;}
.y109{bottom:800.573333pt;}
.y153{bottom:809.213333pt;}
.yd5{bottom:812.293333pt;}
.y60{bottom:817.253333pt;}
.y8f{bottom:817.893333pt;}
.y108{bottom:820.453333pt;}
.y11c{bottom:821.093333pt;}
.ye{bottom:824.453333pt;}
.yb{bottom:828.933333pt;}
.y11b{bottom:835.013333pt;}
.y5f{bottom:837.093333pt;}
.y8e{bottom:837.733333pt;}
.y107{bottom:838.213333pt;}
.y106{bottom:848.613333pt;}
.y152{bottom:848.773333pt;}
.y5e{bottom:856.773333pt;}
.y8d{bottom:857.413333pt;}
.y105{bottom:862.373333pt;}
.y151{bottom:868.453333pt;}
.y104{bottom:875.973333pt;}
.y5d{bottom:876.613333pt;}
.y8c{bottom:877.253333pt;}
.y150{bottom:881.413333pt;}
.y103{bottom:889.573333pt;}
.y14f{bottom:895.013333pt;}
.y5c{bottom:896.293333pt;}
.y8b{bottom:897.093333pt;}
.ya{bottom:900.933333pt;}
.y102{bottom:903.173333pt;}
.y117{bottom:903.813333pt;}
.y14e{bottom:908.613333pt;}
.y4{bottom:915.813333pt;}
.y5b{bottom:916.133333pt;}
.y8a{bottom:916.773333pt;}
.yff{bottom:917.573333pt;}
.y14d{bottom:922.213333pt;}
.y47{bottom:927.360000pt;}
.y101{bottom:931.813333pt;}
.y5a{bottom:935.813333pt;}
.y14c{bottom:935.973333pt;}
.y89{bottom:936.613333pt;}
.y14b{bottom:949.573333pt;}
.y59{bottom:955.653333pt;}
.y88{bottom:956.293333pt;}
.y14a{bottom:963.173333pt;}
.y58{bottom:975.493333pt;}
.y87{bottom:976.133333pt;}
.y149{bottom:976.773333pt;}
.y148{bottom:991.173333pt;}
.y57{bottom:995.173333pt;}
.y86{bottom:995.813333pt;}
.y85{bottom:1015.653333pt;}
.y56{bottom:1015.813333pt;}
.y4f{bottom:1032.000000pt;}
.y4e{bottom:1054.080000pt;}
.h2c{height:1.777500pt;}
.ha{height:4.466667pt;}
.h21{height:6.066667pt;}
.h16{height:6.080000pt;}
.h12{height:7.360000pt;}
.he{height:8.000000pt;}
.h1e{height:8.946667pt;}
.hb{height:10.835938pt;}
.h37{height:13.586667pt;}
.h4b{height:13.600000pt;}
.h56{height:13.626667pt;}
.h1d{height:13.746667pt;}
.h4a{height:13.760000pt;}
.h3e{height:13.778667pt;}
.h4c{height:13.786667pt;}
.h39{height:14.546667pt;}
.h3b{height:14.560000pt;}
.h3a{height:14.580000pt;}
.h22{height:14.705625pt;}
.h3c{height:14.720000pt;}
.h1b{height:15.026667pt;}
.h32{height:15.680000pt;}
.h17{height:15.840000pt;}
.h43{height:16.306667pt;}
.h49{height:16.318667pt;}
.h47{height:16.320000pt;}
.h45{height:16.338667pt;}
.h18{height:16.346667pt;}
.h46{height:16.352000pt;}
.h44{height:16.466667pt;}
.h48{height:16.480000pt;}
.h29{height:17.118667pt;}
.h2a{height:17.278667pt;}
.h27{height:17.280000pt;}
.h13{height:18.716250pt;}
.hf{height:20.422500pt;}
.h50{height:20.466667pt;}
.h11{height:21.316250pt;}
.h25{height:22.560000pt;}
.h23{height:22.912000pt;}
.h33{height:24.798667pt;}
.h2{height:25.598667pt;}
.h24{height:25.907187pt;}
.h57{height:27.186667pt;}
.h55{height:27.200000pt;}
.h41{height:27.346667pt;}
.h54{height:27.360000pt;}
.h3f{height:27.826667pt;}
.h1f{height:29.187500pt;}
.h35{height:30.830625pt;}
.h38{height:33.857500pt;}
.h28{height:35.975313pt;}
.h42{height:36.304688pt;}
.h3d{height:36.776250pt;}
.h26{height:36.883125pt;}
.h14{height:38.240000pt;}
.h36{height:39.111250pt;}
.hd{height:39.876250pt;}
.h1a{height:40.618125pt;}
.h4e{height:40.958667pt;}
.h53{height:40.960000pt;}
.h40{height:41.586667pt;}
.h52{height:42.240000pt;}
.h15{height:43.781250pt;}
.h19{height:44.533750pt;}
.h3{height:44.975625pt;}
.hc{height:46.580000pt;}
.h2f{height:48.000000pt;}
.h6{height:48.406250pt;}
.h1c{height:48.451250pt;}
.h31{height:49.852500pt;}
.h30{height:49.920000pt;}
.h8{height:50.712187pt;}
.h2e{height:56.160000pt;}
.h9{height:57.647187pt;}
.h7{height:59.186667pt;}
.h4{height:62.812500pt;}
.h34{height:64.500000pt;}
.h2b{height:74.238667pt;}
.h2d{height:101.920000pt;}
.h5{height:110.746667pt;}
.h10{height:116.480000pt;}
.h4f{height:172.826667pt;}
.h51{height:180.786667pt;}
.h4d{height:183.226667pt;}
.h20{height:343.853333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1c{width:37.266667pt;}
.w26{width:39.218667pt;}
.w27{width:41.906667pt;}
.w28{width:42.066667pt;}
.w22{width:44.800000pt;}
.w1f{width:45.906667pt;}
.w10{width:46.390667pt;}
.w48{width:46.706667pt;}
.w49{width:50.546667pt;}
.w2d{width:52.146667pt;}
.w46{width:52.466667pt;}
.w23{width:54.066667pt;}
.w21{width:54.560000pt;}
.w47{width:56.658667pt;}
.w16{width:57.298667pt;}
.w1b{width:58.706667pt;}
.w19{width:59.986667pt;}
.w45{width:61.472000pt;}
.w3b{width:62.390667pt;}
.w25{width:68.786667pt;}
.w1d{width:70.070667pt;}
.w18{width:71.666667pt;}
.w1a{width:72.018667pt;}
.w20{width:72.658667pt;}
.w17{width:75.026667pt;}
.w4a{width:78.066667pt;}
.w4c{width:80.946667pt;}
.w15{width:83.986667pt;}
.w37{width:85.938667pt;}
.w2c{width:86.546667pt;}
.w32{width:87.026667pt;}
.w38{width:89.906667pt;}
.w4{width:90.070667pt;}
.w44{width:96.466667pt;}
.w3c{width:102.098667pt;}
.w43{width:103.378667pt;}
.w36{width:106.066667pt;}
.w31{width:108.658667pt;}
.w2b{width:109.938667pt;}
.w2f{width:113.270667pt;}
.w42{width:113.952000pt;}
.w29{width:114.230667pt;}
.w34{width:114.550667pt;}
.w3d{width:123.520000pt;}
.w4b{width:128.978667pt;}
.w9{width:137.270667pt;}
.w14{width:144.000000pt;}
.w13{width:144.017333pt;}
.w3a{width:175.853333pt;}
.w35{width:203.573333pt;}
.w4d{width:209.933333pt;}
.w8{width:216.813333pt;}
.w1e{width:217.933333pt;}
.w24{width:233.933333pt;}
.w3{width:235.693333pt;}
.w2a{width:237.173333pt;}
.w30{width:238.933333pt;}
.w11{width:249.173333pt;}
.w40{width:286.257333pt;}
.w3f{width:288.013333pt;}
.w3e{width:288.017333pt;}
.wc{width:289.613333pt;}
.wf{width:296.493333pt;}
.we{width:300.697333pt;}
.w12{width:301.613333pt;}
.wb{width:310.457333pt;}
.w41{width:313.826667pt;}
.w2{width:368.377333pt;}
.w7{width:383.257333pt;}
.w39{width:424.217333pt;}
.w33{width:460.880000pt;}
.w2e{width:461.360000pt;}
.wa{width:462.800000pt;}
.wd{width:509.920000pt;}
.w5{width:511.760000pt;}
.w6{width:600.080000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3e{left:2.240000pt;}
.x2{left:3.350667pt;}
.x2b{left:4.320000pt;}
.x15{left:5.746667pt;}
.x8{left:6.866667pt;}
.x28{left:8.306667pt;}
.x47{left:9.280000pt;}
.x33{left:10.226667pt;}
.x2e{left:12.000000pt;}
.x42{left:13.426667pt;}
.x40{left:14.720000pt;}
.x13{left:15.830667pt;}
.x38{left:16.946667pt;}
.x20{left:18.080000pt;}
.x39{left:19.506667pt;}
.x35{left:20.466667pt;}
.x22{left:22.080000pt;}
.x30{left:23.026667pt;}
.x2d{left:23.986667pt;}
.x24{left:25.266667pt;}
.x2f{left:26.706667pt;}
.x41{left:27.986667pt;}
.x17{left:28.946667pt;}
.x26{left:30.080000pt;}
.x23{left:31.680000pt;}
.x25{left:32.800000pt;}
.xb{left:34.106667pt;}
.x5b{left:35.826667pt;}
.x48{left:37.280000pt;}
.x4f{left:38.720000pt;}
.x49{left:39.840000pt;}
.x4e{left:41.760000pt;}
.x1b{left:44.000000pt;}
.x55{left:44.946667pt;}
.x53{left:47.666667pt;}
.x60{left:49.266667pt;}
.x54{left:50.240000pt;}
.x56{left:52.800000pt;}
.x62{left:55.666667pt;}
.x1c{left:65.440000pt;}
.x1d{left:68.960000pt;}
.x50{left:72.506667pt;}
.x63{left:89.786667pt;}
.x1{left:94.921333pt;}
.x5{left:96.032000pt;}
.x32{left:99.066667pt;}
.x12{left:108.466667pt;}
.x18{left:127.506667pt;}
.x59{left:142.266667pt;}
.x14{left:146.120000pt;}
.x4{left:148.346667pt;}
.x51{left:158.440000pt;}
.x31{left:166.120000pt;}
.x6{left:186.120000pt;}
.xc{left:196.546667pt;}
.x4a{left:209.320000pt;}
.x43{left:210.280000pt;}
.x34{left:212.040000pt;}
.x9{left:234.120000pt;}
.x1a{left:240.066667pt;}
.xd{left:243.293333pt;}
.x52{left:260.546667pt;}
.xe{left:269.693333pt;}
.x36{left:284.706667pt;}
.x57{left:288.025333pt;}
.xf{left:303.133333pt;}
.x37{left:339.266667pt;}
.x58{left:382.306667pt;}
.x16{left:395.306667pt;}
.x11{left:400.426667pt;}
.xa{left:407.306667pt;}
.x19{left:411.293333pt;}
.x4b{left:414.186667pt;}
.x5d{left:443.786667pt;}
.x44{left:447.466667pt;}
.x3{left:463.306667pt;}
.x3a{left:465.386667pt;}
.x27{left:471.306667pt;}
.x7{left:480.106667pt;}
.x5f{left:489.386667pt;}
.x1e{left:495.306667pt;}
.x5a{left:496.266667pt;}
.x10{left:510.213333pt;}
.x4c{left:520.266667pt;}
.x29{left:531.306667pt;}
.x3b{left:534.186667pt;}
.x1f{left:552.613333pt;}
.x45{left:557.413333pt;}
.x3c{left:573.413333pt;}
.x5c{left:599.653333pt;}
.x2a{left:603.333333pt;}
.x4d{left:606.213333pt;}
.x3d{left:615.333333pt;}
.x61{left:618.373333pt;}
.x21{left:627.653333pt;}
.x46{left:643.973333pt;}
.x5e{left:650.213333pt;}
.x3f{left:657.413333pt;}
.x2c{left:662.053333pt;}
}




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