
    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_5d0e1488fd8b02b636641463.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_90273590ac355a5f8e586c4c.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_cfd41178024980df219d2cd8.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_33804e682c3f1934f5a9a4aa.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_8e418c7e81fd73ded9f5e624.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7fed0f91d35b3169443e2a02.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_fd5e0162c10de39cb75176fa.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1047ba6e49fc140830c35819.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_40c89f9edf071be63b99693b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_401da5f4066a1952b41c21eb.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_d3319e795058c4a724c9c3e9.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_4971fb8b7572a5b6430da2a9.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_8bcfb9642e40edb3d98851f1.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_7f8af915be045d8bb67e53b2.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_44a0d59262c0c81f26a9c368.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_8fa44a914ff4c75769e826c4.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_2c4c978c723f84fcf449bf2f.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_79fa8ce8fff779068526b532.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_74c83cfb90e82feafb73fd2d.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_1e23ec352edac7b8a3766f0c.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_01fce2d96db56e7464abc56c.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_c114de89b78e7832c05857ff.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_e62bc85d5e93ba472c884a3e.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_29f037ff53b29670c4b61060.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_d64cc8ffc1a2ef0d51ea4864.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_4a37b8fb3636180f4b81d811.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_26b5b8e175d0805b2674abe8.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_f22ec20bab75549bafdc8aa7.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;}
