
    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_11803f9bd8369f74b078678e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959961;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_728999a590f6cad849a601fb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_c7b5f83dff2cdb290bd8cc28.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.740234;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_88b66073cf93dd31241aa59a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.692871;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_88b66073cf93dd31241aa59a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.692871;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_029ee17c9d46c6701b301cd6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_8abf4b041e70c62383403d8b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_e902232d2fd9a8e310d39f8e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_0e60c7b5f55dba109b5e0da1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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_c20e0ff1df497139ea11affb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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_f5f702d29a1ebf381ec13b96.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_108e9823dd4026c7d0305433.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;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_2b9a90ca0a767d86fcc12add.woff2')format("woff");}.fff{font-family:fff;line-height:1.311035;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_389a048e7971d383e3f03088.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.284668;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_3dc1c5a42926e4a90ecde17e.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.284180;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_c20e0ff1df497139ea11affb.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.666504;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_c20e0ff1df497139ea11affb.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666504;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_c20e0ff1df497139ea11affb.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.666504;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_c20e0ff1df497139ea11affb.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.666504;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_c20e0ff1df497139ea11affb.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.666504;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_c20e0ff1df497139ea11affb.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.666504;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_c20e0ff1df497139ea11affb.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.666504;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_c20e0ff1df497139ea11affb.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.666504;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_c20e0ff1df497139ea11affb.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.666504;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_c20e0ff1df497139ea11affb.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.666504;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_c20e0ff1df497139ea11affb.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.666504;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_c20e0ff1df497139ea11affb.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.666504;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_c20e0ff1df497139ea11affb.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.666504;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_c20e0ff1df497139ea11affb.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.153262,-0.197512,0.197512,0.153262,0,0);-ms-transform:matrix(0.153262,-0.197512,0.197512,0.153262,0,0);-webkit-transform:matrix(0.153262,-0.197512,0.197512,0.153262,0,0);}
