
    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_b65e61dfd5252e9f079660d8.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_530de7da4e47df3ef672f737.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_aa2400e1963469369ac039fb.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_971226a764bc3228009d6ca7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f5a588e734b925429d67d6c6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2fabf931ed107d12b3fde26d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_526293abf4c8498a86283a0e.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_657d689e6c6ac1943a27b8b2.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_667fb3b44fbd478b5d580b4f.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_5d97c54b038385f8da86b9eb.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_b60d1ec5e879d3e0d0ca4b74.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_0bb1734f3acf1855d90a9662.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_18f6f7ae235f82dbe1506d45.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_5bebf3a29ec2ee701c5e7d0d.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_693a2446df28d129ad17f8f2.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;}
@font-face{font-family:ff10;src:url('chunks/assets/font_b60d1ec5e879d3e0d0ca4b74.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_657d689e6c6ac1943a27b8b2.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_218f4d94cfd9fbf44d762095.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_0e96a72c4332702626876294.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_0cca49446f913803082cfae4.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_bf3fd2e6c11a548adedc8aa0.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_f653630f2771b006a254c182.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_20cd9177e6d36523bce68290.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_b942e34cf9906a1cfe6bb806.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_0bb1734f3acf1855d90a9662.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_0b96962795132cfb44503599.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_7d7890b39228d91f58468626.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_b942e34cf9906a1cfe6bb806.woff2')format("woff");}.ff1c{font-family:ff1c;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;}
.m2c{transform:matrix(0.106250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106250,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.136957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136957,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.158333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158333,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.186782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186782,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.190789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190789,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.197059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197059,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.201149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201149,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.211364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211364,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.m34{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);}
.m10{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);}
.m48{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);}
.m47{transform:matrix(0.220430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220430,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.222527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222527,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.223529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223529,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.m4d{transform:matrix(0.224432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224432,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);}
.m2d{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);}
.m46{transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.230556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230556,0.000000,0.000000,0.250000,0,0);}
.m1b{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);}
.m33{transform:matrix(0.232558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232558,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m3b{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);}
.m28{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);}
.m5e{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);}
.m25{transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.m19{transform:matrix(0.238506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238506,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.238764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238764,0.000000,0.000000,0.250000,0,0);}
.m3f{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);}
.m9{transform:matrix(0.241176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241176,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.m60{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);}
.m3d{transform:matrix(0.241758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241758,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.243007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243007,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.243827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243827,0.000000,0.000000,0.250000,0,0);}
.m30{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);}
.m15{transform:matrix(0.244253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244253,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);}
.m27{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);}
.m7{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);}
.m4b{transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.m37{transform:matrix(0.246988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246988,0.000000,0.000000,0.250000,0,0);}
.m45{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);}
.m5b{transform:matrix(0.247126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247126,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.247222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247222,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.m52{transform:matrix(0.252717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252717,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.252778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252778,0.000000,0.000000,0.250000,0,0);}
.m59{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);}
.m36{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);}
.m13{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);}
.m5c{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);}
.m3e{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);}
.m40{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);}
.m17{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);}
.m8{transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m49{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);}
.m31{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);}
.m53{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);}
.m39{transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.260246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260246,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m23{transform:matrix(0.263393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263393,0.000000,0.000000,0.250000,0,0);}
.m58{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);}
.m44{transform:matrix(0.264205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264205,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.264881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264881,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.265060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265060,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m21{transform:matrix(0.265306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265306,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);}
.m2f{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);}
.m29{transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);}
.m4c{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);}
.m24{transform:matrix(0.272321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272321,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.280120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280120,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.290230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290230,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.295045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295045,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.630435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630435,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.804688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.804688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.804688,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-1.466250px;}
.v0{vertical-align:0.000000px;}
.ls6b{letter-spacing:-9.224625px;}
.ls46{letter-spacing:-7.725000px;}
.ls2d{letter-spacing:-6.368400px;}
.ls44{letter-spacing:-5.919750px;}
.ls24{letter-spacing:-5.191200px;}
.ls6a{letter-spacing:-5.189250px;}
.ls72{letter-spacing:-4.819500px;}
.ls19{letter-spacing:-4.666500px;}
.ls5d{letter-spacing:-4.556250px;}
.ls59{letter-spacing:-4.449750px;}
.ls60{letter-spacing:-4.410900px;}
.ls71{letter-spacing:-4.401000px;}
.ls5f{letter-spacing:-4.201125px;}
.ls77{letter-spacing:-3.791025px;}
.ls49{letter-spacing:-3.788400px;}
.ls66{letter-spacing:-3.712200px;}
.ls57{letter-spacing:-3.703875px;}
.ls43{letter-spacing:-3.622500px;}
.ls11{letter-spacing:-3.605100px;}
.ls4d{letter-spacing:-3.550800px;}
.ls6d{letter-spacing:-3.550500px;}
.ls16{letter-spacing:-3.536250px;}
.ls4c{letter-spacing:-3.111000px;}
.ls45{letter-spacing:-3.074400px;}
.ls5b{letter-spacing:-2.964375px;}
.ls5c{letter-spacing:-2.583900px;}
.ls42{letter-spacing:-2.539125px;}
.ls2c{letter-spacing:-2.333250px;}
.ls3d{letter-spacing:-2.305800px;}
.ls65{letter-spacing:-2.303325px;}
.ls79{letter-spacing:-2.277225px;}
.ls68{letter-spacing:-2.275875px;}
.ls56{letter-spacing:-2.224875px;}
.ls5a{letter-spacing:-2.223900px;}
.ls48{letter-spacing:-2.197425px;}
.ls69{letter-spacing:-2.173875px;}
.ls17{letter-spacing:-2.146350px;}
.ls7c{letter-spacing:-1.632000px;}
.ls1b{letter-spacing:-1.555500px;}
.lsd{letter-spacing:-1.547700px;}
.ls3e{letter-spacing:-1.537200px;}
.ls74{letter-spacing:-1.520325px;}
.ls6f{letter-spacing:-1.502850px;}
.ls1c{letter-spacing:-1.498125px;}
.ls55{letter-spacing:-1.485375px;}
.ls6e{letter-spacing:-1.481175px;}
.ls21{letter-spacing:-1.480500px;}
.ls3c{letter-spacing:-1.448550px;}
.ls28{letter-spacing:-1.446900px;}
.ls1a{letter-spacing:-1.417500px;}
.ls23{letter-spacing:-1.413075px;}
.ls2a{letter-spacing:-1.373625px;}
.ls22{letter-spacing:-0.789525px;}
.ls7b{letter-spacing:-0.778800px;}
.ls14{letter-spacing:-0.777750px;}
.ls40{letter-spacing:-0.768600px;}
.ls41{letter-spacing:-0.759450px;}
.ls73{letter-spacing:-0.756900px;}
.ls64{letter-spacing:-0.756000px;}
.ls5e{letter-spacing:-0.752250px;}
.ls1d{letter-spacing:-0.743400px;}
.ls3f{letter-spacing:-0.739500px;}
.ls20{letter-spacing:-0.731850px;}
.ls58{letter-spacing:-0.729000px;}
.ls25{letter-spacing:-0.723450px;}
.ls10{letter-spacing:-0.722850px;}
.ls27{letter-spacing:-0.714000px;}
.ls2e{letter-spacing:-0.704700px;}
.ls29{letter-spacing:-0.688800px;}
.lsb{letter-spacing:0.000000px;}
.ls67{letter-spacing:0.672300px;}
.ls0{letter-spacing:0.722850px;}
.ls12{letter-spacing:0.729675px;}
.ls4f{letter-spacing:0.739500px;}
.ls78{letter-spacing:0.756900px;}
.ls4e{letter-spacing:0.758625px;}
.ls13{letter-spacing:0.759375px;}
.ls33{letter-spacing:0.768600px;}
.lsf{letter-spacing:0.772200px;}
.ls15{letter-spacing:0.776475px;}
.ls2{letter-spacing:0.777750px;}
.ls2b{letter-spacing:0.792000px;}
.ls76{letter-spacing:0.796500px;}
.lsa{letter-spacing:0.818100px;}
.ls61{letter-spacing:0.838200px;}
.ls1e{letter-spacing:1.410000px;}
.ls51{letter-spacing:1.485375px;}
.ls38{letter-spacing:1.537200px;}
.ls3{letter-spacing:1.555500px;}
.ls18{letter-spacing:1.670400px;}
.ls62{letter-spacing:1.761750px;}
.ls26{letter-spacing:2.062500px;}
.ls52{letter-spacing:2.224875px;}
.ls70{letter-spacing:2.277225px;}
.ls39{letter-spacing:2.305800px;}
.ls4{letter-spacing:2.333250px;}
.ls7a{letter-spacing:2.436750px;}
.ls31{letter-spacing:2.488500px;}
.lsc{letter-spacing:2.502900px;}
.ls63{letter-spacing:2.964375px;}
.ls2f{letter-spacing:3.073950px;}
.ls3a{letter-spacing:3.074400px;}
.ls1{letter-spacing:3.111000px;}
.ls50{letter-spacing:3.703875px;}
.ls75{letter-spacing:3.791025px;}
.ls4b{letter-spacing:3.794550px;}
.ls3b{letter-spacing:3.843000px;}
.ls6{letter-spacing:3.888750px;}
.ls54{letter-spacing:4.449750px;}
.ls34{letter-spacing:4.611600px;}
.ls5{letter-spacing:4.666500px;}
.ls1f{letter-spacing:4.755750px;}
.ls9{letter-spacing:5.060175px;}
.ls53{letter-spacing:5.189250px;}
.ls4a{letter-spacing:5.190750px;}
.ls8{letter-spacing:5.444250px;}
.lse{letter-spacing:5.764500px;}
.ls6c{letter-spacing:5.857725px;}
.ls32{letter-spacing:6.022575px;}
.ls35{letter-spacing:6.148800px;}
.ls7{letter-spacing:6.222000px;}
.ls47{letter-spacing:6.999750px;}
.ls36{letter-spacing:7.679700px;}
.ls30{letter-spacing:24.708000px;}
.ls37{letter-spacing:26.888400px;}
.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;}
._23{margin-left:-36.736605px;}
._21{margin-left:-10.183050px;}
._1b{margin-left:-9.125188px;}
._17{margin-left:-7.254750px;}
._14{margin-left:-5.916000px;}
._1a{margin-left:-4.602750px;}
._19{margin-left:-3.544500px;}
._7{margin-left:-2.078250px;}
._2{width:1.989000px;}
._a{width:3.812250px;}
._5{width:5.546250px;}
._3{width:6.566250px;}
._d{width:7.726500px;}
._4{width:8.759250px;}
._6{width:9.766500px;}
._9{width:11.169000px;}
._8{width:12.520500px;}
._b{width:13.642500px;}
._c{width:15.427500px;}
._11{width:17.340000px;}
._1{width:18.794100px;}
._10{width:20.794650px;}
._13{width:22.121250px;}
._12{width:23.256000px;}
._18{width:24.631800px;}
._15{width:26.392500px;}
._16{width:28.432500px;}
._0{width:30.927000px;}
._22{width:33.022500px;}
._e{width:65.050500px;}
._f{width:67.766250px;}
._1d{width:102.961361px;}
._24{width:118.957500px;}
._1e{width:171.750600px;}
._1c{width:222.321468px;}
._1f{width:507.872100px;}
._20{width:905.625000px;}
.fc0{color:transparent;}
.fs25{font-size:24.000000px;}
.fs19{font-size:32.250000px;}
.fs13{font-size:36.750000px;}
.fs11{font-size:39.750000px;}
.fs12{font-size:41.250000px;}
.fs14{font-size:42.000000px;}
.fs18{font-size:48.000000px;}
.fs5{font-size:51.750000px;}
.fs7{font-size:52.500000px;}
.fs1a{font-size:54.000000px;}
.fs16{font-size:54.750000px;}
.fs6{font-size:56.250000px;}
.fs10{font-size:57.000000px;}
.fs23{font-size:57.750000px;}
.fsd{font-size:60.000000px;}
.fsf{font-size:60.750000px;}
.fsa{font-size:61.500000px;}
.fse{font-size:62.250000px;}
.fsb{font-size:63.000000px;}
.fs8{font-size:63.750000px;}
.fs24{font-size:64.500000px;}
.fs9{font-size:65.250000px;}
.fs20{font-size:66.000000px;}
.fs17{font-size:66.750000px;}
.fsc{font-size:67.500000px;}
.fs1e{font-size:68.250000px;}
.fs15{font-size:69.000000px;}
.fs21{font-size:69.750000px;}
.fs1c{font-size:74.250000px;}
.fs1d{font-size:77.250000px;}
.fs0{font-size:81.000000px;}
.fs1{font-size:82.500000px;}
.fs1b{font-size:83.250000px;}
.fs1f{font-size:84.000000px;}
.fs22{font-size:86.250000px;}
.fs3{font-size:91.500000px;}
.fs2{font-size:100.500000px;}
.fs4{font-size:107.250000px;}
.y1a0{bottom:-3.462900px;}
.y0{bottom:0.000000px;}
.y37{bottom:54.495450px;}
.y75{bottom:80.415562px;}
.ye3{bottom:81.135263px;}
.y36{bottom:82.576500px;}
.ya9{bottom:84.371700px;}
.y35{bottom:92.296200px;}
.y11c{bottom:94.815900px;}
.y155{bottom:95.190450px;}
.y74{bottom:96.624000px;}
.ye2{bottom:96.977138px;}
.ya8{bottom:100.216200px;}
.y198{bottom:102.388575px;}
.y11b{bottom:110.664825px;}
.y154{bottom:111.382950px;}
.y72{bottom:112.808962px;}
.y73{bottom:112.816500px;}
.ye1{bottom:112.819013px;}
.ya7{bottom:116.414100px;}
.y33{bottom:116.774625px;}
.y34{bottom:116.776500px;}
.y197{bottom:118.581075px;}
.y11a{bottom:126.857325px;}
.y153{bottom:127.568062px;}
.ye0{bottom:129.011513px;}
.y71{bottom:129.022425px;}
.ya5{bottom:131.890650px;}
.ya6{bottom:131.896350px;}
.y32{bottom:132.621525px;}
.y196{bottom:134.773575px;}
.y119{bottom:142.699200px;}
.y152{bottom:143.776500px;}
.ydf{bottom:144.853387px;}
.y70{bottom:144.864300px;}
.ya4{bottom:148.082550px;}
.y31{bottom:148.463400px;}
.y195{bottom:150.615450px;}
.y118{bottom:158.907637px;}
.y151{bottom:159.248212px;}
.yde{bottom:161.045888px;}
.y6e{bottom:161.055075px;}
.y6f{bottom:161.056800px;}
.ya3{bottom:164.289300px;}
.y30{bottom:164.654175px;}
.y194{bottom:166.823250px;}
.y117{bottom:175.100137px;}
.y150{bottom:175.456650px;}
.y14f{bottom:175.461038px;}
.y6d{bottom:176.896950px;}
.y6c{bottom:176.900700px;}
.ydd{bottom:177.254325px;}
.ya2{bottom:180.490350px;}
.y2f{bottom:180.496050px;}
.y2e{bottom:180.501075px;}
.y193{bottom:183.015750px;}
.y192{bottom:183.029325px;}
.y116{bottom:190.942013px;}
.y14e{bottom:191.653537px;}
.y6b{bottom:193.093200px;}
.ydc{bottom:193.096200px;}
.y2d{bottom:196.342950px;}
.ya1{bottom:196.697100px;}
.y191{bottom:198.504638px;}
.y115{bottom:207.134512px;}
.y14d{bottom:207.495412px;}
.ydb{bottom:209.275725px;}
.y6a{bottom:209.301637px;}
.y2b{bottom:212.526188px;}
.y2c{bottom:212.535450px;}
.ya0{bottom:212.890650px;}
.y190{bottom:215.063700px;}
.y114{bottom:223.342950px;}
.y14c{bottom:223.703850px;}
.yda{bottom:225.468225px;}
.y69{bottom:225.494137px;}
.y2a{bottom:228.734625px;}
.y9f{bottom:229.089900px;}
.y18f{bottom:231.256200px;}
.y18e{bottom:231.261525px;}
.y113{bottom:239.524313px;}
.y14b{bottom:239.901375px;}
.y68{bottom:241.336012px;}
.yd9{bottom:241.676663px;}
.y29{bottom:244.576500px;}
.y28{bottom:244.583400px;}
.y9d{bottom:245.262900px;}
.y9e{bottom:245.296650px;}
.y18d{bottom:247.103400px;}
.y14a{bottom:256.093875px;}
.yd8{bottom:257.518538px;}
.y67{bottom:257.528513px;}
.y112{bottom:257.884313px;}
.y26{bottom:260.768513px;}
.y27{bottom:260.775900px;}
.y9c{bottom:261.469650px;}
.y18c{bottom:263.662463px;}
.y148{bottom:271.919512px;}
.y149{bottom:271.935750px;}
.yd7{bottom:273.360413px;}
.y66{bottom:273.736950px;}
.y65{bottom:273.742125px;}
.y111{bottom:274.092750px;}
.y25{bottom:276.976950px;}
.y9b{bottom:277.314150px;}
.y18b{bottom:279.854963px;}
.y147{bottom:287.761388px;}
.yd6{bottom:289.552913px;}
.y64{bottom:289.934625px;}
.y24{bottom:293.176200px;}
.y9a{bottom:293.520900px;}
.y18a{bottom:295.696838px;}
.y146{bottom:303.603263px;}
.yd5{bottom:305.394788px;}
.y62{bottom:305.768963px;}
.y63{bottom:305.776500px;}
.y110{bottom:305.790937px;}
.y99{bottom:309.365400px;}
.y23{bottom:309.374962px;}
.y189{bottom:311.538713px;}
.y145{bottom:319.811700px;}
.yd4{bottom:321.603225px;}
.y61{bottom:321.977400px;}
.y10f{bottom:321.983438px;}
.y98{bottom:325.572150px;}
.y22{bottom:325.583400px;}
.y188{bottom:327.731213px;}
.y144{bottom:335.653575px;}
.yd3{bottom:337.445100px;}
.y10e{bottom:337.825313px;}
.y60{bottom:338.184488px;}
.y97{bottom:341.412150px;}
.y21{bottom:341.775900px;}
.y187{bottom:343.573088px;}
.y143{bottom:351.497288px;}
.yd2{bottom:353.286975px;}
.y10d{bottom:354.017813px;}
.y5f{bottom:354.026363px;}
.y95{bottom:357.251850px;}
.y96{bottom:357.256650px;}
.y20{bottom:357.616050px;}
.y186{bottom:359.781525px;}
.y142{bottom:368.056350px;}
.yd1{bottom:369.495413px;}
.y10c{bottom:369.859688px;}
.y5e{bottom:370.218863px;}
.y94{bottom:373.458600px;}
.y1f{bottom:373.816950px;}
.y1e{bottom:373.827637px;}
.y185{bottom:375.974025px;}
.y141{bottom:384.264788px;}
.yd0{bottom:385.687913px;}
.y10b{bottom:385.701563px;}
.y5d{bottom:386.060738px;}
.y1d{bottom:389.302950px;}
.y93{bottom:389.303100px;}
.y183{bottom:391.797600px;}
.y184{bottom:391.815900px;}
.y140{bottom:400.823850px;}
.ycf{bottom:401.896350px;}
.yce{bottom:401.901975px;}
.y10a{bottom:402.260625px;}
.y5c{bottom:402.269175px;}
.y1b{bottom:405.488063px;}
.y1c{bottom:405.495450px;}
.y92{bottom:405.856350px;}
.y182{bottom:408.006038px;}
.y13f{bottom:417.016350px;}
.ycd{bottom:418.094475px;}
.y109{bottom:418.102500px;}
.y5b{bottom:418.111050px;}
.y91{bottom:421.690650px;}
.y19{bottom:421.694138px;}
.y1a{bottom:421.696500px;}
.y181{bottom:423.847913px;}
.y13e{bottom:432.857587px;}
.ycc{bottom:434.286975px;}
.y108{bottom:434.295000px;}
.y107{bottom:434.298900px;}
.y5a{bottom:434.303550px;}
.y18{bottom:437.886638px;}
.y90{bottom:437.897400px;}
.y180{bottom:440.056350px;}
.y17f{bottom:440.058675px;}
.y13d{bottom:449.416013px;}
.y106{bottom:450.140775px;}
.y59{bottom:450.486150px;}
.ycb{bottom:450.495413px;}
.y8f{bottom:454.084950px;}
.y17{bottom:454.095075px;}
.y17e{bottom:456.251175px;}
.y13c{bottom:465.257888px;}
.y105{bottom:466.349213px;}
.yca{bottom:466.687913px;}
.y58{bottom:466.694587px;}
.y16{bottom:469.936950px;}
.y8e{bottom:470.291700px;}
.y17d{bottom:473.176800px;}
.y17c{bottom:473.183550px;}
.y13b{bottom:481.816950px;}
.y13a{bottom:481.817325px;}
.y57{bottom:482.887088px;}
.yc9{bottom:482.896350px;}
.y104{bottom:482.908275px;}
.y15{bottom:486.134475px;}
.y8d{bottom:486.141900px;}
.y17b{bottom:489.376050px;}
.y139{bottom:497.659200px;}
.y103{bottom:498.750150px;}
.yc7{bottom:499.094475px;}
.y56{bottom:499.095525px;}
.yc8{bottom:499.095750px;}
.y14{bottom:501.976350px;}
.y13{bottom:501.978862px;}
.y8b{bottom:503.049450px;}
.y8c{bottom:503.057400px;}
.y17a{bottom:505.568062px;}
.y138{bottom:513.867638px;}
.y55{bottom:514.937400px;}
.y102{bottom:514.942650px;}
.y54{bottom:514.944300px;}
.yc6{bottom:515.286975px;}
.y12{bottom:517.992900px;}
.y8a{bottom:518.893950px;}
.y179{bottom:521.776500px;}
.y178{bottom:521.781525px;}
.y137{bottom:530.060137px;}
.yc5{bottom:531.128850px;}
.y101{bottom:531.135150px;}
.y53{bottom:531.136800px;}
.y52{bottom:531.485062px;}
.y11{bottom:534.383550px;}
.y89{bottom:534.738450px;}
.y177{bottom:537.974025px;}
.y136{bottom:545.902012px;}
.y51{bottom:547.326937px;}
.y100{bottom:547.335563px;}
.yc4{bottom:547.687913px;}
.y10{bottom:550.576050px;}
.yf{bottom:550.577137px;}
.y88{bottom:551.291700px;}
.y176{bottom:553.815900px;}
.y135{bottom:562.110450px;}
.yff{bottom:563.177437px;}
.y50{bottom:563.535375px;}
.yc3{bottom:563.896350px;}
.yc2{bottom:563.903250px;}
.ye{bottom:567.136200px;}
.y175{bottom:570.376050px;}
.y174{bottom:570.382950px;}
.y134{bottom:578.302950px;}
.y4f{bottom:579.377250px;}
.yfe{bottom:579.736500px;}
.yfd{bottom:579.746550px;}
.yc1{bottom:580.095750px;}
.yd{bottom:582.975712px;}
.y87{bottom:583.684650px;}
.y172{bottom:586.568062px;}
.y173{bottom:586.575450px;}
.y133{bottom:594.495450px;}
.y4e{bottom:595.576500px;}
.yfc{bottom:595.588425px;}
.yc0{bottom:596.297812px;}
.yc{bottom:599.168212px;}
.y86{bottom:599.529150px;}
.y170{bottom:602.775863px;}
.y171{bottom:602.776500px;}
.y131{bottom:610.335562px;}
.y132{bottom:610.335600px;}
.yfb{bottom:611.605613px;}
.y4d{bottom:611.777550px;}
.y4c{bottom:611.784450px;}
.ybe{bottom:615.367612px;}
.ya{bottom:615.374925px;}
.ybf{bottom:615.375000px;}
.yb{bottom:615.376650px;}
.y85{bottom:615.730200px;}
.y16f{bottom:618.968362px;}
.y130{bottom:626.544000px;}
.yfa{bottom:627.622800px;}
.y4b{bottom:627.976950px;}
.y4a{bottom:627.978975px;}
.y9{bottom:631.216800px;}
.y8{bottom:631.222913px;}
.ybd{bottom:631.576050px;}
.y83{bottom:631.929450px;}
.y84{bottom:631.936950px;}
.y16d{bottom:635.175750px;}
.y16e{bottom:635.176800px;}
.y12f{bottom:643.103062px;}
.yf8{bottom:643.812937px;}
.yf9{bottom:643.815300px;}
.y49{bottom:644.171475px;}
.y7{bottom:647.415413px;}
.ybc{bottom:647.416050px;}
.ybb{bottom:647.421675px;}
.y82{bottom:648.120300px;}
.y16c{bottom:651.368250px;}
.y12e{bottom:659.295562px;}
.y48{bottom:660.013350px;}
.yf7{bottom:660.021375px;}
.y6{bottom:663.607912px;}
.yba{bottom:663.614175px;}
.y81{bottom:664.327050px;}
.y16b{bottom:667.210125px;}
.y12d{bottom:675.488062px;}
.yf6{bottom:676.213875px;}
.y47{bottom:676.221787px;}
.y5{bottom:679.816350px;}
.yb9{bottom:679.822612px;}
.y80{bottom:680.533800px;}
.y16a{bottom:684.135750px;}
.y12c{bottom:691.696500px;}
.yf5{bottom:692.055750px;}
.yf4{bottom:692.056987px;}
.y46{bottom:692.063662px;}
.yb8{bottom:696.015112px;}
.y7f{bottom:697.087050px;}
.y169{bottom:700.690388px;}
.y12b{bottom:707.895750px;}
.y45{bottom:708.256162px;}
.yf3{bottom:708.616050px;}
.yb7{bottom:712.207612px;}
.y12a{bottom:723.734625px;}
.y44{bottom:724.448662px;}
.yf2{bottom:724.464037px;}
.y168{bottom:726.971325px;}
.yb6{bottom:728.416050px;}
.y7e{bottom:735.249300px;}
.y129{bottom:739.943062px;}
.y43{bottom:740.657100px;}
.yf1{bottom:741.023100px;}
.y167{bottom:743.896950px;}
.y166{bottom:743.899463px;}
.yb5{bottom:744.966037px;}
.y7d{bottom:751.456050px;}
.y4{bottom:752.535450px;}
.y128{bottom:756.135562px;}
.y42{bottom:756.854587px;}
.yf0{bottom:757.222500px;}
.y165{bottom:759.916650px;}
.yb4{bottom:760.807912px;}
.y7c{bottom:768.016350px;}
.y127{bottom:772.328062px;}
.y41{bottom:773.063025px;}
.yef{bottom:773.415000px;}
.yb3{bottom:777.366975px;}
.y163{bottom:782.056388px;}
.y164{bottom:782.056800px;}
.y7b{bottom:784.217250px;}
.y126{bottom:788.536500px;}
.y40{bottom:789.255525px;}
.yee{bottom:789.621675px;}
.y3{bottom:791.776500px;}
.yb2{bottom:793.575412px;}
.y161{bottom:798.609150px;}
.y162{bottom:798.615450px;}
.y7a{bottom:801.118950px;}
.y125{bottom:804.726637px;}
.yed{bottom:805.814175px;}
.y3f{bottom:805.814587px;}
.yb1{bottom:810.134475px;}
.y160{bottom:814.817587px;}
.y124{bottom:820.935075px;}
.y3e{bottom:822.007087px;}
.yec{bottom:822.022613px;}
.y2{bottom:824.536050px;}
.yb0{bottom:825.976350px;}
.y15f{bottom:831.376650px;}
.y15e{bottom:831.383550px;}
.y123{bottom:836.798100px;}
.y79{bottom:837.485700px;}
.y3d{bottom:837.848962px;}
.yeb{bottom:838.215113px;}
.yaf{bottom:842.547937px;}
.y15d{bottom:847.576050px;}
.y15c{bottom:847.582800px;}
.y122{bottom:852.990600px;}
.y78{bottom:853.692450px;}
.y3c{bottom:854.057400px;}
.yea{bottom:854.407613px;}
.yae{bottom:858.740438px;}
.y15b{bottom:863.775300px;}
.y121{bottom:869.183100px;}
.y3b{bottom:870.254288px;}
.ye9{bottom:870.616050px;}
.ye8{bottom:870.622163px;}
.yad{bottom:874.582313px;}
.y19f{bottom:877.097400px;}
.y19e{bottom:877.100738px;}
.y15a{bottom:879.984337px;}
.y120{bottom:885.391538px;}
.y3a{bottom:886.446788px;}
.ye7{bottom:886.464038px;}
.y77{bottom:889.696950px;}
.yac{bottom:890.774813px;}
.y19d{bottom:894.016800px;}
.y19c{bottom:894.020625px;}
.y159{bottom:896.543400px;}
.y11f{bottom:901.950600px;}
.y39{bottom:902.655225px;}
.ye6{bottom:902.656538px;}
.yab{bottom:907.333875px;}
.y19b{bottom:910.218938px;}
.y158{bottom:912.735900px;}
.y11e{bottom:918.143100px;}
.y38{bottom:918.497100px;}
.ye5{bottom:919.213875px;}
.y1{bottom:921.736950px;}
.yaa{bottom:923.175750px;}
.y76{bottom:924.976950px;}
.y19a{bottom:926.417250px;}
.y157{bottom:928.936388px;}
.y11d{bottom:934.335600px;}
.ye4{bottom:935.055750px;}
.y199{bottom:943.336650px;}
.y156{bottom:945.495450px;}
.h53{height:25.031250px;}
.h28{height:33.635742px;}
.h1a{height:37.037109px;}
.h18{height:40.060547px;}
.h19{height:41.572266px;}
.h1b{height:42.328125px;}
.h27{height:50.062500px;}
.h7{height:53.973633px;}
.h9{height:54.755859px;}
.h1d{height:55.177734px;}
.h29{height:56.320312px;}
.h8{height:58.666992px;}
.h21{height:58.857422px;}
.h12{height:58.886719px;}
.h17{height:59.449219px;}
.h16{height:59.622803px;}
.h4f{height:60.231445px;}
.hc{height:60.358887px;}
.h13{height:61.094971px;}
.he{height:61.831055px;}
.h36{height:61.848455px;}
.h30{height:61.849055px;}
.h2c{height:61.853855px;}
.h2f{height:61.854455px;}
.h2b{height:61.861055px;}
.h2d{height:61.878455px;}
.h33{height:61.890455px;}
.h2a{height:61.894655px;}
.ha{height:62.567139px;}
.hd{height:62.569689px;}
.h4e{height:62.571339px;}
.h46{height:62.572239px;}
.h15{height:62.574039px;}
.h20{height:62.576589px;}
.hf{height:62.579739px;}
.h4d{height:62.589189px;}
.h48{height:62.596689px;}
.h14{height:62.604189px;}
.h22{height:62.606739px;}
.h39{height:62.608389px;}
.h42{height:62.611689px;}
.h50{height:63.303223px;}
.h41{height:63.360352px;}
.h11{height:63.492188px;}
.hb{height:64.039307px;}
.h43{height:64.485352px;}
.h3c{height:64.775391px;}
.h24{height:65.511475px;}
.h4b{height:65.759766px;}
.h10{height:66.247559px;}
.h31{height:66.708984px;}
.h47{height:66.983643px;}
.h3d{height:67.719727px;}
.h23{height:68.053711px;}
.h40{height:68.455811px;}
.h35{height:68.783203px;}
.h3b{height:70.400391px;}
.h1c{height:71.964844px;}
.h32{height:77.440430px;}
.h2{height:79.497070px;}
.h34{height:80.569336px;}
.h3{height:80.969238px;}
.h2e{height:81.664673px;}
.h3a{height:82.400391px;}
.h4c{height:89.956055px;}
.h5{height:95.431641px;}
.h4{height:104.818359px;}
.h6{height:111.858398px;}
.h1f{height:1008.000000px;}
.h1e{height:1008.274050px;}
.h1{height:1009.500000px;}
.h0{height:1009.712550px;}
.h38{height:1011.000000px;}
.h37{height:1011.152550px;}
.h26{height:1011.750000px;}
.h25{height:1011.872550px;}
.h44{height:1013.672550px;}
.h45{height:1014.000000px;}
.h3f{height:1014.750000px;}
.h3e{height:1015.112550px;}
.h49{height:1020.512550px;}
.h4a{height:1020.750000px;}
.h52{height:1022.250000px;}
.h51{height:1022.312550px;}
.w6{width:660.514050px;}
.w7{width:660.750000px;}
.w2{width:661.234050px;}
.w3{width:661.500000px;}
.w5{width:665.250000px;}
.w4{width:665.552550px;}
.w1{width:668.250000px;}
.w0{width:668.432550px;}
.w9{width:671.250000px;}
.w8{width:671.312550px;}
.wc{width:674.191635px;}
.wd{width:674.250000px;}
.wa{width:677.072550px;}
.wb{width:677.250000px;}
.x0{left:0.000000px;}
.x1{left:35.415600px;}
.xb{left:36.504450px;}
.xc{left:37.549950px;}
.x25{left:38.655450px;}
.x34{left:39.757950px;}
.x63{left:43.024050px;}
.x62{left:44.453925px;}
.x65{left:45.488175px;}
.x68{left:46.587525px;}
.xaf{left:48.042225px;}
.x97{left:49.435050px;}
.x39{left:50.896350px;}
.x8a{left:51.977400px;}
.x1c{left:53.056800px;}
.x27{left:54.856350px;}
.x83{left:55.935825px;}
.x81{left:57.016950px;}
.x1f{left:59.895900px;}
.xa{left:65.655450px;}
.x15{left:67.098525px;}
.x26{left:68.536050px;}
.x60{left:72.497925px;}
.x61{left:74.681175px;}
.x69{left:76.476525px;}
.x13{left:78.255600px;}
.x5f{left:80.416050px;}
.x8f{left:81.503400px;}
.x70{left:82.592925px;}
.x71{left:84.022800px;}
.x2b{left:85.096350px;}
.x74{left:86.556975px;}
.x7c{left:87.611100px;}
.x7e{left:88.695075px;}
.x80{left:89.800350px;}
.xba{left:90.838560px;}
.x1a{left:91.935300px;}
.x42{left:93.377250px;}
.x4{left:94.456650px;}
.x14{left:95.895300px;}
.x5a{left:98.055750px;}
.x3d{left:101.656500px;}
.x2c{left:103.096800px;}
.x1b{left:105.616500px;}
.x29{left:109.576500px;}
.x93{left:111.375300px;}
.x72{left:112.481925px;}
.x89{left:113.536650px;}
.x73{left:114.603450px;}
.x20{left:116.056350px;}
.x7f{left:118.199700px;}
.x96{left:119.296200px;}
.xb6{left:120.734835px;}
.x2f{left:122.895300px;}
.x47{left:123.976350px;}
.x51{left:126.105900px;}
.x79{left:128.297250px;}
.x21{left:131.176200px;}
.x8b{left:132.616500px;}
.xa7{left:135.136200px;}
.x5{left:137.655900px;}
.x32{left:140.536500px;}
.x98{left:141.976950px;}
.x44{left:145.576050px;}
.x43{left:147.016350px;}
.x3e{left:149.895300px;}
.x2{left:151.696500px;}
.xb1{left:154.216200px;}
.x9f{left:156.737550px;}
.xb5{left:157.816950px;}
.xa6{left:158.899275px;}
.xa1{left:160.691175px;}
.x33{left:162.495450px;}
.x35{left:167.175600px;}
.x45{left:168.616050px;}
.xa9{left:170.776500px;}
.x4b{left:176.536050px;}
.x3{left:179.416650px;}
.x36{left:183.376650px;}
.x22{left:186.255600px;}
.x1d{left:189.856350px;}
.x5b{left:190.935750px;}
.x49{left:195.616050px;}
.x9b{left:197.776500px;}
.x28{left:208.216200px;}
.x9c{left:211.456050px;}
.x4f{left:214.336650px;}
.x1e{left:215.416050px;}
.x4a{left:221.536650px;}
.xa2{left:224.417250px;}
.x50{left:229.456650px;}
.xa3{left:236.297250px;}
.x23{left:238.096800px;}
.xb7{left:242.416035px;}
.xa4{left:250.697100px;}
.x7{left:258.615450px;}
.xd{left:260.416650px;}
.x24{left:269.775300px;}
.xb8{left:271.574835px;}
.x3f{left:274.455450px;}
.x59{left:277.338900px;}
.x2a{left:278.415600px;}
.xe{left:282.016350px;}
.x8{left:283.095750px;}
.x76{left:288.136800px;}
.x54{left:289.577100px;}
.x40{left:290.656500px;}
.x5c{left:296.775300px;}
.x41{left:300.376050px;}
.x85{left:302.177250px;}
.x55{left:303.616050px;}
.x77{left:306.857550px;}
.x7d{left:308.296200px;}
.xa0{left:309.377250px;}
.x52{left:311.176800px;}
.x75{left:315.496050px;}
.x99{left:318.017400px;}
.x9{left:319.815300px;}
.x57{left:321.975750px;}
.x53{left:326.657550px;}
.x78{left:328.816350px;}
.x6a{left:329.895750px;}
.x64{left:332.415600px;}
.x9a{left:333.496650px;}
.x84{left:342.136800px;}
.x66{left:343.936350px;}
.xb9{left:345.735885px;}
.x9d{left:347.176200px;}
.xad{left:350.776950px;}
.x6b{left:353.296650px;}
.x16{left:357.616050px;}
.x58{left:360.855900px;}
.x67{left:362.655450px;}
.x82{left:366.976350px;}
.xa5{left:368.057400px;}
.x6c{left:372.735900px;}
.x6e{left:373.815300px;}
.x17{left:382.816350px;}
.xf{left:388.216800px;}
.x6d{left:391.095750px;}
.x6f{left:395.055750px;}
.xae{left:396.856950px;}
.x5d{left:400.456050px;}
.x18{left:406.935750px;}
.x10{left:410.175600px;}
.x30{left:411.256800px;}
.x3a{left:412.695450px;}
.xb0{left:415.216800px;}
.x7a{left:422.777550px;}
.x90{left:424.575450px;}
.xb2{left:426.376650px;}
.x11{left:428.535450px;}
.x19{left:429.975750px;}
.x31{left:432.856350px;}
.x7b{left:435.376050px;}
.xaa{left:438.976950px;}
.x92{left:442.576050px;}
.x91{left:444.016350px;}
.x12{left:449.775900px;}
.xab{left:451.936350px;}
.x2d{left:458.775300px;}
.x56{left:471.016350px;}
.xb3{left:474.976350px;}
.x2e{left:476.416650px;}
.x4e{left:479.297250px;}
.xbb{left:480.735885px;}
.x9e{left:492.256800px;}
.x6{left:494.776500px;}
.x88{left:496.936950px;}
.xb4{left:498.736500px;}
.xbc{left:506.654835px;}
.x4c{left:509.896350px;}
.x86{left:514.576500px;}
.x5e{left:519.975300px;}
.x94{left:525.375600px;}
.xa8{left:527.176800px;}
.x87{left:528.617100px;}
.x4d{left:534.017400px;}
.x3b{left:537.255600px;}
.x95{left:539.056800px;}
.x37{left:544.096200px;}
.x3c{left:548.056350px;}
.x8c{left:553.095750px;}
.x46{left:554.176800px;}
.xbf{left:564.255585px;}
.x38{left:565.336650px;}
.xac{left:569.657550px;}
.x8d{left:579.375600px;}
.xbd{left:584.055735px;}
.x48{left:597.376050px;}
.x8e{left:600.975300px;}
.xbe{left:615.735885px;}
@media print{
.v1{vertical-align:-1.303333pt;}
.v0{vertical-align:0.000000pt;}
.ls6b{letter-spacing:-8.199667pt;}
.ls46{letter-spacing:-6.866667pt;}
.ls2d{letter-spacing:-5.660800pt;}
.ls44{letter-spacing:-5.262000pt;}
.ls24{letter-spacing:-4.614400pt;}
.ls6a{letter-spacing:-4.612667pt;}
.ls72{letter-spacing:-4.284000pt;}
.ls19{letter-spacing:-4.148000pt;}
.ls5d{letter-spacing:-4.050000pt;}
.ls59{letter-spacing:-3.955333pt;}
.ls60{letter-spacing:-3.920800pt;}
.ls71{letter-spacing:-3.912000pt;}
.ls5f{letter-spacing:-3.734333pt;}
.ls77{letter-spacing:-3.369800pt;}
.ls49{letter-spacing:-3.367467pt;}
.ls66{letter-spacing:-3.299733pt;}
.ls57{letter-spacing:-3.292333pt;}
.ls43{letter-spacing:-3.220000pt;}
.ls11{letter-spacing:-3.204533pt;}
.ls4d{letter-spacing:-3.156267pt;}
.ls6d{letter-spacing:-3.156000pt;}
.ls16{letter-spacing:-3.143333pt;}
.ls4c{letter-spacing:-2.765333pt;}
.ls45{letter-spacing:-2.732800pt;}
.ls5b{letter-spacing:-2.635000pt;}
.ls5c{letter-spacing:-2.296800pt;}
.ls42{letter-spacing:-2.257000pt;}
.ls2c{letter-spacing:-2.074000pt;}
.ls3d{letter-spacing:-2.049600pt;}
.ls65{letter-spacing:-2.047400pt;}
.ls79{letter-spacing:-2.024200pt;}
.ls68{letter-spacing:-2.023000pt;}
.ls56{letter-spacing:-1.977667pt;}
.ls5a{letter-spacing:-1.976800pt;}
.ls48{letter-spacing:-1.953267pt;}
.ls69{letter-spacing:-1.932333pt;}
.ls17{letter-spacing:-1.907867pt;}
.ls7c{letter-spacing:-1.450667pt;}
.ls1b{letter-spacing:-1.382667pt;}
.lsd{letter-spacing:-1.375733pt;}
.ls3e{letter-spacing:-1.366400pt;}
.ls74{letter-spacing:-1.351400pt;}
.ls6f{letter-spacing:-1.335867pt;}
.ls1c{letter-spacing:-1.331667pt;}
.ls55{letter-spacing:-1.320333pt;}
.ls6e{letter-spacing:-1.316600pt;}
.ls21{letter-spacing:-1.316000pt;}
.ls3c{letter-spacing:-1.287600pt;}
.ls28{letter-spacing:-1.286133pt;}
.ls1a{letter-spacing:-1.260000pt;}
.ls23{letter-spacing:-1.256067pt;}
.ls2a{letter-spacing:-1.221000pt;}
.ls22{letter-spacing:-0.701800pt;}
.ls7b{letter-spacing:-0.692267pt;}
.ls14{letter-spacing:-0.691333pt;}
.ls40{letter-spacing:-0.683200pt;}
.ls41{letter-spacing:-0.675067pt;}
.ls73{letter-spacing:-0.672800pt;}
.ls64{letter-spacing:-0.672000pt;}
.ls5e{letter-spacing:-0.668667pt;}
.ls1d{letter-spacing:-0.660800pt;}
.ls3f{letter-spacing:-0.657333pt;}
.ls20{letter-spacing:-0.650533pt;}
.ls58{letter-spacing:-0.648000pt;}
.ls25{letter-spacing:-0.643067pt;}
.ls10{letter-spacing:-0.642533pt;}
.ls27{letter-spacing:-0.634667pt;}
.ls2e{letter-spacing:-0.626400pt;}
.ls29{letter-spacing:-0.612267pt;}
.lsb{letter-spacing:0.000000pt;}
.ls67{letter-spacing:0.597600pt;}
.ls0{letter-spacing:0.642533pt;}
.ls12{letter-spacing:0.648600pt;}
.ls4f{letter-spacing:0.657333pt;}
.ls78{letter-spacing:0.672800pt;}
.ls4e{letter-spacing:0.674333pt;}
.ls13{letter-spacing:0.675000pt;}
.ls33{letter-spacing:0.683200pt;}
.lsf{letter-spacing:0.686400pt;}
.ls15{letter-spacing:0.690200pt;}
.ls2{letter-spacing:0.691333pt;}
.ls2b{letter-spacing:0.704000pt;}
.ls76{letter-spacing:0.708000pt;}
.lsa{letter-spacing:0.727200pt;}
.ls61{letter-spacing:0.745067pt;}
.ls1e{letter-spacing:1.253333pt;}
.ls51{letter-spacing:1.320333pt;}
.ls38{letter-spacing:1.366400pt;}
.ls3{letter-spacing:1.382667pt;}
.ls18{letter-spacing:1.484800pt;}
.ls62{letter-spacing:1.566000pt;}
.ls26{letter-spacing:1.833333pt;}
.ls52{letter-spacing:1.977667pt;}
.ls70{letter-spacing:2.024200pt;}
.ls39{letter-spacing:2.049600pt;}
.ls4{letter-spacing:2.074000pt;}
.ls7a{letter-spacing:2.166000pt;}
.ls31{letter-spacing:2.212000pt;}
.lsc{letter-spacing:2.224800pt;}
.ls63{letter-spacing:2.635000pt;}
.ls2f{letter-spacing:2.732400pt;}
.ls3a{letter-spacing:2.732800pt;}
.ls1{letter-spacing:2.765333pt;}
.ls50{letter-spacing:3.292333pt;}
.ls75{letter-spacing:3.369800pt;}
.ls4b{letter-spacing:3.372933pt;}
.ls3b{letter-spacing:3.416000pt;}
.ls6{letter-spacing:3.456667pt;}
.ls54{letter-spacing:3.955333pt;}
.ls34{letter-spacing:4.099200pt;}
.ls5{letter-spacing:4.148000pt;}
.ls1f{letter-spacing:4.227333pt;}
.ls9{letter-spacing:4.497933pt;}
.ls53{letter-spacing:4.612667pt;}
.ls4a{letter-spacing:4.614000pt;}
.ls8{letter-spacing:4.839333pt;}
.lse{letter-spacing:5.124000pt;}
.ls6c{letter-spacing:5.206867pt;}
.ls32{letter-spacing:5.353400pt;}
.ls35{letter-spacing:5.465600pt;}
.ls7{letter-spacing:5.530667pt;}
.ls47{letter-spacing:6.222000pt;}
.ls36{letter-spacing:6.826400pt;}
.ls30{letter-spacing:21.962667pt;}
.ls37{letter-spacing:23.900800pt;}
.ws0{word-spacing:0.000000pt;}
._23{margin-left:-32.654760pt;}
._21{margin-left:-9.051600pt;}
._1b{margin-left:-8.111278pt;}
._17{margin-left:-6.448667pt;}
._14{margin-left:-5.258667pt;}
._1a{margin-left:-4.091333pt;}
._19{margin-left:-3.150667pt;}
._7{margin-left:-1.847333pt;}
._2{width:1.768000pt;}
._a{width:3.388667pt;}
._5{width:4.930000pt;}
._3{width:5.836667pt;}
._d{width:6.868000pt;}
._4{width:7.786000pt;}
._6{width:8.681333pt;}
._9{width:9.928000pt;}
._8{width:11.129333pt;}
._b{width:12.126667pt;}
._c{width:13.713333pt;}
._11{width:15.413333pt;}
._1{width:16.705867pt;}
._10{width:18.484133pt;}
._13{width:19.663333pt;}
._12{width:20.672000pt;}
._18{width:21.894933pt;}
._15{width:23.460000pt;}
._16{width:25.273333pt;}
._0{width:27.490667pt;}
._22{width:29.353333pt;}
._e{width:57.822667pt;}
._f{width:60.236667pt;}
._1d{width:91.521210pt;}
._24{width:105.740000pt;}
._1e{width:152.667200pt;}
._1c{width:197.619083pt;}
._1f{width:451.441867pt;}
._20{width:805.000000pt;}
.fs25{font-size:21.333333pt;}
.fs19{font-size:28.666667pt;}
.fs13{font-size:32.666667pt;}
.fs11{font-size:35.333333pt;}
.fs12{font-size:36.666667pt;}
.fs14{font-size:37.333333pt;}
.fs18{font-size:42.666667pt;}
.fs5{font-size:46.000000pt;}
.fs7{font-size:46.666667pt;}
.fs1a{font-size:48.000000pt;}
.fs16{font-size:48.666667pt;}
.fs6{font-size:50.000000pt;}
.fs10{font-size:50.666667pt;}
.fs23{font-size:51.333333pt;}
.fsd{font-size:53.333333pt;}
.fsf{font-size:54.000000pt;}
.fsa{font-size:54.666667pt;}
.fse{font-size:55.333333pt;}
.fsb{font-size:56.000000pt;}
.fs8{font-size:56.666667pt;}
.fs24{font-size:57.333333pt;}
.fs9{font-size:58.000000pt;}
.fs20{font-size:58.666667pt;}
.fs17{font-size:59.333333pt;}
.fsc{font-size:60.000000pt;}
.fs1e{font-size:60.666667pt;}
.fs15{font-size:61.333333pt;}
.fs21{font-size:62.000000pt;}
.fs1c{font-size:66.000000pt;}
.fs1d{font-size:68.666667pt;}
.fs0{font-size:72.000000pt;}
.fs1{font-size:73.333333pt;}
.fs1b{font-size:74.000000pt;}
.fs1f{font-size:74.666667pt;}
.fs22{font-size:76.666667pt;}
.fs3{font-size:81.333333pt;}
.fs2{font-size:89.333333pt;}
.fs4{font-size:95.333333pt;}
.y1a0{bottom:-3.078133pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:48.440400pt;}
.y75{bottom:71.480500pt;}
.ye3{bottom:72.120233pt;}
.y36{bottom:73.401333pt;}
.ya9{bottom:74.997067pt;}
.y35{bottom:82.041067pt;}
.y11c{bottom:84.280800pt;}
.y155{bottom:84.613733pt;}
.y74{bottom:85.888000pt;}
.ye2{bottom:86.201900pt;}
.ya8{bottom:89.081067pt;}
.y198{bottom:91.012067pt;}
.y11b{bottom:98.368733pt;}
.y154{bottom:99.007067pt;}
.y72{bottom:100.274633pt;}
.y73{bottom:100.281333pt;}
.ye1{bottom:100.283567pt;}
.ya7{bottom:103.479200pt;}
.y33{bottom:103.799667pt;}
.y34{bottom:103.801333pt;}
.y197{bottom:105.405400pt;}
.y11a{bottom:112.762067pt;}
.y153{bottom:113.393833pt;}
.ye0{bottom:114.676900pt;}
.y71{bottom:114.686600pt;}
.ya5{bottom:117.236133pt;}
.ya6{bottom:117.241200pt;}
.y32{bottom:117.885800pt;}
.y196{bottom:119.798733pt;}
.y119{bottom:126.843733pt;}
.y152{bottom:127.801333pt;}
.ydf{bottom:128.758567pt;}
.y70{bottom:128.768267pt;}
.ya4{bottom:131.628933pt;}
.y31{bottom:131.967467pt;}
.y195{bottom:133.880400pt;}
.y118{bottom:141.251233pt;}
.y151{bottom:141.553967pt;}
.yde{bottom:143.151900pt;}
.y6e{bottom:143.160067pt;}
.y6f{bottom:143.161600pt;}
.ya3{bottom:146.034933pt;}
.y30{bottom:146.359267pt;}
.y194{bottom:148.287333pt;}
.y117{bottom:155.644567pt;}
.y150{bottom:155.961467pt;}
.y14f{bottom:155.965367pt;}
.y6d{bottom:157.241733pt;}
.y6c{bottom:157.245067pt;}
.ydd{bottom:157.559400pt;}
.ya2{bottom:160.435867pt;}
.y2f{bottom:160.440933pt;}
.y2e{bottom:160.445400pt;}
.y193{bottom:162.680667pt;}
.y192{bottom:162.692733pt;}
.y116{bottom:169.726233pt;}
.y14e{bottom:170.358700pt;}
.y6b{bottom:171.638400pt;}
.ydc{bottom:171.641067pt;}
.y2d{bottom:174.527067pt;}
.ya1{bottom:174.841867pt;}
.y191{bottom:176.448567pt;}
.y115{bottom:184.119567pt;}
.y14d{bottom:184.440367pt;}
.ydb{bottom:186.022867pt;}
.y6a{bottom:186.045900pt;}
.y2b{bottom:188.912167pt;}
.y2c{bottom:188.920400pt;}
.ya0{bottom:189.236133pt;}
.y190{bottom:191.167733pt;}
.y114{bottom:198.527067pt;}
.y14c{bottom:198.847867pt;}
.yda{bottom:200.416200pt;}
.y69{bottom:200.439233pt;}
.y2a{bottom:203.319667pt;}
.y9f{bottom:203.635467pt;}
.y18f{bottom:205.561067pt;}
.y18e{bottom:205.565800pt;}
.y113{bottom:212.910500pt;}
.y14b{bottom:213.245667pt;}
.y68{bottom:214.520900pt;}
.yd9{bottom:214.823700pt;}
.y29{bottom:217.401333pt;}
.y28{bottom:217.407467pt;}
.y9d{bottom:218.011467pt;}
.y9e{bottom:218.041467pt;}
.y18d{bottom:219.647467pt;}
.y14a{bottom:227.639000pt;}
.yd8{bottom:228.905367pt;}
.y67{bottom:228.914233pt;}
.y112{bottom:229.230500pt;}
.y26{bottom:231.794233pt;}
.y27{bottom:231.800800pt;}
.y9c{bottom:232.417467pt;}
.y18c{bottom:234.366633pt;}
.y148{bottom:241.706233pt;}
.y149{bottom:241.720667pt;}
.yd7{bottom:242.987033pt;}
.y66{bottom:243.321733pt;}
.y65{bottom:243.326333pt;}
.y111{bottom:243.638000pt;}
.y25{bottom:246.201733pt;}
.y9b{bottom:246.501467pt;}
.y18b{bottom:248.759967pt;}
.y147{bottom:255.787900pt;}
.yd6{bottom:257.380367pt;}
.y64{bottom:257.719667pt;}
.y24{bottom:260.601067pt;}
.y9a{bottom:260.907467pt;}
.y18a{bottom:262.841633pt;}
.y146{bottom:269.869567pt;}
.yd5{bottom:271.462033pt;}
.y62{bottom:271.794633pt;}
.y63{bottom:271.801333pt;}
.y110{bottom:271.814167pt;}
.y99{bottom:274.991467pt;}
.y23{bottom:274.999967pt;}
.y189{bottom:276.923300pt;}
.y145{bottom:284.277067pt;}
.yd4{bottom:285.869533pt;}
.y61{bottom:286.202133pt;}
.y10f{bottom:286.207500pt;}
.y98{bottom:289.397467pt;}
.y22{bottom:289.407467pt;}
.y188{bottom:291.316633pt;}
.y144{bottom:298.358733pt;}
.yd3{bottom:299.951200pt;}
.y10e{bottom:300.289167pt;}
.y60{bottom:300.608433pt;}
.y97{bottom:303.477467pt;}
.y21{bottom:303.800800pt;}
.y187{bottom:305.398300pt;}
.y143{bottom:312.442033pt;}
.yd2{bottom:314.032867pt;}
.y10d{bottom:314.682500pt;}
.y5f{bottom:314.690100pt;}
.y95{bottom:317.557200pt;}
.y96{bottom:317.561467pt;}
.y20{bottom:317.880933pt;}
.y186{bottom:319.805800pt;}
.y142{bottom:327.161200pt;}
.yd1{bottom:328.440367pt;}
.y10c{bottom:328.764167pt;}
.y5e{bottom:329.083433pt;}
.y94{bottom:331.963200pt;}
.y1f{bottom:332.281733pt;}
.y1e{bottom:332.291233pt;}
.y185{bottom:334.199133pt;}
.y141{bottom:341.568700pt;}
.yd0{bottom:342.833700pt;}
.y10b{bottom:342.845833pt;}
.y5d{bottom:343.165100pt;}
.y1d{bottom:346.047067pt;}
.y93{bottom:346.047200pt;}
.y183{bottom:348.264533pt;}
.y184{bottom:348.280800pt;}
.y140{bottom:356.287867pt;}
.ycf{bottom:357.241200pt;}
.yce{bottom:357.246200pt;}
.y10a{bottom:357.565000pt;}
.y5c{bottom:357.572600pt;}
.y1b{bottom:360.433833pt;}
.y1c{bottom:360.440400pt;}
.y92{bottom:360.761200pt;}
.y182{bottom:362.672033pt;}
.y13f{bottom:370.681200pt;}
.ycd{bottom:371.639533pt;}
.y109{bottom:371.646667pt;}
.y5b{bottom:371.654267pt;}
.y91{bottom:374.836133pt;}
.y19{bottom:374.839233pt;}
.y1a{bottom:374.841333pt;}
.y181{bottom:376.753700pt;}
.y13e{bottom:384.762300pt;}
.ycc{bottom:386.032867pt;}
.y108{bottom:386.040000pt;}
.y107{bottom:386.043467pt;}
.y5a{bottom:386.047600pt;}
.y18{bottom:389.232567pt;}
.y90{bottom:389.242133pt;}
.y180{bottom:391.161200pt;}
.y17f{bottom:391.163267pt;}
.y13d{bottom:399.480900pt;}
.y106{bottom:400.125133pt;}
.y59{bottom:400.432133pt;}
.ycb{bottom:400.440367pt;}
.y8f{bottom:403.631067pt;}
.y17{bottom:403.640067pt;}
.y17e{bottom:405.556600pt;}
.y13c{bottom:413.562567pt;}
.y105{bottom:414.532633pt;}
.yca{bottom:414.833700pt;}
.y58{bottom:414.839633pt;}
.y16{bottom:417.721733pt;}
.y8e{bottom:418.037067pt;}
.y17d{bottom:420.601600pt;}
.y17c{bottom:420.607600pt;}
.y13b{bottom:428.281733pt;}
.y13a{bottom:428.282067pt;}
.y57{bottom:429.232967pt;}
.yc9{bottom:429.241200pt;}
.y104{bottom:429.251800pt;}
.y15{bottom:432.119533pt;}
.y8d{bottom:432.126133pt;}
.y17b{bottom:435.000933pt;}
.y139{bottom:442.363733pt;}
.y103{bottom:443.333467pt;}
.yc7{bottom:443.639533pt;}
.y56{bottom:443.640467pt;}
.yc8{bottom:443.640667pt;}
.y14{bottom:446.201200pt;}
.y13{bottom:446.203433pt;}
.y8b{bottom:447.155067pt;}
.y8c{bottom:447.162133pt;}
.y17a{bottom:449.393833pt;}
.y138{bottom:456.771233pt;}
.y55{bottom:457.722133pt;}
.y102{bottom:457.726800pt;}
.y54{bottom:457.728267pt;}
.yc6{bottom:458.032867pt;}
.y12{bottom:460.438133pt;}
.y8a{bottom:461.239067pt;}
.y179{bottom:463.801333pt;}
.y178{bottom:463.805800pt;}
.y137{bottom:471.164567pt;}
.yc5{bottom:472.114533pt;}
.y101{bottom:472.120133pt;}
.y53{bottom:472.121600pt;}
.y52{bottom:472.431167pt;}
.y11{bottom:475.007600pt;}
.y89{bottom:475.323067pt;}
.y177{bottom:478.199133pt;}
.y136{bottom:485.246233pt;}
.y51{bottom:486.512833pt;}
.y100{bottom:486.520500pt;}
.yc4{bottom:486.833700pt;}
.y10{bottom:489.400933pt;}
.yf{bottom:489.401900pt;}
.y88{bottom:490.037067pt;}
.y176{bottom:492.280800pt;}
.y135{bottom:499.653733pt;}
.yff{bottom:500.602167pt;}
.y50{bottom:500.920333pt;}
.yc3{bottom:501.241200pt;}
.yc2{bottom:501.247333pt;}
.ye{bottom:504.121067pt;}
.y175{bottom:507.000933pt;}
.y174{bottom:507.007067pt;}
.y134{bottom:514.047067pt;}
.y4f{bottom:515.002000pt;}
.yfe{bottom:515.321333pt;}
.yfd{bottom:515.330267pt;}
.yc1{bottom:515.640667pt;}
.yd{bottom:518.200633pt;}
.y87{bottom:518.830800pt;}
.y172{bottom:521.393833pt;}
.y173{bottom:521.400400pt;}
.y133{bottom:528.440400pt;}
.y4e{bottom:529.401333pt;}
.yfc{bottom:529.411933pt;}
.yc0{bottom:530.042500pt;}
.yc{bottom:532.593967pt;}
.y86{bottom:532.914800pt;}
.y170{bottom:535.800767pt;}
.y171{bottom:535.801333pt;}
.y131{bottom:542.520500pt;}
.y132{bottom:542.520533pt;}
.yfb{bottom:543.649433pt;}
.y4d{bottom:543.802267pt;}
.y4c{bottom:543.808400pt;}
.ybe{bottom:546.993433pt;}
.ya{bottom:546.999933pt;}
.ybf{bottom:547.000000pt;}
.yb{bottom:547.001467pt;}
.y85{bottom:547.315733pt;}
.y16f{bottom:550.194100pt;}
.y130{bottom:556.928000pt;}
.yfa{bottom:557.886933pt;}
.y4b{bottom:558.201733pt;}
.y4a{bottom:558.203533pt;}
.y9{bottom:561.081600pt;}
.y8{bottom:561.087033pt;}
.ybd{bottom:561.400933pt;}
.y83{bottom:561.715067pt;}
.y84{bottom:561.721733pt;}
.y16d{bottom:564.600667pt;}
.y16e{bottom:564.601600pt;}
.y12f{bottom:571.647167pt;}
.yf8{bottom:572.278167pt;}
.yf9{bottom:572.280267pt;}
.y49{bottom:572.596867pt;}
.y7{bottom:575.480367pt;}
.ybc{bottom:575.480933pt;}
.ybb{bottom:575.485933pt;}
.y82{bottom:576.106933pt;}
.y16c{bottom:578.994000pt;}
.y12e{bottom:586.040500pt;}
.y48{bottom:586.678533pt;}
.yf7{bottom:586.685667pt;}
.y6{bottom:589.873700pt;}
.yba{bottom:589.879267pt;}
.y81{bottom:590.512933pt;}
.y16b{bottom:593.075667pt;}
.y12d{bottom:600.433833pt;}
.yf6{bottom:601.079000pt;}
.y47{bottom:601.086033pt;}
.y5{bottom:604.281200pt;}
.yb9{bottom:604.286767pt;}
.y80{bottom:604.918933pt;}
.y16a{bottom:608.120667pt;}
.y12c{bottom:614.841333pt;}
.yf5{bottom:615.160667pt;}
.yf4{bottom:615.161767pt;}
.y46{bottom:615.167700pt;}
.yb8{bottom:618.680100pt;}
.y7f{bottom:619.632933pt;}
.y169{bottom:622.835900pt;}
.y12b{bottom:629.240667pt;}
.y45{bottom:629.561033pt;}
.yf3{bottom:629.880933pt;}
.yb7{bottom:633.073433pt;}
.y12a{bottom:643.319667pt;}
.y44{bottom:643.954367pt;}
.yf2{bottom:643.968033pt;}
.y168{bottom:646.196733pt;}
.yb6{bottom:647.480933pt;}
.y7e{bottom:653.554933pt;}
.y129{bottom:657.727167pt;}
.y43{bottom:658.361867pt;}
.yf1{bottom:658.687200pt;}
.y167{bottom:661.241733pt;}
.y166{bottom:661.243967pt;}
.yb5{bottom:662.192033pt;}
.y7d{bottom:667.960933pt;}
.y4{bottom:668.920400pt;}
.y128{bottom:672.120500pt;}
.y42{bottom:672.759633pt;}
.yf0{bottom:673.086667pt;}
.y165{bottom:675.481467pt;}
.yb4{bottom:676.273700pt;}
.y7c{bottom:682.681200pt;}
.y127{bottom:686.513833pt;}
.y41{bottom:687.167133pt;}
.yef{bottom:687.480000pt;}
.yb3{bottom:690.992867pt;}
.y163{bottom:695.161233pt;}
.y164{bottom:695.161600pt;}
.y7b{bottom:697.082000pt;}
.y126{bottom:700.921333pt;}
.y40{bottom:701.560467pt;}
.yee{bottom:701.885933pt;}
.y3{bottom:703.801333pt;}
.yb2{bottom:705.400367pt;}
.y161{bottom:709.874800pt;}
.y162{bottom:709.880400pt;}
.y7a{bottom:712.105733pt;}
.y125{bottom:715.312567pt;}
.yed{bottom:716.279267pt;}
.y3f{bottom:716.279633pt;}
.yb1{bottom:720.119533pt;}
.y160{bottom:724.282300pt;}
.y124{bottom:729.720067pt;}
.y3e{bottom:730.672967pt;}
.yec{bottom:730.686767pt;}
.y2{bottom:732.920933pt;}
.yb0{bottom:734.201200pt;}
.y15f{bottom:739.001467pt;}
.y15e{bottom:739.007600pt;}
.y123{bottom:743.820533pt;}
.y79{bottom:744.431733pt;}
.y3d{bottom:744.754633pt;}
.yeb{bottom:745.080100pt;}
.yaf{bottom:748.931500pt;}
.y15d{bottom:753.400933pt;}
.y15c{bottom:753.406933pt;}
.y122{bottom:758.213867pt;}
.y78{bottom:758.837733pt;}
.y3c{bottom:759.162133pt;}
.yea{bottom:759.473433pt;}
.yae{bottom:763.324833pt;}
.y15b{bottom:767.800267pt;}
.y121{bottom:772.607200pt;}
.y3b{bottom:773.559367pt;}
.ye9{bottom:773.880933pt;}
.ye8{bottom:773.886367pt;}
.yad{bottom:777.406500pt;}
.y19f{bottom:779.642133pt;}
.y19e{bottom:779.645100pt;}
.y15a{bottom:782.208300pt;}
.y120{bottom:787.014700pt;}
.y3a{bottom:787.952700pt;}
.ye7{bottom:787.968033pt;}
.y77{bottom:790.841733pt;}
.yac{bottom:791.799833pt;}
.y19d{bottom:794.681600pt;}
.y19c{bottom:794.685000pt;}
.y159{bottom:796.927467pt;}
.y11f{bottom:801.733867pt;}
.y39{bottom:802.360200pt;}
.ye6{bottom:802.361367pt;}
.yab{bottom:806.519000pt;}
.y19b{bottom:809.083500pt;}
.y158{bottom:811.320800pt;}
.y11e{bottom:816.127200pt;}
.y38{bottom:816.441867pt;}
.ye5{bottom:817.079000pt;}
.y1{bottom:819.321733pt;}
.yaa{bottom:820.600667pt;}
.y76{bottom:822.201733pt;}
.y19a{bottom:823.482000pt;}
.y157{bottom:825.721233pt;}
.y11d{bottom:830.520533pt;}
.ye4{bottom:831.160667pt;}
.y199{bottom:838.521467pt;}
.y156{bottom:840.440400pt;}
.h53{height:22.250000pt;}
.h28{height:29.898438pt;}
.h1a{height:32.921875pt;}
.h18{height:35.609375pt;}
.h19{height:36.953125pt;}
.h1b{height:37.625000pt;}
.h27{height:44.500000pt;}
.h7{height:47.976562pt;}
.h9{height:48.671875pt;}
.h1d{height:49.046875pt;}
.h29{height:50.062500pt;}
.h8{height:52.148438pt;}
.h21{height:52.317708pt;}
.h12{height:52.343750pt;}
.h17{height:52.843750pt;}
.h16{height:52.998047pt;}
.h4f{height:53.539062pt;}
.hc{height:53.652344pt;}
.h13{height:54.306641pt;}
.he{height:54.960938pt;}
.h36{height:54.976404pt;}
.h30{height:54.976938pt;}
.h2c{height:54.981204pt;}
.h2f{height:54.981737pt;}
.h2b{height:54.987604pt;}
.h2d{height:55.003071pt;}
.h33{height:55.013738pt;}
.h2a{height:55.017471pt;}
.ha{height:55.615234pt;}
.hd{height:55.617501pt;}
.h4e{height:55.618968pt;}
.h46{height:55.619768pt;}
.h15{height:55.621368pt;}
.h20{height:55.623634pt;}
.hf{height:55.626434pt;}
.h4d{height:55.634834pt;}
.h48{height:55.641501pt;}
.h14{height:55.648168pt;}
.h22{height:55.650434pt;}
.h39{height:55.651901pt;}
.h42{height:55.654834pt;}
.h50{height:56.269531pt;}
.h41{height:56.320312pt;}
.h11{height:56.437500pt;}
.hb{height:56.923828pt;}
.h43{height:57.320313pt;}
.h3c{height:57.578125pt;}
.h24{height:58.232422pt;}
.h4b{height:58.453125pt;}
.h10{height:58.886719pt;}
.h31{height:59.296875pt;}
.h47{height:59.541016pt;}
.h3d{height:60.195312pt;}
.h23{height:60.492188pt;}
.h40{height:60.849609pt;}
.h35{height:61.140625pt;}
.h3b{height:62.578125pt;}
.h1c{height:63.968750pt;}
.h32{height:68.835938pt;}
.h2{height:70.664062pt;}
.h34{height:71.617188pt;}
.h3{height:71.972656pt;}
.h2e{height:72.590820pt;}
.h3a{height:73.244792pt;}
.h4c{height:79.960938pt;}
.h5{height:84.828125pt;}
.h4{height:93.171875pt;}
.h6{height:99.429688pt;}
.h1f{height:896.000000pt;}
.h1e{height:896.243600pt;}
.h1{height:897.333333pt;}
.h0{height:897.522267pt;}
.h38{height:898.666667pt;}
.h37{height:898.802267pt;}
.h26{height:899.333333pt;}
.h25{height:899.442267pt;}
.h44{height:901.042267pt;}
.h45{height:901.333333pt;}
.h3f{height:902.000000pt;}
.h3e{height:902.322267pt;}
.h49{height:907.122267pt;}
.h4a{height:907.333333pt;}
.h52{height:908.666667pt;}
.h51{height:908.722267pt;}
.w6{width:587.123600pt;}
.w7{width:587.333333pt;}
.w2{width:587.763600pt;}
.w3{width:588.000000pt;}
.w5{width:591.333333pt;}
.w4{width:591.602267pt;}
.w1{width:594.000000pt;}
.w0{width:594.162267pt;}
.w9{width:596.666667pt;}
.w8{width:596.722267pt;}
.wc{width:599.281453pt;}
.wd{width:599.333333pt;}
.wa{width:601.842267pt;}
.wb{width:602.000000pt;}
.x0{left:0.000000pt;}
.x1{left:31.480533pt;}
.xb{left:32.448400pt;}
.xc{left:33.377733pt;}
.x25{left:34.360400pt;}
.x34{left:35.340400pt;}
.x63{left:38.243600pt;}
.x62{left:39.514600pt;}
.x65{left:40.433933pt;}
.x68{left:41.411133pt;}
.xaf{left:42.704200pt;}
.x97{left:43.942267pt;}
.x39{left:45.241200pt;}
.x8a{left:46.202133pt;}
.x1c{left:47.161600pt;}
.x27{left:48.761200pt;}
.x83{left:49.720733pt;}
.x81{left:50.681733pt;}
.x1f{left:53.240800pt;}
.xa{left:58.360400pt;}
.x15{left:59.643133pt;}
.x26{left:60.920933pt;}
.x60{left:64.442600pt;}
.x61{left:66.383267pt;}
.x69{left:67.979133pt;}
.x13{left:69.560533pt;}
.x5f{left:71.480933pt;}
.x8f{left:72.447467pt;}
.x70{left:73.415933pt;}
.x71{left:74.686933pt;}
.x2b{left:75.641200pt;}
.x74{left:76.939533pt;}
.x7c{left:77.876533pt;}
.x7e{left:78.840067pt;}
.x80{left:79.822533pt;}
.xba{left:80.745387pt;}
.x1a{left:81.720267pt;}
.x42{left:83.002000pt;}
.x4{left:83.961467pt;}
.x14{left:85.240267pt;}
.x5a{left:87.160667pt;}
.x3d{left:90.361333pt;}
.x2c{left:91.641600pt;}
.x1b{left:93.881333pt;}
.x29{left:97.401333pt;}
.x93{left:99.000267pt;}
.x72{left:99.983933pt;}
.x89{left:100.921467pt;}
.x73{left:101.869733pt;}
.x20{left:103.161200pt;}
.x7f{left:105.066400pt;}
.x96{left:106.041067pt;}
.xb6{left:107.319853pt;}
.x2f{left:109.240267pt;}
.x47{left:110.201200pt;}
.x51{left:112.094133pt;}
.x79{left:114.042000pt;}
.x21{left:116.601067pt;}
.x8b{left:117.881333pt;}
.xa7{left:120.121067pt;}
.x5{left:122.360800pt;}
.x32{left:124.921333pt;}
.x98{left:126.201733pt;}
.x44{left:129.400933pt;}
.x43{left:130.681200pt;}
.x3e{left:133.240267pt;}
.x2{left:134.841333pt;}
.xb1{left:137.081067pt;}
.x9f{left:139.322267pt;}
.xb5{left:140.281733pt;}
.xa6{left:141.243800pt;}
.xa1{left:142.836600pt;}
.x33{left:144.440400pt;}
.x35{left:148.600533pt;}
.x45{left:149.880933pt;}
.xa9{left:151.801333pt;}
.x4b{left:156.920933pt;}
.x3{left:159.481467pt;}
.x36{left:163.001467pt;}
.x22{left:165.560533pt;}
.x1d{left:168.761200pt;}
.x5b{left:169.720667pt;}
.x49{left:173.880933pt;}
.x9b{left:175.801333pt;}
.x28{left:185.081067pt;}
.x9c{left:187.960933pt;}
.x4f{left:190.521467pt;}
.x1e{left:191.480933pt;}
.x4a{left:196.921467pt;}
.xa2{left:199.482000pt;}
.x50{left:203.961467pt;}
.xa3{left:210.042000pt;}
.x23{left:211.641600pt;}
.xb7{left:215.480920pt;}
.xa4{left:222.841867pt;}
.x7{left:229.880400pt;}
.xd{left:231.481467pt;}
.x24{left:239.800267pt;}
.xb8{left:241.399853pt;}
.x3f{left:243.960400pt;}
.x59{left:246.523467pt;}
.x2a{left:247.480533pt;}
.xe{left:250.681200pt;}
.x8{left:251.640667pt;}
.x76{left:256.121600pt;}
.x54{left:257.401867pt;}
.x40{left:258.361333pt;}
.x5c{left:263.800267pt;}
.x41{left:267.000933pt;}
.x85{left:268.602000pt;}
.x55{left:269.880933pt;}
.x77{left:272.762267pt;}
.x7d{left:274.041067pt;}
.xa0{left:275.002000pt;}
.x52{left:276.601600pt;}
.x75{left:280.440933pt;}
.x99{left:282.682133pt;}
.x9{left:284.280267pt;}
.x57{left:286.200667pt;}
.x53{left:290.362267pt;}
.x78{left:292.281200pt;}
.x6a{left:293.240667pt;}
.x64{left:295.480533pt;}
.x9a{left:296.441467pt;}
.x84{left:304.121600pt;}
.x66{left:305.721200pt;}
.xb9{left:307.320787pt;}
.x9d{left:308.601067pt;}
.xad{left:311.801733pt;}
.x6b{left:314.041467pt;}
.x16{left:317.880933pt;}
.x58{left:320.760800pt;}
.x67{left:322.360400pt;}
.x82{left:326.201200pt;}
.xa5{left:327.162133pt;}
.x6c{left:331.320800pt;}
.x6e{left:332.280267pt;}
.x17{left:340.281200pt;}
.xf{left:345.081600pt;}
.x6d{left:347.640667pt;}
.x6f{left:351.160667pt;}
.xae{left:352.761733pt;}
.x5d{left:355.960933pt;}
.x18{left:361.720667pt;}
.x10{left:364.600533pt;}
.x30{left:365.561600pt;}
.x3a{left:366.840400pt;}
.xb0{left:369.081600pt;}
.x7a{left:375.802267pt;}
.x90{left:377.400400pt;}
.xb2{left:379.001467pt;}
.x11{left:380.920400pt;}
.x19{left:382.200667pt;}
.x31{left:384.761200pt;}
.x7b{left:387.000933pt;}
.xaa{left:390.201733pt;}
.x92{left:393.400933pt;}
.x91{left:394.681200pt;}
.x12{left:399.800800pt;}
.xab{left:401.721200pt;}
.x2d{left:407.800267pt;}
.x56{left:418.681200pt;}
.xb3{left:422.201200pt;}
.x2e{left:423.481467pt;}
.x4e{left:426.042000pt;}
.xbb{left:427.320787pt;}
.x9e{left:437.561600pt;}
.x6{left:439.801333pt;}
.x88{left:441.721733pt;}
.xb4{left:443.321333pt;}
.xbc{left:450.359853pt;}
.x4c{left:453.241200pt;}
.x86{left:457.401333pt;}
.x5e{left:462.200267pt;}
.x94{left:467.000533pt;}
.xa8{left:468.601600pt;}
.x87{left:469.881867pt;}
.x4d{left:474.682133pt;}
.x3b{left:477.560533pt;}
.x95{left:479.161600pt;}
.x37{left:483.641067pt;}
.x3c{left:487.161200pt;}
.x8c{left:491.640667pt;}
.x46{left:492.601600pt;}
.xbf{left:501.560520pt;}
.x38{left:502.521467pt;}
.xac{left:506.362267pt;}
.x8d{left:515.000533pt;}
.xbd{left:519.160653pt;}
.x48{left:531.000933pt;}
.x8e{left:534.200267pt;}
.xbe{left:547.320787pt;}
}




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