
    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_6d44b1531b9ef3ca27f43db9.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ad1403f5ae4cdda79473d13a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_788418d201c88b56fbf998b9.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e86a72e0af2c48a59799865a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_539a7e262a9ebc267dfa42c1.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b439826e2651b9e79a96ac48.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_40689a29ffbe0dd8174a3eb7.woff')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_1b2e7c32a3d251912d455f0f.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_50557bf1155b950da4991631.woff')format("woff");}.ff9{font-family:ff9;line-height:1.281250;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_b34332c5887aaae2c85a252f.woff')format("woff");}.ffa{font-family:ffa;line-height:1.281250;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_a5f8948e1492da09e6ae9ec0.woff')format("woff");}.ffb{font-family:ffb;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_1b73c785e132927a06015ece.woff')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_d10c61df057e5b24d732769f.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_7ab77d80a3b3e2c08b9cc8d1.woff')format("woff");}.ffe{font-family:ffe;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_a71da75926fb6454bc36e157.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_2be69f14e6529663f30e4839.woff')format("woff");}.ff10{font-family:ff10;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_838d07da6ef7cb1b12558b05.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_47350a9036d3e3a20c7caccb.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_56ac1c9654966fb27e2d8ba7.woff')format("woff");}.ff13{font-family:ff13;line-height:1.281250;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_e91fd196c07fa386c54898e6.woff')format("woff");}.ff14{font-family:ff14;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_466718acf7689cc025f854e6.woff')format("woff");}.ff15{font-family:ff15;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_43f2626643998d22d016c40b.woff')format("woff");}.ff16{font-family:ff16;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,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);}
.m8{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-7.200000px;}
.v0{vertical-align:0.000000px;}
.ls8b{letter-spacing:-44.640000px;}
.ls75{letter-spacing:-34.860000px;}
.ls5c{letter-spacing:-19.380000px;}
.ls83{letter-spacing:-17.280000px;}
.ls5d{letter-spacing:-16.500000px;}
.ls73{letter-spacing:-11.040000px;}
.ls85{letter-spacing:-8.640000px;}
.ls8a{letter-spacing:-8.160000px;}
.ls7f{letter-spacing:-8.040000px;}
.ls84{letter-spacing:-7.380000px;}
.ls71{letter-spacing:-7.020000px;}
.ls87{letter-spacing:-6.960000px;}
.ls74{letter-spacing:-6.840000px;}
.ls7e{letter-spacing:-6.720000px;}
.ls82{letter-spacing:-6.360000px;}
.ls7d{letter-spacing:-6.180000px;}
.ls86{letter-spacing:-6.060000px;}
.ls5b{letter-spacing:-5.760000px;}
.ls88{letter-spacing:-5.520000px;}
.ls62{letter-spacing:-5.280000px;}
.ls7c{letter-spacing:-5.220000px;}
.ls72{letter-spacing:-5.040000px;}
.ls78{letter-spacing:-4.920000px;}
.ls5a{letter-spacing:-4.800000px;}
.ls81{letter-spacing:-4.320000px;}
.ls7b{letter-spacing:-3.960000px;}
.ls7a{letter-spacing:-3.600000px;}
.ls3a{letter-spacing:-3.360000px;}
.ls79{letter-spacing:-3.240000px;}
.ls40{letter-spacing:-2.880000px;}
.ls80{letter-spacing:-2.400000px;}
.ls36{letter-spacing:-1.920000px;}
.ls32{letter-spacing:-1.800000px;}
.ls77{letter-spacing:-1.680000px;}
.ls31{letter-spacing:-1.440000px;}
.ls94{letter-spacing:-1.320000px;}
.ls37{letter-spacing:-1.260000px;}
.ls41{letter-spacing:-1.080000px;}
.ls34{letter-spacing:-0.960000px;}
.ls33{letter-spacing:-0.720000px;}
.ls39{letter-spacing:-0.660000px;}
.ls35{letter-spacing:-0.600000px;}
.ls3b{letter-spacing:-0.540000px;}
.ls3e{letter-spacing:-0.480000px;}
.ls2e{letter-spacing:-0.420000px;}
.ls3c{letter-spacing:-0.360000px;}
.ls64{letter-spacing:-0.300000px;}
.ls2f{letter-spacing:-0.240000px;}
.ls95{letter-spacing:-0.180000px;}
.ls38{letter-spacing:-0.120000px;}
.ls30{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.960000px;}
.ls16{letter-spacing:1.080000px;}
.ls11{letter-spacing:1.140000px;}
.ls2b{letter-spacing:1.200000px;}
.ls12{letter-spacing:1.260000px;}
.ls19{letter-spacing:1.320000px;}
.ls57{letter-spacing:1.380000px;}
.lsa{letter-spacing:1.440000px;}
.ls1{letter-spacing:1.560000px;}
.ls3{letter-spacing:1.620000px;}
.lsc{letter-spacing:1.680000px;}
.ls15{letter-spacing:1.740000px;}
.ls10{letter-spacing:1.800000px;}
.ls14{letter-spacing:1.860000px;}
.ls4{letter-spacing:1.920000px;}
.ls6{letter-spacing:1.980000px;}
.ls20{letter-spacing:2.040000px;}
.ls21{letter-spacing:2.100000px;}
.lse{letter-spacing:2.160000px;}
.ls7{letter-spacing:2.220000px;}
.ls1b{letter-spacing:2.280000px;}
.ls2{letter-spacing:2.340000px;}
.ls8{letter-spacing:2.400000px;}
.lsd{letter-spacing:2.460000px;}
.ls0{letter-spacing:2.520000px;}
.ls1e{letter-spacing:2.580000px;}
.ls1a{letter-spacing:2.640000px;}
.ls23{letter-spacing:2.700000px;}
.ls29{letter-spacing:2.760000px;}
.lsf{letter-spacing:2.880000px;}
.ls4b{letter-spacing:3.000000px;}
.ls28{letter-spacing:3.060000px;}
.ls25{letter-spacing:3.120000px;}
.ls4d{letter-spacing:3.180000px;}
.ls45{letter-spacing:3.240000px;}
.ls3d{letter-spacing:3.300000px;}
.ls13{letter-spacing:3.360000px;}
.ls26{letter-spacing:3.480000px;}
.ls4a{letter-spacing:3.540000px;}
.ls9{letter-spacing:3.600000px;}
.ls91{letter-spacing:3.660000px;}
.ls1f{letter-spacing:3.720000px;}
.ls52{letter-spacing:3.780000px;}
.ls17{letter-spacing:3.840000px;}
.ls43{letter-spacing:3.900000px;}
.ls65{letter-spacing:3.960000px;}
.ls63{letter-spacing:4.020000px;}
.ls58{letter-spacing:4.080000px;}
.ls59{letter-spacing:4.140000px;}
.ls42{letter-spacing:4.200000px;}
.ls92{letter-spacing:4.260000px;}
.ls5{letter-spacing:4.320000px;}
.ls27{letter-spacing:4.440000px;}
.ls2a{letter-spacing:4.500000px;}
.ls44{letter-spacing:4.560000px;}
.ls24{letter-spacing:4.620000px;}
.ls2c{letter-spacing:4.680000px;}
.ls56{letter-spacing:4.740000px;}
.ls18{letter-spacing:4.800000px;}
.ls4f{letter-spacing:4.860000px;}
.ls49{letter-spacing:4.920000px;}
.ls1c{letter-spacing:4.980000px;}
.ls60{letter-spacing:5.040000px;}
.ls53{letter-spacing:5.100000px;}
.ls8c{letter-spacing:5.160000px;}
.ls54{letter-spacing:5.280000px;}
.ls46{letter-spacing:5.340000px;}
.ls50{letter-spacing:5.400000px;}
.ls69{letter-spacing:5.460000px;}
.ls90{letter-spacing:5.580000px;}
.ls51{letter-spacing:5.760000px;}
.ls6c{letter-spacing:5.820000px;}
.ls93{letter-spacing:5.880000px;}
.ls3f{letter-spacing:5.940000px;}
.ls55{letter-spacing:6.000000px;}
.ls89{letter-spacing:6.060000px;}
.ls2d{letter-spacing:6.120000px;}
.ls4e{letter-spacing:6.240000px;}
.ls48{letter-spacing:6.300000px;}
.ls8f{letter-spacing:6.600000px;}
.ls8e{letter-spacing:6.720000px;}
.ls8d{letter-spacing:6.780000px;}
.ls67{letter-spacing:6.960000px;}
.ls22{letter-spacing:7.020000px;}
.ls1d{letter-spacing:7.080000px;}
.ls5f{letter-spacing:7.200000px;}
.ls66{letter-spacing:7.260000px;}
.ls5e{letter-spacing:7.320000px;}
.ls47{letter-spacing:7.440000px;}
.ls61{letter-spacing:7.680000px;}
.ls4c{letter-spacing:8.040000px;}
.ls6d{letter-spacing:9.660000px;}
.ls68{letter-spacing:11.100000px;}
.ls76{letter-spacing:13.080000px;}
.ls6e{letter-spacing:14.880000px;}
.ls6f{letter-spacing:19.680000px;}
.ls70{letter-spacing:32.880000px;}
.ls6a{letter-spacing:115.560000px;}
.ls6b{letter-spacing:157.920000px;}
.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;}
}
.ws0{word-spacing:0.000000px;}
.ws1{word-spacing:27.360000px;}
._1d{margin-left:-571.483093px;}
._50{margin-left:-96.796394px;}
._89{margin-left:-77.510919px;}
._87{margin-left:-59.678270px;}
._86{margin-left:-56.105514px;}
._77{margin-left:-40.787553px;}
._4c{margin-left:-32.679901px;}
._1e{margin-left:-30.390994px;}
._78{margin-left:-29.081528px;}
._1a{margin-left:-25.174080px;}
._24{margin-left:-18.895251px;}
._16{margin-left:-14.298054px;}
._12{margin-left:-12.512733px;}
._22{margin-left:-10.995754px;}
._13{margin-left:-8.811360px;}
._1{margin-left:-7.698240px;}
._11{margin-left:-5.667840px;}
._2{margin-left:-3.729600px;}
._c{margin-left:-2.388387px;}
._0{margin-left:-1.287840px;}
._d{width:1.106642px;}
._9{width:2.381760px;}
._8{width:3.848206px;}
._14{width:5.356171px;}
._7{width:6.475974px;}
._5{width:7.956521px;}
._10{width:9.771174px;}
._6{width:11.299159px;}
._15{width:12.305864px;}
._1f{width:14.539495px;}
._a{width:15.702813px;}
._e{width:17.119277px;}
._f{width:18.962555px;}
._2e{width:20.035950px;}
._29{width:21.590672px;}
._b{width:24.819391px;}
._1b{width:26.510706px;}
._2d{width:28.103675px;}
._21{width:34.069884px;}
._2c{width:39.133333px;}
._80{width:40.622039px;}
._28{width:42.606933px;}
._62{width:43.616974px;}
._4d{width:44.652169px;}
._72{width:45.832800px;}
._2b{width:47.400356px;}
._75{width:48.975568px;}
._31{width:50.703351px;}
._38{width:58.744908px;}
._20{width:59.898315px;}
._32{width:63.087917px;}
._63{width:66.754957px;}
._4e{width:69.752789px;}
._79{width:73.833766px;}
._25{width:74.933333px;}
._7d{width:78.263750px;}
._33{width:81.943695px;}
._35{width:84.373548px;}
._7f{width:85.826400px;}
._37{width:86.928387px;}
._7c{width:88.324904px;}
._30{width:93.465021px;}
._27{width:99.506578px;}
._53{width:106.850400px;}
._4b{width:114.962623px;}
._60{width:118.747409px;}
._36{width:121.389677px;}
._5c{width:122.795478px;}
._55{width:129.013440px;}
._51{width:138.395840px;}
._8a{width:141.785806px;}
._70{width:143.551787px;}
._8f{width:145.284310px;}
._8e{width:152.841290px;}
._8c{width:154.389677px;}
._6c{width:158.486189px;}
._1c{width:160.723609px;}
._8b{width:162.131613px;}
._8d{width:164.347561px;}
._81{width:168.808457px;}
._54{width:177.566080px;}
._76{width:179.353946px;}
._5d{width:183.445357px;}
._6e{width:185.872085px;}
._88{width:189.166376px;}
._84{width:192.186469px;}
._34{width:193.989677px;}
._39{width:195.538065px;}
._44{width:198.472506px;}
._6f{width:200.334504px;}
._7e{width:205.499427px;}
._74{width:209.257225px;}
._40{width:211.414653px;}
._66{width:216.871339px;}
._4f{width:219.837296px;}
._26{width:226.558387px;}
._3f{width:232.350968px;}
._41{width:233.790968px;}
._65{width:235.247319px;}
._64{width:237.464377px;}
._3e{width:238.931613px;}
._5f{width:242.816765px;}
._6d{width:250.041725px;}
._23{width:255.317918px;}
._5b{width:257.294817px;}
._3d{width:259.288939px;}
._42{width:267.530323px;}
._3c{width:269.442766px;}
._49{width:296.540690px;}
._73{width:297.566080px;}
._48{width:319.246699px;}
._43{width:321.569280px;}
._68{width:322.867581px;}
._46{width:323.946723px;}
._4a{width:326.646856px;}
._6a{width:328.221360px;}
._83{width:335.437120px;}
._85{width:337.722834px;}
._82{width:342.885669px;}
._52{width:346.212160px;}
._45{width:358.187272px;}
._7b{width:372.399821px;}
._7a{width:379.039647px;}
._47{width:390.472258px;}
._69{width:393.471360px;}
._71{width:416.395571px;}
._5a{width:444.442122px;}
._67{width:520.024320px;}
._2a{width:550.110739px;}
._17{width:581.589213px;}
._3{width:584.640000px;}
._5e{width:602.476591px;}
._3a{width:625.478973px;}
._18{width:626.584454px;}
._6b{width:661.407923px;}
._2f{width:736.310005px;}
._61{width:764.425252px;}
._4{width:792.757440px;}
._56{width:841.269760px;}
._3b{width:860.736387px;}
._19{width:867.926400px;}
._90{width:872.696150px;}
._58{width:1052.432229px;}
._59{width:1065.445920px;}
._57{width:1343.519177px;}
.fc0{color:transparent;}
.fs16{font-size:25.920000px;}
.fs8{font-size:34.560000px;}
.fs13{font-size:38.880000px;}
.fs14{font-size:41.760000px;}
.fsa{font-size:44.640000px;}
.fs7{font-size:46.080000px;}
.fs3{font-size:48.960000px;}
.fs2{font-size:50.400000px;}
.fsb{font-size:51.840000px;}
.fs1{font-size:53.280000px;}
.fs0{font-size:54.720000px;}
.fs4{font-size:57.600000px;}
.fs5{font-size:59.040000px;}
.fs19{font-size:67.680000px;}
.fsd{font-size:69.120000px;}
.fsc{font-size:74.880000px;}
.fs10{font-size:76.320000px;}
.fs9{font-size:77.760000px;}
.fs11{font-size:79.200000px;}
.fs15{font-size:92.160000px;}
.fsf{font-size:93.600000px;}
.fs12{font-size:112.320000px;}
.fse{font-size:149.760000px;}
.fs17{font-size:180.000000px;}
.fs6{font-size:213.120000px;}
.fs18{font-size:234.720000px;}
.y0{bottom:0.000000px;}
.yb3{bottom:81.360000px;}
.y3c{bottom:82.440000px;}
.y88{bottom:84.960000px;}
.yb2{bottom:117.360000px;}
.y3b{bottom:117.720000px;}
.y5e{bottom:119.880000px;}
.y25{bottom:120.960000px;}
.yb1{bottom:132.120000px;}
.y3a{bottom:135.360000px;}
.y87{bottom:136.800000px;}
.y24{bottom:138.240000px;}
.y5d{bottom:145.800000px;}
.y5c{bottom:146.160000px;}
.y102{bottom:146.520000px;}
.y86{bottom:152.280000px;}
.y39{bottom:153.360000px;}
.yb0{bottom:155.520000px;}
.y23{bottom:155.880000px;}
.y101{bottom:162.000000px;}
.yaf{bottom:170.280000px;}
.y38{bottom:171.000000px;}
.y22{bottom:173.520000px;}
.y100{bottom:176.760000px;}
.y85{bottom:179.640000px;}
.yac{bottom:181.080000px;}
.y37{bottom:188.640000px;}
.y21{bottom:190.800000px;}
.yff{bottom:191.520000px;}
.y36{bottom:206.640000px;}
.y20{bottom:208.800000px;}
.y84{bottom:210.600000px;}
.y35{bottom:224.640000px;}
.y5b{bottom:225.720000px;}
.ycf{bottom:226.080000px;}
.y1f{bottom:227.160000px;}
.yfe{bottom:232.200000px;}
.yab{bottom:239.760000px;}
.y83{bottom:240.480000px;}
.y34{bottom:242.640000px;}
.y5a{bottom:243.720000px;}
.y1e{bottom:244.800000px;}
.yfd{bottom:246.240000px;}
.yaa{bottom:251.640000px;}
.y82{bottom:255.240000px;}
.y59{bottom:259.920000px;}
.y33{bottom:260.280000px;}
.yce{bottom:261.720000px;}
.yfc{bottom:262.080000px;}
.y1d{bottom:262.440000px;}
.ya9{bottom:263.160000px;}
.y81{bottom:269.640000px;}
.yae{bottom:275.040000px;}
.yfb{bottom:276.480000px;}
.y58{bottom:277.560000px;}
.y32{bottom:278.640000px;}
.y1c{bottom:280.080000px;}
.ycd{bottom:280.800000px;}
.yfa{bottom:290.880000px;}
.y31{bottom:296.640000px;}
.y1b{bottom:298.440000px;}
.ya8{bottom:299.160000px;}
.ya7{bottom:300.600000px;}
.yf9{bottom:306.000000px;}
.y30{bottom:314.640000px;}
.y1a{bottom:316.080000px;}
.ycc{bottom:316.440000px;}
.y80{bottom:318.960000px;}
.yf8{bottom:321.480000px;}
.y57{bottom:322.920000px;}
.y19{bottom:334.080000px;}
.y7f{bottom:336.240000px;}
.y2f{bottom:344.520000px;}
.yf7{bottom:350.280000px;}
.y18{bottom:352.080000px;}
.y7e{bottom:353.880000px;}
.yf6{bottom:365.040000px;}
.ya6{bottom:365.400000px;}
.y56{bottom:369.000000px;}
.y2e{bottom:369.720000px;}
.y17{bottom:370.080000px;}
.y7d{bottom:371.880000px;}
.ya5{bottom:377.640000px;}
.yf5{bottom:379.800000px;}
.y55{bottom:387.360000px;}
.ycb{bottom:387.720000px;}
.y7c{bottom:388.080000px;}
.y2d{bottom:388.440000px;}
.y16{bottom:388.800000px;}
.yf4{bottom:395.640000px;}
.ya4{bottom:400.320000px;}
.yad{bottom:402.480000px;}
.y54{bottom:405.000000px;}
.y2c{bottom:406.080000px;}
.y15{bottom:406.800000px;}
.y7b{bottom:407.160000px;}
.yf3{bottom:410.040000px;}
.y7a{bottom:421.560000px;}
.y53{bottom:423.360000px;}
.y2b{bottom:423.720000px;}
.y14{bottom:424.440000px;}
.yf2{bottom:425.160000px;}
.y79{bottom:425.880000px;}
.ya3{bottom:429.840000px;}
.yf1{bottom:441.000000px;}
.yca{bottom:441.720000px;}
.y2a{bottom:442.800000px;}
.y13{bottom:443.160000px;}
.y78{bottom:443.520000px;}
.yf0{bottom:454.680000px;}
.y51{bottom:459.360000px;}
.y52{bottom:459.720000px;}
.y29{bottom:460.440000px;}
.y12{bottom:460.800000px;}
.y77{bottom:461.160000px;}
.yef{bottom:470.160000px;}
.y28{bottom:478.440000px;}
.y11{bottom:478.800000px;}
.y76{bottom:479.160000px;}
.yee{bottom:484.920000px;}
.ya2{bottom:495.720000px;}
.yc9{bottom:496.440000px;}
.y27{bottom:496.800000px;}
.y10{bottom:497.160000px;}
.y75{bottom:497.880000px;}
.yed{bottom:500.040000px;}
.y50{bottom:503.640000px;}
.ya1{bottom:511.920000px;}
.yc8{bottom:514.080000px;}
.yf{bottom:514.800000px;}
.yec{bottom:515.160000px;}
.y74{bottom:516.240000px;}
.y4f{bottom:528.120000px;}
.yeb{bottom:529.920000px;}
.y4e{bottom:532.080000px;}
.yc7{bottom:532.440000px;}
.y26{bottom:532.800000px;}
.ye{bottom:533.160000px;}
.y73{bottom:533.520000px;}
.ya0{bottom:534.960000px;}
.yea{bottom:545.040000px;}
.yc6{bottom:550.440000px;}
.y72{bottom:551.160000px;}
.ye9{bottom:559.800000px;}
.yc5{bottom:568.440000px;}
.y71{bottom:569.520000px;}
.ye8{bottom:574.920000px;}
.y9f{bottom:585.000000px;}
.yc4{bottom:586.080000px;}
.y4d{bottom:587.160000px;}
.y70{bottom:587.520000px;}
.ye7{bottom:589.680000px;}
.yd{bottom:593.280000px;}
.yc3{bottom:604.440000px;}
.y6f{bottom:605.160000px;}
.ye6{bottom:605.520000px;}
.yc{bottom:607.680000px;}
.y9e{bottom:615.600000px;}
.y4c{bottom:619.560000px;}
.ye5{bottom:619.920000px;}
.yc2{bottom:622.080000px;}
.y6e{bottom:622.800000px;}
.y9d{bottom:627.120000px;}
.ye4{bottom:635.040000px;}
.y4b{bottom:638.280000px;}
.y6d{bottom:640.800000px;}
.y9c{bottom:648.000000px;}
.ye3{bottom:649.800000px;}
.y4a{bottom:656.280000px;}
.yc1{bottom:658.800000px;}
.y6c{bottom:659.160000px;}
.yb{bottom:662.760000px;}
.ye2{bottom:665.280000px;}
.y49{bottom:674.640000px;}
.yc0{bottom:676.800000px;}
.ya{bottom:677.160000px;}
.y9b{bottom:680.040000px;}
.ye1{bottom:680.400000px;}
.y48{bottom:692.640000px;}
.y6b{bottom:695.160000px;}
.ye0{bottom:710.280000px;}
.ybf{bottom:713.160000px;}
.y9{bottom:713.520000px;}
.y9a{bottom:714.960000px;}
.y47{bottom:720.360000px;}
.y6a{bottom:723.960000px;}
.ydf{bottom:725.400000px;}
.ybe{bottom:731.520000px;}
.y8{bottom:731.880000px;}
.yde{bottom:740.160000px;}
.y99{bottom:740.520000px;}
.y46{bottom:741.960000px;}
.y45{bottom:747.360000px;}
.ybd{bottom:749.520000px;}
.y98{bottom:752.040000px;}
.ydd{bottom:756.000000px;}
.y7{bottom:758.880000px;}
.y69{bottom:762.120000px;}
.ybc{bottom:767.880000px;}
.ydc{bottom:770.760000px;}
.y97{bottom:781.920000px;}
.ydb{bottom:785.160000px;}
.y6{bottom:785.880000px;}
.y68{bottom:786.240000px;}
.y96{bottom:790.560000px;}
.y44{bottom:797.040000px;}
.yda{bottom:800.280000px;}
.y5{bottom:803.880000px;}
.ybb{bottom:804.240000px;}
.y67{bottom:804.600000px;}
.yd9{bottom:815.760000px;}
.y66{bottom:822.240000px;}
.yba{bottom:822.600000px;}
.y43{bottom:822.960000px;}
.yd8{bottom:831.600000px;}
.y4{bottom:839.880000px;}
.y65{bottom:840.240000px;}
.y42{bottom:841.680000px;}
.yd7{bottom:846.360000px;}
.y95{bottom:857.160000px;}
.y3{bottom:857.880000px;}
.yb9{bottom:858.240000px;}
.y41{bottom:858.960000px;}
.yd6{bottom:861.480000px;}
.y94{bottom:863.280000px;}
.y64{bottom:867.240000px;}
.y8e{bottom:874.080000px;}
.y93{bottom:875.520000px;}
.yd5{bottom:876.240000px;}
.yb8{bottom:876.960000px;}
.y63{bottom:878.400000px;}
.y40{bottom:885.240000px;}
.yd4{bottom:891.720000px;}
.y2{bottom:894.240000px;}
.yb7{bottom:895.680000px;}
.y8d{bottom:904.680000px;}
.yd3{bottom:906.480000px;}
.y92{bottom:911.880000px;}
.y62{bottom:912.240000px;}
.y3f{bottom:913.680000px;}
.yd2{bottom:921.600000px;}
.y91{bottom:929.520000px;}
.y61{bottom:929.880000px;}
.yb6{bottom:931.320000px;}
.y8c{bottom:933.480000px;}
.yd1{bottom:936.360000px;}
.y3e{bottom:941.400000px;}
.y90{bottom:947.520000px;}
.y60{bottom:948.600000px;}
.y8b{bottom:949.320000px;}
.yb5{bottom:950.040000px;}
.yd0{bottom:951.480000px;}
.y8a{bottom:963.000000px;}
.y8f{bottom:965.520000px;}
.y5f{bottom:967.320000px;}
.y3d{bottom:967.680000px;}
.y89{bottom:1000.080000px;}
.y1{bottom:1002.240000px;}
.yb4{bottom:1002.600000px;}
.h1c{height:26.122500px;}
.hb{height:36.045000px;}
.h18{height:38.158594px;}
.h17{height:40.550625px;}
.h19{height:43.554375px;}
.hd{height:43.789922px;}
.h4{height:48.051563px;}
.ha{height:48.060000px;}
.h3{height:49.440234px;}
.he{height:50.878125px;}
.h6{height:52.291406px;}
.h2{height:53.696250px;}
.h1{height:53.704687px;}
.h14{height:55.569375px;}
.h8{height:56.503125px;}
.h5{height:56.531250px;}
.h1a{height:57.071250px;}
.h7{height:57.915703px;}
.h1f{height:66.391172px;}
.h10{height:72.090000px;}
.hf{height:78.097500px;}
.h13{height:79.599375px;}
.hc{height:81.101250px;}
.h15{height:82.603125px;}
.h1b{height:90.405000px;}
.h12{height:91.817578px;}
.h16{height:113.197500px;}
.h11{height:146.908125px;}
.h1d{height:176.660156px;}
.h9{height:222.277500px;}
.h1e{height:236.553750px;}
.h0{height:1113.000000px;}
.w0{width:810.000000px;}
.x0{left:0.000000px;}
.x1e{left:56.160000px;}
.x1{left:57.240000px;}
.x7{left:58.320000px;}
.xc{left:59.400000px;}
.x61{left:60.840000px;}
.x67{left:67.680000px;}
.x22{left:75.240000px;}
.x6{left:76.320000px;}
.x27{left:77.400000px;}
.x18{left:79.200000px;}
.x3c{left:84.600000px;}
.xb{left:86.760000px;}
.x68{left:89.280000px;}
.x2{left:92.880000px;}
.x4{left:93.960000px;}
.x15{left:97.200000px;}
.x16{left:109.440000px;}
.x5{left:110.880000px;}
.x50{left:115.200000px;}
.x3e{left:117.000000px;}
.x23{left:119.160000px;}
.x28{left:137.520000px;}
.x42{left:139.680000px;}
.x51{left:141.120000px;}
.x45{left:142.920000px;}
.x59{left:144.000000px;}
.x43{left:150.480000px;}
.x54{left:151.560000px;}
.x5c{left:156.240000px;}
.x57{left:159.120000px;}
.x63{left:163.440000px;}
.x53{left:171.720000px;}
.x5b{left:173.520000px;}
.x13{left:176.400000px;}
.x19{left:178.920000px;}
.x3b{left:184.320000px;}
.x24{left:185.400000px;}
.x3f{left:206.280000px;}
.x29{left:209.880000px;}
.x5e{left:227.520000px;}
.x1f{left:230.400000px;}
.x3{left:236.520000px;}
.x26{left:237.960000px;}
.x1a{left:239.400000px;}
.x5a{left:249.480000px;}
.x14{left:263.160000px;}
.x1b{left:273.600000px;}
.x55{left:285.840000px;}
.x21{left:288.720000px;}
.xa{left:301.680000px;}
.x1d{left:302.760000px;}
.x8{left:307.800000px;}
.x58{left:314.280000px;}
.x20{left:328.320000px;}
.x1c{left:329.760000px;}
.x64{left:335.520000px;}
.x9{left:347.400000px;}
.x49{left:362.880000px;}
.x17{left:365.040000px;}
.x25{left:366.120000px;}
.x60{left:382.320000px;}
.x4d{left:384.480000px;}
.x5d{left:385.920000px;}
.x11{left:416.880000px;}
.x10{left:417.960000px;}
.xd{left:419.400000px;}
.x2c{left:422.640000px;}
.x30{left:423.720000px;}
.x2a{left:424.800000px;}
.x65{left:431.280000px;}
.x4a{left:432.720000px;}
.x52{left:433.800000px;}
.xe{left:438.120000px;}
.x35{left:442.080000px;}
.x2b{left:443.160000px;}
.x66{left:452.160000px;}
.x4e{left:466.200000px;}
.x2f{left:467.640000px;}
.x2d{left:468.720000px;}
.x56{left:481.320000px;}
.x46{left:482.400000px;}
.x4f{left:484.200000px;}
.x3d{left:494.280000px;}
.x44{left:504.000000px;}
.x47{left:511.200000px;}
.x39{left:515.160000px;}
.x3a{left:516.240000px;}
.x31{left:519.840000px;}
.xf{left:534.600000px;}
.x38{left:551.520000px;}
.x5f{left:563.040000px;}
.x40{left:571.680000px;}
.x32{left:579.240000px;}
.x48{left:585.000000px;}
.x36{left:592.200000px;}
.x4b{left:609.840000px;}
.x41{left:615.240000px;}
.x37{left:630.720000px;}
.x33{left:653.760000px;}
.x4c{left:665.640000px;}
.x34{left:671.400000px;}
.x12{left:724.680000px;}
.x62{left:729.000000px;}
.x2e{left:731.160000px;}
@media print{
.v1{vertical-align:-6.400000pt;}
.v0{vertical-align:0.000000pt;}
.ls8b{letter-spacing:-39.680000pt;}
.ls75{letter-spacing:-30.986667pt;}
.ls5c{letter-spacing:-17.226667pt;}
.ls83{letter-spacing:-15.360000pt;}
.ls5d{letter-spacing:-14.666667pt;}
.ls73{letter-spacing:-9.813333pt;}
.ls85{letter-spacing:-7.680000pt;}
.ls8a{letter-spacing:-7.253333pt;}
.ls7f{letter-spacing:-7.146667pt;}
.ls84{letter-spacing:-6.560000pt;}
.ls71{letter-spacing:-6.240000pt;}
.ls87{letter-spacing:-6.186667pt;}
.ls74{letter-spacing:-6.080000pt;}
.ls7e{letter-spacing:-5.973333pt;}
.ls82{letter-spacing:-5.653333pt;}
.ls7d{letter-spacing:-5.493333pt;}
.ls86{letter-spacing:-5.386667pt;}
.ls5b{letter-spacing:-5.120000pt;}
.ls88{letter-spacing:-4.906667pt;}
.ls62{letter-spacing:-4.693333pt;}
.ls7c{letter-spacing:-4.640000pt;}
.ls72{letter-spacing:-4.480000pt;}
.ls78{letter-spacing:-4.373333pt;}
.ls5a{letter-spacing:-4.266667pt;}
.ls81{letter-spacing:-3.840000pt;}
.ls7b{letter-spacing:-3.520000pt;}
.ls7a{letter-spacing:-3.200000pt;}
.ls3a{letter-spacing:-2.986667pt;}
.ls79{letter-spacing:-2.880000pt;}
.ls40{letter-spacing:-2.560000pt;}
.ls80{letter-spacing:-2.133333pt;}
.ls36{letter-spacing:-1.706667pt;}
.ls32{letter-spacing:-1.600000pt;}
.ls77{letter-spacing:-1.493333pt;}
.ls31{letter-spacing:-1.280000pt;}
.ls94{letter-spacing:-1.173333pt;}
.ls37{letter-spacing:-1.120000pt;}
.ls41{letter-spacing:-0.960000pt;}
.ls34{letter-spacing:-0.853333pt;}
.ls33{letter-spacing:-0.640000pt;}
.ls39{letter-spacing:-0.586667pt;}
.ls35{letter-spacing:-0.533333pt;}
.ls3b{letter-spacing:-0.480000pt;}
.ls3e{letter-spacing:-0.426667pt;}
.ls2e{letter-spacing:-0.373333pt;}
.ls3c{letter-spacing:-0.320000pt;}
.ls64{letter-spacing:-0.266667pt;}
.ls2f{letter-spacing:-0.213333pt;}
.ls95{letter-spacing:-0.160000pt;}
.ls38{letter-spacing:-0.106667pt;}
.ls30{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.853333pt;}
.ls16{letter-spacing:0.960000pt;}
.ls11{letter-spacing:1.013333pt;}
.ls2b{letter-spacing:1.066667pt;}
.ls12{letter-spacing:1.120000pt;}
.ls19{letter-spacing:1.173333pt;}
.ls57{letter-spacing:1.226667pt;}
.lsa{letter-spacing:1.280000pt;}
.ls1{letter-spacing:1.386667pt;}
.ls3{letter-spacing:1.440000pt;}
.lsc{letter-spacing:1.493333pt;}
.ls15{letter-spacing:1.546667pt;}
.ls10{letter-spacing:1.600000pt;}
.ls14{letter-spacing:1.653333pt;}
.ls4{letter-spacing:1.706667pt;}
.ls6{letter-spacing:1.760000pt;}
.ls20{letter-spacing:1.813333pt;}
.ls21{letter-spacing:1.866667pt;}
.lse{letter-spacing:1.920000pt;}
.ls7{letter-spacing:1.973333pt;}
.ls1b{letter-spacing:2.026667pt;}
.ls2{letter-spacing:2.080000pt;}
.ls8{letter-spacing:2.133333pt;}
.lsd{letter-spacing:2.186667pt;}
.ls0{letter-spacing:2.240000pt;}
.ls1e{letter-spacing:2.293333pt;}
.ls1a{letter-spacing:2.346667pt;}
.ls23{letter-spacing:2.400000pt;}
.ls29{letter-spacing:2.453333pt;}
.lsf{letter-spacing:2.560000pt;}
.ls4b{letter-spacing:2.666667pt;}
.ls28{letter-spacing:2.720000pt;}
.ls25{letter-spacing:2.773333pt;}
.ls4d{letter-spacing:2.826667pt;}
.ls45{letter-spacing:2.880000pt;}
.ls3d{letter-spacing:2.933333pt;}
.ls13{letter-spacing:2.986667pt;}
.ls26{letter-spacing:3.093333pt;}
.ls4a{letter-spacing:3.146667pt;}
.ls9{letter-spacing:3.200000pt;}
.ls91{letter-spacing:3.253333pt;}
.ls1f{letter-spacing:3.306667pt;}
.ls52{letter-spacing:3.360000pt;}
.ls17{letter-spacing:3.413333pt;}
.ls43{letter-spacing:3.466667pt;}
.ls65{letter-spacing:3.520000pt;}
.ls63{letter-spacing:3.573333pt;}
.ls58{letter-spacing:3.626667pt;}
.ls59{letter-spacing:3.680000pt;}
.ls42{letter-spacing:3.733333pt;}
.ls92{letter-spacing:3.786667pt;}
.ls5{letter-spacing:3.840000pt;}
.ls27{letter-spacing:3.946667pt;}
.ls2a{letter-spacing:4.000000pt;}
.ls44{letter-spacing:4.053333pt;}
.ls24{letter-spacing:4.106667pt;}
.ls2c{letter-spacing:4.160000pt;}
.ls56{letter-spacing:4.213333pt;}
.ls18{letter-spacing:4.266667pt;}
.ls4f{letter-spacing:4.320000pt;}
.ls49{letter-spacing:4.373333pt;}
.ls1c{letter-spacing:4.426667pt;}
.ls60{letter-spacing:4.480000pt;}
.ls53{letter-spacing:4.533333pt;}
.ls8c{letter-spacing:4.586667pt;}
.ls54{letter-spacing:4.693333pt;}
.ls46{letter-spacing:4.746667pt;}
.ls50{letter-spacing:4.800000pt;}
.ls69{letter-spacing:4.853333pt;}
.ls90{letter-spacing:4.960000pt;}
.ls51{letter-spacing:5.120000pt;}
.ls6c{letter-spacing:5.173333pt;}
.ls93{letter-spacing:5.226667pt;}
.ls3f{letter-spacing:5.280000pt;}
.ls55{letter-spacing:5.333333pt;}
.ls89{letter-spacing:5.386667pt;}
.ls2d{letter-spacing:5.440000pt;}
.ls4e{letter-spacing:5.546667pt;}
.ls48{letter-spacing:5.600000pt;}
.ls8f{letter-spacing:5.866667pt;}
.ls8e{letter-spacing:5.973333pt;}
.ls8d{letter-spacing:6.026667pt;}
.ls67{letter-spacing:6.186667pt;}
.ls22{letter-spacing:6.240000pt;}
.ls1d{letter-spacing:6.293333pt;}
.ls5f{letter-spacing:6.400000pt;}
.ls66{letter-spacing:6.453333pt;}
.ls5e{letter-spacing:6.506667pt;}
.ls47{letter-spacing:6.613333pt;}
.ls61{letter-spacing:6.826667pt;}
.ls4c{letter-spacing:7.146667pt;}
.ls6d{letter-spacing:8.586667pt;}
.ls68{letter-spacing:9.866667pt;}
.ls76{letter-spacing:11.626667pt;}
.ls6e{letter-spacing:13.226667pt;}
.ls6f{letter-spacing:17.493333pt;}
.ls70{letter-spacing:29.226667pt;}
.ls6a{letter-spacing:102.720000pt;}
.ls6b{letter-spacing:140.373333pt;}
.ws0{word-spacing:0.000000pt;}
.ws1{word-spacing:24.320000pt;}
._1d{margin-left:-507.984972pt;}
._50{margin-left:-86.041239pt;}
._89{margin-left:-68.898595pt;}
._87{margin-left:-53.047351pt;}
._86{margin-left:-49.871568pt;}
._77{margin-left:-36.255603pt;}
._4c{margin-left:-29.048801pt;}
._1e{margin-left:-27.014217pt;}
._78{margin-left:-25.850247pt;}
._1a{margin-left:-22.376960pt;}
._24{margin-left:-16.795779pt;}
._16{margin-left:-12.709382pt;}
._12{margin-left:-11.122429pt;}
._22{margin-left:-9.774004pt;}
._13{margin-left:-7.832320pt;}
._1{margin-left:-6.842880pt;}
._11{margin-left:-5.038080pt;}
._2{margin-left:-3.315200pt;}
._c{margin-left:-2.123011pt;}
._0{margin-left:-1.144747pt;}
._d{width:0.983682pt;}
._9{width:2.117120pt;}
._8{width:3.420628pt;}
._14{width:4.761041pt;}
._7{width:5.756422pt;}
._5{width:7.072463pt;}
._10{width:8.685488pt;}
._6{width:10.043697pt;}
._15{width:10.938546pt;}
._1f{width:12.923996pt;}
._a{width:13.958056pt;}
._e{width:15.217135pt;}
._f{width:16.855604pt;}
._2e{width:17.809733pt;}
._29{width:19.191708pt;}
._b{width:22.061681pt;}
._1b{width:23.565072pt;}
._2d{width:24.981045pt;}
._21{width:30.284341pt;}
._2c{width:34.785185pt;}
._80{width:36.108479pt;}
._28{width:37.872830pt;}
._62{width:38.770643pt;}
._4d{width:39.690817pt;}
._72{width:40.740267pt;}
._2b{width:42.133649pt;}
._75{width:43.533838pt;}
._31{width:45.069645pt;}
._38{width:52.217696pt;}
._20{width:53.242947pt;}
._32{width:56.078149pt;}
._63{width:59.337739pt;}
._4e{width:62.002479pt;}
._79{width:65.630014pt;}
._25{width:66.607407pt;}
._7d{width:69.567777pt;}
._33{width:72.838840pt;}
._35{width:74.998710pt;}
._7f{width:76.290133pt;}
._37{width:77.269677pt;}
._7c{width:78.511026pt;}
._30{width:83.080019pt;}
._27{width:88.450291pt;}
._53{width:94.978133pt;}
._4b{width:102.188998pt;}
._60{width:105.553252pt;}
._36{width:107.901935pt;}
._5c{width:109.151536pt;}
._55{width:114.678613pt;}
._51{width:123.018524pt;}
._8a{width:126.031828pt;}
._70{width:127.601588pt;}
._8f{width:129.141609pt;}
._8e{width:135.858925pt;}
._8c{width:137.235269pt;}
._6c{width:140.876613pt;}
._1c{width:142.865430pt;}
._8b{width:144.116989pt;}
._8d{width:146.086721pt;}
._81{width:150.051962pt;}
._54{width:157.836516pt;}
._76{width:159.425730pt;}
._5d{width:163.062539pt;}
._6e{width:165.219631pt;}
._88{width:168.147890pt;}
._84{width:170.832417pt;}
._34{width:172.435269pt;}
._39{width:173.811613pt;}
._44{width:176.420005pt;}
._6f{width:178.075114pt;}
._7e{width:182.666157pt;}
._74{width:186.006422pt;}
._40{width:187.924136pt;}
._66{width:192.774524pt;}
._4f{width:195.410930pt;}
._26{width:201.385233pt;}
._3f{width:206.534194pt;}
._41{width:207.814194pt;}
._65{width:209.108728pt;}
._64{width:211.079446pt;}
._3e{width:212.383656pt;}
._5f{width:215.837125pt;}
._6d{width:222.259311pt;}
._23{width:226.949260pt;}
._5b{width:228.706504pt;}
._3d{width:230.479057pt;}
._42{width:237.804731pt;}
._3c{width:239.504681pt;}
._49{width:263.591724pt;}
._73{width:264.503182pt;}
._48{width:283.774844pt;}
._43{width:285.839360pt;}
._68{width:286.993406pt;}
._46{width:287.952643pt;}
._4a{width:290.352761pt;}
._6a{width:291.752320pt;}
._83{width:298.166329pt;}
._85{width:300.198075pt;}
._82{width:304.787261pt;}
._52{width:307.744142pt;}
._45{width:318.388686pt;}
._7b{width:331.022063pt;}
._7a{width:336.924131pt;}
._47{width:347.086452pt;}
._69{width:349.752320pt;}
._71{width:370.129396pt;}
._5a{width:395.059664pt;}
._67{width:462.243840pt;}
._2a{width:488.987323pt;}
._17{width:516.968189pt;}
._3{width:519.680000pt;}
._5e{width:535.534748pt;}
._3a{width:555.981309pt;}
._18{width:556.963959pt;}
._6b{width:587.918154pt;}
._2f{width:654.497782pt;}
._61{width:679.489113pt;}
._4{width:704.673280pt;}
._56{width:747.795342pt;}
._3b{width:765.099011pt;}
._19{width:771.490133pt;}
._90{width:775.729911pt;}
._58{width:935.495314pt;}
._59{width:947.063040pt;}
._57{width:1194.239269pt;}
.fs16{font-size:23.040000pt;}
.fs8{font-size:30.720000pt;}
.fs13{font-size:34.560000pt;}
.fs14{font-size:37.120000pt;}
.fsa{font-size:39.680000pt;}
.fs7{font-size:40.960000pt;}
.fs3{font-size:43.520000pt;}
.fs2{font-size:44.800000pt;}
.fsb{font-size:46.080000pt;}
.fs1{font-size:47.360000pt;}
.fs0{font-size:48.640000pt;}
.fs4{font-size:51.200000pt;}
.fs5{font-size:52.480000pt;}
.fs19{font-size:60.160000pt;}
.fsd{font-size:61.440000pt;}
.fsc{font-size:66.560000pt;}
.fs10{font-size:67.840000pt;}
.fs9{font-size:69.120000pt;}
.fs11{font-size:70.400000pt;}
.fs15{font-size:81.920000pt;}
.fsf{font-size:83.200000pt;}
.fs12{font-size:99.840000pt;}
.fse{font-size:133.120000pt;}
.fs17{font-size:160.000000pt;}
.fs6{font-size:189.440000pt;}
.fs18{font-size:208.640000pt;}
.y0{bottom:0.000000pt;}
.yb3{bottom:72.320000pt;}
.y3c{bottom:73.280000pt;}
.y88{bottom:75.520000pt;}
.yb2{bottom:104.320000pt;}
.y3b{bottom:104.640000pt;}
.y5e{bottom:106.560000pt;}
.y25{bottom:107.520000pt;}
.yb1{bottom:117.440000pt;}
.y3a{bottom:120.320000pt;}
.y87{bottom:121.600000pt;}
.y24{bottom:122.880000pt;}
.y5d{bottom:129.600000pt;}
.y5c{bottom:129.920000pt;}
.y102{bottom:130.240000pt;}
.y86{bottom:135.360000pt;}
.y39{bottom:136.320000pt;}
.yb0{bottom:138.240000pt;}
.y23{bottom:138.560000pt;}
.y101{bottom:144.000000pt;}
.yaf{bottom:151.360000pt;}
.y38{bottom:152.000000pt;}
.y22{bottom:154.240000pt;}
.y100{bottom:157.120000pt;}
.y85{bottom:159.680000pt;}
.yac{bottom:160.960000pt;}
.y37{bottom:167.680000pt;}
.y21{bottom:169.600000pt;}
.yff{bottom:170.240000pt;}
.y36{bottom:183.680000pt;}
.y20{bottom:185.600000pt;}
.y84{bottom:187.200000pt;}
.y35{bottom:199.680000pt;}
.y5b{bottom:200.640000pt;}
.ycf{bottom:200.960000pt;}
.y1f{bottom:201.920000pt;}
.yfe{bottom:206.400000pt;}
.yab{bottom:213.120000pt;}
.y83{bottom:213.760000pt;}
.y34{bottom:215.680000pt;}
.y5a{bottom:216.640000pt;}
.y1e{bottom:217.600000pt;}
.yfd{bottom:218.880000pt;}
.yaa{bottom:223.680000pt;}
.y82{bottom:226.880000pt;}
.y59{bottom:231.040000pt;}
.y33{bottom:231.360000pt;}
.yce{bottom:232.640000pt;}
.yfc{bottom:232.960000pt;}
.y1d{bottom:233.280000pt;}
.ya9{bottom:233.920000pt;}
.y81{bottom:239.680000pt;}
.yae{bottom:244.480000pt;}
.yfb{bottom:245.760000pt;}
.y58{bottom:246.720000pt;}
.y32{bottom:247.680000pt;}
.y1c{bottom:248.960000pt;}
.ycd{bottom:249.600000pt;}
.yfa{bottom:258.560000pt;}
.y31{bottom:263.680000pt;}
.y1b{bottom:265.280000pt;}
.ya8{bottom:265.920000pt;}
.ya7{bottom:267.200000pt;}
.yf9{bottom:272.000000pt;}
.y30{bottom:279.680000pt;}
.y1a{bottom:280.960000pt;}
.ycc{bottom:281.280000pt;}
.y80{bottom:283.520000pt;}
.yf8{bottom:285.760000pt;}
.y57{bottom:287.040000pt;}
.y19{bottom:296.960000pt;}
.y7f{bottom:298.880000pt;}
.y2f{bottom:306.240000pt;}
.yf7{bottom:311.360000pt;}
.y18{bottom:312.960000pt;}
.y7e{bottom:314.560000pt;}
.yf6{bottom:324.480000pt;}
.ya6{bottom:324.800000pt;}
.y56{bottom:328.000000pt;}
.y2e{bottom:328.640000pt;}
.y17{bottom:328.960000pt;}
.y7d{bottom:330.560000pt;}
.ya5{bottom:335.680000pt;}
.yf5{bottom:337.600000pt;}
.y55{bottom:344.320000pt;}
.ycb{bottom:344.640000pt;}
.y7c{bottom:344.960000pt;}
.y2d{bottom:345.280000pt;}
.y16{bottom:345.600000pt;}
.yf4{bottom:351.680000pt;}
.ya4{bottom:355.840000pt;}
.yad{bottom:357.760000pt;}
.y54{bottom:360.000000pt;}
.y2c{bottom:360.960000pt;}
.y15{bottom:361.600000pt;}
.y7b{bottom:361.920000pt;}
.yf3{bottom:364.480000pt;}
.y7a{bottom:374.720000pt;}
.y53{bottom:376.320000pt;}
.y2b{bottom:376.640000pt;}
.y14{bottom:377.280000pt;}
.yf2{bottom:377.920000pt;}
.y79{bottom:378.560000pt;}
.ya3{bottom:382.080000pt;}
.yf1{bottom:392.000000pt;}
.yca{bottom:392.640000pt;}
.y2a{bottom:393.600000pt;}
.y13{bottom:393.920000pt;}
.y78{bottom:394.240000pt;}
.yf0{bottom:404.160000pt;}
.y51{bottom:408.320000pt;}
.y52{bottom:408.640000pt;}
.y29{bottom:409.280000pt;}
.y12{bottom:409.600000pt;}
.y77{bottom:409.920000pt;}
.yef{bottom:417.920000pt;}
.y28{bottom:425.280000pt;}
.y11{bottom:425.600000pt;}
.y76{bottom:425.920000pt;}
.yee{bottom:431.040000pt;}
.ya2{bottom:440.640000pt;}
.yc9{bottom:441.280000pt;}
.y27{bottom:441.600000pt;}
.y10{bottom:441.920000pt;}
.y75{bottom:442.560000pt;}
.yed{bottom:444.480000pt;}
.y50{bottom:447.680000pt;}
.ya1{bottom:455.040000pt;}
.yc8{bottom:456.960000pt;}
.yf{bottom:457.600000pt;}
.yec{bottom:457.920000pt;}
.y74{bottom:458.880000pt;}
.y4f{bottom:469.440000pt;}
.yeb{bottom:471.040000pt;}
.y4e{bottom:472.960000pt;}
.yc7{bottom:473.280000pt;}
.y26{bottom:473.600000pt;}
.ye{bottom:473.920000pt;}
.y73{bottom:474.240000pt;}
.ya0{bottom:475.520000pt;}
.yea{bottom:484.480000pt;}
.yc6{bottom:489.280000pt;}
.y72{bottom:489.920000pt;}
.ye9{bottom:497.600000pt;}
.yc5{bottom:505.280000pt;}
.y71{bottom:506.240000pt;}
.ye8{bottom:511.040000pt;}
.y9f{bottom:520.000000pt;}
.yc4{bottom:520.960000pt;}
.y4d{bottom:521.920000pt;}
.y70{bottom:522.240000pt;}
.ye7{bottom:524.160000pt;}
.yd{bottom:527.360000pt;}
.yc3{bottom:537.280000pt;}
.y6f{bottom:537.920000pt;}
.ye6{bottom:538.240000pt;}
.yc{bottom:540.160000pt;}
.y9e{bottom:547.200000pt;}
.y4c{bottom:550.720000pt;}
.ye5{bottom:551.040000pt;}
.yc2{bottom:552.960000pt;}
.y6e{bottom:553.600000pt;}
.y9d{bottom:557.440000pt;}
.ye4{bottom:564.480000pt;}
.y4b{bottom:567.360000pt;}
.y6d{bottom:569.600000pt;}
.y9c{bottom:576.000000pt;}
.ye3{bottom:577.600000pt;}
.y4a{bottom:583.360000pt;}
.yc1{bottom:585.600000pt;}
.y6c{bottom:585.920000pt;}
.yb{bottom:589.120000pt;}
.ye2{bottom:591.360000pt;}
.y49{bottom:599.680000pt;}
.yc0{bottom:601.600000pt;}
.ya{bottom:601.920000pt;}
.y9b{bottom:604.480000pt;}
.ye1{bottom:604.800000pt;}
.y48{bottom:615.680000pt;}
.y6b{bottom:617.920000pt;}
.ye0{bottom:631.360000pt;}
.ybf{bottom:633.920000pt;}
.y9{bottom:634.240000pt;}
.y9a{bottom:635.520000pt;}
.y47{bottom:640.320000pt;}
.y6a{bottom:643.520000pt;}
.ydf{bottom:644.800000pt;}
.ybe{bottom:650.240000pt;}
.y8{bottom:650.560000pt;}
.yde{bottom:657.920000pt;}
.y99{bottom:658.240000pt;}
.y46{bottom:659.520000pt;}
.y45{bottom:664.320000pt;}
.ybd{bottom:666.240000pt;}
.y98{bottom:668.480000pt;}
.ydd{bottom:672.000000pt;}
.y7{bottom:674.560000pt;}
.y69{bottom:677.440000pt;}
.ybc{bottom:682.560000pt;}
.ydc{bottom:685.120000pt;}
.y97{bottom:695.040000pt;}
.ydb{bottom:697.920000pt;}
.y6{bottom:698.560000pt;}
.y68{bottom:698.880000pt;}
.y96{bottom:702.720000pt;}
.y44{bottom:708.480000pt;}
.yda{bottom:711.360000pt;}
.y5{bottom:714.560000pt;}
.ybb{bottom:714.880000pt;}
.y67{bottom:715.200000pt;}
.yd9{bottom:725.120000pt;}
.y66{bottom:730.880000pt;}
.yba{bottom:731.200000pt;}
.y43{bottom:731.520000pt;}
.yd8{bottom:739.200000pt;}
.y4{bottom:746.560000pt;}
.y65{bottom:746.880000pt;}
.y42{bottom:748.160000pt;}
.yd7{bottom:752.320000pt;}
.y95{bottom:761.920000pt;}
.y3{bottom:762.560000pt;}
.yb9{bottom:762.880000pt;}
.y41{bottom:763.520000pt;}
.yd6{bottom:765.760000pt;}
.y94{bottom:767.360000pt;}
.y64{bottom:770.880000pt;}
.y8e{bottom:776.960000pt;}
.y93{bottom:778.240000pt;}
.yd5{bottom:778.880000pt;}
.yb8{bottom:779.520000pt;}
.y63{bottom:780.800000pt;}
.y40{bottom:786.880000pt;}
.yd4{bottom:792.640000pt;}
.y2{bottom:794.880000pt;}
.yb7{bottom:796.160000pt;}
.y8d{bottom:804.160000pt;}
.yd3{bottom:805.760000pt;}
.y92{bottom:810.560000pt;}
.y62{bottom:810.880000pt;}
.y3f{bottom:812.160000pt;}
.yd2{bottom:819.200000pt;}
.y91{bottom:826.240000pt;}
.y61{bottom:826.560000pt;}
.yb6{bottom:827.840000pt;}
.y8c{bottom:829.760000pt;}
.yd1{bottom:832.320000pt;}
.y3e{bottom:836.800000pt;}
.y90{bottom:842.240000pt;}
.y60{bottom:843.200000pt;}
.y8b{bottom:843.840000pt;}
.yb5{bottom:844.480000pt;}
.yd0{bottom:845.760000pt;}
.y8a{bottom:856.000000pt;}
.y8f{bottom:858.240000pt;}
.y5f{bottom:859.840000pt;}
.y3d{bottom:860.160000pt;}
.y89{bottom:888.960000pt;}
.y1{bottom:890.880000pt;}
.yb4{bottom:891.200000pt;}
.h1c{height:23.220000pt;}
.hb{height:32.040000pt;}
.h18{height:33.918750pt;}
.h17{height:36.045000pt;}
.h19{height:38.715000pt;}
.hd{height:38.924375pt;}
.h4{height:42.712500pt;}
.ha{height:42.720000pt;}
.h3{height:43.946875pt;}
.he{height:45.225000pt;}
.h6{height:46.481250pt;}
.h2{height:47.730000pt;}
.h1{height:47.737500pt;}
.h14{height:49.395000pt;}
.h8{height:50.225000pt;}
.h5{height:50.250000pt;}
.h1a{height:50.730000pt;}
.h7{height:51.480625pt;}
.h1f{height:59.014375pt;}
.h10{height:64.080000pt;}
.hf{height:69.420000pt;}
.h13{height:70.755000pt;}
.hc{height:72.090000pt;}
.h15{height:73.425000pt;}
.h1b{height:80.360000pt;}
.h12{height:81.615625pt;}
.h16{height:100.620000pt;}
.h11{height:130.585000pt;}
.h1d{height:157.031250pt;}
.h9{height:197.580000pt;}
.h1e{height:210.270000pt;}
.h0{height:989.333333pt;}
.w0{width:720.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:49.920000pt;}
.x1{left:50.880000pt;}
.x7{left:51.840000pt;}
.xc{left:52.800000pt;}
.x61{left:54.080000pt;}
.x67{left:60.160000pt;}
.x22{left:66.880000pt;}
.x6{left:67.840000pt;}
.x27{left:68.800000pt;}
.x18{left:70.400000pt;}
.x3c{left:75.200000pt;}
.xb{left:77.120000pt;}
.x68{left:79.360000pt;}
.x2{left:82.560000pt;}
.x4{left:83.520000pt;}
.x15{left:86.400000pt;}
.x16{left:97.280000pt;}
.x5{left:98.560000pt;}
.x50{left:102.400000pt;}
.x3e{left:104.000000pt;}
.x23{left:105.920000pt;}
.x28{left:122.240000pt;}
.x42{left:124.160000pt;}
.x51{left:125.440000pt;}
.x45{left:127.040000pt;}
.x59{left:128.000000pt;}
.x43{left:133.760000pt;}
.x54{left:134.720000pt;}
.x5c{left:138.880000pt;}
.x57{left:141.440000pt;}
.x63{left:145.280000pt;}
.x53{left:152.640000pt;}
.x5b{left:154.240000pt;}
.x13{left:156.800000pt;}
.x19{left:159.040000pt;}
.x3b{left:163.840000pt;}
.x24{left:164.800000pt;}
.x3f{left:183.360000pt;}
.x29{left:186.560000pt;}
.x5e{left:202.240000pt;}
.x1f{left:204.800000pt;}
.x3{left:210.240000pt;}
.x26{left:211.520000pt;}
.x1a{left:212.800000pt;}
.x5a{left:221.760000pt;}
.x14{left:233.920000pt;}
.x1b{left:243.200000pt;}
.x55{left:254.080000pt;}
.x21{left:256.640000pt;}
.xa{left:268.160000pt;}
.x1d{left:269.120000pt;}
.x8{left:273.600000pt;}
.x58{left:279.360000pt;}
.x20{left:291.840000pt;}
.x1c{left:293.120000pt;}
.x64{left:298.240000pt;}
.x9{left:308.800000pt;}
.x49{left:322.560000pt;}
.x17{left:324.480000pt;}
.x25{left:325.440000pt;}
.x60{left:339.840000pt;}
.x4d{left:341.760000pt;}
.x5d{left:343.040000pt;}
.x11{left:370.560000pt;}
.x10{left:371.520000pt;}
.xd{left:372.800000pt;}
.x2c{left:375.680000pt;}
.x30{left:376.640000pt;}
.x2a{left:377.600000pt;}
.x65{left:383.360000pt;}
.x4a{left:384.640000pt;}
.x52{left:385.600000pt;}
.xe{left:389.440000pt;}
.x35{left:392.960000pt;}
.x2b{left:393.920000pt;}
.x66{left:401.920000pt;}
.x4e{left:414.400000pt;}
.x2f{left:415.680000pt;}
.x2d{left:416.640000pt;}
.x56{left:427.840000pt;}
.x46{left:428.800000pt;}
.x4f{left:430.400000pt;}
.x3d{left:439.360000pt;}
.x44{left:448.000000pt;}
.x47{left:454.400000pt;}
.x39{left:457.920000pt;}
.x3a{left:458.880000pt;}
.x31{left:462.080000pt;}
.xf{left:475.200000pt;}
.x38{left:490.240000pt;}
.x5f{left:500.480000pt;}
.x40{left:508.160000pt;}
.x32{left:514.880000pt;}
.x48{left:520.000000pt;}
.x36{left:526.400000pt;}
.x4b{left:542.080000pt;}
.x41{left:546.880000pt;}
.x37{left:560.640000pt;}
.x33{left:581.120000pt;}
.x4c{left:591.680000pt;}
.x34{left:596.800000pt;}
.x12{left:644.160000pt;}
.x62{left:648.000000pt;}
.x2e{left:649.920000pt;}
}




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