
    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_769f5da8b360e877a909790f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.715000;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_52bc24d4727d5ac90685ad0e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.713000;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_34b7d3e1b6d2d8cf7086405e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2c36c24aa7290c515db1ee4b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.068000;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_c1728103197c3b902e6c1fa7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.575000;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_0a587c2a438d97357a0f5c92.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.575000;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_8b9e47db6b270733202e28b2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d45eddfca0dbc2695d51de92.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d0030ef299c50a00bda58718.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.677734;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_14228041e9c763cb3a942c4a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.766602;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_44f98a14384bf51e048d5082.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_055b61dd3cd95a52c5a88e7e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.277000;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_6cecbe907b3bb746245b60d1.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.863770;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_8d1f9ba96f5e9f9821ca314b.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_d637afdfd35e7db7cc0f9adf.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_c31c2f37214d4f11920327b1.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.895996;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_f60b66aaa30a39e219623e56.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_0cc9e5e6019ac89d11053ce4.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.575000;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_01dd73c17e781b7a9e4d0042.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.088379;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_30d01897a1feb7f809f27277.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.960449;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_819c4a99c37b47afb7556109.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_2b748e382ac929d9c1407f3c.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.575000;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_3358fc903f7d4418be2db859.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_2d1aedf0cc1b1e52a62e23ea.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.575000;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_7c00d4c4271ac029c60d1cb6.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.575000;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_3e4748beca0adee6ae5fc565.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_86b1c7a15d99fdc1c81d4e65.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.112305;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls48{letter-spacing:-0.531000px;}
