
    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_a5498dcff7c3745d01a38300.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4e73883a99a7112a75f8c0da.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_aa365d4130ddbf297b27c08e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_41c70fce67ccd1bb0adb10b8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_210ad01a21712c1a90ba5ec7.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a1d3d0f24dba8e8248f2809d.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_a59d577e75598c4e3d30184d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e23bb67001dc08b9ec725f9c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f1fd9c84042e875d6d77cb42.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_dc16730afa906f8776e27932.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_e9c6d8b4d069c24edcfc94bf.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_cc8a96432c60177306deb697.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_cf198c0e3ba3a32679184ed0.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_287e681627f2c60b8bbe2f3d.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_bd2b215e9efb4d0361560035.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_8bc385dd2e4e0098d85e0ab8.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_8e82d9b1694466f5703116e4.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_2e5c83a7a3db87ffa2278583.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_10afeb6bd4503639971ef70c.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_f9e5a8332eb6bf86205100ea.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_64781ef7fcddaf60ffbfbbb3.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_51df14069b5e638deb3b3b3d.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_5a64cb00124d0fb5794411fd.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_1a0e7fc3b76543a1d13770df.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_f3e434453c4e003fbb6cc30f.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_069ae2e47e402cde322bd6bd.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_e0e824ea5d472a0042fa8274.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_e59f009cb9eb31868b2b402f.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;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_3abda46f9b517b8d08294a82.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_d493a5cc273bb9699788f250.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_fc2a53c6ddb654fd957098c3.woff2')format("woff");}.ff1f{font-family:ff1f;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;}
