
    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_af8d18e9bf64d9f5f3f1dd81.woff')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_67cac0932ea19020700e29da.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_5f9dcf28cd79dcac45fec337.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_68650d7ec92e499acdbf7227.woff')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_303cd4acb16a77c06a39f866.woff')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_78f175e16fb63fcbf5ec47f3.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_118e77e02209e6b43ad38836.woff')format("woff");}.ff7{font-family:ff7;line-height:0.978027;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_e73ddeb2a85ca9ed9cbcdc3d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.783691;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_d18861fe735072766e52e0f0.woff')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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_8311359df1f0e7ea49b7f442.woff')format("woff");}.ffa{font-family:ffa;line-height:0.999512;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_5307e0febe634dd76fe0b953.woff')format("woff");}.ffb{font-family:ffb;line-height:0.952148;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_371768330bc941f7be63a6e0.woff')format("woff");}.ffc{font-family:ffc;line-height:0.952148;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_de66b5101dbe1d29dd4ca1fb.woff')format("woff");}.ffd{font-family:ffd;line-height:0.999512;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_09fee791fb2378a36c3ca8b1.woff')format("woff");}.ffe{font-family:ffe;line-height:1.053711;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_75db79f9d529bade16d4a816.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_38f4ba4b66a9558d8de1c616.woff')format("woff");}.ff10{font-family:ff10;line-height:1.104004;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_51ae908558e6587e8a805f5e.woff')format("woff");}.ff11{font-family:ff11;line-height:0.978027;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;}
