
    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_f06f845c7afa0645f51b4242.woff')format("woff");}.ff1{font-family:ff1;line-height:0.960000;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_fdbdcd2468c01115f7ce4c74.woff')format("woff");}.ff2{font-family:ff2;line-height:0.890000;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_0fff5da8556a6e73cd770bba.woff')format("woff");}.ff3{font-family:ff3;line-height:0.906000;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_ec66517ed74596f80f9ec1cd.woff')format("woff");}.ff4{font-family:ff4;line-height:0.243000;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_8e94857c9a94cfe04ac85608.woff')format("woff");}.ff5{font-family:ff5;line-height:0.525000;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_6f14e6dadb6906fb9c8d47c6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.844000;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_efd890609d30f4407806c648.woff')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_b8e5fb4ff2ddd7b988c9b0b4.woff')format("woff");}.ff8{font-family:ff8;line-height:1.128000;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_07170e33cd7daa7315c7fc07.woff')format("woff");}.ff9{font-family:ff9;line-height:1.332520;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_15b85c1690be186875539e97.woff')format("woff");}.ffa{font-family:ffa;line-height:1.330078;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_37ce9b17ecbcc72c6737764d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.911000;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_f6721566a085ffe445288718.woff')format("woff");}.ffc{font-family:ffc;line-height:1.346191;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_6e76dc08eb6c24a61d0bb647.woff')format("woff");}.ffd{font-family:ffd;line-height:0.898000;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_b81aaa0e1147de93fc3d24e3.woff')format("woff");}.ffe{font-family:ffe;line-height:0.372000;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;}
