
    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_6199bb9d84a1769bcc32277d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_295b4f2285145b531a270ea7.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_bb811f73ec1f5a9c98b15d25.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_76f7add8f18bf59aa798cf00.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0e445a51339e5e58bc89308c.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_61a8454287d5070097f54f8e.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6298d84d68ae16008d043c9a.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_889526e88d961b96f034fbbd.woff')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3b98e4927dda9d2895291af4.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a6b4fd91b394abc4a0b0d895.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_fde4d3c5493bde4224f17b6f.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_ee60eccff14c20dc5a934672.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_6df43eda341ef13978133315.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_9113fa258475fe296bfcd004.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_90b9fdcadb369ab2a8861a31.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_93ac5591cb9870bf939f23a5.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_8b04c647300f047b13a9081b.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_26f57339bc8c39edbd58c054.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;}
.m2a{transform:matrix(0.169202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169202,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.186111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186111,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.190217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190217,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.201149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201149,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.205556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205556,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.212644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212644,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.216049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216049,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.220238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220238,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.225275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225275,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.225309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225309,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.235119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235119,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.235632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235632,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.241477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241477,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.241758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241758,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.243289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243289,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.243827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243827,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.244048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244048,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m1f{transform:matrix(0.252841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252841,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.253012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253012,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.253125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253125,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.253205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253205,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.256329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256329,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.257692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257692,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.259494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259494,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.261111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261111,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.262658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262658,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.265432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265432,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.265823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265823,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.266990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266990,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.269886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269886,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.271875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271875,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.272436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272436,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.275281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275281,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.275568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275568,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.278986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278986,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.291096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291096,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.296053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296053,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.301205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301205,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.302326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302326,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.308219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308219,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.313253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313253,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.386364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386364,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.756667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756667,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.766304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766304,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(1.047101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.047101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.047101,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(8.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(8.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(8.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls48{letter-spacing:-12.427800px;}
.ls33{letter-spacing:-12.204000px;}
.ls30{letter-spacing:-8.619750px;}
.ls27{letter-spacing:-7.725000px;}
.ls2a{letter-spacing:-7.311150px;}
.ls28{letter-spacing:-7.182000px;}
.ls49{letter-spacing:-6.989400px;}
.ls5b{letter-spacing:-6.203925px;}
.ls5c{letter-spacing:-5.425875px;}
.ls15{letter-spacing:-5.247000px;}
.ls50{letter-spacing:-5.181300px;}
.ls32{letter-spacing:-5.028750px;}
.ls42{letter-spacing:-4.659600px;}
.ls10{letter-spacing:-4.501200px;}
.ls2d{letter-spacing:-4.383225px;}
.ls4f{letter-spacing:-4.213125px;}
.ls26{letter-spacing:-4.201200px;}
.ls59{letter-spacing:-3.825000px;}
.ls13{letter-spacing:-3.750525px;}
.ls68{letter-spacing:-3.703050px;}
.ls47{letter-spacing:-3.655575px;}
.ls35{letter-spacing:-3.591000px;}
.ls41{letter-spacing:-3.108600px;}
.ls2c{letter-spacing:-2.922150px;}
.ls2f{letter-spacing:-2.875500px;}
.ls4a{letter-spacing:-2.329800px;}
.ls5a{letter-spacing:-2.327325px;}
.ls11{letter-spacing:-2.250600px;}
.ls64{letter-spacing:-2.223000px;}
.ls3a{letter-spacing:-2.194500px;}
.ls14{letter-spacing:-1.499025px;}
.ls65{letter-spacing:-1.480050px;}
.ls24{letter-spacing:-1.461075px;}
.ls2e{letter-spacing:-1.445850px;}
.ls2b{letter-spacing:-1.410150px;}
.ls39{letter-spacing:-1.380000px;}
.ls12{letter-spacing:-0.752475px;}
.ls61{letter-spacing:-0.742950px;}
.ls25{letter-spacing:-0.733425px;}
.ls4d{letter-spacing:-0.722850px;}
.ls62{letter-spacing:-0.698775px;}
.lsf{letter-spacing:0.000000px;}
.ls5d{letter-spacing:0.679800px;}
.ls1a{letter-spacing:0.733425px;}
.ls63{letter-spacing:0.738000px;}
.ls19{letter-spacing:0.740775px;}
.ls53{letter-spacing:0.742950px;}
.ls4{letter-spacing:0.752475px;}
.ls3d{letter-spacing:0.778800px;}
.ls18{letter-spacing:0.779625px;}
.ls23{letter-spacing:0.780000px;}
.ls52{letter-spacing:1.359600px;}
.ls38{letter-spacing:1.437750px;}
.ls1b{letter-spacing:1.461075px;}
.ls54{letter-spacing:1.480050px;}
.ls5{letter-spacing:1.499025px;}
.ls5e{letter-spacing:1.537200px;}
.ls46{letter-spacing:1.593900px;}
.ls60{letter-spacing:1.622025px;}
.ls5f{letter-spacing:1.664550px;}
.ls36{letter-spacing:2.045250px;}
.ls1e{letter-spacing:2.153250px;}
.ls1d{letter-spacing:2.194500px;}
.ls56{letter-spacing:2.223000px;}
.ls7{letter-spacing:2.251500px;}
.ls45{letter-spacing:2.509650px;}
.ls4c{letter-spacing:2.778600px;}
.ls20{letter-spacing:2.875500px;}
.ls1f{letter-spacing:2.922150px;}
.ls34{letter-spacing:2.927925px;}
.ls57{letter-spacing:2.960100px;}
.ls37{letter-spacing:2.963400px;}
.ls3{letter-spacing:2.998050px;}
.ls51{letter-spacing:3.105375px;}
.ls31{letter-spacing:3.330600px;}
.ls22{letter-spacing:3.591000px;}
.ls1c{letter-spacing:3.655575px;}
.ls58{letter-spacing:3.703050px;}
.ls0{letter-spacing:3.748800px;}
.ls6{letter-spacing:3.750525px;}
.ls55{letter-spacing:4.440150px;}
.lsb{letter-spacing:4.501200px;}
.ls43{letter-spacing:4.556250px;}
.ls3e{letter-spacing:4.659600px;}
.ls17{letter-spacing:4.974750px;}
.ls3b{letter-spacing:5.116650px;}
.ls67{letter-spacing:5.183100px;}
.ls1{letter-spacing:5.247000px;}
.ls4e{letter-spacing:5.249475px;}
.ls9{letter-spacing:5.249550px;}
.ls4b{letter-spacing:5.438400px;}
.ls21{letter-spacing:5.744250px;}
.ls16{letter-spacing:5.999400px;}
.ls44{letter-spacing:6.210600px;}
.ls66{letter-spacing:6.663150px;}
.lsd{letter-spacing:6.751800px;}
.ls29{letter-spacing:6.919425px;}
.ls3f{letter-spacing:7.761600px;}
.ls3c{letter-spacing:8.038800px;}
.lsa{letter-spacing:8.247600px;}
.ls2{letter-spacing:9.748200px;}
.ls8{letter-spacing:9.752550px;}
.ls40{letter-spacing:12.427800px;}
.lsc{letter-spacing:12.751200px;}
.lse{letter-spacing:24.014250px;}
.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;}
._15{margin-left:-24.261600px;}
._17{margin-left:-21.425250px;}
._4{margin-left:-16.704600px;}
._22{margin-left:-13.648800px;}
._1a{margin-left:-12.493950px;}
._1f{margin-left:-11.048400px;}
._14{margin-left:-9.490800px;}
._3{margin-left:-7.821000px;}
._23{margin-left:-6.562350px;}
._1e{margin-left:-4.620000px;}
._1b{margin-left:-1.737450px;}
._e{width:1.374600px;}
._11{width:2.452950px;}
._f{width:4.106025px;}
._c{width:5.713425px;}
._6{width:7.502700px;}
._d{width:8.952675px;}
._9{width:10.647225px;}
._16{width:11.665500px;}
._7{width:12.685425px;}
._1{width:14.176800px;}
._b{width:16.056750px;}
._0{width:17.967600px;}
._8{width:19.836900px;}
._5{width:21.561075px;}
._10{width:22.641150px;}
._a{width:23.693850px;}
._1c{width:24.715725px;}
._12{width:26.089800px;}
._2{width:28.221600px;}
._18{width:29.472150px;}
._1d{width:31.841899px;}
._13{width:33.264000px;}
._21{width:35.864400px;}
._19{width:38.144738px;}
._24{width:39.656475px;}
._20{width:42.475950px;}
.fc0{color:transparent;}
.fs18{font-size:2.250000px;}
.fsb{font-size:36.000000px;}
.fs1a{font-size:48.750000px;}
.fs15{font-size:51.750000px;}
.fse{font-size:54.750000px;}
.fs16{font-size:55.500000px;}
.fs13{font-size:56.250000px;}
.fs17{font-size:57.000000px;}
.fs9{font-size:57.750000px;}
.fs10{font-size:58.500000px;}
.fs3{font-size:59.250000px;}
.fsa{font-size:60.000000px;}
.fs7{font-size:60.750000px;}
.fs2{font-size:62.250000px;}
.fs4{font-size:63.000000px;}
.fs11{font-size:64.500000px;}
.fs5{font-size:65.250000px;}
.fs1{font-size:66.000000px;}
.fs12{font-size:66.750000px;}
.fs8{font-size:67.500000px;}
.fsf{font-size:68.250000px;}
.fsd{font-size:69.000000px;}
.fs19{font-size:76.500000px;}
.fsc{font-size:77.250000px;}
.fs14{font-size:83.396400px;}
.fs0{font-size:97.500000px;}
.fs6{font-size:111.750000px;}
.ya9{bottom:-6.702750px;}
.y0{bottom:0.000000px;}
.ya8{bottom:50.537100px;}
.y36{bottom:76.096800px;}
.y6c{bottom:76.104638px;}
.ya7{bottom:80.776950px;}
.ya6{bottom:80.781712px;}
.y35{bottom:92.301637px;}
.y6b{bottom:92.303513px;}
.ya5{bottom:96.980587px;}
.y34{bottom:108.136200px;}
.y6a{bottom:108.502388px;}
.ya4{bottom:112.818525px;}
.y33{bottom:123.970725px;}
.y69{bottom:124.701263px;}
.ya3{bottom:129.017925px;}
.y32{bottom:140.175600px;}
.y68{bottom:140.539200px;}
.ya2{bottom:145.216800px;}
.ya1{bottom:145.217175px;}
.y31{bottom:156.376612px;}
.y67{bottom:156.738075px;}
.ya0{bottom:161.420287px;}
.y30{bottom:172.759237px;}
.y66{bottom:172.936950px;}
.y65{bottom:172.939500px;}
.y9f{bottom:177.619162px;}
.y2f{bottom:188.416050px;}
.y64{bottom:189.138375px;}
.y9e{bottom:193.457588px;}
.y2d{bottom:204.970725px;}
.y2e{bottom:204.976350px;}
.y63{bottom:205.337250px;}
.y9d{bottom:210.017400px;}
.y2c{bottom:221.177137px;}
.y62{bottom:221.544900px;}
.y9c{bottom:226.216800px;}
.y9b{bottom:226.217175px;}
.y2b{bottom:237.011700px;}
.y61{bottom:237.743775px;}
.y9a{bottom:242.416050px;}
.y99{bottom:242.418225px;}
.y2a{bottom:253.216575px;}
.y60{bottom:253.581713px;}
.y98{bottom:258.610425px;}
.y28{bottom:269.764200px;}
.y29{bottom:269.776950px;}
.y5f{bottom:269.780588px;}
.y97{bottom:288.496050px;}
.y5e{bottom:295.695900px;}
.y5d{bottom:295.698075px;}
.y27{bottom:300.011325px;}
.y96{bottom:304.697100px;}
.y5c{bottom:311.896950px;}
.y5b{bottom:311.899012px;}
.y26{bottom:316.210725px;}
.y5a{bottom:327.736950px;}
.y24{bottom:332.411625px;}
.y94{bottom:332.414550px;}
.y25{bottom:332.415600px;}
.y95{bottom:332.417250px;}
.y23{bottom:348.616500px;}
.y93{bottom:350.416050px;}
.y59{bottom:356.897400px;}
.y58{bottom:374.896350px;}
.y22{bottom:376.695900px;}
.y21{bottom:376.700850px;}
.y20{bottom:397.936350px;}
.y92{bottom:414.136087px;}
.y57{bottom:421.337250px;}
.y91{bottom:430.698563px;}
.y1f{bottom:431.771475px;}
.y56{bottom:437.536500px;}
.y55{bottom:437.539200px;}
.y90{bottom:446.897438px;}
.y1d{bottom:447.970650px;}
.y1e{bottom:447.976350px;}
.y54{bottom:454.099013px;}
.y8f{bottom:463.457250px;}
.y8e{bottom:463.457588px;}
.y1c{bottom:464.175525px;}
.y53{bottom:469.940362px;}
.y8d{bottom:480.017400px;}
.y8c{bottom:480.017925px;}
.y1b{bottom:480.735900px;}
.y52{bottom:486.500175px;}
.y8b{bottom:496.216800px;}
.y19{bottom:496.925850px;}
.y1a{bottom:496.936950px;}
.y51{bottom:502.699050px;}
.y8a{bottom:512.777475px;}
.y18{bottom:513.130725px;}
.y50{bottom:518.897925px;}
.y89{bottom:528.976350px;}
.y88{bottom:528.978525px;}
.y17{bottom:529.335600px;}
.yc4{bottom:531.135150px;}
.yc3{bottom:531.136350px;}
.y4f{bottom:535.096800px;}
.y87{bottom:545.176087px;}
.y16{bottom:545.886450px;}
.yc2{bottom:547.691850px;}
.y4e{bottom:551.646113px;}
.y86{bottom:561.735900px;}
.y15{bottom:562.091325px;}
.yc1{bottom:563.896350px;}
.y4d{bottom:567.844988px;}
.y14{bottom:578.296200px;}
.y84{bottom:578.471475px;}
.y85{bottom:578.477400px;}
.yc0{bottom:580.090500px;}
.y4c{bottom:583.870612px;}
.y13{bottom:594.495450px;}
.y83{bottom:594.497100px;}
.y82{bottom:594.497625px;}
.ybe{bottom:596.291550px;}
.ybf{bottom:596.295000px;}
.y4b{bottom:600.257175px;}
.y12{bottom:610.685325px;}
.y81{bottom:610.696500px;}
.y80{bottom:610.696987px;}
.ybd{bottom:612.505500px;}
.y4a{bottom:616.456050px;}
.y11{bottom:627.245700px;}
.y7f{bottom:627.256800px;}
.ybc{bottom:629.061000px;}
.y49{bottom:632.657100px;}
.y48{bottom:632.657475px;}
.y7e{bottom:643.449337px;}
.y10{bottom:643.450575px;}
.ybb{bottom:645.616500px;}
.yba{bottom:645.620850px;}
.y47{bottom:648.856350px;}
.ye{bottom:659.646000px;}
.yf{bottom:659.655450px;}
.yb9{bottom:662.176350px;}
.y46{bottom:665.417175px;}
.y7d{bottom:673.695900px;}
.yd{bottom:675.850875px;}
.yb8{bottom:678.380850px;}
.y45{bottom:681.617925px;}
.y7c{bottom:690.258375px;}
.yb{bottom:692.051925px;}
.yc{bottom:692.055750px;}
.yb6{bottom:694.935900px;}
.yb7{bottom:694.936350px;}
.y7b{bottom:706.457250px;}
.y9{bottom:708.252975px;}
.ya{bottom:708.256800px;}
.y44{bottom:708.616050px;}
.y43{bottom:708.618075px;}
.yb5{bottom:711.491400px;}
.y8{bottom:724.813350px;}
.y42{bottom:724.816950px;}
.y41{bottom:724.817437px;}
.yb4{bottom:727.695900px;}
.y79{bottom:740.295150px;}
.y7a{bottom:740.296200px;}
.y40{bottom:741.377250px;}
.yb3{bottom:744.256200px;}
.yb2{bottom:744.260850px;}
.y7{bottom:755.771475px;}
.y78{bottom:758.296650px;}
.yb1{bottom:760.816350px;}
.y3f{bottom:768.736200px;}
.y6{bottom:771.976350px;}
.yb0{bottom:777.015750px;}
.y3e{bottom:787.096200px;}
.y5{bottom:788.536500px;}
.yaf{bottom:793.576050px;}
.y77{bottom:809.057288px;}
.y4{bottom:820.216800px;}
.y3{bottom:820.219950px;}
.yae{bottom:824.536050px;}
.y75{bottom:825.616275px;}
.y76{bottom:825.617100px;}
.y3d{bottom:834.978300px;}
.yad{bottom:840.735300px;}
.y2{bottom:841.455450px;}
.y74{bottom:842.176087px;}
.y3c{bottom:851.177175px;}
.yac{bottom:856.936350px;}
.y73{bottom:858.736387px;}
.y3b{bottom:867.376050px;}
.y3a{bottom:867.380775px;}
.y72{bottom:875.296200px;}
.y71{bottom:875.296537px;}
.y39{bottom:883.579650px;}
.yab{bottom:885.735900px;}
.y1{bottom:890.056800px;}
.y70{bottom:891.858525px;}
.y38{bottom:899.778525px;}
.yaa{bottom:908.055750px;}
.y6e{bottom:908.056237px;}
.y6f{bottom:908.057400px;}
.y37{bottom:915.977400px;}
.y6d{bottom:924.616050px;}
.h2c{height:2.207153px;}
.h14{height:35.332031px;}
.h34{height:48.178711px;}
.h18{height:53.734131px;}
.h27{height:53.973633px;}
.h29{height:54.470215px;}
.h23{height:55.206299px;}
.hd{height:56.678467px;}
.h26{height:56.683717px;}
.h25{height:56.702167px;}
.h28{height:56.705167px;}
.h22{height:56.705317px;}
.h19{height:56.722417px;}
.h1f{height:57.414551px;}
.h33{height:57.435551px;}
.h5{height:58.150635px;}
.h10{height:58.150785px;}
.ha{height:58.187835px;}
.h9{height:58.195335px;}
.h2a{height:58.666992px;}
.h13{height:58.886719px;}
.h30{height:58.957031px;}
.h2b{height:59.449219px;}
.h17{height:59.593140px;}
.hb{height:59.622803px;}
.h1e{height:60.038086px;}
.h31{height:60.468750px;}
.hf{height:61.094971px;}
.h6{height:61.831055px;}
.h4{height:62.736328px;}
.h20{height:63.303223px;}
.h7{height:64.039307px;}
.h2f{height:65.003906px;}
.h32{height:66.247559px;}
.h3{height:66.515625px;}
.hc{height:68.027344px;}
.h1a{height:68.783203px;}
.h21{height:69.618164px;}
.h1b{height:71.182617px;}
.h16{height:71.964844px;}
.h2e{height:75.603516px;}
.h15{height:76.344727px;}
.h24{height:81.849006px;}
.h2{height:101.689453px;}
.h8{height:116.551758px;}
.he{height:116.573658px;}
.h1{height:1009.500000px;}
.h0{height:1009.712550px;}
.h12{height:1011.750000px;}
.h11{height:1011.872550px;}
.h2d{height:1015.472550px;}
.h1d{height:1015.500000px;}
.h1c{height:1015.832550px;}
.w3{width:666.750000px;}
.w2{width:666.991050px;}
.w7{width:669.000000px;}
.w6{width:669.152550px;}
.w1{width:670.500000px;}
.w0{width:670.592550px;}
.w4{width:677.072550px;}
.w5{width:677.250000px;}
.x0{left:0.000000px;}
.x6c{left:34.336200px;}
.x72{left:35.403300px;}
.x2{left:36.496650px;}
.xb{left:37.935712px;}
.x4f{left:39.375600px;}
.x5d{left:52.336650px;}
.xa{left:57.016800px;}
.x77{left:58.099350px;}
.x3{left:59.171550px;}
.xc{left:60.598837px;}
.x22{left:61.665937px;}
.x6{left:66.016350px;}
.x73{left:68.536050px;}
.x62{left:72.855300px;}
.x70{left:77.896350px;}
.x7{left:82.576500px;}
.x74{left:84.016800px;}
.x63{left:87.616050px;}
.x2c{left:96.256200px;}
.x33{left:97.341825px;}
.x49{left:98.423250px;}
.x71{left:106.695900px;}
.x59{left:108.495450px;}
.x7d{left:117.135750px;}
.x2e{left:118.565962px;}
.x3d{left:119.651587px;}
.x43{left:121.095750px;}
.x27{left:123.256200px;}
.x15{left:124.696500px;}
.x6d{left:129.015750px;}
.x5a{left:136.935750px;}
.x4a{left:138.376050px;}
.x16{left:139.455600px;}
.x58{left:142.695450px;}
.x6f{left:144.855900px;}
.x81{left:147.016350px;}
.x31{left:148.456650px;}
.x8{left:150.256200px;}
.x23{left:153.136800px;}
.x6e{left:158.896350px;}
.x34{left:159.975750px;}
.x1e{left:163.576500px;}
.x9{left:164.655900px;}
.x13{left:166.455600px;}
.x24{left:168.256800px;}
.x5b{left:170.415600px;}
.x32{left:173.296200px;}
.x88{left:175.095750px;}
.x3a{left:177.976350px;}
.x35{left:180.855300px;}
.x4{left:183.735900px;}
.x1f{left:185.896350px;}
.x2d{left:187.695900px;}
.x3b{left:191.296650px;}
.x5c{left:192.376050px;}
.x5{left:198.855900px;}
.x7a{left:203.895300px;}
.x1{left:206.055750px;}
.x5e{left:215.056800px;}
.x82{left:217.215600px;}
.x4b{left:218.296650px;}
.x64{left:224.776500px;}
.x36{left:237.015750px;}
.x4c{left:239.176200px;}
.x37{left:248.175600px;}
.x6a{left:249.256650px;}
.x47{left:257.176800px;}
.x56{left:259.335600px;}
.x6b{left:265.096800px;}
.x28{left:271.935750px;}
.x38{left:275.175600px;}
.x54{left:277.336200px;}
.x48{left:279.135750px;}
.x61{left:280.216800px;}
.x57{left:283.095750px;}
.x29{left:286.696500px;}
.x19{left:289.936350px;}
.x66{left:291.735900px;}
.x55{left:292.815300px;}
.x7b{left:294.616500px;}
.x39{left:296.416050px;}
.x7e{left:297.856350px;}
.x83{left:299.655900px;}
.x75{left:301.455450px;}
.x1a{left:304.695450px;}
.x89{left:305.776500px;}
.x3f{left:312.615450px;}
.x2f{left:313.696500px;}
.x50{left:314.775900px;}
.x8a{left:320.896350px;}
.x7c{left:321.975750px;}
.xd{left:323.056800px;}
.x2a{left:325.576500px;}
.x51{left:328.816500px;}
.x30{left:337.456650px;}
.xe{left:339.615450px;}
.x2b{left:341.055750px;}
.x7f{left:356.895750px;}
.x1b{left:367.335600px;}
.x67{left:378.495450px;}
.x80{left:380.296650px;}
.x1c{left:382.455600px;}
.x44{left:390.736500px;}
.x68{left:393.256200px;}
.x25{left:399.735900px;}
.x11{left:401.896350px;}
.x1d{left:406.215600px;}
.x84{left:413.776500px;}
.x12{left:417.016350px;}
.x26{left:427.096800px;}
.x45{left:429.616500px;}
.x40{left:436.096200px;}
.x85{left:447.976350px;}
.x20{left:453.015750px;}
.x21{left:468.135750px;}
.x86{left:469.935300px;}
.xf{left:477.496050px;}
.x46{left:480.015750px;}
.x69{left:481.456050px;}
.x41{left:489.376050px;}
.x10{left:494.056350px;}
.x52{left:496.576050px;}
.x65{left:504.136800px;}
.x53{left:511.336650px;}
.x78{left:518.536500px;}
.x17{left:520.336200px;}
.x5f{left:525.375600px;}
.x79{left:533.295600px;}
.x18{left:536.535450px;}
.x42{left:539.416050px;}
.x60{left:540.856350px;}
.x4d{left:548.776500px;}
.x76{left:558.496050px;}
.x4e{left:564.975750px;}
.x14{left:568.215600px;}
.x3e{left:621.495450px;}
.x87{left:624.376050px;}
.x3c{left:625.455600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls48{letter-spacing:-11.046933pt;}
.ls33{letter-spacing:-10.848000pt;}
.ls30{letter-spacing:-7.662000pt;}
.ls27{letter-spacing:-6.866667pt;}
.ls2a{letter-spacing:-6.498800pt;}
.ls28{letter-spacing:-6.384000pt;}
.ls49{letter-spacing:-6.212800pt;}
.ls5b{letter-spacing:-5.514600pt;}
.ls5c{letter-spacing:-4.823000pt;}
.ls15{letter-spacing:-4.664000pt;}
.ls50{letter-spacing:-4.605600pt;}
.ls32{letter-spacing:-4.470000pt;}
.ls42{letter-spacing:-4.141867pt;}
.ls10{letter-spacing:-4.001067pt;}
.ls2d{letter-spacing:-3.896200pt;}
.ls4f{letter-spacing:-3.745000pt;}
.ls26{letter-spacing:-3.734400pt;}
.ls59{letter-spacing:-3.400000pt;}
.ls13{letter-spacing:-3.333800pt;}
.ls68{letter-spacing:-3.291600pt;}
.ls47{letter-spacing:-3.249400pt;}
.ls35{letter-spacing:-3.192000pt;}
.ls41{letter-spacing:-2.763200pt;}
.ls2c{letter-spacing:-2.597467pt;}
.ls2f{letter-spacing:-2.556000pt;}
.ls4a{letter-spacing:-2.070933pt;}
.ls5a{letter-spacing:-2.068733pt;}
.ls11{letter-spacing:-2.000533pt;}
.ls64{letter-spacing:-1.976000pt;}
.ls3a{letter-spacing:-1.950667pt;}
.ls14{letter-spacing:-1.332467pt;}
.ls65{letter-spacing:-1.315600pt;}
.ls24{letter-spacing:-1.298733pt;}
.ls2e{letter-spacing:-1.285200pt;}
.ls2b{letter-spacing:-1.253467pt;}
.ls39{letter-spacing:-1.226667pt;}
.ls12{letter-spacing:-0.668867pt;}
.ls61{letter-spacing:-0.660400pt;}
.ls25{letter-spacing:-0.651933pt;}
.ls4d{letter-spacing:-0.642533pt;}
.ls62{letter-spacing:-0.621133pt;}
.lsf{letter-spacing:0.000000pt;}
.ls5d{letter-spacing:0.604267pt;}
.ls1a{letter-spacing:0.651933pt;}
.ls63{letter-spacing:0.656000pt;}
.ls19{letter-spacing:0.658467pt;}
.ls53{letter-spacing:0.660400pt;}
.ls4{letter-spacing:0.668867pt;}
.ls3d{letter-spacing:0.692267pt;}
.ls18{letter-spacing:0.693000pt;}
.ls23{letter-spacing:0.693333pt;}
.ls52{letter-spacing:1.208533pt;}
.ls38{letter-spacing:1.278000pt;}
.ls1b{letter-spacing:1.298733pt;}
.ls54{letter-spacing:1.315600pt;}
.ls5{letter-spacing:1.332467pt;}
.ls5e{letter-spacing:1.366400pt;}
.ls46{letter-spacing:1.416800pt;}
.ls60{letter-spacing:1.441800pt;}
.ls5f{letter-spacing:1.479600pt;}
.ls36{letter-spacing:1.818000pt;}
.ls1e{letter-spacing:1.914000pt;}
.ls1d{letter-spacing:1.950667pt;}
.ls56{letter-spacing:1.976000pt;}
.ls7{letter-spacing:2.001333pt;}
.ls45{letter-spacing:2.230800pt;}
.ls4c{letter-spacing:2.469867pt;}
.ls20{letter-spacing:2.556000pt;}
.ls1f{letter-spacing:2.597467pt;}
.ls34{letter-spacing:2.602600pt;}
.ls57{letter-spacing:2.631200pt;}
.ls37{letter-spacing:2.634133pt;}
.ls3{letter-spacing:2.664933pt;}
.ls51{letter-spacing:2.760333pt;}
.ls31{letter-spacing:2.960533pt;}
.ls22{letter-spacing:3.192000pt;}
.ls1c{letter-spacing:3.249400pt;}
.ls58{letter-spacing:3.291600pt;}
.ls0{letter-spacing:3.332267pt;}
.ls6{letter-spacing:3.333800pt;}
.ls55{letter-spacing:3.946800pt;}
.lsb{letter-spacing:4.001067pt;}
.ls43{letter-spacing:4.050000pt;}
.ls3e{letter-spacing:4.141867pt;}
.ls17{letter-spacing:4.422000pt;}
.ls3b{letter-spacing:4.548133pt;}
.ls67{letter-spacing:4.607200pt;}
.ls1{letter-spacing:4.664000pt;}
.ls4e{letter-spacing:4.666200pt;}
.ls9{letter-spacing:4.666267pt;}
.ls4b{letter-spacing:4.834133pt;}
.ls21{letter-spacing:5.106000pt;}
.ls16{letter-spacing:5.332800pt;}
.ls44{letter-spacing:5.520533pt;}
.ls66{letter-spacing:5.922800pt;}
.lsd{letter-spacing:6.001600pt;}
.ls29{letter-spacing:6.150600pt;}
.ls3f{letter-spacing:6.899200pt;}
.ls3c{letter-spacing:7.145600pt;}
.lsa{letter-spacing:7.331200pt;}
.ls2{letter-spacing:8.665067pt;}
.ls8{letter-spacing:8.668933pt;}
.ls40{letter-spacing:11.046933pt;}
.lsc{letter-spacing:11.334400pt;}
.lse{letter-spacing:21.346000pt;}
.ws0{word-spacing:0.000000pt;}
._15{margin-left:-21.565867pt;}
._17{margin-left:-19.044667pt;}
._4{margin-left:-14.848533pt;}
._22{margin-left:-12.132267pt;}
._1a{margin-left:-11.105733pt;}
._1f{margin-left:-9.820800pt;}
._14{margin-left:-8.436267pt;}
._3{margin-left:-6.952000pt;}
._23{margin-left:-5.833200pt;}
._1e{margin-left:-4.106667pt;}
._1b{margin-left:-1.544400pt;}
._e{width:1.221867pt;}
._11{width:2.180400pt;}
._f{width:3.649800pt;}
._c{width:5.078600pt;}
._6{width:6.669067pt;}
._d{width:7.957933pt;}
._9{width:9.464200pt;}
._16{width:10.369333pt;}
._7{width:11.275933pt;}
._1{width:12.601600pt;}
._b{width:14.272667pt;}
._0{width:15.971200pt;}
._8{width:17.632800pt;}
._5{width:19.165400pt;}
._10{width:20.125467pt;}
._a{width:21.061200pt;}
._1c{width:21.969533pt;}
._12{width:23.190933pt;}
._2{width:25.085867pt;}
._18{width:26.197467pt;}
._1d{width:28.303911pt;}
._13{width:29.568000pt;}
._21{width:31.879467pt;}
._19{width:33.906434pt;}
._24{width:35.250200pt;}
._20{width:37.756400pt;}
.fs18{font-size:2.000000pt;}
.fsb{font-size:32.000000pt;}
.fs1a{font-size:43.333333pt;}
.fs15{font-size:46.000000pt;}
.fse{font-size:48.666667pt;}
.fs16{font-size:49.333333pt;}
.fs13{font-size:50.000000pt;}
.fs17{font-size:50.666667pt;}
.fs9{font-size:51.333333pt;}
.fs10{font-size:52.000000pt;}
.fs3{font-size:52.666667pt;}
.fsa{font-size:53.333333pt;}
.fs7{font-size:54.000000pt;}
.fs2{font-size:55.333333pt;}
.fs4{font-size:56.000000pt;}
.fs11{font-size:57.333333pt;}
.fs5{font-size:58.000000pt;}
.fs1{font-size:58.666667pt;}
.fs12{font-size:59.333333pt;}
.fs8{font-size:60.000000pt;}
.fsf{font-size:60.666667pt;}
.fsd{font-size:61.333333pt;}
.fs19{font-size:68.000000pt;}
.fsc{font-size:68.666667pt;}
.fs14{font-size:74.130133pt;}
.fs0{font-size:86.666667pt;}
.fs6{font-size:99.333333pt;}
.ya9{bottom:-5.958000pt;}
.y0{bottom:0.000000pt;}
.ya8{bottom:44.921867pt;}
.y36{bottom:67.641600pt;}
.y6c{bottom:67.648567pt;}
.ya7{bottom:71.801733pt;}
.ya6{bottom:71.805967pt;}
.y35{bottom:82.045900pt;}
.y6b{bottom:82.047567pt;}
.ya5{bottom:86.204967pt;}
.y34{bottom:96.121067pt;}
.y6a{bottom:96.446567pt;}
.ya4{bottom:100.283133pt;}
.y33{bottom:110.196200pt;}
.y69{bottom:110.845567pt;}
.ya3{bottom:114.682600pt;}
.y32{bottom:124.600533pt;}
.y68{bottom:124.923733pt;}
.ya2{bottom:129.081600pt;}
.ya1{bottom:129.081933pt;}
.y31{bottom:139.001433pt;}
.y67{bottom:139.322733pt;}
.ya0{bottom:143.484700pt;}
.y30{bottom:153.563767pt;}
.y66{bottom:153.721733pt;}
.y65{bottom:153.724000pt;}
.y9f{bottom:157.883700pt;}
.y2f{bottom:167.480933pt;}
.y64{bottom:168.123000pt;}
.y9e{bottom:171.962300pt;}
.y2d{bottom:182.196200pt;}
.y2e{bottom:182.201200pt;}
.y63{bottom:182.522000pt;}
.y9d{bottom:186.682133pt;}
.y2c{bottom:196.601900pt;}
.y62{bottom:196.928800pt;}
.y9c{bottom:201.081600pt;}
.y9b{bottom:201.081933pt;}
.y2b{bottom:210.677067pt;}
.y61{bottom:211.327800pt;}
.y9a{bottom:215.480933pt;}
.y99{bottom:215.482867pt;}
.y2a{bottom:225.081400pt;}
.y60{bottom:225.405967pt;}
.y98{bottom:229.875933pt;}
.y28{bottom:239.790400pt;}
.y29{bottom:239.801733pt;}
.y5f{bottom:239.804967pt;}
.y97{bottom:256.440933pt;}
.y5e{bottom:262.840800pt;}
.y5d{bottom:262.842733pt;}
.y27{bottom:266.676733pt;}
.y96{bottom:270.841867pt;}
.y5c{bottom:277.241733pt;}
.y5b{bottom:277.243567pt;}
.y26{bottom:281.076200pt;}
.y5a{bottom:291.321733pt;}
.y24{bottom:295.477000pt;}
.y94{bottom:295.479600pt;}
.y25{bottom:295.480533pt;}
.y95{bottom:295.482000pt;}
.y23{bottom:309.881333pt;}
.y93{bottom:311.480933pt;}
.y59{bottom:317.242133pt;}
.y58{bottom:333.241200pt;}
.y22{bottom:334.840800pt;}
.y21{bottom:334.845200pt;}
.y20{bottom:353.721200pt;}
.y92{bottom:368.120967pt;}
.y57{bottom:374.522000pt;}
.y91{bottom:382.843167pt;}
.y1f{bottom:383.796867pt;}
.y56{bottom:388.921333pt;}
.y55{bottom:388.923733pt;}
.y90{bottom:397.242167pt;}
.y1d{bottom:398.196133pt;}
.y1e{bottom:398.201200pt;}
.y54{bottom:403.643567pt;}
.y8f{bottom:411.962000pt;}
.y8e{bottom:411.962300pt;}
.y1c{bottom:412.600467pt;}
.y53{bottom:417.724767pt;}
.y8d{bottom:426.682133pt;}
.y8c{bottom:426.682600pt;}
.y1b{bottom:427.320800pt;}
.y52{bottom:432.444600pt;}
.y8b{bottom:441.081600pt;}
.y19{bottom:441.711867pt;}
.y1a{bottom:441.721733pt;}
.y51{bottom:446.843600pt;}
.y8a{bottom:455.802200pt;}
.y18{bottom:456.116200pt;}
.y50{bottom:461.242600pt;}
.y89{bottom:470.201200pt;}
.y88{bottom:470.203133pt;}
.y17{bottom:470.520533pt;}
.yc4{bottom:472.120133pt;}
.yc3{bottom:472.121200pt;}
.y4f{bottom:475.641600pt;}
.y87{bottom:484.600967pt;}
.y16{bottom:485.232400pt;}
.yc2{bottom:486.837200pt;}
.y4e{bottom:490.352100pt;}
.y86{bottom:499.320800pt;}
.y15{bottom:499.636733pt;}
.yc1{bottom:501.241200pt;}
.y4d{bottom:504.751100pt;}
.y14{bottom:514.041067pt;}
.y84{bottom:514.196867pt;}
.y85{bottom:514.202133pt;}
.yc0{bottom:515.636000pt;}
.y4c{bottom:518.996100pt;}
.y13{bottom:528.440400pt;}
.y83{bottom:528.441867pt;}
.y82{bottom:528.442333pt;}
.ybe{bottom:530.036933pt;}
.ybf{bottom:530.040000pt;}
.y4b{bottom:533.561933pt;}
.y12{bottom:542.831400pt;}
.y81{bottom:542.841333pt;}
.y80{bottom:542.841767pt;}
.ybd{bottom:544.449333pt;}
.y4a{bottom:547.960933pt;}
.y11{bottom:557.551733pt;}
.y7f{bottom:557.561600pt;}
.ybc{bottom:559.165333pt;}
.y49{bottom:562.361867pt;}
.y48{bottom:562.362200pt;}
.y7e{bottom:571.954967pt;}
.y10{bottom:571.956067pt;}
.ybb{bottom:573.881333pt;}
.yba{bottom:573.885200pt;}
.y47{bottom:576.761200pt;}
.ye{bottom:586.352000pt;}
.yf{bottom:586.360400pt;}
.yb9{bottom:588.601200pt;}
.y46{bottom:591.481933pt;}
.y7d{bottom:598.840800pt;}
.yd{bottom:600.756333pt;}
.yb8{bottom:603.005200pt;}
.y45{bottom:605.882600pt;}
.y7c{bottom:613.563000pt;}
.yb{bottom:615.157267pt;}
.yc{bottom:615.160667pt;}
.yb6{bottom:617.720800pt;}
.yb7{bottom:617.721200pt;}
.y7b{bottom:627.962000pt;}
.y9{bottom:629.558200pt;}
.ya{bottom:629.561600pt;}
.y44{bottom:629.880933pt;}
.y43{bottom:629.882733pt;}
.yb5{bottom:632.436800pt;}
.y8{bottom:644.278533pt;}
.y42{bottom:644.281733pt;}
.y41{bottom:644.282167pt;}
.yb4{bottom:646.840800pt;}
.y79{bottom:658.040133pt;}
.y7a{bottom:658.041067pt;}
.y40{bottom:659.002000pt;}
.yb3{bottom:661.561067pt;}
.yb2{bottom:661.565200pt;}
.y7{bottom:671.796867pt;}
.y78{bottom:674.041467pt;}
.yb1{bottom:676.281200pt;}
.y3f{bottom:683.321067pt;}
.y6{bottom:686.201200pt;}
.yb0{bottom:690.680667pt;}
.y3e{bottom:699.641067pt;}
.y5{bottom:700.921333pt;}
.yaf{bottom:705.400933pt;}
.y77{bottom:719.162033pt;}
.y4{bottom:729.081600pt;}
.y3{bottom:729.084400pt;}
.yae{bottom:732.920933pt;}
.y75{bottom:733.881133pt;}
.y76{bottom:733.881867pt;}
.y3d{bottom:742.202933pt;}
.yad{bottom:747.320267pt;}
.y2{bottom:747.960400pt;}
.y74{bottom:748.600967pt;}
.y3c{bottom:756.601933pt;}
.yac{bottom:761.721200pt;}
.y73{bottom:763.321233pt;}
.y3b{bottom:771.000933pt;}
.y3a{bottom:771.005133pt;}
.y72{bottom:778.041067pt;}
.y71{bottom:778.041367pt;}
.y39{bottom:785.404133pt;}
.yab{bottom:787.320800pt;}
.y1{bottom:791.161600pt;}
.y70{bottom:792.763133pt;}
.y38{bottom:799.803133pt;}
.yaa{bottom:807.160667pt;}
.y6e{bottom:807.161100pt;}
.y6f{bottom:807.162133pt;}
.y37{bottom:814.202133pt;}
.y6d{bottom:821.880933pt;}
.h2c{height:1.961914pt;}
.h14{height:31.406250pt;}
.h34{height:42.825521pt;}
.h18{height:47.763672pt;}
.h27{height:47.976562pt;}
.h29{height:48.417969pt;}
.h23{height:49.072266pt;}
.hd{height:50.380859pt;}
.h26{height:50.385526pt;}
.h25{height:50.401926pt;}
.h28{height:50.404593pt;}
.h22{height:50.404726pt;}
.h19{height:50.419926pt;}
.h1f{height:51.035156pt;}
.h33{height:51.053823pt;}
.h5{height:51.689453pt;}
.h10{height:51.689586pt;}
.ha{height:51.722520pt;}
.h9{height:51.729186pt;}
.h2a{height:52.148438pt;}
.h13{height:52.343750pt;}
.h30{height:52.406250pt;}
.h2b{height:52.843750pt;}
.h17{height:52.971680pt;}
.hb{height:52.998047pt;}
.h1e{height:53.367188pt;}
.h31{height:53.750000pt;}
.hf{height:54.306641pt;}
.h6{height:54.960938pt;}
.h4{height:55.765625pt;}
.h20{height:56.269531pt;}
.h7{height:56.923828pt;}
.h2f{height:57.781250pt;}
.h32{height:58.886719pt;}
.h3{height:59.125000pt;}
.hc{height:60.468750pt;}
.h1a{height:61.140625pt;}
.h21{height:61.882812pt;}
.h1b{height:63.273438pt;}
.h16{height:63.968750pt;}
.h2e{height:67.203125pt;}
.h15{height:67.861979pt;}
.h24{height:72.754672pt;}
.h2{height:90.390625pt;}
.h8{height:103.601562pt;}
.he{height:103.621029pt;}
.h1{height:897.333333pt;}
.h0{height:897.522267pt;}
.h12{height:899.333333pt;}
.h11{height:899.442267pt;}
.h2d{height:902.642267pt;}
.h1d{height:902.666667pt;}
.h1c{height:902.962267pt;}
.w3{width:592.666667pt;}
.w2{width:592.880933pt;}
.w7{width:594.666667pt;}
.w6{width:594.802267pt;}
.w1{width:596.000000pt;}
.w0{width:596.082267pt;}
.w4{width:601.842267pt;}
.w5{width:602.000000pt;}
.x0{left:0.000000pt;}
.x6c{left:30.521067pt;}
.x72{left:31.469600pt;}
.x2{left:32.441467pt;}
.xb{left:33.720633pt;}
.x4f{left:35.000533pt;}
.x5d{left:46.521467pt;}
.xa{left:50.681600pt;}
.x77{left:51.643867pt;}
.x3{left:52.596933pt;}
.xc{left:53.865633pt;}
.x22{left:54.814167pt;}
.x6{left:58.681200pt;}
.x73{left:60.920933pt;}
.x62{left:64.760267pt;}
.x70{left:69.241200pt;}
.x7{left:73.401333pt;}
.x74{left:74.681600pt;}
.x63{left:77.880933pt;}
.x2c{left:85.561067pt;}
.x33{left:86.526067pt;}
.x49{left:87.487333pt;}
.x71{left:94.840800pt;}
.x59{left:96.440400pt;}
.x7d{left:104.120667pt;}
.x2e{left:105.391967pt;}
.x3d{left:106.356967pt;}
.x43{left:107.640667pt;}
.x27{left:109.561067pt;}
.x15{left:110.841333pt;}
.x6d{left:114.680667pt;}
.x5a{left:121.720667pt;}
.x4a{left:123.000933pt;}
.x16{left:123.960533pt;}
.x58{left:126.840400pt;}
.x6f{left:128.760800pt;}
.x81{left:130.681200pt;}
.x31{left:131.961467pt;}
.x8{left:133.561067pt;}
.x23{left:136.121600pt;}
.x6e{left:141.241200pt;}
.x34{left:142.200667pt;}
.x1e{left:145.401333pt;}
.x9{left:146.360800pt;}
.x13{left:147.960533pt;}
.x24{left:149.561600pt;}
.x5b{left:151.480533pt;}
.x32{left:154.041067pt;}
.x88{left:155.640667pt;}
.x3a{left:158.201200pt;}
.x35{left:160.760267pt;}
.x4{left:163.320800pt;}
.x1f{left:165.241200pt;}
.x2d{left:166.840800pt;}
.x3b{left:170.041467pt;}
.x5c{left:171.000933pt;}
.x5{left:176.760800pt;}
.x7a{left:181.240267pt;}
.x1{left:183.160667pt;}
.x5e{left:191.161600pt;}
.x82{left:193.080533pt;}
.x4b{left:194.041467pt;}
.x64{left:199.801333pt;}
.x36{left:210.680667pt;}
.x4c{left:212.601067pt;}
.x37{left:220.600533pt;}
.x6a{left:221.561467pt;}
.x47{left:228.601600pt;}
.x56{left:230.520533pt;}
.x6b{left:235.641600pt;}
.x28{left:241.720667pt;}
.x38{left:244.600533pt;}
.x54{left:246.521067pt;}
.x48{left:248.120667pt;}
.x61{left:249.081600pt;}
.x57{left:251.640667pt;}
.x29{left:254.841333pt;}
.x19{left:257.721200pt;}
.x66{left:259.320800pt;}
.x55{left:260.280267pt;}
.x7b{left:261.881333pt;}
.x39{left:263.480933pt;}
.x7e{left:264.761200pt;}
.x83{left:266.360800pt;}
.x75{left:267.960400pt;}
.x1a{left:270.840400pt;}
.x89{left:271.801333pt;}
.x3f{left:277.880400pt;}
.x2f{left:278.841333pt;}
.x50{left:279.800800pt;}
.x8a{left:285.241200pt;}
.x7c{left:286.200667pt;}
.xd{left:287.161600pt;}
.x2a{left:289.401333pt;}
.x51{left:292.281333pt;}
.x30{left:299.961467pt;}
.xe{left:301.880400pt;}
.x2b{left:303.160667pt;}
.x7f{left:317.240667pt;}
.x1b{left:326.520533pt;}
.x67{left:336.440400pt;}
.x80{left:338.041467pt;}
.x1c{left:339.960533pt;}
.x44{left:347.321333pt;}
.x68{left:349.561067pt;}
.x25{left:355.320800pt;}
.x11{left:357.241200pt;}
.x1d{left:361.080533pt;}
.x84{left:367.801333pt;}
.x12{left:370.681200pt;}
.x26{left:379.641600pt;}
.x45{left:381.881333pt;}
.x40{left:387.641067pt;}
.x85{left:398.201200pt;}
.x20{left:402.680667pt;}
.x21{left:416.120667pt;}
.x86{left:417.720267pt;}
.xf{left:424.440933pt;}
.x46{left:426.680667pt;}
.x69{left:427.960933pt;}
.x41{left:435.000933pt;}
.x10{left:439.161200pt;}
.x52{left:441.400933pt;}
.x65{left:448.121600pt;}
.x53{left:454.521467pt;}
.x78{left:460.921333pt;}
.x17{left:462.521067pt;}
.x5f{left:467.000533pt;}
.x79{left:474.040533pt;}
.x18{left:476.920400pt;}
.x42{left:479.480933pt;}
.x60{left:480.761200pt;}
.x4d{left:487.801333pt;}
.x76{left:496.440933pt;}
.x4e{left:502.200667pt;}
.x14{left:505.080533pt;}
.x3e{left:552.440400pt;}
.x87{left:555.000933pt;}
.x3c{left:555.960533pt;}
}




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