
    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_b29002c0ea0b332064d91a90.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_cf316f54b721f6a327da19d5.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b50f88f4bd820d4e2604f332.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a3d4c74ed26c47db0718adf9.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_68b99809d60ad70f3fac9765.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_080accad49b3d17be0e75751.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4fcf8e33b9042a5063fc9ae1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5d33ef2b641398770faa7a97.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3273939ac27ebe984f0ddc93.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_65d897f1dfe669e0c0492ef7.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_9d86cd373f2e2f51b717c094.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_449b53fa7c2e7d737b274b93.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_650ec3a3318e63d24e008a99.woff2')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_8b171b866b2d6fedb343f2e8.woff2')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_9d86cd373f2e2f51b717c094.woff2')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_6856608bd8c27c84b14b24ff.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_da9653251171d32a8ed71853.woff2')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_17f3c3024df996f2b4c604bb.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_7793f04591dab92b988df393.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_9d86cd373f2e2f51b717c094.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_6d9d4b4ebd855732142bfba1.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_79a0dbef252dc8417d5cbf8e.woff2')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_b51aa0832a7027366b17d233.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_130fff55dcec95bb0b34a75e.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_a57e77423a326f54170a9a58.woff2')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;}
.m4c{transform:matrix(0.003533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.003533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.003533,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.041667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041667,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.179878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179878,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.186869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186869,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.188202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188202,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.193452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193452,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.205056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205056,0.000000,0.000000,0.250000,0,0);}
.m33{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);}
.m24{transform:matrix(0.209770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209770,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m1c{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m34{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);}
.m4b{transform:matrix(0.218391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218391,0.000000,0.000000,0.250000,0,0);}
.m1b{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);}
.m32{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);}
.m4e{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.228495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228495,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.229412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229412,0.000000,0.000000,0.250000,0,0);}
.m2b{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);}
.m35{transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);}
.m43{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);}
.m42{transform:matrix(0.235318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235318,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.235465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235465,0.000000,0.000000,0.250000,0,0);}
.m19{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);}
.m44{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.238235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238235,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.241279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241279,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.m5{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);}
.m3{transform:matrix(0.244118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244118,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.244186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244186,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.244718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244718,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.246951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246951,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.247024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247024,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.247059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247059,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.247191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247191,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);}
.m36{transform:matrix(0.252874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252874,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.252941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252941,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.252976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252976,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m13{transform:matrix(0.255556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255556,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.255682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255682,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.255882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255882,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.255952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255952,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.256024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256024,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.256098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256098,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.258152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258152,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.258427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258427,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.258621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258621,0.000000,0.000000,0.250000,0,0);}
.m20{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);}
.m45{transform:matrix(0.262195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262195,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.264368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264368,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.265244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265244,0.000000,0.000000,0.250000,0,0);}
.m49{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);}
.m4f{transform:matrix(0.266854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266854,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.269022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269022,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.273256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273256,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.275862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275862,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.276163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276163,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.276786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276786,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.278090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278090,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.288235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288235,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.289857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289857,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.290761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290761,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.296512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296512,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.298851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298851,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.310976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310976,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.322368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322368,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.322785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322785,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.337838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337838,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.358553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358553,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.367470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367470,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.370370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370370,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.437000px;}
.v4{vertical-align:2.880600px;}
.v1{vertical-align:4.284000px;}
.v2{vertical-align:5.712000px;}
.v3{vertical-align:7.198200px;}
.ls6c{letter-spacing:-26.422200px;}
.ls9d{letter-spacing:-24.460875px;}
.ls8d{letter-spacing:-19.055250px;}
.ls4f{letter-spacing:-16.115400px;}
.ls4a{letter-spacing:-16.090650px;}
.ls9c{letter-spacing:-14.828250px;}
.ls70{letter-spacing:-12.084300px;}
.ls49{letter-spacing:-10.453500px;}
.ls8c{letter-spacing:-10.376100px;}
.ls54{letter-spacing:-10.256400px;}
.ls6f{letter-spacing:-9.748350px;}
.ls73{letter-spacing:-9.001350px;}
.ls92{letter-spacing:-8.895600px;}
.ls90{letter-spacing:-8.880000px;}
.ls52{letter-spacing:-8.788500px;}
.ls87{letter-spacing:-8.152200px;}
.ls6d{letter-spacing:-7.501125px;}
.ls94{letter-spacing:-7.408800px;}
.ls50{letter-spacing:-7.326900px;}
.ls8b{letter-spacing:-6.671700px;}
.ls55{letter-spacing:-6.395400px;}
.ls6e{letter-spacing:-6.000900px;}
.ls2d{letter-spacing:-5.928750px;}
.ls88{letter-spacing:-5.928300px;}
.ls4e{letter-spacing:-5.859000px;}
.ls89{letter-spacing:-5.852250px;}
.ls85{letter-spacing:-5.622750px;}
.ls67{letter-spacing:-5.247675px;}
.ls8f{letter-spacing:-5.191200px;}
.ls33{letter-spacing:-5.189250px;}
.ls48{letter-spacing:-5.128200px;}
.ls36{letter-spacing:-4.805250px;}
.ls57{letter-spacing:-4.554900px;}
.ls6a{letter-spacing:-4.500675px;}
.ls9a{letter-spacing:-4.449750px;}
.ls91{letter-spacing:-4.447800px;}
.lsa3{letter-spacing:-4.424700px;}
.ls4c{letter-spacing:-4.397400px;}
.ls29{letter-spacing:-3.894075px;}
.ls12{letter-spacing:-3.837750px;}
.ls6b{letter-spacing:-3.747450px;}
.ls80{letter-spacing:-3.704400px;}
.ls34{letter-spacing:-3.703875px;}
.ls45{letter-spacing:-3.660300px;}
.lse{letter-spacing:-3.543225px;}
.ls56{letter-spacing:-3.159000px;}
.ls2b{letter-spacing:-3.072750px;}
.ls65{letter-spacing:-3.000450px;}
.ls81{letter-spacing:-2.967300px;}
.ls2f{letter-spacing:-2.964375px;}
.ls44{letter-spacing:-2.929500px;}
.ls51{letter-spacing:-2.715450px;}
.ls31{letter-spacing:-2.301375px;}
.ls69{letter-spacing:-2.247225px;}
.ls1f{letter-spacing:-2.224875px;}
.ls7f{letter-spacing:-2.223900px;}
.ls25{letter-spacing:-2.200500px;}
.ls42{letter-spacing:-2.198700px;}
.ls83{letter-spacing:-2.180400px;}
.ls24{letter-spacing:-2.042325px;}
.ls10{letter-spacing:-1.537200px;}
.ls32{letter-spacing:-1.536375px;}
.ls5a{letter-spacing:-1.518300px;}
.ls68{letter-spacing:-1.500225px;}
.ls46{letter-spacing:-1.498125px;}
.ls2e{letter-spacing:-1.485375px;}
.ls86{letter-spacing:-1.480500px;}
.ls43{letter-spacing:-1.467900px;}
.lsa0{letter-spacing:-1.466250px;}
.lsf{letter-spacing:-1.462875px;}
.ls47{letter-spacing:-1.448550px;}
.ls93{letter-spacing:-1.415250px;}
.ls37{letter-spacing:-0.994575px;}
.ls11{letter-spacing:-0.780450px;}
.ls13{letter-spacing:-0.774900px;}
.ls2a{letter-spacing:-0.771375px;}
.ls59{letter-spacing:-0.762300px;}
.ls66{letter-spacing:-0.753225px;}
.ls9f{letter-spacing:-0.750375px;}
.ls71{letter-spacing:-0.743850px;}
.ls82{letter-spacing:-0.743400px;}
.ls1e{letter-spacing:-0.739500px;}
.ls96{letter-spacing:-0.731850px;}
.ls41{letter-spacing:-0.730800px;}
.ls9{letter-spacing:-0.705075px;}
.ls28{letter-spacing:-0.693000px;}
.lsd{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.705075px;}
.ls3a{letter-spacing:0.730800px;}
.ls18{letter-spacing:0.739500px;}
.ls76{letter-spacing:0.743400px;}
.ls5d{letter-spacing:0.753225px;}
.ls58{letter-spacing:0.762300px;}
.ls2{letter-spacing:0.771375px;}
.ls99{letter-spacing:0.793350px;}
.ls35{letter-spacing:1.414500px;}
.ls17{letter-spacing:1.415250px;}
.ls20{letter-spacing:1.465200px;}
.ls39{letter-spacing:1.467900px;}
.ls75{letter-spacing:1.480500px;}
.ls19{letter-spacing:1.485375px;}
.lsa1{letter-spacing:1.498125px;}
.ls5c{letter-spacing:1.500225px;}
.lsb{letter-spacing:1.501200px;}
.ls16{letter-spacing:1.519050px;}
.lsc{letter-spacing:1.533600px;}
.ls4{letter-spacing:1.536375px;}
.ls2c{letter-spacing:1.574625px;}
.ls0{letter-spacing:2.124150px;}
.ls8e{letter-spacing:2.146350px;}
.ls38{letter-spacing:2.168775px;}
.ls22{letter-spacing:2.197800px;}
.ls3b{letter-spacing:2.198700px;}
.ls79{letter-spacing:2.223900px;}
.ls1b{letter-spacing:2.224875px;}
.ls5e{letter-spacing:2.247225px;}
.ls6{letter-spacing:2.301375px;}
.ls15{letter-spacing:2.838375px;}
.ls74{letter-spacing:2.903250px;}
.ls3c{letter-spacing:2.929500px;}
.ls21{letter-spacing:2.930400px;}
.ls1a{letter-spacing:2.964375px;}
.ls7b{letter-spacing:2.967300px;}
.ls5b{letter-spacing:3.000450px;}
.ls7{letter-spacing:3.072750px;}
.lsa2{letter-spacing:3.313800px;}
.ls9b{letter-spacing:3.432150px;}
.ls14{letter-spacing:3.544500px;}
.ls3f{letter-spacing:3.660300px;}
.ls1c{letter-spacing:3.703875px;}
.ls7c{letter-spacing:3.704400px;}
.ls60{letter-spacing:3.747450px;}
.ls3{letter-spacing:3.837750px;}
.ls23{letter-spacing:3.880800px;}
.ls8a{letter-spacing:3.987900px;}
.ls95{letter-spacing:4.086375px;}
.ls30{letter-spacing:4.372200px;}
.ls3e{letter-spacing:4.397400px;}
.ls77{letter-spacing:4.447800px;}
.ls63{letter-spacing:4.500675px;}
.ls26{letter-spacing:4.500750px;}
.ls84{letter-spacing:4.572375px;}
.ls8{letter-spacing:4.609125px;}
.ls9e{letter-spacing:4.844700px;}
.lsa{letter-spacing:4.962300px;}
.ls3d{letter-spacing:5.128200px;}
.ls97{letter-spacing:5.189250px;}
.ls78{letter-spacing:5.191200px;}
.ls62{letter-spacing:5.247675px;}
.ls5{letter-spacing:5.374125px;}
.ls72{letter-spacing:5.614950px;}
.ls4d{letter-spacing:6.123600px;}
.ls7a{letter-spacing:6.671700px;}
.ls61{letter-spacing:6.747900px;}
.ls7d{letter-spacing:7.408800px;}
.ls53{letter-spacing:7.998000px;}
.ls27{letter-spacing:8.339400px;}
.ls64{letter-spacing:9.001350px;}
.ls1d{letter-spacing:10.376100px;}
.ls5f{letter-spacing:11.248575px;}
.ls40{letter-spacing:13.185900px;}
.ls98{letter-spacing:13.342875px;}
.ls4b{letter-spacing:19.292550px;}
.ls7e{letter-spacing:48.386250px;}
.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;}
._36{margin-left:-268.181503px;}
._31{margin-left:-77.848245px;}
._34{margin-left:-67.890750px;}
._21{margin-left:-66.845162px;}
._37{margin-left:-42.320291px;}
._18{margin-left:-36.462628px;}
._24{margin-left:-30.904217px;}
._2f{margin-left:-27.422605px;}
._e{margin-left:-25.907824px;}
._29{margin-left:-23.521929px;}
._1f{margin-left:-21.860891px;}
._30{margin-left:-20.310568px;}
._23{margin-left:-17.234348px;}
._33{margin-left:-15.962805px;}
._35{margin-left:-13.639886px;}
._2a{margin-left:-12.624577px;}
._32{margin-left:-10.892981px;}
._c{margin-left:-9.683625px;}
._20{margin-left:-7.788675px;}
._15{margin-left:-6.776625px;}
._17{margin-left:-4.944035px;}
._6{margin-left:-3.754875px;}
._b{margin-left:-1.976250px;}
._2{width:1.160250px;}
._1{width:2.338350px;}
._10{width:3.856951px;}
._8{width:5.241172px;}
._7{width:6.615000px;}
._4{width:7.737975px;}
._0{width:8.853600px;}
._5{width:10.467750px;}
._1d{width:11.516646px;}
._3{width:12.673500px;}
._d{width:14.228078px;}
._1e{width:15.892025px;}
._25{width:16.907627px;}
._12{width:17.952768px;}
._26{width:19.038354px;}
._13{width:20.208750px;}
._22{width:22.131900px;}
._2b{width:23.510805px;}
._2e{width:24.898468px;}
._2c{width:26.234634px;}
._2d{width:27.246925px;}
._27{width:28.690200px;}
._28{width:34.307028px;}
._38{width:36.100073px;}
._39{width:63.216872px;}
._a{width:89.593912px;}
._11{width:272.894625px;}
._14{width:298.063172px;}
._f{width:327.540971px;}
._19{width:388.579081px;}
._1a{width:396.525000px;}
._1c{width:419.526000px;}
._1b{width:447.078750px;}
._16{width:461.256750px;}
._9{width:473.091976px;}
.fc0{color:transparent;}
.fs18{font-size:55.500000px;}
.fs7{font-size:56.250000px;}
.fs11{font-size:57.000000px;}
.fs12{font-size:58.500000px;}
.fs14{font-size:59.250000px;}
.fs10{font-size:60.000000px;}
.fsd{font-size:60.750000px;}
.fs17{font-size:61.022400px;}
.fsa{font-size:61.500000px;}
.fs4{font-size:62.250000px;}
.fs5{font-size:63.000000px;}
.fs15{font-size:63.052200px;}
.fs3{font-size:63.750000px;}
.fs13{font-size:64.078800px;}
.fs6{font-size:64.500000px;}
.fs9{font-size:65.250000px;}
.fsb{font-size:66.000000px;}
.fse{font-size:66.750000px;}
.fsc{font-size:67.500000px;}
.fsf{font-size:69.000000px;}
.fs8{font-size:69.750000px;}
.fs16{font-size:74.250000px;}
.fs0{font-size:89.250000px;}
.fs1{font-size:104.250000px;}
.fs2{font-size:106.500000px;}
.fs1a{font-size:193.500000px;}
.fs19{font-size:203.342400px;}
.y0{bottom:0.000000px;}
.ybb{bottom:83.653425px;}
.ye9{bottom:86.169900px;}
.y83{bottom:86.172900px;}
.y84{bottom:86.177400px;}
.y52{bottom:90.848363px;}
.yba{bottom:99.496050px;}
.y82{bottom:102.017400px;}
.ye8{bottom:102.376650px;}
.y51{bottom:107.056800px;}
.y27{bottom:108.134550px;}
.yb9{bottom:115.695450px;}
.y81{bottom:117.842700px;}
.ye6{bottom:118.209300px;}
.ye7{bottom:118.216800px;}
.y50{bottom:123.256200px;}
.y22{bottom:123.257625px;}
.y26{bottom:123.971100px;}
.yb8{bottom:131.896350px;}
.y80{bottom:134.049450px;}
.ye5{bottom:134.416050px;}
.y4f{bottom:139.470263px;}
.yb7{bottom:147.736500px;}
.y7f{bottom:150.246000px;}
.ye4{bottom:150.251850px;}
.y25{bottom:155.654850px;}
.y4e{bottom:155.662763px;}
.yb6{bottom:163.933275px;}
.y7e{bottom:166.090500px;}
.ye3{bottom:166.096350px;}
.y4d{bottom:171.855263px;}
.y24{bottom:171.855900px;}
.yb4{bottom:179.773425px;}
.yb5{bottom:179.775900px;}
.y7d{bottom:182.297250px;}
.y20{bottom:186.967312px;}
.y21{bottom:186.975750px;}
.y23{bottom:188.059500px;}
.y4c{bottom:188.063700px;}
.yb3{bottom:195.616050px;}
.yb2{bottom:195.616388px;}
.y7c{bottom:198.492150px;}
.ye2{bottom:201.016350px;}
.y4a{bottom:204.254325px;}
.y4b{bottom:204.256200px;}
.yb1{bottom:211.816950px;}
.y7b{bottom:214.332300px;}
.ye1{bottom:217.215600px;}
.y1f{bottom:219.734812px;}
.y49{bottom:220.097437px;}
.yaf{bottom:228.008888px;}
.yb0{bottom:228.016350px;}
.y7a{bottom:230.176800px;}
.y1e{bottom:235.576687px;}
.y48{bottom:236.663400px;}
.yae{bottom:243.851512px;}
.y1d{bottom:251.415600px;}
.y47{bottom:252.855900px;}
.y79{bottom:261.856950px;}
.yad{bottom:265.094325px;}
.ye0{bottom:265.456050px;}
.y10e{bottom:265.807913px;}
.y46{bottom:269.056800px;}
.y78{bottom:278.056350px;}
.yac{bottom:280.936950px;}
.ydf{bottom:281.296200px;}
.y10d{bottom:282.023100px;}
.y1c{bottom:283.456088px;}
.yab{bottom:297.136200px;}
.yde{bottom:297.482250px;}
.y10c{bottom:298.213875px;}
.y1b{bottom:300.015150px;}
.y45{bottom:301.816500px;}
.yaa{bottom:313.335600px;}
.ydd{bottom:313.689000px;}
.y10b{bottom:314.055750px;}
.y1a{bottom:315.496050px;}
.y77{bottom:319.816950px;}
.ya9{bottom:329.175600px;}
.ydc{bottom:329.895750px;}
.y10a{bottom:330.619838px;}
.y44{bottom:333.855900px;}
.y76{bottom:336.369750px;}
.ya8{bottom:345.015750px;}
.ya7{bottom:345.017550px;}
.ydb{bottom:345.919200px;}
.y109{bottom:346.095150px;}
.y19{bottom:348.255600px;}
.y75{bottom:352.576500px;}
.ya6{bottom:361.576050px;}
.yd9{bottom:361.929450px;}
.yda{bottom:361.936950px;}
.y18{bottom:364.095750px;}
.y43{bottom:366.256200px;}
.y74{bottom:368.416650px;}
.ya5{bottom:377.776950px;}
.yd8{bottom:378.136200px;}
.y108{bottom:378.856350px;}
.y73{bottom:384.976950px;}
.ya4{bottom:393.975038px;}
.yd7{bottom:394.335600px;}
.y17{bottom:396.135150px;}
.y72{bottom:401.176200px;}
.y42{bottom:408.018037px;}
.ya3{bottom:410.175600px;}
.yd6{bottom:410.532150px;}
.ye{bottom:411.616050px;}
.yd{bottom:411.626700px;}
.y16{bottom:411.967350px;}
.y71{bottom:416.661000px;}
.y41{bottom:424.576463px;}
.y107{bottom:425.656088px;}
.ya2{bottom:426.372862px;}
.yd5{bottom:426.376200px;}
.y70{bottom:433.576500px;}
.y40{bottom:440.418338px;}
.y106{bottom:442.215150px;}
.ya1{bottom:442.573425px;}
.yd4{bottom:442.929450px;}
.y15{bottom:444.734850px;}
.y6f{bottom:449.777550px;}
.y3f{bottom:456.977400px;}
.ya0{bottom:458.416050px;}
.y105{bottom:458.422950px;}
.yd3{bottom:459.136200px;}
.yc{bottom:460.220137px;}
.y14{bottom:460.935750px;}
.y6d{bottom:465.610200px;}
.y6e{bottom:465.616050px;}
.y3e{bottom:473.183550px;}
.y104{bottom:474.615450px;}
.yd2{bottom:476.055750px;}
.y9f{bottom:481.456050px;}
.y6c{bottom:481.816950px;}
.y3d{bottom:489.376050px;}
.y103{bottom:490.823250px;}
.yd1{bottom:491.895750px;}
.y13{bottom:492.982050px;}
.y9e{bottom:497.655450px;}
.y6a{bottom:498.010500px;}
.y6b{bottom:498.016350px;}
.y102{bottom:507.015750px;}
.yd0{bottom:508.096800px;}
.y12{bottom:509.175150px;}
.y9d{bottom:514.214925px;}
.y69{bottom:514.217250px;}
.y3c{bottom:518.897400px;}
.y101{bottom:522.496650px;}
.ycf{bottom:524.296200px;}
.yb{bottom:524.655450px;}
.y11{bottom:526.100775px;}
.y9c{bottom:530.415487px;}
.y3a{bottom:535.096800px;}
.y3b{bottom:535.816950px;}
.y100{bottom:539.775300px;}
.yce{bottom:540.489750px;}
.y68{bottom:546.616050px;}
.y9b{bottom:546.617700px;}
.ycd{bottom:556.696500px;}
.y10{bottom:558.135150px;}
.y9a{bottom:563.176200px;}
.ya{bottom:573.255150px;}
.ycc{bottom:573.256800px;}
.yf{bottom:574.688550px;}
.y39{bottom:577.223550px;}
.y67{bottom:579.016350px;}
.y99{bottom:579.018000px;}
.yff{bottom:588.737137px;}
.ycb{bottom:589.456050px;}
.y38{bottom:593.416050px;}
.y66{bottom:595.576500px;}
.y98{bottom:595.576875px;}
.yfe{bottom:605.296200px;}
.yfd{bottom:605.302950px;}
.y9{bottom:607.093875px;}
.y65{bottom:611.777550px;}
.y97{bottom:614.656500px;}
.yfc{bottom:621.495450px;}
.y8{bottom:621.854700px;}
.yca{bottom:625.096200px;}
.y37{bottom:625.816350px;}
.y64{bottom:627.976950px;}
.y96{bottom:631.216800px;}
.yfb{bottom:638.055750px;}
.yfa{bottom:638.056987px;}
.y63{bottom:643.816950px;}
.y62{bottom:643.824000px;}
.y95{bottom:647.416050px;}
.yf9{bottom:654.622800px;}
.y7{bottom:655.696537px;}
.y61{bottom:660.369750px;}
.y94{bottom:663.980550px;}
.y36{bottom:669.383550px;}
.y6{bottom:670.456050px;}
.yf8{bottom:670.809000px;}
.yc9{bottom:674.063850px;}
.y60{bottom:676.576500px;}
.y93{bottom:679.823175px;}
.y35{bottom:685.576050px;}
.yf7{bottom:687.368062px;}
.yc8{bottom:690.609600px;}
.y5f{bottom:692.777550px;}
.y92{bottom:696.381675px;}
.yf6{bottom:703.576500px;}
.yf5{bottom:703.583400px;}
.yc7{bottom:706.816350px;}
.y5e{bottom:708.976950px;}
.y91{bottom:712.224300px;}
.y5{bottom:715.095750px;}
.y34{bottom:717.974475px;}
.yf4{bottom:719.785125px;}
.yc6{bottom:723.376650px;}
.y33{bottom:733.816350px;}
.y90{bottom:735.256800px;}
.yf3{bottom:736.344187px;}
.yc5{bottom:739.576050px;}
.yc4{bottom:739.582950px;}
.y5d{bottom:741.377250px;}
.y8f{bottom:751.816950px;}
.yf2{bottom:752.536687px;}
.yc3{bottom:756.136200px;}
.y4{bottom:764.047163px;}
.y32{bottom:767.285700px;}
.y8e{bottom:768.016350px;}
.yf1{bottom:769.095750px;}
.yc2{bottom:772.335600px;}
.y5c{bottom:774.129450px;}
.y3{bottom:780.255600px;}
.y30{bottom:782.775900px;}
.y31{bottom:782.776950px;}
.y8d{bottom:784.217400px;}
.yc1{bottom:788.895900px;}
.y5b{bottom:790.330350px;}
.yf0{bottom:797.175150px;}
.y8c{bottom:800.776387px;}
.yef{bottom:801.675750px;}
.yc0{bottom:805.103850px;}
.y5a{bottom:806.537100px;}
.y2f{bottom:815.894025px;}
.y8b{bottom:816.974325px;}
.ybf{bottom:821.657100px;}
.y59{bottom:823.097400px;}
.yee{bottom:829.211400px;}
.y2{bottom:829.934700px;}
.y2e{bottom:831.017400px;}
.y8a{bottom:832.816950px;}
.y58{bottom:839.296650px;}
.yed{bottom:845.595150px;}
.y89{bottom:849.024338px;}
.y57{bottom:855.497250px;}
.ybe{bottom:857.656500px;}
.y1{bottom:862.335000px;}
.y2d{bottom:864.136200px;}
.y88{bottom:865.582837px;}
.y56{bottom:872.050500px;}
.yec{bottom:873.679950px;}
.y2a{bottom:879.613350px;}
.y2b{bottom:879.617100px;}
.y2c{bottom:880.696500px;}
.y87{bottom:881.783400px;}
.y55{bottom:888.257250px;}
.y54{bottom:904.463550px;}
.y86{bottom:904.815900px;}
.y85{bottom:904.816237px;}
.yeb{bottom:906.256200px;}
.ybd{bottom:906.617100px;}
.y29{bottom:913.098038px;}
.y53{bottom:921.016800px;}
.yea{bottom:922.816350px;}
.ybc{bottom:923.175750px;}
.y28{bottom:928.216800px;}
.hb{height:56.689453px;}
.h4b{height:57.884766px;}
.h3f{height:58.150635px;}
.h2f{height:59.449219px;}
.h24{height:59.622803px;}
.h47{height:59.890148px;}
.h10{height:60.358887px;}
.h30{height:61.013672px;}
.h7{height:61.094971px;}
.h39{height:61.097671px;}
.h3b{height:61.100221px;}
.h40{height:61.104871px;}
.h37{height:61.105471px;}
.h3a{height:61.110121px;}
.h3d{height:61.124821px;}
.h15{height:61.800293px;}
.h8{height:61.831055px;}
.h4a{height:61.832855px;}
.h31{height:61.848455px;}
.h32{height:61.849055px;}
.h28{height:61.854455px;}
.h48{height:61.860455px;}
.h29{height:61.861055px;}
.h33{height:61.871855px;}
.h45{height:61.882286px;}
.h34{height:61.890455px;}
.h1d{height:61.980469px;}
.h38{height:62.261719px;}
.h6{height:62.567139px;}
.h52{height:62.568789px;}
.h21{height:62.569689px;}
.h53{height:62.574039px;}
.h2e{height:62.578125px;}
.h4c{height:62.586339px;}
.h4e{height:62.592339px;}
.h3e{height:62.889838px;}
.h27{height:63.268055px;}
.h9{height:63.303223px;}
.h1e{height:63.360352px;}
.ha{height:63.492188px;}
.h2b{height:64.007446px;}
.hf{height:64.039307px;}
.h2c{height:64.142578px;}
.h1c{height:64.248047px;}
.h3c{height:64.485352px;}
.h17{height:64.775391px;}
.h1f{height:65.003906px;}
.h1a{height:65.435889px;}
.h19{height:65.441139px;}
.h11{height:65.447739px;}
.h44{height:65.478882px;}
.h50{height:65.511475px;}
.h20{height:65.759766px;}
.h23{height:65.967773px;}
.h49{height:66.214600px;}
.h1b{height:66.247559px;}
.h22{height:66.515625px;}
.h18{height:66.884739px;}
.hd{height:66.891339px;}
.h12{height:66.902139px;}
.h2d{height:67.686035px;}
.h43{height:67.719727px;}
.h4f{height:68.027344px;}
.h2a{height:68.191406px;}
.h16{height:68.328339px;}
.he{height:68.455811px;}
.hc{height:69.765339px;}
.h46{height:72.872314px;}
.h2{height:93.084961px;}
.h5{height:98.796961px;}
.h3{height:108.729492px;}
.h4{height:111.076172px;}
.h51{height:201.814453px;}
.h4d{height:212.079769px;}
.h26{height:1008.000000px;}
.h25{height:1008.274050px;}
.h36{height:1009.500000px;}
.h35{height:1009.712550px;}
.h42{height:1010.250000px;}
.h41{height:1010.432550px;}
.h14{height:1011.750000px;}
.h13{height:1011.872550px;}
.h1{height:1013.250000px;}
.h0{height:1013.311050px;}
.w7{width:667.500000px;}
.w6{width:667.711050px;}
.w3{width:668.250000px;}
.w2{width:668.432550px;}
.wb{width:669.000000px;}
.wa{width:669.154050px;}
.w8{width:674.191050px;}
.w9{width:674.250000px;}
.w4{width:674.912550px;}
.w5{width:675.000000px;}
.w0{width:679.952550px;}
.w1{width:680.250000px;}
.x0{left:0.000000px;}
.xd{left:59.182275px;}
.x14{left:60.253125px;}
.x1c{left:61.331400px;}
.x74{left:66.375600px;}
.x6d{left:67.456650px;}
.x7a{left:68.536050px;}
.x83{left:69.617100px;}
.x82{left:70.691100px;}
.x6b{left:72.855300px;}
.x60{left:74.304750px;}
.x56{left:75.383362px;}
.x53{left:76.460325px;}
.x1e{left:77.535450px;}
.x28{left:79.336650px;}
.x72{left:81.495450px;}
.x13{left:83.655900px;}
.x40{left:86.897550px;}
.x6{left:89.056350px;}
.x8b{left:90.496650px;}
.x3c{left:92.655450px;}
.x26{left:93.736500px;}
.x24{left:94.815900px;}
.x61{left:96.256200px;}
.x1a{left:97.335600px;}
.x3d{left:99.496050px;}
.x6e{left:100.936350px;}
.x85{left:102.017400px;}
.x25{left:103.815300px;}
.x5e{left:104.896350px;}
.x15{left:106.336650px;}
.x36{left:107.427225px;}
.x55{left:109.216237px;}
.x29{left:110.655900px;}
.x27{left:113.175600px;}
.x1b{left:114.256800px;}
.x1{left:116.056350px;}
.x30{left:117.855900px;}
.x18{left:118.935300px;}
.x11{left:121.815900px;}
.x6f{left:123.615450px;}
.x21{left:125.775900px;}
.x16{left:127.575450px;}
.x1f{left:135.856350px;}
.x12{left:138.016800px;}
.x22{left:141.975300px;}
.x19{left:143.056350px;}
.x31{left:148.815900px;}
.x90{left:155.297250px;}
.x39{left:158.896350px;}
.x37{left:162.495450px;}
.x5{left:168.616050px;}
.x38{left:178.696500px;}
.x8c{left:183.376650px;}
.x91{left:184.456050px;}
.x57{left:203.536050px;}
.xe{left:204.976350px;}
.x68{left:208.575450px;}
.x92{left:213.616500px;}
.xf{left:217.215600px;}
.x4e{left:220.457100px;}
.x8d{left:222.616050px;}
.x58{left:224.056350px;}
.x4c{left:225.137400px;}
.x4d{left:237.376650px;}
.x4f{left:240.257250px;}
.x52{left:244.576500px;}
.x65{left:246.735300px;}
.x46{left:250.697100px;}
.x7f{left:253.935300px;}
.x2a{left:257.536050px;}
.x43{left:268.336650px;}
.x2b{left:270.136200px;}
.x10{left:271.211325px;}
.x17{left:272.290275px;}
.x1d{left:273.374738px;}
.x86{left:277.697100px;}
.x69{left:282.375600px;}
.x70{left:285.256200px;}
.x44{left:286.337250px;}
.x20{left:288.493725px;}
.x6a{left:296.416050px;}
.x87{left:298.576500px;}
.x4a{left:303.976950px;}
.x7d{left:307.935300px;}
.x2c{left:311.895300px;}
.x2d{left:327.735300px;}
.x5f{left:329.175600px;}
.x7e{left:332.776500px;}
.x2{left:338.536050px;}
.x71{left:343.216200px;}
.x54{left:345.376650px;}
.x88{left:354.016800px;}
.x3{left:369.136800px;}
.x3e{left:371.656500px;}
.x89{left:373.816950px;}
.x7{left:375.255600px;}
.x23{left:382.455600px;}
.x77{left:386.415600px;}
.x75{left:388.216800px;}
.x3f{left:393.615450px;}
.x8{left:395.416650px;}
.x78{left:405.495450px;}
.x9{left:410.895750px;}
.x50{left:411.976950px;}
.x76{left:428.176200px;}
.xa{left:430.336650px;}
.x51{left:431.416050px;}
.x32{left:456.975750px;}
.x2e{left:466.695450px;}
.x66{left:479.295600px;}
.x33{left:481.815300px;}
.x2f{left:487.576500px;}
.x59{left:500.895300px;}
.x5c{left:505.936350px;}
.x63{left:510.616500px;}
.x5a{left:516.016800px;}
.x4{left:519.616050px;}
.x5d{left:521.415600px;}
.x41{left:525.377250px;}
.x7b{left:540.136200px;}
.x34{left:542.296650px;}
.x8e{left:543.737100px;}
.xb{left:549.496650px;}
.x80{left:550.935300px;}
.x79{left:554.536050px;}
.x35{left:555.976350px;}
.x7c{left:557.055750px;}
.x47{left:559.936350px;}
.x8f{left:561.737550px;}
.x45{left:563.896350px;}
.x4b{left:570.376050px;}
.x81{left:573.256800px;}
.x64{left:575.415600px;}
.x49{left:576.857550px;}
.x8a{left:578.296200px;}
.x42{left:580.817550px;}
.x48{left:582.617100px;}
.xc{left:584.416650px;}
.x3a{left:585.855300px;}
.x62{left:586.936350px;}
.x73{left:592.336650px;}
.x67{left:596.296650px;}
.x6c{left:597.735450px;}
.x3b{left:601.336200px;}
.x5b{left:603.855900px;}
.x84{left:676.576500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.277333pt;}
.v4{vertical-align:2.560533pt;}
.v1{vertical-align:3.808000pt;}
.v2{vertical-align:5.077333pt;}
.v3{vertical-align:6.398400pt;}
.ls6c{letter-spacing:-23.486400pt;}
.ls9d{letter-spacing:-21.743000pt;}
.ls8d{letter-spacing:-16.938000pt;}
.ls4f{letter-spacing:-14.324800pt;}
.ls4a{letter-spacing:-14.302800pt;}
.ls9c{letter-spacing:-13.180667pt;}
.ls70{letter-spacing:-10.741600pt;}
.ls49{letter-spacing:-9.292000pt;}
.ls8c{letter-spacing:-9.223200pt;}
.ls54{letter-spacing:-9.116800pt;}
.ls6f{letter-spacing:-8.665200pt;}
.ls73{letter-spacing:-8.001200pt;}
.ls92{letter-spacing:-7.907200pt;}
.ls90{letter-spacing:-7.893333pt;}
.ls52{letter-spacing:-7.812000pt;}
.ls87{letter-spacing:-7.246400pt;}
.ls6d{letter-spacing:-6.667667pt;}
.ls94{letter-spacing:-6.585600pt;}
.ls50{letter-spacing:-6.512800pt;}
.ls8b{letter-spacing:-5.930400pt;}
.ls55{letter-spacing:-5.684800pt;}
.ls6e{letter-spacing:-5.334133pt;}
.ls2d{letter-spacing:-5.270000pt;}
.ls88{letter-spacing:-5.269600pt;}
.ls4e{letter-spacing:-5.208000pt;}
.ls89{letter-spacing:-5.202000pt;}
.ls85{letter-spacing:-4.998000pt;}
.ls67{letter-spacing:-4.664600pt;}
.ls8f{letter-spacing:-4.614400pt;}
.ls33{letter-spacing:-4.612667pt;}
.ls48{letter-spacing:-4.558400pt;}
.ls36{letter-spacing:-4.271333pt;}
.ls57{letter-spacing:-4.048800pt;}
.ls6a{letter-spacing:-4.000600pt;}
.ls9a{letter-spacing:-3.955333pt;}
.ls91{letter-spacing:-3.953600pt;}
.lsa3{letter-spacing:-3.933067pt;}
.ls4c{letter-spacing:-3.908800pt;}
.ls29{letter-spacing:-3.461400pt;}
.ls12{letter-spacing:-3.411333pt;}
.ls6b{letter-spacing:-3.331067pt;}
.ls80{letter-spacing:-3.292800pt;}
.ls34{letter-spacing:-3.292333pt;}
.ls45{letter-spacing:-3.253600pt;}
.lse{letter-spacing:-3.149533pt;}
.ls56{letter-spacing:-2.808000pt;}
.ls2b{letter-spacing:-2.731333pt;}
.ls65{letter-spacing:-2.667067pt;}
.ls81{letter-spacing:-2.637600pt;}
.ls2f{letter-spacing:-2.635000pt;}
.ls44{letter-spacing:-2.604000pt;}
.ls51{letter-spacing:-2.413733pt;}
.ls31{letter-spacing:-2.045667pt;}
.ls69{letter-spacing:-1.997533pt;}
.ls1f{letter-spacing:-1.977667pt;}
.ls7f{letter-spacing:-1.976800pt;}
.ls25{letter-spacing:-1.956000pt;}
.ls42{letter-spacing:-1.954400pt;}
.ls83{letter-spacing:-1.938133pt;}
.ls24{letter-spacing:-1.815400pt;}
.ls10{letter-spacing:-1.366400pt;}
.ls32{letter-spacing:-1.365667pt;}
.ls5a{letter-spacing:-1.349600pt;}
.ls68{letter-spacing:-1.333533pt;}
.ls46{letter-spacing:-1.331667pt;}
.ls2e{letter-spacing:-1.320333pt;}
.ls86{letter-spacing:-1.316000pt;}
.ls43{letter-spacing:-1.304800pt;}
.lsa0{letter-spacing:-1.303333pt;}
.lsf{letter-spacing:-1.300333pt;}
.ls47{letter-spacing:-1.287600pt;}
.ls93{letter-spacing:-1.258000pt;}
.ls37{letter-spacing:-0.884067pt;}
.ls11{letter-spacing:-0.693733pt;}
.ls13{letter-spacing:-0.688800pt;}
.ls2a{letter-spacing:-0.685667pt;}
.ls59{letter-spacing:-0.677600pt;}
.ls66{letter-spacing:-0.669533pt;}
.ls9f{letter-spacing:-0.667000pt;}
.ls71{letter-spacing:-0.661200pt;}
.ls82{letter-spacing:-0.660800pt;}
.ls1e{letter-spacing:-0.657333pt;}
.ls96{letter-spacing:-0.650533pt;}
.ls41{letter-spacing:-0.649600pt;}
.ls9{letter-spacing:-0.626733pt;}
.ls28{letter-spacing:-0.616000pt;}
.lsd{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.626733pt;}
.ls3a{letter-spacing:0.649600pt;}
.ls18{letter-spacing:0.657333pt;}
.ls76{letter-spacing:0.660800pt;}
.ls5d{letter-spacing:0.669533pt;}
.ls58{letter-spacing:0.677600pt;}
.ls2{letter-spacing:0.685667pt;}
.ls99{letter-spacing:0.705200pt;}
.ls35{letter-spacing:1.257333pt;}
.ls17{letter-spacing:1.258000pt;}
.ls20{letter-spacing:1.302400pt;}
.ls39{letter-spacing:1.304800pt;}
.ls75{letter-spacing:1.316000pt;}
.ls19{letter-spacing:1.320333pt;}
.lsa1{letter-spacing:1.331667pt;}
.ls5c{letter-spacing:1.333533pt;}
.lsb{letter-spacing:1.334400pt;}
.ls16{letter-spacing:1.350267pt;}
.lsc{letter-spacing:1.363200pt;}
.ls4{letter-spacing:1.365667pt;}
.ls2c{letter-spacing:1.399667pt;}
.ls0{letter-spacing:1.888133pt;}
.ls8e{letter-spacing:1.907867pt;}
.ls38{letter-spacing:1.927800pt;}
.ls22{letter-spacing:1.953600pt;}
.ls3b{letter-spacing:1.954400pt;}
.ls79{letter-spacing:1.976800pt;}
.ls1b{letter-spacing:1.977667pt;}
.ls5e{letter-spacing:1.997533pt;}
.ls6{letter-spacing:2.045667pt;}
.ls15{letter-spacing:2.523000pt;}
.ls74{letter-spacing:2.580667pt;}
.ls3c{letter-spacing:2.604000pt;}
.ls21{letter-spacing:2.604800pt;}
.ls1a{letter-spacing:2.635000pt;}
.ls7b{letter-spacing:2.637600pt;}
.ls5b{letter-spacing:2.667067pt;}
.ls7{letter-spacing:2.731333pt;}
.lsa2{letter-spacing:2.945600pt;}
.ls9b{letter-spacing:3.050800pt;}
.ls14{letter-spacing:3.150667pt;}
.ls3f{letter-spacing:3.253600pt;}
.ls1c{letter-spacing:3.292333pt;}
.ls7c{letter-spacing:3.292800pt;}
.ls60{letter-spacing:3.331067pt;}
.ls3{letter-spacing:3.411333pt;}
.ls23{letter-spacing:3.449600pt;}
.ls8a{letter-spacing:3.544800pt;}
.ls95{letter-spacing:3.632333pt;}
.ls30{letter-spacing:3.886400pt;}
.ls3e{letter-spacing:3.908800pt;}
.ls77{letter-spacing:3.953600pt;}
.ls63{letter-spacing:4.000600pt;}
.ls26{letter-spacing:4.000667pt;}
.ls84{letter-spacing:4.064333pt;}
.ls8{letter-spacing:4.097000pt;}
.ls9e{letter-spacing:4.306400pt;}
.lsa{letter-spacing:4.410933pt;}
.ls3d{letter-spacing:4.558400pt;}
.ls97{letter-spacing:4.612667pt;}
.ls78{letter-spacing:4.614400pt;}
.ls62{letter-spacing:4.664600pt;}
.ls5{letter-spacing:4.777000pt;}
.ls72{letter-spacing:4.991067pt;}
.ls4d{letter-spacing:5.443200pt;}
.ls7a{letter-spacing:5.930400pt;}
.ls61{letter-spacing:5.998133pt;}
.ls7d{letter-spacing:6.585600pt;}
.ls53{letter-spacing:7.109333pt;}
.ls27{letter-spacing:7.412800pt;}
.ls64{letter-spacing:8.001200pt;}
.ls1d{letter-spacing:9.223200pt;}
.ls5f{letter-spacing:9.998733pt;}
.ls40{letter-spacing:11.720800pt;}
.ls98{letter-spacing:11.860333pt;}
.ls4b{letter-spacing:17.148933pt;}
.ls7e{letter-spacing:43.010000pt;}
.ws0{word-spacing:0.000000pt;}
._36{margin-left:-238.383558pt;}
._31{margin-left:-69.198440pt;}
._34{margin-left:-60.347333pt;}
._21{margin-left:-59.417922pt;}
._37{margin-left:-37.618037pt;}
._18{margin-left:-32.411225pt;}
._24{margin-left:-27.470416pt;}
._2f{margin-left:-24.375649pt;}
._e{margin-left:-23.029177pt;}
._29{margin-left:-20.908381pt;}
._1f{margin-left:-19.431903pt;}
._30{margin-left:-18.053838pt;}
._23{margin-left:-15.319421pt;}
._33{margin-left:-14.189160pt;}
._35{margin-left:-12.124343pt;}
._2a{margin-left:-11.221847pt;}
._32{margin-left:-9.682650pt;}
._c{margin-left:-8.607667pt;}
._20{margin-left:-6.923267pt;}
._15{margin-left:-6.023667pt;}
._17{margin-left:-4.394698pt;}
._6{margin-left:-3.337667pt;}
._b{margin-left:-1.756667pt;}
._2{width:1.031333pt;}
._1{width:2.078533pt;}
._10{width:3.428401pt;}
._8{width:4.658820pt;}
._7{width:5.880000pt;}
._4{width:6.878200pt;}
._0{width:7.869867pt;}
._5{width:9.304667pt;}
._1d{width:10.237019pt;}
._3{width:11.265333pt;}
._d{width:12.647180pt;}
._1e{width:14.126244pt;}
._25{width:15.029002pt;}
._12{width:15.958016pt;}
._26{width:16.922981pt;}
._13{width:17.963333pt;}
._22{width:19.672800pt;}
._2b{width:20.898493pt;}
._2e{width:22.131971pt;}
._2c{width:23.319674pt;}
._2d{width:24.219489pt;}
._27{width:25.502400pt;}
._28{width:30.495136pt;}
._38{width:32.088954pt;}
._39{width:56.192775pt;}
._a{width:79.639033pt;}
._11{width:242.573000pt;}
._14{width:264.945041pt;}
._f{width:291.147530pt;}
._19{width:345.403628pt;}
._1a{width:352.466667pt;}
._1c{width:372.912000pt;}
._1b{width:397.403333pt;}
._16{width:410.006000pt;}
._9{width:420.526201pt;}
.fs18{font-size:49.333333pt;}
.fs7{font-size:50.000000pt;}
.fs11{font-size:50.666667pt;}
.fs12{font-size:52.000000pt;}
.fs14{font-size:52.666667pt;}
.fs10{font-size:53.333333pt;}
.fsd{font-size:54.000000pt;}
.fs17{font-size:54.242133pt;}
.fsa{font-size:54.666667pt;}
.fs4{font-size:55.333333pt;}
.fs5{font-size:56.000000pt;}
.fs15{font-size:56.046400pt;}
.fs3{font-size:56.666667pt;}
.fs13{font-size:56.958933pt;}
.fs6{font-size:57.333333pt;}
.fs9{font-size:58.000000pt;}
.fsb{font-size:58.666667pt;}
.fse{font-size:59.333333pt;}
.fsc{font-size:60.000000pt;}
.fsf{font-size:61.333333pt;}
.fs8{font-size:62.000000pt;}
.fs16{font-size:66.000000pt;}
.fs0{font-size:79.333333pt;}
.fs1{font-size:92.666667pt;}
.fs2{font-size:94.666667pt;}
.fs1a{font-size:172.000000pt;}
.fs19{font-size:180.748800pt;}
.y0{bottom:0.000000pt;}
.ybb{bottom:74.358600pt;}
.ye9{bottom:76.595467pt;}
.y83{bottom:76.598133pt;}
.y84{bottom:76.602133pt;}
.y52{bottom:80.754100pt;}
.yba{bottom:88.440933pt;}
.y82{bottom:90.682133pt;}
.ye8{bottom:91.001467pt;}
.y51{bottom:95.161600pt;}
.y27{bottom:96.119600pt;}
.yb9{bottom:102.840400pt;}
.y81{bottom:104.749067pt;}
.ye6{bottom:105.074933pt;}
.ye7{bottom:105.081600pt;}
.y50{bottom:109.561067pt;}
.y22{bottom:109.562333pt;}
.y26{bottom:110.196533pt;}
.yb8{bottom:117.241200pt;}
.y80{bottom:119.155067pt;}
.ye5{bottom:119.480933pt;}
.y4f{bottom:123.973567pt;}
.yb7{bottom:131.321333pt;}
.y7f{bottom:133.552000pt;}
.ye4{bottom:133.557200pt;}
.y25{bottom:138.359867pt;}
.y4e{bottom:138.366900pt;}
.yb6{bottom:145.718467pt;}
.y7e{bottom:147.636000pt;}
.ye3{bottom:147.641200pt;}
.y4d{bottom:152.760233pt;}
.y24{bottom:152.760800pt;}
.yb4{bottom:159.798600pt;}
.yb5{bottom:159.800800pt;}
.y7d{bottom:162.042000pt;}
.y20{bottom:166.193167pt;}
.y21{bottom:166.200667pt;}
.y23{bottom:167.164000pt;}
.y4c{bottom:167.167733pt;}
.yb3{bottom:173.880933pt;}
.yb2{bottom:173.881233pt;}
.y7c{bottom:176.437467pt;}
.ye2{bottom:178.681200pt;}
.y4a{bottom:181.559400pt;}
.y4b{bottom:181.561067pt;}
.yb1{bottom:188.281733pt;}
.y7b{bottom:190.517600pt;}
.ye1{bottom:193.080533pt;}
.y1f{bottom:195.319833pt;}
.y49{bottom:195.642167pt;}
.yaf{bottom:202.674567pt;}
.yb0{bottom:202.681200pt;}
.y7a{bottom:204.601600pt;}
.y1e{bottom:209.401500pt;}
.y48{bottom:210.367467pt;}
.yae{bottom:216.756900pt;}
.y1d{bottom:223.480533pt;}
.y47{bottom:224.760800pt;}
.y79{bottom:232.761733pt;}
.yad{bottom:235.639400pt;}
.ye0{bottom:235.960933pt;}
.y10e{bottom:236.273700pt;}
.y46{bottom:239.161600pt;}
.y78{bottom:247.161200pt;}
.yac{bottom:249.721733pt;}
.ydf{bottom:250.041067pt;}
.y10d{bottom:250.687200pt;}
.y1c{bottom:251.960967pt;}
.yab{bottom:264.121067pt;}
.yde{bottom:264.428667pt;}
.y10c{bottom:265.079000pt;}
.y1b{bottom:266.680133pt;}
.y45{bottom:268.281333pt;}
.yaa{bottom:278.520533pt;}
.ydd{bottom:278.834667pt;}
.y10b{bottom:279.160667pt;}
.y1a{bottom:280.440933pt;}
.y77{bottom:284.281733pt;}
.ya9{bottom:292.600533pt;}
.ydc{bottom:293.240667pt;}
.y10a{bottom:293.884300pt;}
.y44{bottom:296.760800pt;}
.y76{bottom:298.995333pt;}
.ya8{bottom:306.680667pt;}
.ya7{bottom:306.682267pt;}
.ydb{bottom:307.483733pt;}
.y109{bottom:307.640133pt;}
.y19{bottom:309.560533pt;}
.y75{bottom:313.401333pt;}
.ya6{bottom:321.400933pt;}
.yd9{bottom:321.715067pt;}
.yda{bottom:321.721733pt;}
.y18{bottom:323.640667pt;}
.y43{bottom:325.561067pt;}
.y74{bottom:327.481467pt;}
.ya5{bottom:335.801733pt;}
.yd8{bottom:336.121067pt;}
.y108{bottom:336.761200pt;}
.y73{bottom:342.201733pt;}
.ya4{bottom:350.200033pt;}
.yd7{bottom:350.520533pt;}
.y17{bottom:352.120133pt;}
.y72{bottom:356.601067pt;}
.y42{bottom:362.682700pt;}
.ya3{bottom:364.600533pt;}
.yd6{bottom:364.917467pt;}
.ye{bottom:365.880933pt;}
.yd{bottom:365.890400pt;}
.y16{bottom:366.193200pt;}
.y71{bottom:370.365333pt;}
.y41{bottom:377.401300pt;}
.y107{bottom:378.360967pt;}
.ya2{bottom:378.998100pt;}
.yd5{bottom:379.001067pt;}
.y70{bottom:385.401333pt;}
.y40{bottom:391.482967pt;}
.y106{bottom:393.080133pt;}
.ya1{bottom:393.398600pt;}
.yd4{bottom:393.715067pt;}
.y15{bottom:395.319867pt;}
.y6f{bottom:399.802267pt;}
.y3f{bottom:406.202133pt;}
.ya0{bottom:407.480933pt;}
.y105{bottom:407.487067pt;}
.yd3{bottom:408.121067pt;}
.yc{bottom:409.084567pt;}
.y14{bottom:409.720667pt;}
.y6d{bottom:413.875733pt;}
.y6e{bottom:413.880933pt;}
.y3e{bottom:420.607600pt;}
.y104{bottom:421.880400pt;}
.yd2{bottom:423.160667pt;}
.y9f{bottom:427.960933pt;}
.y6c{bottom:428.281733pt;}
.y3d{bottom:435.000933pt;}
.y103{bottom:436.287333pt;}
.yd1{bottom:437.240667pt;}
.y13{bottom:438.206267pt;}
.y9e{bottom:442.360400pt;}
.y6a{bottom:442.676000pt;}
.y6b{bottom:442.681200pt;}
.y102{bottom:450.680667pt;}
.yd0{bottom:451.641600pt;}
.y12{bottom:452.600133pt;}
.y9d{bottom:457.079933pt;}
.y69{bottom:457.082000pt;}
.y3c{bottom:461.242133pt;}
.y101{bottom:464.441467pt;}
.ycf{bottom:466.041067pt;}
.yb{bottom:466.360400pt;}
.y11{bottom:467.645133pt;}
.y9c{bottom:471.480433pt;}
.y3a{bottom:475.641600pt;}
.y3b{bottom:476.281733pt;}
.y100{bottom:479.800267pt;}
.yce{bottom:480.435333pt;}
.y68{bottom:485.880933pt;}
.y9b{bottom:485.882400pt;}
.ycd{bottom:494.841333pt;}
.y10{bottom:496.120133pt;}
.y9a{bottom:500.601067pt;}
.ya{bottom:509.560133pt;}
.ycc{bottom:509.561600pt;}
.yf{bottom:510.834267pt;}
.y39{bottom:513.087600pt;}
.y67{bottom:514.681200pt;}
.y99{bottom:514.682667pt;}
.yff{bottom:523.321900pt;}
.ycb{bottom:523.960933pt;}
.y38{bottom:527.480933pt;}
.y66{bottom:529.401333pt;}
.y98{bottom:529.401667pt;}
.yfe{bottom:538.041067pt;}
.yfd{bottom:538.047067pt;}
.y9{bottom:539.639000pt;}
.y65{bottom:543.802267pt;}
.y97{bottom:546.361333pt;}
.yfc{bottom:552.440400pt;}
.y8{bottom:552.759733pt;}
.yca{bottom:555.641067pt;}
.y37{bottom:556.281200pt;}
.y64{bottom:558.201733pt;}
.y96{bottom:561.081600pt;}
.yfb{bottom:567.160667pt;}
.yfa{bottom:567.161767pt;}
.y63{bottom:572.281733pt;}
.y62{bottom:572.288000pt;}
.y95{bottom:575.480933pt;}
.yf9{bottom:581.886933pt;}
.y7{bottom:582.841367pt;}
.y61{bottom:586.995333pt;}
.y94{bottom:590.204933pt;}
.y36{bottom:595.007600pt;}
.y6{bottom:595.960933pt;}
.yf8{bottom:596.274667pt;}
.yc9{bottom:599.167867pt;}
.y60{bottom:601.401333pt;}
.y93{bottom:604.287267pt;}
.y35{bottom:609.400933pt;}
.yf7{bottom:610.993833pt;}
.yc8{bottom:613.875200pt;}
.y5f{bottom:615.802267pt;}
.y92{bottom:619.005933pt;}
.yf6{bottom:625.401333pt;}
.yf5{bottom:625.407467pt;}
.yc7{bottom:628.281200pt;}
.y5e{bottom:630.201733pt;}
.y91{bottom:633.088267pt;}
.y5{bottom:635.640667pt;}
.y34{bottom:638.199533pt;}
.yf4{bottom:639.809000pt;}
.yc6{bottom:643.001467pt;}
.y33{bottom:652.281200pt;}
.y90{bottom:653.561600pt;}
.yf3{bottom:654.528167pt;}
.yc5{bottom:657.400933pt;}
.yc4{bottom:657.407067pt;}
.y5d{bottom:659.002000pt;}
.y8f{bottom:668.281733pt;}
.yf2{bottom:668.921500pt;}
.yc3{bottom:672.121067pt;}
.y4{bottom:679.153033pt;}
.y32{bottom:682.031733pt;}
.y8e{bottom:682.681200pt;}
.yf1{bottom:683.640667pt;}
.yc2{bottom:686.520533pt;}
.y5c{bottom:688.115067pt;}
.y3{bottom:693.560533pt;}
.y30{bottom:695.800800pt;}
.y31{bottom:695.801733pt;}
.y8d{bottom:697.082133pt;}
.yc1{bottom:701.240800pt;}
.y5b{bottom:702.515867pt;}
.yf0{bottom:708.600133pt;}
.y8c{bottom:711.801233pt;}
.yef{bottom:712.600667pt;}
.yc0{bottom:715.647867pt;}
.y5a{bottom:716.921867pt;}
.y2f{bottom:725.239133pt;}
.y8b{bottom:726.199400pt;}
.ybf{bottom:730.361867pt;}
.y59{bottom:731.642133pt;}
.yee{bottom:737.076800pt;}
.y2{bottom:737.719733pt;}
.y2e{bottom:738.682133pt;}
.y8a{bottom:740.281733pt;}
.y58{bottom:746.041467pt;}
.yed{bottom:751.640133pt;}
.y89{bottom:754.688300pt;}
.y57{bottom:760.442000pt;}
.ybe{bottom:762.361333pt;}
.y1{bottom:766.520000pt;}
.y2d{bottom:768.121067pt;}
.y88{bottom:769.406967pt;}
.y56{bottom:775.156000pt;}
.yec{bottom:776.604400pt;}
.y2a{bottom:781.878533pt;}
.y2b{bottom:781.881867pt;}
.y2c{bottom:782.841333pt;}
.y87{bottom:783.807467pt;}
.y55{bottom:789.562000pt;}
.y54{bottom:803.967600pt;}
.y86{bottom:804.280800pt;}
.y85{bottom:804.281100pt;}
.yeb{bottom:805.561067pt;}
.ybd{bottom:805.881867pt;}
.y29{bottom:811.642700pt;}
.y53{bottom:818.681600pt;}
.yea{bottom:820.281200pt;}
.ybc{bottom:820.600667pt;}
.y28{bottom:825.081600pt;}
.hb{height:50.390625pt;}
.h4b{height:51.453125pt;}
.h3f{height:51.689453pt;}
.h2f{height:52.843750pt;}
.h24{height:52.998047pt;}
.h47{height:53.235687pt;}
.h10{height:53.652344pt;}
.h30{height:54.234375pt;}
.h7{height:54.306641pt;}
.h39{height:54.309041pt;}
.h3b{height:54.311307pt;}
.h40{height:54.315441pt;}
.h37{height:54.315974pt;}
.h3a{height:54.320107pt;}
.h3d{height:54.333174pt;}
.h15{height:54.933594pt;}
.h8{height:54.960938pt;}
.h4a{height:54.962537pt;}
.h31{height:54.976404pt;}
.h32{height:54.976938pt;}
.h28{height:54.981737pt;}
.h48{height:54.987071pt;}
.h29{height:54.987604pt;}
.h33{height:54.997204pt;}
.h45{height:55.006477pt;}
.h34{height:55.013737pt;}
.h1d{height:55.093750pt;}
.h38{height:55.343750pt;}
.h6{height:55.615234pt;}
.h52{height:55.616701pt;}
.h21{height:55.617501pt;}
.h53{height:55.621368pt;}
.h2e{height:55.625000pt;}
.h4c{height:55.632301pt;}
.h4e{height:55.637634pt;}
.h3e{height:55.902078pt;}
.h27{height:56.238271pt;}
.h9{height:56.269531pt;}
.h1e{height:56.320312pt;}
.ha{height:56.437500pt;}
.h2b{height:56.895508pt;}
.hf{height:56.923828pt;}
.h2c{height:57.015625pt;}
.h1c{height:57.109375pt;}
.h3c{height:57.320313pt;}
.h17{height:57.578125pt;}
.h1f{height:57.781250pt;}
.h1a{height:58.165234pt;}
.h19{height:58.169901pt;}
.h11{height:58.175768pt;}
.h44{height:58.203451pt;}
.h50{height:58.232422pt;}
.h20{height:58.453125pt;}
.h23{height:58.638021pt;}
.h49{height:58.857422pt;}
.h1b{height:58.886719pt;}
.h22{height:59.125000pt;}
.h18{height:59.453101pt;}
.hd{height:59.458968pt;}
.h12{height:59.468568pt;}
.h2d{height:60.165365pt;}
.h43{height:60.195312pt;}
.h4f{height:60.468750pt;}
.h2a{height:60.614583pt;}
.h16{height:60.736301pt;}
.he{height:60.849609pt;}
.hc{height:62.013634pt;}
.h46{height:64.775391pt;}
.h2{height:82.742188pt;}
.h5{height:87.819521pt;}
.h3{height:96.648438pt;}
.h4{height:98.734375pt;}
.h51{height:179.390625pt;}
.h4d{height:188.515350pt;}
.h26{height:896.000000pt;}
.h25{height:896.243600pt;}
.h36{height:897.333333pt;}
.h35{height:897.522267pt;}
.h42{height:898.000000pt;}
.h41{height:898.162267pt;}
.h14{height:899.333333pt;}
.h13{height:899.442267pt;}
.h1{height:900.666667pt;}
.h0{height:900.720933pt;}
.w7{width:593.333333pt;}
.w6{width:593.520933pt;}
.w3{width:594.000000pt;}
.w2{width:594.162267pt;}
.wb{width:594.666667pt;}
.wa{width:594.803600pt;}
.w8{width:599.280933pt;}
.w9{width:599.333333pt;}
.w4{width:599.922267pt;}
.w5{width:600.000000pt;}
.w0{width:604.402267pt;}
.w1{width:604.666667pt;}
.x0{left:0.000000pt;}
.xd{left:52.606467pt;}
.x14{left:53.558333pt;}
.x1c{left:54.516800pt;}
.x74{left:59.000533pt;}
.x6d{left:59.961467pt;}
.x7a{left:60.920933pt;}
.x83{left:61.881867pt;}
.x82{left:62.836533pt;}
.x6b{left:64.760267pt;}
.x60{left:66.048667pt;}
.x56{left:67.007433pt;}
.x53{left:67.964733pt;}
.x1e{left:68.920400pt;}
.x28{left:70.521467pt;}
.x72{left:72.440400pt;}
.x13{left:74.360800pt;}
.x40{left:77.242267pt;}
.x6{left:79.161200pt;}
.x8b{left:80.441467pt;}
.x3c{left:82.360400pt;}
.x26{left:83.321333pt;}
.x24{left:84.280800pt;}
.x61{left:85.561067pt;}
.x1a{left:86.520533pt;}
.x3d{left:88.440933pt;}
.x6e{left:89.721200pt;}
.x85{left:90.682133pt;}
.x25{left:92.280267pt;}
.x5e{left:93.241200pt;}
.x15{left:94.521467pt;}
.x36{left:95.490867pt;}
.x55{left:97.081100pt;}
.x29{left:98.360800pt;}
.x27{left:100.600533pt;}
.x1b{left:101.561600pt;}
.x1{left:103.161200pt;}
.x30{left:104.760800pt;}
.x18{left:105.720267pt;}
.x11{left:108.280800pt;}
.x6f{left:109.880400pt;}
.x21{left:111.800800pt;}
.x16{left:113.400400pt;}
.x1f{left:120.761200pt;}
.x12{left:122.681600pt;}
.x22{left:126.200267pt;}
.x19{left:127.161200pt;}
.x31{left:132.280800pt;}
.x90{left:138.042000pt;}
.x39{left:141.241200pt;}
.x37{left:144.440400pt;}
.x5{left:149.880933pt;}
.x38{left:158.841333pt;}
.x8c{left:163.001467pt;}
.x91{left:163.960933pt;}
.x57{left:180.920933pt;}
.xe{left:182.201200pt;}
.x68{left:185.400400pt;}
.x92{left:189.881333pt;}
.xf{left:193.080533pt;}
.x4e{left:195.961867pt;}
.x8d{left:197.880933pt;}
.x58{left:199.161200pt;}
.x4c{left:200.122133pt;}
.x4d{left:211.001467pt;}
.x4f{left:213.562000pt;}
.x52{left:217.401333pt;}
.x65{left:219.320267pt;}
.x46{left:222.841867pt;}
.x7f{left:225.720267pt;}
.x2a{left:228.920933pt;}
.x43{left:238.521467pt;}
.x2b{left:240.121067pt;}
.x10{left:241.076733pt;}
.x17{left:242.035800pt;}
.x1d{left:242.999767pt;}
.x86{left:246.841867pt;}
.x69{left:251.000533pt;}
.x70{left:253.561067pt;}
.x44{left:254.522000pt;}
.x20{left:256.438867pt;}
.x6a{left:263.480933pt;}
.x87{left:265.401333pt;}
.x4a{left:270.201733pt;}
.x7d{left:273.720267pt;}
.x2c{left:277.240267pt;}
.x2d{left:291.320267pt;}
.x5f{left:292.600533pt;}
.x7e{left:295.801333pt;}
.x2{left:300.920933pt;}
.x71{left:305.081067pt;}
.x54{left:307.001467pt;}
.x88{left:314.681600pt;}
.x3{left:328.121600pt;}
.x3e{left:330.361333pt;}
.x89{left:332.281733pt;}
.x7{left:333.560533pt;}
.x23{left:339.960533pt;}
.x77{left:343.480533pt;}
.x75{left:345.081600pt;}
.x3f{left:349.880400pt;}
.x8{left:351.481467pt;}
.x78{left:360.440400pt;}
.x9{left:365.240667pt;}
.x50{left:366.201733pt;}
.x76{left:380.601067pt;}
.xa{left:382.521467pt;}
.x51{left:383.480933pt;}
.x32{left:406.200667pt;}
.x2e{left:414.840400pt;}
.x66{left:426.040533pt;}
.x33{left:428.280267pt;}
.x2f{left:433.401333pt;}
.x59{left:445.240267pt;}
.x5c{left:449.721200pt;}
.x63{left:453.881333pt;}
.x5a{left:458.681600pt;}
.x4{left:461.880933pt;}
.x5d{left:463.480533pt;}
.x41{left:467.002000pt;}
.x7b{left:480.121067pt;}
.x34{left:482.041467pt;}
.x8e{left:483.321867pt;}
.xb{left:488.441467pt;}
.x80{left:489.720267pt;}
.x79{left:492.920933pt;}
.x35{left:494.201200pt;}
.x7c{left:495.160667pt;}
.x47{left:497.721200pt;}
.x8f{left:499.322267pt;}
.x45{left:501.241200pt;}
.x4b{left:507.000933pt;}
.x81{left:509.561600pt;}
.x64{left:511.480533pt;}
.x49{left:512.762267pt;}
.x8a{left:514.041067pt;}
.x42{left:516.282267pt;}
.x48{left:517.881867pt;}
.xc{left:519.481467pt;}
.x3a{left:520.760267pt;}
.x62{left:521.721200pt;}
.x73{left:526.521467pt;}
.x67{left:530.041467pt;}
.x6c{left:531.320400pt;}
.x3b{left:534.521067pt;}
.x5b{left:536.760800pt;}
.x84{left:601.401333pt;}
}




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