
    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_77b201508580fcff0c5ee35f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_0e78be629a4d4d65d85d714e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d9a17cd030a67c57126318fd.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_827c69a1b42ac7bf73fd63d0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_374273436107873328266e94.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_588458df4b4089a7960c768a.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3f0211ecf6a73e22a1fe59c7.woff2')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_87649fe5c3c2762c42490bff.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_065a30cfb88e4b4e9b0cad09.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_1c3ae0417461056be09cd2bc.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c04dfe7307c9f6224fac1c64.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_fbef0079acdc4e245ff203e4.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_f12e53ef4132347fee96297e.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_2b7bb32eeefd887c6cc839ac.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_69aea10906afe0fac0f52a1c.woff2')format("woff");}.fff{font-family:fff;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;}
.m54{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.134058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134058,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.142857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142857,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.148649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148649,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.155172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155172,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.170588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170588,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.177536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177536,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.184211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184211,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.190678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190678,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.196970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196970,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.203333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203333,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.203947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203947,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.205224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205224,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.208791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208791,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);}
.m73{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);}
.m2b{transform:matrix(0.215190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215190,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);}
.m36{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.217262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217262,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);}
.m50{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);}
.m2f{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.224684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224684,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.225610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225610,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.227778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227778,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.229508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229508,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.231183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231183,0.000000,0.000000,0.250000,0,0);}
.m3d{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);}
.m56{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);}
.m15{transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.233757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233757,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.237013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237013,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.237705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237705,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.238889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238889,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m4a{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);}
.m3f{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);}
.m51{transform:matrix(0.240854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240854,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.240964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240964,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.241052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241052,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.243671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243671,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.244505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244505,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m17{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);}
.m40{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);}
.m71{transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.254167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254167,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);}
.m1d{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);}
.m4f{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);}
.m2c{transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.257246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257246,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,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);}
.m4b{transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.258333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258333,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.258824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258824,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.261029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261029,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.261194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261194,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.261494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261494,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);}
.m31{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);}
.m5d{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);}
.m68{transform:matrix(0.264925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264925,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.266026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266026,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.267647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267647,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.268116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268116,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.268657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268657,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.268939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268939,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.269417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269417,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.269774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269774,0.000000,0.000000,0.250000,0,0);}
.m63{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);}
.m6c{transform:matrix(0.271084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271084,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.272388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272388,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m21{transform:matrix(0.273649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273649,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.m72{transform:matrix(0.275735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275735,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.275974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275974,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.276490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276490,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.289157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289157,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.294118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294118,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.298507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298507,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.328947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328947,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.331731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331731,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.338983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338983,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.385417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385417,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.448718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448718,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-1.428000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.443600px;}
.v2{vertical-align:2.880600px;}
.ls73{letter-spacing:-11.194800px;}
.ls7a{letter-spacing:-11.064375px;}
.ls5d{letter-spacing:-9.750375px;}
.ls1f{letter-spacing:-9.490350px;}
.ls11{letter-spacing:-9.403125px;}
.ls6a{letter-spacing:-9.219375px;}
.ls59{letter-spacing:-8.997075px;}
.ls54{letter-spacing:-8.755200px;}
.lsa4{letter-spacing:-8.619000px;}
.ls6b{letter-spacing:-8.604750px;}
.ls74{letter-spacing:-8.550000px;}
.ls76{letter-spacing:-8.249850px;}
.ls2c{letter-spacing:-7.512900px;}
.ls62{letter-spacing:-7.502625px;}
.ls78{letter-spacing:-7.413000px;}
.ls93{letter-spacing:-7.180800px;}
.lsa8{letter-spacing:-6.846000px;}
.ls5a{letter-spacing:-6.749325px;}
.lsa1{letter-spacing:-6.466800px;}
.ls2f{letter-spacing:-6.304875px;}
.ls1d{letter-spacing:-6.252525px;}
.ls22{letter-spacing:-6.104175px;}
.ls55{letter-spacing:-6.002100px;}
.ls70{letter-spacing:-5.882850px;}
.ls98{letter-spacing:-5.747700px;}
.ls83{letter-spacing:-5.737500px;}
.ls5e{letter-spacing:-5.686200px;}
.ls1c{letter-spacing:-5.562225px;}
.lsa7{letter-spacing:-5.557125px;}
.ls57{letter-spacing:-5.248800px;}
.lsb1{letter-spacing:-5.028600px;}
.ls68{letter-spacing:-4.983750px;}
.ls15{letter-spacing:-4.902375px;}
.ls18{letter-spacing:-4.871925px;}
.ls4e{letter-spacing:-4.501575px;}
.lsa6{letter-spacing:-4.309500px;}
.ls14{letter-spacing:-4.201125px;}
.ls27{letter-spacing:-4.171200px;}
.ls19{letter-spacing:-4.168350px;}
.ls25{letter-spacing:-4.115100px;}
.ls6d{letter-spacing:-4.068000px;}
.ls1e{letter-spacing:-4.065675px;}
.ls4b{letter-spacing:-3.748275px;}
.lsb4{letter-spacing:-3.690000px;}
.ls9d{letter-spacing:-3.590400px;}
.lsa5{letter-spacing:-3.544500px;}
.lsb2{letter-spacing:-3.501750px;}
.ls17{letter-spacing:-3.499875px;}
.ls1b{letter-spacing:-3.478050px;}
.ls3b{letter-spacing:-3.424350px;}
.ls20{letter-spacing:-3.386175px;}
.ls2a{letter-spacing:-3.335775px;}
.ls7d{letter-spacing:-3.102000px;}
.ls4c{letter-spacing:-3.001050px;}
.ls13{letter-spacing:-2.914650px;}
.ls92{letter-spacing:-2.871300px;}
.ls66{letter-spacing:-2.846250px;}
.ls9a{letter-spacing:-2.830500px;}
.ls24{letter-spacing:-2.747700px;}
.ls28{letter-spacing:-2.506275px;}
.ls16{letter-spacing:-2.274300px;}
.ls4d{letter-spacing:-2.247750px;}
.ls35{letter-spacing:-2.218125px;}
.ls7b{letter-spacing:-2.192250px;}
.ls36{letter-spacing:-2.184000px;}
.ls94{letter-spacing:-2.157300px;}
.ls33{letter-spacing:-2.116800px;}
.ls31{letter-spacing:-2.103750px;}
.ls50{letter-spacing:-2.088450px;}
.ls23{letter-spacing:-2.038500px;}
.ls39{letter-spacing:-1.948425px;}
.ls58{letter-spacing:-1.688400px;}
.ls29{letter-spacing:-1.670850px;}
.ls10{letter-spacing:-1.598850px;}
.ls52{letter-spacing:-1.500525px;}
.lsaf{letter-spacing:-1.499400px;}
.ls34{letter-spacing:-1.452750px;}
.ls95{letter-spacing:-1.438200px;}
.lsb0{letter-spacing:-1.427400px;}
.ls97{letter-spacing:-1.415250px;}
.ls37{letter-spacing:-1.402500px;}
.ls56{letter-spacing:-0.843600px;}
.ls26{letter-spacing:-0.835425px;}
.ls2d{letter-spacing:-0.791175px;}
.lsb3{letter-spacing:-0.764025px;}
.lsac{letter-spacing:-0.750600px;}
.ls82{letter-spacing:-0.750375px;}
.ls4f{letter-spacing:-0.747225px;}
.ls2e{letter-spacing:-0.726750px;}
.lsf{letter-spacing:-0.726375px;}
.ls96{letter-spacing:-0.719100px;}
.lsa3{letter-spacing:-0.717750px;}
.ls99{letter-spacing:-0.707625px;}
.ls30{letter-spacing:-0.701250px;}
.lsa9{letter-spacing:-0.693000px;}
.ls1a{letter-spacing:-0.690300px;}
.ls21{letter-spacing:-0.679500px;}
.ls12{letter-spacing:0.000000px;}
.lsab{letter-spacing:0.688425px;}
.lsa2{letter-spacing:0.693000px;}
.lse{letter-spacing:0.701250px;}
.ls8a{letter-spacing:0.707625px;}
.lsad{letter-spacing:0.708525px;}
.ls86{letter-spacing:0.719100px;}
.ls38{letter-spacing:0.726750px;}
.ls9c{letter-spacing:0.740025px;}
.lsae{letter-spacing:0.740250px;}
.ls3c{letter-spacing:0.747225px;}
.ls71{letter-spacing:0.759375px;}
.lsb5{letter-spacing:0.761025px;}
.ls3a{letter-spacing:0.764400px;}
.ls9f{letter-spacing:0.771750px;}
.ls4a{letter-spacing:0.793650px;}
.ls4{letter-spacing:0.835425px;}
.ls2b{letter-spacing:0.848250px;}
.ls32{letter-spacing:0.914550px;}
.ls6e{letter-spacing:1.096500px;}
.lsaa{letter-spacing:1.381950px;}
.lsa0{letter-spacing:1.386000px;}
.lsb{letter-spacing:1.402500px;}
.ls8c{letter-spacing:1.415250px;}
.ls87{letter-spacing:1.438200px;}
.ls0{letter-spacing:1.452750px;}
.ls75{letter-spacing:1.454400px;}
.ls9e{letter-spacing:1.480050px;}
.ls3f{letter-spacing:1.500525px;}
.ls7c{letter-spacing:1.555950px;}
.ls81{letter-spacing:1.563750px;}
.ls7{letter-spacing:1.670850px;}
.ls64{letter-spacing:1.732500px;}
.lsc{letter-spacing:2.103750px;}
.ls89{letter-spacing:2.122875px;}
.ls8d{letter-spacing:2.157300px;}
.ls3d{letter-spacing:2.247750px;}
.ls65{letter-spacing:2.262000px;}
.ls9b{letter-spacing:2.286375px;}
.ls51{letter-spacing:2.380950px;}
.ls8{letter-spacing:2.506275px;}
.ls6f{letter-spacing:2.627100px;}
.ls60{letter-spacing:2.767500px;}
.lsd{letter-spacing:2.805000px;}
.ls88{letter-spacing:2.871300px;}
.ls1{letter-spacing:2.910375px;}
.ls3e{letter-spacing:3.001050px;}
.ls9{letter-spacing:3.335775px;}
.ls5c{letter-spacing:3.429000px;}
.ls8b{letter-spacing:3.544500px;}
.ls90{letter-spacing:3.590400px;}
.ls43{letter-spacing:3.748275px;}
.ls5b{letter-spacing:3.806550px;}
.ls7f{letter-spacing:3.845325px;}
.ls2{letter-spacing:4.171200px;}
.ls7e{letter-spacing:4.325625px;}
.ls41{letter-spacing:4.501575px;}
.ls85{letter-spacing:4.764375px;}
.ls72{letter-spacing:4.987650px;}
.ls3{letter-spacing:5.006625px;}
.ls53{letter-spacing:5.038200px;}
.ls45{letter-spacing:5.248800px;}
.ls61{letter-spacing:5.415525px;}
.ls67{letter-spacing:5.446875px;}
.ls8e{letter-spacing:5.747700px;}
.lsa{letter-spacing:5.842050px;}
.ls44{letter-spacing:6.002100px;}
.ls84{letter-spacing:6.304800px;}
.ls63{letter-spacing:6.339375px;}
.ls91{letter-spacing:6.466800px;}
.ls69{letter-spacing:6.482025px;}
.ls5{letter-spacing:6.677475px;}
.ls46{letter-spacing:6.749325px;}
.ls80{letter-spacing:7.270200px;}
.ls49{letter-spacing:7.502625px;}
.ls6c{letter-spacing:8.148000px;}
.ls42{letter-spacing:8.249850px;}
.ls5f{letter-spacing:9.791100px;}
.ls47{letter-spacing:10.497600px;}
.ls6{letter-spacing:10.848675px;}
.ls40{letter-spacing:11.250900px;}
.ls48{letter-spacing:12.751425px;}
.ls8f{letter-spacing:12.928500px;}
.ls79{letter-spacing:13.434300px;}
.ls77{letter-spacing:27.532350px;}
.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;}
._32{margin-left:-151.743300px;}
._2f{margin-left:-115.534050px;}
._2e{margin-left:-92.097000px;}
._2d{margin-left:-82.740075px;}
._3a{margin-left:-81.551000px;}
._38{margin-left:-78.367800px;}
._27{margin-left:-76.603875px;}
._34{margin-left:-64.945350px;}
._25{margin-left:-60.603829px;}
._36{margin-left:-56.998425px;}
._3b{margin-left:-45.228811px;}
._2a{margin-left:-44.048550px;}
._29{margin-left:-41.583562px;}
._31{margin-left:-39.919800px;}
._39{margin-left:-37.723575px;}
._2b{margin-left:-34.268550px;}
._35{margin-left:-31.751175px;}
._28{margin-left:-30.107175px;}
._26{margin-left:-28.375350px;}
._33{margin-left:-24.448125px;}
._22{margin-left:-21.225900px;}
._12{margin-left:-19.858297px;}
._13{margin-left:-18.685409px;}
._23{margin-left:-16.248787px;}
._15{margin-left:-14.919150px;}
._10{margin-left:-13.263300px;}
._14{margin-left:-11.020500px;}
._1d{margin-left:-9.439906px;}
._4{margin-left:-7.690729px;}
._3{margin-left:-5.708250px;}
._18{margin-left:-4.266000px;}
._2{margin-left:-3.244013px;}
._1{margin-left:-2.190375px;}
._1e{margin-left:-1.106775px;}
._16{width:1.171275px;}
._e{width:2.503650px;}
._b{width:3.608325px;}
._0{width:4.653750px;}
._7{width:6.288900px;}
._f{width:7.986900px;}
._a{width:9.598500px;}
._d{width:10.772554px;}
._1c{width:11.925150px;}
._11{width:13.420125px;}
._8{width:15.349200px;}
._9{width:17.312850px;}
._c{width:18.373275px;}
._17{width:20.062050px;}
._30{width:22.104975px;}
._1b{width:23.415059px;}
._5{width:24.957897px;}
._19{width:26.391975px;}
._1a{width:28.295446px;}
._1f{width:40.923825px;}
._21{width:43.010850px;}
._37{width:56.454300px;}
._2c{width:78.236175px;}
._20{width:92.210700px;}
._24{width:96.181800px;}
._3c{width:165.823054px;}
._3d{width:945.013245px;}
._6{width:1188.786600px;}
.fc0{color:transparent;}
.fs1d{font-size:29.250000px;}
.fs1f{font-size:36.000000px;}
.fs29{font-size:38.250000px;}
.fs26{font-size:39.000000px;}
.fs22{font-size:40.500000px;}
.fs1b{font-size:42.000000px;}
.fs2a{font-size:42.750000px;}
.fs2{font-size:44.250000px;}
.fs2f{font-size:45.000000px;}
.fs3{font-size:45.750000px;}
.fs14{font-size:47.250000px;}
.fs2b{font-size:48.000000px;}
.fs0{font-size:48.750000px;}
.fs1{font-size:49.500000px;}
.fsb{font-size:50.250000px;}
.fs2e{font-size:51.000000px;}
.fs23{font-size:51.750000px;}
.fs2c{font-size:52.115400px;}
.fsa{font-size:52.500000px;}
.fs25{font-size:53.250000px;}
.fs1e{font-size:54.000000px;}
.fs21{font-size:54.750000px;}
.fs1a{font-size:55.500000px;}
.fs24{font-size:56.250000px;}
.fs9{font-size:57.000000px;}
.fs12{font-size:57.750000px;}
.fs11{font-size:58.500000px;}
.fse{font-size:59.250000px;}
.fs10{font-size:60.000000px;}
.fs1c{font-size:60.750000px;}
.fs28{font-size:60.849600px;}
.fsf{font-size:61.500000px;}
.fs17{font-size:62.250000px;}
.fs7{font-size:63.000000px;}
.fs5{font-size:63.750000px;}
.fsd{font-size:64.500000px;}
.fs6{font-size:65.250000px;}
.fs13{font-size:67.500000px;}
.fs19{font-size:68.250000px;}
.fs18{font-size:69.750000px;}
.fs27{font-size:75.000000px;}
.fs15{font-size:75.750000px;}
.fs4{font-size:76.500000px;}
.fs16{font-size:77.250000px;}
.fs2d{font-size:78.000000px;}
.fs20{font-size:87.000000px;}
.fsc{font-size:113.250000px;}
.fs8{font-size:132.750000px;}
.y0{bottom:0.000000px;}
.yed{bottom:67.815900px;}
.yee{bottom:68.175150px;}
.y54{bottom:68.176800px;}
.y55{bottom:69.976350px;}
.y53{bottom:116.776500px;}
.y47{bottom:118.576050px;}
.y88{bottom:119.657100px;}
.y87{bottom:119.662875px;}
.y9b{bottom:129.376650px;}
.y46{bottom:131.176200px;}
.y52{bottom:132.977400px;}
.y86{bottom:136.217250px;}
.y9a{bottom:144.496650px;}
.y45{bottom:147.377250px;}
.y51{bottom:149.177888px;}
.y85{bottom:152.777550px;}
.y99{bottom:159.257250px;}
.y50{bottom:165.736950px;}
.y4f{bottom:165.738188px;}
.y84{bottom:169.697100px;}
.y4e{bottom:182.297250px;}
.y4d{bottom:182.297925px;}
.y83{bottom:186.257250px;}
.y82{bottom:186.263175px;}
.y44{bottom:196.338525px;}
.y4c{bottom:198.856987px;}
.y81{bottom:202.821675px;}
.y43{bottom:212.897587px;}
.y4b{bottom:215.416050px;}
.y80{bottom:219.372038px;}
.y42{bottom:229.456650px;}
.y41{bottom:229.460212px;}
.y7f{bottom:235.577100px;}
.y40{bottom:246.019275px;}
.y4a{bottom:248.177250px;}
.y7e{bottom:252.137400px;}
.y3f{bottom:262.578338px;}
.y7d{bottom:268.695900px;}
.y7c{bottom:269.416050px;}
.y3e{bottom:279.137400px;}
.y7b{bottom:285.256200px;}
.y49{bottom:297.857588px;}
.y7a{bottom:301.822275px;}
.y3d{bottom:312.256200px;}
.y48{bottom:314.416650px;}
.y79{bottom:318.370988px;}
.y78{bottom:334.576050px;}
.y77{bottom:367.337250px;}
.y3c{bottom:401.885325px;}
.y3b{bottom:417.008888px;}
.y76{bottom:420.256200px;}
.yec{bottom:428.176200px;}
.y3a{bottom:431.776950px;}
.y75{bottom:437.177400px;}
.y74{bottom:437.183175px;}
.yeb{bottom:441.855900px;}
.y27{bottom:447.247050px;}
.y73{bottom:453.737550px;}
.yea{bottom:455.176200px;}
.y26{bottom:462.370612px;}
.y39{bottom:462.376050px;}
.ye9{bottom:468.854700px;}
.y72{bottom:470.657100px;}
.y98{bottom:471.016350px;}
.ye7{bottom:472.095750px;}
.y38{bottom:477.492487px;}
.y25{bottom:477.849675px;}
.ye8{bottom:482.535450px;}
.y71{bottom:487.217250px;}
.y70{bottom:487.223175px;}
.y97{bottom:487.937400px;}
.y37{bottom:492.614175px;}
.y24{bottom:492.973237px;}
.ye6{bottom:496.212900px;}
.y6f{bottom:503.777550px;}
.y6e{bottom:503.778225px;}
.y96{bottom:504.501975px;}
.y36{bottom:508.093237px;}
.y22{bottom:508.093275px;}
.y23{bottom:508.096800px;}
.ye5{bottom:509.715150px;}
.y6d{bottom:520.697100px;}
.y6c{bottom:520.697625px;}
.y95{bottom:521.056350px;}
.y35{bottom:523.216800px;}
.y21{bottom:523.572337px;}
.ye4{bottom:523.935300px;}
.ye3{bottom:528.256200px;}
.ye2{bottom:537.254550px;}
.y6b{bottom:537.263175px;}
.y94{bottom:537.977400px;}
.y34{bottom:538.336650px;}
.y1f{bottom:538.679625px;}
.y20{bottom:538.695900px;}
.ye0{bottom:544.814700px;}
.ye1{bottom:550.935300px;}
.y33{bottom:553.458337px;}
.y1e{bottom:553.803187px;}
.y6a{bottom:553.817550px;}
.y93{bottom:554.536050px;}
.yde{bottom:561.735900px;}
.ydf{bottom:564.614850px;}
.y1d{bottom:568.926750px;}
.y32{bottom:568.930275px;}
.y69{bottom:570.736950px;}
.y68{bottom:570.742875px;}
.y92{bottom:571.096200px;}
.ydd{bottom:578.296200px;}
.y1c{bottom:584.050312px;}
.y31{bottom:584.053837px;}
.y67{bottom:587.297250px;}
.y91{bottom:587.656500px;}
.ydc{bottom:591.975750px;}
.ydb{bottom:595.215600px;}
.y30{bottom:599.173687px;}
.y1b{bottom:599.173875px;}
.y66{bottom:603.857550px;}
.y90{bottom:604.576050px;}
.yda{bottom:605.655450px;}
.yd9{bottom:611.775900px;}
.y2f{bottom:614.297250px;}
.y1a{bottom:614.652937px;}
.yd8{bottom:619.335000px;}
.y65{bottom:620.418375px;}
.y8f{bottom:621.136200px;}
.yd7{bottom:629.415600px;}
.y2e{bottom:629.417250px;}
.y19{bottom:629.772788px;}
.yd6{bottom:630.135750px;}
.y64{bottom:637.337250px;}
.y8e{bottom:638.057400px;}
.y2d{bottom:644.537288px;}
.y18{bottom:644.896350px;}
.yd4{bottom:645.255600px;}
.yd5{bottom:646.695900px;}
.y63{bottom:654.262575px;}
.y8d{bottom:654.976950px;}
.y2c{bottom:660.012637px;}
.y17{bottom:660.018037px;}
.yd3{bottom:660.375600px;}
.yd2{bottom:662.175150px;}
.y62{bottom:670.816950px;}
.y8c{bottom:671.537100px;}
.yd1{bottom:673.695900px;}
.y2b{bottom:675.122550px;}
.y15{bottom:675.486263px;}
.y16{bottom:675.497100px;}
.ycf{bottom:678.376050px;}
.yd0{bottom:678.735450px;}
.yce{bottom:687.734850px;}
.y61{bottom:687.736500px;}
.y8b{bottom:688.462425px;}
.y2a{bottom:690.246112px;}
.y14{bottom:690.609825px;}
.ycc{bottom:695.654850px;}
.ycd{bottom:701.416050px;}
.y60{bottom:704.655900px;}
.y5f{bottom:704.661825px;}
.y8a{bottom:705.016800px;}
.y29{bottom:705.369675px;}
.y13{bottom:705.733387px;}
.yca{bottom:712.215150px;}
.ycb{bottom:715.095750px;}
.y28{bottom:720.848737px;}
.y12{bottom:720.856950px;}
.y5e{bottom:721.216200px;}
.y89{bottom:721.936350px;}
.yc9{bottom:728.775300px;}
.yc8{bottom:742.455000px;}
.yc7{bottom:745.694850px;}
.y11{bottom:751.456050px;}
.yc6{bottom:756.136200px;}
.yc4{bottom:762.255150px;}
.yc5{bottom:769.815900px;}
.yc2{bottom:779.176200px;}
.yc3{bottom:783.495450px;}
.y5c{bottom:787.457250px;}
.y5d{bottom:788.177400px;}
.yc0{bottom:795.734850px;}
.yc1{bottom:796.995450px;}
.y5a{bottom:802.936350px;}
.y5b{bottom:803.656500px;}
.ybf{bottom:810.854700px;}
.ybe{bottom:812.655900px;}
.y58{bottom:818.056350px;}
.y59{bottom:818.417250px;}
.ybd{bottom:824.536050px;}
.ybc{bottom:829.216200px;}
.y56{bottom:833.537100px;}
.y57{bottom:833.896350px;}
.ybb{bottom:838.214550px;}
.yb9{bottom:845.774850px;}
.yba{bottom:851.895300px;}
.yb7{bottom:863.055150px;}
.yb8{bottom:865.574850px;}
.y10{bottom:866.290050px;}
.yb6{bottom:879.615450px;}
.yb5{bottom:893.295000px;}
.yf{bottom:894.376050px;}
.ye{bottom:894.381937px;}
.yb4{bottom:896.534850px;}
.yb3{bottom:906.615450px;}
.yd{bottom:907.337250px;}
.yb1{bottom:909.135150px;}
.yb2{bottom:913.095150px;}
.yb{bottom:920.296650px;}
.yb0{bottom:920.654850px;}
.yae{bottom:930.016350px;}
.ya{bottom:933.256200px;}
.yaf{bottom:934.335600px;}
.yc{bottom:937.577100px;}
.y9{bottom:946.217250px;}
.yac{bottom:946.935750px;}
.yad{bottom:948.735300px;}
.y7{bottom:959.176800px;}
.yab{bottom:962.055750px;}
.y6{bottom:963.136800px;}
.yaa{bottom:963.496050px;}
.y8{bottom:974.296650px;}
.ya9{bottom:976.455450px;}
.ya8{bottom:989.055750px;}
.ya7{bottom:989.415000px;}
.y4{bottom:993.735900px;}
.ya6{bottom:996.975750px;}
.ya5{bottom:1003.095150px;}
.y3{bottom:1008.857550px;}
.y5{bottom:1011.016350px;}
.ya3{bottom:1013.895300px;}
.ya4{bottom:1016.775900px;}
.y2{bottom:1024.336650px;}
.ya2{bottom:1030.455450px;}
.ya1{bottom:1044.135150px;}
.ya0{bottom:1047.375000px;}
.y9f{bottom:1057.810200px;}
.y9e{bottom:1071.490950px;}
.y9c{bottom:1080.495450px;}
.y1{bottom:1081.937400px;}
.y9d{bottom:1084.814700px;}
.h2c{height:28.707275px;}
.h2e{height:35.332031px;}
.h43{height:37.540283px;}
.h3a{height:38.276367px;}
.h35{height:39.748535px;}
.h4a{height:41.220703px;}
.h45{height:41.956787px;}
.h49{height:43.428955px;}
.h27{height:43.804688px;}
.h55{height:44.165039px;}
.h25{height:44.901123px;}
.h4{height:46.151367px;}
.h1e{height:46.373291px;}
.h5{height:47.715820px;}
.h2{height:47.845459px;}
.h3{height:48.581543px;}
.h1d{height:49.293091px;}
.h59{height:49.317627px;}
.h53{height:50.053711px;}
.h56{height:50.057911px;}
.h5a{height:50.058511px;}
.h48{height:50.062500px;}
.h54{height:50.071711px;}
.h57{height:50.789795px;}
.h4c{height:51.148415px;}
.hc{height:51.525879px;}
.h38{height:52.261963px;}
.hd{height:52.409180px;}
.h2d{height:52.998047px;}
.h34{height:53.734131px;}
.h36{height:53.973633px;}
.h26{height:54.443115px;}
.h2f{height:54.470215px;}
.h5b{height:55.177734px;}
.h37{height:55.206299px;}
.h18{height:55.914551px;}
.h2a{height:55.933594px;}
.h44{height:55.942383px;}
.h16{height:56.650269px;}
.h47{height:56.678467px;}
.h14{height:57.385986px;}
.h39{height:57.414551px;}
.h10{height:58.121704px;}
.h19{height:58.129204px;}
.h1a{height:58.135954px;}
.h12{height:58.136554px;}
.h17{height:58.150204px;}
.h31{height:58.150635px;}
.h15{height:58.176304px;}
.h1b{height:58.201172px;}
.h3b{height:58.666992px;}
.h13{height:58.857422px;}
.h3e{height:58.886719px;}
.h3f{height:59.296875px;}
.hb{height:59.449219px;}
.h2b{height:59.622803px;}
.h46{height:59.638853px;}
.h42{height:59.645453px;}
.h4e{height:59.712891px;}
.h41{height:59.720555px;}
.h11{height:60.328857px;}
.h22{height:60.358887px;}
.h3c{height:61.036103px;}
.h30{height:61.066403px;}
.h21{height:61.094971px;}
.h4b{height:61.795898px;}
.h4f{height:61.800293px;}
.h9{height:61.831055px;}
.h33{height:62.503403px;}
.h7{height:62.567139px;}
.h4d{height:62.578125px;}
.h3d{height:62.736328px;}
.h58{height:63.303223px;}
.h8{height:64.039307px;}
.hf{height:65.003906px;}
.h1c{height:66.247559px;}
.h24{height:66.983643px;}
.h23{height:68.455811px;}
.h40{height:75.585938px;}
.h1f{height:76.341797px;}
.h6{height:77.097656px;}
.h20{height:77.853516px;}
.h52{height:78.609375px;}
.h32{height:85.385742px;}
.he{height:114.134766px;}
.ha{height:133.787109px;}
.h50{height:1183.231050px;}
.h51{height:1183.500000px;}
.h1{height:1185.750000px;}
.h0{height:1185.752550px;}
.h29{height:1189.500000px;}
.h28{height:1189.712550px;}
.w4{width:871.472235px;}
.w5{width:871.500000px;}
.w0{width:875.791050px;}
.w1{width:876.000000px;}
.w2{width:878.672550px;}
.w3{width:879.000000px;}
.x0{left:0.000000px;}
.x16{left:63.840487px;}
.x7{left:65.296200px;}
.x1{left:66.375600px;}
.xb5{left:72.136785px;}
.x31{left:75.015750px;}
.x57{left:76.096163px;}
.x8{left:78.255600px;}
.xf{left:79.336650px;}
.x8d{left:81.497085px;}
.xc{left:84.016800px;}
.x20{left:85.816350px;}
.xb6{left:86.895885px;}
.x5c{left:90.496650px;}
.xb7{left:93.377235px;}
.x9{left:95.176800px;}
.x66{left:96.256200px;}
.x99{left:98.416635px;}
.xa8{left:100.216185px;}
.x40{left:102.735900px;}
.x32{left:105.616500px;}
.xa{left:106.695900px;}
.xaa{left:107.776935px;}
.x4c{left:109.215600px;}
.x33{left:112.455600px;}
.x21{left:115.336200px;}
.x69{left:119.296200px;}
.x2e{left:123.256200px;}
.x68{left:127.936350px;}
.x97{left:129.735885px;}
.x2{left:134.775300px;}
.x10{left:135.856350px;}
.x98{left:141.256785px;}
.x11{left:147.375600px;}
.x12{left:151.696500px;}
.x3{left:153.136800px;}
.x9a{left:157.456035px;}
.x13{left:165.016800px;}
.x4{left:167.175600px;}
.x5e{left:176.536050px;}
.x9b{left:179.416635px;}
.x63{left:180.855300px;}
.x71{left:185.535450px;}
.x7a{left:193.096200px;}
.x8e{left:198.496635px;}
.x5f{left:200.655450px;}
.x72{left:207.136800px;}
.x7b{left:209.295600px;}
.x94{left:212.896335px;}
.x61{left:216.136200px;}
.x5{left:217.576500px;}
.x8f{left:218.655885px;}
.x5a{left:221.536500px;}
.x60{left:222.975300px;}
.x77{left:225.496650px;}
.x7c{left:226.935300px;}
.x6a{left:228.016350px;}
.x1f{left:229.815900px;}
.x95{left:233.057385px;}
.x5b{left:234.136800px;}
.xd{left:238.815300px;}
.x6b{left:243.136200px;}
.x4d{left:244.215600px;}
.x5d{left:246.735300px;}
.xe{left:248.536500px;}
.x62{left:250.336200px;}
.x78{left:259.335600px;}
.x4e{left:261.855300px;}
.x75{left:263.295600px;}
.x67{left:264.735900px;}
.x64{left:267.975750px;}
.x14{left:274.816500px;}
.x41{left:277.336200px;}
.x76{left:278.776500px;}
.x42{left:288.855300px;}
.x15{left:292.456050px;}
.x9c{left:298.937385px;}
.x9d{left:320.896335px;}
.x4f{left:323.416050px;}
.x79{left:326.296650px;}
.x73{left:328.096200px;}
.x6c{left:331.336200px;}
.x50{left:334.576050px;}
.x3b{left:337.815900px;}
.x58{left:339.615450px;}
.x34{left:341.416650px;}
.x74{left:343.936350px;}
.x6d{left:347.535450px;}
.xb{left:348.616500px;}
.x35{left:351.136200px;}
.x9e{left:354.376035px;}
.x51{left:357.975300px;}
.xab{left:367.337235px;}
.x70{left:375.255600px;}
.x9f{left:376.336635px;}
.x6e{left:378.495450px;}
.x22{left:379.935750px;}
.x52{left:381.735450px;}
.x59{left:382.816350px;}
.xb1{left:384.616035px;}
.xa0{left:389.657085px;}
.x6f{left:390.736500px;}
.x96{left:396.496035px;}
.xb2{left:397.577085px;}
.x65{left:399.376650px;}
.x3c{left:401.176200px;}
.xa6{left:412.336185px;}
.x3d{left:415.576050px;}
.x1a{left:444.730500px;}
.x18{left:445.802738px;}
.xa9{left:447.256185px;}
.x8b{left:453.017385px;}
.x2f{left:455.176200px;}
.x7f{left:456.263062px;}
.x19{left:457.690800px;}
.x17{left:459.128550px;}
.x8c{left:467.772360px;}
.x1b{left:472.095750px;}
.xa1{left:481.816935px;}
.x1e{left:484.336650px;}
.x36{left:487.576500px;}
.x43{left:491.895750px;}
.x23{left:503.416650px;}
.x81{left:504.855300px;}
.x26{left:508.456050px;}
.x44{left:509.896350px;}
.x1c{left:517.455600px;}
.x24{left:519.616050px;}
.x45{left:523.935300px;}
.x1d{left:528.256200px;}
.x27{left:530.775900px;}
.x84{left:531.855300px;}
.x2c{left:534.015750px;}
.x25{left:535.096800px;}
.x28{left:542.296650px;}
.x85{left:552.375600px;}
.x29{left:554.176800px;}
.xa2{left:561.376635px;}
.x2d{left:564.255600px;}
.x46{left:572.175600px;}
.xac{left:574.697085px;}
.x2a{left:577.576050px;}
.x80{left:579.375600px;}
.x47{left:586.575450px;}
.x2b{left:590.535450px;}
.x82{left:593.416050px;}
.x87{left:600.616050px;}
.x83{left:610.696500px;}
.x88{left:614.656500px;}
.xa3{left:618.977385px;}
.x48{left:625.096200px;}
.x49{left:636.615450px;}
.x53{left:649.935750px;}
.xb3{left:657.137385px;}
.x86{left:658.216800px;}
.x90{left:659.296185px;}
.x54{left:661.095750px;}
.x37{left:666.855300px;}
.xb4{left:674.056785px;}
.x7d{left:676.576500px;}
.x6{left:682.695450px;}
.x55{left:684.496650px;}
.x38{left:686.296200px;}
.xad{left:687.736485px;}
.x7e{left:689.536050px;}
.xa4{left:706.096335px;}
.x56{left:708.256800px;}
.xa7{left:709.336185px;}
.x89{left:713.655450px;}
.x91{left:717.617085px;}
.x4a{left:720.496050px;}
.x4b{left:731.296650px;}
.xae{left:733.096335px;}
.x8a{left:735.616050px;}
.x39{left:739.576050px;}
.x92{left:741.377235px;}
.x3a{left:751.456050px;}
.xaf{left:762.976935px;}
.xa5{left:764.417235px;}
.x93{left:777.735885px;}
.x30{left:779.176200px;}
.xb0{left:783.497085px;}
.x3e{left:784.935750px;}
.x3f{left:797.176800px;}
@media print{
.v3{vertical-align:-1.269333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.283200pt;}
.v2{vertical-align:2.560533pt;}
.ls73{letter-spacing:-9.950933pt;}
.ls7a{letter-spacing:-9.835000pt;}
.ls5d{letter-spacing:-8.667000pt;}
.ls1f{letter-spacing:-8.435867pt;}
.ls11{letter-spacing:-8.358333pt;}
.ls6a{letter-spacing:-8.195000pt;}
.ls59{letter-spacing:-7.997400pt;}
.ls54{letter-spacing:-7.782400pt;}
.lsa4{letter-spacing:-7.661333pt;}
.ls6b{letter-spacing:-7.648667pt;}
.ls74{letter-spacing:-7.600000pt;}
.ls76{letter-spacing:-7.333200pt;}
.ls2c{letter-spacing:-6.678133pt;}
.ls62{letter-spacing:-6.669000pt;}
.ls78{letter-spacing:-6.589333pt;}
.ls93{letter-spacing:-6.382933pt;}
.lsa8{letter-spacing:-6.085333pt;}
.ls5a{letter-spacing:-5.999400pt;}
.lsa1{letter-spacing:-5.748267pt;}
.ls2f{letter-spacing:-5.604333pt;}
.ls1d{letter-spacing:-5.557800pt;}
.ls22{letter-spacing:-5.425933pt;}
.ls55{letter-spacing:-5.335200pt;}
.ls70{letter-spacing:-5.229200pt;}
.ls98{letter-spacing:-5.109067pt;}
.ls83{letter-spacing:-5.100000pt;}
.ls5e{letter-spacing:-5.054400pt;}
.ls1c{letter-spacing:-4.944200pt;}
.lsa7{letter-spacing:-4.939667pt;}
.ls57{letter-spacing:-4.665600pt;}
.lsb1{letter-spacing:-4.469867pt;}
.ls68{letter-spacing:-4.430000pt;}
.ls15{letter-spacing:-4.357667pt;}
.ls18{letter-spacing:-4.330600pt;}
.ls4e{letter-spacing:-4.001400pt;}
.lsa6{letter-spacing:-3.830667pt;}
.ls14{letter-spacing:-3.734333pt;}
.ls27{letter-spacing:-3.707733pt;}
.ls19{letter-spacing:-3.705200pt;}
.ls25{letter-spacing:-3.657867pt;}
.ls6d{letter-spacing:-3.616000pt;}
.ls1e{letter-spacing:-3.613933pt;}
.ls4b{letter-spacing:-3.331800pt;}
.lsb4{letter-spacing:-3.280000pt;}
.ls9d{letter-spacing:-3.191467pt;}
.lsa5{letter-spacing:-3.150667pt;}
.lsb2{letter-spacing:-3.112667pt;}
.ls17{letter-spacing:-3.111000pt;}
.ls1b{letter-spacing:-3.091600pt;}
.ls3b{letter-spacing:-3.043867pt;}
.ls20{letter-spacing:-3.009933pt;}
.ls2a{letter-spacing:-2.965133pt;}
.ls7d{letter-spacing:-2.757333pt;}
.ls4c{letter-spacing:-2.667600pt;}
.ls13{letter-spacing:-2.590800pt;}
.ls92{letter-spacing:-2.552267pt;}
.ls66{letter-spacing:-2.530000pt;}
.ls9a{letter-spacing:-2.516000pt;}
.ls24{letter-spacing:-2.442400pt;}
.ls28{letter-spacing:-2.227800pt;}
.ls16{letter-spacing:-2.021600pt;}
.ls4d{letter-spacing:-1.998000pt;}
.ls35{letter-spacing:-1.971667pt;}
.ls7b{letter-spacing:-1.948667pt;}
.ls36{letter-spacing:-1.941333pt;}
.ls94{letter-spacing:-1.917600pt;}
.ls33{letter-spacing:-1.881600pt;}
.ls31{letter-spacing:-1.870000pt;}
.ls50{letter-spacing:-1.856400pt;}
.ls23{letter-spacing:-1.812000pt;}
.ls39{letter-spacing:-1.731933pt;}
.ls58{letter-spacing:-1.500800pt;}
.ls29{letter-spacing:-1.485200pt;}
.ls10{letter-spacing:-1.421200pt;}
.ls52{letter-spacing:-1.333800pt;}
.lsaf{letter-spacing:-1.332800pt;}
.ls34{letter-spacing:-1.291333pt;}
.ls95{letter-spacing:-1.278400pt;}
.lsb0{letter-spacing:-1.268800pt;}
.ls97{letter-spacing:-1.258000pt;}
.ls37{letter-spacing:-1.246667pt;}
.ls56{letter-spacing:-0.749867pt;}
.ls26{letter-spacing:-0.742600pt;}
.ls2d{letter-spacing:-0.703267pt;}
.lsb3{letter-spacing:-0.679133pt;}
.lsac{letter-spacing:-0.667200pt;}
.ls82{letter-spacing:-0.667000pt;}
.ls4f{letter-spacing:-0.664200pt;}
.ls2e{letter-spacing:-0.646000pt;}
.lsf{letter-spacing:-0.645667pt;}
.ls96{letter-spacing:-0.639200pt;}
.lsa3{letter-spacing:-0.638000pt;}
.ls99{letter-spacing:-0.629000pt;}
.ls30{letter-spacing:-0.623333pt;}
.lsa9{letter-spacing:-0.616000pt;}
.ls1a{letter-spacing:-0.613600pt;}
.ls21{letter-spacing:-0.604000pt;}
.ls12{letter-spacing:0.000000pt;}
.lsab{letter-spacing:0.611933pt;}
.lsa2{letter-spacing:0.616000pt;}
.lse{letter-spacing:0.623333pt;}
.ls8a{letter-spacing:0.629000pt;}
.lsad{letter-spacing:0.629800pt;}
.ls86{letter-spacing:0.639200pt;}
.ls38{letter-spacing:0.646000pt;}
.ls9c{letter-spacing:0.657800pt;}
.lsae{letter-spacing:0.658000pt;}
.ls3c{letter-spacing:0.664200pt;}
.ls71{letter-spacing:0.675000pt;}
.lsb5{letter-spacing:0.676467pt;}
.ls3a{letter-spacing:0.679467pt;}
.ls9f{letter-spacing:0.686000pt;}
.ls4a{letter-spacing:0.705467pt;}
.ls4{letter-spacing:0.742600pt;}
.ls2b{letter-spacing:0.754000pt;}
.ls32{letter-spacing:0.812933pt;}
.ls6e{letter-spacing:0.974667pt;}
.lsaa{letter-spacing:1.228400pt;}
.lsa0{letter-spacing:1.232000pt;}
.lsb{letter-spacing:1.246667pt;}
.ls8c{letter-spacing:1.258000pt;}
.ls87{letter-spacing:1.278400pt;}
.ls0{letter-spacing:1.291333pt;}
.ls75{letter-spacing:1.292800pt;}
.ls9e{letter-spacing:1.315600pt;}
.ls3f{letter-spacing:1.333800pt;}
.ls7c{letter-spacing:1.383067pt;}
.ls81{letter-spacing:1.390000pt;}
.ls7{letter-spacing:1.485200pt;}
.ls64{letter-spacing:1.540000pt;}
.lsc{letter-spacing:1.870000pt;}
.ls89{letter-spacing:1.887000pt;}
.ls8d{letter-spacing:1.917600pt;}
.ls3d{letter-spacing:1.998000pt;}
.ls65{letter-spacing:2.010667pt;}
.ls9b{letter-spacing:2.032333pt;}
.ls51{letter-spacing:2.116400pt;}
.ls8{letter-spacing:2.227800pt;}
.ls6f{letter-spacing:2.335200pt;}
.ls60{letter-spacing:2.460000pt;}
.lsd{letter-spacing:2.493333pt;}
.ls88{letter-spacing:2.552267pt;}
.ls1{letter-spacing:2.587000pt;}
.ls3e{letter-spacing:2.667600pt;}
.ls9{letter-spacing:2.965133pt;}
.ls5c{letter-spacing:3.048000pt;}
.ls8b{letter-spacing:3.150667pt;}
.ls90{letter-spacing:3.191467pt;}
.ls43{letter-spacing:3.331800pt;}
.ls5b{letter-spacing:3.383600pt;}
.ls7f{letter-spacing:3.418067pt;}
.ls2{letter-spacing:3.707733pt;}
.ls7e{letter-spacing:3.845000pt;}
.ls41{letter-spacing:4.001400pt;}
.ls85{letter-spacing:4.235000pt;}
.ls72{letter-spacing:4.433467pt;}
.ls3{letter-spacing:4.450333pt;}
.ls53{letter-spacing:4.478400pt;}
.ls45{letter-spacing:4.665600pt;}
.ls61{letter-spacing:4.813800pt;}
.ls67{letter-spacing:4.841667pt;}
.ls8e{letter-spacing:5.109067pt;}
.lsa{letter-spacing:5.192933pt;}
.ls44{letter-spacing:5.335200pt;}
.ls84{letter-spacing:5.604267pt;}
.ls63{letter-spacing:5.635000pt;}
.ls91{letter-spacing:5.748267pt;}
.ls69{letter-spacing:5.761800pt;}
.ls5{letter-spacing:5.935533pt;}
.ls46{letter-spacing:5.999400pt;}
.ls80{letter-spacing:6.462400pt;}
.ls49{letter-spacing:6.669000pt;}
.ls6c{letter-spacing:7.242667pt;}
.ls42{letter-spacing:7.333200pt;}
.ls5f{letter-spacing:8.703200pt;}
.ls47{letter-spacing:9.331200pt;}
.ls6{letter-spacing:9.643267pt;}
.ls40{letter-spacing:10.000800pt;}
.ls48{letter-spacing:11.334600pt;}
.ls8f{letter-spacing:11.492000pt;}
.ls79{letter-spacing:11.941600pt;}
.ls77{letter-spacing:24.473200pt;}
.ws0{word-spacing:0.000000pt;}
._32{margin-left:-134.882933pt;}
._2f{margin-left:-102.696933pt;}
._2e{margin-left:-81.864000pt;}
._2d{margin-left:-73.546733pt;}
._3a{margin-left:-72.489778pt;}
._38{margin-left:-69.660267pt;}
._27{margin-left:-68.092333pt;}
._34{margin-left:-57.729200pt;}
._25{margin-left:-53.870071pt;}
._36{margin-left:-50.665267pt;}
._3b{margin-left:-40.203388pt;}
._2a{margin-left:-39.154267pt;}
._29{margin-left:-36.963166pt;}
._31{margin-left:-35.484267pt;}
._39{margin-left:-33.532067pt;}
._2b{margin-left:-30.460933pt;}
._35{margin-left:-28.223267pt;}
._28{margin-left:-26.761933pt;}
._26{margin-left:-25.222533pt;}
._33{margin-left:-21.731667pt;}
._22{margin-left:-18.867467pt;}
._12{margin-left:-17.651820pt;}
._13{margin-left:-16.609253pt;}
._23{margin-left:-14.443366pt;}
._15{margin-left:-13.261467pt;}
._10{margin-left:-11.789600pt;}
._14{margin-left:-9.796000pt;}
._1d{margin-left:-8.391027pt;}
._4{margin-left:-6.836204pt;}
._3{margin-left:-5.074000pt;}
._18{margin-left:-3.792000pt;}
._2{margin-left:-2.883567pt;}
._1{margin-left:-1.947000pt;}
._1e{margin-left:-0.983800pt;}
._16{width:1.041133pt;}
._e{width:2.225467pt;}
._b{width:3.207400pt;}
._0{width:4.136667pt;}
._7{width:5.590133pt;}
._f{width:7.099467pt;}
._a{width:8.532000pt;}
._d{width:9.575604pt;}
._1c{width:10.600133pt;}
._11{width:11.929000pt;}
._8{width:13.643733pt;}
._9{width:15.389200pt;}
._c{width:16.331800pt;}
._17{width:17.832933pt;}
._30{width:19.648867pt;}
._1b{width:20.813386pt;}
._5{width:22.184798pt;}
._19{width:23.459533pt;}
._1a{width:25.151508pt;}
._1f{width:36.376733pt;}
._21{width:38.231867pt;}
._37{width:50.181600pt;}
._2c{width:69.543267pt;}
._20{width:81.965067pt;}
._24{width:85.494933pt;}
._3c{width:147.398270pt;}
._3d{width:840.011774pt;}
._6{width:1056.699200pt;}
.fs1d{font-size:26.000000pt;}
.fs1f{font-size:32.000000pt;}
.fs29{font-size:34.000000pt;}
.fs26{font-size:34.666667pt;}
.fs22{font-size:36.000000pt;}
.fs1b{font-size:37.333333pt;}
.fs2a{font-size:38.000000pt;}
.fs2{font-size:39.333333pt;}
.fs2f{font-size:40.000000pt;}
.fs3{font-size:40.666667pt;}
.fs14{font-size:42.000000pt;}
.fs2b{font-size:42.666667pt;}
.fs0{font-size:43.333333pt;}
.fs1{font-size:44.000000pt;}
.fsb{font-size:44.666667pt;}
.fs2e{font-size:45.333333pt;}
.fs23{font-size:46.000000pt;}
.fs2c{font-size:46.324800pt;}
.fsa{font-size:46.666667pt;}
.fs25{font-size:47.333333pt;}
.fs1e{font-size:48.000000pt;}
.fs21{font-size:48.666667pt;}
.fs1a{font-size:49.333333pt;}
.fs24{font-size:50.000000pt;}
.fs9{font-size:50.666667pt;}
.fs12{font-size:51.333333pt;}
.fs11{font-size:52.000000pt;}
.fse{font-size:52.666667pt;}
.fs10{font-size:53.333333pt;}
.fs1c{font-size:54.000000pt;}
.fs28{font-size:54.088533pt;}
.fsf{font-size:54.666667pt;}
.fs17{font-size:55.333333pt;}
.fs7{font-size:56.000000pt;}
.fs5{font-size:56.666667pt;}
.fsd{font-size:57.333333pt;}
.fs6{font-size:58.000000pt;}
.fs13{font-size:60.000000pt;}
.fs19{font-size:60.666667pt;}
.fs18{font-size:62.000000pt;}
.fs27{font-size:66.666667pt;}
.fs15{font-size:67.333333pt;}
.fs4{font-size:68.000000pt;}
.fs16{font-size:68.666667pt;}
.fs2d{font-size:69.333333pt;}
.fs20{font-size:77.333333pt;}
.fsc{font-size:100.666667pt;}
.fs8{font-size:118.000000pt;}
.y0{bottom:0.000000pt;}
.yed{bottom:60.280800pt;}
.yee{bottom:60.600133pt;}
.y54{bottom:60.601600pt;}
.y55{bottom:62.201200pt;}
.y53{bottom:103.801333pt;}
.y47{bottom:105.400933pt;}
.y88{bottom:106.361867pt;}
.y87{bottom:106.367000pt;}
.y9b{bottom:115.001467pt;}
.y46{bottom:116.601067pt;}
.y52{bottom:118.202133pt;}
.y86{bottom:121.082000pt;}
.y9a{bottom:128.441467pt;}
.y45{bottom:131.002000pt;}
.y51{bottom:132.602567pt;}
.y85{bottom:135.802267pt;}
.y99{bottom:141.562000pt;}
.y50{bottom:147.321733pt;}
.y4f{bottom:147.322833pt;}
.y84{bottom:150.841867pt;}
.y4e{bottom:162.042000pt;}
.y4d{bottom:162.042600pt;}
.y83{bottom:165.562000pt;}
.y82{bottom:165.567267pt;}
.y44{bottom:174.523133pt;}
.y4c{bottom:176.761767pt;}
.y81{bottom:180.285933pt;}
.y43{bottom:189.242300pt;}
.y4b{bottom:191.480933pt;}
.y80{bottom:194.997367pt;}
.y42{bottom:203.961467pt;}
.y41{bottom:203.964633pt;}
.y7f{bottom:209.401867pt;}
.y40{bottom:218.683800pt;}
.y4a{bottom:220.602000pt;}
.y7e{bottom:224.122133pt;}
.y3f{bottom:233.402967pt;}
.y7d{bottom:238.840800pt;}
.y7c{bottom:239.480933pt;}
.y3e{bottom:248.122133pt;}
.y7b{bottom:253.561067pt;}
.y49{bottom:264.762300pt;}
.y7a{bottom:268.286467pt;}
.y3d{bottom:277.561067pt;}
.y48{bottom:279.481467pt;}
.y79{bottom:282.996433pt;}
.y78{bottom:297.400933pt;}
.y77{bottom:326.522000pt;}
.y3c{bottom:357.231400pt;}
.y3b{bottom:370.674567pt;}
.y76{bottom:373.561067pt;}
.yec{bottom:380.601067pt;}
.y3a{bottom:383.801733pt;}
.y75{bottom:388.602133pt;}
.y74{bottom:388.607267pt;}
.yeb{bottom:392.760800pt;}
.y27{bottom:397.552933pt;}
.y73{bottom:403.322267pt;}
.yea{bottom:404.601067pt;}
.y26{bottom:410.996100pt;}
.y39{bottom:411.000933pt;}
.ye9{bottom:416.759733pt;}
.y72{bottom:418.361867pt;}
.y98{bottom:418.681200pt;}
.ye7{bottom:419.640667pt;}
.y38{bottom:424.437767pt;}
.y25{bottom:424.755267pt;}
.ye8{bottom:428.920400pt;}
.y71{bottom:433.082000pt;}
.y70{bottom:433.087267pt;}
.y97{bottom:433.722133pt;}
.y37{bottom:437.879267pt;}
.y24{bottom:438.198433pt;}
.ye6{bottom:441.078133pt;}
.y6f{bottom:447.802267pt;}
.y6e{bottom:447.802867pt;}
.y96{bottom:448.446200pt;}
.y36{bottom:451.638433pt;}
.y22{bottom:451.638467pt;}
.y23{bottom:451.641600pt;}
.ye5{bottom:453.080133pt;}
.y6d{bottom:462.841867pt;}
.y6c{bottom:462.842333pt;}
.y95{bottom:463.161200pt;}
.y35{bottom:465.081600pt;}
.y21{bottom:465.397633pt;}
.ye4{bottom:465.720267pt;}
.ye3{bottom:469.561067pt;}
.ye2{bottom:477.559600pt;}
.y6b{bottom:477.567267pt;}
.y94{bottom:478.202133pt;}
.y34{bottom:478.521467pt;}
.y1f{bottom:478.826333pt;}
.y20{bottom:478.840800pt;}
.ye0{bottom:484.279733pt;}
.ye1{bottom:489.720267pt;}
.y33{bottom:491.962967pt;}
.y1e{bottom:492.269500pt;}
.y6a{bottom:492.282267pt;}
.y93{bottom:492.920933pt;}
.yde{bottom:499.320800pt;}
.ydf{bottom:501.879867pt;}
.y1d{bottom:505.712667pt;}
.y32{bottom:505.715800pt;}
.y69{bottom:507.321733pt;}
.y68{bottom:507.327000pt;}
.y92{bottom:507.641067pt;}
.ydd{bottom:514.041067pt;}
.y1c{bottom:519.155833pt;}
.y31{bottom:519.158967pt;}
.y67{bottom:522.042000pt;}
.y91{bottom:522.361333pt;}
.ydc{bottom:526.200667pt;}
.ydb{bottom:529.080533pt;}
.y30{bottom:532.598833pt;}
.y1b{bottom:532.599000pt;}
.y66{bottom:536.762267pt;}
.y90{bottom:537.400933pt;}
.yda{bottom:538.360400pt;}
.yd9{bottom:543.800800pt;}
.y2f{bottom:546.042000pt;}
.y1a{bottom:546.358167pt;}
.yd8{bottom:550.520000pt;}
.y65{bottom:551.483000pt;}
.y8f{bottom:552.121067pt;}
.yd7{bottom:559.480533pt;}
.y2e{bottom:559.482000pt;}
.y19{bottom:559.798033pt;}
.yd6{bottom:560.120667pt;}
.y64{bottom:566.522000pt;}
.y8e{bottom:567.162133pt;}
.y2d{bottom:572.922033pt;}
.y18{bottom:573.241200pt;}
.yd4{bottom:573.560533pt;}
.yd5{bottom:574.840800pt;}
.y63{bottom:581.566733pt;}
.y8d{bottom:582.201733pt;}
.y2c{bottom:586.677900pt;}
.y17{bottom:586.682700pt;}
.yd3{bottom:587.000533pt;}
.yd2{bottom:588.600133pt;}
.y62{bottom:596.281733pt;}
.y8c{bottom:596.921867pt;}
.yd1{bottom:598.840800pt;}
.y2b{bottom:600.108933pt;}
.y15{bottom:600.432233pt;}
.y16{bottom:600.441867pt;}
.ycf{bottom:603.000933pt;}
.yd0{bottom:603.320400pt;}
.yce{bottom:611.319867pt;}
.y61{bottom:611.321333pt;}
.y8b{bottom:611.966600pt;}
.y2a{bottom:613.552100pt;}
.y14{bottom:613.875400pt;}
.ycc{bottom:618.359867pt;}
.ycd{bottom:623.480933pt;}
.y60{bottom:626.360800pt;}
.y5f{bottom:626.366067pt;}
.y8a{bottom:626.681600pt;}
.y29{bottom:626.995267pt;}
.y13{bottom:627.318567pt;}
.yca{bottom:633.080133pt;}
.ycb{bottom:635.640667pt;}
.y28{bottom:640.754433pt;}
.y12{bottom:640.761733pt;}
.y5e{bottom:641.081067pt;}
.y89{bottom:641.721200pt;}
.yc9{bottom:647.800267pt;}
.yc8{bottom:659.960000pt;}
.yc7{bottom:662.839867pt;}
.y11{bottom:667.960933pt;}
.yc6{bottom:672.121067pt;}
.yc4{bottom:677.560133pt;}
.yc5{bottom:684.280800pt;}
.yc2{bottom:692.601067pt;}
.yc3{bottom:696.440400pt;}
.y5c{bottom:699.962000pt;}
.y5d{bottom:700.602133pt;}
.yc0{bottom:707.319867pt;}
.yc1{bottom:708.440400pt;}
.y5a{bottom:713.721200pt;}
.y5b{bottom:714.361333pt;}
.ybf{bottom:720.759733pt;}
.ybe{bottom:722.360800pt;}
.y58{bottom:727.161200pt;}
.y59{bottom:727.482000pt;}
.ybd{bottom:732.920933pt;}
.ybc{bottom:737.081067pt;}
.y56{bottom:740.921867pt;}
.y57{bottom:741.241200pt;}
.ybb{bottom:745.079600pt;}
.yb9{bottom:751.799867pt;}
.yba{bottom:757.240267pt;}
.yb7{bottom:767.160133pt;}
.yb8{bottom:769.399867pt;}
.y10{bottom:770.035600pt;}
.yb6{bottom:781.880400pt;}
.yb5{bottom:794.040000pt;}
.yf{bottom:795.000933pt;}
.ye{bottom:795.006167pt;}
.yb4{bottom:796.919867pt;}
.yb3{bottom:805.880400pt;}
.yd{bottom:806.522000pt;}
.yb1{bottom:808.120133pt;}
.yb2{bottom:811.640133pt;}
.yb{bottom:818.041467pt;}
.yb0{bottom:818.359867pt;}
.yae{bottom:826.681200pt;}
.ya{bottom:829.561067pt;}
.yaf{bottom:830.520533pt;}
.yc{bottom:833.401867pt;}
.y9{bottom:841.082000pt;}
.yac{bottom:841.720667pt;}
.yad{bottom:843.320267pt;}
.y7{bottom:852.601600pt;}
.yab{bottom:855.160667pt;}
.y6{bottom:856.121600pt;}
.yaa{bottom:856.440933pt;}
.y8{bottom:866.041467pt;}
.ya9{bottom:867.960400pt;}
.ya8{bottom:879.160667pt;}
.ya7{bottom:879.480000pt;}
.y4{bottom:883.320800pt;}
.ya6{bottom:886.200667pt;}
.ya5{bottom:891.640133pt;}
.y3{bottom:896.762267pt;}
.y5{bottom:898.681200pt;}
.ya3{bottom:901.240267pt;}
.ya4{bottom:903.800800pt;}
.y2{bottom:910.521467pt;}
.ya2{bottom:915.960400pt;}
.ya1{bottom:928.120133pt;}
.ya0{bottom:931.000000pt;}
.y9f{bottom:940.275733pt;}
.y9e{bottom:952.436400pt;}
.y9c{bottom:960.440400pt;}
.y1{bottom:961.722133pt;}
.y9d{bottom:964.279733pt;}
.h2c{height:25.517578pt;}
.h2e{height:31.406250pt;}
.h43{height:33.369141pt;}
.h3a{height:34.023438pt;}
.h35{height:35.332031pt;}
.h4a{height:36.640625pt;}
.h45{height:37.294922pt;}
.h49{height:38.603516pt;}
.h27{height:38.937500pt;}
.h55{height:39.257812pt;}
.h25{height:39.912109pt;}
.h4{height:41.023438pt;}
.h1e{height:41.220703pt;}
.h5{height:42.414062pt;}
.h2{height:42.529297pt;}
.h3{height:43.183594pt;}
.h1d{height:43.816081pt;}
.h59{height:43.837891pt;}
.h53{height:44.492188pt;}
.h56{height:44.495921pt;}
.h5a{height:44.496454pt;}
.h48{height:44.500000pt;}
.h54{height:44.508188pt;}
.h57{height:45.146484pt;}
.h4c{height:45.465258pt;}
.hc{height:45.800781pt;}
.h38{height:46.455078pt;}
.hd{height:46.585938pt;}
.h2d{height:47.109375pt;}
.h34{height:47.763672pt;}
.h36{height:47.976562pt;}
.h26{height:48.393880pt;}
.h2f{height:48.417969pt;}
.h5b{height:49.046875pt;}
.h37{height:49.072266pt;}
.h18{height:49.701823pt;}
.h2a{height:49.718750pt;}
.h44{height:49.726562pt;}
.h16{height:50.355794pt;}
.h47{height:50.380859pt;}
.h14{height:51.009766pt;}
.h39{height:51.035156pt;}
.h10{height:51.663737pt;}
.h19{height:51.670404pt;}
.h1a{height:51.676404pt;}
.h12{height:51.676937pt;}
.h17{height:51.689070pt;}
.h31{height:51.689453pt;}
.h15{height:51.712270pt;}
.h1b{height:51.734375pt;}
.h3b{height:52.148438pt;}
.h13{height:52.317708pt;}
.h3e{height:52.343750pt;}
.h3f{height:52.708333pt;}
.hb{height:52.843750pt;}
.h2b{height:52.998047pt;}
.h46{height:53.012314pt;}
.h42{height:53.018180pt;}
.h4e{height:53.078125pt;}
.h41{height:53.084937pt;}
.h11{height:53.625651pt;}
.h22{height:53.652344pt;}
.h3c{height:54.254314pt;}
.h30{height:54.281247pt;}
.h21{height:54.306641pt;}
.h4b{height:54.929688pt;}
.h4f{height:54.933594pt;}
.h9{height:54.960938pt;}
.h33{height:55.558580pt;}
.h7{height:55.615234pt;}
.h4d{height:55.625000pt;}
.h3d{height:55.765625pt;}
.h58{height:56.269531pt;}
.h8{height:56.923828pt;}
.hf{height:57.781250pt;}
.h1c{height:58.886719pt;}
.h24{height:59.541016pt;}
.h23{height:60.849609pt;}
.h40{height:67.187500pt;}
.h1f{height:67.859375pt;}
.h6{height:68.531250pt;}
.h20{height:69.203125pt;}
.h52{height:69.875000pt;}
.h32{height:75.898438pt;}
.he{height:101.453125pt;}
.ha{height:118.921875pt;}
.h50{height:1051.760933pt;}
.h51{height:1052.000000pt;}
.h1{height:1054.000000pt;}
.h0{height:1054.002267pt;}
.h29{height:1057.333333pt;}
.h28{height:1057.522267pt;}
.w4{width:774.641987pt;}
.w5{width:774.666667pt;}
.w0{width:778.480933pt;}
.w1{width:778.666667pt;}
.w2{width:781.042267pt;}
.w3{width:781.333333pt;}
.x0{left:0.000000pt;}
.x16{left:56.747100pt;}
.x7{left:58.041067pt;}
.x1{left:59.000533pt;}
.xb5{left:64.121587pt;}
.x31{left:66.680667pt;}
.x57{left:67.641033pt;}
.x8{left:69.560533pt;}
.xf{left:70.521467pt;}
.x8d{left:72.441853pt;}
.xc{left:74.681600pt;}
.x20{left:76.281200pt;}
.xb6{left:77.240787pt;}
.x5c{left:80.441467pt;}
.xb7{left:83.001987pt;}
.x9{left:84.601600pt;}
.x66{left:85.561067pt;}
.x99{left:87.481453pt;}
.xa8{left:89.081053pt;}
.x40{left:91.320800pt;}
.x32{left:93.881333pt;}
.xa{left:94.840800pt;}
.xaa{left:95.801720pt;}
.x4c{left:97.080533pt;}
.x33{left:99.960533pt;}
.x21{left:102.521067pt;}
.x69{left:106.041067pt;}
.x2e{left:109.561067pt;}
.x68{left:113.721200pt;}
.x97{left:115.320787pt;}
.x2{left:119.800267pt;}
.x10{left:120.761200pt;}
.x98{left:125.561587pt;}
.x11{left:131.000533pt;}
.x12{left:134.841333pt;}
.x3{left:136.121600pt;}
.x9a{left:139.960920pt;}
.x13{left:146.681600pt;}
.x4{left:148.600533pt;}
.x5e{left:156.920933pt;}
.x9b{left:159.481453pt;}
.x63{left:160.760267pt;}
.x71{left:164.920400pt;}
.x7a{left:171.641067pt;}
.x8e{left:176.441453pt;}
.x5f{left:178.360400pt;}
.x72{left:184.121600pt;}
.x7b{left:186.040533pt;}
.x94{left:189.241187pt;}
.x61{left:192.121067pt;}
.x5{left:193.401333pt;}
.x8f{left:194.360787pt;}
.x5a{left:196.921333pt;}
.x60{left:198.200267pt;}
.x77{left:200.441467pt;}
.x7c{left:201.720267pt;}
.x6a{left:202.681200pt;}
.x1f{left:204.280800pt;}
.x95{left:207.162120pt;}
.x5b{left:208.121600pt;}
.xd{left:212.280267pt;}
.x6b{left:216.121067pt;}
.x4d{left:217.080533pt;}
.x5d{left:219.320267pt;}
.xe{left:220.921333pt;}
.x62{left:222.521067pt;}
.x78{left:230.520533pt;}
.x4e{left:232.760267pt;}
.x75{left:234.040533pt;}
.x67{left:235.320800pt;}
.x64{left:238.200667pt;}
.x14{left:244.281333pt;}
.x41{left:246.521067pt;}
.x76{left:247.801333pt;}
.x42{left:256.760267pt;}
.x15{left:259.960933pt;}
.x9c{left:265.722120pt;}
.x9d{left:285.241187pt;}
.x4f{left:287.480933pt;}
.x79{left:290.041467pt;}
.x73{left:291.641067pt;}
.x6c{left:294.521067pt;}
.x50{left:297.400933pt;}
.x3b{left:300.280800pt;}
.x58{left:301.880400pt;}
.x34{left:303.481467pt;}
.x74{left:305.721200pt;}
.x6d{left:308.920400pt;}
.xb{left:309.881333pt;}
.x35{left:312.121067pt;}
.x9e{left:315.000920pt;}
.x51{left:318.200267pt;}
.xab{left:326.521987pt;}
.x70{left:333.560533pt;}
.x9f{left:334.521453pt;}
.x6e{left:336.440400pt;}
.x22{left:337.720667pt;}
.x52{left:339.320400pt;}
.x59{left:340.281200pt;}
.xb1{left:341.880920pt;}
.xa0{left:346.361853pt;}
.x6f{left:347.321333pt;}
.x96{left:352.440920pt;}
.xb2{left:353.401853pt;}
.x65{left:355.001467pt;}
.x3c{left:356.601067pt;}
.xa6{left:366.521053pt;}
.x3d{left:369.400933pt;}
.x1a{left:395.316000pt;}
.x18{left:396.269100pt;}
.xa9{left:397.561053pt;}
.x8b{left:402.682120pt;}
.x2f{left:404.601067pt;}
.x7f{left:405.567167pt;}
.x19{left:406.836267pt;}
.x17{left:408.114267pt;}
.x8c{left:415.797653pt;}
.x1b{left:419.640667pt;}
.xa1{left:428.281720pt;}
.x1e{left:430.521467pt;}
.x36{left:433.401333pt;}
.x43{left:437.240667pt;}
.x23{left:447.481467pt;}
.x81{left:448.760267pt;}
.x26{left:451.960933pt;}
.x44{left:453.241200pt;}
.x1c{left:459.960533pt;}
.x24{left:461.880933pt;}
.x45{left:465.720267pt;}
.x1d{left:469.561067pt;}
.x27{left:471.800800pt;}
.x84{left:472.760267pt;}
.x2c{left:474.680667pt;}
.x25{left:475.641600pt;}
.x28{left:482.041467pt;}
.x85{left:491.000533pt;}
.x29{left:492.601600pt;}
.xa2{left:499.001453pt;}
.x2d{left:501.560533pt;}
.x46{left:508.600533pt;}
.xac{left:510.841853pt;}
.x2a{left:513.400933pt;}
.x80{left:515.000533pt;}
.x47{left:521.400400pt;}
.x2b{left:524.920400pt;}
.x82{left:527.480933pt;}
.x87{left:533.880933pt;}
.x83{left:542.841333pt;}
.x88{left:546.361333pt;}
.xa3{left:550.202120pt;}
.x48{left:555.641067pt;}
.x49{left:565.880400pt;}
.x53{left:577.720667pt;}
.xb3{left:584.122120pt;}
.x86{left:585.081600pt;}
.x90{left:586.041053pt;}
.x54{left:587.640667pt;}
.x37{left:592.760267pt;}
.xb4{left:599.161587pt;}
.x7d{left:601.401333pt;}
.x6{left:606.840400pt;}
.x55{left:608.441467pt;}
.x38{left:610.041067pt;}
.xad{left:611.321320pt;}
.x7e{left:612.920933pt;}
.xa4{left:627.641187pt;}
.x56{left:629.561600pt;}
.xa7{left:630.521053pt;}
.x89{left:634.360400pt;}
.x91{left:637.881853pt;}
.x4a{left:640.440933pt;}
.x4b{left:650.041467pt;}
.xae{left:651.641187pt;}
.x8a{left:653.880933pt;}
.x39{left:657.400933pt;}
.x92{left:659.001987pt;}
.x3a{left:667.960933pt;}
.xaf{left:678.201720pt;}
.xa5{left:679.481987pt;}
.x93{left:691.320787pt;}
.x30{left:692.601067pt;}
.xb0{left:696.441853pt;}
.x3e{left:697.720667pt;}
.x3f{left:708.601600pt;}
}




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