
    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_ceb52c829d3a3ea7c9a47213.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_082b93e148441da3c7bb411c.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_9b6f0417dfe1242be1ead468.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_c6c26ff48f7fe57adaed7331.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_bbd8217f1e08a1a7688232e0.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5849f4b546fe8933d7edb30c.woff')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_68364557d8af685b85ef108e.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_9821682419ad9900de1cfa3a.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d97b4cd9af69f370e930b57f.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_68b62c4271b82a327468585c.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_25eb60679614ce0307cd7832.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_f45f747f9950a96b092a128e.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_b47f8ef670b0a8acab3059ff.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_fa303e9c0cf5f8bb26fde9fd.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_ecb60204d30818d87d739b08.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_d9c4fd5ef6e0a875d4f469f5.woff')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_a082ff7a9e2c77f197c222e6.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_a96a94fef5671693b6238bf1.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_82cdeb5f55f31c668a0f2d8a.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_fb77403a3dfe56218372d0e5.woff')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_8b3e7bc0f73914b619dc4b18.woff')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_fd73d9b756390da5c74f751c.woff')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_7a03cdc01b7bdb4590e300f0.woff')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_8cba129e42fafdc6c01c75db.woff')format("woff");}.ff18{font-family:ff18;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_45ced0dc55ec5397f9023b04.woff')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_12660e4e1b0a48e675c643d0.woff')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_752ddcf0c3dd276f6afefa8f.woff')format("woff");}.ff1b{font-family:ff1b;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_2b52cb2fc8b103573ffa77c3.woff')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_f19a7d836a08c0e4fa99874c.woff')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_d45fde4ab5d0ce8dbd6f3ffd.woff')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_2f50c9f1c00d50859161b8db.woff')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_6c11cc446b0b28046d477272.woff')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_d8b70b3f5c7aae8cc49df845.woff')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_2b6b1b4536575eb03ea6af89.woff')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_de5ce7f0bd52dcf1973e2d77.woff')format("woff");}.ff23{font-family:ff23;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:ff24;src:url('chunks/assets/font_634ed2ca91f3a6b445844668.woff')format("woff");}.ff24{font-family:ff24;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:ff25;src:url('chunks/assets/font_0309f2281f42d416ef56e3de.woff')format("woff");}.ff25{font-family:ff25;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:ff26;src:url('chunks/assets/font_67a16eb4d87b7150f632ea50.woff')format("woff");}.ff26{font-family:ff26;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;}