.m2{transform:matrix(0.218723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218723,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.240966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240966,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);}
.m3{transform:matrix(0.262041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262041,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.309681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309681,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.332607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332607,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);}
.v1{vertical-align:-106.740000px;}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.ls16{letter-spacing:-1.728000px;}
.ls4b{letter-spacing:-1.440000px;}
.ls22{letter-spacing:-1.296000px;}
.ls14{letter-spacing:-0.936000px;}
.ls3d{letter-spacing:-0.792000px;}
.ls18{letter-spacing:-0.720000px;}
.ls15{letter-spacing:-0.648000px;}
.ls31{letter-spacing:-0.630000px;}
.ls21{letter-spacing:-0.507000px;}
.ls2a{letter-spacing:-0.504000px;}
.ls1f{letter-spacing:-0.466800px;}
.ls13{letter-spacing:-0.452400px;}
.ls12{letter-spacing:-0.423600px;}
.ls6{letter-spacing:-0.382800px;}
.ls32{letter-spacing:-0.305400px;}
.ls8{letter-spacing:-0.288000px;}
.ls34{letter-spacing:-0.152400px;}
.ls2d{letter-spacing:-0.144000px;}
.ls17{letter-spacing:-0.000001px;}
.ls5{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.020160px;}
.ls4a{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.144000px;}
.ls29{letter-spacing:0.180000px;}
.ls46{letter-spacing:0.216000px;}
.ls10{letter-spacing:0.264000px;}
.ls33{letter-spacing:0.457800px;}
.ls35{letter-spacing:0.457920px;}
.ls1a{letter-spacing:0.466560px;}
.ls20{letter-spacing:0.466800px;}
.ls30{letter-spacing:0.469920px;}
.lsa{letter-spacing:0.504000px;}
.lsb{letter-spacing:0.599040px;}
.ls36{letter-spacing:0.601920px;}
.ls24{letter-spacing:0.648000px;}
.ls0{letter-spacing:0.720000px;}
.ls28{letter-spacing:0.768000px;}
.ls47{letter-spacing:0.792000px;}
.ls2e{letter-spacing:0.809280px;}
.ls26{letter-spacing:0.840000px;}
.ls1{letter-spacing:0.984960px;}
.ls19{letter-spacing:1.152000px;}
.ls40{letter-spacing:1.169965px;}
.ls3e{letter-spacing:1.414978px;}
.ls41{letter-spacing:1.537457px;}
.ls3c{letter-spacing:1.623474px;}
.ls39{letter-spacing:2.048309px;}
.ls4{letter-spacing:2.160000px;}
.ls42{letter-spacing:2.448000px;}
.lsc{letter-spacing:3.600000px;}
.ls3b{letter-spacing:3.744000px;}
.lsf{letter-spacing:5.040000px;}
.ls23{letter-spacing:6.480000px;}
.ls1d{letter-spacing:7.920000px;}
.ls11{letter-spacing:9.360000px;}
.ls1c{letter-spacing:10.800000px;}
.ls1e{letter-spacing:12.240000px;}
.lsd{letter-spacing:13.680000px;}
.ls45{letter-spacing:15.120000px;}
.ls2c{letter-spacing:16.560000px;}
.ls2f{letter-spacing:17.424000px;}
.lse{letter-spacing:19.440000px;}
.ls27{letter-spacing:20.880000px;}
.ls49{letter-spacing:21.000000px;}
.ls37{letter-spacing:21.756000px;}
.ls25{letter-spacing:23.196000px;}
.ls2b{letter-spacing:29.520000px;}
.ls43{letter-spacing:31.824000px;}
.ls38{letter-spacing:33.276000px;}
.ls9{letter-spacing:35.821440px;}
.ls3a{letter-spacing:37.757280px;}
.ls48{letter-spacing:43.356000px;}
.ls44{letter-spacing:49.116000px;}
.ls3f{letter-spacing:87.984000px;}
.ls2{letter-spacing:131.904000px;}
.ls3{letter-spacing:181.812000px;}
.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;}
}
.ws21{word-spacing:-72.216000px;}
.ws20{word-spacing:-72.000000px;}
.ws19{word-spacing:-66.240000px;}
.ws1f{word-spacing:-50.904000px;}
.ws1d{word-spacing:-28.370274px;}
.ws1b{word-spacing:-26.110212px;}
.ws1c{word-spacing:-21.589057px;}
.ws8{word-spacing:-20.880000px;}
.ws7{word-spacing:-20.427600px;}
.ws13{word-spacing:-20.250000px;}
.ws22{word-spacing:-18.792000px;}
.ws18{word-spacing:-18.648000px;}
.wsb{word-spacing:-18.504000px;}
.ws10{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.999999px;}
.ws14{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.712000px;}
.ws11{word-spacing:-17.496000px;}
.wsa{word-spacing:-17.352000px;}
.ws1a{word-spacing:-17.208000px;}
.ws12{word-spacing:-17.064000px;}
.ws16{word-spacing:-17.017800px;}
.wsf{word-spacing:-16.813440px;}
.ws2{word-spacing:-16.560000px;}
.ws17{word-spacing:-16.407600px;}
.wsd{word-spacing:-16.346640px;}
.wse{word-spacing:-16.306440px;}
.wsc{word-spacing:-16.272000px;}
.ws15{word-spacing:-16.254600px;}
.ws6{word-spacing:-13.244880px;}
.ws1{word-spacing:-11.983920px;}
.ws1e{word-spacing:-11.880000px;}
.ws0{word-spacing:-10.739520px;}
.ws5{word-spacing:0.000000px;}
._22{margin-left:-5.244480px;}
._7{margin-left:-3.787200px;}
._0{margin-left:-2.056320px;}
._2{margin-left:-1.028160px;}
._1{width:1.209600px;}
._3{width:2.246400px;}
._4{width:3.397920px;}
._5{width:4.464000px;}
._6{width:5.616000px;}
._f{width:7.344000px;}
._a{width:9.328320px;}
._8{width:10.584000px;}
._9{width:11.704320px;}
._d{width:13.006080px;}
._c{width:14.304960px;}
._e{width:15.440160px;}
._b{width:16.488000px;}
._14{width:19.713120px;}
._19{width:20.740800px;}
._18{width:21.977280px;}
._15{width:23.040000px;}
._16{width:24.468000px;}
._17{width:26.166720px;}
._12{width:27.994560px;}
._10{width:29.088000px;}
._11{width:30.208320px;}
._13{width:32.199360px;}
._1d{width:33.205440px;}
._1c{width:34.241280px;}
._2b{width:36.470400px;}
._2a{width:38.625600px;}
._1b{width:39.738720px;}
._1a{width:41.028000px;}
._29{width:59.544000px;}
._26{width:101.304000px;}
._23{width:104.484000px;}
._1f{width:127.272000px;}
._25{width:133.960320px;}
._21{width:142.452000px;}
._1e{width:152.706720px;}
._28{width:157.000320px;}
._20{width:170.832000px;}
._27{width:265.144320px;}
._24{width:299.632320px;}
.fc33{color:rgb(38,36,59);}
.fc30{color:rgb(67,67,84);}
.fc39{color:rgb(104,102,116);}
.fc38{color:rgb(59,57,77);}
.fc2f{color:rgb(39,36,60);}
.fc2d{color:rgb(98,87,83);}
.fc29{color:rgb(70,69,87);}
.fc28{color:rgb(28,25,51);}
.fc27{color:rgb(44,41,63);}
.fc26{color:rgb(70,60,56);}
.fc25{color:rgb(91,81,76);}
.fc24{color:rgb(46,38,35);}
.fc23{color:rgb(25,20,19);}
.fc21{color:rgb(40,37,61);}
.fc20{color:rgb(83,73,71);}
.fc1f{color:rgb(34,29,28);}
.fc1e{color:rgb(59,52,50);}
.fc31{color:rgb(88,90,106);}
.fc1d{color:rgb(71,71,88);}
.fc2a{color:rgb(43,35,32);}
.fcb{color:rgb(98,86,81);}
.fc34{color:rgb(82,80,98);}
.fc14{color:rgb(26,21,19);}
.fc9{color:rgb(72,61,57);}
.fcc{color:rgb(114,106,101);}
.fc1c{color:rgb(56,54,73);}
.fc32{color:rgb(55,52,73);}
.fc7{color:rgb(92,92,108);}
.fc6{color:rgb(146,143,156);}
.fc0{color:rgb(189,3,34);}
.fce{color:rgb(60,57,78);}
.fc22{color:rgb(86,84,100);}
.fc5{color:rgb(71,69,87);}
.fc4{color:rgb(44,41,64);}
.fc1{color:rgb(0,0,0);}
.fc2e{color:rgb(66,41,22);}
.fc2{color:rgb(5,99,193);}
.fcd{color:rgb(70,67,85);}
.fc2c{color:rgb(73,62,57);}
.fc8{color:rgb(30,24,22);}
.fcf{color:rgb(91,89,105);}
.fc10{color:rgb(43,40,63);}
.fc36{color:rgb(55,53,74);}
.fc2b{color:rgb(24,18,17);}
.fc11{color:rgb(75,74,91);}
.fc12{color:rgb(91,91,105);}
.fc35{color:transparent;}
.fc1a{color:rgb(91,82,78);}
.fc15{color:rgb(106,97,91);}
.fca{color:rgb(54,43,40);}
.fc3{color:rgb(128,128,128);}
.fc18{color:rgb(28,24,23);}
.fc17{color:rgb(51,44,42);}
.fc16{color:rgb(83,72,67);}
.fc13{color:rgb(48,39,36);}
.fc19{color:rgb(70,61,59);}
.fc37{color:rgb(73,71,89);}
.fc1b{color:rgb(38,35,59);}
.fs8{font-size:5.760000px;}
.fs9{font-size:30.240000px;}
.fsd{font-size:34.031820px;}
.fsc{font-size:41.158724px;}
.fse{font-size:44.721363px;}
.fs4{font-size:47.520000px;}
.fsb{font-size:53.332130px;}
.fs3{font-size:54.720000px;}
.fs1{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fsa{font-size:67.288241px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:83.520000px;}
.fs5{font-size:108.000000px;}
.fs6{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.240000px;}
.y30{bottom:3.600000px;}
.y81{bottom:3.630000px;}
.yb9{bottom:3.645000px;}
.y104{bottom:3.960000px;}
.y102{bottom:4.320000px;}
.y10a{bottom:4.350000px;}
.y146{bottom:4.583484px;}
.y18e{bottom:4.983675px;}
.yca{bottom:5.040000px;}
.yd6{bottom:5.085000px;}
.yc8{bottom:5.400000px;}
.ye2{bottom:5.445000px;}
.y12e{bottom:6.004928px;}
.yf8{bottom:7.581409px;}
.y92{bottom:12.954000px;}
.y8b{bottom:12.960000px;}
.ya3{bottom:14.040000px;}
.y1c1{bottom:14.085000px;}
.ya1{bottom:14.400000px;}
.y168{bottom:16.210155px;}
.ya{bottom:17.316000px;}
.y8{bottom:17.676000px;}
.y147{bottom:19.535722px;}
.y18f{bottom:21.230866px;}
.y101{bottom:24.840000px;}
.y105{bottom:24.870000px;}
.y10e{bottom:24.885000px;}
.y12f{bottom:25.343225px;}
.y169{bottom:28.548148px;}
.yb{bottom:30.600000px;}
.yf9{bottom:32.032418px;}
.y7{bottom:32.436000px;}
.y148{bottom:34.488874px;}
.y190{bottom:37.442857px;}
.y16a{bottom:40.885060px;}
.y130{bottom:44.681185px;}
.y118{bottom:45.390000px;}
.y100{bottom:45.720000px;}
.y149{bottom:49.442026px;}
.y16b{bottom:53.221973px;}
.y191{bottom:53.654848px;}
.yfa{bottom:56.481730px;}
.y6{bottom:57.240000px;}
.y131{bottom:64.017463px;}
.y14a{bottom:64.395177px;}
.y16c{bottom:65.558886px;}
.yff{bottom:66.240000px;}
.y192{bottom:69.902322px;}
.y16d{bottom:77.922801px;}
.y14b{bottom:79.347023px;}
.yfb{bottom:80.933164px;}
.y132{bottom:83.397477px;}
.y193{bottom:86.114313px;}
.yfe{bottom:86.760000px;}
.y16e{bottom:90.259714px;}
.y2f{bottom:91.476000px;}
.y14c{bottom:94.300175px;}
.y194{bottom:102.327723px;}
.y16f{bottom:102.596627px;}
.y133{bottom:102.735437px;}
.yfc{bottom:105.382476px;}
.y170{bottom:114.933540px;}
.y195{bottom:118.539714px;}
.y5{bottom:118.836000px;}
.y14d{bottom:124.206478px;}
.y171{bottom:127.268292px;}
.y196{bottom:134.785769px;}
.y14e{bottom:139.164856px;}
.y172{bottom:139.635448px;}
.y166{bottom:141.876000px;}
.ye5{bottom:143.676000px;}
.y18c{bottom:145.476000px;}
.y1d3{bottom:145.836000px;}
.y1b6{bottom:146.196000px;}
.y91{bottom:148.356000px;}
.y197{bottom:150.992083px;}
.y14f{bottom:154.108863px;}
.y51{bottom:155.190000px;}
.y6a{bottom:156.270000px;}
.yb4{bottom:158.430000px;}
.y12c{bottom:159.150000px;}
.ye4{bottom:162.030000px;}
.y2c{bottom:162.390000px;}
.y173{bottom:164.304953px;}
.y198{bottom:167.215428px;}
.y1d8{bottom:168.150000px;}
.y150{bottom:169.065934px;}
.ye3{bottom:169.590000px;}
.y144{bottom:170.310000px;}
.y165{bottom:172.830000px;}
.y174{bottom:176.650506px;}
.y18b{bottom:176.790000px;}
.y90{bottom:177.510000px;}
.y1f6{bottom:181.830000px;}
.y199{bottom:183.452968px;}
.yf6{bottom:183.990000px;}
.y151{bottom:184.023005px;}
.y50{bottom:186.510000px;}
.y69{bottom:187.590000px;}
.yb3{bottom:189.030000px;}
.y12b{bottom:190.110000px;}
.ye1{bottom:192.630000px;}
.y2b{bottom:193.350000px;}
.y1d7{bottom:196.590000px;}
.y1d0{bottom:198.435000px;}
.y152{bottom:198.967012px;}
.y143{bottom:201.315000px;}
.y175{bottom:201.352415px;}
.y164{bottom:203.835000px;}
.y8f{bottom:206.715000px;}
.y18a{bottom:207.795000px;}
.y1b5{bottom:209.955000px;}
.y1f5{bottom:212.835000px;}
.y176{bottom:213.687167px;}
.yf5{bottom:214.995000px;}
.y19a{bottom:215.885465px;}
.ye0{bottom:216.075000px;}
.y12a{bottom:217.515000px;}
.y12d{bottom:217.890000px;}
.y68{bottom:218.595000px;}
.y4f{bottom:218.955000px;}
.yb2{bottom:220.035000px;}
.y2a{bottom:224.355000px;}
.y111{bottom:224.715000px;}
.y1d6{bottom:225.075000px;}
.y177{bottom:226.021920px;}
.y1cf{bottom:229.395000px;}
.y19b{bottom:232.123004px;}
.y142{bottom:232.275000px;}
.y163{bottom:235.155000px;}
.y8e{bottom:235.875000px;}
.y178{bottom:238.356672px;}
.y189{bottom:238.755000px;}
.ydf{bottom:239.115000px;}
.y1b4{bottom:241.275000px;}
.y1f4{bottom:243.795000px;}
.yf4{bottom:245.955000px;}
.y67{bottom:249.555000px;}
.yb1{bottom:251.355000px;}
.y4e{bottom:252.075000px;}
.y1d5{bottom:253.515000px;}
.y29{bottom:255.675000px;}
.y210{bottom:258.915000px;}
.y1ce{bottom:260.715000px;}
.yde{bottom:262.515000px;}
.y179{bottom:263.058581px;}
.y141{bottom:263.235000px;}
.y19c{bottom:264.555502px;}
.y8d{bottom:265.395000px;}
.y162{bottom:266.115000px;}
.y188{bottom:269.715000px;}
.y1b3{bottom:272.595000px;}
.y1f3{bottom:274.755000px;}
.y17a{bottom:275.393333px;}
.yf3{bottom:277.275000px;}
.y66{bottom:280.515000px;}
.y19d{bottom:280.807235px;}
.y1d4{bottom:281.955000px;}
.yb0{bottom:282.315000px;}
.y4d{bottom:283.395000px;}
.ydd{bottom:285.555000px;}
.y28{bottom:286.635000px;}
.y20f{bottom:288.795000px;}
.y1cd{bottom:291.675000px;}
.y8c{bottom:294.555000px;}
.y19e{bottom:297.016387px;}
.y161{bottom:297.075000px;}
.y187{bottom:301.035000px;}
.y1b2{bottom:303.555000px;}
.y1f2{bottom:306.075000px;}
.yf2{bottom:308.235000px;}
.ydc{bottom:308.955000px;}
.y65{bottom:311.835000px;}
.y19f{bottom:313.225539px;}
.yaf{bottom:313.275000px;}
.y4c{bottom:314.355000px;}
.y27{bottom:317.595000px;}
.y20e{bottom:319.755000px;}
.y1cc{bottom:322.635000px;}
.y8a{bottom:323.745000px;}
.y140{bottom:325.545000px;}
.y160{bottom:328.065000px;}
.yae{bottom:330.945000px;}
.y186{bottom:332.025000px;}
.ydb{bottom:332.385000px;}
.y1b1{bottom:334.545000px;}
.y1f1{bottom:337.065000px;}
.yf1{bottom:339.225000px;}
.y64{bottom:342.825000px;}
.y4b{bottom:345.345000px;}
.y1a0{bottom:345.686424px;}
.y26{bottom:348.585000px;}
.y20d{bottom:350.745000px;}
.y1cb{bottom:353.625000px;}
.yda{bottom:355.425000px;}
.y13f{bottom:356.505000px;}
.y15f{bottom:359.385000px;}
.y1a1{bottom:361.895576px;}
.yad{bottom:362.625000px;}
.y185{bottom:362.985000px;}
.y1b0{bottom:365.505000px;}
.y89{bottom:366.945000px;}
.y129{bottom:367.305000px;}
.y1f0{bottom:368.025000px;}
.yf0{bottom:370.185000px;}
.y63{bottom:373.785000px;}
.y4a{bottom:376.665000px;}
.yd9{bottom:378.825000px;}
.y25{bottom:379.905000px;}
.y20c{bottom:382.065000px;}
.y1ca{bottom:384.945000px;}
.y13e{bottom:387.465000px;}
.y15e{bottom:390.345000px;}
.y184{bottom:393.945000px;}
.yac{bottom:394.665000px;}
.y1af{bottom:396.825000px;}
.y88{bottom:397.905000px;}
.y110{bottom:398.265000px;}
.y1ef{bottom:398.985000px;}
.yef{bottom:401.505000px;}
.yd8{bottom:401.865000px;}
.y62{bottom:404.745000px;}
.y49{bottom:407.625000px;}
.y24{bottom:410.865000px;}
.y128{bottom:413.025000px;}
.y1c9{bottom:415.905000px;}
.y10f{bottom:418.785000px;}
.y15d{bottom:421.305000px;}
.y183{bottom:424.905000px;}
.yd7{bottom:425.265000px;}
.yab{bottom:426.345000px;}
.y1ae{bottom:427.785000px;}
.y87{bottom:429.225000px;}
.y1ee{bottom:430.305000px;}
.yee{bottom:432.465000px;}
.y61{bottom:436.065000px;}
.y48{bottom:438.585000px;}
.y10d{bottom:441.465000px;}
.y23{bottom:441.825000px;}
.y20b{bottom:443.985000px;}
.y127{bottom:444.345000px;}
.y1c8{bottom:446.865000px;}
.yd5{bottom:448.665000px;}
.y13d{bottom:449.790000px;}
.y15c{bottom:452.310000px;}
.y182{bottom:456.270000px;}
.yaa{bottom:458.070000px;}
.y1ad{bottom:458.790000px;}
.yed{bottom:459.870000px;}
.yf7{bottom:459.945000px;}
.y86{bottom:460.230000px;}
.y1ed{bottom:461.310000px;}
.y60{bottom:467.070000px;}
.y47{bottom:469.950000px;}
.yd4{bottom:471.750000px;}
.y22{bottom:472.830000px;}
.y20a{bottom:474.990000px;}
.y126{bottom:475.350000px;}
.y1c7{bottom:477.870000px;}
.y13c{bottom:480.750000px;}
.y15b{bottom:483.270000px;}
.y10c{bottom:486.510000px;}
.y181{bottom:487.230000px;}
.ya9{bottom:490.110000px;}
.y85{bottom:491.190000px;}
.y1ec{bottom:492.270000px;}
.yd3{bottom:495.150000px;}
.y5f{bottom:498.030000px;}
.y46{bottom:500.910000px;}
.y21{bottom:504.150000px;}
.y125{bottom:505.230000px;}
.y209{bottom:506.310000px;}
.y1c6{bottom:509.190000px;}
.y10b{bottom:509.550000px;}
.y13b{bottom:511.710000px;}
.y15a{bottom:514.590000px;}
.yd2{bottom:518.190000px;}
.ya8{bottom:521.790000px;}
.y84{bottom:522.150000px;}
.y1eb{bottom:523.230000px;}
.y5e{bottom:528.990000px;}
.y45{bottom:531.870000px;}
.y124{bottom:533.670000px;}
.y20{bottom:535.110000px;}
.y208{bottom:537.270000px;}
.yd1{bottom:541.590000px;}
.y13a{bottom:543.030000px;}
.y159{bottom:545.550000px;}
.y180{bottom:549.150000px;}
.y1d2{bottom:549.510000px;}
.y83{bottom:553.470000px;}
.y1ea{bottom:554.550000px;}
.y1c5{bottom:555.270000px;}
.y5d{bottom:560.310000px;}
.y123{bottom:562.110000px;}
.y44{bottom:563.190000px;}
.yd0{bottom:564.630000px;}
.y1f{bottom:566.070000px;}
.y207{bottom:568.230000px;}
.y82{bottom:571.470000px;}
.y158{bottom:571.830000px;}
.y167{bottom:572.175000px;}
.y109{bottom:573.270000px;}
.y80{bottom:573.630000px;}
.y139{bottom:573.990000px;}
.y17f{bottom:580.500000px;}
.y1d1{bottom:582.300000px;}
.ya7{bottom:585.540000px;}
.y1ac{bottom:585.900000px;}
.y1c4{bottom:586.260000px;}
.ycf{bottom:588.060000px;}
.y5c{bottom:591.300000px;}
.y43{bottom:594.180000px;}
.y7f{bottom:596.700000px;}
.y1e{bottom:597.060000px;}
.y138{bottom:604.980000px;}
.y122{bottom:605.700000px;}
.yce{bottom:611.460000px;}
.y206{bottom:614.340000px;}
.y108{bottom:616.140000px;}
.y1e9{bottom:616.500000px;}
.ya6{bottom:617.220000px;}
.y7e{bottom:620.100000px;}
.yec{bottom:620.460000px;}
.y5b{bottom:622.260000px;}
.y42{bottom:625.140000px;}
.y1d{bottom:628.380000px;}
.ycd{bottom:634.500000px;}
.y137{bottom:635.940000px;}
.y107{bottom:637.020000px;}
.y17e{bottom:642.420000px;}
.y7d{bottom:643.500000px;}
.y121{bottom:644.220000px;}
.y205{bottom:645.300000px;}
.y1e8{bottom:647.460000px;}
.y1ab{bottom:648.180000px;}
.ya5{bottom:648.900000px;}
.yeb{bottom:651.420000px;}
.y5a{bottom:653.220000px;}
.y41{bottom:656.100000px;}
.y136{bottom:657.180000px;}
.y106{bottom:657.540000px;}
.ycc{bottom:657.900000px;}
.y1c{bottom:659.340000px;}
.y7c{bottom:666.540000px;}
.y17d{bottom:673.380000px;}
.y135{bottom:673.740000px;}
.y145{bottom:673.920000px;}
.y120{bottom:675.180000px;}
.y204{bottom:676.260000px;}
.y1e7{bottom:678.780000px;}
.y103{bottom:679.140000px;}
.y1aa{bottom:679.500000px;}
.ya4{bottom:680.940000px;}
.yea{bottom:682.740000px;}
.y59{bottom:684.540000px;}
.y40{bottom:687.060000px;}
.y7b{bottom:689.940000px;}
.y1b{bottom:690.300000px;}
.ycb{bottom:704.370000px;}
.y17c{bottom:704.730000px;}
.y11f{bottom:706.530000px;}
.y203{bottom:707.610000px;}
.y1e6{bottom:709.770000px;}
.y1a9{bottom:710.490000px;}
.ya2{bottom:712.650000px;}
.y7a{bottom:713.010000px;}
.ye9{bottom:713.730000px;}
.y58{bottom:715.530000px;}
.y3f{bottom:718.410000px;}
.y1a{bottom:721.290000px;}
.yfd{bottom:722.010000px;}
.yc9{bottom:727.770000px;}
.y1c3{bottom:728.130000px;}
.y18d{bottom:732.030000px;}
.y17b{bottom:732.090000px;}
.y79{bottom:736.410000px;}
.y11e{bottom:737.490000px;}
.y202{bottom:738.570000px;}
.y1e5{bottom:740.730000px;}
.y1a8{bottom:742.890000px;}
.ya0{bottom:744.330000px;}
.ye8{bottom:744.690000px;}
.y57{bottom:746.490000px;}
.y3e{bottom:749.370000px;}
.yc7{bottom:750.810000px;}
.y19{bottom:752.610000px;}
.y78{bottom:759.810000px;}
.y11d{bottom:768.450000px;}
.y201{bottom:769.530000px;}
.y1e4{bottom:771.690000px;}
.yc6{bottom:774.210000px;}
.y1a7{bottom:775.290000px;}
.ye7{bottom:775.650000px;}
.y56{bottom:777.450000px;}
.y3d{bottom:780.330000px;}
.y77{bottom:782.850000px;}
.y18{bottom:783.570000px;}
.y9f{bottom:790.410000px;}
.y1c2{bottom:791.490000px;}
.yc5{bottom:797.250000px;}
.y11c{bottom:799.410000px;}
.y200{bottom:800.490000px;}
.y1e3{bottom:803.010000px;}
.y76{bottom:806.250000px;}
.y1a6{bottom:806.610000px;}
.ye6{bottom:806.970000px;}
.y55{bottom:808.410000px;}
.y3c{bottom:811.290000px;}
.y17{bottom:814.530000px;}
.yc4{bottom:820.650000px;}
.y9e{bottom:821.370000px;}
.y1c0{bottom:823.530000px;}
.y75{bottom:829.335000px;}
.y11b{bottom:830.415000px;}
.y1ff{bottom:831.855000px;}
.y1e2{bottom:834.015000px;}
.y1a5{bottom:837.975000px;}
.y54{bottom:839.775000px;}
.yc3{bottom:843.735000px;}
.y16{bottom:845.535000px;}
.y3b{bottom:845.895000px;}
.y11a{bottom:849.135000px;}
.y9d{bottom:852.375000px;}
.y74{bottom:852.735000px;}
.y1fe{bottom:862.815000px;}
.y1e1{bottom:864.975000px;}
.yc2{bottom:867.135000px;}
.y1bf{bottom:869.295000px;}
.y119{bottom:869.655000px;}
.y15{bottom:870.375000px;}
.y53{bottom:870.735000px;}
.y157{bottom:872.535000px;}
.y73{bottom:875.775000px;}
.y3a{bottom:879.375000px;}
.y9c{bottom:883.695000px;}
.y14{bottom:888.015000px;}
.yc1{bottom:890.535000px;}
.y156{bottom:893.055000px;}
.y1fd{bottom:893.775000px;}
.y1e0{bottom:895.935000px;}
.y1a4{bottom:900.615000px;}
.y52{bottom:901.695000px;}
.y134{bottom:902.055000px;}
.y39{bottom:904.575000px;}
.yc0{bottom:913.575000px;}
.y9b{bottom:914.655000px;}
.y13{bottom:915.015000px;}
.y72{bottom:918.615000px;}
.y155{bottom:923.655000px;}
.y1df{bottom:927.255000px;}
.y1be{bottom:931.575000px;}
.y1a3{bottom:931.935000px;}
.y38{bottom:932.655000px;}
.ybf{bottom:936.975000px;}
.y117{bottom:938.055000px;}
.y1fc{bottom:939.855000px;}
.y9a{bottom:945.615000px;}
.y12{bottom:947.775000px;}
.y71{bottom:949.575000px;}
.y154{bottom:955.005000px;}
.y1de{bottom:958.245000px;}
.ybe{bottom:960.045000px;}
.y1bd{bottom:962.565000px;}
.y99{bottom:963.285000px;}
.y1a2{bottom:963.645000px;}
.y37{bottom:964.005000px;}
.y1fb{bottom:970.845000px;}
.y11{bottom:971.205000px;}
.y70{bottom:980.925000px;}
.ybd{bottom:983.445000px;}
.y153{bottom:985.965000px;}
.y1dd{bottom:989.205000px;}
.y98{bottom:992.445000px;}
.y1bc{bottom:993.525000px;}
.y36{bottom:994.965000px;}
.y10{bottom:999.285000px;}
.y116{bottom:1001.445000px;}
.y1fa{bottom:1002.165000px;}
.ybc{bottom:1006.845000px;}
.y6f{bottom:1011.885000px;}
.y1dc{bottom:1020.165000px;}
.yf{bottom:1020.885000px;}
.y97{bottom:1021.965000px;}
.y115{bottom:1023.765000px;}
.y1bb{bottom:1024.845000px;}
.y35{bottom:1025.925000px;}
.ybb{bottom:1029.885000px;}
.y1f9{bottom:1033.125000px;}
.y6e{bottom:1042.845000px;}
.ye{bottom:1045.005000px;}
.y114{bottom:1047.525000px;}
.y96{bottom:1051.125000px;}
.y1db{bottom:1051.485000px;}
.yba{bottom:1053.285000px;}
.y1ba{bottom:1055.805000px;}
.y34{bottom:1056.885000px;}
.y1f8{bottom:1064.085000px;}
.y113{bottom:1069.845000px;}
.y6d{bottom:1073.805000px;}
.yb8{bottom:1076.325000px;}
.y95{bottom:1080.330000px;}
.y1da{bottom:1082.490000px;}
.y1b9{bottom:1086.810000px;}
.y33{bottom:1088.250000px;}
.y112{bottom:1093.290000px;}
.yd{bottom:1095.810000px;}
.yb7{bottom:1109.130000px;}
.y94{bottom:1109.490000px;}
.y1f7{bottom:1110.210000px;}
.y1d9{bottom:1113.450000px;}
.y6c{bottom:1114.170000px;}
.yc{bottom:1116.330000px;}
.y1b8{bottom:1117.770000px;}
.y32{bottom:1119.210000px;}
.yb6{bottom:1130.010000px;}
.y4{bottom:1137.210000px;}
.y93{bottom:1138.650000px;}
.y6b{bottom:1147.650000px;}
.y1b7{bottom:1149.090000px;}
.y31{bottom:1150.170000px;}
.yb5{bottom:1150.530000px;}
.y3{bottom:1156.290000px;}
.y2e{bottom:1172.850000px;}
.y2{bottom:1175.010000px;}
.y1{bottom:1193.010000px;}
.y2d{bottom:1195.170000px;}
.h15{height:5.115938px;}
.he{height:16.596000px;}
.h25{height:20.520000px;}
.h24{height:20.880000px;}
.h12{height:22.320000px;}
.h14{height:22.356000px;}
.h13{height:22.680000px;}
.h1d{height:22.716000px;}
.h33{height:23.081151px;}
.h2a{height:23.760000px;}
.h1e{height:26.858672px;}
.h31{height:27.914779px;}
.h11{height:28.080000px;}
.h1c{height:28.116000px;}
.h16{height:28.440000px;}
.h17{height:28.476000px;}
.h35{height:30.331041px;}
.h19{height:30.960000px;}
.h1a{height:30.996000px;}
.h18{height:31.320000px;}
.h1b{height:31.356000px;}
.h2f{height:36.171059px;}
.h29{height:41.400000px;}
.h23{height:41.436000px;}
.h6{height:43.956000px;}
.h2c{height:45.000000px;}
.h28{height:45.036000px;}
.h21{height:45.636410px;}
.h7{height:47.264766px;}
.hc{height:48.601406px;}
.h2d{height:50.715000px;}
.hf{height:53.067656px;}
.h1f{height:54.246094px;}
.h8{height:54.426094px;}
.h27{height:54.878906px;}
.h4{height:58.121719px;}
.h3{height:58.833281px;}
.hd{height:61.927031px;}
.h2b{height:61.956000px;}
.h26{height:62.280000px;}
.hb{height:63.175781px;}
.h2{height:63.949219px;}
.h5{height:65.884219px;}
.h10{height:73.722656px;}
.ha{height:74.181094px;}
.h9{height:95.923828px;}
.h22{height:103.320000px;}
.h2e{height:135.276000px;}
.h20{height:146.619466px;}
.h30{height:224.190000px;}
.h32{height:296.145000px;}
.h34{height:373.050000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:39.636000px;}
.w21{width:54.036000px;}
.w11{width:61.956000px;}
.w2c{width:66.996000px;}
.wa{width:71.640000px;}
.w1f{width:72.036000px;}
.wf{width:74.160000px;}
.w10{width:76.716000px;}
.w25{width:78.120000px;}
.w26{width:79.956000px;}
.w7{width:82.836000px;}
.w1b{width:83.556000px;}
.wc{width:84.636000px;}
.w14{width:89.316000px;}
.w22{width:92.556000px;}
.w15{width:95.076000px;}
.w29{width:95.796000px;}
.w28{width:96.156000px;}
.w20{width:102.276000px;}
.w16{width:105.516000px;}
.w19{width:107.352000px;}
.w23{width:110.916000px;}
.w1a{width:114.516000px;}
.w2d{width:115.596000px;}
.w2b{width:115.992000px;}
.w33{width:116.316000px;}
.w1d{width:119.916000px;}
.w24{width:122.472000px;}
.w2f{width:124.596000px;}
.we{width:144.792000px;}
.w12{width:146.556000px;}
.wb{width:147.672000px;}
.w27{width:148.752000px;}
.w9{width:149.832000px;}
.wd{width:150.555000px;}
.w8{width:151.275000px;}
.w13{width:153.795000px;}
.w2e{width:155.235000px;}
.w1c{width:171.435000px;}
.w1e{width:200.595000px;}
.w2a{width:279.825000px;}
.w6{width:332.790000px;}
.w5{width:347.910000px;}
.w18{width:374.910000px;}
.w3{width:641.055000px;}
.w30{width:733.350000px;}
.w31{width:756.375000px;}
.w32{width:773.415000px;}
.w17{width:786.450000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x4a{left:2.865216px;}
.x35{left:3.976365px;}
.x13{left:5.040000px;}
.x28{left:6.120000px;}
.x1a{left:7.560000px;}
.xe{left:8.640000px;}
.x7{left:10.485000px;}
.x27{left:13.680000px;}
.x1c{left:15.840000px;}
.x1d{left:17.280000px;}
.x1e{left:18.360000px;}
.x31{left:19.800000px;}
.x1b{left:21.240000px;}
.x18{left:22.320000px;}
.x24{left:24.480000px;}
.x33{left:26.280000px;}
.x22{left:28.800000px;}
.x1f{left:33.840000px;}
.x29{left:41.040000px;}
.x19{left:42.120000px;}
.x17{left:45.039000px;}
.x25{left:49.320000px;}
.x23{left:51.840000px;}
.x32{left:54.045000px;}
.x21{left:60.150000px;}
.x2a{left:79.956000px;}
.xd{left:83.915987px;}
.x1{left:106.235987px;}
.x9{left:118.835987px;}
.x4f{left:127.475987px;}
.x12{left:133.271987px;}
.x11{left:142.271987px;}
.x5{left:144.429000px;}
.x4c{left:148.751987px;}
.x2b{left:157.395000px;}
.xc{left:159.194987px;}
.xb{left:160.274987px;}
.x3e{left:186.195000px;}
.x14{left:189.795000px;}
.x2c{left:220.065000px;}
.x4d{left:223.665000px;}
.x3d{left:228.705000px;}
.x2{left:241.664987px;}
.x47{left:261.465000px;}
.xa{left:289.904987px;}
.x10{left:303.630000px;}
.x39{left:306.825000px;}
.x3f{left:334.950000px;}
.x15{left:341.430000px;}
.x38{left:361.230000px;}
.x2d{left:367.350000px;}
.x3a{left:378.870000px;}
.x42{left:386.070000px;}
.x40{left:431.100000px;}
.x4e{left:436.500000px;}
.x4{left:447.659987px;}
.xf{left:454.140000px;}
.x36{left:481.140000px;}
.x26{left:487.650000px;}
.x20{left:489.450000px;}
.x16{left:491.610000px;}
.x43{left:502.050000px;}
.x2e{left:521.850000px;}
.x41{left:526.890000px;}
.x3b{left:535.170000px;}
.x8{left:543.449987px;}
.x37{left:588.495000px;}
.x44{left:594.615000px;}
.x2f{left:611.895000px;}
.x3c{left:627.735000px;}
.x45{left:661.605000px;}
.x3{left:696.524987px;}
.x30{left:707.685000px;}
.x6{left:747.285000px;}
.x46{left:754.170000px;}
.x49{left:862.919987px;}
.x4b{left:879.839987px;}
.x48{left:1089.074987px;}
.x34{left:1156.784987px;}
@media print{
.v1{vertical-align:-94.880000pt;}
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-1.536000pt;}
.ls4b{letter-spacing:-1.280000pt;}
.ls22{letter-spacing:-1.152000pt;}
.ls14{letter-spacing:-0.832000pt;}
.ls3d{letter-spacing:-0.704000pt;}
.ls18{letter-spacing:-0.640000pt;}
.ls15{letter-spacing:-0.576000pt;}
.ls31{letter-spacing:-0.560000pt;}
.ls21{letter-spacing:-0.450667pt;}
.ls2a{letter-spacing:-0.448000pt;}
.ls1f{letter-spacing:-0.414933pt;}
.ls13{letter-spacing:-0.402133pt;}
.ls12{letter-spacing:-0.376533pt;}
.ls6{letter-spacing:-0.340267pt;}
.ls32{letter-spacing:-0.271467pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls34{letter-spacing:-0.135467pt;}
.ls2d{letter-spacing:-0.128000pt;}
.ls17{letter-spacing:-0.000001pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.017920pt;}
.ls4a{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.128000pt;}
.ls29{letter-spacing:0.160000pt;}
.ls46{letter-spacing:0.192000pt;}
.ls10{letter-spacing:0.234667pt;}
.ls33{letter-spacing:0.406933pt;}
.ls35{letter-spacing:0.407040pt;}
.ls1a{letter-spacing:0.414720pt;}
.ls20{letter-spacing:0.414933pt;}
.ls30{letter-spacing:0.417707pt;}
.lsa{letter-spacing:0.448000pt;}
.lsb{letter-spacing:0.532480pt;}
.ls36{letter-spacing:0.535040pt;}
.ls24{letter-spacing:0.576000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls28{letter-spacing:0.682667pt;}
.ls47{letter-spacing:0.704000pt;}
.ls2e{letter-spacing:0.719360pt;}
.ls26{letter-spacing:0.746667pt;}
.ls1{letter-spacing:0.875520pt;}
.ls19{letter-spacing:1.024000pt;}
.ls40{letter-spacing:1.039969pt;}
.ls3e{letter-spacing:1.257758pt;}
.ls41{letter-spacing:1.366628pt;}
.ls3c{letter-spacing:1.443088pt;}
.ls39{letter-spacing:1.820719pt;}
.ls4{letter-spacing:1.920000pt;}
.ls42{letter-spacing:2.176000pt;}
.lsc{letter-spacing:3.200000pt;}
.ls3b{letter-spacing:3.328000pt;}
.lsf{letter-spacing:4.480000pt;}
.ls23{letter-spacing:5.760000pt;}
.ls1d{letter-spacing:7.040000pt;}
.ls11{letter-spacing:8.320000pt;}
.ls1c{letter-spacing:9.600000pt;}
.ls1e{letter-spacing:10.880000pt;}
.lsd{letter-spacing:12.160000pt;}
.ls45{letter-spacing:13.440000pt;}
.ls2c{letter-spacing:14.720000pt;}
.ls2f{letter-spacing:15.488000pt;}
.lse{letter-spacing:17.280000pt;}
.ls27{letter-spacing:18.560000pt;}
.ls49{letter-spacing:18.666667pt;}
.ls37{letter-spacing:19.338667pt;}
.ls25{letter-spacing:20.618667pt;}
.ls2b{letter-spacing:26.240000pt;}
.ls43{letter-spacing:28.288000pt;}
.ls38{letter-spacing:29.578667pt;}
.ls9{letter-spacing:31.841280pt;}
.ls3a{letter-spacing:33.562027pt;}
.ls48{letter-spacing:38.538667pt;}
.ls44{letter-spacing:43.658667pt;}
.ls3f{letter-spacing:78.208000pt;}
.ls2{letter-spacing:117.248000pt;}
.ls3{letter-spacing:161.610667pt;}
.ws21{word-spacing:-64.192000pt;}
.ws20{word-spacing:-64.000000pt;}
.ws19{word-spacing:-58.880000pt;}
.ws1f{word-spacing:-45.248000pt;}
.ws1d{word-spacing:-25.218021pt;}
.ws1b{word-spacing:-23.209077pt;}
.ws1c{word-spacing:-19.190273pt;}
.ws8{word-spacing:-18.560000pt;}
.ws7{word-spacing:-18.157867pt;}
.ws13{word-spacing:-18.000000pt;}
.ws22{word-spacing:-16.704000pt;}
.ws18{word-spacing:-16.576000pt;}
.wsb{word-spacing:-16.448000pt;}
.ws10{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.999999pt;}
.ws14{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws11{word-spacing:-15.552000pt;}
.wsa{word-spacing:-15.424000pt;}
.ws1a{word-spacing:-15.296000pt;}
.ws12{word-spacing:-15.168000pt;}
.ws16{word-spacing:-15.126933pt;}
.wsf{word-spacing:-14.945280pt;}
.ws2{word-spacing:-14.720000pt;}
.ws17{word-spacing:-14.584533pt;}
.wsd{word-spacing:-14.530347pt;}
.wse{word-spacing:-14.494613pt;}
.wsc{word-spacing:-14.464000pt;}
.ws15{word-spacing:-14.448533pt;}
.ws6{word-spacing:-11.773227pt;}
.ws1{word-spacing:-10.652373pt;}
.ws1e{word-spacing:-10.560000pt;}
.ws0{word-spacing:-9.546240pt;}
.ws5{word-spacing:0.000000pt;}
._22{margin-left:-4.661760pt;}
._7{margin-left:-3.366400pt;}
._0{margin-left:-1.827840pt;}
._2{margin-left:-0.913920pt;}
._1{width:1.075200pt;}
._3{width:1.996800pt;}
._4{width:3.020373pt;}
._5{width:3.968000pt;}
._6{width:4.992000pt;}
._f{width:6.528000pt;}
._a{width:8.291840pt;}
._8{width:9.408000pt;}
._9{width:10.403840pt;}
._d{width:11.560960pt;}
._c{width:12.715520pt;}
._e{width:13.724587pt;}
._b{width:14.656000pt;}
._14{width:17.522773pt;}
._19{width:18.436267pt;}
._18{width:19.535360pt;}
._15{width:20.480000pt;}
._16{width:21.749333pt;}
._17{width:23.259307pt;}
._12{width:24.884053pt;}
._10{width:25.856000pt;}
._11{width:26.851840pt;}
._13{width:28.621653pt;}
._1d{width:29.515947pt;}
._1c{width:30.436693pt;}
._2b{width:32.418133pt;}
._2a{width:34.333867pt;}
._1b{width:35.323307pt;}
._1a{width:36.469333pt;}
._29{width:52.928000pt;}
._26{width:90.048000pt;}
._23{width:92.874667pt;}
._1f{width:113.130667pt;}
._25{width:119.075840pt;}
._21{width:126.624000pt;}
._1e{width:135.739307pt;}
._28{width:139.555840pt;}
._20{width:151.850667pt;}
._27{width:235.683840pt;}
._24{width:266.339840pt;}
.fs8{font-size:5.120000pt;}
.fs9{font-size:26.880000pt;}
.fsd{font-size:30.250507pt;}
.fsc{font-size:36.585532pt;}
.fse{font-size:39.752322pt;}
.fs4{font-size:42.240000pt;}
.fsb{font-size:47.406338pt;}
.fs3{font-size:48.640000pt;}
.fs1{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fsa{font-size:59.811770pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.240000pt;}
.fs5{font-size:96.000000pt;}
.fs6{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.880000pt;}
.y30{bottom:3.200000pt;}
.y81{bottom:3.226667pt;}
.yb9{bottom:3.240000pt;}
.y104{bottom:3.520000pt;}
.y102{bottom:3.840000pt;}
.y10a{bottom:3.866667pt;}
.y146{bottom:4.074208pt;}
.y18e{bottom:4.429934pt;}
.yca{bottom:4.480000pt;}
.yd6{bottom:4.520000pt;}
.yc8{bottom:4.800000pt;}
.ye2{bottom:4.840000pt;}
.y12e{bottom:5.337714pt;}
.yf8{bottom:6.739030pt;}
.y92{bottom:11.514667pt;}
.y8b{bottom:11.520000pt;}
.ya3{bottom:12.480000pt;}
.y1c1{bottom:12.520000pt;}
.ya1{bottom:12.800000pt;}
.y168{bottom:14.409026pt;}
.ya{bottom:15.392000pt;}
.y8{bottom:15.712000pt;}
.y147{bottom:17.365086pt;}
.y18f{bottom:18.871881pt;}
.y101{bottom:22.080000pt;}
.y105{bottom:22.106667pt;}
.y10e{bottom:22.120000pt;}
.y12f{bottom:22.527311pt;}
.y169{bottom:25.376131pt;}
.yb{bottom:27.200000pt;}
.yf9{bottom:28.473261pt;}
.y7{bottom:28.832000pt;}
.y148{bottom:30.656777pt;}
.y190{bottom:33.282539pt;}
.y16a{bottom:36.342276pt;}
.y130{bottom:39.716609pt;}
.y118{bottom:40.346667pt;}
.y100{bottom:40.640000pt;}
.y149{bottom:43.948467pt;}
.y16b{bottom:47.308421pt;}
.y191{bottom:47.693198pt;}
.yfa{bottom:50.205982pt;}
.y6{bottom:50.880000pt;}
.y131{bottom:56.904412pt;}
.y14a{bottom:57.240158pt;}
.y16c{bottom:58.274565pt;}
.yff{bottom:58.880000pt;}
.y192{bottom:62.135398pt;}
.y16d{bottom:69.264712pt;}
.y14b{bottom:70.530687pt;}
.yfb{bottom:71.940590pt;}
.y132{bottom:74.131091pt;}
.y193{bottom:76.546056pt;}
.yfe{bottom:77.120000pt;}
.y16e{bottom:80.230857pt;}
.y2f{bottom:81.312000pt;}
.y14c{bottom:83.822378pt;}
.y194{bottom:90.957976pt;}
.y16f{bottom:91.197002pt;}
.y133{bottom:91.320389pt;}
.yfc{bottom:93.673312pt;}
.y170{bottom:102.163146pt;}
.y195{bottom:105.368635pt;}
.y5{bottom:105.632000pt;}
.y14d{bottom:110.405759pt;}
.y171{bottom:113.127371pt;}
.y196{bottom:119.809573pt;}
.y14e{bottom:123.702094pt;}
.y172{bottom:124.120398pt;}
.y166{bottom:126.112000pt;}
.ye5{bottom:127.712000pt;}
.y18c{bottom:129.312000pt;}
.y1d3{bottom:129.632000pt;}
.y1b6{bottom:129.952000pt;}
.y91{bottom:131.872000pt;}
.y197{bottom:134.215185pt;}
.y14f{bottom:136.985656pt;}
.y51{bottom:137.946667pt;}
.y6a{bottom:138.906667pt;}
.yb4{bottom:140.826667pt;}
.y12c{bottom:141.466667pt;}
.ye4{bottom:144.026667pt;}
.y2c{bottom:144.346667pt;}
.y173{bottom:146.048847pt;}
.y198{bottom:148.635936pt;}
.y1d8{bottom:149.466667pt;}
.y150{bottom:150.280830pt;}
.ye3{bottom:150.746667pt;}
.y144{bottom:151.386667pt;}
.y165{bottom:153.626667pt;}
.y174{bottom:157.022672pt;}
.y18b{bottom:157.146667pt;}
.y90{bottom:157.786667pt;}
.y1f6{bottom:161.626667pt;}
.y199{bottom:163.069304pt;}
.yf6{bottom:163.546667pt;}
.y151{bottom:163.576004pt;}
.y50{bottom:165.786667pt;}
.y69{bottom:166.746667pt;}
.yb3{bottom:168.026667pt;}
.y12b{bottom:168.986667pt;}
.ye1{bottom:171.226667pt;}
.y2b{bottom:171.866667pt;}
.y1d7{bottom:174.746667pt;}
.y1d0{bottom:176.386667pt;}
.y152{bottom:176.859567pt;}
.y143{bottom:178.946667pt;}
.y175{bottom:178.979924pt;}
.y164{bottom:181.186667pt;}
.y8f{bottom:183.746667pt;}
.y18a{bottom:184.706667pt;}
.y1b5{bottom:186.626667pt;}
.y1f5{bottom:189.186667pt;}
.y176{bottom:189.944149pt;}
.yf5{bottom:191.106667pt;}
.y19a{bottom:191.898191pt;}
.ye0{bottom:192.066667pt;}
.y12a{bottom:193.346667pt;}
.y12d{bottom:193.680000pt;}
.y68{bottom:194.306667pt;}
.y4f{bottom:194.626667pt;}
.yb2{bottom:195.586667pt;}
.y2a{bottom:199.426667pt;}
.y111{bottom:199.746667pt;}
.y1d6{bottom:200.066667pt;}
.y177{bottom:200.908373pt;}
.y1cf{bottom:203.906667pt;}
.y19b{bottom:206.331560pt;}
.y142{bottom:206.466667pt;}
.y163{bottom:209.026667pt;}
.y8e{bottom:209.666667pt;}
.y178{bottom:211.872598pt;}
.y189{bottom:212.226667pt;}
.ydf{bottom:212.546667pt;}
.y1b4{bottom:214.466667pt;}
.y1f4{bottom:216.706667pt;}
.yf4{bottom:218.626667pt;}
.y67{bottom:221.826667pt;}
.yb1{bottom:223.426667pt;}
.y4e{bottom:224.066667pt;}
.y1d5{bottom:225.346667pt;}
.y29{bottom:227.266667pt;}
.y210{bottom:230.146667pt;}
.y1ce{bottom:231.746667pt;}
.yde{bottom:233.346667pt;}
.y179{bottom:233.829849pt;}
.y141{bottom:233.986667pt;}
.y19c{bottom:235.160446pt;}
.y8d{bottom:235.906667pt;}
.y162{bottom:236.546667pt;}
.y188{bottom:239.746667pt;}
.y1b3{bottom:242.306667pt;}
.y1f3{bottom:244.226667pt;}
.y17a{bottom:244.794074pt;}
.yf3{bottom:246.466667pt;}
.y66{bottom:249.346667pt;}
.y19d{bottom:249.606431pt;}
.y1d4{bottom:250.626667pt;}
.yb0{bottom:250.946667pt;}
.y4d{bottom:251.906667pt;}
.ydd{bottom:253.826667pt;}
.y28{bottom:254.786667pt;}
.y20f{bottom:256.706667pt;}
.y1cd{bottom:259.266667pt;}
.y8c{bottom:261.826667pt;}
.y19e{bottom:264.014566pt;}
.y161{bottom:264.066667pt;}
.y187{bottom:267.586667pt;}
.y1b2{bottom:269.826667pt;}
.y1f2{bottom:272.066667pt;}
.yf2{bottom:273.986667pt;}
.ydc{bottom:274.626667pt;}
.y65{bottom:277.186667pt;}
.y19f{bottom:278.422701pt;}
.yaf{bottom:278.466667pt;}
.y4c{bottom:279.426667pt;}
.y27{bottom:282.306667pt;}
.y20e{bottom:284.226667pt;}
.y1cc{bottom:286.786667pt;}
.y8a{bottom:287.773333pt;}
.y140{bottom:289.373333pt;}
.y160{bottom:291.613333pt;}
.yae{bottom:294.173333pt;}
.y186{bottom:295.133333pt;}
.ydb{bottom:295.453333pt;}
.y1b1{bottom:297.373333pt;}
.y1f1{bottom:299.613333pt;}
.yf1{bottom:301.533333pt;}
.y64{bottom:304.733333pt;}
.y4b{bottom:306.973333pt;}
.y1a0{bottom:307.276821pt;}
.y26{bottom:309.853333pt;}
.y20d{bottom:311.773333pt;}
.y1cb{bottom:314.333333pt;}
.yda{bottom:315.933333pt;}
.y13f{bottom:316.893333pt;}
.y15f{bottom:319.453333pt;}
.y1a1{bottom:321.684956pt;}
.yad{bottom:322.333333pt;}
.y185{bottom:322.653333pt;}
.y1b0{bottom:324.893333pt;}
.y89{bottom:326.173333pt;}
.y129{bottom:326.493333pt;}
.y1f0{bottom:327.133333pt;}
.yf0{bottom:329.053333pt;}
.y63{bottom:332.253333pt;}
.y4a{bottom:334.813333pt;}
.yd9{bottom:336.733333pt;}
.y25{bottom:337.693333pt;}
.y20c{bottom:339.613333pt;}
.y1ca{bottom:342.173333pt;}
.y13e{bottom:344.413333pt;}
.y15e{bottom:346.973333pt;}
.y184{bottom:350.173333pt;}
.yac{bottom:350.813333pt;}
.y1af{bottom:352.733333pt;}
.y88{bottom:353.693333pt;}
.y110{bottom:354.013333pt;}
.y1ef{bottom:354.653333pt;}
.yef{bottom:356.893333pt;}
.yd8{bottom:357.213333pt;}
.y62{bottom:359.773333pt;}
.y49{bottom:362.333333pt;}
.y24{bottom:365.213333pt;}
.y128{bottom:367.133333pt;}
.y1c9{bottom:369.693333pt;}
.y10f{bottom:372.253333pt;}
.y15d{bottom:374.493333pt;}
.y183{bottom:377.693333pt;}
.yd7{bottom:378.013333pt;}
.yab{bottom:378.973333pt;}
.y1ae{bottom:380.253333pt;}
.y87{bottom:381.533333pt;}
.y1ee{bottom:382.493333pt;}
.yee{bottom:384.413333pt;}
.y61{bottom:387.613333pt;}
.y48{bottom:389.853333pt;}
.y10d{bottom:392.413333pt;}
.y23{bottom:392.733333pt;}
.y20b{bottom:394.653333pt;}
.y127{bottom:394.973333pt;}
.y1c8{bottom:397.213333pt;}
.yd5{bottom:398.813333pt;}
.y13d{bottom:399.813333pt;}
.y15c{bottom:402.053333pt;}
.y182{bottom:405.573333pt;}
.yaa{bottom:407.173333pt;}
.y1ad{bottom:407.813333pt;}
.yed{bottom:408.773333pt;}
.yf7{bottom:408.840000pt;}
.y86{bottom:409.093333pt;}
.y1ed{bottom:410.053333pt;}
.y60{bottom:415.173333pt;}
.y47{bottom:417.733333pt;}
.yd4{bottom:419.333333pt;}
.y22{bottom:420.293333pt;}
.y20a{bottom:422.213333pt;}
.y126{bottom:422.533333pt;}
.y1c7{bottom:424.773333pt;}
.y13c{bottom:427.333333pt;}
.y15b{bottom:429.573333pt;}
.y10c{bottom:432.453333pt;}
.y181{bottom:433.093333pt;}
.ya9{bottom:435.653333pt;}
.y85{bottom:436.613333pt;}
.y1ec{bottom:437.573333pt;}
.yd3{bottom:440.133333pt;}
.y5f{bottom:442.693333pt;}
.y46{bottom:445.253333pt;}
.y21{bottom:448.133333pt;}
.y125{bottom:449.093333pt;}
.y209{bottom:450.053333pt;}
.y1c6{bottom:452.613333pt;}
.y10b{bottom:452.933333pt;}
.y13b{bottom:454.853333pt;}
.y15a{bottom:457.413333pt;}
.yd2{bottom:460.613333pt;}
.ya8{bottom:463.813333pt;}
.y84{bottom:464.133333pt;}
.y1eb{bottom:465.093333pt;}
.y5e{bottom:470.213333pt;}
.y45{bottom:472.773333pt;}
.y124{bottom:474.373333pt;}
.y20{bottom:475.653333pt;}
.y208{bottom:477.573333pt;}
.yd1{bottom:481.413333pt;}
.y13a{bottom:482.693333pt;}
.y159{bottom:484.933333pt;}
.y180{bottom:488.133333pt;}
.y1d2{bottom:488.453333pt;}
.y83{bottom:491.973333pt;}
.y1ea{bottom:492.933333pt;}
.y1c5{bottom:493.573333pt;}
.y5d{bottom:498.053333pt;}
.y123{bottom:499.653333pt;}
.y44{bottom:500.613333pt;}
.yd0{bottom:501.893333pt;}
.y1f{bottom:503.173333pt;}
.y207{bottom:505.093333pt;}
.y82{bottom:507.973333pt;}
.y158{bottom:508.293333pt;}
.y167{bottom:508.600000pt;}
.y109{bottom:509.573333pt;}
.y80{bottom:509.893333pt;}
.y139{bottom:510.213333pt;}
.y17f{bottom:516.000000pt;}
.y1d1{bottom:517.600000pt;}
.ya7{bottom:520.480000pt;}
.y1ac{bottom:520.800000pt;}
.y1c4{bottom:521.120000pt;}
.ycf{bottom:522.720000pt;}
.y5c{bottom:525.600000pt;}
.y43{bottom:528.160000pt;}
.y7f{bottom:530.400000pt;}
.y1e{bottom:530.720000pt;}
.y138{bottom:537.760000pt;}
.y122{bottom:538.400000pt;}
.yce{bottom:543.520000pt;}
.y206{bottom:546.080000pt;}
.y108{bottom:547.680000pt;}
.y1e9{bottom:548.000000pt;}
.ya6{bottom:548.640000pt;}
.y7e{bottom:551.200000pt;}
.yec{bottom:551.520000pt;}
.y5b{bottom:553.120000pt;}
.y42{bottom:555.680000pt;}
.y1d{bottom:558.560000pt;}
.ycd{bottom:564.000000pt;}
.y137{bottom:565.280000pt;}
.y107{bottom:566.240000pt;}
.y17e{bottom:571.040000pt;}
.y7d{bottom:572.000000pt;}
.y121{bottom:572.640000pt;}
.y205{bottom:573.600000pt;}
.y1e8{bottom:575.520000pt;}
.y1ab{bottom:576.160000pt;}
.ya5{bottom:576.800000pt;}
.yeb{bottom:579.040000pt;}
.y5a{bottom:580.640000pt;}
.y41{bottom:583.200000pt;}
.y136{bottom:584.160000pt;}
.y106{bottom:584.480000pt;}
.ycc{bottom:584.800000pt;}
.y1c{bottom:586.080000pt;}
.y7c{bottom:592.480000pt;}
.y17d{bottom:598.560000pt;}
.y135{bottom:598.880000pt;}
.y145{bottom:599.040000pt;}
.y120{bottom:600.160000pt;}
.y204{bottom:601.120000pt;}
.y1e7{bottom:603.360000pt;}
.y103{bottom:603.680000pt;}
.y1aa{bottom:604.000000pt;}
.ya4{bottom:605.280000pt;}
.yea{bottom:606.880000pt;}
.y59{bottom:608.480000pt;}
.y40{bottom:610.720000pt;}
.y7b{bottom:613.280000pt;}
.y1b{bottom:613.600000pt;}
.ycb{bottom:626.106667pt;}
.y17c{bottom:626.426667pt;}
.y11f{bottom:628.026667pt;}
.y203{bottom:628.986667pt;}
.y1e6{bottom:630.906667pt;}
.y1a9{bottom:631.546667pt;}
.ya2{bottom:633.466667pt;}
.y7a{bottom:633.786667pt;}
.ye9{bottom:634.426667pt;}
.y58{bottom:636.026667pt;}
.y3f{bottom:638.586667pt;}
.y1a{bottom:641.146667pt;}
.yfd{bottom:641.786667pt;}
.yc9{bottom:646.906667pt;}
.y1c3{bottom:647.226667pt;}
.y18d{bottom:650.693333pt;}
.y17b{bottom:650.746667pt;}
.y79{bottom:654.586667pt;}
.y11e{bottom:655.546667pt;}
.y202{bottom:656.506667pt;}
.y1e5{bottom:658.426667pt;}
.y1a8{bottom:660.346667pt;}
.ya0{bottom:661.626667pt;}
.ye8{bottom:661.946667pt;}
.y57{bottom:663.546667pt;}
.y3e{bottom:666.106667pt;}
.yc7{bottom:667.386667pt;}
.y19{bottom:668.986667pt;}
.y78{bottom:675.386667pt;}
.y11d{bottom:683.066667pt;}
.y201{bottom:684.026667pt;}
.y1e4{bottom:685.946667pt;}
.yc6{bottom:688.186667pt;}
.y1a7{bottom:689.146667pt;}
.ye7{bottom:689.466667pt;}
.y56{bottom:691.066667pt;}
.y3d{bottom:693.626667pt;}
.y77{bottom:695.866667pt;}
.y18{bottom:696.506667pt;}
.y9f{bottom:702.586667pt;}
.y1c2{bottom:703.546667pt;}
.yc5{bottom:708.666667pt;}
.y11c{bottom:710.586667pt;}
.y200{bottom:711.546667pt;}
.y1e3{bottom:713.786667pt;}
.y76{bottom:716.666667pt;}
.y1a6{bottom:716.986667pt;}
.ye6{bottom:717.306667pt;}
.y55{bottom:718.586667pt;}
.y3c{bottom:721.146667pt;}
.y17{bottom:724.026667pt;}
.yc4{bottom:729.466667pt;}
.y9e{bottom:730.106667pt;}
.y1c0{bottom:732.026667pt;}
.y75{bottom:737.186667pt;}
.y11b{bottom:738.146667pt;}
.y1ff{bottom:739.426667pt;}
.y1e2{bottom:741.346667pt;}
.y1a5{bottom:744.866667pt;}
.y54{bottom:746.466667pt;}
.yc3{bottom:749.986667pt;}
.y16{bottom:751.586667pt;}
.y3b{bottom:751.906667pt;}
.y11a{bottom:754.786667pt;}
.y9d{bottom:757.666667pt;}
.y74{bottom:757.986667pt;}
.y1fe{bottom:766.946667pt;}
.y1e1{bottom:768.866667pt;}
.yc2{bottom:770.786667pt;}
.y1bf{bottom:772.706667pt;}
.y119{bottom:773.026667pt;}
.y15{bottom:773.666667pt;}
.y53{bottom:773.986667pt;}
.y157{bottom:775.586667pt;}
.y73{bottom:778.466667pt;}
.y3a{bottom:781.666667pt;}
.y9c{bottom:785.506667pt;}
.y14{bottom:789.346667pt;}
.yc1{bottom:791.586667pt;}
.y156{bottom:793.826667pt;}
.y1fd{bottom:794.466667pt;}
.y1e0{bottom:796.386667pt;}
.y1a4{bottom:800.546667pt;}
.y52{bottom:801.506667pt;}
.y134{bottom:801.826667pt;}
.y39{bottom:804.066667pt;}
.yc0{bottom:812.066667pt;}
.y9b{bottom:813.026667pt;}
.y13{bottom:813.346667pt;}
.y72{bottom:816.546667pt;}
.y155{bottom:821.026667pt;}
.y1df{bottom:824.226667pt;}
.y1be{bottom:828.066667pt;}
.y1a3{bottom:828.386667pt;}
.y38{bottom:829.026667pt;}
.ybf{bottom:832.866667pt;}
.y117{bottom:833.826667pt;}
.y1fc{bottom:835.426667pt;}
.y9a{bottom:840.546667pt;}
.y12{bottom:842.466667pt;}
.y71{bottom:844.066667pt;}
.y154{bottom:848.893333pt;}
.y1de{bottom:851.773333pt;}
.ybe{bottom:853.373333pt;}
.y1bd{bottom:855.613333pt;}
.y99{bottom:856.253333pt;}
.y1a2{bottom:856.573333pt;}
.y37{bottom:856.893333pt;}
.y1fb{bottom:862.973333pt;}
.y11{bottom:863.293333pt;}
.y70{bottom:871.933333pt;}
.ybd{bottom:874.173333pt;}
.y153{bottom:876.413333pt;}
.y1dd{bottom:879.293333pt;}
.y98{bottom:882.173333pt;}
.y1bc{bottom:883.133333pt;}
.y36{bottom:884.413333pt;}
.y10{bottom:888.253333pt;}
.y116{bottom:890.173333pt;}
.y1fa{bottom:890.813333pt;}
.ybc{bottom:894.973333pt;}
.y6f{bottom:899.453333pt;}
.y1dc{bottom:906.813333pt;}
.yf{bottom:907.453333pt;}
.y97{bottom:908.413333pt;}
.y115{bottom:910.013333pt;}
.y1bb{bottom:910.973333pt;}
.y35{bottom:911.933333pt;}
.ybb{bottom:915.453333pt;}
.y1f9{bottom:918.333333pt;}
.y6e{bottom:926.973333pt;}
.ye{bottom:928.893333pt;}
.y114{bottom:931.133333pt;}
.y96{bottom:934.333333pt;}
.y1db{bottom:934.653333pt;}
.yba{bottom:936.253333pt;}
.y1ba{bottom:938.493333pt;}
.y34{bottom:939.453333pt;}
.y1f8{bottom:945.853333pt;}
.y113{bottom:950.973333pt;}
.y6d{bottom:954.493333pt;}
.yb8{bottom:956.733333pt;}
.y95{bottom:960.293333pt;}
.y1da{bottom:962.213333pt;}
.y1b9{bottom:966.053333pt;}
.y33{bottom:967.333333pt;}
.y112{bottom:971.813333pt;}
.yd{bottom:974.053333pt;}
.yb7{bottom:985.893333pt;}
.y94{bottom:986.213333pt;}
.y1f7{bottom:986.853333pt;}
.y1d9{bottom:989.733333pt;}
.y6c{bottom:990.373333pt;}
.yc{bottom:992.293333pt;}
.y1b8{bottom:993.573333pt;}
.y32{bottom:994.853333pt;}
.yb6{bottom:1004.453333pt;}
.y4{bottom:1010.853333pt;}
.y93{bottom:1012.133333pt;}
.y6b{bottom:1020.133333pt;}
.y1b7{bottom:1021.413333pt;}
.y31{bottom:1022.373333pt;}
.yb5{bottom:1022.693333pt;}
.y3{bottom:1027.813333pt;}
.y2e{bottom:1042.533333pt;}
.y2{bottom:1044.453333pt;}
.y1{bottom:1060.453333pt;}
.y2d{bottom:1062.373333pt;}
.h15{height:4.547500pt;}
.he{height:14.752000pt;}
.h25{height:18.240000pt;}
.h24{height:18.560000pt;}
.h12{height:19.840000pt;}
.h14{height:19.872000pt;}
.h13{height:20.160000pt;}
.h1d{height:20.192000pt;}
.h33{height:20.516579pt;}
.h2a{height:21.120000pt;}
.h1e{height:23.874375pt;}
.h31{height:24.813137pt;}
.h11{height:24.960000pt;}
.h1c{height:24.992000pt;}
.h16{height:25.280000pt;}
.h17{height:25.312000pt;}
.h35{height:26.960926pt;}
.h19{height:27.520000pt;}
.h1a{height:27.552000pt;}
.h18{height:27.840000pt;}
.h1b{height:27.872000pt;}
.h2f{height:32.152052pt;}
.h29{height:36.800000pt;}
.h23{height:36.832000pt;}
.h6{height:39.072000pt;}
.h2c{height:40.000000pt;}
.h28{height:40.032000pt;}
.h21{height:40.565697pt;}
.h7{height:42.013125pt;}
.hc{height:43.201250pt;}
.h2d{height:45.080000pt;}
.hf{height:47.171250pt;}
.h1f{height:48.218750pt;}
.h8{height:48.378750pt;}
.h27{height:48.781250pt;}
.h4{height:51.663750pt;}
.h3{height:52.296250pt;}
.hd{height:55.046250pt;}
.h2b{height:55.072000pt;}
.h26{height:55.360000pt;}
.hb{height:56.156250pt;}
.h2{height:56.843750pt;}
.h5{height:58.563750pt;}
.h10{height:65.531250pt;}
.ha{height:65.938750pt;}
.h9{height:85.265625pt;}
.h22{height:91.840000pt;}
.h2e{height:120.245333pt;}
.h20{height:130.328414pt;}
.h30{height:199.280000pt;}
.h32{height:263.240000pt;}
.h34{height:331.600000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:35.232000pt;}
.w21{width:48.032000pt;}
.w11{width:55.072000pt;}
.w2c{width:59.552000pt;}
.wa{width:63.680000pt;}
.w1f{width:64.032000pt;}
.wf{width:65.920000pt;}
.w10{width:68.192000pt;}
.w25{width:69.440000pt;}
.w26{width:71.072000pt;}
.w7{width:73.632000pt;}
.w1b{width:74.272000pt;}
.wc{width:75.232000pt;}
.w14{width:79.392000pt;}
.w22{width:82.272000pt;}
.w15{width:84.512000pt;}
.w29{width:85.152000pt;}
.w28{width:85.472000pt;}
.w20{width:90.912000pt;}
.w16{width:93.792000pt;}
.w19{width:95.424000pt;}
.w23{width:98.592000pt;}
.w1a{width:101.792000pt;}
.w2d{width:102.752000pt;}
.w2b{width:103.104000pt;}
.w33{width:103.392000pt;}
.w1d{width:106.592000pt;}
.w24{width:108.864000pt;}
.w2f{width:110.752000pt;}
.we{width:128.704000pt;}
.w12{width:130.272000pt;}
.wb{width:131.264000pt;}
.w27{width:132.224000pt;}
.w9{width:133.184000pt;}
.wd{width:133.826667pt;}
.w8{width:134.466667pt;}
.w13{width:136.706667pt;}
.w2e{width:137.986667pt;}
.w1c{width:152.386667pt;}
.w1e{width:178.306667pt;}
.w2a{width:248.733333pt;}
.w6{width:295.813333pt;}
.w5{width:309.253333pt;}
.w18{width:333.253333pt;}
.w3{width:569.826667pt;}
.w30{width:651.866667pt;}
.w31{width:672.333333pt;}
.w32{width:687.480000pt;}
.w17{width:699.066667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x4a{left:2.546859pt;}
.x35{left:3.534547pt;}
.x13{left:4.480000pt;}
.x28{left:5.440000pt;}
.x1a{left:6.720000pt;}
.xe{left:7.680000pt;}
.x7{left:9.320000pt;}
.x27{left:12.160000pt;}
.x1c{left:14.080000pt;}
.x1d{left:15.360000pt;}
.x1e{left:16.320000pt;}
.x31{left:17.600000pt;}
.x1b{left:18.880000pt;}
.x18{left:19.840000pt;}
.x24{left:21.760000pt;}
.x33{left:23.360000pt;}
.x22{left:25.600000pt;}
.x1f{left:30.080000pt;}
.x29{left:36.480000pt;}
.x19{left:37.440000pt;}
.x17{left:40.034667pt;}
.x25{left:43.840000pt;}
.x23{left:46.080000pt;}
.x32{left:48.040000pt;}
.x21{left:53.466667pt;}
.x2a{left:71.072000pt;}
.xd{left:74.591988pt;}
.x1{left:94.431988pt;}
.x9{left:105.631988pt;}
.x4f{left:113.311988pt;}
.x12{left:118.463988pt;}
.x11{left:126.463988pt;}
.x5{left:128.381333pt;}
.x4c{left:132.223988pt;}
.x2b{left:139.906667pt;}
.xc{left:141.506655pt;}
.xb{left:142.466655pt;}
.x3e{left:165.506667pt;}
.x14{left:168.706667pt;}
.x2c{left:195.613333pt;}
.x4d{left:198.813333pt;}
.x3d{left:203.293333pt;}
.x2{left:214.813322pt;}
.x47{left:232.413333pt;}
.xa{left:257.693322pt;}
.x10{left:269.893333pt;}
.x39{left:272.733333pt;}
.x3f{left:297.733333pt;}
.x15{left:303.493333pt;}
.x38{left:321.093333pt;}
.x2d{left:326.533333pt;}
.x3a{left:336.773333pt;}
.x42{left:343.173333pt;}
.x40{left:383.200000pt;}
.x4e{left:388.000000pt;}
.x4{left:397.919988pt;}
.xf{left:403.680000pt;}
.x36{left:427.680000pt;}
.x26{left:433.466667pt;}
.x20{left:435.066667pt;}
.x16{left:436.986667pt;}
.x43{left:446.266667pt;}
.x2e{left:463.866667pt;}
.x41{left:468.346667pt;}
.x3b{left:475.706667pt;}
.x8{left:483.066655pt;}
.x37{left:523.106667pt;}
.x44{left:528.546667pt;}
.x2f{left:543.906667pt;}
.x3c{left:557.986667pt;}
.x45{left:588.093333pt;}
.x3{left:619.133322pt;}
.x30{left:629.053333pt;}
.x6{left:664.253333pt;}
.x46{left:670.373333pt;}
.x49{left:767.039988pt;}
.x4b{left:782.079988pt;}
.x48{left:968.066655pt;}
.x34{left:1028.253322pt;}
}




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