
    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_b5d6f5199dd29777df929a59.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_bbe78a82bb8cebea14b62751.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_50934de7b84d509c7f5c7905.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_25d93505d6b5003ecea359f0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.011230;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_4dc7b597edc5e2115c364099.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.006836;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_8a2da6f871e1097c8413a12a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.011230;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_25d93505d6b5003ecea359f0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.011230;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_3a2d13c6f897273974230066.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.006836;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_01f321b2bac100a3e6b334a6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.482000;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_8a2da6f871e1097c8413a12a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.011230;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_a4095d215dd1934ed5d2e990.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.900000;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_53c62247f857830da1f88198.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.712000;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_56ff923df5f62f7403d58e44.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.734000;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;}
.m2{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);}
.m5{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);}
.m23{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);}
.m18{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);}
.m25{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);}
.m3{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);}
.m13{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);}
.m12{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);}
.m7{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);}
.m22{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);}
.mf{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);}
.ma{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);}
.m1{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);}
.mb{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);}
.m9{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);}
.m1a{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);}
.m11{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);}
.me{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);}
.m19{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);}
.m17{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);}
.m10{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);}
.m6{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);}
.m14{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);}
.m21{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.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);}
.m1d{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);}
.m1b{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);}
.m1f{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);}
.m1e{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);}
.m16{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);}
.m8{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);}
.m15{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);}
.m20{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);}
.md{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);}
.m1c{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);}
.m4{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);}
.mc{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:-17.358000px;}
.v3{vertical-align:-11.952000px;}
.v6{vertical-align:-8.400000px;}
.v7{vertical-align:-7.176000px;}
.v4{vertical-align:-4.106497px;}
.v5{vertical-align:-1.369115px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:10.920000px;}
.v1{vertical-align:21.702000px;}
.ls15{letter-spacing:-0.199899px;}
.lsa{letter-spacing:-0.168336px;}
.ls8{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.000450px;}
.ls1{letter-spacing:0.000600px;}
.ls12{letter-spacing:0.000800px;}
.ls17{letter-spacing:0.003008px;}
.ls1e{letter-spacing:0.004800px;}
.ls11{letter-spacing:0.113715px;}
.ls9{letter-spacing:0.120240px;}
.ls10{letter-spacing:0.142785px;}
.ls2{letter-spacing:2.989200px;}
.ls4{letter-spacing:2.998354px;}
.ls0{letter-spacing:8.373300px;}
.ls7{letter-spacing:11.954850px;}
.ls1a{letter-spacing:13.041829px;}
.ls1d{letter-spacing:13.448400px;}
.ls21{letter-spacing:13.559482px;}
.ls1f{letter-spacing:14.409224px;}
.lse{letter-spacing:14.943900px;}
.lsb{letter-spacing:15.183002px;}
.ls16{letter-spacing:15.362329px;}
.lsc{letter-spacing:15.678455px;}
.ls14{letter-spacing:15.796424px;}
.lsd{letter-spacing:15.915188px;}
.ls3{letter-spacing:17.935200px;}
.ls13{letter-spacing:19.075291px;}
.ls19{letter-spacing:19.171200px;}
.ls20{letter-spacing:19.362165px;}
.ls1b{letter-spacing:21.244665px;}
.ls5{letter-spacing:62.761200px;}
.ls6{letter-spacing:64.321654px;}
.lsf{letter-spacing:998.444091px;}
.ls18{letter-spacing:1104.559200px;}
.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;}
}
.ws3b{word-spacing:-14.962500px;}
.ws4c{word-spacing:-14.943900px;}
.ws7{word-spacing:-14.355754px;}
.ws3a{word-spacing:-14.278500px;}
.ws26{word-spacing:-13.449600px;}
.ws23{word-spacing:-12.024000px;}
.ws1e{word-spacing:-11.955150px;}
.ws6{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.ws66{word-spacing:-4.363619px;}
.ws67{word-spacing:-4.303843px;}
.ws6a{word-spacing:-3.227882px;}
.ws69{word-spacing:-2.630126px;}
.ws64{word-spacing:-2.510575px;}
.ws65{word-spacing:-2.391024px;}
.ws53{word-spacing:-2.271473px;}
.wsa{word-spacing:-2.151922px;}
.ws0{word-spacing:-2.092140px;}
.ws34{word-spacing:-1.853044px;}
.ws77{word-spacing:-1.829146px;}
.wse{word-spacing:-1.733492px;}
.ws38{word-spacing:-1.673717px;}
.ws28{word-spacing:-1.667750px;}
.ws51{word-spacing:-1.613941px;}
.ws4f{word-spacing:-1.560154px;}
.ws27{word-spacing:-1.452557px;}
.ws54{word-spacing:-1.255288px;}
.ws33{word-spacing:-1.135736px;}
.ws74{word-spacing:-1.075968px;}
.ws6b{word-spacing:-1.016185px;}
.ws48{word-spacing:-0.956410px;}
.ws55{word-spacing:-0.896634px;}
.ws41{word-spacing:-0.358654px;}
.ws35{word-spacing:-0.298878px;}
.ws21{word-spacing:-0.239102px;}
.ws81{word-spacing:-0.215194px;}
.ws1a{word-spacing:-0.179327px;}
.ws7b{word-spacing:-0.161395px;}
.ws19{word-spacing:-0.119551px;}
.ws3e{word-spacing:-0.107597px;}
.ws62{word-spacing:-0.062287px;}
.ws29{word-spacing:-0.059776px;}
.ws73{word-spacing:-0.053798px;}
.ws1f{word-spacing:-0.047821px;}
.ws63{word-spacing:-0.047338px;}
.ws5{word-spacing:0.000000px;}
.ws6c{word-spacing:0.053798px;}
.ws9{word-spacing:0.059776px;}
.ws4e{word-spacing:0.107597px;}
.wsd{word-spacing:0.119551px;}
.ws78{word-spacing:0.161395px;}
.ws11{word-spacing:0.179327px;}
.ws72{word-spacing:0.215194px;}
.wsb{word-spacing:0.239102px;}
.ws39{word-spacing:0.246253px;}
.ws49{word-spacing:0.268992px;}
.ws10{word-spacing:0.298878px;}
.ws32{word-spacing:0.418429px;}
.ws4{word-spacing:0.422252px;}
.wsc{word-spacing:0.657532px;}
.ws60{word-spacing:0.717307px;}
.ws7e{word-spacing:0.753178px;}
.ws30{word-spacing:0.777083px;}
.ws2b{word-spacing:0.836858px;}
.ws2a{word-spacing:0.896634px;}
.ws25{word-spacing:0.968371px;}
.ws20{word-spacing:1.016185px;}
.ws36{word-spacing:1.195512px;}
.ws6d{word-spacing:1.255288px;}
.ws80{word-spacing:1.398758px;}
.ws71{word-spacing:1.494390px;}
.ws37{word-spacing:1.613941px;}
.ws45{word-spacing:1.733492px;}
.ws12{word-spacing:1.793268px;}
.ws7c{word-spacing:1.882944px;}
.ws7d{word-spacing:1.936742px;}
.ws6f{word-spacing:1.972595px;}
.ws76{word-spacing:1.990541px;}
.ws13{word-spacing:2.092146px;}
.ws43{word-spacing:2.211697px;}
.ws4b{word-spacing:2.271473px;}
.ws50{word-spacing:2.331248px;}
.ws2d{word-spacing:2.450800px;}
.ws2c{word-spacing:2.510575px;}
.ws31{word-spacing:2.570351px;}
.ws24{word-spacing:2.636122px;}
.ws75{word-spacing:2.678822px;}
.ws2f{word-spacing:2.749678px;}
.ws8{word-spacing:2.869236px;}
.ws18{word-spacing:3.048556px;}
.ws82{word-spacing:3.227904px;}
.ws8a{word-spacing:3.496896px;}
.ws44{word-spacing:3.706087px;}
.ws1b{word-spacing:3.765863px;}
.ws17{word-spacing:4.303872px;}
.ws70{word-spacing:4.662497px;}
.ws83{word-spacing:4.680461px;}
.ws4d{word-spacing:4.722272px;}
.ws3c{word-spacing:4.788058px;}
.ws22{word-spacing:4.961375px;}
.ws68{word-spacing:5.080926px;}
.ws47{word-spacing:5.140702px;}
.ws46{word-spacing:5.200477px;}
.ws3d{word-spacing:5.218445px;}
.ws61{word-spacing:5.320028px;}
.ws4a{word-spacing:5.618906px;}
.ws56{word-spacing:5.738458px;}
.ws85{word-spacing:5.917824px;}
.ws58{word-spacing:5.973600px;}
.ws5b{word-spacing:5.976518px;}
.ws52{word-spacing:6.037336px;}
.ws6e{word-spacing:6.216662px;}
.ws3f{word-spacing:6.635092px;}
.wsf{word-spacing:6.694867px;}
.ws14{word-spacing:7.173072px;}
.ws1c{word-spacing:7.232848px;}
.ws2{word-spacing:8.329187px;}
.ws40{word-spacing:8.368584px;}
.ws1d{word-spacing:11.905309px;}
.ws16{word-spacing:13.210408px;}
.ws88{word-spacing:13.390579px;}
.ws7a{word-spacing:13.395802px;}
.ws86{word-spacing:13.503398px;}
.ws89{word-spacing:13.557197px;}
.ws79{word-spacing:16.623706px;}
.ws87{word-spacing:16.892698px;}
.ws84{word-spacing:18.076262px;}
.ws7f{word-spacing:19.219820px;}
.ws1{word-spacing:22.179541px;}
.ws15{word-spacing:30.186534px;}
.ws57{word-spacing:887.741618px;}
.ws42{word-spacing:928.502298px;}
.ws2e{word-spacing:1032.558595px;}
.ws59{word-spacing:1060.900011px;}
.ws5d{word-spacing:1067.417942px;}
.ws5c{word-spacing:1070.846696px;}
.ws5a{word-spacing:1072.855161px;}
.ws5e{word-spacing:1080.871142px;}
.ws5f{word-spacing:1082.145600px;}
._6{margin-left:-7.029628px;}
._1{margin-left:-5.397721px;}
._1a{margin-left:-4.393624px;}
._2{margin-left:-3.096367px;}
._3{margin-left:-1.506341px;}
._1c{width:1.058123px;}
._4{width:2.803530px;}
._1d{width:9.725659px;}
._0{width:10.879128px;}
._c{width:13.939666px;}
._11{width:15.403781px;}
._13{width:16.671312px;}
._9{width:18.231558px;}
._7{width:19.379245px;}
._8{width:21.041011px;}
._10{width:22.248474px;}
._b{width:24.507996px;}
._12{width:26.480591px;}
._17{width:29.290044px;}
._1e{width:30.536454px;}
._15{width:31.583137px;}
._16{width:32.740985px;}
._d{width:34.801350px;}
._18{width:37.311925px;}
._a{width:39.475798px;}
._19{width:44.437133px;}
._5{width:54.599550px;}
._1b{width:88.767360px;}
._14{width:906.113264px;}
._e{width:1857.477600px;}
._1f{width:2585.877600px;}
._f{width:2609.787600px;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs3{font-size:45.429600px;}
.fsc{font-size:47.337600px;}
.fs5{font-size:47.820600px;}
.fs7{font-size:48.096000px;}
.fs8{font-size:53.798400px;}
.fs9{font-size:57.114000px;}
.fs1{font-size:59.775600px;}
.fsa{font-size:59.850000px;}
.fsb{font-size:62.286600px;}
.fs6{font-size:71.731200px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y9b{bottom:3.942383px;}
.y56{bottom:4.316920px;}
.y48{bottom:5.448869px;}
.y74{bottom:6.413365px;}
.y47{bottom:18.048819px;}
.y73{bottom:22.829356px;}
.y3f{bottom:45.921000px;}
.ybd{bottom:99.720000px;}
.y15{bottom:100.260000px;}
.ya1{bottom:104.286000px;}
.y82{bottom:104.325000px;}
.y3e{bottom:110.328000px;}
.ye1{bottom:116.428500px;}
.y10b{bottom:117.796500px;}
.y14{bottom:118.147500px;}
.ybc{bottom:120.610500px;}
.ya0{bottom:125.178000px;}
.y81{bottom:125.217000px;}
.y57{bottom:130.764000px;}
.y3d{bottom:131.220000px;}
.ye0{bottom:135.661500px;}
.y13{bottom:136.035000px;}
.y10a{bottom:136.947000px;}
.y93{bottom:138.987000px;}
.ybb{bottom:141.502500px;}
.y9f{bottom:146.068500px;}
.y80{bottom:146.109000px;}
.y3c{bottom:152.110500px;}
.y55{bottom:153.193500px;}
.y12{bottom:153.922500px;}
.y109{bottom:156.097500px;}
.y92{bottom:158.220000px;}
.yba{bottom:159.664500px;}
.y71{bottom:160.681500px;}
.yb9{bottom:162.394500px;}
.y9e{bottom:166.960500px;}
.y7f{bottom:166.999500px;}
.y11{bottom:171.811500px;}
.y3b{bottom:173.002500px;}
.y108{bottom:175.248000px;}
.yb8{bottom:180.556500px;}
.y70{bottom:181.573500px;}
.yb7{bottom:183.285000px;}
.y9d{bottom:187.852500px;}
.y7e{bottom:187.891500px;}
.y10{bottom:189.699000px;}
.y3a{bottom:193.894500px;}
.y107{bottom:194.398500px;}
.yb6{bottom:201.447000px;}
.y6f{bottom:202.464000px;}
.yb5{bottom:204.177000px;}
.yf{bottom:207.586500px;}
.y7d{bottom:208.783500px;}
.y106{bottom:213.549000px;}
.y39{bottom:214.785000px;}
.y6e{bottom:223.356000px;}
.y9c{bottom:223.480500px;}
.yb4{bottom:225.069000px;}
.ye{bottom:225.475500px;}
.y7c{bottom:229.674000px;}
.y105{bottom:232.699500px;}
.y38{bottom:235.677000px;}
.y6d{bottom:244.248000px;}
.y9a{bottom:245.908500px;}
.yb3{bottom:245.961000px;}
.y7b{bottom:250.566000px;}
.y104{bottom:251.850000px;}
.yd{bottom:252.330000px;}
.y37{bottom:256.569000px;}
.yb2{bottom:264.121500px;}
.y6c{bottom:265.138500px;}
.yb1{bottom:266.851500px;}
.yc{bottom:270.217500px;}
.y103{bottom:271.000500px;}
.y36{bottom:277.459500px;}
.yb0{bottom:285.013500px;}
.y6b{bottom:286.030500px;}
.y7a{bottom:286.194000px;}
.yaf{bottom:287.743500px;}
.yb{bottom:288.105000px;}
.y102{bottom:290.151000px;}
.y35{bottom:298.351500px;}
.y79{bottom:305.427000px;}
.ya{bottom:305.994000px;}
.y6a{bottom:306.922500px;}
.yae{bottom:308.635500px;}
.y101{bottom:309.303000px;}
.y34{bottom:319.243500px;}
.y9{bottom:323.881500px;}
.y69{bottom:327.813000px;}
.y100{bottom:328.453500px;}
.yad{bottom:329.526000px;}
.y8{bottom:341.769000px;}
.y33{bottom:344.617500px;}
.yff{bottom:347.604000px;}
.y68{bottom:348.705000px;}
.y7{bottom:359.658000px;}
.yac{bottom:365.098500px;}
.yfe{bottom:366.754500px;}
.y67{bottom:369.597000px;}
.y6{bottom:377.545500px;}
.yab{bottom:384.331500px;}
.yfd{bottom:385.905000px;}
.y66{bottom:390.487500px;}
.y5{bottom:401.410500px;}
.yfc{bottom:405.055500px;}
.y65{bottom:411.379500px;}
.y4{bottom:419.299500px;}
.y32{bottom:423.829500px;}
.yfb{bottom:424.206000px;}
.ydf{bottom:426.424500px;}
.y3{bottom:437.187000px;}
.yfa{bottom:443.356500px;}
.y31{bottom:444.721500px;}
.y64{bottom:447.007500px;}
.yde{bottom:447.316500px;}
.y91{bottom:454.975500px;}
.y2{bottom:455.074500px;}
.yf9{bottom:462.507000px;}
.y63{bottom:466.240500px;}
.ydd{bottom:468.208500px;}
.y90{bottom:475.867500px;}
.y1{bottom:478.941000px;}
.yf8{bottom:481.657500px;}
.y30{bottom:483.546000px;}
.y54{bottom:487.957500px;}
.ydc{bottom:489.100500px;}
.y8f{bottom:496.758000px;}
.yf7{bottom:500.808000px;}
.y2f{bottom:504.436500px;}
.y53{bottom:508.849500px;}
.ydb{bottom:509.991000px;}
.y8e{bottom:517.650000px;}
.yf6{bottom:519.958500px;}
.y2e{bottom:525.328500px;}
.y52{bottom:529.741500px;}
.yda{bottom:530.883000px;}
.y8d{bottom:538.542000px;}
.yf5{bottom:543.592500px;}
.y2d{bottom:546.220500px;}
.y51{bottom:550.632000px;}
.yd9{bottom:551.775000px;}
.y8c{bottom:559.432500px;}
.y2c{bottom:567.111000px;}
.y50{bottom:571.524000px;}
.yd8{bottom:572.665500px;}
.y8b{bottom:580.324500px;}
.yf4{bottom:582.417000px;}
.y2b{bottom:588.003000px;}
.y4f{bottom:592.416000px;}
.yd7{bottom:593.557500px;}
.y8a{bottom:601.216500px;}
.y78{bottom:601.366500px;}
.y2a{bottom:608.895000px;}
.yf3{bottom:610.882500px;}
.y4e{bottom:613.306500px;}
.yd6{bottom:614.449500px;}
.y77{bottom:620.599500px;}
.y89{bottom:622.107000px;}
.y29{bottom:629.785500px;}
.yf2{bottom:630.381000px;}
.y4d{bottom:634.198500px;}
.yd5{bottom:635.340000px;}
.y88{bottom:642.999000px;}
.y28{bottom:650.677500px;}
.y4c{bottom:655.090500px;}
.yd4{bottom:656.232000px;}
.yf1{bottom:658.845000px;}
.y87{bottom:663.891000px;}
.y27{bottom:671.569500px;}
.yd2{bottom:677.124000px;}
.yf0{bottom:678.345000px;}
.yd3{bottom:682.548000px;}
.y86{bottom:684.781500px;}
.y4b{bottom:690.718500px;}
.y26{bottom:692.460000px;}
.yef{bottom:697.843500px;}
.yd1{bottom:698.014500px;}
.yaa{bottom:704.287500px;}
.y4a{bottom:709.950000px;}
.y25{bottom:713.352000px;}
.yd0{bottom:718.906500px;}
.y85{bottom:720.409500px;}
.ya8{bottom:725.178000px;}
.yee{bottom:726.309000px;}
.y49{bottom:729.183000px;}
.ya9{bottom:730.603500px;}
.y24{bottom:734.244000px;}
.y84{bottom:739.642500px;}
.ycf{bottom:739.798500px;}
.yed{bottom:745.807500px;}
.ya7{bottom:746.070000px;}
.y46{bottom:751.612500px;}
.y23{bottom:755.136000px;}
.yce{bottom:760.689000px;}
.yec{bottom:765.306000px;}
.ya6{bottom:766.962000px;}
.y22{bottom:776.026500px;}
.ycd{bottom:778.851000px;}
.ycc{bottom:781.581000px;}
.yeb{bottom:784.804500px;}
.ya5{bottom:787.852500px;}
.y21{bottom:796.918500px;}
.y62{bottom:804.303000px;}
.ya4{bottom:808.744500px;}
.y20{bottom:817.810500px;}
.yea{bottom:822.235500px;}
.ycb{bottom:823.777500px;}
.y61{bottom:825.195000px;}
.ya3{bottom:829.636500px;}
.yca{bottom:841.948500px;}
.ye9{bottom:843.127500px;}
.y60{bottom:846.087000px;}
.y1f{bottom:847.668000px;}
.yc9{bottom:863.347500px;}
.ye8{bottom:864.019500px;}
.ya2{bottom:865.209000px;}
.y5f{bottom:866.977500px;}
.yc8{bottom:884.746500px;}
.ye7{bottom:884.910000px;}
.y1e{bottom:887.688000px;}
.y5e{bottom:887.869500px;}
.y76{bottom:902.191500px;}
.ye6{bottom:905.802000px;}
.yc7{bottom:906.145500px;}
.y1d{bottom:908.167500px;}
.y5d{bottom:908.761500px;}
.y1c{bottom:919.966500px;}
.y75{bottom:921.424500px;}
.ye5{bottom:926.694000px;}
.yc6{bottom:927.544500px;}
.y5c{bottom:929.652000px;}
.y1b{bottom:936.106500px;}
.y72{bottom:946.842000px;}
.ye4{bottom:947.584500px;}
.yc5{bottom:948.943500px;}
.y5b{bottom:950.544000px;}
.y1a{bottom:956.586000px;}
.ye3{bottom:968.476500px;}
.yc4{bottom:970.342500px;}
.y5a{bottom:971.436000px;}
.ye2{bottom:989.368500px;}
.yc3{bottom:991.741500px;}
.y59{bottom:992.326500px;}
.y19{bottom:1001.262000px;}
.y111{bottom:1001.308500px;}
.y99{bottom:1010.260500px;}
.yc2{bottom:1013.140500px;}
.y58{bottom:1017.702000px;}
.y110{bottom:1020.459000px;}
.y98{bottom:1031.151000px;}
.yc1{bottom:1034.539500px;}
.y83{bottom:1035.634500px;}
.y10f{bottom:1039.609500px;}
.y18{bottom:1040.086500px;}
.y97{bottom:1052.043000px;}
.yc0{bottom:1055.938500px;}
.y45{bottom:1056.526500px;}
.y17{bottom:1071.424500px;}
.y96{bottom:1072.935000px;}
.y44{bottom:1077.417000px;}
.y10e{bottom:1082.640000px;}
.ybf{bottom:1085.989500px;}
.y95{bottom:1093.825500px;}
.y43{bottom:1098.309000px;}
.y10d{bottom:1101.790500px;}
.y16{bottom:1102.761000px;}
.y94{bottom:1114.717500px;}
.y42{bottom:1119.201000px;}
.y10c{bottom:1120.941000px;}
.ybe{bottom:1137.363000px;}
.y41{bottom:1140.091500px;}
.y40{bottom:1200.196500px;}
.h18{height:23.242762px;}
.h7{height:26.110157px;}
.h2{height:30.461558px;}
.h16{height:30.582721px;}
.h3{height:30.670772px;}
.h19{height:33.072749px;}
.h1a{height:34.430832px;}
.h8{height:34.813397px;}
.hc{height:35.052500px;}
.he{height:35.109141px;}
.hf{height:35.414438px;}
.h10{height:39.165235px;}
.h15{height:39.434227px;}
.h1b{height:41.502721px;}
.h13{height:41.692104px;}
.h1c{height:41.723369px;}
.h1d{height:42.380900px;}
.h14{height:42.700124px;}
.h9{height:43.038432px;}
.ha{height:43.516637px;}
.h4{height:43.815515px;}
.hb{height:51.646464px;}
.h6{height:54.411312px;}
.h5{height:77.469696px;}
.h12{height:208.195350px;}
.hd{height:281.271600px;}
.h11{height:311.122800px;}
.h17{height:740.713575px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:474.673200px;}
.w2{width:528.068640px;}
.w5{width:563.138625px;}
.w4{width:750.402292px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x17{left:71.044358px;}
.x50{left:85.848000px;}
.x19{left:118.802781px;}
.xb{left:126.837340px;}
.x4{left:248.526000px;}
.x2{left:249.591000px;}
.x18{left:253.122675px;}
.xa{left:262.484826px;}
.x3{left:269.914500px;}
.x3b{left:277.270500px;}
.x5{left:281.479500px;}
.x3c{left:294.415500px;}
.x4c{left:298.900500px;}
.x4d{left:312.798000px;}
.x3d{left:313.950000px;}
.x3e{left:327.786000px;}
.x3f{left:337.350000px;}
.x40{left:341.950500px;}
.x41{left:354.033000px;}
.x33{left:364.708500px;}
.x42{left:371.208000px;}
.x34{left:382.425000px;}
.x35{left:385.927500px;}
.x12{left:388.584000px;}
.x28{left:389.847000px;}
.x13{left:396.055500px;}
.x14{left:399.765000px;}
.x29{left:401.323500px;}
.x15{left:407.236500px;}
.x8{left:461.961000px;}
.x9{left:469.432500px;}
.x16{left:470.505142px;}
.x36{left:485.917500px;}
.x10{left:505.018500px;}
.x11{left:512.491500px;}
.xe{left:517.296000px;}
.xf{left:524.769000px;}
.x2a{left:532.429500px;}
.xc{left:534.543000px;}
.x1a{left:537.145500px;}
.xd{left:542.014500px;}
.x22{left:546.598500px;}
.x23{left:554.070000px;}
.x24{left:557.731500px;}
.x1b{left:562.163107px;}
.x25{left:565.203000px;}
.x6{left:597.835500px;}
.x7{left:605.307000px;}
.x1c{left:619.692000px;}
.x4e{left:622.179000px;}
.x32{left:624.004500px;}
.x1d{left:626.499000px;}
.x2b{left:631.326000px;}
.x43{left:640.638000px;}
.x2c{left:646.269000px;}
.x44{left:652.758000px;}
.x4f{left:654.807000px;}
.x2d{left:664.878000px;}
.x45{left:685.555500px;}
.x2e{left:687.282000px;}
.x46{left:700.921500px;}
.x47{left:714.757500px;}
.x37{left:724.486500px;}
.x48{left:728.920500px;}
.x49{left:741.003000px;}
.x39{left:743.685000px;}
.x38{left:751.045500px;}
.x3a{left:752.392500px;}
.x4a{left:758.179500px;}
.x26{left:762.654000px;}
.x2f{left:763.692000px;}
.x27{left:772.191000px;}
.x1e{left:774.796500px;}
.x4b{left:776.686500px;}
.x1f{left:781.222500px;}
.x20{left:798.601500px;}
.x21{left:808.776000px;}
.x30{left:821.662500px;}
.x31{left:837.867000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.624000pt;}
.v6{vertical-align:-7.466667pt;}
.v7{vertical-align:-6.378667pt;}
.v4{vertical-align:-3.650219pt;}
.v5{vertical-align:-1.216991pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:9.706667pt;}
.v1{vertical-align:19.290667pt;}
.ls15{letter-spacing:-0.177688pt;}
.lsa{letter-spacing:-0.149632pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.000400pt;}
.ls1{letter-spacing:0.000533pt;}
.ls12{letter-spacing:0.000711pt;}
.ls17{letter-spacing:0.002674pt;}
.ls1e{letter-spacing:0.004267pt;}
.ls11{letter-spacing:0.101080pt;}
.ls9{letter-spacing:0.106880pt;}
.ls10{letter-spacing:0.126920pt;}
.ls2{letter-spacing:2.657067pt;}
.ls4{letter-spacing:2.665203pt;}
.ls0{letter-spacing:7.442933pt;}
.ls7{letter-spacing:10.626533pt;}
.ls1a{letter-spacing:11.592737pt;}
.ls1d{letter-spacing:11.954133pt;}
.ls21{letter-spacing:12.052873pt;}
.ls1f{letter-spacing:12.808199pt;}
.lse{letter-spacing:13.283467pt;}
.lsb{letter-spacing:13.496002pt;}
.ls16{letter-spacing:13.655404pt;}
.lsc{letter-spacing:13.936405pt;}
.ls14{letter-spacing:14.041266pt;}
.lsd{letter-spacing:14.146833pt;}
.ls3{letter-spacing:15.942400pt;}
.ls13{letter-spacing:16.955814pt;}
.ls19{letter-spacing:17.041067pt;}
.ls20{letter-spacing:17.210813pt;}
.ls1b{letter-spacing:18.884147pt;}
.ls5{letter-spacing:55.787733pt;}
.ls6{letter-spacing:57.174803pt;}
.lsf{letter-spacing:887.505859pt;}
.ls18{letter-spacing:981.830400pt;}
.ws3b{word-spacing:-13.300000pt;}
.ws4c{word-spacing:-13.283467pt;}
.ws7{word-spacing:-12.760670pt;}
.ws3a{word-spacing:-12.692000pt;}
.ws26{word-spacing:-11.955200pt;}
.ws23{word-spacing:-10.688000pt;}
.ws1e{word-spacing:-10.626800pt;}
.ws6{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.ws66{word-spacing:-3.878772pt;}
.ws67{word-spacing:-3.825638pt;}
.ws6a{word-spacing:-2.869229pt;}
.ws69{word-spacing:-2.337890pt;}
.ws64{word-spacing:-2.231622pt;}
.ws65{word-spacing:-2.125355pt;}
.ws53{word-spacing:-2.019087pt;}
.wsa{word-spacing:-1.912819pt;}
.ws0{word-spacing:-1.859680pt;}
.ws34{word-spacing:-1.647150pt;}
.ws77{word-spacing:-1.625907pt;}
.wse{word-spacing:-1.540882pt;}
.ws38{word-spacing:-1.487748pt;}
.ws28{word-spacing:-1.482445pt;}
.ws51{word-spacing:-1.434614pt;}
.ws4f{word-spacing:-1.386803pt;}
.ws27{word-spacing:-1.291162pt;}
.ws54{word-spacing:-1.115811pt;}
.ws33{word-spacing:-1.009543pt;}
.ws74{word-spacing:-0.956416pt;}
.ws6b{word-spacing:-0.903276pt;}
.ws48{word-spacing:-0.850142pt;}
.ws55{word-spacing:-0.797008pt;}
.ws41{word-spacing:-0.318803pt;}
.ws35{word-spacing:-0.265669pt;}
.ws21{word-spacing:-0.212535pt;}
.ws81{word-spacing:-0.191283pt;}
.ws1a{word-spacing:-0.159402pt;}
.ws7b{word-spacing:-0.143462pt;}
.ws19{word-spacing:-0.106268pt;}
.ws3e{word-spacing:-0.095642pt;}
.ws62{word-spacing:-0.055366pt;}
.ws29{word-spacing:-0.053134pt;}
.ws73{word-spacing:-0.047821pt;}
.ws1f{word-spacing:-0.042507pt;}
.ws63{word-spacing:-0.042078pt;}
.ws5{word-spacing:0.000000pt;}
.ws6c{word-spacing:0.047821pt;}
.ws9{word-spacing:0.053134pt;}
.ws4e{word-spacing:0.095642pt;}
.wsd{word-spacing:0.106268pt;}
.ws78{word-spacing:0.143462pt;}
.ws11{word-spacing:0.159402pt;}
.ws72{word-spacing:0.191283pt;}
.wsb{word-spacing:0.212535pt;}
.ws39{word-spacing:0.218892pt;}
.ws49{word-spacing:0.239104pt;}
.ws10{word-spacing:0.265669pt;}
.ws32{word-spacing:0.371937pt;}
.ws4{word-spacing:0.375335pt;}
.wsc{word-spacing:0.584473pt;}
.ws60{word-spacing:0.637606pt;}
.ws7e{word-spacing:0.669491pt;}
.ws30{word-spacing:0.690740pt;}
.ws2b{word-spacing:0.743874pt;}
.ws2a{word-spacing:0.797008pt;}
.ws25{word-spacing:0.860774pt;}
.ws20{word-spacing:0.903276pt;}
.ws36{word-spacing:1.062677pt;}
.ws6d{word-spacing:1.115811pt;}
.ws80{word-spacing:1.243341pt;}
.ws71{word-spacing:1.328347pt;}
.ws37{word-spacing:1.434614pt;}
.ws45{word-spacing:1.540882pt;}
.ws12{word-spacing:1.594016pt;}
.ws7c{word-spacing:1.673728pt;}
.ws7d{word-spacing:1.721549pt;}
.ws6f{word-spacing:1.753418pt;}
.ws76{word-spacing:1.769370pt;}
.ws13{word-spacing:1.859685pt;}
.ws43{word-spacing:1.965953pt;}
.ws4b{word-spacing:2.019087pt;}
.ws50{word-spacing:2.072221pt;}
.ws2d{word-spacing:2.178489pt;}
.ws2c{word-spacing:2.231622pt;}
.ws31{word-spacing:2.284756pt;}
.ws24{word-spacing:2.343219pt;}
.ws75{word-spacing:2.381175pt;}
.ws2f{word-spacing:2.444158pt;}
.ws8{word-spacing:2.550432pt;}
.ws18{word-spacing:2.709827pt;}
.ws82{word-spacing:2.869248pt;}
.ws8a{word-spacing:3.108352pt;}
.ws44{word-spacing:3.294300pt;}
.ws1b{word-spacing:3.347434pt;}
.ws17{word-spacing:3.825664pt;}
.ws70{word-spacing:4.144442pt;}
.ws83{word-spacing:4.160410pt;}
.ws4d{word-spacing:4.197575pt;}
.ws3c{word-spacing:4.256051pt;}
.ws22{word-spacing:4.410111pt;}
.ws68{word-spacing:4.516379pt;}
.ws47{word-spacing:4.569513pt;}
.ws46{word-spacing:4.622646pt;}
.ws3d{word-spacing:4.638618pt;}
.ws61{word-spacing:4.728914pt;}
.ws4a{word-spacing:4.994583pt;}
.ws56{word-spacing:5.100851pt;}
.ws85{word-spacing:5.260288pt;}
.ws58{word-spacing:5.309867pt;}
.ws5b{word-spacing:5.312461pt;}
.ws52{word-spacing:5.366521pt;}
.ws6e{word-spacing:5.525922pt;}
.ws3f{word-spacing:5.897859pt;}
.wsf{word-spacing:5.950993pt;}
.ws14{word-spacing:6.376064pt;}
.ws1c{word-spacing:6.429198pt;}
.ws2{word-spacing:7.403722pt;}
.ws40{word-spacing:7.438741pt;}
.ws1d{word-spacing:10.582497pt;}
.ws16{word-spacing:11.742585pt;}
.ws88{word-spacing:11.902737pt;}
.ws7a{word-spacing:11.907379pt;}
.ws86{word-spacing:12.003021pt;}
.ws89{word-spacing:12.050842pt;}
.ws79{word-spacing:14.776627pt;}
.ws87{word-spacing:15.015731pt;}
.ws84{word-spacing:16.067789pt;}
.ws7f{word-spacing:17.084285pt;}
.ws1{word-spacing:19.715148pt;}
.ws15{word-spacing:26.832474pt;}
.ws57{word-spacing:789.103661pt;}
.ws42{word-spacing:825.335376pt;}
.ws2e{word-spacing:917.829862pt;}
.ws59{word-spacing:943.022232pt;}
.ws5d{word-spacing:948.815949pt;}
.ws5c{word-spacing:951.863730pt;}
.ws5a{word-spacing:953.649032pt;}
.ws5e{word-spacing:960.774349pt;}
.ws5f{word-spacing:961.907200pt;}
._6{margin-left:-6.248558pt;}
._1{margin-left:-4.797974pt;}
._1a{margin-left:-3.905443pt;}
._2{margin-left:-2.752326pt;}
._3{margin-left:-1.338970pt;}
._1c{width:0.940554pt;}
._4{width:2.492027pt;}
._1d{width:8.645030pt;}
._0{width:9.670336pt;}
._c{width:12.390814pt;}
._11{width:13.692250pt;}
._13{width:14.818944pt;}
._9{width:16.205829pt;}
._7{width:17.225996pt;}
._8{width:18.703121pt;}
._10{width:19.776421pt;}
._b{width:21.784885pt;}
._12{width:23.538303pt;}
._17{width:26.035595pt;}
._1e{width:27.143515pt;}
._15{width:28.073899pt;}
._16{width:29.103098pt;}
._d{width:30.934533pt;}
._18{width:33.166156pt;}
._a{width:35.089598pt;}
._19{width:39.499674pt;}
._5{width:48.532933pt;}
._1b{width:78.904320pt;}
._14{width:805.434012pt;}
._e{width:1651.091200pt;}
._1f{width:2298.557867pt;}
._f{width:2319.811200pt;}
.fs4{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs3{font-size:40.381867pt;}
.fsc{font-size:42.077867pt;}
.fs5{font-size:42.507200pt;}
.fs7{font-size:42.752000pt;}
.fs8{font-size:47.820800pt;}
.fs9{font-size:50.768000pt;}
.fs1{font-size:53.133867pt;}
.fsa{font-size:53.200000pt;}
.fsb{font-size:55.365867pt;}
.fs6{font-size:63.761067pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y9b{bottom:3.504340pt;}
.y56{bottom:3.837263pt;}
.y48{bottom:4.843440pt;}
.y74{bottom:5.700769pt;}
.y47{bottom:16.043395pt;}
.y73{bottom:20.292761pt;}
.y3f{bottom:40.818667pt;}
.ybd{bottom:88.640000pt;}
.y15{bottom:89.120000pt;}
.ya1{bottom:92.698667pt;}
.y82{bottom:92.733333pt;}
.y3e{bottom:98.069333pt;}
.ye1{bottom:103.492000pt;}
.y10b{bottom:104.708000pt;}
.y14{bottom:105.020000pt;}
.ybc{bottom:107.209333pt;}
.ya0{bottom:111.269333pt;}
.y81{bottom:111.304000pt;}
.y57{bottom:116.234667pt;}
.y3d{bottom:116.640000pt;}
.ye0{bottom:120.588000pt;}
.y13{bottom:120.920000pt;}
.y10a{bottom:121.730667pt;}
.y93{bottom:123.544000pt;}
.ybb{bottom:125.780000pt;}
.y9f{bottom:129.838667pt;}
.y80{bottom:129.874667pt;}
.y3c{bottom:135.209333pt;}
.y55{bottom:136.172000pt;}
.y12{bottom:136.820000pt;}
.y109{bottom:138.753333pt;}
.y92{bottom:140.640000pt;}
.yba{bottom:141.924000pt;}
.y71{bottom:142.828000pt;}
.yb9{bottom:144.350667pt;}
.y9e{bottom:148.409333pt;}
.y7f{bottom:148.444000pt;}
.y11{bottom:152.721333pt;}
.y3b{bottom:153.780000pt;}
.y108{bottom:155.776000pt;}
.yb8{bottom:160.494667pt;}
.y70{bottom:161.398667pt;}
.yb7{bottom:162.920000pt;}
.y9d{bottom:166.980000pt;}
.y7e{bottom:167.014667pt;}
.y10{bottom:168.621333pt;}
.y3a{bottom:172.350667pt;}
.y107{bottom:172.798667pt;}
.yb6{bottom:179.064000pt;}
.y6f{bottom:179.968000pt;}
.yb5{bottom:181.490667pt;}
.yf{bottom:184.521333pt;}
.y7d{bottom:185.585333pt;}
.y106{bottom:189.821333pt;}
.y39{bottom:190.920000pt;}
.y6e{bottom:198.538667pt;}
.y9c{bottom:198.649333pt;}
.yb4{bottom:200.061333pt;}
.ye{bottom:200.422667pt;}
.y7c{bottom:204.154667pt;}
.y105{bottom:206.844000pt;}
.y38{bottom:209.490667pt;}
.y6d{bottom:217.109333pt;}
.y9a{bottom:218.585333pt;}
.yb3{bottom:218.632000pt;}
.y7b{bottom:222.725333pt;}
.y104{bottom:223.866667pt;}
.yd{bottom:224.293333pt;}
.y37{bottom:228.061333pt;}
.yb2{bottom:234.774667pt;}
.y6c{bottom:235.678667pt;}
.yb1{bottom:237.201333pt;}
.yc{bottom:240.193333pt;}
.y103{bottom:240.889333pt;}
.y36{bottom:246.630667pt;}
.yb0{bottom:253.345333pt;}
.y6b{bottom:254.249333pt;}
.y7a{bottom:254.394667pt;}
.yaf{bottom:255.772000pt;}
.yb{bottom:256.093333pt;}
.y102{bottom:257.912000pt;}
.y35{bottom:265.201333pt;}
.y79{bottom:271.490667pt;}
.ya{bottom:271.994667pt;}
.y6a{bottom:272.820000pt;}
.yae{bottom:274.342667pt;}
.y101{bottom:274.936000pt;}
.y34{bottom:283.772000pt;}
.y9{bottom:287.894667pt;}
.y69{bottom:291.389333pt;}
.y100{bottom:291.958667pt;}
.yad{bottom:292.912000pt;}
.y8{bottom:303.794667pt;}
.y33{bottom:306.326667pt;}
.yff{bottom:308.981333pt;}
.y68{bottom:309.960000pt;}
.y7{bottom:319.696000pt;}
.yac{bottom:324.532000pt;}
.yfe{bottom:326.004000pt;}
.y67{bottom:328.530667pt;}
.y6{bottom:335.596000pt;}
.yab{bottom:341.628000pt;}
.yfd{bottom:343.026667pt;}
.y66{bottom:347.100000pt;}
.y5{bottom:356.809333pt;}
.yfc{bottom:360.049333pt;}
.y65{bottom:365.670667pt;}
.y4{bottom:372.710667pt;}
.y32{bottom:376.737333pt;}
.yfb{bottom:377.072000pt;}
.ydf{bottom:379.044000pt;}
.y3{bottom:388.610667pt;}
.yfa{bottom:394.094667pt;}
.y31{bottom:395.308000pt;}
.y64{bottom:397.340000pt;}
.yde{bottom:397.614667pt;}
.y91{bottom:404.422667pt;}
.y2{bottom:404.510667pt;}
.yf9{bottom:411.117333pt;}
.y63{bottom:414.436000pt;}
.ydd{bottom:416.185333pt;}
.y90{bottom:422.993333pt;}
.y1{bottom:425.725333pt;}
.yf8{bottom:428.140000pt;}
.y30{bottom:429.818667pt;}
.y54{bottom:433.740000pt;}
.ydc{bottom:434.756000pt;}
.y8f{bottom:441.562667pt;}
.yf7{bottom:445.162667pt;}
.y2f{bottom:448.388000pt;}
.y53{bottom:452.310667pt;}
.ydb{bottom:453.325333pt;}
.y8e{bottom:460.133333pt;}
.yf6{bottom:462.185333pt;}
.y2e{bottom:466.958667pt;}
.y52{bottom:470.881333pt;}
.yda{bottom:471.896000pt;}
.y8d{bottom:478.704000pt;}
.yf5{bottom:483.193333pt;}
.y2d{bottom:485.529333pt;}
.y51{bottom:489.450667pt;}
.yd9{bottom:490.466667pt;}
.y8c{bottom:497.273333pt;}
.y2c{bottom:504.098667pt;}
.y50{bottom:508.021333pt;}
.yd8{bottom:509.036000pt;}
.y8b{bottom:515.844000pt;}
.yf4{bottom:517.704000pt;}
.y2b{bottom:522.669333pt;}
.y4f{bottom:526.592000pt;}
.yd7{bottom:527.606667pt;}
.y8a{bottom:534.414667pt;}
.y78{bottom:534.548000pt;}
.y2a{bottom:541.240000pt;}
.yf3{bottom:543.006667pt;}
.y4e{bottom:545.161333pt;}
.yd6{bottom:546.177333pt;}
.y77{bottom:551.644000pt;}
.y89{bottom:552.984000pt;}
.y29{bottom:559.809333pt;}
.yf2{bottom:560.338667pt;}
.y4d{bottom:563.732000pt;}
.yd5{bottom:564.746667pt;}
.y88{bottom:571.554667pt;}
.y28{bottom:578.380000pt;}
.y4c{bottom:582.302667pt;}
.yd4{bottom:583.317333pt;}
.yf1{bottom:585.640000pt;}
.y87{bottom:590.125333pt;}
.y27{bottom:596.950667pt;}
.yd2{bottom:601.888000pt;}
.yf0{bottom:602.973333pt;}
.yd3{bottom:606.709333pt;}
.y86{bottom:608.694667pt;}
.y4b{bottom:613.972000pt;}
.y26{bottom:615.520000pt;}
.yef{bottom:620.305333pt;}
.yd1{bottom:620.457333pt;}
.yaa{bottom:626.033333pt;}
.y4a{bottom:631.066667pt;}
.y25{bottom:634.090667pt;}
.yd0{bottom:639.028000pt;}
.y85{bottom:640.364000pt;}
.ya8{bottom:644.602667pt;}
.yee{bottom:645.608000pt;}
.y49{bottom:648.162667pt;}
.ya9{bottom:649.425333pt;}
.y24{bottom:652.661333pt;}
.y84{bottom:657.460000pt;}
.ycf{bottom:657.598667pt;}
.yed{bottom:662.940000pt;}
.ya7{bottom:663.173333pt;}
.y46{bottom:668.100000pt;}
.y23{bottom:671.232000pt;}
.yce{bottom:676.168000pt;}
.yec{bottom:680.272000pt;}
.ya6{bottom:681.744000pt;}
.y22{bottom:689.801333pt;}
.ycd{bottom:692.312000pt;}
.ycc{bottom:694.738667pt;}
.yeb{bottom:697.604000pt;}
.ya5{bottom:700.313333pt;}
.y21{bottom:708.372000pt;}
.y62{bottom:714.936000pt;}
.ya4{bottom:718.884000pt;}
.y20{bottom:726.942667pt;}
.yea{bottom:730.876000pt;}
.ycb{bottom:732.246667pt;}
.y61{bottom:733.506667pt;}
.ya3{bottom:737.454667pt;}
.yca{bottom:748.398667pt;}
.ye9{bottom:749.446667pt;}
.y60{bottom:752.077333pt;}
.y1f{bottom:753.482667pt;}
.yc9{bottom:767.420000pt;}
.ye8{bottom:768.017333pt;}
.ya2{bottom:769.074667pt;}
.y5f{bottom:770.646667pt;}
.yc8{bottom:786.441333pt;}
.ye7{bottom:786.586667pt;}
.y1e{bottom:789.056000pt;}
.y5e{bottom:789.217333pt;}
.y76{bottom:801.948000pt;}
.ye6{bottom:805.157333pt;}
.yc7{bottom:805.462667pt;}
.y1d{bottom:807.260000pt;}
.y5d{bottom:807.788000pt;}
.y1c{bottom:817.748000pt;}
.y75{bottom:819.044000pt;}
.ye5{bottom:823.728000pt;}
.yc6{bottom:824.484000pt;}
.y5c{bottom:826.357333pt;}
.y1b{bottom:832.094667pt;}
.y72{bottom:841.637333pt;}
.ye4{bottom:842.297333pt;}
.yc5{bottom:843.505333pt;}
.y5b{bottom:844.928000pt;}
.y1a{bottom:850.298667pt;}
.ye3{bottom:860.868000pt;}
.yc4{bottom:862.526667pt;}
.y5a{bottom:863.498667pt;}
.ye2{bottom:879.438667pt;}
.yc3{bottom:881.548000pt;}
.y59{bottom:882.068000pt;}
.y19{bottom:890.010667pt;}
.y111{bottom:890.052000pt;}
.y99{bottom:898.009333pt;}
.yc2{bottom:900.569333pt;}
.y58{bottom:904.624000pt;}
.y110{bottom:907.074667pt;}
.y98{bottom:916.578667pt;}
.yc1{bottom:919.590667pt;}
.y83{bottom:920.564000pt;}
.y10f{bottom:924.097333pt;}
.y18{bottom:924.521333pt;}
.y97{bottom:935.149333pt;}
.yc0{bottom:938.612000pt;}
.y45{bottom:939.134667pt;}
.y17{bottom:952.377333pt;}
.y96{bottom:953.720000pt;}
.y44{bottom:957.704000pt;}
.y10e{bottom:962.346667pt;}
.ybf{bottom:965.324000pt;}
.y95{bottom:972.289333pt;}
.y43{bottom:976.274667pt;}
.y10d{bottom:979.369333pt;}
.y16{bottom:980.232000pt;}
.y94{bottom:990.860000pt;}
.y42{bottom:994.845333pt;}
.y10c{bottom:996.392000pt;}
.ybe{bottom:1010.989333pt;}
.y41{bottom:1013.414667pt;}
.y40{bottom:1066.841333pt;}
.h18{height:20.660233pt;}
.h7{height:23.209028pt;}
.h2{height:27.076941pt;}
.h16{height:27.184641pt;}
.h3{height:27.262909pt;}
.h19{height:29.397999pt;}
.h1a{height:30.605184pt;}
.h8{height:30.945242pt;}
.hc{height:31.157778pt;}
.he{height:31.208125pt;}
.hf{height:31.479500pt;}
.h10{height:34.813542pt;}
.h15{height:35.052646pt;}
.h1b{height:36.891307pt;}
.h13{height:37.059648pt;}
.h1c{height:37.087439pt;}
.h1d{height:37.671911pt;}
.h14{height:37.955665pt;}
.h9{height:38.256384pt;}
.ha{height:38.681455pt;}
.h4{height:38.947124pt;}
.hb{height:45.907968pt;}
.h6{height:48.365611pt;}
.h5{height:68.861952pt;}
.h12{height:185.062533pt;}
.hd{height:250.019200pt;}
.h11{height:276.553600pt;}
.h17{height:658.412067pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:421.931733pt;}
.w2{width:469.394347pt;}
.w5{width:500.567667pt;}
.w4{width:667.024260pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x17{left:63.150540pt;}
.x50{left:76.309333pt;}
.x19{left:105.602472pt;}
.xb{left:112.744302pt;}
.x4{left:220.912000pt;}
.x2{left:221.858667pt;}
.x18{left:224.997933pt;}
.xa{left:233.319845pt;}
.x3{left:239.924000pt;}
.x3b{left:246.462667pt;}
.x5{left:250.204000pt;}
.x3c{left:261.702667pt;}
.x4c{left:265.689333pt;}
.x4d{left:278.042667pt;}
.x3d{left:279.066667pt;}
.x3e{left:291.365333pt;}
.x3f{left:299.866667pt;}
.x40{left:303.956000pt;}
.x41{left:314.696000pt;}
.x33{left:324.185333pt;}
.x42{left:329.962667pt;}
.x34{left:339.933333pt;}
.x35{left:343.046667pt;}
.x12{left:345.408000pt;}
.x28{left:346.530667pt;}
.x13{left:352.049333pt;}
.x14{left:355.346667pt;}
.x29{left:356.732000pt;}
.x15{left:361.988000pt;}
.x8{left:410.632000pt;}
.x9{left:417.273333pt;}
.x16{left:418.226793pt;}
.x36{left:431.926667pt;}
.x10{left:448.905333pt;}
.x11{left:455.548000pt;}
.xe{left:459.818667pt;}
.xf{left:466.461333pt;}
.x2a{left:473.270667pt;}
.xc{left:475.149333pt;}
.x1a{left:477.462667pt;}
.xd{left:481.790667pt;}
.x22{left:485.865333pt;}
.x23{left:492.506667pt;}
.x24{left:495.761333pt;}
.x1b{left:499.700540pt;}
.x25{left:502.402667pt;}
.x6{left:531.409333pt;}
.x7{left:538.050667pt;}
.x1c{left:550.837333pt;}
.x4e{left:553.048000pt;}
.x32{left:554.670667pt;}
.x1d{left:556.888000pt;}
.x2b{left:561.178667pt;}
.x43{left:569.456000pt;}
.x2c{left:574.461333pt;}
.x44{left:580.229333pt;}
.x4f{left:582.050667pt;}
.x2d{left:591.002667pt;}
.x45{left:609.382667pt;}
.x2e{left:610.917333pt;}
.x46{left:623.041333pt;}
.x47{left:635.340000pt;}
.x37{left:643.988000pt;}
.x48{left:647.929333pt;}
.x49{left:658.669333pt;}
.x39{left:661.053333pt;}
.x38{left:667.596000pt;}
.x3a{left:668.793333pt;}
.x4a{left:673.937333pt;}
.x26{left:677.914667pt;}
.x2f{left:678.837333pt;}
.x27{left:686.392000pt;}
.x1e{left:688.708000pt;}
.x4b{left:690.388000pt;}
.x1f{left:694.420000pt;}
.x20{left:709.868000pt;}
.x21{left:718.912000pt;}
.x30{left:730.366667pt;}
.x31{left:744.770667pt;}
}




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