.m2e{transform:matrix(0.102941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102941,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.120690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120690,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.130597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130597,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.177885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177885,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.192982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192982,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.195513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195513,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.199405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199405,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.201220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201220,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.m62{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);}
.m3b{transform:matrix(0.207831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207831,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.m35{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);}
.m3{transform:matrix(0.214674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214674,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.217213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217213,0.000000,0.000000,0.250000,0,0);}
.m5e{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);}
.m57{transform:matrix(0.220930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220930,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.221774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221774,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m19{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);}
.m64{transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.224026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224026,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.224719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224719,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.228125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228125,0.000000,0.000000,0.250000,0,0);}
.m49{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);}
.m12{transform:matrix(0.229592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229592,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.231383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231383,0.000000,0.000000,0.250000,0,0);}
.m2f{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);}
.m55{transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.234940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234940,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);}
.m2d{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);}
.m5b{transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.239247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239247,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.239726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239726,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m29{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);}
.md{transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.243506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243506,0.000000,0.000000,0.250000,0,0);}
.m59{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);}
.m5d{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);}
.m39{transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);}
.m46{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);}
.m26{transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.246835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246835,0.000000,0.000000,0.250000,0,0);}
.m4e{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);}
.m53{transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.m45{transform:matrix(0.253049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253049,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.253205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253205,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.253521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253521,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.262346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262346,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.262658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262658,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.262821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262821,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);}
.m56{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);}
.m28{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);}
.m60{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.266949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266949,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.268987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268987,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m52{transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.274390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274390,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.275641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275641,0.000000,0.000000,0.250000,0,0);}
.m61{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);}
.m0{transform:matrix(0.279221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279221,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.279661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279661,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.281609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281609,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.288961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288961,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.298295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298295,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.303030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303030,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.319231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319231,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.322782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322782,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.340909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340909,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.351852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351852,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.393519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393519,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.410714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410714,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-1.443600px;}
.v0{vertical-align:0.000000px;}
.ls59{letter-spacing:-48.154500px;}
.ls57{letter-spacing:-15.543900px;}
.ls41{letter-spacing:-11.827200px;}
.ls84{letter-spacing:-10.286400px;}
.ls10{letter-spacing:-10.252050px;}
.ls13{letter-spacing:-9.401700px;}
.ls58{letter-spacing:-7.386225px;}
.ls71{letter-spacing:-7.139625px;}
.ls19{letter-spacing:-6.921000px;}
.ls27{letter-spacing:-6.716325px;}
.ls56{letter-spacing:-6.040650px;}
.ls74{letter-spacing:-5.711700px;}
.ls42{letter-spacing:-5.567100px;}
.ls5f{letter-spacing:-5.539200px;}
.ls55{letter-spacing:-5.370750px;}
.ls16{letter-spacing:-5.252100px;}
.ls70{letter-spacing:-4.994775px;}
.ls54{letter-spacing:-4.700850px;}
.ls85{letter-spacing:-4.575000px;}
.ls6e{letter-spacing:-4.283775px;}
.ls3a{letter-spacing:-4.175325px;}
.ls25{letter-spacing:-4.030950px;}
.ls6b{letter-spacing:-3.566850px;}
.ls3f{letter-spacing:-3.476550px;}
.ls51{letter-spacing:-3.355275px;}
.ls87{letter-spacing:-3.051525px;}
.ls53{letter-spacing:-3.039525px;}
.ls15{letter-spacing:-3.008775px;}
.ls1a{letter-spacing:-3.001200px;}
.ls72{letter-spacing:-2.855850px;}
.ls22{letter-spacing:-2.852850px;}
.ls3b{letter-spacing:-2.783550px;}
.ls50{letter-spacing:-2.707875px;}
.ls8{letter-spacing:-2.685375px;}
.lsc{letter-spacing:-2.622000px;}
.ls40{letter-spacing:-2.592975px;}
.ls14{letter-spacing:-2.418750px;}
.ls73{letter-spacing:-2.348775px;}
.ls1b{letter-spacing:-2.326500px;}
.ls83{letter-spacing:-2.287500px;}
.ls18{letter-spacing:-2.250900px;}
.ls47{letter-spacing:-2.223000px;}
.ls69{letter-spacing:-2.138925px;}
.ls38{letter-spacing:-2.084775px;}
.ls11{letter-spacing:-2.015475px;}
.ls2a{letter-spacing:-1.630125px;}
.ls3c{letter-spacing:-1.626300px;}
.ls88{letter-spacing:-1.610700px;}
.ls52{letter-spacing:-1.518825px;}
.ls1e{letter-spacing:-1.500600px;}
.ls46{letter-spacing:-1.480050px;}
.ls67{letter-spacing:-1.427925px;}
.ls39{letter-spacing:-1.391775px;}
.lsf{letter-spacing:-1.345575px;}
.ls6a{letter-spacing:-1.063125px;}
.ls1d{letter-spacing:-0.845775px;}
.ls80{letter-spacing:-0.813150px;}
.ls29{letter-spacing:-0.812700px;}
.ls81{letter-spacing:-0.789750px;}
.lsb{letter-spacing:-0.781200px;}
.ls7d{letter-spacing:-0.776250px;}
.ls4d{letter-spacing:-0.768075px;}
.ls82{letter-spacing:-0.764025px;}
.ls17{letter-spacing:-0.750300px;}
.ls43{letter-spacing:-0.742950px;}
.ls26{letter-spacing:-0.721875px;}
.ls68{letter-spacing:-0.716925px;}
.ls86{letter-spacing:-0.715500px;}
.ls37{letter-spacing:-0.698775px;}
.lsa{letter-spacing:-0.669900px;}
.ls3e{letter-spacing:-0.665550px;}
.ls9{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.669900px;}
.ls21{letter-spacing:0.672600px;}
.ls28{letter-spacing:0.678600px;}
.ls2b{letter-spacing:0.698775px;}
.ls61{letter-spacing:0.716925px;}
.ls4{letter-spacing:0.719550px;}
.ls30{letter-spacing:0.742950px;}
.ls5{letter-spacing:0.750300px;}
.ls75{letter-spacing:0.757500px;}
.ls77{letter-spacing:0.764025px;}
.ls7b{letter-spacing:0.805350px;}
.lsd{letter-spacing:0.810750px;}
.ls5e{letter-spacing:0.819000px;}
.ls7e{letter-spacing:0.834375px;}
.ls7c{letter-spacing:0.851400px;}
.lse{letter-spacing:0.876300px;}
.ls6{letter-spacing:1.345575px;}
.ls2d{letter-spacing:1.391775px;}
.ls1c{letter-spacing:1.407150px;}
.ls63{letter-spacing:1.427925px;}
.ls35{letter-spacing:1.480050px;}
.ls6d{letter-spacing:1.480350px;}
.ls7{letter-spacing:1.500600px;}
.ls7a{letter-spacing:1.523475px;}
.ls5d{letter-spacing:1.590000px;}
.ls89{letter-spacing:1.677600px;}
.ls7f{letter-spacing:1.696350px;}
.ls1f{letter-spacing:1.724775px;}
.ls0{letter-spacing:2.015475px;}
.ls2e{letter-spacing:2.084775px;}
.ls62{letter-spacing:2.138925px;}
.ls12{letter-spacing:2.164500px;}
.ls5a{letter-spacing:2.220150px;}
.ls45{letter-spacing:2.223000px;}
.ls5b{letter-spacing:2.278125px;}
.ls4c{letter-spacing:2.281500px;}
.ls23{letter-spacing:2.439450px;}
.ls20{letter-spacing:2.451225px;}
.ls5c{letter-spacing:2.538900px;}
.ls1{letter-spacing:2.685375px;}
.ls2c{letter-spacing:2.783550px;}
.ls4a{letter-spacing:2.854800px;}
.ls64{letter-spacing:2.855850px;}
.ls49{letter-spacing:3.288000px;}
.ls4f{letter-spacing:3.355275px;}
.ls76{letter-spacing:3.476550px;}
.ls65{letter-spacing:3.566850px;}
.ls31{letter-spacing:3.703050px;}
.ls79{letter-spacing:3.810975px;}
.ls2f{letter-spacing:4.175325px;}
.ls66{letter-spacing:4.283775px;}
.ls34{letter-spacing:4.440150px;}
.ls78{letter-spacing:4.575000px;}
.ls60{letter-spacing:4.740000px;}
.ls4b{letter-spacing:5.249475px;}
.ls6c{letter-spacing:5.526000px;}
.ls4e{letter-spacing:5.709825px;}
.ls36{letter-spacing:6.260100px;}
.ls44{letter-spacing:6.300450px;}
.ls48{letter-spacing:6.715800px;}
.ls6f{letter-spacing:7.139625px;}
.ls33{letter-spacing:8.886150px;}
.ls3d{letter-spacing:9.436050px;}
.ls32{letter-spacing:10.366200px;}
.ls3{letter-spacing:10.747275px;}
.ls24{letter-spacing:11.283300px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:0.000000px;}
._15{margin-left:-45.461325px;}
._31{margin-left:-38.400795px;}
._37{margin-left:-35.596001px;}
._38{margin-left:-29.140563px;}
._12{margin-left:-25.827009px;}
._36{margin-left:-23.748185px;}
._28{margin-left:-20.510100px;}
._17{margin-left:-17.721192px;}
._39{margin-left:-15.423032px;}
._3a{margin-left:-13.613484px;}
._32{margin-left:-11.703642px;}
._29{margin-left:-10.395450px;}
._34{margin-left:-6.426769px;}
._18{margin-left:-4.811649px;}
._1b{margin-left:-3.499650px;}
._11{margin-left:-2.472640px;}
._0{margin-left:-1.097250px;}
._1c{width:1.270500px;}
._a{width:2.385075px;}
._f{width:3.554580px;}
._9{width:4.677750px;}
._1{width:6.468000px;}
._2{width:7.758914px;}
._b{width:9.644250px;}
._d{width:11.093775px;}
._c{width:13.002211px;}
._8{width:14.651175px;}
._5{width:16.337475px;}
._7{width:17.593873px;}
._10{width:18.822050px;}
._14{width:20.674500px;}
._e{width:22.250403px;}
._6{width:23.606588px;}
._22{width:24.717000px;}
._13{width:25.980400px;}
._3{width:27.048000px;}
._4{width:28.263790px;}
._19{width:29.787450px;}
._1e{width:31.485300px;}
._27{width:32.986800px;}
._1a{width:34.209452px;}
._1d{width:36.036000px;}
._16{width:37.069043px;}
._1f{width:38.322900px;}
._25{width:39.884237px;}
._21{width:41.858105px;}
._2e{width:43.201175px;}
._2f{width:44.583000px;}
._3b{width:45.899074px;}
._23{width:47.048925px;}
._20{width:48.829782px;}
._2a{width:50.147145px;}
._2b{width:51.370148px;}
._35{width:53.064300px;}
._2c{width:56.007604px;}
._2d{width:57.739100px;}
._24{width:61.344764px;}
._33{width:63.587100px;}
._26{width:68.139225px;}
._30{width:73.633130px;}
.fc0{color:transparent;}
.fse{font-size:36.750000px;}
.fs23{font-size:39.750000px;}
.fs20{font-size:40.500000px;}
.fs1f{font-size:42.750000px;}
.fsc{font-size:44.250000px;}
.fsa{font-size:45.000000px;}
.fs9{font-size:45.750000px;}
.fs22{font-size:46.500000px;}
.fsd{font-size:47.250000px;}
.fs1c{font-size:48.000000px;}
.fsb{font-size:48.750000px;}
.fs1a{font-size:49.500000px;}
.fs1d{font-size:50.250000px;}
.fs13{font-size:51.090600px;}
.fs2a{font-size:52.500000px;}
.fs25{font-size:53.250000px;}
.fs16{font-size:54.000000px;}
.fs26{font-size:54.750000px;}
.fs10{font-size:55.500000px;}
.fs7{font-size:56.250000px;}
.fs8{font-size:57.000000px;}
.fs0{font-size:57.750000px;}
.fs6{font-size:58.500000px;}
.fs17{font-size:59.250000px;}
.fs15{font-size:60.000000px;}
.fs19{font-size:60.750000px;}
.fs5{font-size:61.500000px;}
.fs1e{font-size:62.250000px;}
.fsf{font-size:63.000000px;}
.fs18{font-size:63.750000px;}
.fs27{font-size:64.500000px;}
.fs14{font-size:65.250000px;}
.fs1{font-size:66.000000px;}
.fs29{font-size:66.750000px;}
.fs28{font-size:67.500000px;}
.fs3{font-size:69.000000px;}
.fs2{font-size:69.750000px;}
.fs4{font-size:70.500000px;}
.fs2b{font-size:72.000000px;}
.fs1b{font-size:74.250000px;}
.fs24{font-size:75.000000px;}
.fs11{font-size:75.750000px;}
.fs12{font-size:78.000000px;}
.fs21{font-size:130.500000px;}
.y0{bottom:0.000000px;}
.ybe{bottom:62.056350px;}
.y45{bottom:66.014700px;}
.y46{bottom:67.095750px;}
.y1b5{bottom:74.656500px;}
.y13c{bottom:76.456050px;}
.y226{bottom:76.815300px;}
.ybd{bottom:95.896950px;}
.y20{bottom:100.934025px;}
.y21{bottom:100.934700px;}
.ybb{bottom:108.852675px;}
.y1b4{bottom:108.853425px;}
.ybc{bottom:108.856350px;}
.y177{bottom:109.210462px;}
.y100{bottom:109.571175px;}
.y13b{bottom:109.579163px;}
.y1f{bottom:110.655900px;}
.y44{bottom:113.535000px;}
.y212{bottom:118.580475px;}
.y1e{bottom:120.375600px;}
.y224{bottom:121.451175px;}
.y225{bottom:121.456650px;}
.y1b3{bottom:121.636613px;}
.y175{bottom:121.814363px;}
.y176{bottom:121.815900px;}
.yba{bottom:121.817550px;}
.y13a{bottom:122.359013px;}
.yff{bottom:122.536050px;}
.y43{bottom:126.496050px;}
.y211{bottom:127.936350px;}
.y210{bottom:127.939125px;}
.y1c{bottom:130.092825px;}
.y1d{bottom:130.095150px;}
.yb9{bottom:134.416050px;}
.y174{bottom:134.775562px;}
.y138{bottom:135.121763px;}
.yfe{bottom:135.130875px;}
.y139{bottom:135.136200px;}
.y20f{bottom:137.295000px;}
.y41{bottom:139.090875px;}
.y42{bottom:139.094700px;}
.y1b{bottom:139.814700px;}
.y20e{bottom:147.016350px;}
.yb7{bottom:147.371775px;}
.yb8{bottom:147.377250px;}
.y137{bottom:147.725700px;}
.y1b2{bottom:147.731212px;}
.y173{bottom:147.734963px;}
.yfd{bottom:148.095750px;}
.y1a{bottom:149.175150px;}
.y40{bottom:152.055750px;}
.y20c{bottom:156.733725px;}
.y20d{bottom:156.735900px;}
.y223{bottom:159.796200px;}
.y222{bottom:159.975750px;}
.yb6{bottom:160.336650px;}
.y172{bottom:160.687837px;}
.yfc{bottom:160.690575px;}
.y3e{bottom:164.650612px;}
.y3f{bottom:164.655900px;}
.y20b{bottom:166.455600px;}
.y220{bottom:172.931475px;}
.y221{bottom:172.935300px;}
.yb5{bottom:172.936950px;}
.y1b1{bottom:173.475750px;}
.y136{bottom:173.646337px;}
.y171{bottom:173.648775px;}
.yfb{bottom:173.655450px;}
.y3d{bottom:177.254550px;}
.y83{bottom:185.887200px;}
.y21f{bottom:185.891025px;}
.yb4{bottom:185.896350px;}
.y135{bottom:186.250275px;}
.y1b0{bottom:186.254212px;}
.y170{bottom:186.609712px;}
.yfa{bottom:186.611175px;}
.y3c{bottom:190.211962px;}
.y82{bottom:198.852075px;}
.y21e{bottom:198.855900px;}
.yb3{bottom:198.857550px;}
.y134{bottom:199.215150px;}
.yf9{bottom:199.576050px;}
.y19{bottom:201.010875px;}
.y3b{bottom:202.810425px;}
.y21d{bottom:211.450725px;}
.yb2{bottom:211.802512px;}
.y81{bottom:211.811625px;}
.y132{bottom:212.170875px;}
.y1af{bottom:212.173275px;}
.y133{bottom:212.176200px;}
.yf8{bottom:212.526300px;}
.y20a{bottom:212.535450px;}
.y18{bottom:213.975750px;}
.y17{bottom:213.981450px;}
.y3a{bottom:215.775300px;}
.yb1{bottom:224.406450px;}
.y21c{bottom:224.415600px;}
.y7f{bottom:224.772713px;}
.y80{bottom:224.776500px;}
.y1ae{bottom:225.134213px;}
.y131{bottom:225.135750px;}
.yf7{bottom:225.491175px;}
.y16{bottom:228.014700px;}
.y39{bottom:228.364800px;}
.y7e{bottom:237.371325px;}
.y21b{bottom:237.376650px;}
.y16f{bottom:238.090125px;}
.y209{bottom:238.091475px;}
.y130{bottom:238.095150px;}
.yf6{bottom:238.456050px;}
.y38{bottom:241.329675px;}
.y15{bottom:242.049825px;}
.y21a{bottom:250.330725px;}
.y7d{bottom:250.336200px;}
.y16e{bottom:250.695563px;}
.y12f{bottom:251.056350px;}
.yf5{bottom:251.411812px;}
.y37{bottom:254.294550px;}
.y14{bottom:255.014700px;}
.y218{bottom:263.290275px;}
.y219{bottom:263.295600px;}
.y7c{bottom:263.297250px;}
.y12e{bottom:263.651175px;}
.y1ad{bottom:263.655113px;}
.y16d{bottom:263.656500px;}
.yf4{bottom:264.015750px;}
.y35{bottom:267.251962px;}
.y36{bottom:267.255600px;}
.y13{bottom:269.416050px;}
.y16c{bottom:276.253725px;}
.y217{bottom:276.255150px;}
.y1ac{bottom:276.610763px;}
.y7b{bottom:276.616050px;}
.yf3{bottom:276.966038px;}
.y208{bottom:277.156500px;}
.y34{bottom:279.855900px;}
.y12{bottom:282.010875px;}
.y216{bottom:289.210725px;}
.y16b{bottom:289.214662px;}
.y1ab{bottom:289.220063px;}
.y12c{bottom:289.571662px;}
.y7a{bottom:289.573313px;}
.y12d{bottom:289.575450px;}
.y207{bottom:289.925550px;}
.yf2{bottom:289.930913px;}
.y33{bottom:292.809975px;}
.y11{bottom:294.974175px;}
.y215{bottom:302.166488px;}
.y16a{bottom:302.169188px;}
.y12b{bottom:302.170275px;}
.y79{bottom:302.177250px;}
.y1aa{bottom:302.529713px;}
.yf1{bottom:302.534850px;}
.y206{bottom:302.890425px;}
.y32{bottom:305.774850px;}
.y10{bottom:309.729300px;}
.y214{bottom:314.770425px;}
.y169{bottom:315.130125px;}
.y78{bottom:315.131288px;}
.yb0{bottom:315.131325px;}
.y1a9{bottom:315.135150px;}
.yf0{bottom:315.486938px;}
.y205{bottom:315.851512px;}
.y31{bottom:318.375000px;}
.yf{bottom:323.403525px;}
.y213{bottom:327.735300px;}
.y168{bottom:327.735563px;}
.y12a{bottom:328.094325px;}
.yaf{bottom:328.096200px;}
.y203{bottom:328.451775px;}
.yef{bottom:328.451813px;}
.y204{bottom:328.455450px;}
.y77{bottom:328.457100px;}
.y30{bottom:331.334550px;}
.ye{bottom:336.368400px;}
.y129{bottom:339.622650px;}
.y1a8{bottom:340.694963px;}
.y167{bottom:340.696500px;}
.y76{bottom:341.042812px;}
.yee{bottom:341.055750px;}
.yae{bottom:341.057400px;}
.y202{bottom:341.416650px;}
.y2f{bottom:344.651213px;}
.yd{bottom:350.049825px;}
.y166{bottom:353.289975px;}
.y128{bottom:353.646788px;}
.yad{bottom:353.652225px;}
.y1a7{bottom:353.655900px;}
.yed{bottom:354.000675px;}
.y75{bottom:354.007687px;}
.y2e{bottom:357.255150px;}
.yc{bottom:363.014700px;}
.y165{bottom:365.895413px;}
.y127{bottom:366.250725px;}
.y1a6{bottom:366.615450px;}
.yac{bottom:366.617100px;}
.yec{bottom:366.965550px;}
.y74{bottom:366.972562px;}
.y2c{bottom:370.210725px;}
.y2d{bottom:370.214550px;}
.y201{bottom:374.896350px;}
.yb{bottom:375.975750px;}
.y164{bottom:378.856350px;}
.yab{bottom:379.202775px;}
.y126{bottom:379.215600px;}
.y73{bottom:379.567350px;}
.yeb{bottom:379.569487px;}
.y1a5{bottom:379.575113px;}
.y2b{bottom:383.171963px;}
.y9{bottom:390.007275px;}
.ya{bottom:390.014700px;}
.yaa{bottom:392.167650px;}
.y125{bottom:392.175150px;}
.y72{bottom:392.532225px;}
.y1a4{bottom:392.536050px;}
.y1a3{bottom:392.538525px;}
.yea{bottom:392.895300px;}
.y2a{bottom:395.775900px;}
.y8{bottom:402.972150px;}
.ye9{bottom:405.121725px;}
.ya9{bottom:405.132525px;}
.y124{bottom:405.136200px;}
.y70{bottom:405.491775px;}
.y71{bottom:405.497100px;}
.y1a2{bottom:405.854963px;}
.y29{bottom:409.455600px;}
.y7{bottom:415.215150px;}
.y123{bottom:417.731025px;}
.ye8{bottom:418.086600px;}
.y163{bottom:418.095750px;}
.ya8{bottom:418.097400px;}
.y6f{bottom:418.456650px;}
.y1a1{bottom:418.815900px;}
.y27{bottom:421.330125px;}
.y28{bottom:421.335600px;}
.y6{bottom:429.614850px;}
.y122{bottom:430.690575px;}
.ye7{bottom:431.051475px;}
.ya7{bottom:431.056800px;}
.y6e{bottom:431.416050px;}
.y1a0{bottom:431.775300px;}
.y19f{bottom:431.777775px;}
.y26{bottom:434.295000px;}
.y1db{bottom:438.255150px;}
.y5{bottom:442.576050px;}
.y121{bottom:443.655450px;}
.ya6{bottom:444.012525px;}
.ye6{bottom:444.016350px;}
.y162{bottom:444.375600px;}
.y6d{bottom:444.377250px;}
.y19e{bottom:445.094213px;}
.y25{bottom:447.254550px;}
.y1da{bottom:451.216200px;}
.y120{bottom:456.611175px;}
.y4{bottom:456.968700px;}
.ye4{bottom:456.970387px;}
.ye5{bottom:456.975750px;}
.ya5{bottom:456.977400px;}
.y6c{bottom:457.336650px;}
.y160{bottom:457.694513px;}
.y161{bottom:457.695900px;}
.y19d{bottom:458.055150px;}
.y24{bottom:461.119838px;}
.y1d9{bottom:464.161088px;}
.y11f{bottom:469.576050px;}
.ya4{bottom:469.936950px;}
.y6b{bottom:470.292413px;}
.ye3{bottom:470.296200px;}
.y3{bottom:470.655450px;}
.y19c{bottom:471.375713px;}
.y23{bottom:473.175150px;}
.y200{bottom:476.417625px;}
.y1d8{bottom:477.125962px;}
.ya3{bottom:482.526263px;}
.y6a{bottom:482.896350px;}
.ye2{bottom:483.250237px;}
.y2{bottom:483.614850px;}
.y15f{bottom:483.974363px;}
.y19b{bottom:484.336650px;}
.y22{bottom:486.134550px;}
.y1ff{bottom:489.558413px;}
.y1d7{bottom:490.090838px;}
.y11e{bottom:495.850388px;}
.ya2{bottom:495.852075px;}
.y68{bottom:496.211325px;}
.y69{bottom:496.216800px;}
.ye1{bottom:496.576050px;}
.y15e{bottom:496.934025px;}
.y19a{bottom:497.294663px;}
.y1fe{bottom:502.330087px;}
.y1d6{bottom:503.411175px;}
.ya1{bottom:508.816950px;}
.y11d{bottom:509.170875px;}
.y67{bottom:509.176200px;}
.ye0{bottom:509.535450px;}
.y15d{bottom:509.894962px;}
.y199{bottom:510.255600px;}
.y1fd{bottom:515.650575px;}
.y1d5{bottom:516.376050px;}
.y1{bottom:516.735450px;}
.ya0{bottom:521.776500px;}
.y11c{bottom:522.130238px;}
.y66{bottom:522.137400px;}
.ydf{bottom:522.855900px;}
.y198{bottom:523.215150px;}
.y1fc{bottom:528.615450px;}
.y1d4{bottom:529.696500px;}
.y9f{bottom:534.732225px;}
.y65{bottom:535.091475px;}
.y11b{bottom:535.456050px;}
.yde{bottom:535.815300px;}
.y15c{bottom:536.174813px;}
.y197{bottom:536.535713px;}
.y1fb{bottom:541.569487px;}
.y1d3{bottom:542.655900px;}
.y9e{bottom:547.686262px;}
.y64{bottom:548.041688px;}
.y119{bottom:548.406450px;}
.y11a{bottom:548.415600px;}
.ydd{bottom:548.771025px;}
.y15b{bottom:549.138337px;}
.y196{bottom:549.496650px;}
.y1fa{bottom:554.895300px;}
.y1d2{bottom:555.595462px;}
.y9d{bottom:560.651138px;}
.y63{bottom:561.006562px;}
.y118{bottom:561.371325px;}
.ydc{bottom:561.735900px;}
.y15a{bottom:562.099275px;}
.y195{bottom:562.456050px;}
.y194{bottom:562.460062px;}
.y1f9{bottom:567.845512px;}
.y1d1{bottom:568.560338px;}
.y62{bottom:573.971437px;}
.y9c{bottom:573.973162px;}
.y116{bottom:574.330725px;}
.y117{bottom:574.336200px;}
.ydb{bottom:574.695450px;}
.y159{bottom:575.060212px;}
.y193{bottom:575.774963px;}
.y1f8{bottom:580.810387px;}
.y1d0{bottom:581.525212px;}
.y9b{bottom:586.571625px;}
.y115{bottom:587.295600px;}
.y61{bottom:587.297250px;}
.yda{bottom:587.640188px;}
.y158{bottom:588.376650px;}
.y192{bottom:588.735900px;}
.y1f7{bottom:594.136200px;}
.y1cf{bottom:594.851025px;}
.y9a{bottom:599.536500px;}
.y60{bottom:600.256800px;}
.y114{bottom:600.616050px;}
.yd9{bottom:600.966000px;}
.y157{bottom:601.334662px;}
.y191{bottom:601.699313px;}
.y1f6{bottom:607.090275px;}
.y1ce{bottom:607.812112px;}
.y99{bottom:612.850500px;}
.y5f{bottom:612.856950px;}
.y113{bottom:613.575450px;}
.yd8{bottom:613.930875px;}
.y156{bottom:614.295600px;}
.y190{bottom:615.015750px;}
.y1f5{bottom:620.055150px;}
.y1cd{bottom:620.416050px;}
.y98{bottom:625.457250px;}
.y5e{bottom:625.816350px;}
.y111{bottom:626.529487px;}
.y112{bottom:626.535000px;}
.yd7{bottom:626.890425px;}
.y155{bottom:627.255150px;}
.y18f{bottom:627.975300px;}
.y1f4{bottom:633.010837px;}
.y1cc{bottom:633.725662px;}
.y97{bottom:638.416650px;}
.y5d{bottom:638.766750px;}
.yd6{bottom:639.855300px;}
.y154{bottom:640.575450px;}
.y18e{bottom:640.934813px;}
.y1f3{bottom:646.336650px;}
.y1cb{bottom:647.051475px;}
.y5c{bottom:651.731625px;}
.y96{bottom:651.736950px;}
.y95{bottom:651.738750px;}
.y110{bottom:652.811025px;}
.yd5{bottom:653.170275px;}
.y153{bottom:653.538975px;}
.y18d{bottom:653.895750px;}
.y1f2{bottom:659.290725px;}
.y1ca{bottom:660.016350px;}
.y5b{bottom:664.696500px;}
.y10f{bottom:665.775900px;}
.yd4{bottom:666.135150px;}
.y152{bottom:666.499912px;}
.y18c{bottom:667.214663px;}
.y1f1{bottom:672.230287px;}
.y1c9{bottom:672.975750px;}
.y5a{bottom:677.655900px;}
.yd2{bottom:679.090875px;}
.yd3{bottom:679.096200px;}
.y151{bottom:679.816350px;}
.y150{bottom:679.818825px;}
.y18b{bottom:680.175600px;}
.y18a{bottom:680.180700px;}
.y1f0{bottom:685.195162px;}
.y1c8{bottom:685.924462px;}
.y59{bottom:690.611625px;}
.y94{bottom:690.617100px;}
.yd1{bottom:692.055750px;}
.y14f{bottom:693.135262px;}
.y189{bottom:693.497138px;}
.y1ef{bottom:698.520975px;}
.y1c7{bottom:698.889338px;}
.y58{bottom:703.576500px;}
.y93{bottom:703.578300px;}
.y10e{bottom:705.015150px;}
.yd0{bottom:705.365212px;}
.y14e{bottom:706.096200px;}
.y188{bottom:706.458075px;}
.y1ee{bottom:711.485850px;}
.y1c6{bottom:712.215150px;}
.y57{bottom:716.526900px;}
.y92{bottom:716.539350px;}
.y10d{bottom:718.324763px;}
.ycf{bottom:718.330087px;}
.y14d{bottom:719.055750px;}
.y187{bottom:719.774513px;}
.y1ed{bottom:724.450725px;}
.y1c5{bottom:725.170875px;}
.y90{bottom:729.490650px;}
.y56{bottom:729.491775px;}
.y91{bottom:729.497100px;}
.y10c{bottom:731.289638px;}
.yce{bottom:731.655900px;}
.y14c{bottom:732.380062px;}
.y186{bottom:732.739312px;}
.y1ec{bottom:737.415600px;}
.y1c4{bottom:738.135750px;}
.y8f{bottom:742.097400px;}
.y55{bottom:742.447500px;}
.ycd{bottom:744.604575px;}
.y10b{bottom:744.604613px;}
.y14b{bottom:745.696500px;}
.y185{bottom:746.054213px;}
.y1ea{bottom:750.730575px;}
.y1eb{bottom:750.735900px;}
.y1c3{bottom:751.095150px;}
.y54{bottom:755.412375px;}
.y8e{bottom:755.416050px;}
.ycc{bottom:757.930387px;}
.y10a{bottom:757.930425px;}
.y14a{bottom:758.655900px;}
.y184{bottom:759.015150px;}
.y1e9{bottom:763.679100px;}
.y1c2{bottom:764.056350px;}
.y8c{bottom:768.366450px;}
.y53{bottom:768.371775px;}
.y8d{bottom:768.377250px;}
.y109{bottom:770.895300px;}
.ycb{bottom:771.239887px;}
.y149{bottom:771.617512px;}
.y183{bottom:772.334325px;}
.y1e8{bottom:777.004913px;}
.y1c1{bottom:777.376650px;}
.y52{bottom:781.331325px;}
.yca{bottom:784.204763px;}
.y108{bottom:784.210275px;}
.y148{bottom:784.756200px;}
.y182{bottom:785.295262px;}
.y1c0{bottom:790.330687px;}
.y1e7{bottom:790.330725px;}
.y8b{bottom:794.292375px;}
.y51{bottom:794.296200px;}
.yc9{bottom:797.169637px;}
.y107{bottom:797.175150px;}
.y147{bottom:797.895300px;}
.y181{bottom:798.256200px;}
.y1e6{bottom:803.295600px;}
.y1bf{bottom:803.656500px;}
.y50{bottom:807.242775px;}
.y8a{bottom:807.257250px;}
.yc8{bottom:810.495450px;}
.y146{bottom:810.858713px;}
.y180{bottom:811.578975px;}
.y1e5{bottom:815.181263px;}
.y1be{bottom:816.616050px;}
.y4f{bottom:820.207650px;}
.y89{bottom:820.216800px;}
.yc7{bottom:823.451175px;}
.y145{bottom:824.175150px;}
.y17f{bottom:824.539912px;}
.y1bd{bottom:829.570087px;}
.y1e4{bottom:829.575450px;}
.y4e{bottom:833.172525px;}
.y88{bottom:833.176200px;}
.yc6{bottom:836.405213px;}
.y106{bottom:836.410725px;}
.y144{bottom:837.136200px;}
.y17e{bottom:837.856350px;}
.y1e3{bottom:842.525662px;}
.y1bc{bottom:842.895900px;}
.y4d{bottom:846.130238px;}
.y87{bottom:846.137400px;}
.yc5{bottom:849.370088px;}
.y143{bottom:850.103625px;}
.y17d{bottom:850.819763px;}
.y1e2{bottom:855.490537px;}
.y1bb{bottom:855.844463px;}
.y4b{bottom:859.452412px;}
.y4c{bottom:859.456050px;}
.y105{bottom:862.686750px;}
.yc4{bottom:862.695900px;}
.y142{bottom:863.420063px;}
.y17c{bottom:864.134812px;}
.y1ba{bottom:868.809338px;}
.y1e1{bottom:868.816350px;}
.y4a{bottom:872.050837px;}
.y86{bottom:872.056350px;}
.y104{bottom:875.651625px;}
.yc3{bottom:875.655450px;}
.y141{bottom:876.736500px;}
.y17b{bottom:877.094475px;}
.y1e0{bottom:881.775900px;}
.y1b9{bottom:882.135150px;}
.y85{bottom:885.367500px;}
.y49{bottom:885.376650px;}
.y103{bottom:888.598650px;}
.yc2{bottom:888.966600px;}
.y140{bottom:889.698375px;}
.y17a{bottom:890.055412px;}
.y1b8{bottom:895.083675px;}
.y1de{bottom:895.090875px;}
.y1df{bottom:895.096200px;}
.y48{bottom:898.332375px;}
.y102{bottom:901.924463px;}
.yc1{bottom:901.931475px;}
.y13f{bottom:902.659312px;}
.y179{bottom:903.020212px;}
.y1dd{bottom:908.055750px;}
.y1b7{bottom:908.409487px;}
.y84{bottom:911.284950px;}
.y47{bottom:911.297250px;}
.yc0{bottom:914.896350px;}
.y101{bottom:915.250275px;}
.y13e{bottom:915.979763px;}
.y178{bottom:916.335262px;}
.y1dc{bottom:921.377213px;}
.y1b6{bottom:921.735300px;}
.ybf{bottom:928.215150px;}
.y13d{bottom:929.296200px;}
.h17{height:38.329102px;}
.h47{height:40.816406px;}
.h4b{height:41.458008px;}
.h43{height:42.249023px;}
.h61{height:43.407349px;}
.h4c{height:44.143066px;}
.h14{height:44.595703px;}
.h6e{height:44.878784px;}
.h12{height:45.351562px;}
.h4a{height:45.614502px;}
.h11{height:46.107422px;}
.h16{height:46.110122px;}
.h60{height:46.350220px;}
.h37{height:47.085938px;}
.h4d{height:47.437500px;}
.h15{height:47.619141px;}
.h38{height:49.661133px;}
.h24{height:50.142630px;}
.h13{height:50.844727px;}
.h32{height:51.626953px;}
.h56{height:52.261963px;}
.h2d{height:52.998047px;}
.h6f{height:54.755859px;}
.h1c{height:55.206299px;}
.h2f{height:56.650269px;}
.h2{height:56.678467px;}
.hd{height:56.684767px;}
.h46{height:56.685967px;}
.hf{height:56.689453px;}
.h19{height:56.693017px;}
.h35{height:56.693167px;}
.h2a{height:56.693617px;}
.he{height:56.693767px;}
.hb{height:56.699767px;}
.h3e{height:56.699917px;}
.h1e{height:56.700367px;}
.h25{height:56.700517px;}
.h6a{height:56.706517px;}
.h8{height:56.706667px;}
.h26{height:56.707117px;}
.h9{height:56.708167px;}
.h40{height:56.714917px;}
.h28{height:56.715067px;}
.h41{height:56.715517px;}
.h1d{height:56.721667px;}
.h34{height:56.721817px;}
.h3c{height:56.721967px;}
.hc{height:56.728567px;}
.h27{height:56.736367px;}
.h65{height:56.736517px;}
.h29{height:56.737117px;}
.h3b{height:56.743717px;}
.h68{height:56.743867px;}
.h42{height:56.749867px;}
.h64{height:56.758417px;}
.h69{height:56.779717px;}
.h5b{height:57.102539px;}
.ha{height:57.385986px;}
.h20{height:57.414551px;}
.h1f{height:57.884766px;}
.h2e{height:58.150635px;}
.h54{height:58.155735px;}
.h53{height:58.156185px;}
.h58{height:58.156335px;}
.h52{height:58.156785px;}
.h5f{height:58.162335px;}
.h59{height:58.170735px;}
.h5e{height:58.171785px;}
.h57{height:58.176285px;}
.h55{height:58.177335px;}
.h5d{height:58.177785px;}
.h5a{height:58.182885px;}
.h18{height:58.201172px;}
.h33{height:58.857422px;}
.h45{height:58.886719px;}
.h1a{height:58.957031px;}
.h10{height:59.449219px;}
.h31{height:59.593140px;}
.h3f{height:59.622803px;}
.h44{height:60.328857px;}
.h49{height:60.358887px;}
.h2c{height:60.468750px;}
.h7{height:60.779297px;}
.h3d{height:61.520508px;}
.h1b{height:62.261719px;}
.h66{height:62.567139px;}
.h5c{height:62.736328px;}
.h30{height:63.002930px;}
.h67{height:63.271729px;}
.h6c{height:64.039307px;}
.h51{height:64.248047px;}
.h3{height:64.775391px;}
.h6d{height:65.478882px;}
.h6b{height:66.247559px;}
.h5{height:67.686035px;}
.h2b{height:68.053711px;}
.h4{height:68.455811px;}
.h6{height:69.157471px;}
.h36{height:72.836060px;}
.h70{height:75.093750px;}
.h4e{height:75.585938px;}
.h21{height:76.341797px;}
.h22{height:77.085938px;}
.h48{height:128.078613px;}
.h3a{height:976.500000px;}
.h39{height:976.591050px;}
.h63{height:977.250000px;}
.h62{height:977.312550px;}
.h23{height:977.672550px;}
.h1{height:978.000000px;}
.h0{height:978.032550px;}
.h50{height:981.000000px;}
.h4f{height:981.272550px;}
.w9{width:651.750000px;}
.w8{width:651.871050px;}
.w5{width:652.500000px;}
.w4{width:652.591050px;}
.w6{width:656.912550px;}
.w7{width:657.000000px;}
.w2{width:659.791050px;}
.w3{width:660.000000px;}
.w0{width:662.672550px;}
.w1{width:663.000000px;}
.x0{left:0.000000px;}
.x66{left:58.455600px;}
.x67{left:59.894850px;}
.x9d{left:61.682475px;}
.x90{left:62.776500px;}
.x8e{left:63.855900px;}
.xd{left:66.027000px;}
.x1{left:67.097400px;}
.x37{left:73.583100px;}
.x34{left:74.657287px;}
.x85{left:76.456050px;}
.x83{left:77.544075px;}
.x65{left:78.616500px;}
.x11{left:80.416050px;}
.x8f{left:82.931963px;}
.x9{left:85.816350px;}
.xe{left:87.256800px;}
.x9e{left:89.415600px;}
.x31{left:93.736500px;}
.x12{left:94.817550px;}
.x13{left:97.696500px;}
.xa1{left:102.735900px;}
.xc{left:107.776950px;}
.x69{left:109.576500px;}
.x41{left:111.735300px;}
.xa{left:112.816500px;}
.x3f{left:119.655450px;}
.x32{left:123.615450px;}
.x39{left:127.936350px;}
.x2e{left:129.017400px;}
.x14{left:130.096800px;}
.x40{left:132.975750px;}
.x42{left:134.416050px;}
.xa2{left:136.576500px;}
.x7d{left:140.536500px;}
.x9b{left:142.336200px;}
.x6a{left:152.775900px;}
.x15{left:154.936350px;}
.x19{left:156.737550px;}
.x9c{left:161.416050px;}
.x97{left:165.016800px;}
.x16{left:168.616050px;}
.x6b{left:172.935300px;}
.x5e{left:175.815900px;}
.x68{left:180.136800px;}
.x6c{left:184.456050px;}
.x35{left:185.535450px;}
.x98{left:186.616500px;}
.x38{left:193.816500px;}
.x33{left:197.056350px;}
.x1c{left:202.817550px;}
.x6d{left:204.256200px;}
.x9f{left:205.335600px;}
.x36{left:206.416650px;}
.xf{left:220.096200px;}
.x3a{left:222.975300px;}
.xa0{left:224.776500px;}
.x1d{left:226.936950px;}
.x81{left:234.496050px;}
.x10{left:238.456050px;}
.x3b{left:242.416050px;}
.x2{left:244.217250px;}
.x82{left:247.455450px;}
.x1e{left:249.256800px;}
.x1a{left:252.857550px;}
.x3{left:255.377250px;}
.x17{left:257.176800px;}
.x1b{left:262.577100px;}
.x3d{left:267.255600px;}
.x5f{left:273.016800px;}
.x7f{left:274.455450px;}
.xb{left:286.696500px;}
.x80{left:291.376650px;}
.x3e{left:300.016800px;}
.x4{left:304.697100px;}
.x18{left:305.776500px;}
.x99{left:307.935300px;}
.x3c{left:314.055750px;}
.x84{left:317.656500px;}
.x5{left:325.937400px;}
.x6e{left:328.455450px;}
.x79{left:329.536500px;}
.xa3{left:330.975300px;}
.x94{left:332.058937px;}
.x91{left:333.145613px;}
.x2d{left:334.936950px;}
.x1f{left:336.016350px;}
.x43{left:343.205438px;}
.x54{left:344.295600px;}
.x8a{left:345.380925px;}
.x88{left:346.456050px;}
.x76{left:347.531550px;}
.xa4{left:350.431050px;}
.x92{left:352.576500px;}
.x74{left:358.695450px;}
.x49{left:361.576050px;}
.x86{left:365.884875px;}
.x55{left:367.696500px;}
.x24{left:369.136800px;}
.xa5{left:370.216200px;}
.x48{left:372.015750px;}
.x75{left:373.815300px;}
.x61{left:377.416050px;}
.x4c{left:382.455600px;}
.x9a{left:384.256800px;}
.x28{left:387.137400px;}
.x4f{left:393.256200px;}
.x52{left:395.775900px;}
.x5a{left:398.656500px;}
.x25{left:403.697550px;}
.x29{left:405.856350px;}
.x6{left:407.296650px;}
.x93{left:410.175600px;}
.x53{left:413.415600px;}
.x46{left:416.655450px;}
.xa6{left:418.095750px;}
.x26{left:426.737550px;}
.x47{left:430.336650px;}
.x71{left:435.016800px;}
.x27{left:440.776500px;}
.x5b{left:453.015750px;}
.x72{left:454.456050px;}
.x59{left:458.056800px;}
.x44{left:462.735450px;}
.x2a{left:466.336200px;}
.x7{left:469.576050px;}
.x57{left:475.696500px;}
.x2b{left:479.656500px;}
.x5c{left:483.975750px;}
.x6f{left:485.056800px;}
.x45{left:487.215600px;}
.x50{left:489.016800px;}
.x8{left:490.816500px;}
.x4d{left:492.975300px;}
.x7c{left:494.776500px;}
.x78{left:496.935300px;}
.x51{left:498.375600px;}
.x70{left:499.456650px;}
.x22{left:501.256200px;}
.x87{left:502.335600px;}
.x62{left:506.656500px;}
.x4a{left:509.535450px;}
.x60{left:510.616500px;}
.x20{left:512.416050px;}
.x4e{left:513.856350px;}
.x95{left:516.016800px;}
.x23{left:519.976950px;}
.x8c{left:521.056350px;}
.x96{left:526.815900px;}
.x4b{left:530.775900px;}
.x21{left:534.376650px;}
.x63{left:539.416050px;}
.x56{left:543.735450px;}
.x64{left:547.336200px;}
.x8d{left:549.496650px;}
.x7a{left:550.576050px;}
.x89{left:552.375600px;}
.x2c{left:559.216200px;}
.x7e{left:560.656500px;}
.x73{left:561.735900px;}
.x77{left:564.616500px;}
.x2f{left:567.856350px;}
.x7b{left:572.175600px;}
.x30{left:578.657100px;}
.x8b{left:581.536050px;}
.x58{left:586.216200px;}
.x5d{left:589.456050px;}
@media print{
.v1{vertical-align:-1.283200pt;}
.v0{vertical-align:0.000000pt;}
.ls59{letter-spacing:-42.804000pt;}
.ls57{letter-spacing:-13.816800pt;}
.ls41{letter-spacing:-10.513067pt;}
.ls84{letter-spacing:-9.143467pt;}
.ls10{letter-spacing:-9.112933pt;}
.ls13{letter-spacing:-8.357067pt;}
.ls58{letter-spacing:-6.565533pt;}
.ls71{letter-spacing:-6.346333pt;}
.ls19{letter-spacing:-6.152000pt;}
.ls27{letter-spacing:-5.970067pt;}
.ls56{letter-spacing:-5.369467pt;}
.ls74{letter-spacing:-5.077067pt;}
.ls42{letter-spacing:-4.948533pt;}
.ls5f{letter-spacing:-4.923733pt;}
.ls55{letter-spacing:-4.774000pt;}
.ls16{letter-spacing:-4.668533pt;}
.ls70{letter-spacing:-4.439800pt;}
.ls54{letter-spacing:-4.178533pt;}
.ls85{letter-spacing:-4.066667pt;}
.ls6e{letter-spacing:-3.807800pt;}
.ls3a{letter-spacing:-3.711400pt;}
.ls25{letter-spacing:-3.583067pt;}
.ls6b{letter-spacing:-3.170533pt;}
.ls3f{letter-spacing:-3.090267pt;}
.ls51{letter-spacing:-2.982467pt;}
.ls87{letter-spacing:-2.712467pt;}
.ls53{letter-spacing:-2.701800pt;}
.ls15{letter-spacing:-2.674467pt;}
.ls1a{letter-spacing:-2.667733pt;}
.ls72{letter-spacing:-2.538533pt;}
.ls22{letter-spacing:-2.535867pt;}
.ls3b{letter-spacing:-2.474267pt;}
.ls50{letter-spacing:-2.407000pt;}
.ls8{letter-spacing:-2.387000pt;}
.lsc{letter-spacing:-2.330667pt;}
.ls40{letter-spacing:-2.304867pt;}
.ls14{letter-spacing:-2.150000pt;}
.ls73{letter-spacing:-2.087800pt;}
.ls1b{letter-spacing:-2.068000pt;}
.ls83{letter-spacing:-2.033333pt;}
.ls18{letter-spacing:-2.000800pt;}
.ls47{letter-spacing:-1.976000pt;}
.ls69{letter-spacing:-1.901267pt;}
.ls38{letter-spacing:-1.853133pt;}
.ls11{letter-spacing:-1.791533pt;}
.ls2a{letter-spacing:-1.449000pt;}
.ls3c{letter-spacing:-1.445600pt;}
.ls88{letter-spacing:-1.431733pt;}
.ls52{letter-spacing:-1.350067pt;}
.ls1e{letter-spacing:-1.333867pt;}
.ls46{letter-spacing:-1.315600pt;}
.ls67{letter-spacing:-1.269267pt;}
.ls39{letter-spacing:-1.237133pt;}
.lsf{letter-spacing:-1.196067pt;}
.ls6a{letter-spacing:-0.945000pt;}
.ls1d{letter-spacing:-0.751800pt;}
.ls80{letter-spacing:-0.722800pt;}
.ls29{letter-spacing:-0.722400pt;}
.ls81{letter-spacing:-0.702000pt;}
.lsb{letter-spacing:-0.694400pt;}
.ls7d{letter-spacing:-0.690000pt;}
.ls4d{letter-spacing:-0.682733pt;}
.ls82{letter-spacing:-0.679133pt;}
.ls17{letter-spacing:-0.666933pt;}
.ls43{letter-spacing:-0.660400pt;}
.ls26{letter-spacing:-0.641667pt;}
.ls68{letter-spacing:-0.637267pt;}
.ls86{letter-spacing:-0.636000pt;}
.ls37{letter-spacing:-0.621133pt;}
.lsa{letter-spacing:-0.595467pt;}
.ls3e{letter-spacing:-0.591600pt;}
.ls9{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.595467pt;}
.ls21{letter-spacing:0.597867pt;}
.ls28{letter-spacing:0.603200pt;}
.ls2b{letter-spacing:0.621133pt;}
.ls61{letter-spacing:0.637267pt;}
.ls4{letter-spacing:0.639600pt;}
.ls30{letter-spacing:0.660400pt;}
.ls5{letter-spacing:0.666933pt;}
.ls75{letter-spacing:0.673333pt;}
.ls77{letter-spacing:0.679133pt;}
.ls7b{letter-spacing:0.715867pt;}
.lsd{letter-spacing:0.720667pt;}
.ls5e{letter-spacing:0.728000pt;}
.ls7e{letter-spacing:0.741667pt;}
.ls7c{letter-spacing:0.756800pt;}
.lse{letter-spacing:0.778933pt;}
.ls6{letter-spacing:1.196067pt;}
.ls2d{letter-spacing:1.237133pt;}
.ls1c{letter-spacing:1.250800pt;}
.ls63{letter-spacing:1.269267pt;}
.ls35{letter-spacing:1.315600pt;}
.ls6d{letter-spacing:1.315867pt;}
.ls7{letter-spacing:1.333867pt;}
.ls7a{letter-spacing:1.354200pt;}
.ls5d{letter-spacing:1.413333pt;}
.ls89{letter-spacing:1.491200pt;}
.ls7f{letter-spacing:1.507867pt;}
.ls1f{letter-spacing:1.533133pt;}
.ls0{letter-spacing:1.791533pt;}
.ls2e{letter-spacing:1.853133pt;}
.ls62{letter-spacing:1.901267pt;}
.ls12{letter-spacing:1.924000pt;}
.ls5a{letter-spacing:1.973467pt;}
.ls45{letter-spacing:1.976000pt;}
.ls5b{letter-spacing:2.025000pt;}
.ls4c{letter-spacing:2.028000pt;}
.ls23{letter-spacing:2.168400pt;}
.ls20{letter-spacing:2.178867pt;}
.ls5c{letter-spacing:2.256800pt;}
.ls1{letter-spacing:2.387000pt;}
.ls2c{letter-spacing:2.474267pt;}
.ls4a{letter-spacing:2.537600pt;}
.ls64{letter-spacing:2.538533pt;}
.ls49{letter-spacing:2.922667pt;}
.ls4f{letter-spacing:2.982467pt;}
.ls76{letter-spacing:3.090267pt;}
.ls65{letter-spacing:3.170533pt;}
.ls31{letter-spacing:3.291600pt;}
.ls79{letter-spacing:3.387533pt;}
.ls2f{letter-spacing:3.711400pt;}
.ls66{letter-spacing:3.807800pt;}
.ls34{letter-spacing:3.946800pt;}
.ls78{letter-spacing:4.066667pt;}
.ls60{letter-spacing:4.213333pt;}
.ls4b{letter-spacing:4.666200pt;}
.ls6c{letter-spacing:4.912000pt;}
.ls4e{letter-spacing:5.075400pt;}
.ls36{letter-spacing:5.564533pt;}
.ls44{letter-spacing:5.600400pt;}
.ls48{letter-spacing:5.969600pt;}
.ls6f{letter-spacing:6.346333pt;}
.ls33{letter-spacing:7.898800pt;}
.ls3d{letter-spacing:8.387600pt;}
.ls32{letter-spacing:9.214400pt;}
.ls3{letter-spacing:9.553133pt;}
.ls24{letter-spacing:10.029600pt;}
.ws0{word-spacing:0.000000pt;}
._15{margin-left:-40.410067pt;}
._31{margin-left:-34.134040pt;}
._37{margin-left:-31.640890pt;}
._38{margin-left:-25.902723pt;}
._12{margin-left:-22.957341pt;}
._36{margin-left:-21.109498pt;}
._28{margin-left:-18.231200pt;}
._17{margin-left:-15.752171pt;}
._39{margin-left:-13.709362pt;}
._3a{margin-left:-12.100875pt;}
._32{margin-left:-10.403237pt;}
._29{margin-left:-9.240400pt;}
._34{margin-left:-5.712684pt;}
._18{margin-left:-4.277022pt;}
._1b{margin-left:-3.110800pt;}
._11{margin-left:-2.197902pt;}
._0{margin-left:-0.975333pt;}
._1c{width:1.129333pt;}
._a{width:2.120067pt;}
._f{width:3.159626pt;}
._9{width:4.158000pt;}
._1{width:5.749333pt;}
._2{width:6.896812pt;}
._b{width:8.572667pt;}
._d{width:9.861133pt;}
._c{width:11.557521pt;}
._8{width:13.023267pt;}
._5{width:14.522200pt;}
._7{width:15.638998pt;}
._10{width:16.730711pt;}
._14{width:18.377333pt;}
._e{width:19.778136pt;}
._6{width:20.983634pt;}
._22{width:21.970667pt;}
._13{width:23.093689pt;}
._3{width:24.042667pt;}
._4{width:25.123369pt;}
._19{width:26.477733pt;}
._1e{width:27.986933pt;}
._27{width:29.321600pt;}
._1a{width:30.408402pt;}
._1d{width:32.032000pt;}
._16{width:32.950260pt;}
._1f{width:34.064800pt;}
._25{width:35.452655pt;}
._21{width:37.207204pt;}
._2e{width:38.401044pt;}
._2f{width:39.629333pt;}
._3b{width:40.799177pt;}
._23{width:41.821267pt;}
._20{width:43.404251pt;}
._2a{width:44.575240pt;}
._2b{width:45.662354pt;}
._35{width:47.168267pt;}
._2c{width:49.784537pt;}
._2d{width:51.323645pt;}
._24{width:54.528679pt;}
._33{width:56.521867pt;}
._26{width:60.568200pt;}
._30{width:65.451671pt;}
.fse{font-size:32.666667pt;}
.fs23{font-size:35.333333pt;}
.fs20{font-size:36.000000pt;}
.fs1f{font-size:38.000000pt;}
.fsc{font-size:39.333333pt;}
.fsa{font-size:40.000000pt;}
.fs9{font-size:40.666667pt;}
.fs22{font-size:41.333333pt;}
.fsd{font-size:42.000000pt;}
.fs1c{font-size:42.666667pt;}
.fsb{font-size:43.333333pt;}
.fs1a{font-size:44.000000pt;}
.fs1d{font-size:44.666667pt;}
.fs13{font-size:45.413867pt;}
.fs2a{font-size:46.666667pt;}
.fs25{font-size:47.333333pt;}
.fs16{font-size:48.000000pt;}
.fs26{font-size:48.666667pt;}
.fs10{font-size:49.333333pt;}
.fs7{font-size:50.000000pt;}
.fs8{font-size:50.666667pt;}
.fs0{font-size:51.333333pt;}
.fs6{font-size:52.000000pt;}
.fs17{font-size:52.666667pt;}
.fs15{font-size:53.333333pt;}
.fs19{font-size:54.000000pt;}
.fs5{font-size:54.666667pt;}
.fs1e{font-size:55.333333pt;}
.fsf{font-size:56.000000pt;}
.fs18{font-size:56.666667pt;}
.fs27{font-size:57.333333pt;}
.fs14{font-size:58.000000pt;}
.fs1{font-size:58.666667pt;}
.fs29{font-size:59.333333pt;}
.fs28{font-size:60.000000pt;}
.fs3{font-size:61.333333pt;}
.fs2{font-size:62.000000pt;}
.fs4{font-size:62.666667pt;}
.fs2b{font-size:64.000000pt;}
.fs1b{font-size:66.000000pt;}
.fs24{font-size:66.666667pt;}
.fs11{font-size:67.333333pt;}
.fs12{font-size:69.333333pt;}
.fs21{font-size:116.000000pt;}
.y0{bottom:0.000000pt;}
.ybe{bottom:55.161200pt;}
.y45{bottom:58.679733pt;}
.y46{bottom:59.640667pt;}
.y1b5{bottom:66.361333pt;}
.y13c{bottom:67.960933pt;}
.y226{bottom:68.280267pt;}
.ybd{bottom:85.241733pt;}
.y20{bottom:89.719133pt;}
.y21{bottom:89.719733pt;}
.ybb{bottom:96.757933pt;}
.y1b4{bottom:96.758600pt;}
.ybc{bottom:96.761200pt;}
.y177{bottom:97.075967pt;}
.y100{bottom:97.396600pt;}
.y13b{bottom:97.403700pt;}
.y1f{bottom:98.360800pt;}
.y44{bottom:100.920000pt;}
.y212{bottom:105.404867pt;}
.y1e{bottom:107.000533pt;}
.y224{bottom:107.956600pt;}
.y225{bottom:107.961467pt;}
.y1b3{bottom:108.121433pt;}
.y175{bottom:108.279433pt;}
.y176{bottom:108.280800pt;}
.yba{bottom:108.282267pt;}
.y13a{bottom:108.763567pt;}
.yff{bottom:108.920933pt;}
.y43{bottom:112.440933pt;}
.y211{bottom:113.721200pt;}
.y210{bottom:113.723667pt;}
.y1c{bottom:115.638067pt;}
.y1d{bottom:115.640133pt;}
.yb9{bottom:119.480933pt;}
.y174{bottom:119.800500pt;}
.y138{bottom:120.108233pt;}
.yfe{bottom:120.116333pt;}
.y139{bottom:120.121067pt;}
.y20f{bottom:122.040000pt;}
.y41{bottom:123.636333pt;}
.y42{bottom:123.639733pt;}
.y1b{bottom:124.279733pt;}
.y20e{bottom:130.681200pt;}
.yb7{bottom:130.997133pt;}
.yb8{bottom:131.002000pt;}
.y137{bottom:131.311733pt;}
.y1b2{bottom:131.316633pt;}
.y173{bottom:131.319967pt;}
.yfd{bottom:131.640667pt;}
.y1a{bottom:132.600133pt;}
.y40{bottom:135.160667pt;}
.y20c{bottom:139.318867pt;}
.y20d{bottom:139.320800pt;}
.y223{bottom:142.041067pt;}
.y222{bottom:142.200667pt;}
.yb6{bottom:142.521467pt;}
.y172{bottom:142.833633pt;}
.yfc{bottom:142.836067pt;}
.y3e{bottom:146.356100pt;}
.y3f{bottom:146.360800pt;}
.y20b{bottom:147.960533pt;}
.y220{bottom:153.716867pt;}
.y221{bottom:153.720267pt;}
.yb5{bottom:153.721733pt;}
.y1b1{bottom:154.200667pt;}
.y136{bottom:154.352300pt;}
.y171{bottom:154.354467pt;}
.yfb{bottom:154.360400pt;}
.y3d{bottom:157.559600pt;}
.y83{bottom:165.233067pt;}
.y21f{bottom:165.236467pt;}
.yb4{bottom:165.241200pt;}
.y135{bottom:165.555800pt;}
.y1b0{bottom:165.559300pt;}
.y170{bottom:165.875300pt;}
.yfa{bottom:165.876600pt;}
.y3c{bottom:169.077300pt;}
.y82{bottom:176.757400pt;}
.y21e{bottom:176.760800pt;}
.yb3{bottom:176.762267pt;}
.y134{bottom:177.080133pt;}
.yf9{bottom:177.400933pt;}
.y19{bottom:178.676333pt;}
.y3b{bottom:180.275933pt;}
.y21d{bottom:187.956200pt;}
.yb2{bottom:188.268900pt;}
.y81{bottom:188.277000pt;}
.y132{bottom:188.596333pt;}
.y1af{bottom:188.598467pt;}
.y133{bottom:188.601067pt;}
.yf8{bottom:188.912267pt;}
.y20a{bottom:188.920400pt;}
.y18{bottom:190.200667pt;}
.y17{bottom:190.205733pt;}
.y3a{bottom:191.800267pt;}
.yb1{bottom:199.472400pt;}
.y21c{bottom:199.480533pt;}
.y7f{bottom:199.797967pt;}
.y80{bottom:199.801333pt;}
.y1ae{bottom:200.119300pt;}
.y131{bottom:200.120667pt;}
.yf7{bottom:200.436600pt;}
.y16{bottom:202.679733pt;}
.y39{bottom:202.990933pt;}
.y7e{bottom:210.996733pt;}
.y21b{bottom:211.001467pt;}
.y16f{bottom:211.635667pt;}
.y209{bottom:211.636867pt;}
.y130{bottom:211.640133pt;}
.yf6{bottom:211.960933pt;}
.y38{bottom:214.515267pt;}
.y15{bottom:215.155400pt;}
.y21a{bottom:222.516200pt;}
.y7d{bottom:222.521067pt;}
.y16e{bottom:222.840500pt;}
.y12f{bottom:223.161200pt;}
.yf5{bottom:223.477167pt;}
.y37{bottom:226.039600pt;}
.y14{bottom:226.679733pt;}
.y218{bottom:234.035800pt;}
.y219{bottom:234.040533pt;}
.y7c{bottom:234.042000pt;}
.y12e{bottom:234.356600pt;}
.y1ad{bottom:234.360100pt;}
.y16d{bottom:234.361333pt;}
.yf4{bottom:234.680667pt;}
.y35{bottom:237.557300pt;}
.y36{bottom:237.560533pt;}
.y13{bottom:239.480933pt;}
.y16c{bottom:245.558867pt;}
.y217{bottom:245.560133pt;}
.y1ac{bottom:245.876233pt;}
.y7b{bottom:245.880933pt;}
.yf3{bottom:246.192033pt;}
.y208{bottom:246.361333pt;}
.y34{bottom:248.760800pt;}
.y12{bottom:250.676333pt;}
.y216{bottom:257.076200pt;}
.y16b{bottom:257.079700pt;}
.y1ab{bottom:257.084500pt;}
.y12c{bottom:257.397033pt;}
.y7a{bottom:257.398500pt;}
.y12d{bottom:257.400400pt;}
.y207{bottom:257.711600pt;}
.yf2{bottom:257.716367pt;}
.y33{bottom:260.275533pt;}
.y11{bottom:262.199267pt;}
.y215{bottom:268.592433pt;}
.y16a{bottom:268.594833pt;}
.y12b{bottom:268.595800pt;}
.y79{bottom:268.602000pt;}
.y1aa{bottom:268.915300pt;}
.yf1{bottom:268.919867pt;}
.y206{bottom:269.235933pt;}
.y32{bottom:271.799867pt;}
.y10{bottom:275.314933pt;}
.y214{bottom:279.795933pt;}
.y169{bottom:280.115667pt;}
.y78{bottom:280.116700pt;}
.yb0{bottom:280.116733pt;}
.y1a9{bottom:280.120133pt;}
.yf0{bottom:280.432833pt;}
.y205{bottom:280.756900pt;}
.y31{bottom:283.000000pt;}
.yf{bottom:287.469800pt;}
.y213{bottom:291.320267pt;}
.y168{bottom:291.320500pt;}
.y12a{bottom:291.639400pt;}
.yaf{bottom:291.641067pt;}
.y203{bottom:291.957133pt;}
.yef{bottom:291.957167pt;}
.y204{bottom:291.960400pt;}
.y77{bottom:291.961867pt;}
.y30{bottom:294.519600pt;}
.ye{bottom:298.994133pt;}
.y129{bottom:301.886800pt;}
.y1a8{bottom:302.839967pt;}
.y167{bottom:302.841333pt;}
.y76{bottom:303.149167pt;}
.yee{bottom:303.160667pt;}
.yae{bottom:303.162133pt;}
.y202{bottom:303.481467pt;}
.y2f{bottom:306.356633pt;}
.yd{bottom:311.155400pt;}
.y166{bottom:314.035533pt;}
.y128{bottom:314.352700pt;}
.yad{bottom:314.357533pt;}
.y1a7{bottom:314.360800pt;}
.yed{bottom:314.667267pt;}
.y75{bottom:314.673500pt;}
.y2e{bottom:317.560133pt;}
.yc{bottom:322.679733pt;}
.y165{bottom:325.240367pt;}
.y127{bottom:325.556200pt;}
.y1a6{bottom:325.880400pt;}
.yac{bottom:325.881867pt;}
.yec{bottom:326.191600pt;}
.y74{bottom:326.197833pt;}
.y2c{bottom:329.076200pt;}
.y2d{bottom:329.079600pt;}
.y201{bottom:333.241200pt;}
.yb{bottom:334.200667pt;}
.y164{bottom:336.761200pt;}
.yab{bottom:337.069133pt;}
.y126{bottom:337.080533pt;}
.y73{bottom:337.393200pt;}
.yeb{bottom:337.395100pt;}
.y1a5{bottom:337.400100pt;}
.y2b{bottom:340.597300pt;}
.y9{bottom:346.673133pt;}
.ya{bottom:346.679733pt;}
.yaa{bottom:348.593467pt;}
.y125{bottom:348.600133pt;}
.y72{bottom:348.917533pt;}
.y1a4{bottom:348.920933pt;}
.y1a3{bottom:348.923133pt;}
.yea{bottom:349.240267pt;}
.y2a{bottom:351.800800pt;}
.y8{bottom:358.197467pt;}
.ye9{bottom:360.108200pt;}
.ya9{bottom:360.117800pt;}
.y124{bottom:360.121067pt;}
.y70{bottom:360.437133pt;}
.y71{bottom:360.441867pt;}
.y1a2{bottom:360.759967pt;}
.y29{bottom:363.960533pt;}
.y7{bottom:369.080133pt;}
.y123{bottom:371.316467pt;}
.ye8{bottom:371.632533pt;}
.y163{bottom:371.640667pt;}
.ya8{bottom:371.642133pt;}
.y6f{bottom:371.961467pt;}
.y1a1{bottom:372.280800pt;}
.y27{bottom:374.515667pt;}
.y28{bottom:374.520533pt;}
.y6{bottom:381.879867pt;}
.y122{bottom:382.836067pt;}
.ye7{bottom:383.156867pt;}
.ya7{bottom:383.161600pt;}
.y6e{bottom:383.480933pt;}
.y1a0{bottom:383.800267pt;}
.y19f{bottom:383.802467pt;}
.y26{bottom:386.040000pt;}
.y1db{bottom:389.560133pt;}
.y5{bottom:393.400933pt;}
.y121{bottom:394.360400pt;}
.ya6{bottom:394.677800pt;}
.ye6{bottom:394.681200pt;}
.y162{bottom:395.000533pt;}
.y6d{bottom:395.002000pt;}
.y19e{bottom:395.639300pt;}
.y25{bottom:397.559600pt;}
.y1da{bottom:401.081067pt;}
.y120{bottom:405.876600pt;}
.y4{bottom:406.194400pt;}
.ye4{bottom:406.195900pt;}
.ye5{bottom:406.200667pt;}
.ya5{bottom:406.202133pt;}
.y6c{bottom:406.521467pt;}
.y160{bottom:406.839567pt;}
.y161{bottom:406.840800pt;}
.y19d{bottom:407.160133pt;}
.y24{bottom:409.884300pt;}
.y1d9{bottom:412.587633pt;}
.y11f{bottom:417.400933pt;}
.ya4{bottom:417.721733pt;}
.y6b{bottom:418.037700pt;}
.ye3{bottom:418.041067pt;}
.y3{bottom:418.360400pt;}
.y19c{bottom:419.000633pt;}
.y23{bottom:420.600133pt;}
.y200{bottom:423.482333pt;}
.y1d8{bottom:424.111967pt;}
.ya3{bottom:428.912233pt;}
.y6a{bottom:429.241200pt;}
.ye2{bottom:429.555767pt;}
.y2{bottom:429.879867pt;}
.y15f{bottom:430.199433pt;}
.y19b{bottom:430.521467pt;}
.y22{bottom:432.119600pt;}
.y1ff{bottom:435.163033pt;}
.y1d7{bottom:435.636300pt;}
.y11e{bottom:440.755900pt;}
.ya2{bottom:440.757400pt;}
.y68{bottom:441.076733pt;}
.y69{bottom:441.081600pt;}
.ye1{bottom:441.400933pt;}
.y15e{bottom:441.719133pt;}
.y19a{bottom:442.039700pt;}
.y1fe{bottom:446.515633pt;}
.y1d6{bottom:447.476600pt;}
.ya1{bottom:452.281733pt;}
.y11d{bottom:452.596333pt;}
.y67{bottom:452.601067pt;}
.ye0{bottom:452.920400pt;}
.y15d{bottom:453.239967pt;}
.y199{bottom:453.560533pt;}
.y1fd{bottom:458.356067pt;}
.y1d5{bottom:459.000933pt;}
.y1{bottom:459.320400pt;}
.ya0{bottom:463.801333pt;}
.y11c{bottom:464.115767pt;}
.y66{bottom:464.122133pt;}
.ydf{bottom:464.760800pt;}
.y198{bottom:465.080133pt;}
.y1fc{bottom:469.880400pt;}
.y1d4{bottom:470.841333pt;}
.y9f{bottom:475.317533pt;}
.y65{bottom:475.636867pt;}
.y11b{bottom:475.960933pt;}
.yde{bottom:476.280267pt;}
.y15c{bottom:476.599833pt;}
.y197{bottom:476.920633pt;}
.y1fb{bottom:481.395100pt;}
.y1d3{bottom:482.360800pt;}
.y9e{bottom:486.832233pt;}
.y64{bottom:487.148167pt;}
.y119{bottom:487.472400pt;}
.y11a{bottom:487.480533pt;}
.ydd{bottom:487.796467pt;}
.y15b{bottom:488.122967pt;}
.y196{bottom:488.441467pt;}
.y1fa{bottom:493.240267pt;}
.y1d2{bottom:493.862633pt;}
.y9d{bottom:498.356567pt;}
.y63{bottom:498.672500pt;}
.y118{bottom:498.996733pt;}
.ydc{bottom:499.320800pt;}
.y15a{bottom:499.643800pt;}
.y195{bottom:499.960933pt;}
.y194{bottom:499.964500pt;}
.y1f9{bottom:504.751567pt;}
.y1d1{bottom:505.386967pt;}
.y62{bottom:510.196833pt;}
.y9c{bottom:510.198367pt;}
.y116{bottom:510.516200pt;}
.y117{bottom:510.521067pt;}
.ydb{bottom:510.840400pt;}
.y159{bottom:511.164633pt;}
.y193{bottom:511.799967pt;}
.y1f8{bottom:516.275900pt;}
.y1d0{bottom:516.911300pt;}
.y9b{bottom:521.397000pt;}
.y115{bottom:522.040533pt;}
.y61{bottom:522.042000pt;}
.yda{bottom:522.346833pt;}
.y158{bottom:523.001467pt;}
.y192{bottom:523.320800pt;}
.y1f7{bottom:528.121067pt;}
.y1cf{bottom:528.756467pt;}
.y9a{bottom:532.921333pt;}
.y60{bottom:533.561600pt;}
.y114{bottom:533.880933pt;}
.yd9{bottom:534.192000pt;}
.y157{bottom:534.519700pt;}
.y191{bottom:534.843833pt;}
.y1f6{bottom:539.635800pt;}
.y1ce{bottom:540.277433pt;}
.y99{bottom:544.756000pt;}
.y5f{bottom:544.761733pt;}
.y113{bottom:545.400400pt;}
.yd8{bottom:545.716333pt;}
.y156{bottom:546.040533pt;}
.y190{bottom:546.680667pt;}
.y1f5{bottom:551.160133pt;}
.y1cd{bottom:551.480933pt;}
.y98{bottom:555.962000pt;}
.y5e{bottom:556.281200pt;}
.y111{bottom:556.915100pt;}
.y112{bottom:556.920000pt;}
.yd7{bottom:557.235933pt;}
.y155{bottom:557.560133pt;}
.y18f{bottom:558.200267pt;}
.y1f4{bottom:562.676300pt;}
.y1cc{bottom:563.311700pt;}
.y97{bottom:567.481467pt;}
.y5d{bottom:567.792667pt;}
.yd6{bottom:568.760267pt;}
.y154{bottom:569.400400pt;}
.y18e{bottom:569.719833pt;}
.y1f3{bottom:574.521467pt;}
.y1cb{bottom:575.156867pt;}
.y5c{bottom:579.317000pt;}
.y96{bottom:579.321733pt;}
.y95{bottom:579.323333pt;}
.y110{bottom:580.276467pt;}
.yd5{bottom:580.595800pt;}
.y153{bottom:580.923533pt;}
.y18d{bottom:581.240667pt;}
.y1f2{bottom:586.036200pt;}
.y1ca{bottom:586.681200pt;}
.y5b{bottom:590.841333pt;}
.y10f{bottom:591.800800pt;}
.yd4{bottom:592.120133pt;}
.y152{bottom:592.444367pt;}
.y18c{bottom:593.079700pt;}
.y1f1{bottom:597.538033pt;}
.y1c9{bottom:598.200667pt;}
.y5a{bottom:602.360800pt;}
.yd2{bottom:603.636333pt;}
.yd3{bottom:603.641067pt;}
.y151{bottom:604.281200pt;}
.y150{bottom:604.283400pt;}
.y18b{bottom:604.600533pt;}
.y18a{bottom:604.605067pt;}
.y1f0{bottom:609.062367pt;}
.y1c8{bottom:609.710633pt;}
.y59{bottom:613.877000pt;}
.y94{bottom:613.881867pt;}
.yd1{bottom:615.160667pt;}
.y14f{bottom:616.120233pt;}
.y189{bottom:616.441900pt;}
.y1ef{bottom:620.907533pt;}
.y1c7{bottom:621.234967pt;}
.y58{bottom:625.401333pt;}
.y93{bottom:625.402933pt;}
.y10e{bottom:626.680133pt;}
.yd0{bottom:626.991300pt;}
.y14e{bottom:627.641067pt;}
.y188{bottom:627.962733pt;}
.y1ee{bottom:632.431867pt;}
.y1c6{bottom:633.080133pt;}
.y57{bottom:636.912800pt;}
.y92{bottom:636.923867pt;}
.y10d{bottom:638.510900pt;}
.ycf{bottom:638.515633pt;}
.y14d{bottom:639.160667pt;}
.y187{bottom:639.799567pt;}
.y1ed{bottom:643.956200pt;}
.y1c5{bottom:644.596333pt;}
.y90{bottom:648.436133pt;}
.y56{bottom:648.437133pt;}
.y91{bottom:648.441867pt;}
.y10c{bottom:650.035233pt;}
.yce{bottom:650.360800pt;}
.y14c{bottom:651.004500pt;}
.y186{bottom:651.323833pt;}
.y1ec{bottom:655.480533pt;}
.y1c4{bottom:656.120667pt;}
.y8f{bottom:659.642133pt;}
.y55{bottom:659.953333pt;}
.ycd{bottom:661.870733pt;}
.y10b{bottom:661.870767pt;}
.y14b{bottom:662.841333pt;}
.y185{bottom:663.159300pt;}
.y1ea{bottom:667.316067pt;}
.y1eb{bottom:667.320800pt;}
.y1c3{bottom:667.640133pt;}
.y54{bottom:671.477667pt;}
.y8e{bottom:671.480933pt;}
.ycc{bottom:673.715900pt;}
.y10a{bottom:673.715933pt;}
.y14a{bottom:674.360800pt;}
.y184{bottom:674.680133pt;}
.y1e9{bottom:678.825867pt;}
.y1c2{bottom:679.161200pt;}
.y8c{bottom:682.992400pt;}
.y53{bottom:682.997133pt;}
.y8d{bottom:683.002000pt;}
.y109{bottom:685.240267pt;}
.ycb{bottom:685.546567pt;}
.y149{bottom:685.882233pt;}
.y183{bottom:686.519400pt;}
.y1e8{bottom:690.671033pt;}
.y1c1{bottom:691.001467pt;}
.y52{bottom:694.516733pt;}
.yca{bottom:697.070900pt;}
.y108{bottom:697.075800pt;}
.y148{bottom:697.561067pt;}
.y182{bottom:698.040233pt;}
.y1c0{bottom:702.516167pt;}
.y1e7{bottom:702.516200pt;}
.y8b{bottom:706.037667pt;}
.y51{bottom:706.041067pt;}
.yc9{bottom:708.595233pt;}
.y107{bottom:708.600133pt;}
.y147{bottom:709.240267pt;}
.y181{bottom:709.561067pt;}
.y1e6{bottom:714.040533pt;}
.y1bf{bottom:714.361333pt;}
.y50{bottom:717.549133pt;}
.y8a{bottom:717.562000pt;}
.yc8{bottom:720.440400pt;}
.y146{bottom:720.763300pt;}
.y180{bottom:721.403533pt;}
.y1e5{bottom:724.605567pt;}
.y1be{bottom:725.880933pt;}
.y4f{bottom:729.073467pt;}
.y89{bottom:729.081600pt;}
.yc7{bottom:731.956600pt;}
.y145{bottom:732.600133pt;}
.y17f{bottom:732.924367pt;}
.y1bd{bottom:737.395633pt;}
.y1e4{bottom:737.400400pt;}
.y4e{bottom:740.597800pt;}
.y88{bottom:740.601067pt;}
.yc6{bottom:743.471300pt;}
.y106{bottom:743.476200pt;}
.y144{bottom:744.121067pt;}
.y17e{bottom:744.761200pt;}
.y1e3{bottom:748.911700pt;}
.y1bc{bottom:749.240800pt;}
.y4d{bottom:752.115767pt;}
.y87{bottom:752.122133pt;}
.yc5{bottom:754.995633pt;}
.y143{bottom:755.647667pt;}
.y17d{bottom:756.284233pt;}
.y1e2{bottom:760.436033pt;}
.y1bb{bottom:760.750633pt;}
.y4b{bottom:763.957700pt;}
.y4c{bottom:763.960933pt;}
.y105{bottom:766.832667pt;}
.yc4{bottom:766.840800pt;}
.y142{bottom:767.484500pt;}
.y17c{bottom:768.119833pt;}
.y1ba{bottom:772.274967pt;}
.y1e1{bottom:772.281200pt;}
.y4a{bottom:775.156300pt;}
.y86{bottom:775.161200pt;}
.y104{bottom:778.357000pt;}
.yc3{bottom:778.360400pt;}
.y141{bottom:779.321333pt;}
.y17b{bottom:779.639533pt;}
.y1e0{bottom:783.800800pt;}
.y1b9{bottom:784.120133pt;}
.y85{bottom:786.993333pt;}
.y49{bottom:787.001467pt;}
.y103{bottom:789.865467pt;}
.yc2{bottom:790.192533pt;}
.y140{bottom:790.843000pt;}
.y17a{bottom:791.160367pt;}
.y1b8{bottom:795.629933pt;}
.y1de{bottom:795.636333pt;}
.y1df{bottom:795.641067pt;}
.y48{bottom:798.517667pt;}
.y102{bottom:801.710633pt;}
.yc1{bottom:801.716867pt;}
.y13f{bottom:802.363833pt;}
.y179{bottom:802.684633pt;}
.y1dd{bottom:807.160667pt;}
.y1b7{bottom:807.475100pt;}
.y84{bottom:810.031067pt;}
.y47{bottom:810.042000pt;}
.yc0{bottom:813.241200pt;}
.y101{bottom:813.555800pt;}
.y13e{bottom:814.204233pt;}
.y178{bottom:814.520233pt;}
.y1dc{bottom:819.001967pt;}
.y1b6{bottom:819.320267pt;}
.ybf{bottom:825.080133pt;}
.y13d{bottom:826.041067pt;}
.h17{height:34.070312pt;}
.h47{height:36.281250pt;}
.h4b{height:36.851562pt;}
.h43{height:37.554687pt;}
.h61{height:38.584310pt;}
.h4c{height:39.238281pt;}
.h14{height:39.640625pt;}
.h6e{height:39.892253pt;}
.h12{height:40.312500pt;}
.h4a{height:40.546224pt;}
.h11{height:40.984375pt;}
.h16{height:40.986775pt;}
.h60{height:41.200195pt;}
.h37{height:41.854167pt;}
.h4d{height:42.166667pt;}
.h15{height:42.328125pt;}
.h38{height:44.143229pt;}
.h24{height:44.571227pt;}
.h13{height:45.195312pt;}
.h32{height:45.890625pt;}
.h56{height:46.455078pt;}
.h2d{height:47.109375pt;}
.h6f{height:48.671875pt;}
.h1c{height:49.072266pt;}
.h2f{height:50.355794pt;}
.h2{height:50.380859pt;}
.hd{height:50.386459pt;}
.h46{height:50.387526pt;}
.hf{height:50.390625pt;}
.h19{height:50.393793pt;}
.h35{height:50.393926pt;}
.h2a{height:50.394326pt;}
.he{height:50.394459pt;}
.hb{height:50.399793pt;}
.h3e{height:50.399926pt;}
.h1e{height:50.400326pt;}
.h25{height:50.400459pt;}
.h6a{height:50.405793pt;}
.h8{height:50.405926pt;}
.h26{height:50.406326pt;}
.h9{height:50.407259pt;}
.h40{height:50.413259pt;}
.h28{height:50.413393pt;}
.h41{height:50.413793pt;}
.h1d{height:50.419259pt;}
.h34{height:50.419393pt;}
.h3c{height:50.419526pt;}
.hc{height:50.425393pt;}
.h27{height:50.432326pt;}
.h65{height:50.432459pt;}
.h29{height:50.432993pt;}
.h3b{height:50.438859pt;}
.h68{height:50.438993pt;}
.h42{height:50.444326pt;}
.h64{height:50.451926pt;}
.h69{height:50.470859pt;}
.h5b{height:50.757812pt;}
.ha{height:51.009766pt;}
.h20{height:51.035156pt;}
.h1f{height:51.453125pt;}
.h2e{height:51.689453pt;}
.h54{height:51.693986pt;}
.h53{height:51.694386pt;}
.h58{height:51.694520pt;}
.h52{height:51.694920pt;}
.h5f{height:51.699853pt;}
.h59{height:51.707320pt;}
.h5e{height:51.708253pt;}
.h57{height:51.712253pt;}
.h55{height:51.713186pt;}
.h5d{height:51.713586pt;}
.h5a{height:51.718120pt;}
.h18{height:51.734375pt;}
.h33{height:52.317708pt;}
.h45{height:52.343750pt;}
.h1a{height:52.406250pt;}
.h10{height:52.843750pt;}
.h31{height:52.971680pt;}
.h3f{height:52.998047pt;}
.h44{height:53.625651pt;}
.h49{height:53.652344pt;}
.h2c{height:53.750000pt;}
.h7{height:54.026042pt;}
.h3d{height:54.684896pt;}
.h1b{height:55.343750pt;}
.h66{height:55.615234pt;}
.h5c{height:55.765625pt;}
.h30{height:56.002604pt;}
.h67{height:56.241536pt;}
.h6c{height:56.923828pt;}
.h51{height:57.109375pt;}
.h3{height:57.578125pt;}
.h6d{height:58.203451pt;}
.h6b{height:58.886719pt;}
.h5{height:60.165365pt;}
.h2b{height:60.492188pt;}
.h4{height:60.849609pt;}
.h6{height:61.473307pt;}
.h36{height:64.743164pt;}
.h70{height:66.750000pt;}
.h4e{height:67.187500pt;}
.h21{height:67.859375pt;}
.h22{height:68.520833pt;}
.h48{height:113.847656pt;}
.h3a{height:868.000000pt;}
.h39{height:868.080933pt;}
.h63{height:868.666667pt;}
.h62{height:868.722267pt;}
.h23{height:869.042267pt;}
.h1{height:869.333333pt;}
.h0{height:869.362267pt;}
.h50{height:872.000000pt;}
.h4f{height:872.242267pt;}
.w9{width:579.333333pt;}
.w8{width:579.440933pt;}
.w5{width:580.000000pt;}
.w4{width:580.080933pt;}
.w6{width:583.922267pt;}
.w7{width:584.000000pt;}
.w2{width:586.480933pt;}
.w3{width:586.666667pt;}
.w0{width:589.042267pt;}
.w1{width:589.333333pt;}
.x0{left:0.000000pt;}
.x66{left:51.960533pt;}
.x67{left:53.239867pt;}
.x9d{left:54.828867pt;}
.x90{left:55.801333pt;}
.x8e{left:56.760800pt;}
.xd{left:58.690667pt;}
.x1{left:59.642133pt;}
.x37{left:65.407200pt;}
.x34{left:66.362033pt;}
.x85{left:67.960933pt;}
.x83{left:68.928067pt;}
.x65{left:69.881333pt;}
.x11{left:71.480933pt;}
.x8f{left:73.717300pt;}
.x9{left:76.281200pt;}
.xe{left:77.561600pt;}
.x9e{left:79.480533pt;}
.x31{left:83.321333pt;}
.x12{left:84.282267pt;}
.x13{left:86.841333pt;}
.xa1{left:91.320800pt;}
.xc{left:95.801733pt;}
.x69{left:97.401333pt;}
.x41{left:99.320267pt;}
.xa{left:100.281333pt;}
.x3f{left:106.360400pt;}
.x32{left:109.880400pt;}
.x39{left:113.721200pt;}
.x2e{left:114.682133pt;}
.x14{left:115.641600pt;}
.x40{left:118.200667pt;}
.x42{left:119.480933pt;}
.xa2{left:121.401333pt;}
.x7d{left:124.921333pt;}
.x9b{left:126.521067pt;}
.x6a{left:135.800800pt;}
.x15{left:137.721200pt;}
.x19{left:139.322267pt;}
.x9c{left:143.480933pt;}
.x97{left:146.681600pt;}
.x16{left:149.880933pt;}
.x6b{left:153.720267pt;}
.x5e{left:156.280800pt;}
.x68{left:160.121600pt;}
.x6c{left:163.960933pt;}
.x35{left:164.920400pt;}
.x98{left:165.881333pt;}
.x38{left:172.281333pt;}
.x33{left:175.161200pt;}
.x1c{left:180.282267pt;}
.x6d{left:181.561067pt;}
.x9f{left:182.520533pt;}
.x36{left:183.481467pt;}
.xf{left:195.641067pt;}
.x3a{left:198.200267pt;}
.xa0{left:199.801333pt;}
.x1d{left:201.721733pt;}
.x81{left:208.440933pt;}
.x10{left:211.960933pt;}
.x3b{left:215.480933pt;}
.x2{left:217.082000pt;}
.x82{left:219.960400pt;}
.x1e{left:221.561600pt;}
.x1a{left:224.762267pt;}
.x3{left:227.002000pt;}
.x17{left:228.601600pt;}
.x1b{left:233.401867pt;}
.x3d{left:237.560533pt;}
.x5f{left:242.681600pt;}
.x7f{left:243.960400pt;}
.xb{left:254.841333pt;}
.x80{left:259.001467pt;}
.x3e{left:266.681600pt;}
.x4{left:270.841867pt;}
.x18{left:271.801333pt;}
.x99{left:273.720267pt;}
.x3c{left:279.160667pt;}
.x84{left:282.361333pt;}
.x5{left:289.722133pt;}
.x6e{left:291.960400pt;}
.x79{left:292.921333pt;}
.xa3{left:294.200267pt;}
.x94{left:295.163500pt;}
.x91{left:296.129433pt;}
.x2d{left:297.721733pt;}
.x1f{left:298.681200pt;}
.x43{left:305.071500pt;}
.x54{left:306.040533pt;}
.x8a{left:307.005267pt;}
.x88{left:307.960933pt;}
.x76{left:308.916933pt;}
.xa4{left:311.494267pt;}
.x92{left:313.401333pt;}
.x74{left:318.840400pt;}
.x49{left:321.400933pt;}
.x86{left:325.231000pt;}
.x55{left:326.841333pt;}
.x24{left:328.121600pt;}
.xa5{left:329.081067pt;}
.x48{left:330.680667pt;}
.x75{left:332.280267pt;}
.x61{left:335.480933pt;}
.x4c{left:339.960533pt;}
.x9a{left:341.561600pt;}
.x28{left:344.122133pt;}
.x4f{left:349.561067pt;}
.x52{left:351.800800pt;}
.x5a{left:354.361333pt;}
.x25{left:358.842267pt;}
.x29{left:360.761200pt;}
.x6{left:362.041467pt;}
.x93{left:364.600533pt;}
.x53{left:367.480533pt;}
.x46{left:370.360400pt;}
.xa6{left:371.640667pt;}
.x26{left:379.322267pt;}
.x47{left:382.521467pt;}
.x71{left:386.681600pt;}
.x27{left:391.801333pt;}
.x5b{left:402.680667pt;}
.x72{left:403.960933pt;}
.x59{left:407.161600pt;}
.x44{left:411.320400pt;}
.x2a{left:414.521067pt;}
.x7{left:417.400933pt;}
.x57{left:422.841333pt;}
.x2b{left:426.361333pt;}
.x5c{left:430.200667pt;}
.x6f{left:431.161600pt;}
.x45{left:433.080533pt;}
.x50{left:434.681600pt;}
.x8{left:436.281333pt;}
.x4d{left:438.200267pt;}
.x7c{left:439.801333pt;}
.x78{left:441.720267pt;}
.x51{left:443.000533pt;}
.x70{left:443.961467pt;}
.x22{left:445.561067pt;}
.x87{left:446.520533pt;}
.x62{left:450.361333pt;}
.x4a{left:452.920400pt;}
.x60{left:453.881333pt;}
.x20{left:455.480933pt;}
.x4e{left:456.761200pt;}
.x95{left:458.681600pt;}
.x23{left:462.201733pt;}
.x8c{left:463.161200pt;}
.x96{left:468.280800pt;}
.x4b{left:471.800800pt;}
.x21{left:475.001467pt;}
.x63{left:479.480933pt;}
.x56{left:483.320400pt;}
.x64{left:486.521067pt;}
.x8d{left:488.441467pt;}
.x7a{left:489.400933pt;}
.x89{left:491.000533pt;}
.x2c{left:497.081067pt;}
.x7e{left:498.361333pt;}
.x73{left:499.320800pt;}
.x77{left:501.881333pt;}
.x2f{left:504.761200pt;}
.x7b{left:508.600533pt;}
.x30{left:514.361867pt;}
.x8b{left:516.920933pt;}
.x58{left:521.081067pt;}
.x5d{left:523.960933pt;}
}




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