
    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_a25a343ddea3c608e73e5f5e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.950195;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_6e2e56cfc164f4ce634c8011.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_3526381a0ff9e1571204ab00.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.707031;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_412a01f829b114a083b8cb3c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.925293;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_116cc0b7b49aea00012021a9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916504;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_5a74a91ef839efbd79b79ce5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.933594;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_ff7887ec3fce063d6fee0cbd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.959961;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_87049db97f2ca69fecbbefe7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893555;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_f32a72c1d17425e157104671.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.941895;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_dbe21550723ed41247b6c0dd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.959961;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_c74f494a2ba9157fcba95676.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666000;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_787aad0734dc213c5dd26a50.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_ef74f60ffefa876f48e5f722.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_0041cbb7a51e8246cb4088a4.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_154bac9b8ae7d08d578e6251.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_02188b4adb765bbc048dc298.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.944824;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_dbe21550723ed41247b6c0dd.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.959961;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_275efd129440e4a70fa5d1c0.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_f6863a08b87c837648fb5a1c.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_d9b7cd18294ec64d61352c28.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_bf4d6cad1338b149c2195fab.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.666000;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_94751db578e6e8b767722a01.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_40545c40b34ba029500b6296.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_02188b4adb765bbc048dc298.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.944824;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_dbe21550723ed41247b6c0dd.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.959961;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_9baf4c682e7bac3a405966c2.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_976b1d249bf1dfc0e25f3a70.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_9f91a3bd138f03cfad2a99bd.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_de3d7fe6e7adbe072fc15591.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_bf4d6cad1338b149c2195fab.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.666000;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_08e7d7c86844ec90135061a2.woff2')format("woff");}.ff1f{font-family:ff1f;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;}
