
    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_205e4e449f0fc0cd8cc7c61b.woff2')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_f3bfe091db4eb5450a2f07a0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.746582;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_6938491f44057b09a557a796.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.738770;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_aa513f1ab7894a118404fb83.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.865234;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_73b84ac612235d4c77fde865.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f13eb09748a62aace1d5e7d8.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_241ac98331bf6d1e6323a564.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.104492;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_e7b548ac50fa3f1fa2ce06ce.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.106934;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_78f731c290e683ca7dc37548.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.104492;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_86ef51ac8fd357c5e1f486af.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.774902;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_39045b31f21403c9a42569e7.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.081055;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_0a78394e706a135c656dd9eb.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.106934;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_c1f538ba6a0a9f398c7b2aa6.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.104492;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_f13eb09748a62aace1d5e7d8.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_268a1e75e7e7163c0cd319a2.woff2')format("woff");}.fff{font-family:fff;line-height:0.966309;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_ef824859de87e6f04128139f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.774902;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_9afe2727f5d4fb1dd590d2c6.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.115234;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_b7207000c353530999b57e20.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.106934;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_5c0c2f5b338fcdef42f4f75b.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.709961;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_4150a2985bd32b0d6ff3336c.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_2f6bd59f60d683f282547bb9.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.104492;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_96d9a6ca54b749268144bd71.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_cd1f1b931647c069310dd963.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.866699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_2cbc6be23dfc321632f36d77.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.949219;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.251270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251270,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.329332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329332,0.000000,0.000000,0.250000,0,0);}
