
    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_19e3c304a57bc1069cc77516.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.009000;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_a39cc8d747ab37b212558e85.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.986000;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_efabac1b39df9e5a838bb4d5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.761000;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_d487b913328e08f1794ac3aa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.736000;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_3aec0ddedfc601a1235fd0e5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.660000;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_52521e14869355c48b53979a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.885000;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_2afd4bfc79b3ac33c050967c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.011000;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_f1a2ffea4d1308c4123e4aa3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.933000;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_198bed21a34a9a030d2de423.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.388000;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_5ed7c934b1200eea663f06f2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000488;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_1502db2c494e46979bc71ca3.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_3eb7855be7d5e5f8433b17d6.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.206055;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_d0d4a85f5c39968daef419e8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.360019;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_b8bebe2653deded94d08de42.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;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;}
.m1{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);}
.m19{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);}
.m3{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);}
.m6{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);}
.m20{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);}
.m10{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);}
.m22{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);}
.m5{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);}
.m25{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);}
.m2{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);}
.m1f{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);}
.m13{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);}
.m11{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);}
.m15{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);}
.m21{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);}
.m12{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);}
.m1b{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,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);}
.m9{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);}
.ma{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);}
.m8{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);}
.mc{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);}
.mf{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);}
.m24{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);}
.m16{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);}
.m17{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);}
.m14{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);}
.m23{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);}
.m4{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);}
.m18{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);}
.m1e{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);}
.m1a{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);}
.md{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);}
.m7{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);}
.me{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);}
.v4{vertical-align:-17.358000px;}
.v5{vertical-align:-10.488000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.192000px;}
.v2{vertical-align:21.696000px;}
.v1{vertical-align:39.054000px;}
.ls29{letter-spacing:-0.781560px;}
.ls28{letter-spacing:-0.763524px;}
.ls27{letter-spacing:-0.709416px;}
.ls2a{letter-spacing:-0.685368px;}
.ls25{letter-spacing:-0.655308px;}
.ls26{letter-spacing:-0.631260px;}
.ls31{letter-spacing:-0.174348px;}
.ls34{letter-spacing:-0.168336px;}
.ls2f{letter-spacing:-0.096192px;}
.ls24{letter-spacing:-0.086184px;}
.ls2c{letter-spacing:-0.084168px;}
.ls2b{letter-spacing:-0.078156px;}
.ls35{letter-spacing:-0.072144px;}
.ls30{letter-spacing:-0.066132px;}
.ls33{letter-spacing:-0.060120px;}
.ls2e{letter-spacing:-0.030060px;}
.ls2d{letter-spacing:-0.016200px;}
.ls37{letter-spacing:-0.010800px;}
.ls32{letter-spacing:-0.006012px;}
.ls36{letter-spacing:-0.005400px;}
.lse{letter-spacing:0.000000px;}
.ls39{letter-spacing:0.000863px;}
.ls8{letter-spacing:0.001952px;}
.lsa{letter-spacing:0.002018px;}
.lsb{letter-spacing:0.002197px;}
.ls3b{letter-spacing:0.002311px;}
.ls2{letter-spacing:0.004200px;}
.ls1b{letter-spacing:0.005400px;}
.ls3a{letter-spacing:0.005404px;}
.ls17{letter-spacing:0.006012px;}
.ls11{letter-spacing:0.009576px;}
.ls16{letter-spacing:0.010800px;}
.ls21{letter-spacing:0.027000px;}
.ls18{letter-spacing:0.030060px;}
.ls15{letter-spacing:0.032400px;}
.ls19{letter-spacing:0.036072px;}
.ls1f{letter-spacing:0.037800px;}
.ls1d{letter-spacing:0.048600px;}
.ls1e{letter-spacing:0.059400px;}
.ls1c{letter-spacing:0.070200px;}
.ls20{letter-spacing:0.086400px;}
.ls13{letter-spacing:0.172368px;}
.ls12{letter-spacing:0.191520px;}
.ls1a{letter-spacing:0.192384px;}
.lsf{letter-spacing:1.275394px;}
.ls4{letter-spacing:1.861130px;}
.ls1{letter-spacing:2.989200px;}
.ls3{letter-spacing:2.998354px;}
.ls5{letter-spacing:3.362100px;}
.ls6{letter-spacing:10.461300px;}
.ls9{letter-spacing:11.953933px;}
.lsd{letter-spacing:11.954850px;}
.ls38{letter-spacing:13.448400px;}
.ls22{letter-spacing:14.645022px;}
.ls10{letter-spacing:14.824349px;}
.ls23{letter-spacing:16.440600px;}
.ls0{letter-spacing:57.415200px;}
.ls7{letter-spacing:62.761200px;}
.lsc{letter-spacing:64.321654px;}
.ls14{letter-spacing:83.765196px;}
.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;}
}
.ws8c{word-spacing:-13.449600px;}
.ws41{word-spacing:-12.161520px;}
.ws1a{word-spacing:-11.955150px;}
.wse{word-spacing:-10.460700px;}
.ws55{word-spacing:-2.873736px;}
.ws56{word-spacing:-2.795580px;}
.ws9{word-spacing:-1.908367px;}
.ws85{word-spacing:-1.793268px;}
.ws45{word-spacing:-1.733492px;}
.ws71{word-spacing:-1.701396px;}
.ws3b{word-spacing:-1.673717px;}
.ws72{word-spacing:-1.647288px;}
.ws22{word-spacing:-1.560154px;}
.ws73{word-spacing:-1.539072px;}
.ws8{word-spacing:-1.322630px;}
.ws21{word-spacing:-1.183565px;}
.ws46{word-spacing:-0.777083px;}
.ws1b{word-spacing:-0.669488px;}
.ws5f{word-spacing:-0.655308px;}
.ws6e{word-spacing:-0.529056px;}
.ws3c{word-spacing:-0.478205px;}
.ws20{word-spacing:-0.376589px;}
.ws4a{word-spacing:-0.358654px;}
.ws53{word-spacing:-0.330660px;}
.ws39{word-spacing:-0.298878px;}
.ws51{word-spacing:-0.277704px;}
.ws33{word-spacing:-0.239102px;}
.ws23{word-spacing:-0.215194px;}
.ws6f{word-spacing:-0.198396px;}
.ws2a{word-spacing:-0.179327px;}
.ws8b{word-spacing:-0.161395px;}
.ws31{word-spacing:-0.119551px;}
.ws50{word-spacing:-0.095760px;}
.ws70{word-spacing:-0.090180px;}
.ws42{word-spacing:-0.060120px;}
.ws4{word-spacing:-0.059776px;}
.ws91{word-spacing:-0.053798px;}
.ws1d{word-spacing:-0.047821px;}
.ws3{word-spacing:-0.045430px;}
.wsd{word-spacing:-0.041843px;}
.ws95{word-spacing:-0.008333px;}
.wsb{word-spacing:0.000000px;}
.ws54{word-spacing:0.036072px;}
.ws2c{word-spacing:0.059776px;}
.ws5a{word-spacing:0.060120px;}
.ws1c{word-spacing:0.095641px;}
.ws77{word-spacing:0.096192px;}
.ws7c{word-spacing:0.097200px;}
.ws24{word-spacing:0.107597px;}
.ws64{word-spacing:0.113400px;}
.ws3a{word-spacing:0.119551px;}
.ws7a{word-spacing:0.124200px;}
.ws1e{word-spacing:0.143462px;}
.ws5b{word-spacing:0.151200px;}
.ws59{word-spacing:0.156312px;}
.ws94{word-spacing:0.161395px;}
.ws78{word-spacing:0.168336px;}
.ws5c{word-spacing:0.172800px;}
.ws63{word-spacing:0.178200px;}
.ws36{word-spacing:0.179327px;}
.ws65{word-spacing:0.183600px;}
.ws79{word-spacing:0.189000px;}
.ws7d{word-spacing:0.194400px;}
.ws66{word-spacing:0.199800px;}
.ws10{word-spacing:0.209214px;}
.ws30{word-spacing:0.239102px;}
.ws25{word-spacing:0.268992px;}
.ws12{word-spacing:0.292900px;}
.ws2d{word-spacing:0.298878px;}
.ws3d{word-spacing:0.418429px;}
.ws84{word-spacing:0.537980px;}
.ws8f{word-spacing:0.591782px;}
.ws2e{word-spacing:0.896634px;}
.ws62{word-spacing:1.142280px;}
.ws74{word-spacing:1.172340px;}
.ws61{word-spacing:1.178352px;}
.ws32{word-spacing:1.195512px;}
.ws60{word-spacing:1.262520px;}
.ws5e{word-spacing:1.539072px;}
.ws44{word-spacing:1.673717px;}
.ws6b{word-spacing:1.863720px;}
.ws6c{word-spacing:1.893780px;}
.ws11{word-spacing:2.008454px;}
.ws2f{word-spacing:2.211697px;}
.ws76{word-spacing:2.248488px;}
.ws75{word-spacing:2.338668px;}
.ws28{word-spacing:2.450800px;}
.ws58{word-spacing:2.657304px;}
.ws4f{word-spacing:2.689902px;}
.ws35{word-spacing:2.809453px;}
.ws1f{word-spacing:2.869236px;}
.ws82{word-spacing:2.988780px;}
.ws57{word-spacing:3.018024px;}
.ws81{word-spacing:3.168107px;}
.ws90{word-spacing:3.225408px;}
.ws3f{word-spacing:3.347434px;}
.ws40{word-spacing:3.407209px;}
.ws83{word-spacing:3.586536px;}
.ws6d{word-spacing:3.727440px;}
.ws49{word-spacing:3.765863px;}
.ws5d{word-spacing:3.775536px;}
.ws3e{word-spacing:4.004965px;}
.ws8e{word-spacing:4.250074px;}
.ws86{word-spacing:4.303843px;}
.ws87{word-spacing:4.483170px;}
.ws29{word-spacing:4.542946px;}
.ws89{word-spacing:5.021150px;}
.ws88{word-spacing:5.140702px;}
.ws38{word-spacing:5.320028px;}
.ws8d{word-spacing:5.648832px;}
.ws80{word-spacing:5.678682px;}
.ws18{word-spacing:6.067206px;}
.ws19{word-spacing:6.150892px;}
.ws26{word-spacing:6.240614px;}
.ws37{word-spacing:7.232848px;}
.ws2b{word-spacing:7.352399px;}
.ws16{word-spacing:8.661460px;}
.wsf{word-spacing:10.628071px;}
.ws52{word-spacing:11.630052px;}
.wsc{word-spacing:12.929425px;}
.ws8a{word-spacing:13.288205px;}
.ws96{word-spacing:13.386499px;}
.ws43{word-spacing:13.395802px;}
.ws93{word-spacing:13.503398px;}
.ws34{word-spacing:14.776565px;}
.ws5{word-spacing:14.880841px;}
.ws2{word-spacing:14.881775px;}
.ws6{word-spacing:14.881850px;}
.ws0{word-spacing:14.884124px;}
.ws14{word-spacing:16.151321px;}
.ws92{word-spacing:16.622314px;}
.ws15{word-spacing:17.699504px;}
.ws27{word-spacing:18.470660px;}
.wsa{word-spacing:25.902398px;}
.ws13{word-spacing:26.561110px;}
.ws1{word-spacing:26.791603px;}
.ws17{word-spacing:27.448877px;}
.ws7{word-spacing:66.294156px;}
.ws47{word-spacing:500.755507px;}
.ws48{word-spacing:514.258906px;}
.ws69{word-spacing:746.415000px;}
.ws6a{word-spacing:778.464000px;}
.ws4b{word-spacing:806.599411px;}
.ws68{word-spacing:810.162000px;}
.ws7b{word-spacing:812.284200px;}
.ws67{word-spacing:819.838800px;}
.ws4d{word-spacing:827.257997px;}
.ws4e{word-spacing:839.147443px;}
.ws7f{word-spacing:840.769200px;}
.ws4c{word-spacing:904.673894px;}
.ws7e{word-spacing:906.292800px;}
._24{margin-left:-830.147400px;}
._1c{margin-left:-390.954600px;}
._1e{margin-left:-380.678400px;}
._20{margin-left:-335.658600px;}
._1f{margin-left:-303.604200px;}
._17{margin-left:-12.156732px;}
._9{margin-left:-6.892173px;}
._7{margin-left:-5.397721px;}
._36{margin-left:-4.322956px;}
._4{margin-left:-3.311464px;}
._5{margin-left:-2.245824px;}
._0{margin-left:-1.075961px;}
._6{width:1.091170px;}
._3{width:3.000703px;}
._a{width:11.094379px;}
._8{width:12.971268px;}
._f{width:14.327745px;}
._c{width:16.569907px;}
._25{width:17.598151px;}
._e{width:18.709763px;}
._12{width:19.999178px;}
._33{width:21.877870px;}
._d{width:22.918118px;}
._13{width:24.149342px;}
._2{width:27.906221px;}
._15{width:29.110717px;}
._2f{width:30.639234px;}
._34{width:31.681068px;}
._1{width:33.355008px;}
._b{width:56.810873px;}
._14{width:73.523988px;}
._35{width:88.767360px;}
._19{width:197.002800px;}
._27{width:282.602995px;}
._2b{width:327.241959px;}
._10{width:338.713310px;}
._1d{width:387.887400px;}
._1b{width:429.300000px;}
._29{width:514.258906px;}
._26{width:570.747226px;}
._28{width:589.347764px;}
._18{width:627.555600px;}
._1a{width:644.716800px;}
._31{width:659.554676px;}
._21{width:663.546600px;}
._30{width:675.385114px;}
._2d{width:682.056115px;}
._22{width:717.778800px;}
._2e{width:721.597939px;}
._32{width:731.967322px;}
._2c{width:753.016205px;}
._2a{width:762.915110px;}
._23{width:823.300200px;}
._16{width:2358.884808px;}
._11{width:2404.734459px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(12,11,11);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:29.887800px;}
.fsf{font-size:33.120000px;}
.fs8{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fs4{font-size:47.236800px;}
.fs9{font-size:47.820600px;}
.fsc{font-size:47.880000px;}
.fsa{font-size:53.798400px;}
.fse{font-size:54.000000px;}
.fs0{font-size:59.775600px;}
.fsd{font-size:60.120000px;}
.fsb{font-size:62.286600px;}
.fs2{font-size:81.772800px;}
.fs1{font-size:107.596800px;}
.y87{bottom:-749.111550px;}
.yad{bottom:-692.051550px;}
.yac{bottom:-653.441550px;}
.yab{bottom:-635.172000px;}
.yaa{bottom:-616.991550px;}
.ya9{bottom:-598.811100px;}
.ya8{bottom:-580.541550px;}
.ya7{bottom:-562.361550px;}
.ya6{bottom:-543.372000px;}
.ya5{bottom:-514.931550px;}
.ya4{bottom:-479.197662px;}
.ya3{bottom:-460.028400px;}
.ya2{bottom:-440.768958px;}
.ya1{bottom:-421.509516px;}
.ya0{bottom:-402.340254px;}
.y9f{bottom:-383.080812px;}
.y9e{bottom:-363.911550px;}
.y9d{bottom:-325.301550px;}
.y9c{bottom:-307.121100px;}
.y9b{bottom:-288.851550px;}
.y9a{bottom:-270.671100px;}
.y99{bottom:-252.401550px;}
.y98{bottom:-234.221550px;}
.y97{bottom:-215.232000px;}
.y96{bottom:-186.791550px;}
.y95{bottom:-151.059903px;}
.y94{bottom:-131.890641px;}
.y93{bottom:-112.631199px;}
.y92{bottom:-93.460434px;}
.y91{bottom:-74.200992px;}
.y90{bottom:-54.941550px;}
.y8f{bottom:-18.221550px;}
.y0{bottom:0.000000px;}
.y8{bottom:3.425340px;}
.y8e{bottom:4.280727px;}
.y7{bottom:14.151273px;}
.y4c{bottom:31.890000px;}
.ycf{bottom:88.993500px;}
.y81{bottom:95.020500px;}
.y1f{bottom:102.823500px;}
.yce{bottom:107.823000px;}
.y4b{bottom:110.683500px;}
.y80{bottom:113.850000px;}
.y1e{bottom:120.711000px;}
.ycd{bottom:126.652500px;}
.y4a{bottom:129.513000px;}
.y7f{bottom:132.679500px;}
.y1d{bottom:138.600000px;}
.ycc{bottom:145.482000px;}
.y49{bottom:148.342500px;}
.y7e{bottom:151.509000px;}
.y1c{bottom:156.487500px;}
.y48{bottom:167.172000px;}
.ycb{bottom:168.795000px;}
.y7d{bottom:170.338500px;}
.y1b{bottom:174.375000px;}
.y47{bottom:186.001500px;}
.y7c{bottom:189.168000px;}
.y1a{bottom:192.264000px;}
.y46{bottom:204.831000px;}
.yfd{bottom:206.446500px;}
.y7b{bottom:207.997500px;}
.yca{bottom:210.066000px;}
.y19{bottom:210.151500px;}
.y45{bottom:223.660500px;}
.yfc{bottom:223.707000px;}
.yc9{bottom:226.504500px;}
.y18{bottom:228.039000px;}
.y7a{bottom:231.310500px;}
.y8d{bottom:234.140529px;}
.yfb{bottom:240.967500px;}
.y44{bottom:242.490000px;}
.yc8{bottom:242.943000px;}
.y79{bottom:250.140000px;}
.y8c{bottom:253.399971px;}
.yfa{bottom:258.228000px;}
.yc7{bottom:259.381500px;}
.y43{bottom:261.319500px;}
.y78{bottom:268.969500px;}
.y8b{bottom:272.569233px;}
.yf9{bottom:275.488500px;}
.yc6{bottom:275.818500px;}
.y42{bottom:280.149000px;}
.y8a{bottom:291.828675px;}
.yc5{bottom:292.257000px;}
.y77{bottom:292.282500px;}
.yf8{bottom:292.749000px;}
.y41{bottom:298.978500px;}
.y17{bottom:307.299000px;}
.yf7{bottom:310.008000px;}
.y89{bottom:311.088117px;}
.yc4{bottom:315.898500px;}
.y40{bottom:317.808000px;}
.y16{bottom:325.186500px;}
.y76{bottom:325.906500px;}
.yf6{bottom:327.268500px;}
.y88{bottom:330.258882px;}
.y3f{bottom:336.637500px;}
.y15{bottom:343.074000px;}
.yf5{bottom:344.529000px;}
.y75{bottom:344.736000px;}
.yc3{bottom:347.517000px;}
.y3e{bottom:355.467000px;}
.y14{bottom:360.963000px;}
.yf4{bottom:361.789500px;}
.y74{bottom:363.564000px;}
.y3d{bottom:374.296500px;}
.yf3{bottom:379.050000px;}
.y73{bottom:382.393500px;}
.yc2{bottom:383.569500px;}
.y86{bottom:384.978585px;}
.y3c{bottom:393.126000px;}
.y85{bottom:394.608450px;}
.yf2{bottom:396.310500px;}
.y13{bottom:399.024000px;}
.y72{bottom:401.223000px;}
.yc1{bottom:402.399000px;}
.y3b{bottom:411.955500px;}
.yf1{bottom:413.571000px;}
.y71{bottom:420.052500px;}
.yc0{bottom:421.228500px;}
.y3a{bottom:430.785000px;}
.yf0{bottom:430.831500px;}
.y12{bottom:434.845500px;}
.y70{bottom:438.882000px;}
.ybf{bottom:440.058000px;}
.yef{bottom:448.090500px;}
.y39{bottom:454.098000px;}
.y6f{bottom:457.711500px;}
.ybe{bottom:458.887500px;}
.yee{bottom:465.351000px;}
.y11{bottom:470.665500px;}
.y6e{bottom:476.541000px;}
.ybd{bottom:477.717000px;}
.yed{bottom:482.611500px;}
.y10{bottom:488.554500px;}
.y6d{bottom:495.370500px;}
.ybc{bottom:496.546500px;}
.yec{bottom:504.355500px;}
.yf{bottom:506.442000px;}
.y6c{bottom:514.200000px;}
.ye{bottom:524.329500px;}
.y38{bottom:529.248000px;}
.y6b{bottom:533.029500px;}
.yeb{bottom:537.979500px;}
.ybb{bottom:540.955500px;}
.yd{bottom:542.218500px;}
.y37{bottom:548.704500px;}
.y6a{bottom:551.859000px;}
.yea{bottom:555.553500px;}
.yba{bottom:557.394000px;}
.yc{bottom:560.106000px;}
.y69{bottom:570.688500px;}
.ye9{bottom:573.127500px;}
.yb9{bottom:573.832500px;}
.yb{bottom:577.993500px;}
.y36{bottom:586.095000px;}
.y68{bottom:589.518000px;}
.yb8{bottom:590.269500px;}
.ya{bottom:595.882500px;}
.ye8{bottom:599.668500px;}
.y35{bottom:605.551500px;}
.yb7{bottom:606.708000px;}
.y67{bottom:608.347500px;}
.y9{bottom:613.770000px;}
.ye7{bottom:617.242500px;}
.yb6{bottom:623.146500px;}
.y34{bottom:625.008000px;}
.y66{bottom:627.177000px;}
.y6{bottom:636.141055px;}
.y33{bottom:644.466000px;}
.y65{bottom:646.006500px;}
.yb5{bottom:646.788000px;}
.ye6{bottom:652.749000px;}
.y32{bottom:663.922500px;}
.y64{bottom:664.836000px;}
.ye5{bottom:671.578500px;}
.yb4{bottom:678.406500px;}
.y31{bottom:683.379000px;}
.y63{bottom:683.665500px;}
.ye4{bottom:690.408000px;}
.y62{bottom:702.495000px;}
.y30{bottom:702.837000px;}
.ye3{bottom:709.237500px;}
.yb3{bottom:714.459000px;}
.y61{bottom:721.324500px;}
.ye2{bottom:728.067000px;}
.yb2{bottom:733.288500px;}
.y60{bottom:740.154000px;}
.y2f{bottom:741.421500px;}
.ye1{bottom:746.896500px;}
.yb1{bottom:752.118000px;}
.y2e{bottom:757.561500px;}
.y5f{bottom:763.467000px;}
.ye0{bottom:765.726000px;}
.yb0{bottom:770.947500px;}
.y2d{bottom:773.701500px;}
.y5e{bottom:782.295000px;}
.ydf{bottom:784.555500px;}
.yaf{bottom:789.777000px;}
.y2c{bottom:789.841500px;}
.y2b{bottom:794.181000px;}
.y5d{bottom:801.124500px;}
.yde{bottom:803.385000px;}
.y2a{bottom:805.980000px;}
.y5c{bottom:819.954000px;}
.y29{bottom:822.120000px;}
.ydd{bottom:822.214500px;}
.yae{bottom:822.289500px;}
.y28{bottom:826.459500px;}
.y27{bottom:838.260000px;}
.y5b{bottom:838.783500px;}
.ydc{bottom:841.044000px;}
.y84{bottom:844.719000px;}
.y26{bottom:858.738000px;}
.ydb{bottom:859.873500px;}
.y5a{bottom:862.096500px;}
.y25{bottom:870.538500px;}
.y24{bottom:874.878000px;}
.yda{bottom:878.703000px;}
.y59{bottom:880.926000px;}
.y23{bottom:891.018000px;}
.yd9{bottom:897.532500px;}
.y58{bottom:899.755500px;}
.y22{bottom:902.817000px;}
.yd8{bottom:916.362000px;}
.y57{bottom:918.585000px;}
.y21{bottom:923.296500px;}
.yd7{bottom:935.191500px;}
.y20{bottom:939.436500px;}
.y56{bottom:941.898000px;}
.yd6{bottom:954.021000px;}
.yd5{bottom:972.849000px;}
.y55{bottom:975.522000px;}
.y5{bottom:979.630500px;}
.yd4{bottom:991.678500px;}
.y54{bottom:994.351500px;}
.y4{bottom:998.460000px;}
.yd3{bottom:1010.508000px;}
.y53{bottom:1013.181000px;}
.yd2{bottom:1029.337500px;}
.y52{bottom:1032.010500px;}
.y3{bottom:1041.199500px;}
.yd1{bottom:1048.167000px;}
.y51{bottom:1050.840000px;}
.yd0{bottom:1066.996500px;}
.y2{bottom:1069.443000px;}
.y50{bottom:1069.669500px;}
.y83{bottom:1085.826000px;}
.y4f{bottom:1088.499000px;}
.y1{bottom:1097.688000px;}
.y82{bottom:1104.655500px;}
.y4e{bottom:1107.327000px;}
.y4d{bottom:1173.397500px;}
.h6{height:25.508090px;}
.he{height:26.110157px;}
.hc{height:26.302208px;}
.h15{height:27.655250px;}
.h9{height:30.461558px;}
.h1b{height:30.629531px;}
.hb{height:30.670772px;}
.h8{height:33.112997px;}
.h7{height:34.199443px;}
.hd{height:34.813397px;}
.h14{height:35.052500px;}
.ha{height:36.950318px;}
.h10{height:38.734848px;}
.h11{height:39.165235px;}
.h1d{height:39.434227px;}
.h1a{height:39.603516px;}
.h12{height:43.038432px;}
.h13{height:43.516637px;}
.hf{height:43.660208px;}
.h2{height:43.815515px;}
.h1c{height:44.091914px;}
.h17{height:44.279648px;}
.h1e{height:49.117939px;}
.h19{height:49.939453px;}
.h5{height:54.405312px;}
.h18{height:55.599258px;}
.h3{height:77.469696px;}
.h4{height:97.930416px;}
.h16{height:214.036500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:75.364879px;}
.w3{width:478.471500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x1b{left:-191.454000px;}
.x0{left:0.000000px;}
.x1d{left:4.114910px;}
.x2{left:29.274117px;}
.x1c{left:35.974805px;}
.x22{left:41.195344px;}
.x27{left:46.596000px;}
.x1{left:53.536500px;}
.x26{left:67.116189px;}
.x2d{left:80.076525px;}
.x39{left:86.272500px;}
.x2b{left:87.996418px;}
.x28{left:90.426000px;}
.x2c{left:91.776213px;}
.x20{left:105.096000px;}
.x1f{left:125.706392px;}
.x24{left:130.655451px;}
.x25{left:138.665757px;}
.x23{left:146.495237px;}
.x21{left:149.016000px;}
.x5{left:249.832500px;}
.x3{left:250.897500px;}
.x31{left:268.218000px;}
.x4{left:271.221000px;}
.x8{left:282.786000px;}
.x12{left:285.490500px;}
.x6{left:309.366000px;}
.xd{left:316.477500px;}
.x10{left:318.771000px;}
.x7{left:324.511500px;}
.x11{left:326.242500px;}
.x35{left:328.885500px;}
.x17{left:330.847500px;}
.x2f{left:333.883500px;}
.x36{left:336.517500px;}
.x18{left:338.319000px;}
.x34{left:349.147500px;}
.x2e{left:354.145500px;}
.x32{left:357.138000px;}
.x15{left:362.566500px;}
.x33{left:367.023000px;}
.x29{left:368.256000px;}
.x16{left:370.038000px;}
.x2a{left:372.396000px;}
.x37{left:373.678500px;}
.xb{left:374.919000px;}
.x30{left:377.346000px;}
.xc{left:382.392000px;}
.x13{left:392.395500px;}
.x14{left:399.867000px;}
.x38{left:429.247500px;}
.x1e{left:475.263043px;}
.x9{left:705.948000px;}
.xa{left:713.419500px;}
.x19{left:791.037000px;}
.x1a{left:798.508500px;}
.xe{left:825.327000px;}
.xf{left:832.798500px;}
@media print{
.v4{vertical-align:-15.429333pt;}
.v5{vertical-align:-9.322667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.504000pt;}
.v2{vertical-align:19.285333pt;}
.v1{vertical-align:34.714667pt;}
.ls29{letter-spacing:-0.694720pt;}
.ls28{letter-spacing:-0.678688pt;}
.ls27{letter-spacing:-0.630592pt;}
.ls2a{letter-spacing:-0.609216pt;}
.ls25{letter-spacing:-0.582496pt;}
.ls26{letter-spacing:-0.561120pt;}
.ls31{letter-spacing:-0.154976pt;}
.ls34{letter-spacing:-0.149632pt;}
.ls2f{letter-spacing:-0.085504pt;}
.ls24{letter-spacing:-0.076608pt;}
.ls2c{letter-spacing:-0.074816pt;}
.ls2b{letter-spacing:-0.069472pt;}
.ls35{letter-spacing:-0.064128pt;}
.ls30{letter-spacing:-0.058784pt;}
.ls33{letter-spacing:-0.053440pt;}
.ls2e{letter-spacing:-0.026720pt;}
.ls2d{letter-spacing:-0.014400pt;}
.ls37{letter-spacing:-0.009600pt;}
.ls32{letter-spacing:-0.005344pt;}
.ls36{letter-spacing:-0.004800pt;}
.lse{letter-spacing:0.000000pt;}
.ls39{letter-spacing:0.000767pt;}
.ls8{letter-spacing:0.001735pt;}
.lsa{letter-spacing:0.001794pt;}
.lsb{letter-spacing:0.001953pt;}
.ls3b{letter-spacing:0.002054pt;}
.ls2{letter-spacing:0.003733pt;}
.ls1b{letter-spacing:0.004800pt;}
.ls3a{letter-spacing:0.004803pt;}
.ls17{letter-spacing:0.005344pt;}
.ls11{letter-spacing:0.008512pt;}
.ls16{letter-spacing:0.009600pt;}
.ls21{letter-spacing:0.024000pt;}
.ls18{letter-spacing:0.026720pt;}
.ls15{letter-spacing:0.028800pt;}
.ls19{letter-spacing:0.032064pt;}
.ls1f{letter-spacing:0.033600pt;}
.ls1d{letter-spacing:0.043200pt;}
.ls1e{letter-spacing:0.052800pt;}
.ls1c{letter-spacing:0.062400pt;}
.ls20{letter-spacing:0.076800pt;}
.ls13{letter-spacing:0.153216pt;}
.ls12{letter-spacing:0.170240pt;}
.ls1a{letter-spacing:0.171008pt;}
.lsf{letter-spacing:1.133683pt;}
.ls4{letter-spacing:1.654338pt;}
.ls1{letter-spacing:2.657067pt;}
.ls3{letter-spacing:2.665203pt;}
.ls5{letter-spacing:2.988533pt;}
.ls6{letter-spacing:9.298933pt;}
.ls9{letter-spacing:10.625718pt;}
.lsd{letter-spacing:10.626533pt;}
.ls38{letter-spacing:11.954133pt;}
.ls22{letter-spacing:13.017797pt;}
.ls10{letter-spacing:13.177199pt;}
.ls23{letter-spacing:14.613867pt;}
.ls0{letter-spacing:51.035733pt;}
.ls7{letter-spacing:55.787733pt;}
.lsc{letter-spacing:57.174803pt;}
.ls14{letter-spacing:74.457952pt;}
.ws8c{word-spacing:-11.955200pt;}
.ws41{word-spacing:-10.810240pt;}
.ws1a{word-spacing:-10.626800pt;}
.wse{word-spacing:-9.298400pt;}
.ws55{word-spacing:-2.554432pt;}
.ws56{word-spacing:-2.484960pt;}
.ws9{word-spacing:-1.696326pt;}
.ws85{word-spacing:-1.594016pt;}
.ws45{word-spacing:-1.540882pt;}
.ws71{word-spacing:-1.512352pt;}
.ws3b{word-spacing:-1.487748pt;}
.ws72{word-spacing:-1.464256pt;}
.ws22{word-spacing:-1.386803pt;}
.ws73{word-spacing:-1.368064pt;}
.ws8{word-spacing:-1.175671pt;}
.ws21{word-spacing:-1.052058pt;}
.ws46{word-spacing:-0.690740pt;}
.ws1b{word-spacing:-0.595101pt;}
.ws5f{word-spacing:-0.582496pt;}
.ws6e{word-spacing:-0.470272pt;}
.ws3c{word-spacing:-0.425071pt;}
.ws20{word-spacing:-0.334746pt;}
.ws4a{word-spacing:-0.318803pt;}
.ws53{word-spacing:-0.293920pt;}
.ws39{word-spacing:-0.265669pt;}
.ws51{word-spacing:-0.246848pt;}
.ws33{word-spacing:-0.212535pt;}
.ws23{word-spacing:-0.191283pt;}
.ws6f{word-spacing:-0.176352pt;}
.ws2a{word-spacing:-0.159402pt;}
.ws8b{word-spacing:-0.143462pt;}
.ws31{word-spacing:-0.106268pt;}
.ws50{word-spacing:-0.085120pt;}
.ws70{word-spacing:-0.080160pt;}
.ws42{word-spacing:-0.053440pt;}
.ws4{word-spacing:-0.053134pt;}
.ws91{word-spacing:-0.047821pt;}
.ws1d{word-spacing:-0.042507pt;}
.ws3{word-spacing:-0.040382pt;}
.wsd{word-spacing:-0.037194pt;}
.ws95{word-spacing:-0.007407pt;}
.wsb{word-spacing:0.000000pt;}
.ws54{word-spacing:0.032064pt;}
.ws2c{word-spacing:0.053134pt;}
.ws5a{word-spacing:0.053440pt;}
.ws1c{word-spacing:0.085014pt;}
.ws77{word-spacing:0.085504pt;}
.ws7c{word-spacing:0.086400pt;}
.ws24{word-spacing:0.095642pt;}
.ws64{word-spacing:0.100800pt;}
.ws3a{word-spacing:0.106268pt;}
.ws7a{word-spacing:0.110400pt;}
.ws1e{word-spacing:0.127522pt;}
.ws5b{word-spacing:0.134400pt;}
.ws59{word-spacing:0.138944pt;}
.ws94{word-spacing:0.143462pt;}
.ws78{word-spacing:0.149632pt;}
.ws5c{word-spacing:0.153600pt;}
.ws63{word-spacing:0.158400pt;}
.ws36{word-spacing:0.159402pt;}
.ws65{word-spacing:0.163200pt;}
.ws79{word-spacing:0.168000pt;}
.ws7d{word-spacing:0.172800pt;}
.ws66{word-spacing:0.177600pt;}
.ws10{word-spacing:0.185968pt;}
.ws30{word-spacing:0.212535pt;}
.ws25{word-spacing:0.239104pt;}
.ws12{word-spacing:0.260355pt;}
.ws2d{word-spacing:0.265669pt;}
.ws3d{word-spacing:0.371937pt;}
.ws84{word-spacing:0.478205pt;}
.ws8f{word-spacing:0.526029pt;}
.ws2e{word-spacing:0.797008pt;}
.ws62{word-spacing:1.015360pt;}
.ws74{word-spacing:1.042080pt;}
.ws61{word-spacing:1.047424pt;}
.ws32{word-spacing:1.062677pt;}
.ws60{word-spacing:1.122240pt;}
.ws5e{word-spacing:1.368064pt;}
.ws44{word-spacing:1.487748pt;}
.ws6b{word-spacing:1.656640pt;}
.ws6c{word-spacing:1.683360pt;}
.ws11{word-spacing:1.785293pt;}
.ws2f{word-spacing:1.965953pt;}
.ws76{word-spacing:1.998656pt;}
.ws75{word-spacing:2.078816pt;}
.ws28{word-spacing:2.178489pt;}
.ws58{word-spacing:2.362048pt;}
.ws4f{word-spacing:2.391024pt;}
.ws35{word-spacing:2.497292pt;}
.ws1f{word-spacing:2.550432pt;}
.ws82{word-spacing:2.656693pt;}
.ws57{word-spacing:2.682688pt;}
.ws81{word-spacing:2.816095pt;}
.ws90{word-spacing:2.867029pt;}
.ws3f{word-spacing:2.975497pt;}
.ws40{word-spacing:3.028630pt;}
.ws83{word-spacing:3.188032pt;}
.ws6d{word-spacing:3.313280pt;}
.ws49{word-spacing:3.347434pt;}
.ws5d{word-spacing:3.356032pt;}
.ws3e{word-spacing:3.559969pt;}
.ws8e{word-spacing:3.777843pt;}
.ws86{word-spacing:3.825638pt;}
.ws87{word-spacing:3.985040pt;}
.ws29{word-spacing:4.038174pt;}
.ws89{word-spacing:4.463245pt;}
.ws88{word-spacing:4.569513pt;}
.ws38{word-spacing:4.728914pt;}
.ws8d{word-spacing:5.021184pt;}
.ws80{word-spacing:5.047717pt;}
.ws18{word-spacing:5.393072pt;}
.ws19{word-spacing:5.467459pt;}
.ws26{word-spacing:5.547213pt;}
.ws37{word-spacing:6.429198pt;}
.ws2b{word-spacing:6.535466pt;}
.ws16{word-spacing:7.699075pt;}
.wsf{word-spacing:9.447174pt;}
.ws52{word-spacing:10.337824pt;}
.wsc{word-spacing:11.492822pt;}
.ws8a{word-spacing:11.811738pt;}
.ws96{word-spacing:11.899110pt;}
.ws43{word-spacing:11.907379pt;}
.ws93{word-spacing:12.003021pt;}
.ws34{word-spacing:13.134725pt;}
.ws5{word-spacing:13.227414pt;}
.ws2{word-spacing:13.228244pt;}
.ws6{word-spacing:13.228311pt;}
.ws0{word-spacing:13.230333pt;}
.ws14{word-spacing:14.356730pt;}
.ws92{word-spacing:14.775390pt;}
.ws15{word-spacing:15.732893pt;}
.ws27{word-spacing:16.418365pt;}
.wsa{word-spacing:23.024354pt;}
.ws13{word-spacing:23.609875pt;}
.ws1{word-spacing:23.814758pt;}
.ws17{word-spacing:24.399002pt;}
.ws7{word-spacing:58.928139pt;}
.ws47{word-spacing:445.116006pt;}
.ws48{word-spacing:457.119027pt;}
.ws69{word-spacing:663.480000pt;}
.ws6a{word-spacing:691.968000pt;}
.ws4b{word-spacing:716.977254pt;}
.ws68{word-spacing:720.144000pt;}
.ws7b{word-spacing:722.030400pt;}
.ws67{word-spacing:728.745600pt;}
.ws4d{word-spacing:735.340442pt;}
.ws4e{word-spacing:745.908838pt;}
.ws7f{word-spacing:747.350400pt;}
.ws4c{word-spacing:804.154573pt;}
.ws7e{word-spacing:805.593600pt;}
._24{margin-left:-737.908800pt;}
._1c{margin-left:-347.515200pt;}
._1e{margin-left:-338.380800pt;}
._20{margin-left:-298.363200pt;}
._1f{margin-left:-269.870400pt;}
._17{margin-left:-10.805984pt;}
._9{margin-left:-6.126376pt;}
._7{margin-left:-4.797974pt;}
._36{margin-left:-3.842627pt;}
._4{margin-left:-2.943523pt;}
._5{margin-left:-1.996288pt;}
._0{margin-left:-0.956410pt;}
._6{width:0.969929pt;}
._3{width:2.667292pt;}
._a{width:9.861670pt;}
._8{width:11.530016pt;}
._f{width:12.735773pt;}
._c{width:14.728806pt;}
._25{width:15.642801pt;}
._e{width:16.630900pt;}
._12{width:17.777047pt;}
._33{width:19.446995pt;}
._d{width:20.371661pt;}
._13{width:21.466082pt;}
._2{width:24.805530pt;}
._15{width:25.876193pt;}
._2f{width:27.234875pt;}
._34{width:28.160949pt;}
._1{width:29.648896pt;}
._b{width:50.498554pt;}
._14{width:65.354656pt;}
._35{width:78.904320pt;}
._19{width:175.113600pt;}
._27{width:251.202662pt;}
._2b{width:290.881741pt;}
._10{width:301.078498pt;}
._1d{width:344.788800pt;}
._1b{width:381.600000pt;}
._29{width:457.119027pt;}
._26{width:507.330867pt;}
._28{width:523.864679pt;}
._18{width:557.827200pt;}
._1a{width:573.081600pt;}
._31{width:586.270823pt;}
._21{width:589.819200pt;}
._30{width:600.342323pt;}
._2d{width:606.272102pt;}
._22{width:638.025600pt;}
._2e{width:641.420390pt;}
._32{width:650.637620pt;}
._2c{width:669.347738pt;}
._2a{width:678.146765pt;}
._23{width:731.822400pt;}
._16{width:2096.786496pt;}
._11{width:2137.541741pt;}
.fs7{font-size:26.566933pt;}
.fsf{font-size:29.440000pt;}
.fs8{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fs4{font-size:41.988267pt;}
.fs9{font-size:42.507200pt;}
.fsc{font-size:42.560000pt;}
.fsa{font-size:47.820800pt;}
.fse{font-size:48.000000pt;}
.fs0{font-size:53.133867pt;}
.fsd{font-size:53.440000pt;}
.fsb{font-size:55.365867pt;}
.fs2{font-size:72.686933pt;}
.fs1{font-size:95.641600pt;}
.y87{bottom:-665.876933pt;}
.yad{bottom:-615.156933pt;}
.yac{bottom:-580.836933pt;}
.yab{bottom:-564.597333pt;}
.yaa{bottom:-548.436933pt;}
.ya9{bottom:-532.276533pt;}
.ya8{bottom:-516.036933pt;}
.ya7{bottom:-499.876933pt;}
.ya6{bottom:-482.997333pt;}
.ya5{bottom:-457.716933pt;}
.ya4{bottom:-425.953477pt;}
.ya3{bottom:-408.914133pt;}
.ya2{bottom:-391.794629pt;}
.ya1{bottom:-374.675125pt;}
.ya0{bottom:-357.635781pt;}
.y9f{bottom:-340.516277pt;}
.y9e{bottom:-323.476933pt;}
.y9d{bottom:-289.156933pt;}
.y9c{bottom:-272.996533pt;}
.y9b{bottom:-256.756933pt;}
.y9a{bottom:-240.596533pt;}
.y99{bottom:-224.356933pt;}
.y98{bottom:-208.196933pt;}
.y97{bottom:-191.317333pt;}
.y96{bottom:-166.036933pt;}
.y95{bottom:-134.275469pt;}
.y94{bottom:-117.236125pt;}
.y93{bottom:-100.116621pt;}
.y92{bottom:-83.075941pt;}
.y91{bottom:-65.956437pt;}
.y90{bottom:-48.836933pt;}
.y8f{bottom:-16.196933pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:3.044747pt;}
.y8e{bottom:3.805091pt;}
.y7{bottom:12.578910pt;}
.y4c{bottom:28.346667pt;}
.ycf{bottom:79.105333pt;}
.y81{bottom:84.462667pt;}
.y1f{bottom:91.398667pt;}
.yce{bottom:95.842667pt;}
.y4b{bottom:98.385333pt;}
.y80{bottom:101.200000pt;}
.y1e{bottom:107.298667pt;}
.ycd{bottom:112.580000pt;}
.y4a{bottom:115.122667pt;}
.y7f{bottom:117.937333pt;}
.y1d{bottom:123.200000pt;}
.ycc{bottom:129.317333pt;}
.y49{bottom:131.860000pt;}
.y7e{bottom:134.674667pt;}
.y1c{bottom:139.100000pt;}
.y48{bottom:148.597333pt;}
.ycb{bottom:150.040000pt;}
.y7d{bottom:151.412000pt;}
.y1b{bottom:155.000000pt;}
.y47{bottom:165.334667pt;}
.y7c{bottom:168.149333pt;}
.y1a{bottom:170.901333pt;}
.y46{bottom:182.072000pt;}
.yfd{bottom:183.508000pt;}
.y7b{bottom:184.886667pt;}
.yca{bottom:186.725333pt;}
.y19{bottom:186.801333pt;}
.y45{bottom:198.809333pt;}
.yfc{bottom:198.850667pt;}
.yc9{bottom:201.337333pt;}
.y18{bottom:202.701333pt;}
.y7a{bottom:205.609333pt;}
.y8d{bottom:208.124915pt;}
.yfb{bottom:214.193333pt;}
.y44{bottom:215.546667pt;}
.yc8{bottom:215.949333pt;}
.y79{bottom:222.346667pt;}
.y8c{bottom:225.244419pt;}
.yfa{bottom:229.536000pt;}
.yc7{bottom:230.561333pt;}
.y43{bottom:232.284000pt;}
.y78{bottom:239.084000pt;}
.y8b{bottom:242.283763pt;}
.yf9{bottom:244.878667pt;}
.yc6{bottom:245.172000pt;}
.y42{bottom:249.021333pt;}
.y8a{bottom:259.403267pt;}
.yc5{bottom:259.784000pt;}
.y77{bottom:259.806667pt;}
.yf8{bottom:260.221333pt;}
.y41{bottom:265.758667pt;}
.y17{bottom:273.154667pt;}
.yf7{bottom:275.562667pt;}
.y89{bottom:276.522771pt;}
.yc4{bottom:280.798667pt;}
.y40{bottom:282.496000pt;}
.y16{bottom:289.054667pt;}
.y76{bottom:289.694667pt;}
.yf6{bottom:290.905333pt;}
.y88{bottom:293.563451pt;}
.y3f{bottom:299.233333pt;}
.y15{bottom:304.954667pt;}
.yf5{bottom:306.248000pt;}
.y75{bottom:306.432000pt;}
.yc3{bottom:308.904000pt;}
.y3e{bottom:315.970667pt;}
.y14{bottom:320.856000pt;}
.yf4{bottom:321.590667pt;}
.y74{bottom:323.168000pt;}
.y3d{bottom:332.708000pt;}
.yf3{bottom:336.933333pt;}
.y73{bottom:339.905333pt;}
.yc2{bottom:340.950667pt;}
.y86{bottom:342.203187pt;}
.y3c{bottom:349.445333pt;}
.y85{bottom:350.763067pt;}
.yf2{bottom:352.276000pt;}
.y13{bottom:354.688000pt;}
.y72{bottom:356.642667pt;}
.yc1{bottom:357.688000pt;}
.y3b{bottom:366.182667pt;}
.yf1{bottom:367.618667pt;}
.y71{bottom:373.380000pt;}
.yc0{bottom:374.425333pt;}
.y3a{bottom:382.920000pt;}
.yf0{bottom:382.961333pt;}
.y12{bottom:386.529333pt;}
.y70{bottom:390.117333pt;}
.ybf{bottom:391.162667pt;}
.yef{bottom:398.302667pt;}
.y39{bottom:403.642667pt;}
.y6f{bottom:406.854667pt;}
.ybe{bottom:407.900000pt;}
.yee{bottom:413.645333pt;}
.y11{bottom:418.369333pt;}
.y6e{bottom:423.592000pt;}
.ybd{bottom:424.637333pt;}
.yed{bottom:428.988000pt;}
.y10{bottom:434.270667pt;}
.y6d{bottom:440.329333pt;}
.ybc{bottom:441.374667pt;}
.yec{bottom:448.316000pt;}
.yf{bottom:450.170667pt;}
.y6c{bottom:457.066667pt;}
.ye{bottom:466.070667pt;}
.y38{bottom:470.442667pt;}
.y6b{bottom:473.804000pt;}
.yeb{bottom:478.204000pt;}
.ybb{bottom:480.849333pt;}
.yd{bottom:481.972000pt;}
.y37{bottom:487.737333pt;}
.y6a{bottom:490.541333pt;}
.yea{bottom:493.825333pt;}
.yba{bottom:495.461333pt;}
.yc{bottom:497.872000pt;}
.y69{bottom:507.278667pt;}
.ye9{bottom:509.446667pt;}
.yb9{bottom:510.073333pt;}
.yb{bottom:513.772000pt;}
.y36{bottom:520.973333pt;}
.y68{bottom:524.016000pt;}
.yb8{bottom:524.684000pt;}
.ya{bottom:529.673333pt;}
.ye8{bottom:533.038667pt;}
.y35{bottom:538.268000pt;}
.yb7{bottom:539.296000pt;}
.y67{bottom:540.753333pt;}
.y9{bottom:545.573333pt;}
.ye7{bottom:548.660000pt;}
.yb6{bottom:553.908000pt;}
.y34{bottom:555.562667pt;}
.y66{bottom:557.490667pt;}
.y6{bottom:565.458715pt;}
.y33{bottom:572.858667pt;}
.y65{bottom:574.228000pt;}
.yb5{bottom:574.922667pt;}
.ye6{bottom:580.221333pt;}
.y32{bottom:590.153333pt;}
.y64{bottom:590.965333pt;}
.ye5{bottom:596.958667pt;}
.yb4{bottom:603.028000pt;}
.y31{bottom:607.448000pt;}
.y63{bottom:607.702667pt;}
.ye4{bottom:613.696000pt;}
.y62{bottom:624.440000pt;}
.y30{bottom:624.744000pt;}
.ye3{bottom:630.433333pt;}
.yb3{bottom:635.074667pt;}
.y61{bottom:641.177333pt;}
.ye2{bottom:647.170667pt;}
.yb2{bottom:651.812000pt;}
.y60{bottom:657.914667pt;}
.y2f{bottom:659.041333pt;}
.ye1{bottom:663.908000pt;}
.yb1{bottom:668.549333pt;}
.y2e{bottom:673.388000pt;}
.y5f{bottom:678.637333pt;}
.ye0{bottom:680.645333pt;}
.yb0{bottom:685.286667pt;}
.y2d{bottom:687.734667pt;}
.y5e{bottom:695.373333pt;}
.ydf{bottom:697.382667pt;}
.yaf{bottom:702.024000pt;}
.y2c{bottom:702.081333pt;}
.y2b{bottom:705.938667pt;}
.y5d{bottom:712.110667pt;}
.yde{bottom:714.120000pt;}
.y2a{bottom:716.426667pt;}
.y5c{bottom:728.848000pt;}
.y29{bottom:730.773333pt;}
.ydd{bottom:730.857333pt;}
.yae{bottom:730.924000pt;}
.y28{bottom:734.630667pt;}
.y27{bottom:745.120000pt;}
.y5b{bottom:745.585333pt;}
.ydc{bottom:747.594667pt;}
.y84{bottom:750.861333pt;}
.y26{bottom:763.322667pt;}
.ydb{bottom:764.332000pt;}
.y5a{bottom:766.308000pt;}
.y25{bottom:773.812000pt;}
.y24{bottom:777.669333pt;}
.yda{bottom:781.069333pt;}
.y59{bottom:783.045333pt;}
.y23{bottom:792.016000pt;}
.yd9{bottom:797.806667pt;}
.y58{bottom:799.782667pt;}
.y22{bottom:802.504000pt;}
.yd8{bottom:814.544000pt;}
.y57{bottom:816.520000pt;}
.y21{bottom:820.708000pt;}
.yd7{bottom:831.281333pt;}
.y20{bottom:835.054667pt;}
.y56{bottom:837.242667pt;}
.yd6{bottom:848.018667pt;}
.yd5{bottom:864.754667pt;}
.y55{bottom:867.130667pt;}
.y5{bottom:870.782667pt;}
.yd4{bottom:881.492000pt;}
.y54{bottom:883.868000pt;}
.y4{bottom:887.520000pt;}
.yd3{bottom:898.229333pt;}
.y53{bottom:900.605333pt;}
.yd2{bottom:914.966667pt;}
.y52{bottom:917.342667pt;}
.y3{bottom:925.510667pt;}
.yd1{bottom:931.704000pt;}
.y51{bottom:934.080000pt;}
.yd0{bottom:948.441333pt;}
.y2{bottom:950.616000pt;}
.y50{bottom:950.817333pt;}
.y83{bottom:965.178667pt;}
.y4f{bottom:967.554667pt;}
.y1{bottom:975.722667pt;}
.y82{bottom:981.916000pt;}
.y4e{bottom:984.290667pt;}
.y4d{bottom:1043.020000pt;}
.h6{height:22.673858pt;}
.he{height:23.209028pt;}
.hc{height:23.379740pt;}
.h15{height:24.582445pt;}
.h9{height:27.076941pt;}
.h1b{height:27.226250pt;}
.hb{height:27.262909pt;}
.h8{height:29.433775pt;}
.h7{height:30.399505pt;}
.hd{height:30.945242pt;}
.h14{height:31.157778pt;}
.ha{height:32.844727pt;}
.h10{height:34.430976pt;}
.h11{height:34.813542pt;}
.h1d{height:35.052646pt;}
.h1a{height:35.203125pt;}
.h12{height:38.256384pt;}
.h13{height:38.681455pt;}
.hf{height:38.809074pt;}
.h2{height:38.947124pt;}
.h1c{height:39.192812pt;}
.h17{height:39.359687pt;}
.h1e{height:43.660390pt;}
.h19{height:44.390625pt;}
.h5{height:48.360277pt;}
.h18{height:49.421563pt;}
.h3{height:68.861952pt;}
.h4{height:87.049259pt;}
.h16{height:190.254667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:66.991004pt;}
.w3{width:425.308000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x1b{left:-170.181333pt;}
.x0{left:0.000000pt;}
.x1d{left:3.657698pt;}
.x2{left:26.021437pt;}
.x1c{left:31.977604pt;}
.x22{left:36.618084pt;}
.x27{left:41.418667pt;}
.x1{left:47.588000pt;}
.x26{left:59.658835pt;}
.x2d{left:71.179134pt;}
.x39{left:76.686667pt;}
.x2b{left:78.219038pt;}
.x28{left:80.378667pt;}
.x2c{left:81.578856pt;}
.x20{left:93.418667pt;}
.x1f{left:111.739015pt;}
.x24{left:116.138179pt;}
.x25{left:123.258451pt;}
.x23{left:130.217988pt;}
.x21{left:132.458667pt;}
.x5{left:222.073333pt;}
.x3{left:223.020000pt;}
.x31{left:238.416000pt;}
.x4{left:241.085333pt;}
.x8{left:251.365333pt;}
.x12{left:253.769333pt;}
.x6{left:274.992000pt;}
.xd{left:281.313333pt;}
.x10{left:283.352000pt;}
.x7{left:288.454667pt;}
.x11{left:289.993333pt;}
.x35{left:292.342667pt;}
.x17{left:294.086667pt;}
.x2f{left:296.785333pt;}
.x36{left:299.126667pt;}
.x18{left:300.728000pt;}
.x34{left:310.353333pt;}
.x2e{left:314.796000pt;}
.x32{left:317.456000pt;}
.x15{left:322.281333pt;}
.x33{left:326.242667pt;}
.x29{left:327.338667pt;}
.x16{left:328.922667pt;}
.x2a{left:331.018667pt;}
.x37{left:332.158667pt;}
.xb{left:333.261333pt;}
.x30{left:335.418667pt;}
.xc{left:339.904000pt;}
.x13{left:348.796000pt;}
.x14{left:355.437333pt;}
.x38{left:381.553333pt;}
.x1e{left:422.456038pt;}
.x9{left:627.509333pt;}
.xa{left:634.150667pt;}
.x19{left:703.144000pt;}
.x1a{left:709.785333pt;}
.xe{left:733.624000pt;}
.xf{left:740.265333pt;}
}




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