
    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_25c5a4016945cc9eb4ad6504.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_ac04a25545e83a1ea84ef7b8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.691000;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_8f84fb706a3176753d1d3ef6.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_56bb174a764f9fe7f77805ce.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_01603296d50c92520f4a83a6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.761000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d487b913328e08f1794ac3aa.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3aec0ddedfc601a1235fd0e5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_52521e14869355c48b53979a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_2407e84ff1029e226eff4e53.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.191000;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_d96a15ecc30c2b7ae17d74d0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.726000;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_dbc817592b48148df486498f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.186000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_9ed6b7e14b2fe2a91efe10dd.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.991000;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;}
.mb{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);}
.m7{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);}
.m20{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.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m1b{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);}
.m23{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);}
.m4{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);}
.m10{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);}
.md{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);}
.m16{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m1f{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);}
.m1c{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);}
.m27{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.m1a{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);}
.m17{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);}
.m13{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);}
.m1d{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.m15{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);}
.m2{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);}
.m26{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);}
.m25{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.m14{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);}
.m9{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m28{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);}
.m6{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);}
.mf{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);}
.m24{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m29{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);}
.m3{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);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:12.054000px;}
.v1{vertical-align:32.880000px;}
.ls0{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.000435px;}
.ls5{letter-spacing:0.000600px;}
.ls21{letter-spacing:0.000800px;}
.ls2{letter-spacing:0.002725px;}
.ls1d{letter-spacing:0.003634px;}
.ls17{letter-spacing:0.004200px;}
.lsb{letter-spacing:1.275394px;}
.ls1b{letter-spacing:1.704882px;}
.ls3{letter-spacing:1.861130px;}
.ls4{letter-spacing:10.464600px;}
.lsa{letter-spacing:11.954850px;}
.ls1c{letter-spacing:13.479343px;}
.ls9{letter-spacing:14.346144px;}
.ls8{letter-spacing:14.525471px;}
.ls13{letter-spacing:14.645022px;}
.ls11{letter-spacing:14.704798px;}
.ls10{letter-spacing:14.764573px;}
.ls1a{letter-spacing:14.841612px;}
.lsd{letter-spacing:14.884124px;}
.ls16{letter-spacing:14.943900px;}
.ls1{letter-spacing:14.944200px;}
.ls7{letter-spacing:15.018355px;}
.lsf{letter-spacing:15.063451px;}
.lsc{letter-spacing:16.079636px;}
.ls20{letter-spacing:16.577271px;}
.ls1f{letter-spacing:16.583153px;}
.ls18{letter-spacing:17.155597px;}
.ls14{letter-spacing:17.992456px;}
.lse{letter-spacing:20.562806px;}
.ls15{letter-spacing:21.100787px;}
.ls12{letter-spacing:23.611362px;}
.ls1e{letter-spacing:24.526800px;}
.ls6{letter-spacing:28.453654px;}
.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:-22.718660px;}
.ws2{word-spacing:-14.943900px;}
.ws83{word-spacing:-13.449600px;}
.ws33{word-spacing:-11.955150px;}
.ws6{word-spacing:-10.460700px;}
.ws92{word-spacing:-2.929004px;}
.wse{word-spacing:-2.510568px;}
.ws89{word-spacing:-2.450800px;}
.ws93{word-spacing:-2.391024px;}
.ws3f{word-spacing:-2.271473px;}
.ws99{word-spacing:-2.151922px;}
.ws75{word-spacing:-2.092146px;}
.wsa3{word-spacing:-2.044339px;}
.ws2d{word-spacing:-2.032370px;}
.ws36{word-spacing:-1.972595px;}
.ws55{word-spacing:-1.912819px;}
.ws4{word-spacing:-1.908367px;}
.ws97{word-spacing:-1.853044px;}
.wsa4{word-spacing:-1.775347px;}
.wsb1{word-spacing:-1.721549px;}
.ws3b{word-spacing:-1.673717px;}
.ws94{word-spacing:-1.554166px;}
.ws80{word-spacing:-1.494390px;}
.ws39{word-spacing:-1.434614px;}
.ws3a{word-spacing:-1.374839px;}
.ws3{word-spacing:-1.322630px;}
.ws5e{word-spacing:-1.315063px;}
.wsdc{word-spacing:-1.291162px;}
.wsc1{word-spacing:-1.237363px;}
.ws38{word-spacing:-1.195512px;}
.ws6d{word-spacing:-1.135736px;}
.ws8f{word-spacing:-1.075961px;}
.wsbe{word-spacing:-1.022170px;}
.ws52{word-spacing:-1.016185px;}
.wsbf{word-spacing:-0.968371px;}
.ws9f{word-spacing:-0.914573px;}
.ws2f{word-spacing:-0.836858px;}
.wsbd{word-spacing:-0.753178px;}
.ws3e{word-spacing:-0.717307px;}
.wsa0{word-spacing:-0.645581px;}
.wsb0{word-spacing:-0.591782px;}
.ws4d{word-spacing:-0.537980px;}
.wsce{word-spacing:-0.484186px;}
.ws2e{word-spacing:-0.418429px;}
.ws72{word-spacing:-0.358654px;}
.wsa1{word-spacing:-0.322790px;}
.ws4c{word-spacing:-0.298878px;}
.wsa2{word-spacing:-0.268992px;}
.ws24{word-spacing:-0.239102px;}
.ws1c{word-spacing:-0.215194px;}
.ws41{word-spacing:-0.179327px;}
.ws9d{word-spacing:-0.161395px;}
.ws31{word-spacing:-0.119551px;}
.ws14{word-spacing:-0.107597px;}
.ws48{word-spacing:-0.059776px;}
.wsa9{word-spacing:-0.053798px;}
.ws7{word-spacing:-0.041843px;}
.wsb2{word-spacing:-0.013075px;}
.wsd4{word-spacing:-0.010147px;}
.wscc{word-spacing:-0.010080px;}
.wsb6{word-spacing:-0.009149px;}
.wsb3{word-spacing:-0.006806px;}
.wsba{word-spacing:-0.006355px;}
.wsca{word-spacing:-0.006298px;}
.ws8{word-spacing:-0.006026px;}
.wscf{word-spacing:-0.003955px;}
.wsd1{word-spacing:-0.002621px;}
.wse3{word-spacing:-0.002467px;}
.ws32{word-spacing:-0.002401px;}
.wsb7{word-spacing:-0.001843px;}
.wsaf{word-spacing:-0.001555px;}
.wsc6{word-spacing:-0.001171px;}
.wsc5{word-spacing:-0.000710px;}
.wsdb{word-spacing:-0.000422px;}
.ws0{word-spacing:0.000000px;}
.ws17{word-spacing:0.053798px;}
.ws25{word-spacing:0.059776px;}
.ws88{word-spacing:0.107597px;}
.ws35{word-spacing:0.119551px;}
.ws20{word-spacing:0.161395px;}
.ws30{word-spacing:0.179327px;}
.ws11{word-spacing:0.209214px;}
.ws18{word-spacing:0.215194px;}
.ws44{word-spacing:0.239102px;}
.ws1f{word-spacing:0.268992px;}
.ws37{word-spacing:0.298878px;}
.wsc4{word-spacing:0.322790px;}
.wsc{word-spacing:0.334742px;}
.ws34{word-spacing:0.358654px;}
.ws8a{word-spacing:0.418429px;}
.wsd0{word-spacing:0.430387px;}
.ws2c{word-spacing:0.478205px;}
.wse1{word-spacing:0.484186px;}
.wsb5{word-spacing:0.537984px;}
.ws28{word-spacing:0.597756px;}
.ws3d{word-spacing:0.657532px;}
.wse0{word-spacing:0.699379px;}
.ws60{word-spacing:0.717307px;}
.wsb{word-spacing:0.753170px;}
.ws5f{word-spacing:0.777083px;}
.ws40{word-spacing:0.836858px;}
.ws59{word-spacing:0.896634px;}
.ws46{word-spacing:0.956410px;}
.ws62{word-spacing:1.016185px;}
.wscb{word-spacing:1.022170px;}
.ws4a{word-spacing:1.075961px;}
.ws5d{word-spacing:1.135736px;}
.wse2{word-spacing:1.183565px;}
.ws43{word-spacing:1.195512px;}
.ws54{word-spacing:1.255288px;}
.wsd{word-spacing:1.256252px;}
.ws74{word-spacing:1.374839px;}
.ws6e{word-spacing:1.434614px;}
.wsa8{word-spacing:1.452557px;}
.wsae{word-spacing:1.506355px;}
.ws42{word-spacing:1.554166px;}
.ws4f{word-spacing:1.613941px;}
.ws4e{word-spacing:1.673717px;}
.ws23{word-spacing:1.733492px;}
.wsdd{word-spacing:1.775347px;}
.ws81{word-spacing:1.853044px;}
.ws45{word-spacing:1.912819px;}
.ws73{word-spacing:1.972595px;}
.ws7e{word-spacing:2.092146px;}
.ws9c{word-spacing:2.098138px;}
.ws7d{word-spacing:2.151922px;}
.ws8b{word-spacing:2.211697px;}
.ws63{word-spacing:2.271473px;}
.wsab{word-spacing:2.367130px;}
.ws6f{word-spacing:2.391024px;}
.wsc8{word-spacing:2.474726px;}
.ws9{word-spacing:2.510568px;}
.ws95{word-spacing:2.510575px;}
.ws5{word-spacing:2.511541px;}
.ws96{word-spacing:2.570351px;}
.wsc3{word-spacing:2.636122px;}
.wsd9{word-spacing:2.689920px;}
.ws64{word-spacing:2.809453px;}
.wsad{word-spacing:2.823313px;}
.wsac{word-spacing:2.851315px;}
.ws29{word-spacing:2.869229px;}
.ws13{word-spacing:2.869236px;}
.ws1b{word-spacing:2.905114px;}
.ws56{word-spacing:2.929004px;}
.wsb4{word-spacing:2.958912px;}
.ws57{word-spacing:2.988780px;}
.ws4b{word-spacing:3.048556px;}
.wsc2{word-spacing:3.066509px;}
.ws9b{word-spacing:3.120307px;}
.ws65{word-spacing:3.168107px;}
.wsc0{word-spacing:3.174106px;}
.wsb9{word-spacing:3.223219px;}
.ws9e{word-spacing:3.224822px;}
.wscd{word-spacing:3.225312px;}
.wsda{word-spacing:3.226368px;}
.wsaa{word-spacing:3.227779px;}
.ws6c{word-spacing:3.227882px;}
.wsa5{word-spacing:3.227904px;}
.wsd5{word-spacing:3.281702px;}
.wsd8{word-spacing:3.335501px;}
.wsd6{word-spacing:3.389299px;}
.ws9a{word-spacing:3.443098px;}
.ws47{word-spacing:3.466985px;}
.wsd2{word-spacing:3.496896px;}
.ws58{word-spacing:3.526760px;}
.ws1a{word-spacing:3.550694px;}
.ws22{word-spacing:3.586536px;}
.ws2a{word-spacing:3.646312px;}
.ws79{word-spacing:3.706087px;}
.ws53{word-spacing:3.765863px;}
.ws16{word-spacing:3.819686px;}
.ws51{word-spacing:3.825638px;}
.wsc9{word-spacing:3.873485px;}
.ws8e{word-spacing:3.885414px;}
.ws27{word-spacing:3.945190px;}
.wsde{word-spacing:3.981082px;}
.ws49{word-spacing:4.004965px;}
.ws7c{word-spacing:4.064741px;}
.ws7a{word-spacing:4.184292px;}
.ws91{word-spacing:4.244068px;}
.ws15{word-spacing:4.250074px;}
.wsd7{word-spacing:4.303872px;}
.wsbb{word-spacing:4.357670px;}
.ws5b{word-spacing:4.363619px;}
.ws10{word-spacing:4.393494px;}
.ws19{word-spacing:4.411469px;}
.ws50{word-spacing:4.483170px;}
.ws5c{word-spacing:4.542946px;}
.ws3c{word-spacing:4.602721px;}
.wsdf{word-spacing:4.626662px;}
.ws2b{word-spacing:4.662497px;}
.ws61{word-spacing:4.722272px;}
.ws21{word-spacing:4.734259px;}
.ws66{word-spacing:4.782048px;}
.ws98{word-spacing:4.841824px;}
.ws8c{word-spacing:5.021150px;}
.ws90{word-spacing:5.080926px;}
.wsb8{word-spacing:5.110848px;}
.wsd3{word-spacing:5.218445px;}
.ws82{word-spacing:5.320028px;}
.ws76{word-spacing:5.499355px;}
.ws77{word-spacing:5.559131px;}
.ws71{word-spacing:5.618906px;}
.ws70{word-spacing:5.678682px;}
.ws26{word-spacing:5.798233px;}
.ws1e{word-spacing:5.971622px;}
.wsa7{word-spacing:6.133018px;}
.ws6b{word-spacing:6.276438px;}
.ws8d{word-spacing:6.336214px;}
.ws1d{word-spacing:6.348211px;}
.wsa{word-spacing:6.360106px;}
.wsc7{word-spacing:6.455808px;}
.ws5a{word-spacing:6.694867px;}
.ws67{word-spacing:7.053521px;}
.ws68{word-spacing:7.113296px;}
.ws7f{word-spacing:7.292623px;}
.ws69{word-spacing:7.352399px;}
.ws6a{word-spacing:7.412174px;}
.wsa6{word-spacing:7.746970px;}
.ws7b{word-spacing:8.428360px;}
.ws12{word-spacing:10.920971px;}
.wsbc{word-spacing:12.212237px;}
.ws78{word-spacing:16.079636px;}
.wsf{word-spacing:21.465356px;}
.ws84{word-spacing:198.928310px;}
.ws85{word-spacing:301.359254px;}
.ws87{word-spacing:307.971254px;}
.ws86{word-spacing:312.195254px;}
._12{margin-left:-23.252708px;}
._2{margin-left:-21.578992px;}
._28{margin-left:-19.534253px;}
._6{margin-left:-15.610120px;}
._18{margin-left:-7.053521px;}
._e{margin-left:-5.917824px;}
._4{margin-left:-4.423394px;}
._7{margin-left:-3.275681px;}
._5{margin-left:-1.322630px;}
._1{width:1.673725px;}
._11{width:3.295225px;}
._20{width:5.036285px;}
._1b{width:7.310303px;}
._26{width:11.006278px;}
._8{width:12.971268px;}
._15{width:14.824386px;}
._d{width:16.170989px;}
._14{width:17.517401px;}
._13{width:18.706652px;}
._10{width:20.905248px;}
._19{width:22.064764px;}
._1e{width:23.499378px;}
._1a{width:24.866650px;}
._9{width:25.948562px;}
._29{width:27.072521px;}
._c{width:28.148489px;}
._b{width:29.589120px;}
._1c{width:30.971328px;}
._0{width:33.355008px;}
._f{width:35.237952px;}
._1f{width:36.291356px;}
._a{width:37.365620px;}
._1d{width:40.408306px;}
._3{width:69.366426px;}
._23{width:95.362234px;}
._22{width:107.704397px;}
._24{width:141.195811px;}
._25{width:162.265901px;}
._21{width:319.293504px;}
._16{width:915.433946px;}
._27{width:2558.925600px;}
._17{width:2582.835600px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(81,125,151);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:41.842800px;}
.fs9{font-size:41.936104px;}
.fs4{font-size:42.000000px;}
.fs8{font-size:47.236800px;}
.fsb{font-size:47.820600px;}
.fsc{font-size:53.798400px;}
.fs6{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:90.874640px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y2b{bottom:3.425340px;}
.y24{bottom:9.233944px;}
.y2a{bottom:14.151273px;}
.y23{bottom:26.903761px;}
.y69{bottom:31.890000px;}
.y5{bottom:66.525004px;}
.y171{bottom:92.574000px;}
.yf2{bottom:95.935500px;}
.y4{bottom:97.125005px;}
.y15c{bottom:101.875500px;}
.y40{bottom:102.823500px;}
.y1a8{bottom:103.557000px;}
.y160{bottom:106.246500px;}
.yd6{bottom:106.695000px;}
.y9f{bottom:108.919500px;}
.y170{bottom:109.834500px;}
.yf1{bottom:114.765000px;}
.y68{bottom:116.422500px;}
.y15b{bottom:120.705000px;}
.y3f{bottom:120.711000px;}
.y1a7{bottom:120.817500px;}
.y11f{bottom:124.627500px;}
.y15f{bottom:125.076000px;}
.yd5{bottom:125.524500px;}
.y9e{bottom:127.749000px;}
.y16f{bottom:131.577000px;}
.yf0{bottom:133.594500px;}
.y67{bottom:135.252000px;}
.y1a6{bottom:138.078000px;}
.y3e{bottom:138.600000px;}
.y21{bottom:139.264499px;}
.y15a{bottom:139.534500px;}
.y11e{bottom:143.457000px;}
.y15e{bottom:143.905500px;}
.yd4{bottom:144.354000px;}
.y9d{bottom:146.578500px;}
.yef{bottom:152.424000px;}
.y66{bottom:154.081500px;}
.y1a5{bottom:155.338500px;}
.y3d{bottom:156.487500px;}
.y159{bottom:158.362500px;}
.y11d{bottom:162.286500px;}
.yd3{bottom:163.183500px;}
.y16e{bottom:165.201000px;}
.y9c{bottom:165.406500px;}
.y15d{bottom:167.218500px;}
.y1a4{bottom:172.599000px;}
.y65{bottom:172.911000px;}
.y3c{bottom:174.375000px;}
.yee{bottom:175.737000px;}
.y158{bottom:177.192000px;}
.y11c{bottom:181.116000px;}
.yd2{bottom:182.013000px;}
.y16d{bottom:182.775000px;}
.y9b{bottom:184.236000px;}
.y1a3{bottom:189.858000px;}
.y64{bottom:191.740500px;}
.y3b{bottom:192.264000px;}
.yed{bottom:194.566500px;}
.y157{bottom:196.021500px;}
.y18{bottom:196.933500px;}
.y11b{bottom:199.945500px;}
.y16c{bottom:200.349000px;}
.yd1{bottom:200.842500px;}
.y9a{bottom:203.065500px;}
.y1a2{bottom:207.118500px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y3a{bottom:210.151500px;}
.y63{bottom:210.570000px;}
.yec{bottom:213.396000px;}
.y156{bottom:214.851000px;}
.y11a{bottom:218.775000px;}
.yd0{bottom:219.672000px;}
.y99{bottom:221.895000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y1a1{bottom:224.379000px;}
.y16b{bottom:226.890000px;}
.y39{bottom:228.039000px;}
.y62{bottom:229.399500px;}
.yeb{bottom:232.225500px;}
.y155{bottom:233.680500px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y119{bottom:237.604500px;}
.ycf{bottom:238.501500px;}
.y98{bottom:240.724500px;}
.y1a0{bottom:241.639500px;}
.y16a{bottom:244.464000px;}
.y61{bottom:248.229000px;}
.yea{bottom:251.055000px;}
.y154{bottom:252.510000px;}
.y118{bottom:256.434000px;}
.yce{bottom:257.331000px;}
.y19f{bottom:258.900000px;}
.y97{bottom:259.554000px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y60{bottom:267.058500px;}
.ye9{bottom:269.884500px;}
.y169{bottom:271.005000px;}
.y153{bottom:271.339500px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y117{bottom:275.263500px;}
.ycd{bottom:276.160500px;}
.y96{bottom:278.383500px;}
.y1b{bottom:285.118502px;}
.y168{bottom:285.127500px;}
.y12{bottom:285.133499px;}
.y5f{bottom:285.888000px;}
.ye8{bottom:288.714000px;}
.y152{bottom:290.169000px;}
.y19e{bottom:293.421000px;}
.y116{bottom:294.093000px;}
.ycc{bottom:294.990000px;}
.y38{bottom:295.342500px;}
.y95{bottom:297.213000px;}
.y167{bottom:299.248500px;}
.y5e{bottom:304.717500px;}
.ye7{bottom:307.543500px;}
.y151{bottom:308.998500px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y19d{bottom:310.681500px;}
.y115{bottom:312.922500px;}
.y37{bottom:313.231500px;}
.ycb{bottom:313.819500px;}
.y94{bottom:316.042500px;}
.y166{bottom:322.338000px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y5d{bottom:323.547000px;}
.y150{bottom:327.828000px;}
.y19c{bottom:327.940500px;}
.ye6{bottom:330.855000px;}
.y36{bottom:331.119000px;}
.y114{bottom:331.752000px;}
.yca{bottom:332.649000px;}
.y93{bottom:334.872000px;}
.y5c{bottom:342.376500px;}
.y19b{bottom:345.201000px;}
.y165{bottom:345.426000px;}
.y14f{bottom:346.657500px;}
.yf{bottom:348.133500px;}
.y35{bottom:349.006500px;}
.ye5{bottom:349.684500px;}
.y113{bottom:350.581500px;}
.yc9{bottom:351.478500px;}
.y92{bottom:353.701500px;}
.y5b{bottom:361.206000px;}
.y19a{bottom:362.461500px;}
.y14e{bottom:365.487000px;}
.ye4{bottom:368.514000px;}
.y112{bottom:369.411000px;}
.yc8{bottom:370.308000px;}
.y91{bottom:372.531000px;}
.y199{bottom:379.722000px;}
.y5a{bottom:380.035500px;}
.y14d{bottom:384.316500px;}
.y34{bottom:384.828000px;}
.ye{bottom:386.785499px;}
.ye3{bottom:387.343500px;}
.y111{bottom:388.240500px;}
.yc7{bottom:389.137500px;}
.y90{bottom:391.360500px;}
.y164{bottom:395.055000px;}
.y198{bottom:396.982500px;}
.y59{bottom:398.865000px;}
.y33{bottom:402.715500px;}
.y14c{bottom:403.146000px;}
.ye2{bottom:406.173000px;}
.y110{bottom:407.070000px;}
.yc6{bottom:407.967000px;}
.yd{bottom:408.044999px;}
.y8f{bottom:410.190000px;}
.y163{bottom:412.629000px;}
.y197{bottom:414.243000px;}
.y58{bottom:417.694500px;}
.y32{bottom:420.604500px;}
.ye1{bottom:425.002500px;}
.y10f{bottom:425.899500px;}
.y14b{bottom:426.459000px;}
.yc5{bottom:426.796500px;}
.y8e{bottom:429.019500px;}
.y162{bottom:430.203000px;}
.y196{bottom:431.503500px;}
.y57{bottom:436.524000px;}
.ye0{bottom:443.832000px;}
.y10e{bottom:444.729000px;}
.yc4{bottom:445.626000px;}
.y161{bottom:447.777000px;}
.y8d{bottom:447.849000px;}
.y195{bottom:448.764000px;}
.y56{bottom:455.353500px;}
.y31{bottom:456.424500px;}
.y14a{bottom:460.083000px;}
.ydf{bottom:462.661500px;}
.y10d{bottom:463.558500px;}
.yc3{bottom:464.454000px;}
.y194{bottom:466.024500px;}
.y8c{bottom:466.678500px;}
.y30{bottom:474.312000px;}
.y55{bottom:478.666500px;}
.y149{bottom:478.912500px;}
.yde{bottom:481.491000px;}
.y10c{bottom:482.388000px;}
.yc2{bottom:483.283500px;}
.y8b{bottom:485.508000px;}
.y2f{bottom:492.201000px;}
.y148{bottom:497.742000px;}
.ydd{bottom:500.320500px;}
.y193{bottom:500.544000px;}
.y10b{bottom:501.217500px;}
.yc1{bottom:502.113000px;}
.yc{bottom:502.864502px;}
.y8a{bottom:508.821000px;}
.y2e{bottom:510.088500px;}
.y147{bottom:516.571500px;}
.y192{bottom:517.804500px;}
.ydc{bottom:519.150000px;}
.y10a{bottom:520.047000px;}
.yb{bottom:520.864502px;}
.yc0{bottom:520.942500px;}
.y2d{bottom:527.976000px;}
.y191{bottom:535.065000px;}
.y146{bottom:535.401000px;}
.ydb{bottom:537.979500px;}
.ya{bottom:538.864499px;}
.y109{bottom:538.876500px;}
.ybf{bottom:539.772000px;}
.y89{bottom:542.445000px;}
.y2c{bottom:545.865000px;}
.y190{bottom:552.325500px;}
.y54{bottom:553.816500px;}
.yda{bottom:556.809000px;}
.y9{bottom:556.864499px;}
.y108{bottom:557.706000px;}
.ybe{bottom:558.601500px;}
.y88{bottom:561.274500px;}
.y29{bottom:568.235964px;}
.y18f{bottom:569.586000px;}
.y53{bottom:573.273000px;}
.yd9{bottom:575.638500px;}
.y107{bottom:576.535500px;}
.ybd{bottom:577.431000px;}
.y87{bottom:580.104000px;}
.y142{bottom:580.863000px;}
.y18e{bottom:586.846500px;}
.y145{bottom:589.081500px;}
.y106{bottom:595.365000px;}
.ybc{bottom:596.260500px;}
.y140{bottom:597.300000px;}
.y86{bottom:598.932000px;}
.yd8{bottom:598.951500px;}
.y18d{bottom:604.107000px;}
.y143{bottom:605.520000px;}
.y52{bottom:610.663500px;}
.y13f{bottom:613.738500px;}
.y105{bottom:614.194500px;}
.ybb{bottom:615.090000px;}
.y85{bottom:617.761500px;}
.yd7{bottom:619.125000px;}
.y18c{bottom:621.366000px;}
.y144{bottom:621.958500px;}
.y51{bottom:630.120000px;}
.y141{bottom:630.177000px;}
.y104{bottom:633.022500px;}
.yba{bottom:633.919500px;}
.y84{bottom:636.591000px;}
.y18b{bottom:638.626500px;}
.y8{bottom:645.510000px;}
.y50{bottom:649.576500px;}
.y103{bottom:651.852000px;}
.yb9{bottom:652.749000px;}
.y13e{bottom:653.818500px;}
.y83{bottom:655.420500px;}
.y18a{bottom:655.887000px;}
.y13b{bottom:662.037000px;}
.y7{bottom:666.771000px;}
.y4f{bottom:669.034500px;}
.y13d{bottom:670.257000px;}
.yb8{bottom:671.578500px;}
.y189{bottom:673.147500px;}
.y82{bottom:674.250000px;}
.y102{bottom:675.165000px;}
.y13a{bottom:678.475500px;}
.y13c{bottom:686.695500px;}
.y4e{bottom:688.491000px;}
.yb7{bottom:690.408000px;}
.y81{bottom:693.079500px;}
.y188{bottom:707.668500px;}
.y4d{bottom:707.947500px;}
.y101{bottom:708.789000px;}
.yb6{bottom:709.237500px;}
.y139{bottom:710.335500px;}
.y80{bottom:711.909000px;}
.y187{bottom:724.929000px;}
.y6{bottom:726.298500px;}
.y137{bottom:726.774000px;}
.y4c{bottom:727.405500px;}
.y100{bottom:727.618500px;}
.yb5{bottom:728.067000px;}
.y7f{bottom:730.738500px;}
.y134{bottom:734.992500px;}
.y186{bottom:742.189500px;}
.y136{bottom:743.212500px;}
.yff{bottom:746.448000px;}
.y4b{bottom:746.862000px;}
.yb4{bottom:746.896500px;}
.y7e{bottom:749.568000px;}
.y133{bottom:751.431000px;}
.y3{bottom:752.599495px;}
.y185{bottom:759.450000px;}
.y135{bottom:759.651000px;}
.yfe{bottom:765.277500px;}
.yb3{bottom:765.726000px;}
.y4a{bottom:766.320000px;}
.y7d{bottom:768.397500px;}
.y138{bottom:776.089500px;}
.y184{bottom:776.709000px;}
.yfd{bottom:784.107000px;}
.yb2{bottom:784.555500px;}
.y49{bottom:785.776500px;}
.y7c{bottom:787.227000px;}
.y183{bottom:793.969500px;}
.y132{bottom:799.729500px;}
.yfc{bottom:802.936500px;}
.yb1{bottom:803.385000px;}
.y48{bottom:805.233000px;}
.y7b{bottom:806.056500px;}
.y12f{bottom:807.949500px;}
.y182{bottom:811.230000px;}
.y131{bottom:816.168000px;}
.yfb{bottom:821.766000px;}
.yb0{bottom:822.214500px;}
.y12e{bottom:824.388000px;}
.y47{bottom:824.691000px;}
.y7a{bottom:824.886000px;}
.y181{bottom:828.490500px;}
.y130{bottom:832.606500px;}
.yfa{bottom:840.595500px;}
.yaf{bottom:841.044000px;}
.y79{bottom:843.715500px;}
.y46{bottom:844.147500px;}
.y180{bottom:845.751000px;}
.y12c{bottom:856.246500px;}
.yf9{bottom:859.425000px;}
.yae{bottom:859.873500px;}
.y78{bottom:862.545000px;}
.y17f{bottom:863.011500px;}
.y45{bottom:863.604000px;}
.y12a{bottom:872.685000px;}
.yf8{bottom:878.254500px;}
.yad{bottom:878.703000px;}
.y2{bottom:879.369000px;}
.y17e{bottom:880.272000px;}
.y12d{bottom:880.905000px;}
.y77{bottom:881.374500px;}
.y44{bottom:883.062000px;}
.y129{bottom:889.123500px;}
.yf7{bottom:897.084000px;}
.yac{bottom:897.532500px;}
.y76{bottom:900.204000px;}
.y12b{bottom:905.562000px;}
.y17d{bottom:914.793000px;}
.yf6{bottom:915.913500px;}
.yab{bottom:916.362000px;}
.y75{bottom:919.033500px;}
.y43{bottom:921.646500px;}
.y128{bottom:929.203500px;}
.y17c{bottom:932.052000px;}
.yf5{bottom:934.743000px;}
.yaa{bottom:935.191500px;}
.y125{bottom:937.422000px;}
.y42{bottom:937.786500px;}
.y74{bottom:937.863000px;}
.y127{bottom:945.642000px;}
.y17b{bottom:949.312500px;}
.yf4{bottom:953.572500px;}
.y124{bottom:953.860500px;}
.y41{bottom:953.926500px;}
.ya9{bottom:954.021000px;}
.y73{bottom:956.692500px;}
.y126{bottom:962.079000px;}
.y17a{bottom:966.573000px;}
.y1{bottom:966.726000px;}
.ya8{bottom:972.849000px;}
.y72{bottom:975.522000px;}
.yf3{bottom:976.884000px;}
.y179{bottom:983.833500px;}
.y123{bottom:985.720500px;}
.ya7{bottom:991.678500px;}
.y71{bottom:994.351500px;}
.y28{bottom:998.460000px;}
.y178{bottom:1001.094000px;}
.y121{bottom:1002.159000px;}
.ya6{bottom:1010.508000px;}
.y70{bottom:1013.181000px;}
.y177{bottom:1018.354500px;}
.y122{bottom:1018.597500px;}
.ya5{bottom:1029.337500px;}
.y6f{bottom:1032.010500px;}
.y176{bottom:1035.615000px;}
.y27{bottom:1041.199500px;}
.ya3{bottom:1048.167000px;}
.ya4{bottom:1048.399500px;}
.y120{bottom:1050.216000px;}
.y6e{bottom:1050.840000px;}
.y175{bottom:1052.875500px;}
.ya2{bottom:1066.996500px;}
.y26{bottom:1069.443000px;}
.y6d{bottom:1069.669500px;}
.y173{bottom:1070.134500px;}
.y174{bottom:1070.343000px;}
.ya1{bottom:1085.826000px;}
.y172{bottom:1087.395000px;}
.y6c{bottom:1088.499000px;}
.y25{bottom:1097.688000px;}
.ya0{bottom:1104.655500px;}
.y6b{bottom:1107.327000px;}
.y22{bottom:1141.174500px;}
.y6a{bottom:1173.397500px;}
.h10{height:25.508090px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h12{height:33.112997px;}
.h11{height:34.199443px;}
.h13{height:37.993262px;}
.h15{height:38.734848px;}
.h1c{height:41.783144px;}
.h17{height:43.038432px;}
.h14{height:43.421105px;}
.hd{height:43.815515px;}
.hf{height:44.473046px;}
.h7{height:45.960000px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h16{height:48.848947px;}
.hb{height:50.930649px;}
.h1d{height:51.488227px;}
.h18{height:54.276245px;}
.h2{height:55.152000px;}
.h19{height:55.206245px;}
.hc{height:61.613006px;}
.he{height:77.469696px;}
.h5{height:78.132000px;}
.h1b{height:81.722947px;}
.h1a{height:81.728947px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.ha{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:75.364879px;}
.w4{width:197.527766px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:29.274117px;}
.x5{left:54.000000px;}
.x6{left:58.054042px;}
.x2d{left:78.651000px;}
.x23{left:81.354000px;}
.x47{left:85.600500px;}
.x29{left:94.038000px;}
.x22{left:98.442000px;}
.x3d{left:99.975000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x49{left:121.233000px;}
.x48{left:122.773500px;}
.x32{left:194.379000px;}
.x3a{left:196.014000px;}
.x4{left:203.484001px;}
.x24{left:205.179000px;}
.x3b{left:211.003500px;}
.x33{left:224.278500px;}
.x25{left:236.167500px;}
.x9{left:249.832500px;}
.x8{left:250.897500px;}
.xc{left:282.786000px;}
.x15{left:285.490500px;}
.xa{left:309.451500px;}
.xb{left:323.748000px;}
.x2a{left:327.250500px;}
.x27{left:329.529000px;}
.x16{left:331.315500px;}
.x26{left:332.454000px;}
.x34{left:337.021500px;}
.x3c{left:338.568000px;}
.x11{left:341.890500px;}
.x18{left:346.684500px;}
.x10{left:350.766000px;}
.x2b{left:351.855000px;}
.x3e{left:353.818500px;}
.x17{left:359.380500px;}
.x35{left:365.466000px;}
.x45{left:373.695000px;}
.x46{left:378.192000px;}
.x13{left:392.083500px;}
.x43{left:394.603500px;}
.x44{left:428.736000px;}
.x12{left:433.330500px;}
.x14{left:441.460500px;}
.x3{left:454.959000px;}
.x2c{left:457.080000px;}
.xd{left:468.330000px;}
.x37{left:471.417000px;}
.x1b{left:473.010000px;}
.x19{left:474.699000px;}
.x36{left:476.992500px;}
.x1a{left:480.112500px;}
.x2e{left:481.779000px;}
.x28{left:486.184500px;}
.x2f{left:587.185500px;}
.x38{left:590.643000px;}
.x1d{left:599.727000px;}
.x1e{left:603.829500px;}
.x1c{left:608.503500px;}
.x3f{left:614.757000px;}
.x30{left:621.516000px;}
.x41{left:702.418500px;}
.x42{left:714.685500px;}
.x31{left:721.891500px;}
.x40{left:724.144500px;}
.x21{left:734.649000px;}
.x1f{left:737.082000px;}
.x20{left:749.611500px;}
.x39{left:753.874500px;}
.xf{left:831.726000px;}
.xe{left:833.437500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:10.714667pt;}
.v1{vertical-align:29.226667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.000387pt;}
.ls5{letter-spacing:0.000533pt;}
.ls21{letter-spacing:0.000711pt;}
.ls2{letter-spacing:0.002422pt;}
.ls1d{letter-spacing:0.003230pt;}
.ls17{letter-spacing:0.003733pt;}
.lsb{letter-spacing:1.133683pt;}
.ls1b{letter-spacing:1.515450pt;}
.ls3{letter-spacing:1.654338pt;}
.ls4{letter-spacing:9.301867pt;}
.lsa{letter-spacing:10.626533pt;}
.ls1c{letter-spacing:11.981638pt;}
.ls9{letter-spacing:12.752128pt;}
.ls8{letter-spacing:12.911530pt;}
.ls13{letter-spacing:13.017797pt;}
.ls11{letter-spacing:13.070931pt;}
.ls10{letter-spacing:13.124065pt;}
.ls1a{letter-spacing:13.192544pt;}
.lsd{letter-spacing:13.230333pt;}
.ls16{letter-spacing:13.283467pt;}
.ls1{letter-spacing:13.283733pt;}
.ls7{letter-spacing:13.349649pt;}
.lsf{letter-spacing:13.389734pt;}
.lsc{letter-spacing:14.293010pt;}
.ls20{letter-spacing:14.735352pt;}
.ls1f{letter-spacing:14.740580pt;}
.ls18{letter-spacing:15.249420pt;}
.ls14{letter-spacing:15.993294pt;}
.lse{letter-spacing:18.278050pt;}
.ls15{letter-spacing:18.756255pt;}
.ls12{letter-spacing:20.987877pt;}
.ls1e{letter-spacing:21.801600pt;}
.ls6{letter-spacing:25.292137pt;}
.ws1{word-spacing:-20.194365pt;}
.ws2{word-spacing:-13.283467pt;}
.ws83{word-spacing:-11.955200pt;}
.ws33{word-spacing:-10.626800pt;}
.ws6{word-spacing:-9.298400pt;}
.ws92{word-spacing:-2.603559pt;}
.wse{word-spacing:-2.231616pt;}
.ws89{word-spacing:-2.178489pt;}
.ws93{word-spacing:-2.125355pt;}
.ws3f{word-spacing:-2.019087pt;}
.ws99{word-spacing:-1.912819pt;}
.ws75{word-spacing:-1.859685pt;}
.wsa3{word-spacing:-1.817190pt;}
.ws2d{word-spacing:-1.806551pt;}
.ws36{word-spacing:-1.753418pt;}
.ws55{word-spacing:-1.700284pt;}
.ws4{word-spacing:-1.696326pt;}
.ws97{word-spacing:-1.647150pt;}
.wsa4{word-spacing:-1.578086pt;}
.wsb1{word-spacing:-1.530266pt;}
.ws3b{word-spacing:-1.487748pt;}
.ws94{word-spacing:-1.381481pt;}
.ws80{word-spacing:-1.328347pt;}
.ws39{word-spacing:-1.275213pt;}
.ws3a{word-spacing:-1.222079pt;}
.ws3{word-spacing:-1.175671pt;}
.ws5e{word-spacing:-1.168945pt;}
.wsdc{word-spacing:-1.147699pt;}
.wsc1{word-spacing:-1.099878pt;}
.ws38{word-spacing:-1.062677pt;}
.ws6d{word-spacing:-1.009543pt;}
.ws8f{word-spacing:-0.956410pt;}
.wsbe{word-spacing:-0.908595pt;}
.ws52{word-spacing:-0.903276pt;}
.wsbf{word-spacing:-0.860774pt;}
.ws9f{word-spacing:-0.812954pt;}
.ws2f{word-spacing:-0.743874pt;}
.wsbd{word-spacing:-0.669491pt;}
.ws3e{word-spacing:-0.637606pt;}
.wsa0{word-spacing:-0.573850pt;}
.wsb0{word-spacing:-0.526029pt;}
.ws4d{word-spacing:-0.478205pt;}
.wsce{word-spacing:-0.430387pt;}
.ws2e{word-spacing:-0.371937pt;}
.ws72{word-spacing:-0.318803pt;}
.wsa1{word-spacing:-0.286925pt;}
.ws4c{word-spacing:-0.265669pt;}
.wsa2{word-spacing:-0.239104pt;}
.ws24{word-spacing:-0.212535pt;}
.ws1c{word-spacing:-0.191283pt;}
.ws41{word-spacing:-0.159402pt;}
.ws9d{word-spacing:-0.143462pt;}
.ws31{word-spacing:-0.106268pt;}
.ws14{word-spacing:-0.095642pt;}
.ws48{word-spacing:-0.053134pt;}
.wsa9{word-spacing:-0.047821pt;}
.ws7{word-spacing:-0.037194pt;}
.wsb2{word-spacing:-0.011622pt;}
.wsd4{word-spacing:-0.009020pt;}
.wscc{word-spacing:-0.008960pt;}
.wsb6{word-spacing:-0.008132pt;}
.wsb3{word-spacing:-0.006050pt;}
.wsba{word-spacing:-0.005649pt;}
.wsca{word-spacing:-0.005598pt;}
.ws8{word-spacing:-0.005357pt;}
.wscf{word-spacing:-0.003516pt;}
.wsd1{word-spacing:-0.002330pt;}
.wse3{word-spacing:-0.002193pt;}
.ws32{word-spacing:-0.002134pt;}
.wsb7{word-spacing:-0.001638pt;}
.wsaf{word-spacing:-0.001382pt;}
.wsc6{word-spacing:-0.001041pt;}
.wsc5{word-spacing:-0.000631pt;}
.wsdb{word-spacing:-0.000375pt;}
.ws0{word-spacing:0.000000pt;}
.ws17{word-spacing:0.047821pt;}
.ws25{word-spacing:0.053134pt;}
.ws88{word-spacing:0.095642pt;}
.ws35{word-spacing:0.106268pt;}
.ws20{word-spacing:0.143462pt;}
.ws30{word-spacing:0.159402pt;}
.ws11{word-spacing:0.185968pt;}
.ws18{word-spacing:0.191283pt;}
.ws44{word-spacing:0.212535pt;}
.ws1f{word-spacing:0.239104pt;}
.ws37{word-spacing:0.265669pt;}
.wsc4{word-spacing:0.286925pt;}
.wsc{word-spacing:0.297549pt;}
.ws34{word-spacing:0.318803pt;}
.ws8a{word-spacing:0.371937pt;}
.wsd0{word-spacing:0.382566pt;}
.ws2c{word-spacing:0.425071pt;}
.wse1{word-spacing:0.430387pt;}
.wsb5{word-spacing:0.478208pt;}
.ws28{word-spacing:0.531339pt;}
.ws3d{word-spacing:0.584473pt;}
.wse0{word-spacing:0.621670pt;}
.ws60{word-spacing:0.637606pt;}
.wsb{word-spacing:0.669485pt;}
.ws5f{word-spacing:0.690740pt;}
.ws40{word-spacing:0.743874pt;}
.ws59{word-spacing:0.797008pt;}
.ws46{word-spacing:0.850142pt;}
.ws62{word-spacing:0.903276pt;}
.wscb{word-spacing:0.908595pt;}
.ws4a{word-spacing:0.956410pt;}
.ws5d{word-spacing:1.009543pt;}
.wse2{word-spacing:1.052058pt;}
.ws43{word-spacing:1.062677pt;}
.ws54{word-spacing:1.115811pt;}
.wsd{word-spacing:1.116669pt;}
.ws74{word-spacing:1.222079pt;}
.ws6e{word-spacing:1.275213pt;}
.wsa8{word-spacing:1.291162pt;}
.wsae{word-spacing:1.338982pt;}
.ws42{word-spacing:1.381481pt;}
.ws4f{word-spacing:1.434614pt;}
.ws4e{word-spacing:1.487748pt;}
.ws23{word-spacing:1.540882pt;}
.wsdd{word-spacing:1.578086pt;}
.ws81{word-spacing:1.647150pt;}
.ws45{word-spacing:1.700284pt;}
.ws73{word-spacing:1.753418pt;}
.ws7e{word-spacing:1.859685pt;}
.ws9c{word-spacing:1.865011pt;}
.ws7d{word-spacing:1.912819pt;}
.ws8b{word-spacing:1.965953pt;}
.ws63{word-spacing:2.019087pt;}
.wsab{word-spacing:2.104115pt;}
.ws6f{word-spacing:2.125355pt;}
.wsc8{word-spacing:2.199757pt;}
.ws9{word-spacing:2.231616pt;}
.ws95{word-spacing:2.231622pt;}
.ws5{word-spacing:2.232481pt;}
.ws96{word-spacing:2.284756pt;}
.wsc3{word-spacing:2.343219pt;}
.wsd9{word-spacing:2.391040pt;}
.ws64{word-spacing:2.497292pt;}
.wsad{word-spacing:2.509612pt;}
.wsac{word-spacing:2.534502pt;}
.ws29{word-spacing:2.550426pt;}
.ws13{word-spacing:2.550432pt;}
.ws1b{word-spacing:2.582323pt;}
.ws56{word-spacing:2.603559pt;}
.wsb4{word-spacing:2.630144pt;}
.ws57{word-spacing:2.656693pt;}
.ws4b{word-spacing:2.709827pt;}
.wsc2{word-spacing:2.725786pt;}
.ws9b{word-spacing:2.773606pt;}
.ws65{word-spacing:2.816095pt;}
.wsc0{word-spacing:2.821427pt;}
.wsb9{word-spacing:2.865084pt;}
.ws9e{word-spacing:2.866509pt;}
.wscd{word-spacing:2.866944pt;}
.wsda{word-spacing:2.867883pt;}
.wsaa{word-spacing:2.869137pt;}
.ws6c{word-spacing:2.869229pt;}
.wsa5{word-spacing:2.869248pt;}
.wsd5{word-spacing:2.917069pt;}
.wsd8{word-spacing:2.964890pt;}
.wsd6{word-spacing:3.012710pt;}
.ws9a{word-spacing:3.060531pt;}
.ws47{word-spacing:3.081764pt;}
.wsd2{word-spacing:3.108352pt;}
.ws58{word-spacing:3.134898pt;}
.ws1a{word-spacing:3.156173pt;}
.ws22{word-spacing:3.188032pt;}
.ws2a{word-spacing:3.241166pt;}
.ws79{word-spacing:3.294300pt;}
.ws53{word-spacing:3.347434pt;}
.ws16{word-spacing:3.395277pt;}
.ws51{word-spacing:3.400567pt;}
.wsc9{word-spacing:3.443098pt;}
.ws8e{word-spacing:3.453701pt;}
.ws27{word-spacing:3.506835pt;}
.wsde{word-spacing:3.538739pt;}
.ws49{word-spacing:3.559969pt;}
.ws7c{word-spacing:3.613103pt;}
.ws7a{word-spacing:3.719371pt;}
.ws91{word-spacing:3.772505pt;}
.ws15{word-spacing:3.777843pt;}
.wsd7{word-spacing:3.825664pt;}
.wsbb{word-spacing:3.873485pt;}
.ws5b{word-spacing:3.878772pt;}
.ws10{word-spacing:3.905328pt;}
.ws19{word-spacing:3.921306pt;}
.ws50{word-spacing:3.985040pt;}
.ws5c{word-spacing:4.038174pt;}
.ws3c{word-spacing:4.091308pt;}
.wsdf{word-spacing:4.112589pt;}
.ws2b{word-spacing:4.144442pt;}
.ws61{word-spacing:4.197575pt;}
.ws21{word-spacing:4.208230pt;}
.ws66{word-spacing:4.250709pt;}
.ws98{word-spacing:4.303843pt;}
.ws8c{word-spacing:4.463245pt;}
.ws90{word-spacing:4.516379pt;}
.wsb8{word-spacing:4.542976pt;}
.wsd3{word-spacing:4.638618pt;}
.ws82{word-spacing:4.728914pt;}
.ws76{word-spacing:4.888316pt;}
.ws77{word-spacing:4.941450pt;}
.ws71{word-spacing:4.994583pt;}
.ws70{word-spacing:5.047717pt;}
.ws26{word-spacing:5.153985pt;}
.ws1e{word-spacing:5.308109pt;}
.wsa7{word-spacing:5.451571pt;}
.ws6b{word-spacing:5.579056pt;}
.ws8d{word-spacing:5.632190pt;}
.ws1d{word-spacing:5.642854pt;}
.wsa{word-spacing:5.653427pt;}
.wsc7{word-spacing:5.738496pt;}
.ws5a{word-spacing:5.950993pt;}
.ws67{word-spacing:6.269796pt;}
.ws68{word-spacing:6.322930pt;}
.ws7f{word-spacing:6.482332pt;}
.ws69{word-spacing:6.535466pt;}
.ws6a{word-spacing:6.588599pt;}
.wsa6{word-spacing:6.886195pt;}
.ws7b{word-spacing:7.491875pt;}
.ws12{word-spacing:9.707530pt;}
.wsbc{word-spacing:10.855322pt;}
.ws78{word-spacing:14.293010pt;}
.wsf{word-spacing:19.080317pt;}
.ws84{word-spacing:176.825165pt;}
.ws85{word-spacing:267.874893pt;}
.ws87{word-spacing:273.752226pt;}
.ws86{word-spacing:277.506893pt;}
._12{margin-left:-20.669074pt;}
._2{margin-left:-19.181326pt;}
._28{margin-left:-17.363781pt;}
._6{margin-left:-13.875662pt;}
._18{margin-left:-6.269796pt;}
._e{margin-left:-5.260288pt;}
._4{margin-left:-3.931906pt;}
._7{margin-left:-2.911716pt;}
._5{margin-left:-1.175671pt;}
._1{width:1.487756pt;}
._11{width:2.929089pt;}
._20{width:4.476698pt;}
._1b{width:6.498047pt;}
._26{width:9.783358pt;}
._8{width:11.530016pt;}
._15{width:13.177232pt;}
._d{width:14.374212pt;}
._14{width:15.571023pt;}
._13{width:16.628135pt;}
._10{width:18.582443pt;}
._19{width:19.613123pt;}
._1e{width:20.888336pt;}
._1a{width:22.103689pt;}
._9{width:23.065389pt;}
._29{width:24.064463pt;}
._c{width:25.020879pt;}
._b{width:26.301440pt;}
._1c{width:27.530069pt;}
._0{width:29.648896pt;}
._f{width:31.322624pt;}
._1f{width:32.258983pt;}
._a{width:33.213885pt;}
._1d{width:35.918494pt;}
._3{width:61.659045pt;}
._23{width:84.766430pt;}
._22{width:95.737242pt;}
._24{width:125.507388pt;}
._25{width:144.236356pt;}
._21{width:283.816448pt;}
._16{width:813.719063pt;}
._27{width:2274.600533pt;}
._17{width:2295.853867pt;}
.fsa{font-size:37.193600pt;}
.fs9{font-size:37.276537pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:41.988267pt;}
.fsb{font-size:42.507200pt;}
.fsc{font-size:47.820800pt;}
.fs6{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:80.777458pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:3.044747pt;}
.y24{bottom:8.207950pt;}
.y2a{bottom:12.578910pt;}
.y23{bottom:23.914454pt;}
.y69{bottom:28.346667pt;}
.y5{bottom:59.133337pt;}
.y171{bottom:82.288000pt;}
.yf2{bottom:85.276000pt;}
.y4{bottom:86.333337pt;}
.y15c{bottom:90.556000pt;}
.y40{bottom:91.398667pt;}
.y1a8{bottom:92.050667pt;}
.y160{bottom:94.441333pt;}
.yd6{bottom:94.840000pt;}
.y9f{bottom:96.817333pt;}
.y170{bottom:97.630667pt;}
.yf1{bottom:102.013333pt;}
.y68{bottom:103.486667pt;}
.y15b{bottom:107.293333pt;}
.y3f{bottom:107.298667pt;}
.y1a7{bottom:107.393333pt;}
.y11f{bottom:110.780000pt;}
.y15f{bottom:111.178667pt;}
.yd5{bottom:111.577333pt;}
.y9e{bottom:113.554667pt;}
.y16f{bottom:116.957333pt;}
.yf0{bottom:118.750667pt;}
.y67{bottom:120.224000pt;}
.y1a6{bottom:122.736000pt;}
.y3e{bottom:123.200000pt;}
.y21{bottom:123.790666pt;}
.y15a{bottom:124.030667pt;}
.y11e{bottom:127.517333pt;}
.y15e{bottom:127.916000pt;}
.yd4{bottom:128.314667pt;}
.y9d{bottom:130.292000pt;}
.yef{bottom:135.488000pt;}
.y66{bottom:136.961333pt;}
.y1a5{bottom:138.078667pt;}
.y3d{bottom:139.100000pt;}
.y159{bottom:140.766667pt;}
.y11d{bottom:144.254667pt;}
.yd3{bottom:145.052000pt;}
.y16e{bottom:146.845333pt;}
.y9c{bottom:147.028000pt;}
.y15d{bottom:148.638667pt;}
.y1a4{bottom:153.421333pt;}
.y65{bottom:153.698667pt;}
.y3c{bottom:155.000000pt;}
.yee{bottom:156.210667pt;}
.y158{bottom:157.504000pt;}
.y11c{bottom:160.992000pt;}
.yd2{bottom:161.789333pt;}
.y16d{bottom:162.466667pt;}
.y9b{bottom:163.765333pt;}
.y1a3{bottom:168.762667pt;}
.y64{bottom:170.436000pt;}
.y3b{bottom:170.901333pt;}
.yed{bottom:172.948000pt;}
.y157{bottom:174.241333pt;}
.y18{bottom:175.052000pt;}
.y11b{bottom:177.729333pt;}
.y16c{bottom:178.088000pt;}
.yd1{bottom:178.526667pt;}
.y9a{bottom:180.502667pt;}
.y1a2{bottom:184.105333pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y3a{bottom:186.801333pt;}
.y63{bottom:187.173333pt;}
.yec{bottom:189.685333pt;}
.y156{bottom:190.978667pt;}
.y11a{bottom:194.466667pt;}
.yd0{bottom:195.264000pt;}
.y99{bottom:197.240000pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y1a1{bottom:199.448000pt;}
.y16b{bottom:201.680000pt;}
.y39{bottom:202.701333pt;}
.y62{bottom:203.910667pt;}
.yeb{bottom:206.422667pt;}
.y155{bottom:207.716000pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y119{bottom:211.204000pt;}
.ycf{bottom:212.001333pt;}
.y98{bottom:213.977333pt;}
.y1a0{bottom:214.790667pt;}
.y16a{bottom:217.301333pt;}
.y61{bottom:220.648000pt;}
.yea{bottom:223.160000pt;}
.y154{bottom:224.453333pt;}
.y118{bottom:227.941333pt;}
.yce{bottom:228.738667pt;}
.y19f{bottom:230.133333pt;}
.y97{bottom:230.714667pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y60{bottom:237.385333pt;}
.ye9{bottom:239.897333pt;}
.y169{bottom:240.893333pt;}
.y153{bottom:241.190667pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y117{bottom:244.678667pt;}
.ycd{bottom:245.476000pt;}
.y96{bottom:247.452000pt;}
.y1b{bottom:253.438668pt;}
.y168{bottom:253.446667pt;}
.y12{bottom:253.451999pt;}
.y5f{bottom:254.122667pt;}
.ye8{bottom:256.634667pt;}
.y152{bottom:257.928000pt;}
.y19e{bottom:260.818667pt;}
.y116{bottom:261.416000pt;}
.ycc{bottom:262.213333pt;}
.y38{bottom:262.526667pt;}
.y95{bottom:264.189333pt;}
.y167{bottom:265.998667pt;}
.y5e{bottom:270.860000pt;}
.ye7{bottom:273.372000pt;}
.y151{bottom:274.665333pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y19d{bottom:276.161333pt;}
.y115{bottom:278.153333pt;}
.y37{bottom:278.428000pt;}
.ycb{bottom:278.950667pt;}
.y94{bottom:280.926667pt;}
.y166{bottom:286.522667pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y5d{bottom:287.597333pt;}
.y150{bottom:291.402667pt;}
.y19c{bottom:291.502667pt;}
.ye6{bottom:294.093333pt;}
.y36{bottom:294.328000pt;}
.y114{bottom:294.890667pt;}
.yca{bottom:295.688000pt;}
.y93{bottom:297.664000pt;}
.y5c{bottom:304.334667pt;}
.y19b{bottom:306.845333pt;}
.y165{bottom:307.045333pt;}
.y14f{bottom:308.140000pt;}
.yf{bottom:309.452000pt;}
.y35{bottom:310.228000pt;}
.ye5{bottom:310.830667pt;}
.y113{bottom:311.628000pt;}
.yc9{bottom:312.425333pt;}
.y92{bottom:314.401333pt;}
.y5b{bottom:321.072000pt;}
.y19a{bottom:322.188000pt;}
.y14e{bottom:324.877333pt;}
.ye4{bottom:327.568000pt;}
.y112{bottom:328.365333pt;}
.yc8{bottom:329.162667pt;}
.y91{bottom:331.138667pt;}
.y199{bottom:337.530667pt;}
.y5a{bottom:337.809333pt;}
.y14d{bottom:341.614667pt;}
.y34{bottom:342.069333pt;}
.ye{bottom:343.809333pt;}
.ye3{bottom:344.305333pt;}
.y111{bottom:345.102667pt;}
.yc7{bottom:345.900000pt;}
.y90{bottom:347.876000pt;}
.y164{bottom:351.160000pt;}
.y198{bottom:352.873333pt;}
.y59{bottom:354.546667pt;}
.y33{bottom:357.969333pt;}
.y14c{bottom:358.352000pt;}
.ye2{bottom:361.042667pt;}
.y110{bottom:361.840000pt;}
.yc6{bottom:362.637333pt;}
.yd{bottom:362.706666pt;}
.y8f{bottom:364.613333pt;}
.y163{bottom:366.781333pt;}
.y197{bottom:368.216000pt;}
.y58{bottom:371.284000pt;}
.y32{bottom:373.870667pt;}
.ye1{bottom:377.780000pt;}
.y10f{bottom:378.577333pt;}
.y14b{bottom:379.074667pt;}
.yc5{bottom:379.374667pt;}
.y8e{bottom:381.350667pt;}
.y162{bottom:382.402667pt;}
.y196{bottom:383.558667pt;}
.y57{bottom:388.021333pt;}
.ye0{bottom:394.517333pt;}
.y10e{bottom:395.314667pt;}
.yc4{bottom:396.112000pt;}
.y161{bottom:398.024000pt;}
.y8d{bottom:398.088000pt;}
.y195{bottom:398.901333pt;}
.y56{bottom:404.758667pt;}
.y31{bottom:405.710667pt;}
.y14a{bottom:408.962667pt;}
.ydf{bottom:411.254667pt;}
.y10d{bottom:412.052000pt;}
.yc3{bottom:412.848000pt;}
.y194{bottom:414.244000pt;}
.y8c{bottom:414.825333pt;}
.y30{bottom:421.610667pt;}
.y55{bottom:425.481333pt;}
.y149{bottom:425.700000pt;}
.yde{bottom:427.992000pt;}
.y10c{bottom:428.789333pt;}
.yc2{bottom:429.585333pt;}
.y8b{bottom:431.562667pt;}
.y2f{bottom:437.512000pt;}
.y148{bottom:442.437333pt;}
.ydd{bottom:444.729333pt;}
.y193{bottom:444.928000pt;}
.y10b{bottom:445.526667pt;}
.yc1{bottom:446.322667pt;}
.yc{bottom:446.990669pt;}
.y8a{bottom:452.285333pt;}
.y2e{bottom:453.412000pt;}
.y147{bottom:459.174667pt;}
.y192{bottom:460.270667pt;}
.ydc{bottom:461.466667pt;}
.y10a{bottom:462.264000pt;}
.yb{bottom:462.990669pt;}
.yc0{bottom:463.060000pt;}
.y2d{bottom:469.312000pt;}
.y191{bottom:475.613333pt;}
.y146{bottom:475.912000pt;}
.ydb{bottom:478.204000pt;}
.ya{bottom:478.990666pt;}
.y109{bottom:479.001333pt;}
.ybf{bottom:479.797333pt;}
.y89{bottom:482.173333pt;}
.y2c{bottom:485.213333pt;}
.y190{bottom:490.956000pt;}
.y54{bottom:492.281333pt;}
.yda{bottom:494.941333pt;}
.y9{bottom:494.990666pt;}
.y108{bottom:495.738667pt;}
.ybe{bottom:496.534667pt;}
.y88{bottom:498.910667pt;}
.y29{bottom:505.098634pt;}
.y18f{bottom:506.298667pt;}
.y53{bottom:509.576000pt;}
.yd9{bottom:511.678667pt;}
.y107{bottom:512.476000pt;}
.ybd{bottom:513.272000pt;}
.y87{bottom:515.648000pt;}
.y142{bottom:516.322667pt;}
.y18e{bottom:521.641333pt;}
.y145{bottom:523.628000pt;}
.y106{bottom:529.213333pt;}
.ybc{bottom:530.009333pt;}
.y140{bottom:530.933333pt;}
.y86{bottom:532.384000pt;}
.yd8{bottom:532.401333pt;}
.y18d{bottom:536.984000pt;}
.y143{bottom:538.240000pt;}
.y52{bottom:542.812000pt;}
.y13f{bottom:545.545333pt;}
.y105{bottom:545.950667pt;}
.ybb{bottom:546.746667pt;}
.y85{bottom:549.121333pt;}
.yd7{bottom:550.333333pt;}
.y18c{bottom:552.325333pt;}
.y144{bottom:552.852000pt;}
.y51{bottom:560.106667pt;}
.y141{bottom:560.157333pt;}
.y104{bottom:562.686667pt;}
.yba{bottom:563.484000pt;}
.y84{bottom:565.858667pt;}
.y18b{bottom:567.668000pt;}
.y8{bottom:573.786667pt;}
.y50{bottom:577.401333pt;}
.y103{bottom:579.424000pt;}
.yb9{bottom:580.221333pt;}
.y13e{bottom:581.172000pt;}
.y83{bottom:582.596000pt;}
.y18a{bottom:583.010667pt;}
.y13b{bottom:588.477333pt;}
.y7{bottom:592.685334pt;}
.y4f{bottom:594.697333pt;}
.y13d{bottom:595.784000pt;}
.yb8{bottom:596.958667pt;}
.y189{bottom:598.353333pt;}
.y82{bottom:599.333333pt;}
.y102{bottom:600.146667pt;}
.y13a{bottom:603.089333pt;}
.y13c{bottom:610.396000pt;}
.y4e{bottom:611.992000pt;}
.yb7{bottom:613.696000pt;}
.y81{bottom:616.070667pt;}
.y188{bottom:629.038667pt;}
.y4d{bottom:629.286667pt;}
.y101{bottom:630.034667pt;}
.yb6{bottom:630.433333pt;}
.y139{bottom:631.409333pt;}
.y80{bottom:632.808000pt;}
.y187{bottom:644.381333pt;}
.y6{bottom:645.598667pt;}
.y137{bottom:646.021333pt;}
.y4c{bottom:646.582667pt;}
.y100{bottom:646.772000pt;}
.yb5{bottom:647.170667pt;}
.y7f{bottom:649.545333pt;}
.y134{bottom:653.326667pt;}
.y186{bottom:659.724000pt;}
.y136{bottom:660.633333pt;}
.yff{bottom:663.509333pt;}
.y4b{bottom:663.877333pt;}
.yb4{bottom:663.908000pt;}
.y7e{bottom:666.282667pt;}
.y133{bottom:667.938667pt;}
.y3{bottom:668.977329pt;}
.y185{bottom:675.066667pt;}
.y135{bottom:675.245333pt;}
.yfe{bottom:680.246667pt;}
.yb3{bottom:680.645333pt;}
.y4a{bottom:681.173333pt;}
.y7d{bottom:683.020000pt;}
.y138{bottom:689.857333pt;}
.y184{bottom:690.408000pt;}
.yfd{bottom:696.984000pt;}
.yb2{bottom:697.382667pt;}
.y49{bottom:698.468000pt;}
.y7c{bottom:699.757333pt;}
.y183{bottom:705.750667pt;}
.y132{bottom:710.870667pt;}
.yfc{bottom:713.721333pt;}
.yb1{bottom:714.120000pt;}
.y48{bottom:715.762667pt;}
.y7b{bottom:716.494667pt;}
.y12f{bottom:718.177333pt;}
.y182{bottom:721.093333pt;}
.y131{bottom:725.482667pt;}
.yfb{bottom:730.458667pt;}
.yb0{bottom:730.857333pt;}
.y12e{bottom:732.789333pt;}
.y47{bottom:733.058667pt;}
.y7a{bottom:733.232000pt;}
.y181{bottom:736.436000pt;}
.y130{bottom:740.094667pt;}
.yfa{bottom:747.196000pt;}
.yaf{bottom:747.594667pt;}
.y79{bottom:749.969333pt;}
.y46{bottom:750.353333pt;}
.y180{bottom:751.778667pt;}
.y12c{bottom:761.108000pt;}
.yf9{bottom:763.933333pt;}
.yae{bottom:764.332000pt;}
.y78{bottom:766.706667pt;}
.y17f{bottom:767.121333pt;}
.y45{bottom:767.648000pt;}
.y12a{bottom:775.720000pt;}
.yf8{bottom:780.670667pt;}
.yad{bottom:781.069333pt;}
.y2{bottom:781.661334pt;}
.y17e{bottom:782.464000pt;}
.y12d{bottom:783.026667pt;}
.y77{bottom:783.444000pt;}
.y44{bottom:784.944000pt;}
.y129{bottom:790.332000pt;}
.yf7{bottom:797.408000pt;}
.yac{bottom:797.806667pt;}
.y76{bottom:800.181333pt;}
.y12b{bottom:804.944000pt;}
.y17d{bottom:813.149333pt;}
.yf6{bottom:814.145333pt;}
.yab{bottom:814.544000pt;}
.y75{bottom:816.918667pt;}
.y43{bottom:819.241333pt;}
.y128{bottom:825.958667pt;}
.y17c{bottom:828.490667pt;}
.yf5{bottom:830.882667pt;}
.yaa{bottom:831.281333pt;}
.y125{bottom:833.264000pt;}
.y42{bottom:833.588000pt;}
.y74{bottom:833.656000pt;}
.y127{bottom:840.570667pt;}
.y17b{bottom:843.833333pt;}
.yf4{bottom:847.620000pt;}
.y124{bottom:847.876000pt;}
.y41{bottom:847.934667pt;}
.ya9{bottom:848.018667pt;}
.y73{bottom:850.393333pt;}
.y126{bottom:855.181333pt;}
.y17a{bottom:859.176000pt;}
.y1{bottom:859.312000pt;}
.ya8{bottom:864.754667pt;}
.y72{bottom:867.130667pt;}
.yf3{bottom:868.341333pt;}
.y179{bottom:874.518667pt;}
.y123{bottom:876.196000pt;}
.ya7{bottom:881.492000pt;}
.y71{bottom:883.868000pt;}
.y28{bottom:887.520000pt;}
.y178{bottom:889.861333pt;}
.y121{bottom:890.808000pt;}
.ya6{bottom:898.229333pt;}
.y70{bottom:900.605333pt;}
.y177{bottom:905.204000pt;}
.y122{bottom:905.420000pt;}
.ya5{bottom:914.966667pt;}
.y6f{bottom:917.342667pt;}
.y176{bottom:920.546667pt;}
.y27{bottom:925.510667pt;}
.ya3{bottom:931.704000pt;}
.ya4{bottom:931.910667pt;}
.y120{bottom:933.525333pt;}
.y6e{bottom:934.080000pt;}
.y175{bottom:935.889333pt;}
.ya2{bottom:948.441333pt;}
.y26{bottom:950.616000pt;}
.y6d{bottom:950.817333pt;}
.y173{bottom:951.230667pt;}
.y174{bottom:951.416000pt;}
.ya1{bottom:965.178667pt;}
.y172{bottom:966.573333pt;}
.y6c{bottom:967.554667pt;}
.y25{bottom:975.722667pt;}
.ya0{bottom:981.916000pt;}
.y6b{bottom:984.290667pt;}
.y22{bottom:1014.377333pt;}
.y6a{bottom:1043.020000pt;}
.h10{height:22.673858pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h12{height:29.433775pt;}
.h11{height:30.399505pt;}
.h13{height:33.771789pt;}
.h15{height:34.430976pt;}
.h1c{height:37.140573pt;}
.h17{height:38.256384pt;}
.h14{height:38.596538pt;}
.hd{height:38.947124pt;}
.hf{height:39.531597pt;}
.h7{height:40.853333pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h16{height:43.421286pt;}
.hb{height:45.271688pt;}
.h1d{height:45.767313pt;}
.h18{height:48.245551pt;}
.h2{height:49.024000pt;}
.h19{height:49.072218pt;}
.hc{height:54.767117pt;}
.he{height:68.861952pt;}
.h5{height:69.450667pt;}
.h1b{height:72.642620pt;}
.h1a{height:72.647953pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.ha{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:66.991004pt;}
.w4{width:175.580236pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:26.021437pt;}
.x5{left:48.000000pt;}
.x6{left:51.603593pt;}
.x2d{left:69.912000pt;}
.x23{left:72.314667pt;}
.x47{left:76.089333pt;}
.x29{left:83.589333pt;}
.x22{left:87.504000pt;}
.x3d{left:88.866667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x49{left:107.762667pt;}
.x48{left:109.132000pt;}
.x32{left:172.781333pt;}
.x3a{left:174.234667pt;}
.x4{left:180.874667pt;}
.x24{left:182.381333pt;}
.x3b{left:187.558667pt;}
.x33{left:199.358667pt;}
.x25{left:209.926667pt;}
.x9{left:222.073333pt;}
.x8{left:223.020000pt;}
.xc{left:251.365333pt;}
.x15{left:253.769333pt;}
.xa{left:275.068000pt;}
.xb{left:287.776000pt;}
.x2a{left:290.889333pt;}
.x27{left:292.914667pt;}
.x16{left:294.502667pt;}
.x26{left:295.514667pt;}
.x34{left:299.574667pt;}
.x3c{left:300.949333pt;}
.x11{left:303.902667pt;}
.x18{left:308.164000pt;}
.x10{left:311.792000pt;}
.x2b{left:312.760000pt;}
.x3e{left:314.505333pt;}
.x17{left:319.449333pt;}
.x35{left:324.858667pt;}
.x45{left:332.173333pt;}
.x46{left:336.170667pt;}
.x13{left:348.518667pt;}
.x43{left:350.758667pt;}
.x44{left:381.098667pt;}
.x12{left:385.182667pt;}
.x14{left:392.409333pt;}
.x3{left:404.408000pt;}
.x2c{left:406.293333pt;}
.xd{left:416.293333pt;}
.x37{left:419.037333pt;}
.x1b{left:420.453333pt;}
.x19{left:421.954667pt;}
.x36{left:423.993333pt;}
.x1a{left:426.766667pt;}
.x2e{left:428.248000pt;}
.x28{left:432.164000pt;}
.x2f{left:521.942667pt;}
.x38{left:525.016000pt;}
.x1d{left:533.090667pt;}
.x1e{left:536.737333pt;}
.x1c{left:540.892000pt;}
.x3f{left:546.450667pt;}
.x30{left:552.458667pt;}
.x41{left:624.372000pt;}
.x42{left:635.276000pt;}
.x31{left:641.681333pt;}
.x40{left:643.684000pt;}
.x21{left:653.021333pt;}
.x1f{left:655.184000pt;}
.x20{left:666.321333pt;}
.x39{left:670.110667pt;}
.xf{left:739.312000pt;}
.xe{left:740.833333pt;}
}




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