.m2{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:-75.000000px;}
.v0{vertical-align:0.000000px;}
.ls12{letter-spacing:-0.696000px;}
.ls18{letter-spacing:-0.600000px;}
.ls9{letter-spacing:-0.348000px;}
.lsb{letter-spacing:-0.180000px;}
.ls6{letter-spacing:-0.024000px;}
.ls7{letter-spacing:-0.018000px;}
.ls8{letter-spacing:-0.012000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.006000px;}
.ls3{letter-spacing:0.012000px;}
.ls4{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.024000px;}
.ls10{letter-spacing:0.042000px;}
.ls19{letter-spacing:0.348000px;}
.lsc{letter-spacing:0.378000px;}
.ls14{letter-spacing:0.522000px;}
.lse{letter-spacing:0.540000px;}
.ls11{letter-spacing:0.648000px;}
.lsa{letter-spacing:0.804000px;}
.ls15{letter-spacing:1.152000px;}
.ls13{letter-spacing:8.652000px;}
.ls17{letter-spacing:14.652000px;}
.lsd{letter-spacing:17.652000px;}
.lsf{letter-spacing:23.148000px;}
.ls16{letter-spacing:35.652000px;}
.ls0{letter-spacing:313.620000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws12{word-spacing:-66.000000px;}
.wsd{word-spacing:-24.000000px;}
.wsa{word-spacing:-20.016000px;}
.ws8{word-spacing:-19.152000px;}
.ws14{word-spacing:-18.696000px;}
.wsb{word-spacing:-18.348000px;}
.ws3{word-spacing:-18.024000px;}
.ws7{word-spacing:-18.000000px;}
.wsc{word-spacing:-16.680000px;}
.ws6{word-spacing:-15.024000px;}
.ws4{word-spacing:-15.018000px;}
.ws5{word-spacing:-15.012000px;}
.ws9{word-spacing:-15.000000px;}
.ws1{word-spacing:-14.729195px;}
.wse{word-spacing:-11.548317px;}
.wsf{word-spacing:-10.385177px;}
.ws11{word-spacing:-0.066000px;}
.ws10{word-spacing:-0.060000px;}
.ws2{word-spacing:0.000000px;}
.ws13{word-spacing:0.534000px;}
.ws0{word-spacing:628.006503px;}
._29{margin-left:-387.176264px;}
._6{margin-left:-16.716000px;}
._3{margin-left:-15.258000px;}
._d{margin-left:-14.106000px;}
._5{margin-left:-12.876000px;}
._b{margin-left:-11.682000px;}
._c{margin-left:-10.608000px;}
._f{margin-left:-9.480000px;}
._9{margin-left:-8.478000px;}
._7{margin-left:-7.368000px;}
._e{margin-left:-6.318000px;}
._8{margin-left:-4.914000px;}
._a{margin-left:-3.852000px;}
._4{margin-left:-2.448000px;}
._0{margin-left:-1.224000px;}
._1{width:1.584000px;}
._2{width:2.880000px;}
._1c{width:4.062000px;}
._15{width:5.148000px;}
._14{width:6.534000px;}
._16{width:7.824000px;}
._19{width:9.672000px;}
._1a{width:10.926000px;}
._1b{width:11.970000px;}
._21{width:13.170000px;}
._1e{width:14.886000px;}
._1d{width:16.272000px;}
._1f{width:17.322000px;}
._20{width:19.806000px;}
._2b{width:21.156000px;}
._2e{width:22.308000px;}
._2c{width:23.538000px;}
._17{width:24.948000px;}
._18{width:25.992000px;}
._26{width:27.540000px;}
._2a{width:28.560000px;}
._27{width:30.354000px;}
._24{width:32.340000px;}
._25{width:34.194000px;}
._22{width:35.442000px;}
._23{width:36.444000px;}
._2d{width:40.158000px;}
._28{width:65.652000px;}
._13{width:84.798000px;}
._11{width:123.522000px;}
._12{width:281.292000px;}
._10{width:846.102000px;}
.fc2{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:41.540708px;}
.fs8{font-size:49.097316px;}
.fsc{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fsb{font-size:63.000000px;}
.fs9{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.fsa{font-size:99.000000px;}
.fs4{font-size:120.000000px;}
.fs6{font-size:132.000000px;}
.fs2{font-size:144.000000px;}
.fs3{font-size:168.000000px;}
.y0{bottom:0.000000px;}
.y15a{bottom:11.250000px;}
.y19a{bottom:11.273499px;}
.y9b{bottom:13.875000px;}
.y1c6{bottom:21.375000px;}
.y192{bottom:21.750000px;}
.y205{bottom:21.795000px;}
.y1aa{bottom:37.604935px;}
.y17{bottom:41.246837px;}
.y1c5{bottom:49.125000px;}
.y191{bottom:49.500000px;}
.y204{bottom:49.545000px;}
.y159{bottom:53.287500px;}
.y9a{bottom:53.662500px;}
.y1be{bottom:58.117500px;}
.y171{bottom:58.537500px;}
.y5b{bottom:64.912500px;}
.y99{bottom:67.537500px;}
.y1e6{bottom:76.905000px;}
.y190{bottom:77.250000px;}
.y1e{bottom:88.475872px;}
.y1bd{bottom:94.537500px;}
.y1d{bottom:103.251864px;}
.y1c{bottom:104.702382px;}
.y1b8{bottom:106.912500px;}
.y1ee{bottom:111.787500px;}
.y98{bottom:117.037500px;}
.y19c{bottom:119.130492px;}
.y104{bottom:120.037500px;}
.y18c{bottom:120.787500px;}
.y194{bottom:123.037500px;}
.y12f{bottom:123.412500px;}
.yc8{bottom:127.162500px;}
.y1bc{bottom:131.287500px;}
.y1d3{bottom:136.912500px;}
.y103{bottom:138.412500px;}
.y1ed{bottom:139.537500px;}
.y12e{bottom:141.787500px;}
.y97{bottom:145.912500px;}
.y18b{bottom:148.537500px;}
.y31{bottom:149.287500px;}
.y10{bottom:150.795000px;}
.ye9{bottom:154.545000px;}
.y1fc{bottom:154.905000px;}
.y16{bottom:155.637363px;}
.yc7{bottom:156.045000px;}
.y1f{bottom:156.372423px;}
.y102{bottom:156.795000px;}
.y12d{bottom:160.545000px;}
.y96{bottom:165.405000px;}
.y1ec{bottom:166.920000px;}
.y1bb{bottom:167.662500px;}
.y12{bottom:170.412125px;}
.y15{bottom:170.412132px;}
.ye8{bottom:172.920000px;}
.y101{bottom:175.200000px;}
.yc6{bottom:175.575000px;}
.y193{bottom:178.200000px;}
.y12c{bottom:178.950000px;}
.y1d2{bottom:179.325000px;}
.yf{bottom:180.450000px;}
.y1fb{bottom:182.700000px;}
.y95{bottom:183.825000px;}
.y20{bottom:184.439583px;}
.y18a{bottom:184.950000px;}
.y14{bottom:185.186901px;}
.y18{bottom:185.921952px;}
.y30{bottom:190.950000px;}
.ye7{bottom:191.700000px;}
.y170{bottom:193.200000px;}
.y100{bottom:193.575000px;}
.y158{bottom:196.950000px;}
.y12b{bottom:197.325000px;}
.y94{bottom:202.200000px;}
.yc5{bottom:203.325000px;}
.ye{bottom:210.450000px;}
.yff{bottom:211.950000px;}
.y1eb{bottom:212.700000px;}
.y1ba{bottom:213.082500px;}
.y12a{bottom:215.700000px;}
.ye6{bottom:219.075000px;}
.y189{bottom:221.325000px;}
.y1d1{bottom:222.075000px;}
.y1a1{bottom:222.546913px;}
.y1a{bottom:222.822129px;}
.y157{bottom:224.700000px;}
.y93{bottom:229.950000px;}
.yc4{bottom:230.700000px;}
.y2f{bottom:232.575000px;}
.y129{bottom:234.075000px;}
.y19{bottom:237.560141px;}
.y1fa{bottom:237.825000px;}
.y1ea{bottom:240.450000px;}
.y1b9{bottom:240.817500px;}
.y16f{bottom:244.950000px;}
.ye5{bottom:246.825000px;}
.y56{bottom:247.200000px;}
.yc3{bottom:249.075000px;}
.yd{bottom:249.825000px;}
.y11{bottom:250.125000px;}
.y128{bottom:252.450000px;}
.y188{bottom:257.700000px;}
.y1a0{bottom:258.473675px;}
.y1d0{bottom:264.825000px;}
.y1f9{bottom:265.575000px;}
.y92{bottom:266.700000px;}
.yc2{bottom:267.450000px;}
.y1e9{bottom:268.200000px;}
.y1b{bottom:273.002442px;}
.y2e{bottom:273.825000px;}
.ye4{bottom:274.200000px;}
.y55{bottom:274.575000px;}
.y1a5{bottom:276.737656px;}
.y127{bottom:280.200000px;}
.yc1{bottom:285.825000px;}
.y13{bottom:288.500018px;}
.ye3{bottom:292.575000px;}
.yfe{bottom:295.200000px;}
.y1e8{bottom:295.575000px;}
.y16e{bottom:296.700000px;}
.y91{bottom:298.575000px;}
.y54{bottom:300.825000px;}
.y1a4{bottom:301.614814px;}
.y74{bottom:302.745000px;}
.y187{bottom:303.495000px;}
.yc0{bottom:304.605000px;}
.y20d{bottom:306.120000px;}
.y1cf{bottom:307.230000px;}
.ye2{bottom:310.980000px;}
.y1f8{bottom:311.355000px;}
.y126{bottom:316.995000px;}
.yfd{bottom:322.620000px;}
.y53{bottom:323.370000px;}
.y18f{bottom:323.745000px;}
.y19f{bottom:324.190836px;}
.y16d{bottom:324.480000px;}
.y156{bottom:325.620000px;}
.y1a3{bottom:326.512704px;}
.y2d{bottom:328.230000px;}
.ye1{bottom:329.745000px;}
.y186{bottom:331.230000px;}
.ybf{bottom:331.995000px;}
.y20c{bottom:336.120000px;}
.y19e{bottom:336.608684px;}
.y1f7{bottom:338.745000px;}
.y1a2{bottom:338.940917px;}
.y73{bottom:339.495000px;}
.yfc{bottom:340.980000px;}
.y52{bottom:346.245000px;}
.ye0{bottom:348.105000px;}
.y1e7{bottom:351.105000px;}
.y16c{bottom:352.245000px;}
.y155{bottom:353.370000px;}
.y125{bottom:353.745000px;}
.ybe{bottom:359.370000px;}
.y1ce{bottom:363.120000px;}
.y142{bottom:363.495000px;}
.y1f6{bottom:366.495000px;}
.y51{bottom:368.730000px;}
.y20b{bottom:373.995000px;}
.y1e5{bottom:375.120000px;}
.ydf{bottom:375.870000px;}
.y72{bottom:376.245000px;}
.y185{bottom:376.620000px;}
.yfb{bottom:377.745000px;}
.ybd{bottom:378.105000px;}
.y154{bottom:381.120000px;}
.y1a7{bottom:381.864381px;}
.y90{bottom:382.620000px;}
.y124{bottom:390.120000px;}
.y1b7{bottom:390.495000px;}
.y50{bottom:391.245000px;}
.y2c{bottom:394.245000px;}
.y1a6{bottom:394.282229px;}
.yfa{bottom:396.120000px;}
.ybc{bottom:396.495000px;}
.y19d{bottom:397.671742px;}
.y20a{bottom:401.370000px;}
.yde{bottom:403.245000px;}
.y16b{bottom:403.995000px;}
.y184{bottom:404.370000px;}
.y153{bottom:408.870000px;}
.y141{bottom:409.245000px;}
.y8f{bottom:409.995000px;}
.y71{bottom:412.620000px;}
.ybb{bottom:414.870000px;}
.y4f{bottom:417.870000px;}
.y123{bottom:422.370000px;}
.y18e{bottom:426.870000px;}
.y8e{bottom:428.745000px;}
.y209{bottom:429.120000px;}
.y183{bottom:432.150000px;}
.yba{bottom:433.275000px;}
.y152{bottom:436.275000px;}
.ydd{bottom:440.025000px;}
.y70{bottom:440.400000px;}
.y4e{bottom:444.150000px;}
.y1b6{bottom:446.025000px;}
.y122{bottom:446.775000px;}
.y8d{bottom:447.150000px;}
.y16a{bottom:449.400000px;}
.yf9{bottom:451.650000px;}
.y1cd{bottom:454.650000px;}
.y6f{bottom:458.775000px;}
.y2b{bottom:459.900000px;}
.yb9{bottom:461.025000px;}
.y8c{bottom:465.525000px;}
.y4d{bottom:466.650000px;}
.y121{bottom:467.025000px;}
.y1f5{bottom:467.400000px;}
.y18d{bottom:468.150000px;}
.y195{bottom:468.300000px;}
.yf8{bottom:470.025000px;}
.ydc{bottom:472.275000px;}
.y1b5{bottom:473.775000px;}
.y208{bottom:474.900000px;}
.y169{bottom:477.150000px;}
.y151{bottom:482.025000px;}
.y8b{bottom:483.900000px;}
.y120{bottom:485.400000px;}
.y6e{bottom:486.150000px;}
.y182{bottom:487.275000px;}
.yb8{bottom:488.400000px;}
.y4c{bottom:489.525000px;}
.y1f4{bottom:495.150000px;}
.y19b{bottom:496.548081px;}
.ydb{bottom:496.650000px;}
.yf7{bottom:497.775000px;}
.y207{bottom:502.275000px;}
.y11f{bottom:503.775000px;}
.y168{bottom:504.900000px;}
.y140{bottom:505.650000px;}
.yb7{bottom:506.775000px;}
.y150{bottom:509.775000px;}
.y8a{bottom:511.650000px;}
.y4b{bottom:512.025000px;}
.y6d{bottom:513.900000px;}
.y181{bottom:515.025000px;}
.y1b4{bottom:518.400000px;}
.y11e{bottom:522.150000px;}
.y1f3{bottom:522.900000px;}
.y1e4{bottom:524.775000px;}
.yb6{bottom:525.150000px;}
.y2a{bottom:525.900000px;}
.yf6{bottom:529.650000px;}
.y206{bottom:530.025000px;}
.y6c{bottom:532.275000px;}
.y167{bottom:532.650000px;}
.y4a{bottom:534.525000px;}
.y1a8{bottom:535.957646px;}
.y14f{bottom:537.150000px;}
.y13f{bottom:539.025000px;}
.y11d{bottom:540.525000px;}
.y180{bottom:542.775000px;}
.yb5{bottom:543.525000px;}
.y89{bottom:548.400000px;}
.y6b{bottom:550.650000px;}
.yda{bottom:553.650000px;}
.y203{bottom:554.025000px;}
.y1cc{bottom:555.525000px;}
.y49{bottom:557.400000px;}
.y11c{bottom:558.900000px;}
.y199{bottom:559.435464px;}
.y1e3{bottom:561.195000px;}
.yb4{bottom:562.320000px;}
.y14e{bottom:564.945000px;}
.y6a{bottom:569.070000px;}
.y17f{bottom:570.570000px;}
.yf5{bottom:575.070000px;}
.y13e{bottom:577.320000px;}
.y11b{bottom:577.695000px;}
.y166{bottom:578.070000px;}
.y48{bottom:579.945000px;}
.yd9{bottom:581.070000px;}
.y1cb{bottom:583.320000px;}
.y88{bottom:584.820000px;}
.yb3{bottom:589.695000px;}
.y29{bottom:591.945000px;}
.y14d{bottom:592.695000px;}
.yf4{bottom:594.570000px;}
.y13d{bottom:595.695000px;}
.y11a{bottom:596.070000px;}
.y69{bottom:596.820000px;}
.y1e2{bottom:597.945000px;}
.yd8{bottom:599.445000px;}
.y47{bottom:602.445000px;}
.y1b3{bottom:604.695000px;}
.y165{bottom:605.820000px;}
.yc{bottom:609.570000px;}
.y1ca{bottom:610.695000px;}
.yf3{bottom:612.945000px;}
.y119{bottom:614.445000px;}
.y17e{bottom:614.820000px;}
.y87{bottom:617.070000px;}
.yd7{bottom:617.820000px;}
.yb2{bottom:621.945000px;}
.y196{bottom:622.416137px;}
.y13c{bottom:623.445000px;}
.y1f2{bottom:623.820000px;}
.y68{bottom:624.195000px;}
.y46{bottom:625.320000px;}
.y1a9{bottom:625.930036px;}
.yf2{bottom:631.320000px;}
.y1b2{bottom:632.445000px;}
.y118{bottom:632.820000px;}
.y164{bottom:633.570000px;}
.y1e1{bottom:634.320000px;}
.yd6{bottom:636.195000px;}
.y14c{bottom:637.320000px;}
.y1c9{bottom:638.445000px;}
.y198{bottom:640.555732px;}
.y67{bottom:642.570000px;}
.y45{bottom:647.820000px;}
.y202{bottom:648.195000px;}
.yf1{bottom:649.695000px;}
.y13b{bottom:650.820000px;}
.y1f1{bottom:651.570000px;}
.y197{bottom:653.004676px;}
.yd5{bottom:654.570000px;}
.yb{bottom:657.570000px;}
.y28{bottom:657.945000px;}
.y117{bottom:660.570000px;}
.y66{bottom:660.945000px;}
.y163{bottom:661.320000px;}
.y86{bottom:664.320000px;}
.yb1{bottom:669.195000px;}
.y44{bottom:670.320000px;}
.y17d{bottom:673.695000px;}
.yf0{bottom:677.445000px;}
.y1b1{bottom:678.195000px;}
.y65{bottom:679.320000px;}
.y1e0{bottom:680.070000px;}
.yd4{bottom:682.320000px;}
.y1c8{bottom:684.195000px;}
.y14b{bottom:685.695000px;}
.y13a{bottom:687.570000px;}
.y116{bottom:687.945000px;}
.y85{bottom:691.725000px;}
.y43{bottom:693.225000px;}
.yb0{bottom:696.600000px;}
.ya{bottom:697.350000px;}
.y64{bottom:698.100000px;}
.y17c{bottom:701.475000px;}
.yef{bottom:704.850000px;}
.y1b0{bottom:705.975000px;}
.y115{bottom:706.350000px;}
.y162{bottom:706.725000px;}
.y1df{bottom:707.850000px;}
.yd3{bottom:709.725000px;}
.y84{bottom:710.475000px;}
.y14a{bottom:710.850000px;}
.y1c7{bottom:711.975000px;}
.yaf{bottom:715.350000px;}
.y42{bottom:715.725000px;}
.yee{bottom:723.225000px;}
.y27{bottom:723.600000px;}
.y114{bottom:724.725000px;}
.y63{bottom:725.475000px;}
.yd2{bottom:728.475000px;}
.y1af{bottom:733.350000px;}
.yae{bottom:733.725000px;}
.y161{bottom:734.475000px;}
.y1de{bottom:735.600000px;}
.y149{bottom:735.975000px;}
.y83{bottom:737.850000px;}
.y41{bottom:738.225000px;}
.y9{bottom:741.600000px;}
.y113{bottom:743.100000px;}
.yd1{bottom:746.850000px;}
.y17b{bottom:747.225000px;}
.yed{bottom:750.975000px;}
.yad{bottom:752.100000px;}
.y1f0{bottom:752.475000px;}
.y62{bottom:757.725000px;}
.y40{bottom:761.100000px;}
.y112{bottom:761.850000px;}
.y160{bottom:762.225000px;}
.y1dd{bottom:762.975000px;}
.y82{bottom:765.225000px;}
.yac{bottom:770.475000px;}
.y8{bottom:773.475000px;}
.yd0{bottom:774.225000px;}
.y17a{bottom:774.600000px;}
.y139{bottom:779.850000px;}
.y111{bottom:780.225000px;}
.y3f{bottom:783.600000px;}
.y81{bottom:783.975000px;}
.y148{bottom:786.225000px;}
.yec{bottom:787.725000px;}
.yab{bottom:788.850000px;}
.y26{bottom:789.600000px;}
.y138{bottom:798.225000px;}
.y110{bottom:798.600000px;}
.y80{bottom:802.350000px;}
.y61{bottom:804.975000px;}
.y3e{bottom:806.100000px;}
.yaa{bottom:807.225000px;}
.y1ae{bottom:807.600000px;}
.y1dc{bottom:810.600000px;}
.ycf{bottom:810.975000px;}
.y7{bottom:815.850000px;}
.y137{bottom:816.600000px;}
.y10f{bottom:817.020000px;}
.y15f{bottom:817.380000px;}
.y179{bottom:820.395000px;}
.yeb{bottom:824.505000px;}
.y201{bottom:826.380000px;}
.y147{bottom:826.755000px;}
.y3d{bottom:829.020000px;}
.y7f{bottom:829.755000px;}
.y1c4{bottom:830.880000px;}
.y60{bottom:832.380000px;}
.ya9{bottom:835.005000px;}
.y1ad{bottom:835.395000px;}
.y10e{bottom:844.755000px;}
.yce{bottom:847.755000px;}
.y178{bottom:848.130000px;}
.y1db{bottom:850.380000px;}
.y5f{bottom:851.130000px;}
.y3c{bottom:851.505000px;}
.y136{bottom:853.380000px;}
.y25{bottom:855.645000px;}
.yea{bottom:856.395000px;}
.y1c3{bottom:858.255000px;}
.ya8{bottom:862.395000px;}
.y15e{bottom:863.145000px;}
.y7e{bottom:866.520000px;}
.y5e{bottom:869.505000px;}
.y10d{bottom:872.130000px;}
.y3b{bottom:874.005000px;}
.y6{bottom:875.130000px;}
.y177{bottom:875.895000px;}
.y1da{bottom:879.630000px;}
.ycd{bottom:880.005000px;}
.ya7{bottom:880.755000px;}
.y135{bottom:881.130000px;}
.y1c2{bottom:886.005000px;}
.y146{bottom:886.755000px;}
.y10c{bottom:890.505000px;}
.y15d{bottom:890.880000px;}
.y3a{bottom:896.880000px;}
.ya6{bottom:899.505000px;}
.y200{bottom:899.880000px;}
.y7d{bottom:903.255000px;}
.y134{bottom:908.505000px;}
.ya5{bottom:917.880000px;}
.y10b{bottom:918.255000px;}
.y1d9{bottom:919.005000px;}
.y39{bottom:919.380000px;}
.y24{bottom:921.630000px;}
.y133{bottom:926.880000px;}
.ycc{bottom:927.255000px;}
.y176{bottom:927.630000px;}
.y1c1{bottom:933.255000px;}
.y5d{bottom:933.630000px;}
.ya4{bottom:936.255000px;}
.y7c{bottom:940.005000px;}
.y5{bottom:940.380000px;}
.y38{bottom:941.880000px;}
.y132{bottom:945.255000px;}
.y10a{bottom:945.675000px;}
.y1ac{bottom:946.050000px;}
.ya3{bottom:954.675000px;}
.y1ff{bottom:955.050000px;}
.y175{bottom:955.425000px;}
.y1d8{bottom:957.300000px;}
.y109{bottom:964.050000px;}
.y37{bottom:964.800000px;}
.y145{bottom:966.675000px;}
.y1ef{bottom:970.050000px;}
.y5c{bottom:970.425000px;}
.y1c0{bottom:971.175000px;}
.ycb{bottom:973.050000px;}
.y7b{bottom:976.425000px;}
.ya2{bottom:982.425000px;}
.y1fe{bottom:982.800000px;}
.y1d7{bottom:986.925000px;}
.y23{bottom:987.300000px;}
.y4{bottom:991.050000px;}
.yca{bottom:991.425000px;}
.y15c{bottom:991.800000px;}
.y5a{bottom:998.175000px;}
.y108{bottom:1000.800000px;}
.y7a{bottom:1004.175000px;}
.y174{bottom:1007.175000px;}
.y1bf{bottom:1009.050000px;}
.y36{bottom:1009.800000px;}
.y1fd{bottom:1010.550000px;}
.y3{bottom:1016.175000px;}
.y15b{bottom:1019.550000px;}
.y79{bottom:1022.550000px;}
.y59{bottom:1023.300000px;}
.y1d6{bottom:1026.300000px;}
.ya1{bottom:1028.175000px;}
.y107{bottom:1028.550000px;}
.y35{bottom:1032.300000px;}
.y173{bottom:1034.925000px;}
.y2{bottom:1036.050000px;}
.yc9{bottom:1037.550000px;}
.ya0{bottom:1046.550000px;}
.y1ab{bottom:1046.925000px;}
.y78{bottom:1049.925000px;}
.y22{bottom:1053.300000px;}
.y144{bottom:1054.800000px;}
.y34{bottom:1055.175000px;}
.y106{bottom:1055.925000px;}
.y58{bottom:1063.800000px;}
.y1d5{bottom:1064.175000px;}
.y9f{bottom:1064.925000px;}
.y1{bottom:1065.675000px;}
.y131{bottom:1074.330000px;}
.y143{bottom:1074.705000px;}
.y33{bottom:1079.580000px;}
.y9e{bottom:1083.330000px;}
.y105{bottom:1083.705000px;}
.y77{bottom:1086.705000px;}
.y130{bottom:1092.705000px;}
.y9d{bottom:1102.080000px;}
.y32{bottom:1112.955000px;}
.y1d4{bottom:1114.080000px;}
.y172{bottom:1114.455000px;}
.y76{bottom:1118.955000px;}
.y21{bottom:1119.330000px;}
.y9c{bottom:1120.455000px;}
.y57{bottom:1148.955000px;}
.y75{bottom:1196.580000px;}
.h1f{height:25.125000px;}
.h24{height:28.843207px;}
.h1a{height:30.000000px;}
.ha{height:33.682485px;}
.h23{height:37.240596px;}
.h25{height:37.585416px;}
.h11{height:41.660156px;}
.he{height:48.278320px;}
.hf{height:48.410156px;}
.h1e{height:48.858398px;}
.h19{height:49.992188px;}
.hb{height:52.066406px;}
.h14{height:52.792969px;}
.h8{height:53.291016px;}
.h15{height:53.789062px;}
.h26{height:54.105469px;}
.h1c{height:54.287109px;}
.hd{height:56.478516px;}
.h18{height:59.006836px;}
.h17{height:59.167969px;}
.h29{height:59.715820px;}
.h6{height:61.728516px;}
.h16{height:63.351562px;}
.h2{height:63.949219px;}
.h10{height:64.546875px;}
.h28{height:73.125000px;}
.h2b{height:73.500000px;}
.h2c{height:73.537500px;}
.h20{height:75.304688px;}
.h1d{height:76.001953px;}
.h1{height:85.265625px;}
.hc{height:88.510254px;}
.h7{height:89.396484px;}
.h13{height:100.289062px;}
.h2a{height:100.912500px;}
.h21{height:101.287500px;}
.h5{height:106.582031px;}
.h1b{height:109.406250px;}
.h12{height:127.640625px;}
.h3{height:127.898438px;}
.h4{height:149.214844px;}
.h27{height:264.825000px;}
.h9{height:334.122941px;}
.h22{height:667.125000px;}
.h0{height:1263.000000px;}
.w5{width:8.250000px;}
.w4{width:50.662500px;}
.w6{width:51.037500px;}
.w8{width:515.248156px;}
.w3{width:516.356702px;}
.w7{width:691.050000px;}
.w2{width:892.874987px;}
.w0{width:892.875000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4c{left:5.250000px;}
.x15{left:8.879693px;}
.x57{left:11.466163px;}
.x18{left:12.723290px;}
.xe{left:27.651884px;}
.x10{left:30.155173px;}
.x58{left:42.197259px;}
.xf{left:43.295886px;}
.x17{left:48.481006px;}
.x52{left:50.226249px;}
.x59{left:90.412500px;}
.x3d{left:106.537487px;}
.x14{left:109.982055px;}
.x11{left:120.918707px;}
.x19{left:128.304195px;}
.x1a{left:129.917231px;}
.xd{left:132.712336px;}
.x51{left:137.230189px;}
.x41{left:138.449987px;}
.x50{left:140.302507px;}
.x40{left:144.824987px;}
.x3e{left:148.949987px;}
.x46{left:157.574987px;}
.x4f{left:159.268948px;}
.x2d{left:168.824987px;}
.x32{left:169.949987px;}
.x27{left:171.824987px;}
.x2f{left:172.949987px;}
.x5{left:174.824987px;}
.x29{left:176.324987px;}
.x35{left:177.824987px;}
.x28{left:181.949987px;}
.x31{left:183.074987px;}
.xb{left:188.325000px;}
.x48{left:191.699987px;}
.x2b{left:193.574987px;}
.x2a{left:201.449987px;}
.x4d{left:204.855000px;}
.x33{left:206.699987px;}
.x3a{left:210.449987px;}
.x5a{left:212.324987px;}
.x13{left:213.438094px;}
.x2e{left:214.574987px;}
.x26{left:217.199987px;}
.xc{left:219.631669px;}
.x44{left:223.619987px;}
.x16{left:225.689799px;}
.x39{left:230.369987px;}
.x38{left:231.494987px;}
.x47{left:234.119987px;}
.x23{left:237.869987px;}
.x2c{left:239.369987px;}
.x4a{left:261.119987px;}
.x4e{left:264.192011px;}
.x3{left:268.244987px;}
.x1c{left:279.119987px;}
.x1e{left:288.869987px;}
.x1d{left:295.244987px;}
.x22{left:301.244987px;}
.x9{left:305.744987px;}
.x36{left:310.649987px;}
.x21{left:318.899987px;}
.x12{left:323.543298px;}
.x20{left:326.774987px;}
.x25{left:332.024987px;}
.x1b{left:333.524987px;}
.x8{left:339.149987px;}
.x56{left:346.734945px;}
.x37{left:352.274987px;}
.x53{left:355.118959px;}
.x55{left:359.215383px;}
.x54{left:362.820235px;}
.x3b{left:369.524987px;}
.x1f{left:373.649987px;}
.x6{left:376.649987px;}
.x34{left:379.274987px;}
.x30{left:382.649987px;}
.x7{left:390.524987px;}
.x3c{left:397.694987px;}
.x24{left:402.194987px;}
.x2{left:414.569987px;}
.x4{left:446.819987px;}
.x4b{left:462.569987px;}
.x1{left:481.694987px;}
.xa{left:704.924987px;}
.x49{left:720.299987px;}
.x43{left:736.425000px;}
.x42{left:751.094987px;}
.x45{left:778.829987px;}
.x3f{left:787.079987px;}
@media print{
.v1{vertical-align:-66.666667pt;}
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-0.618667pt;}
.ls18{letter-spacing:-0.533333pt;}
.ls9{letter-spacing:-0.309333pt;}
.lsb{letter-spacing:-0.160000pt;}
.ls6{letter-spacing:-0.021333pt;}
.ls7{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:-0.010667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.005333pt;}
.ls3{letter-spacing:0.010667pt;}
.ls4{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.021333pt;}
.ls10{letter-spacing:0.037333pt;}
.ls19{letter-spacing:0.309333pt;}
.lsc{letter-spacing:0.336000pt;}
.ls14{letter-spacing:0.464000pt;}
.lse{letter-spacing:0.480000pt;}
.ls11{letter-spacing:0.576000pt;}
.lsa{letter-spacing:0.714667pt;}
.ls15{letter-spacing:1.024000pt;}
.ls13{letter-spacing:7.690667pt;}
.ls17{letter-spacing:13.024000pt;}
.lsd{letter-spacing:15.690667pt;}
.lsf{letter-spacing:20.576000pt;}
.ls16{letter-spacing:31.690667pt;}
.ls0{letter-spacing:278.773333pt;}
.ws12{word-spacing:-58.666667pt;}
.wsd{word-spacing:-21.333333pt;}
.wsa{word-spacing:-17.792000pt;}
.ws8{word-spacing:-17.024000pt;}
.ws14{word-spacing:-16.618667pt;}
.wsb{word-spacing:-16.309333pt;}
.ws3{word-spacing:-16.021333pt;}
.ws7{word-spacing:-16.000000pt;}
.wsc{word-spacing:-14.826667pt;}
.ws6{word-spacing:-13.354667pt;}
.ws4{word-spacing:-13.349333pt;}
.ws5{word-spacing:-13.344000pt;}
.ws9{word-spacing:-13.333333pt;}
.ws1{word-spacing:-13.092618pt;}
.wse{word-spacing:-10.265171pt;}
.wsf{word-spacing:-9.231269pt;}
.ws11{word-spacing:-0.058667pt;}
.ws10{word-spacing:-0.053333pt;}
.ws2{word-spacing:0.000000pt;}
.ws13{word-spacing:0.474667pt;}
.ws0{word-spacing:558.228003pt;}
._29{margin-left:-344.156679pt;}
._6{margin-left:-14.858667pt;}
._3{margin-left:-13.562667pt;}
._d{margin-left:-12.538667pt;}
._5{margin-left:-11.445333pt;}
._b{margin-left:-10.384000pt;}
._c{margin-left:-9.429333pt;}
._f{margin-left:-8.426667pt;}
._9{margin-left:-7.536000pt;}
._7{margin-left:-6.549333pt;}
._e{margin-left:-5.616000pt;}
._8{margin-left:-4.368000pt;}
._a{margin-left:-3.424000pt;}
._4{margin-left:-2.176000pt;}
._0{margin-left:-1.088000pt;}
._1{width:1.408000pt;}
._2{width:2.560000pt;}
._1c{width:3.610667pt;}
._15{width:4.576000pt;}
._14{width:5.808000pt;}
._16{width:6.954667pt;}
._19{width:8.597333pt;}
._1a{width:9.712000pt;}
._1b{width:10.640000pt;}
._21{width:11.706667pt;}
._1e{width:13.232000pt;}
._1d{width:14.464000pt;}
._1f{width:15.397333pt;}
._20{width:17.605333pt;}
._2b{width:18.805333pt;}
._2e{width:19.829333pt;}
._2c{width:20.922667pt;}
._17{width:22.176000pt;}
._18{width:23.104000pt;}
._26{width:24.480000pt;}
._2a{width:25.386667pt;}
._27{width:26.981333pt;}
._24{width:28.746667pt;}
._25{width:30.394667pt;}
._22{width:31.504000pt;}
._23{width:32.394667pt;}
._2d{width:35.696000pt;}
._28{width:58.357333pt;}
._13{width:75.376000pt;}
._11{width:109.797333pt;}
._12{width:250.037333pt;}
._10{width:752.090667pt;}
.fsd{font-size:36.925074pt;}
.fs8{font-size:43.642059pt;}
.fsc{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fsb{font-size:56.000000pt;}
.fs9{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.fsa{font-size:88.000000pt;}
.fs4{font-size:106.666667pt;}
.fs6{font-size:117.333333pt;}
.fs2{font-size:128.000000pt;}
.fs3{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.y15a{bottom:10.000000pt;}
.y19a{bottom:10.020888pt;}
.y9b{bottom:12.333333pt;}
.y1c6{bottom:19.000000pt;}
.y192{bottom:19.333333pt;}
.y205{bottom:19.373333pt;}
.y1aa{bottom:33.426608pt;}
.y17{bottom:36.663855pt;}
.y1c5{bottom:43.666667pt;}
.y191{bottom:44.000000pt;}
.y204{bottom:44.040000pt;}
.y159{bottom:47.366667pt;}
.y9a{bottom:47.700000pt;}
.y1be{bottom:51.660000pt;}
.y171{bottom:52.033333pt;}
.y5b{bottom:57.700000pt;}
.y99{bottom:60.033333pt;}
.y1e6{bottom:68.360000pt;}
.y190{bottom:68.666667pt;}
.y1e{bottom:78.645220pt;}
.y1bd{bottom:84.033333pt;}
.y1d{bottom:91.779435pt;}
.y1c{bottom:93.068784pt;}
.y1b8{bottom:95.033333pt;}
.y1ee{bottom:99.366667pt;}
.y98{bottom:104.033333pt;}
.y19c{bottom:105.893771pt;}
.y104{bottom:106.700000pt;}
.y18c{bottom:107.366667pt;}
.y194{bottom:109.366667pt;}
.y12f{bottom:109.700000pt;}
.yc8{bottom:113.033333pt;}
.y1bc{bottom:116.700000pt;}
.y1d3{bottom:121.700000pt;}
.y103{bottom:123.033333pt;}
.y1ed{bottom:124.033333pt;}
.y12e{bottom:126.033333pt;}
.y97{bottom:129.700000pt;}
.y18b{bottom:132.033333pt;}
.y31{bottom:132.700000pt;}
.y10{bottom:134.040000pt;}
.ye9{bottom:137.373333pt;}
.y1fc{bottom:137.693333pt;}
.y16{bottom:138.344323pt;}
.yc7{bottom:138.706667pt;}
.y1f{bottom:138.997709pt;}
.y102{bottom:139.373333pt;}
.y12d{bottom:142.706667pt;}
.y96{bottom:147.026667pt;}
.y1ec{bottom:148.373333pt;}
.y1bb{bottom:149.033333pt;}
.y12{bottom:151.477444pt;}
.y15{bottom:151.477450pt;}
.ye8{bottom:153.706667pt;}
.y101{bottom:155.733333pt;}
.yc6{bottom:156.066667pt;}
.y193{bottom:158.400000pt;}
.y12c{bottom:159.066667pt;}
.y1d2{bottom:159.400000pt;}
.yf{bottom:160.400000pt;}
.y1fb{bottom:162.400000pt;}
.y95{bottom:163.400000pt;}
.y20{bottom:163.946296pt;}
.y18a{bottom:164.400000pt;}
.y14{bottom:164.610579pt;}
.y18{bottom:165.263958pt;}
.y30{bottom:169.733333pt;}
.ye7{bottom:170.400000pt;}
.y170{bottom:171.733333pt;}
.y100{bottom:172.066667pt;}
.y158{bottom:175.066667pt;}
.y12b{bottom:175.400000pt;}
.y94{bottom:179.733333pt;}
.yc5{bottom:180.733333pt;}
.ye{bottom:187.066667pt;}
.yff{bottom:188.400000pt;}
.y1eb{bottom:189.066667pt;}
.y1ba{bottom:189.406667pt;}
.y12a{bottom:191.733333pt;}
.ye6{bottom:194.733333pt;}
.y189{bottom:196.733333pt;}
.y1d1{bottom:197.400000pt;}
.y1a1{bottom:197.819478pt;}
.y1a{bottom:198.064115pt;}
.y157{bottom:199.733333pt;}
.y93{bottom:204.400000pt;}
.yc4{bottom:205.066667pt;}
.y2f{bottom:206.733333pt;}
.y129{bottom:208.066667pt;}
.y19{bottom:211.164570pt;}
.y1fa{bottom:211.400000pt;}
.y1ea{bottom:213.733333pt;}
.y1b9{bottom:214.060000pt;}
.y16f{bottom:217.733333pt;}
.ye5{bottom:219.400000pt;}
.y56{bottom:219.733333pt;}
.yc3{bottom:221.400000pt;}
.yd{bottom:222.066667pt;}
.y11{bottom:222.333333pt;}
.y128{bottom:224.400000pt;}
.y188{bottom:229.066667pt;}
.y1a0{bottom:229.754378pt;}
.y1d0{bottom:235.400000pt;}
.y1f9{bottom:236.066667pt;}
.y92{bottom:237.066667pt;}
.yc2{bottom:237.733333pt;}
.y1e9{bottom:238.400000pt;}
.y1b{bottom:242.668838pt;}
.y2e{bottom:243.400000pt;}
.ye4{bottom:243.733333pt;}
.y55{bottom:244.066667pt;}
.y1a5{bottom:245.989027pt;}
.y127{bottom:249.066667pt;}
.yc1{bottom:254.066667pt;}
.y13{bottom:256.444461pt;}
.ye3{bottom:260.066667pt;}
.yfe{bottom:262.400000pt;}
.y1e8{bottom:262.733333pt;}
.y16e{bottom:263.733333pt;}
.y91{bottom:265.400000pt;}
.y54{bottom:267.400000pt;}
.y1a4{bottom:268.102057pt;}
.y74{bottom:269.106667pt;}
.y187{bottom:269.773333pt;}
.yc0{bottom:270.760000pt;}
.y20d{bottom:272.106667pt;}
.y1cf{bottom:273.093333pt;}
.ye2{bottom:276.426667pt;}
.y1f8{bottom:276.760000pt;}
.y126{bottom:281.773333pt;}
.yfd{bottom:286.773333pt;}
.y53{bottom:287.440000pt;}
.y18f{bottom:287.773333pt;}
.y19f{bottom:288.169632pt;}
.y16d{bottom:288.426667pt;}
.y156{bottom:289.440000pt;}
.y1a3{bottom:290.233514pt;}
.y2d{bottom:291.760000pt;}
.ye1{bottom:293.106667pt;}
.y186{bottom:294.426667pt;}
.ybf{bottom:295.106667pt;}
.y20c{bottom:298.773333pt;}
.y19e{bottom:299.207719pt;}
.y1f7{bottom:301.106667pt;}
.y1a2{bottom:301.280815pt;}
.y73{bottom:301.773333pt;}
.yfc{bottom:303.093333pt;}
.y52{bottom:307.773333pt;}
.ye0{bottom:309.426667pt;}
.y1e7{bottom:312.093333pt;}
.y16c{bottom:313.106667pt;}
.y155{bottom:314.106667pt;}
.y125{bottom:314.440000pt;}
.ybe{bottom:319.440000pt;}
.y1ce{bottom:322.773333pt;}
.y142{bottom:323.106667pt;}
.y1f6{bottom:325.773333pt;}
.y51{bottom:327.760000pt;}
.y20b{bottom:332.440000pt;}
.y1e5{bottom:333.440000pt;}
.ydf{bottom:334.106667pt;}
.y72{bottom:334.440000pt;}
.y185{bottom:334.773333pt;}
.yfb{bottom:335.773333pt;}
.ybd{bottom:336.093333pt;}
.y154{bottom:338.773333pt;}
.y1a7{bottom:339.435005pt;}
.y90{bottom:340.106667pt;}
.y124{bottom:346.773333pt;}
.y1b7{bottom:347.106667pt;}
.y50{bottom:347.773333pt;}
.y2c{bottom:350.440000pt;}
.y1a6{bottom:350.473093pt;}
.yfa{bottom:352.106667pt;}
.ybc{bottom:352.440000pt;}
.y19d{bottom:353.485993pt;}
.y20a{bottom:356.773333pt;}
.yde{bottom:358.440000pt;}
.y16b{bottom:359.106667pt;}
.y184{bottom:359.440000pt;}
.y153{bottom:363.440000pt;}
.y141{bottom:363.773333pt;}
.y8f{bottom:364.440000pt;}
.y71{bottom:366.773333pt;}
.ybb{bottom:368.773333pt;}
.y4f{bottom:371.440000pt;}
.y123{bottom:375.440000pt;}
.y18e{bottom:379.440000pt;}
.y8e{bottom:381.106667pt;}
.y209{bottom:381.440000pt;}
.y183{bottom:384.133333pt;}
.yba{bottom:385.133333pt;}
.y152{bottom:387.800000pt;}
.ydd{bottom:391.133333pt;}
.y70{bottom:391.466667pt;}
.y4e{bottom:394.800000pt;}
.y1b6{bottom:396.466667pt;}
.y122{bottom:397.133333pt;}
.y8d{bottom:397.466667pt;}
.y16a{bottom:399.466667pt;}
.yf9{bottom:401.466667pt;}
.y1cd{bottom:404.133333pt;}
.y6f{bottom:407.800000pt;}
.y2b{bottom:408.800000pt;}
.yb9{bottom:409.800000pt;}
.y8c{bottom:413.800000pt;}
.y4d{bottom:414.800000pt;}
.y121{bottom:415.133333pt;}
.y1f5{bottom:415.466667pt;}
.y18d{bottom:416.133333pt;}
.y195{bottom:416.266667pt;}
.yf8{bottom:417.800000pt;}
.ydc{bottom:419.800000pt;}
.y1b5{bottom:421.133333pt;}
.y208{bottom:422.133333pt;}
.y169{bottom:424.133333pt;}
.y151{bottom:428.466667pt;}
.y8b{bottom:430.133333pt;}
.y120{bottom:431.466667pt;}
.y6e{bottom:432.133333pt;}
.y182{bottom:433.133333pt;}
.yb8{bottom:434.133333pt;}
.y4c{bottom:435.133333pt;}
.y1f4{bottom:440.133333pt;}
.y19b{bottom:441.376072pt;}
.ydb{bottom:441.466667pt;}
.yf7{bottom:442.466667pt;}
.y207{bottom:446.466667pt;}
.y11f{bottom:447.800000pt;}
.y168{bottom:448.800000pt;}
.y140{bottom:449.466667pt;}
.yb7{bottom:450.466667pt;}
.y150{bottom:453.133333pt;}
.y8a{bottom:454.800000pt;}
.y4b{bottom:455.133333pt;}
.y6d{bottom:456.800000pt;}
.y181{bottom:457.800000pt;}
.y1b4{bottom:460.800000pt;}
.y11e{bottom:464.133333pt;}
.y1f3{bottom:464.800000pt;}
.y1e4{bottom:466.466667pt;}
.yb6{bottom:466.800000pt;}
.y2a{bottom:467.466667pt;}
.yf6{bottom:470.800000pt;}
.y206{bottom:471.133333pt;}
.y6c{bottom:473.133333pt;}
.y167{bottom:473.466667pt;}
.y4a{bottom:475.133333pt;}
.y1a8{bottom:476.406797pt;}
.y14f{bottom:477.466667pt;}
.y13f{bottom:479.133333pt;}
.y11d{bottom:480.466667pt;}
.y180{bottom:482.466667pt;}
.yb5{bottom:483.133333pt;}
.y89{bottom:487.466667pt;}
.y6b{bottom:489.466667pt;}
.yda{bottom:492.133333pt;}
.y203{bottom:492.466667pt;}
.y1cc{bottom:493.800000pt;}
.y49{bottom:495.466667pt;}
.y11c{bottom:496.800000pt;}
.y199{bottom:497.275968pt;}
.y1e3{bottom:498.840000pt;}
.yb4{bottom:499.840000pt;}
.y14e{bottom:502.173333pt;}
.y6a{bottom:505.840000pt;}
.y17f{bottom:507.173333pt;}
.yf5{bottom:511.173333pt;}
.y13e{bottom:513.173333pt;}
.y11b{bottom:513.506667pt;}
.y166{bottom:513.840000pt;}
.y48{bottom:515.506667pt;}
.yd9{bottom:516.506667pt;}
.y1cb{bottom:518.506667pt;}
.y88{bottom:519.840000pt;}
.yb3{bottom:524.173333pt;}
.y29{bottom:526.173333pt;}
.y14d{bottom:526.840000pt;}
.yf4{bottom:528.506667pt;}
.y13d{bottom:529.506667pt;}
.y11a{bottom:529.840000pt;}
.y69{bottom:530.506667pt;}
.y1e2{bottom:531.506667pt;}
.yd8{bottom:532.840000pt;}
.y47{bottom:535.506667pt;}
.y1b3{bottom:537.506667pt;}
.y165{bottom:538.506667pt;}
.yc{bottom:541.840000pt;}
.y1ca{bottom:542.840000pt;}
.yf3{bottom:544.840000pt;}
.y119{bottom:546.173333pt;}
.y17e{bottom:546.506667pt;}
.y87{bottom:548.506667pt;}
.yd7{bottom:549.173333pt;}
.yb2{bottom:552.840000pt;}
.y196{bottom:553.258788pt;}
.y13c{bottom:554.173333pt;}
.y1f2{bottom:554.506667pt;}
.y68{bottom:554.840000pt;}
.y46{bottom:555.840000pt;}
.y1a9{bottom:556.382254pt;}
.yf2{bottom:561.173333pt;}
.y1b2{bottom:562.173333pt;}
.y118{bottom:562.506667pt;}
.y164{bottom:563.173333pt;}
.y1e1{bottom:563.840000pt;}
.yd6{bottom:565.506667pt;}
.y14c{bottom:566.506667pt;}
.y1c9{bottom:567.506667pt;}
.y198{bottom:569.382873pt;}
.y67{bottom:571.173333pt;}
.y45{bottom:575.840000pt;}
.y202{bottom:576.173333pt;}
.yf1{bottom:577.506667pt;}
.y13b{bottom:578.506667pt;}
.y1f1{bottom:579.173333pt;}
.y197{bottom:580.448601pt;}
.yd5{bottom:581.840000pt;}
.yb{bottom:584.506667pt;}
.y28{bottom:584.840000pt;}
.y117{bottom:587.173333pt;}
.y66{bottom:587.506667pt;}
.y163{bottom:587.840000pt;}
.y86{bottom:590.506667pt;}
.yb1{bottom:594.840000pt;}
.y44{bottom:595.840000pt;}
.y17d{bottom:598.840000pt;}
.yf0{bottom:602.173333pt;}
.y1b1{bottom:602.840000pt;}
.y65{bottom:603.840000pt;}
.y1e0{bottom:604.506667pt;}
.yd4{bottom:606.506667pt;}
.y1c8{bottom:608.173333pt;}
.y14b{bottom:609.506667pt;}
.y13a{bottom:611.173333pt;}
.y116{bottom:611.506667pt;}
.y85{bottom:614.866667pt;}
.y43{bottom:616.200000pt;}
.yb0{bottom:619.200000pt;}
.ya{bottom:619.866667pt;}
.y64{bottom:620.533333pt;}
.y17c{bottom:623.533333pt;}
.yef{bottom:626.533333pt;}
.y1b0{bottom:627.533333pt;}
.y115{bottom:627.866667pt;}
.y162{bottom:628.200000pt;}
.y1df{bottom:629.200000pt;}
.yd3{bottom:630.866667pt;}
.y84{bottom:631.533333pt;}
.y14a{bottom:631.866667pt;}
.y1c7{bottom:632.866667pt;}
.yaf{bottom:635.866667pt;}
.y42{bottom:636.200000pt;}
.yee{bottom:642.866667pt;}
.y27{bottom:643.200000pt;}
.y114{bottom:644.200000pt;}
.y63{bottom:644.866667pt;}
.yd2{bottom:647.533333pt;}
.y1af{bottom:651.866667pt;}
.yae{bottom:652.200000pt;}
.y161{bottom:652.866667pt;}
.y1de{bottom:653.866667pt;}
.y149{bottom:654.200000pt;}
.y83{bottom:655.866667pt;}
.y41{bottom:656.200000pt;}
.y9{bottom:659.200000pt;}
.y113{bottom:660.533333pt;}
.yd1{bottom:663.866667pt;}
.y17b{bottom:664.200000pt;}
.yed{bottom:667.533333pt;}
.yad{bottom:668.533333pt;}
.y1f0{bottom:668.866667pt;}
.y62{bottom:673.533333pt;}
.y40{bottom:676.533333pt;}
.y112{bottom:677.200000pt;}
.y160{bottom:677.533333pt;}
.y1dd{bottom:678.200000pt;}
.y82{bottom:680.200000pt;}
.yac{bottom:684.866667pt;}
.y8{bottom:687.533333pt;}
.yd0{bottom:688.200000pt;}
.y17a{bottom:688.533333pt;}
.y139{bottom:693.200000pt;}
.y111{bottom:693.533333pt;}
.y3f{bottom:696.533333pt;}
.y81{bottom:696.866667pt;}
.y148{bottom:698.866667pt;}
.yec{bottom:700.200000pt;}
.yab{bottom:701.200000pt;}
.y26{bottom:701.866667pt;}
.y138{bottom:709.533333pt;}
.y110{bottom:709.866667pt;}
.y80{bottom:713.200000pt;}
.y61{bottom:715.533333pt;}
.y3e{bottom:716.533333pt;}
.yaa{bottom:717.533333pt;}
.y1ae{bottom:717.866667pt;}
.y1dc{bottom:720.533333pt;}
.ycf{bottom:720.866667pt;}
.y7{bottom:725.200000pt;}
.y137{bottom:725.866667pt;}
.y10f{bottom:726.240000pt;}
.y15f{bottom:726.560000pt;}
.y179{bottom:729.240000pt;}
.yeb{bottom:732.893333pt;}
.y201{bottom:734.560000pt;}
.y147{bottom:734.893333pt;}
.y3d{bottom:736.906667pt;}
.y7f{bottom:737.560000pt;}
.y1c4{bottom:738.560000pt;}
.y60{bottom:739.893333pt;}
.ya9{bottom:742.226667pt;}
.y1ad{bottom:742.573333pt;}
.y10e{bottom:750.893333pt;}
.yce{bottom:753.560000pt;}
.y178{bottom:753.893333pt;}
.y1db{bottom:755.893333pt;}
.y5f{bottom:756.560000pt;}
.y3c{bottom:756.893333pt;}
.y136{bottom:758.560000pt;}
.y25{bottom:760.573333pt;}
.yea{bottom:761.240000pt;}
.y1c3{bottom:762.893333pt;}
.ya8{bottom:766.573333pt;}
.y15e{bottom:767.240000pt;}
.y7e{bottom:770.240000pt;}
.y5e{bottom:772.893333pt;}
.y10d{bottom:775.226667pt;}
.y3b{bottom:776.893333pt;}
.y6{bottom:777.893333pt;}
.y177{bottom:778.573333pt;}
.y1da{bottom:781.893333pt;}
.ycd{bottom:782.226667pt;}
.ya7{bottom:782.893333pt;}
.y135{bottom:783.226667pt;}
.y1c2{bottom:787.560000pt;}
.y146{bottom:788.226667pt;}
.y10c{bottom:791.560000pt;}
.y15d{bottom:791.893333pt;}
.y3a{bottom:797.226667pt;}
.ya6{bottom:799.560000pt;}
.y200{bottom:799.893333pt;}
.y7d{bottom:802.893333pt;}
.y134{bottom:807.560000pt;}
.ya5{bottom:815.893333pt;}
.y10b{bottom:816.226667pt;}
.y1d9{bottom:816.893333pt;}
.y39{bottom:817.226667pt;}
.y24{bottom:819.226667pt;}
.y133{bottom:823.893333pt;}
.ycc{bottom:824.226667pt;}
.y176{bottom:824.560000pt;}
.y1c1{bottom:829.560000pt;}
.y5d{bottom:829.893333pt;}
.ya4{bottom:832.226667pt;}
.y7c{bottom:835.560000pt;}
.y5{bottom:835.893333pt;}
.y38{bottom:837.226667pt;}
.y132{bottom:840.226667pt;}
.y10a{bottom:840.600000pt;}
.y1ac{bottom:840.933333pt;}
.ya3{bottom:848.600000pt;}
.y1ff{bottom:848.933333pt;}
.y175{bottom:849.266667pt;}
.y1d8{bottom:850.933333pt;}
.y109{bottom:856.933333pt;}
.y37{bottom:857.600000pt;}
.y145{bottom:859.266667pt;}
.y1ef{bottom:862.266667pt;}
.y5c{bottom:862.600000pt;}
.y1c0{bottom:863.266667pt;}
.ycb{bottom:864.933333pt;}
.y7b{bottom:867.933333pt;}
.ya2{bottom:873.266667pt;}
.y1fe{bottom:873.600000pt;}
.y1d7{bottom:877.266667pt;}
.y23{bottom:877.600000pt;}
.y4{bottom:880.933333pt;}
.yca{bottom:881.266667pt;}
.y15c{bottom:881.600000pt;}
.y5a{bottom:887.266667pt;}
.y108{bottom:889.600000pt;}
.y7a{bottom:892.600000pt;}
.y174{bottom:895.266667pt;}
.y1bf{bottom:896.933333pt;}
.y36{bottom:897.600000pt;}
.y1fd{bottom:898.266667pt;}
.y3{bottom:903.266667pt;}
.y15b{bottom:906.266667pt;}
.y79{bottom:908.933333pt;}
.y59{bottom:909.600000pt;}
.y1d6{bottom:912.266667pt;}
.ya1{bottom:913.933333pt;}
.y107{bottom:914.266667pt;}
.y35{bottom:917.600000pt;}
.y173{bottom:919.933333pt;}
.y2{bottom:920.933333pt;}
.yc9{bottom:922.266667pt;}
.ya0{bottom:930.266667pt;}
.y1ab{bottom:930.600000pt;}
.y78{bottom:933.266667pt;}
.y22{bottom:936.266667pt;}
.y144{bottom:937.600000pt;}
.y34{bottom:937.933333pt;}
.y106{bottom:938.600000pt;}
.y58{bottom:945.600000pt;}
.y1d5{bottom:945.933333pt;}
.y9f{bottom:946.600000pt;}
.y1{bottom:947.266667pt;}
.y131{bottom:954.960000pt;}
.y143{bottom:955.293333pt;}
.y33{bottom:959.626667pt;}
.y9e{bottom:962.960000pt;}
.y105{bottom:963.293333pt;}
.y77{bottom:965.960000pt;}
.y130{bottom:971.293333pt;}
.y9d{bottom:979.626667pt;}
.y32{bottom:989.293333pt;}
.y1d4{bottom:990.293333pt;}
.y172{bottom:990.626667pt;}
.y76{bottom:994.626667pt;}
.y21{bottom:994.960000pt;}
.y9c{bottom:995.960000pt;}
.y57{bottom:1021.293333pt;}
.y75{bottom:1063.626667pt;}
.h1f{height:22.333333pt;}
.h24{height:25.638406pt;}
.h1a{height:26.666667pt;}
.ha{height:29.939987pt;}
.h23{height:33.102752pt;}
.h25{height:33.409259pt;}
.h11{height:37.031250pt;}
.he{height:42.914062pt;}
.hf{height:43.031250pt;}
.h1e{height:43.429688pt;}
.h19{height:44.437500pt;}
.hb{height:46.281250pt;}
.h14{height:46.927083pt;}
.h8{height:47.369792pt;}
.h15{height:47.812500pt;}
.h26{height:48.093750pt;}
.h1c{height:48.255208pt;}
.hd{height:50.203125pt;}
.h18{height:52.450521pt;}
.h17{height:52.593750pt;}
.h29{height:53.080729pt;}
.h6{height:54.869792pt;}
.h16{height:56.312500pt;}
.h2{height:56.843750pt;}
.h10{height:57.375000pt;}
.h28{height:65.000000pt;}
.h2b{height:65.333333pt;}
.h2c{height:65.366667pt;}
.h20{height:66.937500pt;}
.h1d{height:67.557292pt;}
.h1{height:75.791667pt;}
.hc{height:78.675781pt;}
.h7{height:79.463542pt;}
.h13{height:89.145833pt;}
.h2a{height:89.700000pt;}
.h21{height:90.033333pt;}
.h5{height:94.739583pt;}
.h1b{height:97.250000pt;}
.h12{height:113.458333pt;}
.h3{height:113.687500pt;}
.h4{height:132.635417pt;}
.h27{height:235.400000pt;}
.h9{height:296.998170pt;}
.h22{height:593.000000pt;}
.h0{height:1122.666667pt;}
.w5{width:7.333333pt;}
.w4{width:45.033333pt;}
.w6{width:45.366667pt;}
.w8{width:457.998361pt;}
.w3{width:458.983735pt;}
.w7{width:614.266667pt;}
.w2{width:793.666655pt;}
.w0{width:793.666667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4c{left:4.666667pt;}
.x15{left:7.893061pt;}
.x57{left:10.192145pt;}
.x18{left:11.309591pt;}
.xe{left:24.579453pt;}
.x10{left:26.804598pt;}
.x58{left:37.508675pt;}
.xf{left:38.485232pt;}
.x17{left:43.094227pt;}
.x52{left:44.645555pt;}
.x59{left:80.366667pt;}
.x3d{left:94.699988pt;}
.x14{left:97.761827pt;}
.x11{left:107.483295pt;}
.x19{left:114.048174pt;}
.x1a{left:115.481983pt;}
.xd{left:117.966521pt;}
.x51{left:121.982391pt;}
.x41{left:123.066655pt;}
.x50{left:124.713340pt;}
.x40{left:128.733322pt;}
.x3e{left:132.399988pt;}
.x46{left:140.066655pt;}
.x4f{left:141.572398pt;}
.x2d{left:150.066655pt;}
.x32{left:151.066655pt;}
.x27{left:152.733322pt;}
.x2f{left:153.733322pt;}
.x5{left:155.399988pt;}
.x29{left:156.733322pt;}
.x35{left:158.066655pt;}
.x28{left:161.733322pt;}
.x31{left:162.733322pt;}
.xb{left:167.400000pt;}
.x48{left:170.399988pt;}
.x2b{left:172.066655pt;}
.x2a{left:179.066655pt;}
.x4d{left:182.093333pt;}
.x33{left:183.733322pt;}
.x3a{left:187.066655pt;}
.x5a{left:188.733322pt;}
.x13{left:189.722750pt;}
.x2e{left:190.733322pt;}
.x26{left:193.066655pt;}
.xc{left:195.228150pt;}
.x44{left:198.773322pt;}
.x16{left:200.613155pt;}
.x39{left:204.773322pt;}
.x38{left:205.773322pt;}
.x47{left:208.106655pt;}
.x23{left:211.439988pt;}
.x2c{left:212.773322pt;}
.x4a{left:232.106655pt;}
.x4e{left:234.837343pt;}
.x3{left:238.439988pt;}
.x1c{left:248.106655pt;}
.x1e{left:256.773322pt;}
.x1d{left:262.439988pt;}
.x22{left:267.773322pt;}
.x9{left:271.773322pt;}
.x36{left:276.133322pt;}
.x21{left:283.466655pt;}
.x12{left:287.594043pt;}
.x20{left:290.466655pt;}
.x25{left:295.133322pt;}
.x1b{left:296.466655pt;}
.x8{left:301.466655pt;}
.x56{left:308.208840pt;}
.x37{left:313.133322pt;}
.x53{left:315.661297pt;}
.x55{left:319.302562pt;}
.x54{left:322.506876pt;}
.x3b{left:328.466655pt;}
.x1f{left:332.133322pt;}
.x6{left:334.799988pt;}
.x34{left:337.133322pt;}
.x30{left:340.133322pt;}
.x7{left:347.133322pt;}
.x3c{left:353.506655pt;}
.x24{left:357.506655pt;}
.x2{left:368.506655pt;}
.x4{left:397.173322pt;}
.x4b{left:411.173322pt;}
.x1{left:428.173322pt;}
.xa{left:626.599988pt;}
.x49{left:640.266655pt;}
.x43{left:654.600000pt;}
.x42{left:667.639988pt;}
.x45{left:692.293322pt;}
.x3f{left:699.626655pt;}
}




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