.m13{transform:matrix(0.058824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058824,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.087838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087838,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.m35{transform:matrix(0.125684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125684,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.127971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127971,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.131452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131452,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.133199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133199,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.138627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138627,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.140613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140613,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.140673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140673,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.141904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141904,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.159936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159936,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.163253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163253,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.164809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164809,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.168919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168919,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.175431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175431,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.176961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176961,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.181536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181536,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.184416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184416,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.186418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186418,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.189397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189397,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.196623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196623,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.198004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198004,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.198039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198039,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.201919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201919,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.203390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203390,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.216096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216096,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.217129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217129,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.221598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221598,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.221672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221672,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.222599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222599,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.229007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229007,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.229031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229031,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.229879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229879,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m12{transform:matrix(0.231197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231197,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.234370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234370,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.238172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238172,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.238953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238953,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.239665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239665,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.239926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239926,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.240486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240486,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.240711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240711,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.240879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240879,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.241653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241653,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.242681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242681,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.248682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248682,0.000000,0.000000,0.250000,0,0);}
.m0{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);}
.m30{transform:matrix(0.252333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252333,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.254911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254911,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.260108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260108,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.260766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260766,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.263069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263069,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.266193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266193,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.270357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270357,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.271527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271527,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.284420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284420,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.291935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291935,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.302347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302347,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.304150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304150,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.305262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305262,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.308575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308575,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.320078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320078,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.330259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330259,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.340853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340853,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.355517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355517,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.379295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379295,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.403431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403431,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.456225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456225,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.530277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530277,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.535963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535963,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.564150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564150,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vc{vertical-align:-162.000000px;}
.va{vertical-align:-84.000000px;}
.vb{vertical-align:-72.000000px;}
.v7{vertical-align:-66.000000px;}
.v6{vertical-align:-42.000000px;}
.v2{vertical-align:-18.720000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.760000px;}
.ve{vertical-align:12.000000px;}
.v4{vertical-align:14.400000px;}
.v1{vertical-align:18.720000px;}
.v9{vertical-align:24.000000px;}
.vd{vertical-align:48.000000px;}
.v8{vertical-align:132.000000px;}
.ls38{letter-spacing:-13.041000px;}
.ls62{letter-spacing:-11.172021px;}
.ls37{letter-spacing:-10.458000px;}
.ls40{letter-spacing:-7.728000px;}
.ls39{letter-spacing:-6.048000px;}
.ls61{letter-spacing:-5.712021px;}
.ls44{letter-spacing:-5.481000px;}
.ls46{letter-spacing:-5.376000px;}
.ls71{letter-spacing:-5.103000px;}
.ls43{letter-spacing:-4.998000px;}
.ls3a{letter-spacing:-4.893000px;}
.ls5e{letter-spacing:-4.641000px;}
.ls5c{letter-spacing:-4.410000px;}
.ls36{letter-spacing:-4.284000px;}
.ls4f{letter-spacing:-3.969000px;}
.ls5a{letter-spacing:-3.234000px;}
.ls72{letter-spacing:-3.213000px;}
.ls52{letter-spacing:-3.066000px;}
.ls5b{letter-spacing:-3.024000px;}
.ls49{letter-spacing:-3.007620px;}
.ls59{letter-spacing:-2.982000px;}
.ls58{letter-spacing:-2.835000px;}
.ls3d{letter-spacing:-2.688000px;}
.ls6d{letter-spacing:-2.541000px;}
.ls41{letter-spacing:-2.513280px;}
.ls6f{letter-spacing:-2.373000px;}
.ls6b{letter-spacing:-2.352000px;}
.ls66{letter-spacing:-2.163000px;}
.ls6e{letter-spacing:-2.157840px;}
.ls70{letter-spacing:-2.058000px;}
.ls18{letter-spacing:-1.656000px;}
.ls11{letter-spacing:-1.584000px;}
.ls1b{letter-spacing:-1.008000px;}
.ls15{letter-spacing:-0.864000px;}
.ls4{letter-spacing:-0.728640px;}
.ls16{letter-spacing:-0.720000px;}
.ls1{letter-spacing:-0.662400px;}
.ls25{letter-spacing:-0.604800px;}
.ls27{letter-spacing:-0.598752px;}
.ls19{letter-spacing:-0.576000px;}
.ls5{letter-spacing:-0.504000px;}
.ls2{letter-spacing:-0.397440px;}
.ls26{letter-spacing:-0.387072px;}
.ls29{letter-spacing:-0.362880px;}
.lsb{letter-spacing:-0.360000px;}
.ls2a{letter-spacing:-0.302400px;}
.ls10{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.216000px;}
.ls2f{letter-spacing:-0.144000px;}
.ls50{letter-spacing:-0.129360px;}
.ls4d{letter-spacing:-0.101640px;}
.ls1e{letter-spacing:-0.066528px;}
.ls0{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.012000px;}
.ls23{letter-spacing:0.060480px;}
.ls22{letter-spacing:0.144000px;}
.ls28{letter-spacing:0.205632px;}
.lse{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.360000px;}
.ls30{letter-spacing:0.388800px;}
.ls24{letter-spacing:0.423360px;}
.ls12{letter-spacing:0.432000px;}
.ls1a{letter-spacing:0.468000px;}
.ls2d{letter-spacing:0.483840px;}
.ls42{letter-spacing:0.485520px;}
.lsf{letter-spacing:0.504000px;}
.ls2e{letter-spacing:0.544320px;}
.ls2b{letter-spacing:0.574560px;}
.lsc{letter-spacing:0.576000px;}
.ls2c{letter-spacing:0.604800px;}
.ls17{letter-spacing:0.648000px;}
.ls3{letter-spacing:0.662400px;}
.lsd{letter-spacing:0.720000px;}
.ls51{letter-spacing:0.757680px;}
.ls4e{letter-spacing:0.840840px;}
.ls56{letter-spacing:0.845640px;}
.ls4b{letter-spacing:1.007160px;}
.ls31{letter-spacing:1.069200px;}
.ls32{letter-spacing:1.076040px;}
.ls68{letter-spacing:1.205760px;}
.ls4c{letter-spacing:1.238160px;}
.ls1d{letter-spacing:1.368000px;}
.ls3c{letter-spacing:1.528320px;}
.ls53{letter-spacing:2.015520px;}
.ls48{letter-spacing:2.268000px;}
.ls5d{letter-spacing:2.520000px;}
.ls6a{letter-spacing:2.614080px;}
.ls21{letter-spacing:2.880000px;}
.ls65{letter-spacing:3.090000px;}
.ls6c{letter-spacing:3.180000px;}
.ls69{letter-spacing:3.360000px;}
.ls3f{letter-spacing:3.502098px;}
.ls34{letter-spacing:3.720000px;}
.ls47{letter-spacing:3.810000px;}
.ls63{letter-spacing:3.840000px;}
.ls4a{letter-spacing:4.231680px;}
.ls60{letter-spacing:4.260000px;}
.ls64{letter-spacing:4.440000px;}
.ls3e{letter-spacing:4.890000px;}
.ls33{letter-spacing:4.950000px;}
.ls45{letter-spacing:5.760030px;}
.ls5f{letter-spacing:6.630000px;}
.ls1f{letter-spacing:7.200000px;}
.ls67{letter-spacing:8.160030px;}
.ls8{letter-spacing:8.640000px;}
.ls7{letter-spacing:8.784000px;}
.ls35{letter-spacing:9.000000px;}
.ls3b{letter-spacing:9.720030px;}
.lsa{letter-spacing:10.080000px;}
.ls13{letter-spacing:11.145600px;}
.ls20{letter-spacing:14.400000px;}
.ls1c{letter-spacing:18.720000px;}
.ls55{letter-spacing:30.240000px;}
.ls57{letter-spacing:472.804600px;}
.ls54{letter-spacing:1112.644600px;}
.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;}
}
.ws5f{word-spacing:-88.737767px;}
.ws15{word-spacing:-72.000000px;}
.ws42{word-spacing:-61.992000px;}
.ws1e{word-spacing:-60.552000px;}
.ws59{word-spacing:-60.000000px;}
.ws41{word-spacing:-57.672000px;}
.ws14{word-spacing:-56.232000px;}
.ws9{word-spacing:-50.472000px;}
.ws5e{word-spacing:-35.165520px;}
.ws5c{word-spacing:-33.186720px;}
.ws5b{word-spacing:-27.188400px;}
.ws5d{word-spacing:-26.925360px;}
.ws60{word-spacing:-15.450000px;}
.ws1a{word-spacing:-10.152000px;}
.ws39{word-spacing:-1.440000px;}
.ws4{word-spacing:-0.728640px;}
.ws31{word-spacing:-0.720000px;}
.ws53{word-spacing:-0.665280px;}
.ws1c{word-spacing:-0.648000px;}
.ws52{word-spacing:-0.635040px;}
.ws56{word-spacing:-0.604800px;}
.ws33{word-spacing:-0.576000px;}
.ws54{word-spacing:-0.544320px;}
.ws28{word-spacing:-0.504000px;}
.ws4b{word-spacing:-0.483840px;}
.wsb{word-spacing:-0.432000px;}
.ws4f{word-spacing:-0.266112px;}
.ws0{word-spacing:-0.072000px;}
.ws1{word-spacing:-0.066240px;}
.ws4a{word-spacing:-0.060480px;}
.ws18{word-spacing:-0.047520px;}
.ws55{word-spacing:-0.038880px;}
.wse{word-spacing:0.000000px;}
.ws3b{word-spacing:0.006048px;}
.ws2d{word-spacing:0.144000px;}
.ws26{word-spacing:0.216000px;}
.ws51{word-spacing:0.241920px;}
.ws34{word-spacing:0.288000px;}
.ws50{word-spacing:0.302400px;}
.ws4d{word-spacing:0.326592px;}
.ws3{word-spacing:0.331200px;}
.ws36{word-spacing:0.504000px;}
.ws4e{word-spacing:0.538272px;}
.ws4c{word-spacing:0.544320px;}
.ws2{word-spacing:0.596160px;}
.ws2a{word-spacing:0.648000px;}
.ws5{word-spacing:0.662400px;}
.ws29{word-spacing:0.792000px;}
.ws35{word-spacing:0.936000px;}
.ws61{word-spacing:1.459200px;}
.ws27{word-spacing:1.512000px;}
.ws32{word-spacing:1.584000px;}
.ws5a{word-spacing:5.475840px;}
.ws16{word-spacing:10.008000px;}
.ws3a{word-spacing:10.524000px;}
.ws3d{word-spacing:10.656000px;}
.ws2b{word-spacing:10.800000px;}
.ws49{word-spacing:11.160000px;}
.ws6{word-spacing:11.376000px;}
.ws1d{word-spacing:11.448000px;}
.ws25{word-spacing:11.520000px;}
.ws12{word-spacing:11.808000px;}
.ws3e{word-spacing:11.892000px;}
.ws46{word-spacing:12.000000px;}
.ws21{word-spacing:12.096000px;}
.ws44{word-spacing:12.672000px;}
.ws17{word-spacing:12.816000px;}
.ws19{word-spacing:12.888000px;}
.ws38{word-spacing:13.260000px;}
.wsf{word-spacing:14.256000px;}
.ws1b{word-spacing:14.328000px;}
.ws8{word-spacing:15.696000px;}
.ws57{word-spacing:15.768000px;}
.ws7{word-spacing:16.704000px;}
.ws13{word-spacing:17.136000px;}
.ws37{word-spacing:18.576000px;}
.ws23{word-spacing:19.008000px;}
.wsc{word-spacing:20.016000px;}
.wsa{word-spacing:21.456000px;}
.ws3f{word-spacing:21.528000px;}
.ws20{word-spacing:22.896000px;}
.ws10{word-spacing:24.336000px;}
.ws58{word-spacing:24.408000px;}
.ws45{word-spacing:25.776000px;}
.ws2c{word-spacing:30.096000px;}
.ws11{word-spacing:31.536000px;}
.ws24{word-spacing:35.856000px;}
.ws47{word-spacing:37.296000px;}
.ws3c{word-spacing:38.736000px;}
.ws43{word-spacing:40.176000px;}
.ws40{word-spacing:41.616000px;}
.ws2f{word-spacing:41.904000px;}
.ws30{word-spacing:43.056000px;}
.ws2e{word-spacing:43.356000px;}
.ws1f{word-spacing:44.496000px;}
.ws48{word-spacing:60.336000px;}
.ws22{word-spacing:195.924000px;}
.wsd{word-spacing:929.940000px;}
.ws62{word-spacing:954.636000px;}
._2c{margin-left:-59.690512px;}
._1a{margin-left:-43.836000px;}
._18{margin-left:-33.161400px;}
._17{margin-left:-26.580360px;}
._28{margin-left:-22.394530px;}
._25{margin-left:-17.956904px;}
._2f{margin-left:-15.391273px;}
._1f{margin-left:-12.215700px;}
._26{margin-left:-8.462449px;}
._2a{margin-left:-7.322270px;}
._2b{margin-left:-5.781360px;}
._3{margin-left:-2.320320px;}
._0{margin-left:-1.296000px;}
._1{width:1.140000px;}
._2{width:2.196960px;}
._8{width:3.557760px;}
._5{width:4.908000px;}
._4{width:6.276000px;}
._7{width:7.356000px;}
._d{width:9.065760px;}
._6{width:10.100640px;}
._30{width:11.172960px;}
._b{width:12.499680px;}
._14{width:13.968960px;}
._11{width:15.192000px;}
._9{width:16.884000px;}
._10{width:19.188000px;}
._c{width:20.896320px;}
._16{width:22.316640px;}
._a{width:23.692320px;}
._13{width:24.759360px;}
._12{width:29.088000px;}
._15{width:39.036000px;}
._e{width:46.796640px;}
._19{width:87.374023px;}
._20{width:96.900000px;}
._2e{width:104.238919px;}
._21{width:106.740000px;}
._2d{width:110.238919px;}
._1d{width:146.211000px;}
._3a{width:159.696000px;}
._38{width:187.233000px;}
._f{width:195.996000px;}
._24{width:230.481840px;}
._23{width:273.240000px;}
._29{width:340.817618px;}
._27{width:357.693280px;}
._1e{width:390.768000px;}
._1b{width:402.768000px;}
._39{width:457.242600px;}
._37{width:511.634083px;}
._1c{width:532.947600px;}
._36{width:684.609600px;}
._22{width:985.358520px;}
._32{width:1053.959040px;}
._31{width:1077.928560px;}
._35{width:1092.096000px;}
._34{width:1150.680000px;}
._33{width:1179.540000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.000000px;}
.fsb{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs1{font-size:47.520000px;}
.fs19{font-size:48.000000px;}
.fs50{font-size:58.800000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:60.480000px;}
.fs40{font-size:61.800000px;}
.fs44{font-size:63.600000px;}
.fs2f{font-size:64.800000px;}
.fs3b{font-size:66.000000px;}
.fs3{font-size:66.240000px;}
.fs42{font-size:67.200000px;}
.fs4d{font-size:67.800000px;}
.fs0{font-size:72.000000px;}
.fs45{font-size:72.600000px;}
.fs32{font-size:73.200000px;}
.fs9{font-size:74.400000px;}
.fs29{font-size:76.200000px;}
.fs1e{font-size:76.800000px;}
.fs14{font-size:78.000000px;}
.fs21{font-size:81.000000px;}
.fs4f{font-size:81.600000px;}
.fs4e{font-size:83.400000px;}
.fs5{font-size:83.520000px;}
.fs37{font-size:85.200000px;}
.fs38{font-size:86.400000px;}
.fs36{font-size:87.600000px;}
.fs2a{font-size:88.200000px;}
.fs3f{font-size:88.800000px;}
.fs49{font-size:90.600000px;}
.fs52{font-size:91.800000px;}
.fs2c{font-size:92.400000px;}
.fs47{font-size:93.600000px;}
.fs1c{font-size:97.200600px;}
.fs23{font-size:97.800000px;}
.fs35{font-size:98.400000px;}
.fs8{font-size:99.000000px;}
.fs30{font-size:102.000000px;}
.fs34{font-size:103.200600px;}
.fs48{font-size:112.800000px;}
.fs2d{font-size:113.400000px;}
.fs18{font-size:115.200600px;}
.fsc{font-size:122.400000px;}
.fs51{font-size:125.400000px;}
.fs39{font-size:126.000000px;}
.fs3e{font-size:127.200600px;}
.fs3a{font-size:132.600000px;}
.fs41{font-size:139.200600px;}
.fs16{font-size:139.800000px;}
.fs10{font-size:141.600000px;}
.fs25{font-size:142.800000px;}
.fs46{font-size:145.800000px;}
.fs27{font-size:153.600000px;}
.fs26{font-size:156.600000px;}
.fs43{font-size:160.800000px;}
.fs3c{font-size:163.200600px;}
.fs15{font-size:172.800000px;}
.fsa{font-size:180.000000px;}
.fs2b{font-size:182.400000px;}
.fs28{font-size:184.800000px;}
.fs1f{font-size:192.000000px;}
.fs1a{font-size:194.400600px;}
.fs4b{font-size:196.800000px;}
.fs4c{font-size:205.200600px;}
.fs1b{font-size:206.400600px;}
.fs20{font-size:211.200600px;}
.fs24{font-size:220.800000px;}
.fs4a{font-size:222.000000px;}
.fs31{font-size:225.600000px;}
.fs33{font-size:240.000000px;}
.fs2e{font-size:249.600000px;}
.fs17{font-size:297.600000px;}
.fsd{font-size:298.800000px;}
.fs22{font-size:306.000000px;}
.fs3d{font-size:319.200600px;}
.fs12{font-size:326.400600px;}
.fs1d{font-size:336.000000px;}
.fs13{font-size:372.600000px;}
.fs11{font-size:374.400600px;}
.fse{font-size:422.400600px;}
.fsf{font-size:432.000000px;}
.y0{bottom:0.000000px;}
.ye9{bottom:3.600000px;}
.y3{bottom:4.320000px;}
.yeb{bottom:5.040000px;}
.yf0{bottom:5.070000px;}
.ye7{bottom:12.600000px;}
.ye8{bottom:21.285000px;}
.y2{bottom:52.560000px;}
.y1{bottom:56.880000px;}
.y142{bottom:73.500000px;}
.y116{bottom:78.000000px;}
.y63{bottom:112.356000px;}
.y82{bottom:119.196000px;}
.y9a{bottom:119.556000px;}
.yb1{bottom:126.396000px;}
.y126{bottom:132.000000px;}
.y62{bottom:144.396000px;}
.y141{bottom:147.000000px;}
.y43{bottom:147.636000px;}
.y81{bottom:150.870000px;}
.y99{bottom:152.310000px;}
.yb0{bottom:158.070000px;}
.y115{bottom:166.500000px;}
.ye3{bottom:168.510000px;}
.y140{bottom:171.000000px;}
.y13e{bottom:175.500000px;}
.y61{bottom:177.150000px;}
.y42{bottom:179.310000px;}
.y13f{bottom:180.000000px;}
.y80{bottom:182.550000px;}
.y98{bottom:184.350000px;}
.y13c{bottom:186.000000px;}
.y13d{bottom:187.500000px;}
.y112{bottom:187.522200px;}
.yaf{bottom:189.750000px;}
.y13b{bottom:198.000000px;}
.ye2{bottom:200.190000px;}
.y114{bottom:205.500000px;}
.y139{bottom:207.000000px;}
.y60{bottom:208.830000px;}
.y41{bottom:210.990000px;}
.y111{bottom:211.500000px;}
.y7f{bottom:214.275000px;}
.y97{bottom:217.155000px;}
.yae{bottom:221.475000px;}
.y13a{bottom:223.500000px;}
.ye1{bottom:231.915000px;}
.y5f{bottom:240.555000px;}
.y40{bottom:242.715000px;}
.y7e{bottom:245.595000px;}
.y96{bottom:248.835000px;}
.yad{bottom:253.155000px;}
.y117{bottom:253.500000px;}
.y113{bottom:259.500000px;}
.y138{bottom:262.500000px;}
.ye0{bottom:263.595000px;}
.y110{bottom:264.000000px;}
.y21{bottom:268.995000px;}
.y5e{bottom:272.235000px;}
.y3f{bottom:274.035000px;}
.y125{bottom:276.000000px;}
.y7d{bottom:277.275000px;}
.y124{bottom:280.500000px;}
.y95{bottom:280.515000px;}
.yc6{bottom:283.395000px;}
.yac{bottom:284.835000px;}
.y10f{bottom:286.500000px;}
.y10e{bottom:289.500000px;}
.ydf{bottom:295.275000px;}
.y137{bottom:297.000000px;}
.y20{bottom:300.675000px;}
.y5d{bottom:303.915000px;}
.y7c{bottom:308.955000px;}
.y3e{bottom:310.395000px;}
.y94{bottom:311.835000px;}
.y136{bottom:313.500000px;}
.yc5{bottom:315.075000px;}
.yab{bottom:316.515000px;}
.y123{bottom:325.500000px;}
.yde{bottom:326.955000px;}
.y1f{bottom:332.355000px;}
.y5c{bottom:335.625000px;}
.y3d{bottom:337.425000px;}
.y7b{bottom:341.025000px;}
.y93{bottom:343.545000px;}
.y134{bottom:346.500000px;}
.yc4{bottom:346.785000px;}
.yaa{bottom:348.225000px;}
.y135{bottom:354.000000px;}
.ydd{bottom:358.665000px;}
.y1e{bottom:364.065000px;}
.y121{bottom:366.000000px;}
.y5b{bottom:366.945000px;}
.y10b{bottom:367.500000px;}
.y10a{bottom:369.000000px;}
.y3c{bottom:369.105000px;}
.y7a{bottom:373.785000px;}
.y92{bottom:375.225000px;}
.yc3{bottom:378.105000px;}
.ya9{bottom:379.905000px;}
.y122{bottom:390.000000px;}
.ydc{bottom:390.345000px;}
.y1d{bottom:395.745000px;}
.y133{bottom:397.500000px;}
.y131{bottom:399.000000px;}
.y5a{bottom:399.345000px;}
.y3b{bottom:400.785000px;}
.y130{bottom:402.000000px;}
.y79{bottom:405.465000px;}
.y132{bottom:406.500000px;}
.y91{bottom:406.905000px;}
.yc2{bottom:409.785000px;}
.ya8{bottom:411.225000px;}
.y120{bottom:421.500000px;}
.ydb{bottom:422.025000px;}
.y1c{bottom:427.065000px;}
.y11f{bottom:429.000000px;}
.y59{bottom:431.745000px;}
.y3a{bottom:432.465000px;}
.y78{bottom:437.145000px;}
.y90{bottom:438.585000px;}
.yc1{bottom:441.465000px;}
.ya7{bottom:442.905000px;}
.yda{bottom:453.705000px;}
.y1b{bottom:458.745000px;}
.y109{bottom:462.000000px;}
.y58{bottom:463.470000px;}
.y39{bottom:464.190000px;}
.y77{bottom:468.870000px;}
.y8f{bottom:470.670000px;}
.yc0{bottom:473.190000px;}
.y11e{bottom:474.000000px;}
.ya6{bottom:474.630000px;}
.y12f{bottom:478.500000px;}
.y11d{bottom:481.500000px;}
.yd9{bottom:485.430000px;}
.y1a{bottom:490.470000px;}
.y57{bottom:495.510000px;}
.y38{bottom:495.870000px;}
.y76{bottom:500.550000px;}
.y8e{bottom:503.430000px;}
.ybf{bottom:504.870000px;}
.ya5{bottom:506.310000px;}
.y12d{bottom:508.500000px;}
.y11c{bottom:510.000000px;}
.y10d{bottom:513.000000px;}
.y12e{bottom:514.500000px;}
.yd8{bottom:517.110000px;}
.y19{bottom:522.150000px;}
.y108{bottom:526.500000px;}
.y37{bottom:527.550000px;}
.y11b{bottom:528.000000px;}
.y56{bottom:528.630000px;}
.y75{bottom:532.230000px;}
.y8d{bottom:535.110000px;}
.ybe{bottom:536.550000px;}
.ya4{bottom:537.990000px;}
.y11a{bottom:540.000000px;}
.y10c{bottom:546.000000px;}
.yd7{bottom:548.430000px;}
.y18{bottom:553.830000px;}
.y107{bottom:556.500000px;}
.y36{bottom:559.230000px;}
.y55{bottom:561.750000px;}
.y74{bottom:564.270000px;}
.y8c{bottom:566.790000px;}
.ybd{bottom:568.230000px;}
.ya3{bottom:569.670000px;}
.yd6{bottom:580.110000px;}
.y17{bottom:585.540000px;}
.y12c{bottom:588.000000px;}
.y35{bottom:590.940000px;}
.y54{bottom:594.540000px;}
.y73{bottom:597.060000px;}
.y8b{bottom:598.500000px;}
.y119{bottom:598.505700px;}
.ybc{bottom:599.940000px;}
.ya2{bottom:601.380000px;}
.y106{bottom:604.500000px;}
.yd5{bottom:611.820000px;}
.y16{bottom:617.220000px;}
.y34{bottom:622.620000px;}
.y53{bottom:626.220000px;}
.y72{bottom:628.740000px;}
.y8a{bottom:630.180000px;}
.ybb{bottom:631.620000px;}
.ya1{bottom:633.060000px;}
.y118{bottom:639.000000px;}
.y105{bottom:640.500000px;}
.yd4{bottom:643.500000px;}
.y12b{bottom:645.000000px;}
.y15{bottom:648.900000px;}
.y33{bottom:654.300000px;}
.y52{bottom:657.900000px;}
.y71{bottom:660.420000px;}
.y89{bottom:661.860000px;}
.yba{bottom:663.300000px;}
.y104{bottom:664.500000px;}
.ya0{bottom:664.740000px;}
.y103{bottom:667.500000px;}
.yd3{bottom:675.180000px;}
.y101{bottom:676.500000px;}
.y14{bottom:680.580000px;}
.y32{bottom:685.980000px;}
.y51{bottom:689.580000px;}
.y102{bottom:690.000000px;}
.y70{bottom:692.460000px;}
.y88{bottom:693.540000px;}
.yb9{bottom:694.980000px;}
.y9f{bottom:696.420000px;}
.yfe{bottom:699.000000px;}
.yd2{bottom:706.890000px;}
.y12a{bottom:708.000000px;}
.yff{bottom:709.500000px;}
.y13{bottom:712.290000px;}
.y31{bottom:717.330000px;}
.y100{bottom:718.500000px;}
.y50{bottom:721.290000px;}
.y87{bottom:725.250000px;}
.y6f{bottom:725.610000px;}
.yb8{bottom:726.690000px;}
.y9e{bottom:728.130000px;}
.yd1{bottom:738.570000px;}
.yfd{bottom:741.000000px;}
.y12{bottom:741.090000px;}
.y30{bottom:749.010000px;}
.y4f{bottom:752.970000px;}
.y86{bottom:756.930000px;}
.y6e{bottom:758.370000px;}
.y9d{bottom:759.810000px;}
.y129{bottom:766.500000px;}
.y11{bottom:769.170000px;}
.yd0{bottom:770.250000px;}
.yfc{bottom:777.000000px;}
.y128{bottom:780.000000px;}
.y2f{bottom:780.690000px;}
.y127{bottom:784.500000px;}
.y4e{bottom:784.650000px;}
.y85{bottom:788.970000px;}
.y6d{bottom:790.050000px;}
.y9c{bottom:791.490000px;}
.yfb{bottom:793.500000px;}
.y10{bottom:797.970000px;}
.ycf{bottom:801.930000px;}
.yfa{bottom:805.500000px;}
.y2e{bottom:812.370000px;}
.y4d{bottom:816.690000px;}
.yf9{bottom:820.500000px;}
.y84{bottom:821.370000px;}
.y6c{bottom:822.090000px;}
.y9b{bottom:823.170000px;}
.yf{bottom:827.130000px;}
.yf6{bottom:827.490000px;}
.yce{bottom:833.655000px;}
.y2d{bottom:844.095000px;}
.yf5{bottom:848.415000px;}
.y4c{bottom:849.495000px;}
.y83{bottom:853.095000px;}
.y6b{bottom:854.535000px;}
.ye{bottom:855.975000px;}
.ycd{bottom:865.335000px;}
.yf4{bottom:867.135000px;}
.y2c{bottom:875.775000px;}
.y4b{bottom:881.175000px;}
.yf8{bottom:882.000000px;}
.yb7{bottom:884.775000px;}
.yd{bottom:885.135000px;}
.y6a{bottom:886.215000px;}
.yf3{bottom:888.735000px;}
.ycc{bottom:897.015000px;}
.yf7{bottom:900.000000px;}
.y2b{bottom:907.455000px;}
.yf2{bottom:910.335000px;}
.y4a{bottom:912.855000px;}
.yc{bottom:914.295000px;}
.yb6{bottom:916.455000px;}
.y69{bottom:917.895000px;}
.ycb{bottom:928.695000px;}
.yf1{bottom:931.935000px;}
.y2a{bottom:939.135000px;}
.yb{bottom:943.095000px;}
.y49{bottom:944.535000px;}
.yb5{bottom:948.135000px;}
.y68{bottom:949.575000px;}
.yef{bottom:953.535000px;}
.yca{bottom:960.405000px;}
.y29{bottom:970.845000px;}
.ya{bottom:972.285000px;}
.yee{bottom:975.525000px;}
.y48{bottom:976.245000px;}
.yb4{bottom:979.845000px;}
.y67{bottom:981.285000px;}
.yc9{bottom:991.725000px;}
.yed{bottom:997.125000px;}
.y9{bottom:1001.085000px;}
.y28{bottom:1002.525000px;}
.y47{bottom:1007.565000px;}
.yb3{bottom:1011.525000px;}
.y66{bottom:1012.965000px;}
.yec{bottom:1018.725000px;}
.yc8{bottom:1023.405000px;}
.y8{bottom:1030.245000px;}
.y27{bottom:1034.205000px;}
.y46{bottom:1039.245000px;}
.yea{bottom:1040.325000px;}
.yb2{bottom:1043.565000px;}
.y65{bottom:1044.645000px;}
.yc7{bottom:1055.085000px;}
.y7{bottom:1057.605000px;}
.ye6{bottom:1062.285000px;}
.y26{bottom:1065.885000px;}
.y45{bottom:1073.445000px;}
.y64{bottom:1076.325000px;}
.y6{bottom:1086.810000px;}
.y25{bottom:1097.610000px;}
.ye5{bottom:1103.730000px;}
.y44{bottom:1108.050000px;}
.y5{bottom:1118.490000px;}
.ye4{bottom:1121.370000px;}
.y24{bottom:1139.730000px;}
.y4{bottom:1145.490000px;}
.y23{bottom:1226.880000px;}
.y22{bottom:1244.880000px;}
.h16{height:19.980000px;}
.h13{height:20.520000px;}
.h14{height:20.556000px;}
.h4{height:21.240000px;}
.h1a{height:23.976000px;}
.h28{height:31.968000px;}
.h5{height:34.781484px;}
.h12{height:35.316000px;}
.h60{height:39.960000px;}
.hc{height:43.447266px;}
.h7{height:43.558594px;}
.h3d{height:43.623047px;}
.h4e{height:43.956000px;}
.ha{height:44.267344px;}
.hd{height:45.000000px;}
.h8{height:47.707031px;}
.h2c{height:47.952000px;}
.h9{height:48.483281px;}
.hb{height:50.273438px;}
.he{height:50.906250px;}
.h6{height:51.855469px;}
.h23{height:51.948000px;}
.h3{height:52.699219px;}
.hf{height:53.501484px;}
.h11{height:53.681484px;}
.h63{height:57.708984px;}
.h10{height:60.152344px;}
.h55{height:62.282813px;}
.h64{height:64.788281px;}
.h59{height:66.332812px;}
.h61{height:66.541992px;}
.h57{height:67.725000px;}
.h42{height:67.932000px;}
.h38{height:74.786133px;}
.h2d{height:75.375000px;}
.h5a{height:75.719531px;}
.h44{height:76.345312px;}
.h53{height:77.400000px;}
.h18{height:77.596875px;}
.h4f{height:83.619141px;}
.h39{height:84.480469px;}
.h62{height:86.983594px;}
.h54{height:87.152344px;}
.h49{height:88.860937px;}
.h3a{height:88.889062px;}
.h67{height:90.096680px;}
.h4b{height:90.112500px;}
.h3e{height:90.685547px;}
.h48{height:91.364062px;}
.h4a{height:93.121875px;}
.h2b{height:101.377188px;}
.h31{height:102.002344px;}
.h17{height:103.253906px;}
.h5c{height:104.707031px;}
.h41{height:114.685547px;}
.h3f{height:118.272656px;}
.h1b{height:120.128906px;}
.h32{height:120.150626px;}
.h4c{height:123.662109px;}
.h4d{height:130.139648px;}
.h45{height:130.570901px;}
.h66{height:130.788281px;}
.h52{height:132.666251px;}
.h25{height:137.206055px;}
.h1f{height:138.972656px;}
.h34{height:140.150391px;}
.h65{height:143.094727px;}
.h5d{height:147.852000px;}
.h36{height:150.750000px;}
.h5b{height:152.064844px;}
.h35{height:153.694336px;}
.h5f{height:160.172464px;}
.h58{height:167.709375px;}
.h50{height:170.213126px;}
.h24{height:180.225000px;}
.h19{height:187.734375px;}
.h3b{height:190.237500px;}
.h29{height:190.793558px;}
.h37{height:192.740625px;}
.h3c{height:200.250000px;}
.h30{height:203.796000px;}
.h43{height:207.281839px;}
.h2a{height:215.269376px;}
.h33{height:216.703125px;}
.h2e{height:220.275626px;}
.h46{height:235.293750px;}
.h47{height:250.312500px;}
.h40{height:260.325000px;}
.h26{height:292.078125px;}
.h1c{height:293.255859px;}
.h51{height:332.916251px;}
.h2f{height:352.275626px;}
.h22{height:365.504590px;}
.h20{height:367.453714px;}
.h27{height:384.562500px;}
.h56{height:390.488126px;}
.h21{height:408.562500px;}
.h1d{height:414.563089px;}
.h5e{height:444.562500px;}
.h1e{height:450.562500px;}
.h15{height:918.000000px;}
.h2{height:1261.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:9.720000px;}
.w4{width:19.800000px;}
.w6{width:133.236000px;}
.w5{width:136.872000px;}
.w7{width:163.155000px;}
.w2{width:891.000000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.w8{width:1188.000000px;}
.x0{left:0.000000px;}
.x9{left:1.110000px;}
.x3{left:7.500000px;}
.xb{left:58.350000px;}
.x16{left:79.950000px;}
.xc{left:86.070000px;}
.xe{left:91.110000px;}
.x15{left:93.990000px;}
.x10{left:95.790000px;}
.x12{left:99.750000px;}
.xf{left:101.955000px;}
.x14{left:105.195000px;}
.x13{left:109.155000px;}
.x11{left:114.915000px;}
.x1{left:127.476000px;}
.x6{left:148.752000px;}
.x5{left:159.555000px;}
.x78{left:170.070000px;}
.x62{left:173.220000px;}
.x6f{left:177.615000px;}
.x4{left:180.795000px;}
.x79{left:202.500000px;}
.x4a{left:209.985000px;}
.x8{left:229.755000px;}
.x47{left:251.385000px;}
.x48{left:255.645000px;}
.x4b{left:257.265000px;}
.x63{left:280.260000px;}
.x7a{left:289.485000px;}
.x46{left:292.230000px;}
.x64{left:293.760000px;}
.x65{left:301.245000px;}
.x49{left:303.015000px;}
.x59{left:315.705000px;}
.x7c{left:319.455000px;}
.x66{left:322.260000px;}
.x1c{left:327.945000px;}
.x1f{left:330.375000px;}
.x25{left:332.100000px;}
.x1e{left:333.930000px;}
.x26{left:335.550000px;}
.x2f{left:337.500000px;}
.x2b{left:339.735000px;}
.x67{left:347.670000px;}
.xa{left:366.630000px;}
.x17{left:369.000000px;}
.x1d{left:375.480000px;}
.x27{left:378.000000px;}
.x7d{left:379.215000px;}
.x5a{left:385.065000px;}
.x28{left:392.205000px;}
.x3d{left:393.765000px;}
.x29{left:410.715000px;}
.x3e{left:411.783000px;}
.x20{left:419.160000px;}
.x22{left:422.115000px;}
.x35{left:423.720000px;}
.x2a{left:428.565000px;}
.x18{left:430.050000px;}
.x7{left:436.500000px;}
.x5b{left:439.140000px;}
.x2{left:441.540000px;}
.x36{left:460.035000px;}
.x23{left:463.275000px;}
.x2c{left:472.425000px;}
.x30{left:478.035000px;}
.x24{left:480.630000px;}
.xd{left:499.860000px;}
.x19{left:502.215000px;}
.x21{left:505.005000px;}
.x31{left:514.275000px;}
.x1b{left:538.530000px;}
.x42{left:540.315000px;}
.x2d{left:541.815000px;}
.x43{left:545.865000px;}
.x2e{left:548.865000px;}
.x60{left:550.050000px;}
.x32{left:559.215000px;}
.x3f{left:562.275000px;}
.x4c{left:578.865000px;}
.x40{left:586.620000px;}
.x68{left:587.760000px;}
.x84{left:596.550000px;}
.x61{left:598.050000px;}
.x33{left:604.275000px;}
.x69{left:610.080000px;}
.x34{left:611.730000px;}
.x7e{left:626.955000px;}
.x37{left:630.750000px;}
.x1a{left:639.000000px;}
.x7f{left:640.335000px;}
.x6a{left:643.305000px;}
.x6b{left:650.940000px;}
.x41{left:661.065000px;}
.x70{left:662.670000px;}
.x38{left:684.750000px;}
.x6c{left:688.305000px;}
.x39{left:702.060000px;}
.x71{left:703.170000px;}
.x6d{left:704.925000px;}
.x44{left:710.580000px;}
.x3a{left:737.190000px;}
.x80{left:746.700000px;}
.x3b{left:757.560000px;}
.x3c{left:782.400000px;}
.x4f{left:784.005000px;}
.x57{left:785.655000px;}
.x72{left:789.870000px;}
.x45{left:792.315000px;}
.x58{left:800.475000px;}
.x7b{left:803.340000px;}
.x50{left:810.450000px;}
.x51{left:831.060000px;}
.x5c{left:867.510000px;}
.x4d{left:872.790000px;}
.x73{left:914.775000px;}
.x6e{left:923.820000px;}
.x5d{left:929.295000px;}
.x81{left:931.455000px;}
.x52{left:935.685000px;}
.x5e{left:945.975000px;}
.x4e{left:950.790000px;}
.x74{left:956.700000px;}
.x75{left:973.320000px;}
.x53{left:977.685000px;}
.x76{left:985.080000px;}
.x82{left:991.080000px;}
.x5f{left:997.065000px;}
.x54{left:998.355000px;}
.x77{left:1006.305000px;}
.x55{left:1020.060000px;}
.x56{left:1041.000000px;}
.x83{left:1051.215000px;}
@media print{
.vc{vertical-align:-144.000000pt;}
.va{vertical-align:-74.666667pt;}
.vb{vertical-align:-64.000000pt;}
.v7{vertical-align:-58.666667pt;}
.v6{vertical-align:-37.333333pt;}
.v2{vertical-align:-16.640000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.120000pt;}
.ve{vertical-align:10.666667pt;}
.v4{vertical-align:12.800000pt;}
.v1{vertical-align:16.640000pt;}
.v9{vertical-align:21.333333pt;}
.vd{vertical-align:42.666667pt;}
.v8{vertical-align:117.333333pt;}
.ls38{letter-spacing:-11.592000pt;}
.ls62{letter-spacing:-9.930685pt;}
.ls37{letter-spacing:-9.296000pt;}
.ls40{letter-spacing:-6.869333pt;}
.ls39{letter-spacing:-5.376000pt;}
.ls61{letter-spacing:-5.077352pt;}
.ls44{letter-spacing:-4.872000pt;}
.ls46{letter-spacing:-4.778667pt;}
.ls71{letter-spacing:-4.536000pt;}
.ls43{letter-spacing:-4.442667pt;}
.ls3a{letter-spacing:-4.349333pt;}
.ls5e{letter-spacing:-4.125333pt;}
.ls5c{letter-spacing:-3.920000pt;}
.ls36{letter-spacing:-3.808000pt;}
.ls4f{letter-spacing:-3.528000pt;}
.ls5a{letter-spacing:-2.874667pt;}
.ls72{letter-spacing:-2.856000pt;}
.ls52{letter-spacing:-2.725333pt;}
.ls5b{letter-spacing:-2.688000pt;}
.ls49{letter-spacing:-2.673440pt;}
.ls59{letter-spacing:-2.650667pt;}
.ls58{letter-spacing:-2.520000pt;}
.ls3d{letter-spacing:-2.389333pt;}
.ls6d{letter-spacing:-2.258667pt;}
.ls41{letter-spacing:-2.234027pt;}
.ls6f{letter-spacing:-2.109333pt;}
.ls6b{letter-spacing:-2.090667pt;}
.ls66{letter-spacing:-1.922667pt;}
.ls6e{letter-spacing:-1.918080pt;}
.ls70{letter-spacing:-1.829333pt;}
.ls18{letter-spacing:-1.472000pt;}
.ls11{letter-spacing:-1.408000pt;}
.ls1b{letter-spacing:-0.896000pt;}
.ls15{letter-spacing:-0.768000pt;}
.ls4{letter-spacing:-0.647680pt;}
.ls16{letter-spacing:-0.640000pt;}
.ls1{letter-spacing:-0.588800pt;}
.ls25{letter-spacing:-0.537600pt;}
.ls27{letter-spacing:-0.532224pt;}
.ls19{letter-spacing:-0.512000pt;}
.ls5{letter-spacing:-0.448000pt;}
.ls2{letter-spacing:-0.353280pt;}
.ls26{letter-spacing:-0.344064pt;}
.ls29{letter-spacing:-0.322560pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls2a{letter-spacing:-0.268800pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls2f{letter-spacing:-0.128000pt;}
.ls50{letter-spacing:-0.114987pt;}
.ls4d{letter-spacing:-0.090347pt;}
.ls1e{letter-spacing:-0.059136pt;}
.ls0{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.010667pt;}
.ls23{letter-spacing:0.053760pt;}
.ls22{letter-spacing:0.128000pt;}
.ls28{letter-spacing:0.182784pt;}
.lse{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.320000pt;}
.ls30{letter-spacing:0.345600pt;}
.ls24{letter-spacing:0.376320pt;}
.ls12{letter-spacing:0.384000pt;}
.ls1a{letter-spacing:0.416000pt;}
.ls2d{letter-spacing:0.430080pt;}
.ls42{letter-spacing:0.431573pt;}
.lsf{letter-spacing:0.448000pt;}
.ls2e{letter-spacing:0.483840pt;}
.ls2b{letter-spacing:0.510720pt;}
.lsc{letter-spacing:0.512000pt;}
.ls2c{letter-spacing:0.537600pt;}
.ls17{letter-spacing:0.576000pt;}
.ls3{letter-spacing:0.588800pt;}
.lsd{letter-spacing:0.640000pt;}
.ls51{letter-spacing:0.673493pt;}
.ls4e{letter-spacing:0.747413pt;}
.ls56{letter-spacing:0.751680pt;}
.ls4b{letter-spacing:0.895253pt;}
.ls31{letter-spacing:0.950400pt;}
.ls32{letter-spacing:0.956480pt;}
.ls68{letter-spacing:1.071787pt;}
.ls4c{letter-spacing:1.100587pt;}
.ls1d{letter-spacing:1.216000pt;}
.ls3c{letter-spacing:1.358507pt;}
.ls53{letter-spacing:1.791573pt;}
.ls48{letter-spacing:2.016000pt;}
.ls5d{letter-spacing:2.240000pt;}
.ls6a{letter-spacing:2.323627pt;}
.ls21{letter-spacing:2.560000pt;}
.ls65{letter-spacing:2.746667pt;}
.ls6c{letter-spacing:2.826667pt;}
.ls69{letter-spacing:2.986667pt;}
.ls3f{letter-spacing:3.112976pt;}
.ls34{letter-spacing:3.306667pt;}
.ls47{letter-spacing:3.386667pt;}
.ls63{letter-spacing:3.413333pt;}
.ls4a{letter-spacing:3.761493pt;}
.ls60{letter-spacing:3.786667pt;}
.ls64{letter-spacing:3.946667pt;}
.ls3e{letter-spacing:4.346667pt;}
.ls33{letter-spacing:4.400000pt;}
.ls45{letter-spacing:5.120027pt;}
.ls5f{letter-spacing:5.893333pt;}
.ls1f{letter-spacing:6.400000pt;}
.ls67{letter-spacing:7.253360pt;}
.ls8{letter-spacing:7.680000pt;}
.ls7{letter-spacing:7.808000pt;}
.ls35{letter-spacing:8.000000pt;}
.ls3b{letter-spacing:8.640027pt;}
.lsa{letter-spacing:8.960000pt;}
.ls13{letter-spacing:9.907200pt;}
.ls20{letter-spacing:12.800000pt;}
.ls1c{letter-spacing:16.640000pt;}
.ls55{letter-spacing:26.880000pt;}
.ls57{letter-spacing:420.270756pt;}
.ls54{letter-spacing:989.017422pt;}
.ws5f{word-spacing:-78.878015pt;}
.ws15{word-spacing:-64.000000pt;}
.ws42{word-spacing:-55.104000pt;}
.ws1e{word-spacing:-53.824000pt;}
.ws59{word-spacing:-53.333333pt;}
.ws41{word-spacing:-51.264000pt;}
.ws14{word-spacing:-49.984000pt;}
.ws9{word-spacing:-44.864000pt;}
.ws5e{word-spacing:-31.258240pt;}
.ws5c{word-spacing:-29.499307pt;}
.ws5b{word-spacing:-24.167467pt;}
.ws5d{word-spacing:-23.933653pt;}
.ws60{word-spacing:-13.733333pt;}
.ws1a{word-spacing:-9.024000pt;}
.ws39{word-spacing:-1.280000pt;}
.ws4{word-spacing:-0.647680pt;}
.ws31{word-spacing:-0.640000pt;}
.ws53{word-spacing:-0.591360pt;}
.ws1c{word-spacing:-0.576000pt;}
.ws52{word-spacing:-0.564480pt;}
.ws56{word-spacing:-0.537600pt;}
.ws33{word-spacing:-0.512000pt;}
.ws54{word-spacing:-0.483840pt;}
.ws28{word-spacing:-0.448000pt;}
.ws4b{word-spacing:-0.430080pt;}
.wsb{word-spacing:-0.384000pt;}
.ws4f{word-spacing:-0.236544pt;}
.ws0{word-spacing:-0.064000pt;}
.ws1{word-spacing:-0.058880pt;}
.ws4a{word-spacing:-0.053760pt;}
.ws18{word-spacing:-0.042240pt;}
.ws55{word-spacing:-0.034560pt;}
.wse{word-spacing:0.000000pt;}
.ws3b{word-spacing:0.005376pt;}
.ws2d{word-spacing:0.128000pt;}
.ws26{word-spacing:0.192000pt;}
.ws51{word-spacing:0.215040pt;}
.ws34{word-spacing:0.256000pt;}
.ws50{word-spacing:0.268800pt;}
.ws4d{word-spacing:0.290304pt;}
.ws3{word-spacing:0.294400pt;}
.ws36{word-spacing:0.448000pt;}
.ws4e{word-spacing:0.478464pt;}
.ws4c{word-spacing:0.483840pt;}
.ws2{word-spacing:0.529920pt;}
.ws2a{word-spacing:0.576000pt;}
.ws5{word-spacing:0.588800pt;}
.ws29{word-spacing:0.704000pt;}
.ws35{word-spacing:0.832000pt;}
.ws61{word-spacing:1.297067pt;}
.ws27{word-spacing:1.344000pt;}
.ws32{word-spacing:1.408000pt;}
.ws5a{word-spacing:4.867413pt;}
.ws16{word-spacing:8.896000pt;}
.ws3a{word-spacing:9.354667pt;}
.ws3d{word-spacing:9.472000pt;}
.ws2b{word-spacing:9.600000pt;}
.ws49{word-spacing:9.920000pt;}
.ws6{word-spacing:10.112000pt;}
.ws1d{word-spacing:10.176000pt;}
.ws25{word-spacing:10.240000pt;}
.ws12{word-spacing:10.496000pt;}
.ws3e{word-spacing:10.570667pt;}
.ws46{word-spacing:10.666667pt;}
.ws21{word-spacing:10.752000pt;}
.ws44{word-spacing:11.264000pt;}
.ws17{word-spacing:11.392000pt;}
.ws19{word-spacing:11.456000pt;}
.ws38{word-spacing:11.786667pt;}
.wsf{word-spacing:12.672000pt;}
.ws1b{word-spacing:12.736000pt;}
.ws8{word-spacing:13.952000pt;}
.ws57{word-spacing:14.016000pt;}
.ws7{word-spacing:14.848000pt;}
.ws13{word-spacing:15.232000pt;}
.ws37{word-spacing:16.512000pt;}
.ws23{word-spacing:16.896000pt;}
.wsc{word-spacing:17.792000pt;}
.wsa{word-spacing:19.072000pt;}
.ws3f{word-spacing:19.136000pt;}
.ws20{word-spacing:20.352000pt;}
.ws10{word-spacing:21.632000pt;}
.ws58{word-spacing:21.696000pt;}
.ws45{word-spacing:22.912000pt;}
.ws2c{word-spacing:26.752000pt;}
.ws11{word-spacing:28.032000pt;}
.ws24{word-spacing:31.872000pt;}
.ws47{word-spacing:33.152000pt;}
.ws3c{word-spacing:34.432000pt;}
.ws43{word-spacing:35.712000pt;}
.ws40{word-spacing:36.992000pt;}
.ws2f{word-spacing:37.248000pt;}
.ws30{word-spacing:38.272000pt;}
.ws2e{word-spacing:38.538667pt;}
.ws1f{word-spacing:39.552000pt;}
.ws48{word-spacing:53.632000pt;}
.ws22{word-spacing:174.154667pt;}
.wsd{word-spacing:826.613333pt;}
.ws62{word-spacing:848.565333pt;}
._2c{margin-left:-53.058233pt;}
._1a{margin-left:-38.965333pt;}
._18{margin-left:-29.476800pt;}
._17{margin-left:-23.626987pt;}
._28{margin-left:-19.906249pt;}
._25{margin-left:-15.961693pt;}
._2f{margin-left:-13.681131pt;}
._1f{margin-left:-10.858400pt;}
._26{margin-left:-7.522177pt;}
._2a{margin-left:-6.508684pt;}
._2b{margin-left:-5.138987pt;}
._3{margin-left:-2.062507pt;}
._0{margin-left:-1.152000pt;}
._1{width:1.013333pt;}
._2{width:1.952853pt;}
._8{width:3.162453pt;}
._5{width:4.362667pt;}
._4{width:5.578667pt;}
._7{width:6.538667pt;}
._d{width:8.058453pt;}
._6{width:8.978347pt;}
._30{width:9.931520pt;}
._b{width:11.110827pt;}
._14{width:12.416853pt;}
._11{width:13.504000pt;}
._9{width:15.008000pt;}
._10{width:17.056000pt;}
._c{width:18.574507pt;}
._16{width:19.837013pt;}
._a{width:21.059840pt;}
._13{width:22.008320pt;}
._12{width:25.856000pt;}
._15{width:34.698667pt;}
._e{width:41.597013pt;}
._19{width:77.665798pt;}
._20{width:86.133333pt;}
._2e{width:92.656817pt;}
._21{width:94.880000pt;}
._2d{width:97.990150pt;}
._1d{width:129.965333pt;}
._3a{width:141.952000pt;}
._38{width:166.429333pt;}
._f{width:174.218667pt;}
._24{width:204.872747pt;}
._23{width:242.880000pt;}
._29{width:302.948994pt;}
._27{width:317.949582pt;}
._1e{width:347.349333pt;}
._1b{width:358.016000pt;}
._39{width:406.437867pt;}
._37{width:454.785852pt;}
._1c{width:473.731200pt;}
._36{width:608.541867pt;}
._22{width:875.874240pt;}
._32{width:936.852480pt;}
._31{width:958.158720pt;}
._35{width:970.752000pt;}
._34{width:1022.826667pt;}
._33{width:1048.480000pt;}
.fs7{font-size:26.666667pt;}
.fsb{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs1{font-size:42.240000pt;}
.fs19{font-size:42.666667pt;}
.fs50{font-size:52.266667pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:53.760000pt;}
.fs40{font-size:54.933333pt;}
.fs44{font-size:56.533333pt;}
.fs2f{font-size:57.600000pt;}
.fs3b{font-size:58.666667pt;}
.fs3{font-size:58.880000pt;}
.fs42{font-size:59.733333pt;}
.fs4d{font-size:60.266667pt;}
.fs0{font-size:64.000000pt;}
.fs45{font-size:64.533333pt;}
.fs32{font-size:65.066667pt;}
.fs9{font-size:66.133333pt;}
.fs29{font-size:67.733333pt;}
.fs1e{font-size:68.266667pt;}
.fs14{font-size:69.333333pt;}
.fs21{font-size:72.000000pt;}
.fs4f{font-size:72.533333pt;}
.fs4e{font-size:74.133333pt;}
.fs5{font-size:74.240000pt;}
.fs37{font-size:75.733333pt;}
.fs38{font-size:76.800000pt;}
.fs36{font-size:77.866667pt;}
.fs2a{font-size:78.400000pt;}
.fs3f{font-size:78.933333pt;}
.fs49{font-size:80.533333pt;}
.fs52{font-size:81.600000pt;}
.fs2c{font-size:82.133333pt;}
.fs47{font-size:83.200000pt;}
.fs1c{font-size:86.400533pt;}
.fs23{font-size:86.933333pt;}
.fs35{font-size:87.466667pt;}
.fs8{font-size:88.000000pt;}
.fs30{font-size:90.666667pt;}
.fs34{font-size:91.733867pt;}
.fs48{font-size:100.266667pt;}
.fs2d{font-size:100.800000pt;}
.fs18{font-size:102.400533pt;}
.fsc{font-size:108.800000pt;}
.fs51{font-size:111.466667pt;}
.fs39{font-size:112.000000pt;}
.fs3e{font-size:113.067200pt;}
.fs3a{font-size:117.866667pt;}
.fs41{font-size:123.733867pt;}
.fs16{font-size:124.266667pt;}
.fs10{font-size:125.866667pt;}
.fs25{font-size:126.933333pt;}
.fs46{font-size:129.600000pt;}
.fs27{font-size:136.533333pt;}
.fs26{font-size:139.200000pt;}
.fs43{font-size:142.933333pt;}
.fs3c{font-size:145.067200pt;}
.fs15{font-size:153.600000pt;}
.fsa{font-size:160.000000pt;}
.fs2b{font-size:162.133333pt;}
.fs28{font-size:164.266667pt;}
.fs1f{font-size:170.666667pt;}
.fs1a{font-size:172.800533pt;}
.fs4b{font-size:174.933333pt;}
.fs4c{font-size:182.400533pt;}
.fs1b{font-size:183.467200pt;}
.fs20{font-size:187.733867pt;}
.fs24{font-size:196.266667pt;}
.fs4a{font-size:197.333333pt;}
.fs31{font-size:200.533333pt;}
.fs33{font-size:213.333333pt;}
.fs2e{font-size:221.866667pt;}
.fs17{font-size:264.533333pt;}
.fsd{font-size:265.600000pt;}
.fs22{font-size:272.000000pt;}
.fs3d{font-size:283.733867pt;}
.fs12{font-size:290.133867pt;}
.fs1d{font-size:298.666667pt;}
.fs13{font-size:331.200000pt;}
.fs11{font-size:332.800533pt;}
.fse{font-size:375.467200pt;}
.fsf{font-size:384.000000pt;}
.y0{bottom:0.000000pt;}
.ye9{bottom:3.200000pt;}
.y3{bottom:3.840000pt;}
.yeb{bottom:4.480000pt;}
.yf0{bottom:4.506667pt;}
.ye7{bottom:11.200000pt;}
.ye8{bottom:18.920000pt;}
.y2{bottom:46.720000pt;}
.y1{bottom:50.560000pt;}
.y142{bottom:65.333333pt;}
.y116{bottom:69.333333pt;}
.y63{bottom:99.872000pt;}
.y82{bottom:105.952000pt;}
.y9a{bottom:106.272000pt;}
.yb1{bottom:112.352000pt;}
.y126{bottom:117.333333pt;}
.y62{bottom:128.352000pt;}
.y141{bottom:130.666667pt;}
.y43{bottom:131.232000pt;}
.y81{bottom:134.106667pt;}
.y99{bottom:135.386667pt;}
.yb0{bottom:140.506667pt;}
.y115{bottom:148.000000pt;}
.ye3{bottom:149.786667pt;}
.y140{bottom:152.000000pt;}
.y13e{bottom:156.000000pt;}
.y61{bottom:157.466667pt;}
.y42{bottom:159.386667pt;}
.y13f{bottom:160.000000pt;}
.y80{bottom:162.266667pt;}
.y98{bottom:163.866667pt;}
.y13c{bottom:165.333333pt;}
.y13d{bottom:166.666667pt;}
.y112{bottom:166.686400pt;}
.yaf{bottom:168.666667pt;}
.y13b{bottom:176.000000pt;}
.ye2{bottom:177.946667pt;}
.y114{bottom:182.666667pt;}
.y139{bottom:184.000000pt;}
.y60{bottom:185.626667pt;}
.y41{bottom:187.546667pt;}
.y111{bottom:188.000000pt;}
.y7f{bottom:190.466667pt;}
.y97{bottom:193.026667pt;}
.yae{bottom:196.866667pt;}
.y13a{bottom:198.666667pt;}
.ye1{bottom:206.146667pt;}
.y5f{bottom:213.826667pt;}
.y40{bottom:215.746667pt;}
.y7e{bottom:218.306667pt;}
.y96{bottom:221.186667pt;}
.yad{bottom:225.026667pt;}
.y117{bottom:225.333333pt;}
.y113{bottom:230.666667pt;}
.y138{bottom:233.333333pt;}
.ye0{bottom:234.306667pt;}
.y110{bottom:234.666667pt;}
.y21{bottom:239.106667pt;}
.y5e{bottom:241.986667pt;}
.y3f{bottom:243.586667pt;}
.y125{bottom:245.333333pt;}
.y7d{bottom:246.466667pt;}
.y124{bottom:249.333333pt;}
.y95{bottom:249.346667pt;}
.yc6{bottom:251.906667pt;}
.yac{bottom:253.186667pt;}
.y10f{bottom:254.666667pt;}
.y10e{bottom:257.333333pt;}
.ydf{bottom:262.466667pt;}
.y137{bottom:264.000000pt;}
.y20{bottom:267.266667pt;}
.y5d{bottom:270.146667pt;}
.y7c{bottom:274.626667pt;}
.y3e{bottom:275.906667pt;}
.y94{bottom:277.186667pt;}
.y136{bottom:278.666667pt;}
.yc5{bottom:280.066667pt;}
.yab{bottom:281.346667pt;}
.y123{bottom:289.333333pt;}
.yde{bottom:290.626667pt;}
.y1f{bottom:295.426667pt;}
.y5c{bottom:298.333333pt;}
.y3d{bottom:299.933333pt;}
.y7b{bottom:303.133333pt;}
.y93{bottom:305.373333pt;}
.y134{bottom:308.000000pt;}
.yc4{bottom:308.253333pt;}
.yaa{bottom:309.533333pt;}
.y135{bottom:314.666667pt;}
.ydd{bottom:318.813333pt;}
.y1e{bottom:323.613333pt;}
.y121{bottom:325.333333pt;}
.y5b{bottom:326.173333pt;}
.y10b{bottom:326.666667pt;}
.y10a{bottom:328.000000pt;}
.y3c{bottom:328.093333pt;}
.y7a{bottom:332.253333pt;}
.y92{bottom:333.533333pt;}
.yc3{bottom:336.093333pt;}
.ya9{bottom:337.693333pt;}
.y122{bottom:346.666667pt;}
.ydc{bottom:346.973333pt;}
.y1d{bottom:351.773333pt;}
.y133{bottom:353.333333pt;}
.y131{bottom:354.666667pt;}
.y5a{bottom:354.973333pt;}
.y3b{bottom:356.253333pt;}
.y130{bottom:357.333333pt;}
.y79{bottom:360.413333pt;}
.y132{bottom:361.333333pt;}
.y91{bottom:361.693333pt;}
.yc2{bottom:364.253333pt;}
.ya8{bottom:365.533333pt;}
.y120{bottom:374.666667pt;}
.ydb{bottom:375.133333pt;}
.y1c{bottom:379.613333pt;}
.y11f{bottom:381.333333pt;}
.y59{bottom:383.773333pt;}
.y3a{bottom:384.413333pt;}
.y78{bottom:388.573333pt;}
.y90{bottom:389.853333pt;}
.yc1{bottom:392.413333pt;}
.ya7{bottom:393.693333pt;}
.yda{bottom:403.293333pt;}
.y1b{bottom:407.773333pt;}
.y109{bottom:410.666667pt;}
.y58{bottom:411.973333pt;}
.y39{bottom:412.613333pt;}
.y77{bottom:416.773333pt;}
.y8f{bottom:418.373333pt;}
.yc0{bottom:420.613333pt;}
.y11e{bottom:421.333333pt;}
.ya6{bottom:421.893333pt;}
.y12f{bottom:425.333333pt;}
.y11d{bottom:428.000000pt;}
.yd9{bottom:431.493333pt;}
.y1a{bottom:435.973333pt;}
.y57{bottom:440.453333pt;}
.y38{bottom:440.773333pt;}
.y76{bottom:444.933333pt;}
.y8e{bottom:447.493333pt;}
.ybf{bottom:448.773333pt;}
.ya5{bottom:450.053333pt;}
.y12d{bottom:452.000000pt;}
.y11c{bottom:453.333333pt;}
.y10d{bottom:456.000000pt;}
.y12e{bottom:457.333333pt;}
.yd8{bottom:459.653333pt;}
.y19{bottom:464.133333pt;}
.y108{bottom:468.000000pt;}
.y37{bottom:468.933333pt;}
.y11b{bottom:469.333333pt;}
.y56{bottom:469.893333pt;}
.y75{bottom:473.093333pt;}
.y8d{bottom:475.653333pt;}
.ybe{bottom:476.933333pt;}
.ya4{bottom:478.213333pt;}
.y11a{bottom:480.000000pt;}
.y10c{bottom:485.333333pt;}
.yd7{bottom:487.493333pt;}
.y18{bottom:492.293333pt;}
.y107{bottom:494.666667pt;}
.y36{bottom:497.093333pt;}
.y55{bottom:499.333333pt;}
.y74{bottom:501.573333pt;}
.y8c{bottom:503.813333pt;}
.ybd{bottom:505.093333pt;}
.ya3{bottom:506.373333pt;}
.yd6{bottom:515.653333pt;}
.y17{bottom:520.480000pt;}
.y12c{bottom:522.666667pt;}
.y35{bottom:525.280000pt;}
.y54{bottom:528.480000pt;}
.y73{bottom:530.720000pt;}
.y8b{bottom:532.000000pt;}
.y119{bottom:532.005067pt;}
.ybc{bottom:533.280000pt;}
.ya2{bottom:534.560000pt;}
.y106{bottom:537.333333pt;}
.yd5{bottom:543.840000pt;}
.y16{bottom:548.640000pt;}
.y34{bottom:553.440000pt;}
.y53{bottom:556.640000pt;}
.y72{bottom:558.880000pt;}
.y8a{bottom:560.160000pt;}
.ybb{bottom:561.440000pt;}
.ya1{bottom:562.720000pt;}
.y118{bottom:568.000000pt;}
.y105{bottom:569.333333pt;}
.yd4{bottom:572.000000pt;}
.y12b{bottom:573.333333pt;}
.y15{bottom:576.800000pt;}
.y33{bottom:581.600000pt;}
.y52{bottom:584.800000pt;}
.y71{bottom:587.040000pt;}
.y89{bottom:588.320000pt;}
.yba{bottom:589.600000pt;}
.y104{bottom:590.666667pt;}
.ya0{bottom:590.880000pt;}
.y103{bottom:593.333333pt;}
.yd3{bottom:600.160000pt;}
.y101{bottom:601.333333pt;}
.y14{bottom:604.960000pt;}
.y32{bottom:609.760000pt;}
.y51{bottom:612.960000pt;}
.y102{bottom:613.333333pt;}
.y70{bottom:615.520000pt;}
.y88{bottom:616.480000pt;}
.yb9{bottom:617.760000pt;}
.y9f{bottom:619.040000pt;}
.yfe{bottom:621.333333pt;}
.yd2{bottom:628.346667pt;}
.y12a{bottom:629.333333pt;}
.yff{bottom:630.666667pt;}
.y13{bottom:633.146667pt;}
.y31{bottom:637.626667pt;}
.y100{bottom:638.666667pt;}
.y50{bottom:641.146667pt;}
.y87{bottom:644.666667pt;}
.y6f{bottom:644.986667pt;}
.yb8{bottom:645.946667pt;}
.y9e{bottom:647.226667pt;}
.yd1{bottom:656.506667pt;}
.yfd{bottom:658.666667pt;}
.y12{bottom:658.746667pt;}
.y30{bottom:665.786667pt;}
.y4f{bottom:669.306667pt;}
.y86{bottom:672.826667pt;}
.y6e{bottom:674.106667pt;}
.y9d{bottom:675.386667pt;}
.y129{bottom:681.333333pt;}
.y11{bottom:683.706667pt;}
.yd0{bottom:684.666667pt;}
.yfc{bottom:690.666667pt;}
.y128{bottom:693.333333pt;}
.y2f{bottom:693.946667pt;}
.y127{bottom:697.333333pt;}
.y4e{bottom:697.466667pt;}
.y85{bottom:701.306667pt;}
.y6d{bottom:702.266667pt;}
.y9c{bottom:703.546667pt;}
.yfb{bottom:705.333333pt;}
.y10{bottom:709.306667pt;}
.ycf{bottom:712.826667pt;}
.yfa{bottom:716.000000pt;}
.y2e{bottom:722.106667pt;}
.y4d{bottom:725.946667pt;}
.yf9{bottom:729.333333pt;}
.y84{bottom:730.106667pt;}
.y6c{bottom:730.746667pt;}
.y9b{bottom:731.706667pt;}
.yf{bottom:735.226667pt;}
.yf6{bottom:735.546667pt;}
.yce{bottom:741.026667pt;}
.y2d{bottom:750.306667pt;}
.yf5{bottom:754.146667pt;}
.y4c{bottom:755.106667pt;}
.y83{bottom:758.306667pt;}
.y6b{bottom:759.586667pt;}
.ye{bottom:760.866667pt;}
.ycd{bottom:769.186667pt;}
.yf4{bottom:770.786667pt;}
.y2c{bottom:778.466667pt;}
.y4b{bottom:783.266667pt;}
.yf8{bottom:784.000000pt;}
.yb7{bottom:786.466667pt;}
.yd{bottom:786.786667pt;}
.y6a{bottom:787.746667pt;}
.yf3{bottom:789.986667pt;}
.ycc{bottom:797.346667pt;}
.yf7{bottom:800.000000pt;}
.y2b{bottom:806.626667pt;}
.yf2{bottom:809.186667pt;}
.y4a{bottom:811.426667pt;}
.yc{bottom:812.706667pt;}
.yb6{bottom:814.626667pt;}
.y69{bottom:815.906667pt;}
.ycb{bottom:825.506667pt;}
.yf1{bottom:828.386667pt;}
.y2a{bottom:834.786667pt;}
.yb{bottom:838.306667pt;}
.y49{bottom:839.586667pt;}
.yb5{bottom:842.786667pt;}
.y68{bottom:844.066667pt;}
.yef{bottom:847.586667pt;}
.yca{bottom:853.693333pt;}
.y29{bottom:862.973333pt;}
.ya{bottom:864.253333pt;}
.yee{bottom:867.133333pt;}
.y48{bottom:867.773333pt;}
.yb4{bottom:870.973333pt;}
.y67{bottom:872.253333pt;}
.yc9{bottom:881.533333pt;}
.yed{bottom:886.333333pt;}
.y9{bottom:889.853333pt;}
.y28{bottom:891.133333pt;}
.y47{bottom:895.613333pt;}
.yb3{bottom:899.133333pt;}
.y66{bottom:900.413333pt;}
.yec{bottom:905.533333pt;}
.yc8{bottom:909.693333pt;}
.y8{bottom:915.773333pt;}
.y27{bottom:919.293333pt;}
.y46{bottom:923.773333pt;}
.yea{bottom:924.733333pt;}
.yb2{bottom:927.613333pt;}
.y65{bottom:928.573333pt;}
.yc7{bottom:937.853333pt;}
.y7{bottom:940.093333pt;}
.ye6{bottom:944.253333pt;}
.y26{bottom:947.453333pt;}
.y45{bottom:954.173333pt;}
.y64{bottom:956.733333pt;}
.y6{bottom:966.053333pt;}
.y25{bottom:975.653333pt;}
.ye5{bottom:981.093333pt;}
.y44{bottom:984.933333pt;}
.y5{bottom:994.213333pt;}
.ye4{bottom:996.773333pt;}
.y24{bottom:1013.093333pt;}
.y4{bottom:1018.213333pt;}
.y23{bottom:1090.560000pt;}
.y22{bottom:1106.560000pt;}
.h16{height:17.760000pt;}
.h13{height:18.240000pt;}
.h14{height:18.272000pt;}
.h4{height:18.880000pt;}
.h1a{height:21.312000pt;}
.h28{height:28.416000pt;}
.h5{height:30.916875pt;}
.h12{height:31.392000pt;}
.h60{height:35.520000pt;}
.hc{height:38.619792pt;}
.h7{height:38.718750pt;}
.h3d{height:38.776042pt;}
.h4e{height:39.072000pt;}
.ha{height:39.348750pt;}
.hd{height:40.000000pt;}
.h8{height:42.406250pt;}
.h2c{height:42.624000pt;}
.h9{height:43.096250pt;}
.hb{height:44.687500pt;}
.he{height:45.250000pt;}
.h6{height:46.093750pt;}
.h23{height:46.176000pt;}
.h3{height:46.843750pt;}
.hf{height:47.556875pt;}
.h11{height:47.716875pt;}
.h63{height:51.296875pt;}
.h10{height:53.468750pt;}
.h55{height:55.362500pt;}
.h64{height:57.589583pt;}
.h59{height:58.962500pt;}
.h61{height:59.148438pt;}
.h57{height:60.200000pt;}
.h42{height:60.384000pt;}
.h38{height:66.476562pt;}
.h2d{height:67.000000pt;}
.h5a{height:67.306250pt;}
.h44{height:67.862500pt;}
.h53{height:68.800000pt;}
.h18{height:68.975000pt;}
.h4f{height:74.328125pt;}
.h39{height:75.093750pt;}
.h62{height:77.318750pt;}
.h54{height:77.468750pt;}
.h49{height:78.987500pt;}
.h3a{height:79.012500pt;}
.h67{height:80.085938pt;}
.h4b{height:80.100000pt;}
.h3e{height:80.609375pt;}
.h48{height:81.212500pt;}
.h4a{height:82.775000pt;}
.h2b{height:90.113056pt;}
.h31{height:90.668750pt;}
.h17{height:91.781250pt;}
.h5c{height:93.072917pt;}
.h41{height:101.942708pt;}
.h3f{height:105.131250pt;}
.h1b{height:106.781250pt;}
.h32{height:106.800556pt;}
.h4c{height:109.921875pt;}
.h4d{height:115.679688pt;}
.h45{height:116.063023pt;}
.h66{height:116.256250pt;}
.h52{height:117.925556pt;}
.h25{height:121.960938pt;}
.h1f{height:123.531250pt;}
.h34{height:124.578125pt;}
.h65{height:127.195312pt;}
.h5d{height:131.424000pt;}
.h36{height:134.000000pt;}
.h5b{height:135.168750pt;}
.h35{height:136.617188pt;}
.h5f{height:142.375523pt;}
.h58{height:149.075000pt;}
.h50{height:151.300556pt;}
.h24{height:160.200000pt;}
.h19{height:166.875000pt;}
.h3b{height:169.100000pt;}
.h29{height:169.594273pt;}
.h37{height:171.325000pt;}
.h3c{height:178.000000pt;}
.h30{height:181.152000pt;}
.h43{height:184.250523pt;}
.h2a{height:191.350556pt;}
.h33{height:192.625000pt;}
.h2e{height:195.800556pt;}
.h46{height:209.150000pt;}
.h47{height:222.500000pt;}
.h40{height:231.400000pt;}
.h26{height:259.625000pt;}
.h1c{height:260.671875pt;}
.h51{height:295.925556pt;}
.h2f{height:313.133890pt;}
.h22{height:324.892969pt;}
.h20{height:326.625523pt;}
.h27{height:341.833333pt;}
.h56{height:347.100556pt;}
.h21{height:363.166667pt;}
.h1d{height:368.500523pt;}
.h5e{height:395.166667pt;}
.h1e{height:400.500000pt;}
.h15{height:816.000000pt;}
.h2{height:1121.333333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:8.640000pt;}
.w4{width:17.600000pt;}
.w6{width:118.432000pt;}
.w5{width:121.664000pt;}
.w7{width:145.026667pt;}
.w2{width:792.000000pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.w8{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x9{left:0.986667pt;}
.x3{left:6.666667pt;}
.xb{left:51.866667pt;}
.x16{left:71.066667pt;}
.xc{left:76.506667pt;}
.xe{left:80.986667pt;}
.x15{left:83.546667pt;}
.x10{left:85.146667pt;}
.x12{left:88.666667pt;}
.xf{left:90.626667pt;}
.x14{left:93.506667pt;}
.x13{left:97.026667pt;}
.x11{left:102.146667pt;}
.x1{left:113.312000pt;}
.x6{left:132.224000pt;}
.x5{left:141.826667pt;}
.x78{left:151.173333pt;}
.x62{left:153.973333pt;}
.x6f{left:157.880000pt;}
.x4{left:160.706667pt;}
.x79{left:180.000000pt;}
.x4a{left:186.653333pt;}
.x8{left:204.226667pt;}
.x47{left:223.453333pt;}
.x48{left:227.240000pt;}
.x4b{left:228.680000pt;}
.x63{left:249.120000pt;}
.x7a{left:257.320000pt;}
.x46{left:259.760000pt;}
.x64{left:261.120000pt;}
.x65{left:267.773333pt;}
.x49{left:269.346667pt;}
.x59{left:280.626667pt;}
.x7c{left:283.960000pt;}
.x66{left:286.453333pt;}
.x1c{left:291.506667pt;}
.x1f{left:293.666667pt;}
.x25{left:295.200000pt;}
.x1e{left:296.826667pt;}
.x26{left:298.266667pt;}
.x2f{left:300.000000pt;}
.x2b{left:301.986667pt;}
.x67{left:309.040000pt;}
.xa{left:325.893333pt;}
.x17{left:328.000000pt;}
.x1d{left:333.760000pt;}
.x27{left:336.000000pt;}
.x7d{left:337.080000pt;}
.x5a{left:342.280000pt;}
.x28{left:348.626667pt;}
.x3d{left:350.013333pt;}
.x29{left:365.080000pt;}
.x3e{left:366.029333pt;}
.x20{left:372.586667pt;}
.x22{left:375.213333pt;}
.x35{left:376.640000pt;}
.x2a{left:380.946667pt;}
.x18{left:382.266667pt;}
.x7{left:388.000000pt;}
.x5b{left:390.346667pt;}
.x2{left:392.480000pt;}
.x36{left:408.920000pt;}
.x23{left:411.800000pt;}
.x2c{left:419.933333pt;}
.x30{left:424.920000pt;}
.x24{left:427.226667pt;}
.xd{left:444.320000pt;}
.x19{left:446.413333pt;}
.x21{left:448.893333pt;}
.x31{left:457.133333pt;}
.x1b{left:478.693333pt;}
.x42{left:480.280000pt;}
.x2d{left:481.613333pt;}
.x43{left:485.213333pt;}
.x2e{left:487.880000pt;}
.x60{left:488.933333pt;}
.x32{left:497.080000pt;}
.x3f{left:499.800000pt;}
.x4c{left:514.546667pt;}
.x40{left:521.440000pt;}
.x68{left:522.453333pt;}
.x84{left:530.266667pt;}
.x61{left:531.600000pt;}
.x33{left:537.133333pt;}
.x69{left:542.293333pt;}
.x34{left:543.760000pt;}
.x7e{left:557.293333pt;}
.x37{left:560.666667pt;}
.x1a{left:568.000000pt;}
.x7f{left:569.186667pt;}
.x6a{left:571.826667pt;}
.x6b{left:578.613333pt;}
.x41{left:587.613333pt;}
.x70{left:589.040000pt;}
.x38{left:608.666667pt;}
.x6c{left:611.826667pt;}
.x39{left:624.053333pt;}
.x71{left:625.040000pt;}
.x6d{left:626.600000pt;}
.x44{left:631.626667pt;}
.x3a{left:655.280000pt;}
.x80{left:663.733333pt;}
.x3b{left:673.386667pt;}
.x3c{left:695.466667pt;}
.x4f{left:696.893333pt;}
.x57{left:698.360000pt;}
.x72{left:702.106667pt;}
.x45{left:704.280000pt;}
.x58{left:711.533333pt;}
.x7b{left:714.080000pt;}
.x50{left:720.400000pt;}
.x51{left:738.720000pt;}
.x5c{left:771.120000pt;}
.x4d{left:775.813333pt;}
.x73{left:813.133333pt;}
.x6e{left:821.173333pt;}
.x5d{left:826.040000pt;}
.x81{left:827.960000pt;}
.x52{left:831.720000pt;}
.x5e{left:840.866667pt;}
.x4e{left:845.146667pt;}
.x74{left:850.400000pt;}
.x75{left:865.173333pt;}
.x53{left:869.053333pt;}
.x76{left:875.626667pt;}
.x82{left:880.960000pt;}
.x5f{left:886.280000pt;}
.x54{left:887.426667pt;}
.x77{left:894.493333pt;}
.x55{left:906.720000pt;}
.x56{left:925.333333pt;}
.x83{left:934.413333pt;}
}




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