.m3c{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.142442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142442,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.161215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161215,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.163194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163194,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.184028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184028,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m3d{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);}
.m57{transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.212329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212329,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m9{transform:matrix(0.219512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219512,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.225904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225904,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.228659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228659,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m33{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);}
.m16{transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.232394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232394,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.233974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233974,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.235119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235119,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m19{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);}
.m60{transform:matrix(0.237342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237342,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m5{transform:matrix(0.237952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237952,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.238971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238971,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.239437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239437,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.m24{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.240854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240854,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.242754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242754,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m25{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);}
.m37{transform:matrix(0.243671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243671,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.244118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244118,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.246377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246377,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);}
.m23{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);}
.m2{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);}
.m59{transform:matrix(0.253086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253086,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.253125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253125,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.253165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253165,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m27{transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);}
.m4a{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);}
.m3a{transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.256098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256098,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.256173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256173,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.257246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257246,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.259494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259494,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.m53{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);}
.m4b{transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.264881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264881,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.266026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266026,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.268293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268293,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m43{transform:matrix(0.271429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271429,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);}
.m26{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);}
.m6{transform:matrix(0.278481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278481,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.m35{transform:matrix(0.282051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282051,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.287879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287879,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.298611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298611,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.299296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299296,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.307971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307971,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.309375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309375,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.317308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317308,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.326087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326087,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.327465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327465,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.345070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345070,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.363281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363281,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.382812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382812,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.438312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438312,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.437000px;}
.v3{vertical-align:2.880600px;}
.v2{vertical-align:4.317600px;}
.v1{vertical-align:5.744250px;}
.ls5f{letter-spacing:-32.997300px;}
.ls3b{letter-spacing:-11.350500px;}
.ls58{letter-spacing:-11.093250px;}
.ls38{letter-spacing:-9.752700px;}
.ls75{letter-spacing:-9.531000px;}
.ls8f{letter-spacing:-8.691975px;}
.ls3a{letter-spacing:-7.798050px;}
.ls6c{letter-spacing:-6.910500px;}
.ls54{letter-spacing:-6.752700px;}
.ls52{letter-spacing:-6.665625px;}
.ls2d{letter-spacing:-6.002100px;}
.ls90{letter-spacing:-5.528025px;}
.ls57{letter-spacing:-5.435325px;}
.ls43{letter-spacing:-5.399625px;}
.ls4c{letter-spacing:-5.184375px;}
.ls5e{letter-spacing:-4.848000px;}
.ls62{letter-spacing:-4.564350px;}
.ls2a{letter-spacing:-4.497300px;}
.ls53{letter-spacing:-4.443750px;}
.ls8e{letter-spacing:-4.435725px;}
.ls20{letter-spacing:-3.987900px;}
.ls7a{letter-spacing:-3.969000px;}
.ls1b{letter-spacing:-3.948000px;}
.ls1d{letter-spacing:-3.759450px;}
.ls28{letter-spacing:-3.750600px;}
.ls5b{letter-spacing:-3.748800px;}
.ls87{letter-spacing:-3.705750px;}
.ls4d{letter-spacing:-3.703125px;}
.ls1f{letter-spacing:-3.701850px;}
.ls61{letter-spacing:-3.451725px;}
.ls80{letter-spacing:-3.175200px;}
.ls7e{letter-spacing:-3.111900px;}
.ls68{letter-spacing:-3.087000px;}
.ls65{letter-spacing:-3.042900px;}
.ls89{letter-spacing:-3.039525px;}
.ls19{letter-spacing:-2.998200px;}
.ls31{letter-spacing:-2.997750px;}
.ls51{letter-spacing:-2.962500px;}
.ls82{letter-spacing:-2.460000px;}
.ls74{letter-spacing:-2.381400px;}
.ls83{letter-spacing:-2.314350px;}
.ls69{letter-spacing:-2.282175px;}
.ls3c{letter-spacing:-2.252475px;}
.ls23{letter-spacing:-2.252250px;}
.ls16{letter-spacing:-2.251500px;}
.ls76{letter-spacing:-2.250225px;}
.ls4f{letter-spacing:-2.221875px;}
.ls78{letter-spacing:-2.220525px;}
.ls7f{letter-spacing:-2.187000px;}
.ls85{letter-spacing:-1.792650px;}
.ls3f{letter-spacing:-1.620000px;}
.ls77{letter-spacing:-1.587600px;}
.ls45{letter-spacing:-1.565550px;}
.ls21{letter-spacing:-1.521450px;}
.ls79{letter-spacing:-1.501200px;}
.ls15{letter-spacing:-1.499100px;}
.ls4e{letter-spacing:-1.481250px;}
.ls86{letter-spacing:-0.798000px;}
.ls73{letter-spacing:-0.793800px;}
.ls1a{letter-spacing:-0.760725px;}
.ls17{letter-spacing:-0.752400px;}
.lsd{letter-spacing:-0.747225px;}
.ls50{letter-spacing:-0.740625px;}
.lse{letter-spacing:-0.696000px;}
.ls66{letter-spacing:-0.688050px;}
.ls81{letter-spacing:-0.653400px;}
.ls64{letter-spacing:-0.628350px;}
.ls7d{letter-spacing:-0.626400px;}
.ls60{letter-spacing:-0.610650px;}
.lsb{letter-spacing:0.000000px;}
.ls2f{letter-spacing:0.669900px;}
.ls67{letter-spacing:0.693000px;}
.lsc{letter-spacing:0.701100px;}
.ls4b{letter-spacing:0.738000px;}
.ls2{letter-spacing:0.738675px;}
.ls46{letter-spacing:0.740625px;}
.ls2c{letter-spacing:0.742950px;}
.ls10{letter-spacing:0.747225px;}
.ls37{letter-spacing:0.748800px;}
.ls1e{letter-spacing:0.750750px;}
.ls4{letter-spacing:0.752400px;}
.lsa{letter-spacing:0.760725px;}
.ls6a{letter-spacing:0.771075px;}
.ls59{letter-spacing:0.786600px;}
.ls6f{letter-spacing:0.793800px;}
.ls39{letter-spacing:0.809400px;}
.ls63{letter-spacing:1.376100px;}
.ls13{letter-spacing:1.417500px;}
.ls7b{letter-spacing:1.438650px;}
.lsf{letter-spacing:1.463700px;}
.ls40{letter-spacing:1.464075px;}
.ls1{letter-spacing:1.466325px;}
.ls26{letter-spacing:1.480050px;}
.ls48{letter-spacing:1.481250px;}
.ls7c{letter-spacing:1.481850px;}
.ls36{letter-spacing:1.497600px;}
.ls5{letter-spacing:1.499100px;}
.ls12{letter-spacing:1.500000px;}
.ls8{letter-spacing:1.521450px;}
.ls56{letter-spacing:1.540500px;}
.ls30{letter-spacing:1.570800px;}
.ls6e{letter-spacing:1.587600px;}
.ls14{letter-spacing:1.620000px;}
.ls2b{letter-spacing:1.662075px;}
.ls0{letter-spacing:2.205000px;}
.ls6{letter-spacing:2.251500px;}
.ls9{letter-spacing:2.282175px;}
.ls11{letter-spacing:2.365500px;}
.ls71{letter-spacing:2.381400px;}
.ls29{letter-spacing:2.427075px;}
.ls8a{letter-spacing:2.497425px;}
.ls44{letter-spacing:2.499000px;}
.ls18{letter-spacing:2.538000px;}
.ls8c{letter-spacing:2.541000px;}
.ls1c{letter-spacing:2.889900px;}
.ls47{letter-spacing:2.962500px;}
.ls5a{letter-spacing:2.997750px;}
.ls7{letter-spacing:2.998200px;}
.ls5c{letter-spacing:3.042900px;}
.ls2e{letter-spacing:3.159000px;}
.ls70{letter-spacing:3.175200px;}
.ls41{letter-spacing:3.205800px;}
.ls8b{letter-spacing:3.643500px;}
.ls49{letter-spacing:3.703125px;}
.ls34{letter-spacing:3.750600px;}
.ls8d{letter-spacing:3.860625px;}
.ls6d{letter-spacing:3.969000px;}
.ls27{letter-spacing:4.440150px;}
.ls24{letter-spacing:4.497300px;}
.ls84{letter-spacing:4.635900px;}
.ls3{letter-spacing:5.248800px;}
.ls35{letter-spacing:5.249700px;}
.ls5d{letter-spacing:5.325075px;}
.ls72{letter-spacing:5.556600px;}
.ls25{letter-spacing:6.002100px;}
.ls32{letter-spacing:6.174000px;}
.ls55{letter-spacing:6.567075px;}
.ls3e{letter-spacing:6.748800px;}
.ls33{letter-spacing:7.501200px;}
.ls6b{letter-spacing:7.502250px;}
.ls3d{letter-spacing:8.247900px;}
.ls42{letter-spacing:9.752700px;}
.ls4a{letter-spacing:11.109375px;}
.ls88{letter-spacing:12.225600px;}
.ls22{letter-spacing:19.023300px;}
.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;}
._20{margin-left:-27.615068px;}
._1a{margin-left:-24.381600px;}
._1e{margin-left:-18.936000px;}
._1c{margin-left:-16.599600px;}
._3{margin-left:-15.549366px;}
._4{margin-left:-13.560750px;}
._1f{margin-left:-12.112725px;}
._b{margin-left:-10.602000px;}
._d{margin-left:-8.740800px;}
._6{margin-left:-6.998400px;}
._12{margin-left:-5.892300px;}
._a{margin-left:-4.652400px;}
._8{margin-left:-3.285000px;}
._7{margin-left:-2.245800px;}
._10{margin-left:-1.073100px;}
._0{width:1.323000px;}
._9{width:2.452800px;}
._c{width:3.602400px;}
._f{width:4.609500px;}
._e{width:5.757000px;}
._2{width:7.276500px;}
._11{width:8.813100px;}
._5{width:9.823275px;}
._18{width:11.102400px;}
._1{width:12.899250px;}
._13{width:14.543100px;}
._1d{width:15.705750px;}
._14{width:17.380800px;}
._17{width:19.301625px;}
._19{width:21.036300px;}
._16{width:23.827200px;}
._1b{width:26.520900px;}
._22{width:28.554432px;}
._24{width:29.802282px;}
._15{width:34.641450px;}
._23{width:36.090450px;}
._21{width:103.140000px;}
.fc0{color:transparent;}
.fs18{font-size:30.000000px;}
.fs14{font-size:47.250000px;}
.fs11{font-size:48.000000px;}
.fs13{font-size:49.500000px;}
.fs10{font-size:51.000000px;}
.fsa{font-size:51.750000px;}
.fsc{font-size:52.500000px;}
.fsb{font-size:53.250000px;}
.fs16{font-size:54.000000px;}
.fs17{font-size:54.750000px;}
.fsd{font-size:55.500000px;}
.fs7{font-size:57.000000px;}
.fse{font-size:57.750000px;}
.fs8{font-size:58.500000px;}
.fs5{font-size:59.250000px;}
.fs3{font-size:60.000000px;}
.fs2{font-size:60.750000px;}
.fs1{font-size:61.500000px;}
.fs4{font-size:62.250000px;}
.fs6{font-size:63.000000px;}
.fs15{font-size:63.750000px;}
.fsf{font-size:64.500000px;}
.fs12{font-size:65.250000px;}
.fs9{font-size:80.250000px;}
.fs0{font-size:110.250000px;}
.y0{bottom:0.000000px;}
.y127{bottom:24.507450px;}
.y12a{bottom:25.946100px;}
.y59{bottom:30.263100px;}
.y5a{bottom:31.707300px;}
.y11a{bottom:32.066550px;}
.y119{bottom:32.786700px;}
.ya8{bottom:34.586250px;}
.ye3{bottom:34.947150px;}
.ya9{bottom:35.665650px;}
.y125{bottom:37.466850px;}
.y126{bottom:38.546250px;}
.y2a{bottom:40.345800px;}
.ye2{bottom:42.147000px;}
.ye1{bottom:42.506250px;}
.y8b{bottom:43.587300px;}
.y58{bottom:91.466850px;}
.y117{bottom:94.708238px;}
.y118{bottom:95.786100px;}
.y57{bottom:107.666250px;}
.y8a{bottom:110.546850px;}
.ye0{bottom:110.906100px;}
.ydf{bottom:110.911538px;}
.y115{bottom:112.346400px;}
.y116{bottom:113.066550px;}
.y28{bottom:121.706700px;}
.y29{bottom:122.786100px;}
.y56{bottom:126.746100px;}
.yde{bottom:126.757125px;}
.y89{bottom:127.827150px;}
.y113{bottom:129.626700px;}
.y114{bottom:130.706100px;}
.y27{bottom:141.508463px;}
.ydd{bottom:142.591687px;}
.y88{bottom:145.092750px;}
.y124{bottom:149.426850px;}
.y25{bottom:154.825500px;}
.y26{bottom:155.545650px;}
.ydc{bottom:158.426250px;}
.y87{bottom:162.378000px;}
.y54{bottom:164.179950px;}
.y55{bottom:164.185950px;}
.y123{bottom:164.906100px;}
.ydb{bottom:174.266400px;}
.y24{bottom:174.982612px;}
.y53{bottom:180.025950px;}
.y86{bottom:184.693500px;}
.y22{bottom:188.666250px;}
.y112{bottom:189.012300px;}
.y23{bottom:190.106550px;}
.yda{bottom:190.111987px;}
.y52{bottom:198.389550px;}
.y85{bottom:200.539500px;}
.y111{bottom:205.214550px;}
.yd9{bottom:205.946550px;}
.yd8{bottom:205.957575px;}
.y21{bottom:208.823325px;}
.y84{bottom:216.385500px;}
.y51{bottom:220.707300px;}
.y110{bottom:221.060550px;}
.y20{bottom:221.786700px;}
.yd7{bottom:221.792137px;}
.y83{bottom:235.466250px;}
.y10f{bottom:236.894700px;}
.yd6{bottom:237.630000px;}
.y82{bottom:251.667300px;}
.y10e{bottom:252.740700px;}
.yd5{bottom:256.708500px;}
.y50{bottom:261.010050px;}
.y10d{bottom:268.586700px;}
.y1e{bottom:269.660250px;}
.y1f{bottom:269.666250px;}
.y81{bottom:270.386400px;}
.yd4{bottom:272.543062px;}
.y4f{bottom:277.212300px;}
.y1d{bottom:285.506250px;}
.y80{bottom:286.587300px;}
.yd3{bottom:288.747937px;}
.y4e{bottom:293.058300px;}
.y10c{bottom:297.027150px;}
.y1c{bottom:301.346400px;}
.yd2{bottom:304.226963px;}
.y7f{bottom:305.667300px;}
.y4d{bottom:309.260550px;}
.y1b{bottom:317.174700px;}
.yd1{bottom:320.431838px;}
.y4c{bottom:325.069650px;}
.y10b{bottom:329.066550px;}
.y1a{bottom:333.020700px;}
.yd0{bottom:336.266400px;}
.ycf{bottom:336.271950px;}
.y4b{bottom:340.915650px;}
.y7e{bottom:341.298600px;}
.y10a{bottom:344.886000px;}
.y19{bottom:348.866700px;}
.yce{bottom:352.106513px;}
.y4a{bottom:357.117900px;}
.y7d{bottom:357.144600px;}
.y109{bottom:360.732000px;}
.y18{bottom:365.062200px;}
.ycd{bottom:367.941075px;}
.ya7{bottom:371.903700px;}
.y7c{bottom:373.346850px;}
.y49{bottom:376.198650px;}
.y108{bottom:376.934250px;}
.y16{bottom:383.783700px;}
.y17{bottom:383.786700px;}
.ycc{bottom:384.145950px;}
.ya6{bottom:388.104750px;}
.y48{bottom:392.400900px;}
.y7b{bottom:392.421000px;}
.y107{bottom:392.780250px;}
.y15{bottom:399.985950px;}
.ycb{bottom:399.988987px;}
.ya5{bottom:404.307000px;}
.y7a{bottom:408.258150px;}
.y47{bottom:408.603150px;}
.y106{bottom:408.627150px;}
.yca{bottom:416.193862px;}
.ya4{bottom:420.144150px;}
.y79{bottom:424.104150px;}
.y46{bottom:424.805400px;}
.y14{bottom:426.985950px;}
.y105{bottom:428.064150px;}
.yc9{bottom:435.627862px;}
.ya3{bottom:436.352100px;}
.y78{bottom:440.306400px;}
.y45{bottom:440.651400px;}
.y104{bottom:444.266400px;}
.yc8{bottom:451.462425px;}
.ya2{bottom:454.702050px;}
.y44{bottom:456.853650px;}
.y13{bottom:458.652000px;}
.y77{bottom:459.389850px;}
.y103{bottom:460.468650px;}
.yc7{bottom:467.667300px;}
.ya1{bottom:470.904300px;}
.y43{bottom:472.699650px;}
.y12{bottom:474.854250px;}
.y102{bottom:476.300400px;}
.y76{bottom:477.027600px;}
.yc6{bottom:483.151650px;}
.ya0{bottom:487.105350px;}
.y42{bottom:488.901900px;}
.y11{bottom:491.056500px;}
.y101{bottom:492.502650px;}
.yc5{bottom:499.712025px;}
.y9f{bottom:503.663850px;}
.y41{bottom:505.104150px;}
.y10{bottom:506.902500px;}
.y100{bottom:508.704900px;}
.y75{bottom:511.953300px;}
.yc4{bottom:515.916900px;}
.y9e{bottom:519.866100px;}
.y40{bottom:521.305650px;}
.yf{bottom:523.104750px;}
.yff{bottom:524.907150px;}
.y74{bottom:531.034050px;}
.yc3{bottom:531.751462px;}
.ye{bottom:539.307000px;}
.y3f{bottom:540.388050px;}
.yfe{bottom:540.744300px;}
.y9c{bottom:542.544900px;}
.y9d{bottom:542.546850px;}
.y73{bottom:546.865800px;}
.yc2{bottom:547.586025px;}
.yc{bottom:555.500400px;}
.yd{bottom:555.506250px;}
.yfd{bottom:556.932000px;}
.y3e{bottom:556.942350px;}
.y9b{bottom:560.186400px;}
.y72{bottom:563.424300px;}
.yc1{bottom:564.146400px;}
.yb{bottom:571.343400px;}
.y3d{bottom:572.788350px;}
.y9a{bottom:578.187000px;}
.yfc{bottom:578.535000px;}
.y71{bottom:582.505050px;}
.yc0{bottom:583.207650px;}
.ya{bottom:587.545650px;}
.y3c{bottom:589.346850px;}
.yfb{bottom:595.093500px;}
.y99{bottom:596.185950px;}
.y70{bottom:598.706100px;}
.ybf{bottom:599.412525px;}
.y3b{bottom:608.425650px;}
.yfa{bottom:610.939500px;}
.y9{bottom:614.906550px;}
.y6f{bottom:614.908350px;}
.ybe{bottom:615.617400px;}
.y98{bottom:618.861150px;}
.y3a{bottom:624.984150px;}
.yf9{bottom:627.141750px;}
.y6e{bottom:631.466850px;}
.ybd{bottom:631.822275px;}
.y39{bottom:641.185200px;}
.yf8{bottom:643.344000px;}
.y8{bottom:645.505800px;}
.y6d{bottom:647.304000px;}
.ybc{bottom:648.027150px;}
.y37{bottom:657.381600px;}
.y38{bottom:657.387450px;}
.yf7{bottom:659.545950px;}
.y7{bottom:662.426850px;}
.y6c{bottom:663.505050px;}
.ybb{bottom:664.226400px;}
.y36{bottom:673.583850px;}
.y6{bottom:678.626250px;}
.yf6{bottom:678.982950px;}
.y6b{bottom:679.694250px;}
.yba{bottom:680.416350px;}
.y35{bottom:689.781300px;}
.y5{bottom:694.466250px;}
.yf5{bottom:695.185200px;}
.y6a{bottom:695.896500px;}
.yb9{bottom:696.621225px;}
.y34{bottom:707.066250px;}
.yf4{bottom:711.371550px;}
.y69{bottom:712.098750px;}
.yb8{bottom:712.826100px;}
.yb7{bottom:712.831687px;}
.yf3{bottom:727.573800px;}
.y68{bottom:728.301000px;}
.yb6{bottom:728.666250px;}
.y4{bottom:739.839525px;}
.yf2{bottom:743.776050px;}
.y67{bottom:744.147000px;}
.yb5{bottom:745.235513px;}
.yf1{bottom:759.978300px;}
.y96{bottom:760.704750px;}
.y97{bottom:760.705650px;}
.y66{bottom:760.707300px;}
.yb4{bottom:761.070075px;}
.y122{bottom:766.105950px;}
.y3{bottom:771.867150px;}
.y33{bottom:775.466250px;}
.yf0{bottom:776.180550px;}
.yb3{bottom:777.985950px;}
.yb2{bottom:777.990450px;}
.y94{bottom:779.783250px;}
.y95{bottom:779.785500px;}
.y64{bottom:780.503250px;}
.y65{bottom:789.866100px;}
.y32{bottom:791.667300px;}
.yef{bottom:792.026550px;}
.yee{bottom:792.028200px;}
.y63{bottom:795.978750px;}
.y93{bottom:802.825500px;}
.yb1{bottom:802.831013px;}
.y2{bottom:804.252750px;}
.y31{bottom:807.865500px;}
.yed{bottom:808.580850px;}
.y62{bottom:812.181000px;}
.yb0{bottom:818.665575px;}
.y92{bottom:819.026550px;}
.y30{bottom:824.424000px;}
.yec{bottom:824.426850px;}
.yeb{bottom:824.428650px;}
.y61{bottom:831.618000px;}
.yaf{bottom:835.225950px;}
.y1{bottom:836.666250px;}
.y91{bottom:838.826700px;}
.y2f{bottom:840.626250px;}
.ye9{bottom:840.975900px;}
.yea{bottom:840.987150px;}
.y121{bottom:842.425800px;}
.y129{bottom:847.460550px;}
.y60{bottom:847.820250px;}
.yae{bottom:851.062125px;}
.y90{bottom:855.022800px;}
.ye8{bottom:857.178150px;}
.y2e{bottom:857.193300px;}
.y120{bottom:860.790150px;}
.y5f{bottom:863.664900px;}
.y128{bottom:864.747300px;}
.yad{bottom:867.266775px;}
.ye7{bottom:873.380400px;}
.y8f{bottom:874.459800px;}
.y11f{bottom:875.005650px;}
.y2d{bottom:876.986550px;}
.y5e{bottom:879.868950px;}
.yac{bottom:883.821675px;}
.ye6{bottom:889.582650px;}
.y8e{bottom:890.662050px;}
.y11e{bottom:892.826700px;}
.y2c{bottom:893.185950px;}
.y5d{bottom:896.427450px;}
.yab{bottom:900.026550px;}
.ye5{bottom:906.141150px;}
.y8d{bottom:906.864300px;}
.y11d{bottom:910.827150px;}
.y5c{bottom:915.871350px;}
.y2b{bottom:920.906100px;}
.ye4{bottom:921.987150px;}
.y8c{bottom:923.066550px;}
.y11b{bottom:928.466850px;}
.y11c{bottom:928.826100px;}
.yaa{bottom:929.187000px;}
.y5b{bottom:932.786100px;}
.h4c{height:31.289062px;}
.h43{height:49.280273px;}
.h2f{height:50.062500px;}
.h4b{height:51.398438px;}
.h40{height:51.626953px;}
.h24{height:53.191406px;}
.h10{height:53.973633px;}
.h14{height:54.755859px;}
.h13{height:55.538086px;}
.h49{height:56.320312px;}
.h41{height:56.854233px;}
.h48{height:57.102539px;}
.h47{height:57.757312px;}
.h2b{height:57.814453px;}
.h15{height:57.884766px;}
.h42{height:58.268883px;}
.h3f{height:58.291233px;}
.h52{height:58.555664px;}
.h12{height:58.957031px;}
.h11{height:59.296875px;}
.h9{height:59.449219px;}
.h1a{height:59.450419px;}
.h1f{height:59.452219px;}
.h19{height:59.453419px;}
.h1d{height:59.454019px;}
.h27{height:59.454619px;}
.ha{height:59.461219px;}
.h2e{height:59.461819px;}
.h30{height:59.465419px;}
.h1e{height:59.466019px;}
.h1b{height:59.468419px;}
.h1c{height:59.472619px;}
.h21{height:59.473219px;}
.h29{height:59.484619px;}
.hd{height:59.496019px;}
.h3e{height:59.496619px;}
.h28{height:59.501419px;}
.h3c{height:59.507419px;}
.h2a{height:59.508619px;}
.h3b{height:59.512819px;}
.h3d{height:59.531419px;}
.h20{height:59.596819px;}
.hf{height:59.717883px;}
.h22{height:60.231445px;}
.h4a{height:60.779297px;}
.hc{height:61.013672px;}
.h4d{height:61.224609px;}
.h7{height:61.795898px;}
.h38{height:61.796048px;}
.h34{height:61.796798px;}
.hb{height:61.800293px;}
.h35{height:61.811198px;}
.h33{height:61.817798px;}
.h36{height:61.833698px;}
.h37{height:61.870898px;}
.h16{height:62.261719px;}
.h5{height:62.578125px;}
.h44{height:63.002930px;}
.h4{height:63.360352px;}
.h8{height:63.492188px;}
.h3{height:64.142578px;}
.h39{height:64.485352px;}
.h6{height:64.924805px;}
.h23{height:67.271484px;}
.he{height:83.698242px;}
.h2{height:114.987305px;}
.h4e{height:978.587250px;}
.h4f{height:978.750000px;}
.h50{height:980.025750px;}
.h51{height:980.250000px;}
.h17{height:983.625750px;}
.h18{height:984.000000px;}
.h3a{height:984.345750px;}
.h2c{height:986.145750px;}
.h2d{height:986.250000px;}
.h0{height:989.025750px;}
.h1{height:989.250000px;}
.h32{height:990.000000px;}
.h31{height:990.105750px;}
.h45{height:990.467250px;}
.h46{height:990.750000px;}
.h25{height:991.187250px;}
.h26{height:991.500000px;}
.wf{width:657.420900px;}
.w10{width:657.750000px;}
.we{width:659.250000px;}
.wd{width:659.579100px;}
.w3{width:662.250000px;}
.w2{width:662.459685px;}
.wa{width:665.250000px;}
.w9{width:665.339685px;}
.w6{width:668.219685px;}
.w7{width:668.250000px;}
.wb{width:673.981185px;}
.wc{width:674.250000px;}
.w1{width:676.500000px;}
.w8{width:676.859400px;}
.w0{width:676.860600px;}
.w5{width:679.500000px;}
.w4{width:679.739100px;}
.x0{left:0.000000px;}
.x9c{left:59.049450px;}
.x2c{left:60.922185px;}
.x2a{left:61.999635px;}
.x30{left:64.511685px;}
.x57{left:65.959635px;}
.x4a{left:68.118435px;}
.x84{left:70.639785px;}
.x98{left:72.439335px;}
.x3c{left:76.404750px;}
.x3a{left:77.492250px;}
.x2{left:78.570450px;}
.x1{left:79.639200px;}
.x3e{left:80.718750px;}
.x10{left:81.762150px;}
.xa{left:82.879200px;}
.x3{left:89.352825px;}
.x2b{left:91.519335px;}
.x31{left:92.598735px;}
.x41{left:94.759185px;}
.x8a{left:99.800235px;}
.x93{left:102.319935px;}
.x3b{left:107.359500px;}
.x20{left:108.792000px;}
.x21{left:109.879200px;}
.x5e{left:110.960400px;}
.xb{left:112.398900px;}
.x15{left:113.484600px;}
.x4f{left:114.918585px;}
.x68{left:115.999650px;}
.x28{left:117.438300px;}
.x54{left:121.759185px;}
.x50{left:124.278885px;}
.x4e{left:126.798585px;}
.x4d{left:128.238885px;}
.x26{left:130.038450px;}
.x22{left:131.839650px;}
.x53{left:133.998435px;}
.x55{left:139.039635px;}
.x51{left:142.279485px;}
.x27{left:146.598750px;}
.x23{left:148.759200px;}
.x56{left:152.359935px;}
.x7e{left:153.439335px;}
.x52{left:154.518735px;}
.x72{left:155.959035px;}
.x8b{left:166.039635px;}
.x73{left:173.239485px;}
.x7f{left:176.479335px;}
.x5f{left:179.359950px;}
.x5c{left:182.240550px;}
.x8c{left:183.679185px;}
.xc{left:185.839650px;}
.x3f{left:186.919050px;}
.x5d{left:189.079650px;}
.x60{left:191.599350px;}
.xd{left:198.079050px;}
.x5b{left:203.840250px;}
.x11{left:206.719200px;}
.x42{left:214.639185px;}
.x74{left:216.079635px;}
.x79{left:217.879185px;}
.x12{left:219.319500px;}
.x40{left:221.119050px;}
.x69{left:223.279500px;}
.x18{left:226.158450px;}
.x34{left:228.318885px;}
.x75{left:232.639785px;}
.x43{left:233.719185px;}
.x7a{left:234.798585px;}
.x19{left:239.478750px;}
.x35{left:240.919035px;}
.x6a{left:242.000100px;}
.xe{left:246.319500px;}
.x24{left:252.438300px;}
.x61{left:259.999050px;}
.x25{left:261.798600px;}
.x6b{left:271.519785px;}
.x94{left:274.400535px;}
.x86{left:280.160085px;}
.x6c{left:282.679785px;}
.x62{left:283.759200px;}
.x65{left:289.879650px;}
.xf{left:297.079650px;}
.x76{left:298.158885px;}
.x7b{left:301.398885px;}
.x13{left:306.079050px;}
.x64{left:310.039050px;}
.x77{left:314.359935px;}
.x14{left:319.038450px;}
.x1a{left:322.278300px;}
.x90{left:331.999635px;}
.x32{left:333.439935px;}
.x1b{left:335.598750px;}
.x8d{left:346.040085px;}
.x33{left:355.039635px;}
.x6f{left:357.918585px;}
.x66{left:360.439950px;}
.x1e{left:369.439350px;}
.x1f{left:380.238450px;}
.x44{left:387.799185px;}
.x4b{left:388.878585px;}
.x8e{left:390.679785px;}
.x67{left:391.759200px;}
.x45{left:401.478735px;}
.x95{left:404.000235px;}
.x6d{left:406.158885px;}
.x8f{left:407.240085px;}
.x6e{left:414.439935px;}
.x46{left:420.919635px;}
.x9d{left:421.951200px;}
.x36{left:424.159485px;}
.x58{left:425.599785px;}
.x16{left:430.278300px;}
.x99{left:433.160685px;}
.x96{left:440.360535px;}
.x80{left:454.758585px;}
.x37{left:457.639185px;}
.x59{left:459.079485px;}
.x70{left:462.678735px;}
.x87{left:466.279485px;}
.x81{left:467.358885px;}
.x71{left:469.878585px;}
.x4c{left:475.639785px;}
.x2d{left:476.719185px;}
.x17{left:480.318300px;}
.x88{left:488.599335px;}
.x2e{left:489.678735px;}
.x9{left:495.438300px;}
.x2f{left:504.798585px;}
.x82{left:512.359335px;}
.x97{left:517.759785px;}
.x85{left:522.799185px;}
.x9e{left:527.063250px;}
.x38{left:529.278885px;}
.x4{left:531.439350px;}
.x7{left:536.478750px;}
.x5{left:551.598750px;}
.x8{left:556.638150px;}
.x9f{left:560.910900px;}
.x39{left:563.119485px;}
.x47{left:564.919035px;}
.x63{left:567.799800px;}
.x91{left:569.240085px;}
.x7c{left:570.678735px;}
.x9a{left:572.120685px;}
.x48{left:576.439935px;}
.x89{left:579.679785px;}
.x1c{left:581.838600px;}
.x5a{left:582.919635px;}
.x92{left:585.080085px;}
.x7d{left:586.879635px;}
.x49{left:588.319935px;}
.x9b{left:590.480385px;}
.x78{left:592.998585px;}
.x1d{left:595.518300px;}
.x6{left:602.718150px;}
.x83{left:605.239485px;}
.x29{left:607.398300px;}
.x3d{left:624.319500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.277333pt;}
.v3{vertical-align:2.560533pt;}
.v2{vertical-align:3.837867pt;}
.v1{vertical-align:5.106000pt;}
.ls5f{letter-spacing:-29.330933pt;}
.ls3b{letter-spacing:-10.089333pt;}
.ls58{letter-spacing:-9.860667pt;}
.ls38{letter-spacing:-8.669067pt;}
.ls75{letter-spacing:-8.472000pt;}
.ls8f{letter-spacing:-7.726200pt;}
.ls3a{letter-spacing:-6.931600pt;}
.ls6c{letter-spacing:-6.142667pt;}
.ls54{letter-spacing:-6.002400pt;}
.ls52{letter-spacing:-5.925000pt;}
.ls2d{letter-spacing:-5.335200pt;}
.ls90{letter-spacing:-4.913800pt;}
.ls57{letter-spacing:-4.831400pt;}
.ls43{letter-spacing:-4.799667pt;}
.ls4c{letter-spacing:-4.608333pt;}
.ls5e{letter-spacing:-4.309333pt;}
.ls62{letter-spacing:-4.057200pt;}
.ls2a{letter-spacing:-3.997600pt;}
.ls53{letter-spacing:-3.950000pt;}
.ls8e{letter-spacing:-3.942867pt;}
.ls20{letter-spacing:-3.544800pt;}
.ls7a{letter-spacing:-3.528000pt;}
.ls1b{letter-spacing:-3.509333pt;}
.ls1d{letter-spacing:-3.341733pt;}
.ls28{letter-spacing:-3.333867pt;}
.ls5b{letter-spacing:-3.332267pt;}
.ls87{letter-spacing:-3.294000pt;}
.ls4d{letter-spacing:-3.291667pt;}
.ls1f{letter-spacing:-3.290533pt;}
.ls61{letter-spacing:-3.068200pt;}
.ls80{letter-spacing:-2.822400pt;}
.ls7e{letter-spacing:-2.766133pt;}
.ls68{letter-spacing:-2.744000pt;}
.ls65{letter-spacing:-2.704800pt;}
.ls89{letter-spacing:-2.701800pt;}
.ls19{letter-spacing:-2.665067pt;}
.ls31{letter-spacing:-2.664667pt;}
.ls51{letter-spacing:-2.633333pt;}
.ls82{letter-spacing:-2.186667pt;}
.ls74{letter-spacing:-2.116800pt;}
.ls83{letter-spacing:-2.057200pt;}
.ls69{letter-spacing:-2.028600pt;}
.ls3c{letter-spacing:-2.002200pt;}
.ls23{letter-spacing:-2.002000pt;}
.ls16{letter-spacing:-2.001333pt;}
.ls76{letter-spacing:-2.000200pt;}
.ls4f{letter-spacing:-1.975000pt;}
.ls78{letter-spacing:-1.973800pt;}
.ls7f{letter-spacing:-1.944000pt;}
.ls85{letter-spacing:-1.593467pt;}
.ls3f{letter-spacing:-1.440000pt;}
.ls77{letter-spacing:-1.411200pt;}
.ls45{letter-spacing:-1.391600pt;}
.ls21{letter-spacing:-1.352400pt;}
.ls79{letter-spacing:-1.334400pt;}
.ls15{letter-spacing:-1.332533pt;}
.ls4e{letter-spacing:-1.316667pt;}
.ls86{letter-spacing:-0.709333pt;}
.ls73{letter-spacing:-0.705600pt;}
.ls1a{letter-spacing:-0.676200pt;}
.ls17{letter-spacing:-0.668800pt;}
.lsd{letter-spacing:-0.664200pt;}
.ls50{letter-spacing:-0.658333pt;}
.lse{letter-spacing:-0.618667pt;}
.ls66{letter-spacing:-0.611600pt;}
.ls81{letter-spacing:-0.580800pt;}
.ls64{letter-spacing:-0.558533pt;}
.ls7d{letter-spacing:-0.556800pt;}
.ls60{letter-spacing:-0.542800pt;}
.lsb{letter-spacing:0.000000pt;}
.ls2f{letter-spacing:0.595467pt;}
.ls67{letter-spacing:0.616000pt;}
.lsc{letter-spacing:0.623200pt;}
.ls4b{letter-spacing:0.656000pt;}
.ls2{letter-spacing:0.656600pt;}
.ls46{letter-spacing:0.658333pt;}
.ls2c{letter-spacing:0.660400pt;}
.ls10{letter-spacing:0.664200pt;}
.ls37{letter-spacing:0.665600pt;}
.ls1e{letter-spacing:0.667333pt;}
.ls4{letter-spacing:0.668800pt;}
.lsa{letter-spacing:0.676200pt;}
.ls6a{letter-spacing:0.685400pt;}
.ls59{letter-spacing:0.699200pt;}
.ls6f{letter-spacing:0.705600pt;}
.ls39{letter-spacing:0.719467pt;}
.ls63{letter-spacing:1.223200pt;}
.ls13{letter-spacing:1.260000pt;}
.ls7b{letter-spacing:1.278800pt;}
.lsf{letter-spacing:1.301067pt;}
.ls40{letter-spacing:1.301400pt;}
.ls1{letter-spacing:1.303400pt;}
.ls26{letter-spacing:1.315600pt;}
.ls48{letter-spacing:1.316667pt;}
.ls7c{letter-spacing:1.317200pt;}
.ls36{letter-spacing:1.331200pt;}
.ls5{letter-spacing:1.332533pt;}
.ls12{letter-spacing:1.333333pt;}
.ls8{letter-spacing:1.352400pt;}
.ls56{letter-spacing:1.369333pt;}
.ls30{letter-spacing:1.396267pt;}
.ls6e{letter-spacing:1.411200pt;}
.ls14{letter-spacing:1.440000pt;}
.ls2b{letter-spacing:1.477400pt;}
.ls0{letter-spacing:1.960000pt;}
.ls6{letter-spacing:2.001333pt;}
.ls9{letter-spacing:2.028600pt;}
.ls11{letter-spacing:2.102667pt;}
.ls71{letter-spacing:2.116800pt;}
.ls29{letter-spacing:2.157400pt;}
.ls8a{letter-spacing:2.219933pt;}
.ls44{letter-spacing:2.221333pt;}
.ls18{letter-spacing:2.256000pt;}
.ls8c{letter-spacing:2.258667pt;}
.ls1c{letter-spacing:2.568800pt;}
.ls47{letter-spacing:2.633333pt;}
.ls5a{letter-spacing:2.664667pt;}
.ls7{letter-spacing:2.665067pt;}
.ls5c{letter-spacing:2.704800pt;}
.ls2e{letter-spacing:2.808000pt;}
.ls70{letter-spacing:2.822400pt;}
.ls41{letter-spacing:2.849600pt;}
.ls8b{letter-spacing:3.238667pt;}
.ls49{letter-spacing:3.291667pt;}
.ls34{letter-spacing:3.333867pt;}
.ls8d{letter-spacing:3.431667pt;}
.ls6d{letter-spacing:3.528000pt;}
.ls27{letter-spacing:3.946800pt;}
.ls24{letter-spacing:3.997600pt;}
.ls84{letter-spacing:4.120800pt;}
.ls3{letter-spacing:4.665600pt;}
.ls35{letter-spacing:4.666400pt;}
.ls5d{letter-spacing:4.733400pt;}
.ls72{letter-spacing:4.939200pt;}
.ls25{letter-spacing:5.335200pt;}
.ls32{letter-spacing:5.488000pt;}
.ls55{letter-spacing:5.837400pt;}
.ls3e{letter-spacing:5.998933pt;}
.ls33{letter-spacing:6.667733pt;}
.ls6b{letter-spacing:6.668667pt;}
.ls3d{letter-spacing:7.331467pt;}
.ls42{letter-spacing:8.669067pt;}
.ls4a{letter-spacing:9.875000pt;}
.ls88{letter-spacing:10.867200pt;}
.ls22{letter-spacing:16.909600pt;}
.ws0{word-spacing:0.000000pt;}
._20{margin-left:-24.546727pt;}
._1a{margin-left:-21.672533pt;}
._1e{margin-left:-16.832000pt;}
._1c{margin-left:-14.755200pt;}
._3{margin-left:-13.821659pt;}
._4{margin-left:-12.054000pt;}
._1f{margin-left:-10.766867pt;}
._b{margin-left:-9.424000pt;}
._d{margin-left:-7.769600pt;}
._6{margin-left:-6.220800pt;}
._12{margin-left:-5.237600pt;}
._a{margin-left:-4.135467pt;}
._8{margin-left:-2.920000pt;}
._7{margin-left:-1.996267pt;}
._10{margin-left:-0.953867pt;}
._0{width:1.176000pt;}
._9{width:2.180267pt;}
._c{width:3.202133pt;}
._f{width:4.097333pt;}
._e{width:5.117333pt;}
._2{width:6.468000pt;}
._11{width:7.833867pt;}
._5{width:8.731800pt;}
._18{width:9.868800pt;}
._1{width:11.466000pt;}
._13{width:12.927200pt;}
._1d{width:13.960667pt;}
._14{width:15.449600pt;}
._17{width:17.157000pt;}
._19{width:18.698933pt;}
._16{width:21.179733pt;}
._1b{width:23.574133pt;}
._22{width:25.381718pt;}
._24{width:26.490918pt;}
._15{width:30.792400pt;}
._23{width:32.080400pt;}
._21{width:91.680000pt;}
.fs18{font-size:26.666667pt;}
.fs14{font-size:42.000000pt;}
.fs11{font-size:42.666667pt;}
.fs13{font-size:44.000000pt;}
.fs10{font-size:45.333333pt;}
.fsa{font-size:46.000000pt;}
.fsc{font-size:46.666667pt;}
.fsb{font-size:47.333333pt;}
.fs16{font-size:48.000000pt;}
.fs17{font-size:48.666667pt;}
.fsd{font-size:49.333333pt;}
.fs7{font-size:50.666667pt;}
.fse{font-size:51.333333pt;}
.fs8{font-size:52.000000pt;}
.fs5{font-size:52.666667pt;}
.fs3{font-size:53.333333pt;}
.fs2{font-size:54.000000pt;}
.fs1{font-size:54.666667pt;}
.fs4{font-size:55.333333pt;}
.fs6{font-size:56.000000pt;}
.fs15{font-size:56.666667pt;}
.fsf{font-size:57.333333pt;}
.fs12{font-size:58.000000pt;}
.fs9{font-size:71.333333pt;}
.fs0{font-size:98.000000pt;}
.y0{bottom:0.000000pt;}
.y127{bottom:21.784400pt;}
.y12a{bottom:23.063200pt;}
.y59{bottom:26.900533pt;}
.y5a{bottom:28.184267pt;}
.y11a{bottom:28.503600pt;}
.y119{bottom:29.143733pt;}
.ya8{bottom:30.743333pt;}
.ye3{bottom:31.064133pt;}
.ya9{bottom:31.702800pt;}
.y125{bottom:33.303867pt;}
.y126{bottom:34.263333pt;}
.y2a{bottom:35.862933pt;}
.ye2{bottom:37.464000pt;}
.ye1{bottom:37.783333pt;}
.y8b{bottom:38.744267pt;}
.y58{bottom:81.303867pt;}
.y117{bottom:84.185100pt;}
.y118{bottom:85.143200pt;}
.y57{bottom:95.703333pt;}
.y8a{bottom:98.263867pt;}
.ye0{bottom:98.583200pt;}
.ydf{bottom:98.588033pt;}
.y115{bottom:99.863467pt;}
.y116{bottom:100.503600pt;}
.y28{bottom:108.183733pt;}
.y29{bottom:109.143200pt;}
.y56{bottom:112.663200pt;}
.yde{bottom:112.673000pt;}
.y89{bottom:113.624133pt;}
.y113{bottom:115.223733pt;}
.y114{bottom:116.183200pt;}
.y27{bottom:125.785300pt;}
.ydd{bottom:126.748167pt;}
.y88{bottom:128.971333pt;}
.y124{bottom:132.823867pt;}
.y25{bottom:137.622667pt;}
.y26{bottom:138.262800pt;}
.ydc{bottom:140.823333pt;}
.y87{bottom:144.336000pt;}
.y54{bottom:145.937733pt;}
.y55{bottom:145.943067pt;}
.y123{bottom:146.583200pt;}
.ydb{bottom:154.903467pt;}
.y24{bottom:155.540100pt;}
.y53{bottom:160.023067pt;}
.y86{bottom:164.172000pt;}
.y22{bottom:167.703333pt;}
.y112{bottom:168.010933pt;}
.y23{bottom:168.983600pt;}
.yda{bottom:168.988433pt;}
.y52{bottom:176.346267pt;}
.y85{bottom:178.257333pt;}
.y111{bottom:182.412933pt;}
.yd9{bottom:183.063600pt;}
.yd8{bottom:183.073400pt;}
.y21{bottom:185.620733pt;}
.y84{bottom:192.342667pt;}
.y51{bottom:196.184267pt;}
.y110{bottom:196.498267pt;}
.y20{bottom:197.143733pt;}
.yd7{bottom:197.148567pt;}
.y83{bottom:209.303333pt;}
.y10f{bottom:210.573067pt;}
.yd6{bottom:211.226667pt;}
.y82{bottom:223.704267pt;}
.y10e{bottom:224.658400pt;}
.yd5{bottom:228.185333pt;}
.y50{bottom:232.008933pt;}
.y10d{bottom:238.743733pt;}
.y1e{bottom:239.698000pt;}
.y1f{bottom:239.703333pt;}
.y81{bottom:240.343467pt;}
.yd4{bottom:242.260500pt;}
.y4f{bottom:246.410933pt;}
.y1d{bottom:253.783333pt;}
.y80{bottom:254.744267pt;}
.yd3{bottom:256.664833pt;}
.y4e{bottom:260.496267pt;}
.y10c{bottom:264.024133pt;}
.y1c{bottom:267.863467pt;}
.yd2{bottom:270.423967pt;}
.y7f{bottom:271.704267pt;}
.y4d{bottom:274.898267pt;}
.y1b{bottom:281.933067pt;}
.yd1{bottom:284.828300pt;}
.y4c{bottom:288.950800pt;}
.y10b{bottom:292.503600pt;}
.y1a{bottom:296.018400pt;}
.yd0{bottom:298.903467pt;}
.ycf{bottom:298.908400pt;}
.y4b{bottom:303.036133pt;}
.y7e{bottom:303.376533pt;}
.y10a{bottom:306.565333pt;}
.y19{bottom:310.103733pt;}
.yce{bottom:312.983567pt;}
.y4a{bottom:317.438133pt;}
.y7d{bottom:317.461867pt;}
.y109{bottom:320.650667pt;}
.y18{bottom:324.499733pt;}
.ycd{bottom:327.058733pt;}
.ya7{bottom:330.581067pt;}
.y7c{bottom:331.863867pt;}
.y49{bottom:334.398800pt;}
.y108{bottom:335.052667pt;}
.y16{bottom:341.141067pt;}
.y17{bottom:341.143733pt;}
.ycc{bottom:341.463067pt;}
.ya6{bottom:344.982000pt;}
.y48{bottom:348.800800pt;}
.y7b{bottom:348.818667pt;}
.y107{bottom:349.138000pt;}
.y15{bottom:355.543067pt;}
.ycb{bottom:355.545767pt;}
.ya5{bottom:359.384000pt;}
.y7a{bottom:362.896133pt;}
.y47{bottom:363.202800pt;}
.y106{bottom:363.224133pt;}
.yca{bottom:369.950100pt;}
.ya4{bottom:373.461467pt;}
.y79{bottom:376.981467pt;}
.y46{bottom:377.604800pt;}
.y14{bottom:379.543067pt;}
.y105{bottom:380.501467pt;}
.yc9{bottom:387.224767pt;}
.ya3{bottom:387.868533pt;}
.y78{bottom:391.383467pt;}
.y45{bottom:391.690133pt;}
.y104{bottom:394.903467pt;}
.yc8{bottom:401.299933pt;}
.ya2{bottom:404.179600pt;}
.y44{bottom:406.092133pt;}
.y13{bottom:407.690667pt;}
.y77{bottom:408.346533pt;}
.y103{bottom:409.305467pt;}
.yc7{bottom:415.704267pt;}
.ya1{bottom:418.581600pt;}
.y43{bottom:420.177467pt;}
.y12{bottom:422.092667pt;}
.y102{bottom:423.378133pt;}
.y76{bottom:424.024533pt;}
.yc6{bottom:429.468133pt;}
.ya0{bottom:432.982533pt;}
.y42{bottom:434.579467pt;}
.y11{bottom:436.494667pt;}
.y101{bottom:437.780133pt;}
.yc5{bottom:444.188467pt;}
.y9f{bottom:447.701200pt;}
.y41{bottom:448.981467pt;}
.y10{bottom:450.580000pt;}
.y100{bottom:452.182133pt;}
.y75{bottom:455.069600pt;}
.yc4{bottom:458.592800pt;}
.y9e{bottom:462.103200pt;}
.y40{bottom:463.382800pt;}
.yf{bottom:464.982000pt;}
.yff{bottom:466.584133pt;}
.y74{bottom:472.030267pt;}
.yc3{bottom:472.667967pt;}
.ye{bottom:479.384000pt;}
.y3f{bottom:480.344933pt;}
.yfe{bottom:480.661600pt;}
.y9c{bottom:482.262133pt;}
.y9d{bottom:482.263867pt;}
.y73{bottom:486.102933pt;}
.yc2{bottom:486.743133pt;}
.yc{bottom:493.778133pt;}
.yd{bottom:493.783333pt;}
.yfd{bottom:495.050667pt;}
.y3e{bottom:495.059867pt;}
.y9b{bottom:497.943467pt;}
.y72{bottom:500.821600pt;}
.yc1{bottom:501.463467pt;}
.yb{bottom:507.860800pt;}
.y3d{bottom:509.145200pt;}
.y9a{bottom:513.944000pt;}
.yfc{bottom:514.253333pt;}
.y71{bottom:517.782267pt;}
.yc0{bottom:518.406800pt;}
.ya{bottom:522.262800pt;}
.y3c{bottom:523.863867pt;}
.yfb{bottom:528.972000pt;}
.y99{bottom:529.943067pt;}
.y70{bottom:532.183200pt;}
.ybf{bottom:532.811133pt;}
.y3b{bottom:540.822800pt;}
.yfa{bottom:543.057333pt;}
.y9{bottom:546.583600pt;}
.y6f{bottom:546.585200pt;}
.ybe{bottom:547.215467pt;}
.y98{bottom:550.098800pt;}
.y3a{bottom:555.541467pt;}
.yf9{bottom:557.459333pt;}
.y6e{bottom:561.303867pt;}
.ybd{bottom:561.619800pt;}
.y39{bottom:569.942400pt;}
.yf8{bottom:571.861333pt;}
.y8{bottom:573.782933pt;}
.y6d{bottom:575.381333pt;}
.ybc{bottom:576.024133pt;}
.y37{bottom:584.339200pt;}
.y38{bottom:584.344400pt;}
.yf7{bottom:586.263067pt;}
.y7{bottom:588.823867pt;}
.y6c{bottom:589.782267pt;}
.ybb{bottom:590.423467pt;}
.y36{bottom:598.741200pt;}
.y6{bottom:603.223333pt;}
.yf6{bottom:603.540400pt;}
.y6b{bottom:604.172667pt;}
.yba{bottom:604.814533pt;}
.y35{bottom:613.138933pt;}
.y5{bottom:617.303333pt;}
.yf5{bottom:617.942400pt;}
.y6a{bottom:618.574667pt;}
.yb9{bottom:619.218867pt;}
.y34{bottom:628.503333pt;}
.yf4{bottom:632.330267pt;}
.y69{bottom:632.976667pt;}
.yb8{bottom:633.623200pt;}
.yb7{bottom:633.628167pt;}
.yf3{bottom:646.732267pt;}
.y68{bottom:647.378667pt;}
.yb6{bottom:647.703333pt;}
.y4{bottom:657.635133pt;}
.yf2{bottom:661.134267pt;}
.y67{bottom:661.464000pt;}
.yb5{bottom:662.431567pt;}
.yf1{bottom:675.536267pt;}
.y96{bottom:676.182000pt;}
.y97{bottom:676.182800pt;}
.y66{bottom:676.184267pt;}
.yb4{bottom:676.506733pt;}
.y122{bottom:680.983067pt;}
.y3{bottom:686.104133pt;}
.y33{bottom:689.303333pt;}
.yf0{bottom:689.938267pt;}
.yb3{bottom:691.543067pt;}
.yb2{bottom:691.547067pt;}
.y94{bottom:693.140667pt;}
.y95{bottom:693.142667pt;}
.y64{bottom:693.780667pt;}
.y65{bottom:702.103200pt;}
.y32{bottom:703.704267pt;}
.yef{bottom:704.023600pt;}
.yee{bottom:704.025067pt;}
.y63{bottom:707.536667pt;}
.y93{bottom:713.622667pt;}
.yb1{bottom:713.627567pt;}
.y2{bottom:714.891333pt;}
.y31{bottom:718.102667pt;}
.yed{bottom:718.738533pt;}
.y62{bottom:721.938667pt;}
.yb0{bottom:727.702733pt;}
.y92{bottom:728.023600pt;}
.y30{bottom:732.821333pt;}
.yec{bottom:732.823867pt;}
.yeb{bottom:732.825467pt;}
.y61{bottom:739.216000pt;}
.yaf{bottom:742.423067pt;}
.y1{bottom:743.703333pt;}
.y91{bottom:745.623733pt;}
.y2f{bottom:747.223333pt;}
.ye9{bottom:747.534133pt;}
.yea{bottom:747.544133pt;}
.y121{bottom:748.822933pt;}
.y129{bottom:753.298267pt;}
.y60{bottom:753.618000pt;}
.yae{bottom:756.499667pt;}
.y90{bottom:760.020267pt;}
.ye8{bottom:761.936133pt;}
.y2e{bottom:761.949600pt;}
.y120{bottom:765.146800pt;}
.y5f{bottom:767.702133pt;}
.y128{bottom:768.664267pt;}
.yad{bottom:770.903800pt;}
.ye7{bottom:776.338133pt;}
.y8f{bottom:777.297600pt;}
.y11f{bottom:777.782800pt;}
.y2d{bottom:779.543600pt;}
.y5e{bottom:782.105733pt;}
.yac{bottom:785.619267pt;}
.ye6{bottom:790.740133pt;}
.y8e{bottom:791.699600pt;}
.y11e{bottom:793.623733pt;}
.y2c{bottom:793.943067pt;}
.y5d{bottom:796.824400pt;}
.yab{bottom:800.023600pt;}
.ye5{bottom:805.458800pt;}
.y8d{bottom:806.101600pt;}
.y11d{bottom:809.624133pt;}
.y5c{bottom:814.107867pt;}
.y2b{bottom:818.583200pt;}
.ye4{bottom:819.544133pt;}
.y8c{bottom:820.503600pt;}
.y11b{bottom:825.303867pt;}
.y11c{bottom:825.623200pt;}
.yaa{bottom:825.944000pt;}
.y5b{bottom:829.143200pt;}
.h4c{height:27.812500pt;}
.h43{height:43.804688pt;}
.h2f{height:44.500000pt;}
.h4b{height:45.687500pt;}
.h40{height:45.890625pt;}
.h24{height:47.281250pt;}
.h10{height:47.976562pt;}
.h14{height:48.671875pt;}
.h13{height:49.367188pt;}
.h49{height:50.062500pt;}
.h41{height:50.537096pt;}
.h48{height:50.757812pt;}
.h47{height:51.339833pt;}
.h2b{height:51.390625pt;}
.h15{height:51.453125pt;}
.h42{height:51.794563pt;}
.h3f{height:51.814429pt;}
.h52{height:52.049479pt;}
.h12{height:52.406250pt;}
.h11{height:52.708333pt;}
.h9{height:52.843750pt;}
.h1a{height:52.844817pt;}
.h1f{height:52.846417pt;}
.h19{height:52.847483pt;}
.h1d{height:52.848017pt;}
.h27{height:52.848550pt;}
.ha{height:52.854417pt;}
.h2e{height:52.854950pt;}
.h30{height:52.858150pt;}
.h1e{height:52.858683pt;}
.h1b{height:52.860817pt;}
.h1c{height:52.864550pt;}
.h21{height:52.865083pt;}
.h29{height:52.875217pt;}
.hd{height:52.885350pt;}
.h3e{height:52.885883pt;}
.h28{height:52.890150pt;}
.h3c{height:52.895483pt;}
.h2a{height:52.896550pt;}
.h3b{height:52.900283pt;}
.h3d{height:52.916817pt;}
.h20{height:52.974950pt;}
.hf{height:53.082562pt;}
.h22{height:53.539062pt;}
.h4a{height:54.026042pt;}
.hc{height:54.234375pt;}
.h4d{height:54.421875pt;}
.h7{height:54.929688pt;}
.h38{height:54.929821pt;}
.h34{height:54.930488pt;}
.hb{height:54.933594pt;}
.h35{height:54.943288pt;}
.h33{height:54.949154pt;}
.h36{height:54.963288pt;}
.h37{height:54.996354pt;}
.h16{height:55.343750pt;}
.h5{height:55.625000pt;}
.h44{height:56.002604pt;}
.h4{height:56.320312pt;}
.h8{height:56.437500pt;}
.h3{height:57.015625pt;}
.h39{height:57.320313pt;}
.h6{height:57.710938pt;}
.h23{height:59.796875pt;}
.he{height:74.398438pt;}
.h2{height:102.210938pt;}
.h4e{height:869.855333pt;}
.h4f{height:870.000000pt;}
.h50{height:871.134000pt;}
.h51{height:871.333333pt;}
.h17{height:874.334000pt;}
.h18{height:874.666667pt;}
.h3a{height:874.974000pt;}
.h2c{height:876.574000pt;}
.h2d{height:876.666667pt;}
.h0{height:879.134000pt;}
.h1{height:879.333333pt;}
.h32{height:880.000000pt;}
.h31{height:880.094000pt;}
.h45{height:880.415333pt;}
.h46{height:880.666667pt;}
.h25{height:881.055333pt;}
.h26{height:881.333333pt;}
.wf{width:584.374133pt;}
.w10{width:584.666667pt;}
.we{width:586.000000pt;}
.wd{width:586.292533pt;}
.w3{width:588.666667pt;}
.w2{width:588.853053pt;}
.wa{width:591.333333pt;}
.w9{width:591.413053pt;}
.w6{width:593.973053pt;}
.w7{width:594.000000pt;}
.wb{width:599.094387pt;}
.wc{width:599.333333pt;}
.w1{width:601.333333pt;}
.w8{width:601.652800pt;}
.w0{width:601.653867pt;}
.w5{width:604.000000pt;}
.w4{width:604.212533pt;}
.x0{left:0.000000pt;}
.x9c{left:52.488400pt;}
.x2c{left:54.153053pt;}
.x2a{left:55.110787pt;}
.x30{left:57.343720pt;}
.x57{left:58.630787pt;}
.x4a{left:60.549720pt;}
.x84{left:62.790920pt;}
.x98{left:64.390520pt;}
.x3c{left:67.915333pt;}
.x3a{left:68.882000pt;}
.x2{left:69.840400pt;}
.x1{left:70.790400pt;}
.x3e{left:71.750000pt;}
.x10{left:72.677467pt;}
.xa{left:73.670400pt;}
.x3{left:79.424733pt;}
.x2b{left:81.350520pt;}
.x31{left:82.309987pt;}
.x41{left:84.230387pt;}
.x8a{left:88.711320pt;}
.x93{left:90.951053pt;}
.x3b{left:95.430667pt;}
.x20{left:96.704000pt;}
.x21{left:97.670400pt;}
.x5e{left:98.631467pt;}
.xb{left:99.910133pt;}
.x15{left:100.875200pt;}
.x4f{left:102.149853pt;}
.x68{left:103.110800pt;}
.x28{left:104.389600pt;}
.x54{left:108.230387pt;}
.x50{left:110.470120pt;}
.x4e{left:112.709853pt;}
.x4d{left:113.990120pt;}
.x26{left:115.589733pt;}
.x22{left:117.190800pt;}
.x53{left:119.109720pt;}
.x55{left:123.590787pt;}
.x51{left:126.470653pt;}
.x27{left:130.310000pt;}
.x23{left:132.230400pt;}
.x56{left:135.431053pt;}
.x7e{left:136.390520pt;}
.x52{left:137.349987pt;}
.x72{left:138.630253pt;}
.x8b{left:147.590787pt;}
.x73{left:153.990653pt;}
.x7f{left:156.870520pt;}
.x5f{left:159.431067pt;}
.x5c{left:161.991600pt;}
.x8c{left:163.270387pt;}
.xc{left:165.190800pt;}
.x3f{left:166.150267pt;}
.x5d{left:168.070800pt;}
.x60{left:170.310533pt;}
.xd{left:176.070267pt;}
.x5b{left:181.191333pt;}
.x11{left:183.750400pt;}
.x42{left:190.790387pt;}
.x74{left:192.070787pt;}
.x79{left:193.670387pt;}
.x12{left:194.950667pt;}
.x40{left:196.550267pt;}
.x69{left:198.470667pt;}
.x18{left:201.029733pt;}
.x34{left:202.950120pt;}
.x75{left:206.790920pt;}
.x43{left:207.750387pt;}
.x7a{left:208.709853pt;}
.x19{left:212.870000pt;}
.x35{left:214.150253pt;}
.x6a{left:215.111200pt;}
.xe{left:218.950667pt;}
.x24{left:224.389600pt;}
.x61{left:231.110267pt;}
.x25{left:232.709867pt;}
.x6b{left:241.350920pt;}
.x94{left:243.911587pt;}
.x86{left:249.031187pt;}
.x6c{left:251.270920pt;}
.x62{left:252.230400pt;}
.x65{left:257.670800pt;}
.xf{left:264.070800pt;}
.x76{left:265.030120pt;}
.x7b{left:267.910120pt;}
.x13{left:272.070267pt;}
.x64{left:275.590267pt;}
.x77{left:279.431053pt;}
.x14{left:283.589733pt;}
.x1a{left:286.469600pt;}
.x90{left:295.110787pt;}
.x32{left:296.391053pt;}
.x1b{left:298.310000pt;}
.x8d{left:307.591187pt;}
.x33{left:315.590787pt;}
.x6f{left:318.149853pt;}
.x66{left:320.391067pt;}
.x1e{left:328.390533pt;}
.x1f{left:337.989733pt;}
.x44{left:344.710387pt;}
.x4b{left:345.669853pt;}
.x8e{left:347.270920pt;}
.x67{left:348.230400pt;}
.x45{left:356.869987pt;}
.x95{left:359.111320pt;}
.x6d{left:361.030120pt;}
.x8f{left:361.991187pt;}
.x6e{left:368.391053pt;}
.x46{left:374.150787pt;}
.x9d{left:375.067733pt;}
.x36{left:377.030653pt;}
.x58{left:378.310920pt;}
.x16{left:382.469600pt;}
.x99{left:385.031720pt;}
.x96{left:391.431587pt;}
.x80{left:404.229853pt;}
.x37{left:406.790387pt;}
.x59{left:408.070653pt;}
.x70{left:411.269987pt;}
.x87{left:414.470653pt;}
.x81{left:415.430120pt;}
.x71{left:417.669853pt;}
.x4c{left:422.790920pt;}
.x2d{left:423.750387pt;}
.x17{left:426.949600pt;}
.x88{left:434.310520pt;}
.x2e{left:435.269987pt;}
.x9{left:440.389600pt;}
.x2f{left:448.709853pt;}
.x82{left:455.430520pt;}
.x97{left:460.230920pt;}
.x85{left:464.710387pt;}
.x9e{left:468.500667pt;}
.x38{left:470.470120pt;}
.x4{left:472.390533pt;}
.x7{left:476.870000pt;}
.x5{left:490.310000pt;}
.x8{left:494.789467pt;}
.x9f{left:498.587467pt;}
.x39{left:500.550653pt;}
.x47{left:502.150253pt;}
.x63{left:504.710933pt;}
.x91{left:505.991187pt;}
.x7c{left:507.269987pt;}
.x9a{left:508.551720pt;}
.x48{left:512.391053pt;}
.x89{left:515.270920pt;}
.x1c{left:517.189867pt;}
.x5a{left:518.150787pt;}
.x92{left:520.071187pt;}
.x7d{left:521.670787pt;}
.x49{left:522.951053pt;}
.x9b{left:524.871453pt;}
.x78{left:527.109853pt;}
.x1d{left:529.349600pt;}
.x6{left:535.749467pt;}
.x83{left:537.990653pt;}
.x29{left:539.909600pt;}
.x3d{left:554.950667pt;}
}




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