
    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_57b7a1e6d454972770a96909.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_896dab62f50e155cffb8ba7d.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_477a29a60591855fab8024a8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.722656;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_7f412f1932f2830bebaf4cd2.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_756d4b895961bb41bd385b43.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_800b8c7805b32caacc73cc5b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1044faeb5589d45c6d167c61.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_96e9561142a412298e5f429d.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_62802740cd664c832477de87.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_36ad8fc9d421d151a1067df7.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_50b78420f53dfc578258a16b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666000;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_ec705dd77ac9ee5f248b1961.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_d0ea8af2d5f238f5da303996.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_a8cfaf75a14147ea150ea6fd.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_00ed63b42cc3b397fa2bf1e3.woff2')format("woff");}.fff{font-family:fff;line-height:0.666000;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_bc27ea1f1788e4a1ce1222c4.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_271d48cf0afc68011cee226c.woff2')format("woff");}.ff11{font-family:ff11;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;}
.m18{transform:matrix(0.111643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111643,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.126026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126026,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.129730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129730,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.131374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131374,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.133917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133917,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.133936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133936,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.151318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151318,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.159885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159885,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.161291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161291,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.168829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168829,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.174791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174791,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.197916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197916,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.201168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201168,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.204210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204210,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.227485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227485,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.235976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235976,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245021,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.246804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246804,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);}
.m11{transform:matrix(0.252244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252244,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.252581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252581,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.254190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254190,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.256292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256292,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.259624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259624,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.260170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260170,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.264446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264446,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.271318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271318,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.307415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307415,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.310647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310647,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.314211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314211,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.339379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339379,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.857115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.857115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.857115,0.000000,0.000000,0.250000,0,0);}
.v20{vertical-align:-57.000000px;}
.v19{vertical-align:-54.960000px;}
.v1a{vertical-align:-49.080000px;}
.va{vertical-align:-47.160000px;}
.v1f{vertical-align:-43.188211px;}
.v9{vertical-align:-37.260000px;}
.v1{vertical-align:-35.640000px;}
.v24{vertical-align:-31.440000px;}
.v13{vertical-align:-29.460000px;}
.v6{vertical-align:-27.540000px;}
.v5{vertical-align:-23.580000px;}
.v4{vertical-align:-21.600000px;}
.vd{vertical-align:-17.640000px;}
.vb{vertical-align:-15.660000px;}
.v16{vertical-align:-13.740000px;}
.v12{vertical-align:-11.820000px;}
.v11{vertical-align:-9.825600px;}
.v17{vertical-align:-5.880000px;}
.v1c{vertical-align:-3.900000px;}
.v14{vertical-align:-1.980000px;}
.v0{vertical-align:0.000000px;}
.v1b{vertical-align:1.922400px;}
.v21{vertical-align:3.960000px;}
.v18{vertical-align:5.874000px;}
.v10{vertical-align:7.903200px;}
.v15{vertical-align:9.840000px;}
.v8{vertical-align:11.820000px;}
.v1e{vertical-align:13.728211px;}
.vf{vertical-align:15.699600px;}
.v7{vertical-align:17.700000px;}
.v3{vertical-align:21.600000px;}
.v1d{vertical-align:29.460000px;}
.v25{vertical-align:32.400000px;}
.v2{vertical-align:43.200000px;}
.v22{vertical-align:47.100000px;}
.v23{vertical-align:54.960000px;}
.ve{vertical-align:92.340000px;}
.vc{vertical-align:137.460000px;}
.ls59{letter-spacing:-7.287021px;}
.ls61{letter-spacing:-6.216000px;}
.ls5d{letter-spacing:-6.111000px;}
.ls5e{letter-spacing:-4.578000px;}
.ls34{letter-spacing:-4.368000px;}
.ls41{letter-spacing:-3.948000px;}
.ls39{letter-spacing:-3.024000px;}
.ls58{letter-spacing:-2.709000px;}
.ls60{letter-spacing:-1.827000px;}
.ls3e{letter-spacing:-1.805040px;}
.ls40{letter-spacing:-1.764000px;}
.ls5b{letter-spacing:-1.722000px;}
.ls3b{letter-spacing:-1.680000px;}
.ls3a{letter-spacing:-1.533021px;}
.ls33{letter-spacing:-1.491000px;}
.ls42{letter-spacing:-1.344021px;}
.ls57{letter-spacing:-1.171800px;}
.ls3f{letter-spacing:-0.968820px;}
.ls35{letter-spacing:-0.558060px;}
.ls62{letter-spacing:-0.331804px;}
.ls5f{letter-spacing:-0.319920px;}
.ls19{letter-spacing:-0.172800px;}
.lsf{letter-spacing:-0.144000px;}
.ls1c{letter-spacing:-0.138060px;}
.lsd{letter-spacing:-0.129600px;}
.ls32{letter-spacing:-0.117684px;}
.ls6{letter-spacing:-0.115200px;}
.ls0{letter-spacing:-0.115128px;}
.ls1a{letter-spacing:-0.110448px;}
.ls24{letter-spacing:-0.100872px;}
.lsc{letter-spacing:-0.100800px;}
.ls5{letter-spacing:-0.086400px;}
.ls25{letter-spacing:-0.084060px;}
.ls3{letter-spacing:-0.082836px;}
.ls14{letter-spacing:-0.072000px;}
.ls54{letter-spacing:-0.067248px;}
.ls4{letter-spacing:-0.057600px;}
.ls1{letter-spacing:-0.057564px;}
.ls12{letter-spacing:-0.055224px;}
.lse{letter-spacing:-0.043200px;}
.ls26{letter-spacing:-0.036000px;}
.ls13{letter-spacing:-0.028800px;}
.ls8{letter-spacing:-0.027612px;}
.ls1b{letter-spacing:-0.010800px;}
.ls5c{letter-spacing:-0.006300px;}
.ls10{letter-spacing:0.000000px;}
.ls66{letter-spacing:0.010800px;}
.ls16{letter-spacing:0.013212px;}
.ls23{letter-spacing:0.018720px;}
.ls18{letter-spacing:0.026424px;}
.ls21{letter-spacing:0.027612px;}
.ls64{letter-spacing:0.028800px;}
.ls22{letter-spacing:0.028836px;}
.ls65{letter-spacing:0.032400px;}
.ls17{letter-spacing:0.039636px;}
.ls7{letter-spacing:0.043200px;}
.ls9{letter-spacing:0.082836px;}
.ls67{letter-spacing:0.110880px;}
.ls1d{letter-spacing:0.165672px;}
.ls49{letter-spacing:0.421865px;}
.ls4b{letter-spacing:0.459786px;}
.ls4e{letter-spacing:0.507186px;}
.ls4f{letter-spacing:0.535627px;}
.ls63{letter-spacing:0.702009px;}
.ls4d{letter-spacing:0.763150px;}
.ls52{letter-spacing:0.781570px;}
.ls53{letter-spacing:0.786850px;}
.ls46{letter-spacing:0.970200px;}
.ls48{letter-spacing:0.985932px;}
.ls45{letter-spacing:1.024320px;}
.ls4c{letter-spacing:1.110139px;}
.ls55{letter-spacing:1.113914px;}
.ls30{letter-spacing:1.178100px;}
.ls29{letter-spacing:1.215060px;}
.ls28{letter-spacing:1.224300px;}
.ls2b{letter-spacing:1.228920px;}
.ls47{letter-spacing:1.275120px;}
.ls50{letter-spacing:1.478899px;}
.ls2f{letter-spacing:1.515360px;}
.ls38{letter-spacing:1.529220px;}
.ls3d{letter-spacing:1.530000px;}
.ls51{letter-spacing:1.550000px;}
.ls31{letter-spacing:1.760220px;}
.ls44{letter-spacing:1.764840px;}
.ls43{letter-spacing:1.950030px;}
.ls36{letter-spacing:2.000460px;}
.ls37{letter-spacing:2.310000px;}
.ls56{letter-spacing:2.370030px;}
.ls3c{letter-spacing:2.610000px;}
.ls5a{letter-spacing:4.140000px;}
.ls1f{letter-spacing:4.203858px;}
.ls1e{letter-spacing:6.960030px;}
.ls20{letter-spacing:7.830000px;}
.ls2a{letter-spacing:25.733400px;}
.ls4a{letter-spacing:27.255345px;}
.ls2d{letter-spacing:54.565200px;}
.ls2{letter-spacing:77.125800px;}
.lsa{letter-spacing:77.126400px;}
.ls15{letter-spacing:84.505680px;}
.ls11{letter-spacing:116.725800px;}
.lsb{letter-spacing:116.726400px;}
.ls2e{letter-spacing:229.285200px;}
.ls2c{letter-spacing:579.991800px;}
.ls27{letter-spacing:666.856800px;}
.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:-76.844196px;}
.ws5b{word-spacing:-76.706136px;}
.ws39{word-spacing:-68.354640px;}
.ws35{word-spacing:-39.988800px;}
.ws2d{word-spacing:-39.960000px;}
.wsa{word-spacing:-39.888000px;}
.ws36{word-spacing:-26.750196px;}
.ws2c{word-spacing:-26.721360px;}
.ws3a{word-spacing:-20.016000px;}
.ws18{word-spacing:-6.129864px;}
.ws4c{word-spacing:-5.918400px;}
.ws40{word-spacing:-1.491048px;}
.ws1c{word-spacing:-1.109808px;}
.ws13{word-spacing:-1.049256px;}
.ws23{word-spacing:-0.966420px;}
.ws3e{word-spacing:-0.874224px;}
.ws24{word-spacing:-0.676800px;}
.ws21{word-spacing:-0.635076px;}
.ws8{word-spacing:-0.594000px;}
.ws1d{word-spacing:-0.581328px;}
.ws4b{word-spacing:-0.518400px;}
.ws34{word-spacing:-0.414180px;}
.ws1a{word-spacing:-0.356724px;}
.ws3b{word-spacing:-0.319428px;}
.ws44{word-spacing:-0.302400px;}
.ws48{word-spacing:-0.268992px;}
.ws3f{word-spacing:-0.252180px;}
.ws41{word-spacing:-0.244800px;}
.ws46{word-spacing:-0.216000px;}
.ws49{word-spacing:-0.184932px;}
.ws4e{word-spacing:-0.183600px;}
.ws3c{word-spacing:-0.172800px;}
.ws3d{word-spacing:-0.165600px;}
.ws4a{word-spacing:-0.151308px;}
.ws50{word-spacing:-0.151200px;}
.ws45{word-spacing:-0.140400px;}
.ws4d{word-spacing:-0.129600px;}
.ws22{word-spacing:-0.118800px;}
.ws47{word-spacing:-0.054000px;}
.ws4f{word-spacing:-0.032400px;}
.ws2{word-spacing:0.000000px;}
.ws56{word-spacing:0.028800px;}
.ws55{word-spacing:0.043200px;}
.ws1{word-spacing:0.076752px;}
.ws25{word-spacing:0.086400px;}
.ws17{word-spacing:0.100800px;}
.ws0{word-spacing:0.115128px;}
.ws32{word-spacing:0.187200px;}
.ws33{word-spacing:0.201600px;}
.ws11{word-spacing:0.244800px;}
.ws14{word-spacing:0.273600px;}
.ws2e{word-spacing:0.302400px;}
.ws57{word-spacing:0.331200px;}
.ws2f{word-spacing:0.345600px;}
.ws19{word-spacing:0.356724px;}
.ws42{word-spacing:0.360000px;}
.ws26{word-spacing:0.388800px;}
.ws59{word-spacing:0.432000px;}
.ws16{word-spacing:0.475200px;}
.ws20{word-spacing:0.489600px;}
.ws1b{word-spacing:0.502056px;}
.ws6{word-spacing:0.504000px;}
.ws58{word-spacing:0.518400px;}
.ws38{word-spacing:0.532800px;}
.ws15{word-spacing:0.547200px;}
.wsc{word-spacing:0.561600px;}
.ws54{word-spacing:0.619200px;}
.wsb{word-spacing:0.648000px;}
.ws43{word-spacing:0.691200px;}
.wsd{word-spacing:0.705600px;}
.ws30{word-spacing:0.720000px;}
.ws4{word-spacing:0.763200px;}
.ws31{word-spacing:0.864000px;}
.ws28{word-spacing:0.907200px;}
.ws5{word-spacing:0.936000px;}
.ws2b{word-spacing:0.979200px;}
.ws37{word-spacing:1.065600px;}
.ws1e{word-spacing:1.070172px;}
.ws3{word-spacing:1.094400px;}
.ws27{word-spacing:1.209600px;}
.ws7{word-spacing:1.267200px;}
.wsf{word-spacing:1.296000px;}
.wse{word-spacing:1.339200px;}
.ws52{word-spacing:1.368000px;}
.ws29{word-spacing:1.382400px;}
.ws10{word-spacing:1.483200px;}
.ws53{word-spacing:1.497600px;}
.ws2a{word-spacing:1.569600px;}
.ws1f{word-spacing:1.584000px;}
.ws5a{word-spacing:1.670400px;}
.ws12{word-spacing:1.713600px;}
.ws51{word-spacing:66.525960px;}
._31{margin-left:-47.395534px;}
._3{margin-left:-20.791836px;}
._b{margin-left:-18.318060px;}
._4a{margin-left:-13.196592px;}
._2{margin-left:-10.857600px;}
._7{margin-left:-9.857484px;}
._c{margin-left:-8.626680px;}
._4b{margin-left:-7.411320px;}
._d{margin-left:-5.884200px;}
._8{margin-left:-4.445532px;}
._5{margin-left:-2.203200px;}
._1{margin-left:-1.195200px;}
._0{width:1.080000px;}
._6{width:2.174400px;}
._25{width:3.592508px;}
._9{width:5.411952px;}
._1c{width:19.449600px;}
._19{width:20.692560px;}
._4c{width:25.179031px;}
._43{width:30.373865px;}
._1d{width:35.490048px;}
._a{width:38.073600px;}
._17{width:39.990617px;}
._4{width:41.860800px;}
._30{width:57.960000px;}
._2b{width:59.452800px;}
._26{width:62.889600px;}
._18{width:64.221000px;}
._10{width:67.060756px;}
._12{width:69.044390px;}
._22{width:83.246400px;}
._24{width:101.352000px;}
._2c{width:107.654400px;}
._13{width:110.248301px;}
._15{width:112.231935px;}
._21{width:117.660000px;}
._48{width:145.715091px;}
._2f{width:147.433920px;}
._49{width:148.930032px;}
._2e{width:150.270000px;}
._27{width:151.552466px;}
._47{width:156.381600px;}
._40{width:162.155666px;}
._f{width:174.684180px;}
._20{width:194.289600px;}
._2d{width:196.658191px;}
._14{width:198.572224px;}
._3a{width:200.461200px;}
._e{width:217.944180px;}
._1a{width:239.596800px;}
._11{width:241.829369px;}
._36{width:253.788000px;}
._23{width:280.149600px;}
._1f{width:282.486000px;}
._39{width:366.858000px;}
._2a{width:368.887200px;}
._42{width:386.128833px;}
._29{width:397.070400px;}
._3d{width:410.649600px;}
._3b{width:428.596800px;}
._16{width:457.836694px;}
._3e{width:476.375666px;}
._34{width:494.214533px;}
._41{width:498.435600px;}
._28{width:518.551200px;}
._35{width:533.135666px;}
._1e{width:541.582800px;}
._3f{width:559.500065px;}
._45{width:583.756800px;}
._38{width:621.189600px;}
._1b{width:710.549550px;}
._32{width:723.630617px;}
._33{width:798.688833px;}
._37{width:824.092800px;}
._44{width:973.717200px;}
._3c{width:1034.745600px;}
._46{width:1439.430000px;}
.fc5{color:transparent;}
.fc2{color:rgb(161,196,227);}
.fc4{color:rgb(98,157,209);}
.fc1{color:rgb(98,157,209);}
.fc3{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs19{font-size:13.746000px;}
.fs1e{font-size:30.600000px;}
.fs12{font-size:34.800600px;}
.fs3d{font-size:35.346000px;}
.fs13{font-size:35.400600px;}
.fs36{font-size:37.200000px;}
.fs38{font-size:37.309200px;}
.fs2b{font-size:38.400600px;}
.fs2d{font-size:39.000600px;}
.fs20{font-size:40.200000px;}
.fs4b{font-size:41.400600px;}
.fs10{font-size:42.600000px;}
.fs1a{font-size:43.800600px;}
.fs15{font-size:46.200000px;}
.fs40{font-size:46.800600px;}
.fs3f{font-size:47.127600px;}
.fs33{font-size:47.400600px;}
.fsf{font-size:47.880000px;}
.fs1b{font-size:48.000000px;}
.fs4c{font-size:48.600000px;}
.fs43{font-size:49.200000px;}
.fs14{font-size:50.400000px;}
.fs48{font-size:51.600000px;}
.fs16{font-size:52.200000px;}
.fs30{font-size:52.800000px;}
.fs34{font-size:54.000000px;}
.fs35{font-size:55.800000px;}
.fs2f{font-size:57.600000px;}
.fs3a{font-size:60.873000px;}
.fs44{font-size:63.000000px;}
.fs1f{font-size:65.400000px;}
.fs2e{font-size:66.600000px;}
.fse{font-size:72.000000px;}
.fs4a{font-size:74.400000px;}
.fs17{font-size:75.600000px;}
.fs26{font-size:76.200000px;}
.fs39{font-size:77.400000px;}
.fs41{font-size:82.800000px;}
.fs18{font-size:86.400000px;}
.fs25{font-size:92.400000px;}
.fs42{font-size:94.800000px;}
.fsb{font-size:96.120000px;}
.fs3c{font-size:98.400000px;}
.fs21{font-size:99.000000px;}
.fs1c{font-size:106.800000px;}
.fs37{font-size:107.400000px;}
.fs4{font-size:108.000000px;}
.fs31{font-size:109.200600px;}
.fs1d{font-size:112.200600px;}
.fs23{font-size:112.800000px;}
.fs2a{font-size:121.200600px;}
.fs27{font-size:123.000000px;}
.fs11{font-size:124.800000px;}
.fs46{font-size:130.800000px;}
.fs6{font-size:132.120000px;}
.fs29{font-size:138.600000px;}
.fs8{font-size:139.200600px;}
.fs3e{font-size:140.400000px;}
.fs3{font-size:144.000000px;}
.fs28{font-size:144.600000px;}
.fs5{font-size:145.080000px;}
.fs47{font-size:148.800000px;}
.fs9{font-size:156.600000px;}
.fs2{font-size:158.400000px;}
.fs7{font-size:166.200600px;}
.fs2c{font-size:168.000000px;}
.fsd{font-size:168.120000px;}
.fs45{font-size:174.600000px;}
.fs24{font-size:175.200600px;}
.fs49{font-size:177.600000px;}
.fsa{font-size:189.600000px;}
.fs0{font-size:191.880000px;}
.fs22{font-size:198.000000px;}
.fs3b{font-size:208.200600px;}
.fsc{font-size:245.880000px;}
.fs32{font-size:259.200600px;}
.fs1{font-size:276.120000px;}
.y0{bottom:0.000000px;}
.y66{bottom:167.824200px;}
.y91{bottom:167.828250px;}
.ya8{bottom:186.510000px;}
.y65{bottom:196.793250px;}
.y64{bottom:215.933250px;}
.y16{bottom:222.690000px;}
.y90{bottom:229.193250px;}
.y39{bottom:229.710000px;}
.y34{bottom:232.148250px;}
.y28{bottom:233.940000px;}
.y63{bottom:234.593250px;}
.y8f{bottom:239.498250px;}
.y94{bottom:252.660000px;}
.y8e{bottom:253.253250px;}
.y1c{bottom:259.680000px;}
.y15{bottom:265.890000px;}
.y8d{bottom:270.923250px;}
.ya7{bottom:272.910000px;}
.y62{bottom:276.825150px;}
.y8c{bottom:287.618250px;}
.y60{bottom:293.018250px;}
.y61{bottom:293.993250px;}
.y8a{bottom:295.463250px;}
.y93{bottom:295.860000px;}
.y88{bottom:297.923250px;}
.yb{bottom:297.930000px;}
.y89{bottom:299.393250px;}
.y8b{bottom:299.885907px;}
.y1b{bottom:302.880000px;}
.y87{bottom:304.793250px;}
.y30{bottom:308.640000px;}
.y85{bottom:308.723250px;}
.y14{bottom:309.090000px;}
.y86{bottom:314.123250px;}
.y5f{bottom:317.558250px;}
.y5c{bottom:318.053250px;}
.y83{bottom:320.498250px;}
.y5e{bottom:321.983250px;}
.y5d{bottom:324.923250px;}
.y84{bottom:325.418250px;}
.y81{bottom:327.863250px;}
.y9{bottom:329.340000px;}
.y5b{bottom:332.783250px;}
.y5a{bottom:334.248000px;}
.y82{bottom:335.228250px;}
.y7f{bottom:340.148250px;}
.y80{bottom:343.088250px;}
.y56{bottom:344.063250px;}
.y1a{bottom:346.080000px;}
.y7e{bottom:346.523250px;}
.y2f{bottom:351.840000px;}
.y7d{bottom:353.888250px;}
.y58{bottom:354.863250px;}
.y59{bottom:357.818250px;}
.y7c{bottom:359.783250px;}
.y92{bottom:369.030000px;}
.y57{bottom:372.053250px;}
.y7b{bottom:375.488250px;}
.y79{bottom:381.383250px;}
.y13{bottom:382.350000px;}
.y78{bottom:384.818250px;}
.y55{bottom:385.298250px;}
.y7a{bottom:387.259650px;}
.y54{bottom:387.758250px;}
.ya6{bottom:389.280000px;}
.y31{bottom:393.653250px;}
.y2e{bottom:395.040000px;}
.y77{bottom:396.098250px;}
.ya1{bottom:399.448200px;}
.ya4{bottom:401.070000px;}
.y27{bottom:401.520000px;}
.y35{bottom:402.488250px;}
.y8{bottom:402.510000px;}
.y76{bottom:408.383250px;}
.y36{bottom:410.348250px;}
.y75{bottom:412.298250px;}
.y9e{bottom:415.110900px;}
.y73{bottom:415.748250px;}
.y19{bottom:419.340000px;}
.y53{bottom:420.158250px;}
.y74{bottom:420.653250px;}
.y98{bottom:420.780000px;}
.y70{bottom:424.088250px;}
.y12{bottom:425.550000px;}
.y71{bottom:427.028250px;}
.y52{bottom:428.498250px;}
.y22{bottom:432.210927px;}
.ya5{bottom:432.480000px;}
.y72{bottom:435.383250px;}
.y6f{bottom:438.818250px;}
.y51{bottom:439.298250px;}
.y26{bottom:444.720000px;}
.y50{bottom:449.123250px;}
.y6e{bottom:450.098250px;}
.y4f{bottom:459.428250px;}
.yad{bottom:462.270000px;}
.y18{bottom:462.540000px;}
.y6d{bottom:463.358250px;}
.y21{bottom:463.890000px;}
.y4e{bottom:466.298250px;}
.y2d{bottom:468.300000px;}
.y11{bottom:468.750000px;}
.y4d{bottom:473.663250px;}
.y7{bottom:475.680000px;}
.y9c{bottom:479.190000px;}
.y9f{bottom:480.810000px;}
.y4c{bottom:482.018250px;}
.ya2{bottom:482.340000px;}
.y6c{bottom:485.453250px;}
.y97{bottom:485.580000px;}
.y25{bottom:487.920000px;}
.y4b{bottom:490.358250px;}
.y4a{bottom:498.698250px;}
.y47{bottom:503.123250px;}
.yac{bottom:505.470000px;}
.y49{bottom:505.583250px;}
.y38{bottom:505.740000px;}
.y2c{bottom:511.500000px;}
.y10{bottom:511.950000px;}
.y3d{bottom:513.030000px;}
.y48{bottom:515.888250px;}
.y46{bottom:518.348250px;}
.y6b{bottom:521.783250px;}
.y20{bottom:525.540927px;}
.yaf{bottom:525.718515px;}
.y24{bottom:531.120000px;}
.y6a{bottom:532.088250px;}
.y33{bottom:532.583250px;}
.y17{bottom:535.710000px;}
.y69{bottom:545.828250px;}
.yab{bottom:548.670000px;}
.y6{bottom:548.940000px;}
.y96{bottom:550.380000px;}
.y3e{bottom:550.560000px;}
.y1f{bottom:557.220000px;}
.y45{bottom:565.463250px;}
.y32{bottom:568.418250px;}
.y37{bottom:578.910000px;}
.y68{bottom:582.158250px;}
.y2b{bottom:584.670000px;}
.y44{bottom:585.098250px;}
.yf{bottom:585.120000px;}
.y67{bottom:590.498250px;}
.yaa{bottom:591.870000px;}
.y43{bottom:591.983250px;}
.y42{bottom:604.253250px;}
.yae{bottom:608.520000px;}
.y95{bottom:615.180000px;}
.y1e{bottom:618.870927px;}
.y40{bottom:619.958250px;}
.y5{bottom:622.110000px;}
.y41{bottom:622.418250px;}
.y23{bottom:623.010000px;}
.ye{bottom:628.320000px;}
.y9d{bottom:633.630000px;}
.ya9{bottom:635.070000px;}
.y1d{bottom:650.550000px;}
.y3{bottom:669.985248px;}
.yd{bottom:671.520000px;}
.y2a{bottom:684.838515px;}
.y3c{bottom:695.911827px;}
.y9b{bottom:695.913654px;}
.y3f{bottom:695.916030px;}
.y4{bottom:702.030000px;}
.y2{bottom:727.587624px;}
.ya0{bottom:736.589100px;}
.yc{bottom:737.580000px;}
.y3b{bottom:746.310000px;}
.y9a{bottom:746.311827px;}
.ya3{bottom:755.490900px;}
.ya{bottom:757.740000px;}
.y29{bottom:767.640000px;}
.y1{bottom:785.190000px;}
.y99{bottom:796.710000px;}
.y3a{bottom:801.210000px;}
.h18{height:9.154836px;}
.h38{height:24.847927px;}
.h3f{height:31.386982px;}
.h1e{height:31.914844px;}
.h12{height:34.743753px;}
.h11{height:36.295938px;}
.h21{height:39.454102px;}
.h27{height:40.050626px;}
.h3a{height:40.541418px;}
.h29{height:40.676407px;}
.he{height:41.809570px;}
.h1a{height:42.987894px;}
.h13{height:48.185156px;}
.h43{height:48.287109px;}
.h4b{height:48.811563px;}
.h31{height:49.437345px;}
.h17{height:49.464844px;}
.h1b{height:50.062500px;}
.h4f{height:50.688281px;}
.h14{height:51.231445px;}
.h2f{height:51.820313px;}
.h22{height:52.565625px;}
.h32{height:52.998047px;}
.h33{height:54.237656px;}
.h19{height:54.442969px;}
.h4d{height:54.691563px;}
.h44{height:61.831055px;}
.h2b{height:62.309063px;}
.h48{height:66.511563px;}
.h4c{height:68.198436px;}
.h2d{height:70.297266px;}
.h20{height:74.129063px;}
.h15{height:74.197266px;}
.h2e{height:74.786133px;}
.hd{height:75.093750px;}
.h39{height:75.963867px;}
.h3e{height:75.989062px;}
.h4e{height:77.596875px;}
.h49{height:79.949062px;}
.h41{height:81.263672px;}
.h36{height:81.929062px;}
.h10{height:84.396094px;}
.h16{height:84.796875px;}
.h34{height:87.809063px;}
.h3c{height:96.574219px;}
.h42{height:98.873438px;}
.h35{height:103.253906px;}
.h37{height:105.407227px;}
.h2a{height:105.443063px;}
.h1d{height:110.118753px;}
.h24{height:110.707031px;}
.h1c{height:111.389063px;}
.h5{height:112.640625px;}
.h2c{height:113.311462px;}
.h40{height:121.214662px;}
.h1f{height:123.209063px;}
.hf{height:130.162500px;}
.h46{height:136.420313px;}
.h8{height:136.617776px;}
.h6{height:137.797031px;}
.h4{height:150.187500px;}
.h3d{height:150.392813px;}
.h47{height:155.193750px;}
.h7{height:163.116800px;}
.h9{height:163.328906px;}
.h50{height:165.206250px;}
.h26{height:170.454281px;}
.h28{height:175.218750px;}
.hc{height:175.343906px;}
.h4a{height:178.987500px;}
.h45{height:182.102344px;}
.h25{height:182.728751px;}
.ha{height:197.746875px;}
.h2{height:200.124844px;}
.h3b{height:204.337503px;}
.h23{height:227.331863px;}
.hb{height:256.445156px;}
.h30{height:278.198126px;}
.h3{height:287.984531px;}
.h1{height:892.500000px;}
.h0{height:892.830000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x4d{left:145.335750px;}
.x5a{left:147.675750px;}
.x1{left:149.205900px;}
.x7{left:157.035900px;}
.x5{left:167.205900px;}
.x1c{left:171.165750px;}
.x52{left:172.605750px;}
.x5b{left:175.305750px;}
.x37{left:188.535750px;}
.x10{left:189.885750px;}
.xc{left:194.115750px;}
.x2{left:197.175900px;}
.x9{left:199.605750px;}
.x4e{left:206.985750px;}
.xa{left:208.425750px;}
.x6{left:209.955750px;}
.x59{left:227.955750px;}
.xd{left:235.335750px;}
.xb{left:247.935750px;}
.x4c{left:251.805750px;}
.x13{left:256.715400px;}
.xe{left:261.525750px;}
.x50{left:270.972339px;}
.x1f{left:301.755750px;}
.x14{left:314.855400px;}
.x4f{left:352.245750px;}
.x58{left:355.215750px;}
.x2c{left:378.935400px;}
.x2d{left:381.290400px;}
.x19{left:382.665750px;}
.x15{left:385.790400px;}
.x29{left:408.290400px;}
.x4{left:414.795750px;}
.x1b{left:427.575750px;}
.x32{left:436.175400px;}
.x31{left:439.070400px;}
.x20{left:445.820400px;}
.x28{left:449.870400px;}
.x3d{left:458.660400px;}
.x21{left:467.285400px;}
.x2f{left:468.830400px;}
.x1a{left:474.195750px;}
.x3b{left:482.300400px;}
.x16{left:484.295400px;}
.x1d{left:486.705975px;}
.x22{left:488.825400px;}
.x8{left:490.845750px;}
.x3c{left:493.070400px;}
.x3a{left:497.975400px;}
.xf{left:503.895750px;}
.x47{left:531.365400px;}
.x45{left:535.775400px;}
.x3{left:536.837079px;}
.x11{left:541.248450px;}
.x43{left:549.545400px;}
.x2e{left:555.725400px;}
.x12{left:564.195750px;}
.x38{left:569.495670px;}
.x41{left:571.115400px;}
.x23{left:576.410400px;}
.x33{left:595.775400px;}
.x24{left:597.875400px;}
.x3e{left:598.925400px;}
.x39{left:620.180400px;}
.x2a{left:628.685400px;}
.x25{left:630.215400px;}
.x40{left:631.700400px;}
.x3f{left:644.195400px;}
.x4b{left:647.135400px;}
.x34{left:650.345400px;}
.x48{left:677.180400px;}
.x44{left:685.805400px;}
.x35{left:704.750400px;}
.x2b{left:712.475400px;}
.x42{left:713.975400px;}
.x26{left:717.650400px;}
.x36{left:759.215400px;}
.x17{left:771.290400px;}
.x53{left:780.105750px;}
.x57{left:785.505750px;}
.x55{left:794.413950px;}
.x49{left:820.460400px;}
.x4a{left:824.391650px;}
.x46{left:829.115400px;}
.x27{left:837.080400px;}
.x30{left:838.220400px;}
.x51{left:843.285750px;}
.x56{left:845.985750px;}
.x54{left:866.325750px;}
.x1e{left:874.155750px;}
.x18{left:1014.695400px;}
@media print{
.v20{vertical-align:-50.666667pt;}
.v19{vertical-align:-48.853333pt;}
.v1a{vertical-align:-43.626667pt;}
.va{vertical-align:-41.920000pt;}
.v1f{vertical-align:-38.389521pt;}
.v9{vertical-align:-33.120000pt;}
.v1{vertical-align:-31.680000pt;}
.v24{vertical-align:-27.946667pt;}
.v13{vertical-align:-26.186667pt;}
.v6{vertical-align:-24.480000pt;}
.v5{vertical-align:-20.960000pt;}
.v4{vertical-align:-19.200000pt;}
.vd{vertical-align:-15.680000pt;}
.vb{vertical-align:-13.920000pt;}
.v16{vertical-align:-12.213333pt;}
.v12{vertical-align:-10.506667pt;}
.v11{vertical-align:-8.733867pt;}
.v17{vertical-align:-5.226667pt;}
.v1c{vertical-align:-3.466667pt;}
.v14{vertical-align:-1.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1b{vertical-align:1.708800pt;}
.v21{vertical-align:3.520000pt;}
.v18{vertical-align:5.221333pt;}
.v10{vertical-align:7.025067pt;}
.v15{vertical-align:8.746667pt;}
.v8{vertical-align:10.506667pt;}
.v1e{vertical-align:12.202854pt;}
.vf{vertical-align:13.955200pt;}
.v7{vertical-align:15.733333pt;}
.v3{vertical-align:19.200000pt;}
.v1d{vertical-align:26.186667pt;}
.v25{vertical-align:28.800000pt;}
.v2{vertical-align:38.400000pt;}
.v22{vertical-align:41.866667pt;}
.v23{vertical-align:48.853333pt;}
.ve{vertical-align:82.080000pt;}
.vc{vertical-align:122.186667pt;}
.ls59{letter-spacing:-6.477352pt;}
.ls61{letter-spacing:-5.525333pt;}
.ls5d{letter-spacing:-5.432000pt;}
.ls5e{letter-spacing:-4.069333pt;}
.ls34{letter-spacing:-3.882667pt;}
.ls41{letter-spacing:-3.509333pt;}
.ls39{letter-spacing:-2.688000pt;}
.ls58{letter-spacing:-2.408000pt;}
.ls60{letter-spacing:-1.624000pt;}
.ls3e{letter-spacing:-1.604480pt;}
.ls40{letter-spacing:-1.568000pt;}
.ls5b{letter-spacing:-1.530667pt;}
.ls3b{letter-spacing:-1.493333pt;}
.ls3a{letter-spacing:-1.362685pt;}
.ls33{letter-spacing:-1.325333pt;}
.ls42{letter-spacing:-1.194685pt;}
.ls57{letter-spacing:-1.041600pt;}
.ls3f{letter-spacing:-0.861173pt;}
.ls35{letter-spacing:-0.496053pt;}
.ls62{letter-spacing:-0.294937pt;}
.ls5f{letter-spacing:-0.284373pt;}
.ls19{letter-spacing:-0.153600pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls1c{letter-spacing:-0.122720pt;}
.lsd{letter-spacing:-0.115200pt;}
.ls32{letter-spacing:-0.104608pt;}
.ls6{letter-spacing:-0.102400pt;}
.ls0{letter-spacing:-0.102336pt;}
.ls1a{letter-spacing:-0.098176pt;}
.ls24{letter-spacing:-0.089664pt;}
.lsc{letter-spacing:-0.089600pt;}
.ls5{letter-spacing:-0.076800pt;}
.ls25{letter-spacing:-0.074720pt;}
.ls3{letter-spacing:-0.073632pt;}
.ls14{letter-spacing:-0.064000pt;}
.ls54{letter-spacing:-0.059776pt;}
.ls4{letter-spacing:-0.051200pt;}
.ls1{letter-spacing:-0.051168pt;}
.ls12{letter-spacing:-0.049088pt;}
.lse{letter-spacing:-0.038400pt;}
.ls26{letter-spacing:-0.032000pt;}
.ls13{letter-spacing:-0.025600pt;}
.ls8{letter-spacing:-0.024544pt;}
.ls1b{letter-spacing:-0.009600pt;}
.ls5c{letter-spacing:-0.005600pt;}
.ls10{letter-spacing:0.000000pt;}
.ls66{letter-spacing:0.009600pt;}
.ls16{letter-spacing:0.011744pt;}
.ls23{letter-spacing:0.016640pt;}
.ls18{letter-spacing:0.023488pt;}
.ls21{letter-spacing:0.024544pt;}
.ls64{letter-spacing:0.025600pt;}
.ls22{letter-spacing:0.025632pt;}
.ls65{letter-spacing:0.028800pt;}
.ls17{letter-spacing:0.035232pt;}
.ls7{letter-spacing:0.038400pt;}
.ls9{letter-spacing:0.073632pt;}
.ls67{letter-spacing:0.098560pt;}
.ls1d{letter-spacing:0.147264pt;}
.ls49{letter-spacing:0.374991pt;}
.ls4b{letter-spacing:0.408699pt;}
.ls4e{letter-spacing:0.450832pt;}
.ls4f{letter-spacing:0.476113pt;}
.ls63{letter-spacing:0.624008pt;}
.ls4d{letter-spacing:0.678355pt;}
.ls52{letter-spacing:0.694729pt;}
.ls53{letter-spacing:0.699422pt;}
.ls46{letter-spacing:0.862400pt;}
.ls48{letter-spacing:0.876384pt;}
.ls45{letter-spacing:0.910507pt;}
.ls4c{letter-spacing:0.986790pt;}
.ls55{letter-spacing:0.990146pt;}
.ls30{letter-spacing:1.047200pt;}
.ls29{letter-spacing:1.080053pt;}
.ls28{letter-spacing:1.088267pt;}
.ls2b{letter-spacing:1.092373pt;}
.ls47{letter-spacing:1.133440pt;}
.ls50{letter-spacing:1.314577pt;}
.ls2f{letter-spacing:1.346987pt;}
.ls38{letter-spacing:1.359307pt;}
.ls3d{letter-spacing:1.360000pt;}
.ls51{letter-spacing:1.377777pt;}
.ls31{letter-spacing:1.564640pt;}
.ls44{letter-spacing:1.568747pt;}
.ls43{letter-spacing:1.733360pt;}
.ls36{letter-spacing:1.778187pt;}
.ls37{letter-spacing:2.053333pt;}
.ls56{letter-spacing:2.106693pt;}
.ls3c{letter-spacing:2.320000pt;}
.ls5a{letter-spacing:3.680000pt;}
.ls1f{letter-spacing:3.736763pt;}
.ls1e{letter-spacing:6.186693pt;}
.ls20{letter-spacing:6.960000pt;}
.ls2a{letter-spacing:22.874133pt;}
.ls4a{letter-spacing:24.226973pt;}
.ls2d{letter-spacing:48.502400pt;}
.ls2{letter-spacing:68.556267pt;}
.lsa{letter-spacing:68.556800pt;}
.ls15{letter-spacing:75.116160pt;}
.ls11{letter-spacing:103.756267pt;}
.lsb{letter-spacing:103.756800pt;}
.ls2e{letter-spacing:203.809067pt;}
.ls2c{letter-spacing:515.548267pt;}
.ls27{letter-spacing:592.761600pt;}
.ws9{word-spacing:-68.305952pt;}
.ws5b{word-spacing:-68.183232pt;}
.ws39{word-spacing:-60.759680pt;}
.ws35{word-spacing:-35.545600pt;}
.ws2d{word-spacing:-35.520000pt;}
.wsa{word-spacing:-35.456000pt;}
.ws36{word-spacing:-23.777952pt;}
.ws2c{word-spacing:-23.752320pt;}
.ws3a{word-spacing:-17.792000pt;}
.ws18{word-spacing:-5.448768pt;}
.ws4c{word-spacing:-5.260800pt;}
.ws40{word-spacing:-1.325376pt;}
.ws1c{word-spacing:-0.986496pt;}
.ws13{word-spacing:-0.932672pt;}
.ws23{word-spacing:-0.859040pt;}
.ws3e{word-spacing:-0.777088pt;}
.ws24{word-spacing:-0.601600pt;}
.ws21{word-spacing:-0.564512pt;}
.ws8{word-spacing:-0.528000pt;}
.ws1d{word-spacing:-0.516736pt;}
.ws4b{word-spacing:-0.460800pt;}
.ws34{word-spacing:-0.368160pt;}
.ws1a{word-spacing:-0.317088pt;}
.ws3b{word-spacing:-0.283936pt;}
.ws44{word-spacing:-0.268800pt;}
.ws48{word-spacing:-0.239104pt;}
.ws3f{word-spacing:-0.224160pt;}
.ws41{word-spacing:-0.217600pt;}
.ws46{word-spacing:-0.192000pt;}
.ws49{word-spacing:-0.164384pt;}
.ws4e{word-spacing:-0.163200pt;}
.ws3c{word-spacing:-0.153600pt;}
.ws3d{word-spacing:-0.147200pt;}
.ws4a{word-spacing:-0.134496pt;}
.ws50{word-spacing:-0.134400pt;}
.ws45{word-spacing:-0.124800pt;}
.ws4d{word-spacing:-0.115200pt;}
.ws22{word-spacing:-0.105600pt;}
.ws47{word-spacing:-0.048000pt;}
.ws4f{word-spacing:-0.028800pt;}
.ws2{word-spacing:0.000000pt;}
.ws56{word-spacing:0.025600pt;}
.ws55{word-spacing:0.038400pt;}
.ws1{word-spacing:0.068224pt;}
.ws25{word-spacing:0.076800pt;}
.ws17{word-spacing:0.089600pt;}
.ws0{word-spacing:0.102336pt;}
.ws32{word-spacing:0.166400pt;}
.ws33{word-spacing:0.179200pt;}
.ws11{word-spacing:0.217600pt;}
.ws14{word-spacing:0.243200pt;}
.ws2e{word-spacing:0.268800pt;}
.ws57{word-spacing:0.294400pt;}
.ws2f{word-spacing:0.307200pt;}
.ws19{word-spacing:0.317088pt;}
.ws42{word-spacing:0.320000pt;}
.ws26{word-spacing:0.345600pt;}
.ws59{word-spacing:0.384000pt;}
.ws16{word-spacing:0.422400pt;}
.ws20{word-spacing:0.435200pt;}
.ws1b{word-spacing:0.446272pt;}
.ws6{word-spacing:0.448000pt;}
.ws58{word-spacing:0.460800pt;}
.ws38{word-spacing:0.473600pt;}
.ws15{word-spacing:0.486400pt;}
.wsc{word-spacing:0.499200pt;}
.ws54{word-spacing:0.550400pt;}
.wsb{word-spacing:0.576000pt;}
.ws43{word-spacing:0.614400pt;}
.wsd{word-spacing:0.627200pt;}
.ws30{word-spacing:0.640000pt;}
.ws4{word-spacing:0.678400pt;}
.ws31{word-spacing:0.768000pt;}
.ws28{word-spacing:0.806400pt;}
.ws5{word-spacing:0.832000pt;}
.ws2b{word-spacing:0.870400pt;}
.ws37{word-spacing:0.947200pt;}
.ws1e{word-spacing:0.951264pt;}
.ws3{word-spacing:0.972800pt;}
.ws27{word-spacing:1.075200pt;}
.ws7{word-spacing:1.126400pt;}
.wsf{word-spacing:1.152000pt;}
.wse{word-spacing:1.190400pt;}
.ws52{word-spacing:1.216000pt;}
.ws29{word-spacing:1.228800pt;}
.ws10{word-spacing:1.318400pt;}
.ws53{word-spacing:1.331200pt;}
.ws2a{word-spacing:1.395200pt;}
.ws1f{word-spacing:1.408000pt;}
.ws5a{word-spacing:1.484800pt;}
.ws12{word-spacing:1.523200pt;}
.ws51{word-spacing:59.134187pt;}
._31{margin-left:-42.129363pt;}
._3{margin-left:-18.481632pt;}
._b{margin-left:-16.282720pt;}
._4a{margin-left:-11.730304pt;}
._2{margin-left:-9.651200pt;}
._7{margin-left:-8.762208pt;}
._c{margin-left:-7.668160pt;}
._4b{margin-left:-6.587840pt;}
._d{margin-left:-5.230400pt;}
._8{margin-left:-3.951584pt;}
._5{margin-left:-1.958400pt;}
._1{margin-left:-1.062400pt;}
._0{width:0.960000pt;}
._6{width:1.932800pt;}
._25{width:3.193341pt;}
._9{width:4.810624pt;}
._1c{width:17.288533pt;}
._19{width:18.393387pt;}
._4c{width:22.381361pt;}
._43{width:26.998991pt;}
._1d{width:31.546709pt;}
._a{width:33.843200pt;}
._17{width:35.547215pt;}
._4{width:37.209600pt;}
._30{width:51.520000pt;}
._2b{width:52.846933pt;}
._26{width:55.901867pt;}
._18{width:57.085333pt;}
._10{width:59.609561pt;}
._12{width:61.372791pt;}
._22{width:73.996800pt;}
._24{width:90.090667pt;}
._2c{width:95.692800pt;}
._13{width:97.998490pt;}
._15{width:99.761720pt;}
._21{width:104.586667pt;}
._48{width:129.524525pt;}
._2f{width:131.052373pt;}
._49{width:132.382251pt;}
._2e{width:133.573333pt;}
._27{width:134.713303pt;}
._47{width:139.005867pt;}
._40{width:144.138370pt;}
._f{width:155.274827pt;}
._20{width:172.701867pt;}
._2d{width:174.807281pt;}
._14{width:176.508643pt;}
._3a{width:178.187733pt;}
._e{width:193.728160pt;}
._1a{width:212.974933pt;}
._11{width:214.959439pt;}
._36{width:225.589333pt;}
._23{width:249.021867pt;}
._1f{width:251.098667pt;}
._39{width:326.096000pt;}
._2a{width:327.899733pt;}
._42{width:343.225629pt;}
._29{width:352.951467pt;}
._3d{width:365.021867pt;}
._3b{width:380.974933pt;}
._16{width:406.965950pt;}
._3e{width:423.445037pt;}
._34{width:439.301807pt;}
._41{width:443.053867pt;}
._28{width:460.934400pt;}
._35{width:473.898370pt;}
._1e{width:481.406933pt;}
._3f{width:497.333391pt;}
._45{width:518.894933pt;}
._38{width:552.168533pt;}
._1b{width:631.599600pt;}
._32{width:643.227215pt;}
._33{width:709.945629pt;}
._37{width:732.526933pt;}
._44{width:865.526400pt;}
._3c{width:919.773867pt;}
._46{width:1279.493333pt;}
.fs19{font-size:12.218667pt;}
.fs1e{font-size:27.200000pt;}
.fs12{font-size:30.933867pt;}
.fs3d{font-size:31.418667pt;}
.fs13{font-size:31.467200pt;}
.fs36{font-size:33.066667pt;}
.fs38{font-size:33.163733pt;}
.fs2b{font-size:34.133867pt;}
.fs2d{font-size:34.667200pt;}
.fs20{font-size:35.733333pt;}
.fs4b{font-size:36.800533pt;}
.fs10{font-size:37.866667pt;}
.fs1a{font-size:38.933867pt;}
.fs15{font-size:41.066667pt;}
.fs40{font-size:41.600533pt;}
.fs3f{font-size:41.891200pt;}
.fs33{font-size:42.133867pt;}
.fsf{font-size:42.560000pt;}
.fs1b{font-size:42.666667pt;}
.fs4c{font-size:43.200000pt;}
.fs43{font-size:43.733333pt;}
.fs14{font-size:44.800000pt;}
.fs48{font-size:45.866667pt;}
.fs16{font-size:46.400000pt;}
.fs30{font-size:46.933333pt;}
.fs34{font-size:48.000000pt;}
.fs35{font-size:49.600000pt;}
.fs2f{font-size:51.200000pt;}
.fs3a{font-size:54.109333pt;}
.fs44{font-size:56.000000pt;}
.fs1f{font-size:58.133333pt;}
.fs2e{font-size:59.200000pt;}
.fse{font-size:64.000000pt;}
.fs4a{font-size:66.133333pt;}
.fs17{font-size:67.200000pt;}
.fs26{font-size:67.733333pt;}
.fs39{font-size:68.800000pt;}
.fs41{font-size:73.600000pt;}
.fs18{font-size:76.800000pt;}
.fs25{font-size:82.133333pt;}
.fs42{font-size:84.266667pt;}
.fsb{font-size:85.440000pt;}
.fs3c{font-size:87.466667pt;}
.fs21{font-size:88.000000pt;}
.fs1c{font-size:94.933333pt;}
.fs37{font-size:95.466667pt;}
.fs4{font-size:96.000000pt;}
.fs31{font-size:97.067200pt;}
.fs1d{font-size:99.733867pt;}
.fs23{font-size:100.266667pt;}
.fs2a{font-size:107.733867pt;}
.fs27{font-size:109.333333pt;}
.fs11{font-size:110.933333pt;}
.fs46{font-size:116.266667pt;}
.fs6{font-size:117.440000pt;}
.fs29{font-size:123.200000pt;}
.fs8{font-size:123.733867pt;}
.fs3e{font-size:124.800000pt;}
.fs3{font-size:128.000000pt;}
.fs28{font-size:128.533333pt;}
.fs5{font-size:128.960000pt;}
.fs47{font-size:132.266667pt;}
.fs9{font-size:139.200000pt;}
.fs2{font-size:140.800000pt;}
.fs7{font-size:147.733867pt;}
.fs2c{font-size:149.333333pt;}
.fsd{font-size:149.440000pt;}
.fs45{font-size:155.200000pt;}
.fs24{font-size:155.733867pt;}
.fs49{font-size:157.866667pt;}
.fsa{font-size:168.533333pt;}
.fs0{font-size:170.560000pt;}
.fs22{font-size:176.000000pt;}
.fs3b{font-size:185.067200pt;}
.fsc{font-size:218.560000pt;}
.fs32{font-size:230.400533pt;}
.fs1{font-size:245.440000pt;}
.y0{bottom:0.000000pt;}
.y66{bottom:149.177067pt;}
.y91{bottom:149.180667pt;}
.ya8{bottom:165.786667pt;}
.y65{bottom:174.927333pt;}
.y64{bottom:191.940667pt;}
.y16{bottom:197.946667pt;}
.y90{bottom:203.727333pt;}
.y39{bottom:204.186667pt;}
.y34{bottom:206.354000pt;}
.y28{bottom:207.946667pt;}
.y63{bottom:208.527333pt;}
.y8f{bottom:212.887333pt;}
.y94{bottom:224.586667pt;}
.y8e{bottom:225.114000pt;}
.y1c{bottom:230.826667pt;}
.y15{bottom:236.346667pt;}
.y8d{bottom:240.820667pt;}
.ya7{bottom:242.586667pt;}
.y62{bottom:246.066800pt;}
.y8c{bottom:255.660667pt;}
.y60{bottom:260.460667pt;}
.y61{bottom:261.327333pt;}
.y8a{bottom:262.634000pt;}
.y93{bottom:262.986667pt;}
.y88{bottom:264.820667pt;}
.yb{bottom:264.826667pt;}
.y89{bottom:266.127333pt;}
.y8b{bottom:266.565250pt;}
.y1b{bottom:269.226667pt;}
.y87{bottom:270.927333pt;}
.y30{bottom:274.346667pt;}
.y85{bottom:274.420667pt;}
.y14{bottom:274.746667pt;}
.y86{bottom:279.220667pt;}
.y5f{bottom:282.274000pt;}
.y5c{bottom:282.714000pt;}
.y83{bottom:284.887333pt;}
.y5e{bottom:286.207333pt;}
.y5d{bottom:288.820667pt;}
.y84{bottom:289.260667pt;}
.y81{bottom:291.434000pt;}
.y9{bottom:292.746667pt;}
.y5b{bottom:295.807333pt;}
.y5a{bottom:297.109333pt;}
.y82{bottom:297.980667pt;}
.y7f{bottom:302.354000pt;}
.y80{bottom:304.967333pt;}
.y56{bottom:305.834000pt;}
.y1a{bottom:307.626667pt;}
.y7e{bottom:308.020667pt;}
.y2f{bottom:312.746667pt;}
.y7d{bottom:314.567333pt;}
.y58{bottom:315.434000pt;}
.y59{bottom:318.060667pt;}
.y7c{bottom:319.807333pt;}
.y92{bottom:328.026667pt;}
.y57{bottom:330.714000pt;}
.y7b{bottom:333.767333pt;}
.y79{bottom:339.007333pt;}
.y13{bottom:339.866667pt;}
.y78{bottom:342.060667pt;}
.y55{bottom:342.487333pt;}
.y7a{bottom:344.230800pt;}
.y54{bottom:344.674000pt;}
.ya6{bottom:346.026667pt;}
.y31{bottom:349.914000pt;}
.y2e{bottom:351.146667pt;}
.y77{bottom:352.087333pt;}
.ya1{bottom:355.065067pt;}
.ya4{bottom:356.506667pt;}
.y27{bottom:356.906667pt;}
.y35{bottom:357.767333pt;}
.y8{bottom:357.786667pt;}
.y76{bottom:363.007333pt;}
.y36{bottom:364.754000pt;}
.y75{bottom:366.487333pt;}
.y9e{bottom:368.987467pt;}
.y73{bottom:369.554000pt;}
.y19{bottom:372.746667pt;}
.y53{bottom:373.474000pt;}
.y74{bottom:373.914000pt;}
.y98{bottom:374.026667pt;}
.y70{bottom:376.967333pt;}
.y12{bottom:378.266667pt;}
.y71{bottom:379.580667pt;}
.y52{bottom:380.887333pt;}
.y22{bottom:384.187491pt;}
.ya5{bottom:384.426667pt;}
.y72{bottom:387.007333pt;}
.y6f{bottom:390.060667pt;}
.y51{bottom:390.487333pt;}
.y26{bottom:395.306667pt;}
.y50{bottom:399.220667pt;}
.y6e{bottom:400.087333pt;}
.y4f{bottom:408.380667pt;}
.yad{bottom:410.906667pt;}
.y18{bottom:411.146667pt;}
.y6d{bottom:411.874000pt;}
.y21{bottom:412.346667pt;}
.y4e{bottom:414.487333pt;}
.y2d{bottom:416.266667pt;}
.y11{bottom:416.666667pt;}
.y4d{bottom:421.034000pt;}
.y7{bottom:422.826667pt;}
.y9c{bottom:425.946667pt;}
.y9f{bottom:427.386667pt;}
.y4c{bottom:428.460667pt;}
.ya2{bottom:428.746667pt;}
.y6c{bottom:431.514000pt;}
.y97{bottom:431.626667pt;}
.y25{bottom:433.706667pt;}
.y4b{bottom:435.874000pt;}
.y4a{bottom:443.287333pt;}
.y47{bottom:447.220667pt;}
.yac{bottom:449.306667pt;}
.y49{bottom:449.407333pt;}
.y38{bottom:449.546667pt;}
.y2c{bottom:454.666667pt;}
.y10{bottom:455.066667pt;}
.y3d{bottom:456.026667pt;}
.y48{bottom:458.567333pt;}
.y46{bottom:460.754000pt;}
.y6b{bottom:463.807333pt;}
.y20{bottom:467.147491pt;}
.yaf{bottom:467.305347pt;}
.y24{bottom:472.106667pt;}
.y6a{bottom:472.967333pt;}
.y33{bottom:473.407333pt;}
.y17{bottom:476.186667pt;}
.y69{bottom:485.180667pt;}
.yab{bottom:487.706667pt;}
.y6{bottom:487.946667pt;}
.y96{bottom:489.226667pt;}
.y3e{bottom:489.386667pt;}
.y1f{bottom:495.306667pt;}
.y45{bottom:502.634000pt;}
.y32{bottom:505.260667pt;}
.y37{bottom:514.586667pt;}
.y68{bottom:517.474000pt;}
.y2b{bottom:519.706667pt;}
.y44{bottom:520.087333pt;}
.yf{bottom:520.106667pt;}
.y67{bottom:524.887333pt;}
.yaa{bottom:526.106667pt;}
.y43{bottom:526.207333pt;}
.y42{bottom:537.114000pt;}
.yae{bottom:540.906667pt;}
.y95{bottom:546.826667pt;}
.y1e{bottom:550.107491pt;}
.y40{bottom:551.074000pt;}
.y5{bottom:552.986667pt;}
.y41{bottom:553.260667pt;}
.y23{bottom:553.786667pt;}
.ye{bottom:558.506667pt;}
.y9d{bottom:563.226667pt;}
.ya9{bottom:564.506667pt;}
.y1d{bottom:578.266667pt;}
.y3{bottom:595.542443pt;}
.yd{bottom:596.906667pt;}
.y2a{bottom:608.745347pt;}
.y3c{bottom:618.588291pt;}
.y9b{bottom:618.589915pt;}
.y3f{bottom:618.592027pt;}
.y4{bottom:624.026667pt;}
.y2{bottom:646.744555pt;}
.ya0{bottom:654.745867pt;}
.yc{bottom:655.626667pt;}
.y3b{bottom:663.386667pt;}
.y9a{bottom:663.388291pt;}
.ya3{bottom:671.547467pt;}
.ya{bottom:673.546667pt;}
.y29{bottom:682.346667pt;}
.y1{bottom:697.946667pt;}
.y99{bottom:708.186667pt;}
.y3a{bottom:712.186667pt;}
.h18{height:8.137632pt;}
.h38{height:22.087046pt;}
.h3f{height:27.899539pt;}
.h1e{height:28.368750pt;}
.h12{height:30.883336pt;}
.h11{height:32.263056pt;}
.h21{height:35.070312pt;}
.h27{height:35.600556pt;}
.h3a{height:36.036816pt;}
.h29{height:36.156806pt;}
.he{height:37.164062pt;}
.h1a{height:38.211461pt;}
.h13{height:42.831250pt;}
.h43{height:42.921875pt;}
.h4b{height:43.388056pt;}
.h31{height:43.944306pt;}
.h17{height:43.968750pt;}
.h1b{height:44.500000pt;}
.h4f{height:45.056250pt;}
.h14{height:45.539062pt;}
.h2f{height:46.062500pt;}
.h22{height:46.725000pt;}
.h32{height:47.109375pt;}
.h33{height:48.211250pt;}
.h19{height:48.393750pt;}
.h4d{height:48.614723pt;}
.h44{height:54.960938pt;}
.h2b{height:55.385833pt;}
.h48{height:59.121390pt;}
.h4c{height:60.620832pt;}
.h2d{height:62.486458pt;}
.h20{height:65.892500pt;}
.h15{height:65.953125pt;}
.h2e{height:66.476562pt;}
.hd{height:66.750000pt;}
.h39{height:67.523438pt;}
.h3e{height:67.545833pt;}
.h4e{height:68.975000pt;}
.h49{height:71.065833pt;}
.h41{height:72.234375pt;}
.h36{height:72.825833pt;}
.h10{height:75.018750pt;}
.h16{height:75.375000pt;}
.h34{height:78.052500pt;}
.h3c{height:85.843750pt;}
.h42{height:87.887500pt;}
.h35{height:91.781250pt;}
.h37{height:93.695312pt;}
.h2a{height:93.727167pt;}
.h1d{height:97.883336pt;}
.h24{height:98.406250pt;}
.h1c{height:99.012500pt;}
.h5{height:100.125000pt;}
.h2c{height:100.721300pt;}
.h40{height:107.746367pt;}
.h1f{height:109.519167pt;}
.hf{height:115.700000pt;}
.h46{height:121.262500pt;}
.h8{height:121.438023pt;}
.h6{height:122.486250pt;}
.h4{height:133.500000pt;}
.h3d{height:133.682500pt;}
.h47{height:137.950000pt;}
.h7{height:144.992711pt;}
.h9{height:145.181250pt;}
.h50{height:146.850000pt;}
.h26{height:151.514917pt;}
.h28{height:155.750000pt;}
.hc{height:155.861250pt;}
.h4a{height:159.100000pt;}
.h45{height:161.868750pt;}
.h25{height:162.425556pt;}
.ha{height:175.775000pt;}
.h2{height:177.888750pt;}
.h3b{height:181.633336pt;}
.h23{height:202.072767pt;}
.hb{height:227.951250pt;}
.h30{height:247.287223pt;}
.h3{height:255.986250pt;}
.h1{height:793.333333pt;}
.h0{height:793.626667pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x4d{left:129.187333pt;}
.x5a{left:131.267333pt;}
.x1{left:132.627467pt;}
.x7{left:139.587467pt;}
.x5{left:148.627467pt;}
.x1c{left:152.147333pt;}
.x52{left:153.427333pt;}
.x5b{left:155.827333pt;}
.x37{left:167.587333pt;}
.x10{left:168.787333pt;}
.xc{left:172.547333pt;}
.x2{left:175.267467pt;}
.x9{left:177.427333pt;}
.x4e{left:183.987333pt;}
.xa{left:185.267333pt;}
.x6{left:186.627333pt;}
.x59{left:202.627333pt;}
.xd{left:209.187333pt;}
.xb{left:220.387333pt;}
.x4c{left:223.827333pt;}
.x13{left:228.191467pt;}
.xe{left:232.467333pt;}
.x50{left:240.864301pt;}
.x1f{left:268.227333pt;}
.x14{left:279.871467pt;}
.x4f{left:313.107333pt;}
.x58{left:315.747333pt;}
.x2c{left:336.831467pt;}
.x2d{left:338.924800pt;}
.x19{left:340.147333pt;}
.x15{left:342.924800pt;}
.x29{left:362.924800pt;}
.x4{left:368.707333pt;}
.x1b{left:380.067333pt;}
.x32{left:387.711467pt;}
.x31{left:390.284800pt;}
.x20{left:396.284800pt;}
.x28{left:399.884800pt;}
.x3d{left:407.698133pt;}
.x21{left:415.364800pt;}
.x2f{left:416.738133pt;}
.x1a{left:421.507333pt;}
.x3b{left:428.711467pt;}
.x16{left:430.484800pt;}
.x1d{left:432.627533pt;}
.x22{left:434.511467pt;}
.x8{left:436.307333pt;}
.x3c{left:438.284800pt;}
.x3a{left:442.644800pt;}
.xf{left:447.907333pt;}
.x47{left:472.324800pt;}
.x45{left:476.244800pt;}
.x3{left:477.188515pt;}
.x11{left:481.109733pt;}
.x43{left:488.484800pt;}
.x2e{left:493.978133pt;}
.x12{left:501.507333pt;}
.x38{left:506.218373pt;}
.x41{left:507.658133pt;}
.x23{left:512.364800pt;}
.x33{left:529.578133pt;}
.x24{left:531.444800pt;}
.x3e{left:532.378133pt;}
.x39{left:551.271467pt;}
.x2a{left:558.831467pt;}
.x25{left:560.191467pt;}
.x40{left:561.511467pt;}
.x3f{left:572.618133pt;}
.x4b{left:575.231467pt;}
.x34{left:578.084800pt;}
.x48{left:601.938133pt;}
.x44{left:609.604800pt;}
.x35{left:626.444800pt;}
.x2b{left:633.311467pt;}
.x42{left:634.644800pt;}
.x26{left:637.911467pt;}
.x36{left:674.858133pt;}
.x17{left:685.591467pt;}
.x53{left:693.427333pt;}
.x57{left:698.227333pt;}
.x55{left:706.145733pt;}
.x49{left:729.298133pt;}
.x4a{left:732.792578pt;}
.x46{left:736.991467pt;}
.x27{left:744.071467pt;}
.x30{left:745.084800pt;}
.x51{left:749.587333pt;}
.x56{left:751.987333pt;}
.x54{left:770.067333pt;}
.x1e{left:777.027333pt;}
.x18{left:901.951467pt;}
}




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