
    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_59a5c77ba31306b6ead5af9e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_fcb6acbaaa4559baade6b203.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.947000;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_e4e5ecc07073a0fd00c830e5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.963000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_20e2cac1ec3817a7d5ae697d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.922000;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_a30d2afe727f75a1e278c360.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.973000;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_a8e2a1a346388dcc6886037b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.881836;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_331c99ab6e700c2c05835538.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.908000;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_8c433c3c79f5ba24aebb5e34.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.961000;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_6f231fade473b91383ef05b7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.963000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_51b5bc4f010e30e79b5c6a34.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.982000;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_720bdf3754590bb474f52154.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.869629;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_c3f454257b697aa5d750117b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_434f8fd8e3bcf89ae6596248.woff2')format("woff");}.fff{font-family:fff;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_e703268438e4940eac6a9342.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.961000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_9f3c0a484954a3f3fb631c40.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.956000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_2c6071b635ec63c5091802f3.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.912000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_887151ad43592603bbd4b5c2.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.962000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_fe7eeb25e6074ac95fb29cc0.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.692383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_8173ed096b7a4068448a784d.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_b827f7c3fd865362f996050a.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_3bdc973f9d8a5459a8bfbf01.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.956000;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;}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.982000px;}
.v5{vertical-align:-10.119000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:10.119000px;}
.v1{vertical-align:21.978000px;}
.v4{vertical-align:42.000000px;}
.v6{vertical-align:52.119000px;}
.ls4{letter-spacing:-2.772000px;}
.lse{letter-spacing:-1.980000px;}
.ls8{letter-spacing:-1.140000px;}
.lsd{letter-spacing:-1.122000px;}
.ls9{letter-spacing:-0.990000px;}
.ls10{letter-spacing:-0.960000px;}
.ls13{letter-spacing:-0.858000px;}
.ls3{letter-spacing:-0.660000px;}
.lsf{letter-spacing:-0.480000px;}
.ls2{letter-spacing:-0.264000px;}
.lsa{letter-spacing:-0.132000px;}
.lsc{letter-spacing:-0.086508px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.108216px;}
.ls1{letter-spacing:41.640000px;}
.ls7{letter-spacing:101.742600px;}
.ls5{letter-spacing:102.732600px;}
.ls6{letter-spacing:104.118600px;}
.ls14{letter-spacing:106.548000px;}
.ls15{letter-spacing:115.326000px;}
.ls12{letter-spacing:115.934400px;}
.ls11{letter-spacing:218.839200px;}
.ls16{letter-spacing:723.348000px;}
.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;}
}
.ws4{word-spacing:-19.200000px;}
.ws90{word-spacing:-18.240000px;}
.ws65{word-spacing:-17.061192px;}
.ws64{word-spacing:-14.644800px;}
.ws2{word-spacing:-13.200000px;}
.ws8{word-spacing:-12.804000px;}
.wsa0{word-spacing:-12.342000px;}
.ws66{word-spacing:-12.228408px;}
.ws79{word-spacing:-12.078000px;}
.wsae{word-spacing:-10.476000px;}
.ws93{word-spacing:-8.316000px;}
.ws1{word-spacing:-7.695600px;}
.ws3{word-spacing:-6.296400px;}
.ws9f{word-spacing:-5.295600px;}
.ws33{word-spacing:-4.620000px;}
.ws42{word-spacing:-3.234000px;}
.ws2d{word-spacing:-2.772000px;}
.wse{word-spacing:-2.112000px;}
.wsa{word-spacing:-1.782000px;}
.ws3c{word-spacing:-1.716000px;}
.ws39{word-spacing:-1.650000px;}
.ws17{word-spacing:-1.386000px;}
.ws6c{word-spacing:-1.038096px;}
.ws6e{word-spacing:-0.692064px;}
.ws7c{word-spacing:-0.660000px;}
.wsf{word-spacing:-0.594000px;}
.ws68{word-spacing:-0.528444px;}
.ws5c{word-spacing:-0.528000px;}
.ws37{word-spacing:-0.396000px;}
.ws67{word-spacing:-0.301968px;}
.ws6d{word-spacing:-0.259524px;}
.ws99{word-spacing:-0.120000px;}
.ws6a{word-spacing:-0.108216px;}
.ws0{word-spacing:0.000000px;}
.ws6b{word-spacing:0.086508px;}
.ws52{word-spacing:0.132000px;}
.ws6f{word-spacing:0.198000px;}
.ws69{word-spacing:0.226476px;}
.ws80{word-spacing:0.264000px;}
.ws32{word-spacing:0.330000px;}
.ws5d{word-spacing:0.462000px;}
.ws7{word-spacing:0.528000px;}
.wsd{word-spacing:0.660000px;}
.ws8f{word-spacing:0.726000px;}
.ws5a{word-spacing:0.792000px;}
.ws4b{word-spacing:0.990000px;}
.ws1e{word-spacing:1.056000px;}
.ws4a{word-spacing:1.140000px;}
.wsb{word-spacing:1.188000px;}
.ws85{word-spacing:1.254000px;}
.ws38{word-spacing:1.320000px;}
.ws92{word-spacing:1.386000px;}
.ws95{word-spacing:1.518000px;}
.ws56{word-spacing:1.650000px;}
.ws2a{word-spacing:1.716000px;}
.ws59{word-spacing:1.782000px;}
.ws14{word-spacing:1.848000px;}
.ws61{word-spacing:1.980000px;}
.ws74{word-spacing:2.244000px;}
.ws82{word-spacing:2.310000px;}
.ws83{word-spacing:2.352000px;}
.ws24{word-spacing:2.772000px;}
.ws4c{word-spacing:3.036000px;}
.ws1d{word-spacing:3.102000px;}
.ws94{word-spacing:3.168000px;}
.ws5{word-spacing:3.300000px;}
.ws4e{word-spacing:3.366000px;}
.ws3b{word-spacing:3.432000px;}
.ws97{word-spacing:3.660000px;}
.ws16{word-spacing:3.762000px;}
.ws34{word-spacing:3.828000px;}
.ws51{word-spacing:4.026000px;}
.ws2c{word-spacing:4.290000px;}
.ws1c{word-spacing:4.620000px;}
.ws7f{word-spacing:4.752000px;}
.ws7b{word-spacing:5.016000px;}
.ws84{word-spacing:5.214000px;}
.ws8e{word-spacing:5.280000px;}
.ws58{word-spacing:5.478000px;}
.wsc{word-spacing:5.742000px;}
.ws11{word-spacing:5.940000px;}
.ws88{word-spacing:6.006000px;}
.ws8d{word-spacing:6.270000px;}
.ws50{word-spacing:6.402000px;}
.ws72{word-spacing:6.468000px;}
.ws6{word-spacing:6.600000px;}
.ws86{word-spacing:6.666000px;}
.ws87{word-spacing:6.732000px;}
.ws91{word-spacing:6.864000px;}
.ws23{word-spacing:7.062000px;}
.ws53{word-spacing:7.458000px;}
.ws4f{word-spacing:7.656000px;}
.ws9{word-spacing:7.722000px;}
.ws98{word-spacing:8.040000px;}
.ws7e{word-spacing:8.316000px;}
.ws1b{word-spacing:8.448000px;}
.ws5b{word-spacing:8.514000px;}
.ws89{word-spacing:8.646000px;}
.ws36{word-spacing:8.712000px;}
.ws12{word-spacing:8.844000px;}
.ws9d{word-spacing:8.910000px;}
.ws5e{word-spacing:8.976000px;}
.ws29{word-spacing:9.108000px;}
.ws70{word-spacing:9.240000px;}
.ws4d{word-spacing:9.702000px;}
.ws57{word-spacing:9.966000px;}
.ws41{word-spacing:10.164000px;}
.ws3e{word-spacing:10.230000px;}
.ws40{word-spacing:10.362000px;}
.ws1f{word-spacing:10.428000px;}
.ws7d{word-spacing:10.560000px;}
.ws2b{word-spacing:10.626000px;}
.ws3d{word-spacing:10.692000px;}
.ws9a{word-spacing:10.956000px;}
.ws55{word-spacing:11.616000px;}
.ws18{word-spacing:11.748000px;}
.ws19{word-spacing:12.144000px;}
.ws73{word-spacing:12.738000px;}
.ws15{word-spacing:13.068000px;}
.ws9c{word-spacing:13.200000px;}
.ws22{word-spacing:13.266000px;}
.ws43{word-spacing:13.662000px;}
.ws3f{word-spacing:13.728000px;}
.ws8b{word-spacing:13.926000px;}
.ws75{word-spacing:14.058000px;}
.ws81{word-spacing:14.190000px;}
.ws62{word-spacing:14.256000px;}
.ws71{word-spacing:14.718000px;}
.ws10{word-spacing:15.312000px;}
.ws28{word-spacing:15.444000px;}
.ws20{word-spacing:15.708000px;}
.ws9b{word-spacing:15.840000px;}
.ws13{word-spacing:16.104000px;}
.ws8c{word-spacing:16.566000px;}
.ws35{word-spacing:16.830000px;}
.ws60{word-spacing:16.896000px;}
.ws3a{word-spacing:17.028000px;}
.ws5f{word-spacing:17.226000px;}
.ws21{word-spacing:17.292000px;}
.ws1a{word-spacing:18.084000px;}
.ws54{word-spacing:19.404000px;}
.wsa7{word-spacing:25.674000px;}
.ws9e{word-spacing:28.248000px;}
.ws8a{word-spacing:29.238000px;}
.ws96{word-spacing:30.492000px;}
.wsad{word-spacing:67.080000px;}
.wsab{word-spacing:68.466000px;}
.ws7a{word-spacing:71.142600px;}
.ws2e{word-spacing:75.108000px;}
.ws44{word-spacing:80.754600px;}
.wsac{word-spacing:84.438000px;}
.ws49{word-spacing:90.984600px;}
.ws45{word-spacing:101.808600px;}
.wsa9{word-spacing:102.126000px;}
.wsa3{word-spacing:102.734400px;}
.wsa5{word-spacing:103.596000px;}
.ws30{word-spacing:133.980000px;}
.ws31{word-spacing:135.366000px;}
.ws2f{word-spacing:146.256000px;}
.ws46{word-spacing:163.302600px;}
.ws48{word-spacing:164.754600px;}
.ws47{word-spacing:176.898600px;}
.wsa6{word-spacing:180.757200px;}
.wsa1{word-spacing:181.368000px;}
.ws77{word-spacing:216.600000px;}
.ws25{word-spacing:224.436000px;}
.ws26{word-spacing:225.822000px;}
.ws27{word-spacing:225.888000px;}
.ws76{word-spacing:286.596000px;}
.ws78{word-spacing:332.298000px;}
.wsa4{word-spacing:408.456600px;}
.wsa2{word-spacing:788.467800px;}
.wsa8{word-spacing:868.482600px;}
.ws63{word-spacing:1532.714400px;}
.wsaa{word-spacing:1950.456600px;}
._28{margin-left:-1271.919600px;}
._11{margin-left:-43.557000px;}
._30{margin-left:-9.141000px;}
._31{margin-left:-8.134800px;}
._32{margin-left:-6.999000px;}
._2{margin-left:-5.760000px;}
._2f{margin-left:-4.613400px;}
._1{margin-left:-3.600000px;}
._6{margin-left:-2.584200px;}
._0{margin-left:-1.206000px;}
._5{width:1.687800px;}
._7{width:3.018000px;}
._4{width:4.369200px;}
._a{width:5.734800px;}
._3{width:6.956400px;}
._b{width:8.230200px;}
._8{width:9.372000px;}
._26{width:10.401600px;}
._e{width:11.403000px;}
._9{width:14.575800px;}
._f{width:15.661800px;}
._c{width:17.054400px;}
._d{width:18.072600px;}
._29{width:19.166400px;}
._10{width:20.220600px;}
._12{width:21.372600px;}
._27{width:22.641000px;}
._17{width:24.769800px;}
._2a{width:31.003200px;}
._33{width:32.275800px;}
._35{width:65.138400px;}
._4d{width:75.440400px;}
._3b{width:76.858800px;}
._3a{width:78.978000px;}
._4c{width:79.998000px;}
._4b{width:91.500000px;}
._57{width:92.556000px;}
._21{width:102.226800px;}
._1f{width:103.546800px;}
._36{width:114.444000px;}
._40{width:115.934400px;}
._47{width:117.588000px;}
._39{width:137.044800px;}
._1a{width:146.190000px;}
._13{width:154.674000px;}
._42{width:161.914800px;}
._25{width:174.522600px;}
._1e{width:176.502600px;}
._24{width:180.738600px;}
._51{width:187.740000px;}
._3c{width:201.824400px;}
._38{width:203.791200px;}
._56{width:208.476600px;}
._37{width:217.206600px;}
._49{width:222.600600px;}
._23{width:225.760800px;}
._16{width:236.646000px;}
._3e{width:239.773200px;}
._1c{width:245.814600px;}
._15{width:249.912000px;}
._20{width:268.324800px;}
._4f{width:270.408000px;}
._43{width:271.604400px;}
._1b{width:273.006600px;}
._2e{width:275.244000px;}
._4a{width:277.800000px;}
._22{width:279.610800px;}
._1d{width:281.524800px;}
._2b{width:302.994000px;}
._3f{width:318.376800px;}
._2d{width:361.093200px;}
._34{width:370.872600px;}
._2c{width:373.003200px;}
._55{width:422.844000px;}
._48{width:425.881200px;}
._4e{width:435.106800px;}
._19{width:439.771800px;}
._3d{width:568.896000px;}
._14{width:1122.545400px;}
._46{width:1319.520600px;}
._18{width:1506.108000px;}
._44{width:1552.887000px;}
._45{width:1614.663000px;}
._41{width:1637.529000px;}
._54{width:1649.514600px;}
._52{width:1728.072600px;}
._53{width:1789.848600px;}
._50{width:1812.714600px;}
.fc8{color:rgb(77,89,107);}
.fc6{color:rgb(11,9,7);}
.fc5{color:rgb(26,13,12);}
.fc4{color:rgb(77,90,108);}
.fc3{color:rgb(25,31,69);}
.fc7{color:rgb(244,244,244);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:31.482000px;}
.fs7{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs11{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fsd{font-size:54.108000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsb{font-size:64.800000px;}
.fs6{font-size:66.000000px;}
.fse{font-size:70.308000px;}
.fs0{font-size:72.000000px;}
.fsc{font-size:75.492000px;}
.fsf{font-size:86.508000px;}
.fsa{font-size:96.000000px;}
.fs10{font-size:97.200000px;}
.fs2{font-size:102.000000px;}
.fs5{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y3d{bottom:55.936950px;}
.y22{bottom:56.622150px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y101{bottom:114.285900px;}
.yed{bottom:120.437100px;}
.y195{bottom:128.359950px;}
.y191{bottom:128.959950px;}
.yac{bottom:129.040200px;}
.y36{bottom:129.722850px;}
.y14a{bottom:130.060950px;}
.y1bb{bottom:131.860800px;}
.y1c5{bottom:132.160800px;}
.y12f{bottom:132.460950px;}
.y21{bottom:139.264499px;}
.y187{bottom:143.525250px;}
.y177{bottom:144.125250px;}
.y35{bottom:146.222850px;}
.y95{bottom:148.275600px;}
.y194{bottom:149.359950px;}
.y190{bottom:149.959950px;}
.y149{bottom:151.060950px;}
.y14f{bottom:152.762250px;}
.y6a{bottom:152.775600px;}
.y1ba{bottom:152.860800px;}
.y1c4{bottom:153.160800px;}
.y12e{bottom:153.460950px;}
.y100{bottom:155.706000px;}
.yec{bottom:160.671300px;}
.y186{bottom:164.525250px;}
.y176{bottom:165.125250px;}
.y34{bottom:167.218350px;}
.y94{bottom:169.275600px;}
.y193{bottom:170.359950px;}
.y18f{bottom:170.959950px;}
.y148{bottom:172.060950px;}
.y211{bottom:173.267700px;}
.y69{bottom:173.775600px;}
.y1b9{bottom:173.860800px;}
.y1c3{bottom:174.160800px;}
.y12d{bottom:174.460950px;}
.yff{bottom:176.706000px;}
.yab{bottom:178.264950px;}
.yeb{bottom:181.671300px;}
.y185{bottom:185.525250px;}
.y175{bottom:186.125250px;}
.y1dc{bottom:187.275600px;}
.y93{bottom:190.275600px;}
.y192{bottom:191.359950px;}
.y18e{bottom:191.959950px;}
.y147{bottom:193.060950px;}
.y210{bottom:194.267700px;}
.y68{bottom:194.775600px;}
.y1b8{bottom:194.860800px;}
.y1c2{bottom:195.160800px;}
.y12c{bottom:195.460950px;}
.y18{bottom:196.933500px;}
.yaa{bottom:199.264950px;}
.y33{bottom:206.522850px;}
.y184{bottom:206.525250px;}
.y174{bottom:207.125250px;}
.y1db{bottom:208.275600px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y92{bottom:211.275600px;}
.y18d{bottom:212.959950px;}
.y146{bottom:214.060950px;}
.y20f{bottom:215.267700px;}
.y67{bottom:215.775600px;}
.y233{bottom:215.836950px;}
.y1b7{bottom:215.860800px;}
.y1c1{bottom:216.160800px;}
.y12b{bottom:216.460950px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y32{bottom:223.022850px;}
.yfe{bottom:223.206000px;}
.yea{bottom:225.171300px;}
.y183{bottom:227.525250px;}
.y173{bottom:228.125250px;}
.y91{bottom:232.275600px;}
.y18c{bottom:233.959950px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y225{bottom:235.636950px;}
.y20e{bottom:236.267700px;}
.y66{bottom:236.775600px;}
.y1b6{bottom:236.860800px;}
.y1c0{bottom:237.160800px;}
.y12a{bottom:237.460950px;}
.yfd{bottom:244.206000px;}
.ye9{bottom:246.171300px;}
.y182{bottom:248.525250px;}
.y172{bottom:249.125250px;}
.y1da{bottom:250.275600px;}
.y90{bottom:253.275600px;}
.y18b{bottom:254.959950px;}
.y145{bottom:256.660800px;}
.y20d{bottom:257.267700px;}
.y31{bottom:257.522850px;}
.ya9{bottom:257.764950px;}
.y65{bottom:257.775600px;}
.y1b5{bottom:257.860800px;}
.y1bf{bottom:258.160800px;}
.y129{bottom:258.460950px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y181{bottom:269.525250px;}
.y171{bottom:270.125250px;}
.y1d9{bottom:271.275600px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y30{bottom:274.022850px;}
.y232{bottom:274.210950px;}
.y8f{bottom:274.275600px;}
.y18a{bottom:275.959950px;}
.y144{bottom:277.660800px;}
.y20c{bottom:278.267700px;}
.ya8{bottom:278.764950px;}
.y64{bottom:278.775600px;}
.y1b4{bottom:278.860800px;}
.y1be{bottom:279.160800px;}
.y128{bottom:279.460950px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.ye8{bottom:289.671300px;}
.y180{bottom:290.525250px;}
.yfc{bottom:290.706000px;}
.y170{bottom:291.125250px;}
.y1d8{bottom:292.275600px;}
.y224{bottom:295.210950px;}
.y8e{bottom:295.275600px;}
.y189{bottom:296.959950px;}
.y143{bottom:298.660800px;}
.y20b{bottom:299.267700px;}
.y63{bottom:299.775600px;}
.y1b3{bottom:299.860800px;}
.y1bd{bottom:300.160800px;}
.y127{bottom:300.460950px;}
.y2f{bottom:308.522850px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.ye7{bottom:310.671300px;}
.y17f{bottom:311.525250px;}
.yfb{bottom:311.706000px;}
.y16f{bottom:312.125250px;}
.y8d{bottom:316.275600px;}
.y188{bottom:317.959950px;}
.y142{bottom:319.660800px;}
.y20a{bottom:320.267700px;}
.y62{bottom:320.775600px;}
.y1b2{bottom:320.860800px;}
.y1bc{bottom:321.160800px;}
.y126{bottom:321.460950px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y17e{bottom:332.525250px;}
.y231{bottom:332.710950px;}
.y16e{bottom:333.125250px;}
.y1d7{bottom:334.275600px;}
.ya7{bottom:337.264950px;}
.y8c{bottom:337.275600px;}
.y141{bottom:340.660800px;}
.y209{bottom:341.267700px;}
.y61{bottom:341.775600px;}
.y1b1{bottom:341.860800px;}
.y125{bottom:342.460950px;}
.yf{bottom:348.133500px;}
.y17d{bottom:353.525250px;}
.y223{bottom:353.710950px;}
.y16d{bottom:354.125250px;}
.ye6{bottom:354.171300px;}
.y1d6{bottom:355.275600px;}
.yfa{bottom:358.206000px;}
.ya6{bottom:358.264950px;}
.y140{bottom:361.660800px;}
.y208{bottom:362.267700px;}
.y60{bottom:362.775600px;}
.y1b0{bottom:362.860800px;}
.y124{bottom:363.460950px;}
.y3c{bottom:373.393650px;}
.y17c{bottom:374.525250px;}
.y16c{bottom:375.125250px;}
.y1d5{bottom:376.275600px;}
.yf9{bottom:379.206000px;}
.ya5{bottom:379.264950px;}
.y8b{bottom:379.275600px;}
.y13f{bottom:382.660800px;}
.y207{bottom:383.267700px;}
.y1af{bottom:383.860950px;}
.y1dd{bottom:384.460950px;}
.ye{bottom:386.785499px;}
.y230{bottom:391.210950px;}
.y196{bottom:393.810300px;}
.y3b{bottom:394.393650px;}
.y17b{bottom:395.525250px;}
.y16b{bottom:396.125250px;}
.ye5{bottom:397.671300px;}
.y8a{bottom:400.275600px;}
.y13e{bottom:403.660800px;}
.y206{bottom:404.267700px;}
.y5f{bottom:404.775600px;}
.y1ae{bottom:404.860950px;}
.y123{bottom:405.460950px;}
.y14d{bottom:405.860100px;}
.yd{bottom:408.044999px;}
.y221{bottom:412.210950px;}
.y3a{bottom:415.393650px;}
.y17a{bottom:416.525250px;}
.y16a{bottom:417.125250px;}
.y1d4{bottom:418.275600px;}
.y89{bottom:421.275600px;}
.y13d{bottom:424.660800px;}
.y222{bottom:425.240700px;}
.y205{bottom:425.267700px;}
.yf8{bottom:425.706000px;}
.y5e{bottom:425.775600px;}
.y122{bottom:426.460950px;}
.y220{bottom:433.210950px;}
.y39{bottom:436.393650px;}
.y179{bottom:437.525250px;}
.ya4{bottom:437.764950px;}
.y169{bottom:438.125250px;}
.y1d3{bottom:439.275600px;}
.y88{bottom:442.275600px;}
.y13c{bottom:445.660800px;}
.y204{bottom:446.267700px;}
.yf7{bottom:446.706000px;}
.y5d{bottom:446.775600px;}
.y121{bottom:447.460950px;}
.y1ad{bottom:447.525600px;}
.ye4{bottom:448.671300px;}
.y22f{bottom:449.710950px;}
.y38{bottom:457.393650px;}
.y178{bottom:458.525250px;}
.ya3{bottom:458.764950px;}
.y168{bottom:459.125250px;}
.y87{bottom:463.275600px;}
.y13b{bottom:466.660800px;}
.y203{bottom:467.267700px;}
.y5c{bottom:467.775600px;}
.y120{bottom:468.460950px;}
.y1ac{bottom:468.525600px;}
.y21f{bottom:470.710950px;}
.y37{bottom:478.393650px;}
.ya2{bottom:479.764950px;}
.y167{bottom:480.125250px;}
.y1d2{bottom:481.275600px;}
.y86{bottom:484.275600px;}
.y13a{bottom:487.660800px;}
.y202{bottom:488.267700px;}
.y5b{bottom:488.775600px;}
.y11f{bottom:489.460950px;}
.y1ab{bottom:489.525600px;}
.y21e{bottom:491.710950px;}
.yf6{bottom:493.206000px;}
.y166{bottom:501.125250px;}
.y1d1{bottom:502.275600px;}
.yc{bottom:502.864502px;}
.y85{bottom:505.275600px;}
.y139{bottom:508.660800px;}
.y201{bottom:509.267700px;}
.ye3{bottom:509.541900px;}
.y5a{bottom:509.775600px;}
.yc9{bottom:510.141900px;}
.y11e{bottom:510.460950px;}
.y1aa{bottom:510.525600px;}
.yf5{bottom:514.206000px;}
.yb{bottom:520.864502px;}
.y165{bottom:522.125250px;}
.y84{bottom:526.275600px;}
.y22e{bottom:529.210950px;}
.y138{bottom:529.660800px;}
.y200{bottom:530.267700px;}
.ye2{bottom:530.541900px;}
.y59{bottom:530.775600px;}
.yc8{bottom:531.141900px;}
.y11d{bottom:531.460950px;}
.y1a9{bottom:531.525600px;}
.ya1{bottom:538.264950px;}
.ya{bottom:538.864499px;}
.y164{bottom:543.125250px;}
.y1d0{bottom:544.275600px;}
.y83{bottom:547.275600px;}
.y21d{bottom:550.210950px;}
.y137{bottom:550.660800px;}
.y1ff{bottom:551.267700px;}
.ye1{bottom:551.541900px;}
.y58{bottom:551.775600px;}
.yc7{bottom:552.141900px;}
.y11c{bottom:552.460950px;}
.y1a8{bottom:552.525600px;}
.y9{bottom:556.864499px;}
.ya0{bottom:559.264950px;}
.y163{bottom:564.125250px;}
.y1cf{bottom:565.275600px;}
.yf4{bottom:566.706000px;}
.y82{bottom:568.275600px;}
.y136{bottom:571.660800px;}
.y1fe{bottom:572.267700px;}
.ye0{bottom:572.541900px;}
.y57{bottom:572.775600px;}
.yc6{bottom:573.141900px;}
.y11b{bottom:573.460950px;}
.y2e{bottom:573.524400px;}
.y162{bottom:585.125250px;}
.y22d{bottom:587.710950px;}
.y81{bottom:589.275600px;}
.y135{bottom:592.660800px;}
.ydf{bottom:593.541900px;}
.y56{bottom:593.775600px;}
.yc5{bottom:594.141900px;}
.y11a{bottom:594.460950px;}
.y2d{bottom:594.524400px;}
.y1ce{bottom:607.275600px;}
.y21c{bottom:608.710950px;}
.y80{bottom:610.275600px;}
.y1a7{bottom:611.025600px;}
.y134{bottom:613.660800px;}
.y1fd{bottom:614.267700px;}
.y55{bottom:614.775600px;}
.yc4{bottom:615.141900px;}
.y119{bottom:615.460950px;}
.y2c{bottom:615.524400px;}
.y9f{bottom:617.764950px;}
.y1cd{bottom:628.275600px;}
.y7f{bottom:631.275600px;}
.y1a6{bottom:632.025600px;}
.yf2{bottom:633.975600px;}
.y133{bottom:634.660800px;}
.yf3{bottom:635.175600px;}
.y1fc{bottom:635.267700px;}
.yde{bottom:635.541900px;}
.y54{bottom:635.775600px;}
.yc3{bottom:636.141900px;}
.y118{bottom:636.460950px;}
.y2b{bottom:636.524400px;}
.y242{bottom:636.855750px;}
.y8{bottom:645.510000px;}
.y22b{bottom:646.210950px;}
.y7e{bottom:652.275600px;}
.y1a5{bottom:653.025600px;}
.yf1{bottom:654.975600px;}
.y132{bottom:655.660800px;}
.y1fb{bottom:656.267700px;}
.ydd{bottom:656.541900px;}
.y53{bottom:656.775600px;}
.yc2{bottom:657.141900px;}
.y117{bottom:657.460950px;}
.y2a{bottom:657.524400px;}
.y22c{bottom:659.240700px;}
.y7{bottom:666.771000px;}
.y21b{bottom:667.210950px;}
.y161{bottom:667.268550px;}
.y1cc{bottom:670.275600px;}
.y7d{bottom:673.275600px;}
.y1a4{bottom:674.025600px;}
.yf0{bottom:675.975600px;}
.y9e{bottom:676.264950px;}
.y131{bottom:676.660800px;}
.y1fa{bottom:677.267700px;}
.ydc{bottom:677.541900px;}
.y52{bottom:677.775600px;}
.yc1{bottom:678.141900px;}
.y116{bottom:678.460950px;}
.y29{bottom:678.524400px;}
.y160{bottom:685.268550px;}
.y241{bottom:686.710950px;}
.y21a{bottom:688.210950px;}
.y1cb{bottom:691.275600px;}
.y1a3{bottom:695.025600px;}
.yef{bottom:696.975600px;}
.y1f9{bottom:698.267700px;}
.ydb{bottom:698.541900px;}
.y51{bottom:698.775600px;}
.yc0{bottom:699.141900px;}
.y115{bottom:699.460950px;}
.y28{bottom:699.524400px;}
.y240{bottom:707.710950px;}
.y14c{bottom:713.998500px;}
.y7c{bottom:715.275600px;}
.yee{bottom:717.975600px;}
.y1f8{bottom:719.267700px;}
.yda{bottom:719.541900px;}
.y50{bottom:719.775600px;}
.ybf{bottom:720.141900px;}
.y114{bottom:720.460950px;}
.y152{bottom:724.470600px;}
.y22a{bottom:725.710950px;}
.y6{bottom:726.298500px;}
.y23f{bottom:728.710950px;}
.y27{bottom:729.524400px;}
.y1ca{bottom:733.275600px;}
.y7b{bottom:736.275600px;}
.y1f7{bottom:740.267700px;}
.yd9{bottom:740.541900px;}
.y4f{bottom:740.775600px;}
.ybe{bottom:741.141900px;}
.y151{bottom:741.399600px;}
.y113{bottom:741.460950px;}
.y219{bottom:746.710950px;}
.y23e{bottom:749.710950px;}
.y3{bottom:752.599495px;}
.y1a2{bottom:753.525600px;}
.y1c9{bottom:754.275600px;}
.y9c{bottom:761.175750px;}
.y1f6{bottom:761.267700px;}
.yd8{bottom:761.541900px;}
.y9d{bottom:761.775600px;}
.y112{bottom:762.460950px;}
.y7a{bottom:763.275600px;}
.y23d{bottom:770.710950px;}
.y1a1{bottom:774.525600px;}
.y9b{bottom:782.175600px;}
.y1f5{bottom:782.267700px;}
.yd7{bottom:782.541900px;}
.y4e{bottom:782.775600px;}
.ybd{bottom:783.141900px;}
.y111{bottom:783.460950px;}
.y229{bottom:784.210950px;}
.y79{bottom:784.275600px;}
.y159{bottom:787.818393px;}
.y23c{bottom:791.710950px;}
.y1a0{bottom:795.525600px;}
.y1c8{bottom:796.275600px;}
.y9a{bottom:803.175600px;}
.y1f4{bottom:803.267700px;}
.yd6{bottom:803.541900px;}
.y4d{bottom:803.775600px;}
.ybc{bottom:804.141900px;}
.y110{bottom:804.460950px;}
.y26{bottom:805.124400px;}
.y218{bottom:805.210950px;}
.y78{bottom:811.275600px;}
.y23b{bottom:812.710950px;}
.y19f{bottom:816.525600px;}
.y1c7{bottom:817.275600px;}
.y154{bottom:823.911600px;}
.y99{bottom:824.175600px;}
.y1f3{bottom:824.267700px;}
.yd5{bottom:824.541900px;}
.y4c{bottom:824.775600px;}
.ybb{bottom:825.141900px;}
.y10f{bottom:825.460950px;}
.y228{bottom:826.754400px;}
.y77{bottom:832.275600px;}
.y23a{bottom:833.710950px;}
.y19e{bottom:837.525600px;}
.y1c6{bottom:838.275600px;}
.y1e6{bottom:839.316300px;}
.y217{bottom:842.710950px;}
.y98{bottom:845.175600px;}
.y1f2{bottom:845.267700px;}
.yd4{bottom:845.541900px;}
.y4b{bottom:845.775600px;}
.yba{bottom:846.141900px;}
.y10e{bottom:846.460950px;}
.y227{bottom:847.754400px;}
.y25{bottom:850.724400px;}
.y239{bottom:854.710950px;}
.y1e5{bottom:860.316300px;}
.y150{bottom:863.358600px;}
.y216{bottom:863.710950px;}
.y97{bottom:866.175600px;}
.y1f1{bottom:866.267700px;}
.yd3{bottom:866.541900px;}
.y4a{bottom:866.775600px;}
.yb9{bottom:867.141900px;}
.y10d{bottom:867.460950px;}
.y238{bottom:875.710950px;}
.y2{bottom:879.369000px;}
.y76{bottom:880.275600px;}
.y1e4{bottom:881.316300px;}
.y155{bottom:882.312600px;}
.y24{bottom:886.724400px;}
.y96{bottom:887.175600px;}
.y1f0{bottom:887.267700px;}
.yd2{bottom:887.541900px;}
.y49{bottom:887.775600px;}
.yb8{bottom:888.141900px;}
.y130{bottom:888.460950px;}
.y19d{bottom:896.025600px;}
.y237{bottom:896.710950px;}
.y15e{bottom:898.755750px;}
.y226{bottom:901.210950px;}
.y75{bottom:901.275600px;}
.y157{bottom:904.722600px;}
.y15d{bottom:906.612600px;}
.y1ef{bottom:908.267700px;}
.yd1{bottom:908.541900px;}
.y15f{bottom:908.583750px;}
.y48{bottom:908.775600px;}
.yb7{bottom:909.141900px;}
.y10c{bottom:909.460950px;}
.y19c{bottom:917.025600px;}
.y236{bottom:917.710950px;}
.y215{bottom:922.210950px;}
.y74{bottom:922.275600px;}
.y153{bottom:922.434600px;}
.yd0{bottom:929.541900px;}
.y47{bottom:929.775600px;}
.yb6{bottom:930.141900px;}
.y10b{bottom:930.460950px;}
.y19b{bottom:938.025600px;}
.y235{bottom:938.710950px;}
.y73{bottom:943.275600px;}
.y15c{bottom:948.489750px;}
.y1ee{bottom:950.267700px;}
.ycf{bottom:950.541900px;}
.y46{bottom:950.775600px;}
.yb5{bottom:951.141900px;}
.y10a{bottom:951.460950px;}
.y1e3{bottom:953.316300px;}
.y19a{bottom:959.025600px;}
.y234{bottom:959.710950px;}
.y72{bottom:964.275600px;}
.y1{bottom:966.726000px;}
.y1ed{bottom:971.267700px;}
.yce{bottom:971.541900px;}
.y45{bottom:971.775600px;}
.yb4{bottom:972.141900px;}
.y109{bottom:972.460950px;}
.y1e2{bottom:974.316300px;}
.y199{bottom:980.025600px;}
.y214{bottom:980.710950px;}
.y71{bottom:985.275600px;}
.y1ec{bottom:992.267700px;}
.ycd{bottom:992.541900px;}
.y44{bottom:992.775600px;}
.yb3{bottom:993.141900px;}
.y108{bottom:993.460950px;}
.y1e1{bottom:995.316300px;}
.y156{bottom:996.657600px;}
.y158{bottom:1003.893750px;}
.y70{bottom:1006.275600px;}
.y1eb{bottom:1013.267700px;}
.ycc{bottom:1013.541900px;}
.y43{bottom:1013.775600px;}
.yb2{bottom:1014.141900px;}
.y107{bottom:1014.460950px;}
.y1e0{bottom:1016.316300px;}
.y6f{bottom:1027.275600px;}
.y1ea{bottom:1034.267700px;}
.ycb{bottom:1034.541900px;}
.y42{bottom:1034.775600px;}
.yb1{bottom:1035.141900px;}
.y106{bottom:1035.460950px;}
.y1df{bottom:1037.316300px;}
.y198{bottom:1038.525600px;}
.y213{bottom:1039.210950px;}
.y14e{bottom:1046.607750px;}
.y6e{bottom:1048.275600px;}
.y1e9{bottom:1055.267700px;}
.yca{bottom:1055.541900px;}
.y41{bottom:1055.775600px;}
.yb0{bottom:1056.141900px;}
.y105{bottom:1056.460950px;}
.y6d{bottom:1069.275600px;}
.y15a{bottom:1073.511063px;}
.y1e8{bottom:1076.267700px;}
.y15b{bottom:1076.560470px;}
.y40{bottom:1076.775600px;}
.yaf{bottom:1077.141900px;}
.y104{bottom:1077.460950px;}
.y6c{bottom:1090.275600px;}
.y197{bottom:1097.025600px;}
.y212{bottom:1097.710950px;}
.y3f{bottom:1097.775600px;}
.yae{bottom:1098.141900px;}
.y103{bottom:1098.460950px;}
.y1de{bottom:1103.102400px;}
.y1e7{bottom:1106.267700px;}
.y6b{bottom:1111.275600px;}
.y14b{bottom:1117.509600px;}
.y3e{bottom:1118.775600px;}
.yad{bottom:1119.141900px;}
.y102{bottom:1119.460950px;}
.y23{bottom:1191.897750px;}
.h11{height:23.517054px;}
.h7{height:32.130000px;}
.h1e{height:37.410609px;}
.h12{height:40.338000px;}
.h19{height:41.202000px;}
.h10{height:41.256000px;}
.h1a{height:41.796000px;}
.h24{height:44.698242px;}
.h1b{height:44.803125px;}
.h9{height:44.820000px;}
.ha{height:45.780000px;}
.h25{height:45.826172px;}
.h14{height:45.840000px;}
.h6{height:45.900000px;}
.hd{height:47.718000px;}
.h1f{height:48.062109px;}
.h3{height:48.195000px;}
.hf{height:49.302000px;}
.h28{height:50.094000px;}
.h17{height:50.292000px;}
.h16{height:50.358000px;}
.he{height:50.424000px;}
.hc{height:50.721066px;}
.h18{height:51.084000px;}
.h1d{height:51.605859px;}
.h22{height:54.817242px;}
.h15{height:54.864000px;}
.h2{height:55.080000px;}
.h26{height:55.945172px;}
.h20{height:59.136328px;}
.h21{height:64.784180px;}
.h13{height:69.408000px;}
.h5{height:78.030000px;}
.hb{height:86.760000px;}
.h23{height:93.084000px;}
.h27{height:97.945172px;}
.h4{height:119.055004px;}
.h1c{height:421.276500px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:586.491000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:20.246250px;}
.x11{left:63.362100px;}
.x7{left:64.425150px;}
.x34{left:69.667200px;}
.x15{left:72.629550px;}
.x8{left:98.925150px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xd{left:108.728700px;}
.x35{left:112.677150px;}
.x12{left:154.592700px;}
.x1b{left:159.237000px;}
.x2c{left:176.532150px;}
.x39{left:184.095000px;}
.xe{left:187.178700px;}
.x1d{left:193.658250px;}
.x1f{left:202.163250px;}
.x4{left:203.484001px;}
.x16{left:210.833850px;}
.x1c{left:212.162250px;}
.x2f{left:215.773950px;}
.x37{left:218.141400px;}
.x1a{left:225.167250px;}
.x27{left:228.590526px;}
.x6{left:260.369100px;}
.xa{left:262.612650px;}
.x2e{left:291.018150px;}
.x2d{left:295.796100px;}
.x17{left:305.156550px;}
.x19{left:308.974800px;}
.x20{left:316.643250px;}
.x10{left:328.544700px;}
.x36{left:348.356700px;}
.x30{left:361.573950px;}
.x18{left:389.756700px;}
.x22{left:392.162250px;}
.x24{left:405.770250px;}
.x3a{left:436.050000px;}
.x5{left:438.611850px;}
.x14{left:439.714950px;}
.x33{left:440.922300px;}
.x29{left:450.482250px;}
.x3{left:454.959000px;}
.x9{left:463.464450px;}
.xb{left:489.053850px;}
.xc{left:499.464600px;}
.x31{left:516.138750px;}
.x26{left:523.885584px;}
.x2b{left:538.259250px;}
.xf{left:540.346500px;}
.x21{left:544.523250px;}
.x23{left:573.899250px;}
.x28{left:586.885035px;}
.x13{left:603.885150px;}
.x2a{left:625.577250px;}
.x32{left:685.282050px;}
.x25{left:712.976250px;}
.x38{left:733.856700px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v5{vertical-align:-8.994667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:8.994667pt;}
.v1{vertical-align:19.536000pt;}
.v4{vertical-align:37.333333pt;}
.v6{vertical-align:46.328000pt;}
.ls4{letter-spacing:-2.464000pt;}
.lse{letter-spacing:-1.760000pt;}
.ls8{letter-spacing:-1.013333pt;}
.lsd{letter-spacing:-0.997333pt;}
.ls9{letter-spacing:-0.880000pt;}
.ls10{letter-spacing:-0.853333pt;}
.ls13{letter-spacing:-0.762667pt;}
.ls3{letter-spacing:-0.586667pt;}
.lsf{letter-spacing:-0.426667pt;}
.ls2{letter-spacing:-0.234667pt;}
.lsa{letter-spacing:-0.117333pt;}
.lsc{letter-spacing:-0.076896pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.096192pt;}
.ls1{letter-spacing:37.013333pt;}
.ls7{letter-spacing:90.437867pt;}
.ls5{letter-spacing:91.317867pt;}
.ls6{letter-spacing:92.549867pt;}
.ls14{letter-spacing:94.709333pt;}
.ls15{letter-spacing:102.512000pt;}
.ls12{letter-spacing:103.052800pt;}
.ls11{letter-spacing:194.523733pt;}
.ls16{letter-spacing:642.976000pt;}
.ws4{word-spacing:-17.066667pt;}
.ws90{word-spacing:-16.213333pt;}
.ws65{word-spacing:-15.165504pt;}
.ws64{word-spacing:-13.017600pt;}
.ws2{word-spacing:-11.733333pt;}
.ws8{word-spacing:-11.381333pt;}
.wsa0{word-spacing:-10.970667pt;}
.ws66{word-spacing:-10.869696pt;}
.ws79{word-spacing:-10.736000pt;}
.wsae{word-spacing:-9.312000pt;}
.ws93{word-spacing:-7.392000pt;}
.ws1{word-spacing:-6.840533pt;}
.ws3{word-spacing:-5.596800pt;}
.ws9f{word-spacing:-4.707200pt;}
.ws33{word-spacing:-4.106667pt;}
.ws42{word-spacing:-2.874667pt;}
.ws2d{word-spacing:-2.464000pt;}
.wse{word-spacing:-1.877333pt;}
.wsa{word-spacing:-1.584000pt;}
.ws3c{word-spacing:-1.525333pt;}
.ws39{word-spacing:-1.466667pt;}
.ws17{word-spacing:-1.232000pt;}
.ws6c{word-spacing:-0.922752pt;}
.ws6e{word-spacing:-0.615168pt;}
.ws7c{word-spacing:-0.586667pt;}
.wsf{word-spacing:-0.528000pt;}
.ws68{word-spacing:-0.469728pt;}
.ws5c{word-spacing:-0.469333pt;}
.ws37{word-spacing:-0.352000pt;}
.ws67{word-spacing:-0.268416pt;}
.ws6d{word-spacing:-0.230688pt;}
.ws99{word-spacing:-0.106667pt;}
.ws6a{word-spacing:-0.096192pt;}
.ws0{word-spacing:0.000000pt;}
.ws6b{word-spacing:0.076896pt;}
.ws52{word-spacing:0.117333pt;}
.ws6f{word-spacing:0.176000pt;}
.ws69{word-spacing:0.201312pt;}
.ws80{word-spacing:0.234667pt;}
.ws32{word-spacing:0.293333pt;}
.ws5d{word-spacing:0.410667pt;}
.ws7{word-spacing:0.469333pt;}
.wsd{word-spacing:0.586667pt;}
.ws8f{word-spacing:0.645333pt;}
.ws5a{word-spacing:0.704000pt;}
.ws4b{word-spacing:0.880000pt;}
.ws1e{word-spacing:0.938667pt;}
.ws4a{word-spacing:1.013333pt;}
.wsb{word-spacing:1.056000pt;}
.ws85{word-spacing:1.114667pt;}
.ws38{word-spacing:1.173333pt;}
.ws92{word-spacing:1.232000pt;}
.ws95{word-spacing:1.349333pt;}
.ws56{word-spacing:1.466667pt;}
.ws2a{word-spacing:1.525333pt;}
.ws59{word-spacing:1.584000pt;}
.ws14{word-spacing:1.642667pt;}
.ws61{word-spacing:1.760000pt;}
.ws74{word-spacing:1.994667pt;}
.ws82{word-spacing:2.053333pt;}
.ws83{word-spacing:2.090667pt;}
.ws24{word-spacing:2.464000pt;}
.ws4c{word-spacing:2.698667pt;}
.ws1d{word-spacing:2.757333pt;}
.ws94{word-spacing:2.816000pt;}
.ws5{word-spacing:2.933333pt;}
.ws4e{word-spacing:2.992000pt;}
.ws3b{word-spacing:3.050667pt;}
.ws97{word-spacing:3.253333pt;}
.ws16{word-spacing:3.344000pt;}
.ws34{word-spacing:3.402667pt;}
.ws51{word-spacing:3.578667pt;}
.ws2c{word-spacing:3.813333pt;}
.ws1c{word-spacing:4.106667pt;}
.ws7f{word-spacing:4.224000pt;}
.ws7b{word-spacing:4.458667pt;}
.ws84{word-spacing:4.634667pt;}
.ws8e{word-spacing:4.693333pt;}
.ws58{word-spacing:4.869333pt;}
.wsc{word-spacing:5.104000pt;}
.ws11{word-spacing:5.280000pt;}
.ws88{word-spacing:5.338667pt;}
.ws8d{word-spacing:5.573333pt;}
.ws50{word-spacing:5.690667pt;}
.ws72{word-spacing:5.749333pt;}
.ws6{word-spacing:5.866667pt;}
.ws86{word-spacing:5.925333pt;}
.ws87{word-spacing:5.984000pt;}
.ws91{word-spacing:6.101333pt;}
.ws23{word-spacing:6.277333pt;}
.ws53{word-spacing:6.629333pt;}
.ws4f{word-spacing:6.805333pt;}
.ws9{word-spacing:6.864000pt;}
.ws98{word-spacing:7.146667pt;}
.ws7e{word-spacing:7.392000pt;}
.ws1b{word-spacing:7.509333pt;}
.ws5b{word-spacing:7.568000pt;}
.ws89{word-spacing:7.685333pt;}
.ws36{word-spacing:7.744000pt;}
.ws12{word-spacing:7.861333pt;}
.ws9d{word-spacing:7.920000pt;}
.ws5e{word-spacing:7.978667pt;}
.ws29{word-spacing:8.096000pt;}
.ws70{word-spacing:8.213333pt;}
.ws4d{word-spacing:8.624000pt;}
.ws57{word-spacing:8.858667pt;}
.ws41{word-spacing:9.034667pt;}
.ws3e{word-spacing:9.093333pt;}
.ws40{word-spacing:9.210667pt;}
.ws1f{word-spacing:9.269333pt;}
.ws7d{word-spacing:9.386667pt;}
.ws2b{word-spacing:9.445333pt;}
.ws3d{word-spacing:9.504000pt;}
.ws9a{word-spacing:9.738667pt;}
.ws55{word-spacing:10.325333pt;}
.ws18{word-spacing:10.442667pt;}
.ws19{word-spacing:10.794667pt;}
.ws73{word-spacing:11.322667pt;}
.ws15{word-spacing:11.616000pt;}
.ws9c{word-spacing:11.733333pt;}
.ws22{word-spacing:11.792000pt;}
.ws43{word-spacing:12.144000pt;}
.ws3f{word-spacing:12.202667pt;}
.ws8b{word-spacing:12.378667pt;}
.ws75{word-spacing:12.496000pt;}
.ws81{word-spacing:12.613333pt;}
.ws62{word-spacing:12.672000pt;}
.ws71{word-spacing:13.082667pt;}
.ws10{word-spacing:13.610667pt;}
.ws28{word-spacing:13.728000pt;}
.ws20{word-spacing:13.962667pt;}
.ws9b{word-spacing:14.080000pt;}
.ws13{word-spacing:14.314667pt;}
.ws8c{word-spacing:14.725333pt;}
.ws35{word-spacing:14.960000pt;}
.ws60{word-spacing:15.018667pt;}
.ws3a{word-spacing:15.136000pt;}
.ws5f{word-spacing:15.312000pt;}
.ws21{word-spacing:15.370667pt;}
.ws1a{word-spacing:16.074667pt;}
.ws54{word-spacing:17.248000pt;}
.wsa7{word-spacing:22.821333pt;}
.ws9e{word-spacing:25.109333pt;}
.ws8a{word-spacing:25.989333pt;}
.ws96{word-spacing:27.104000pt;}
.wsad{word-spacing:59.626667pt;}
.wsab{word-spacing:60.858667pt;}
.ws7a{word-spacing:63.237867pt;}
.ws2e{word-spacing:66.762667pt;}
.ws44{word-spacing:71.781867pt;}
.wsac{word-spacing:75.056000pt;}
.ws49{word-spacing:80.875200pt;}
.ws45{word-spacing:90.496533pt;}
.wsa9{word-spacing:90.778667pt;}
.wsa3{word-spacing:91.319467pt;}
.wsa5{word-spacing:92.085333pt;}
.ws30{word-spacing:119.093333pt;}
.ws31{word-spacing:120.325333pt;}
.ws2f{word-spacing:130.005333pt;}
.ws46{word-spacing:145.157867pt;}
.ws48{word-spacing:146.448533pt;}
.ws47{word-spacing:157.243200pt;}
.wsa6{word-spacing:160.673067pt;}
.wsa1{word-spacing:161.216000pt;}
.ws77{word-spacing:192.533333pt;}
.ws25{word-spacing:199.498667pt;}
.ws26{word-spacing:200.730667pt;}
.ws27{word-spacing:200.789333pt;}
.ws76{word-spacing:254.752000pt;}
.ws78{word-spacing:295.376000pt;}
.wsa4{word-spacing:363.072533pt;}
.wsa2{word-spacing:700.860267pt;}
.wsa8{word-spacing:771.984533pt;}
.ws63{word-spacing:1362.412800pt;}
.wsaa{word-spacing:1733.739200pt;}
._28{margin-left:-1130.595200pt;}
._11{margin-left:-38.717333pt;}
._30{margin-left:-8.125333pt;}
._31{margin-left:-7.230933pt;}
._32{margin-left:-6.221333pt;}
._2{margin-left:-5.120000pt;}
._2f{margin-left:-4.100800pt;}
._1{margin-left:-3.200000pt;}
._6{margin-left:-2.297067pt;}
._0{margin-left:-1.072000pt;}
._5{width:1.500267pt;}
._7{width:2.682667pt;}
._4{width:3.883733pt;}
._a{width:5.097600pt;}
._3{width:6.183467pt;}
._b{width:7.315733pt;}
._8{width:8.330667pt;}
._26{width:9.245867pt;}
._e{width:10.136000pt;}
._9{width:12.956267pt;}
._f{width:13.921600pt;}
._c{width:15.159467pt;}
._d{width:16.064533pt;}
._29{width:17.036800pt;}
._10{width:17.973867pt;}
._12{width:18.997867pt;}
._27{width:20.125333pt;}
._17{width:22.017600pt;}
._2a{width:27.558400pt;}
._33{width:28.689600pt;}
._35{width:57.900800pt;}
._4d{width:67.058133pt;}
._3b{width:68.318933pt;}
._3a{width:70.202667pt;}
._4c{width:71.109333pt;}
._4b{width:81.333333pt;}
._57{width:82.272000pt;}
._21{width:90.868267pt;}
._1f{width:92.041600pt;}
._36{width:101.728000pt;}
._40{width:103.052800pt;}
._47{width:104.522667pt;}
._39{width:121.817600pt;}
._1a{width:129.946667pt;}
._13{width:137.488000pt;}
._42{width:143.924267pt;}
._25{width:155.131200pt;}
._1e{width:156.891200pt;}
._24{width:160.656533pt;}
._51{width:166.880000pt;}
._3c{width:179.399467pt;}
._38{width:181.147733pt;}
._56{width:185.312533pt;}
._37{width:193.072533pt;}
._49{width:197.867200pt;}
._23{width:200.676267pt;}
._16{width:210.352000pt;}
._3e{width:213.131733pt;}
._1c{width:218.501867pt;}
._15{width:222.144000pt;}
._20{width:238.510933pt;}
._4f{width:240.362667pt;}
._43{width:241.426133pt;}
._1b{width:242.672533pt;}
._2e{width:244.661333pt;}
._4a{width:246.933333pt;}
._22{width:248.542933pt;}
._1d{width:250.244267pt;}
._2b{width:269.328000pt;}
._3f{width:283.001600pt;}
._2d{width:320.971733pt;}
._34{width:329.664533pt;}
._2c{width:331.558400pt;}
._55{width:375.861333pt;}
._48{width:378.561067pt;}
._4e{width:386.761600pt;}
._19{width:390.908267pt;}
._3d{width:505.685333pt;}
._14{width:997.818133pt;}
._46{width:1172.907200pt;}
._18{width:1338.762667pt;}
._44{width:1380.344000pt;}
._45{width:1435.256000pt;}
._41{width:1455.581333pt;}
._54{width:1466.235200pt;}
._52{width:1536.064533pt;}
._53{width:1590.976533pt;}
._50{width:1611.301867pt;}
.fs9{font-size:27.984000pt;}
.fs7{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs11{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fsd{font-size:48.096000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsb{font-size:57.600000pt;}
.fs6{font-size:58.666667pt;}
.fse{font-size:62.496000pt;}
.fs0{font-size:64.000000pt;}
.fsc{font-size:67.104000pt;}
.fsf{font-size:76.896000pt;}
.fsa{font-size:85.333333pt;}
.fs10{font-size:86.400000pt;}
.fs2{font-size:90.666667pt;}
.fs5{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:49.721733pt;}
.y22{bottom:50.330800pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y101{bottom:101.587467pt;}
.yed{bottom:107.055200pt;}
.y195{bottom:114.097733pt;}
.y191{bottom:114.631067pt;}
.yac{bottom:114.702400pt;}
.y36{bottom:115.309200pt;}
.y14a{bottom:115.609733pt;}
.y1bb{bottom:117.209600pt;}
.y1c5{bottom:117.476267pt;}
.y12f{bottom:117.743067pt;}
.y21{bottom:123.790666pt;}
.y187{bottom:127.578000pt;}
.y177{bottom:128.111333pt;}
.y35{bottom:129.975867pt;}
.y95{bottom:131.800533pt;}
.y194{bottom:132.764400pt;}
.y190{bottom:133.297733pt;}
.y149{bottom:134.276400pt;}
.y14f{bottom:135.788667pt;}
.y6a{bottom:135.800533pt;}
.y1ba{bottom:135.876267pt;}
.y1c4{bottom:136.142933pt;}
.y12e{bottom:136.409733pt;}
.y100{bottom:138.405333pt;}
.yec{bottom:142.818933pt;}
.y186{bottom:146.244667pt;}
.y176{bottom:146.778000pt;}
.y34{bottom:148.638533pt;}
.y94{bottom:150.467200pt;}
.y193{bottom:151.431067pt;}
.y18f{bottom:151.964400pt;}
.y148{bottom:152.943067pt;}
.y211{bottom:154.015733pt;}
.y69{bottom:154.467200pt;}
.y1b9{bottom:154.542933pt;}
.y1c3{bottom:154.809600pt;}
.y12d{bottom:155.076400pt;}
.yff{bottom:157.072000pt;}
.yab{bottom:158.457733pt;}
.yeb{bottom:161.485600pt;}
.y185{bottom:164.911333pt;}
.y175{bottom:165.444667pt;}
.y1dc{bottom:166.467200pt;}
.y93{bottom:169.133867pt;}
.y192{bottom:170.097733pt;}
.y18e{bottom:170.631067pt;}
.y147{bottom:171.609733pt;}
.y210{bottom:172.682400pt;}
.y68{bottom:173.133867pt;}
.y1b8{bottom:173.209600pt;}
.y1c2{bottom:173.476267pt;}
.y12c{bottom:173.743067pt;}
.y18{bottom:175.052000pt;}
.yaa{bottom:177.124400pt;}
.y33{bottom:183.575867pt;}
.y184{bottom:183.578000pt;}
.y174{bottom:184.111333pt;}
.y1db{bottom:185.133867pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y92{bottom:187.800533pt;}
.y18d{bottom:189.297733pt;}
.y146{bottom:190.276400pt;}
.y20f{bottom:191.349067pt;}
.y67{bottom:191.800533pt;}
.y233{bottom:191.855067pt;}
.y1b7{bottom:191.876267pt;}
.y1c1{bottom:192.142933pt;}
.y12b{bottom:192.409733pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y32{bottom:198.242533pt;}
.yfe{bottom:198.405333pt;}
.yea{bottom:200.152267pt;}
.y183{bottom:202.244667pt;}
.y173{bottom:202.778000pt;}
.y91{bottom:206.467200pt;}
.y18c{bottom:207.964400pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y225{bottom:209.455067pt;}
.y20e{bottom:210.015733pt;}
.y66{bottom:210.467200pt;}
.y1b6{bottom:210.542933pt;}
.y1c0{bottom:210.809600pt;}
.y12a{bottom:211.076400pt;}
.yfd{bottom:217.072000pt;}
.ye9{bottom:218.818933pt;}
.y182{bottom:220.911333pt;}
.y172{bottom:221.444667pt;}
.y1da{bottom:222.467200pt;}
.y90{bottom:225.133867pt;}
.y18b{bottom:226.631067pt;}
.y145{bottom:228.142933pt;}
.y20d{bottom:228.682400pt;}
.y31{bottom:228.909200pt;}
.ya9{bottom:229.124400pt;}
.y65{bottom:229.133867pt;}
.y1b5{bottom:229.209600pt;}
.y1bf{bottom:229.476267pt;}
.y129{bottom:229.743067pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y181{bottom:239.578000pt;}
.y171{bottom:240.111333pt;}
.y1d9{bottom:241.133867pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y30{bottom:243.575867pt;}
.y232{bottom:243.743067pt;}
.y8f{bottom:243.800533pt;}
.y18a{bottom:245.297733pt;}
.y144{bottom:246.809600pt;}
.y20c{bottom:247.349067pt;}
.ya8{bottom:247.791067pt;}
.y64{bottom:247.800533pt;}
.y1b4{bottom:247.876267pt;}
.y1be{bottom:248.142933pt;}
.y128{bottom:248.409733pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.ye8{bottom:257.485600pt;}
.y180{bottom:258.244667pt;}
.yfc{bottom:258.405333pt;}
.y170{bottom:258.778000pt;}
.y1d8{bottom:259.800533pt;}
.y224{bottom:262.409733pt;}
.y8e{bottom:262.467200pt;}
.y189{bottom:263.964400pt;}
.y143{bottom:265.476267pt;}
.y20b{bottom:266.015733pt;}
.y63{bottom:266.467200pt;}
.y1b3{bottom:266.542933pt;}
.y1bd{bottom:266.809600pt;}
.y127{bottom:267.076400pt;}
.y2f{bottom:274.242533pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.ye7{bottom:276.152267pt;}
.y17f{bottom:276.911333pt;}
.yfb{bottom:277.072000pt;}
.y16f{bottom:277.444667pt;}
.y8d{bottom:281.133867pt;}
.y188{bottom:282.631067pt;}
.y142{bottom:284.142933pt;}
.y20a{bottom:284.682400pt;}
.y62{bottom:285.133867pt;}
.y1b2{bottom:285.209600pt;}
.y1bc{bottom:285.476267pt;}
.y126{bottom:285.743067pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y17e{bottom:295.578000pt;}
.y231{bottom:295.743067pt;}
.y16e{bottom:296.111333pt;}
.y1d7{bottom:297.133867pt;}
.ya7{bottom:299.791067pt;}
.y8c{bottom:299.800533pt;}
.y141{bottom:302.809600pt;}
.y209{bottom:303.349067pt;}
.y61{bottom:303.800533pt;}
.y1b1{bottom:303.876267pt;}
.y125{bottom:304.409733pt;}
.yf{bottom:309.452000pt;}
.y17d{bottom:314.244667pt;}
.y223{bottom:314.409733pt;}
.y16d{bottom:314.778000pt;}
.ye6{bottom:314.818933pt;}
.y1d6{bottom:315.800533pt;}
.yfa{bottom:318.405333pt;}
.ya6{bottom:318.457733pt;}
.y140{bottom:321.476267pt;}
.y208{bottom:322.015733pt;}
.y60{bottom:322.467200pt;}
.y1b0{bottom:322.542933pt;}
.y124{bottom:323.076400pt;}
.y3c{bottom:331.905467pt;}
.y17c{bottom:332.911333pt;}
.y16c{bottom:333.444667pt;}
.y1d5{bottom:334.467200pt;}
.yf9{bottom:337.072000pt;}
.ya5{bottom:337.124400pt;}
.y8b{bottom:337.133867pt;}
.y13f{bottom:340.142933pt;}
.y207{bottom:340.682400pt;}
.y1af{bottom:341.209733pt;}
.y1dd{bottom:341.743067pt;}
.ye{bottom:343.809333pt;}
.y230{bottom:347.743067pt;}
.y196{bottom:350.053600pt;}
.y3b{bottom:350.572133pt;}
.y17b{bottom:351.578000pt;}
.y16b{bottom:352.111333pt;}
.ye5{bottom:353.485600pt;}
.y8a{bottom:355.800533pt;}
.y13e{bottom:358.809600pt;}
.y206{bottom:359.349067pt;}
.y5f{bottom:359.800533pt;}
.y1ae{bottom:359.876400pt;}
.y123{bottom:360.409733pt;}
.y14d{bottom:360.764533pt;}
.yd{bottom:362.706666pt;}
.y221{bottom:366.409733pt;}
.y3a{bottom:369.238800pt;}
.y17a{bottom:370.244667pt;}
.y16a{bottom:370.778000pt;}
.y1d4{bottom:371.800533pt;}
.y89{bottom:374.467200pt;}
.y13d{bottom:377.476267pt;}
.y222{bottom:377.991733pt;}
.y205{bottom:378.015733pt;}
.yf8{bottom:378.405333pt;}
.y5e{bottom:378.467200pt;}
.y122{bottom:379.076400pt;}
.y220{bottom:385.076400pt;}
.y39{bottom:387.905467pt;}
.y179{bottom:388.911333pt;}
.ya4{bottom:389.124400pt;}
.y169{bottom:389.444667pt;}
.y1d3{bottom:390.467200pt;}
.y88{bottom:393.133867pt;}
.y13c{bottom:396.142933pt;}
.y204{bottom:396.682400pt;}
.yf7{bottom:397.072000pt;}
.y5d{bottom:397.133867pt;}
.y121{bottom:397.743067pt;}
.y1ad{bottom:397.800533pt;}
.ye4{bottom:398.818933pt;}
.y22f{bottom:399.743067pt;}
.y38{bottom:406.572133pt;}
.y178{bottom:407.578000pt;}
.ya3{bottom:407.791067pt;}
.y168{bottom:408.111333pt;}
.y87{bottom:411.800533pt;}
.y13b{bottom:414.809600pt;}
.y203{bottom:415.349067pt;}
.y5c{bottom:415.800533pt;}
.y120{bottom:416.409733pt;}
.y1ac{bottom:416.467200pt;}
.y21f{bottom:418.409733pt;}
.y37{bottom:425.238800pt;}
.ya2{bottom:426.457733pt;}
.y167{bottom:426.778000pt;}
.y1d2{bottom:427.800533pt;}
.y86{bottom:430.467200pt;}
.y13a{bottom:433.476267pt;}
.y202{bottom:434.015733pt;}
.y5b{bottom:434.467200pt;}
.y11f{bottom:435.076400pt;}
.y1ab{bottom:435.133867pt;}
.y21e{bottom:437.076400pt;}
.yf6{bottom:438.405333pt;}
.y166{bottom:445.444667pt;}
.y1d1{bottom:446.467200pt;}
.yc{bottom:446.990669pt;}
.y85{bottom:449.133867pt;}
.y139{bottom:452.142933pt;}
.y201{bottom:452.682400pt;}
.ye3{bottom:452.926133pt;}
.y5a{bottom:453.133867pt;}
.yc9{bottom:453.459467pt;}
.y11e{bottom:453.743067pt;}
.y1aa{bottom:453.800533pt;}
.yf5{bottom:457.072000pt;}
.yb{bottom:462.990669pt;}
.y165{bottom:464.111333pt;}
.y84{bottom:467.800533pt;}
.y22e{bottom:470.409733pt;}
.y138{bottom:470.809600pt;}
.y200{bottom:471.349067pt;}
.ye2{bottom:471.592800pt;}
.y59{bottom:471.800533pt;}
.yc8{bottom:472.126133pt;}
.y11d{bottom:472.409733pt;}
.y1a9{bottom:472.467200pt;}
.ya1{bottom:478.457733pt;}
.ya{bottom:478.990666pt;}
.y164{bottom:482.778000pt;}
.y1d0{bottom:483.800533pt;}
.y83{bottom:486.467200pt;}
.y21d{bottom:489.076400pt;}
.y137{bottom:489.476267pt;}
.y1ff{bottom:490.015733pt;}
.ye1{bottom:490.259467pt;}
.y58{bottom:490.467200pt;}
.yc7{bottom:490.792800pt;}
.y11c{bottom:491.076400pt;}
.y1a8{bottom:491.133867pt;}
.y9{bottom:494.990666pt;}
.ya0{bottom:497.124400pt;}
.y163{bottom:501.444667pt;}
.y1cf{bottom:502.467200pt;}
.yf4{bottom:503.738667pt;}
.y82{bottom:505.133867pt;}
.y136{bottom:508.142933pt;}
.y1fe{bottom:508.682400pt;}
.ye0{bottom:508.926133pt;}
.y57{bottom:509.133867pt;}
.yc6{bottom:509.459467pt;}
.y11b{bottom:509.743067pt;}
.y2e{bottom:509.799467pt;}
.y162{bottom:520.111333pt;}
.y22d{bottom:522.409733pt;}
.y81{bottom:523.800533pt;}
.y135{bottom:526.809600pt;}
.ydf{bottom:527.592800pt;}
.y56{bottom:527.800533pt;}
.yc5{bottom:528.126133pt;}
.y11a{bottom:528.409733pt;}
.y2d{bottom:528.466133pt;}
.y1ce{bottom:539.800533pt;}
.y21c{bottom:541.076400pt;}
.y80{bottom:542.467200pt;}
.y1a7{bottom:543.133867pt;}
.y134{bottom:545.476267pt;}
.y1fd{bottom:546.015733pt;}
.y55{bottom:546.467200pt;}
.yc4{bottom:546.792800pt;}
.y119{bottom:547.076400pt;}
.y2c{bottom:547.132800pt;}
.y9f{bottom:549.124400pt;}
.y1cd{bottom:558.467200pt;}
.y7f{bottom:561.133867pt;}
.y1a6{bottom:561.800533pt;}
.yf2{bottom:563.533867pt;}
.y133{bottom:564.142933pt;}
.yf3{bottom:564.600533pt;}
.y1fc{bottom:564.682400pt;}
.yde{bottom:564.926133pt;}
.y54{bottom:565.133867pt;}
.yc3{bottom:565.459467pt;}
.y118{bottom:565.743067pt;}
.y2b{bottom:565.799467pt;}
.y242{bottom:566.094000pt;}
.y8{bottom:573.786667pt;}
.y22b{bottom:574.409733pt;}
.y7e{bottom:579.800533pt;}
.y1a5{bottom:580.467200pt;}
.yf1{bottom:582.200533pt;}
.y132{bottom:582.809600pt;}
.y1fb{bottom:583.349067pt;}
.ydd{bottom:583.592800pt;}
.y53{bottom:583.800533pt;}
.yc2{bottom:584.126133pt;}
.y117{bottom:584.409733pt;}
.y2a{bottom:584.466133pt;}
.y22c{bottom:585.991733pt;}
.y7{bottom:592.685334pt;}
.y21b{bottom:593.076400pt;}
.y161{bottom:593.127600pt;}
.y1cc{bottom:595.800533pt;}
.y7d{bottom:598.467200pt;}
.y1a4{bottom:599.133867pt;}
.yf0{bottom:600.867200pt;}
.y9e{bottom:601.124400pt;}
.y131{bottom:601.476267pt;}
.y1fa{bottom:602.015733pt;}
.ydc{bottom:602.259467pt;}
.y52{bottom:602.467200pt;}
.yc1{bottom:602.792800pt;}
.y116{bottom:603.076400pt;}
.y29{bottom:603.132800pt;}
.y160{bottom:609.127600pt;}
.y241{bottom:610.409733pt;}
.y21a{bottom:611.743067pt;}
.y1cb{bottom:614.467200pt;}
.y1a3{bottom:617.800533pt;}
.yef{bottom:619.533867pt;}
.y1f9{bottom:620.682400pt;}
.ydb{bottom:620.926133pt;}
.y51{bottom:621.133867pt;}
.yc0{bottom:621.459467pt;}
.y115{bottom:621.743067pt;}
.y28{bottom:621.799467pt;}
.y240{bottom:629.076400pt;}
.y14c{bottom:634.665333pt;}
.y7c{bottom:635.800533pt;}
.yee{bottom:638.200533pt;}
.y1f8{bottom:639.349067pt;}
.yda{bottom:639.592800pt;}
.y50{bottom:639.800533pt;}
.ybf{bottom:640.126133pt;}
.y114{bottom:640.409733pt;}
.y152{bottom:643.973867pt;}
.y22a{bottom:645.076400pt;}
.y6{bottom:645.598667pt;}
.y23f{bottom:647.743067pt;}
.y27{bottom:648.466133pt;}
.y1ca{bottom:651.800533pt;}
.y7b{bottom:654.467200pt;}
.y1f7{bottom:658.015733pt;}
.yd9{bottom:658.259467pt;}
.y4f{bottom:658.467200pt;}
.ybe{bottom:658.792800pt;}
.y151{bottom:659.021867pt;}
.y113{bottom:659.076400pt;}
.y219{bottom:663.743067pt;}
.y23e{bottom:666.409733pt;}
.y3{bottom:668.977329pt;}
.y1a2{bottom:669.800533pt;}
.y1c9{bottom:670.467200pt;}
.y9c{bottom:676.600667pt;}
.y1f6{bottom:676.682400pt;}
.yd8{bottom:676.926133pt;}
.y9d{bottom:677.133867pt;}
.y112{bottom:677.743067pt;}
.y7a{bottom:678.467200pt;}
.y23d{bottom:685.076400pt;}
.y1a1{bottom:688.467200pt;}
.y9b{bottom:695.267200pt;}
.y1f5{bottom:695.349067pt;}
.yd7{bottom:695.592800pt;}
.y4e{bottom:695.800533pt;}
.ybd{bottom:696.126133pt;}
.y111{bottom:696.409733pt;}
.y229{bottom:697.076400pt;}
.y79{bottom:697.133867pt;}
.y159{bottom:700.283016pt;}
.y23c{bottom:703.743067pt;}
.y1a0{bottom:707.133867pt;}
.y1c8{bottom:707.800533pt;}
.y9a{bottom:713.933867pt;}
.y1f4{bottom:714.015733pt;}
.yd6{bottom:714.259467pt;}
.y4d{bottom:714.467200pt;}
.ybc{bottom:714.792800pt;}
.y110{bottom:715.076400pt;}
.y26{bottom:715.666133pt;}
.y218{bottom:715.743067pt;}
.y78{bottom:721.133867pt;}
.y23b{bottom:722.409733pt;}
.y19f{bottom:725.800533pt;}
.y1c7{bottom:726.467200pt;}
.y154{bottom:732.365867pt;}
.y99{bottom:732.600533pt;}
.y1f3{bottom:732.682400pt;}
.yd5{bottom:732.926133pt;}
.y4c{bottom:733.133867pt;}
.ybb{bottom:733.459467pt;}
.y10f{bottom:733.743067pt;}
.y228{bottom:734.892800pt;}
.y77{bottom:739.800533pt;}
.y23a{bottom:741.076400pt;}
.y19e{bottom:744.467200pt;}
.y1c6{bottom:745.133867pt;}
.y1e6{bottom:746.058933pt;}
.y217{bottom:749.076400pt;}
.y98{bottom:751.267200pt;}
.y1f2{bottom:751.349067pt;}
.yd4{bottom:751.592800pt;}
.y4b{bottom:751.800533pt;}
.yba{bottom:752.126133pt;}
.y10e{bottom:752.409733pt;}
.y227{bottom:753.559467pt;}
.y25{bottom:756.199467pt;}
.y239{bottom:759.743067pt;}
.y1e5{bottom:764.725600pt;}
.y150{bottom:767.429867pt;}
.y216{bottom:767.743067pt;}
.y97{bottom:769.933867pt;}
.y1f1{bottom:770.015733pt;}
.yd3{bottom:770.259467pt;}
.y4a{bottom:770.467200pt;}
.yb9{bottom:770.792800pt;}
.y10d{bottom:771.076400pt;}
.y238{bottom:778.409733pt;}
.y2{bottom:781.661334pt;}
.y76{bottom:782.467200pt;}
.y1e4{bottom:783.392267pt;}
.y155{bottom:784.277867pt;}
.y24{bottom:788.199467pt;}
.y96{bottom:788.600533pt;}
.y1f0{bottom:788.682400pt;}
.yd2{bottom:788.926133pt;}
.y49{bottom:789.133867pt;}
.yb8{bottom:789.459467pt;}
.y130{bottom:789.743067pt;}
.y19d{bottom:796.467200pt;}
.y237{bottom:797.076400pt;}
.y15e{bottom:798.894000pt;}
.y226{bottom:801.076400pt;}
.y75{bottom:801.133867pt;}
.y157{bottom:804.197867pt;}
.y15d{bottom:805.877867pt;}
.y1ef{bottom:807.349067pt;}
.yd1{bottom:807.592800pt;}
.y15f{bottom:807.630000pt;}
.y48{bottom:807.800533pt;}
.yb7{bottom:808.126133pt;}
.y10c{bottom:808.409733pt;}
.y19c{bottom:815.133867pt;}
.y236{bottom:815.743067pt;}
.y215{bottom:819.743067pt;}
.y74{bottom:819.800533pt;}
.y153{bottom:819.941867pt;}
.yd0{bottom:826.259467pt;}
.y47{bottom:826.467200pt;}
.yb6{bottom:826.792800pt;}
.y10b{bottom:827.076400pt;}
.y19b{bottom:833.800533pt;}
.y235{bottom:834.409733pt;}
.y73{bottom:838.467200pt;}
.y15c{bottom:843.102000pt;}
.y1ee{bottom:844.682400pt;}
.ycf{bottom:844.926133pt;}
.y46{bottom:845.133867pt;}
.yb5{bottom:845.459467pt;}
.y10a{bottom:845.743067pt;}
.y1e3{bottom:847.392267pt;}
.y19a{bottom:852.467200pt;}
.y234{bottom:853.076400pt;}
.y72{bottom:857.133867pt;}
.y1{bottom:859.312000pt;}
.y1ed{bottom:863.349067pt;}
.yce{bottom:863.592800pt;}
.y45{bottom:863.800533pt;}
.yb4{bottom:864.126133pt;}
.y109{bottom:864.409733pt;}
.y1e2{bottom:866.058933pt;}
.y199{bottom:871.133867pt;}
.y214{bottom:871.743067pt;}
.y71{bottom:875.800533pt;}
.y1ec{bottom:882.015733pt;}
.ycd{bottom:882.259467pt;}
.y44{bottom:882.467200pt;}
.yb3{bottom:882.792800pt;}
.y108{bottom:883.076400pt;}
.y1e1{bottom:884.725600pt;}
.y156{bottom:885.917867pt;}
.y158{bottom:892.350000pt;}
.y70{bottom:894.467200pt;}
.y1eb{bottom:900.682400pt;}
.ycc{bottom:900.926133pt;}
.y43{bottom:901.133867pt;}
.yb2{bottom:901.459467pt;}
.y107{bottom:901.743067pt;}
.y1e0{bottom:903.392267pt;}
.y6f{bottom:913.133867pt;}
.y1ea{bottom:919.349067pt;}
.ycb{bottom:919.592800pt;}
.y42{bottom:919.800533pt;}
.yb1{bottom:920.126133pt;}
.y106{bottom:920.409733pt;}
.y1df{bottom:922.058933pt;}
.y198{bottom:923.133867pt;}
.y213{bottom:923.743067pt;}
.y14e{bottom:930.318000pt;}
.y6e{bottom:931.800533pt;}
.y1e9{bottom:938.015733pt;}
.yca{bottom:938.259467pt;}
.y41{bottom:938.467200pt;}
.yb0{bottom:938.792800pt;}
.y105{bottom:939.076400pt;}
.y6d{bottom:950.467200pt;}
.y15a{bottom:954.232056pt;}
.y1e8{bottom:956.682400pt;}
.y15b{bottom:956.942640pt;}
.y40{bottom:957.133867pt;}
.yaf{bottom:957.459467pt;}
.y104{bottom:957.743067pt;}
.y6c{bottom:969.133867pt;}
.y197{bottom:975.133867pt;}
.y212{bottom:975.743067pt;}
.y3f{bottom:975.800533pt;}
.yae{bottom:976.126133pt;}
.y103{bottom:976.409733pt;}
.y1de{bottom:980.535467pt;}
.y1e7{bottom:983.349067pt;}
.y6b{bottom:987.800533pt;}
.y14b{bottom:993.341867pt;}
.y3e{bottom:994.467200pt;}
.yad{bottom:994.792800pt;}
.y102{bottom:995.076400pt;}
.y23{bottom:1059.464667pt;}
.h11{height:20.904048pt;}
.h7{height:28.560000pt;}
.h1e{height:33.253875pt;}
.h12{height:35.856000pt;}
.h19{height:36.624000pt;}
.h10{height:36.672000pt;}
.h1a{height:37.152000pt;}
.h24{height:39.731771pt;}
.h1b{height:39.825000pt;}
.h9{height:39.840000pt;}
.ha{height:40.693333pt;}
.h25{height:40.734375pt;}
.h14{height:40.746667pt;}
.h6{height:40.800000pt;}
.hd{height:42.416000pt;}
.h1f{height:42.721875pt;}
.h3{height:42.840000pt;}
.hf{height:43.824000pt;}
.h28{height:44.528000pt;}
.h17{height:44.704000pt;}
.h16{height:44.762667pt;}
.he{height:44.821333pt;}
.hc{height:45.085392pt;}
.h18{height:45.408000pt;}
.h1d{height:45.871875pt;}
.h22{height:48.726438pt;}
.h15{height:48.768000pt;}
.h2{height:48.960000pt;}
.h26{height:49.729042pt;}
.h20{height:52.565625pt;}
.h21{height:57.585937pt;}
.h13{height:61.696000pt;}
.h5{height:69.360000pt;}
.hb{height:77.120000pt;}
.h23{height:82.741333pt;}
.h27{height:87.062375pt;}
.h4{height:105.826671pt;}
.h1c{height:374.468000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:521.325333pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:17.996667pt;}
.x11{left:56.321867pt;}
.x7{left:57.266800pt;}
.x34{left:61.926400pt;}
.x15{left:64.559600pt;}
.x8{left:87.933467pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xd{left:96.647733pt;}
.x35{left:100.157467pt;}
.x12{left:137.415733pt;}
.x1b{left:141.544000pt;}
.x2c{left:156.917467pt;}
.x39{left:163.640000pt;}
.xe{left:166.381067pt;}
.x1d{left:172.140667pt;}
.x1f{left:179.700667pt;}
.x4{left:180.874667pt;}
.x16{left:187.407867pt;}
.x1c{left:188.588667pt;}
.x2f{left:191.799067pt;}
.x37{left:193.903467pt;}
.x1a{left:200.148667pt;}
.x27{left:203.191579pt;}
.x6{left:231.439200pt;}
.xa{left:233.433467pt;}
.x2e{left:258.682800pt;}
.x2d{left:262.929867pt;}
.x17{left:271.250267pt;}
.x19{left:274.644267pt;}
.x20{left:281.460667pt;}
.x10{left:292.039733pt;}
.x36{left:309.650400pt;}
.x30{left:321.399067pt;}
.x18{left:346.450400pt;}
.x22{left:348.588667pt;}
.x24{left:360.684667pt;}
.x3a{left:387.600000pt;}
.x5{left:389.877200pt;}
.x14{left:390.857733pt;}
.x33{left:391.930933pt;}
.x29{left:400.428667pt;}
.x3{left:404.408000pt;}
.x9{left:411.968400pt;}
.xb{left:434.714533pt;}
.xc{left:443.968533pt;}
.x31{left:458.790000pt;}
.x26{left:465.676075pt;}
.x2b{left:478.452667pt;}
.xf{left:480.308000pt;}
.x21{left:484.020667pt;}
.x23{left:510.132667pt;}
.x28{left:521.675587pt;}
.x13{left:536.786800pt;}
.x2a{left:556.068667pt;}
.x32{left:609.139600pt;}
.x25{left:633.756667pt;}
.x38{left:652.317067pt;}
}




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