
    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_1e0fdf70da02e35e9f9663c1.woff')format("woff");}.ff1{font-family:ff1;line-height:1.105957;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_62b0ce5a10113983e9ea063b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_7a28c144f275d2d53ea73ef0.woff')format("woff");}.ff3{font-family:ff3;line-height:1.099609;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_f0acc7ba5bce437030c59f7f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.182129;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_b2f5149f7bfa522be0c017ba.woff')format("woff");}.ff5{font-family:ff5;line-height:0.922852;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_7b490fac7ede40368676d57d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.864000;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_fe9974fe57675c8817eae260.woff')format("woff");}.ff7{font-family:ff7;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_942b90d295e0730e4260ca4e.woff')format("woff");}.ff8{font-family:ff8;line-height:0.921000;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_7c347951bef45cc1fc430ade.woff')format("woff");}.ff9{font-family:ff9;line-height:0.651000;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_df2f8a72bb07be2a045dec28.woff')format("woff");}.ffa{font-family:ffa;line-height:1.105957;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_f2bff7ff170747dd5d3380ff.woff')format("woff");}.ffb{font-family:ffb;line-height:1.082520;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:-16.974000px;}
.v3{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.974000px;}
.ls5e{letter-spacing:-6.666000px;}
.ls57{letter-spacing:-6.072000px;}
.ls53{letter-spacing:-5.589000px;}
.ls40{letter-spacing:-5.451000px;}
.ls54{letter-spacing:-5.382000px;}
.ls4d{letter-spacing:-4.899000px;}
.ls4b{letter-spacing:-4.347000px;}
.ls79{letter-spacing:-4.221000px;}
.ls46{letter-spacing:-4.140000px;}
.ls7{letter-spacing:-3.960000px;}
.ls10{letter-spacing:-3.900000px;}
.ls4a{letter-spacing:-3.312000px;}
.ls59{letter-spacing:-3.240000px;}
.ls27{letter-spacing:-3.159000px;}
.ls7c{letter-spacing:-2.772000px;}
.ls7f{letter-spacing:-2.520000px;}
.ls42{letter-spacing:-2.484000px;}
.ls3f{letter-spacing:-2.346000px;}
.ls52{letter-spacing:-2.277000px;}
.ls30{letter-spacing:-2.139000px;}
.ls48{letter-spacing:-2.070000px;}
.ls17{letter-spacing:-1.932000px;}
.ls1d{letter-spacing:-1.863000px;}
.ls43{letter-spacing:-1.794000px;}
.ls12{letter-spacing:-1.725000px;}
.ls3c{letter-spacing:-1.656000px;}
.ls2f{letter-spacing:-1.587000px;}
.ls39{letter-spacing:-1.518000px;}
.ls80{letter-spacing:-1.512000px;}
.ls5c{letter-spacing:-1.452000px;}
.ls1c{letter-spacing:-1.449000px;}
.ls3b{letter-spacing:-1.380000px;}
.ls13{letter-spacing:-1.311000px;}
.ls6d{letter-spacing:-1.197000px;}
.ls5d{letter-spacing:-1.188000px;}
.ls37{letter-spacing:-1.173000px;}
.ls1b{letter-spacing:-1.104000px;}
.ls38{letter-spacing:-1.035000px;}
.ls78{letter-spacing:-1.008000px;}
.ls61{letter-spacing:-0.972000px;}
.ls3d{letter-spacing:-0.966000px;}
.ls1a{letter-spacing:-0.897000px;}
.ls11{letter-spacing:-0.828000px;}
.ls26{letter-spacing:-0.825000px;}
.ls68{letter-spacing:-0.819000px;}
.ls1f{letter-spacing:-0.759000px;}
.ls5b{letter-spacing:-0.726000px;}
.ls63{letter-spacing:-0.693000px;}
.ls1e{letter-spacing:-0.690000px;}
.ls5{letter-spacing:-0.660000px;}
.ls20{letter-spacing:-0.621000px;}
.ls6{letter-spacing:-0.600000px;}
.ls65{letter-spacing:-0.567000px;}
.ls51{letter-spacing:-0.552000px;}
.ls2a{letter-spacing:-0.483000px;}
.ls4{letter-spacing:-0.480000px;}
.ls66{letter-spacing:-0.441000px;}
.ls16{letter-spacing:-0.414000px;}
.ls6c{letter-spacing:-0.378000px;}
.ls3e{letter-spacing:-0.345000px;}
.ls67{letter-spacing:-0.315000px;}
.ls47{letter-spacing:-0.276000px;}
.ls32{letter-spacing:-0.260772px;}
.ls76{letter-spacing:-0.252000px;}
.ls24{letter-spacing:-0.239040px;}
.ls3a{letter-spacing:-0.207000px;}
.ls9{letter-spacing:-0.180000px;}
.ls4c{letter-spacing:-0.138000px;}
.ls77{letter-spacing:-0.126000px;}
.ls22{letter-spacing:-0.119520px;}
.ls5f{letter-spacing:-0.069000px;}
.ls33{letter-spacing:-0.052154px;}
.ls1{letter-spacing:0.000000px;}
.ls2e{letter-spacing:0.052154px;}
.ls19{letter-spacing:0.059760px;}
.ls28{letter-spacing:0.081000px;}
.ls21{letter-spacing:0.119520px;}
.ls6a{letter-spacing:0.126000px;}
.ls29{letter-spacing:0.138000px;}
.ls2d{letter-spacing:0.156463px;}
.ls62{letter-spacing:0.162000px;}
.ls56{letter-spacing:0.207000px;}
.ls34{letter-spacing:0.312926px;}
.ls2b{letter-spacing:0.414000px;}
.ls31{letter-spacing:0.552000px;}
.ls6e{letter-spacing:0.630000px;}
.ls23{letter-spacing:0.717120px;}
.ls72{letter-spacing:0.768000px;}
.ls7e{letter-spacing:0.945000px;}
.ls49{letter-spacing:1.035000px;}
.ls41{letter-spacing:1.104000px;}
.ls60{letter-spacing:1.122000px;}
.ls7d{letter-spacing:1.197000px;}
.lsb{letter-spacing:1.260000px;}
.lsc{letter-spacing:1.440000px;}
.ls14{letter-spacing:1.587000px;}
.ls58{letter-spacing:1.725000px;}
.ls15{letter-spacing:1.794000px;}
.ls36{letter-spacing:2.362500px;}
.ls50{letter-spacing:2.391000px;}
.lsf{letter-spacing:2.400000px;}
.ls45{letter-spacing:2.493000px;}
.ls74{letter-spacing:3.216000px;}
.ls8{letter-spacing:3.696000px;}
.ls81{letter-spacing:3.720000px;}
.lsd{letter-spacing:4.200000px;}
.ls4f{letter-spacing:4.407000px;}
.ls64{letter-spacing:4.599000px;}
.lsa{letter-spacing:5.760000px;}
.ls6b{letter-spacing:5.859000px;}
.ls3{letter-spacing:5.880000px;}
.ls7a{letter-spacing:5.922000px;}
.ls7b{letter-spacing:5.985000px;}
.ls2{letter-spacing:6.000000px;}
.ls69{letter-spacing:6.300000px;}
.ls75{letter-spacing:7.056000px;}
.ls71{letter-spacing:7.068000px;}
.ls70{letter-spacing:11.058000px;}
.ls73{letter-spacing:17.160000px;}
.ls25{letter-spacing:474.013800px;}
.ls6f{letter-spacing:474.216000px;}
.ls4e{letter-spacing:474.651000px;}
.ls5a{letter-spacing:474.681000px;}
.ls35{letter-spacing:474.951000px;}
.lse{letter-spacing:480.636000px;}
.ls18{letter-spacing:952.524000px;}
.ls44{letter-spacing:953.022000px;}
.ls55{letter-spacing:955.644000px;}
.ls0{letter-spacing:959.694000px;}
.ls2c{letter-spacing:961.674000px;}
.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;}
}
.ws74{word-spacing:-22.923000px;}
.ws2b{word-spacing:-22.842000px;}
.ws0{word-spacing:-22.740000px;}
.ws1{word-spacing:-22.620000px;}
.ws73{word-spacing:-21.789000px;}
.ws67{word-spacing:-21.114000px;}
.ws8b{word-spacing:-20.580000px;}
.ws29{word-spacing:-20.250000px;}
.ws2a{word-spacing:-19.602000px;}
.ws68{word-spacing:-19.521000px;}
.ws4b{word-spacing:-19.389000px;}
.ws52{word-spacing:-18.561000px;}
.ws6d{word-spacing:-18.492000px;}
.ws4e{word-spacing:-18.423000px;}
.ws37{word-spacing:-18.354000px;}
.ws77{word-spacing:-18.333000px;}
.ws88{word-spacing:-17.703000px;}
.ws1e{word-spacing:-17.509680px;}
.ws82{word-spacing:-17.451000px;}
.wsd{word-spacing:-17.175000px;}
.ws87{word-spacing:-17.136000px;}
.ws58{word-spacing:-17.043000px;}
.ws86{word-spacing:-17.010000px;}
.ws1f{word-spacing:-16.852320px;}
.ws4d{word-spacing:-16.767000px;}
.ws1d{word-spacing:-16.673040px;}
.ws60{word-spacing:-16.560000px;}
.ws20{word-spacing:-16.553520px;}
.ws83{word-spacing:-16.506000px;}
.ws6b{word-spacing:-16.491000px;}
.ws39{word-spacing:-16.422000px;}
.ws56{word-spacing:-16.353000px;}
.ws55{word-spacing:-16.215000px;}
.ws18{word-spacing:-16.146000px;}
.ws4c{word-spacing:-16.077000px;}
.ws50{word-spacing:-16.008000px;}
.ws4f{word-spacing:-15.939000px;}
.ws36{word-spacing:-15.870000px;}
.ws54{word-spacing:-15.732000px;}
.ws38{word-spacing:-15.663000px;}
.ws4a{word-spacing:-15.594000px;}
.ws59{word-spacing:-15.525000px;}
.ws48{word-spacing:-15.456000px;}
.ws49{word-spacing:-15.387000px;}
.ws53{word-spacing:-15.249000px;}
.ws76{word-spacing:-15.246000px;}
.ws89{word-spacing:-15.183000px;}
.ws19{word-spacing:-15.111000px;}
.ws51{word-spacing:-14.973000px;}
.ws2f{word-spacing:-14.904000px;}
.ws75{word-spacing:-14.868000px;}
.ws3a{word-spacing:-14.697000px;}
.ws84{word-spacing:-14.553000px;}
.ws93{word-spacing:-14.160000px;}
.ws8a{word-spacing:-14.049000px;}
.ws3b{word-spacing:-13.938000px;}
.ws85{word-spacing:-13.482000px;}
.wse{word-spacing:-13.062000px;}
.ws1b{word-spacing:-12.430080px;}
.ws57{word-spacing:-12.144000px;}
.ws6c{word-spacing:-11.880000px;}
.ws1c{word-spacing:-11.772720px;}
.ws1a{word-spacing:-11.593440px;}
.wsf{word-spacing:-11.303787px;}
.ws30{word-spacing:-11.108887px;}
.ws8c{word-spacing:-7.056000px;}
.ws7c{word-spacing:-6.300000px;}
.ws3{word-spacing:-6.000000px;}
.ws8f{word-spacing:-5.985000px;}
.ws8e{word-spacing:-5.922000px;}
.ws7e{word-spacing:-5.859000px;}
.ws78{word-spacing:-4.599000px;}
.wsc{word-spacing:-4.200000px;}
.ws8{word-spacing:-3.696000px;}
.ws10{word-spacing:-2.400000px;}
.ws15{word-spacing:-1.794000px;}
.ws14{word-spacing:-1.587000px;}
.wsb{word-spacing:-1.440000px;}
.wsa{word-spacing:-1.260000px;}
.ws91{word-spacing:-1.197000px;}
.ws72{word-spacing:-1.122000px;}
.ws44{word-spacing:-1.104000px;}
.ws5b{word-spacing:-1.035000px;}
.ws92{word-spacing:-0.945000px;}
.ws32{word-spacing:-0.552000px;}
.ws2e{word-spacing:-0.414000px;}
.ws34{word-spacing:-0.312926px;}
.ws69{word-spacing:-0.207000px;}
.ws2c{word-spacing:-0.138000px;}
.ws7d{word-spacing:-0.126000px;}
.ws27{word-spacing:-0.119520px;}
.ws35{word-spacing:-0.052154px;}
.ws2{word-spacing:0.000000px;}
.ws33{word-spacing:0.052154px;}
.ws71{word-spacing:0.069000px;}
.ws8d{word-spacing:0.126000px;}
.ws5f{word-spacing:0.138000px;}
.ws9{word-spacing:0.180000px;}
.ws3e{word-spacing:0.207000px;}
.ws28{word-spacing:0.239040px;}
.ws81{word-spacing:0.315000px;}
.ws43{word-spacing:0.345000px;}
.ws7f{word-spacing:0.378000px;}
.ws16{word-spacing:0.414000px;}
.ws7a{word-spacing:0.441000px;}
.ws4{word-spacing:0.480000px;}
.ws2d{word-spacing:0.483000px;}
.ws61{word-spacing:0.552000px;}
.ws79{word-spacing:0.567000px;}
.ws6{word-spacing:0.600000px;}
.ws26{word-spacing:0.621000px;}
.ws5{word-spacing:0.660000px;}
.ws24{word-spacing:0.690000px;}
.ws6e{word-spacing:0.726000px;}
.ws25{word-spacing:0.759000px;}
.ws7b{word-spacing:0.819000px;}
.ws11{word-spacing:0.828000px;}
.ws5c{word-spacing:0.897000px;}
.ws42{word-spacing:0.966000px;}
.ws3f{word-spacing:1.035000px;}
.ws21{word-spacing:1.104000px;}
.ws3c{word-spacing:1.173000px;}
.ws70{word-spacing:1.188000px;}
.ws80{word-spacing:1.197000px;}
.ws13{word-spacing:1.311000px;}
.ws40{word-spacing:1.380000px;}
.ws22{word-spacing:1.449000px;}
.ws6f{word-spacing:1.452000px;}
.ws3d{word-spacing:1.518000px;}
.ws31{word-spacing:1.587000px;}
.ws41{word-spacing:1.656000px;}
.ws12{word-spacing:1.725000px;}
.ws47{word-spacing:1.794000px;}
.ws23{word-spacing:1.863000px;}
.ws17{word-spacing:1.932000px;}
.ws65{word-spacing:2.139000px;}
.ws63{word-spacing:2.277000px;}
.ws62{word-spacing:2.346000px;}
.ws45{word-spacing:2.484000px;}
.ws90{word-spacing:2.772000px;}
.ws5d{word-spacing:3.312000px;}
.ws7{word-spacing:3.960000px;}
.ws5a{word-spacing:4.140000px;}
.ws5e{word-spacing:4.347000px;}
.ws66{word-spacing:5.382000px;}
.ws46{word-spacing:5.451000px;}
.ws64{word-spacing:5.589000px;}
.ws6a{word-spacing:6.072000px;}
._1e{margin-left:-8.469900px;}
._c{margin-left:-7.308000px;}
._a{margin-left:-6.247800px;}
._b{margin-left:-5.043600px;}
._2{margin-left:-3.552600px;}
._8{margin-left:-2.487600px;}
._5{margin-left:-1.206000px;}
._3{width:1.212000px;}
._1{width:2.400000px;}
._9{width:3.891600px;}
._6{width:5.556000px;}
._4{width:6.594000px;}
._7{width:7.632000px;}
._f{width:8.676000px;}
._12{width:9.873900px;}
._13{width:11.198700px;}
._16{width:12.282300px;}
._17{width:14.545200px;}
._18{width:15.579300px;}
._1b{width:16.701300px;}
._1a{width:17.820300px;}
._e{width:19.656600px;}
._15{width:21.508200px;}
._1f{width:23.996100px;}
._1c{width:25.156200px;}
._19{width:26.382600px;}
._14{width:43.445160px;}
._11{width:45.972600px;}
._1d{width:47.675700px;}
._10{width:71.442000px;}
._d{width:253.008000px;}
._0{width:578.400000px;}
.fc3{color:rgb(34,30,31);}
.fc1{color:rgb(5,5,10);}
.fc2{color:transparent;}
.fc0{color:rgb(36,31,31);}
.fsa{font-size:31.482000px;}
.fs9{font-size:40.227000px;}
.fs6{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fse{font-size:52.154400px;}
.fsb{font-size:54.000000px;}
.fsc{font-size:59.760000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fsf{font-size:66.000000px;}
.fs8{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:75.000000px;}
.fsd{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y6c{bottom:-72.349980px;}
.y6b{bottom:-54.168000px;}
.y83{bottom:-0.078000px;}
.y73{bottom:-0.076500px;}
.y7f{bottom:-0.001500px;}
.y0{bottom:0.000000px;}
.y7d{bottom:0.081000px;}
.y6f{bottom:0.132000px;}
.y71{bottom:0.147000px;}
.y76{bottom:0.148500px;}
.y78{bottom:2.928000px;}
.y81{bottom:3.075000px;}
.y69{bottom:3.234000px;}
.y7b{bottom:3.256500px;}
.y1{bottom:51.310050px;}
.y62{bottom:88.813500px;}
.yb8{bottom:88.881000px;}
.yb4{bottom:93.663000px;}
.y1f{bottom:106.299150px;}
.ye0{bottom:106.299300px;}
.y46{bottom:109.294800px;}
.y60{bottom:112.951350px;}
.ydf{bottom:123.549300px;}
.y188{bottom:126.032400px;}
.ya6{bottom:126.597600px;}
.y128{bottom:126.663900px;}
.y106{bottom:126.719850px;}
.y16b{bottom:126.729450px;}
.y1e{bottom:127.301400px;}
.y14c{bottom:128.515200px;}
.yb3{bottom:132.151500px;}
.y5f{bottom:133.201350px;}
.yde{bottom:143.794800px;}
.y187{bottom:145.765500px;}
.ya5{bottom:146.896050px;}
.y127{bottom:147.028350px;}
.y105{bottom:147.140400px;}
.y16a{bottom:147.159600px;}
.y14b{bottom:150.730500px;}
.y45{bottom:153.313500px;}
.y5e{bottom:153.451500px;}
.y1d{bottom:165.312000px;}
.ya4{bottom:167.194500px;}
.y126{bottom:167.392500px;}
.y104{bottom:167.560500px;}
.y14a{bottom:172.947000px;}
.y5d{bottom:173.701500px;}
.y44{bottom:174.129000px;}
.y169{bottom:176.094000px;}
.y186{bottom:178.254000px;}
.y1c{bottom:184.813500px;}
.ya3{bottom:187.492500px;}
.y125{bottom:187.758000px;}
.ydd{bottom:187.813500px;}
.y103{bottom:187.981500px;}
.y5c{bottom:193.951500px;}
.y43{bottom:194.946000px;}
.y149{bottom:195.163500px;}
.y168{bottom:196.524000px;}
.yba{bottom:203.599892px;}
.y1b{bottom:204.315000px;}
.y124{bottom:208.122000px;}
.ydc{bottom:208.239000px;}
.y102{bottom:208.402500px;}
.yb5{bottom:211.198500px;}
.y5b{bottom:214.201500px;}
.y42{bottom:215.761500px;}
.y148{bottom:217.378500px;}
.yb9{bottom:221.032500px;}
.y1a{bottom:223.818000px;}
.y167{bottom:225.457500px;}
.yb2{bottom:225.813497px;}
.y123{bottom:228.486000px;}
.ydb{bottom:228.663000px;}
.y101{bottom:228.822000px;}
.ya2{bottom:229.051500px;}
.y5a{bottom:234.451500px;}
.yb7{bottom:235.645875px;}
.y185{bottom:236.256000px;}
.y41{bottom:236.578500px;}
.y147{bottom:239.595000px;}
.yb1{bottom:240.416729px;}
.y19{bottom:243.319500px;}
.y166{bottom:245.887500px;}
.y122{bottom:248.851500px;}
.yda{bottom:249.088500px;}
.y100{bottom:249.243000px;}
.yb6{bottom:250.418609px;}
.y59{bottom:254.701500px;}
.yb0{bottom:255.033000px;}
.y40{bottom:257.394000px;}
.y146{bottom:261.810000px;}
.y18{bottom:262.822500px;}
.y121{bottom:269.215500px;}
.yd9{bottom:269.514000px;}
.yff{bottom:269.664000px;}
.y165{bottom:274.822500px;}
.y58{bottom:274.951500px;}
.y3f{bottom:278.211000px;}
.y17{bottom:282.324000px;}
.y145{bottom:284.026500px;}
.y120{bottom:289.581000px;}
.yd8{bottom:289.939500px;}
.yfe{bottom:290.085000px;}
.ya1{bottom:291.367500px;}
.y164{bottom:295.252500px;}
.y3e{bottom:299.028000px;}
.y16{bottom:301.825500px;}
.y144{bottom:306.243000px;}
.y184{bottom:306.582000px;}
.y11f{bottom:309.945000px;}
.yd7{bottom:310.365000px;}
.yfd{bottom:310.504500px;}
.ya0{bottom:311.665500px;}
.y3d{bottom:319.843500px;}
.y15{bottom:321.328500px;}
.y163{bottom:324.186000px;}
.y143{bottom:328.458000px;}
.y11e{bottom:330.309000px;}
.yd6{bottom:330.790500px;}
.yfc{bottom:330.925500px;}
.y12e{bottom:331.204500px;}
.y9f{bottom:331.963500px;}
.y183{bottom:335.568000px;}
.y57{bottom:335.701500px;}
.y3c{bottom:340.660500px;}
.y162{bottom:344.616000px;}
.y11d{bottom:350.674500px;}
.yd5{bottom:351.216000px;}
.yfb{bottom:351.346500px;}
.y9e{bottom:352.263000px;}
.y14{bottom:353.586000px;}
.y182{bottom:356.052000px;}
.y3b{bottom:361.476000px;}
.y61{bottom:369.885000px;}
.y11c{bottom:371.038500px;}
.yd4{bottom:371.641500px;}
.yfa{bottom:371.766000px;}
.y9d{bottom:372.561000px;}
.y142{bottom:372.889500px;}
.y161{bottom:373.551000px;}
.y64{bottom:375.536280px;}
.y6d{bottom:376.912500px;}
.y6a{bottom:380.698500px;}
.y3a{bottom:382.293000px;}
.y181{bottom:385.038000px;}
.y68{bottom:391.312920px;}
.y11b{bottom:391.402500px;}
.yd3{bottom:392.067000px;}
.yf9{bottom:392.187000px;}
.y9c{bottom:392.859000px;}
.y12d{bottom:393.586500px;}
.y160{bottom:393.981000px;}
.y141{bottom:395.106000px;}
.yaf{bottom:396.451500px;}
.y13{bottom:402.852000px;}
.y39{bottom:403.108500px;}
.y180{bottom:405.522000px;}
.yd2{bottom:412.492500px;}
.yf8{bottom:412.608000px;}
.y9b{bottom:413.157000px;}
.y12c{bottom:413.952000px;}
.yae{bottom:416.701500px;}
.y140{bottom:417.321000px;}
.y15f{bottom:422.914500px;}
.y12{bottom:423.853500px;}
.y38{bottom:423.925500px;}
.yd1{bottom:432.918000px;}
.yf7{bottom:433.027500px;}
.y9a{bottom:433.456500px;}
.y12b{bottom:434.316000px;}
.y17f{bottom:434.509500px;}
.yad{bottom:436.951500px;}
.y13f{bottom:439.537500px;}
.y15e{bottom:443.344500px;}
.y37{bottom:444.742500px;}
.yd0{bottom:453.343500px;}
.yf6{bottom:453.448500px;}
.y99{bottom:453.754500px;}
.y12a{bottom:454.680000px;}
.y84{bottom:454.764000px;}
.y85{bottom:454.780500px;}
.y63{bottom:454.912500px;}
.y86{bottom:454.914000px;}
.y82{bottom:454.990500px;}
.y17e{bottom:454.992000px;}
.yac{bottom:457.201500px;}
.y7a{bottom:460.656000px;}
.y77{bottom:460.984500px;}
.y13e{bottom:461.754000px;}
.y75{bottom:463.764000px;}
.y74{bottom:463.780500px;}
.y79{bottom:463.912500px;}
.y66{bottom:463.921320px;}
.y36{bottom:465.558000px;}
.y11{bottom:466.116000px;}
.y80{bottom:469.837500px;}
.y15d{bottom:472.279500px;}
.y7c{bottom:472.831500px;}
.y7e{bottom:472.914000px;}
.y67{bottom:472.915200px;}
.ycf{bottom:473.769000px;}
.yf5{bottom:473.869500px;}
.y98{bottom:474.052500px;}
.y129{bottom:475.045500px;}
.y17d{bottom:475.474500px;}
.yab{bottom:477.451500px;}
.y70{bottom:481.765500px;}
.y6e{bottom:481.780500px;}
.y65{bottom:481.924020px;}
.y72{bottom:481.989000px;}
.y13d{bottom:483.969000px;}
.y10{bottom:485.617500px;}
.y35{bottom:486.375000px;}
.y15c{bottom:492.709500px;}
.yce{bottom:494.193000px;}
.yf4{bottom:494.290500px;}
.y97{bottom:494.350500px;}
.y11a{bottom:495.409500px;}
.y17c{bottom:495.958500px;}
.yaa{bottom:497.701500px;}
.yf{bottom:505.120500px;}
.y13c{bottom:506.185500px;}
.y34{bottom:507.190500px;}
.ycd{bottom:514.618500px;}
.y96{bottom:514.650000px;}
.yf3{bottom:514.710000px;}
.y119{bottom:515.775000px;}
.y17b{bottom:516.441000px;}
.ya9{bottom:517.951500px;}
.y15b{bottom:521.643000px;}
.ye{bottom:524.622000px;}
.y33{bottom:528.007500px;}
.y13b{bottom:528.400500px;}
.y95{bottom:534.948000px;}
.ycc{bottom:535.044000px;}
.yf2{bottom:535.131000px;}
.y118{bottom:536.139000px;}
.ya8{bottom:538.201500px;}
.y15a{bottom:542.073000px;}
.yd{bottom:544.125000px;}
.y17a{bottom:545.428500px;}
.y32{bottom:548.823000px;}
.y13a{bottom:550.617000px;}
.y94{bottom:555.246000px;}
.ycb{bottom:555.469500px;}
.yf1{bottom:555.552000px;}
.y117{bottom:556.503000px;}
.y56{bottom:558.451500px;}
.yc{bottom:563.626500px;}
.y179{bottom:565.911000px;}
.y31{bottom:569.640000px;}
.y93{bottom:575.544000px;}
.yca{bottom:575.895000px;}
.yf0{bottom:575.971500px;}
.y116{bottom:576.868500px;}
.y55{bottom:578.701500px;}
.yb{bottom:583.128000px;}
.y30{bottom:590.455500px;}
.y159{bottom:592.267500px;}
.y139{bottom:594.093000px;}
.y178{bottom:594.898500px;}
.y92{bottom:595.843500px;}
.yc9{bottom:596.320500px;}
.yef{bottom:596.392500px;}
.y115{bottom:597.232500px;}
.y54{bottom:598.951500px;}
.ya{bottom:602.631000px;}
.y2f{bottom:611.272500px;}
.y177{bottom:615.381000px;}
.y91{bottom:616.141500px;}
.yc8{bottom:616.746000px;}
.yee{bottom:616.813500px;}
.y114{bottom:617.598000px;}
.y53{bottom:619.201500px;}
.y9{bottom:622.132500px;}
.y2e{bottom:632.089500px;}
.y90{bottom:636.439500px;}
.yc7{bottom:637.171500px;}
.yed{bottom:637.234500px;}
.y113{bottom:637.962000px;}
.ya7{bottom:639.451500px;}
.y176{bottom:644.368500px;}
.y2d{bottom:652.905000px;}
.y8{bottom:654.391500px;}
.y158{bottom:654.715500px;}
.y8f{bottom:656.737500px;}
.yc6{bottom:657.597000px;}
.yec{bottom:657.654000px;}
.y112{bottom:658.326000px;}
.y52{bottom:659.701500px;}
.y175{bottom:664.852500px;}
.y2c{bottom:673.722000px;}
.y157{bottom:675.145500px;}
.yc5{bottom:678.022500px;}
.yeb{bottom:678.075000px;}
.y111{bottom:678.691500px;}
.y51{bottom:679.951500px;}
.y138{bottom:680.542500px;}
.y174{bottom:685.335000px;}
.y192{bottom:690.931500px;}
.y2b{bottom:694.537500px;}
.y156{bottom:695.575500px;}
.y8e{bottom:698.296500px;}
.yc4{bottom:698.448000px;}
.yea{bottom:698.496000px;}
.y110{bottom:699.055500px;}
.y50{bottom:700.201500px;}
.y137{bottom:702.759000px;}
.y191{bottom:711.181500px;}
.y7{bottom:712.161000px;}
.y173{bottom:714.322500px;}
.y2a{bottom:715.354500px;}
.y155{bottom:716.005500px;}
.yc3{bottom:718.873500px;}
.ye9{bottom:718.915500px;}
.y10f{bottom:719.419500px;}
.y4f{bottom:720.451500px;}
.y136{bottom:724.974000px;}
.y190{bottom:731.431500px;}
.y172{bottom:734.805000px;}
.y29{bottom:736.170000px;}
.y154{bottom:736.435500px;}
.yc2{bottom:739.297500px;}
.ye8{bottom:739.336500px;}
.y10e{bottom:739.785000px;}
.y4e{bottom:740.701500px;}
.y135{bottom:747.190500px;}
.y18f{bottom:751.681500px;}
.y171{bottom:755.289000px;}
.y153{bottom:756.865500px;}
.y28{bottom:756.987000px;}
.yc1{bottom:759.723000px;}
.ye7{bottom:759.757500px;}
.y10d{bottom:760.149000px;}
.y6{bottom:760.422000px;}
.y8d{bottom:760.612500px;}
.y4d{bottom:760.951500px;}
.y134{bottom:769.405500px;}
.y152{bottom:777.295500px;}
.y27{bottom:777.802500px;}
.yc0{bottom:780.148500px;}
.ye6{bottom:780.178500px;}
.y10c{bottom:780.514500px;}
.y8c{bottom:780.910500px;}
.y4c{bottom:781.201500px;}
.y170{bottom:784.275000px;}
.y18e{bottom:784.687500px;}
.y133{bottom:791.622000px;}
.y5{bottom:791.925000px;}
.y151{bottom:797.725500px;}
.y26{bottom:798.619500px;}
.ybf{bottom:800.574000px;}
.ye5{bottom:800.598000px;}
.y10b{bottom:800.878500px;}
.y8b{bottom:801.210000px;}
.y4b{bottom:801.451500px;}
.y16f{bottom:804.759000px;}
.y132{bottom:813.837000px;}
.y150{bottom:818.155500px;}
.y25{bottom:819.436500px;}
.ybe{bottom:820.999500px;}
.ye4{bottom:821.019000px;}
.y10a{bottom:821.242500px;}
.y8a{bottom:821.508000px;}
.y4a{bottom:821.701500px;}
.y18d{bottom:826.198500px;}
.y16e{bottom:833.745000px;}
.y131{bottom:836.053500px;}
.y14f{bottom:838.585500px;}
.y24{bottom:840.252000px;}
.ybd{bottom:841.425000px;}
.ye3{bottom:841.440000px;}
.y109{bottom:841.608000px;}
.y89{bottom:841.806000px;}
.y49{bottom:841.951500px;}
.y18c{bottom:845.698500px;}
.y4{bottom:853.191000px;}
.y16d{bottom:854.229000px;}
.y130{bottom:858.270000px;}
.y14e{bottom:859.015500px;}
.y23{bottom:861.069000px;}
.ybc{bottom:861.850500px;}
.ye2{bottom:861.861000px;}
.y108{bottom:861.972000px;}
.y88{bottom:862.104000px;}
.y48{bottom:862.201500px;}
.y18b{bottom:865.198500px;}
.y12f{bottom:880.485000px;}
.y22{bottom:881.884500px;}
.ybb{bottom:882.276000px;}
.ye1{bottom:882.280500px;}
.y107{bottom:882.336000px;}
.y87{bottom:882.403500px;}
.y47{bottom:882.451500px;}
.y3{bottom:882.696000px;}
.y16c{bottom:883.215000px;}
.y18a{bottom:884.698500px;}
.y14d{bottom:900.706500px;}
.y21{bottom:902.701500px;}
.y2{bottom:903.699000px;}
.y189{bottom:904.198500px;}
.y20{bottom:948.189000px;}
.h1d{height:7.155000px;}
.h20{height:7.288500px;}
.h13{height:7.290000px;}
.h1b{height:7.363500px;}
.h17{height:7.365000px;}
.h11{height:7.500000px;}
.h12{height:7.513500px;}
.h1e{height:7.515000px;}
.h15{height:9.082500px;}
.h1a{height:10.023000px;}
.h1f{height:10.024500px;}
.h16{height:10.293000px;}
.h10{height:10.338000px;}
.h1c{height:10.441500px;}
.h18{height:10.488000px;}
.h19{height:10.614000px;}
.h14{height:10.681500px;}
.h23{height:32.440037px;}
.hb{height:33.870539px;}
.h22{height:37.029624px;}
.he{height:37.708560px;}
.h7{height:40.757812px;}
.hc{height:41.396484px;}
.hf{height:42.130800px;}
.h26{height:45.852539px;}
.h4{height:50.947266px;}
.h3{height:53.494629px;}
.h29{height:54.417480px;}
.h2a{height:55.488281px;}
.h27{height:56.041992px;}
.h28{height:58.262695px;}
.h8{height:58.589355px;}
.h9{height:59.600098px;}
.h25{height:59.667480px;}
.h2{height:63.684082px;}
.ha{height:63.811523px;}
.h21{height:68.778809px;}
.h6{height:71.326172px;}
.h5{height:91.705078px;}
.hd{height:159.448500px;}
.h24{height:195.927000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w10{width:0.781500px;}
.we{width:1.552500px;}
.w12{width:1.554000px;}
.wd{width:2.947500px;}
.w8{width:3.558000px;}
.wc{width:3.783000px;}
.w9{width:4.018500px;}
.w5{width:5.169000px;}
.w11{width:5.317500px;}
.w3{width:5.632500px;}
.w7{width:5.676000px;}
.wb{width:5.677500px;}
.w4{width:5.811000px;}
.wf{width:6.141000px;}
.wa{width:6.258000px;}
.w6{width:6.379500px;}
.w2{width:474.094500px;}
.w13{width:552.756000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x20{left:-4.834500px;}
.x1c{left:-3.789000px;}
.x0{left:0.000000px;}
.x7{left:82.214250px;}
.x9{left:83.632650px;}
.x1{left:85.039350px;}
.x28{left:100.901829px;}
.x5{left:105.024900px;}
.x6{left:106.366800px;}
.x2a{left:116.500950px;}
.x8{left:123.452850px;}
.x29{left:129.964868px;}
.xe{left:132.215460px;}
.x13{left:166.269000px;}
.x12{left:177.087000px;}
.x1b{left:193.177500px;}
.x21{left:194.737500px;}
.x1d{left:198.037500px;}
.x1e{left:201.355500px;}
.x22{left:206.556000px;}
.x1f{left:208.614000px;}
.xb{left:209.769000px;}
.x23{left:217.416000px;}
.x10{left:219.087000px;}
.x3{left:230.608500px;}
.x4{left:232.725000px;}
.x2{left:233.829000px;}
.xf{left:343.452120px;}
.xc{left:440.890800px;}
.xa{left:497.607000px;}
.xd{left:500.531280px;}
.x19{left:505.644000px;}
.x14{left:507.855000px;}
.x1a{left:513.427500px;}
.x15{left:514.713000px;}
.x26{left:519.064500px;}
.x16{left:520.777500px;}
.x17{left:528.574500px;}
.x18{left:535.822500px;}
.x24{left:551.202000px;}
.x27{left:573.355500px;}
.x11{left:578.476500px;}
.x25{left:580.265039px;}
@media print{
.v2{vertical-align:-15.088000pt;}
.v3{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.088000pt;}
.ls5e{letter-spacing:-5.925333pt;}
.ls57{letter-spacing:-5.397333pt;}
.ls53{letter-spacing:-4.968000pt;}
.ls40{letter-spacing:-4.845333pt;}
.ls54{letter-spacing:-4.784000pt;}
.ls4d{letter-spacing:-4.354667pt;}
.ls4b{letter-spacing:-3.864000pt;}
.ls79{letter-spacing:-3.752000pt;}
.ls46{letter-spacing:-3.680000pt;}
.ls7{letter-spacing:-3.520000pt;}
.ls10{letter-spacing:-3.466667pt;}
.ls4a{letter-spacing:-2.944000pt;}
.ls59{letter-spacing:-2.880000pt;}
.ls27{letter-spacing:-2.808000pt;}
.ls7c{letter-spacing:-2.464000pt;}
.ls7f{letter-spacing:-2.240000pt;}
.ls42{letter-spacing:-2.208000pt;}
.ls3f{letter-spacing:-2.085333pt;}
.ls52{letter-spacing:-2.024000pt;}
.ls30{letter-spacing:-1.901333pt;}
.ls48{letter-spacing:-1.840000pt;}
.ls17{letter-spacing:-1.717333pt;}
.ls1d{letter-spacing:-1.656000pt;}
.ls43{letter-spacing:-1.594667pt;}
.ls12{letter-spacing:-1.533333pt;}
.ls3c{letter-spacing:-1.472000pt;}
.ls2f{letter-spacing:-1.410667pt;}
.ls39{letter-spacing:-1.349333pt;}
.ls80{letter-spacing:-1.344000pt;}
.ls5c{letter-spacing:-1.290667pt;}
.ls1c{letter-spacing:-1.288000pt;}
.ls3b{letter-spacing:-1.226667pt;}
.ls13{letter-spacing:-1.165333pt;}
.ls6d{letter-spacing:-1.064000pt;}
.ls5d{letter-spacing:-1.056000pt;}
.ls37{letter-spacing:-1.042667pt;}
.ls1b{letter-spacing:-0.981333pt;}
.ls38{letter-spacing:-0.920000pt;}
.ls78{letter-spacing:-0.896000pt;}
.ls61{letter-spacing:-0.864000pt;}
.ls3d{letter-spacing:-0.858667pt;}
.ls1a{letter-spacing:-0.797333pt;}
.ls11{letter-spacing:-0.736000pt;}
.ls26{letter-spacing:-0.733333pt;}
.ls68{letter-spacing:-0.728000pt;}
.ls1f{letter-spacing:-0.674667pt;}
.ls5b{letter-spacing:-0.645333pt;}
.ls63{letter-spacing:-0.616000pt;}
.ls1e{letter-spacing:-0.613333pt;}
.ls5{letter-spacing:-0.586667pt;}
.ls20{letter-spacing:-0.552000pt;}
.ls6{letter-spacing:-0.533333pt;}
.ls65{letter-spacing:-0.504000pt;}
.ls51{letter-spacing:-0.490667pt;}
.ls2a{letter-spacing:-0.429333pt;}
.ls4{letter-spacing:-0.426667pt;}
.ls66{letter-spacing:-0.392000pt;}
.ls16{letter-spacing:-0.368000pt;}
.ls6c{letter-spacing:-0.336000pt;}
.ls3e{letter-spacing:-0.306667pt;}
.ls67{letter-spacing:-0.280000pt;}
.ls47{letter-spacing:-0.245333pt;}
.ls32{letter-spacing:-0.231797pt;}
.ls76{letter-spacing:-0.224000pt;}
.ls24{letter-spacing:-0.212480pt;}
.ls3a{letter-spacing:-0.184000pt;}
.ls9{letter-spacing:-0.160000pt;}
.ls4c{letter-spacing:-0.122667pt;}
.ls77{letter-spacing:-0.112000pt;}
.ls22{letter-spacing:-0.106240pt;}
.ls5f{letter-spacing:-0.061333pt;}
.ls33{letter-spacing:-0.046359pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2e{letter-spacing:0.046359pt;}
.ls19{letter-spacing:0.053120pt;}
.ls28{letter-spacing:0.072000pt;}
.ls21{letter-spacing:0.106240pt;}
.ls6a{letter-spacing:0.112000pt;}
.ls29{letter-spacing:0.122667pt;}
.ls2d{letter-spacing:0.139078pt;}
.ls62{letter-spacing:0.144000pt;}
.ls56{letter-spacing:0.184000pt;}
.ls34{letter-spacing:0.278157pt;}
.ls2b{letter-spacing:0.368000pt;}
.ls31{letter-spacing:0.490667pt;}
.ls6e{letter-spacing:0.560000pt;}
.ls23{letter-spacing:0.637440pt;}
.ls72{letter-spacing:0.682667pt;}
.ls7e{letter-spacing:0.840000pt;}
.ls49{letter-spacing:0.920000pt;}
.ls41{letter-spacing:0.981333pt;}
.ls60{letter-spacing:0.997333pt;}
.ls7d{letter-spacing:1.064000pt;}
.lsb{letter-spacing:1.120000pt;}
.lsc{letter-spacing:1.280000pt;}
.ls14{letter-spacing:1.410667pt;}
.ls58{letter-spacing:1.533333pt;}
.ls15{letter-spacing:1.594667pt;}
.ls36{letter-spacing:2.100000pt;}
.ls50{letter-spacing:2.125333pt;}
.lsf{letter-spacing:2.133333pt;}
.ls45{letter-spacing:2.216000pt;}
.ls74{letter-spacing:2.858667pt;}
.ls8{letter-spacing:3.285333pt;}
.ls81{letter-spacing:3.306667pt;}
.lsd{letter-spacing:3.733333pt;}
.ls4f{letter-spacing:3.917333pt;}
.ls64{letter-spacing:4.088000pt;}
.lsa{letter-spacing:5.120000pt;}
.ls6b{letter-spacing:5.208000pt;}
.ls3{letter-spacing:5.226667pt;}
.ls7a{letter-spacing:5.264000pt;}
.ls7b{letter-spacing:5.320000pt;}
.ls2{letter-spacing:5.333333pt;}
.ls69{letter-spacing:5.600000pt;}
.ls75{letter-spacing:6.272000pt;}
.ls71{letter-spacing:6.282667pt;}
.ls70{letter-spacing:9.829333pt;}
.ls73{letter-spacing:15.253333pt;}
.ls25{letter-spacing:421.345600pt;}
.ls6f{letter-spacing:421.525333pt;}
.ls4e{letter-spacing:421.912000pt;}
.ls5a{letter-spacing:421.938667pt;}
.ls35{letter-spacing:422.178667pt;}
.lse{letter-spacing:427.232000pt;}
.ls18{letter-spacing:846.688000pt;}
.ls44{letter-spacing:847.130667pt;}
.ls55{letter-spacing:849.461333pt;}
.ls0{letter-spacing:853.061333pt;}
.ls2c{letter-spacing:854.821333pt;}
.ws74{word-spacing:-20.376000pt;}
.ws2b{word-spacing:-20.304000pt;}
.ws0{word-spacing:-20.213333pt;}
.ws1{word-spacing:-20.106667pt;}
.ws73{word-spacing:-19.368000pt;}
.ws67{word-spacing:-18.768000pt;}
.ws8b{word-spacing:-18.293333pt;}
.ws29{word-spacing:-18.000000pt;}
.ws2a{word-spacing:-17.424000pt;}
.ws68{word-spacing:-17.352000pt;}
.ws4b{word-spacing:-17.234667pt;}
.ws52{word-spacing:-16.498667pt;}
.ws6d{word-spacing:-16.437333pt;}
.ws4e{word-spacing:-16.376000pt;}
.ws37{word-spacing:-16.314667pt;}
.ws77{word-spacing:-16.296000pt;}
.ws88{word-spacing:-15.736000pt;}
.ws1e{word-spacing:-15.564160pt;}
.ws82{word-spacing:-15.512000pt;}
.wsd{word-spacing:-15.266667pt;}
.ws87{word-spacing:-15.232000pt;}
.ws58{word-spacing:-15.149333pt;}
.ws86{word-spacing:-15.120000pt;}
.ws1f{word-spacing:-14.979840pt;}
.ws4d{word-spacing:-14.904000pt;}
.ws1d{word-spacing:-14.820480pt;}
.ws60{word-spacing:-14.720000pt;}
.ws20{word-spacing:-14.714240pt;}
.ws83{word-spacing:-14.672000pt;}
.ws6b{word-spacing:-14.658667pt;}
.ws39{word-spacing:-14.597333pt;}
.ws56{word-spacing:-14.536000pt;}
.ws55{word-spacing:-14.413333pt;}
.ws18{word-spacing:-14.352000pt;}
.ws4c{word-spacing:-14.290667pt;}
.ws50{word-spacing:-14.229333pt;}
.ws4f{word-spacing:-14.168000pt;}
.ws36{word-spacing:-14.106667pt;}
.ws54{word-spacing:-13.984000pt;}
.ws38{word-spacing:-13.922667pt;}
.ws4a{word-spacing:-13.861333pt;}
.ws59{word-spacing:-13.800000pt;}
.ws48{word-spacing:-13.738667pt;}
.ws49{word-spacing:-13.677333pt;}
.ws53{word-spacing:-13.554667pt;}
.ws76{word-spacing:-13.552000pt;}
.ws89{word-spacing:-13.496000pt;}
.ws19{word-spacing:-13.432000pt;}
.ws51{word-spacing:-13.309333pt;}
.ws2f{word-spacing:-13.248000pt;}
.ws75{word-spacing:-13.216000pt;}
.ws3a{word-spacing:-13.064000pt;}
.ws84{word-spacing:-12.936000pt;}
.ws93{word-spacing:-12.586667pt;}
.ws8a{word-spacing:-12.488000pt;}
.ws3b{word-spacing:-12.389333pt;}
.ws85{word-spacing:-11.984000pt;}
.wse{word-spacing:-11.610667pt;}
.ws1b{word-spacing:-11.048960pt;}
.ws57{word-spacing:-10.794667pt;}
.ws6c{word-spacing:-10.560000pt;}
.ws1c{word-spacing:-10.464640pt;}
.ws1a{word-spacing:-10.305280pt;}
.wsf{word-spacing:-10.047811pt;}
.ws30{word-spacing:-9.874566pt;}
.ws8c{word-spacing:-6.272000pt;}
.ws7c{word-spacing:-5.600000pt;}
.ws3{word-spacing:-5.333333pt;}
.ws8f{word-spacing:-5.320000pt;}
.ws8e{word-spacing:-5.264000pt;}
.ws7e{word-spacing:-5.208000pt;}
.ws78{word-spacing:-4.088000pt;}
.wsc{word-spacing:-3.733333pt;}
.ws8{word-spacing:-3.285333pt;}
.ws10{word-spacing:-2.133333pt;}
.ws15{word-spacing:-1.594667pt;}
.ws14{word-spacing:-1.410667pt;}
.wsb{word-spacing:-1.280000pt;}
.wsa{word-spacing:-1.120000pt;}
.ws91{word-spacing:-1.064000pt;}
.ws72{word-spacing:-0.997333pt;}
.ws44{word-spacing:-0.981333pt;}
.ws5b{word-spacing:-0.920000pt;}
.ws92{word-spacing:-0.840000pt;}
.ws32{word-spacing:-0.490667pt;}
.ws2e{word-spacing:-0.368000pt;}
.ws34{word-spacing:-0.278157pt;}
.ws69{word-spacing:-0.184000pt;}
.ws2c{word-spacing:-0.122667pt;}
.ws7d{word-spacing:-0.112000pt;}
.ws27{word-spacing:-0.106240pt;}
.ws35{word-spacing:-0.046359pt;}
.ws2{word-spacing:0.000000pt;}
.ws33{word-spacing:0.046359pt;}
.ws71{word-spacing:0.061333pt;}
.ws8d{word-spacing:0.112000pt;}
.ws5f{word-spacing:0.122667pt;}
.ws9{word-spacing:0.160000pt;}
.ws3e{word-spacing:0.184000pt;}
.ws28{word-spacing:0.212480pt;}
.ws81{word-spacing:0.280000pt;}
.ws43{word-spacing:0.306667pt;}
.ws7f{word-spacing:0.336000pt;}
.ws16{word-spacing:0.368000pt;}
.ws7a{word-spacing:0.392000pt;}
.ws4{word-spacing:0.426667pt;}
.ws2d{word-spacing:0.429333pt;}
.ws61{word-spacing:0.490667pt;}
.ws79{word-spacing:0.504000pt;}
.ws6{word-spacing:0.533333pt;}
.ws26{word-spacing:0.552000pt;}
.ws5{word-spacing:0.586667pt;}
.ws24{word-spacing:0.613333pt;}
.ws6e{word-spacing:0.645333pt;}
.ws25{word-spacing:0.674667pt;}
.ws7b{word-spacing:0.728000pt;}
.ws11{word-spacing:0.736000pt;}
.ws5c{word-spacing:0.797333pt;}
.ws42{word-spacing:0.858667pt;}
.ws3f{word-spacing:0.920000pt;}
.ws21{word-spacing:0.981333pt;}
.ws3c{word-spacing:1.042667pt;}
.ws70{word-spacing:1.056000pt;}
.ws80{word-spacing:1.064000pt;}
.ws13{word-spacing:1.165333pt;}
.ws40{word-spacing:1.226667pt;}
.ws22{word-spacing:1.288000pt;}
.ws6f{word-spacing:1.290667pt;}
.ws3d{word-spacing:1.349333pt;}
.ws31{word-spacing:1.410667pt;}
.ws41{word-spacing:1.472000pt;}
.ws12{word-spacing:1.533333pt;}
.ws47{word-spacing:1.594667pt;}
.ws23{word-spacing:1.656000pt;}
.ws17{word-spacing:1.717333pt;}
.ws65{word-spacing:1.901333pt;}
.ws63{word-spacing:2.024000pt;}
.ws62{word-spacing:2.085333pt;}
.ws45{word-spacing:2.208000pt;}
.ws90{word-spacing:2.464000pt;}
.ws5d{word-spacing:2.944000pt;}
.ws7{word-spacing:3.520000pt;}
.ws5a{word-spacing:3.680000pt;}
.ws5e{word-spacing:3.864000pt;}
.ws66{word-spacing:4.784000pt;}
.ws46{word-spacing:4.845333pt;}
.ws64{word-spacing:4.968000pt;}
.ws6a{word-spacing:5.397333pt;}
._1e{margin-left:-7.528800pt;}
._c{margin-left:-6.496000pt;}
._a{margin-left:-5.553600pt;}
._b{margin-left:-4.483200pt;}
._2{margin-left:-3.157867pt;}
._8{margin-left:-2.211200pt;}
._5{margin-left:-1.072000pt;}
._3{width:1.077333pt;}
._1{width:2.133333pt;}
._9{width:3.459200pt;}
._6{width:4.938667pt;}
._4{width:5.861333pt;}
._7{width:6.784000pt;}
._f{width:7.712000pt;}
._12{width:8.776800pt;}
._13{width:9.954400pt;}
._16{width:10.917600pt;}
._17{width:12.929067pt;}
._18{width:13.848267pt;}
._1b{width:14.845600pt;}
._1a{width:15.840267pt;}
._e{width:17.472533pt;}
._15{width:19.118400pt;}
._1f{width:21.329867pt;}
._1c{width:22.361067pt;}
._19{width:23.451200pt;}
._14{width:38.617920pt;}
._11{width:40.864533pt;}
._1d{width:42.378400pt;}
._10{width:63.504000pt;}
._d{width:224.896000pt;}
._0{width:514.133333pt;}
.fsa{font-size:27.984000pt;}
.fs9{font-size:35.757333pt;}
.fs6{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fse{font-size:46.359467pt;}
.fsb{font-size:48.000000pt;}
.fsc{font-size:53.120000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fsf{font-size:58.666667pt;}
.fs8{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:66.666667pt;}
.fsd{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y6c{bottom:-64.311093pt;}
.y6b{bottom:-48.149333pt;}
.y83{bottom:-0.069333pt;}
.y73{bottom:-0.068000pt;}
.y7f{bottom:-0.001333pt;}
.y0{bottom:0.000000pt;}
.y7d{bottom:0.072000pt;}
.y6f{bottom:0.117333pt;}
.y71{bottom:0.130667pt;}
.y76{bottom:0.132000pt;}
.y78{bottom:2.602667pt;}
.y81{bottom:2.733333pt;}
.y69{bottom:2.874667pt;}
.y7b{bottom:2.894667pt;}
.y1{bottom:45.608933pt;}
.y62{bottom:78.945333pt;}
.yb8{bottom:79.005333pt;}
.yb4{bottom:83.256000pt;}
.y1f{bottom:94.488133pt;}
.ye0{bottom:94.488267pt;}
.y46{bottom:97.150933pt;}
.y60{bottom:100.401200pt;}
.ydf{bottom:109.821600pt;}
.y188{bottom:112.028800pt;}
.ya6{bottom:112.531200pt;}
.y128{bottom:112.590133pt;}
.y106{bottom:112.639867pt;}
.y16b{bottom:112.648400pt;}
.y1e{bottom:113.156800pt;}
.y14c{bottom:114.235733pt;}
.yb3{bottom:117.468000pt;}
.y5f{bottom:118.401200pt;}
.yde{bottom:127.817600pt;}
.y187{bottom:129.569333pt;}
.ya5{bottom:130.574267pt;}
.y127{bottom:130.691867pt;}
.y105{bottom:130.791467pt;}
.y16a{bottom:130.808533pt;}
.y14b{bottom:133.982667pt;}
.y45{bottom:136.278667pt;}
.y5e{bottom:136.401333pt;}
.y1d{bottom:146.944000pt;}
.ya4{bottom:148.617333pt;}
.y126{bottom:148.793333pt;}
.y104{bottom:148.942667pt;}
.y14a{bottom:153.730667pt;}
.y5d{bottom:154.401333pt;}
.y44{bottom:154.781333pt;}
.y169{bottom:156.528000pt;}
.y186{bottom:158.448000pt;}
.y1c{bottom:164.278667pt;}
.ya3{bottom:166.660000pt;}
.y125{bottom:166.896000pt;}
.ydd{bottom:166.945333pt;}
.y103{bottom:167.094667pt;}
.y5c{bottom:172.401333pt;}
.y43{bottom:173.285333pt;}
.y149{bottom:173.478667pt;}
.y168{bottom:174.688000pt;}
.yba{bottom:180.977682pt;}
.y1b{bottom:181.613333pt;}
.y124{bottom:184.997333pt;}
.ydc{bottom:185.101333pt;}
.y102{bottom:185.246667pt;}
.yb5{bottom:187.732000pt;}
.y5b{bottom:190.401333pt;}
.y42{bottom:191.788000pt;}
.y148{bottom:193.225333pt;}
.yb9{bottom:196.473333pt;}
.y1a{bottom:198.949333pt;}
.y167{bottom:200.406667pt;}
.yb2{bottom:200.723109pt;}
.y123{bottom:203.098667pt;}
.ydb{bottom:203.256000pt;}
.y101{bottom:203.397333pt;}
.ya2{bottom:203.601333pt;}
.y5a{bottom:208.401333pt;}
.yb7{bottom:209.463000pt;}
.y185{bottom:210.005333pt;}
.y41{bottom:210.292000pt;}
.y147{bottom:212.973333pt;}
.yb1{bottom:213.703759pt;}
.y19{bottom:216.284000pt;}
.y166{bottom:218.566667pt;}
.y122{bottom:221.201333pt;}
.yda{bottom:221.412000pt;}
.y100{bottom:221.549333pt;}
.yb6{bottom:222.594319pt;}
.y59{bottom:226.401333pt;}
.yb0{bottom:226.696000pt;}
.y40{bottom:228.794667pt;}
.y146{bottom:232.720000pt;}
.y18{bottom:233.620000pt;}
.y121{bottom:239.302667pt;}
.yd9{bottom:239.568000pt;}
.yff{bottom:239.701333pt;}
.y165{bottom:244.286667pt;}
.y58{bottom:244.401333pt;}
.y3f{bottom:247.298667pt;}
.y17{bottom:250.954667pt;}
.y145{bottom:252.468000pt;}
.y120{bottom:257.405333pt;}
.yd8{bottom:257.724000pt;}
.yfe{bottom:257.853333pt;}
.ya1{bottom:258.993333pt;}
.y164{bottom:262.446667pt;}
.y3e{bottom:265.802667pt;}
.y16{bottom:268.289333pt;}
.y144{bottom:272.216000pt;}
.y184{bottom:272.517333pt;}
.y11f{bottom:275.506667pt;}
.yd7{bottom:275.880000pt;}
.yfd{bottom:276.004000pt;}
.ya0{bottom:277.036000pt;}
.y3d{bottom:284.305333pt;}
.y15{bottom:285.625333pt;}
.y163{bottom:288.165333pt;}
.y143{bottom:291.962667pt;}
.y11e{bottom:293.608000pt;}
.yd6{bottom:294.036000pt;}
.yfc{bottom:294.156000pt;}
.y12e{bottom:294.404000pt;}
.y9f{bottom:295.078667pt;}
.y183{bottom:298.282667pt;}
.y57{bottom:298.401333pt;}
.y3c{bottom:302.809333pt;}
.y162{bottom:306.325333pt;}
.y11d{bottom:311.710667pt;}
.yd5{bottom:312.192000pt;}
.yfb{bottom:312.308000pt;}
.y9e{bottom:313.122667pt;}
.y14{bottom:314.298667pt;}
.y182{bottom:316.490667pt;}
.y3b{bottom:321.312000pt;}
.y61{bottom:328.786667pt;}
.y11c{bottom:329.812000pt;}
.yd4{bottom:330.348000pt;}
.yfa{bottom:330.458667pt;}
.y9d{bottom:331.165333pt;}
.y142{bottom:331.457333pt;}
.y161{bottom:332.045333pt;}
.y64{bottom:333.810027pt;}
.y6d{bottom:335.033333pt;}
.y6a{bottom:338.398667pt;}
.y3a{bottom:339.816000pt;}
.y181{bottom:342.256000pt;}
.y68{bottom:347.833707pt;}
.y11b{bottom:347.913333pt;}
.yd3{bottom:348.504000pt;}
.yf9{bottom:348.610667pt;}
.y9c{bottom:349.208000pt;}
.y12d{bottom:349.854667pt;}
.y160{bottom:350.205333pt;}
.y141{bottom:351.205333pt;}
.yaf{bottom:352.401333pt;}
.y13{bottom:358.090667pt;}
.y39{bottom:358.318667pt;}
.y180{bottom:360.464000pt;}
.yd2{bottom:366.660000pt;}
.yf8{bottom:366.762667pt;}
.y9b{bottom:367.250667pt;}
.y12c{bottom:367.957333pt;}
.yae{bottom:370.401333pt;}
.y140{bottom:370.952000pt;}
.y15f{bottom:375.924000pt;}
.y12{bottom:376.758667pt;}
.y38{bottom:376.822667pt;}
.yd1{bottom:384.816000pt;}
.yf7{bottom:384.913333pt;}
.y9a{bottom:385.294667pt;}
.y12b{bottom:386.058667pt;}
.y17f{bottom:386.230667pt;}
.yad{bottom:388.401333pt;}
.y13f{bottom:390.700000pt;}
.y15e{bottom:394.084000pt;}
.y37{bottom:395.326667pt;}
.yd0{bottom:402.972000pt;}
.yf6{bottom:403.065333pt;}
.y99{bottom:403.337333pt;}
.y12a{bottom:404.160000pt;}
.y84{bottom:404.234667pt;}
.y85{bottom:404.249333pt;}
.y63{bottom:404.366667pt;}
.y86{bottom:404.368000pt;}
.y82{bottom:404.436000pt;}
.y17e{bottom:404.437333pt;}
.yac{bottom:406.401333pt;}
.y7a{bottom:409.472000pt;}
.y77{bottom:409.764000pt;}
.y13e{bottom:410.448000pt;}
.y75{bottom:412.234667pt;}
.y74{bottom:412.249333pt;}
.y79{bottom:412.366667pt;}
.y66{bottom:412.374507pt;}
.y36{bottom:413.829333pt;}
.y11{bottom:414.325333pt;}
.y80{bottom:417.633333pt;}
.y15d{bottom:419.804000pt;}
.y7c{bottom:420.294667pt;}
.y7e{bottom:420.368000pt;}
.y67{bottom:420.369067pt;}
.ycf{bottom:421.128000pt;}
.yf5{bottom:421.217333pt;}
.y98{bottom:421.380000pt;}
.y129{bottom:422.262667pt;}
.y17d{bottom:422.644000pt;}
.yab{bottom:424.401333pt;}
.y70{bottom:428.236000pt;}
.y6e{bottom:428.249333pt;}
.y65{bottom:428.376907pt;}
.y72{bottom:428.434667pt;}
.y13d{bottom:430.194667pt;}
.y10{bottom:431.660000pt;}
.y35{bottom:432.333333pt;}
.y15c{bottom:437.964000pt;}
.yce{bottom:439.282667pt;}
.yf4{bottom:439.369333pt;}
.y97{bottom:439.422667pt;}
.y11a{bottom:440.364000pt;}
.y17c{bottom:440.852000pt;}
.yaa{bottom:442.401333pt;}
.yf{bottom:448.996000pt;}
.y13c{bottom:449.942667pt;}
.y34{bottom:450.836000pt;}
.ycd{bottom:457.438667pt;}
.y96{bottom:457.466667pt;}
.yf3{bottom:457.520000pt;}
.y119{bottom:458.466667pt;}
.y17b{bottom:459.058667pt;}
.ya9{bottom:460.401333pt;}
.y15b{bottom:463.682667pt;}
.ye{bottom:466.330667pt;}
.y33{bottom:469.340000pt;}
.y13b{bottom:469.689333pt;}
.y95{bottom:475.509333pt;}
.ycc{bottom:475.594667pt;}
.yf2{bottom:475.672000pt;}
.y118{bottom:476.568000pt;}
.ya8{bottom:478.401333pt;}
.y15a{bottom:481.842667pt;}
.yd{bottom:483.666667pt;}
.y17a{bottom:484.825333pt;}
.y32{bottom:487.842667pt;}
.y13a{bottom:489.437333pt;}
.y94{bottom:493.552000pt;}
.ycb{bottom:493.750667pt;}
.yf1{bottom:493.824000pt;}
.y117{bottom:494.669333pt;}
.y56{bottom:496.401333pt;}
.yc{bottom:501.001333pt;}
.y179{bottom:503.032000pt;}
.y31{bottom:506.346667pt;}
.y93{bottom:511.594667pt;}
.yca{bottom:511.906667pt;}
.yf0{bottom:511.974667pt;}
.y116{bottom:512.772000pt;}
.y55{bottom:514.401333pt;}
.yb{bottom:518.336000pt;}
.y30{bottom:524.849333pt;}
.y159{bottom:526.460000pt;}
.y139{bottom:528.082667pt;}
.y178{bottom:528.798667pt;}
.y92{bottom:529.638667pt;}
.yc9{bottom:530.062667pt;}
.yef{bottom:530.126667pt;}
.y115{bottom:530.873333pt;}
.y54{bottom:532.401333pt;}
.ya{bottom:535.672000pt;}
.y2f{bottom:543.353333pt;}
.y177{bottom:547.005333pt;}
.y91{bottom:547.681333pt;}
.yc8{bottom:548.218667pt;}
.yee{bottom:548.278667pt;}
.y114{bottom:548.976000pt;}
.y53{bottom:550.401333pt;}
.y9{bottom:553.006667pt;}
.y2e{bottom:561.857333pt;}
.y90{bottom:565.724000pt;}
.yc7{bottom:566.374667pt;}
.yed{bottom:566.430667pt;}
.y113{bottom:567.077333pt;}
.ya7{bottom:568.401333pt;}
.y176{bottom:572.772000pt;}
.y2d{bottom:580.360000pt;}
.y8{bottom:581.681333pt;}
.y158{bottom:581.969333pt;}
.y8f{bottom:583.766667pt;}
.yc6{bottom:584.530667pt;}
.yec{bottom:584.581333pt;}
.y112{bottom:585.178667pt;}
.y52{bottom:586.401333pt;}
.y175{bottom:590.980000pt;}
.y2c{bottom:598.864000pt;}
.y157{bottom:600.129333pt;}
.yc5{bottom:602.686667pt;}
.yeb{bottom:602.733333pt;}
.y111{bottom:603.281333pt;}
.y51{bottom:604.401333pt;}
.y138{bottom:604.926667pt;}
.y174{bottom:609.186667pt;}
.y192{bottom:614.161333pt;}
.y2b{bottom:617.366667pt;}
.y156{bottom:618.289333pt;}
.y8e{bottom:620.708000pt;}
.yc4{bottom:620.842667pt;}
.yea{bottom:620.885333pt;}
.y110{bottom:621.382667pt;}
.y50{bottom:622.401333pt;}
.y137{bottom:624.674667pt;}
.y191{bottom:632.161333pt;}
.y7{bottom:633.032000pt;}
.y173{bottom:634.953333pt;}
.y2a{bottom:635.870667pt;}
.y155{bottom:636.449333pt;}
.yc3{bottom:638.998667pt;}
.ye9{bottom:639.036000pt;}
.y10f{bottom:639.484000pt;}
.y4f{bottom:640.401333pt;}
.y136{bottom:644.421333pt;}
.y190{bottom:650.161333pt;}
.y172{bottom:653.160000pt;}
.y29{bottom:654.373333pt;}
.y154{bottom:654.609333pt;}
.yc2{bottom:657.153333pt;}
.ye8{bottom:657.188000pt;}
.y10e{bottom:657.586667pt;}
.y4e{bottom:658.401333pt;}
.y135{bottom:664.169333pt;}
.y18f{bottom:668.161333pt;}
.y171{bottom:671.368000pt;}
.y153{bottom:672.769333pt;}
.y28{bottom:672.877333pt;}
.yc1{bottom:675.309333pt;}
.ye7{bottom:675.340000pt;}
.y10d{bottom:675.688000pt;}
.y6{bottom:675.930667pt;}
.y8d{bottom:676.100000pt;}
.y4d{bottom:676.401333pt;}
.y134{bottom:683.916000pt;}
.y152{bottom:690.929333pt;}
.y27{bottom:691.380000pt;}
.yc0{bottom:693.465333pt;}
.ye6{bottom:693.492000pt;}
.y10c{bottom:693.790667pt;}
.y8c{bottom:694.142667pt;}
.y4c{bottom:694.401333pt;}
.y170{bottom:697.133333pt;}
.y18e{bottom:697.500000pt;}
.y133{bottom:703.664000pt;}
.y5{bottom:703.933333pt;}
.y151{bottom:709.089333pt;}
.y26{bottom:709.884000pt;}
.ybf{bottom:711.621333pt;}
.ye5{bottom:711.642667pt;}
.y10b{bottom:711.892000pt;}
.y8b{bottom:712.186667pt;}
.y4b{bottom:712.401333pt;}
.y16f{bottom:715.341333pt;}
.y132{bottom:723.410667pt;}
.y150{bottom:727.249333pt;}
.y25{bottom:728.388000pt;}
.ybe{bottom:729.777333pt;}
.ye4{bottom:729.794667pt;}
.y10a{bottom:729.993333pt;}
.y8a{bottom:730.229333pt;}
.y4a{bottom:730.401333pt;}
.y18d{bottom:734.398667pt;}
.y16e{bottom:741.106667pt;}
.y131{bottom:743.158667pt;}
.y14f{bottom:745.409333pt;}
.y24{bottom:746.890667pt;}
.ybd{bottom:747.933333pt;}
.ye3{bottom:747.946667pt;}
.y109{bottom:748.096000pt;}
.y89{bottom:748.272000pt;}
.y49{bottom:748.401333pt;}
.y18c{bottom:751.732000pt;}
.y4{bottom:758.392000pt;}
.y16d{bottom:759.314667pt;}
.y130{bottom:762.906667pt;}
.y14e{bottom:763.569333pt;}
.y23{bottom:765.394667pt;}
.ybc{bottom:766.089333pt;}
.ye2{bottom:766.098667pt;}
.y108{bottom:766.197333pt;}
.y88{bottom:766.314667pt;}
.y48{bottom:766.401333pt;}
.y18b{bottom:769.065333pt;}
.y12f{bottom:782.653333pt;}
.y22{bottom:783.897333pt;}
.ybb{bottom:784.245333pt;}
.ye1{bottom:784.249333pt;}
.y107{bottom:784.298667pt;}
.y87{bottom:784.358667pt;}
.y47{bottom:784.401333pt;}
.y3{bottom:784.618667pt;}
.y16c{bottom:785.080000pt;}
.y18a{bottom:786.398667pt;}
.y14d{bottom:800.628000pt;}
.y21{bottom:802.401333pt;}
.y2{bottom:803.288000pt;}
.y189{bottom:803.732000pt;}
.y20{bottom:842.834667pt;}
.h1d{height:6.360000pt;}
.h20{height:6.478667pt;}
.h13{height:6.480000pt;}
.h1b{height:6.545333pt;}
.h17{height:6.546667pt;}
.h11{height:6.666667pt;}
.h12{height:6.678667pt;}
.h1e{height:6.680000pt;}
.h15{height:8.073333pt;}
.h1a{height:8.909333pt;}
.h1f{height:8.910667pt;}
.h16{height:9.149333pt;}
.h10{height:9.189333pt;}
.h1c{height:9.281333pt;}
.h18{height:9.322667pt;}
.h19{height:9.434667pt;}
.h14{height:9.494667pt;}
.h23{height:28.835588pt;}
.hb{height:30.107146pt;}
.h22{height:32.915221pt;}
.he{height:33.518720pt;}
.h7{height:36.229167pt;}
.hc{height:36.796875pt;}
.hf{height:37.449600pt;}
.h26{height:40.757812pt;}
.h4{height:45.286458pt;}
.h3{height:47.550781pt;}
.h29{height:48.371094pt;}
.h2a{height:49.322917pt;}
.h27{height:49.815104pt;}
.h28{height:51.789062pt;}
.h8{height:52.079427pt;}
.h9{height:52.977865pt;}
.h25{height:53.037760pt;}
.h2{height:56.608073pt;}
.ha{height:56.721354pt;}
.h21{height:61.136719pt;}
.h6{height:63.401042pt;}
.h5{height:81.515625pt;}
.hd{height:141.732000pt;}
.h24{height:174.157333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w10{width:0.694667pt;}
.we{width:1.380000pt;}
.w12{width:1.381333pt;}
.wd{width:2.620000pt;}
.w8{width:3.162667pt;}
.wc{width:3.362667pt;}
.w9{width:3.572000pt;}
.w5{width:4.594667pt;}
.w11{width:4.726667pt;}
.w3{width:5.006667pt;}
.w7{width:5.045333pt;}
.wb{width:5.046667pt;}
.w4{width:5.165333pt;}
.wf{width:5.458667pt;}
.wa{width:5.562667pt;}
.w6{width:5.670667pt;}
.w2{width:421.417333pt;}
.w13{width:491.338667pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x20{left:-4.297333pt;}
.x1c{left:-3.368000pt;}
.x0{left:0.000000pt;}
.x7{left:73.079333pt;}
.x9{left:74.340133pt;}
.x1{left:75.590533pt;}
.x28{left:89.690515pt;}
.x5{left:93.355467pt;}
.x6{left:94.548267pt;}
.x2a{left:103.556400pt;}
.x8{left:109.735867pt;}
.x29{left:115.524327pt;}
.xe{left:117.524853pt;}
.x13{left:147.794667pt;}
.x12{left:157.410667pt;}
.x1b{left:171.713333pt;}
.x21{left:173.100000pt;}
.x1d{left:176.033333pt;}
.x1e{left:178.982667pt;}
.x22{left:183.605333pt;}
.x1f{left:185.434667pt;}
.xb{left:186.461333pt;}
.x23{left:193.258667pt;}
.x10{left:194.744000pt;}
.x3{left:204.985333pt;}
.x4{left:206.866667pt;}
.x2{left:207.848000pt;}
.xf{left:305.290773pt;}
.xc{left:391.902933pt;}
.xa{left:442.317333pt;}
.xd{left:444.916693pt;}
.x19{left:449.461333pt;}
.x14{left:451.426667pt;}
.x1a{left:456.380000pt;}
.x15{left:457.522667pt;}
.x26{left:461.390667pt;}
.x16{left:462.913333pt;}
.x17{left:469.844000pt;}
.x18{left:476.286667pt;}
.x24{left:489.957333pt;}
.x27{left:509.649333pt;}
.x11{left:514.201333pt;}
.x25{left:515.791146pt;}
}




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