.m4{transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-12.239995px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:61.919975px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.114827px;}
.lsc{letter-spacing:0.240836px;}
.ls7{letter-spacing:0.406273px;}
.ls1{letter-spacing:0.490353px;}
.ls4{letter-spacing:0.619363px;}
.ls9{letter-spacing:0.689493px;}
.lsb{letter-spacing:0.720408px;}
.ls8{letter-spacing:0.835246px;}
.ls6{letter-spacing:1.931279px;}
.ls5{letter-spacing:3.372119px;}
.ls3{letter-spacing:4.092538px;}
.ls2{letter-spacing:9.855776px;}
.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;}
}
.ws9{word-spacing:-54.451206px;}
.wsa{word-spacing:-46.111832px;}
.ws4{word-spacing:-38.921591px;}
.ws3{word-spacing:-38.918122px;}
.ws8{word-spacing:-20.498242px;}
.ws7{word-spacing:-17.519693px;}
.ws6{word-spacing:-14.541294px;}
.wsb{word-spacing:-13.499995px;}
.ws5{word-spacing:-9.460616px;}
.ws2{word-spacing:0.000000px;}
.ws1{word-spacing:302.400000px;}
.ws0{word-spacing:335.760000px;}
._4{margin-left:-15.684953px;}
._16{margin-left:-14.645359px;}
._11{margin-left:-2.543497px;}
._6{margin-left:-1.337991px;}
._7{width:1.032785px;}
._f{width:2.209601px;}
._d{width:3.698875px;}
._a{width:5.145306px;}
._9{width:6.259864px;}
._12{width:7.264370px;}
._c{width:8.521684px;}
._b{width:10.047206px;}
._e{width:11.162150px;}
._8{width:12.567091px;}
._19{width:13.622973px;}
._10{width:14.643942px;}
._5{width:15.688733px;}
._13{width:18.821077px;}
._1c{width:19.932327px;}
._17{width:21.091118px;}
._18{width:22.242362px;}
._1d{width:23.283033px;}
._14{width:25.229843px;}
._15{width:26.271467px;}
._1f{width:27.373703px;}
._1b{width:28.377894px;}
._1a{width:29.397346px;}
._22{width:30.839265px;}
._2{width:32.220000px;}
._2c{width:33.368166px;}
._1e{width:34.452977px;}
._29{width:35.530063px;}
._21{width:37.123355px;}
._20{width:38.264594px;}
._23{width:40.185105px;}
._24{width:41.216631px;}
._25{width:42.381385px;}
._26{width:43.767795px;}
._27{width:45.285657px;}
._2e{width:46.404071px;}
._32{width:48.097769px;}
._38{width:49.966054px;}
._37{width:51.025522px;}
._2d{width:52.648104px;}
._2b{width:53.884291px;}
._2a{width:54.956731px;}
._28{width:55.976670px;}
._39{width:58.506064px;}
._3a{width:59.526942px;}
._40{width:62.642498px;}
._3e{width:64.459148px;}
._3{width:65.580000px;}
._3d{width:71.902272px;}
._35{width:78.385960px;}
._36{width:79.421517px;}
._4f{width:81.381118px;}
._1{width:88.920000px;}
._46{width:91.326900px;}
._45{width:92.728794px;}
._47{width:97.729341px;}
._48{width:99.072698px;}
._53{width:103.453577px;}
._43{width:108.075611px;}
._6d{width:113.979615px;}
._4c{width:118.843359px;}
._5a{width:127.589949px;}
._3f{width:131.288738px;}
._3b{width:132.782076px;}
._3c{width:133.999272px;}
._64{width:135.733899px;}
._44{width:138.164546px;}
._0{width:148.860000px;}
._2f{width:157.606376px;}
._30{width:158.971850px;}
._67{width:180.248651px;}
._33{width:186.676166px;}
._5d{width:187.956195px;}
._4a{width:189.395841px;}
._49{width:190.790860px;}
._34{width:206.742697px;}
._68{width:217.554710px;}
._41{width:224.752241px;}
._42{width:226.575971px;}
._58{width:240.018876px;}
._61{width:241.829903px;}
._62{width:249.090596px;}
._69{width:251.207106px;}
._52{width:258.887314px;}
._56{width:272.254811px;}
._51{width:275.278542px;}
._6f{width:279.228244px;}
._5c{width:281.272659px;}
._6a{width:295.063813px;}
._4e{width:296.738397px;}
._54{width:303.799858px;}
._70{width:315.947670px;}
._63{width:324.808516px;}
._57{width:336.809663px;}
._6e{width:339.763906px;}
._59{width:341.171070px;}
._66{width:346.914396px;}
._5b{width:354.835015px;}
._55{width:357.263738px;}
._50{width:360.287469px;}
._60{width:383.278707px;}
._6c{width:389.270131px;}
._5e{width:402.787378px;}
._65{width:404.228009px;}
._5f{width:416.104878px;}
._31{width:449.698990px;}
._6b{width:459.266538px;}
._4b{width:472.523399px;}
._72{width:497.272841px;}
._4d{width:563.210488px;}
._71{width:582.281767px;}
._73{width:709.791916px;}
.fc4{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(229,229,229);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:37.842465px;}
.fs7{font-size:46.951901px;}
.fsc{font-size:53.999978px;}
.fs5{font-size:58.165177px;}
.fs1{font-size:60.000000px;}
.fsa{font-size:64.471174px;}
.fsb{font-size:66.239974px;}
.fs9{font-size:70.078772px;}
.fsd{font-size:71.999971px;}
.fs3{font-size:81.360814px;}
.fs4{font-size:81.992967px;}
.fs0{font-size:108.000000px;}
.fs2{font-size:279.983206px;}
.fs8{font-size:350.398060px;}
.y0{bottom:0.000000px;}
.y16a{bottom:2.878976px;}
.y16f{bottom:2.878995px;}
.y175{bottom:2.879021px;}
.y17b{bottom:2.879046px;}
.y19{bottom:9.660488px;}
.y1a{bottom:54.000000px;}
.y1a7{bottom:138.900244px;}
.y1a6{bottom:159.059936px;}
.y15c{bottom:166.079934px;}
.y133{bottom:167.699933px;}
.y10b{bottom:169.139932px;}
.ya7{bottom:171.119932px;}
.y52{bottom:173.999930px;}
.y1a5{bottom:174.719930px;}
.y138{bottom:180.299928px;}
.y126{bottom:180.479928px;}
.y3a{bottom:184.619926px;}
.yb3{bottom:187.139925px;}
.y76{bottom:188.579925px;}
.y1a4{bottom:190.919924px;}
.ye7{bottom:194.699922px;}
.y7f{bottom:195.239922px;}
.yc5{bottom:199.559920px;}
.y69{bottom:201.899919px;}
.y15b{bottom:206.399917px;}
.y162{bottom:207.119917px;}
.y132{bottom:208.019917px;}
.y14a{bottom:208.559917px;}
.y10a{bottom:209.639916px;}
.y9c{bottom:209.819916px;}
.ya6{bottom:211.439915px;}
.y51{bottom:214.139914px;}
.y39{bottom:218.279913px;}
.y125{bottom:220.619912px;}
.y1a3{bottom:222.059911px;}
.yf6{bottom:224.039910px;}
.yb2{bottom:227.639909px;}
.y75{bottom:228.899908px;}
.y11a{bottom:235.019906px;}
.ye6{bottom:235.199906px;}
.y7e{bottom:235.559906px;}
.y1a2{bottom:238.259905px;}
.yc4{bottom:240.059904px;}
.y68{bottom:242.219903px;}
.y15a{bottom:246.719901px;}
.y161{bottom:247.259901px;}
.y131{bottom:248.339901px;}
.y149{bottom:249.059900px;}
.yd4{bottom:249.779900px;}
.y109{bottom:249.959900px;}
.y9b{bottom:250.139900px;}
.ya5{bottom:251.759899px;}
.y38{bottom:251.939899px;}
.y1a1{bottom:253.739899px;}
.y50{bottom:254.459898px;}
.y116{bottom:260.759896px;}
.y137{bottom:260.939896px;}
.y1aa{bottom:263.279895px;}
.yf5{bottom:264.539894px;}
.yb1{bottom:267.959893px;}
.y8b{bottom:268.859892px;}
.y15{bottom:269.199006px;}
.y74{bottom:269.219892px;}
.y124{bottom:275.339890px;}
.ye5{bottom:275.519890px;}
.y7d{bottom:275.879890px;}
.yc3{bottom:280.199888px;}
.y82{bottom:282.179887px;}
.y67{bottom:282.539887px;}
.y16{bottom:283.060345px;}
.y37{bottom:285.419886px;}
.y1a0{bottom:285.599886px;}
.y159{bottom:286.859885px;}
.y14{bottom:287.199006px;}
.y160{bottom:287.579885px;}
.y130{bottom:288.659885px;}
.y148{bottom:289.379884px;}
.y103{bottom:290.099884px;}
.yd3{bottom:290.279884px;}
.y9a{bottom:290.459884px;}
.ya3{bottom:292.079883px;}
.y4f{bottom:294.779882px;}
.ya4{bottom:299.999880px;}
.y19f{bottom:301.079880px;}
.y115{bottom:301.259879px;}
.y13{bottom:305.199006px;}
.y1ab{bottom:306.839877px;}
.yb0{bottom:308.279877px;}
.y73{bottom:309.539876px;}
.y18{bottom:310.769963px;}
.y8a{bottom:312.959875px;}
.y136{bottom:315.659874px;}
.ye4{bottom:315.839874px;}
.y7c{bottom:316.199874px;}
.y19e{bottom:317.459873px;}
.y36{bottom:318.899872px;}
.yf4{bottom:319.079872px;}
.y81{bottom:322.499871px;}
.y66{bottom:322.859871px;}
.y12{bottom:323.199006px;}
.y1ac{bottom:324.119870px;}
.y17{bottom:324.595996px;}
.y158{bottom:327.179869px;}
.y15f{bottom:327.899869px;}
.y12f{bottom:328.979868px;}
.y147{bottom:329.699868px;}
.y99{bottom:330.419868px;}
.yed{bottom:330.599868px;}
.ya2{bottom:332.219867px;}
.y19d{bottom:332.939867px;}
.yc2{bottom:334.919866px;}
.y4e{bottom:335.099866px;}
.y11{bottom:341.199006px;}
.y114{bottom:341.579863px;}
.yd2{bottom:344.999862px;}
.y19c{bottom:348.419861px;}
.yaf{bottom:348.599861px;}
.y72{bottom:349.859860px;}
.y35{bottom:352.559859px;}
.y119{bottom:356.159858px;}
.y7b{bottom:356.519857px;}
.yf3{bottom:359.579856px;}
.y8d{bottom:359.939856px;}
.y9d{bottom:362.819855px;}
.y65{bottom:363.179855px;}
.y19b{bottom:363.899854px;}
.y15e{bottom:365.519854px;}
.y157{bottom:367.499853px;}
.y12e{bottom:369.299852px;}
.ye3{bottom:370.739852px;}
.y102{bottom:370.919852px;}
.y98{bottom:371.099852px;}
.ya1{bottom:372.539851px;}
.y4d{bottom:375.419850px;}
.y19a{bottom:379.379848px;}
.y146{bottom:384.419846px;}
.yec{bottom:385.139846px;}
.yd1{bottom:385.319846px;}
.y34{bottom:386.039846px;}
.yae{bottom:388.919844px;}
.y71{bottom:390.179844px;}
.y199{bottom:395.039842px;}
.y113{bottom:396.299841px;}
.y7a{bottom:396.479841px;}
.y10{bottom:396.699006px;}
.y89{bottom:396.839841px;}
.yf2{bottom:399.899840px;}
.y15d{bottom:403.319839px;}
.y64{bottom:403.499839px;}
.y156{bottom:407.819837px;}
.y118{bottom:410.879836px;}
.ye2{bottom:411.059836px;}
.y97{bottom:411.239836px;}
.ya0{bottom:412.859835px;}
.yf{bottom:414.699006px;}
.y4c{bottom:415.739834px;}
.y33{bottom:419.699832px;}
.y12d{bottom:424.019830px;}
.y145{bottom:424.739830px;}
.y101{bottom:425.459830px;}
.yd0{bottom:425.639830px;}
.y198{bottom:426.719829px;}
.y1af{bottom:427.619829px;}
.yad{bottom:429.239828px;}
.y70{bottom:430.499828px;}
.ye{bottom:432.699006px;}
.y112{bottom:436.799825px;}
.y88{bottom:437.159825px;}
.yf1{bottom:440.219824px;}
.y79{bottom:440.579824px;}
.y197{bottom:443.099823px;}
.y63{bottom:443.819822px;}
.y1b0{bottom:443.999822px;}
.y155{bottom:448.139821px;}
.yd{bottom:450.699006px;}
.y135{bottom:451.199820px;}
.ye1{bottom:451.379819px;}
.y96{bottom:451.559819px;}
.y32{bottom:453.359819px;}
.y1b1{bottom:453.899818px;}
.y4b{bottom:456.059818px;}
.y9f{bottom:456.779817px;}
.y196{bottom:458.579817px;}
.y12c{bottom:464.339814px;}
.y144{bottom:465.059814px;}
.y134{bottom:465.779814px;}
.yeb{bottom:465.959814px;}
.y1ad{bottom:469.199812px;}
.yac{bottom:469.559812px;}
.yc1{bottom:470.459812px;}
.y6f{bottom:470.639812px;}
.y195{bottom:474.059810px;}
.y87{bottom:477.299809px;}
.ycf{bottom:480.359808px;}
.yf0{bottom:480.539808px;}
.y62{bottom:483.959806px;}
.y31{bottom:486.839805px;}
.y154{bottom:488.459805px;}
.y194{bottom:489.719804px;}
.y111{bottom:491.519803px;}
.ye0{bottom:491.699803px;}
.y95{bottom:491.879803px;}
.y4a{bottom:496.379801px;}
.y9e{bottom:503.579799px;}
.y12b{bottom:504.659798px;}
.y193{bottom:505.199798px;}
.y117{bottom:506.099798px;}
.y100{bottom:506.279797px;}
.yab{bottom:509.699796px;}
.y6e{bottom:510.959796px;}
.yc{bottom:516.699016px;}
.y86{bottom:517.619793px;}
.y143{bottom:519.959792px;}
.y30{bottom:520.499792px;}
.yea{bottom:520.679792px;}
.yce{bottom:520.859792px;}
.y192{bottom:521.399791px;}
.yb4{bottom:523.919790px;}
.y61{bottom:524.279790px;}
.y153{bottom:528.779788px;}
.y110{bottom:532.019787px;}
.y94{bottom:532.199787px;}
.y49{bottom:536.519785px;}
.y191{bottom:536.879785px;}
.y12a{bottom:544.979782px;}
.yb{bottom:545.199016px;}
.ydf{bottom:546.419781px;}
.yff{bottom:546.599781px;}
.yaa{bottom:550.019780px;}
.y6d{bottom:551.279779px;}
.y190{bottom:552.539779px;}
.y2f{bottom:554.159778px;}
.y85{bottom:557.939777px;}
.y142{bottom:560.459776px;}
.y122{bottom:560.999776px;}
.ycd{bottom:561.179776px;}
.y60{bottom:564.599774px;}
.y18f{bottom:568.019773px;}
.y152{bottom:568.919772px;}
.y93{bottom:570.179772px;}
.y92{bottom:572.519771px;}
.ya{bottom:573.699016px;}
.yef{bottom:575.579770px;}
.y18e{bottom:583.499767px;}
.y10f{bottom:586.739765px;}
.yde{bottom:586.919765px;}
.y2e{bottom:587.639765px;}
.y48{bottom:591.419763px;}
.y6c{bottom:591.599763px;}
.y1b3{bottom:594.119762px;}
.y84{bottom:598.259761px;}
.y129{bottom:599.699760px;}
.y18d{bottom:599.879760px;}
.y141{bottom:600.779760px;}
.yfe{bottom:601.319759px;}
.y108{bottom:601.499759px;}
.ybf{bottom:601.679759px;}
.y1a8{bottom:602.759759px;}
.ya9{bottom:604.739758px;}
.y5f{bottom:604.919758px;}
.y151{bottom:609.239756px;}
.y91{bottom:612.839755px;}
.y18c{bottom:615.359754px;}
.ycc{bottom:615.899754px;}
.yee{bottom:616.079754px;}
.y2d{bottom:621.119752px;}
.y9{bottom:621.699016px;}
.ydd{bottom:627.239749px;}
.y18b{bottom:630.839748px;}
.y47{bottom:631.919747px;}
.y6b{bottom:635.339746px;}
.ybe{bottom:638.579745px;}
.y128{bottom:640.559744px;}
.y140{bottom:640.919744px;}
.y123{bottom:641.459743px;}
.yfd{bottom:641.639743px;}
.y83{bottom:641.999743px;}
.y5e{bottom:645.239742px;}
.y1ae{bottom:646.679741px;}
.y18a{bottom:647.039741px;}
.y150{bottom:649.559740px;}
.y2c{bottom:650.459740px;}
.y90{bottom:653.159739px;}
.y11b{bottom:656.219738px;}
.ycb{bottom:656.399737px;}
.y189{bottom:662.699735px;}
.y120{bottom:667.379733px;}
.y8{bottom:669.699016px;}
.y46{bottom:672.239731px;}
.y2b{bottom:677.459729px;}
.y188{bottom:678.179729px;}
.ybd{bottom:678.899728px;}
.y13f{bottom:681.239728px;}
.y127{bottom:681.419727px;}
.ydc{bottom:681.779727px;}
.yfc{bottom:681.959727px;}
.yc0{bottom:682.319727px;}
.y6a{bottom:682.859727px;}
.y5d{bottom:685.559726px;}
.y14f{bottom:689.879724px;}
.y78{bottom:693.479723px;}
.y187{bottom:693.659723px;}
.y107{bottom:696.539721px;}
.yca{bottom:696.719721px;}
.y7{bottom:698.199016px;}
.y1b4{bottom:703.019719px;}
.y2a{bottom:704.279718px;}
.y186{bottom:709.139716px;}
.y8f{bottom:710.579716px;}
.y45{bottom:712.559715px;}
.ybc{bottom:719.219712px;}
.y11f{bottom:722.099711px;}
.ydb{bottom:722.279711px;}
.y5c{bottom:725.879710px;}
.y6{bottom:726.699016px;}
.y185{bottom:728.399709px;}
.y14e{bottom:730.199708px;}
.y29{bottom:731.099708px;}
.y77{bottom:733.799706px;}
.y13e{bottom:735.959706px;}
.yfb{bottom:736.679705px;}
.y106{bottom:736.859705px;}
.y184{bottom:743.879702px;}
.y8e{bottom:748.559701px;}
.yc9{bottom:751.439699px;}
.y44{bottom:752.519699px;}
.y28{bottom:757.919697px;}
.ybb{bottom:759.359696px;}
.y183{bottom:759.539696px;}
.yda{bottom:762.599695px;}
.yb5{bottom:765.659694px;}
.y5b{bottom:766.019694px;}
.y14d{bottom:770.519692px;}
.y182{bottom:775.019690px;}
.y13d{bottom:776.459689px;}
.y10e{bottom:776.999689px;}
.yfa{bottom:777.179689px;}
.y5{bottom:782.199016px;}
.y27{bottom:784.919686px;}
.y181{bottom:791.219684px;}
.y121{bottom:791.759683px;}
.yc8{bottom:791.939683px;}
.y43{bottom:792.839683px;}
.yba{bottom:799.679680px;}
.y4{bottom:800.199016px;}
.y11e{bottom:802.919679px;}
.y5a{bottom:806.339677px;}
.y180{bottom:806.699677px;}
.y14c{bottom:810.839676px;}
.y26{bottom:811.739675px;}
.yd9{bottom:817.319673px;}
.yf9{bottom:817.499673px;}
.y17f{bottom:823.079671px;}
.y1a9{bottom:826.139670px;}
.y13c{bottom:831.179668px;}
.y105{bottom:831.899667px;}
.yc7{bottom:832.079667px;}
.y42{bottom:833.159667px;}
.y25{bottom:838.379665px;}
.y17e{bottom:838.559665px;}
.y1b2{bottom:839.279664px;}
.yb9{bottom:839.999664px;}
.y3{bottom:840.699016px;}
.ya8{bottom:846.299661px;}
.y59{bottom:846.659661px;}
.y17d{bottom:854.039658px;}
.y14b{bottom:854.579658px;}
.yd8{bottom:857.639657px;}
.y2{bottom:858.699016px;}
.y24{bottom:865.379654px;}
.y17c{bottom:870.419652px;}
.y13b{bottom:871.499651px;}
.y10d{bottom:872.219651px;}
.ye9{bottom:872.399651px;}
.y41{bottom:873.479651px;}
.yb8{bottom:880.319648px;}
.y17a{bottom:883.020600px;}
.y179{bottom:885.899646px;}
.y80{bottom:886.619645px;}
.yc6{bottom:886.799645px;}
.y58{bottom:886.979645px;}
.y23{bottom:896.159642px;}
.y11d{bottom:897.959641px;}
.y178{bottom:902.099639px;}
.y13a{bottom:911.819635px;}
.yd7{bottom:912.539635px;}
.y104{bottom:912.719635px;}
.y40{bottom:917.399633px;}
.y177{bottom:917.759633px;}
.yb7{bottom:920.639632px;}
.ye8{bottom:927.119629px;}
.y57{bottom:927.299629px;}
.y21{bottom:929.819628px;}
.y1{bottom:931.785016px;}
.y176{bottom:933.239627px;}
.y22{bottom:936.479625px;}
.y174{bottom:945.840600px;}
.y173{bottom:948.719621px;}
.y139{bottom:952.499619px;}
.y11c{bottom:952.859619px;}
.yd6{bottom:953.039619px;}
.y3f{bottom:956.819617px;}
.y1f{bottom:963.299615px;}
.yb6{bottom:964.379614px;}
.y172{bottom:965.099614px;}
.y8c{bottom:967.259613px;}
.y10c{bottom:967.439613px;}
.y56{bottom:967.619613px;}
.y20{bottom:969.959612px;}
.y171{bottom:980.579608px;}
.y3e{bottom:990.479604px;}
.yf8{bottom:993.359603px;}
.y170{bottom:996.059602px;}
.y1e{bottom:997.139601px;}
.yd5{bottom:1007.759597px;}
.y55{bottom:1007.939597px;}
.y16e{bottom:1008.660600px;}
.y16d{bottom:1011.539595px;}
.y3d{bottom:1024.139590px;}
.y16c{bottom:1027.919589px;}
.y1d{bottom:1038.359585px;}
.y16b{bottom:1043.399583px;}
.yf7{bottom:1048.079581px;}
.y54{bottom:1048.259581px;}
.y169{bottom:1056.000600px;}
.y3c{bottom:1057.619577px;}
.y168{bottom:1058.879576px;}
.y167{bottom:1075.259570px;}
.y1c{bottom:1085.339566px;}
.y53{bottom:1088.399565px;}
.y3b{bottom:1091.279563px;}
.y166{bottom:1091.459563px;}
.y165{bottom:1106.939557px;}
.y1b{bottom:1119.039463px;}
.y164{bottom:1122.599551px;}
.y163{bottom:1140.599544px;}
.h17{height:15.120000px;}
.hc{height:38.138109px;}
.h14{height:42.970289px;}
.h2{height:45.000000px;}
.hd{height:46.080723px;}
.h1a{height:52.971658px;}
.h16{height:52.998026px;}
.h18{height:54.421853px;}
.h8{height:55.101293px;}
.h10{height:57.057539px;}
.ha{height:57.085940px;}
.hb{height:58.619592px;}
.hf{height:60.664462px;}
.h3{height:62.818125px;}
.h15{height:66.757473px;}
.h11{height:68.778482px;}
.h13{height:70.626262px;}
.h1b{height:70.664034px;}
.h12{height:80.471613px;}
.h1{height:81.000000px;}
.h9{height:82.633537px;}
.h19{height:114.918001px;}
.h6{height:189.617533px;}
.he{height:343.896533px;}
.h5{height:713.197424px;}
.h0{height:1063.500000px;}
.h7{height:1154.997360px;}
.h4{height:1263.000000px;}
.w4{width:6.840000px;}
.w2{width:574.802767px;}
.w3{width:892.497960px;}
.w1{width:892.500000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x32{left:31.499987px;}
.x5{left:47.593227px;}
.x37{left:85.500000px;}
.x34{left:86.940000px;}
.x1{left:105.000000px;}
.x8{left:127.799941px;}
.x21{left:167.399933px;}
.x1f{left:169.739932px;}
.x2{left:174.078169px;}
.x35{left:180.359928px;}
.x7{left:190.800014px;}
.x31{left:200.519920px;}
.x24{left:217.619913px;}
.x25{left:223.559911px;}
.x29{left:243.719903px;}
.x9{left:256.679897px;}
.x15{left:260.819297px;}
.xa{left:268.739893px;}
.x30{left:274.319890px;}
.x4{left:281.241653px;}
.x3{left:291.969858px;}
.x16{left:299.159880px;}
.x17{left:304.019878px;}
.x36{left:307.979909px;}
.x6{left:326.505358px;}
.xb{left:345.599862px;}
.xc{left:350.639860px;}
.x22{left:360.719856px;}
.x23{left:366.659853px;}
.x27{left:380.159848px;}
.x28{left:383.039847px;}
.xd{left:410.039836px;}
.xe{left:414.899834px;}
.x26{left:445.319822px;}
.x1e{left:446.759996px;}
.x2e{left:448.919820px;}
.x18{left:450.899820px;}
.x2f{left:454.859818px;}
.x19{left:455.939818px;}
.x2a{left:470.159812px;}
.x2b{left:476.279809px;}
.xf{left:479.699808px;}
.x10{left:484.379806px;}
.x2c{left:488.879804px;}
.x2d{left:494.819802px;}
.x39{left:514.619794px;}
.x20{left:538.919784px;}
.x1a{left:542.159783px;}
.x1b{left:547.019781px;}
.x11{left:567.899773px;}
.x12{left:572.759771px;}
.x1c{left:627.659749px;}
.x1d{left:632.519747px;}
.x13{left:692.819723px;}
.x14{left:697.679721px;}
.x33{left:711.899623px;}
.x3a{left:729.179708px;}
.x38{left:788.399685px;}
@media print{
.v1{vertical-align:-10.879996pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:55.039978pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.102068pt;}
.lsc{letter-spacing:0.214077pt;}
.ls7{letter-spacing:0.361132pt;}
.ls1{letter-spacing:0.435869pt;}
.ls4{letter-spacing:0.550545pt;}
.ls9{letter-spacing:0.612883pt;}
.lsb{letter-spacing:0.640362pt;}
.ls8{letter-spacing:0.742441pt;}
.ls6{letter-spacing:1.716693pt;}
.ls5{letter-spacing:2.997439pt;}
.ls3{letter-spacing:3.637812pt;}
.ls2{letter-spacing:8.760690pt;}
.ws9{word-spacing:-48.401072pt;}
.wsa{word-spacing:-40.988295pt;}
.ws4{word-spacing:-34.596970pt;}
.ws3{word-spacing:-34.593886pt;}
.ws8{word-spacing:-18.220659pt;}
.ws7{word-spacing:-15.573060pt;}
.ws6{word-spacing:-12.925595pt;}
.wsb{word-spacing:-11.999995pt;}
.ws5{word-spacing:-8.409437pt;}
.ws2{word-spacing:0.000000pt;}
.ws1{word-spacing:268.800000pt;}
.ws0{word-spacing:298.453333pt;}
._4{margin-left:-13.942181pt;}
._16{margin-left:-13.018097pt;}
._11{margin-left:-2.260886pt;}
._6{margin-left:-1.189325pt;}
._7{width:0.918031pt;}
._f{width:1.964090pt;}
._d{width:3.287889pt;}
._a{width:4.573605pt;}
._9{width:5.564324pt;}
._12{width:6.457218pt;}
._c{width:7.574830pt;}
._b{width:8.930850pt;}
._e{width:9.921911pt;}
._8{width:11.170747pt;}
._19{width:12.109309pt;}
._10{width:13.016837pt;}
._5{width:13.945540pt;}
._13{width:16.729847pt;}
._1c{width:17.717624pt;}
._17{width:18.747660pt;}
._18{width:19.770989pt;}
._1d{width:20.696029pt;}
._14{width:22.426527pt;}
._15{width:23.352415pt;}
._1f{width:24.332180pt;}
._1b{width:25.224795pt;}
._1a{width:26.130974pt;}
._22{width:27.412680pt;}
._2{width:28.640000pt;}
._2c{width:29.660592pt;}
._1e{width:30.624869pt;}
._29{width:31.582279pt;}
._21{width:32.998538pt;}
._20{width:34.012972pt;}
._23{width:35.720093pt;}
._24{width:36.637005pt;}
._25{width:37.672342pt;}
._26{width:38.904706pt;}
._27{width:40.253918pt;}
._2e{width:41.248063pt;}
._32{width:42.753572pt;}
._38{width:44.414270pt;}
._37{width:45.356020pt;}
._2d{width:46.798315pt;}
._2b{width:47.897147pt;}
._2a{width:48.850427pt;}
._28{width:49.757040pt;}
._39{width:52.005391pt;}
._3a{width:52.912837pt;}
._40{width:55.682221pt;}
._3e{width:57.297021pt;}
._3{width:58.293333pt;}
._3d{width:63.913131pt;}
._35{width:69.676409pt;}
._36{width:70.596904pt;}
._4f{width:72.338771pt;}
._1{width:79.040000pt;}
._46{width:81.179466pt;}
._45{width:82.425595pt;}
._47{width:86.870525pt;}
._48{width:88.064621pt;}
._53{width:91.958735pt;}
._43{width:96.067210pt;}
._6d{width:101.315213pt;}
._4c{width:105.638541pt;}
._5a{width:113.413288pt;}
._3f{width:116.701100pt;}
._3b{width:118.028512pt;}
._3c{width:119.110464pt;}
._64{width:120.652355pt;}
._44{width:122.812930pt;}
._0{width:132.320000pt;}
._2f{width:140.094556pt;}
._30{width:141.308311pt;}
._67{width:160.221023pt;}
._33{width:165.934369pt;}
._5d{width:167.072174pt;}
._4a{width:168.351859pt;}
._49{width:169.591875pt;}
._34{width:183.771287pt;}
._68{width:193.381964pt;}
._41{width:199.779770pt;}
._42{width:201.400863pt;}
._58{width:213.350112pt;}
._61{width:214.959914pt;}
._62{width:221.413863pt;}
._69{width:223.295205pt;}
._52{width:230.122057pt;}
._56{width:242.004277pt;}
._51{width:244.692037pt;}
._6f{width:248.202884pt;}
._5c{width:250.020141pt;}
._6a{width:262.278945pt;}
._4e{width:263.767464pt;}
._54{width:270.044318pt;}
._70{width:280.842373pt;}
._63{width:288.718681pt;}
._57{width:299.386367pt;}
._6e{width:302.012361pt;}
._59{width:303.263173pt;}
._66{width:308.368352pt;}
._5b{width:315.408902pt;}
._55{width:317.567767pt;}
._50{width:320.255528pt;}
._60{width:340.692184pt;}
._6c{width:346.017894pt;}
._5e{width:358.033225pt;}
._65{width:359.313786pt;}
._5f{width:369.871003pt;}
._31{width:399.732435pt;}
._6b{width:408.236923pt;}
._4b{width:420.020800pt;}
._72{width:442.020303pt;}
._4d{width:500.631545pt;}
._71{width:517.583793pt;}
._73{width:630.926148pt;}
.fs6{font-size:33.637747pt;}
.fs7{font-size:41.735023pt;}
.fsc{font-size:47.999981pt;}
.fs5{font-size:51.702379pt;}
.fs1{font-size:53.333333pt;}
.fsa{font-size:57.307710pt;}
.fsb{font-size:58.879976pt;}
.fs9{font-size:62.292242pt;}
.fsd{font-size:63.999974pt;}
.fs3{font-size:72.320724pt;}
.fs4{font-size:72.882638pt;}
.fs0{font-size:96.000000pt;}
.fs2{font-size:248.873961pt;}
.fs8{font-size:311.464942pt;}
.y0{bottom:0.000000pt;}
.y16a{bottom:2.559090pt;}
.y16f{bottom:2.559107pt;}
.y175{bottom:2.559129pt;}
.y17b{bottom:2.559152pt;}
.y19{bottom:8.587101pt;}
.y1a{bottom:48.000000pt;}
.y1a7{bottom:123.466884pt;}
.y1a6{bottom:141.386610pt;}
.y15c{bottom:147.626608pt;}
.y133{bottom:149.066607pt;}
.y10b{bottom:150.346607pt;}
.ya7{bottom:152.106606pt;}
.y52{bottom:154.666605pt;}
.y1a5{bottom:155.306605pt;}
.y138{bottom:160.266603pt;}
.y126{bottom:160.426602pt;}
.y3a{bottom:164.106601pt;}
.yb3{bottom:166.346600pt;}
.y76{bottom:167.626600pt;}
.y1a4{bottom:169.706599pt;}
.ye7{bottom:173.066597pt;}
.y7f{bottom:173.546597pt;}
.yc5{bottom:177.386596pt;}
.y69{bottom:179.466595pt;}
.y15b{bottom:183.466593pt;}
.y162{bottom:184.106593pt;}
.y132{bottom:184.906593pt;}
.y14a{bottom:185.386593pt;}
.y10a{bottom:186.346592pt;}
.y9c{bottom:186.506592pt;}
.ya6{bottom:187.946591pt;}
.y51{bottom:190.346591pt;}
.y39{bottom:194.026589pt;}
.y125{bottom:196.106588pt;}
.y1a3{bottom:197.386588pt;}
.yf6{bottom:199.146587pt;}
.yb2{bottom:202.346586pt;}
.y75{bottom:203.466585pt;}
.y11a{bottom:208.906583pt;}
.ye6{bottom:209.066583pt;}
.y7e{bottom:209.386583pt;}
.y1a2{bottom:211.786582pt;}
.yc4{bottom:213.386581pt;}
.y68{bottom:215.306581pt;}
.y15a{bottom:219.306579pt;}
.y161{bottom:219.786579pt;}
.y131{bottom:220.746578pt;}
.y149{bottom:221.386578pt;}
.yd4{bottom:222.026578pt;}
.y109{bottom:222.186578pt;}
.y9b{bottom:222.346578pt;}
.ya5{bottom:223.786577pt;}
.y38{bottom:223.946577pt;}
.y1a1{bottom:225.546576pt;}
.y50{bottom:226.186576pt;}
.y116{bottom:231.786574pt;}
.y137{bottom:231.946574pt;}
.y1aa{bottom:234.026573pt;}
.yf5{bottom:235.146573pt;}
.yb1{bottom:238.186571pt;}
.y8b{bottom:238.986571pt;}
.y15{bottom:239.288005pt;}
.y74{bottom:239.306571pt;}
.y124{bottom:244.746569pt;}
.ye5{bottom:244.906569pt;}
.y7d{bottom:245.226569pt;}
.yc3{bottom:249.066567pt;}
.y82{bottom:250.826566pt;}
.y67{bottom:251.146566pt;}
.y16{bottom:251.609196pt;}
.y37{bottom:253.706565pt;}
.y1a0{bottom:253.866565pt;}
.y159{bottom:254.986565pt;}
.y14{bottom:255.288005pt;}
.y160{bottom:255.626564pt;}
.y130{bottom:256.586564pt;}
.y148{bottom:257.226564pt;}
.y103{bottom:257.866564pt;}
.yd3{bottom:258.026563pt;}
.y9a{bottom:258.186563pt;}
.ya3{bottom:259.626563pt;}
.y4f{bottom:262.026562pt;}
.ya4{bottom:266.666560pt;}
.y19f{bottom:267.626560pt;}
.y115{bottom:267.786560pt;}
.y13{bottom:271.288005pt;}
.y1ab{bottom:272.746558pt;}
.yb0{bottom:274.026557pt;}
.y73{bottom:275.146557pt;}
.y18{bottom:276.239967pt;}
.y8a{bottom:278.186555pt;}
.y136{bottom:280.586554pt;}
.ye4{bottom:280.746554pt;}
.y7c{bottom:281.066554pt;}
.y19e{bottom:282.186554pt;}
.y36{bottom:283.466553pt;}
.yf4{bottom:283.626553pt;}
.y81{bottom:286.666552pt;}
.y66{bottom:286.986552pt;}
.y12{bottom:287.288005pt;}
.y1ac{bottom:288.106551pt;}
.y17{bottom:288.529774pt;}
.y158{bottom:290.826550pt;}
.y15f{bottom:291.466550pt;}
.y12f{bottom:292.426550pt;}
.y147{bottom:293.066549pt;}
.y99{bottom:293.706549pt;}
.yed{bottom:293.866549pt;}
.ya2{bottom:295.306549pt;}
.y19d{bottom:295.946548pt;}
.yc2{bottom:297.706548pt;}
.y4e{bottom:297.866548pt;}
.y11{bottom:303.288005pt;}
.y114{bottom:303.626545pt;}
.yd2{bottom:306.666544pt;}
.y19c{bottom:309.706543pt;}
.yaf{bottom:309.866543pt;}
.y72{bottom:310.986542pt;}
.y35{bottom:313.386541pt;}
.y119{bottom:316.586540pt;}
.y7b{bottom:316.906540pt;}
.yf3{bottom:319.626539pt;}
.y8d{bottom:319.946539pt;}
.y9d{bottom:322.506538pt;}
.y65{bottom:322.826538pt;}
.y19b{bottom:323.466537pt;}
.y15e{bottom:324.906537pt;}
.y157{bottom:326.666536pt;}
.y12e{bottom:328.266535pt;}
.ye3{bottom:329.546535pt;}
.y102{bottom:329.706535pt;}
.y98{bottom:329.866535pt;}
.ya1{bottom:331.146534pt;}
.y4d{bottom:333.706533pt;}
.y19a{bottom:337.226532pt;}
.y146{bottom:341.706530pt;}
.yec{bottom:342.346530pt;}
.yd1{bottom:342.506530pt;}
.y34{bottom:343.146529pt;}
.yae{bottom:345.706528pt;}
.y71{bottom:346.826528pt;}
.y199{bottom:351.146526pt;}
.y113{bottom:352.266526pt;}
.y7a{bottom:352.426526pt;}
.y10{bottom:352.621338pt;}
.y89{bottom:352.746526pt;}
.yf2{bottom:355.466524pt;}
.y15d{bottom:358.506523pt;}
.y64{bottom:358.666523pt;}
.y156{bottom:362.506522pt;}
.y118{bottom:365.226521pt;}
.ye2{bottom:365.386521pt;}
.y97{bottom:365.546520pt;}
.ya0{bottom:366.986520pt;}
.yf{bottom:368.621338pt;}
.y4c{bottom:369.546519pt;}
.y33{bottom:373.066517pt;}
.y12d{bottom:376.906516pt;}
.y145{bottom:377.546516pt;}
.y101{bottom:378.186515pt;}
.yd0{bottom:378.346515pt;}
.y198{bottom:379.306515pt;}
.y1af{bottom:380.106515pt;}
.yad{bottom:381.546514pt;}
.y70{bottom:382.666514pt;}
.ye{bottom:384.621338pt;}
.y112{bottom:388.266511pt;}
.y88{bottom:388.586511pt;}
.yf1{bottom:391.306510pt;}
.y79{bottom:391.626510pt;}
.y197{bottom:393.866509pt;}
.y63{bottom:394.506509pt;}
.y1b0{bottom:394.666509pt;}
.y155{bottom:398.346507pt;}
.yd{bottom:400.621338pt;}
.y135{bottom:401.066506pt;}
.ye1{bottom:401.226506pt;}
.y96{bottom:401.386506pt;}
.y32{bottom:402.986505pt;}
.y1b1{bottom:403.466505pt;}
.y4b{bottom:405.386505pt;}
.y9f{bottom:406.026504pt;}
.y196{bottom:407.626504pt;}
.y12c{bottom:412.746502pt;}
.y144{bottom:413.386501pt;}
.y134{bottom:414.026501pt;}
.yeb{bottom:414.186501pt;}
.y1ad{bottom:417.066500pt;}
.yac{bottom:417.386500pt;}
.yc1{bottom:418.186499pt;}
.y6f{bottom:418.346499pt;}
.y195{bottom:421.386498pt;}
.y87{bottom:424.266497pt;}
.ycf{bottom:426.986496pt;}
.yf0{bottom:427.146496pt;}
.y62{bottom:430.186495pt;}
.y31{bottom:432.746494pt;}
.y154{bottom:434.186493pt;}
.y194{bottom:435.306493pt;}
.y111{bottom:436.906492pt;}
.ye0{bottom:437.066492pt;}
.y95{bottom:437.226492pt;}
.y4a{bottom:441.226490pt;}
.y9e{bottom:447.626488pt;}
.y12b{bottom:448.586487pt;}
.y193{bottom:449.066487pt;}
.y117{bottom:449.866487pt;}
.y100{bottom:450.026487pt;}
.yab{bottom:453.066485pt;}
.y6e{bottom:454.186485pt;}
.yc{bottom:459.288014pt;}
.y86{bottom:460.106483pt;}
.y143{bottom:462.186482pt;}
.y30{bottom:462.666482pt;}
.yea{bottom:462.826482pt;}
.yce{bottom:462.986481pt;}
.y192{bottom:463.466481pt;}
.yb4{bottom:465.706480pt;}
.y61{bottom:466.026480pt;}
.y153{bottom:470.026479pt;}
.y110{bottom:472.906478pt;}
.y94{bottom:473.066477pt;}
.y49{bottom:476.906476pt;}
.y191{bottom:477.226476pt;}
.y12a{bottom:484.426473pt;}
.yb{bottom:484.621348pt;}
.ydf{bottom:485.706472pt;}
.yff{bottom:485.866472pt;}
.yaa{bottom:488.906471pt;}
.y6d{bottom:490.026471pt;}
.y190{bottom:491.146470pt;}
.y2f{bottom:492.586470pt;}
.y85{bottom:495.946468pt;}
.y142{bottom:498.186467pt;}
.y122{bottom:498.666467pt;}
.ycd{bottom:498.826467pt;}
.y60{bottom:501.866466pt;}
.y18f{bottom:504.906465pt;}
.y152{bottom:505.706464pt;}
.y93{bottom:506.826464pt;}
.y92{bottom:508.906463pt;}
.ya{bottom:509.954681pt;}
.yef{bottom:511.626462pt;}
.y18e{bottom:518.666459pt;}
.y10f{bottom:521.546458pt;}
.yde{bottom:521.706458pt;}
.y2e{bottom:522.346458pt;}
.y48{bottom:525.706456pt;}
.y6c{bottom:525.866456pt;}
.y1b3{bottom:528.106455pt;}
.y84{bottom:531.786454pt;}
.y129{bottom:533.066453pt;}
.y18d{bottom:533.226453pt;}
.y141{bottom:534.026453pt;}
.yfe{bottom:534.506453pt;}
.y108{bottom:534.666453pt;}
.ybf{bottom:534.826453pt;}
.y1a8{bottom:535.786452pt;}
.ya9{bottom:537.546452pt;}
.y5f{bottom:537.706452pt;}
.y151{bottom:541.546450pt;}
.y91{bottom:544.746449pt;}
.y18c{bottom:546.986448pt;}
.ycc{bottom:547.466448pt;}
.yee{bottom:547.626448pt;}
.y2d{bottom:552.106446pt;}
.y9{bottom:552.621348pt;}
.ydd{bottom:557.546444pt;}
.y18b{bottom:560.746442pt;}
.y47{bottom:561.706442pt;}
.y6b{bottom:564.746441pt;}
.ybe{bottom:567.626440pt;}
.y128{bottom:569.386439pt;}
.y140{bottom:569.706439pt;}
.y123{bottom:570.186439pt;}
.yfd{bottom:570.346439pt;}
.y83{bottom:570.666438pt;}
.y5e{bottom:573.546437pt;}
.y1ae{bottom:574.826437pt;}
.y18a{bottom:575.146437pt;}
.y150{bottom:577.386436pt;}
.y2c{bottom:578.186435pt;}
.y90{bottom:580.586434pt;}
.y11b{bottom:583.306433pt;}
.ycb{bottom:583.466433pt;}
.y189{bottom:589.066431pt;}
.y120{bottom:593.226429pt;}
.y8{bottom:595.288014pt;}
.y46{bottom:597.546428pt;}
.y2b{bottom:602.186426pt;}
.y188{bottom:602.826426pt;}
.ybd{bottom:603.466425pt;}
.y13f{bottom:605.546424pt;}
.y127{bottom:605.706424pt;}
.ydc{bottom:606.026424pt;}
.yfc{bottom:606.186424pt;}
.yc0{bottom:606.506424pt;}
.y6a{bottom:606.986424pt;}
.y5d{bottom:609.386423pt;}
.y14f{bottom:613.226421pt;}
.y78{bottom:616.426420pt;}
.y187{bottom:616.586420pt;}
.y107{bottom:619.146419pt;}
.yca{bottom:619.306419pt;}
.y7{bottom:620.621348pt;}
.y1b4{bottom:624.906417pt;}
.y2a{bottom:626.026416pt;}
.y186{bottom:630.346415pt;}
.y8f{bottom:631.626414pt;}
.y45{bottom:633.386413pt;}
.ybc{bottom:639.306411pt;}
.y11f{bottom:641.866410pt;}
.ydb{bottom:642.026410pt;}
.y5c{bottom:645.226409pt;}
.y6{bottom:645.954681pt;}
.y185{bottom:647.466408pt;}
.y14e{bottom:649.066407pt;}
.y29{bottom:649.866407pt;}
.y77{bottom:652.266406pt;}
.y13e{bottom:654.186405pt;}
.yfb{bottom:654.826405pt;}
.y106{bottom:654.986405pt;}
.y184{bottom:661.226402pt;}
.y8e{bottom:665.386401pt;}
.yc9{bottom:667.946399pt;}
.y44{bottom:668.906399pt;}
.y28{bottom:673.706397pt;}
.ybb{bottom:674.986397pt;}
.y183{bottom:675.146397pt;}
.yda{bottom:677.866396pt;}
.yb5{bottom:680.586394pt;}
.y5b{bottom:680.906394pt;}
.y14d{bottom:684.906393pt;}
.y182{bottom:688.906391pt;}
.y13d{bottom:690.186391pt;}
.y10e{bottom:690.666390pt;}
.yfa{bottom:690.826390pt;}
.y5{bottom:695.288014pt;}
.y27{bottom:697.706388pt;}
.y181{bottom:703.306385pt;}
.y121{bottom:703.786385pt;}
.yc8{bottom:703.946385pt;}
.y43{bottom:704.746385pt;}
.yba{bottom:710.826382pt;}
.y4{bottom:711.288014pt;}
.y11e{bottom:713.706381pt;}
.y5a{bottom:716.746380pt;}
.y180{bottom:717.066380pt;}
.y14c{bottom:720.746378pt;}
.y26{bottom:721.546378pt;}
.yd9{bottom:726.506376pt;}
.yf9{bottom:726.666376pt;}
.y17f{bottom:731.626374pt;}
.y1a9{bottom:734.346373pt;}
.y13c{bottom:738.826371pt;}
.y105{bottom:739.466371pt;}
.yc7{bottom:739.626371pt;}
.y42{bottom:740.586370pt;}
.y25{bottom:745.226369pt;}
.y17e{bottom:745.386369pt;}
.y1b2{bottom:746.026368pt;}
.yb9{bottom:746.666368pt;}
.y3{bottom:747.288014pt;}
.ya8{bottom:752.266366pt;}
.y59{bottom:752.586366pt;}
.y17d{bottom:759.146363pt;}
.y14b{bottom:759.626363pt;}
.yd8{bottom:762.346362pt;}
.y2{bottom:763.288014pt;}
.y24{bottom:769.226359pt;}
.y17c{bottom:773.706357pt;}
.y13b{bottom:774.666357pt;}
.y10d{bottom:775.306357pt;}
.ye9{bottom:775.466356pt;}
.y41{bottom:776.426356pt;}
.yb8{bottom:782.506354pt;}
.y17a{bottom:784.907200pt;}
.y179{bottom:787.466352pt;}
.y80{bottom:788.106351pt;}
.yc6{bottom:788.266351pt;}
.y58{bottom:788.426351pt;}
.y23{bottom:796.586348pt;}
.y11d{bottom:798.186347pt;}
.y178{bottom:801.866346pt;}
.y13a{bottom:810.506342pt;}
.yd7{bottom:811.146342pt;}
.y104{bottom:811.306342pt;}
.y40{bottom:815.466340pt;}
.y177{bottom:815.786340pt;}
.yb7{bottom:818.346339pt;}
.ye8{bottom:824.106337pt;}
.y57{bottom:824.266337pt;}
.y21{bottom:826.506336pt;}
.y1{bottom:828.253348pt;}
.y176{bottom:829.546335pt;}
.y22{bottom:832.426334pt;}
.y174{bottom:840.747200pt;}
.y173{bottom:843.306329pt;}
.y139{bottom:846.666328pt;}
.y11c{bottom:846.986328pt;}
.yd6{bottom:847.146328pt;}
.y3f{bottom:850.506326pt;}
.y1f{bottom:856.266324pt;}
.yb6{bottom:857.226324pt;}
.y172{bottom:857.866324pt;}
.y8c{bottom:859.786323pt;}
.y10c{bottom:859.946323pt;}
.y56{bottom:860.106323pt;}
.y20{bottom:862.186322pt;}
.y171{bottom:871.626318pt;}
.y3e{bottom:880.426314pt;}
.yf8{bottom:882.986313pt;}
.y170{bottom:885.386313pt;}
.y1e{bottom:886.346312pt;}
.yd5{bottom:895.786308pt;}
.y55{bottom:895.946308pt;}
.y16e{bottom:896.587200pt;}
.y16d{bottom:899.146307pt;}
.y3d{bottom:910.346303pt;}
.y16c{bottom:913.706301pt;}
.y1d{bottom:922.986297pt;}
.y16b{bottom:927.466296pt;}
.yf7{bottom:931.626294pt;}
.y54{bottom:931.786294pt;}
.y169{bottom:938.667200pt;}
.y3c{bottom:940.106291pt;}
.y168{bottom:941.226290pt;}
.y167{bottom:955.786284pt;}
.y1c{bottom:964.746281pt;}
.y53{bottom:967.466280pt;}
.y3b{bottom:970.026279pt;}
.y166{bottom:970.186279pt;}
.y165{bottom:983.946273pt;}
.y1b{bottom:994.701745pt;}
.y164{bottom:997.866268pt;}
.y163{bottom:1013.866261pt;}
.h17{height:13.440000pt;}
.hc{height:33.900541pt;}
.h14{height:38.195813pt;}
.h2{height:40.000000pt;}
.hd{height:40.960643pt;}
.h1a{height:47.085919pt;}
.h16{height:47.109356pt;}
.h18{height:48.374981pt;}
.h8{height:48.978928pt;}
.h10{height:50.717813pt;}
.ha{height:50.743058pt;}
.hb{height:52.106304pt;}
.hf{height:53.923966pt;}
.h3{height:55.838333pt;}
.h15{height:59.339976pt;}
.h11{height:61.136429pt;}
.h13{height:62.778900pt;}
.h1b{height:62.812475pt;}
.h12{height:71.530323pt;}
.h1{height:72.000000pt;}
.h9{height:73.452033pt;}
.h19{height:102.149334pt;}
.h6{height:168.548918pt;}
.he{height:305.685807pt;}
.h5{height:633.953266pt;}
.h0{height:945.333333pt;}
.h7{height:1026.664320pt;}
.h4{height:1122.666667pt;}
.w4{width:6.080000pt;}
.w2{width:510.935793pt;}
.w3{width:793.331520pt;}
.w1{width:793.333333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x32{left:27.999989pt;}
.x5{left:42.305090pt;}
.x37{left:76.000000pt;}
.x34{left:77.280000pt;}
.x1{left:93.333333pt;}
.x8{left:113.599948pt;}
.x21{left:148.799940pt;}
.x1f{left:150.879940pt;}
.x2{left:154.736150pt;}
.x35{left:160.319936pt;}
.x7{left:169.600012pt;}
.x31{left:178.239929pt;}
.x24{left:193.439923pt;}
.x25{left:198.719921pt;}
.x29{left:216.639913pt;}
.x9{left:228.159909pt;}
.x15{left:231.839375pt;}
.xa{left:238.879904pt;}
.x30{left:243.839902pt;}
.x4{left:249.992580pt;}
.x3{left:259.528762pt;}
.x16{left:265.919894pt;}
.x17{left:270.239892pt;}
.x36{left:273.759919pt;}
.x6{left:290.226985pt;}
.xb{left:307.199877pt;}
.xc{left:311.679875pt;}
.x22{left:320.639872pt;}
.x23{left:325.919870pt;}
.x27{left:337.919865pt;}
.x28{left:340.479864pt;}
.xd{left:364.479854pt;}
.xe{left:368.799852pt;}
.x26{left:395.839842pt;}
.x1e{left:397.119997pt;}
.x2e{left:399.039840pt;}
.x18{left:400.799840pt;}
.x2f{left:404.319838pt;}
.x19{left:405.279838pt;}
.x2a{left:417.919833pt;}
.x2b{left:423.359831pt;}
.xf{left:426.399829pt;}
.x10{left:430.559828pt;}
.x2c{left:434.559826pt;}
.x2d{left:439.839824pt;}
.x39{left:457.439817pt;}
.x20{left:479.039808pt;}
.x1a{left:481.919807pt;}
.x1b{left:486.239806pt;}
.x11{left:504.799798pt;}
.x12{left:509.119796pt;}
.x1c{left:557.919777pt;}
.x1d{left:562.239775pt;}
.x13{left:615.839754pt;}
.x14{left:620.159752pt;}
.x33{left:632.799665pt;}
.x3a{left:648.159741pt;}
.x38{left:700.799720pt;}
}




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