
    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_d630060060324ffbf929759e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.782000;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_89d1e6b7625d109595f2ced1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.951000;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_fd8e6f12d30ca6b5d54307b7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.842000;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_bfdeb00fa1264d03ea527d4b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.086000;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_292b2dd33d641f659ab5c61b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.017000;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_afb3895c90d14eeca8631ff8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.954000;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_7bb6593760f0df681972dd4a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.945000;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_233cbb842c201f5ff0db4392.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.081000;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_a0e6b6b0d5802c2df6af61c1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.722656;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_77634b21df3b9295832c1e30.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a9bbb2d13bf84061665da1d5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.905000;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_85dbe662b50e7563aa4c5349.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.704000;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_cc15ae00387edd0529505009.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.979000;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_e45d1a7413452ed70419fbf2.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.984048;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;}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247499,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-17.982000px;}
.v4{vertical-align:-1.098000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:14.952000px;}
.v1{vertical-align:17.838000px;}
.ls6f{letter-spacing:-5.111400px;}
.ls49{letter-spacing:-5.040000px;}
.ls5d{letter-spacing:-2.940000px;}
.ls5a{letter-spacing:-1.680000px;}
.ls28{letter-spacing:-1.242000px;}
.ls6e{letter-spacing:-0.840000px;}
.ls63{letter-spacing:-0.756000px;}
.ls34{letter-spacing:-0.702000px;}
.ls5b{letter-spacing:-0.630000px;}
.ls15{letter-spacing:-0.629640px;}
.ls31{letter-spacing:-0.599400px;}
.ls1e{letter-spacing:-0.566676px;}
.ls10{letter-spacing:-0.556200px;}
.lsf{letter-spacing:-0.550800px;}
.ls42{letter-spacing:-0.546000px;}
.ls2d{letter-spacing:-0.545400px;}
.lse{letter-spacing:-0.540000px;}
.ls40{letter-spacing:-0.420000px;}
.ls1b{letter-spacing:-0.399600px;}
.ls1a{letter-spacing:-0.394200px;}
.ls19{letter-spacing:-0.383400px;}
.ls1c{letter-spacing:-0.378000px;}
.ls1d{letter-spacing:-0.346302px;}
.ls20{letter-spacing:-0.314820px;}
.ls13{letter-spacing:-0.302400px;}
.ls17{letter-spacing:-0.297000px;}
.ls65{letter-spacing:-0.294000px;}
.ls11{letter-spacing:-0.291600px;}
.ls14{letter-spacing:-0.275400px;}
.ls16{letter-spacing:-0.270000px;}
.ls12{letter-spacing:-0.259200px;}
.ls1f{letter-spacing:-0.220374px;}
.ls32{letter-spacing:-0.216000px;}
.ls6a{letter-spacing:-0.210000px;}
.ls55{letter-spacing:-0.187847px;}
.ls35{letter-spacing:-0.178200px;}
.ls18{letter-spacing:-0.157410px;}
.ls56{letter-spacing:-0.144911px;}
.ls72{letter-spacing:-0.126000px;}
.ls2b{letter-spacing:-0.124200px;}
.ls5e{letter-spacing:-0.109200px;}
.ls2c{letter-spacing:-0.094446px;}
.ls3b{letter-spacing:-0.088200px;}
.ls61{letter-spacing:-0.084000px;}
.ls47{letter-spacing:-0.067200px;}
.ls3d{letter-spacing:-0.063000px;}
.ls21{letter-spacing:-0.059400px;}
.ls46{letter-spacing:-0.058800px;}
.ls59{letter-spacing:-0.057249px;}
.ls3a{letter-spacing:-0.054600px;}
.ls48{letter-spacing:-0.050400px;}
.ls25{letter-spacing:-0.049500px;}
.ls2a{letter-spacing:-0.048600px;}
.ls3c{letter-spacing:-0.046200px;}
.ls29{letter-spacing:-0.043200px;}
.ls57{letter-spacing:-0.042936px;}
.ls38{letter-spacing:-0.042000px;}
.ls8{letter-spacing:-0.040500px;}
.ls33{letter-spacing:-0.037800px;}
.lsa{letter-spacing:-0.036000px;}
.ls3e{letter-spacing:-0.033600px;}
.ls30{letter-spacing:-0.032400px;}
.ls3f{letter-spacing:-0.029400px;}
.ls2{letter-spacing:-0.027000px;}
.ls54{letter-spacing:-0.026835px;}
.ls43{letter-spacing:-0.025200px;}
.lsd{letter-spacing:-0.022500px;}
.ls27{letter-spacing:-0.021600px;}
.ls39{letter-spacing:-0.021000px;}
.ls24{letter-spacing:-0.018000px;}
.ls44{letter-spacing:-0.016800px;}
.ls6{letter-spacing:-0.016200px;}
.ls9{letter-spacing:-0.013500px;}
.ls41{letter-spacing:-0.012600px;}
.ls3{letter-spacing:-0.012000px;}
.ls5{letter-spacing:-0.010800px;}
.lsb{letter-spacing:-0.009000px;}
.ls37{letter-spacing:-0.008400px;}
.ls7{letter-spacing:-0.006000px;}
.ls4{letter-spacing:-0.005400px;}
.ls26{letter-spacing:-0.004500px;}
.ls45{letter-spacing:-0.004200px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.002568px;}
.ls2f{letter-spacing:0.004200px;}
.ls23{letter-spacing:0.004500px;}
.ls4e{letter-spacing:0.005367px;}
.ls58{letter-spacing:0.007156px;}
.lsc{letter-spacing:0.010800px;}
.ls4b{letter-spacing:0.026835px;}
.ls22{letter-spacing:0.027000px;}
.ls50{letter-spacing:0.035780px;}
.ls4f{letter-spacing:0.071561px;}
.ls4a{letter-spacing:0.075139px;}
.ls4c{letter-spacing:0.085873px;}
.ls4d{letter-spacing:0.091240px;}
.ls70{letter-spacing:0.600600px;}
.ls6c{letter-spacing:0.642600px;}
.ls71{letter-spacing:0.894600px;}
.ls53{letter-spacing:1.036776px;}
.ls6b{letter-spacing:1.230600px;}
.ls6d{letter-spacing:1.692600px;}
.ls60{letter-spacing:2.658600px;}
.ls68{letter-spacing:2.868600px;}
.ls66{letter-spacing:2.910600px;}
.ls67{letter-spacing:3.456600px;}
.ls64{letter-spacing:3.498600px;}
.ls5c{letter-spacing:3.666600px;}
.ls62{letter-spacing:3.876600px;}
.ls5f{letter-spacing:4.674600px;}
.ls69{letter-spacing:5.136600px;}
.ls36{letter-spacing:6.577200px;}
.ls52{letter-spacing:22.801867px;}
.ls2e{letter-spacing:42.588000px;}
.ls51{letter-spacing:42.882000px;}
.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;}
}
.ws7b{word-spacing:-90.664567px;}
.ws6e{word-spacing:-53.761840px;}
.ws6b{word-spacing:-53.756473px;}
.ws69{word-spacing:-53.745739px;}
.ws6a{word-spacing:-53.697435px;}
.ws71{word-spacing:-53.675967px;}
.ws6d{word-spacing:-53.670600px;}
.ws6c{word-spacing:-53.643765px;}
.ws70{word-spacing:-53.525689px;}
.ws6f{word-spacing:-53.482753px;}
.ws8{word-spacing:-22.791586px;}
.ws2{word-spacing:-14.688000px;}
.ws31{word-spacing:-14.666400px;}
.ws3f{word-spacing:-14.661000px;}
.ws40{word-spacing:-14.655600px;}
.ws42{word-spacing:-14.644800px;}
.ws3a{word-spacing:-14.563800px;}
.ws30{word-spacing:-14.526000px;}
.ws43{word-spacing:-14.472000px;}
.ws41{word-spacing:-14.088600px;}
.wsa{word-spacing:-13.320000px;}
.ws9{word-spacing:-13.308000px;}
.ws27{word-spacing:-12.132000px;}
.ws3{word-spacing:-12.105000px;}
.ws44{word-spacing:-11.424000px;}
.ws73{word-spacing:-11.390400px;}
.ws7a{word-spacing:-11.356800px;}
.ws74{word-spacing:-11.314800px;}
.ws0{word-spacing:-11.250000px;}
.ws75{word-spacing:-11.046000px;}
.ws79{word-spacing:-10.920000px;}
.ws77{word-spacing:-10.836000px;}
.ws78{word-spacing:-10.584000px;}
.ws72{word-spacing:-10.500000px;}
.ws76{word-spacing:-10.374000px;}
.ws84{word-spacing:-9.954000px;}
.wse{word-spacing:-9.660600px;}
.ws1{word-spacing:-8.563104px;}
.ws3b{word-spacing:-8.468658px;}
.ws32{word-spacing:-8.405694px;}
.ws1d{word-spacing:-8.342730px;}
.ws1e{word-spacing:-8.216802px;}
.ws1a{word-spacing:-8.010000px;}
.ws2e{word-spacing:-8.001000px;}
.ws39{word-spacing:-7.933464px;}
.ws83{word-spacing:-7.350000px;}
.ws37{word-spacing:-6.966000px;}
.ws36{word-spacing:-6.852600px;}
.ws3e{word-spacing:-6.782400px;}
.ws57{word-spacing:-6.552000px;}
.ws56{word-spacing:-6.518400px;}
.ws13{word-spacing:-6.480000px;}
.ws12{word-spacing:-6.474000px;}
.ws14{word-spacing:-6.468000px;}
.ws35{word-spacing:-6.258600px;}
.ws2c{word-spacing:-6.070500px;}
.ws38{word-spacing:-5.934600px;}
.ws21{word-spacing:-5.896800px;}
.ws23{word-spacing:-5.891400px;}
.wsc{word-spacing:-5.886000px;}
.ws10{word-spacing:-5.880600px;}
.wsf{word-spacing:-5.875200px;}
.wsd{word-spacing:-5.869800px;}
.ws11{word-spacing:-5.864400px;}
.ws24{word-spacing:-5.859000px;}
.ws22{word-spacing:-5.853600px;}
.ws45{word-spacing:-5.848200px;}
.ws3c{word-spacing:-5.842800px;}
.ws3d{word-spacing:-5.837400px;}
.ws34{word-spacing:-5.832000px;}
.ws26{word-spacing:-5.821200px;}
.ws25{word-spacing:-5.729400px;}
.ws29{word-spacing:-5.724000px;}
.wsb{word-spacing:-5.718600px;}
.ws28{word-spacing:-5.713200px;}
.ws82{word-spacing:-5.237400px;}
.ws2d{word-spacing:-4.864500px;}
.ws15{word-spacing:-4.860000px;}
.ws1b{word-spacing:-4.855500px;}
.ws1c{word-spacing:-4.851000px;}
.ws18{word-spacing:-4.846500px;}
.ws2a{word-spacing:-4.842000px;}
.ws2f{word-spacing:-4.837500px;}
.ws16{word-spacing:-4.833000px;}
.ws17{word-spacing:-4.824000px;}
.ws19{word-spacing:-4.815000px;}
.ws2b{word-spacing:-4.810500px;}
.ws7{word-spacing:-4.800000px;}
.ws54{word-spacing:-4.788000px;}
.ws55{word-spacing:-4.767000px;}
.ws67{word-spacing:-4.582200px;}
.ws4d{word-spacing:-4.578000px;}
.ws60{word-spacing:-4.573800px;}
.ws4c{word-spacing:-4.569600px;}
.ws5c{word-spacing:-4.565400px;}
.ws5e{word-spacing:-4.561200px;}
.ws50{word-spacing:-4.557000px;}
.ws5d{word-spacing:-4.552800px;}
.ws5a{word-spacing:-4.548600px;}
.ws59{word-spacing:-4.544400px;}
.ws66{word-spacing:-4.540200px;}
.ws4e{word-spacing:-4.536000px;}
.ws53{word-spacing:-4.531800px;}
.ws64{word-spacing:-4.527600px;}
.ws51{word-spacing:-4.523400px;}
.ws62{word-spacing:-4.519200px;}
.ws61{word-spacing:-4.515000px;}
.ws63{word-spacing:-4.510800px;}
.ws1f{word-spacing:-4.500000px;}
.ws5{word-spacing:-4.495500px;}
.ws85{word-spacing:-4.494000px;}
.ws52{word-spacing:-4.489800px;}
.ws20{word-spacing:-4.477500px;}
.ws6{word-spacing:-4.473000px;}
.ws7c{word-spacing:-0.129597px;}
.ws7d{word-spacing:-0.071561px;}
.ws7e{word-spacing:-0.035780px;}
.ws4{word-spacing:0.000000px;}
.ws7f{word-spacing:0.042936px;}
.ws80{word-spacing:0.057249px;}
.ws68{word-spacing:7.266000px;}
.ws4f{word-spacing:7.350000px;}
.ws5f{word-spacing:7.602000px;}
.ws5b{word-spacing:7.854000px;}
.ws58{word-spacing:8.400000px;}
.ws4b{word-spacing:9.366000px;}
.ws81{word-spacing:10.962000px;}
.ws33{word-spacing:12.312000px;}
.ws65{word-spacing:19.236000px;}
.ws47{word-spacing:21.243600px;}
.ws4a{word-spacing:22.377600px;}
.ws49{word-spacing:22.431600px;}
.ws48{word-spacing:23.187600px;}
.ws46{word-spacing:25.995600px;}
._2{margin-left:-1271.371500px;}
._10{margin-left:-40.705200px;}
._12{margin-left:-37.897200px;}
._11{margin-left:-35.953200px;}
._b{margin-left:-27.000000px;}
._13{margin-left:-18.026400px;}
._15{margin-left:-16.989393px;}
._f{margin-left:-14.688000px;}
._18{margin-left:-12.802200px;}
._17{margin-left:-11.130000px;}
._9{margin-left:-10.080000px;}
._e{margin-left:-8.802000px;}
._8{margin-left:-6.949572px;}
._7{margin-left:-5.949000px;}
._0{margin-left:-4.770000px;}
._4{margin-left:-2.820993px;}
._1{margin-left:-1.125000px;}
._6{width:1.263786px;}
._5{width:2.976000px;}
._3{width:4.044993px;}
._16{width:11.844000px;}
._14{width:13.146000px;}
._c{width:43.416000px;}
._d{width:70.146000px;}
._a{width:320.358900px;}
.fc9{color:rgb(101,103,105);}
.fc4{color:rgb(105,107,109);}
.fc7{color:rgb(105,106,108);}
.fc3{color:rgb(104,105,107);}
.fc1{color:rgb(211,24,32);}
.fc8{color:rgb(102,103,106);}
.fc6{color:rgb(106,107,110);}
.fc5{color:rgb(108,109,112);}
.fc2{color:rgb(63,48,146);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:26.235000px;}
.fs5{font-size:31.482000px;}
.fsa{font-size:35.780400px;}
.fs8{font-size:42.000000px;}
.fs0{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs9{font-size:53.670600px;}
.fs4{font-size:54.000000px;}
.fsb{font-size:59.395200px;}
.fs6{font-size:60.000000px;}
.fsc{font-size:71.560800px;}
.fsf{font-size:74.967600px;}
.fsd{font-size:83.725800px;}
.fs3{font-size:120.000000px;}
.fs10{font-size:129.597000px;}
.fs2{font-size:205.329600px;}
.fse{font-size:271.450800px;}
.y0{bottom:0.000000px;}
.y1f6{bottom:8.714850px;}
.y1{bottom:34.081350px;}
.y1b5{bottom:87.602850px;}
.y33{bottom:87.739350px;}
.y6f{bottom:87.740850px;}
.y179{bottom:87.749850px;}
.y97{bottom:87.763350px;}
.yfb{bottom:87.772350px;}
.y154{bottom:87.776850px;}
.y108{bottom:87.781800px;}
.y1b4{bottom:101.105850px;}
.y32{bottom:102.736725px;}
.y1f4{bottom:103.002603px;}
.y6e{bottom:105.736350px;}
.y178{bottom:105.745350px;}
.y96{bottom:105.758850px;}
.yfa{bottom:105.767850px;}
.y153{bottom:105.772350px;}
.y107{bottom:105.777300px;}
.y1b3{bottom:114.608850px;}
.y31{bottom:117.731850px;}
.y6d{bottom:123.731850px;}
.y177{bottom:123.740850px;}
.y22{bottom:123.754350px;}
.yf9{bottom:123.763350px;}
.y152{bottom:123.767850px;}
.y106{bottom:123.772800px;}
.y1b2{bottom:128.111850px;}
.y1f3{bottom:134.245350px;}
.y1b1{bottom:141.614850px;}
.y176{bottom:141.736350px;}
.y21{bottom:141.749850px;}
.yf8{bottom:141.758850px;}
.y151{bottom:141.763350px;}
.y105{bottom:141.768300px;}
.y6b{bottom:141.777750px;}
.y6c{bottom:146.227350px;}
.y1b0{bottom:155.118000px;}
.y175{bottom:159.731850px;}
.y20{bottom:159.745350px;}
.yf7{bottom:159.754350px;}
.y150{bottom:159.758850px;}
.y104{bottom:159.763800px;}
.y6a{bottom:159.773250px;}
.y1af{bottom:168.621000px;}
.y174{bottom:177.737250px;}
.y1f{bottom:177.740850px;}
.yf6{bottom:177.749850px;}
.y14f{bottom:177.754350px;}
.y103{bottom:177.759300px;}
.y69{bottom:177.768750px;}
.y1f2{bottom:179.223000px;}
.y1ae{bottom:182.124000px;}
.y1ad{bottom:195.627000px;}
.y173{bottom:195.732750px;}
.y1e{bottom:195.736350px;}
.yf5{bottom:195.745350px;}
.y14e{bottom:195.749850px;}
.y102{bottom:195.754800px;}
.y68{bottom:195.764250px;}
.y1ac{bottom:209.130000px;}
.y95{bottom:213.731850px;}
.yf4{bottom:213.740850px;}
.y14d{bottom:213.745350px;}
.y1d{bottom:213.749850px;}
.y101{bottom:213.750300px;}
.y122{bottom:213.754350px;}
.y67{bottom:213.759750px;}
.y172{bottom:213.790350px;}
.y1ab{bottom:222.633000px;}
.yf3{bottom:231.736350px;}
.y30{bottom:231.736725px;}
.y14c{bottom:231.740850px;}
.y1c{bottom:231.745350px;}
.y100{bottom:231.745800px;}
.y121{bottom:231.749850px;}
.y66{bottom:231.755250px;}
.y171{bottom:231.785850px;}
.ya7{bottom:233.305350px;}
.y1aa{bottom:236.136000px;}
.y94{bottom:236.227350px;}
.y1f5{bottom:242.833500px;}
.y2f{bottom:246.731850px;}
.ya6{bottom:248.300475px;}
.y1a9{bottom:249.639000px;}
.y14b{bottom:249.736350px;}
.y1b{bottom:249.740850px;}
.yff{bottom:249.741300px;}
.yf2{bottom:249.745350px;}
.y65{bottom:249.750750px;}
.y170{bottom:249.781350px;}
.y1f7{bottom:251.548350px;}
.y1a8{bottom:263.142000px;}
.ya5{bottom:263.297850px;}
.y14a{bottom:267.731850px;}
.y1a{bottom:267.736350px;}
.yfe{bottom:267.736800px;}
.yf1{bottom:267.740850px;}
.y64{bottom:267.746250px;}
.y16f{bottom:267.776850px;}
.y1a7{bottom:276.645000px;}
.y93{bottom:285.731850px;}
.yfd{bottom:285.732300px;}
.yf0{bottom:285.736350px;}
.y63{bottom:285.741750px;}
.y19{bottom:285.754350px;}
.y91{bottom:285.754800px;}
.y149{bottom:285.758850px;}
.y16e{bottom:285.772350px;}
.y1a6{bottom:290.148000px;}
.y92{bottom:290.227350px;}
.y1a5{bottom:303.651000px;}
.yfc{bottom:303.731850px;}
.y62{bottom:303.737250px;}
.y18{bottom:303.749850px;}
.y90{bottom:303.750300px;}
.y148{bottom:303.754350px;}
.y16d{bottom:303.767850px;}
.yef{bottom:304.006350px;}
.y1a4{bottom:317.154000px;}
.y120{bottom:321.731850px;}
.y61{bottom:321.732750px;}
.y17{bottom:321.745350px;}
.y8f{bottom:321.745800px;}
.y147{bottom:321.749850px;}
.y16c{bottom:321.763350px;}
.yee{bottom:322.001850px;}
.y1a3{bottom:330.657000px;}
.y16{bottom:339.740850px;}
.y8e{bottom:339.741300px;}
.y146{bottom:339.745350px;}
.y16b{bottom:339.758850px;}
.y11f{bottom:339.785850px;}
.y60{bottom:339.786300px;}
.yca{bottom:339.849150px;}
.yed{bottom:339.997350px;}
.y1a2{bottom:344.160000px;}
.y1a1{bottom:357.663000px;}
.y15{bottom:357.736350px;}
.y8d{bottom:357.736800px;}
.y145{bottom:357.740850px;}
.y16a{bottom:357.754350px;}
.y11e{bottom:357.781350px;}
.y5f{bottom:357.781800px;}
.yc9{bottom:357.844650px;}
.yec{bottom:357.992850px;}
.y1a0{bottom:371.166000px;}
.y14{bottom:375.731850px;}
.y8c{bottom:375.732300px;}
.y144{bottom:375.736350px;}
.y2e{bottom:375.739350px;}
.y169{bottom:375.749850px;}
.y11d{bottom:375.776850px;}
.y5e{bottom:375.777300px;}
.yc8{bottom:375.840150px;}
.yeb{bottom:375.988350px;}
.ya4{bottom:381.858000px;}
.yaa{bottom:381.865500px;}
.y19f{bottom:384.669000px;}
.y2d{bottom:390.736725px;}
.y1c2{bottom:391.378350px;}
.y143{bottom:393.731850px;}
.y13{bottom:393.745350px;}
.y8b{bottom:393.754800px;}
.y11c{bottom:393.772350px;}
.y5d{bottom:393.772800px;}
.yc7{bottom:393.835650px;}
.yea{bottom:393.983850px;}
.ya3{bottom:396.858000px;}
.ya9{bottom:396.862875px;}
.y19e{bottom:398.172000px;}
.y2c{bottom:405.731850px;}
.y19d{bottom:411.675000px;}
.y12{bottom:411.740850px;}
.y8a{bottom:411.750300px;}
.y11b{bottom:411.767850px;}
.y5c{bottom:411.768300px;}
.y1c1{bottom:411.774000px;}
.yc6{bottom:411.831150px;}
.ya2{bottom:411.858000px;}
.y142{bottom:411.898350px;}
.ye9{bottom:411.979350px;}
.y19c{bottom:425.177850px;}
.y1bf{bottom:429.661871px;}
.y1c0{bottom:429.664350px;}
.y11{bottom:429.736350px;}
.y89{bottom:429.745800px;}
.y11a{bottom:429.763350px;}
.y5b{bottom:429.763800px;}
.yc5{bottom:429.826650px;}
.y141{bottom:429.893850px;}
.ye8{bottom:429.974850px;}
.y19b{bottom:438.680850px;}
.y168{bottom:447.731850px;}
.y10{bottom:447.740850px;}
.y88{bottom:447.741300px;}
.y119{bottom:447.758850px;}
.y5a{bottom:447.759300px;}
.yc4{bottom:447.822150px;}
.y140{bottom:447.889350px;}
.ye7{bottom:447.970350px;}
.y1be{bottom:450.235601px;}
.y19a{bottom:452.184000px;}
.y199{bottom:465.687000px;}
.yf{bottom:465.736350px;}
.y87{bottom:465.736800px;}
.y118{bottom:465.754350px;}
.y59{bottom:465.754800px;}
.yc3{bottom:465.817650px;}
.y167{bottom:465.844350px;}
.y13f{bottom:465.884850px;}
.y1bd{bottom:470.453316px;}
.y198{bottom:479.190000px;}
.y86{bottom:483.732300px;}
.y117{bottom:483.749850px;}
.y58{bottom:483.750300px;}
.ye{bottom:483.767850px;}
.y166{bottom:483.839850px;}
.y13e{bottom:483.880350px;}
.ye6{bottom:483.974850px;}
.y1bc{bottom:491.384850px;}
.y197{bottom:492.693000px;}
.y85{bottom:501.745350px;}
.y57{bottom:501.745800px;}
.yd{bottom:501.763350px;}
.yc2{bottom:501.822150px;}
.y165{bottom:501.835350px;}
.y13d{bottom:501.875850px;}
.ye5{bottom:501.970350px;}
.y196{bottom:506.196000px;}
.y1bb{bottom:510.884850px;}
.y1ba{bottom:510.888741px;}
.y195{bottom:519.698850px;}
.ya8{bottom:519.731850px;}
.y98{bottom:519.736800px;}
.y2b{bottom:519.739350px;}
.y84{bottom:519.740850px;}
.y56{bottom:519.741300px;}
.yc{bottom:519.758850px;}
.yc1{bottom:519.817650px;}
.y164{bottom:519.830850px;}
.y13c{bottom:519.871350px;}
.ye4{bottom:519.965850px;}
.y1b8{bottom:527.164350px;}
.y1b9{bottom:530.206350px;}
.y194{bottom:533.201850px;}
.y2a{bottom:534.736725px;}
.y83{bottom:537.736350px;}
.y55{bottom:537.736800px;}
.yb{bottom:537.754350px;}
.yc0{bottom:537.813150px;}
.y163{bottom:537.826350px;}
.y13b{bottom:537.866850px;}
.ye3{bottom:537.961350px;}
.y1b7{bottom:543.265478px;}
.ya1{bottom:545.582850px;}
.y193{bottom:546.704850px;}
.y29{bottom:549.731850px;}
.y82{bottom:555.731850px;}
.y54{bottom:555.732300px;}
.ya{bottom:555.749850px;}
.ybf{bottom:555.808650px;}
.y162{bottom:555.821850px;}
.y13a{bottom:555.862350px;}
.ye2{bottom:555.956850px;}
.y1b6{bottom:559.368000px;}
.y192{bottom:560.208000px;}
.ya0{bottom:560.580225px;}
.y191{bottom:573.710850px;}
.y53{bottom:573.731850px;}
.y51{bottom:573.740850px;}
.y9{bottom:573.745350px;}
.ybe{bottom:573.804150px;}
.y161{bottom:573.817500px;}
.y139{bottom:573.857850px;}
.ye1{bottom:573.952350px;}
.y9f{bottom:575.575350px;}
.y52{bottom:578.227500px;}
.y190{bottom:587.213850px;}
.y50{bottom:591.736350px;}
.y8{bottom:591.740850px;}
.y116{bottom:591.745350px;}
.y138{bottom:591.853350px;}
.ye0{bottom:591.947850px;}
.y18f{bottom:600.716850px;}
.y4f{bottom:609.731850px;}
.y7{bottom:609.736350px;}
.y115{bottom:609.740850px;}
.y4d{bottom:609.745350px;}
.ybd{bottom:609.808650px;}
.y160{bottom:609.822300px;}
.y137{bottom:609.848850px;}
.ydf{bottom:609.943350px;}
.y18e{bottom:614.219850px;}
.y4e{bottom:614.227500px;}
.y18d{bottom:627.722850px;}
.y6{bottom:627.731850px;}
.y114{bottom:627.736350px;}
.y4c{bottom:627.740850px;}
.y81{bottom:627.749850px;}
.ybc{bottom:627.804150px;}
.y15f{bottom:627.817800px;}
.y136{bottom:627.844350px;}
.yde{bottom:627.938850px;}
.y18c{bottom:641.225850px;}
.y4b{bottom:645.736350px;}
.y80{bottom:645.745350px;}
.y113{bottom:645.754350px;}
.ybb{bottom:645.799650px;}
.y15e{bottom:645.813300px;}
.y135{bottom:645.839850px;}
.ydd{bottom:645.934350px;}
.y18b{bottom:654.728850px;}
.y1da{bottom:659.167350px;}
.y4a{bottom:663.731850px;}
.y7f{bottom:663.740850px;}
.y112{bottom:663.749850px;}
.yba{bottom:663.795150px;}
.y15d{bottom:663.808800px;}
.y134{bottom:663.835350px;}
.ydc{bottom:663.929850px;}
.y18a{bottom:668.231850px;}
.y1f1{bottom:672.596850px;}
.y1d9{bottom:672.670350px;}
.y7e{bottom:681.736350px;}
.y48{bottom:681.745350px;}
.y9e{bottom:681.749850px;}
.yb9{bottom:681.790650px;}
.y189{bottom:681.803850px;}
.y15c{bottom:681.804300px;}
.y133{bottom:681.830850px;}
.ydb{bottom:681.925350px;}
.y1f0{bottom:686.099850px;}
.y1d8{bottom:686.173350px;}
.y49{bottom:686.227350px;}
.y9d{bottom:696.744975px;}
.y1ef{bottom:699.602850px;}
.y1d7{bottom:699.676350px;}
.y28{bottom:699.731850px;}
.y47{bottom:699.740850px;}
.y7d{bottom:699.759000px;}
.yb8{bottom:699.786150px;}
.y15b{bottom:699.799800px;}
.y132{bottom:699.826350px;}
.yda{bottom:699.920850px;}
.y9c{bottom:711.742350px;}
.y1ee{bottom:713.105850px;}
.y1d6{bottom:713.179350px;}
.y27{bottom:717.731850px;}
.y46{bottom:717.736350px;}
.y7c{bottom:717.754500px;}
.yb7{bottom:717.781650px;}
.y15a{bottom:717.795300px;}
.y188{bottom:717.808350px;}
.y131{bottom:717.821850px;}
.yd9{bottom:717.916350px;}
.y1ed{bottom:726.608850px;}
.y1d5{bottom:726.682350px;}
.y26{bottom:735.731850px;}
.y111{bottom:735.749850px;}
.y7b{bottom:735.750000px;}
.yb6{bottom:735.777150px;}
.y159{bottom:735.790800px;}
.y187{bottom:735.803850px;}
.y130{bottom:735.817350px;}
.yd8{bottom:735.911850px;}
.y1ec{bottom:740.111850px;}
.y1d4{bottom:740.185350px;}
.y1eb{bottom:753.614850px;}
.y1d3{bottom:753.688350px;}
.y25{bottom:753.731850px;}
.y44{bottom:753.745350px;}
.y7a{bottom:753.745500px;}
.yb5{bottom:753.772650px;}
.y158{bottom:753.786300px;}
.y186{bottom:753.799350px;}
.y12f{bottom:753.812850px;}
.yd7{bottom:753.907350px;}
.y45{bottom:758.227350px;}
.y1ea{bottom:767.117850px;}
.y1d2{bottom:767.192850px;}
.y24{bottom:771.731850px;}
.y43{bottom:771.740850px;}
.y79{bottom:771.741000px;}
.yb4{bottom:771.768150px;}
.y157{bottom:771.781800px;}
.y185{bottom:771.794850px;}
.y12e{bottom:771.808350px;}
.yd6{bottom:771.902850px;}
.y1e9{bottom:780.620850px;}
.y1d1{bottom:780.695850px;}
.y23{bottom:789.731850px;}
.y42{bottom:789.736350px;}
.y78{bottom:789.736500px;}
.y156{bottom:789.777300px;}
.y184{bottom:789.790350px;}
.y12d{bottom:789.803850px;}
.yd5{bottom:789.898650px;}
.y1e8{bottom:794.123850px;}
.y1d0{bottom:794.198850px;}
.y1e7{bottom:807.626850px;}
.y1cf{bottom:807.702000px;}
.y41{bottom:807.731850px;}
.y3f{bottom:807.754800px;}
.yb3{bottom:807.772650px;}
.y155{bottom:807.772800px;}
.y183{bottom:807.785850px;}
.y12c{bottom:807.799350px;}
.yd4{bottom:807.894150px;}
.y40{bottom:812.227350px;}
.y9b{bottom:820.309350px;}
.y1e6{bottom:821.129850px;}
.y1ce{bottom:821.205000px;}
.y3e{bottom:825.750300px;}
.yb2{bottom:825.768150px;}
.y110{bottom:825.768300px;}
.y182{bottom:825.781350px;}
.y12b{bottom:825.794850px;}
.yd3{bottom:825.889650px;}
.y1e5{bottom:834.632850px;}
.y1cd{bottom:834.707850px;}
.y9a{bottom:835.304475px;}
.y3d{bottom:843.745800px;}
.yb1{bottom:843.763650px;}
.y10f{bottom:843.763800px;}
.y77{bottom:843.767850px;}
.y181{bottom:843.776850px;}
.y12a{bottom:843.790350px;}
.yd2{bottom:843.885150px;}
.y1e4{bottom:848.135850px;}
.y1cc{bottom:848.210850px;}
.y99{bottom:850.301850px;}
.y5{bottom:852.512850px;}
.y1e3{bottom:861.638850px;}
.y1cb{bottom:861.714000px;}
.y3c{bottom:861.741300px;}
.yb0{bottom:861.759150px;}
.y10e{bottom:861.759300px;}
.y76{bottom:861.763350px;}
.y180{bottom:861.772350px;}
.y129{bottom:861.785850px;}
.yd1{bottom:861.880650px;}
.y1e2{bottom:875.141850px;}
.y1ca{bottom:875.216400px;}
.y3b{bottom:879.736800px;}
.yaf{bottom:879.754650px;}
.y10d{bottom:879.754800px;}
.y75{bottom:879.758850px;}
.y17f{bottom:879.767850px;}
.y128{bottom:879.781350px;}
.yd0{bottom:879.876150px;}
.y4{bottom:888.512850px;}
.y1e1{bottom:888.644850px;}
.y1c9{bottom:888.719400px;}
.y3a{bottom:897.732300px;}
.y38{bottom:897.745800px;}
.yae{bottom:897.750150px;}
.y10c{bottom:897.750300px;}
.y74{bottom:897.754350px;}
.y17e{bottom:897.763350px;}
.y127{bottom:897.776850px;}
.ycf{bottom:897.871650px;}
.y1e0{bottom:902.148450px;}
.y1c8{bottom:902.222400px;}
.y39{bottom:902.227800px;}
.y1df{bottom:915.651450px;}
.y1c7{bottom:915.725400px;}
.y37{bottom:915.741300px;}
.yad{bottom:915.745650px;}
.y10b{bottom:915.745800px;}
.y73{bottom:915.749850px;}
.y17d{bottom:915.758850px;}
.y126{bottom:915.772350px;}
.yce{bottom:915.867150px;}
.y1de{bottom:929.154450px;}
.y1c6{bottom:929.228550px;}
.y36{bottom:933.736800px;}
.yac{bottom:933.741150px;}
.y10a{bottom:933.741300px;}
.y72{bottom:933.745350px;}
.y17c{bottom:933.754350px;}
.y125{bottom:933.767850px;}
.ycd{bottom:933.862650px;}
.y3{bottom:937.268700px;}
.y1dd{bottom:942.657600px;}
.y1c5{bottom:942.731550px;}
.y35{bottom:951.732300px;}
.yab{bottom:951.736650px;}
.y109{bottom:951.736800px;}
.y71{bottom:951.740850px;}
.y17b{bottom:951.749850px;}
.y124{bottom:951.763350px;}
.ycc{bottom:951.858150px;}
.y1dc{bottom:956.160450px;}
.y1c4{bottom:956.234400px;}
.y1db{bottom:969.663600px;}
.y34{bottom:969.732300px;}
.y70{bottom:969.736350px;}
.y1c3{bottom:969.737400px;}
.y17a{bottom:969.745350px;}
.y123{bottom:969.758850px;}
.ycb{bottom:969.853650px;}
.y2{bottom:996.732300px;}
.ha{height:25.405974px;}
.h12{height:26.835300px;}
.h1a{height:31.881000px;}
.h2{height:33.345000px;}
.h9{height:33.480000px;}
.he{height:33.894000px;}
.h3{height:34.464000px;}
.hc{height:34.470840px;}
.hf{height:36.582000px;}
.h6{height:40.014000px;}
.hd{height:40.176000px;}
.h10{height:40.252950px;}
.h11{height:40.258437px;}
.h17{height:40.863898px;}
.h7{height:43.578000px;}
.h13{height:44.546400px;}
.h8{height:44.640000px;}
.hb{height:47.034000px;}
.h14{height:49.233830px;}
.h15{height:49.238346px;}
.h16{height:57.603350px;}
.h19{height:61.173562px;}
.h1b{height:92.668026px;}
.h5{height:99.480000px;}
.h4{height:170.218238px;}
.h18{height:221.503853px;}
.h0{height:1041.732000px;}
.h1{height:1041.750000px;}
.w2{width:111.486000px;}
.w1{width:714.000000px;}
.w0{width:714.330000px;}
.x0{left:0.000000px;}
.x8{left:38.267700px;}
.x17{left:44.645700px;}
.x3{left:57.401550px;}
.x2{left:59.527650px;}
.x18{left:67.150200px;}
.x19{left:68.338200px;}
.x11{left:69.928950px;}
.x12{left:77.954400px;}
.x4{left:79.027050px;}
.xf{left:95.939400px;}
.x2c{left:102.123000px;}
.x10{left:104.511750px;}
.xb{left:111.282600px;}
.xc{left:115.645800px;}
.x26{left:141.465831px;}
.x5{left:153.070500px;}
.x1d{left:195.133500px;}
.x21{left:209.261040px;}
.x1b{left:211.407000px;}
.x28{left:212.481000px;}
.x24{left:218.204860px;}
.x25{left:236.281085px;}
.x2a{left:245.013000px;}
.x13{left:286.348500px;}
.x1c{left:293.878500px;}
.x9{left:302.682000px;}
.xa{left:306.594000px;}
.xe{left:319.129500px;}
.xd{left:330.978000px;}
.x2b{left:341.947500px;}
.x14{left:355.538100px;}
.x23{left:367.588500px;}
.x7{left:374.173500px;}
.x6{left:376.795500px;}
.x29{left:394.834500px;}
.x1a{left:396.280500px;}
.x1e{left:417.859500px;}
.x1f{left:421.080000px;}
.x15{left:449.725500px;}
.x1{left:456.880500px;}
.x20{left:505.164000px;}
.x16{left:509.316000px;}
.x22{left:526.095000px;}
.x27{left:593.721000px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v4{vertical-align:-0.976000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.290667pt;}
.v1{vertical-align:15.856000pt;}
.ls6f{letter-spacing:-4.543467pt;}
.ls49{letter-spacing:-4.480000pt;}
.ls5d{letter-spacing:-2.613333pt;}
.ls5a{letter-spacing:-1.493333pt;}
.ls28{letter-spacing:-1.104000pt;}
.ls6e{letter-spacing:-0.746667pt;}
.ls63{letter-spacing:-0.672000pt;}
.ls34{letter-spacing:-0.624000pt;}
.ls5b{letter-spacing:-0.560000pt;}
.ls15{letter-spacing:-0.559680pt;}
.ls31{letter-spacing:-0.532800pt;}
.ls1e{letter-spacing:-0.503712pt;}
.ls10{letter-spacing:-0.494400pt;}
.lsf{letter-spacing:-0.489600pt;}
.ls42{letter-spacing:-0.485333pt;}
.ls2d{letter-spacing:-0.484800pt;}
.lse{letter-spacing:-0.480000pt;}
.ls40{letter-spacing:-0.373333pt;}
.ls1b{letter-spacing:-0.355200pt;}
.ls1a{letter-spacing:-0.350400pt;}
.ls19{letter-spacing:-0.340800pt;}
.ls1c{letter-spacing:-0.336000pt;}
.ls1d{letter-spacing:-0.307824pt;}
.ls20{letter-spacing:-0.279840pt;}
.ls13{letter-spacing:-0.268800pt;}
.ls17{letter-spacing:-0.264000pt;}
.ls65{letter-spacing:-0.261333pt;}
.ls11{letter-spacing:-0.259200pt;}
.ls14{letter-spacing:-0.244800pt;}
.ls16{letter-spacing:-0.240000pt;}
.ls12{letter-spacing:-0.230400pt;}
.ls1f{letter-spacing:-0.195888pt;}
.ls32{letter-spacing:-0.192000pt;}
.ls6a{letter-spacing:-0.186667pt;}
.ls55{letter-spacing:-0.166975pt;}
.ls35{letter-spacing:-0.158400pt;}
.ls18{letter-spacing:-0.139920pt;}
.ls56{letter-spacing:-0.128809pt;}
.ls72{letter-spacing:-0.112000pt;}
.ls2b{letter-spacing:-0.110400pt;}
.ls5e{letter-spacing:-0.097067pt;}
.ls2c{letter-spacing:-0.083952pt;}
.ls3b{letter-spacing:-0.078400pt;}
.ls61{letter-spacing:-0.074667pt;}
.ls47{letter-spacing:-0.059733pt;}
.ls3d{letter-spacing:-0.056000pt;}
.ls21{letter-spacing:-0.052800pt;}
.ls46{letter-spacing:-0.052267pt;}
.ls59{letter-spacing:-0.050888pt;}
.ls3a{letter-spacing:-0.048533pt;}
.ls48{letter-spacing:-0.044800pt;}
.ls25{letter-spacing:-0.044000pt;}
.ls2a{letter-spacing:-0.043200pt;}
.ls3c{letter-spacing:-0.041067pt;}
.ls29{letter-spacing:-0.038400pt;}
.ls57{letter-spacing:-0.038166pt;}
.ls38{letter-spacing:-0.037333pt;}
.ls8{letter-spacing:-0.036000pt;}
.ls33{letter-spacing:-0.033600pt;}
.lsa{letter-spacing:-0.032000pt;}
.ls3e{letter-spacing:-0.029867pt;}
.ls30{letter-spacing:-0.028800pt;}
.ls3f{letter-spacing:-0.026133pt;}
.ls2{letter-spacing:-0.024000pt;}
.ls54{letter-spacing:-0.023854pt;}
.ls43{letter-spacing:-0.022400pt;}
.lsd{letter-spacing:-0.020000pt;}
.ls27{letter-spacing:-0.019200pt;}
.ls39{letter-spacing:-0.018667pt;}
.ls24{letter-spacing:-0.016000pt;}
.ls44{letter-spacing:-0.014933pt;}
.ls6{letter-spacing:-0.014400pt;}
.ls9{letter-spacing:-0.012000pt;}
.ls41{letter-spacing:-0.011200pt;}
.ls3{letter-spacing:-0.010667pt;}
.ls5{letter-spacing:-0.009600pt;}
.lsb{letter-spacing:-0.008000pt;}
.ls37{letter-spacing:-0.007467pt;}
.ls7{letter-spacing:-0.005333pt;}
.ls4{letter-spacing:-0.004800pt;}
.ls26{letter-spacing:-0.004000pt;}
.ls45{letter-spacing:-0.003733pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.002283pt;}
.ls2f{letter-spacing:0.003733pt;}
.ls23{letter-spacing:0.004000pt;}
.ls4e{letter-spacing:0.004771pt;}
.ls58{letter-spacing:0.006361pt;}
.lsc{letter-spacing:0.009600pt;}
.ls4b{letter-spacing:0.023854pt;}
.ls22{letter-spacing:0.024000pt;}
.ls50{letter-spacing:0.031805pt;}
.ls4f{letter-spacing:0.063610pt;}
.ls4a{letter-spacing:0.066790pt;}
.ls4c{letter-spacing:0.076332pt;}
.ls4d{letter-spacing:0.081102pt;}
.ls70{letter-spacing:0.533867pt;}
.ls6c{letter-spacing:0.571200pt;}
.ls71{letter-spacing:0.795200pt;}
.ls53{letter-spacing:0.921579pt;}
.ls6b{letter-spacing:1.093867pt;}
.ls6d{letter-spacing:1.504533pt;}
.ls60{letter-spacing:2.363200pt;}
.ls68{letter-spacing:2.549867pt;}
.ls66{letter-spacing:2.587200pt;}
.ls67{letter-spacing:3.072533pt;}
.ls64{letter-spacing:3.109867pt;}
.ls5c{letter-spacing:3.259200pt;}
.ls62{letter-spacing:3.445867pt;}
.ls5f{letter-spacing:4.155200pt;}
.ls69{letter-spacing:4.565867pt;}
.ls36{letter-spacing:5.846400pt;}
.ls52{letter-spacing:20.268326pt;}
.ls2e{letter-spacing:37.856000pt;}
.ls51{letter-spacing:38.117333pt;}
.ws7b{word-spacing:-80.590726pt;}
.ws6e{word-spacing:-47.788302pt;}
.ws6b{word-spacing:-47.783532pt;}
.ws69{word-spacing:-47.773990pt;}
.ws6a{word-spacing:-47.731054pt;}
.ws71{word-spacing:-47.711971pt;}
.ws6d{word-spacing:-47.707200pt;}
.ws6c{word-spacing:-47.683346pt;}
.ws70{word-spacing:-47.578391pt;}
.ws6f{word-spacing:-47.540225pt;}
.ws8{word-spacing:-20.259187pt;}
.ws2{word-spacing:-13.056000pt;}
.ws31{word-spacing:-13.036800pt;}
.ws3f{word-spacing:-13.032000pt;}
.ws40{word-spacing:-13.027200pt;}
.ws42{word-spacing:-13.017600pt;}
.ws3a{word-spacing:-12.945600pt;}
.ws30{word-spacing:-12.912000pt;}
.ws43{word-spacing:-12.864000pt;}
.ws41{word-spacing:-12.523200pt;}
.wsa{word-spacing:-11.840000pt;}
.ws9{word-spacing:-11.829333pt;}
.ws27{word-spacing:-10.784000pt;}
.ws3{word-spacing:-10.760000pt;}
.ws44{word-spacing:-10.154667pt;}
.ws73{word-spacing:-10.124800pt;}
.ws7a{word-spacing:-10.094933pt;}
.ws74{word-spacing:-10.057600pt;}
.ws0{word-spacing:-10.000000pt;}
.ws75{word-spacing:-9.818667pt;}
.ws79{word-spacing:-9.706667pt;}
.ws77{word-spacing:-9.632000pt;}
.ws78{word-spacing:-9.408000pt;}
.ws72{word-spacing:-9.333333pt;}
.ws76{word-spacing:-9.221333pt;}
.ws84{word-spacing:-8.848000pt;}
.wse{word-spacing:-8.587200pt;}
.ws1{word-spacing:-7.611648pt;}
.ws3b{word-spacing:-7.527696pt;}
.ws32{word-spacing:-7.471728pt;}
.ws1d{word-spacing:-7.415760pt;}
.ws1e{word-spacing:-7.303824pt;}
.ws1a{word-spacing:-7.120000pt;}
.ws2e{word-spacing:-7.112000pt;}
.ws39{word-spacing:-7.051968pt;}
.ws83{word-spacing:-6.533333pt;}
.ws37{word-spacing:-6.192000pt;}
.ws36{word-spacing:-6.091200pt;}
.ws3e{word-spacing:-6.028800pt;}
.ws57{word-spacing:-5.824000pt;}
.ws56{word-spacing:-5.794133pt;}
.ws13{word-spacing:-5.760000pt;}
.ws12{word-spacing:-5.754667pt;}
.ws14{word-spacing:-5.749333pt;}
.ws35{word-spacing:-5.563200pt;}
.ws2c{word-spacing:-5.396000pt;}
.ws38{word-spacing:-5.275200pt;}
.ws21{word-spacing:-5.241600pt;}
.ws23{word-spacing:-5.236800pt;}
.wsc{word-spacing:-5.232000pt;}
.ws10{word-spacing:-5.227200pt;}
.wsf{word-spacing:-5.222400pt;}
.wsd{word-spacing:-5.217600pt;}
.ws11{word-spacing:-5.212800pt;}
.ws24{word-spacing:-5.208000pt;}
.ws22{word-spacing:-5.203200pt;}
.ws45{word-spacing:-5.198400pt;}
.ws3c{word-spacing:-5.193600pt;}
.ws3d{word-spacing:-5.188800pt;}
.ws34{word-spacing:-5.184000pt;}
.ws26{word-spacing:-5.174400pt;}
.ws25{word-spacing:-5.092800pt;}
.ws29{word-spacing:-5.088000pt;}
.wsb{word-spacing:-5.083200pt;}
.ws28{word-spacing:-5.078400pt;}
.ws82{word-spacing:-4.655467pt;}
.ws2d{word-spacing:-4.324000pt;}
.ws15{word-spacing:-4.320000pt;}
.ws1b{word-spacing:-4.316000pt;}
.ws1c{word-spacing:-4.312000pt;}
.ws18{word-spacing:-4.308000pt;}
.ws2a{word-spacing:-4.304000pt;}
.ws2f{word-spacing:-4.300000pt;}
.ws16{word-spacing:-4.296000pt;}
.ws17{word-spacing:-4.288000pt;}
.ws19{word-spacing:-4.280000pt;}
.ws2b{word-spacing:-4.276000pt;}
.ws7{word-spacing:-4.266667pt;}
.ws54{word-spacing:-4.256000pt;}
.ws55{word-spacing:-4.237333pt;}
.ws67{word-spacing:-4.073067pt;}
.ws4d{word-spacing:-4.069333pt;}
.ws60{word-spacing:-4.065600pt;}
.ws4c{word-spacing:-4.061867pt;}
.ws5c{word-spacing:-4.058133pt;}
.ws5e{word-spacing:-4.054400pt;}
.ws50{word-spacing:-4.050667pt;}
.ws5d{word-spacing:-4.046933pt;}
.ws5a{word-spacing:-4.043200pt;}
.ws59{word-spacing:-4.039467pt;}
.ws66{word-spacing:-4.035733pt;}
.ws4e{word-spacing:-4.032000pt;}
.ws53{word-spacing:-4.028267pt;}
.ws64{word-spacing:-4.024533pt;}
.ws51{word-spacing:-4.020800pt;}
.ws62{word-spacing:-4.017067pt;}
.ws61{word-spacing:-4.013333pt;}
.ws63{word-spacing:-4.009600pt;}
.ws1f{word-spacing:-4.000000pt;}
.ws5{word-spacing:-3.996000pt;}
.ws85{word-spacing:-3.994667pt;}
.ws52{word-spacing:-3.990933pt;}
.ws20{word-spacing:-3.980000pt;}
.ws6{word-spacing:-3.976000pt;}
.ws7c{word-spacing:-0.115197pt;}
.ws7d{word-spacing:-0.063610pt;}
.ws7e{word-spacing:-0.031805pt;}
.ws4{word-spacing:0.000000pt;}
.ws7f{word-spacing:0.038166pt;}
.ws80{word-spacing:0.050888pt;}
.ws68{word-spacing:6.458667pt;}
.ws4f{word-spacing:6.533333pt;}
.ws5f{word-spacing:6.757333pt;}
.ws5b{word-spacing:6.981333pt;}
.ws58{word-spacing:7.466667pt;}
.ws4b{word-spacing:8.325333pt;}
.ws81{word-spacing:9.744000pt;}
.ws33{word-spacing:10.944000pt;}
.ws65{word-spacing:17.098667pt;}
.ws47{word-spacing:18.883200pt;}
.ws4a{word-spacing:19.891200pt;}
.ws49{word-spacing:19.939200pt;}
.ws48{word-spacing:20.611200pt;}
.ws46{word-spacing:23.107200pt;}
._2{margin-left:-1130.108000pt;}
._10{margin-left:-36.182400pt;}
._12{margin-left:-33.686400pt;}
._11{margin-left:-31.958400pt;}
._b{margin-left:-24.000000pt;}
._13{margin-left:-16.023467pt;}
._15{margin-left:-15.101683pt;}
._f{margin-left:-13.056000pt;}
._18{margin-left:-11.379733pt;}
._17{margin-left:-9.893333pt;}
._9{margin-left:-8.960000pt;}
._e{margin-left:-7.824000pt;}
._8{margin-left:-6.177398pt;}
._7{margin-left:-5.288000pt;}
._0{margin-left:-4.240000pt;}
._4{margin-left:-2.507549pt;}
._1{margin-left:-1.000000pt;}
._6{width:1.123366pt;}
._5{width:2.645333pt;}
._3{width:3.595549pt;}
._16{width:10.528000pt;}
._14{width:11.685333pt;}
._c{width:38.592000pt;}
._d{width:62.352000pt;}
._a{width:284.763467pt;}
.fs7{font-size:23.320000pt;}
.fs5{font-size:27.984000pt;}
.fsa{font-size:31.804800pt;}
.fs8{font-size:37.333333pt;}
.fs0{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs9{font-size:47.707200pt;}
.fs4{font-size:48.000000pt;}
.fsb{font-size:52.795733pt;}
.fs6{font-size:53.333333pt;}
.fsc{font-size:63.609600pt;}
.fsf{font-size:66.637867pt;}
.fsd{font-size:74.422933pt;}
.fs3{font-size:106.666667pt;}
.fs10{font-size:115.197333pt;}
.fs2{font-size:182.515200pt;}
.fse{font-size:241.289600pt;}
.y0{bottom:0.000000pt;}
.y1f6{bottom:7.746533pt;}
.y1{bottom:30.294533pt;}
.y1b5{bottom:77.869200pt;}
.y33{bottom:77.990533pt;}
.y6f{bottom:77.991867pt;}
.y179{bottom:77.999867pt;}
.y97{bottom:78.011867pt;}
.yfb{bottom:78.019867pt;}
.y154{bottom:78.023867pt;}
.y108{bottom:78.028267pt;}
.y1b4{bottom:89.871867pt;}
.y32{bottom:91.321533pt;}
.y1f4{bottom:91.557869pt;}
.y6e{bottom:93.987867pt;}
.y178{bottom:93.995867pt;}
.y96{bottom:94.007867pt;}
.yfa{bottom:94.015867pt;}
.y153{bottom:94.019867pt;}
.y107{bottom:94.024267pt;}
.y1b3{bottom:101.874533pt;}
.y31{bottom:104.650533pt;}
.y6d{bottom:109.983867pt;}
.y177{bottom:109.991867pt;}
.y22{bottom:110.003867pt;}
.yf9{bottom:110.011867pt;}
.y152{bottom:110.015867pt;}
.y106{bottom:110.020267pt;}
.y1b2{bottom:113.877200pt;}
.y1f3{bottom:119.329200pt;}
.y1b1{bottom:125.879867pt;}
.y176{bottom:125.987867pt;}
.y21{bottom:125.999867pt;}
.yf8{bottom:126.007867pt;}
.y151{bottom:126.011867pt;}
.y105{bottom:126.016267pt;}
.y6b{bottom:126.024667pt;}
.y6c{bottom:129.979867pt;}
.y1b0{bottom:137.882667pt;}
.y175{bottom:141.983867pt;}
.y20{bottom:141.995867pt;}
.yf7{bottom:142.003867pt;}
.y150{bottom:142.007867pt;}
.y104{bottom:142.012267pt;}
.y6a{bottom:142.020667pt;}
.y1af{bottom:149.885333pt;}
.y174{bottom:157.988667pt;}
.y1f{bottom:157.991867pt;}
.yf6{bottom:157.999867pt;}
.y14f{bottom:158.003867pt;}
.y103{bottom:158.008267pt;}
.y69{bottom:158.016667pt;}
.y1f2{bottom:159.309333pt;}
.y1ae{bottom:161.888000pt;}
.y1ad{bottom:173.890667pt;}
.y173{bottom:173.984667pt;}
.y1e{bottom:173.987867pt;}
.yf5{bottom:173.995867pt;}
.y14e{bottom:173.999867pt;}
.y102{bottom:174.004267pt;}
.y68{bottom:174.012667pt;}
.y1ac{bottom:185.893333pt;}
.y95{bottom:189.983867pt;}
.yf4{bottom:189.991867pt;}
.y14d{bottom:189.995867pt;}
.y1d{bottom:189.999867pt;}
.y101{bottom:190.000267pt;}
.y122{bottom:190.003867pt;}
.y67{bottom:190.008667pt;}
.y172{bottom:190.035867pt;}
.y1ab{bottom:197.896000pt;}
.yf3{bottom:205.987867pt;}
.y30{bottom:205.988200pt;}
.y14c{bottom:205.991867pt;}
.y1c{bottom:205.995867pt;}
.y100{bottom:205.996267pt;}
.y121{bottom:205.999867pt;}
.y66{bottom:206.004667pt;}
.y171{bottom:206.031867pt;}
.ya7{bottom:207.382533pt;}
.y1aa{bottom:209.898667pt;}
.y94{bottom:209.979867pt;}
.y1f5{bottom:215.852000pt;}
.y2f{bottom:219.317200pt;}
.ya6{bottom:220.711533pt;}
.y1a9{bottom:221.901333pt;}
.y14b{bottom:221.987867pt;}
.y1b{bottom:221.991867pt;}
.yff{bottom:221.992267pt;}
.yf2{bottom:221.995867pt;}
.y65{bottom:222.000667pt;}
.y170{bottom:222.027867pt;}
.y1f7{bottom:223.598533pt;}
.y1a8{bottom:233.904000pt;}
.ya5{bottom:234.042533pt;}
.y14a{bottom:237.983867pt;}
.y1a{bottom:237.987867pt;}
.yfe{bottom:237.988267pt;}
.yf1{bottom:237.991867pt;}
.y64{bottom:237.996667pt;}
.y16f{bottom:238.023867pt;}
.y1a7{bottom:245.906667pt;}
.y93{bottom:253.983867pt;}
.yfd{bottom:253.984267pt;}
.yf0{bottom:253.987867pt;}
.y63{bottom:253.992667pt;}
.y19{bottom:254.003867pt;}
.y91{bottom:254.004267pt;}
.y149{bottom:254.007867pt;}
.y16e{bottom:254.019867pt;}
.y1a6{bottom:257.909333pt;}
.y92{bottom:257.979867pt;}
.y1a5{bottom:269.912000pt;}
.yfc{bottom:269.983867pt;}
.y62{bottom:269.988667pt;}
.y18{bottom:269.999867pt;}
.y90{bottom:270.000267pt;}
.y148{bottom:270.003867pt;}
.y16d{bottom:270.015867pt;}
.yef{bottom:270.227867pt;}
.y1a4{bottom:281.914667pt;}
.y120{bottom:285.983867pt;}
.y61{bottom:285.984667pt;}
.y17{bottom:285.995867pt;}
.y8f{bottom:285.996267pt;}
.y147{bottom:285.999867pt;}
.y16c{bottom:286.011867pt;}
.yee{bottom:286.223867pt;}
.y1a3{bottom:293.917333pt;}
.y16{bottom:301.991867pt;}
.y8e{bottom:301.992267pt;}
.y146{bottom:301.995867pt;}
.y16b{bottom:302.007867pt;}
.y11f{bottom:302.031867pt;}
.y60{bottom:302.032267pt;}
.yca{bottom:302.088133pt;}
.yed{bottom:302.219867pt;}
.y1a2{bottom:305.920000pt;}
.y1a1{bottom:317.922667pt;}
.y15{bottom:317.987867pt;}
.y8d{bottom:317.988267pt;}
.y145{bottom:317.991867pt;}
.y16a{bottom:318.003867pt;}
.y11e{bottom:318.027867pt;}
.y5f{bottom:318.028267pt;}
.yc9{bottom:318.084133pt;}
.yec{bottom:318.215867pt;}
.y1a0{bottom:329.925333pt;}
.y14{bottom:333.983867pt;}
.y8c{bottom:333.984267pt;}
.y144{bottom:333.987867pt;}
.y2e{bottom:333.990533pt;}
.y169{bottom:333.999867pt;}
.y11d{bottom:334.023867pt;}
.y5e{bottom:334.024267pt;}
.yc8{bottom:334.080133pt;}
.yeb{bottom:334.211867pt;}
.ya4{bottom:339.429333pt;}
.yaa{bottom:339.436000pt;}
.y19f{bottom:341.928000pt;}
.y2d{bottom:347.321533pt;}
.y1c2{bottom:347.891867pt;}
.y143{bottom:349.983867pt;}
.y13{bottom:349.995867pt;}
.y8b{bottom:350.004267pt;}
.y11c{bottom:350.019867pt;}
.y5d{bottom:350.020267pt;}
.yc7{bottom:350.076133pt;}
.yea{bottom:350.207867pt;}
.ya3{bottom:352.762667pt;}
.ya9{bottom:352.767000pt;}
.y19e{bottom:353.930667pt;}
.y2c{bottom:360.650533pt;}
.y19d{bottom:365.933333pt;}
.y12{bottom:365.991867pt;}
.y8a{bottom:366.000267pt;}
.y11b{bottom:366.015867pt;}
.y5c{bottom:366.016267pt;}
.y1c1{bottom:366.021333pt;}
.yc6{bottom:366.072133pt;}
.ya2{bottom:366.096000pt;}
.y142{bottom:366.131867pt;}
.ye9{bottom:366.203867pt;}
.y19c{bottom:377.935867pt;}
.y1bf{bottom:381.921663pt;}
.y1c0{bottom:381.923867pt;}
.y11{bottom:381.987867pt;}
.y89{bottom:381.996267pt;}
.y11a{bottom:382.011867pt;}
.y5b{bottom:382.012267pt;}
.yc5{bottom:382.068133pt;}
.y141{bottom:382.127867pt;}
.ye8{bottom:382.199867pt;}
.y19b{bottom:389.938533pt;}
.y168{bottom:397.983867pt;}
.y10{bottom:397.991867pt;}
.y88{bottom:397.992267pt;}
.y119{bottom:398.007867pt;}
.y5a{bottom:398.008267pt;}
.yc4{bottom:398.064133pt;}
.y140{bottom:398.123867pt;}
.ye7{bottom:398.195867pt;}
.y1be{bottom:400.209423pt;}
.y19a{bottom:401.941333pt;}
.y199{bottom:413.944000pt;}
.yf{bottom:413.987867pt;}
.y87{bottom:413.988267pt;}
.y118{bottom:414.003867pt;}
.y59{bottom:414.004267pt;}
.yc3{bottom:414.060133pt;}
.y167{bottom:414.083867pt;}
.y13f{bottom:414.119867pt;}
.y1bd{bottom:418.180725pt;}
.y198{bottom:425.946667pt;}
.y86{bottom:429.984267pt;}
.y117{bottom:429.999867pt;}
.y58{bottom:430.000267pt;}
.ye{bottom:430.015867pt;}
.y166{bottom:430.079867pt;}
.y13e{bottom:430.115867pt;}
.ye6{bottom:430.199867pt;}
.y1bc{bottom:436.786533pt;}
.y197{bottom:437.949333pt;}
.y85{bottom:445.995867pt;}
.y57{bottom:445.996267pt;}
.yd{bottom:446.011867pt;}
.yc2{bottom:446.064133pt;}
.y165{bottom:446.075867pt;}
.y13d{bottom:446.111867pt;}
.ye5{bottom:446.195867pt;}
.y196{bottom:449.952000pt;}
.y1bb{bottom:454.119867pt;}
.y1ba{bottom:454.123325pt;}
.y195{bottom:461.954533pt;}
.ya8{bottom:461.983867pt;}
.y98{bottom:461.988267pt;}
.y2b{bottom:461.990533pt;}
.y84{bottom:461.991867pt;}
.y56{bottom:461.992267pt;}
.yc{bottom:462.007867pt;}
.yc1{bottom:462.060133pt;}
.y164{bottom:462.071867pt;}
.y13c{bottom:462.107867pt;}
.ye4{bottom:462.191867pt;}
.y1b8{bottom:468.590533pt;}
.y1b9{bottom:471.294533pt;}
.y194{bottom:473.957200pt;}
.y2a{bottom:475.321533pt;}
.y83{bottom:477.987867pt;}
.y55{bottom:477.988267pt;}
.yb{bottom:478.003867pt;}
.yc0{bottom:478.056133pt;}
.y163{bottom:478.067867pt;}
.y13b{bottom:478.103867pt;}
.ye3{bottom:478.187867pt;}
.y1b7{bottom:482.902647pt;}
.ya1{bottom:484.962533pt;}
.y193{bottom:485.959867pt;}
.y29{bottom:488.650533pt;}
.y82{bottom:493.983867pt;}
.y54{bottom:493.984267pt;}
.ya{bottom:493.999867pt;}
.ybf{bottom:494.052133pt;}
.y162{bottom:494.063867pt;}
.y13a{bottom:494.099867pt;}
.ye2{bottom:494.183867pt;}
.y1b6{bottom:497.216000pt;}
.y192{bottom:497.962667pt;}
.ya0{bottom:498.293533pt;}
.y191{bottom:509.965200pt;}
.y53{bottom:509.983867pt;}
.y51{bottom:509.991867pt;}
.y9{bottom:509.995867pt;}
.ybe{bottom:510.048133pt;}
.y161{bottom:510.060000pt;}
.y139{bottom:510.095867pt;}
.ye1{bottom:510.179867pt;}
.y9f{bottom:511.622533pt;}
.y52{bottom:513.980000pt;}
.y190{bottom:521.967867pt;}
.y50{bottom:525.987867pt;}
.y8{bottom:525.991867pt;}
.y116{bottom:525.995867pt;}
.y138{bottom:526.091867pt;}
.ye0{bottom:526.175867pt;}
.y18f{bottom:533.970533pt;}
.y4f{bottom:541.983867pt;}
.y7{bottom:541.987867pt;}
.y115{bottom:541.991867pt;}
.y4d{bottom:541.995867pt;}
.ybd{bottom:542.052133pt;}
.y160{bottom:542.064267pt;}
.y137{bottom:542.087867pt;}
.ydf{bottom:542.171867pt;}
.y18e{bottom:545.973200pt;}
.y4e{bottom:545.980000pt;}
.y18d{bottom:557.975867pt;}
.y6{bottom:557.983867pt;}
.y114{bottom:557.987867pt;}
.y4c{bottom:557.991867pt;}
.y81{bottom:557.999867pt;}
.ybc{bottom:558.048133pt;}
.y15f{bottom:558.060267pt;}
.y136{bottom:558.083867pt;}
.yde{bottom:558.167867pt;}
.y18c{bottom:569.978533pt;}
.y4b{bottom:573.987867pt;}
.y80{bottom:573.995867pt;}
.y113{bottom:574.003867pt;}
.ybb{bottom:574.044133pt;}
.y15e{bottom:574.056267pt;}
.y135{bottom:574.079867pt;}
.ydd{bottom:574.163867pt;}
.y18b{bottom:581.981200pt;}
.y1da{bottom:585.926533pt;}
.y4a{bottom:589.983867pt;}
.y7f{bottom:589.991867pt;}
.y112{bottom:589.999867pt;}
.yba{bottom:590.040133pt;}
.y15d{bottom:590.052267pt;}
.y134{bottom:590.075867pt;}
.ydc{bottom:590.159867pt;}
.y18a{bottom:593.983867pt;}
.y1f1{bottom:597.863867pt;}
.y1d9{bottom:597.929200pt;}
.y7e{bottom:605.987867pt;}
.y48{bottom:605.995867pt;}
.y9e{bottom:605.999867pt;}
.yb9{bottom:606.036133pt;}
.y189{bottom:606.047867pt;}
.y15c{bottom:606.048267pt;}
.y133{bottom:606.071867pt;}
.ydb{bottom:606.155867pt;}
.y1f0{bottom:609.866533pt;}
.y1d8{bottom:609.931867pt;}
.y49{bottom:609.979867pt;}
.y9d{bottom:619.328867pt;}
.y1ef{bottom:621.869200pt;}
.y1d7{bottom:621.934533pt;}
.y28{bottom:621.983867pt;}
.y47{bottom:621.991867pt;}
.y7d{bottom:622.008000pt;}
.yb8{bottom:622.032133pt;}
.y15b{bottom:622.044267pt;}
.y132{bottom:622.067867pt;}
.yda{bottom:622.151867pt;}
.y9c{bottom:632.659867pt;}
.y1ee{bottom:633.871867pt;}
.y1d6{bottom:633.937200pt;}
.y27{bottom:637.983867pt;}
.y46{bottom:637.987867pt;}
.y7c{bottom:638.004000pt;}
.yb7{bottom:638.028133pt;}
.y15a{bottom:638.040267pt;}
.y188{bottom:638.051867pt;}
.y131{bottom:638.063867pt;}
.yd9{bottom:638.147867pt;}
.y1ed{bottom:645.874533pt;}
.y1d5{bottom:645.939867pt;}
.y26{bottom:653.983867pt;}
.y111{bottom:653.999867pt;}
.y7b{bottom:654.000000pt;}
.yb6{bottom:654.024133pt;}
.y159{bottom:654.036267pt;}
.y187{bottom:654.047867pt;}
.y130{bottom:654.059867pt;}
.yd8{bottom:654.143867pt;}
.y1ec{bottom:657.877200pt;}
.y1d4{bottom:657.942533pt;}
.y1eb{bottom:669.879867pt;}
.y1d3{bottom:669.945200pt;}
.y25{bottom:669.983867pt;}
.y44{bottom:669.995867pt;}
.y7a{bottom:669.996000pt;}
.yb5{bottom:670.020133pt;}
.y158{bottom:670.032267pt;}
.y186{bottom:670.043867pt;}
.y12f{bottom:670.055867pt;}
.yd7{bottom:670.139867pt;}
.y45{bottom:673.979867pt;}
.y1ea{bottom:681.882533pt;}
.y1d2{bottom:681.949200pt;}
.y24{bottom:685.983867pt;}
.y43{bottom:685.991867pt;}
.y79{bottom:685.992000pt;}
.yb4{bottom:686.016133pt;}
.y157{bottom:686.028267pt;}
.y185{bottom:686.039867pt;}
.y12e{bottom:686.051867pt;}
.yd6{bottom:686.135867pt;}
.y1e9{bottom:693.885200pt;}
.y1d1{bottom:693.951867pt;}
.y23{bottom:701.983867pt;}
.y42{bottom:701.987867pt;}
.y78{bottom:701.988000pt;}
.y156{bottom:702.024267pt;}
.y184{bottom:702.035867pt;}
.y12d{bottom:702.047867pt;}
.yd5{bottom:702.132133pt;}
.y1e8{bottom:705.887867pt;}
.y1d0{bottom:705.954533pt;}
.y1e7{bottom:717.890533pt;}
.y1cf{bottom:717.957333pt;}
.y41{bottom:717.983867pt;}
.y3f{bottom:718.004267pt;}
.yb3{bottom:718.020133pt;}
.y155{bottom:718.020267pt;}
.y183{bottom:718.031867pt;}
.y12c{bottom:718.043867pt;}
.yd4{bottom:718.128133pt;}
.y40{bottom:721.979867pt;}
.y9b{bottom:729.163867pt;}
.y1e6{bottom:729.893200pt;}
.y1ce{bottom:729.960000pt;}
.y3e{bottom:734.000267pt;}
.yb2{bottom:734.016133pt;}
.y110{bottom:734.016267pt;}
.y182{bottom:734.027867pt;}
.y12b{bottom:734.039867pt;}
.yd3{bottom:734.124133pt;}
.y1e5{bottom:741.895867pt;}
.y1cd{bottom:741.962533pt;}
.y9a{bottom:742.492867pt;}
.y3d{bottom:749.996267pt;}
.yb1{bottom:750.012133pt;}
.y10f{bottom:750.012267pt;}
.y77{bottom:750.015867pt;}
.y181{bottom:750.023867pt;}
.y12a{bottom:750.035867pt;}
.yd2{bottom:750.120133pt;}
.y1e4{bottom:753.898533pt;}
.y1cc{bottom:753.965200pt;}
.y99{bottom:755.823867pt;}
.y5{bottom:757.789200pt;}
.y1e3{bottom:765.901200pt;}
.y1cb{bottom:765.968000pt;}
.y3c{bottom:765.992267pt;}
.yb0{bottom:766.008133pt;}
.y10e{bottom:766.008267pt;}
.y76{bottom:766.011867pt;}
.y180{bottom:766.019867pt;}
.y129{bottom:766.031867pt;}
.yd1{bottom:766.116133pt;}
.y1e2{bottom:777.903867pt;}
.y1ca{bottom:777.970133pt;}
.y3b{bottom:781.988267pt;}
.yaf{bottom:782.004133pt;}
.y10d{bottom:782.004267pt;}
.y75{bottom:782.007867pt;}
.y17f{bottom:782.015867pt;}
.y128{bottom:782.027867pt;}
.yd0{bottom:782.112133pt;}
.y4{bottom:789.789200pt;}
.y1e1{bottom:789.906533pt;}
.y1c9{bottom:789.972800pt;}
.y3a{bottom:797.984267pt;}
.y38{bottom:797.996267pt;}
.yae{bottom:798.000133pt;}
.y10c{bottom:798.000267pt;}
.y74{bottom:798.003867pt;}
.y17e{bottom:798.011867pt;}
.y127{bottom:798.023867pt;}
.ycf{bottom:798.108133pt;}
.y1e0{bottom:801.909733pt;}
.y1c8{bottom:801.975467pt;}
.y39{bottom:801.980267pt;}
.y1df{bottom:813.912400pt;}
.y1c7{bottom:813.978133pt;}
.y37{bottom:813.992267pt;}
.yad{bottom:813.996133pt;}
.y10b{bottom:813.996267pt;}
.y73{bottom:813.999867pt;}
.y17d{bottom:814.007867pt;}
.y126{bottom:814.019867pt;}
.yce{bottom:814.104133pt;}
.y1de{bottom:825.915067pt;}
.y1c6{bottom:825.980933pt;}
.y36{bottom:829.988267pt;}
.yac{bottom:829.992133pt;}
.y10a{bottom:829.992267pt;}
.y72{bottom:829.995867pt;}
.y17c{bottom:830.003867pt;}
.y125{bottom:830.015867pt;}
.ycd{bottom:830.100133pt;}
.y3{bottom:833.127733pt;}
.y1dd{bottom:837.917867pt;}
.y1c5{bottom:837.983600pt;}
.y35{bottom:845.984267pt;}
.yab{bottom:845.988133pt;}
.y109{bottom:845.988267pt;}
.y71{bottom:845.991867pt;}
.y17b{bottom:845.999867pt;}
.y124{bottom:846.011867pt;}
.ycc{bottom:846.096133pt;}
.y1dc{bottom:849.920400pt;}
.y1c4{bottom:849.986133pt;}
.y1db{bottom:861.923200pt;}
.y34{bottom:861.984267pt;}
.y70{bottom:861.987867pt;}
.y1c3{bottom:861.988800pt;}
.y17a{bottom:861.995867pt;}
.y123{bottom:862.007867pt;}
.ycb{bottom:862.092133pt;}
.y2{bottom:885.984267pt;}
.ha{height:22.583088pt;}
.h12{height:23.853600pt;}
.h1a{height:28.338667pt;}
.h2{height:29.640000pt;}
.h9{height:29.760000pt;}
.he{height:30.128000pt;}
.h3{height:30.634667pt;}
.hc{height:30.640747pt;}
.hf{height:32.517333pt;}
.h6{height:35.568000pt;}
.hd{height:35.712000pt;}
.h10{height:35.780400pt;}
.h11{height:35.785277pt;}
.h17{height:36.323465pt;}
.h7{height:38.736000pt;}
.h13{height:39.596800pt;}
.h8{height:39.680000pt;}
.hb{height:41.808000pt;}
.h14{height:43.763405pt;}
.h15{height:43.767419pt;}
.h16{height:51.202978pt;}
.h19{height:54.376499pt;}
.h1b{height:82.371579pt;}
.h5{height:88.426667pt;}
.h4{height:151.305101pt;}
.h18{height:196.892314pt;}
.h0{height:925.984000pt;}
.h1{height:926.000000pt;}
.w2{width:99.098667pt;}
.w1{width:634.666667pt;}
.w0{width:634.960000pt;}
.x0{left:0.000000pt;}
.x8{left:34.015733pt;}
.x17{left:39.685067pt;}
.x3{left:51.023600pt;}
.x2{left:52.913467pt;}
.x18{left:59.689067pt;}
.x19{left:60.745067pt;}
.x11{left:62.159067pt;}
.x12{left:69.292800pt;}
.x4{left:70.246267pt;}
.xf{left:85.279467pt;}
.x2c{left:90.776000pt;}
.x10{left:92.899333pt;}
.xb{left:98.917867pt;}
.xc{left:102.796267pt;}
.x26{left:125.747405pt;}
.x5{left:136.062667pt;}
.x1d{left:173.452000pt;}
.x21{left:186.009813pt;}
.x1b{left:187.917333pt;}
.x28{left:188.872000pt;}
.x24{left:193.959875pt;}
.x25{left:210.027631pt;}
.x2a{left:217.789333pt;}
.x13{left:254.532000pt;}
.x1c{left:261.225333pt;}
.x9{left:269.050667pt;}
.xa{left:272.528000pt;}
.xe{left:283.670667pt;}
.xd{left:294.202667pt;}
.x2b{left:303.953333pt;}
.x14{left:316.033867pt;}
.x23{left:326.745333pt;}
.x7{left:332.598667pt;}
.x6{left:334.929333pt;}
.x29{left:350.964000pt;}
.x1a{left:352.249333pt;}
.x1e{left:371.430667pt;}
.x1f{left:374.293333pt;}
.x15{left:399.756000pt;}
.x1{left:406.116000pt;}
.x20{left:449.034667pt;}
.x16{left:452.725333pt;}
.x22{left:467.640000pt;}
.x27{left:527.752000pt;}
}




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