.ls2f{letter-spacing:-0.472500px;}
.ls32{letter-spacing:-0.428400px;}
.ls33{letter-spacing:-0.340200px;}
.ls41{letter-spacing:-0.324000px;}
.ls2a{letter-spacing:-0.233100px;}
.ls35{letter-spacing:-0.176400px;}
.ls40{letter-spacing:-0.171000px;}
.ls3e{letter-spacing:-0.144000px;}
.ls45{letter-spacing:-0.135000px;}
.ls42{letter-spacing:-0.117000px;}
.ls2e{letter-spacing:-0.107100px;}
.ls37{letter-spacing:-0.100800px;}
.ls3a{letter-spacing:-0.099000px;}
.ls30{letter-spacing:-0.088200px;}
.ls2c{letter-spacing:-0.081900px;}
.ls46{letter-spacing:-0.081000px;}
.ls34{letter-spacing:-0.069300px;}
.ls31{letter-spacing:-0.063000px;}
.ls2b{letter-spacing:-0.056700px;}
.ls28{letter-spacing:-0.050400px;}
.ls38{letter-spacing:-0.044100px;}
.ls8{letter-spacing:-0.038401px;}
.ls25{letter-spacing:-0.037800px;}
.ls36{letter-spacing:-0.031500px;}
.ls26{letter-spacing:-0.025200px;}
.ls6{letter-spacing:-0.024687px;}
.ls24{letter-spacing:-0.018900px;}
.lsb{letter-spacing:-0.018000px;}
.ls27{letter-spacing:-0.012600px;}
.ls7{letter-spacing:-0.012343px;}
.ls4{letter-spacing:-0.008229px;}
.ls29{letter-spacing:-0.006300px;}
.ls5{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.006300px;}
.ls17{letter-spacing:0.012600px;}
.lsd{letter-spacing:0.018900px;}
.ls1{letter-spacing:0.019201px;}
.ls1b{letter-spacing:0.025200px;}
.ls43{letter-spacing:0.027000px;}
.ls23{letter-spacing:0.031500px;}
.ls3b{letter-spacing:0.036000px;}
.ls3{letter-spacing:0.037030px;}
.ls16{letter-spacing:0.037800px;}
.ls0{letter-spacing:0.038401px;}
.ls15{letter-spacing:0.044100px;}
.ls47{letter-spacing:0.045000px;}
.ls2{letter-spacing:0.048002px;}
.ls10{letter-spacing:0.056700px;}
.lsa{letter-spacing:0.057600px;}
.ls9{letter-spacing:0.057602px;}
.ls12{letter-spacing:0.063000px;}
.ls1e{letter-spacing:0.069300px;}
.ls11{letter-spacing:0.075600px;}
.ls1c{letter-spacing:0.081900px;}
.ls44{letter-spacing:0.099000px;}
.ls21{letter-spacing:0.100800px;}
.ls2d{letter-spacing:0.119700px;}
.ls3d{letter-spacing:0.135000px;}
.ls20{letter-spacing:0.138600px;}
.ls22{letter-spacing:0.144900px;}
.ls19{letter-spacing:0.151200px;}
.ls1d{letter-spacing:0.157500px;}
.lsf{letter-spacing:0.162000px;}
.ls13{letter-spacing:0.163800px;}
.lse{letter-spacing:0.176400px;}
.ls14{letter-spacing:0.182700px;}
.lsc{letter-spacing:0.189000px;}
.ls1a{letter-spacing:0.201600px;}
.ls1f{letter-spacing:0.226800px;}
.ls3c{letter-spacing:0.270000px;}
.ls49{letter-spacing:0.396000px;}
.ls3f{letter-spacing:0.423000px;}
.ls39{letter-spacing:4.410000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(249,252,231),0 0.015em rgb(249,252,231),0.015em 0 rgb(249,252,231),0 -0.015em  rgb(249,252,231);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(249,252,231);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws11{word-spacing:-63.000000px;}
.ws20{word-spacing:-30.744000px;}
.ws26{word-spacing:-30.718800px;}
.ws1{word-spacing:-28.019336px;}
.ws0{word-spacing:-18.768704px;}
.ws33{word-spacing:-17.415000px;}
.ws38{word-spacing:-15.624000px;}
.ws37{word-spacing:-14.427000px;}
.ws3d{word-spacing:-14.400000px;}
.ws34{word-spacing:-14.364000px;}
.ws40{word-spacing:-14.346000px;}
.ws3c{word-spacing:-14.337000px;}
.ws36{word-spacing:-14.301000px;}
.ws39{word-spacing:-14.256000px;}
.ws3a{word-spacing:-14.238000px;}
.ws3f{word-spacing:-14.220000px;}
.ws32{word-spacing:-14.202000px;}
.ws3b{word-spacing:-14.184000px;}
.ws3e{word-spacing:-14.166000px;}
.ws35{word-spacing:-14.157000px;}
.ws41{word-spacing:-13.896000px;}
.wsb{word-spacing:-12.911760px;}
.wsd{word-spacing:-12.204000px;}
.wsc{word-spacing:-12.186000px;}
.ws1b{word-spacing:-0.182700px;}
.ws30{word-spacing:-0.163800px;}
.ws2b{word-spacing:-0.144900px;}
.ws1d{word-spacing:-0.138600px;}
.ws2a{word-spacing:-0.132300px;}
.ws1e{word-spacing:-0.126000px;}
.ws1a{word-spacing:-0.119700px;}
.ws21{word-spacing:-0.107100px;}
.ws23{word-spacing:-0.100800px;}
.ws31{word-spacing:-0.094500px;}
.ws29{word-spacing:-0.088200px;}
.ws17{word-spacing:-0.081900px;}
.ws24{word-spacing:-0.075600px;}
.ws27{word-spacing:-0.069300px;}
.wsf{word-spacing:-0.063000px;}
.wsa{word-spacing:-0.057602px;}
.ws15{word-spacing:-0.056700px;}
.ws13{word-spacing:-0.050400px;}
.wse{word-spacing:-0.044100px;}
.ws3{word-spacing:-0.038401px;}
.ws12{word-spacing:-0.037800px;}
.ws6{word-spacing:-0.037030px;}
.ws2e{word-spacing:-0.031500px;}
.ws10{word-spacing:-0.025200px;}
.ws4{word-spacing:-0.019201px;}
.ws2f{word-spacing:-0.018900px;}
.ws14{word-spacing:-0.012600px;}
.ws18{word-spacing:-0.006300px;}
.ws5{word-spacing:0.000000px;}
.ws2c{word-spacing:0.006300px;}
.ws2{word-spacing:0.008229px;}
.ws8{word-spacing:0.012343px;}
.ws19{word-spacing:0.018900px;}
.ws7{word-spacing:0.024687px;}
.ws22{word-spacing:0.025200px;}
.ws9{word-spacing:0.038401px;}
.ws1c{word-spacing:0.044100px;}
.ws2d{word-spacing:0.113400px;}
.ws16{word-spacing:0.170100px;}
.ws28{word-spacing:0.277200px;}
.ws25{word-spacing:0.365400px;}
.ws1f{word-spacing:0.409500px;}
._4{margin-left:-10.738688px;}
._5{margin-left:-8.319398px;}
._2{margin-left:-5.060761px;}
._7{margin-left:-4.031984px;}
._6{margin-left:-2.888337px;}
._0{margin-left:-1.061526px;}
._1{width:1.113642px;}
._3{width:2.172424px;}
._8{width:3.484767px;}
._e{width:4.536000px;}
._b{width:5.972400px;}
._9{width:7.678800px;}
._a{width:9.067821px;}
._11{width:10.907252px;}
._1e{width:11.965520px;}
._d{width:13.319526px;}
._c{width:14.364000px;}
._1b{width:16.191000px;}
._21{width:17.199000px;}
._13{width:18.684000px;}
._14{width:19.764000px;}
._16{width:21.060000px;}
._f{width:22.302000px;}
._22{width:23.310000px;}
._10{width:25.056000px;}
._12{width:26.102358px;}
._18{width:27.162000px;}
._19{width:28.329642px;}
._15{width:29.970000px;}
._2b{width:31.311000px;}
._27{width:32.319000px;}
._28{width:33.516000px;}
._2f{width:34.650000px;}
._31{width:36.720000px;}
._17{width:38.142000px;}
._2c{width:41.643000px;}
._2d{width:42.654000px;}
._25{width:44.831526px;}
._30{width:49.707000px;}
._20{width:57.935526px;}
._24{width:60.959149px;}
._1a{width:63.396000px;}
._1d{width:65.517809px;}
._1f{width:68.116400px;}
._26{width:69.574200px;}
._1c{width:88.388358px;}
._33{width:89.574209px;}
._29{width:219.051000px;}
._2e{width:230.013000px;}
._32{width:235.683000px;}
._34{width:384.174000px;}
._2a{width:1184.749085px;}
._23{width:1277.769000px;}
.fc9{color:rgb(5,99,193);}
.fc8{color:rgb(0,0,255);}
.fc7{color:rgb(34,34,34);}
.fc6{color:rgb(0,0,0);}
.fc4{color:rgb(35,31,32);}
.fc3{color:rgb(245,245,245);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(246,230,199);}
.fc5{color:rgb(152,72,6);}
.fc0{color:rgb(24,22,21);}
.fsb{font-size:47.880000px;}
.fs8{font-size:54.000000px;}
.fs6{font-size:56.880000px;}
.fs9{font-size:60.000000px;}
.fs5{font-size:63.000000px;}
.fs7{font-size:65.880000px;}
.fsa{font-size:72.000000px;}
.fs0{font-size:82.288800px;}
.fs1{font-size:96.003600px;}
.fs3{font-size:123.433200px;}
.fs4{font-size:141.120000px;}
.fs2{font-size:329.155200px;}
.y0{bottom:0.000000px;}
.y35{bottom:3.600000px;}
.y2c{bottom:3.690000px;}
.y56{bottom:4.095000px;}
.y31{bottom:6.030000px;}
.y41{bottom:8.730000px;}
.y34{bottom:20.070000px;}
.y45{bottom:20.160000px;}
.y2b{bottom:20.190000px;}
.y30{bottom:22.500000px;}
.y40{bottom:25.200000px;}
.y33{bottom:36.540000px;}
.y44{bottom:36.630000px;}
.y2a{bottom:36.660000px;}
.y55{bottom:37.500091px;}
.y3{bottom:37.618470px;}
.y2f{bottom:38.970000px;}
.y38{bottom:53.010000px;}
.y29{bottom:53.130000px;}
.y8e{bottom:56.970000px;}
.y2{bottom:66.419550px;}
.y3d{bottom:69.480000px;}
.y111{bottom:91.260000px;}
.yf8{bottom:92.160000px;}
.y12d{bottom:92.520000px;}
.y53{bottom:95.400000px;}
.y185{bottom:97.920000px;}
.yb1{bottom:98.100000px;}
.yd5{bottom:99.090000px;}
.y147{bottom:101.700000px;}
.y150{bottom:103.590000px;}
.y16b{bottom:108.000000px;}
.y1e8{bottom:112.230000px;}
.y110{bottom:112.500000px;}
.yf7{bottom:113.400000px;}
.y195{bottom:114.030000px;}
.y12c{bottom:115.470000px;}
.y8b{bottom:117.720000px;}
.y184{bottom:119.160000px;}
.yb0{bottom:119.340000px;}
.y1cb{bottom:120.960000px;}
.yd4{bottom:121.770000px;}
.y146{bottom:124.650000px;}
.y1b1{bottom:125.280000px;}
.y14f{bottom:126.450000px;}
.y16a{bottom:129.240000px;}
.y54{bottom:132.030000px;}
.y4{bottom:132.181200px;}
.y10f{bottom:133.740000px;}
.yf6{bottom:134.640000px;}
.y1e7{bottom:134.820000px;}
.y194{bottom:136.800000px;}
.y12b{bottom:138.420000px;}
.y8a{bottom:138.960000px;}
.y183{bottom:140.400000px;}
.yaf{bottom:140.580000px;}
.y1ca{bottom:143.640000px;}
.yd3{bottom:144.450000px;}
.y1{bottom:144.593700px;}
.y51{bottom:146.340000px;}
.y145{bottom:147.600000px;}
.y1b0{bottom:148.140000px;}
.y14e{bottom:149.400000px;}
.y169{bottom:150.480000px;}
.y5{bottom:152.753700px;}
.y10e{bottom:154.980000px;}
.yf5{bottom:155.880000px;}
.y1e6{bottom:157.590000px;}
.y193{bottom:159.570000px;}
.y89{bottom:160.200000px;}
.y12a{bottom:161.370000px;}
.y182{bottom:161.640000px;}
.yae{bottom:161.820000px;}
.yd2{bottom:167.130000px;}
.y144{bottom:170.550000px;}
.y168{bottom:171.720000px;}
.y14d{bottom:172.350000px;}
.y10d{bottom:176.220000px;}
.y192{bottom:182.280000px;}
.y181{bottom:182.910000px;}
.y52{bottom:183.000000px;}
.yad{bottom:183.090000px;}
.yf4{bottom:186.150000px;}
.y1e5{bottom:189.390000px;}
.yd1{bottom:189.840000px;}
.y88{bottom:190.470000px;}
.y167{bottom:192.990000px;}
.y143{bottom:193.440000px;}
.y129{bottom:194.340000px;}
.y14c{bottom:195.330000px;}
.y4f{bottom:197.310000px;}
.y10c{bottom:197.490000px;}
.y1c9{bottom:198.210000px;}
.y1af{bottom:202.710000px;}
.y180{bottom:204.150000px;}
.yf3{bottom:207.390000px;}
.y87{bottom:211.710000px;}
.y1e4{bottom:212.160000px;}
.yd0{bottom:212.430000px;}
.y191{bottom:212.520000px;}
.yac{bottom:213.330000px;}
.y17{bottom:213.690000px;}
.y166{bottom:214.230000px;}
.y142{bottom:216.390000px;}
.y14b{bottom:218.190000px;}
.y10b{bottom:218.730000px;}
.y1c8{bottom:221.160000px;}
.y1ae{bottom:225.570000px;}
.yf2{bottom:228.630000px;}
.y128{bottom:230.250000px;}
.y86{bottom:232.950000px;}
.y50{bottom:233.940000px;}
.y17f{bottom:234.390000px;}
.yab{bottom:234.570000px;}
.y1e3{bottom:235.020000px;}
.ycf{bottom:235.110000px;}
.y16{bottom:235.470000px;}
.y141{bottom:239.340000px;}
.y190{bottom:243.570000px;}
.y1c7{bottom:243.930000px;}
.y165{bottom:244.470000px;}
.y4d{bottom:248.250000px;}
.yf1{bottom:249.870000px;}
.y10a{bottom:251.760000px;}
.y70{bottom:252.952500px;}
.y85{bottom:254.190000px;}
.y17e{bottom:255.630000px;}
.yaa{bottom:255.810000px;}
.y1ad{bottom:257.160000px;}
.y15{bottom:257.250000px;}
.yce{bottom:257.790000px;}
.y1e2{bottom:257.880000px;}
.y140{bottom:262.290000px;}
.y127{bottom:265.080000px;}
.y1c6{bottom:266.610000px;}
.yf0{bottom:271.110000px;}
.y6f{bottom:272.214750px;}
.y4e{bottom:273.450000px;}
.y164{bottom:274.710000px;}
.y84{bottom:275.430000px;}
.y18f{bottom:276.690000px;}
.y17d{bottom:276.960000px;}
.ya9{bottom:277.050000px;}
.y1ac{bottom:279.930000px;}
.y14a{bottom:280.380000px;}
.y4b{bottom:287.760000px;}
.y126{bottom:288.030000px;}
.ycd{bottom:289.470000px;}
.y1e1{bottom:289.560000px;}
.y6e{bottom:291.382500px;}
.yef{bottom:292.440000px;}
.y13f{bottom:294.150000px;}
.y83{bottom:296.670000px;}
.y18e{bottom:297.930000px;}
.y17c{bottom:298.200000px;}
.ya8{bottom:298.290000px;}
.y1c5{bottom:298.380000px;}
.y1ab{bottom:302.700000px;}
.y163{bottom:305.490000px;}
.y125{bottom:310.890000px;}
.ycc{bottom:312.150000px;}
.y1e0{bottom:312.420000px;}
.yee{bottom:313.680000px;}
.y6d{bottom:315.142500px;}
.y82{bottom:317.910000px;}
.y18d{bottom:319.170000px;}
.y17b{bottom:319.440000px;}
.ya7{bottom:319.530000px;}
.y109{bottom:320.790000px;}
.y1c4{bottom:321.240000px;}
.y13e{bottom:324.480000px;}
.y4c{bottom:324.508500px;}
.y1aa{bottom:325.380000px;}
.y124{bottom:333.840000px;}
.ycb{bottom:334.740000px;}
.yed{bottom:334.920000px;}
.y1df{bottom:335.100000px;}
.y162{bottom:335.730000px;}
.y49{bottom:338.700000px;}
.y6c{bottom:338.812500px;}
.y18c{bottom:340.410000px;}
.y17a{bottom:340.680000px;}
.ya6{bottom:340.770000px;}
.y81{bottom:348.150000px;}
.y108{bottom:351.030000px;}
.y13d{bottom:351.300000px;}
.y1c3{bottom:353.100000px;}
.yec{bottom:356.160000px;}
.y123{bottom:356.790000px;}
.y1a9{bottom:357.150000px;}
.yca{bottom:357.420000px;}
.y18b{bottom:361.740000px;}
.y179{bottom:361.920000px;}
.ya5{bottom:362.010000px;}
.y6b{bottom:362.572500px;}
.y161{bottom:366.060000px;}
.y1de{bottom:366.780000px;}
.y80{bottom:369.390000px;}
.y107{bottom:372.270000px;}
.y4a{bottom:375.330000px;}
.y1c2{bottom:375.780000px;}
.yeb{bottom:377.400000px;}
.y1a8{bottom:380.010000px;}
.yc9{bottom:380.100000px;}
.y18a{bottom:382.980000px;}
.y178{bottom:383.160000px;}
.ya4{bottom:383.340000px;}
.y6a{bottom:386.240250px;}
.y47{bottom:389.640000px;}
.y7f{bottom:390.630000px;}
.y106{bottom:393.510000px;}
.y160{bottom:396.300000px;}
.yea{bottom:398.640000px;}
.y122{bottom:402.600000px;}
.yc8{bottom:402.780000px;}
.y1a7{bottom:402.870000px;}
.y189{bottom:404.220000px;}
.y177{bottom:404.400000px;}
.ya3{bottom:404.580000px;}
.y69{bottom:405.502500px;}
.y7e{bottom:411.960000px;}
.y105{bottom:414.750000px;}
.y1c1{bottom:421.230000px;}
.y1dd{bottom:421.320000px;}
.yc7{bottom:425.460000px;}
.y121{bottom:425.550000px;}
.y176{bottom:425.640000px;}
.ya2{bottom:425.820000px;}
.y48{bottom:426.270000px;}
.y15f{bottom:426.540000px;}
.ye9{bottom:428.880000px;}
.y68{bottom:429.262500px;}
.y7d{bottom:433.200000px;}
.y188{bottom:434.460000px;}
.y1a6{bottom:434.550000px;}
.y104{bottom:435.990000px;}
.y43{bottom:440.580000px;}
.y1c0{bottom:443.910000px;}
.y1dc{bottom:444.180000px;}
.ya1{bottom:447.060000px;}
.ye8{bottom:450.120000px;}
.y67{bottom:452.932500px;}
.y7c{bottom:454.440000px;}
.yc6{bottom:455.700000px;}
.y175{bottom:456.690000px;}
.y15e{bottom:456.780000px;}
.y103{bottom:457.230000px;}
.y1a5{bottom:457.410000px;}
.y120{bottom:457.500000px;}
.y1bf{bottom:466.590000px;}
.y13c{bottom:467.670000px;}
.ya0{bottom:468.300000px;}
.ye7{bottom:471.360000px;}
.y7b{bottom:475.680000px;}
.y1db{bottom:475.860000px;}
.y66{bottom:476.692500px;}
.yc5{bottom:476.940000px;}
.y46{bottom:477.210000px;}
.y102{bottom:478.470000px;}
.y11f{bottom:480.450000px;}
.y15d{bottom:487.020000px;}
.y1a4{bottom:489.090000px;}
.y13b{bottom:490.620000px;}
.y3f{bottom:491.520000px;}
.ye6{bottom:492.600000px;}
.yc4{bottom:498.180000px;}
.y1be{bottom:498.270000px;}
.y1da{bottom:498.540000px;}
.y9f{bottom:500.250000px;}
.y65{bottom:500.436750px;}
.y11e{bottom:503.400000px;}
.y101{bottom:508.710000px;}
.y26{bottom:509.070000px;}
.y1a3{bottom:511.950000px;}
.y13a{bottom:513.570000px;}
.ye5{bottom:513.840000px;}
.y42{bottom:516.720000px;}
.y15c{bottom:518.970000px;}
.yc3{bottom:519.420000px;}
.y64{bottom:519.699000px;}
.y1bd{bottom:520.950000px;}
.y1d9{bottom:521.430000px;}
.y9e{bottom:523.140000px;}
.y11d{bottom:526.380000px;}
.ye{bottom:528.238131px;}
.y100{bottom:529.980000px;}
.y3c{bottom:531.150000px;}
.y1a2{bottom:534.840000px;}
.ye4{bottom:535.110000px;}
.y14{bottom:535.470000px;}
.yc2{bottom:540.690000px;}
.y63{bottom:543.371250px;}
.y1bc{bottom:543.840000px;}
.y1ef{bottom:544.020000px;}
.y1d8{bottom:544.290000px;}
.y9d{bottom:546.090000px;}
.y139{bottom:546.810000px;}
.y25{bottom:547.620000px;}
.y11c{bottom:549.420000px;}
.yff{bottom:551.310000px;}
.y7a{bottom:552.480000px;}
.ye3{bottom:556.350000px;}
.y1a1{bottom:557.520000px;}
.yc1{bottom:561.930000px;}
.y62{bottom:562.633500px;}
.yd{bottom:565.271550px;}
.y1bb{bottom:566.700000px;}
.y1ee{bottom:566.790000px;}
.y24{bottom:566.880000px;}
.y9c{bottom:569.040000px;}
.y15b{bottom:570.660000px;}
.y187{bottom:570.930000px;}
.y11b{bottom:572.370000px;}
.y138{bottom:573.720000px;}
.y1d7{bottom:575.970000px;}
.ye2{bottom:577.680000px;}
.yc0{bottom:583.170000px;}
.y13{bottom:584.250000px;}
.y61{bottom:586.305750px;}
.y1a0{bottom:589.200000px;}
.y1ed{bottom:589.560000px;}
.y9b{bottom:591.990000px;}
.y186{bottom:592.170000px;}
.yfe{bottom:593.790000px;}
.yc{bottom:594.072600px;}
.y11a{bottom:595.320000px;}
.y1ba{bottom:598.380000px;}
.y1d6{bottom:598.830000px;}
.ye1{bottom:598.920000px;}
.y3e{bottom:600.630000px;}
.y15a{bottom:603.690000px;}
.y174{bottom:604.410000px;}
.y23{bottom:605.310000px;}
.y60{bottom:610.072500px;}
.y19f{bottom:612.060000px;}
.ybf{bottom:613.410000px;}
.y9a{bottom:614.850000px;}
.y3a{bottom:615.030000px;}
.y119{bottom:618.270000px;}
.y1b9{bottom:621.060000px;}
.y1ec{bottom:621.330000px;}
.y1d5{bottom:621.690000px;}
.y22{bottom:624.480000px;}
.y173{bottom:625.650000px;}
.y79{bottom:629.250000px;}
.ye0{bottom:630.870000px;}
.y12{bottom:633.030000px;}
.y5f{bottom:633.742500px;}
.ybe{bottom:634.650000px;}
.yfd{bottom:636.270000px;}
.y99{bottom:637.800000px;}
.y159{bottom:638.880000px;}
.y118{bottom:641.220000px;}
.y137{bottom:642.120000px;}
.y21{bottom:643.740000px;}
.y1b8{bottom:643.920000px;}
.y1eb{bottom:644.100000px;}
.y1d4{bottom:644.370000px;}
.y172{bottom:646.980000px;}
.y78{bottom:653.550000px;}
.ybd{bottom:655.980000px;}
.yfc{bottom:657.510000px;}
.y98{bottom:660.750000px;}
.ydf{bottom:663.360000px;}
.y117{bottom:664.080000px;}
.y136{bottom:665.070000px;}
.y19e{bottom:666.600000px;}
.y1d3{bottom:667.050000px;}
.y3b{bottom:668.040000px;}
.y171{bottom:668.220000px;}
.y158{bottom:670.470000px;}
.y1b7{bottom:675.600000px;}
.y1ea{bottom:675.780000px;}
.ybc{bottom:677.220000px;}
.y11{bottom:681.810000px;}
.y37{bottom:682.440000px;}
.y5e{bottom:682.702350px;}
.y97{bottom:683.700000px;}
.y116{bottom:687.030000px;}
.y77{bottom:687.210000px;}
.y135{bottom:688.020000px;}
.yfb{bottom:689.460000px;}
.y157{bottom:691.710000px;}
.yde{bottom:694.140000px;}
.yb{bottom:696.933150px;}
.y19d{bottom:698.280000px;}
.ybb{bottom:698.460000px;}
.y1e9{bottom:698.550000px;}
.y1d2{bottom:698.730000px;}
.y20{bottom:701.430000px;}
.y5d{bottom:706.372500px;}
.y96{bottom:706.560000px;}
.y115{bottom:709.980000px;}
.y76{bottom:711.510000px;}
.y156{bottom:712.950000px;}
.ydd{bottom:715.470000px;}
.yba{bottom:719.700000px;}
.y134{bottom:719.970000px;}
.y19c{bottom:721.140000px;}
.y1d1{bottom:721.320000px;}
.yfa{bottom:728.700000px;}
.y95{bottom:729.510000px;}
.y10{bottom:730.590000px;}
.y114{bottom:732.930000px;}
.ya{bottom:733.963110px;}
.y155{bottom:734.190000px;}
.y39{bottom:735.450000px;}
.ydc{bottom:736.710000px;}
.y1f{bottom:739.860000px;}
.yb9{bottom:740.940000px;}
.y1d0{bottom:744.000000px;}
.y75{bottom:745.080000px;}
.y32{bottom:749.850000px;}
.yf9{bottom:749.940000px;}
.y94{bottom:752.460000px;}
.y1b6{bottom:752.820000px;}
.y19b{bottom:753.090000px;}
.y5c{bottom:755.332500px;}
.y154{bottom:755.430000px;}
.ydb{bottom:757.950000px;}
.y1e{bottom:759.030000px;}
.y133{bottom:760.830000px;}
.y170{bottom:762.180000px;}
.y113{bottom:765.870000px;}
.y74{bottom:769.380000px;}
.y9{bottom:770.993070px;}
.yb8{bottom:771.180000px;}
.y93{bottom:775.410000px;}
.y1b5{bottom:775.500000px;}
.y1cf{bottom:775.680000px;}
.y19a{bottom:775.950000px;}
.y153{bottom:776.670000px;}
.y5b{bottom:779.092500px;}
.yda{bottom:779.190000px;}
.yf{bottom:779.460000px;}
.y16f{bottom:783.420000px;}
.y132{bottom:783.780000px;}
.y36{bottom:786.390000px;}
.yb7{bottom:792.420000px;}
.y152{bottom:797.910000px;}
.y1b4{bottom:798.360000px;}
.y1ce{bottom:798.540000px;}
.y199{bottom:798.810000px;}
.yd9{bottom:800.430000px;}
.y2e{bottom:800.790000px;}
.y112{bottom:801.780000px;}
.y5a{bottom:802.762350px;}
.y16e{bottom:804.660000px;}
.y131{bottom:806.730000px;}
.y8{bottom:808.023030px;}
.y92{bottom:808.350000px;}
.yb6{bottom:813.660000px;}
.y1b3{bottom:821.220000px;}
.y198{bottom:821.400000px;}
.yd8{bottom:821.670000px;}
.y16d{bottom:825.900000px;}
.y130{bottom:829.680000px;}
.y151{bottom:829.860000px;}
.y1cd{bottom:830.220000px;}
.yb5{bottom:834.900000px;}
.y1d{bottom:835.980000px;}
.y91{bottom:844.260000px;}
.y7{bottom:845.052990px;}
.y16c{bottom:847.140000px;}
.y73{bottom:848.040000px;}
.y59{bottom:851.720250px;}
.y12f{bottom:852.540000px;}
.y149{bottom:852.810000px;}
.y1b2{bottom:852.900000px;}
.y197{bottom:853.080000px;}
.y1cc{bottom:853.170000px;}
.yd7{bottom:853.350000px;}
.y28{bottom:854.070000px;}
.y1c{bottom:855.150000px;}
.yb4{bottom:856.140000px;}
.y58{bottom:870.982500px;}
.y72{bottom:872.730000px;}
.y1b{bottom:874.440000px;}
.y12e{bottom:875.610000px;}
.y148{bottom:875.790000px;}
.y196{bottom:875.880000px;}
.yd6{bottom:876.060000px;}
.y90{bottom:877.410000px;}
.y6{bottom:882.082950px;}
.y1a{bottom:893.700000px;}
.y57{bottom:894.652350px;}
.y71{bottom:897.300000px;}
.y8f{bottom:898.650000px;}
.y2d{bottom:907.200000px;}
.y19{bottom:912.870000px;}
.y27{bottom:929.250000px;}
.y18{bottom:932.130000px;}
.y8d{bottom:941.940000px;}
.yb3{bottom:942.480000px;}
.y8c{bottom:955.980000px;}
.yb2{bottom:956.250000px;}
.h18{height:16.500090px;}
.h16{height:35.991211px;}
.h15{height:38.070000px;}
.h13{height:38.100000px;}
.h1f{height:41.661211px;}
.h1b{height:45.219727px;}
.h20{height:45.588867px;}
.h23{height:46.991602px;}
.h1a{height:47.988281px;}
.h1c{height:47.996681px;}
.h1e{height:47.997281px;}
.h1d{height:48.051281px;}
.h10{height:49.410000px;}
.h14{height:49.500000px;}
.h17{height:49.530000px;}
.hf{height:51.840000px;}
.h19{height:55.020000px;}
.he{height:55.291992px;}
.h1{height:57.602160px;}
.hb{height:60.690960px;}
.h11{height:65.880000px;}
.hd{height:66.000000px;}
.h2{height:67.202520px;}
.ha{height:67.221000px;}
.hc{height:70.293960px;}
.h21{height:70.664062px;}
.h22{height:76.824000px;}
.h6{height:77.858920px;}
.h12{height:82.350000px;}
.h5{height:100.104325px;}
.h9{height:150.575040px;}
.h4{height:228.062123px;}
.h3{height:1019.970000px;}
.h0{height:1020.000000px;}
.h7{height:1020.600000px;}
.h8{height:1020.750000px;}
.w6{width:6.660000px;}
.w7{width:19.980000px;}
.w5{width:83.550000px;}
.w3{width:94.260000px;}
.w4{width:404.130000px;}
.w1{width:719.218500px;}
.w2{width:722.880000px;}
.w0{width:723.000000px;}
.x0{left:0.000000px;}
.x4{left:1.786500px;}
.x17{left:7.380000px;}
.x1b{left:34.950000px;}
.x5{left:79.533450px;}
.x6{left:81.319950px;}
.x15{left:85.050000px;}
.x20{left:99.450000px;}
.x26{left:117.030000px;}
.x2a{left:118.110000px;}
.x1f{left:122.250000px;}
.x1e{left:127.620000px;}
.x2d{left:139.350000px;}
.x21{left:142.050000px;}
.x29{left:143.940000px;}
.xe{left:146.730000px;}
.x2e{left:149.520000px;}
.xf{left:153.390000px;}
.x2f{left:157.260000px;}
.x10{left:162.480000px;}
.x18{left:180.660000px;}
.x8{left:184.089763px;}
.x9{left:214.022314px;}
.x3{left:223.159988px;}
.x7{left:227.167950px;}
.x23{left:245.190000px;}
.x24{left:254.100000px;}
.x2{left:262.137450px;}
.x11{left:263.820000px;}
.x22{left:282.450000px;}
.xd{left:292.925856px;}
.x25{left:294.690000px;}
.x1{left:297.668100px;}
.xc{left:303.918300px;}
.xa{left:306.658931px;}
.xb{left:312.774600px;}
.x16{left:332.490000px;}
.x27{left:351.450027px;}
.x1d{left:358.110031px;}
.x2c{left:362.850000px;}
.x31{left:373.740000px;}
.x30{left:385.350000px;}
.x32{left:393.270000px;}
.x2b{left:450.330000px;}
.x14{left:471.930000px;}
.x13{left:489.120000px;}
.x12{left:501.540000px;}
.x1a{left:585.510000px;}
.x28{left:608.670000px;}
.x1c{left:617.040000px;}
.x19{left:620.460000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls48{letter-spacing:-0.472000pt;}
.ls2f{letter-spacing:-0.420000pt;}
.ls32{letter-spacing:-0.380800pt;}
.ls33{letter-spacing:-0.302400pt;}
.ls41{letter-spacing:-0.288000pt;}
.ls2a{letter-spacing:-0.207200pt;}
.ls35{letter-spacing:-0.156800pt;}
.ls40{letter-spacing:-0.152000pt;}
.ls3e{letter-spacing:-0.128000pt;}
.ls45{letter-spacing:-0.120000pt;}
.ls42{letter-spacing:-0.104000pt;}
.ls2e{letter-spacing:-0.095200pt;}
.ls37{letter-spacing:-0.089600pt;}
.ls3a{letter-spacing:-0.088000pt;}
.ls30{letter-spacing:-0.078400pt;}
.ls2c{letter-spacing:-0.072800pt;}
.ls46{letter-spacing:-0.072000pt;}
.ls34{letter-spacing:-0.061600pt;}
.ls31{letter-spacing:-0.056000pt;}
.ls2b{letter-spacing:-0.050400pt;}
.ls28{letter-spacing:-0.044800pt;}
.ls38{letter-spacing:-0.039200pt;}
.ls8{letter-spacing:-0.034135pt;}
.ls25{letter-spacing:-0.033600pt;}
.ls36{letter-spacing:-0.028000pt;}
.ls26{letter-spacing:-0.022400pt;}
.ls6{letter-spacing:-0.021944pt;}
.ls24{letter-spacing:-0.016800pt;}
.lsb{letter-spacing:-0.016000pt;}
.ls27{letter-spacing:-0.011200pt;}
.ls7{letter-spacing:-0.010972pt;}
.ls4{letter-spacing:-0.007315pt;}
.ls29{letter-spacing:-0.005600pt;}
.ls5{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.005600pt;}
.ls17{letter-spacing:0.011200pt;}
.lsd{letter-spacing:0.016800pt;}
.ls1{letter-spacing:0.017067pt;}
.ls1b{letter-spacing:0.022400pt;}
.ls43{letter-spacing:0.024000pt;}
.ls23{letter-spacing:0.028000pt;}
.ls3b{letter-spacing:0.032000pt;}
.ls3{letter-spacing:0.032916pt;}
.ls16{letter-spacing:0.033600pt;}
.ls0{letter-spacing:0.034135pt;}
.ls15{letter-spacing:0.039200pt;}
.ls47{letter-spacing:0.040000pt;}
.ls2{letter-spacing:0.042668pt;}
.ls10{letter-spacing:0.050400pt;}
.lsa{letter-spacing:0.051200pt;}
.ls9{letter-spacing:0.051202pt;}
.ls12{letter-spacing:0.056000pt;}
.ls1e{letter-spacing:0.061600pt;}
.ls11{letter-spacing:0.067200pt;}
.ls1c{letter-spacing:0.072800pt;}
.ls44{letter-spacing:0.088000pt;}
.ls21{letter-spacing:0.089600pt;}
.ls2d{letter-spacing:0.106400pt;}
.ls3d{letter-spacing:0.120000pt;}
.ls20{letter-spacing:0.123200pt;}
.ls22{letter-spacing:0.128800pt;}
.ls19{letter-spacing:0.134400pt;}
.ls1d{letter-spacing:0.140000pt;}
.lsf{letter-spacing:0.144000pt;}
.ls13{letter-spacing:0.145600pt;}
.lse{letter-spacing:0.156800pt;}
.ls14{letter-spacing:0.162400pt;}
.lsc{letter-spacing:0.168000pt;}
.ls1a{letter-spacing:0.179200pt;}
.ls1f{letter-spacing:0.201600pt;}
.ls3c{letter-spacing:0.240000pt;}
.ls49{letter-spacing:0.352000pt;}
.ls3f{letter-spacing:0.376000pt;}
.ls39{letter-spacing:3.920000pt;}
.ws11{word-spacing:-56.000000pt;}
.ws20{word-spacing:-27.328000pt;}
.ws26{word-spacing:-27.305600pt;}
.ws1{word-spacing:-24.906077pt;}
.ws0{word-spacing:-16.683292pt;}
.ws33{word-spacing:-15.480000pt;}
.ws38{word-spacing:-13.888000pt;}
.ws37{word-spacing:-12.824000pt;}
.ws3d{word-spacing:-12.800000pt;}
.ws34{word-spacing:-12.768000pt;}
.ws40{word-spacing:-12.752000pt;}
.ws3c{word-spacing:-12.744000pt;}
.ws36{word-spacing:-12.712000pt;}
.ws39{word-spacing:-12.672000pt;}
.ws3a{word-spacing:-12.656000pt;}
.ws3f{word-spacing:-12.640000pt;}
.ws32{word-spacing:-12.624000pt;}
.ws3b{word-spacing:-12.608000pt;}
.ws3e{word-spacing:-12.592000pt;}
.ws35{word-spacing:-12.584000pt;}
.ws41{word-spacing:-12.352000pt;}
.wsb{word-spacing:-11.477120pt;}
.wsd{word-spacing:-10.848000pt;}
.wsc{word-spacing:-10.832000pt;}
.ws1b{word-spacing:-0.162400pt;}
.ws30{word-spacing:-0.145600pt;}
.ws2b{word-spacing:-0.128800pt;}
.ws1d{word-spacing:-0.123200pt;}
.ws2a{word-spacing:-0.117600pt;}
.ws1e{word-spacing:-0.112000pt;}
.ws1a{word-spacing:-0.106400pt;}
.ws21{word-spacing:-0.095200pt;}
.ws23{word-spacing:-0.089600pt;}
.ws31{word-spacing:-0.084000pt;}
.ws29{word-spacing:-0.078400pt;}
.ws17{word-spacing:-0.072800pt;}
.ws24{word-spacing:-0.067200pt;}
.ws27{word-spacing:-0.061600pt;}
.wsf{word-spacing:-0.056000pt;}
.wsa{word-spacing:-0.051202pt;}
.ws15{word-spacing:-0.050400pt;}
.ws13{word-spacing:-0.044800pt;}
.wse{word-spacing:-0.039200pt;}
.ws3{word-spacing:-0.034135pt;}
.ws12{word-spacing:-0.033600pt;}
.ws6{word-spacing:-0.032916pt;}
.ws2e{word-spacing:-0.028000pt;}
.ws10{word-spacing:-0.022400pt;}
.ws4{word-spacing:-0.017067pt;}
.ws2f{word-spacing:-0.016800pt;}
.ws14{word-spacing:-0.011200pt;}
.ws18{word-spacing:-0.005600pt;}
.ws5{word-spacing:0.000000pt;}
.ws2c{word-spacing:0.005600pt;}
.ws2{word-spacing:0.007315pt;}
.ws8{word-spacing:0.010972pt;}
.ws19{word-spacing:0.016800pt;}
.ws7{word-spacing:0.021944pt;}
.ws22{word-spacing:0.022400pt;}
.ws9{word-spacing:0.034135pt;}
.ws1c{word-spacing:0.039200pt;}
.ws2d{word-spacing:0.100800pt;}
.ws16{word-spacing:0.151200pt;}
.ws28{word-spacing:0.246400pt;}
.ws25{word-spacing:0.324800pt;}
.ws1f{word-spacing:0.364000pt;}
._4{margin-left:-9.545501pt;}
._5{margin-left:-7.395020pt;}
._2{margin-left:-4.498454pt;}
._7{margin-left:-3.583986pt;}
._6{margin-left:-2.567411pt;}
._0{margin-left:-0.943578pt;}
._1{width:0.989904pt;}
._3{width:1.931044pt;}
._8{width:3.097570pt;}
._e{width:4.032000pt;}
._b{width:5.308800pt;}
._9{width:6.825600pt;}
._a{width:8.060286pt;}
._11{width:9.695335pt;}
._1e{width:10.636017pt;}
._d{width:11.839578pt;}
._c{width:12.768000pt;}
._1b{width:14.392000pt;}
._21{width:15.288000pt;}
._13{width:16.608000pt;}
._14{width:17.568000pt;}
._16{width:18.720000pt;}
._f{width:19.824000pt;}
._22{width:20.720000pt;}
._10{width:22.272000pt;}
._12{width:23.202096pt;}
._18{width:24.144000pt;}
._19{width:25.181904pt;}
._15{width:26.640000pt;}
._2b{width:27.832000pt;}
._27{width:28.728000pt;}
._28{width:29.792000pt;}
._2f{width:30.800000pt;}
._31{width:32.640000pt;}
._17{width:33.904000pt;}
._2c{width:37.016000pt;}
._2d{width:37.914667pt;}
._25{width:39.850245pt;}
._30{width:44.184000pt;}
._20{width:51.498245pt;}
._24{width:54.185911pt;}
._1a{width:56.352000pt;}
._1d{width:58.238052pt;}
._1f{width:60.547911pt;}
._26{width:61.843733pt;}
._1c{width:78.567430pt;}
._33{width:79.621519pt;}
._29{width:194.712000pt;}
._2e{width:204.456000pt;}
._32{width:209.496000pt;}
._34{width:341.488000pt;}
._2a{width:1053.110298pt;}
._23{width:1135.794667pt;}
.fsb{font-size:42.560000pt;}
.fs8{font-size:48.000000pt;}
.fs6{font-size:50.560000pt;}
.fs9{font-size:53.333333pt;}
.fs5{font-size:56.000000pt;}
.fs7{font-size:58.560000pt;}
.fsa{font-size:64.000000pt;}
.fs0{font-size:73.145600pt;}
.fs1{font-size:85.336533pt;}
.fs3{font-size:109.718400pt;}
.fs4{font-size:125.440000pt;}
.fs2{font-size:292.582400pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:3.200000pt;}
.y2c{bottom:3.280000pt;}
.y56{bottom:3.640000pt;}
.y31{bottom:5.360000pt;}
.y41{bottom:7.760000pt;}
.y34{bottom:17.840000pt;}
.y45{bottom:17.920000pt;}
.y2b{bottom:17.946667pt;}
.y30{bottom:20.000000pt;}
.y40{bottom:22.400000pt;}
.y33{bottom:32.480000pt;}
.y44{bottom:32.560000pt;}
.y2a{bottom:32.586667pt;}
.y55{bottom:33.333415pt;}
.y3{bottom:33.438640pt;}
.y2f{bottom:34.640000pt;}
.y38{bottom:47.120000pt;}
.y29{bottom:47.226667pt;}
.y8e{bottom:50.640000pt;}
.y2{bottom:59.039600pt;}
.y3d{bottom:61.760000pt;}
.y111{bottom:81.120000pt;}
.yf8{bottom:81.920000pt;}
.y12d{bottom:82.240000pt;}
.y53{bottom:84.800000pt;}
.y185{bottom:87.040000pt;}
.yb1{bottom:87.200000pt;}
.yd5{bottom:88.080000pt;}
.y147{bottom:90.400000pt;}
.y150{bottom:92.080000pt;}
.y16b{bottom:96.000000pt;}
.y1e8{bottom:99.760000pt;}
.y110{bottom:100.000000pt;}
.yf7{bottom:100.800000pt;}
.y195{bottom:101.360000pt;}
.y12c{bottom:102.640000pt;}
.y8b{bottom:104.640000pt;}
.y184{bottom:105.920000pt;}
.yb0{bottom:106.080000pt;}
.y1cb{bottom:107.520000pt;}
.yd4{bottom:108.240000pt;}
.y146{bottom:110.800000pt;}
.y1b1{bottom:111.360000pt;}
.y14f{bottom:112.400000pt;}
.y16a{bottom:114.880000pt;}
.y54{bottom:117.360000pt;}
.y4{bottom:117.494400pt;}
.y10f{bottom:118.880000pt;}
.yf6{bottom:119.680000pt;}
.y1e7{bottom:119.840000pt;}
.y194{bottom:121.600000pt;}
.y12b{bottom:123.040000pt;}
.y8a{bottom:123.520000pt;}
.y183{bottom:124.800000pt;}
.yaf{bottom:124.960000pt;}
.y1ca{bottom:127.680000pt;}
.yd3{bottom:128.400000pt;}
.y1{bottom:128.527733pt;}
.y51{bottom:130.080000pt;}
.y145{bottom:131.200000pt;}
.y1b0{bottom:131.680000pt;}
.y14e{bottom:132.800000pt;}
.y169{bottom:133.760000pt;}
.y5{bottom:135.781067pt;}
.y10e{bottom:137.760000pt;}
.yf5{bottom:138.560000pt;}
.y1e6{bottom:140.080000pt;}
.y193{bottom:141.840000pt;}
.y89{bottom:142.400000pt;}
.y12a{bottom:143.440000pt;}
.y182{bottom:143.680000pt;}
.yae{bottom:143.840000pt;}
.yd2{bottom:148.560000pt;}
.y144{bottom:151.600000pt;}
.y168{bottom:152.640000pt;}
.y14d{bottom:153.200000pt;}
.y10d{bottom:156.640000pt;}
.y192{bottom:162.026667pt;}
.y181{bottom:162.586667pt;}
.y52{bottom:162.666667pt;}
.yad{bottom:162.746667pt;}
.yf4{bottom:165.466667pt;}
.y1e5{bottom:168.346667pt;}
.yd1{bottom:168.746667pt;}
.y88{bottom:169.306667pt;}
.y167{bottom:171.546667pt;}
.y143{bottom:171.946667pt;}
.y129{bottom:172.746667pt;}
.y14c{bottom:173.626667pt;}
.y4f{bottom:175.386667pt;}
.y10c{bottom:175.546667pt;}
.y1c9{bottom:176.186667pt;}
.y1af{bottom:180.186667pt;}
.y180{bottom:181.466667pt;}
.yf3{bottom:184.346667pt;}
.y87{bottom:188.186667pt;}
.y1e4{bottom:188.586667pt;}
.yd0{bottom:188.826667pt;}
.y191{bottom:188.906667pt;}
.yac{bottom:189.626667pt;}
.y17{bottom:189.946667pt;}
.y166{bottom:190.426667pt;}
.y142{bottom:192.346667pt;}
.y14b{bottom:193.946667pt;}
.y10b{bottom:194.426667pt;}
.y1c8{bottom:196.586667pt;}
.y1ae{bottom:200.506667pt;}
.yf2{bottom:203.226667pt;}
.y128{bottom:204.666667pt;}
.y86{bottom:207.066667pt;}
.y50{bottom:207.946667pt;}
.y17f{bottom:208.346667pt;}
.yab{bottom:208.506667pt;}
.y1e3{bottom:208.906667pt;}
.ycf{bottom:208.986667pt;}
.y16{bottom:209.306667pt;}
.y141{bottom:212.746667pt;}
.y190{bottom:216.506667pt;}
.y1c7{bottom:216.826667pt;}
.y165{bottom:217.306667pt;}
.y4d{bottom:220.666667pt;}
.yf1{bottom:222.106667pt;}
.y10a{bottom:223.786667pt;}
.y70{bottom:224.846667pt;}
.y85{bottom:225.946667pt;}
.y17e{bottom:227.226667pt;}
.yaa{bottom:227.386667pt;}
.y1ad{bottom:228.586667pt;}
.y15{bottom:228.666667pt;}
.yce{bottom:229.146667pt;}
.y1e2{bottom:229.226667pt;}
.y140{bottom:233.146667pt;}
.y127{bottom:235.626667pt;}
.y1c6{bottom:236.986667pt;}
.yf0{bottom:240.986667pt;}
.y6f{bottom:241.968667pt;}
.y4e{bottom:243.066667pt;}
.y164{bottom:244.186667pt;}
.y84{bottom:244.826667pt;}
.y18f{bottom:245.946667pt;}
.y17d{bottom:246.186667pt;}
.ya9{bottom:246.266667pt;}
.y1ac{bottom:248.826667pt;}
.y14a{bottom:249.226667pt;}
.y4b{bottom:255.786667pt;}
.y126{bottom:256.026667pt;}
.ycd{bottom:257.306667pt;}
.y1e1{bottom:257.386667pt;}
.y6e{bottom:259.006667pt;}
.yef{bottom:259.946667pt;}
.y13f{bottom:261.466667pt;}
.y83{bottom:263.706667pt;}
.y18e{bottom:264.826667pt;}
.y17c{bottom:265.066667pt;}
.ya8{bottom:265.146667pt;}
.y1c5{bottom:265.226667pt;}
.y1ab{bottom:269.066667pt;}
.y163{bottom:271.546667pt;}
.y125{bottom:276.346667pt;}
.ycc{bottom:277.466667pt;}
.y1e0{bottom:277.706667pt;}
.yee{bottom:278.826667pt;}
.y6d{bottom:280.126667pt;}
.y82{bottom:282.586667pt;}
.y18d{bottom:283.706667pt;}
.y17b{bottom:283.946667pt;}
.ya7{bottom:284.026667pt;}
.y109{bottom:285.146667pt;}
.y1c4{bottom:285.546667pt;}
.y13e{bottom:288.426667pt;}
.y4c{bottom:288.452000pt;}
.y1aa{bottom:289.226667pt;}
.y124{bottom:296.746667pt;}
.ycb{bottom:297.546667pt;}
.yed{bottom:297.706667pt;}
.y1df{bottom:297.866667pt;}
.y162{bottom:298.426667pt;}
.y49{bottom:301.066667pt;}
.y6c{bottom:301.166667pt;}
.y18c{bottom:302.586667pt;}
.y17a{bottom:302.826667pt;}
.ya6{bottom:302.906667pt;}
.y81{bottom:309.466667pt;}
.y108{bottom:312.026667pt;}
.y13d{bottom:312.266667pt;}
.y1c3{bottom:313.866667pt;}
.yec{bottom:316.586667pt;}
.y123{bottom:317.146667pt;}
.y1a9{bottom:317.466667pt;}
.yca{bottom:317.706667pt;}
.y18b{bottom:321.546667pt;}
.y179{bottom:321.706667pt;}
.ya5{bottom:321.786667pt;}
.y6b{bottom:322.286667pt;}
.y161{bottom:325.386667pt;}
.y1de{bottom:326.026667pt;}
.y80{bottom:328.346667pt;}
.y107{bottom:330.906667pt;}
.y4a{bottom:333.626667pt;}
.y1c2{bottom:334.026667pt;}
.yeb{bottom:335.466667pt;}
.y1a8{bottom:337.786667pt;}
.yc9{bottom:337.866667pt;}
.y18a{bottom:340.426667pt;}
.y178{bottom:340.586667pt;}
.ya4{bottom:340.746667pt;}
.y6a{bottom:343.324667pt;}
.y47{bottom:346.346667pt;}
.y7f{bottom:347.226667pt;}
.y106{bottom:349.786667pt;}
.y160{bottom:352.266667pt;}
.yea{bottom:354.346667pt;}
.y122{bottom:357.866667pt;}
.yc8{bottom:358.026667pt;}
.y1a7{bottom:358.106667pt;}
.y189{bottom:359.306667pt;}
.y177{bottom:359.466667pt;}
.ya3{bottom:359.626667pt;}
.y69{bottom:360.446667pt;}
.y7e{bottom:366.186667pt;}
.y105{bottom:368.666667pt;}
.y1c1{bottom:374.426667pt;}
.y1dd{bottom:374.506667pt;}
.yc7{bottom:378.186667pt;}
.y121{bottom:378.266667pt;}
.y176{bottom:378.346667pt;}
.ya2{bottom:378.506667pt;}
.y48{bottom:378.906667pt;}
.y15f{bottom:379.146667pt;}
.ye9{bottom:381.226667pt;}
.y68{bottom:381.566667pt;}
.y7d{bottom:385.066667pt;}
.y188{bottom:386.186667pt;}
.y1a6{bottom:386.266667pt;}
.y104{bottom:387.546667pt;}
.y43{bottom:391.626667pt;}
.y1c0{bottom:394.586667pt;}
.y1dc{bottom:394.826667pt;}
.ya1{bottom:397.386667pt;}
.ye8{bottom:400.106667pt;}
.y67{bottom:402.606667pt;}
.y7c{bottom:403.946667pt;}
.yc6{bottom:405.066667pt;}
.y175{bottom:405.946667pt;}
.y15e{bottom:406.026667pt;}
.y103{bottom:406.426667pt;}
.y1a5{bottom:406.586667pt;}
.y120{bottom:406.666667pt;}
.y1bf{bottom:414.746667pt;}
.y13c{bottom:415.706667pt;}
.ya0{bottom:416.266667pt;}
.ye7{bottom:418.986667pt;}
.y7b{bottom:422.826667pt;}
.y1db{bottom:422.986667pt;}
.y66{bottom:423.726667pt;}
.yc5{bottom:423.946667pt;}
.y46{bottom:424.186667pt;}
.y102{bottom:425.306667pt;}
.y11f{bottom:427.066667pt;}
.y15d{bottom:432.906667pt;}
.y1a4{bottom:434.746667pt;}
.y13b{bottom:436.106667pt;}
.y3f{bottom:436.906667pt;}
.ye6{bottom:437.866667pt;}
.yc4{bottom:442.826667pt;}
.y1be{bottom:442.906667pt;}
.y1da{bottom:443.146667pt;}
.y9f{bottom:444.666667pt;}
.y65{bottom:444.832667pt;}
.y11e{bottom:447.466667pt;}
.y101{bottom:452.186667pt;}
.y26{bottom:452.506667pt;}
.y1a3{bottom:455.066667pt;}
.y13a{bottom:456.506667pt;}
.ye5{bottom:456.746667pt;}
.y42{bottom:459.306667pt;}
.y15c{bottom:461.306667pt;}
.yc3{bottom:461.706667pt;}
.y64{bottom:461.954667pt;}
.y1bd{bottom:463.066667pt;}
.y1d9{bottom:463.493333pt;}
.y9e{bottom:465.013333pt;}
.y11d{bottom:467.893333pt;}
.ye{bottom:469.545006pt;}
.y100{bottom:471.093333pt;}
.y3c{bottom:472.133333pt;}
.y1a2{bottom:475.413333pt;}
.ye4{bottom:475.653333pt;}
.y14{bottom:475.973333pt;}
.yc2{bottom:480.613333pt;}
.y63{bottom:482.996667pt;}
.y1bc{bottom:483.413333pt;}
.y1ef{bottom:483.573333pt;}
.y1d8{bottom:483.813333pt;}
.y9d{bottom:485.413333pt;}
.y139{bottom:486.053333pt;}
.y25{bottom:486.773333pt;}
.y11c{bottom:488.373333pt;}
.yff{bottom:490.053333pt;}
.y7a{bottom:491.093333pt;}
.ye3{bottom:494.533333pt;}
.y1a1{bottom:495.573333pt;}
.yc1{bottom:499.493333pt;}
.y62{bottom:500.118667pt;}
.yd{bottom:502.463600pt;}
.y1bb{bottom:503.733333pt;}
.y1ee{bottom:503.813333pt;}
.y24{bottom:503.893333pt;}
.y9c{bottom:505.813333pt;}
.y15b{bottom:507.253333pt;}
.y187{bottom:507.493333pt;}
.y11b{bottom:508.773333pt;}
.y138{bottom:509.973333pt;}
.y1d7{bottom:511.973333pt;}
.ye2{bottom:513.493333pt;}
.yc0{bottom:518.373333pt;}
.y13{bottom:519.333333pt;}
.y61{bottom:521.160667pt;}
.y1a0{bottom:523.733333pt;}
.y1ed{bottom:524.053333pt;}
.y9b{bottom:526.213333pt;}
.y186{bottom:526.373333pt;}
.yfe{bottom:527.813333pt;}
.yc{bottom:528.064533pt;}
.y11a{bottom:529.173333pt;}
.y1ba{bottom:531.893333pt;}
.y1d6{bottom:532.293333pt;}
.ye1{bottom:532.373333pt;}
.y3e{bottom:533.893333pt;}
.y15a{bottom:536.613333pt;}
.y174{bottom:537.253333pt;}
.y23{bottom:538.053333pt;}
.y60{bottom:542.286667pt;}
.y19f{bottom:544.053333pt;}
.ybf{bottom:545.253333pt;}
.y9a{bottom:546.533333pt;}
.y3a{bottom:546.693333pt;}
.y119{bottom:549.573333pt;}
.y1b9{bottom:552.053333pt;}
.y1ec{bottom:552.293333pt;}
.y1d5{bottom:552.613333pt;}
.y22{bottom:555.093333pt;}
.y173{bottom:556.133333pt;}
.y79{bottom:559.333333pt;}
.ye0{bottom:560.773333pt;}
.y12{bottom:562.693333pt;}
.y5f{bottom:563.326667pt;}
.ybe{bottom:564.133333pt;}
.yfd{bottom:565.573333pt;}
.y99{bottom:566.933333pt;}
.y159{bottom:567.893333pt;}
.y118{bottom:569.973333pt;}
.y137{bottom:570.773333pt;}
.y21{bottom:572.213333pt;}
.y1b8{bottom:572.373333pt;}
.y1eb{bottom:572.533333pt;}
.y1d4{bottom:572.773333pt;}
.y172{bottom:575.093333pt;}
.y78{bottom:580.933333pt;}
.ybd{bottom:583.093333pt;}
.yfc{bottom:584.453333pt;}
.y98{bottom:587.333333pt;}
.ydf{bottom:589.653333pt;}
.y117{bottom:590.293333pt;}
.y136{bottom:591.173333pt;}
.y19e{bottom:592.533333pt;}
.y1d3{bottom:592.933333pt;}
.y3b{bottom:593.813333pt;}
.y171{bottom:593.973333pt;}
.y158{bottom:595.973333pt;}
.y1b7{bottom:600.533333pt;}
.y1ea{bottom:600.693333pt;}
.ybc{bottom:601.973333pt;}
.y11{bottom:606.053333pt;}
.y37{bottom:606.613333pt;}
.y5e{bottom:606.846533pt;}
.y97{bottom:607.733333pt;}
.y116{bottom:610.693333pt;}
.y77{bottom:610.853333pt;}
.y135{bottom:611.573333pt;}
.yfb{bottom:612.853333pt;}
.y157{bottom:614.853333pt;}
.yde{bottom:617.013333pt;}
.yb{bottom:619.496133pt;}
.y19d{bottom:620.693333pt;}
.ybb{bottom:620.853333pt;}
.y1e9{bottom:620.933333pt;}
.y1d2{bottom:621.093333pt;}
.y20{bottom:623.493333pt;}
.y5d{bottom:627.886667pt;}
.y96{bottom:628.053333pt;}
.y115{bottom:631.093333pt;}
.y76{bottom:632.453333pt;}
.y156{bottom:633.733333pt;}
.ydd{bottom:635.973333pt;}
.yba{bottom:639.733333pt;}
.y134{bottom:639.973333pt;}
.y19c{bottom:641.013333pt;}
.y1d1{bottom:641.173333pt;}
.yfa{bottom:647.733333pt;}
.y95{bottom:648.453333pt;}
.y10{bottom:649.413333pt;}
.y114{bottom:651.493333pt;}
.ya{bottom:652.411653pt;}
.y155{bottom:652.613333pt;}
.y39{bottom:653.733333pt;}
.ydc{bottom:654.853333pt;}
.y1f{bottom:657.653333pt;}
.yb9{bottom:658.613333pt;}
.y1d0{bottom:661.333333pt;}
.y75{bottom:662.293333pt;}
.y32{bottom:666.533333pt;}
.yf9{bottom:666.613333pt;}
.y94{bottom:668.853333pt;}
.y1b6{bottom:669.173333pt;}
.y19b{bottom:669.413333pt;}
.y5c{bottom:671.406667pt;}
.y154{bottom:671.493333pt;}
.ydb{bottom:673.733333pt;}
.y1e{bottom:674.693333pt;}
.y133{bottom:676.293333pt;}
.y170{bottom:677.493333pt;}
.y113{bottom:680.773333pt;}
.y74{bottom:683.893333pt;}
.y9{bottom:685.327173pt;}
.yb8{bottom:685.493333pt;}
.y93{bottom:689.253333pt;}
.y1b5{bottom:689.333333pt;}
.y1cf{bottom:689.493333pt;}
.y19a{bottom:689.733333pt;}
.y153{bottom:690.373333pt;}
.y5b{bottom:692.526667pt;}
.yda{bottom:692.613333pt;}
.yf{bottom:692.853333pt;}
.y16f{bottom:696.373333pt;}
.y132{bottom:696.693333pt;}
.y36{bottom:699.013333pt;}
.yb7{bottom:704.373333pt;}
.y152{bottom:709.253333pt;}
.y1b4{bottom:709.653333pt;}
.y1ce{bottom:709.813333pt;}
.y199{bottom:710.053333pt;}
.yd9{bottom:711.493333pt;}
.y2e{bottom:711.813333pt;}
.y112{bottom:712.693333pt;}
.y5a{bottom:713.566533pt;}
.y16e{bottom:715.253333pt;}
.y131{bottom:717.093333pt;}
.y8{bottom:718.242693pt;}
.y92{bottom:718.533333pt;}
.yb6{bottom:723.253333pt;}
.y1b3{bottom:729.973333pt;}
.y198{bottom:730.133333pt;}
.yd8{bottom:730.373333pt;}
.y16d{bottom:734.133333pt;}
.y130{bottom:737.493333pt;}
.y151{bottom:737.653333pt;}
.y1cd{bottom:737.973333pt;}
.yb5{bottom:742.133333pt;}
.y1d{bottom:743.093333pt;}
.y91{bottom:750.453333pt;}
.y7{bottom:751.158213pt;}
.y16c{bottom:753.013333pt;}
.y73{bottom:753.813333pt;}
.y59{bottom:757.084667pt;}
.y12f{bottom:757.813333pt;}
.y149{bottom:758.053333pt;}
.y1b2{bottom:758.133333pt;}
.y197{bottom:758.293333pt;}
.y1cc{bottom:758.373333pt;}
.yd7{bottom:758.533333pt;}
.y28{bottom:759.173333pt;}
.y1c{bottom:760.133333pt;}
.yb4{bottom:761.013333pt;}
.y58{bottom:774.206667pt;}
.y72{bottom:775.760000pt;}
.y1b{bottom:777.280000pt;}
.y12e{bottom:778.320000pt;}
.y148{bottom:778.480000pt;}
.y196{bottom:778.560000pt;}
.yd6{bottom:778.720000pt;}
.y90{bottom:779.920000pt;}
.y6{bottom:784.073733pt;}
.y1a{bottom:794.400000pt;}
.y57{bottom:795.246533pt;}
.y71{bottom:797.600000pt;}
.y8f{bottom:798.800000pt;}
.y2d{bottom:806.400000pt;}
.y19{bottom:811.440000pt;}
.y27{bottom:826.000000pt;}
.y18{bottom:828.560000pt;}
.y8d{bottom:837.280000pt;}
.yb3{bottom:837.760000pt;}
.y8c{bottom:849.760000pt;}
.yb2{bottom:850.000000pt;}
.h18{height:14.666747pt;}
.h16{height:31.992188pt;}
.h15{height:33.840000pt;}
.h13{height:33.866667pt;}
.h1f{height:37.032187pt;}
.h1b{height:40.195312pt;}
.h20{height:40.523438pt;}
.h23{height:41.770312pt;}
.h1a{height:42.656250pt;}
.h1c{height:42.663717pt;}
.h1e{height:42.664250pt;}
.h1d{height:42.712250pt;}
.h10{height:43.920000pt;}
.h14{height:44.000000pt;}
.h17{height:44.026667pt;}
.hf{height:46.080000pt;}
.h19{height:48.906667pt;}
.he{height:49.148438pt;}
.h1{height:51.201920pt;}
.hb{height:53.947520pt;}
.h11{height:58.560000pt;}
.hd{height:58.666667pt;}
.h2{height:59.735573pt;}
.ha{height:59.752000pt;}
.hc{height:62.483520pt;}
.h21{height:62.812500pt;}
.h22{height:68.288000pt;}
.h6{height:69.207929pt;}
.h12{height:73.200000pt;}
.h5{height:88.981622pt;}
.h9{height:133.844480pt;}
.h4{height:202.721887pt;}
.h3{height:906.640000pt;}
.h0{height:906.666667pt;}
.h7{height:907.200000pt;}
.h8{height:907.333333pt;}
.w6{width:5.920000pt;}
.w7{width:17.760000pt;}
.w5{width:74.266667pt;}
.w3{width:83.786667pt;}
.w4{width:359.226667pt;}
.w1{width:639.305333pt;}
.w2{width:642.560000pt;}
.w0{width:642.666667pt;}
.x0{left:0.000000pt;}
.x4{left:1.588000pt;}
.x17{left:6.560000pt;}
.x1b{left:31.066667pt;}
.x5{left:70.696400pt;}
.x6{left:72.284400pt;}
.x15{left:75.600000pt;}
.x20{left:88.400000pt;}
.x26{left:104.026667pt;}
.x2a{left:104.986667pt;}
.x1f{left:108.666667pt;}
.x1e{left:113.440000pt;}
.x2d{left:123.866667pt;}
.x21{left:126.266667pt;}
.x29{left:127.946667pt;}
.xe{left:130.426667pt;}
.x2e{left:132.906667pt;}
.xf{left:136.346667pt;}
.x2f{left:139.786667pt;}
.x10{left:144.426667pt;}
.x18{left:160.586667pt;}
.x8{left:163.635345pt;}
.x9{left:190.242057pt;}
.x3{left:198.364434pt;}
.x7{left:201.927067pt;}
.x23{left:217.946667pt;}
.x24{left:225.866667pt;}
.x2{left:233.011067pt;}
.x11{left:234.506667pt;}
.x22{left:251.066667pt;}
.xd{left:260.378538pt;}
.x25{left:261.946667pt;}
.x1{left:264.593867pt;}
.xc{left:270.149600pt;}
.xa{left:272.585716pt;}
.xb{left:278.021867pt;}
.x16{left:295.546667pt;}
.x27{left:312.400024pt;}
.x1d{left:318.320028pt;}
.x2c{left:322.533333pt;}
.x31{left:332.213333pt;}
.x30{left:342.533333pt;}
.x32{left:349.573333pt;}
.x2b{left:400.293333pt;}
.x14{left:419.493333pt;}
.x13{left:434.773333pt;}
.x12{left:445.813333pt;}
.x1a{left:520.453333pt;}
.x28{left:541.040000pt;}
.x1c{left:548.480000pt;}
.x19{left:551.520000pt;}
}




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