
    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_494606837864e19464c49ccb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.155000;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_e3af049a50428451690476df.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0802fcfce3decd97816b898f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_7be39a5cc8ba81cc68b5c7f4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.067000;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_60989c684942bcf678d5a3e7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.069000;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_deb1e133d6a8a612f2fa06b8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.259000;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_f8a932d9eb4d49cc8ef01218.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.069000;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_3e6068e80a4eda40d90c8f9b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.632000;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_f8a932d9eb4d49cc8ef01218.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.069000;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_e787f03df6e4259b834959c5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.502000;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_d2c9040ad6e5ca096ba1a174.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.702000;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;}
.m3{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);}
.m25{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);}
.m1b{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);}
.mb{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);}
.m14{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);}
.m1a{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);}
.m19{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);}
.ma{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);}
.m29{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m20{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);}
.m1{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);}
.me{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);}
.m11{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);}
.m17{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);}
.m1e{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);}
.m27{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);}
.m1f{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);}
.m7{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);}
.m9{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);}
.m12{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);}
.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);}
.m24{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);}
.m21{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);}
.m23{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);}
.m1c{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);}
.m13{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);}
.m8{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);}
.m26{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);}
.m28{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m1d{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);}
.m18{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);}
.m4{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);}
.m10{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);}
.md{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);}
.m15{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);}
.m5{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);}
.m6{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);}
.m22{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);}
.mc{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);}
.m16{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);}
.m2{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(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;}
.v4{vertical-align:19.524000px;}
.v1{vertical-align:26.040000px;}
.lsf{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.000845px;}
.ls17{letter-spacing:0.004200px;}
.ls12{letter-spacing:1.312718px;}
.ls0{letter-spacing:1.530259px;}
.lse{letter-spacing:2.985600px;}
.lsc{letter-spacing:2.985900px;}
.lsd{letter-spacing:2.991900px;}
.ls3{letter-spacing:3.471772px;}
.ls2{letter-spacing:4.100726px;}
.ls5{letter-spacing:4.705537px;}
.ls8{letter-spacing:4.730237px;}
.lsa{letter-spacing:4.733126px;}
.ls7{letter-spacing:4.733290px;}
.ls1{letter-spacing:4.733453px;}
.lsb{letter-spacing:4.735910px;}
.ls4{letter-spacing:4.736237px;}
.ls16{letter-spacing:14.585246px;}
.ls11{letter-spacing:14.824349px;}
.ls10{letter-spacing:15.183002px;}
.ls14{letter-spacing:18.829314px;}
.ls15{letter-spacing:23.551586px;}
.ls9{letter-spacing:27.350954px;}
.ls6{letter-spacing:101.246954px;}
.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;}
}
.ws38{word-spacing:-29.887800px;}
.ws86{word-spacing:-23.910300px;}
.ws4d{word-spacing:-18.530436px;}
.ws4e{word-spacing:-18.231558px;}
.ws30{word-spacing:-17.753353px;}
.ws43{word-spacing:-17.574026px;}
.ws1e{word-spacing:-17.514251px;}
.ws2b{word-spacing:-17.215373px;}
.ws2a{word-spacing:-17.095822px;}
.ws7a{word-spacing:-16.438290px;}
.ws2f{word-spacing:-16.378514px;}
.ws66{word-spacing:-16.318739px;}
.ws3a{word-spacing:-16.079636px;}
.ws72{word-spacing:-16.019861px;}
.wse{word-spacing:-15.900310px;}
.ws60{word-spacing:-15.816730px;}
.ws67{word-spacing:-15.780758px;}
.ws1b{word-spacing:-15.720983px;}
.ws16{word-spacing:-15.661207px;}
.ws4c{word-spacing:-15.601432px;}
.ws29{word-spacing:-15.481880px;}
.ws2c{word-spacing:-15.302554px;}
.ws37{word-spacing:-15.242778px;}
.ws10{word-spacing:-15.183002px;}
.ws2e{word-spacing:-15.123227px;}
.ws19{word-spacing:-15.063451px;}
.ws1a{word-spacing:-15.003676px;}
.ws15{word-spacing:-14.943900px;}
.wsc{word-spacing:-14.884124px;}
.ws21{word-spacing:-14.824349px;}
.wsf{word-spacing:-14.764573px;}
.ws48{word-spacing:-14.709044px;}
.ws35{word-spacing:-14.704798px;}
.ws34{word-spacing:-14.645022px;}
.ws54{word-spacing:-14.633165px;}
.ws20{word-spacing:-14.585246px;}
.ws51{word-spacing:-14.525471px;}
.ws56{word-spacing:-14.471770px;}
.ws79{word-spacing:-14.405920px;}
.ws58{word-spacing:-14.346144px;}
.ws5c{word-spacing:-14.286368px;}
.wsa3{word-spacing:-14.059256px;}
.ws68{word-spacing:-13.987490px;}
.ws59{word-spacing:-13.927715px;}
.ws84{word-spacing:-13.820153px;}
.ws3e{word-spacing:-13.808164px;}
.ws9b{word-spacing:-13.724512px;}
.ws6e{word-spacing:-13.688612px;}
.ws11{word-spacing:-13.628837px;}
.ws36{word-spacing:-13.569061px;}
.ws6b{word-spacing:-13.557197px;}
.ws8e{word-spacing:-13.533230px;}
.ws4f{word-spacing:-13.509286px;}
.ws9c{word-spacing:-13.485409px;}
.ws4b{word-spacing:-13.449600px;}
.ws50{word-spacing:-13.449510px;}
.ws1f{word-spacing:-13.329959px;}
.ws71{word-spacing:-13.210408px;}
.ws7d{word-spacing:-13.150632px;}
.ws9e{word-spacing:-13.055024px;}
.ws6d{word-spacing:-12.857818px;}
.ws3d{word-spacing:-12.851754px;}
.ws14{word-spacing:-12.791978px;}
.ws62{word-spacing:-12.672427px;}
.ws26{word-spacing:-12.552876px;}
.ws78{word-spacing:-12.493100px;}
.ws73{word-spacing:-12.313774px;}
.ws95{word-spacing:-12.146432px;}
.ws1c{word-spacing:-12.134447px;}
.ws88{word-spacing:-12.050791px;}
.ws3f{word-spacing:-12.014896px;}
.ws81{word-spacing:-12.002971px;}
.ws9f{word-spacing:-11.956350px;}
.ws80{word-spacing:-11.955150px;}
.ws33{word-spacing:-11.955120px;}
.ws8c{word-spacing:-11.953952px;}
.ws96{word-spacing:-11.953214px;}
.wsa4{word-spacing:-11.952605px;}
.ws9a{word-spacing:-11.951593px;}
.ws87{word-spacing:-11.950277px;}
.ws85{word-spacing:-11.907329px;}
.ws8d{word-spacing:-11.859509px;}
.ws53{word-spacing:-11.835648px;}
.ws77{word-spacing:-11.835569px;}
.ws97{word-spacing:-11.811688px;}
.ws99{word-spacing:-11.763868px;}
.ws6a{word-spacing:-11.728051px;}
.ws8a{word-spacing:-11.716047px;}
.ws1d{word-spacing:-11.716018px;}
.wsa5{word-spacing:-11.620406px;}
.ws12{word-spacing:-11.536691px;}
.ws3b{word-spacing:-11.417140px;}
.ws13{word-spacing:-11.357364px;}
.ws8b{word-spacing:-11.333482px;}
.ws6f{word-spacing:-11.297664px;}
.ws44{word-spacing:-11.297588px;}
.ws9d{word-spacing:-11.285662px;}
.ws45{word-spacing:-11.237813px;}
.wsd{word-spacing:-11.178037px;}
.ws76{word-spacing:-11.118262px;}
.ws5b{word-spacing:-11.058486px;}
.ws82{word-spacing:-10.998738px;}
.ws5a{word-spacing:-10.998710px;}
.ws98{word-spacing:-10.950917px;}
.ws94{word-spacing:-10.855276px;}
.ws75{word-spacing:-10.640057px;}
.ws7e{word-spacing:-10.520506px;}
.ws5f{word-spacing:-10.436890px;}
.ws92{word-spacing:-10.377070px;}
.ws91{word-spacing:-10.329250px;}
.ws70{word-spacing:-10.221628px;}
.ws90{word-spacing:-10.137967px;}
.ws31{word-spacing:-10.042301px;}
.ws93{word-spacing:-9.898864px;}
.ws40{word-spacing:-9.862974px;}
.wsa2{word-spacing:-9.755402px;}
.ws7b{word-spacing:-9.683647px;}
.wsa6{word-spacing:-9.611941px;}
.ws89{word-spacing:-9.516299px;}
.ws2d{word-spacing:-9.324994px;}
.ws32{word-spacing:-8.787013px;}
.ws5d{word-spacing:-8.368584px;}
.ws25{word-spacing:-7.950155px;}
.ws46{word-spacing:-7.890379px;}
.ws55{word-spacing:-7.585574px;}
.ws42{word-spacing:-7.173072px;}
.ws65{word-spacing:-6.814418px;}
.ws64{word-spacing:-6.754643px;}
.ws7c{word-spacing:-6.635092px;}
.ws63{word-spacing:-6.336214px;}
.ws41{word-spacing:-5.738458px;}
.ws28{word-spacing:-5.499355px;}
.wsa0{word-spacing:-5.116804px;}
.ws7{word-spacing:-4.762922px;}
.ws61{word-spacing:-4.662497px;}
.wsa1{word-spacing:-3.347442px;}
.ws27{word-spacing:-0.657532px;}
.ws8{word-spacing:-0.071731px;}
.ws47{word-spacing:-0.059776px;}
.ws4{word-spacing:-0.057385px;}
.ws57{word-spacing:-0.053798px;}
.ws83{word-spacing:-0.047821px;}
.ws24{word-spacing:0.000000px;}
.ws74{word-spacing:0.059776px;}
.ws0{word-spacing:11.590456px;}
.ws8f{word-spacing:11.907329px;}
.ws23{word-spacing:12.418464px;}
.ws17{word-spacing:13.246306px;}
.wsb{word-spacing:13.395802px;}
.ws4a{word-spacing:14.902157px;}
.ws3c{word-spacing:15.063451px;}
.ws49{word-spacing:15.123227px;}
.ws9{word-spacing:15.463763px;}
.ws6{word-spacing:15.521478px;}
.ws6c{word-spacing:15.601536px;}
.ws52{word-spacing:16.516109px;}
.ws39{word-spacing:16.557841px;}
.ws69{word-spacing:16.623706px;}
.ws5e{word-spacing:17.699674px;}
.ws7f{word-spacing:23.855357px;}
.ws2{word-spacing:24.865727px;}
.ws3{word-spacing:24.890726px;}
.wsa{word-spacing:24.921882px;}
.ws1{word-spacing:25.344918px;}
.ws18{word-spacing:59.715824px;}
.ws5{word-spacing:94.245331px;}
.ws22{word-spacing:1378.180512px;}
._9{margin-left:-5.477133px;}
._1d{margin-left:-4.447255px;}
._2{margin-left:-3.347424px;}
._d{margin-left:-2.319318px;}
._0{margin-left:-1.255284px;}
._4{width:1.004227px;}
._e{width:2.039298px;}
._8{width:3.316636px;}
._7{width:5.537617px;}
._3{width:6.569320px;}
._14{width:7.633354px;}
._21{width:8.968666px;}
._12{width:11.357365px;}
._1f{width:12.600880px;}
._16{width:13.688603px;}
._11{width:15.709052px;}
._1a{width:17.326710px;}
._a{width:18.972878px;}
._22{width:20.204225px;}
._f{width:21.280114px;}
._c{width:22.296295px;}
._19{width:23.432063px;}
._1b{width:25.643732px;}
._15{width:27.006637px;}
._6{width:28.022872px;}
._10{width:31.322442px;}
._b{width:32.816788px;}
._17{width:36.630503px;}
._23{width:38.878148px;}
._1e{width:45.369680px;}
._1c{width:49.553976px;}
._20{width:53.845900px;}
._18{width:59.775600px;}
._5{width:69.403879px;}
._1{width:543.443906px;}
._13{width:572.128061px;}
.fc3{color:rgb(46,46,177);}
.fc2{color:rgb(124,19,14);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:37.060800px;}
.fs0{font-size:41.842800px;}
.fs5{font-size:43.636200px;}
.fsa{font-size:44.832000px;}
.fs8{font-size:47.820600px;}
.fs4{font-size:52.602600px;}
.fs6{font-size:53.798400px;}
.fs3{font-size:57.384600px;}
.fs9{font-size:59.775600px;}
.fs2{font-size:71.731200px;}
.fs1{font-size:95.641200px;}
.y0{bottom:0.000000px;}
.y2f{bottom:86.494500px;}
.y2e{bottom:101.437500px;}
.y60{bottom:140.400000px;}
.yea{bottom:145.902000px;}
.y86{bottom:148.162500px;}
.y2d{bottom:151.093500px;}
.ydb{bottom:152.785500px;}
.yba{bottom:157.560000px;}
.y5f{bottom:158.332500px;}
.ye9{bottom:160.098000px;}
.y85{bottom:166.095000px;}
.y124{bottom:166.653000px;}
.yad{bottom:168.138000px;}
.y2c{bottom:169.026000px;}
.yda{bottom:170.718000px;}
.ye8{bottom:174.295500px;}
.yb9{bottom:175.492500px;}
.y5e{bottom:176.266500px;}
.y123{bottom:180.850500px;}
.y84{bottom:184.027500px;}
.yac{bottom:186.070500px;}
.y2b{bottom:186.960000px;}
.ye7{bottom:188.491500px;}
.yd9{bottom:188.650500px;}
.yb8{bottom:193.425000px;}
.y5d{bottom:194.199000px;}
.y122{bottom:195.046500px;}
.y83{bottom:201.960000px;}
.ye6{bottom:202.689000px;}
.yab{bottom:204.003000px;}
.y2a{bottom:204.892500px;}
.yd8{bottom:206.583000px;}
.y121{bottom:209.244000px;}
.yb7{bottom:211.359000px;}
.y5c{bottom:212.131500px;}
.ye5{bottom:216.885000px;}
.y82{bottom:219.892500px;}
.yaa{bottom:221.935500px;}
.y29{bottom:222.825000px;}
.y120{bottom:223.440000px;}
.yd7{bottom:224.515500px;}
.yb6{bottom:229.291500px;}
.y5b{bottom:230.064000px;}
.ye4{bottom:231.082500px;}
.y11f{bottom:237.637500px;}
.y81{bottom:237.826500px;}
.ya9{bottom:239.868000px;}
.y28{bottom:240.757500px;}
.yd6{bottom:242.449500px;}
.ye3{bottom:245.278500px;}
.yb5{bottom:247.224000px;}
.y5a{bottom:247.996500px;}
.y11e{bottom:251.833500px;}
.ya8{bottom:257.802000px;}
.y27{bottom:258.690000px;}
.ye2{bottom:259.476000px;}
.yd5{bottom:260.382000px;}
.yb4{bottom:265.156500px;}
.y59{bottom:265.929000px;}
.y11d{bottom:266.031000px;}
.y80{bottom:274.942500px;}
.ya7{bottom:275.734500px;}
.y26{bottom:276.622500px;}
.yd4{bottom:278.314500px;}
.ye1{bottom:280.227000px;}
.yb3{bottom:283.089000px;}
.y58{bottom:283.863000px;}
.ya6{bottom:293.667000px;}
.y11c{bottom:294.424500px;}
.y25{bottom:294.556500px;}
.yd3{bottom:296.247000px;}
.y57{bottom:301.795500px;}
.ye0{bottom:307.126500px;}
.y11b{bottom:308.620500px;}
.ya5{bottom:311.599500px;}
.y24{bottom:312.489000px;}
.yd2{bottom:314.179500px;}
.y56{bottom:319.728000px;}
.ydf{bottom:321.322500px;}
.y11a{bottom:322.818000px;}
.ya4{bottom:329.532000px;}
.y23{bottom:330.421500px;}
.yd1{bottom:332.112000px;}
.yb2{bottom:332.328000px;}
.y119{bottom:337.014000px;}
.y95{bottom:337.660500px;}
.y55{bottom:344.385000px;}
.yde{bottom:344.487000px;}
.ya3{bottom:347.464500px;}
.y22{bottom:348.354000px;}
.yb1{bottom:348.766500px;}
.yd0{bottom:350.046000px;}
.y118{bottom:351.211500px;}
.y94{bottom:355.593000px;}
.ydd{bottom:358.683000px;}
.ya2{bottom:365.398500px;}
.y117{bottom:365.407500px;}
.y21{bottom:366.286500px;}
.ycf{bottom:367.978500px;}
.y54{bottom:371.061000px;}
.y93{bottom:373.525500px;}
.y116{bottom:379.605000px;}
.ydc{bottom:381.846000px;}
.ya1{bottom:383.331000px;}
.y20{bottom:384.219000px;}
.yce{bottom:385.911000px;}
.y115{bottom:393.801000px;}
.ya0{bottom:401.263500px;}
.y1f{bottom:402.153000px;}
.ycd{bottom:403.843500px;}
.y53{bottom:405.009000px;}
.y114{bottom:407.998500px;}
.y92{bottom:409.588500px;}
.y9f{bottom:419.196000px;}
.ycc{bottom:421.776000px;}
.y113{bottom:422.194500px;}
.y52{bottom:422.941500px;}
.y91{bottom:426.027000px;}
.y1e{bottom:428.827500px;}
.y112{bottom:436.392000px;}
.y9e{bottom:437.128500px;}
.ycb{bottom:439.708500px;}
.y51{bottom:440.875500px;}
.y90{bottom:442.464000px;}
.y111{bottom:450.588000px;}
.y9d{bottom:455.061000px;}
.yca{bottom:457.642500px;}
.y50{bottom:458.808000px;}
.y8f{bottom:458.902500px;}
.y1d{bottom:464.692500px;}
.y110{bottom:464.785500px;}
.y7f{bottom:466.093500px;}
.y9c{bottom:472.995000px;}
.yc9{bottom:475.575000px;}
.y4f{bottom:476.740500px;}
.y10f{bottom:478.981500px;}
.y7e{bottom:484.026000px;}
.y9b{bottom:490.927500px;}
.y10e{bottom:493.179000px;}
.yc8{bottom:493.507500px;}
.y4e{bottom:494.673000px;}
.y1c{bottom:500.559000px;}
.y7d{bottom:501.958500px;}
.y10d{bottom:507.375000px;}
.y9a{bottom:508.860000px;}
.yc7{bottom:511.440000px;}
.y4d{bottom:512.605500px;}
.y1b{bottom:518.491500px;}
.y7c{bottom:519.891000px;}
.y10c{bottom:521.572500px;}
.y99{bottom:526.792500px;}
.yc6{bottom:529.372500px;}
.y4c{bottom:530.538000px;}
.y10b{bottom:535.768500px;}
.y1a{bottom:536.424000px;}
.y7b{bottom:537.823500px;}
.yc5{bottom:547.305000px;}
.y4b{bottom:548.472000px;}
.y10a{bottom:549.966000px;}
.y19{bottom:554.356500px;}
.y7a{bottom:555.756000px;}
.y98{bottom:561.085500px;}
.y109{bottom:564.162000px;}
.yc4{bottom:565.239000px;}
.y4a{bottom:566.404500px;}
.y18{bottom:572.289000px;}
.y78{bottom:573.690000px;}
.y97{bottom:577.524000px;}
.y108{bottom:578.359500px;}
.y79{bottom:579.114000px;}
.yc3{bottom:583.171500px;}
.y49{bottom:584.337000px;}
.y17{bottom:590.221500px;}
.y77{bottom:591.622500px;}
.y107{bottom:592.555500px;}
.y96{bottom:593.962500px;}
.y48{bottom:602.269500px;}
.y106{bottom:606.753000px;}
.y16{bottom:608.155500px;}
.y76{bottom:609.555000px;}
.yc2{bottom:609.846000px;}
.y47{bottom:620.202000px;}
.y105{bottom:620.949000px;}
.y15{bottom:626.088000px;}
.y75{bottom:627.487500px;}
.y104{bottom:635.146500px;}
.y46{bottom:638.134500px;}
.y14{bottom:644.020500px;}
.yc1{bottom:644.590500px;}
.y103{bottom:649.342500px;}
.y74{bottom:652.144500px;}
.y45{bottom:656.068500px;}
.y13{bottom:661.953000px;}
.yc0{bottom:662.523000px;}
.y102{bottom:663.540000px;}
.y44{bottom:674.001000px;}
.y101{bottom:677.736000px;}
.y12{bottom:679.885500px;}
.ybf{bottom:680.455500px;}
.y73{bottom:685.209000px;}
.y43{bottom:691.933500px;}
.y11{bottom:697.818000px;}
.ybe{bottom:698.389500px;}
.y72{bottom:703.141500px;}
.y100{bottom:706.129500px;}
.yb0{bottom:707.314500px;}
.y42{bottom:709.866000px;}
.y10{bottom:715.752000px;}
.yff{bottom:720.327000px;}
.y8e{bottom:720.619500px;}
.y71{bottom:721.074000px;}
.yaf{bottom:723.751500px;}
.y41{bottom:727.798500px;}
.yf{bottom:733.684500px;}
.yfe{bottom:734.523000px;}
.y8d{bottom:738.552000px;}
.y70{bottom:739.006500px;}
.yae{bottom:740.190000px;}
.y40{bottom:745.731000px;}
.ybd{bottom:747.634500px;}
.yfd{bottom:748.720500px;}
.ye{bottom:751.617000px;}
.y8c{bottom:756.484500px;}
.y6f{bottom:756.939000px;}
.yfc{bottom:762.916500px;}
.y3f{bottom:763.665000px;}
.ybc{bottom:764.071500px;}
.y8b{bottom:774.417000px;}
.y6e{bottom:774.873000px;}
.yfb{bottom:777.114000px;}
.ybb{bottom:780.510000px;}
.y3e{bottom:781.597500px;}
.yfa{bottom:791.310000px;}
.yd{bottom:791.821500px;}
.y8a{bottom:792.349500px;}
.y6d{bottom:792.805500px;}
.y3d{bottom:799.530000px;}
.yc{bottom:801.679500px;}
.yf9{bottom:805.507500px;}
.y89{bottom:810.283500px;}
.y6c{bottom:810.738000px;}
.y3c{bottom:817.462500px;}
.yf8{bottom:819.705000px;}
.yb{bottom:822.999000px;}
.y88{bottom:828.216000px;}
.y6b{bottom:828.670500px;}
.yf7{bottom:833.901000px;}
.y3b{bottom:835.395000px;}
.ya{bottom:839.437500px;}
.y6a{bottom:846.603000px;}
.yf6{bottom:848.098500px;}
.y9{bottom:850.993500px;}
.y3a{bottom:853.327500px;}
.y87{bottom:854.890500px;}
.yf5{bottom:862.294500px;}
.y69{bottom:864.535500px;}
.y39{bottom:871.261500px;}
.y8{bottom:872.314500px;}
.yf4{bottom:876.492000px;}
.y68{bottom:882.469500px;}
.y38{bottom:889.194000px;}
.yf3{bottom:890.688000px;}
.y7{bottom:893.410500px;}
.y67{bottom:900.402000px;}
.yf2{bottom:904.885500px;}
.y37{bottom:907.126500px;}
.y6{bottom:914.332500px;}
.y66{bottom:918.334500px;}
.yf1{bottom:919.081500px;}
.y36{bottom:925.059000px;}
.yf0{bottom:933.279000px;}
.y5{bottom:935.254500px;}
.y65{bottom:936.267000px;}
.y35{bottom:942.991500px;}
.yef{bottom:947.475000px;}
.y64{bottom:954.199500px;}
.y34{bottom:960.924000px;}
.yee{bottom:961.672500px;}
.y63{bottom:972.132000px;}
.y4{bottom:974.865000px;}
.yed{bottom:975.868500px;}
.y33{bottom:978.858000px;}
.y62{bottom:990.066000px;}
.y32{bottom:996.790500px;}
.y3{bottom:1002.510000px;}
.yec{bottom:1004.262000px;}
.y61{bottom:1007.998500px;}
.y31{bottom:1014.723000px;}
.yeb{bottom:1018.459500px;}
.y2{bottom:1030.156500px;}
.y30{bottom:1032.655500px;}
.y1{bottom:1127.907000px;}
.hc{height:23.073382px;}
.h11{height:30.366005px;}
.h13{height:30.880282px;}
.h6{height:31.872288px;}
.h17{height:32.900573px;}
.ha{height:33.265344px;}
.he{height:34.311194px;}
.h9{height:35.482885px;}
.hf{height:37.134406px;}
.h4{height:37.527132px;}
.h1{height:39.164861px;}
.h15{height:40.695331px;}
.h16{height:41.125716px;}
.hb{height:44.293720px;}
.h12{height:45.782438px;}
.h5{height:46.266624px;}
.h10{height:50.355302px;}
.h8{height:50.869036px;}
.hd{height:51.407016px;}
.h7{height:55.949962px;}
.h14{height:56.658406px;}
.h3{height:75.276034px;}
.h2{height:89.520163px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:174.639000px;}
.x3{left:175.948500px;}
.x4b{left:188.017500px;}
.x5{left:190.440000px;}
.x5d{left:192.589500px;}
.x23{left:194.254500px;}
.x57{left:196.347000px;}
.x3e{left:198.600000px;}
.x10{left:203.781000px;}
.x1{left:207.604500px;}
.x11{left:213.285000px;}
.x2e{left:215.848500px;}
.x3f{left:222.750000px;}
.x24{left:227.293500px;}
.x40{left:228.727500px;}
.x25{left:237.127500px;}
.x1a{left:243.184500px;}
.x4{left:247.275000px;}
.x1b{left:250.656000px;}
.x22{left:253.666500px;}
.x41{left:254.787000px;}
.x4a{left:260.376000px;}
.x2f{left:261.420000px;}
.x12{left:262.861500px;}
.x42{left:264.291000px;}
.x13{left:272.365500px;}
.x43{left:278.935500px;}
.x38{left:280.641000px;}
.x44{left:284.914500px;}
.x39{left:290.145000px;}
.x3c{left:291.949500px;}
.x3d{left:297.927000px;}
.x5a{left:303.571500px;}
.x3a{left:304.789500px;}
.x3b{left:314.092500px;}
.x53{left:323.545500px;}
.x54{left:354.225000px;}
.x48{left:357.919500px;}
.x55{left:360.204000px;}
.x26{left:364.183500px;}
.x49{left:367.647000px;}
.x27{left:373.903500px;}
.x34{left:388.513500px;}
.xc{left:395.160000px;}
.xd{left:404.664000px;}
.x8{left:427.770000px;}
.x50{left:436.413000px;}
.x14{left:444.070500px;}
.x9{left:446.166000px;}
.x15{left:453.574500px;}
.x51{left:460.891500px;}
.x52{left:466.869000px;}
.x2c{left:512.388000px;}
.x6{left:516.271500px;}
.x2d{left:519.861000px;}
.x7{left:525.775500px;}
.x36{left:534.772500px;}
.x1c{left:552.090000px;}
.x16{left:558.619500px;}
.x1d{left:564.085500px;}
.x17{left:566.092500px;}
.x1e{left:589.771500px;}
.x1f{left:597.243000px;}
.x18{left:598.374000px;}
.x19{left:605.845500px;}
.x20{left:608.637000px;}
.xa{left:611.508000px;}
.x21{left:618.556500px;}
.xb{left:629.902500px;}
.x5b{left:649.627500px;}
.x5e{left:653.155500px;}
.x30{left:659.026500px;}
.x5c{left:661.582500px;}
.x31{left:665.751000px;}
.x45{left:667.617000px;}
.x32{left:671.281500px;}
.x46{left:677.122500px;}
.x35{left:678.654000px;}
.x33{left:682.078500px;}
.x28{left:686.365500px;}
.x37{left:691.770000px;}
.x29{left:696.318000px;}
.x47{left:697.744500px;}
.x4c{left:705.483000px;}
.x2a{left:711.067500px;}
.x4d{left:715.315500px;}
.x2b{left:717.045000px;}
.xe{left:718.938000px;}
.x56{left:720.489000px;}
.x58{left:726.355500px;}
.xf{left:728.442000px;}
.x4e{left:730.365000px;}
.x59{left:732.333000px;}
.x5f{left:735.016500px;}
.x4f{left:736.342500px;}
.x60{left:740.994000px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v3{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.354667pt;}
.v1{vertical-align:23.146667pt;}
.lsf{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.000751pt;}
.ls17{letter-spacing:0.003733pt;}
.ls12{letter-spacing:1.166861pt;}
.ls0{letter-spacing:1.360230pt;}
.lse{letter-spacing:2.653867pt;}
.lsc{letter-spacing:2.654133pt;}
.lsd{letter-spacing:2.659467pt;}
.ls3{letter-spacing:3.086019pt;}
.ls2{letter-spacing:3.645090pt;}
.ls5{letter-spacing:4.182700pt;}
.ls8{letter-spacing:4.204655pt;}
.lsa{letter-spacing:4.207223pt;}
.ls7{letter-spacing:4.207369pt;}
.ls1{letter-spacing:4.207514pt;}
.lsb{letter-spacing:4.209698pt;}
.ls4{letter-spacing:4.209988pt;}
.ls16{letter-spacing:12.964663pt;}
.ls11{letter-spacing:13.177199pt;}
.ls10{letter-spacing:13.496002pt;}
.ls14{letter-spacing:16.737168pt;}
.ls15{letter-spacing:20.934743pt;}
.ls9{letter-spacing:24.311959pt;}
.ls6{letter-spacing:89.997293pt;}
.ws38{word-spacing:-26.566933pt;}
.ws86{word-spacing:-21.253600pt;}
.ws4d{word-spacing:-16.471499pt;}
.ws4e{word-spacing:-16.205829pt;}
.ws30{word-spacing:-15.780758pt;}
.ws43{word-spacing:-15.621357pt;}
.ws1e{word-spacing:-15.568223pt;}
.ws2b{word-spacing:-15.302554pt;}
.ws2a{word-spacing:-15.196286pt;}
.ws7a{word-spacing:-14.611813pt;}
.ws2f{word-spacing:-14.558679pt;}
.ws66{word-spacing:-14.505546pt;}
.ws3a{word-spacing:-14.293010pt;}
.ws72{word-spacing:-14.239876pt;}
.wse{word-spacing:-14.133609pt;}
.ws60{word-spacing:-14.059315pt;}
.ws67{word-spacing:-14.027341pt;}
.ws1b{word-spacing:-13.974207pt;}
.ws16{word-spacing:-13.921073pt;}
.ws4c{word-spacing:-13.867939pt;}
.ws29{word-spacing:-13.761671pt;}
.ws2c{word-spacing:-13.602270pt;}
.ws37{word-spacing:-13.549136pt;}
.ws10{word-spacing:-13.496002pt;}
.ws2e{word-spacing:-13.442868pt;}
.ws19{word-spacing:-13.389734pt;}
.ws1a{word-spacing:-13.336601pt;}
.ws15{word-spacing:-13.283467pt;}
.wsc{word-spacing:-13.230333pt;}
.ws21{word-spacing:-13.177199pt;}
.wsf{word-spacing:-13.124065pt;}
.ws48{word-spacing:-13.074705pt;}
.ws35{word-spacing:-13.070931pt;}
.ws34{word-spacing:-13.017797pt;}
.ws54{word-spacing:-13.007258pt;}
.ws20{word-spacing:-12.964663pt;}
.ws51{word-spacing:-12.911530pt;}
.ws56{word-spacing:-12.863795pt;}
.ws79{word-spacing:-12.805262pt;}
.ws58{word-spacing:-12.752128pt;}
.ws5c{word-spacing:-12.698994pt;}
.wsa3{word-spacing:-12.497117pt;}
.ws68{word-spacing:-12.433325pt;}
.ws59{word-spacing:-12.380191pt;}
.ws84{word-spacing:-12.284581pt;}
.ws3e{word-spacing:-12.273923pt;}
.ws9b{word-spacing:-12.199566pt;}
.ws6e{word-spacing:-12.167655pt;}
.ws11{word-spacing:-12.114522pt;}
.ws36{word-spacing:-12.061388pt;}
.ws6b{word-spacing:-12.050842pt;}
.ws8e{word-spacing:-12.029538pt;}
.ws4f{word-spacing:-12.008254pt;}
.ws9c{word-spacing:-11.987030pt;}
.ws4b{word-spacing:-11.955200pt;}
.ws50{word-spacing:-11.955120pt;}
.ws1f{word-spacing:-11.848852pt;}
.ws71{word-spacing:-11.742585pt;}
.ws7d{word-spacing:-11.689451pt;}
.ws9e{word-spacing:-11.604466pt;}
.ws6d{word-spacing:-11.429171pt;}
.ws3d{word-spacing:-11.423781pt;}
.ws14{word-spacing:-11.370647pt;}
.ws62{word-spacing:-11.264380pt;}
.ws26{word-spacing:-11.158112pt;}
.ws78{word-spacing:-11.104978pt;}
.ws73{word-spacing:-10.945577pt;}
.ws95{word-spacing:-10.796829pt;}
.ws1c{word-spacing:-10.786175pt;}
.ws88{word-spacing:-10.711814pt;}
.ws3f{word-spacing:-10.679907pt;}
.ws81{word-spacing:-10.669307pt;}
.ws9f{word-spacing:-10.627867pt;}
.ws80{word-spacing:-10.626800pt;}
.ws33{word-spacing:-10.626773pt;}
.ws8c{word-spacing:-10.625735pt;}
.ws96{word-spacing:-10.625079pt;}
.wsa4{word-spacing:-10.624538pt;}
.ws9a{word-spacing:-10.623638pt;}
.ws87{word-spacing:-10.622468pt;}
.ws85{word-spacing:-10.584293pt;}
.ws8d{word-spacing:-10.541786pt;}
.ws53{word-spacing:-10.520576pt;}
.ws77{word-spacing:-10.520506pt;}
.ws97{word-spacing:-10.499278pt;}
.ws99{word-spacing:-10.456771pt;}
.ws6a{word-spacing:-10.424934pt;}
.ws8a{word-spacing:-10.414264pt;}
.ws1d{word-spacing:-10.414238pt;}
.wsa5{word-spacing:-10.329250pt;}
.ws12{word-spacing:-10.254836pt;}
.ws3b{word-spacing:-10.148569pt;}
.ws13{word-spacing:-10.095435pt;}
.ws8b{word-spacing:-10.074206pt;}
.ws6f{word-spacing:-10.042368pt;}
.ws44{word-spacing:-10.042301pt;}
.ws9d{word-spacing:-10.031699pt;}
.ws45{word-spacing:-9.989167pt;}
.wsd{word-spacing:-9.936033pt;}
.ws76{word-spacing:-9.882899pt;}
.ws5b{word-spacing:-9.829765pt;}
.ws82{word-spacing:-9.776656pt;}
.ws5a{word-spacing:-9.776631pt;}
.ws98{word-spacing:-9.734149pt;}
.ws94{word-spacing:-9.649134pt;}
.ws75{word-spacing:-9.457828pt;}
.ws7e{word-spacing:-9.351561pt;}
.ws5f{word-spacing:-9.277235pt;}
.ws92{word-spacing:-9.224062pt;}
.ws91{word-spacing:-9.181555pt;}
.ws70{word-spacing:-9.085891pt;}
.ws90{word-spacing:-9.011526pt;}
.ws31{word-spacing:-8.926490pt;}
.ws93{word-spacing:-8.798990pt;}
.ws40{word-spacing:-8.767088pt;}
.wsa2{word-spacing:-8.671469pt;}
.ws7b{word-spacing:-8.607686pt;}
.wsa6{word-spacing:-8.543947pt;}
.ws89{word-spacing:-8.458933pt;}
.ws2d{word-spacing:-8.288883pt;}
.ws32{word-spacing:-7.810678pt;}
.ws5d{word-spacing:-7.438741pt;}
.ws25{word-spacing:-7.066804pt;}
.ws46{word-spacing:-7.013670pt;}
.ws55{word-spacing:-6.742733pt;}
.ws42{word-spacing:-6.376064pt;}
.ws65{word-spacing:-6.057261pt;}
.ws64{word-spacing:-6.004127pt;}
.ws7c{word-spacing:-5.897859pt;}
.ws63{word-spacing:-5.632190pt;}
.ws41{word-spacing:-5.100851pt;}
.ws28{word-spacing:-4.888316pt;}
.wsa0{word-spacing:-4.548270pt;}
.ws7{word-spacing:-4.233708pt;}
.ws61{word-spacing:-4.144442pt;}
.wsa1{word-spacing:-2.975504pt;}
.ws27{word-spacing:-0.584473pt;}
.ws8{word-spacing:-0.063761pt;}
.ws47{word-spacing:-0.053134pt;}
.ws4{word-spacing:-0.051009pt;}
.ws57{word-spacing:-0.047821pt;}
.ws83{word-spacing:-0.042507pt;}
.ws24{word-spacing:0.000000pt;}
.ws74{word-spacing:0.053134pt;}
.ws0{word-spacing:10.302627pt;}
.ws8f{word-spacing:10.584293pt;}
.ws23{word-spacing:11.038635pt;}
.ws17{word-spacing:11.774494pt;}
.wsb{word-spacing:11.907379pt;}
.ws4a{word-spacing:13.246362pt;}
.ws3c{word-spacing:13.389734pt;}
.ws49{word-spacing:13.442868pt;}
.ws9{word-spacing:13.745567pt;}
.ws6{word-spacing:13.796869pt;}
.ws6c{word-spacing:13.868032pt;}
.ws52{word-spacing:14.680986pt;}
.ws39{word-spacing:14.718081pt;}
.ws69{word-spacing:14.776627pt;}
.ws5e{word-spacing:15.733043pt;}
.ws7f{word-spacing:21.204762pt;}
.ws2{word-spacing:22.102869pt;}
.ws3{word-spacing:22.125090pt;}
.wsa{word-spacing:22.152784pt;}
.ws1{word-spacing:22.528816pt;}
.ws18{word-spacing:53.080733pt;}
.ws5{word-spacing:83.773628pt;}
.ws22{word-spacing:1225.049344pt;}
._9{margin-left:-4.868563pt;}
._1d{margin-left:-3.953116pt;}
._2{margin-left:-2.975488pt;}
._d{margin-left:-2.061616pt;}
._0{margin-left:-1.115808pt;}
._4{width:0.892646pt;}
._e{width:1.812709pt;}
._8{width:2.948121pt;}
._7{width:4.922326pt;}
._3{width:5.839395pt;}
._14{width:6.785203pt;}
._21{width:7.972147pt;}
._12{width:10.095436pt;}
._1f{width:11.200782pt;}
._16{width:12.167647pt;}
._11{width:13.963602pt;}
._1a{width:15.401520pt;}
._a{width:16.864781pt;}
._22{width:17.959311pt;}
._f{width:18.915657pt;}
._c{width:19.818929pt;}
._19{width:20.828500pt;}
._1b{width:22.794429pt;}
._15{width:24.005900pt;}
._6{width:24.909219pt;}
._10{width:27.842171pt;}
._b{width:29.170478pt;}
._17{width:32.560447pt;}
._23{width:34.558354pt;}
._1e{width:40.328605pt;}
._1c{width:44.047979pt;}
._20{width:47.863022pt;}
._18{width:53.133867pt;}
._5{width:61.692337pt;}
._1{width:483.061250pt;}
._13{width:508.558276pt;}
.fs7{font-size:32.942933pt;}
.fs0{font-size:37.193600pt;}
.fs5{font-size:38.787733pt;}
.fsa{font-size:39.850667pt;}
.fs8{font-size:42.507200pt;}
.fs4{font-size:46.757867pt;}
.fs6{font-size:47.820800pt;}
.fs3{font-size:51.008533pt;}
.fs9{font-size:53.133867pt;}
.fs2{font-size:63.761067pt;}
.fs1{font-size:85.014400pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:76.884000pt;}
.y2e{bottom:90.166667pt;}
.y60{bottom:124.800000pt;}
.yea{bottom:129.690667pt;}
.y86{bottom:131.700000pt;}
.y2d{bottom:134.305333pt;}
.ydb{bottom:135.809333pt;}
.yba{bottom:140.053333pt;}
.y5f{bottom:140.740000pt;}
.ye9{bottom:142.309333pt;}
.y85{bottom:147.640000pt;}
.y124{bottom:148.136000pt;}
.yad{bottom:149.456000pt;}
.y2c{bottom:150.245333pt;}
.yda{bottom:151.749333pt;}
.ye8{bottom:154.929333pt;}
.yb9{bottom:155.993333pt;}
.y5e{bottom:156.681333pt;}
.y123{bottom:160.756000pt;}
.y84{bottom:163.580000pt;}
.yac{bottom:165.396000pt;}
.y2b{bottom:166.186667pt;}
.ye7{bottom:167.548000pt;}
.yd9{bottom:167.689333pt;}
.yb8{bottom:171.933333pt;}
.y5d{bottom:172.621333pt;}
.y122{bottom:173.374667pt;}
.y83{bottom:179.520000pt;}
.ye6{bottom:180.168000pt;}
.yab{bottom:181.336000pt;}
.y2a{bottom:182.126667pt;}
.yd8{bottom:183.629333pt;}
.y121{bottom:185.994667pt;}
.yb7{bottom:187.874667pt;}
.y5c{bottom:188.561333pt;}
.ye5{bottom:192.786667pt;}
.y82{bottom:195.460000pt;}
.yaa{bottom:197.276000pt;}
.y29{bottom:198.066667pt;}
.y120{bottom:198.613333pt;}
.yd7{bottom:199.569333pt;}
.yb6{bottom:203.814667pt;}
.y5b{bottom:204.501333pt;}
.ye4{bottom:205.406667pt;}
.y11f{bottom:211.233333pt;}
.y81{bottom:211.401333pt;}
.ya9{bottom:213.216000pt;}
.y28{bottom:214.006667pt;}
.yd6{bottom:215.510667pt;}
.ye3{bottom:218.025333pt;}
.yb5{bottom:219.754667pt;}
.y5a{bottom:220.441333pt;}
.y11e{bottom:223.852000pt;}
.ya8{bottom:229.157333pt;}
.y27{bottom:229.946667pt;}
.ye2{bottom:230.645333pt;}
.yd5{bottom:231.450667pt;}
.yb4{bottom:235.694667pt;}
.y59{bottom:236.381333pt;}
.y11d{bottom:236.472000pt;}
.y80{bottom:244.393333pt;}
.ya7{bottom:245.097333pt;}
.y26{bottom:245.886667pt;}
.yd4{bottom:247.390667pt;}
.ye1{bottom:249.090667pt;}
.yb3{bottom:251.634667pt;}
.y58{bottom:252.322667pt;}
.ya6{bottom:261.037333pt;}
.y11c{bottom:261.710667pt;}
.y25{bottom:261.828000pt;}
.yd3{bottom:263.330667pt;}
.y57{bottom:268.262667pt;}
.ye0{bottom:273.001333pt;}
.y11b{bottom:274.329333pt;}
.ya5{bottom:276.977333pt;}
.y24{bottom:277.768000pt;}
.yd2{bottom:279.270667pt;}
.y56{bottom:284.202667pt;}
.ydf{bottom:285.620000pt;}
.y11a{bottom:286.949333pt;}
.ya4{bottom:292.917333pt;}
.y23{bottom:293.708000pt;}
.yd1{bottom:295.210667pt;}
.yb2{bottom:295.402667pt;}
.y119{bottom:299.568000pt;}
.y95{bottom:300.142667pt;}
.y55{bottom:306.120000pt;}
.yde{bottom:306.210667pt;}
.ya3{bottom:308.857333pt;}
.y22{bottom:309.648000pt;}
.yb1{bottom:310.014667pt;}
.yd0{bottom:311.152000pt;}
.y118{bottom:312.188000pt;}
.y94{bottom:316.082667pt;}
.ydd{bottom:318.829333pt;}
.ya2{bottom:324.798667pt;}
.y117{bottom:324.806667pt;}
.y21{bottom:325.588000pt;}
.ycf{bottom:327.092000pt;}
.y54{bottom:329.832000pt;}
.y93{bottom:332.022667pt;}
.y116{bottom:337.426667pt;}
.ydc{bottom:339.418667pt;}
.ya1{bottom:340.738667pt;}
.y20{bottom:341.528000pt;}
.yce{bottom:343.032000pt;}
.y115{bottom:350.045333pt;}
.ya0{bottom:356.678667pt;}
.y1f{bottom:357.469333pt;}
.ycd{bottom:358.972000pt;}
.y53{bottom:360.008000pt;}
.y114{bottom:362.665333pt;}
.y92{bottom:364.078667pt;}
.y9f{bottom:372.618667pt;}
.ycc{bottom:374.912000pt;}
.y113{bottom:375.284000pt;}
.y52{bottom:375.948000pt;}
.y91{bottom:378.690667pt;}
.y1e{bottom:381.180000pt;}
.y112{bottom:387.904000pt;}
.y9e{bottom:388.558667pt;}
.ycb{bottom:390.852000pt;}
.y51{bottom:391.889333pt;}
.y90{bottom:393.301333pt;}
.y111{bottom:400.522667pt;}
.y9d{bottom:404.498667pt;}
.yca{bottom:406.793333pt;}
.y50{bottom:407.829333pt;}
.y8f{bottom:407.913333pt;}
.y1d{bottom:413.060000pt;}
.y110{bottom:413.142667pt;}
.y7f{bottom:414.305333pt;}
.y9c{bottom:420.440000pt;}
.yc9{bottom:422.733333pt;}
.y4f{bottom:423.769333pt;}
.y10f{bottom:425.761333pt;}
.y7e{bottom:430.245333pt;}
.y9b{bottom:436.380000pt;}
.y10e{bottom:438.381333pt;}
.yc8{bottom:438.673333pt;}
.y4e{bottom:439.709333pt;}
.y1c{bottom:444.941333pt;}
.y7d{bottom:446.185333pt;}
.y10d{bottom:451.000000pt;}
.y9a{bottom:452.320000pt;}
.yc7{bottom:454.613333pt;}
.y4d{bottom:455.649333pt;}
.y1b{bottom:460.881333pt;}
.y7c{bottom:462.125333pt;}
.y10c{bottom:463.620000pt;}
.y99{bottom:468.260000pt;}
.yc6{bottom:470.553333pt;}
.y4c{bottom:471.589333pt;}
.y10b{bottom:476.238667pt;}
.y1a{bottom:476.821333pt;}
.y7b{bottom:478.065333pt;}
.yc5{bottom:486.493333pt;}
.y4b{bottom:487.530667pt;}
.y10a{bottom:488.858667pt;}
.y19{bottom:492.761333pt;}
.y7a{bottom:494.005333pt;}
.y98{bottom:498.742667pt;}
.y109{bottom:501.477333pt;}
.yc4{bottom:502.434667pt;}
.y4a{bottom:503.470667pt;}
.y18{bottom:508.701333pt;}
.y78{bottom:509.946667pt;}
.y97{bottom:513.354667pt;}
.y108{bottom:514.097333pt;}
.y79{bottom:514.768000pt;}
.yc3{bottom:518.374667pt;}
.y49{bottom:519.410667pt;}
.y17{bottom:524.641333pt;}
.y77{bottom:525.886667pt;}
.y107{bottom:526.716000pt;}
.y96{bottom:527.966667pt;}
.y48{bottom:535.350667pt;}
.y106{bottom:539.336000pt;}
.y16{bottom:540.582667pt;}
.y76{bottom:541.826667pt;}
.yc2{bottom:542.085333pt;}
.y47{bottom:551.290667pt;}
.y105{bottom:551.954667pt;}
.y15{bottom:556.522667pt;}
.y75{bottom:557.766667pt;}
.y104{bottom:564.574667pt;}
.y46{bottom:567.230667pt;}
.y14{bottom:572.462667pt;}
.yc1{bottom:572.969333pt;}
.y103{bottom:577.193333pt;}
.y74{bottom:579.684000pt;}
.y45{bottom:583.172000pt;}
.y13{bottom:588.402667pt;}
.yc0{bottom:588.909333pt;}
.y102{bottom:589.813333pt;}
.y44{bottom:599.112000pt;}
.y101{bottom:602.432000pt;}
.y12{bottom:604.342667pt;}
.ybf{bottom:604.849333pt;}
.y73{bottom:609.074667pt;}
.y43{bottom:615.052000pt;}
.y11{bottom:620.282667pt;}
.ybe{bottom:620.790667pt;}
.y72{bottom:625.014667pt;}
.y100{bottom:627.670667pt;}
.yb0{bottom:628.724000pt;}
.y42{bottom:630.992000pt;}
.y10{bottom:636.224000pt;}
.yff{bottom:640.290667pt;}
.y8e{bottom:640.550667pt;}
.y71{bottom:640.954667pt;}
.yaf{bottom:643.334667pt;}
.y41{bottom:646.932000pt;}
.yf{bottom:652.164000pt;}
.yfe{bottom:652.909333pt;}
.y8d{bottom:656.490667pt;}
.y70{bottom:656.894667pt;}
.yae{bottom:657.946667pt;}
.y40{bottom:662.872000pt;}
.ybd{bottom:664.564000pt;}
.yfd{bottom:665.529333pt;}
.ye{bottom:668.104000pt;}
.y8c{bottom:672.430667pt;}
.y6f{bottom:672.834667pt;}
.yfc{bottom:678.148000pt;}
.y3f{bottom:678.813333pt;}
.ybc{bottom:679.174667pt;}
.y8b{bottom:688.370667pt;}
.y6e{bottom:688.776000pt;}
.yfb{bottom:690.768000pt;}
.ybb{bottom:693.786667pt;}
.y3e{bottom:694.753333pt;}
.yfa{bottom:703.386667pt;}
.yd{bottom:703.841333pt;}
.y8a{bottom:704.310667pt;}
.y6d{bottom:704.716000pt;}
.y3d{bottom:710.693333pt;}
.yc{bottom:712.604000pt;}
.yf9{bottom:716.006667pt;}
.y89{bottom:720.252000pt;}
.y6c{bottom:720.656000pt;}
.y3c{bottom:726.633333pt;}
.yf8{bottom:728.626667pt;}
.yb{bottom:731.554667pt;}
.y88{bottom:736.192000pt;}
.y6b{bottom:736.596000pt;}
.yf7{bottom:741.245333pt;}
.y3b{bottom:742.573333pt;}
.ya{bottom:746.166667pt;}
.y6a{bottom:752.536000pt;}
.yf6{bottom:753.865333pt;}
.y9{bottom:756.438667pt;}
.y3a{bottom:758.513333pt;}
.y87{bottom:759.902667pt;}
.yf5{bottom:766.484000pt;}
.y69{bottom:768.476000pt;}
.y39{bottom:774.454667pt;}
.y8{bottom:775.390667pt;}
.yf4{bottom:779.104000pt;}
.y68{bottom:784.417333pt;}
.y38{bottom:790.394667pt;}
.yf3{bottom:791.722667pt;}
.y7{bottom:794.142667pt;}
.y67{bottom:800.357333pt;}
.yf2{bottom:804.342667pt;}
.y37{bottom:806.334667pt;}
.y6{bottom:812.740000pt;}
.y66{bottom:816.297333pt;}
.yf1{bottom:816.961333pt;}
.y36{bottom:822.274667pt;}
.yf0{bottom:829.581333pt;}
.y5{bottom:831.337333pt;}
.y65{bottom:832.237333pt;}
.y35{bottom:838.214667pt;}
.yef{bottom:842.200000pt;}
.y64{bottom:848.177333pt;}
.y34{bottom:854.154667pt;}
.yee{bottom:854.820000pt;}
.y63{bottom:864.117333pt;}
.y4{bottom:866.546667pt;}
.yed{bottom:867.438667pt;}
.y33{bottom:870.096000pt;}
.y62{bottom:880.058667pt;}
.y32{bottom:886.036000pt;}
.y3{bottom:891.120000pt;}
.yec{bottom:892.677333pt;}
.y61{bottom:895.998667pt;}
.y31{bottom:901.976000pt;}
.yeb{bottom:905.297333pt;}
.y2{bottom:915.694667pt;}
.y30{bottom:917.916000pt;}
.y1{bottom:1002.584000pt;}
.hc{height:20.509673pt;}
.h11{height:26.992004pt;}
.h13{height:27.449139pt;}
.h6{height:28.330923pt;}
.h17{height:29.244954pt;}
.ha{height:29.569195pt;}
.he{height:30.498839pt;}
.h9{height:31.540342pt;}
.hf{height:33.008361pt;}
.h4{height:33.357451pt;}
.h1{height:34.813210pt;}
.h15{height:36.173627pt;}
.h16{height:36.556192pt;}
.hb{height:39.372195pt;}
.h12{height:40.695501pt;}
.h5{height:41.125888pt;}
.h10{height:44.760269pt;}
.h8{height:45.216921pt;}
.hd{height:45.695125pt;}
.h7{height:49.733299pt;}
.h14{height:50.363028pt;}
.h3{height:66.912030pt;}
.h2{height:79.573478pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:155.234667pt;}
.x3{left:156.398667pt;}
.x4b{left:167.126667pt;}
.x5{left:169.280000pt;}
.x5d{left:171.190667pt;}
.x23{left:172.670667pt;}
.x57{left:174.530667pt;}
.x3e{left:176.533333pt;}
.x10{left:181.138667pt;}
.x1{left:184.537333pt;}
.x11{left:189.586667pt;}
.x2e{left:191.865333pt;}
.x3f{left:198.000000pt;}
.x24{left:202.038667pt;}
.x40{left:203.313333pt;}
.x25{left:210.780000pt;}
.x1a{left:216.164000pt;}
.x4{left:219.800000pt;}
.x1b{left:222.805333pt;}
.x22{left:225.481333pt;}
.x41{left:226.477333pt;}
.x4a{left:231.445333pt;}
.x2f{left:232.373333pt;}
.x12{left:233.654667pt;}
.x42{left:234.925333pt;}
.x13{left:242.102667pt;}
.x43{left:247.942667pt;}
.x38{left:249.458667pt;}
.x44{left:253.257333pt;}
.x39{left:257.906667pt;}
.x3c{left:259.510667pt;}
.x3d{left:264.824000pt;}
.x5a{left:269.841333pt;}
.x3a{left:270.924000pt;}
.x3b{left:279.193333pt;}
.x53{left:287.596000pt;}
.x54{left:314.866667pt;}
.x48{left:318.150667pt;}
.x55{left:320.181333pt;}
.x26{left:323.718667pt;}
.x49{left:326.797333pt;}
.x27{left:332.358667pt;}
.x34{left:345.345333pt;}
.xc{left:351.253333pt;}
.xd{left:359.701333pt;}
.x8{left:380.240000pt;}
.x50{left:387.922667pt;}
.x14{left:394.729333pt;}
.x9{left:396.592000pt;}
.x15{left:403.177333pt;}
.x51{left:409.681333pt;}
.x52{left:414.994667pt;}
.x2c{left:455.456000pt;}
.x6{left:458.908000pt;}
.x2d{left:462.098667pt;}
.x7{left:467.356000pt;}
.x36{left:475.353333pt;}
.x1c{left:490.746667pt;}
.x16{left:496.550667pt;}
.x1d{left:501.409333pt;}
.x17{left:503.193333pt;}
.x1e{left:524.241333pt;}
.x1f{left:530.882667pt;}
.x18{left:531.888000pt;}
.x19{left:538.529333pt;}
.x20{left:541.010667pt;}
.xa{left:543.562667pt;}
.x21{left:549.828000pt;}
.xb{left:559.913333pt;}
.x5b{left:577.446667pt;}
.x5e{left:580.582667pt;}
.x30{left:585.801333pt;}
.x5c{left:588.073333pt;}
.x31{left:591.778667pt;}
.x45{left:593.437333pt;}
.x32{left:596.694667pt;}
.x46{left:601.886667pt;}
.x35{left:603.248000pt;}
.x33{left:606.292000pt;}
.x28{left:610.102667pt;}
.x37{left:614.906667pt;}
.x29{left:618.949333pt;}
.x47{left:620.217333pt;}
.x4c{left:627.096000pt;}
.x2a{left:632.060000pt;}
.x4d{left:635.836000pt;}
.x2b{left:637.373333pt;}
.xe{left:639.056000pt;}
.x56{left:640.434667pt;}
.x58{left:645.649333pt;}
.xf{left:647.504000pt;}
.x4e{left:649.213333pt;}
.x59{left:650.962667pt;}
.x5f{left:653.348000pt;}
.x4f{left:654.526667pt;}
.x60{left:658.661333pt;}
}




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