.m0{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.mc{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.257467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257467,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.257468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257468,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.258624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258624,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.v2{vertical-align:-19.530000px;}
.v3{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.ls9{letter-spacing:-0.425366px;}
.ls8{letter-spacing:-0.260537px;}
.ls7{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000012px;}
.lsc{letter-spacing:0.057334px;}
.lsa{letter-spacing:0.447957px;}
.ls27{letter-spacing:0.511128px;}
.ls2c{letter-spacing:0.517289px;}
.ls1d{letter-spacing:0.517794px;}
.ls21{letter-spacing:0.521106px;}
.ls1c{letter-spacing:0.521417px;}
.ls2f{letter-spacing:0.522942px;}
.ls10{letter-spacing:0.523573px;}
.ls20{letter-spacing:0.524106px;}
.ls2d{letter-spacing:0.526890px;}
.ls17{letter-spacing:0.528606px;}
.ls30{letter-spacing:0.529128px;}
.lse{letter-spacing:0.529573px;}
.ls14{letter-spacing:0.529811px;}
.ls13{letter-spacing:0.530106px;}
.ls1e{letter-spacing:0.531073px;}
.ls19{letter-spacing:0.531606px;}
.ls1a{letter-spacing:0.532890px;}
.ls18{letter-spacing:0.533106px;}
.lsf{letter-spacing:0.534606px;}
.ls24{letter-spacing:0.535128px;}
.ls15{letter-spacing:0.535573px;}
.ls28{letter-spacing:0.537175px;}
.ls12{letter-spacing:0.537606px;}
.ls2a{letter-spacing:0.540606px;}
.ls23{letter-spacing:0.540942px;}
.ls16{letter-spacing:0.541231px;}
.ls1f{letter-spacing:0.541573px;}
.ls11{letter-spacing:0.542106px;}
.ls29{letter-spacing:0.543384px;}
.ls26{letter-spacing:0.546606px;}
.lsb{letter-spacing:1.202407px;}
.ls4{letter-spacing:2.985000px;}
.ls3{letter-spacing:2.988000px;}
.ls6{letter-spacing:2.989476px;}
.ls1{letter-spacing:2.991000px;}
.lsd{letter-spacing:3.602358px;}
.ls2{letter-spacing:14.491500px;}
.ls0{letter-spacing:14.497500px;}
.ls22{letter-spacing:14.701363px;}
.ls1b{letter-spacing:14.924473px;}
.ls2b{letter-spacing:14.933574px;}
.ls2e{letter-spacing:14.934438px;}
.ls25{letter-spacing:15.301883px;}
.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;}
}
.ws25{word-spacing:-16.618284px;}
.ws11{word-spacing:-14.955288px;}
.ws6{word-spacing:-14.944500px;}
.ws29{word-spacing:-13.032695px;}
.ws2d{word-spacing:-11.872984px;}
.ws2b{word-spacing:-11.788350px;}
.ws4{word-spacing:-10.461000px;}
.ws69{word-spacing:-3.048439px;}
.ws47{word-spacing:-2.869643px;}
.ws6b{word-spacing:-2.331402px;}
.ws98{word-spacing:-1.853178px;}
.ws8f{word-spacing:-1.733741px;}
.ws5f{word-spacing:-1.613934px;}
.ws7b{word-spacing:-1.554348px;}
.ws4e{word-spacing:-1.136141px;}
.ws7d{word-spacing:-1.076124px;}
.ws6c{word-spacing:-1.016166px;}
.ws15{word-spacing:-0.914371px;}
.ws81{word-spacing:-0.777353px;}
.ws41{word-spacing:-0.657319px;}
.ws67{word-spacing:-0.418506px;}
.ws8e{word-spacing:-0.358489px;}
.ws71{word-spacing:-0.322776px;}
.ws27{word-spacing:-0.299129px;}
.ws5e{word-spacing:-0.268765px;}
.ws24{word-spacing:-0.239112px;}
.ws49{word-spacing:-0.179693px;}
.ws22{word-spacing:-0.179095px;}
.ws10{word-spacing:-0.161388px;}
.ws23{word-spacing:-0.119735px;}
.ws12{word-spacing:-0.107969px;}
.wsd{word-spacing:-0.107377px;}
.ws9c{word-spacing:-0.068142px;}
.wsa8{word-spacing:-0.059778px;}
.ws1e{word-spacing:-0.059718px;}
.ws5d{word-spacing:-0.054011px;}
.ws9e{word-spacing:-0.015947px;}
.wsa0{word-spacing:-0.005148px;}
.ws9{word-spacing:-0.001932px;}
.ws36{word-spacing:-0.000299px;}
.wsb{word-spacing:0.000000px;}
.ws20{word-spacing:0.000299px;}
.ws16{word-spacing:0.054011px;}
.ws37{word-spacing:0.059718px;}
.ws5c{word-spacing:0.107377px;}
.ws32{word-spacing:0.119676px;}
.wsf{word-spacing:0.161388px;}
.ws38{word-spacing:0.179095px;}
.ws33{word-spacing:0.179693px;}
.ws1b{word-spacing:0.214807px;}
.ws19{word-spacing:0.215399px;}
.ws1d{word-spacing:0.239112px;}
.ws54{word-spacing:0.268506px;}
.wse{word-spacing:0.268765px;}
.ws83{word-spacing:0.270000px;}
.ws56{word-spacing:0.298531px;}
.ws21{word-spacing:0.299129px;}
.ws1a{word-spacing:0.322776px;}
.ws90{word-spacing:0.358489px;}
.ws63{word-spacing:0.418506px;}
.ws43{word-spacing:0.537942px;}
.ws18{word-spacing:0.591595px;}
.ws73{word-spacing:0.776755px;}
.ws58{word-spacing:0.777353px;}
.ws89{word-spacing:0.836713px;}
.ws26{word-spacing:0.896730px;}
.ws9b{word-spacing:1.016166px;}
.ws52{word-spacing:1.076124px;}
.ws1f{word-spacing:1.135543px;}
.ws6f{word-spacing:1.374954px;}
.ws6d{word-spacing:1.434971px;}
.ws3f{word-spacing:1.554348px;}
.ws42{word-spacing:1.673784px;}
.ws76{word-spacing:1.733741px;}
.ws6e{word-spacing:1.793161px;}
.ws5a{word-spacing:1.853178px;}
.ws3a{word-spacing:1.912597px;}
.ws39{word-spacing:1.972554px;}
.ws6a{word-spacing:2.032572px;}
.ws17{word-spacing:2.098098px;}
.ws75{word-spacing:2.152008px;}
.ws72{word-spacing:2.205475px;}
.ws65{word-spacing:2.211965px;}
.ws59{word-spacing:2.271385px;}
.ws13{word-spacing:2.312905px;}
.ws4a{word-spacing:2.331402px;}
.ws85{word-spacing:2.552892px;}
.ws86{word-spacing:2.570215px;}
.ws79{word-spacing:2.630232px;}
.ws91{word-spacing:2.749609px;}
.ws74{word-spacing:2.809626px;}
.ws64{word-spacing:2.868985px;}
.ws28{word-spacing:2.869009px;}
.ws30{word-spacing:2.942372px;}
.ws60{word-spacing:2.989020px;}
.ws4d{word-spacing:3.108396px;}
.ws14{word-spacing:3.120437px;}
.ws9d{word-spacing:3.227833px;}
.ws3c{word-spacing:3.287850px;}
.ws35{word-spacing:3.467244px;}
.ws34{word-spacing:3.526663px;}
.wsa5{word-spacing:3.586620px;}
.ws88{word-spacing:3.646637px;}
.ws2f{word-spacing:3.696827px;}
.wsa1{word-spacing:3.706057px;}
.ws53{word-spacing:3.766074px;}
.ws78{word-spacing:3.885450px;}
.ws87{word-spacing:3.945468px;}
.ws62{word-spacing:4.004887px;}
.ws93{word-spacing:4.064844px;}
.ws96{word-spacing:4.124861px;}
.ws68{word-spacing:4.184281px;}
.ws45{word-spacing:4.244298px;}
.wsa6{word-spacing:4.304255px;}
.ws8d{word-spacing:4.363674px;}
.ws2e{word-spacing:4.397225px;}
.ws3b{word-spacing:4.423692px;}
.ws7a{word-spacing:4.543068px;}
.ws4b{word-spacing:4.901916px;}
.ws9f{word-spacing:4.961873px;}
.ws44{word-spacing:5.081309px;}
.ws4f{word-spacing:5.140729px;}
.wsa2{word-spacing:5.260105px;}
.ws4c{word-spacing:5.260703px;}
.ws46{word-spacing:5.559533px;}
.ws57{word-spacing:5.618953px;}
.wsa7{word-spacing:5.918321px;}
.ws66{word-spacing:5.977740px;}
.ws51{word-spacing:6.157134px;}
.ws7f{word-spacing:6.336528px;}
.wsa9{word-spacing:6.515981px;}
.ws84{word-spacing:6.754794px;}
.ws9a{word-spacing:6.994205px;}
.ws3e{word-spacing:7.352395px;}
.ws3d{word-spacing:7.352993px;}
.ws8c{word-spacing:7.412412px;}
.ws8b{word-spacing:7.471772px;}
.ws94{word-spacing:7.472370px;}
.ws95{word-spacing:8.249424px;}
.ws2c{word-spacing:8.250788px;}
.ws92{word-spacing:8.308843px;}
.ws31{word-spacing:8.832435px;}
.ws40{word-spacing:8.847024px;}
.ws70{word-spacing:13.126439px;}
.ws5b{word-spacing:13.449215px;}
.wsc{word-spacing:14.030808px;}
.ws80{word-spacing:14.074566px;}
.ws5{word-spacing:14.213009px;}
.ws8{word-spacing:14.217223px;}
.ws7{word-spacing:14.237580px;}
.ws3{word-spacing:14.242296px;}
.ws2{word-spacing:14.255622px;}
.wsa{word-spacing:14.876011px;}
.wsa4{word-spacing:14.885021px;}
.wsa3{word-spacing:14.939352px;}
.ws97{word-spacing:14.944500px;}
.ws7c{word-spacing:15.123834px;}
.ws55{word-spacing:15.183851px;}
.ws82{word-spacing:15.600679px;}
.ws77{word-spacing:15.728998px;}
.ws7e{word-spacing:18.351966px;}
.ws8a{word-spacing:18.874993px;}
.ws48{word-spacing:18.875607px;}
.ws0{word-spacing:20.669841px;}
.ws99{word-spacing:21.890749px;}
.ws1{word-spacing:22.021579px;}
.ws1c{word-spacing:35.774550px;}
.ws61{word-spacing:35.830931px;}
.ws2a{word-spacing:627.952436px;}
.ws50{word-spacing:627.952465px;}
._4{margin-left:-7.531490px;}
._1a{margin-left:-5.738628px;}
._2{margin-left:-4.531103px;}
._1{margin-left:-3.179921px;}
._0{margin-left:-2.067000px;}
._3{margin-left:-1.064019px;}
._a{width:1.490067px;}
._b{width:3.217140px;}
._c{width:4.715723px;}
._d{width:5.755478px;}
._e{width:7.001841px;}
._8{width:14.708414px;}
._7{width:15.815916px;}
._5{width:17.562723px;}
._9{width:18.755198px;}
._f{width:20.504033px;}
._13{width:22.603908px;}
._6{width:24.101523px;}
._15{width:26.004446px;}
._16{width:27.860613px;}
._14{width:29.326186px;}
._18{width:30.640705px;}
._10{width:32.350831px;}
._12{width:35.158806px;}
._17{width:38.668184px;}
._11{width:41.127443px;}
._19{width:44.918072px;}
.fc3{color:rgb(0,173,239);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,255,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:35.868000px;}
.fs2{font-size:41.844000px;}
.fsb{font-size:45.900000px;}
.fsc{font-size:47.153400px;}
.fsd{font-size:47.262600px;}
.fs7{font-size:47.820000px;}
.fs5{font-size:51.108000px;}
.fs9{font-size:53.170800px;}
.fs4{font-size:53.796000px;}
.fsa{font-size:54.000000px;}
.fsf{font-size:56.784000px;}
.fs8{font-size:59.760000px;}
.fs1{font-size:59.778000px;}
.fse{font-size:60.000000px;}
.fs6{font-size:68.142000px;}
.fs0{font-size:79.500000px;}
.y0{bottom:0.000000px;}
.y61{bottom:3.237000px;}
.y2e{bottom:11.528565px;}
.y60{bottom:13.263794px;}
.y2c{bottom:24.887565px;}
.y2d{bottom:25.006620px;}
.y2b{bottom:29.506065px;}
.y5e{bottom:80.052000px;}
.y27{bottom:84.391500px;}
.y5d{bottom:97.984500px;}
.y26{bottom:108.192000px;}
.y5c{bottom:115.917000px;}
.ydd{bottom:117.412500px;}
.y105{bottom:124.884000px;}
.y25{bottom:126.124500px;}
.y5b{bottom:133.849500px;}
.ydc{bottom:135.345000px;}
.y24{bottom:144.057000px;}
.y104{bottom:144.310500px;}
.y5a{bottom:151.783500px;}
.ydb{bottom:153.277500px;}
.y23{bottom:161.989500px;}
.y103{bottom:162.244500px;}
.y59{bottom:169.716000px;}
.yda{bottom:172.704000px;}
.y22{bottom:179.923500px;}
.y102{bottom:181.671000px;}
.y58{bottom:187.648500px;}
.yd9{bottom:190.638000px;}
.y77{bottom:190.744500px;}
.y91{bottom:193.072500px;}
.y21{bottom:197.856000px;}
.y101{bottom:201.097500px;}
.y57{bottom:205.581000px;}
.y76{bottom:207.183000px;}
.yd8{bottom:208.570500px;}
.y20{bottom:215.788500px;}
.y100{bottom:219.031500px;}
.y56{bottom:223.513500px;}
.y75{bottom:223.621500px;}
.yb4{bottom:232.734000px;}
.y1f{bottom:233.721000px;}
.yd7{bottom:237.525000px;}
.yff{bottom:238.458000px;}
.y74{bottom:240.060000px;}
.y55{bottom:241.446000px;}
.y1e{bottom:251.653500px;}
.yfe{bottom:256.390500px;}
.y73{bottom:256.498500px;}
.y54{bottom:259.380000px;}
.y1d{bottom:269.586000px;}
.ya1{bottom:272.206500px;}
.y72{bottom:272.937000px;}
.yfd{bottom:275.818500px;}
.yb3{bottom:276.792000px;}
.y53{bottom:277.312500px;}
.yd6{bottom:282.261000px;}
.yb2{bottom:293.230500px;}
.yfc{bottom:293.751000px;}
.y52{bottom:295.245000px;}
.yd5{bottom:300.195000px;}
.y1c{bottom:302.208000px;}
.yb1{bottom:309.669000px;}
.yfb{bottom:311.683500px;}
.y51{bottom:313.177500px;}
.ya0{bottom:315.759000px;}
.yd4{bottom:318.127500px;}
.y50{bottom:331.110000px;}
.y9f{bottom:333.691500px;}
.yd3{bottom:336.060000px;}
.y4f{bottom:349.044000px;}
.y9e{bottom:351.624000px;}
.y4e{bottom:366.976500px;}
.y9d{bottom:369.556500px;}
.yd2{bottom:371.925000px;}
.y1b{bottom:374.164500px;}
.y4d{bottom:384.909000px;}
.yfa{bottom:386.403000px;}
.y9c{bottom:387.490500px;}
.yd1{bottom:389.857500px;}
.y1a{bottom:390.603000px;}
.y4c{bottom:402.841500px;}
.yf9{bottom:404.335500px;}
.y9b{bottom:405.423000px;}
.y19{bottom:407.041500px;}
.yd0{bottom:407.791500px;}
.y90{bottom:420.774000px;}
.yf8{bottom:422.268000px;}
.y9a{bottom:423.355500px;}
.y18{bottom:423.480000px;}
.ycf{bottom:425.724000px;}
.y4b{bottom:430.816500px;}
.y8f{bottom:438.706500px;}
.y17{bottom:439.917000px;}
.y99{bottom:441.288000px;}
.yf7{bottom:441.696000px;}
.yce{bottom:443.656500px;}
.y16{bottom:456.355500px;}
.y8e{bottom:456.640500px;}
.y98{bottom:459.220500px;}
.yf6{bottom:459.628500px;}
.ycd{bottom:461.589000px;}
.y15{bottom:472.794000px;}
.y4a{bottom:474.573000px;}
.yf5{bottom:479.055000px;}
.y14{bottom:489.232500px;}
.y97{bottom:489.981000px;}
.ycc{bottom:490.545000px;}
.y49{bottom:492.505500px;}
.yf4{bottom:496.989000px;}
.y13{bottom:505.671000px;}
.y48{bottom:510.438000px;}
.yf3{bottom:514.921500px;}
.y12{bottom:522.109500px;}
.y8d{bottom:524.052000px;}
.y47{bottom:528.370500px;}
.yf2{bottom:534.348000px;}
.ycb{bottom:535.281000px;}
.y96{bottom:536.521500px;}
.y11{bottom:538.548000px;}
.y71{bottom:541.173000px;}
.y46{bottom:546.303000px;}
.yf1{bottom:552.280500px;}
.yca{bottom:553.213500px;}
.y95{bottom:554.454000px;}
.y10{bottom:554.986500px;}
.y70{bottom:560.815500px;}
.y45{bottom:564.237000px;}
.y8c{bottom:568.390500px;}
.yf0{bottom:570.214500px;}
.yc9{bottom:571.146000px;}
.yf{bottom:571.425000px;}
.y6f{bottom:578.749500px;}
.yb0{bottom:579.763500px;}
.y44{bottom:582.169500px;}
.y8b{bottom:586.323000px;}
.y94{bottom:587.260500px;}
.ye{bottom:587.863500px;}
.yc8{bottom:589.078500px;}
.yef{bottom:589.641000px;}
.y6e{bottom:596.682000px;}
.y43{bottom:600.102000px;}
.yaf{bottom:602.781000px;}
.y93{bottom:603.699000px;}
.y8a{bottom:604.257000px;}
.yd{bottom:604.300500px;}
.yc7{bottom:607.012500px;}
.yee{bottom:609.067500px;}
.y6d{bottom:614.614500px;}
.y42{bottom:618.034500px;}
.y92{bottom:620.136000px;}
.yae{bottom:620.713500px;}
.yc{bottom:620.739000px;}
.y89{bottom:622.189500px;}
.yc6{bottom:624.945000px;}
.yed{bottom:627.001500px;}
.y6c{bottom:632.547000px;}
.y41{bottom:635.967000px;}
.yb{bottom:637.177500px;}
.yad{bottom:638.647500px;}
.y88{bottom:640.122000px;}
.yc5{bottom:642.877500px;}
.yec{bottom:644.934000px;}
.y6b{bottom:650.479500px;}
.ya{bottom:653.616000px;}
.y40{bottom:653.899500px;}
.y87{bottom:658.054500px;}
.yc4{bottom:660.810000px;}
.yac{bottom:661.663500px;}
.yeb{bottom:664.360500px;}
.y6a{bottom:668.412000px;}
.y9{bottom:670.054500px;}
.y3f{bottom:671.833500px;}
.y86{bottom:675.987000px;}
.yc3{bottom:678.742500px;}
.yab{bottom:679.596000px;}
.yea{bottom:682.293000px;}
.y69{bottom:686.346000px;}
.y8{bottom:686.493000px;}
.y3e{bottom:689.766000px;}
.y85{bottom:693.919500px;}
.yc2{bottom:696.675000px;}
.yaa{bottom:697.530000px;}
.ye9{bottom:700.227000px;}
.y68{bottom:704.278500px;}
.y3d{bottom:707.698500px;}
.y84{bottom:711.853500px;}
.yc1{bottom:714.609000px;}
.ya9{bottom:715.462500px;}
.ye8{bottom:719.653500px;}
.y7{bottom:723.159000px;}
.y67{bottom:723.921000px;}
.y3c{bottom:725.631000px;}
.y83{bottom:729.949500px;}
.yc0{bottom:732.541500px;}
.ya8{bottom:733.395000px;}
.ye7{bottom:737.586000px;}
.y6{bottom:739.977000px;}
.y66{bottom:741.853500px;}
.y3b{bottom:743.563500px;}
.y82{bottom:747.882000px;}
.ybf{bottom:750.474000px;}
.ya7{bottom:751.327500px;}
.ye6{bottom:755.518500px;}
.y5{bottom:759.385500px;}
.y65{bottom:759.786000px;}
.y3a{bottom:761.496000px;}
.y81{bottom:765.816000px;}
.ybe{bottom:768.406500px;}
.ya6{bottom:774.345000px;}
.ye5{bottom:774.946500px;}
.y3{bottom:777.318000px;}
.y64{bottom:777.718500px;}
.y39{bottom:779.430000px;}
.y4{bottom:782.742000px;}
.y80{bottom:783.748500px;}
.ybd{bottom:786.339000px;}
.ya5{bottom:792.277500px;}
.ye4{bottom:792.879000px;}
.y63{bottom:795.652500px;}
.y38{bottom:797.362500px;}
.y7f{bottom:801.681000px;}
.ybc{bottom:804.271500px;}
.ya4{bottom:810.210000px;}
.ye3{bottom:812.305500px;}
.y62{bottom:813.585000px;}
.y37{bottom:815.295000px;}
.y7e{bottom:819.613500px;}
.ybb{bottom:822.205500px;}
.y2{bottom:825.517500px;}
.ya3{bottom:828.142500px;}
.ye2{bottom:830.239500px;}
.y36{bottom:833.227500px;}
.y7d{bottom:837.546000px;}
.yba{bottom:840.138000px;}
.ya2{bottom:846.076500px;}
.ye1{bottom:848.172000px;}
.y1{bottom:849.427500px;}
.y35{bottom:851.160000px;}
.y7c{bottom:855.478500px;}
.yb9{bottom:858.070500px;}
.ye0{bottom:867.598500px;}
.y34{bottom:869.092500px;}
.y7b{bottom:873.412500px;}
.yb8{bottom:876.003000px;}
.ydf{bottom:885.531000px;}
.y33{bottom:887.026500px;}
.y7a{bottom:891.345000px;}
.yb7{bottom:893.935500px;}
.yde{bottom:903.463500px;}
.y32{bottom:904.959000px;}
.y79{bottom:909.277500px;}
.yb6{bottom:911.868000px;}
.y31{bottom:922.891500px;}
.y78{bottom:927.210000px;}
.yb5{bottom:929.802000px;}
.y30{bottom:940.824000px;}
.y2f{bottom:958.756500px;}
.y2a{bottom:1016.581950px;}
.y5f{bottom:1026.091350px;}
.y28{bottom:1026.091500px;}
.y29{bottom:1035.766350px;}
.h13{height:16.500090px;}
.ha{height:21.758880px;}
.h6{height:24.677184px;}
.h18{height:26.481654px;}
.h4{height:28.788672px;}
.h17{height:31.084560px;}
.he{height:31.900500px;}
.hf{height:32.771613px;}
.h10{height:32.818773px;}
.h11{height:32.942007px;}
.h8{height:37.011648px;}
.h15{height:37.226832px;}
.h7{height:37.871028px;}
.h12{height:40.828374px;}
.h3{height:41.127264px;}
.h19{height:41.366376px;}
.h16{height:42.076944px;}
.h5{height:50.484672px;}
.h9{height:50.493222px;}
.hc{height:54.440002px;}
.hd{height:55.265625px;}
.h2{height:58.909500px;}
.hb{height:59.439023px;}
.h14{height:62.373047px;}
.h1{height:1062.750000px;}
.h0{height:1062.991500px;}
.w2{width:7.500000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x15{left:30.381300px;}
.x18{left:52.579125px;}
.x19{left:54.272265px;}
.x17{left:61.627815px;}
.x16{left:75.362415px;}
.x39{left:83.919000px;}
.x1{left:85.039500px;}
.x14{left:87.313500px;}
.x3a{left:91.989000px;}
.x49{left:97.951500px;}
.x44{left:99.162000px;}
.x13{left:100.884000px;}
.x53{left:102.463500px;}
.x20{left:107.455500px;}
.x30{left:108.724500px;}
.x52{left:109.936500px;}
.x45{left:111.792000px;}
.x31{left:113.710500px;}
.x32{left:118.134000px;}
.x3b{left:122.208000px;}
.x3c{left:132.613500px;}
.xc{left:148.819500px;}
.x2a{left:153.021000px;}
.x1c{left:155.098500px;}
.x23{left:156.640500px;}
.x1d{left:162.570000px;}
.x2b{left:167.964000px;}
.x2{left:177.055500px;}
.x3{left:183.033000px;}
.x3e{left:185.622000px;}
.x3f{left:200.566500px;}
.x26{left:201.882000px;}
.x27{left:209.353500px;}
.x36{left:211.333500px;}
.x48{left:213.925500px;}
.xf{left:219.172500px;}
.x37{left:222.123000px;}
.x10{left:226.644000px;}
.x46{left:238.441500px;}
.x1a{left:245.736000px;}
.x1b{left:253.207500px;}
.x4{left:258.043500px;}
.x5{left:272.614500px;}
.x47{left:276.253500px;}
.x11{left:293.404500px;}
.x12{left:300.876000px;}
.x4b{left:344.533500px;}
.x21{left:345.871500px;}
.x22{left:353.343000px;}
.x33{left:357.667511px;}
.x4c{left:359.476500px;}
.x40{left:361.128000px;}
.x41{left:369.481500px;}
.x42{left:374.623500px;}
.x6{left:376.332000px;}
.x43{left:389.568000px;}
.x7{left:391.345500px;}
.x4d{left:405.960000px;}
.x1e{left:412.194000px;}
.x1f{left:419.665500px;}
.x38{left:432.435000px;}
.x4a{left:447.040500px;}
.x3d{left:456.574500px;}
.xd{left:464.073000px;}
.xe{left:471.544500px;}
.x8{left:494.005500px;}
.x34{left:497.905500px;}
.x9{left:499.984500px;}
.x35{left:512.850000px;}
.x4e{left:520.918500px;}
.x4f{left:535.861500px;}
.x50{left:557.409000px;}
.x24{left:567.097500px;}
.x51{left:572.353500px;}
.x25{left:574.569000px;}
.x2c{left:596.052000px;}
.x2d{left:606.841500px;}
.x28{left:616.579500px;}
.x2e{left:627.907500px;}
.xa{left:630.024000px;}
.x29{left:631.524000px;}
.x2f{left:633.720000px;}
.xb{left:636.001500px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v3{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.ls9{letter-spacing:-0.378103pt;}
.ls8{letter-spacing:-0.231588pt;}
.ls7{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000011pt;}
.lsc{letter-spacing:0.050964pt;}
.lsa{letter-spacing:0.398184pt;}
.ls27{letter-spacing:0.454336pt;}
.ls2c{letter-spacing:0.459813pt;}
.ls1d{letter-spacing:0.460262pt;}
.ls21{letter-spacing:0.463205pt;}
.ls1c{letter-spacing:0.463482pt;}
.ls2f{letter-spacing:0.464837pt;}
.ls10{letter-spacing:0.465398pt;}
.ls20{letter-spacing:0.465872pt;}
.ls2d{letter-spacing:0.468347pt;}
.ls17{letter-spacing:0.469872pt;}
.ls30{letter-spacing:0.470336pt;}
.lse{letter-spacing:0.470731pt;}
.ls14{letter-spacing:0.470943pt;}
.ls13{letter-spacing:0.471205pt;}
.ls1e{letter-spacing:0.472065pt;}
.ls19{letter-spacing:0.472539pt;}
.ls1a{letter-spacing:0.473680pt;}
.ls18{letter-spacing:0.473872pt;}
.lsf{letter-spacing:0.475205pt;}
.ls24{letter-spacing:0.475669pt;}
.ls15{letter-spacing:0.476065pt;}
.ls28{letter-spacing:0.477489pt;}
.ls12{letter-spacing:0.477872pt;}
.ls2a{letter-spacing:0.480539pt;}
.ls23{letter-spacing:0.480837pt;}
.ls16{letter-spacing:0.481094pt;}
.ls1f{letter-spacing:0.481398pt;}
.ls11{letter-spacing:0.481872pt;}
.ls29{letter-spacing:0.483008pt;}
.ls26{letter-spacing:0.485872pt;}
.lsb{letter-spacing:1.068806pt;}
.ls4{letter-spacing:2.653333pt;}
.ls3{letter-spacing:2.656000pt;}
.ls6{letter-spacing:2.657312pt;}
.ls1{letter-spacing:2.658667pt;}
.lsd{letter-spacing:3.202096pt;}
.ls2{letter-spacing:12.881333pt;}
.ls0{letter-spacing:12.886667pt;}
.ls22{letter-spacing:13.067878pt;}
.ls1b{letter-spacing:13.266198pt;}
.ls2b{letter-spacing:13.274288pt;}
.ls2e{letter-spacing:13.275056pt;}
.ls25{letter-spacing:13.601674pt;}
.ws25{word-spacing:-14.771808pt;}
.ws11{word-spacing:-13.293589pt;}
.ws6{word-spacing:-13.284000pt;}
.ws29{word-spacing:-11.584618pt;}
.ws2d{word-spacing:-10.553764pt;}
.ws2b{word-spacing:-10.478533pt;}
.ws4{word-spacing:-9.298667pt;}
.ws69{word-spacing:-2.709723pt;}
.ws47{word-spacing:-2.550794pt;}
.ws6b{word-spacing:-2.072357pt;}
.ws98{word-spacing:-1.647269pt;}
.ws8f{word-spacing:-1.541103pt;}
.ws5f{word-spacing:-1.434608pt;}
.ws7b{word-spacing:-1.381642pt;}
.ws4e{word-spacing:-1.009903pt;}
.ws7d{word-spacing:-0.956554pt;}
.ws6c{word-spacing:-0.903259pt;}
.ws15{word-spacing:-0.812774pt;}
.ws81{word-spacing:-0.690981pt;}
.ws41{word-spacing:-0.584283pt;}
.ws67{word-spacing:-0.372005pt;}
.ws8e{word-spacing:-0.318657pt;}
.ws71{word-spacing:-0.286912pt;}
.ws27{word-spacing:-0.265893pt;}
.ws5e{word-spacing:-0.238902pt;}
.ws24{word-spacing:-0.212544pt;}
.ws49{word-spacing:-0.159727pt;}
.ws22{word-spacing:-0.159195pt;}
.ws10{word-spacing:-0.143456pt;}
.ws23{word-spacing:-0.106431pt;}
.ws12{word-spacing:-0.095972pt;}
.wsd{word-spacing:-0.095446pt;}
.ws9c{word-spacing:-0.060571pt;}
.wsa8{word-spacing:-0.053136pt;}
.ws1e{word-spacing:-0.053083pt;}
.ws5d{word-spacing:-0.048010pt;}
.ws9e{word-spacing:-0.014175pt;}
.wsa0{word-spacing:-0.004576pt;}
.ws9{word-spacing:-0.001717pt;}
.ws36{word-spacing:-0.000266pt;}
.wsb{word-spacing:0.000000pt;}
.ws20{word-spacing:0.000266pt;}
.ws16{word-spacing:0.048010pt;}
.ws37{word-spacing:0.053083pt;}
.ws5c{word-spacing:0.095446pt;}
.ws32{word-spacing:0.106378pt;}
.wsf{word-spacing:0.143456pt;}
.ws38{word-spacing:0.159195pt;}
.ws33{word-spacing:0.159727pt;}
.ws1b{word-spacing:0.190940pt;}
.ws19{word-spacing:0.191466pt;}
.ws1d{word-spacing:0.212544pt;}
.ws54{word-spacing:0.238672pt;}
.wse{word-spacing:0.238902pt;}
.ws83{word-spacing:0.240000pt;}
.ws56{word-spacing:0.265361pt;}
.ws21{word-spacing:0.265893pt;}
.ws1a{word-spacing:0.286912pt;}
.ws90{word-spacing:0.318657pt;}
.ws63{word-spacing:0.372005pt;}
.ws43{word-spacing:0.478171pt;}
.ws18{word-spacing:0.525862pt;}
.ws73{word-spacing:0.690449pt;}
.ws58{word-spacing:0.690981pt;}
.ws89{word-spacing:0.743745pt;}
.ws26{word-spacing:0.797093pt;}
.ws9b{word-spacing:0.903259pt;}
.ws52{word-spacing:0.956554pt;}
.ws1f{word-spacing:1.009371pt;}
.ws6f{word-spacing:1.222181pt;}
.ws6d{word-spacing:1.275530pt;}
.ws3f{word-spacing:1.381642pt;}
.ws42{word-spacing:1.487808pt;}
.ws76{word-spacing:1.541103pt;}
.ws6e{word-spacing:1.593921pt;}
.ws5a{word-spacing:1.647269pt;}
.ws3a{word-spacing:1.700086pt;}
.ws39{word-spacing:1.753382pt;}
.ws6a{word-spacing:1.806730pt;}
.ws17{word-spacing:1.864976pt;}
.ws75{word-spacing:1.912896pt;}
.ws72{word-spacing:1.960422pt;}
.ws65{word-spacing:1.966191pt;}
.ws59{word-spacing:2.019009pt;}
.ws13{word-spacing:2.055916pt;}
.ws4a{word-spacing:2.072357pt;}
.ws85{word-spacing:2.269238pt;}
.ws86{word-spacing:2.284635pt;}
.ws79{word-spacing:2.337984pt;}
.ws91{word-spacing:2.444097pt;}
.ws74{word-spacing:2.497445pt;}
.ws64{word-spacing:2.550209pt;}
.ws28{word-spacing:2.550230pt;}
.ws30{word-spacing:2.615442pt;}
.ws60{word-spacing:2.656906pt;}
.ws4d{word-spacing:2.763019pt;}
.ws14{word-spacing:2.773722pt;}
.ws9d{word-spacing:2.869185pt;}
.ws3c{word-spacing:2.922533pt;}
.ws35{word-spacing:3.081994pt;}
.ws34{word-spacing:3.134811pt;}
.wsa5{word-spacing:3.188107pt;}
.ws88{word-spacing:3.241455pt;}
.ws2f{word-spacing:3.286068pt;}
.wsa1{word-spacing:3.294273pt;}
.ws53{word-spacing:3.347621pt;}
.ws78{word-spacing:3.453734pt;}
.ws87{word-spacing:3.507082pt;}
.ws62{word-spacing:3.559899pt;}
.ws93{word-spacing:3.613195pt;}
.ws96{word-spacing:3.666543pt;}
.ws68{word-spacing:3.719361pt;}
.ws45{word-spacing:3.772709pt;}
.wsa6{word-spacing:3.826005pt;}
.ws8d{word-spacing:3.878822pt;}
.ws2e{word-spacing:3.908645pt;}
.ws3b{word-spacing:3.932170pt;}
.ws7a{word-spacing:4.038283pt;}
.ws4b{word-spacing:4.357258pt;}
.ws9f{word-spacing:4.410554pt;}
.ws44{word-spacing:4.516719pt;}
.ws4f{word-spacing:4.569537pt;}
.wsa2{word-spacing:4.675649pt;}
.ws4c{word-spacing:4.676181pt;}
.ws46{word-spacing:4.941807pt;}
.ws57{word-spacing:4.994625pt;}
.wsa7{word-spacing:5.260730pt;}
.ws66{word-spacing:5.313547pt;}
.ws51{word-spacing:5.473008pt;}
.ws7f{word-spacing:5.632469pt;}
.wsa9{word-spacing:5.791983pt;}
.ws84{word-spacing:6.004262pt;}
.ws9a{word-spacing:6.217071pt;}
.ws3e{word-spacing:6.535462pt;}
.ws3d{word-spacing:6.535994pt;}
.ws8c{word-spacing:6.588811pt;}
.ws8b{word-spacing:6.641575pt;}
.ws94{word-spacing:6.642106pt;}
.ws95{word-spacing:7.332821pt;}
.ws2c{word-spacing:7.334034pt;}
.ws92{word-spacing:7.385638pt;}
.ws31{word-spacing:7.851053pt;}
.ws40{word-spacing:7.864022pt;}
.ws70{word-spacing:11.667946pt;}
.ws5b{word-spacing:11.954858pt;}
.wsc{word-spacing:12.471829pt;}
.ws80{word-spacing:12.510726pt;}
.ws5{word-spacing:12.633786pt;}
.ws8{word-spacing:12.637532pt;}
.ws7{word-spacing:12.655627pt;}
.ws3{word-spacing:12.659819pt;}
.ws2{word-spacing:12.671664pt;}
.wsa{word-spacing:13.223121pt;}
.wsa4{word-spacing:13.231130pt;}
.wsa3{word-spacing:13.279424pt;}
.ws97{word-spacing:13.284000pt;}
.ws7c{word-spacing:13.443408pt;}
.ws55{word-spacing:13.496757pt;}
.ws82{word-spacing:13.867270pt;}
.ws77{word-spacing:13.981331pt;}
.ws7e{word-spacing:16.312858pt;}
.ws8a{word-spacing:16.777772pt;}
.ws48{word-spacing:16.778317pt;}
.ws0{word-spacing:18.373192pt;}
.ws99{word-spacing:19.458443pt;}
.ws1{word-spacing:19.574737pt;}
.ws1c{word-spacing:31.799600pt;}
.ws61{word-spacing:31.849717pt;}
.ws2a{word-spacing:558.179943pt;}
.ws50{word-spacing:558.179969pt;}
._4{margin-left:-6.694658pt;}
._1a{margin-left:-5.101003pt;}
._2{margin-left:-4.027647pt;}
._1{margin-left:-2.826596pt;}
._0{margin-left:-1.837333pt;}
._3{margin-left:-0.945794pt;}
._a{width:1.324504pt;}
._b{width:2.859680pt;}
._c{width:4.191754pt;}
._d{width:5.115981pt;}
._e{width:6.223859pt;}
._8{width:13.074146pt;}
._7{width:14.058592pt;}
._5{width:15.611309pt;}
._9{width:16.671287pt;}
._f{width:18.225807pt;}
._13{width:20.092362pt;}
._6{width:21.423576pt;}
._15{width:23.115063pt;}
._16{width:24.764989pt;}
._14{width:26.067721pt;}
._18{width:27.236182pt;}
._10{width:28.756295pt;}
._12{width:31.252272pt;}
._17{width:34.371719pt;}
._11{width:36.557727pt;}
._19{width:39.927175pt;}
.fs3{font-size:31.882667pt;}
.fs2{font-size:37.194667pt;}
.fsb{font-size:40.800000pt;}
.fsc{font-size:41.914133pt;}
.fsd{font-size:42.011200pt;}
.fs7{font-size:42.506667pt;}
.fs5{font-size:45.429333pt;}
.fs9{font-size:47.262933pt;}
.fs4{font-size:47.818667pt;}
.fsa{font-size:48.000000pt;}
.fsf{font-size:50.474667pt;}
.fs8{font-size:53.120000pt;}
.fs1{font-size:53.136000pt;}
.fse{font-size:53.333333pt;}
.fs6{font-size:60.570667pt;}
.fs0{font-size:70.666667pt;}
.y0{bottom:0.000000pt;}
.y61{bottom:2.877333pt;}
.y2e{bottom:10.247613pt;}
.y60{bottom:11.790039pt;}
.y2c{bottom:22.122280pt;}
.y2d{bottom:22.228107pt;}
.y2b{bottom:26.227613pt;}
.y5e{bottom:71.157333pt;}
.y27{bottom:75.014667pt;}
.y5d{bottom:87.097333pt;}
.y26{bottom:96.170667pt;}
.y5c{bottom:103.037333pt;}
.ydd{bottom:104.366667pt;}
.y105{bottom:111.008000pt;}
.y25{bottom:112.110667pt;}
.y5b{bottom:118.977333pt;}
.ydc{bottom:120.306667pt;}
.y24{bottom:128.050667pt;}
.y104{bottom:128.276000pt;}
.y5a{bottom:134.918667pt;}
.ydb{bottom:136.246667pt;}
.y23{bottom:143.990667pt;}
.y103{bottom:144.217333pt;}
.y59{bottom:150.858667pt;}
.yda{bottom:153.514667pt;}
.y22{bottom:159.932000pt;}
.y102{bottom:161.485333pt;}
.y58{bottom:166.798667pt;}
.yd9{bottom:169.456000pt;}
.y77{bottom:169.550667pt;}
.y91{bottom:171.620000pt;}
.y21{bottom:175.872000pt;}
.y101{bottom:178.753333pt;}
.y57{bottom:182.738667pt;}
.y76{bottom:184.162667pt;}
.yd8{bottom:185.396000pt;}
.y20{bottom:191.812000pt;}
.y100{bottom:194.694667pt;}
.y56{bottom:198.678667pt;}
.y75{bottom:198.774667pt;}
.yb4{bottom:206.874667pt;}
.y1f{bottom:207.752000pt;}
.yd7{bottom:211.133333pt;}
.yff{bottom:211.962667pt;}
.y74{bottom:213.386667pt;}
.y55{bottom:214.618667pt;}
.y1e{bottom:223.692000pt;}
.yfe{bottom:227.902667pt;}
.y73{bottom:227.998667pt;}
.y54{bottom:230.560000pt;}
.y1d{bottom:239.632000pt;}
.ya1{bottom:241.961333pt;}
.y72{bottom:242.610667pt;}
.yfd{bottom:245.172000pt;}
.yb3{bottom:246.037333pt;}
.y53{bottom:246.500000pt;}
.yd6{bottom:250.898667pt;}
.yb2{bottom:260.649333pt;}
.yfc{bottom:261.112000pt;}
.y52{bottom:262.440000pt;}
.yd5{bottom:266.840000pt;}
.y1c{bottom:268.629333pt;}
.yb1{bottom:275.261333pt;}
.yfb{bottom:277.052000pt;}
.y51{bottom:278.380000pt;}
.ya0{bottom:280.674667pt;}
.yd4{bottom:282.780000pt;}
.y50{bottom:294.320000pt;}
.y9f{bottom:296.614667pt;}
.yd3{bottom:298.720000pt;}
.y4f{bottom:310.261333pt;}
.y9e{bottom:312.554667pt;}
.y4e{bottom:326.201333pt;}
.y9d{bottom:328.494667pt;}
.yd2{bottom:330.600000pt;}
.y1b{bottom:332.590667pt;}
.y4d{bottom:342.141333pt;}
.yfa{bottom:343.469333pt;}
.y9c{bottom:344.436000pt;}
.yd1{bottom:346.540000pt;}
.y1a{bottom:347.202667pt;}
.y4c{bottom:358.081333pt;}
.yf9{bottom:359.409333pt;}
.y9b{bottom:360.376000pt;}
.y19{bottom:361.814667pt;}
.yd0{bottom:362.481333pt;}
.y90{bottom:374.021333pt;}
.yf8{bottom:375.349333pt;}
.y9a{bottom:376.316000pt;}
.y18{bottom:376.426667pt;}
.ycf{bottom:378.421333pt;}
.y4b{bottom:382.948000pt;}
.y8f{bottom:389.961333pt;}
.y17{bottom:391.037333pt;}
.y99{bottom:392.256000pt;}
.yf7{bottom:392.618667pt;}
.yce{bottom:394.361333pt;}
.y16{bottom:405.649333pt;}
.y8e{bottom:405.902667pt;}
.y98{bottom:408.196000pt;}
.yf6{bottom:408.558667pt;}
.ycd{bottom:410.301333pt;}
.y15{bottom:420.261333pt;}
.y4a{bottom:421.842667pt;}
.yf5{bottom:425.826667pt;}
.y14{bottom:434.873333pt;}
.y97{bottom:435.538667pt;}
.ycc{bottom:436.040000pt;}
.y49{bottom:437.782667pt;}
.yf4{bottom:441.768000pt;}
.y13{bottom:449.485333pt;}
.y48{bottom:453.722667pt;}
.yf3{bottom:457.708000pt;}
.y12{bottom:464.097333pt;}
.y8d{bottom:465.824000pt;}
.y47{bottom:469.662667pt;}
.yf2{bottom:474.976000pt;}
.ycb{bottom:475.805333pt;}
.y96{bottom:476.908000pt;}
.y11{bottom:478.709333pt;}
.y71{bottom:481.042667pt;}
.y46{bottom:485.602667pt;}
.yf1{bottom:490.916000pt;}
.yca{bottom:491.745333pt;}
.y95{bottom:492.848000pt;}
.y10{bottom:493.321333pt;}
.y70{bottom:498.502667pt;}
.y45{bottom:501.544000pt;}
.y8c{bottom:505.236000pt;}
.yf0{bottom:506.857333pt;}
.yc9{bottom:507.685333pt;}
.yf{bottom:507.933333pt;}
.y6f{bottom:514.444000pt;}
.yb0{bottom:515.345333pt;}
.y44{bottom:517.484000pt;}
.y8b{bottom:521.176000pt;}
.y94{bottom:522.009333pt;}
.ye{bottom:522.545333pt;}
.yc8{bottom:523.625333pt;}
.yef{bottom:524.125333pt;}
.y6e{bottom:530.384000pt;}
.y43{bottom:533.424000pt;}
.yaf{bottom:535.805333pt;}
.y93{bottom:536.621333pt;}
.y8a{bottom:537.117333pt;}
.yd{bottom:537.156000pt;}
.yc7{bottom:539.566667pt;}
.yee{bottom:541.393333pt;}
.y6d{bottom:546.324000pt;}
.y42{bottom:549.364000pt;}
.y92{bottom:551.232000pt;}
.yae{bottom:551.745333pt;}
.yc{bottom:551.768000pt;}
.y89{bottom:553.057333pt;}
.yc6{bottom:555.506667pt;}
.yed{bottom:557.334667pt;}
.y6c{bottom:562.264000pt;}
.y41{bottom:565.304000pt;}
.yb{bottom:566.380000pt;}
.yad{bottom:567.686667pt;}
.y88{bottom:568.997333pt;}
.yc5{bottom:571.446667pt;}
.yec{bottom:573.274667pt;}
.y6b{bottom:578.204000pt;}
.ya{bottom:580.992000pt;}
.y40{bottom:581.244000pt;}
.y87{bottom:584.937333pt;}
.yc4{bottom:587.386667pt;}
.yac{bottom:588.145333pt;}
.yeb{bottom:590.542667pt;}
.y6a{bottom:594.144000pt;}
.y9{bottom:595.604000pt;}
.y3f{bottom:597.185333pt;}
.y86{bottom:600.877333pt;}
.yc3{bottom:603.326667pt;}
.yab{bottom:604.085333pt;}
.yea{bottom:606.482667pt;}
.y69{bottom:610.085333pt;}
.y8{bottom:610.216000pt;}
.y3e{bottom:613.125333pt;}
.y85{bottom:616.817333pt;}
.yc2{bottom:619.266667pt;}
.yaa{bottom:620.026667pt;}
.ye9{bottom:622.424000pt;}
.y68{bottom:626.025333pt;}
.y3d{bottom:629.065333pt;}
.y84{bottom:632.758667pt;}
.yc1{bottom:635.208000pt;}
.ya9{bottom:635.966667pt;}
.ye8{bottom:639.692000pt;}
.y7{bottom:642.808000pt;}
.y67{bottom:643.485333pt;}
.y3c{bottom:645.005333pt;}
.y83{bottom:648.844000pt;}
.yc0{bottom:651.148000pt;}
.ya8{bottom:651.906667pt;}
.ye7{bottom:655.632000pt;}
.y6{bottom:657.757333pt;}
.y66{bottom:659.425333pt;}
.y3b{bottom:660.945333pt;}
.y82{bottom:664.784000pt;}
.ybf{bottom:667.088000pt;}
.ya7{bottom:667.846667pt;}
.ye6{bottom:671.572000pt;}
.y5{bottom:675.009333pt;}
.y65{bottom:675.365333pt;}
.y3a{bottom:676.885333pt;}
.y81{bottom:680.725333pt;}
.ybe{bottom:683.028000pt;}
.ya6{bottom:688.306667pt;}
.ye5{bottom:688.841333pt;}
.y3{bottom:690.949333pt;}
.y64{bottom:691.305333pt;}
.y39{bottom:692.826667pt;}
.y4{bottom:695.770667pt;}
.y80{bottom:696.665333pt;}
.ybd{bottom:698.968000pt;}
.ya5{bottom:704.246667pt;}
.ye4{bottom:704.781333pt;}
.y63{bottom:707.246667pt;}
.y38{bottom:708.766667pt;}
.y7f{bottom:712.605333pt;}
.ybc{bottom:714.908000pt;}
.ya4{bottom:720.186667pt;}
.ye3{bottom:722.049333pt;}
.y62{bottom:723.186667pt;}
.y37{bottom:724.706667pt;}
.y7e{bottom:728.545333pt;}
.ybb{bottom:730.849333pt;}
.y2{bottom:733.793333pt;}
.ya3{bottom:736.126667pt;}
.ye2{bottom:737.990667pt;}
.y36{bottom:740.646667pt;}
.y7d{bottom:744.485333pt;}
.yba{bottom:746.789333pt;}
.ya2{bottom:752.068000pt;}
.ye1{bottom:753.930667pt;}
.y1{bottom:755.046667pt;}
.y35{bottom:756.586667pt;}
.y7c{bottom:760.425333pt;}
.yb9{bottom:762.729333pt;}
.ye0{bottom:771.198667pt;}
.y34{bottom:772.526667pt;}
.y7b{bottom:776.366667pt;}
.yb8{bottom:778.669333pt;}
.ydf{bottom:787.138667pt;}
.y33{bottom:788.468000pt;}
.y7a{bottom:792.306667pt;}
.yb7{bottom:794.609333pt;}
.yde{bottom:803.078667pt;}
.y32{bottom:804.408000pt;}
.y79{bottom:808.246667pt;}
.yb6{bottom:810.549333pt;}
.y31{bottom:820.348000pt;}
.y78{bottom:824.186667pt;}
.yb5{bottom:826.490667pt;}
.y30{bottom:836.288000pt;}
.y2f{bottom:852.228000pt;}
.y2a{bottom:903.628400pt;}
.y5f{bottom:912.081200pt;}
.y28{bottom:912.081333pt;}
.y29{bottom:920.681200pt;}
.h13{height:14.666747pt;}
.ha{height:19.341227pt;}
.h6{height:21.935275pt;}
.h18{height:23.539248pt;}
.h4{height:25.589931pt;}
.h17{height:27.630720pt;}
.he{height:28.356000pt;}
.hf{height:29.130323pt;}
.h10{height:29.172243pt;}
.h11{height:29.281784pt;}
.h8{height:32.899243pt;}
.h15{height:33.090517pt;}
.h7{height:33.663136pt;}
.h12{height:36.291888pt;}
.h3{height:36.557568pt;}
.h19{height:36.770112pt;}
.h16{height:37.401728pt;}
.h5{height:44.875264pt;}
.h9{height:44.882864pt;}
.hc{height:48.391113pt;}
.hd{height:49.125000pt;}
.h2{height:52.364000pt;}
.hb{height:52.834688pt;}
.h14{height:55.442708pt;}
.h1{height:944.666667pt;}
.h0{height:944.881333pt;}
.w2{width:6.666667pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x15{left:27.005600pt;}
.x18{left:46.737000pt;}
.x19{left:48.242013pt;}
.x17{left:54.780280pt;}
.x16{left:66.988813pt;}
.x39{left:74.594667pt;}
.x1{left:75.590667pt;}
.x14{left:77.612000pt;}
.x3a{left:81.768000pt;}
.x49{left:87.068000pt;}
.x44{left:88.144000pt;}
.x13{left:89.674667pt;}
.x53{left:91.078667pt;}
.x20{left:95.516000pt;}
.x30{left:96.644000pt;}
.x52{left:97.721333pt;}
.x45{left:99.370667pt;}
.x31{left:101.076000pt;}
.x32{left:105.008000pt;}
.x3b{left:108.629333pt;}
.x3c{left:117.878667pt;}
.xc{left:132.284000pt;}
.x2a{left:136.018667pt;}
.x1c{left:137.865333pt;}
.x23{left:139.236000pt;}
.x1d{left:144.506667pt;}
.x2b{left:149.301333pt;}
.x2{left:157.382667pt;}
.x3{left:162.696000pt;}
.x3e{left:164.997333pt;}
.x3f{left:178.281333pt;}
.x26{left:179.450667pt;}
.x27{left:186.092000pt;}
.x36{left:187.852000pt;}
.x48{left:190.156000pt;}
.xf{left:194.820000pt;}
.x37{left:197.442667pt;}
.x10{left:201.461333pt;}
.x46{left:211.948000pt;}
.x1a{left:218.432000pt;}
.x1b{left:225.073333pt;}
.x4{left:229.372000pt;}
.x5{left:242.324000pt;}
.x47{left:245.558667pt;}
.x11{left:260.804000pt;}
.x12{left:267.445333pt;}
.x4b{left:306.252000pt;}
.x21{left:307.441333pt;}
.x22{left:314.082667pt;}
.x33{left:317.926676pt;}
.x4c{left:319.534667pt;}
.x40{left:321.002667pt;}
.x41{left:328.428000pt;}
.x42{left:332.998667pt;}
.x6{left:334.517333pt;}
.x43{left:346.282667pt;}
.x7{left:347.862667pt;}
.x4d{left:360.853333pt;}
.x1e{left:366.394667pt;}
.x1f{left:373.036000pt;}
.x38{left:384.386667pt;}
.x4a{left:397.369333pt;}
.x3d{left:405.844000pt;}
.xd{left:412.509333pt;}
.xe{left:419.150667pt;}
.x8{left:439.116000pt;}
.x34{left:442.582667pt;}
.x9{left:444.430667pt;}
.x35{left:455.866667pt;}
.x4e{left:463.038667pt;}
.x4f{left:476.321333pt;}
.x50{left:495.474667pt;}
.x24{left:504.086667pt;}
.x51{left:508.758667pt;}
.x25{left:510.728000pt;}
.x2c{left:529.824000pt;}
.x2d{left:539.414667pt;}
.x28{left:548.070667pt;}
.x2e{left:558.140000pt;}
.xa{left:560.021333pt;}
.x29{left:561.354667pt;}
.x2f{left:563.306667pt;}
.xb{left:565.334667pt;}
}




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