
    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_e6960073bb2d45f971e3c50c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.936000;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_efd06b9fff0b03b78d9d8a45.woff')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_4a953d3ca38e8eec8c779885.woff')format("woff");}.ff3{font-family:ff3;line-height:0.946000;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_5cc8469557779da52eab01df.woff')format("woff");}.ff4{font-family:ff4;line-height:0.958000;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_ac73f50046736a592f8ac472.woff')format("woff");}.ff5{font-family:ff5;line-height:0.946000;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_f2e0787ac7d56706455df475.woff')format("woff");}.ff6{font-family:ff6;line-height:0.698000;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_7b54d8d04743180d6859491b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_dcd043039e947acf6837fdda.woff')format("woff");}.ff8{font-family:ff8;line-height:0.942000;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_5fa7885928cff9083ca55eea.woff')format("woff");}.ff9{font-family:ff9;line-height:0.933105;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_a13f4d9ae6da86a261cf285a.woff')format("woff");}.ffa{font-family:ffa;line-height:0.525000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_b0004111417f4cd26ffb39eb.woff')format("woff");}.ffb{font-family:ffb;line-height:0.843000;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_6a086ca0e4a98cea485b6fb7.woff')format("woff");}.ffc{font-family:ffc;line-height:0.710000;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_06c1feb56e1b7a98b06f38c9.woff')format("woff");}.ffd{font-family:ffd;line-height:0.106000;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;}
.m2c{transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245001,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.245249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245249,0.000000,0.000000,0.250000,0,0);}
.m29{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);}
.m19{transform:matrix(0.245751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245751,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.246501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246501,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.246749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246749,0.000000,0.000000,0.250000,0,0);}
.m20{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);}
.m28{transform:matrix(0.247251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247251,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.247499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247499,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m5{transform:matrix(0.248001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248001,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248249,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.mc{transform:matrix(0.248751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248751,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248999,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.m1b{transform:matrix(0.249501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249501,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249749,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);}
.m1c{transform:matrix(0.250251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250251,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m16{transform:matrix(0.251001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251001,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251249,0.000000,0.000000,0.250000,0,0);}
.m24{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);}
.m10{transform:matrix(0.251751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251751,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251999,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m2a{transform:matrix(0.252251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252251,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.252499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252499,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.252501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252501,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.252749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252749,0.000000,0.000000,0.250000,0,0);}
.m23{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);}
.m1{transform:matrix(0.253251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253251,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.253499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253499,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.254001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254001,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.254249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254249,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.ma{transform:matrix(0.254501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254501,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.254751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254751,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.254999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254999,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.m21{transform:matrix(0.255001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255001,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.v1{vertical-align:-15.840000px;}
.v0{vertical-align:0.000000px;}
.ls2c{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.053798px;}
.ls8{letter-spacing:0.107597px;}
.ls77{letter-spacing:0.125528px;}
.ls2{letter-spacing:0.161395px;}
.ls79{letter-spacing:0.167371px;}
.ls80{letter-spacing:0.209214px;}
.ls0{letter-spacing:0.215194px;}
.ls1{letter-spacing:0.268992px;}
.ls1e{letter-spacing:0.322790px;}
.ls27{letter-spacing:0.376589px;}
.ls26{letter-spacing:0.430387px;}
.ls30{letter-spacing:0.537984px;}
.ls31{letter-spacing:0.591782px;}
.ls3f{letter-spacing:0.699379px;}
.ls40{letter-spacing:0.753178px;}
.ls38{letter-spacing:0.806976px;}
.ls39{letter-spacing:0.860774px;}
.ls76{letter-spacing:0.878699px;}
.ls54{letter-spacing:0.914573px;}
.ls29{letter-spacing:0.968371px;}
.ls2a{letter-spacing:1.022170px;}
.ls41{letter-spacing:1.075968px;}
.ls57{letter-spacing:1.129756px;}
.ls49{letter-spacing:1.129766px;}
.ls56{letter-spacing:1.171598px;}
.ls64{letter-spacing:1.237363px;}
.ls23{letter-spacing:1.291162px;}
.ls22{letter-spacing:1.344960px;}
.ls75{letter-spacing:1.398758px;}
.ls74{letter-spacing:1.452557px;}
.ls16{letter-spacing:1.506355px;}
.ls15{letter-spacing:1.560154px;}
.ls1c{letter-spacing:1.667750px;}
.ls1b{letter-spacing:1.721549px;}
.ls4b{letter-spacing:1.757398px;}
.ls52{letter-spacing:1.775347px;}
.ls32{letter-spacing:1.829146px;}
.ls55{letter-spacing:1.882944px;}
.ls73{letter-spacing:1.990541px;}
.ls5e{letter-spacing:2.098138px;}
.ls42{letter-spacing:2.151936px;}
.ls1a{letter-spacing:2.205734px;}
.ls19{letter-spacing:2.259533px;}
.ls1d{letter-spacing:2.313331px;}
.ls28{letter-spacing:2.367130px;}
.ls5{letter-spacing:2.528525px;}
.ls12{letter-spacing:2.534492px;}
.ls13{letter-spacing:2.582312px;}
.ls4{letter-spacing:2.582323px;}
.ls33{letter-spacing:2.689920px;}
.ls6{letter-spacing:2.743718px;}
.ls7{letter-spacing:2.797517px;}
.ls58{letter-spacing:2.958912px;}
.ls2b{letter-spacing:2.988195px;}
.lsa{letter-spacing:3.012710px;}
.ls9{letter-spacing:3.066509px;}
.ls53{letter-spacing:3.174106px;}
.ls3c{letter-spacing:3.227904px;}
.ls3b{letter-spacing:3.281702px;}
.ls3d{letter-spacing:3.335501px;}
.ls3e{letter-spacing:3.389299px;}
.ls45{letter-spacing:3.658291px;}
.ls46{letter-spacing:3.712090px;}
.ls4f{letter-spacing:3.765888px;}
.ls7d{letter-spacing:3.807695px;}
.ls3a{letter-spacing:3.819686px;}
.ls4e{letter-spacing:4.034880px;}
.ls4d{letter-spacing:4.088678px;}
.lsb{letter-spacing:4.250074px;}
.lsc{letter-spacing:4.303872px;}
.ls7b{letter-spacing:4.393494px;}
.ls61{letter-spacing:4.411469px;}
.ls2f{letter-spacing:4.465267px;}
.ls2e{letter-spacing:4.519066px;}
.ls7a{letter-spacing:4.560865px;}
.ls72{letter-spacing:4.572864px;}
.ls47{letter-spacing:4.626662px;}
.ls48{letter-spacing:4.680461px;}
.ls4a{letter-spacing:4.734259px;}
.ls25{letter-spacing:4.788058px;}
.ls10{letter-spacing:4.829881px;}
.ls24{letter-spacing:4.841856px;}
.ls7f{letter-spacing:4.853765px;}
.ls11{letter-spacing:4.877701px;}
.ls78{letter-spacing:4.895608px;}
.ls43{letter-spacing:4.895654px;}
.ls44{letter-spacing:4.949453px;}
.ls5a{letter-spacing:5.003251px;}
.ls59{letter-spacing:5.057050px;}
.ls50{letter-spacing:5.110848px;}
.ls51{letter-spacing:5.164646px;}
.ls34{letter-spacing:5.487437px;}
.ls35{letter-spacing:5.541235px;}
.ls6e{letter-spacing:5.595034px;}
.ls36{letter-spacing:5.702630px;}
.ls37{letter-spacing:5.756429px;}
.ls5d{letter-spacing:5.864026px;}
.ls5c{letter-spacing:5.917824px;}
.ls21{letter-spacing:6.133018px;}
.ls20{letter-spacing:6.186816px;}
.ls1f{letter-spacing:6.240614px;}
.ls71{letter-spacing:6.778598px;}
.ls5b{letter-spacing:7.047590px;}
.ls63{letter-spacing:7.101389px;}
.ls5f{letter-spacing:7.155187px;}
.ls60{letter-spacing:7.208986px;}
.ls65{letter-spacing:7.693171px;}
.ls18{letter-spacing:7.962163px;}
.ls17{letter-spacing:8.015962px;}
.lse{letter-spacing:8.129502px;}
.lsd{letter-spacing:8.177323px;}
.lsf{letter-spacing:8.225143px;}
.ls6a{letter-spacing:10.705882px;}
.ls69{letter-spacing:10.759680px;}
.ls67{letter-spacing:15.762931px;}
.ls66{letter-spacing:15.816730px;}
.ls6d{letter-spacing:16.569907px;}
.ls68{letter-spacing:16.677504px;}
.ls6c{letter-spacing:18.237658px;}
.ls6b{letter-spacing:18.291456px;}
.ls70{letter-spacing:18.452851px;}
.ls6f{letter-spacing:18.506650px;}
.ls7c{letter-spacing:19.582430px;}
.ls7e{letter-spacing:20.921400px;}
.ls81{letter-spacing:21.465356px;}
.ls62{letter-spacing:22.433933px;}
.ls14{letter-spacing:49.090950px;}
.ls4c{letter-spacing:1255.367686px;}
.ls2d{letter-spacing:1830.371443px;}
.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;}
}
.ws1{word-spacing:-17.932800px;}
.ws2{word-spacing:-14.943900px;}
.ws4{word-spacing:-13.449600px;}
.ws6{word-spacing:-11.955150px;}
.ws7{word-spacing:-10.460700px;}
.ws0{word-spacing:-0.103292px;}
.ws3{word-spacing:-0.065455px;}
.wsa{word-spacing:-0.053798px;}
.ws5{word-spacing:-0.047821px;}
.ws8{word-spacing:-0.041843px;}
.ws9{word-spacing:0.000000px;}
._0{margin-left:-6.507421px;}
._3{margin-left:-3.511942px;}
._1{margin-left:-1.549386px;}
._2{width:1.032924px;}
._4{width:2.421820px;}
.fc2{color:rgb(114,23,122);}
.fc1{color:rgb(21,81,150);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:19.067652px;}
.fs8{font-size:32.877000px;}
.fs6{font-size:41.842800px;}
.fs7{font-size:43.636200px;}
.fs5{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs9{font-size:54.000000px;}
.fs2{font-size:59.775600px;}
.fs3{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y5d{bottom:0.189000px;}
.y67{bottom:1.155651px;}
.y62{bottom:1.155806px;}
.y69{bottom:1.155844px;}
.y60{bottom:1.155921px;}
.y65{bottom:1.156114px;}
.y5c{bottom:43.311000px;}
.y32{bottom:126.975980px;}
.y115{bottom:126.979500px;}
.yba{bottom:126.981089px;}
.y5b{bottom:130.939500px;}
.y31{bottom:138.932560px;}
.yee{bottom:139.596000px;}
.yb9{bottom:143.416500px;}
.y5a{bottom:143.556000px;}
.y30{bottom:150.889140px;}
.yed{bottom:151.929000px;}
.y84{bottom:155.427089px;}
.yec{bottom:155.889000px;}
.y114{bottom:159.855000px;}
.yb8{bottom:163.965000px;}
.y2f{bottom:164.038240px;}
.yeb{bottom:168.505500px;}
.y83{bottom:171.862500px;}
.y113{bottom:176.296589px;}
.y59{bottom:186.954089px;}
.y2e{bottom:189.143920px;}
.y82{bottom:192.409500px;}
.y112{bottom:192.732000px;}
.yb7{bottom:198.211500px;}
.y2d{bottom:201.100500px;}
.y142{bottom:202.744500px;}
.y58{bottom:203.389500px;}
.y111{bottom:209.170500px;}
.yb6{bottom:214.650000px;}
.yea{bottom:217.173000px;}
.y141{bottom:219.186089px;}
.y57{bottom:219.828000px;}
.y81{bottom:225.216000px;}
.yb5{bottom:231.088500px;}
.ye9{bottom:233.611500px;}
.y140{bottom:235.621500px;}
.y56{bottom:236.266500px;}
.y110{bottom:238.579500px;}
.y80{bottom:241.657589px;}
.yb4{bottom:247.527000px;}
.ye8{bottom:250.050000px;}
.y13f{bottom:252.060000px;}
.y55{bottom:252.705000px;}
.y2c{bottom:254.182500px;}
.y10f{bottom:255.021089px;}
.y7f{bottom:258.093000px;}
.yb3{bottom:263.965500px;}
.ye7{bottom:266.488500px;}
.y13e{bottom:268.501589px;}
.y54{bottom:269.143500px;}
.y2b{bottom:270.621000px;}
.y2a{bottom:270.627178px;}
.y10e{bottom:271.456500px;}
.y7e{bottom:274.534589px;}
.yb2{bottom:280.404000px;}
.ye6{bottom:282.925500px;}
.y13d{bottom:284.937000px;}
.y53{bottom:285.582000px;}
.y29{bottom:287.062589px;}
.y10d{bottom:287.895000px;}
.y7d{bottom:290.970000px;}
.yb1{bottom:296.842500px;}
.y13c{bottom:301.375500px;}
.y52{bottom:302.019000px;}
.ye5{bottom:303.474000px;}
.y28{bottom:303.498000px;}
.y10c{bottom:304.335089px;}
.y7c{bottom:307.408500px;}
.yb0{bottom:313.279500px;}
.y13b{bottom:317.815589px;}
.y51{bottom:318.457500px;}
.y27{bottom:319.936500px;}
.y10b{bottom:320.770500px;}
.y7b{bottom:323.847000px;}
.yaf{bottom:329.718000px;}
.y13a{bottom:334.251000px;}
.y50{bottom:334.896000px;}
.y26{bottom:336.375000px;}
.y10a{bottom:337.209000px;}
.y7a{bottom:340.285500px;}
.ye4{bottom:340.677000px;}
.yae{bottom:346.159589px;}
.y139{bottom:350.689500px;}
.y4f{bottom:351.334500px;}
.y109{bottom:353.647500px;}
.y79{bottom:356.724000px;}
.y25{bottom:356.923500px;}
.ye3{bottom:357.115500px;}
.yad{bottom:362.595000px;}
.y138{bottom:367.128000px;}
.y4e{bottom:367.776089px;}
.y108{bottom:370.086000px;}
.y78{bottom:373.161000px;}
.ye2{bottom:373.557089px;}
.yac{bottom:379.033500px;}
.y137{bottom:383.566500px;}
.y4d{bottom:384.211500px;}
.y107{bottom:386.524500px;}
.y24{bottom:388.675500px;}
.y77{bottom:389.599500px;}
.ye1{bottom:389.992500px;}
.yab{bottom:395.472000px;}
.y23{bottom:403.620000px;}
.y136{bottom:404.115000px;}
.y4c{bottom:404.760000px;}
.y75{bottom:406.038000px;}
.ydf{bottom:406.431000px;}
.y76{bottom:410.920500px;}
.ye0{bottom:411.313500px;}
.yaa{bottom:411.910500px;}
.y106{bottom:415.933500px;}
.y22{bottom:418.564500px;}
.y74{bottom:422.476500px;}
.yde{bottom:422.869500px;}
.ya9{bottom:428.349000px;}
.y105{bottom:432.372000px;}
.y21{bottom:433.507125px;}
.y73{bottom:438.915000px;}
.ydd{bottom:439.308000px;}
.y4b{bottom:441.004500px;}
.y135{bottom:442.894500px;}
.ya8{bottom:444.787500px;}
.y20{bottom:448.451062px;}
.y104{bottom:448.810500px;}
.ydc{bottom:455.746500px;}
.y4a{bottom:457.443000px;}
.y134{bottom:459.336089px;}
.ya7{bottom:461.230678px;}
.y1f{bottom:463.395000px;}
.y103{bottom:465.250589px;}
.ydb{bottom:472.185000px;}
.y49{bottom:473.881500px;}
.y133{bottom:475.771500px;}
.ya6{bottom:477.666089px;}
.y1e{bottom:478.339500px;}
.y102{bottom:481.686000px;}
.y72{bottom:485.409000px;}
.yda{bottom:488.622000px;}
.y48{bottom:490.324678px;}
.y132{bottom:492.208500px;}
.ya5{bottom:494.101500px;}
.y101{bottom:498.124500px;}
.y1d{bottom:499.446000px;}
.yd9{bottom:505.060500px;}
.y47{bottom:506.760089px;}
.y131{bottom:508.647000px;}
.y100{bottom:514.563000px;}
.ya4{bottom:514.650000px;}
.y1c{bottom:515.884500px;}
.yd8{bottom:521.499000px;}
.y46{bottom:523.195500px;}
.y130{bottom:525.085500px;}
.yff{bottom:531.004589px;}
.y1b{bottom:536.433000px;}
.yd7{bottom:537.937500px;}
.y45{bottom:539.634000px;}
.y12f{bottom:541.524000px;}
.yfe{bottom:547.440000px;}
.ya3{bottom:548.896500px;}
.yd6{bottom:554.376000px;}
.y44{bottom:556.072500px;}
.ya2{bottom:565.335000px;}
.y1a{bottom:568.401000px;}
.yd4{bottom:570.814500px;}
.y43{bottom:572.511000px;}
.y12e{bottom:574.401000px;}
.yd5{bottom:575.697000px;}
.ya1{bottom:581.773500px;}
.y19{bottom:584.842589px;}
.yd3{bottom:587.253000px;}
.y42{bottom:588.949500px;}
.y12d{bottom:590.859622px;}
.ya0{bottom:598.212000px;}
.y18{bottom:601.278000px;}
.yd2{bottom:603.691500px;}
.y41{bottom:605.388000px;}
.y12c{bottom:607.295033px;}
.yfd{bottom:608.736000px;}
.y9f{bottom:614.650500px;}
.y17{bottom:617.716500px;}
.yd1{bottom:620.130000px;}
.y40{bottom:621.826500px;}
.y12b{bottom:623.730444px;}
.yfc{bottom:625.174500px;}
.y9e{bottom:631.089000px;}
.y16{bottom:634.155000px;}
.yd0{bottom:636.568500px;}
.y3e{bottom:638.265000px;}
.y12a{bottom:640.165855px;}
.yfb{bottom:641.613000px;}
.y3f{bottom:643.146000px;}
.y9d{bottom:647.526000px;}
.y15{bottom:650.593500px;}
.ycf{bottom:653.011678px;}
.y3d{bottom:654.703500px;}
.y129{bottom:656.601266px;}
.yfa{bottom:658.051500px;}
.y9c{bottom:663.964500px;}
.y14{bottom:667.032000px;}
.yce{bottom:669.447089px;}
.y3c{bottom:671.140500px;}
.y128{bottom:673.036678px;}
.yf9{bottom:674.490000px;}
.y9b{bottom:680.403000px;}
.y13{bottom:683.470500px;}
.ycd{bottom:685.882500px;}
.y3b{bottom:687.579000px;}
.y127{bottom:689.472089px;}
.yf8{bottom:690.928500px;}
.y9a{bottom:696.847678px;}
.y12{bottom:699.910589px;}
.ycc{bottom:702.321000px;}
.y3a{bottom:704.017500px;}
.y126{bottom:705.907500px;}
.yf7{bottom:707.365500px;}
.y99{bottom:713.283089px;}
.y11{bottom:716.346000px;}
.ycb{bottom:718.762589px;}
.y39{bottom:720.456000px;}
.yf6{bottom:723.804000px;}
.y98{bottom:729.718500px;}
.y97{bottom:729.721589px;}
.y10{bottom:732.784500px;}
.yca{bottom:735.198000px;}
.y38{bottom:736.894500px;}
.y125{bottom:737.589000px;}
.yf5{bottom:740.245589px;}
.y96{bottom:746.157000px;}
.y71{bottom:747.597000px;}
.yf{bottom:749.223000px;}
.yc9{bottom:751.636500px;}
.y36{bottom:753.333000px;}
.y124{bottom:754.027500px;}
.yf4{bottom:756.681000px;}
.y37{bottom:758.215500px;}
.y95{bottom:762.595500px;}
.y70{bottom:764.035500px;}
.ye{bottom:765.661500px;}
.yc8{bottom:768.075000px;}
.y35{bottom:769.771500px;}
.y123{bottom:770.466000px;}
.yf3{bottom:773.119500px;}
.yf2{bottom:773.122589px;}
.y94{bottom:779.034000px;}
.y6f{bottom:780.474000px;}
.yd{bottom:782.100000px;}
.yc7{bottom:784.513500px;}
.y34{bottom:786.210000px;}
.y122{bottom:786.904500px;}
.yf1{bottom:789.558000px;}
.y93{bottom:795.472500px;}
.y6e{bottom:796.915589px;}
.yc{bottom:798.538500px;}
.yc6{bottom:800.952000px;}
.y33{bottom:802.651589px;}
.y121{bottom:803.346089px;}
.yf0{bottom:805.996500px;}
.y6d{bottom:813.351000px;}
.y92{bottom:816.019500px;}
.yc5{bottom:817.390500px;}
.yb{bottom:819.087000px;}
.y120{bottom:819.781500px;}
.yef{bottom:822.435000px;}
.y6c{bottom:829.789500px;}
.yc4{bottom:833.827500px;}
.y11f{bottom:836.218500px;}
.y6b{bottom:846.226500px;}
.ya{bottom:847.532280px;}
.y91{bottom:850.266000px;}
.yc3{bottom:855.148500px;}
.y154{bottom:864.090000px;}
.y9{bottom:865.464960px;}
.y90{bottom:866.704500px;}
.yc2{bottom:866.707589px;}
.y11e{bottom:867.900000px;}
.y153{bottom:876.045000px;}
.y8f{bottom:883.143000px;}
.y8{bottom:883.397640px;}
.y11d{bottom:884.338500px;}
.y152{bottom:888.000000px;}
.y8e{bottom:899.581500px;}
.yc1{bottom:899.584589px;}
.y150{bottom:899.953420px;}
.y151{bottom:899.955000px;}
.y11c{bottom:900.777000px;}
.y7{bottom:901.330320px;}
.y14f{bottom:911.910000px;}
.y8d{bottom:916.020000px;}
.y11b{bottom:917.215500px;}
.y6{bottom:919.263000px;}
.y6a{bottom:920.755248px;}
.y14e{bottom:923.863420px;}
.y8c{bottom:932.458500px;}
.y11a{bottom:933.654000px;}
.y14c{bottom:935.819920px;}
.y14d{bottom:935.820000px;}
.y5{bottom:937.184345px;}
.y14b{bottom:947.776500px;}
.yc0{bottom:948.897000px;}
.y8b{bottom:948.903178px;}
.y119{bottom:950.092500px;}
.y4{bottom:958.111922px;}
.y14a{bottom:959.731500px;}
.y63{bottom:960.579170px;}
.ybf{bottom:965.335500px;}
.y8a{bottom:965.338589px;}
.y118{bottom:966.534089px;}
.y68{bottom:967.828814px;}
.y149{bottom:971.686500px;}
.y3{bottom:979.039500px;}
.y89{bottom:981.774000px;}
.y117{bottom:982.969500px;}
.y147{bottom:983.639920px;}
.y148{bottom:983.641500px;}
.y61{bottom:984.413735px;}
.y146{bottom:995.596500px;}
.ybe{bottom:998.211000px;}
.y88{bottom:998.217178px;}
.y116{bottom:999.406500px;}
.y145{bottom:1007.551500px;}
.y64{bottom:1008.347305px;}
.y5f{bottom:1011.525452px;}
.y66{bottom:1013.809866px;}
.ybd{bottom:1014.649500px;}
.y87{bottom:1014.652589px;}
.y2{bottom:1014.685173px;}
.y144{bottom:1019.506500px;}
.y86{bottom:1031.088000px;}
.y143{bottom:1031.461500px;}
.y1{bottom:1044.562500px;}
.y85{bottom:1047.526500px;}
.ybc{bottom:1083.304374px;}
.y5e{bottom:1086.979500px;}
.ybb{bottom:1095.648000px;}
.h13{height:5.164646px;}
.he{height:5.779220px;}
.hb{height:9.477000px;}
.hf{height:13.900393px;}
.ha{height:23.276916px;}
.hd{height:29.499174px;}
.h8{height:29.624702px;}
.h9{height:30.894430px;}
.h7{height:33.856985px;}
.h6{height:34.430832px;}
.h11{height:35.856844px;}
.h12{height:36.098726px;}
.hc{height:37.152000px;}
.h5{height:38.089267px;}
.h10{height:38.734848px;}
.h3{height:42.321125px;}
.h4{height:47.127312px;}
.h2{height:50.785690px;}
.h1{height:72.098095px;}
.h0{height:1188.000000px;}
.w3{width:5.825833px;}
.w2{width:5.826219px;}
.w1{width:20.250000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xb{left:80.697000px;}
.x34{left:85.266000px;}
.x2{left:90.052357px;}
.x1{left:95.578500px;}
.xc{left:116.703000px;}
.xd{left:122.958000px;}
.x29{left:151.315500px;}
.x21{left:164.265000px;}
.x22{left:174.916500px;}
.x1f{left:177.236381px;}
.x30{left:212.905500px;}
.x1d{left:219.840893px;}
.x31{left:222.103500px;}
.x1e{left:241.490433px;}
.x1b{left:246.158265px;}
.x19{left:255.095987px;}
.x1a{left:262.743187px;}
.x1c{left:273.865548px;}
.x2a{left:288.310500px;}
.x2e{left:307.185000px;}
.x2f{left:310.372500px;}
.x2b{left:325.305000px;}
.xe{left:333.244500px;}
.xf{left:339.498000px;}
.x10{left:345.790500px;}
.x2c{left:351.015000px;}
.x11{left:352.044000px;}
.x20{left:354.307736px;}
.x2d{left:356.835000px;}
.x9{left:370.793939px;}
.x8{left:379.805111px;}
.x6{left:384.363000px;}
.x7{left:392.477538px;}
.xa{left:399.650610px;}
.x5{left:401.941303px;}
.x3{left:404.290500px;}
.x4{left:412.019537px;}
.x32{left:423.918000px;}
.x33{left:432.355500px;}
.x18{left:442.500000px;}
.x12{left:476.932500px;}
.x15{left:491.877000px;}
.x3b{left:495.222000px;}
.x23{left:501.828000px;}
.x24{left:513.366000px;}
.x16{left:636.282000px;}
.x17{left:644.664000px;}
.x25{left:673.039500px;}
.x26{left:684.577500px;}
.x37{left:736.936500px;}
.x38{left:740.124000px;}
.x13{left:763.131000px;}
.x14{left:772.329000px;}
.x35{left:777.249000px;}
.x36{left:780.436500px;}
.x39{left:805.303500px;}
.x3a{left:808.491000px;}
.x27{left:825.403500px;}
.x28{left:831.658500px;}
@media print{
.v1{vertical-align:-14.080000pt;}
.v0{vertical-align:0.000000pt;}
.ls2c{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.047821pt;}
.ls8{letter-spacing:0.095642pt;}
.ls77{letter-spacing:0.111581pt;}
.ls2{letter-spacing:0.143462pt;}
.ls79{letter-spacing:0.148774pt;}
.ls80{letter-spacing:0.185968pt;}
.ls0{letter-spacing:0.191283pt;}
.ls1{letter-spacing:0.239104pt;}
.ls1e{letter-spacing:0.286925pt;}
.ls27{letter-spacing:0.334746pt;}
.ls26{letter-spacing:0.382566pt;}
.ls30{letter-spacing:0.478208pt;}
.ls31{letter-spacing:0.526029pt;}
.ls3f{letter-spacing:0.621670pt;}
.ls40{letter-spacing:0.669491pt;}
.ls38{letter-spacing:0.717312pt;}
.ls39{letter-spacing:0.765133pt;}
.ls76{letter-spacing:0.781066pt;}
.ls54{letter-spacing:0.812954pt;}
.ls29{letter-spacing:0.860774pt;}
.ls2a{letter-spacing:0.908595pt;}
.ls41{letter-spacing:0.956416pt;}
.ls57{letter-spacing:1.004227pt;}
.ls49{letter-spacing:1.004237pt;}
.ls56{letter-spacing:1.041421pt;}
.ls64{letter-spacing:1.099878pt;}
.ls23{letter-spacing:1.147699pt;}
.ls22{letter-spacing:1.195520pt;}
.ls75{letter-spacing:1.243341pt;}
.ls74{letter-spacing:1.291162pt;}
.ls16{letter-spacing:1.338982pt;}
.ls15{letter-spacing:1.386803pt;}
.ls1c{letter-spacing:1.482445pt;}
.ls1b{letter-spacing:1.530266pt;}
.ls4b{letter-spacing:1.562131pt;}
.ls52{letter-spacing:1.578086pt;}
.ls32{letter-spacing:1.625907pt;}
.ls55{letter-spacing:1.673728pt;}
.ls73{letter-spacing:1.769370pt;}
.ls5e{letter-spacing:1.865011pt;}
.ls42{letter-spacing:1.912832pt;}
.ls1a{letter-spacing:1.960653pt;}
.ls19{letter-spacing:2.008474pt;}
.ls1d{letter-spacing:2.056294pt;}
.ls28{letter-spacing:2.104115pt;}
.ls5{letter-spacing:2.247578pt;}
.ls12{letter-spacing:2.252882pt;}
.ls13{letter-spacing:2.295389pt;}
.ls4{letter-spacing:2.295398pt;}
.ls33{letter-spacing:2.391040pt;}
.ls6{letter-spacing:2.438861pt;}
.ls7{letter-spacing:2.486682pt;}
.ls58{letter-spacing:2.630144pt;}
.ls2b{letter-spacing:2.656173pt;}
.lsa{letter-spacing:2.677965pt;}
.ls9{letter-spacing:2.725786pt;}
.ls53{letter-spacing:2.821427pt;}
.ls3c{letter-spacing:2.869248pt;}
.ls3b{letter-spacing:2.917069pt;}
.ls3d{letter-spacing:2.964890pt;}
.ls3e{letter-spacing:3.012710pt;}
.ls45{letter-spacing:3.251814pt;}
.ls46{letter-spacing:3.299635pt;}
.ls4f{letter-spacing:3.347456pt;}
.ls7d{letter-spacing:3.384618pt;}
.ls3a{letter-spacing:3.395277pt;}
.ls4e{letter-spacing:3.586560pt;}
.ls4d{letter-spacing:3.634381pt;}
.lsb{letter-spacing:3.777843pt;}
.lsc{letter-spacing:3.825664pt;}
.ls7b{letter-spacing:3.905328pt;}
.ls61{letter-spacing:3.921306pt;}
.ls2f{letter-spacing:3.969126pt;}
.ls2e{letter-spacing:4.016947pt;}
.ls7a{letter-spacing:4.054102pt;}
.ls72{letter-spacing:4.064768pt;}
.ls47{letter-spacing:4.112589pt;}
.ls48{letter-spacing:4.160410pt;}
.ls4a{letter-spacing:4.208230pt;}
.ls25{letter-spacing:4.256051pt;}
.ls10{letter-spacing:4.293227pt;}
.ls24{letter-spacing:4.303872pt;}
.ls7f{letter-spacing:4.314458pt;}
.ls11{letter-spacing:4.335734pt;}
.ls78{letter-spacing:4.351651pt;}
.ls43{letter-spacing:4.351693pt;}
.ls44{letter-spacing:4.399514pt;}
.ls5a{letter-spacing:4.447334pt;}
.ls59{letter-spacing:4.495155pt;}
.ls50{letter-spacing:4.542976pt;}
.ls51{letter-spacing:4.590797pt;}
.ls34{letter-spacing:4.877722pt;}
.ls35{letter-spacing:4.925542pt;}
.ls6e{letter-spacing:4.973363pt;}
.ls36{letter-spacing:5.069005pt;}
.ls37{letter-spacing:5.116826pt;}
.ls5d{letter-spacing:5.212467pt;}
.ls5c{letter-spacing:5.260288pt;}
.ls21{letter-spacing:5.451571pt;}
.ls20{letter-spacing:5.499392pt;}
.ls1f{letter-spacing:5.547213pt;}
.ls71{letter-spacing:6.025421pt;}
.ls5b{letter-spacing:6.264525pt;}
.ls63{letter-spacing:6.312346pt;}
.ls5f{letter-spacing:6.360166pt;}
.ls60{letter-spacing:6.407987pt;}
.ls65{letter-spacing:6.838374pt;}
.ls18{letter-spacing:7.077478pt;}
.ls17{letter-spacing:7.125299pt;}
.lse{letter-spacing:7.226224pt;}
.lsd{letter-spacing:7.268731pt;}
.lsf{letter-spacing:7.311238pt;}
.ls6a{letter-spacing:9.516339pt;}
.ls69{letter-spacing:9.564160pt;}
.ls67{letter-spacing:14.011494pt;}
.ls66{letter-spacing:14.059315pt;}
.ls6d{letter-spacing:14.728806pt;}
.ls68{letter-spacing:14.824448pt;}
.ls6c{letter-spacing:16.211251pt;}
.ls6b{letter-spacing:16.259072pt;}
.ls70{letter-spacing:16.402534pt;}
.ls6f{letter-spacing:16.450355pt;}
.ls7c{letter-spacing:17.406605pt;}
.ls7e{letter-spacing:18.596800pt;}
.ls81{letter-spacing:19.080317pt;}
.ls62{letter-spacing:19.941274pt;}
.ls14{letter-spacing:43.636400pt;}
.ls4c{letter-spacing:1115.882387pt;}
.ls2d{letter-spacing:1626.996838pt;}
.ws1{word-spacing:-15.940267pt;}
.ws2{word-spacing:-13.283467pt;}
.ws4{word-spacing:-11.955200pt;}
.ws6{word-spacing:-10.626800pt;}
.ws7{word-spacing:-9.298400pt;}
.ws0{word-spacing:-0.091815pt;}
.ws3{word-spacing:-0.058182pt;}
.wsa{word-spacing:-0.047821pt;}
.ws5{word-spacing:-0.042507pt;}
.ws8{word-spacing:-0.037194pt;}
.ws9{word-spacing:0.000000pt;}
._0{margin-left:-5.784374pt;}
._3{margin-left:-3.121726pt;}
._1{margin-left:-1.377232pt;}
._2{width:0.918155pt;}
._4{width:2.152729pt;}
.fsa{font-size:16.949024pt;}
.fs8{font-size:29.224000pt;}
.fs6{font-size:37.193600pt;}
.fs7{font-size:38.787733pt;}
.fs5{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs9{font-size:48.000000pt;}
.fs2{font-size:53.133867pt;}
.fs3{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:0.168000pt;}
.y67{bottom:1.027246pt;}
.y62{bottom:1.027383pt;}
.y69{bottom:1.027417pt;}
.y60{bottom:1.027485pt;}
.y65{bottom:1.027657pt;}
.y5c{bottom:38.498667pt;}
.y32{bottom:112.867538pt;}
.y115{bottom:112.870667pt;}
.yba{bottom:112.872079pt;}
.y5b{bottom:116.390667pt;}
.y31{bottom:123.495609pt;}
.yee{bottom:124.085333pt;}
.yb9{bottom:127.481333pt;}
.y5a{bottom:127.605333pt;}
.y30{bottom:134.123680pt;}
.yed{bottom:135.048000pt;}
.y84{bottom:138.157412pt;}
.yec{bottom:138.568000pt;}
.y114{bottom:142.093333pt;}
.yb8{bottom:145.746667pt;}
.y2f{bottom:145.811769pt;}
.yeb{bottom:149.782667pt;}
.y83{bottom:152.766667pt;}
.y113{bottom:156.708079pt;}
.y59{bottom:166.181412pt;}
.y2e{bottom:168.127929pt;}
.y82{bottom:171.030667pt;}
.y112{bottom:171.317333pt;}
.yb7{bottom:176.188000pt;}
.y2d{bottom:178.756000pt;}
.y142{bottom:180.217333pt;}
.y58{bottom:180.790667pt;}
.y111{bottom:185.929333pt;}
.yb6{bottom:190.800000pt;}
.yea{bottom:193.042667pt;}
.y141{bottom:194.832079pt;}
.y57{bottom:195.402667pt;}
.y81{bottom:200.192000pt;}
.yb5{bottom:205.412000pt;}
.ye9{bottom:207.654667pt;}
.y140{bottom:209.441333pt;}
.y56{bottom:210.014667pt;}
.y110{bottom:212.070667pt;}
.y80{bottom:214.806746pt;}
.yb4{bottom:220.024000pt;}
.ye8{bottom:222.266667pt;}
.y13f{bottom:224.053333pt;}
.y55{bottom:224.626667pt;}
.y2c{bottom:225.940000pt;}
.y10f{bottom:226.685412pt;}
.y7f{bottom:229.416000pt;}
.yb3{bottom:234.636000pt;}
.ye7{bottom:236.878667pt;}
.y13e{bottom:238.668079pt;}
.y54{bottom:239.238667pt;}
.y2b{bottom:240.552000pt;}
.y2a{bottom:240.557491pt;}
.y10e{bottom:241.294667pt;}
.y7e{bottom:244.030746pt;}
.yb2{bottom:249.248000pt;}
.ye6{bottom:251.489333pt;}
.y13d{bottom:253.277333pt;}
.y53{bottom:253.850667pt;}
.y29{bottom:255.166746pt;}
.y10d{bottom:255.906667pt;}
.y7d{bottom:258.640000pt;}
.yb1{bottom:263.860000pt;}
.y13c{bottom:267.889333pt;}
.y52{bottom:268.461333pt;}
.ye5{bottom:269.754667pt;}
.y28{bottom:269.776000pt;}
.y10c{bottom:270.520079pt;}
.y7c{bottom:273.252000pt;}
.yb0{bottom:278.470667pt;}
.y13b{bottom:282.502746pt;}
.y51{bottom:283.073333pt;}
.y27{bottom:284.388000pt;}
.y10b{bottom:285.129333pt;}
.y7b{bottom:287.864000pt;}
.yaf{bottom:293.082667pt;}
.y13a{bottom:297.112000pt;}
.y50{bottom:297.685333pt;}
.y26{bottom:299.000000pt;}
.y10a{bottom:299.741333pt;}
.y7a{bottom:302.476000pt;}
.ye4{bottom:302.824000pt;}
.yae{bottom:307.697412pt;}
.y139{bottom:311.724000pt;}
.y4f{bottom:312.297333pt;}
.y109{bottom:314.353333pt;}
.y79{bottom:317.088000pt;}
.y25{bottom:317.265333pt;}
.ye3{bottom:317.436000pt;}
.yad{bottom:322.306667pt;}
.y138{bottom:326.336000pt;}
.y4e{bottom:326.912079pt;}
.y108{bottom:328.965333pt;}
.y78{bottom:331.698667pt;}
.ye2{bottom:332.050746pt;}
.yac{bottom:336.918667pt;}
.y137{bottom:340.948000pt;}
.y4d{bottom:341.521333pt;}
.y107{bottom:343.577333pt;}
.y24{bottom:345.489333pt;}
.y77{bottom:346.310667pt;}
.ye1{bottom:346.660000pt;}
.yab{bottom:351.530667pt;}
.y23{bottom:358.773333pt;}
.y136{bottom:359.213333pt;}
.y4c{bottom:359.786667pt;}
.y75{bottom:360.922667pt;}
.ydf{bottom:361.272000pt;}
.y76{bottom:365.262667pt;}
.ye0{bottom:365.612000pt;}
.yaa{bottom:366.142667pt;}
.y106{bottom:369.718667pt;}
.y22{bottom:372.057333pt;}
.y74{bottom:375.534667pt;}
.yde{bottom:375.884000pt;}
.ya9{bottom:380.754667pt;}
.y105{bottom:384.330667pt;}
.y21{bottom:385.339667pt;}
.y73{bottom:390.146667pt;}
.ydd{bottom:390.496000pt;}
.y4b{bottom:392.004000pt;}
.y135{bottom:393.684000pt;}
.ya8{bottom:395.366667pt;}
.y20{bottom:398.623167pt;}
.y104{bottom:398.942667pt;}
.ydc{bottom:405.108000pt;}
.y4a{bottom:406.616000pt;}
.y134{bottom:408.298746pt;}
.ya7{bottom:409.982825pt;}
.y1f{bottom:411.906667pt;}
.y103{bottom:413.556079pt;}
.ydb{bottom:419.720000pt;}
.y49{bottom:421.228000pt;}
.y133{bottom:422.908000pt;}
.ya6{bottom:424.592079pt;}
.y1e{bottom:425.190667pt;}
.y102{bottom:428.165333pt;}
.y72{bottom:431.474667pt;}
.yda{bottom:434.330667pt;}
.y48{bottom:435.844158pt;}
.y132{bottom:437.518667pt;}
.ya5{bottom:439.201333pt;}
.y101{bottom:442.777333pt;}
.y1d{bottom:443.952000pt;}
.yd9{bottom:448.942667pt;}
.y47{bottom:450.453412pt;}
.y131{bottom:452.130667pt;}
.y100{bottom:457.389333pt;}
.ya4{bottom:457.466667pt;}
.y1c{bottom:458.564000pt;}
.yd8{bottom:463.554667pt;}
.y46{bottom:465.062667pt;}
.y130{bottom:466.742667pt;}
.yff{bottom:472.004079pt;}
.y1b{bottom:476.829333pt;}
.yd7{bottom:478.166667pt;}
.y45{bottom:479.674667pt;}
.y12f{bottom:481.354667pt;}
.yfe{bottom:486.613333pt;}
.ya3{bottom:487.908000pt;}
.yd6{bottom:492.778667pt;}
.y44{bottom:494.286667pt;}
.ya2{bottom:502.520000pt;}
.y1a{bottom:505.245333pt;}
.yd4{bottom:507.390667pt;}
.y43{bottom:508.898667pt;}
.y12e{bottom:510.578667pt;}
.yd5{bottom:511.730667pt;}
.ya1{bottom:517.132000pt;}
.y19{bottom:519.860079pt;}
.yd3{bottom:522.002667pt;}
.y42{bottom:523.510667pt;}
.y12d{bottom:525.208553pt;}
.ya0{bottom:531.744000pt;}
.y18{bottom:534.469333pt;}
.yd2{bottom:536.614667pt;}
.y41{bottom:538.122667pt;}
.y12c{bottom:539.817807pt;}
.yfd{bottom:541.098667pt;}
.y9f{bottom:546.356000pt;}
.y17{bottom:549.081333pt;}
.yd1{bottom:551.226667pt;}
.y40{bottom:552.734667pt;}
.y12b{bottom:554.427061pt;}
.yfc{bottom:555.710667pt;}
.y9e{bottom:560.968000pt;}
.y16{bottom:563.693333pt;}
.yd0{bottom:565.838667pt;}
.y3e{bottom:567.346667pt;}
.y12a{bottom:569.036316pt;}
.yfb{bottom:570.322667pt;}
.y3f{bottom:571.685333pt;}
.y9d{bottom:575.578667pt;}
.y15{bottom:578.305333pt;}
.ycf{bottom:580.454825pt;}
.y3d{bottom:581.958667pt;}
.y129{bottom:583.645570pt;}
.yfa{bottom:584.934667pt;}
.y9c{bottom:590.190667pt;}
.y14{bottom:592.917333pt;}
.yce{bottom:595.064079pt;}
.y3c{bottom:596.569333pt;}
.y128{bottom:598.254825pt;}
.yf9{bottom:599.546667pt;}
.y9b{bottom:604.802667pt;}
.y13{bottom:607.529333pt;}
.ycd{bottom:609.673333pt;}
.y3b{bottom:611.181333pt;}
.y127{bottom:612.864079pt;}
.yf8{bottom:614.158667pt;}
.y9a{bottom:619.420158pt;}
.y12{bottom:622.142746pt;}
.ycc{bottom:624.285333pt;}
.y3a{bottom:625.793333pt;}
.y126{bottom:627.473333pt;}
.yf7{bottom:628.769333pt;}
.y99{bottom:634.029412pt;}
.y11{bottom:636.752000pt;}
.ycb{bottom:638.900079pt;}
.y39{bottom:640.405333pt;}
.yf6{bottom:643.381333pt;}
.y98{bottom:648.638667pt;}
.y97{bottom:648.641412pt;}
.y10{bottom:651.364000pt;}
.yca{bottom:653.509333pt;}
.y38{bottom:655.017333pt;}
.y125{bottom:655.634667pt;}
.yf5{bottom:657.996079pt;}
.y96{bottom:663.250667pt;}
.y71{bottom:664.530667pt;}
.yf{bottom:665.976000pt;}
.yc9{bottom:668.121333pt;}
.y36{bottom:669.629333pt;}
.y124{bottom:670.246667pt;}
.yf4{bottom:672.605333pt;}
.y37{bottom:673.969333pt;}
.y95{bottom:677.862667pt;}
.y70{bottom:679.142667pt;}
.ye{bottom:680.588000pt;}
.yc8{bottom:682.733333pt;}
.y35{bottom:684.241333pt;}
.y123{bottom:684.858667pt;}
.yf3{bottom:687.217333pt;}
.yf2{bottom:687.220079pt;}
.y94{bottom:692.474667pt;}
.y6f{bottom:693.754667pt;}
.yd{bottom:695.200000pt;}
.yc7{bottom:697.345333pt;}
.y34{bottom:698.853333pt;}
.y122{bottom:699.470667pt;}
.yf1{bottom:701.829333pt;}
.y93{bottom:707.086667pt;}
.y6e{bottom:708.369412pt;}
.yc{bottom:709.812000pt;}
.yc6{bottom:711.957333pt;}
.y33{bottom:713.468079pt;}
.y121{bottom:714.085412pt;}
.yf0{bottom:716.441333pt;}
.y6d{bottom:722.978667pt;}
.y92{bottom:725.350667pt;}
.yc5{bottom:726.569333pt;}
.yb{bottom:728.077333pt;}
.y120{bottom:728.694667pt;}
.yef{bottom:731.053333pt;}
.y6c{bottom:737.590667pt;}
.yc4{bottom:741.180000pt;}
.y11f{bottom:743.305333pt;}
.y6b{bottom:752.201333pt;}
.ya{bottom:753.362027pt;}
.y91{bottom:755.792000pt;}
.yc3{bottom:760.132000pt;}
.y154{bottom:768.080000pt;}
.y9{bottom:769.302187pt;}
.y90{bottom:770.404000pt;}
.yc2{bottom:770.406746pt;}
.y11e{bottom:771.466667pt;}
.y153{bottom:778.706667pt;}
.y8f{bottom:785.016000pt;}
.y8{bottom:785.242347pt;}
.y11d{bottom:786.078667pt;}
.y152{bottom:789.333333pt;}
.y8e{bottom:799.628000pt;}
.yc1{bottom:799.630746pt;}
.y150{bottom:799.958595pt;}
.y151{bottom:799.960000pt;}
.y11c{bottom:800.690667pt;}
.y7{bottom:801.182507pt;}
.y14f{bottom:810.586667pt;}
.y8d{bottom:814.240000pt;}
.y11b{bottom:815.302667pt;}
.y6{bottom:817.122667pt;}
.y6a{bottom:818.449110pt;}
.y14e{bottom:821.211929pt;}
.y8c{bottom:828.852000pt;}
.y11a{bottom:829.914667pt;}
.y14c{bottom:831.839929pt;}
.y14d{bottom:831.840000pt;}
.y5{bottom:833.052751pt;}
.y14b{bottom:842.468000pt;}
.yc0{bottom:843.464000pt;}
.y8b{bottom:843.469491pt;}
.y119{bottom:844.526667pt;}
.y4{bottom:851.655042pt;}
.y14a{bottom:853.094667pt;}
.y63{bottom:853.848151pt;}
.ybf{bottom:858.076000pt;}
.y8a{bottom:858.078746pt;}
.y118{bottom:859.141412pt;}
.y68{bottom:860.292279pt;}
.y149{bottom:863.721333pt;}
.y3{bottom:870.257333pt;}
.y89{bottom:872.688000pt;}
.y117{bottom:873.750667pt;}
.y147{bottom:874.346595pt;}
.y148{bottom:874.348000pt;}
.y61{bottom:875.034432pt;}
.y146{bottom:884.974667pt;}
.ybe{bottom:887.298667pt;}
.y88{bottom:887.304158pt;}
.y116{bottom:888.361333pt;}
.y145{bottom:895.601333pt;}
.y64{bottom:896.308715pt;}
.y5f{bottom:899.133735pt;}
.y66{bottom:901.164326pt;}
.ybd{bottom:901.910667pt;}
.y87{bottom:901.913412pt;}
.y2{bottom:901.942376pt;}
.y144{bottom:906.228000pt;}
.y86{bottom:916.522667pt;}
.y143{bottom:916.854667pt;}
.y1{bottom:928.500000pt;}
.y85{bottom:931.134667pt;}
.ybc{bottom:962.937221pt;}
.y5e{bottom:966.204000pt;}
.ybb{bottom:973.909333pt;}
.h13{height:4.590797pt;}
.he{height:5.137085pt;}
.hb{height:8.424000pt;}
.hf{height:12.355905pt;}
.ha{height:20.690592pt;}
.hd{height:26.221488pt;}
.h8{height:26.333069pt;}
.h9{height:27.461715pt;}
.h7{height:30.095098pt;}
.h6{height:30.605184pt;}
.h11{height:31.872750pt;}
.h12{height:32.087757pt;}
.hc{height:33.024000pt;}
.h5{height:33.857126pt;}
.h10{height:34.430976pt;}
.h3{height:37.618778pt;}
.h4{height:41.890944pt;}
.h2{height:45.142835pt;}
.h1{height:64.087196pt;}
.h0{height:1056.000000pt;}
.w3{width:5.178518pt;}
.w2{width:5.178861pt;}
.w1{width:18.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xb{left:71.730667pt;}
.x34{left:75.792000pt;}
.x2{left:80.046539pt;}
.x1{left:84.958667pt;}
.xc{left:103.736000pt;}
.xd{left:109.296000pt;}
.x29{left:134.502667pt;}
.x21{left:146.013333pt;}
.x22{left:155.481333pt;}
.x1f{left:157.543450pt;}
.x30{left:189.249333pt;}
.x1d{left:195.414127pt;}
.x31{left:197.425333pt;}
.x1e{left:214.658163pt;}
.x1b{left:218.807347pt;}
.x19{left:226.751988pt;}
.x1a{left:233.549500pt;}
.x1c{left:243.436043pt;}
.x2a{left:256.276000pt;}
.x2e{left:273.053333pt;}
.x2f{left:275.886667pt;}
.x2b{left:289.160000pt;}
.xe{left:296.217333pt;}
.xf{left:301.776000pt;}
.x10{left:307.369333pt;}
.x2c{left:312.013333pt;}
.x11{left:312.928000pt;}
.x20{left:314.940209pt;}
.x2d{left:317.186667pt;}
.x9{left:329.594612pt;}
.x8{left:337.604543pt;}
.x6{left:341.656000pt;}
.x7{left:348.868922pt;}
.xa{left:355.244986pt;}
.x5{left:357.281158pt;}
.x3{left:359.369333pt;}
.x4{left:366.239588pt;}
.x32{left:376.816000pt;}
.x33{left:384.316000pt;}
.x18{left:393.333333pt;}
.x12{left:423.940000pt;}
.x15{left:437.224000pt;}
.x3b{left:440.197333pt;}
.x23{left:446.069333pt;}
.x24{left:456.325333pt;}
.x16{left:565.584000pt;}
.x17{left:573.034667pt;}
.x25{left:598.257333pt;}
.x26{left:608.513333pt;}
.x37{left:655.054667pt;}
.x38{left:657.888000pt;}
.x13{left:678.338667pt;}
.x14{left:686.514667pt;}
.x35{left:690.888000pt;}
.x36{left:693.721333pt;}
.x39{left:715.825333pt;}
.x3a{left:718.658667pt;}
.x27{left:733.692000pt;}
.x28{left:739.252000pt;}
}




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