
    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_3e45c4862ab782d4376036fa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.989125;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_f29d561b99399b341037bd3d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.708000;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_abfb55894fc65776e6da1cc9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.737000;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_01fb8466ac5639536a352695.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.926270;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_89a0102c7e522776577c8307.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.829590;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_32f695988997ad2a9b6dc25f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.630000;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_0d94c29e32f105b432fea4e6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.995769;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_138f85ba20eebb2b3d280725.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.743652;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_d7787cd6a35eb9f6c429e04a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.775391;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_ae30fa0201dc7e862e1c8721.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.829590;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_43a205748d88a788a36663c1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.700000;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_004bcc3d2dd10b0925c5d931.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.977000;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_ae30fa0201dc7e862e1c8721.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.829590;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_6c3bbbcbeb7186dcfda1be94.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.926270;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_7a63aa858ac8a0eb03c6018d.woff2')format("woff");}.fff{font-family:fff;line-height:0.829590;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_1e81dd8cdeaf7c2c6406e01e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.995769;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_ac848ae4762f337e4d142fad.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.977000;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_a4fe0a086a0d5f331c7c3ae2.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.989125;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_7a63aa858ac8a0eb03c6018d.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.829590;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_7a63aa858ac8a0eb03c6018d.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.829590;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_5c99133d3920b809c62776ca.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.829590;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_69b0e453295466140d265f1a.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.940430;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_f28145935e0a0f422092d5ee.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.700223;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_f85eacc5f59a33716d8a0ae1.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.740239;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:ff19;src:url('chunks/assets/font_8b7b1ebd7c67f3faa7227092.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.881348;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:ff1a;src:url('chunks/assets/font_f68467ee9f4e51025e1b71e3.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.829590;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:ff1b;src:url('chunks/assets/font_6c3bbbcbeb7186dcfda1be94.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.926270;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:ff1c;src:url('chunks/assets/font_147b2f67352ca439e63b54cb.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.829590;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:ff1d;src:url('chunks/assets/font_8a28695192690e3c70e1a2cc.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.989125;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:ff1e;src:url('chunks/assets/font_356359dd7c0d4fa87f393a2b.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.995769;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:ff1f;src:url('chunks/assets/font_87e5d4ab2dc2831323a2f811.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.977000;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:ff20;src:url('chunks/assets/font_0e5f3ae2e52c4accc808cdaf.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.829590;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:ff21;src:url('chunks/assets/font_0e5f3ae2e52c4accc808cdaf.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.829590;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:ff22;src:url('chunks/assets/font_0e5f3ae2e52c4accc808cdaf.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.829590;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:ff23;src:url('chunks/assets/font_32f695988997ad2a9b6dc25f.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.630000;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.250002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);}
.v14{vertical-align:-68.487150px;}
.v11{vertical-align:-57.072750px;}
.vd{vertical-align:-34.243800px;}
.v1{vertical-align:-24.000000px;}
.vf{vertical-align:-22.828950px;}
.v3{vertical-align:-18.910200px;}
.v10{vertical-align:-11.414400px;}
.v2{vertical-align:-3.000000px;}
.v0{vertical-align:0.000000px;}
.v13{vertical-align:11.414400px;}
.v8{vertical-align:15.180000px;}
.v6{vertical-align:16.698000px;}
.v5{vertical-align:18.216000px;}
.v12{vertical-align:22.829400px;}
.v4{vertical-align:24.000000px;}
.v7{vertical-align:30.216000px;}
.vc{vertical-align:45.658200px;}
.ve{vertical-align:57.072750px;}
.v9{vertical-align:68.487300px;}
.va{vertical-align:126.451200px;}
.vb{vertical-align:139.114200px;}
.ls1{letter-spacing:-2.579125px;}
.ls36{letter-spacing:-2.520000px;}
.ls14{letter-spacing:-2.160000px;}
.ls37{letter-spacing:-2.100000px;}
.ls39{letter-spacing:-2.016000px;}
.ls23{letter-spacing:-1.800000px;}
.lsa{letter-spacing:-1.764000px;}
.ls20{letter-spacing:-1.440000px;}
.ls5{letter-spacing:-1.092000px;}
.ls25{letter-spacing:-1.080000px;}
.lse{letter-spacing:-1.008000px;}
.ls35{letter-spacing:-0.936000px;}
.ls1f{letter-spacing:-0.864000px;}
.ls1e{letter-spacing:-0.859824px;}
.ls17{letter-spacing:-0.792000px;}
.ls1d{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.672000px;}
.ls1c{letter-spacing:-0.648000px;}
.ls3a{letter-spacing:-0.600000px;}
.ls9{letter-spacing:-0.588000px;}
.ls1b{letter-spacing:-0.576000px;}
.ls16{letter-spacing:-0.552744px;}
.ls34{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.504000px;}
.ls21{letter-spacing:-0.432000px;}
.ls27{letter-spacing:-0.420000px;}
.ls11{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.336000px;}
.ls15{letter-spacing:-0.307080px;}
.ls2{letter-spacing:-0.300000px;}
.ls13{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.252000px;}
.ls26{letter-spacing:-0.240000px;}
.ls1a{letter-spacing:-0.216000px;}
.ls24{letter-spacing:-0.180000px;}
.ls12{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.084000px;}
.ls0{letter-spacing:0.000000px;}
.ls38{letter-spacing:0.000024px;}
.ls22{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.336000px;}
.lsd{letter-spacing:0.672000px;}
.ls6{letter-spacing:1.176000px;}
.lsb{letter-spacing:1.428000px;}
.ls28{letter-spacing:6.940046px;}
.ls29{letter-spacing:23.828337px;}
.ls18{letter-spacing:26.933400px;}
.ls19{letter-spacing:28.373400px;}
.ls2c{letter-spacing:44.933812px;}
.ls2e{letter-spacing:45.647189px;}
.ls32{letter-spacing:47.073942px;}
.ls2d{letter-spacing:56.256446px;}
.ls30{letter-spacing:59.110552px;}
.ls2b{letter-spacing:64.155877px;}
.ls3{letter-spacing:65.940000px;}
.ls2a{letter-spacing:92.594830px;}
.ls2f{letter-spacing:92.640450px;}
.ls33{letter-spacing:93.353827px;}
.ls31{letter-spacing:126.884325px;}
.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;}
}
.ws46{word-spacing:-91.316400px;}
.ws1{word-spacing:-85.824000px;}
.ws5f{word-spacing:-69.600000px;}
.ws21{word-spacing:-53.640000px;}
.ws43{word-spacing:-43.518000px;}
.ws47{word-spacing:-35.059354px;}
.wsc{word-spacing:-17.556000px;}
.ws2d{word-spacing:-16.632000px;}
.ws53{word-spacing:-16.488000px;}
.ws29{word-spacing:-16.200000px;}
.ws51{word-spacing:-16.128000px;}
.ws54{word-spacing:-16.056000px;}
.ws0{word-spacing:-15.840000px;}
.ws4c{word-spacing:-15.696000px;}
.ws3e{word-spacing:-15.552000px;}
.ws4{word-spacing:-15.480000px;}
.ws35{word-spacing:-15.264000px;}
.ws57{word-spacing:-15.192000px;}
.ws2c{word-spacing:-15.120000px;}
.ws4d{word-spacing:-15.048000px;}
.ws31{word-spacing:-14.976000px;}
.ws3b{word-spacing:-14.904000px;}
.ws4a{word-spacing:-14.832000px;}
.ws36{word-spacing:-14.688000px;}
.ws27{word-spacing:-14.616000px;}
.ws37{word-spacing:-14.400000px;}
.ws38{word-spacing:-13.500000px;}
.ws52{word-spacing:-13.464000px;}
.ws18{word-spacing:-13.204440px;}
.ws3d{word-spacing:-12.900000px;}
.ws1b{word-spacing:-12.897360px;}
.ws5e{word-spacing:-12.774528px;}
.ws59{word-spacing:-12.660000px;}
.ws1c{word-spacing:-12.651696px;}
.ws2{word-spacing:-12.384000px;}
.ws25{word-spacing:-12.344616px;}
.ws41{word-spacing:-11.271162px;}
.ws5d{word-spacing:-10.645440px;}
.ws42{word-spacing:-8.964708px;}
.ws45{word-spacing:-6.756734px;}
.ws2b{word-spacing:-2.700000px;}
.ws8{word-spacing:-2.100000px;}
.wsa{word-spacing:-1.680000px;}
.ws1e{word-spacing:-1.440000px;}
.ws11{word-spacing:-1.428000px;}
.ws3c{word-spacing:-1.224000px;}
.ws4b{word-spacing:-1.200000px;}
.wsd{word-spacing:-1.176000px;}
.ws50{word-spacing:-1.008000px;}
.ws4f{word-spacing:-0.936000px;}
.ws48{word-spacing:-0.816079px;}
.ws14{word-spacing:-0.672000px;}
.ws4e{word-spacing:-0.360000px;}
.wse{word-spacing:-0.336000px;}
.ws5c{word-spacing:-0.144000px;}
.ws32{word-spacing:-0.072000px;}
.ws5{word-spacing:0.000000px;}
.ws13{word-spacing:0.084000px;}
.ws24{word-spacing:0.144000px;}
.ws34{word-spacing:0.180000px;}
.ws22{word-spacing:0.216000px;}
.ws3a{word-spacing:0.240000px;}
.ws9{word-spacing:0.252000px;}
.ws1d{word-spacing:0.288000px;}
.ws7{word-spacing:0.300000px;}
.ws2e{word-spacing:0.307080px;}
.ws16{word-spacing:0.336000px;}
.ws19{word-spacing:0.360000px;}
.ws39{word-spacing:0.420000px;}
.ws2a{word-spacing:0.432000px;}
.ws12{word-spacing:0.504000px;}
.ws49{word-spacing:0.540000px;}
.ws30{word-spacing:0.552744px;}
.wsf{word-spacing:0.588000px;}
.ws5a{word-spacing:0.600000px;}
.ws23{word-spacing:0.648000px;}
.ws17{word-spacing:0.672000px;}
.ws26{word-spacing:0.720000px;}
.ws20{word-spacing:0.792000px;}
.ws28{word-spacing:0.864000px;}
.ws56{word-spacing:0.936000px;}
.ws15{word-spacing:1.008000px;}
.ws55{word-spacing:1.080000px;}
.wsb{word-spacing:1.092000px;}
.ws10{word-spacing:1.764000px;}
.ws33{word-spacing:1.800000px;}
.ws1f{word-spacing:2.160000px;}
.ws3f{word-spacing:2.219418px;}
.ws6{word-spacing:2.579125px;}
.ws40{word-spacing:26.110800px;}
.ws58{word-spacing:151.056000px;}
.ws5b{word-spacing:157.896000px;}
.ws2f{word-spacing:160.416000px;}
.ws1a{word-spacing:160.560000px;}
.ws44{word-spacing:575.204112px;}
.ws3{word-spacing:2865.549600px;}
._e{margin-left:-160.365000px;}
._1d{margin-left:-157.276200px;}
._1c{margin-left:-150.436200px;}
._17{margin-left:-14.083200px;}
._16{margin-left:-11.534400px;}
._a{margin-left:-10.426800px;}
._2{margin-left:-8.899200px;}
._d{margin-left:-7.754400px;}
._5{margin-left:-6.698400px;}
._6{margin-left:-5.464800px;}
._3{margin-left:-3.571200px;}
._0{margin-left:-1.900800px;}
._4{width:1.000800px;}
._1{width:2.437200px;}
._12{width:4.082400px;}
._1a{width:57.260502px;}
._8{width:64.999200px;}
._9{width:66.001800px;}
._18{width:74.110770px;}
._7{width:141.474600px;}
._f{width:151.055400px;}
._b{width:152.758200px;}
._14{width:155.448000px;}
._c{width:157.894800px;}
._10{width:159.047400px;}
._13{width:160.416000px;}
._1b{width:162.072000px;}
._11{width:164.878800px;}
._15{width:167.040000px;}
._19{width:818.029800px;}
.fc8{color:rgb(70,120,134);}
.fc5{color:rgb(48,88,159);}
.fc4{color:rgb(210,32,39);}
.fc7{color:rgb(0,0,0);}
.fc6{color:rgb(255,255,255);}
.fc3{color:rgb(35,31,32);}
.fc9{color:rgb(0,150,255);}
.fc2{color:rgb(42,40,40);}
.fc1{color:transparent;}
.fc0{color:rgb(42,62,146);}
.fs10{font-size:43.518000px;}
.fs8{font-size:48.000000px;}
.fs12{font-size:50.652000px;}
.fsf{font-size:51.180000px;}
.fs11{font-size:52.792200px;}
.fs9{font-size:54.000000px;}
.fse{font-size:56.298000px;}
.fs6{font-size:60.000000px;}
.fsb{font-size:61.416000px;}
.fsd{font-size:66.000000px;}
.fs3{font-size:66.131400px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:73.423800px;}
.fsa{font-size:84.000000px;}
.fs2{font-size:88.108800px;}
.fs13{font-size:91.316400px;}
.fsc{font-size:108.000000px;}
.fs7{font-size:180.000000px;}
.fs4{font-size:216.000000px;}
.fs5{font-size:288.000000px;}
.fs14{font-size:348.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:4.117500px;}
.y17{bottom:21.709650px;}
.y4{bottom:22.315350px;}
.yb3{bottom:22.783500px;}
.yb2{bottom:23.095650px;}
.y5{bottom:28.912500px;}
.y3{bottom:38.136750px;}
.yb6{bottom:47.039400px;}
.yb5{bottom:52.746750px;}
.yc8{bottom:76.535550px;}
.yb4{bottom:84.423600px;}
.yb0{bottom:88.582800px;}
.y77{bottom:89.504100px;}
.y8d{bottom:91.417500px;}
.y80{bottom:97.795350px;}
.y71{bottom:97.795500px;}
.yc7{bottom:98.135550px;}
.y9e{bottom:100.984500px;}
.yef{bottom:102.047250px;}
.y63{bottom:102.047400px;}
.y59{bottom:102.047550px;}
.y16{bottom:106.962900px;}
.y30{bottom:109.513950px;}
.ya6{bottom:109.913400px;}
.yaf{bottom:110.182950px;}
.y8c{bottom:113.017500px;}
.ya2{bottom:113.017650px;}
.y7f{bottom:119.395350px;}
.y70{bottom:119.395500px;}
.ya0{bottom:119.395650px;}
.yc6{bottom:119.735700px;}
.y7e{bottom:123.647400px;}
.y58{bottom:123.647550px;}
.y98{bottom:123.647700px;}
.y15{bottom:127.890450px;}
.yae{bottom:131.783100px;}
.y8b{bottom:134.617650px;}
.y2f{bottom:136.513950px;}
.y7a{bottom:136.913400px;}
.y6f{bottom:140.995500px;}
.y9f{bottom:140.995800px;}
.yc5{bottom:141.335850px;}
.y76{bottom:142.913400px;}
.y62{bottom:145.247550px;}
.y57{bottom:145.247700px;}
.y14{bottom:145.890450px;}
.yad{bottom:153.383250px;}
.y8a{bottom:156.217650px;}
.yc4{bottom:162.936000px;}
.y2e{bottom:163.513950px;}
.y13{bottom:163.890450px;}
.y79{bottom:163.913400px;}
.ybd{bottom:165.061500px;}
.y7d{bottom:166.847550px;}
.y61{bottom:166.847700px;}
.y56{bottom:166.847850px;}
.y75{bottom:169.913400px;}
.y12{bottom:174.116550px;}
.y89{bottom:177.817650px;}
.yd3{bottom:182.409450px;}
.yc3{bottom:184.536150px;}
.y7c{bottom:188.447700px;}
.y55{bottom:188.447850px;}
.yf3{bottom:188.448000px;}
.y2d{bottom:190.513950px;}
.yee{bottom:190.913250px;}
.y6e{bottom:190.913400px;}
.y11{bottom:195.866550px;}
.y88{bottom:199.417800px;}
.ydc{bottom:200.810400px;}
.y106{bottom:205.579500px;}
.yc2{bottom:206.136300px;}
.yd2{bottom:209.409450px;}
.y7b{bottom:210.047700px;}
.y54{bottom:210.047850px;}
.yf2{bottom:210.048150px;}
.y119{bottom:211.313400px;}
.y2c{bottom:217.513950px;}
.yed{bottom:217.913250px;}
.y6d{bottom:217.913400px;}
.y97{bottom:217.913550px;}
.y101{bottom:218.735550px;}
.y87{bottom:221.017950px;}
.y74{bottom:223.913400px;}
.y10{bottom:225.116550px;}
.yc1{bottom:227.736300px;}
.y118{bottom:227.813400px;}
.y53{bottom:231.647850px;}
.yb7{bottom:231.648000px;}
.yf1{bottom:231.648300px;}
.y105{bottom:232.579500px;}
.yd1{bottom:236.409450px;}
.y86{bottom:242.617950px;}
.y2b{bottom:244.513950px;}
.yec{bottom:244.913250px;}
.y60{bottom:244.913400px;}
.y96{bottom:244.913550px;}
.y100{bottom:245.735550px;}
.ydb{bottom:246.410400px;}
.y73{bottom:250.913400px;}
.y52{bottom:253.248000px;}
.y117{bottom:255.413400px;}
.y104{bottom:259.579500px;}
.y41{bottom:262.488900px;}
.yd0{bottom:263.409450px;}
.y2a{bottom:271.513950px;}
.yeb{bottom:271.913250px;}
.y5f{bottom:271.913400px;}
.y95{bottom:271.913550px;}
.yff{bottom:272.735550px;}
.y51{bottom:274.848150px;}
.y6c{bottom:277.913400px;}
.y103{bottom:286.579500px;}
.y40{bottom:289.488900px;}
.ycf{bottom:290.409450px;}
.y29{bottom:298.513950px;}
.yea{bottom:298.913250px;}
.y5e{bottom:298.913400px;}
.y94{bottom:298.913550px;}
.yfe{bottom:299.735550px;}
.y116{bottom:307.013400px;}
.y102{bottom:313.579500px;}
.yce{bottom:317.409450px;}
.y28{bottom:325.513950px;}
.ye9{bottom:325.913250px;}
.y50{bottom:325.913400px;}
.y93{bottom:325.913550px;}
.y6b{bottom:331.913400px;}
.y115{bottom:334.613400px;}
.yfd{bottom:335.239500px;}
.y3f{bottom:343.488900px;}
.ycd{bottom:344.409450px;}
.y114{bottom:351.113400px;}
.y27{bottom:352.513950px;}
.ye8{bottom:352.913250px;}
.y4f{bottom:352.913400px;}
.y92{bottom:352.913550px;}
.y6a{bottom:358.913400px;}
.yfc{bottom:366.739500px;}
.y3e{bottom:370.488900px;}
.ya7{bottom:376.313400px;}
.y113{bottom:378.713400px;}
.y26{bottom:379.513950px;}
.ye7{bottom:379.913250px;}
.y4e{bottom:379.913400px;}
.y91{bottom:379.913550px;}
.y69{bottom:385.913400px;}
.y3d{bottom:397.488900px;}
.y112{bottom:401.213400px;}
.y25{bottom:406.513950px;}
.ye6{bottom:406.913250px;}
.y4d{bottom:406.913400px;}
.yca{bottom:408.061350px;}
.ybf{bottom:408.909450px;}
.yf{bottom:410.504550px;}
.y111{bottom:417.713400px;}
.yf4{bottom:418.913400px;}
.y3c{bottom:424.488900px;}
.y85{bottom:428.409450px;}
.y24{bottom:433.513950px;}
.ye5{bottom:433.913250px;}
.y4c{bottom:433.913400px;}
.ye{bottom:437.504550px;}
.yc9{bottom:439.313250px;}
.y68{bottom:439.913400px;}
.ybe{bottom:444.413400px;}
.y110{bottom:445.313250px;}
.yac{bottom:446.570250px;}
.y84{bottom:449.409450px;}
.y122{bottom:449.905500px;}
.y3b{bottom:451.488900px;}
.y23{bottom:460.513950px;}
.ye4{bottom:460.913250px;}
.y4b{bottom:460.913400px;}
.yd{bottom:464.504550px;}
.yd7{bottom:466.313400px;}
.y10f{bottom:467.813250px;}
.y83{bottom:470.409450px;}
.y3a{bottom:478.488900px;}
.y10e{bottom:484.313250px;}
.y22{bottom:487.513950px;}
.ye3{bottom:487.913250px;}
.y4a{bottom:487.913400px;}
.y82{bottom:491.409450px;}
.yc{bottom:491.504550px;}
.y67{bottom:493.913400px;}
.y39{bottom:505.488900px;}
.y10d{bottom:511.913400px;}
.y81{bottom:512.409450px;}
.y21{bottom:514.513950px;}
.ye2{bottom:514.913250px;}
.y49{bottom:514.913400px;}
.yb{bottom:518.504550px;}
.y66{bottom:520.913400px;}
.ycb{bottom:529.313250px;}
.y38{bottom:532.488900px;}
.y10c{bottom:534.413400px;}
.y48{bottom:541.913400px;}
.y65{bottom:547.913400px;}
.y121{bottom:552.413400px;}
.ya{bottom:553.910550px;}
.ydd{bottom:553.913400px;}
.y10b{bottom:556.913400px;}
.y37{bottom:559.488900px;}
.y78{bottom:559.913400px;}
.y20{bottom:568.513950px;}
.y47{bottom:568.913400px;}
.yc0{bottom:569.409450px;}
.y99{bottom:574.157550px;}
.y64{bottom:574.913400px;}
.y10a{bottom:579.413400px;}
.y36{bottom:586.488900px;}
.y1f{bottom:595.513950px;}
.y46{bottom:595.913400px;}
.y120{bottom:597.413400px;}
.y72{bottom:601.913400px;}
.y9{bottom:603.110550px;}
.y35{bottom:613.488900px;}
.yba{bottom:614.905500px;}
.y11f{bottom:619.913400px;}
.y1e{bottom:622.513950px;}
.y45{bottom:622.913400px;}
.y8{bottom:624.110550px;}
.y11e{bottom:642.413400px;}
.y1d{bottom:649.513950px;}
.y44{bottom:649.913400px;}
.yf0{bottom:650.409450px;}
.ya4{bottom:651.061500px;}
.yf9{bottom:651.410400px;}
.yb1{bottom:654.660000px;}
.y11d{bottom:664.913400px;}
.ye1{bottom:666.397050px;}
.y7{bottom:667.310550px;}
.y34{bottom:667.488900px;}
.ya5{bottom:675.255300px;}
.y1c{bottom:676.513950px;}
.y43{bottom:676.913400px;}
.yf8{bottom:678.410400px;}
.ya3{bottom:682.313400px;}
.ye0{bottom:684.397050px;}
.yb9{bottom:686.409450px;}
.y11c{bottom:687.413400px;}
.y33{bottom:694.488900px;}
.y1b{bottom:703.513950px;}
.y42{bottom:703.913400px;}
.y90{bottom:703.913550px;}
.yb8{bottom:704.409450px;}
.yf7{bottom:705.410400px;}
.y9d{bottom:709.662300px;}
.y109{bottom:717.616200px;}
.y32{bottom:721.488900px;}
.y1a{bottom:730.513950px;}
.y5d{bottom:730.913400px;}
.y8f{bottom:730.913550px;}
.yf6{bottom:732.410400px;}
.yd6{bottom:733.827600px;}
.y9c{bottom:736.662300px;}
.yd9{bottom:738.048600px;}
.y31{bottom:748.488900px;}
.y2{bottom:748.947000px;}
.y11b{bottom:748.996650px;}
.y108{bottom:753.616200px;}
.y19{bottom:757.513950px;}
.y5c{bottom:757.913400px;}
.y8e{bottom:757.913550px;}
.y5a{bottom:758.033700px;}
.yf5{bottom:759.410400px;}
.yd5{bottom:760.827600px;}
.y9b{bottom:763.662300px;}
.yd8{bottom:765.048600px;}
.yda{bottom:768.410400px;}
.ybc{bottom:769.861650px;}
.yab{bottom:770.570250px;}
.y11a{bottom:771.496650px;}
.yfb{bottom:776.239500px;}
.ya9{bottom:776.948250px;}
.yde{bottom:783.255450px;}
.y5b{bottom:784.913400px;}
.ya1{bottom:785.381250px;}
.ycc{bottom:785.701650px;}
.ydf{bottom:786.410400px;}
.yd4{bottom:787.827600px;}
.ybb{bottom:787.861650px;}
.yaa{bottom:788.570250px;}
.y9a{bottom:790.662300px;}
.y107{bottom:792.079650px;}
.yfa{bottom:794.239500px;}
.ya8{bottom:794.948250px;}
.y18{bottom:824.699850px;}
.y1{bottom:924.599400px;}
.h1a{height:32.213520px;}
.hd{height:34.828125px;}
.h1c{height:36.455590px;}
.h1b{height:36.964851px;}
.h10{height:40.895508px;}
.hf{height:43.306154px;}
.he{height:43.447500px;}
.h16{height:47.636769px;}
.h7{height:47.945265px;}
.h11{height:47.988281px;}
.h9{height:50.800781px;}
.h4{height:51.323236px;}
.hb{height:51.967385px;}
.h2{height:52.137000px;}
.h18{height:52.240717px;}
.h20{height:52.241317px;}
.h17{height:57.332164px;}
.h6{height:59.145000px;}
.h12{height:60.826500px;}
.h5{height:61.588051px;}
.h14{height:62.544179px;}
.h1f{height:62.544779px;}
.h21{height:62.688861px;}
.h15{height:78.205500px;}
.h3{height:84.438000px;}
.hc{height:95.940000px;}
.h19{height:110.694000px;}
.h13{height:119.940000px;}
.h8{height:152.402344px;}
.ha{height:153.504000px;}
.h22{height:185.484000px;}
.h1e{height:193.155888px;}
.h1d{height:252.367938px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w3{width:79.821000px;}
.w2{width:141.648000px;}
.w4{width:569.976000px;}
.w0{width:1262.835000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x28{left:10.545900px;}
.x29{left:14.826450px;}
.x5{left:38.266500px;}
.x1b{left:52.938000px;}
.x2{left:54.000000px;}
.x14{left:62.503950px;}
.x10{left:66.756000px;}
.x3{left:77.753100px;}
.x15{left:79.511850px;}
.x17{left:88.015800px;}
.x6{left:90.354300px;}
.x9{left:105.023550px;}
.xd{left:122.031450px;}
.x4{left:123.914550px;}
.xe{left:139.039350px;}
.x1c{left:156.799800px;}
.x1d{left:171.603600px;}
.x1e{left:199.784100px;}
.x1f{left:247.049250px;}
.x20{left:293.957400px;}
.x21{left:353.172450px;}
.x23{left:386.882250px;}
.x22{left:401.329200px;}
.x25{left:421.840500px;}
.x24{left:428.974800px;}
.x19{left:455.473500px;}
.x26{left:464.468100px;}
.x27{left:523.683150px;}
.xc{left:556.978350px;}
.x11{left:569.076600px;}
.x2b{left:577.224000px;}
.x2a{left:596.621400px;}
.x16{left:616.011600px;}
.x18{left:617.074500px;}
.xb{left:620.995050px;}
.xf{left:622.057950px;}
.x12{left:648.425250px;}
.x1a{left:682.440900px;}
.x13{left:699.448950px;}
.x2c{left:913.232250px;}
.x1{left:1018.559100px;}
.xa{left:1043.647800px;}
.x8{left:1083.896700px;}
.x7{left:1126.416000px;}
@media print{
.v14{vertical-align:-60.877467pt;}
.v11{vertical-align:-50.731333pt;}
.vd{vertical-align:-30.438933pt;}
.v1{vertical-align:-21.333333pt;}
.vf{vertical-align:-20.292400pt;}
.v3{vertical-align:-16.809067pt;}
.v10{vertical-align:-10.146133pt;}
.v2{vertical-align:-2.666667pt;}
.v0{vertical-align:0.000000pt;}
.v13{vertical-align:10.146133pt;}
.v8{vertical-align:13.493333pt;}
.v6{vertical-align:14.842667pt;}
.v5{vertical-align:16.192000pt;}
.v12{vertical-align:20.292800pt;}
.v4{vertical-align:21.333333pt;}
.v7{vertical-align:26.858667pt;}
.vc{vertical-align:40.585067pt;}
.ve{vertical-align:50.731333pt;}
.v9{vertical-align:60.877600pt;}
.va{vertical-align:112.401067pt;}
.vb{vertical-align:123.657067pt;}
.ls1{letter-spacing:-2.292555pt;}
.ls36{letter-spacing:-2.240000pt;}
.ls14{letter-spacing:-1.920000pt;}
.ls37{letter-spacing:-1.866667pt;}
.ls39{letter-spacing:-1.792000pt;}
.ls23{letter-spacing:-1.600000pt;}
.lsa{letter-spacing:-1.568000pt;}
.ls20{letter-spacing:-1.280000pt;}
.ls5{letter-spacing:-0.970667pt;}
.ls25{letter-spacing:-0.960000pt;}
.lse{letter-spacing:-0.896000pt;}
.ls35{letter-spacing:-0.832000pt;}
.ls1f{letter-spacing:-0.768000pt;}
.ls1e{letter-spacing:-0.764288pt;}
.ls17{letter-spacing:-0.704000pt;}
.ls1d{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.597333pt;}
.ls1c{letter-spacing:-0.576000pt;}
.ls3a{letter-spacing:-0.533333pt;}
.ls9{letter-spacing:-0.522667pt;}
.ls1b{letter-spacing:-0.512000pt;}
.ls16{letter-spacing:-0.491328pt;}
.ls34{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.448000pt;}
.ls21{letter-spacing:-0.384000pt;}
.ls27{letter-spacing:-0.373333pt;}
.ls11{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.298667pt;}
.ls15{letter-spacing:-0.272960pt;}
.ls2{letter-spacing:-0.266667pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.224000pt;}
.ls26{letter-spacing:-0.213333pt;}
.ls1a{letter-spacing:-0.192000pt;}
.ls24{letter-spacing:-0.160000pt;}
.ls12{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.074667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls38{letter-spacing:0.000021pt;}
.ls22{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.298667pt;}
.lsd{letter-spacing:0.597333pt;}
.ls6{letter-spacing:1.045333pt;}
.lsb{letter-spacing:1.269333pt;}
.ls28{letter-spacing:6.168930pt;}
.ls29{letter-spacing:21.180744pt;}
.ls18{letter-spacing:23.940800pt;}
.ls19{letter-spacing:25.220800pt;}
.ls2c{letter-spacing:39.941166pt;}
.ls2e{letter-spacing:40.575279pt;}
.ls32{letter-spacing:41.843504pt;}
.ls2d{letter-spacing:50.005729pt;}
.ls30{letter-spacing:52.542713pt;}
.ls2b{letter-spacing:57.027446pt;}
.ls3{letter-spacing:58.613333pt;}
.ls2a{letter-spacing:82.306515pt;}
.ls2f{letter-spacing:82.347067pt;}
.ls33{letter-spacing:82.981179pt;}
.ls31{letter-spacing:112.786067pt;}
.ws46{word-spacing:-81.170133pt;}
.ws1{word-spacing:-76.288000pt;}
.ws5f{word-spacing:-61.866667pt;}
.ws21{word-spacing:-47.680000pt;}
.ws43{word-spacing:-38.682667pt;}
.ws47{word-spacing:-31.163871pt;}
.wsc{word-spacing:-15.605333pt;}
.ws2d{word-spacing:-14.784000pt;}
.ws53{word-spacing:-14.656000pt;}
.ws29{word-spacing:-14.400000pt;}
.ws51{word-spacing:-14.336000pt;}
.ws54{word-spacing:-14.272000pt;}
.ws0{word-spacing:-14.080000pt;}
.ws4c{word-spacing:-13.952000pt;}
.ws3e{word-spacing:-13.824000pt;}
.ws4{word-spacing:-13.760000pt;}
.ws35{word-spacing:-13.568000pt;}
.ws57{word-spacing:-13.504000pt;}
.ws2c{word-spacing:-13.440000pt;}
.ws4d{word-spacing:-13.376000pt;}
.ws31{word-spacing:-13.312000pt;}
.ws3b{word-spacing:-13.248000pt;}
.ws4a{word-spacing:-13.184000pt;}
.ws36{word-spacing:-13.056000pt;}
.ws27{word-spacing:-12.992000pt;}
.ws37{word-spacing:-12.800000pt;}
.ws38{word-spacing:-12.000000pt;}
.ws52{word-spacing:-11.968000pt;}
.ws18{word-spacing:-11.737280pt;}
.ws3d{word-spacing:-11.466667pt;}
.ws1b{word-spacing:-11.464320pt;}
.ws5e{word-spacing:-11.355136pt;}
.ws59{word-spacing:-11.253333pt;}
.ws1c{word-spacing:-11.245952pt;}
.ws2{word-spacing:-11.008000pt;}
.ws25{word-spacing:-10.972992pt;}
.ws41{word-spacing:-10.018811pt;}
.ws5d{word-spacing:-9.462613pt;}
.ws42{word-spacing:-7.968629pt;}
.ws45{word-spacing:-6.005986pt;}
.ws2b{word-spacing:-2.400000pt;}
.ws8{word-spacing:-1.866667pt;}
.wsa{word-spacing:-1.493333pt;}
.ws1e{word-spacing:-1.280000pt;}
.ws11{word-spacing:-1.269333pt;}
.ws3c{word-spacing:-1.088000pt;}
.ws4b{word-spacing:-1.066667pt;}
.wsd{word-spacing:-1.045333pt;}
.ws50{word-spacing:-0.896000pt;}
.ws4f{word-spacing:-0.832000pt;}
.ws48{word-spacing:-0.725404pt;}
.ws14{word-spacing:-0.597333pt;}
.ws4e{word-spacing:-0.320000pt;}
.wse{word-spacing:-0.298667pt;}
.ws5c{word-spacing:-0.128000pt;}
.ws32{word-spacing:-0.064000pt;}
.ws5{word-spacing:0.000000pt;}
.ws13{word-spacing:0.074667pt;}
.ws24{word-spacing:0.128000pt;}
.ws34{word-spacing:0.160000pt;}
.ws22{word-spacing:0.192000pt;}
.ws3a{word-spacing:0.213333pt;}
.ws9{word-spacing:0.224000pt;}
.ws1d{word-spacing:0.256000pt;}
.ws7{word-spacing:0.266667pt;}
.ws2e{word-spacing:0.272960pt;}
.ws16{word-spacing:0.298667pt;}
.ws19{word-spacing:0.320000pt;}
.ws39{word-spacing:0.373333pt;}
.ws2a{word-spacing:0.384000pt;}
.ws12{word-spacing:0.448000pt;}
.ws49{word-spacing:0.480000pt;}
.ws30{word-spacing:0.491328pt;}
.wsf{word-spacing:0.522667pt;}
.ws5a{word-spacing:0.533333pt;}
.ws23{word-spacing:0.576000pt;}
.ws17{word-spacing:0.597333pt;}
.ws26{word-spacing:0.640000pt;}
.ws20{word-spacing:0.704000pt;}
.ws28{word-spacing:0.768000pt;}
.ws56{word-spacing:0.832000pt;}
.ws15{word-spacing:0.896000pt;}
.ws55{word-spacing:0.960000pt;}
.wsb{word-spacing:0.970667pt;}
.ws10{word-spacing:1.568000pt;}
.ws33{word-spacing:1.600000pt;}
.ws1f{word-spacing:1.920000pt;}
.ws3f{word-spacing:1.972816pt;}
.ws6{word-spacing:2.292555pt;}
.ws40{word-spacing:23.209600pt;}
.ws58{word-spacing:134.272000pt;}
.ws5b{word-spacing:140.352000pt;}
.ws2f{word-spacing:142.592000pt;}
.ws1a{word-spacing:142.720000pt;}
.ws44{word-spacing:511.292544pt;}
.ws3{word-spacing:2547.155200pt;}
._e{margin-left:-142.546667pt;}
._1d{margin-left:-139.801067pt;}
._1c{margin-left:-133.721067pt;}
._17{margin-left:-12.518400pt;}
._16{margin-left:-10.252800pt;}
._a{margin-left:-9.268267pt;}
._2{margin-left:-7.910400pt;}
._d{margin-left:-6.892800pt;}
._5{margin-left:-5.954133pt;}
._6{margin-left:-4.857600pt;}
._3{margin-left:-3.174400pt;}
._0{margin-left:-1.689600pt;}
._4{width:0.889600pt;}
._1{width:2.166400pt;}
._12{width:3.628800pt;}
._1a{width:50.898224pt;}
._8{width:57.777067pt;}
._9{width:58.668267pt;}
._18{width:65.876240pt;}
._7{width:125.755200pt;}
._f{width:134.271467pt;}
._b{width:135.785067pt;}
._14{width:138.176000pt;}
._c{width:140.350933pt;}
._10{width:141.375467pt;}
._13{width:142.592000pt;}
._1b{width:144.064000pt;}
._11{width:146.558933pt;}
._15{width:148.480000pt;}
._19{width:727.137600pt;}
.fs10{font-size:38.682667pt;}
.fs8{font-size:42.666667pt;}
.fs12{font-size:45.024000pt;}
.fsf{font-size:45.493333pt;}
.fs11{font-size:46.926400pt;}
.fs9{font-size:48.000000pt;}
.fse{font-size:50.042667pt;}
.fs6{font-size:53.333333pt;}
.fsb{font-size:54.592000pt;}
.fsd{font-size:58.666667pt;}
.fs3{font-size:58.783467pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:65.265600pt;}
.fsa{font-size:74.666667pt;}
.fs2{font-size:78.318933pt;}
.fs13{font-size:81.170133pt;}
.fsc{font-size:96.000000pt;}
.fs7{font-size:160.000000pt;}
.fs4{font-size:192.000000pt;}
.fs5{font-size:256.000000pt;}
.fs14{font-size:309.333333pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:3.660000pt;}
.y17{bottom:19.297467pt;}
.y4{bottom:19.835867pt;}
.yb3{bottom:20.252000pt;}
.yb2{bottom:20.529467pt;}
.y5{bottom:25.700000pt;}
.y3{bottom:33.899333pt;}
.yb6{bottom:41.812800pt;}
.yb5{bottom:46.886000pt;}
.yc8{bottom:68.031600pt;}
.yb4{bottom:75.043200pt;}
.yb0{bottom:78.740267pt;}
.y77{bottom:79.559200pt;}
.y8d{bottom:81.260000pt;}
.y80{bottom:86.929200pt;}
.y71{bottom:86.929333pt;}
.yc7{bottom:87.231600pt;}
.y9e{bottom:89.764000pt;}
.yef{bottom:90.708667pt;}
.y63{bottom:90.708800pt;}
.y59{bottom:90.708933pt;}
.y16{bottom:95.078133pt;}
.y30{bottom:97.345733pt;}
.ya6{bottom:97.700800pt;}
.yaf{bottom:97.940400pt;}
.y8c{bottom:100.460000pt;}
.ya2{bottom:100.460133pt;}
.y7f{bottom:106.129200pt;}
.y70{bottom:106.129333pt;}
.ya0{bottom:106.129467pt;}
.yc6{bottom:106.431733pt;}
.y7e{bottom:109.908800pt;}
.y58{bottom:109.908933pt;}
.y98{bottom:109.909067pt;}
.y15{bottom:113.680400pt;}
.yae{bottom:117.140533pt;}
.y8b{bottom:119.660133pt;}
.y2f{bottom:121.345733pt;}
.y7a{bottom:121.700800pt;}
.y6f{bottom:125.329333pt;}
.y9f{bottom:125.329600pt;}
.yc5{bottom:125.631867pt;}
.y76{bottom:127.034133pt;}
.y62{bottom:129.108933pt;}
.y57{bottom:129.109067pt;}
.y14{bottom:129.680400pt;}
.yad{bottom:136.340667pt;}
.y8a{bottom:138.860133pt;}
.yc4{bottom:144.832000pt;}
.y2e{bottom:145.345733pt;}
.y13{bottom:145.680400pt;}
.y79{bottom:145.700800pt;}
.ybd{bottom:146.721333pt;}
.y7d{bottom:148.308933pt;}
.y61{bottom:148.309067pt;}
.y56{bottom:148.309200pt;}
.y75{bottom:151.034133pt;}
.y12{bottom:154.770267pt;}
.y89{bottom:158.060133pt;}
.yd3{bottom:162.141733pt;}
.yc3{bottom:164.032133pt;}
.y7c{bottom:167.509067pt;}
.y55{bottom:167.509200pt;}
.yf3{bottom:167.509333pt;}
.y2d{bottom:169.345733pt;}
.yee{bottom:169.700667pt;}
.y6e{bottom:169.700800pt;}
.y11{bottom:174.103600pt;}
.y88{bottom:177.260267pt;}
.ydc{bottom:178.498133pt;}
.y106{bottom:182.737333pt;}
.yc2{bottom:183.232267pt;}
.yd2{bottom:186.141733pt;}
.y7b{bottom:186.709067pt;}
.y54{bottom:186.709200pt;}
.yf2{bottom:186.709467pt;}
.y119{bottom:187.834133pt;}
.y2c{bottom:193.345733pt;}
.yed{bottom:193.700667pt;}
.y6d{bottom:193.700800pt;}
.y97{bottom:193.700933pt;}
.y101{bottom:194.431600pt;}
.y87{bottom:196.460400pt;}
.y74{bottom:199.034133pt;}
.y10{bottom:200.103600pt;}
.yc1{bottom:202.432267pt;}
.y118{bottom:202.500800pt;}
.y53{bottom:205.909200pt;}
.yb7{bottom:205.909333pt;}
.yf1{bottom:205.909600pt;}
.y105{bottom:206.737333pt;}
.yd1{bottom:210.141733pt;}
.y86{bottom:215.660400pt;}
.y2b{bottom:217.345733pt;}
.yec{bottom:217.700667pt;}
.y60{bottom:217.700800pt;}
.y96{bottom:217.700933pt;}
.y100{bottom:218.431600pt;}
.ydb{bottom:219.031467pt;}
.y73{bottom:223.034133pt;}
.y52{bottom:225.109333pt;}
.y117{bottom:227.034133pt;}
.y104{bottom:230.737333pt;}
.y41{bottom:233.323467pt;}
.yd0{bottom:234.141733pt;}
.y2a{bottom:241.345733pt;}
.yeb{bottom:241.700667pt;}
.y5f{bottom:241.700800pt;}
.y95{bottom:241.700933pt;}
.yff{bottom:242.431600pt;}
.y51{bottom:244.309467pt;}
.y6c{bottom:247.034133pt;}
.y103{bottom:254.737333pt;}
.y40{bottom:257.323467pt;}
.ycf{bottom:258.141733pt;}
.y29{bottom:265.345733pt;}
.yea{bottom:265.700667pt;}
.y5e{bottom:265.700800pt;}
.y94{bottom:265.700933pt;}
.yfe{bottom:266.431600pt;}
.y116{bottom:272.900800pt;}
.y102{bottom:278.737333pt;}
.yce{bottom:282.141733pt;}
.y28{bottom:289.345733pt;}
.ye9{bottom:289.700667pt;}
.y50{bottom:289.700800pt;}
.y93{bottom:289.700933pt;}
.y6b{bottom:295.034133pt;}
.y115{bottom:297.434133pt;}
.yfd{bottom:297.990667pt;}
.y3f{bottom:305.323467pt;}
.ycd{bottom:306.141733pt;}
.y114{bottom:312.100800pt;}
.y27{bottom:313.345733pt;}
.ye8{bottom:313.700667pt;}
.y4f{bottom:313.700800pt;}
.y92{bottom:313.700933pt;}
.y6a{bottom:319.034133pt;}
.yfc{bottom:325.990667pt;}
.y3e{bottom:329.323467pt;}
.ya7{bottom:334.500800pt;}
.y113{bottom:336.634133pt;}
.y26{bottom:337.345733pt;}
.ye7{bottom:337.700667pt;}
.y4e{bottom:337.700800pt;}
.y91{bottom:337.700933pt;}
.y69{bottom:343.034133pt;}
.y3d{bottom:353.323467pt;}
.y112{bottom:356.634133pt;}
.y25{bottom:361.345733pt;}
.ye6{bottom:361.700667pt;}
.y4d{bottom:361.700800pt;}
.yca{bottom:362.721200pt;}
.ybf{bottom:363.475067pt;}
.yf{bottom:364.892933pt;}
.y111{bottom:371.300800pt;}
.yf4{bottom:372.367467pt;}
.y3c{bottom:377.323467pt;}
.y85{bottom:380.808400pt;}
.y24{bottom:385.345733pt;}
.ye5{bottom:385.700667pt;}
.y4c{bottom:385.700800pt;}
.ye{bottom:388.892933pt;}
.yc9{bottom:390.500667pt;}
.y68{bottom:391.034133pt;}
.ybe{bottom:395.034133pt;}
.y110{bottom:395.834000pt;}
.yac{bottom:396.951333pt;}
.y84{bottom:399.475067pt;}
.y122{bottom:399.916000pt;}
.y3b{bottom:401.323467pt;}
.y23{bottom:409.345733pt;}
.ye4{bottom:409.700667pt;}
.y4b{bottom:409.700800pt;}
.yd{bottom:412.892933pt;}
.yd7{bottom:414.500800pt;}
.y10f{bottom:415.834000pt;}
.y83{bottom:418.141733pt;}
.y3a{bottom:425.323467pt;}
.y10e{bottom:430.500667pt;}
.y22{bottom:433.345733pt;}
.ye3{bottom:433.700667pt;}
.y4a{bottom:433.700800pt;}
.y82{bottom:436.808400pt;}
.yc{bottom:436.892933pt;}
.y67{bottom:439.034133pt;}
.y39{bottom:449.323467pt;}
.y10d{bottom:455.034133pt;}
.y81{bottom:455.475067pt;}
.y21{bottom:457.345733pt;}
.ye2{bottom:457.700667pt;}
.y49{bottom:457.700800pt;}
.yb{bottom:460.892933pt;}
.y66{bottom:463.034133pt;}
.ycb{bottom:470.500667pt;}
.y38{bottom:473.323467pt;}
.y10c{bottom:475.034133pt;}
.y48{bottom:481.700800pt;}
.y65{bottom:487.034133pt;}
.y121{bottom:491.034133pt;}
.ya{bottom:492.364933pt;}
.ydd{bottom:492.367467pt;}
.y10b{bottom:495.034133pt;}
.y37{bottom:497.323467pt;}
.y78{bottom:497.700800pt;}
.y20{bottom:505.345733pt;}
.y47{bottom:505.700800pt;}
.yc0{bottom:506.141733pt;}
.y99{bottom:510.362267pt;}
.y64{bottom:511.034133pt;}
.y10a{bottom:515.034133pt;}
.y36{bottom:521.323467pt;}
.y1f{bottom:529.345733pt;}
.y46{bottom:529.700800pt;}
.y120{bottom:531.034133pt;}
.y72{bottom:535.034133pt;}
.y9{bottom:536.098267pt;}
.y35{bottom:545.323467pt;}
.yba{bottom:546.582667pt;}
.y11f{bottom:551.034133pt;}
.y1e{bottom:553.345733pt;}
.y45{bottom:553.700800pt;}
.y8{bottom:554.764933pt;}
.y11e{bottom:571.034133pt;}
.y1d{bottom:577.345733pt;}
.y44{bottom:577.700800pt;}
.yf0{bottom:578.141733pt;}
.ya4{bottom:578.721333pt;}
.yf9{bottom:579.031467pt;}
.yb1{bottom:581.920000pt;}
.y11d{bottom:591.034133pt;}
.ye1{bottom:592.352933pt;}
.y7{bottom:593.164933pt;}
.y34{bottom:593.323467pt;}
.ya5{bottom:600.226933pt;}
.y1c{bottom:601.345733pt;}
.y43{bottom:601.700800pt;}
.yf8{bottom:603.031467pt;}
.ya3{bottom:606.500800pt;}
.ye0{bottom:608.352933pt;}
.yb9{bottom:610.141733pt;}
.y11c{bottom:611.034133pt;}
.y33{bottom:617.323467pt;}
.y1b{bottom:625.345733pt;}
.y42{bottom:625.700800pt;}
.y90{bottom:625.700933pt;}
.yb8{bottom:626.141733pt;}
.yf7{bottom:627.031467pt;}
.y9d{bottom:630.810933pt;}
.y109{bottom:637.881067pt;}
.y32{bottom:641.323467pt;}
.y1a{bottom:649.345733pt;}
.y5d{bottom:649.700800pt;}
.y8f{bottom:649.700933pt;}
.yf6{bottom:651.031467pt;}
.yd6{bottom:652.291200pt;}
.y9c{bottom:654.810933pt;}
.yd9{bottom:656.043200pt;}
.y31{bottom:665.323467pt;}
.y2{bottom:665.730667pt;}
.y11b{bottom:665.774800pt;}
.y108{bottom:669.881067pt;}
.y19{bottom:673.345733pt;}
.y5c{bottom:673.700800pt;}
.y8e{bottom:673.700933pt;}
.y5a{bottom:673.807733pt;}
.yf5{bottom:675.031467pt;}
.yd5{bottom:676.291200pt;}
.y9b{bottom:678.810933pt;}
.yd8{bottom:680.043200pt;}
.yda{bottom:683.031467pt;}
.ybc{bottom:684.321467pt;}
.yab{bottom:684.951333pt;}
.y11a{bottom:685.774800pt;}
.yfb{bottom:689.990667pt;}
.ya9{bottom:690.620667pt;}
.yde{bottom:696.227067pt;}
.y5b{bottom:697.700800pt;}
.ya1{bottom:698.116667pt;}
.ycc{bottom:698.401467pt;}
.ydf{bottom:699.031467pt;}
.yd4{bottom:700.291200pt;}
.ybb{bottom:700.321467pt;}
.yaa{bottom:700.951333pt;}
.y9a{bottom:702.810933pt;}
.y107{bottom:704.070800pt;}
.yfa{bottom:705.990667pt;}
.ya8{bottom:706.620667pt;}
.y18{bottom:733.066533pt;}
.y1{bottom:821.866133pt;}
.h1a{height:28.634240pt;}
.hd{height:30.958333pt;}
.h1c{height:32.404969pt;}
.h1b{height:32.857645pt;}
.h10{height:36.351562pt;}
.hf{height:38.494359pt;}
.he{height:38.620000pt;}
.h16{height:42.343795pt;}
.h7{height:42.618013pt;}
.h11{height:42.656250pt;}
.h9{height:45.156250pt;}
.h4{height:45.620654pt;}
.hb{height:46.193231pt;}
.h2{height:46.344000pt;}
.h18{height:46.436193pt;}
.h20{height:46.436727pt;}
.h17{height:50.961924pt;}
.h6{height:52.573333pt;}
.h12{height:54.068000pt;}
.h5{height:54.744934pt;}
.h14{height:55.594826pt;}
.h1f{height:55.595359pt;}
.h21{height:55.723432pt;}
.h15{height:69.516000pt;}
.h3{height:75.056000pt;}
.hc{height:85.280000pt;}
.h19{height:98.394667pt;}
.h13{height:106.613333pt;}
.h8{height:135.468750pt;}
.ha{height:136.448000pt;}
.h22{height:164.874667pt;}
.h1e{height:171.694123pt;}
.h1d{height:224.327056pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w3{width:70.952000pt;}
.w2{width:125.909333pt;}
.w4{width:506.645333pt;}
.w0{width:1122.520000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x28{left:9.374133pt;}
.x29{left:13.179067pt;}
.x5{left:34.014667pt;}
.x1b{left:47.056000pt;}
.x2{left:48.000000pt;}
.x14{left:55.559067pt;}
.x10{left:59.338667pt;}
.x3{left:69.113867pt;}
.x15{left:70.677200pt;}
.x17{left:78.236267pt;}
.x6{left:80.314933pt;}
.x9{left:93.354267pt;}
.xd{left:108.472400pt;}
.x4{left:110.146267pt;}
.xe{left:123.590533pt;}
.x1c{left:139.377600pt;}
.x1d{left:152.536533pt;}
.x1e{left:177.585867pt;}
.x1f{left:219.599333pt;}
.x20{left:261.295467pt;}
.x21{left:313.931067pt;}
.x23{left:343.895333pt;}
.x22{left:356.737067pt;}
.x25{left:374.969333pt;}
.x24{left:381.310933pt;}
.x19{left:404.865333pt;}
.x26{left:412.860533pt;}
.x27{left:465.496133pt;}
.xc{left:495.091867pt;}
.x11{left:505.845867pt;}
.x2b{left:513.088000pt;}
.x2a{left:530.330133pt;}
.x16{left:547.565867pt;}
.x18{left:548.510667pt;}
.xb{left:551.995600pt;}
.xf{left:552.940400pt;}
.x12{left:576.378000pt;}
.x1a{left:606.614133pt;}
.x13{left:621.732400pt;}
.x2c{left:811.762000pt;}
.x1{left:905.385867pt;}
.xa{left:927.686933pt;}
.x8{left:963.463733pt;}
.x7{left:1001.258667pt;}
}




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