.ma{transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.mc{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);}
.m9{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m0{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);}
.m3{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m6{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);}
.m4{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);}
.m2{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.v1{vertical-align:-47.520000px;}
.v0{vertical-align:0.000000px;}
.ls6e{letter-spacing:-11.880000px;}
.ls52{letter-spacing:-9.000000px;}
.ls43{letter-spacing:-7.200000px;}
.ls54{letter-spacing:-5.760000px;}
.ls3a{letter-spacing:-4.680000px;}
.ls32{letter-spacing:-3.840000px;}
.ls5c{letter-spacing:-3.360000px;}
.ls41{letter-spacing:-3.300000px;}
.ls6d{letter-spacing:-3.240000px;}
.ls33{letter-spacing:-2.880000px;}
.ls4a{letter-spacing:-2.520000px;}
.ls3b{letter-spacing:-2.400000px;}
.ls49{letter-spacing:-2.160000px;}
.ls6f{letter-spacing:-2.040000px;}
.ls3e{letter-spacing:-1.920000px;}
.ls5b{letter-spacing:-1.800000px;}
.ls3c{letter-spacing:-1.740000px;}
.ls36{letter-spacing:-1.680000px;}
.ls35{letter-spacing:-1.560000px;}
.ls34{letter-spacing:-1.440000px;}
.ls70{letter-spacing:-1.140000px;}
.ls44{letter-spacing:-1.080000px;}
.ls3f{letter-spacing:-0.960000px;}
.ls71{letter-spacing:-0.900000px;}
.ls69{letter-spacing:-0.840000px;}
.ls68{letter-spacing:-0.780000px;}
.ls45{letter-spacing:-0.720000px;}
.ls6a{letter-spacing:-0.600000px;}
.ls6b{letter-spacing:-0.540000px;}
.ls40{letter-spacing:-0.480000px;}
.ls6c{letter-spacing:-0.420000px;}
.ls30{letter-spacing:-0.360000px;}
.ls3d{letter-spacing:-0.300000px;}
.ls42{letter-spacing:-0.240000px;}
.ls79{letter-spacing:-0.180000px;}
.ls2d{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.960000px;}
.ls31{letter-spacing:1.080000px;}
.ls2{letter-spacing:1.140000px;}
.ls1c{letter-spacing:1.200000px;}
.ls11{letter-spacing:1.260000px;}
.ls38{letter-spacing:1.320000px;}
.lse{letter-spacing:1.440000px;}
.ls26{letter-spacing:1.560000px;}
.ls24{letter-spacing:1.620000px;}
.lsb{letter-spacing:1.680000px;}
.lsf{letter-spacing:1.740000px;}
.ls16{letter-spacing:1.800000px;}
.lsc{letter-spacing:1.860000px;}
.ls1b{letter-spacing:1.920000px;}
.ls2a{letter-spacing:1.980000px;}
.ls12{letter-spacing:2.040000px;}
.ls1f{letter-spacing:2.100000px;}
.lsa{letter-spacing:2.160000px;}
.ls2b{letter-spacing:2.220000px;}
.ls1d{letter-spacing:2.280000px;}
.ls15{letter-spacing:2.340000px;}
.ls5{letter-spacing:2.400000px;}
.ls21{letter-spacing:2.460000px;}
.ls18{letter-spacing:2.520000px;}
.ls25{letter-spacing:2.580000px;}
.ls2e{letter-spacing:2.640000px;}
.lsd{letter-spacing:2.700000px;}
.ls14{letter-spacing:2.760000px;}
.ls28{letter-spacing:2.820000px;}
.ls7{letter-spacing:2.880000px;}
.ls17{letter-spacing:3.000000px;}
.ls8{letter-spacing:3.060000px;}
.ls0{letter-spacing:3.120000px;}
.ls2c{letter-spacing:3.180000px;}
.ls1e{letter-spacing:3.240000px;}
.ls13{letter-spacing:3.300000px;}
.ls22{letter-spacing:3.360000px;}
.ls1a{letter-spacing:3.420000px;}
.ls27{letter-spacing:3.480000px;}
.ls60{letter-spacing:3.540000px;}
.ls6{letter-spacing:3.600000px;}
.ls29{letter-spacing:3.660000px;}
.ls19{letter-spacing:3.720000px;}
.ls58{letter-spacing:3.780000px;}
.ls1{letter-spacing:3.840000px;}
.ls5d{letter-spacing:3.900000px;}
.ls9{letter-spacing:3.960000px;}
.ls20{letter-spacing:4.020000px;}
.ls46{letter-spacing:4.080000px;}
.ls37{letter-spacing:4.140000px;}
.ls57{letter-spacing:4.200000px;}
.ls4{letter-spacing:4.320000px;}
.ls4f{letter-spacing:4.440000px;}
.ls56{letter-spacing:4.560000px;}
.ls5e{letter-spacing:4.620000px;}
.ls47{letter-spacing:4.680000px;}
.ls63{letter-spacing:4.740000px;}
.ls10{letter-spacing:4.800000px;}
.ls55{letter-spacing:4.860000px;}
.ls53{letter-spacing:4.920000px;}
.ls5f{letter-spacing:4.980000px;}
.ls4e{letter-spacing:5.040000px;}
.ls62{letter-spacing:5.160000px;}
.ls4b{letter-spacing:5.220000px;}
.ls75{letter-spacing:5.280000px;}
.ls67{letter-spacing:5.340000px;}
.ls64{letter-spacing:5.400000px;}
.ls65{letter-spacing:5.580000px;}
.ls23{letter-spacing:5.760000px;}
.ls5a{letter-spacing:5.940000px;}
.ls59{letter-spacing:6.120000px;}
.ls39{letter-spacing:6.240000px;}
.ls2f{letter-spacing:6.300000px;}
.ls76{letter-spacing:6.360000px;}
.ls51{letter-spacing:6.480000px;}
.ls78{letter-spacing:6.540000px;}
.ls74{letter-spacing:6.600000px;}
.ls73{letter-spacing:6.720000px;}
.ls50{letter-spacing:6.840000px;}
.ls72{letter-spacing:6.960000px;}
.ls61{letter-spacing:7.200000px;}
.ls77{letter-spacing:7.440000px;}
.ls66{letter-spacing:7.560000px;}
.ls48{letter-spacing:8.280000px;}
.ls4d{letter-spacing:19.980000px;}
.ls4c{letter-spacing:45.180000px;}
.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;}
._1c{margin-left:-15.676614px;}
._51{margin-left:-13.472475px;}
._1a{margin-left:-12.147097px;}
._1b{margin-left:-10.878534px;}
._18{margin-left:-8.980645px;}
._9{margin-left:-7.558741px;}
._17{margin-left:-6.116112px;}
._f{margin-left:-5.052693px;}
._12{margin-left:-3.510823px;}
._e{margin-left:-2.482970px;}
._13{margin-left:-1.276268px;}
._b{width:1.535239px;}
._d{width:3.343560px;}
._c{width:4.990808px;}
._a{width:6.415281px;}
._1{width:7.609655px;}
._11{width:8.743225px;}
._2{width:9.764309px;}
._0{width:11.206212px;}
._3{width:12.347586px;}
._10{width:13.794240px;}
._4{width:15.248313px;}
._8{width:16.389886px;}
._6{width:18.147431px;}
._22{width:19.203013px;}
._7{width:20.300722px;}
._5c{width:21.301074px;}
._5{width:22.346880px;}
._16{width:24.019220px;}
._19{width:25.215484px;}
._2a{width:26.242560px;}
._28{width:27.411587px;}
._20{width:28.922044px;}
._1e{width:30.137636px;}
._1f{width:32.097120px;}
._2b{width:33.512293px;}
._14{width:34.622625px;}
._27{width:36.057759px;}
._15{width:37.686454px;}
._46{width:39.490595px;}
._24{width:40.594154px;}
._47{width:42.707144px;}
._44{width:44.170344px;}
._23{width:46.314969px;}
._2c{width:49.779360px;}
._3a{width:51.546462px;}
._21{width:53.849615px;}
._2d{width:54.917784px;}
._26{width:56.259360px;}
._25{width:61.049421px;}
._29{width:67.815196px;}
._32{width:69.362608px;}
._45{width:70.461375px;}
._38{width:74.928264px;}
._39{width:78.284571px;}
._4d{width:97.660763px;}
._31{width:99.328696px;}
._2f{width:136.871750px;}
._33{width:138.225758px;}
._30{width:146.263054px;}
._3d{width:172.548911px;}
._40{width:186.687297px;}
._34{width:188.269714px;}
._3f{width:189.932044px;}
._3e{width:191.514462px;}
._41{width:196.261714px;}
._59{width:202.222938px;}
._57{width:206.784525px;}
._3c{width:208.171836px;}
._5b{width:209.174116px;}
._48{width:215.109955px;}
._50{width:231.082184px;}
._55{width:235.798850px;}
._52{width:240.042485px;}
._4a{width:256.379447px;}
._4c{width:280.986051px;}
._36{width:304.415415px;}
._5a{width:352.614972px;}
._35{width:393.179341px;}
._37{width:399.998374px;}
._49{width:440.153351px;}
._58{width:452.040528px;}
._56{width:457.380419px;}
._4e{width:469.557084px;}
._4b{width:494.329067px;}
._4f{width:496.139910px;}
._53{width:590.918807px;}
._54{width:626.828936px;}
._42{width:716.913099px;}
._3b{width:868.418992px;}
._43{width:1296.338055px;}
._1d{width:1696.680000px;}
._2e{width:1817.612903px;}
.fc0{color:transparent;}
.fsd{font-size:21.600000px;}
.fs13{font-size:23.040000px;}
.fsb{font-size:31.680000px;}
.fs12{font-size:34.560000px;}
.fsa{font-size:36.000000px;}
.fs9{font-size:37.440000px;}
.fs7{font-size:44.640000px;}
.fs10{font-size:46.080000px;}
.fs15{font-size:47.520000px;}
.fs4{font-size:48.960000px;}
.fs16{font-size:51.840000px;}
.fs0{font-size:53.280000px;}
.fs14{font-size:56.160000px;}
.fs5{font-size:57.600000px;}
.fs6{font-size:59.040000px;}
.fs3{font-size:60.480000px;}
.fs8{font-size:63.360000px;}
.fsc{font-size:87.840000px;}
.fs2{font-size:99.360000px;}
.fs1{font-size:106.560000px;}
.fse{font-size:113.760000px;}
.fs11{font-size:142.560000px;}
.fsf{font-size:511.200000px;}
.y0{bottom:0.000000px;}
.y1e{bottom:118.080000px;}
.y6b{bottom:121.680000px;}
.y46{bottom:123.840000px;}
.y1d{bottom:132.840000px;}
.yaa{bottom:135.720000px;}
.yd1{bottom:137.520000px;}
.y6a{bottom:139.680000px;}
.y45{bottom:141.840000px;}
.ya9{bottom:149.040000px;}
.yd0{bottom:155.520000px;}
.y69{bottom:158.040000px;}
.y44{bottom:159.480000px;}
.ya8{bottom:162.720000px;}
.y1c{bottom:165.960000px;}
.ycf{bottom:173.520000px;}
.ya7{bottom:176.400000px;}
.y43{bottom:177.480000px;}
.y1b{bottom:179.640000px;}
.y68{bottom:185.400000px;}
.yce{bottom:191.520000px;}
.y42{bottom:194.760000px;}
.ya6{bottom:197.280000px;}
.ycd{bottom:209.520000px;}
.yf9{bottom:209.880000px;}
.y41{bottom:213.480000px;}
.y1a{bottom:220.680000px;}
.y9f{bottom:221.760000px;}
.ya5{bottom:222.840000px;}
.ycc{bottom:227.520000px;}
.yf8{bottom:227.880000px;}
.y67{bottom:230.760000px;}
.y40{bottom:231.840000px;}
.y9e{bottom:236.160000px;}
.y19{bottom:238.680000px;}
.y9d{bottom:241.200000px;}
.ycb{bottom:245.880000px;}
.y66{bottom:248.760000px;}
.y3f{bottom:250.200000px;}
.y8f{bottom:252.720000px;}
.y18{bottom:257.040000px;}
.yf7{bottom:263.880000px;}
.yca{bottom:264.240000px;}
.y9c{bottom:266.040000px;}
.y65{bottom:266.760000px;}
.y17{bottom:275.040000px;}
.y3e{bottom:277.200000px;}
.y8e{bottom:277.920000px;}
.yf6{bottom:281.880000px;}
.y64{bottom:285.120000px;}
.y9b{bottom:291.600000px;}
.y16{bottom:293.040000px;}
.yf5{bottom:299.880000px;}
.yc9{bottom:300.600000px;}
.y63{bottom:302.760000px;}
.y8d{bottom:303.480000px;}
.y15{bottom:311.040000px;}
.yf4{bottom:318.600000px;}
.y62{bottom:321.480000px;}
.y3d{bottom:322.200000px;}
.y8c{bottom:328.320000px;}
.y14{bottom:329.040000px;}
.yf3{bottom:336.960000px;}
.y61{bottom:339.480000px;}
.y3c{bottom:340.560000px;}
.y9a{bottom:343.080000px;}
.y13{bottom:347.400000px;}
.y8b{bottom:354.240000px;}
.yc8{bottom:355.320000px;}
.ya4{bottom:356.040000px;}
.y60{bottom:357.840000px;}
.y3b{bottom:358.560000px;}
.y8a{bottom:361.800000px;}
.y12{bottom:365.760000px;}
.y89{bottom:366.480000px;}
.y99{bottom:367.200000px;}
.yc7{bottom:369.000000px;}
.yf2{bottom:373.680000px;}
.y5f{bottom:376.200000px;}
.y3a{bottom:376.560000px;}
.y98{bottom:380.160000px;}
.y11{bottom:384.120000px;}
.ya3{bottom:386.640000px;}
.y88{bottom:391.320000px;}
.yf1{bottom:392.040000px;}
.y39{bottom:394.920000px;}
.yc6{bottom:396.000000px;}
.y5e{bottom:403.200000px;}
.y97{bottom:406.440000px;}
.yc5{bottom:409.680000px;}
.yf0{bottom:410.400000px;}
.y38{bottom:413.280000px;}
.y87{bottom:416.520000px;}
.y10{bottom:420.840000px;}
.yc4{bottom:423.360000px;}
.y86{bottom:425.880000px;}
.yef{bottom:428.400000px;}
.y96{bottom:430.920000px;}
.y37{bottom:431.280000px;}
.yc3{bottom:437.040000px;}
.y5d{bottom:440.280000px;}
.y85{bottom:442.080000px;}
.yee{bottom:446.760000px;}
.y36{bottom:449.640000px;}
.ya2{bottom:451.080000px;}
.y84{bottom:454.680000px;}
.y95{bottom:456.840000px;}
.yc2{bottom:457.560000px;}
.y94{bottom:461.880000px;}
.yed{bottom:464.760000px;}
.y35{bottom:468.360000px;}
.yf{bottom:475.560000px;}
.y83{bottom:479.520000px;}
.yec{bottom:483.120000px;}
.yc1{bottom:484.920000px;}
.y5c{bottom:485.640000px;}
.y34{bottom:486.360000px;}
.ye{bottom:493.560000px;}
.yc0{bottom:498.960000px;}
.yeb{bottom:501.120000px;}
.y112{bottom:501.480000px;}
.y5b{bottom:504.000000px;}
.y82{bottom:504.360000px;}
.y33{bottom:504.720000px;}
.y93{bottom:509.760000px;}
.yd{bottom:512.280000px;}
.ybf{bottom:512.640000px;}
.y111{bottom:515.880000px;}
.yea{bottom:519.480000px;}
.y92{bottom:521.280000px;}
.y5a{bottom:522.000000px;}
.y32{bottom:522.360000px;}
.ybe{bottom:526.320000px;}
.y110{bottom:529.200000px;}
.y81{bottom:529.560000px;}
.yc{bottom:529.920000px;}
.y91{bottom:530.280000px;}
.ya1{bottom:532.800000px;}
.ye9{bottom:538.200000px;}
.y59{bottom:540.360000px;}
.y31{bottom:540.720000px;}
.y10f{bottom:543.240000px;}
.y90{bottom:545.040000px;}
.ya0{bottom:546.120000px;}
.ybd{bottom:546.840000px;}
.yb{bottom:547.920000px;}
.ye8{bottom:556.560000px;}
.y10e{bottom:556.920000px;}
.y58{bottom:559.080000px;}
.ya{bottom:566.280000px;}
.y30{bottom:567.720000px;}
.y10d{bottom:570.600000px;}
.ye7{bottom:574.920000px;}
.y57{bottom:577.080000px;}
.y10c{bottom:584.280000px;}
.y9{bottom:584.640000px;}
.ybc{bottom:587.880000px;}
.ye6{bottom:593.280000px;}
.y56{bottom:595.440000px;}
.y10b{bottom:597.960000px;}
.y8{bottom:603.000000px;}
.y80{bottom:604.440000px;}
.ye5{bottom:611.640000px;}
.y55{bottom:614.160000px;}
.y2f{bottom:614.520000px;}
.ybb{bottom:614.880000px;}
.y7f{bottom:618.120000px;}
.y10a{bottom:624.960000px;}
.yba{bottom:628.560000px;}
.ye4{bottom:629.640000px;}
.y7e{bottom:631.800000px;}
.y54{bottom:632.160000px;}
.y2e{bottom:632.520000px;}
.y109{bottom:638.640000px;}
.ye3{bottom:648.000000px;}
.y7{bottom:649.440000px;}
.y53{bottom:650.160000px;}
.y2d{bottom:650.880000px;}
.y108{bottom:652.320000px;}
.y7c{bottom:655.200000px;}
.y107{bottom:666.000000px;}
.yb9{bottom:667.080000px;}
.y52{bottom:668.520000px;}
.y77{bottom:668.880000px;}
.y2c{bottom:669.240000px;}
.y7d{bottom:669.600000px;}
.y6{bottom:677.160000px;}
.y106{bottom:680.040000px;}
.y7b{bottom:683.280000px;}
.yb8{bottom:685.440000px;}
.y51{bottom:686.520000px;}
.y2b{bottom:687.960000px;}
.y105{bottom:693.720000px;}
.yb7{bottom:703.440000px;}
.y50{bottom:704.880000px;}
.y2a{bottom:705.960000px;}
.y104{bottom:707.760000px;}
.y5{bottom:708.480000px;}
.ye2{bottom:716.400000px;}
.y75{bottom:720.000000px;}
.y103{bottom:721.440000px;}
.yb6{bottom:722.160000px;}
.y4f{bottom:722.880000px;}
.y29{bottom:724.320000px;}
.ye1{bottom:730.080000px;}
.y74{bottom:731.880000px;}
.y102{bottom:735.120000px;}
.yb5{bottom:740.520000px;}
.y4e{bottom:741.240000px;}
.y28{bottom:742.680000px;}
.ye0{bottom:743.760000px;}
.y4{bottom:745.200000px;}
.y101{bottom:748.800000px;}
.ydf{bottom:757.080000px;}
.yb4{bottom:758.880000px;}
.y4d{bottom:759.600000px;}
.y27{bottom:760.680000px;}
.y100{bottom:762.480000px;}
.yde{bottom:771.120000px;}
.yff{bottom:776.520000px;}
.y3{bottom:782.280000px;}
.yb3{bottom:785.880000px;}
.y4c{bottom:786.960000px;}
.y26{bottom:788.040000px;}
.y73{bottom:790.200000px;}
.ydd{bottom:798.840000px;}
.yfe{bottom:803.880000px;}
.y72{bottom:807.480000px;}
.ydc{bottom:813.240000px;}
.y7a{bottom:815.040000px;}
.y2{bottom:819.000000px;}
.ydb{bottom:826.200000px;}
.y79{bottom:830.880000px;}
.yb2{bottom:831.240000px;}
.y4b{bottom:832.680000px;}
.yda{bottom:840.600000px;}
.yb1{bottom:849.600000px;}
.y4a{bottom:851.040000px;}
.yd9{bottom:853.560000px;}
.y76{bottom:858.600000px;}
.y71{bottom:862.200000px;}
.yb0{bottom:867.600000px;}
.y25{bottom:869.040000px;}
.y70{bottom:875.880000px;}
.yd8{bottom:880.560000px;}
.y6f{bottom:884.160000px;}
.yfd{bottom:885.240000px;}
.yaf{bottom:885.600000px;}
.y24{bottom:887.400000px;}
.y6e{bottom:893.160000px;}
.yd7{bottom:894.240000px;}
.yfc{bottom:903.600000px;}
.yae{bottom:903.960000px;}
.y49{bottom:905.400000px;}
.y23{bottom:905.760000px;}
.yd6{bottom:921.240000px;}
.yfb{bottom:921.600000px;}
.yad{bottom:922.320000px;}
.y48{bottom:923.400000px;}
.y22{bottom:924.120000px;}
.y6d{bottom:933.840000px;}
.yac{bottom:940.680000px;}
.y21{bottom:942.120000px;}
.yd5{bottom:948.960000px;}
.y78{bottom:949.680000px;}
.yfa{bottom:958.680000px;}
.yab{bottom:959.040000px;}
.y20{bottom:960.120000px;}
.y47{bottom:960.480000px;}
.yd4{bottom:962.280000px;}
.yd2{bottom:962.640000px;}
.y6c{bottom:996.120000px;}
.y1{bottom:996.840000px;}
.y1f{bottom:997.560000px;}
.yd3{bottom:997.920000px;}
.hf{height:22.528125px;}
.h14{height:23.220000px;}
.hd{height:31.092188px;}
.hc{height:37.546875px;}
.hb{height:39.048750px;}
.h17{height:45.202500px;}
.h16{height:45.225000px;}
.h12{height:46.440000px;}
.h18{height:47.891250px;}
.h5{height:48.051563px;}
.ha{height:51.063750px;}
.h1{height:52.265391px;}
.h1a{height:52.291406px;}
.h1b{height:53.696250px;}
.h15{height:55.501875px;}
.h8{height:56.503125px;}
.h19{height:56.531250px;}
.h7{height:57.944531px;}
.h6{height:59.357813px;}
.h4{height:60.952500px;}
.h9{height:63.855000px;}
.he{height:91.614375px;}
.h3{height:97.467891px;}
.h2{height:107.392500px;}
.h10{height:118.648125px;}
.h13{height:148.685625px;}
.h11{height:533.165625px;}
.h0{height:1080.000000px;}
.w0{width:766.920000px;}
.w1{width:767.250000px;}
.x0{left:0.000000px;}
.x16{left:113.400000px;}
.x1a{left:114.480000px;}
.x8{left:115.560000px;}
.x5{left:116.640000px;}
.xb{left:117.720000px;}
.x1{left:118.800000px;}
.x10{left:119.880000px;}
.x13{left:121.320000px;}
.x4e{left:122.400000px;}
.x2e{left:126.000000px;}
.x31{left:127.800000px;}
.x30{left:129.960000px;}
.x2f{left:131.040000px;}
.x4f{left:138.960000px;}
.x18{left:143.280000px;}
.x2d{left:144.360000px;}
.x2c{left:145.440000px;}
.x6{left:146.520000px;}
.xe{left:149.040000px;}
.x12{left:150.840000px;}
.x15{left:151.920000px;}
.xf{left:164.520000px;}
.x4b{left:187.560000px;}
.x3d{left:188.640000px;}
.x36{left:190.440000px;}
.x2b{left:192.960000px;}
.x20{left:194.760000px;}
.x1e{left:195.840000px;}
.x21{left:196.920000px;}
.x42{left:205.200000px;}
.x4{left:207.360000px;}
.x44{left:213.120000px;}
.x4a{left:217.440000px;}
.x2{left:223.200000px;}
.x22{left:228.960000px;}
.x1f{left:230.040000px;}
.x46{left:231.480000px;}
.x3c{left:240.480000px;}
.x38{left:241.920000px;}
.x32{left:243.720000px;}
.x39{left:253.080000px;}
.x37{left:260.640000px;}
.x23{left:261.720000px;}
.x43{left:267.480000px;}
.xd{left:268.560000px;}
.xc{left:279.000000px;}
.x1d{left:293.760000px;}
.x35{left:301.320000px;}
.x14{left:303.480000px;}
.x34{left:304.560000px;}
.x19{left:312.480000px;}
.x3{left:314.280000px;}
.x25{left:316.800000px;}
.x7{left:321.840000px;}
.x29{left:326.880000px;}
.x1c{left:329.400000px;}
.x49{left:330.840000px;}
.x4d{left:334.080000px;}
.x11{left:335.160000px;}
.x47{left:337.320000px;}
.x1b{left:348.120000px;}
.xa{left:364.680000px;}
.x24{left:367.200000px;}
.x9{left:374.760000px;}
.x3a{left:376.200000px;}
.x3b{left:388.800000px;}
.x33{left:389.880000px;}
.x45{left:408.240000px;}
.x28{left:421.920000px;}
.x41{left:435.240000px;}
.x3f{left:436.680000px;}
.x27{left:469.440000px;}
.x26{left:498.240000px;}
.x40{left:502.200000px;}
.x3e{left:503.640000px;}
.x2a{left:529.560000px;}
.x48{left:561.960000px;}
.x17{left:633.600000px;}
.x4c{left:635.760000px;}
@media print{
.v1{vertical-align:-42.240000pt;}
.v0{vertical-align:0.000000pt;}
.ls6e{letter-spacing:-10.560000pt;}
.ls52{letter-spacing:-8.000000pt;}
.ls43{letter-spacing:-6.400000pt;}
.ls54{letter-spacing:-5.120000pt;}
.ls3a{letter-spacing:-4.160000pt;}
.ls32{letter-spacing:-3.413333pt;}
.ls5c{letter-spacing:-2.986667pt;}
.ls41{letter-spacing:-2.933333pt;}
.ls6d{letter-spacing:-2.880000pt;}
.ls33{letter-spacing:-2.560000pt;}
.ls4a{letter-spacing:-2.240000pt;}
.ls3b{letter-spacing:-2.133333pt;}
.ls49{letter-spacing:-1.920000pt;}
.ls6f{letter-spacing:-1.813333pt;}
.ls3e{letter-spacing:-1.706667pt;}
.ls5b{letter-spacing:-1.600000pt;}
.ls3c{letter-spacing:-1.546667pt;}
.ls36{letter-spacing:-1.493333pt;}
.ls35{letter-spacing:-1.386667pt;}
.ls34{letter-spacing:-1.280000pt;}
.ls70{letter-spacing:-1.013333pt;}
.ls44{letter-spacing:-0.960000pt;}
.ls3f{letter-spacing:-0.853333pt;}
.ls71{letter-spacing:-0.800000pt;}
.ls69{letter-spacing:-0.746667pt;}
.ls68{letter-spacing:-0.693333pt;}
.ls45{letter-spacing:-0.640000pt;}
.ls6a{letter-spacing:-0.533333pt;}
.ls6b{letter-spacing:-0.480000pt;}
.ls40{letter-spacing:-0.426667pt;}
.ls6c{letter-spacing:-0.373333pt;}
.ls30{letter-spacing:-0.320000pt;}
.ls3d{letter-spacing:-0.266667pt;}
.ls42{letter-spacing:-0.213333pt;}
.ls79{letter-spacing:-0.160000pt;}
.ls2d{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.853333pt;}
.ls31{letter-spacing:0.960000pt;}
.ls2{letter-spacing:1.013333pt;}
.ls1c{letter-spacing:1.066667pt;}
.ls11{letter-spacing:1.120000pt;}
.ls38{letter-spacing:1.173333pt;}
.lse{letter-spacing:1.280000pt;}
.ls26{letter-spacing:1.386667pt;}
.ls24{letter-spacing:1.440000pt;}
.lsb{letter-spacing:1.493333pt;}
.lsf{letter-spacing:1.546667pt;}
.ls16{letter-spacing:1.600000pt;}
.lsc{letter-spacing:1.653333pt;}
.ls1b{letter-spacing:1.706667pt;}
.ls2a{letter-spacing:1.760000pt;}
.ls12{letter-spacing:1.813333pt;}
.ls1f{letter-spacing:1.866667pt;}
.lsa{letter-spacing:1.920000pt;}
.ls2b{letter-spacing:1.973333pt;}
.ls1d{letter-spacing:2.026667pt;}
.ls15{letter-spacing:2.080000pt;}
.ls5{letter-spacing:2.133333pt;}
.ls21{letter-spacing:2.186667pt;}
.ls18{letter-spacing:2.240000pt;}
.ls25{letter-spacing:2.293333pt;}
.ls2e{letter-spacing:2.346667pt;}
.lsd{letter-spacing:2.400000pt;}
.ls14{letter-spacing:2.453333pt;}
.ls28{letter-spacing:2.506667pt;}
.ls7{letter-spacing:2.560000pt;}
.ls17{letter-spacing:2.666667pt;}
.ls8{letter-spacing:2.720000pt;}
.ls0{letter-spacing:2.773333pt;}
.ls2c{letter-spacing:2.826667pt;}
.ls1e{letter-spacing:2.880000pt;}
.ls13{letter-spacing:2.933333pt;}
.ls22{letter-spacing:2.986667pt;}
.ls1a{letter-spacing:3.040000pt;}
.ls27{letter-spacing:3.093333pt;}
.ls60{letter-spacing:3.146667pt;}
.ls6{letter-spacing:3.200000pt;}
.ls29{letter-spacing:3.253333pt;}
.ls19{letter-spacing:3.306667pt;}
.ls58{letter-spacing:3.360000pt;}
.ls1{letter-spacing:3.413333pt;}
.ls5d{letter-spacing:3.466667pt;}
.ls9{letter-spacing:3.520000pt;}
.ls20{letter-spacing:3.573333pt;}
.ls46{letter-spacing:3.626667pt;}
.ls37{letter-spacing:3.680000pt;}
.ls57{letter-spacing:3.733333pt;}
.ls4{letter-spacing:3.840000pt;}
.ls4f{letter-spacing:3.946667pt;}
.ls56{letter-spacing:4.053333pt;}
.ls5e{letter-spacing:4.106667pt;}
.ls47{letter-spacing:4.160000pt;}
.ls63{letter-spacing:4.213333pt;}
.ls10{letter-spacing:4.266667pt;}
.ls55{letter-spacing:4.320000pt;}
.ls53{letter-spacing:4.373333pt;}
.ls5f{letter-spacing:4.426667pt;}
.ls4e{letter-spacing:4.480000pt;}
.ls62{letter-spacing:4.586667pt;}
.ls4b{letter-spacing:4.640000pt;}
.ls75{letter-spacing:4.693333pt;}
.ls67{letter-spacing:4.746667pt;}
.ls64{letter-spacing:4.800000pt;}
.ls65{letter-spacing:4.960000pt;}
.ls23{letter-spacing:5.120000pt;}
.ls5a{letter-spacing:5.280000pt;}
.ls59{letter-spacing:5.440000pt;}
.ls39{letter-spacing:5.546667pt;}
.ls2f{letter-spacing:5.600000pt;}
.ls76{letter-spacing:5.653333pt;}
.ls51{letter-spacing:5.760000pt;}
.ls78{letter-spacing:5.813333pt;}
.ls74{letter-spacing:5.866667pt;}
.ls73{letter-spacing:5.973333pt;}
.ls50{letter-spacing:6.080000pt;}
.ls72{letter-spacing:6.186667pt;}
.ls61{letter-spacing:6.400000pt;}
.ls77{letter-spacing:6.613333pt;}
.ls66{letter-spacing:6.720000pt;}
.ls48{letter-spacing:7.360000pt;}
.ls4d{letter-spacing:17.760000pt;}
.ls4c{letter-spacing:40.160000pt;}
.ws0{word-spacing:0.000000pt;}
._1c{margin-left:-13.934768pt;}
._51{margin-left:-11.975533pt;}
._1a{margin-left:-10.797419pt;}
._1b{margin-left:-9.669808pt;}
._18{margin-left:-7.982796pt;}
._9{margin-left:-6.718881pt;}
._17{margin-left:-5.436544pt;}
._f{margin-left:-4.491283pt;}
._12{margin-left:-3.120732pt;}
._e{margin-left:-2.207085pt;}
._13{margin-left:-1.134460pt;}
._b{width:1.364657pt;}
._d{width:2.972054pt;}
._c{width:4.436274pt;}
._a{width:5.702472pt;}
._1{width:6.764138pt;}
._11{width:7.771756pt;}
._2{width:8.679386pt;}
._0{width:9.961078pt;}
._3{width:10.975632pt;}
._10{width:12.261547pt;}
._4{width:13.554056pt;}
._8{width:14.568788pt;}
._6{width:16.131050pt;}
._22{width:17.069345pt;}
._7{width:18.045086pt;}
._5c{width:18.934288pt;}
._5{width:19.863893pt;}
._16{width:21.350418pt;}
._19{width:22.413763pt;}
._2a{width:23.326720pt;}
._28{width:24.365855pt;}
._20{width:25.708483pt;}
._1e{width:26.789010pt;}
._1f{width:28.530773pt;}
._2b{width:29.788705pt;}
._14{width:30.775666pt;}
._27{width:32.051341pt;}
._15{width:33.499071pt;}
._46{width:35.102751pt;}
._24{width:36.083692pt;}
._47{width:37.961906pt;}
._44{width:39.262528pt;}
._23{width:41.168862pt;}
._2c{width:44.248320pt;}
._3a{width:45.819077pt;}
._21{width:47.866325pt;}
._2d{width:48.815808pt;}
._26{width:50.008320pt;}
._25{width:54.266152pt;}
._29{width:60.280174pt;}
._32{width:61.655651pt;}
._45{width:62.632334pt;}
._38{width:66.602901pt;}
._39{width:69.586286pt;}
._4d{width:86.809567pt;}
._31{width:88.292174pt;}
._2f{width:121.663777pt;}
._33{width:122.867341pt;}
._30{width:130.011603pt;}
._3d{width:153.376810pt;}
._40{width:165.944264pt;}
._34{width:167.350857pt;}
._3f{width:168.828484pt;}
._3e{width:170.235077pt;}
._41{width:174.454857pt;}
._59{width:179.753723pt;}
._57{width:183.808467pt;}
._3c{width:185.041632pt;}
._5b{width:185.932548pt;}
._48{width:191.208849pt;}
._50{width:205.406386pt;}
._55{width:209.598978pt;}
._52{width:213.371098pt;}
._4a{width:227.892841pt;}
._4c{width:249.765379pt;}
._36{width:270.591480pt;}
._5a{width:313.435531pt;}
._35{width:349.492747pt;}
._37{width:355.554110pt;}
._49{width:391.247423pt;}
._58{width:401.813803pt;}
._56{width:406.560372pt;}
._4e{width:417.384074pt;}
._4b{width:439.403615pt;}
._4f{width:441.013253pt;}
._53{width:525.261161pt;}
._54{width:557.181277pt;}
._42{width:637.256088pt;}
._3b{width:771.927993pt;}
._43{width:1152.300493pt;}
._1d{width:1508.160000pt;}
._2e{width:1615.655914pt;}
.fsd{font-size:19.200000pt;}
.fs13{font-size:20.480000pt;}
.fsb{font-size:28.160000pt;}
.fs12{font-size:30.720000pt;}
.fsa{font-size:32.000000pt;}
.fs9{font-size:33.280000pt;}
.fs7{font-size:39.680000pt;}
.fs10{font-size:40.960000pt;}
.fs15{font-size:42.240000pt;}
.fs4{font-size:43.520000pt;}
.fs16{font-size:46.080000pt;}
.fs0{font-size:47.360000pt;}
.fs14{font-size:49.920000pt;}
.fs5{font-size:51.200000pt;}
.fs6{font-size:52.480000pt;}
.fs3{font-size:53.760000pt;}
.fs8{font-size:56.320000pt;}
.fsc{font-size:78.080000pt;}
.fs2{font-size:88.320000pt;}
.fs1{font-size:94.720000pt;}
.fse{font-size:101.120000pt;}
.fs11{font-size:126.720000pt;}
.fsf{font-size:454.400000pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:104.960000pt;}
.y6b{bottom:108.160000pt;}
.y46{bottom:110.080000pt;}
.y1d{bottom:118.080000pt;}
.yaa{bottom:120.640000pt;}
.yd1{bottom:122.240000pt;}
.y6a{bottom:124.160000pt;}
.y45{bottom:126.080000pt;}
.ya9{bottom:132.480000pt;}
.yd0{bottom:138.240000pt;}
.y69{bottom:140.480000pt;}
.y44{bottom:141.760000pt;}
.ya8{bottom:144.640000pt;}
.y1c{bottom:147.520000pt;}
.ycf{bottom:154.240000pt;}
.ya7{bottom:156.800000pt;}
.y43{bottom:157.760000pt;}
.y1b{bottom:159.680000pt;}
.y68{bottom:164.800000pt;}
.yce{bottom:170.240000pt;}
.y42{bottom:173.120000pt;}
.ya6{bottom:175.360000pt;}
.ycd{bottom:186.240000pt;}
.yf9{bottom:186.560000pt;}
.y41{bottom:189.760000pt;}
.y1a{bottom:196.160000pt;}
.y9f{bottom:197.120000pt;}
.ya5{bottom:198.080000pt;}
.ycc{bottom:202.240000pt;}
.yf8{bottom:202.560000pt;}
.y67{bottom:205.120000pt;}
.y40{bottom:206.080000pt;}
.y9e{bottom:209.920000pt;}
.y19{bottom:212.160000pt;}
.y9d{bottom:214.400000pt;}
.ycb{bottom:218.560000pt;}
.y66{bottom:221.120000pt;}
.y3f{bottom:222.400000pt;}
.y8f{bottom:224.640000pt;}
.y18{bottom:228.480000pt;}
.yf7{bottom:234.560000pt;}
.yca{bottom:234.880000pt;}
.y9c{bottom:236.480000pt;}
.y65{bottom:237.120000pt;}
.y17{bottom:244.480000pt;}
.y3e{bottom:246.400000pt;}
.y8e{bottom:247.040000pt;}
.yf6{bottom:250.560000pt;}
.y64{bottom:253.440000pt;}
.y9b{bottom:259.200000pt;}
.y16{bottom:260.480000pt;}
.yf5{bottom:266.560000pt;}
.yc9{bottom:267.200000pt;}
.y63{bottom:269.120000pt;}
.y8d{bottom:269.760000pt;}
.y15{bottom:276.480000pt;}
.yf4{bottom:283.200000pt;}
.y62{bottom:285.760000pt;}
.y3d{bottom:286.400000pt;}
.y8c{bottom:291.840000pt;}
.y14{bottom:292.480000pt;}
.yf3{bottom:299.520000pt;}
.y61{bottom:301.760000pt;}
.y3c{bottom:302.720000pt;}
.y9a{bottom:304.960000pt;}
.y13{bottom:308.800000pt;}
.y8b{bottom:314.880000pt;}
.yc8{bottom:315.840000pt;}
.ya4{bottom:316.480000pt;}
.y60{bottom:318.080000pt;}
.y3b{bottom:318.720000pt;}
.y8a{bottom:321.600000pt;}
.y12{bottom:325.120000pt;}
.y89{bottom:325.760000pt;}
.y99{bottom:326.400000pt;}
.yc7{bottom:328.000000pt;}
.yf2{bottom:332.160000pt;}
.y5f{bottom:334.400000pt;}
.y3a{bottom:334.720000pt;}
.y98{bottom:337.920000pt;}
.y11{bottom:341.440000pt;}
.ya3{bottom:343.680000pt;}
.y88{bottom:347.840000pt;}
.yf1{bottom:348.480000pt;}
.y39{bottom:351.040000pt;}
.yc6{bottom:352.000000pt;}
.y5e{bottom:358.400000pt;}
.y97{bottom:361.280000pt;}
.yc5{bottom:364.160000pt;}
.yf0{bottom:364.800000pt;}
.y38{bottom:367.360000pt;}
.y87{bottom:370.240000pt;}
.y10{bottom:374.080000pt;}
.yc4{bottom:376.320000pt;}
.y86{bottom:378.560000pt;}
.yef{bottom:380.800000pt;}
.y96{bottom:383.040000pt;}
.y37{bottom:383.360000pt;}
.yc3{bottom:388.480000pt;}
.y5d{bottom:391.360000pt;}
.y85{bottom:392.960000pt;}
.yee{bottom:397.120000pt;}
.y36{bottom:399.680000pt;}
.ya2{bottom:400.960000pt;}
.y84{bottom:404.160000pt;}
.y95{bottom:406.080000pt;}
.yc2{bottom:406.720000pt;}
.y94{bottom:410.560000pt;}
.yed{bottom:413.120000pt;}
.y35{bottom:416.320000pt;}
.yf{bottom:422.720000pt;}
.y83{bottom:426.240000pt;}
.yec{bottom:429.440000pt;}
.yc1{bottom:431.040000pt;}
.y5c{bottom:431.680000pt;}
.y34{bottom:432.320000pt;}
.ye{bottom:438.720000pt;}
.yc0{bottom:443.520000pt;}
.yeb{bottom:445.440000pt;}
.y112{bottom:445.760000pt;}
.y5b{bottom:448.000000pt;}
.y82{bottom:448.320000pt;}
.y33{bottom:448.640000pt;}
.y93{bottom:453.120000pt;}
.yd{bottom:455.360000pt;}
.ybf{bottom:455.680000pt;}
.y111{bottom:458.560000pt;}
.yea{bottom:461.760000pt;}
.y92{bottom:463.360000pt;}
.y5a{bottom:464.000000pt;}
.y32{bottom:464.320000pt;}
.ybe{bottom:467.840000pt;}
.y110{bottom:470.400000pt;}
.y81{bottom:470.720000pt;}
.yc{bottom:471.040000pt;}
.y91{bottom:471.360000pt;}
.ya1{bottom:473.600000pt;}
.ye9{bottom:478.400000pt;}
.y59{bottom:480.320000pt;}
.y31{bottom:480.640000pt;}
.y10f{bottom:482.880000pt;}
.y90{bottom:484.480000pt;}
.ya0{bottom:485.440000pt;}
.ybd{bottom:486.080000pt;}
.yb{bottom:487.040000pt;}
.ye8{bottom:494.720000pt;}
.y10e{bottom:495.040000pt;}
.y58{bottom:496.960000pt;}
.ya{bottom:503.360000pt;}
.y30{bottom:504.640000pt;}
.y10d{bottom:507.200000pt;}
.ye7{bottom:511.040000pt;}
.y57{bottom:512.960000pt;}
.y10c{bottom:519.360000pt;}
.y9{bottom:519.680000pt;}
.ybc{bottom:522.560000pt;}
.ye6{bottom:527.360000pt;}
.y56{bottom:529.280000pt;}
.y10b{bottom:531.520000pt;}
.y8{bottom:536.000000pt;}
.y80{bottom:537.280000pt;}
.ye5{bottom:543.680000pt;}
.y55{bottom:545.920000pt;}
.y2f{bottom:546.240000pt;}
.ybb{bottom:546.560000pt;}
.y7f{bottom:549.440000pt;}
.y10a{bottom:555.520000pt;}
.yba{bottom:558.720000pt;}
.ye4{bottom:559.680000pt;}
.y7e{bottom:561.600000pt;}
.y54{bottom:561.920000pt;}
.y2e{bottom:562.240000pt;}
.y109{bottom:567.680000pt;}
.ye3{bottom:576.000000pt;}
.y7{bottom:577.280000pt;}
.y53{bottom:577.920000pt;}
.y2d{bottom:578.560000pt;}
.y108{bottom:579.840000pt;}
.y7c{bottom:582.400000pt;}
.y107{bottom:592.000000pt;}
.yb9{bottom:592.960000pt;}
.y52{bottom:594.240000pt;}
.y77{bottom:594.560000pt;}
.y2c{bottom:594.880000pt;}
.y7d{bottom:595.200000pt;}
.y6{bottom:601.920000pt;}
.y106{bottom:604.480000pt;}
.y7b{bottom:607.360000pt;}
.yb8{bottom:609.280000pt;}
.y51{bottom:610.240000pt;}
.y2b{bottom:611.520000pt;}
.y105{bottom:616.640000pt;}
.yb7{bottom:625.280000pt;}
.y50{bottom:626.560000pt;}
.y2a{bottom:627.520000pt;}
.y104{bottom:629.120000pt;}
.y5{bottom:629.760000pt;}
.ye2{bottom:636.800000pt;}
.y75{bottom:640.000000pt;}
.y103{bottom:641.280000pt;}
.yb6{bottom:641.920000pt;}
.y4f{bottom:642.560000pt;}
.y29{bottom:643.840000pt;}
.ye1{bottom:648.960000pt;}
.y74{bottom:650.560000pt;}
.y102{bottom:653.440000pt;}
.yb5{bottom:658.240000pt;}
.y4e{bottom:658.880000pt;}
.y28{bottom:660.160000pt;}
.ye0{bottom:661.120000pt;}
.y4{bottom:662.400000pt;}
.y101{bottom:665.600000pt;}
.ydf{bottom:672.960000pt;}
.yb4{bottom:674.560000pt;}
.y4d{bottom:675.200000pt;}
.y27{bottom:676.160000pt;}
.y100{bottom:677.760000pt;}
.yde{bottom:685.440000pt;}
.yff{bottom:690.240000pt;}
.y3{bottom:695.360000pt;}
.yb3{bottom:698.560000pt;}
.y4c{bottom:699.520000pt;}
.y26{bottom:700.480000pt;}
.y73{bottom:702.400000pt;}
.ydd{bottom:710.080000pt;}
.yfe{bottom:714.560000pt;}
.y72{bottom:717.760000pt;}
.ydc{bottom:722.880000pt;}
.y7a{bottom:724.480000pt;}
.y2{bottom:728.000000pt;}
.ydb{bottom:734.400000pt;}
.y79{bottom:738.560000pt;}
.yb2{bottom:738.880000pt;}
.y4b{bottom:740.160000pt;}
.yda{bottom:747.200000pt;}
.yb1{bottom:755.200000pt;}
.y4a{bottom:756.480000pt;}
.yd9{bottom:758.720000pt;}
.y76{bottom:763.200000pt;}
.y71{bottom:766.400000pt;}
.yb0{bottom:771.200000pt;}
.y25{bottom:772.480000pt;}
.y70{bottom:778.560000pt;}
.yd8{bottom:782.720000pt;}
.y6f{bottom:785.920000pt;}
.yfd{bottom:786.880000pt;}
.yaf{bottom:787.200000pt;}
.y24{bottom:788.800000pt;}
.y6e{bottom:793.920000pt;}
.yd7{bottom:794.880000pt;}
.yfc{bottom:803.200000pt;}
.yae{bottom:803.520000pt;}
.y49{bottom:804.800000pt;}
.y23{bottom:805.120000pt;}
.yd6{bottom:818.880000pt;}
.yfb{bottom:819.200000pt;}
.yad{bottom:819.840000pt;}
.y48{bottom:820.800000pt;}
.y22{bottom:821.440000pt;}
.y6d{bottom:830.080000pt;}
.yac{bottom:836.160000pt;}
.y21{bottom:837.440000pt;}
.yd5{bottom:843.520000pt;}
.y78{bottom:844.160000pt;}
.yfa{bottom:852.160000pt;}
.yab{bottom:852.480000pt;}
.y20{bottom:853.440000pt;}
.y47{bottom:853.760000pt;}
.yd4{bottom:855.360000pt;}
.yd2{bottom:855.680000pt;}
.y6c{bottom:885.440000pt;}
.y1{bottom:886.080000pt;}
.y1f{bottom:886.720000pt;}
.yd3{bottom:887.040000pt;}
.hf{height:20.025000pt;}
.h14{height:20.640000pt;}
.hd{height:27.637500pt;}
.hc{height:33.375000pt;}
.hb{height:34.710000pt;}
.h17{height:40.180000pt;}
.h16{height:40.200000pt;}
.h12{height:41.280000pt;}
.h18{height:42.570000pt;}
.h5{height:42.712500pt;}
.ha{height:45.390000pt;}
.h1{height:46.458125pt;}
.h1a{height:46.481250pt;}
.h1b{height:47.730000pt;}
.h15{height:49.335000pt;}
.h8{height:50.225000pt;}
.h19{height:50.250000pt;}
.h7{height:51.506250pt;}
.h6{height:52.762500pt;}
.h4{height:54.180000pt;}
.h9{height:56.760000pt;}
.he{height:81.435000pt;}
.h3{height:86.638125pt;}
.h2{height:95.460000pt;}
.h10{height:105.465000pt;}
.h13{height:132.165000pt;}
.h11{height:473.925000pt;}
.h0{height:960.000000pt;}
.w0{width:681.706667pt;}
.w1{width:682.000000pt;}
.x0{left:0.000000pt;}
.x16{left:100.800000pt;}
.x1a{left:101.760000pt;}
.x8{left:102.720000pt;}
.x5{left:103.680000pt;}
.xb{left:104.640000pt;}
.x1{left:105.600000pt;}
.x10{left:106.560000pt;}
.x13{left:107.840000pt;}
.x4e{left:108.800000pt;}
.x2e{left:112.000000pt;}
.x31{left:113.600000pt;}
.x30{left:115.520000pt;}
.x2f{left:116.480000pt;}
.x4f{left:123.520000pt;}
.x18{left:127.360000pt;}
.x2d{left:128.320000pt;}
.x2c{left:129.280000pt;}
.x6{left:130.240000pt;}
.xe{left:132.480000pt;}
.x12{left:134.080000pt;}
.x15{left:135.040000pt;}
.xf{left:146.240000pt;}
.x4b{left:166.720000pt;}
.x3d{left:167.680000pt;}
.x36{left:169.280000pt;}
.x2b{left:171.520000pt;}
.x20{left:173.120000pt;}
.x1e{left:174.080000pt;}
.x21{left:175.040000pt;}
.x42{left:182.400000pt;}
.x4{left:184.320000pt;}
.x44{left:189.440000pt;}
.x4a{left:193.280000pt;}
.x2{left:198.400000pt;}
.x22{left:203.520000pt;}
.x1f{left:204.480000pt;}
.x46{left:205.760000pt;}
.x3c{left:213.760000pt;}
.x38{left:215.040000pt;}
.x32{left:216.640000pt;}
.x39{left:224.960000pt;}
.x37{left:231.680000pt;}
.x23{left:232.640000pt;}
.x43{left:237.760000pt;}
.xd{left:238.720000pt;}
.xc{left:248.000000pt;}
.x1d{left:261.120000pt;}
.x35{left:267.840000pt;}
.x14{left:269.760000pt;}
.x34{left:270.720000pt;}
.x19{left:277.760000pt;}
.x3{left:279.360000pt;}
.x25{left:281.600000pt;}
.x7{left:286.080000pt;}
.x29{left:290.560000pt;}
.x1c{left:292.800000pt;}
.x49{left:294.080000pt;}
.x4d{left:296.960000pt;}
.x11{left:297.920000pt;}
.x47{left:299.840000pt;}
.x1b{left:309.440000pt;}
.xa{left:324.160000pt;}
.x24{left:326.400000pt;}
.x9{left:333.120000pt;}
.x3a{left:334.400000pt;}
.x3b{left:345.600000pt;}
.x33{left:346.560000pt;}
.x45{left:362.880000pt;}
.x28{left:375.040000pt;}
.x41{left:386.880000pt;}
.x3f{left:388.160000pt;}
.x27{left:417.280000pt;}
.x26{left:442.880000pt;}
.x40{left:446.400000pt;}
.x3e{left:447.680000pt;}
.x2a{left:470.720000pt;}
.x48{left:499.520000pt;}
.x17{left:563.200000pt;}
.x4c{left:565.120000pt;}
}




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