
    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_52090c41653ae06eebf6d75b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8fd2e6a48680546dea32edea.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_c5b91382a3227e89c77b4fa8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.937988;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_96ee3d796f25591f3946ef87.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.023926;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_290ccf92e70eb6089fb00a64.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.956000;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_b0fe9dd436876140aa56bcec.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.678000;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_0cafb34afc94f34579cc3a29.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_2eab368f6471c5744ab67603.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.575000;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_023ba23323a3ff36f7f45d9b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.592000;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_5411b1bdbbeda41909d31a85.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.575000;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_78deb3451c7b4673ddd71f6b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.066000;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_df8b15b9f7d1770b66c1a692.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.575000;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_c3dd1f791bb212ca8e5be7ae.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.291992;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:fff;src:url('chunks/assets/font_8c6e3f52f225c1138d2040e1.woff2')format("woff");}.fff{font-family:fff;line-height:1.272949;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:ff10;src:url('chunks/assets/font_277027cccebd24310a8db8a4.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.432129;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;}
.md{transform:matrix(0.000000,-0.222144,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.222144,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.222144,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.249382,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249382,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249382,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.249385,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249385,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249385,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.249385,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249385,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249385,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.250753,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250753,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250753,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.246461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246461,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.246465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246465,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249253,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249254,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);}
.mc{transform:matrix(0.250221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250221,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250223,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.281349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281349,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);}
.v2{vertical-align:-13.093200px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:53.880854px;}
.ls19{letter-spacing:-1.061280px;}
.ls1c{letter-spacing:-0.771840px;}
.ls67{letter-spacing:-0.539928px;}
.ls1d{letter-spacing:-0.530640px;}
.ls6c{letter-spacing:-0.482400px;}
.ls64{letter-spacing:-0.364579px;}
.ls18{letter-spacing:-0.337680px;}
.ls56{letter-spacing:-0.331200px;}
.ls26{letter-spacing:-0.324000px;}
.ls4f{letter-spacing:-0.292656px;}
.ls29{letter-spacing:-0.270000px;}
.ls5b{letter-spacing:-0.265180px;}
.ls62{letter-spacing:-0.261547px;}
.ls12{letter-spacing:-0.252720px;}
.ls1b{letter-spacing:-0.241200px;}
.ls25{letter-spacing:-0.216000px;}
.ls5e{letter-spacing:-0.203999px;}
.ls39{letter-spacing:-0.198720px;}
.ls15{letter-spacing:-0.192960px;}
.ls2a{letter-spacing:-0.162000px;}
.ls17{letter-spacing:-0.144720px;}
.ls28{letter-spacing:-0.144000px;}
.ls55{letter-spacing:-0.132480px;}
.ls65{letter-spacing:-0.121484px;}
.ls5a{letter-spacing:-0.119153px;}
.ls61{letter-spacing:-0.117518px;}
.ls35{letter-spacing:-0.108000px;}
.ls66{letter-spacing:-0.107986px;}
.ls52{letter-spacing:-0.094610px;}
.ls5{letter-spacing:-0.091728px;}
.ls4d{letter-spacing:-0.073164px;}
.ls36{letter-spacing:-0.072000px;}
.ls3b{letter-spacing:-0.066240px;}
.ls53{letter-spacing:-0.054873px;}
.ls30{letter-spacing:-0.054000px;}
.ls5d{letter-spacing:-0.053199px;}
.ls16{letter-spacing:-0.048240px;}
.ls50{letter-spacing:-0.036582px;}
.ls51{letter-spacing:-0.031537px;}
.ls8{letter-spacing:-0.028728px;}
.ls9{letter-spacing:-0.028512px;}
.ls7{letter-spacing:-0.023940px;}
.ls4a{letter-spacing:-0.023652px;}
.lsa{letter-spacing:-0.012000px;}
.ls6{letter-spacing:-0.007128px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.019152px;}
.ls2{letter-spacing:0.028728px;}
.ls63{letter-spacing:0.040495px;}
.ls3d{letter-spacing:0.054000px;}
.ls4c{letter-spacing:0.054873px;}
.ls5f{letter-spacing:0.063869px;}
.ls27{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.077976px;}
.ls11{letter-spacing:0.084240px;}
.ls4e{letter-spacing:0.091455px;}
.lsc{letter-spacing:0.096480px;}
.ls2f{letter-spacing:0.108000px;}
.ls6b{letter-spacing:0.115776px;}
.ls60{letter-spacing:0.127739px;}
.ls59{letter-spacing:0.129515px;}
.ls4b{letter-spacing:0.141912px;}
.ls1e{letter-spacing:0.144720px;}
.ls14{letter-spacing:0.162000px;}
.ls4{letter-spacing:0.192000px;}
.lse{letter-spacing:0.202608px;}
.ls5c{letter-spacing:0.212796px;}
.ls31{letter-spacing:0.216000px;}
.ls1a{letter-spacing:0.241200px;}
.ls38{letter-spacing:0.264960px;}
.ls13{letter-spacing:0.270000px;}
.lsb{letter-spacing:0.282000px;}
.ls6a{letter-spacing:0.294264px;}
.ls49{letter-spacing:0.295181px;}
.ls3a{letter-spacing:0.331200px;}
.lsd{letter-spacing:0.337680px;}
.ls42{letter-spacing:0.432000px;}
.ls32{letter-spacing:0.486000px;}
.ls43{letter-spacing:0.496800px;}
.ls22{letter-spacing:0.502200px;}
.ls21{letter-spacing:0.518400px;}
.ls40{letter-spacing:0.545400px;}
.ls47{letter-spacing:0.594000px;}
.ls45{letter-spacing:0.702000px;}
.ls69{letter-spacing:0.723600px;}
.ls57{letter-spacing:0.766800px;}
.ls68{letter-spacing:0.793800px;}
.ls41{letter-spacing:0.972000px;}
.ls34{letter-spacing:1.134000px;}
.ls2d{letter-spacing:1.350000px;}
.ls46{letter-spacing:2.052000px;}
.ls33{letter-spacing:2.754000px;}
.ls3c{letter-spacing:2.770200px;}
.ls3e{letter-spacing:3.510000px;}
.ls44{letter-spacing:4.212000px;}
.ls23{letter-spacing:4.914000px;}
.ls48{letter-spacing:7.074000px;}
.ls54{letter-spacing:7.889400px;}
.ls58{letter-spacing:9.234000px;}
.ls24{letter-spacing:9.990000px;}
.ls3f{letter-spacing:13.554000px;}
.ls20{letter-spacing:28.224000px;}
.ls2e{letter-spacing:52.650000px;}
.ls10{letter-spacing:70.044480px;}
.ls37{letter-spacing:83.131200px;}
.ls2c{letter-spacing:477.954000px;}
.ls1f{letter-spacing:493.830000px;}
.ls2b{letter-spacing:560.034000px;}
.lsf{letter-spacing:853.092000px;}
.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;}
}
.ws11{word-spacing:-17.016480px;}
.ws12{word-spacing:-16.763760px;}
.wsdc{word-spacing:-15.163955px;}
.wsf0{word-spacing:-14.976000px;}
.ws3c{word-spacing:-14.832000px;}
.wsd6{word-spacing:-14.764687px;}
.ws3b{word-spacing:-14.760000px;}
.wsdb{word-spacing:-14.736123px;}
.ws3d{word-spacing:-14.616000px;}
.wse0{word-spacing:-14.562223px;}
.wsec{word-spacing:-14.544000px;}
.wsdf{word-spacing:-14.498354px;}
.ws8e{word-spacing:-13.512960px;}
.ws8d{word-spacing:-13.380480px;}
.wse5{word-spacing:-13.367904px;}
.wsd3{word-spacing:-13.248000px;}
.wsbb{word-spacing:-12.987955px;}
.wse6{word-spacing:-11.662445px;}
.wsaa{word-spacing:-11.610000px;}
.ws78{word-spacing:-11.178000px;}
.ws79{word-spacing:-11.124000px;}
.ws9d{word-spacing:-11.070000px;}
.ws62{word-spacing:-11.016000px;}
.ws3f{word-spacing:-10.908000px;}
.ws63{word-spacing:-10.854000px;}
.wsd5{word-spacing:-10.800000px;}
.ws7a{word-spacing:-10.746000px;}
.ws3a{word-spacing:-10.692000px;}
.ws3e{word-spacing:-10.638000px;}
.ws40{word-spacing:-10.584000px;}
.ws13{word-spacing:-10.368000px;}
.wsd7{word-spacing:-10.366294px;}
.wse1{word-spacing:-10.224101px;}
.ws16{word-spacing:-10.033920px;}
.wsf4{word-spacing:-9.985680px;}
.wsf3{word-spacing:-9.840960px;}
.wsf1{word-spacing:-9.744480px;}
.wsf2{word-spacing:-9.551520px;}
.ws14{word-spacing:-9.503280px;}
.ws15{word-spacing:-9.406800px;}
.wsb9{word-spacing:-8.467416px;}
.wsd9{word-spacing:-8.296333px;}
.wse3{word-spacing:-8.182672px;}
.wsbc{word-spacing:-6.365268px;}
.wsbd{word-spacing:-6.145776px;}
.wsb2{word-spacing:-4.374000px;}
.ws6a{word-spacing:-3.240000px;}
.ws8c{word-spacing:-2.808000px;}
.ws72{word-spacing:-2.700000px;}
.ws73{word-spacing:-2.646000px;}
.wsb1{word-spacing:-2.538000px;}
.ws25{word-spacing:-2.412000px;}
.ws8b{word-spacing:-2.268000px;}
.ws8a{word-spacing:-2.106000px;}
.ws48{word-spacing:-1.998000px;}
.ws49{word-spacing:-1.944000px;}
.ws45{word-spacing:-1.836000px;}
.ws83{word-spacing:-1.728000px;}
.ws24{word-spacing:-1.640160px;}
.ws5c{word-spacing:-1.566000px;}
.ws89{word-spacing:-1.404000px;}
.ws6e{word-spacing:-1.296000px;}
.ws46{word-spacing:-1.242000px;}
.ws4c{word-spacing:-1.080000px;}
.wsa3{word-spacing:-0.972000px;}
.ws35{word-spacing:-0.964800px;}
.ws26{word-spacing:-0.916560px;}
.ws5d{word-spacing:-0.810000px;}
.ws27{word-spacing:-0.771840px;}
.ws57{word-spacing:-0.648000px;}
.ws33{word-spacing:-0.627120px;}
.wsde{word-spacing:-0.605650px;}
.ws2{word-spacing:-0.541728px;}
.ws18{word-spacing:-0.540000px;}
.ws6c{word-spacing:-0.486000px;}
.ws19{word-spacing:-0.432000px;}
.ws47{word-spacing:-0.378000px;}
.wsf9{word-spacing:-0.337680px;}
.ws9a{word-spacing:-0.324000px;}
.wsc0{word-spacing:-0.295181px;}
.ws86{word-spacing:-0.270000px;}
.ws38{word-spacing:-0.241200px;}
.wsc{word-spacing:-0.204000px;}
.ws91{word-spacing:-0.198720px;}
.wsf8{word-spacing:-0.192960px;}
.ws8{word-spacing:-0.186732px;}
.wsc9{word-spacing:-0.182910px;}
.wsa8{word-spacing:-0.162000px;}
.ws92{word-spacing:-0.132480px;}
.ws68{word-spacing:-0.108000px;}
.wsc4{word-spacing:-0.054873px;}
.ws32{word-spacing:-0.048240px;}
.ws0{word-spacing:0.000000px;}
.wscc{word-spacing:0.031537px;}
.wsdd{word-spacing:0.053199px;}
.ws71{word-spacing:0.054000px;}
.wsf5{word-spacing:0.096480px;}
.wseb{word-spacing:0.107986px;}
.wsc3{word-spacing:0.109746px;}
.ws1e{word-spacing:0.144720px;}
.wsc1{word-spacing:0.146328px;}
.ws4d{word-spacing:0.162000px;}
.ws17{word-spacing:0.168480px;}
.ws31{word-spacing:0.192960px;}
.wsbf{word-spacing:0.212868px;}
.ws61{word-spacing:0.216000px;}
.wsd2{word-spacing:0.237783px;}
.wsd4{word-spacing:0.264960px;}
.ws88{word-spacing:0.270000px;}
.wsc2{word-spacing:0.274365px;}
.wsc7{word-spacing:0.283829px;}
.wsce{word-spacing:0.292656px;}
.ws53{word-spacing:0.324000px;}
.wsc8{word-spacing:0.346903px;}
.ws7e{word-spacing:0.360000px;}
.ws1b{word-spacing:0.385920px;}
.ws7f{word-spacing:0.432000px;}
.wscd{word-spacing:0.457275px;}
.ws4{word-spacing:0.467856px;}
.ws5{word-spacing:0.469224px;}
.ws36{word-spacing:0.482400px;}
.wsb{word-spacing:0.483588px;}
.wsca{word-spacing:0.493857px;}
.wsed{word-spacing:0.504000px;}
.ws10{word-spacing:0.522000px;}
.ws7{word-spacing:0.526680px;}
.ws1c{word-spacing:0.530640px;}
.wsad{word-spacing:0.576000px;}
.wsf6{word-spacing:0.578880px;}
.wsd1{word-spacing:0.585312px;}
.ws95{word-spacing:0.594000px;}
.ws39{word-spacing:0.675360px;}
.wsea{word-spacing:0.688408px;}
.wsac{word-spacing:0.702000px;}
.ws54{word-spacing:0.756000px;}
.wsd0{word-spacing:0.804804px;}
.wsf7{word-spacing:0.820080px;}
.wsc6{word-spacing:0.859677px;}
.ws52{word-spacing:0.864000px;}
.wsd{word-spacing:0.870000px;}
.wscf{word-spacing:0.877968px;}
.wscb{word-spacing:0.896259px;}
.ws41{word-spacing:0.918000px;}
.wsa{word-spacing:0.919512px;}
.ws69{word-spacing:1.080000px;}
.wsc5{word-spacing:1.115751px;}
.ws9{word-spacing:1.120392px;}
.ws6{word-spacing:1.197000px;}
.wsf{word-spacing:1.236000px;}
.ws3{word-spacing:1.254528px;}
.ws85{word-spacing:1.350000px;}
.ws64{word-spacing:1.512000px;}
.ws4b{word-spacing:1.566000px;}
.wse{word-spacing:1.596000px;}
.ws4a{word-spacing:1.620000px;}
.ws77{word-spacing:1.674000px;}
.wsaf{word-spacing:1.782000px;}
.ws1{word-spacing:1.841112px;}
.wsb0{word-spacing:1.890000px;}
.wsa9{word-spacing:2.052000px;}
.ws74{word-spacing:2.214000px;}
.ws75{word-spacing:2.322000px;}
.ws5a{word-spacing:2.376000px;}
.ws65{word-spacing:2.484000px;}
.ws30{word-spacing:2.556720px;}
.ws2f{word-spacing:2.653200px;}
.ws1a{word-spacing:2.701440px;}
.ws80{word-spacing:2.754000px;}
.ws5f{word-spacing:2.916000px;}
.ws2b{word-spacing:2.990880px;}
.ws50{word-spacing:3.024000px;}
.ws96{word-spacing:3.078000px;}
.ws97{word-spacing:3.240000px;}
.wsa6{word-spacing:3.348000px;}
.ws22{word-spacing:3.376800px;}
.ws23{word-spacing:3.425040px;}
.ws51{word-spacing:3.510000px;}
.ws87{word-spacing:3.672000px;}
.ws37{word-spacing:3.714480px;}
.wsef{word-spacing:3.726000px;}
.ws44{word-spacing:3.780000px;}
.ws43{word-spacing:3.834000px;}
.wsb4{word-spacing:4.050000px;}
.ws29{word-spacing:4.100400px;}
.wsa7{word-spacing:4.212000px;}
.ws28{word-spacing:4.293360px;}
.ws5b{word-spacing:4.374000px;}
.ws81{word-spacing:4.482000px;}
.ws82{word-spacing:4.536000px;}
.ws4f{word-spacing:4.644000px;}
.ws98{word-spacing:4.860000px;}
.ws1d{word-spacing:4.872240px;}
.ws70{word-spacing:4.914000px;}
.ws2a{word-spacing:5.016960px;}
.wsa5{word-spacing:5.076000px;}
.ws4e{word-spacing:5.184000px;}
.ws60{word-spacing:5.670000px;}
.ws42{word-spacing:5.832000px;}
.ws93{word-spacing:5.940000px;}
.ws56{word-spacing:5.994000px;}
.wsae{word-spacing:6.102000px;}
.ws66{word-spacing:6.372000px;}
.ws9e{word-spacing:6.534000px;}
.ws34{word-spacing:6.560640px;}
.ws67{word-spacing:6.642000px;}
.ws9f{word-spacing:6.696000px;}
.wsa2{word-spacing:6.804000px;}
.ws21{word-spacing:6.850080px;}
.ws1f{word-spacing:6.946560px;}
.ws20{word-spacing:6.994800px;}
.wsb5{word-spacing:7.074000px;}
.wsbe{word-spacing:7.236000px;}
.wsb7{word-spacing:7.344000px;}
.wsa1{word-spacing:7.398000px;}
.wsab{word-spacing:7.560000px;}
.ws2c{word-spacing:7.670160px;}
.ws2d{word-spacing:7.766640px;}
.wsa4{word-spacing:7.992000px;}
.ws2e{word-spacing:8.297280px;}
.ws8f{word-spacing:8.802000px;}
.wse4{word-spacing:8.964000px;}
.wsda{word-spacing:9.234000px;}
.wsb3{word-spacing:9.396000px;}
.ws76{word-spacing:9.504000px;}
.ws6f{word-spacing:9.558000px;}
.ws58{word-spacing:9.990000px;}
.ws59{word-spacing:10.152000px;}
.wsa0{word-spacing:10.260000px;}
.ws94{word-spacing:10.422000px;}
.ws7b{word-spacing:10.692000px;}
.ws7d{word-spacing:10.800000px;}
.ws90{word-spacing:10.854000px;}
.ws6b{word-spacing:10.962000px;}
.ws55{word-spacing:11.016000px;}
.wsb6{word-spacing:11.124000px;}
.wse7{word-spacing:11.394000px;}
.ws84{word-spacing:11.556000px;}
.ws6d{word-spacing:11.664000px;}
.ws7c{word-spacing:11.718000px;}
.ws5e{word-spacing:12.312000px;}
.wse8{word-spacing:13.554000px;}
.wse9{word-spacing:13.878000px;}
.ws99{word-spacing:14.634000px;}
.ws9b{word-spacing:15.174000px;}
.ws9c{word-spacing:15.336000px;}
.wsb8{word-spacing:19.602000px;}
.wsee{word-spacing:22.356000px;}
.wse2{word-spacing:1011.380883px;}
.wsd8{word-spacing:1025.421303px;}
.wsba{word-spacing:1351.736952px;}
._b{margin-left:-5.412204px;}
._a{margin-left:-4.336200px;}
._2{margin-left:-2.534220px;}
._0{margin-left:-1.323504px;}
._1{width:1.796256px;}
._5{width:3.365424px;}
._8{width:4.968000px;}
._4{width:6.753600px;}
._9{width:9.065952px;}
._7{width:12.150000px;}
._c{width:13.338000px;}
._3{width:20.810016px;}
._6{width:573.666480px;}
.fc3{color:transparent;}
.fc2{color:rgb(31,73,125);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:18.291000px;}
.fsd{font-size:23.652000px;}
.fs19{font-size:29.379600px;}
.fs12{font-size:29.788200px;}
.fs10{font-size:31.536600px;}
.fse{font-size:36.897600px;}
.fs1a{font-size:37.363800px;}
.fs13{font-size:37.882800px;}
.fs1c{font-size:40.494600px;}
.fs4{font-size:42.000000px;}
.fs8{font-size:47.880000px;}
.fsb{font-size:48.240000px;}
.fs14{font-size:53.199000px;}
.fs1d{font-size:53.992800px;}
.fs9{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1b{font-size:60.763200px;}
.fs1{font-size:63.000000px;}
.fs18{font-size:63.869400px;}
.fs11{font-size:64.757400px;}
.fs5{font-size:65.520000px;}
.fsc{font-size:66.240000px;}
.fs17{font-size:67.999800px;}
.fs16{font-size:68.203800px;}
.fs6{font-size:71.280000px;}
.fs0{font-size:72.000000px;}
.fs15{font-size:75.706200px;}
.fsa{font-size:84.240000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:129.960000px;}
.y0{bottom:0.000000px;}
.y2e{bottom:3.239400px;}
.y24{bottom:4.049250px;}
.y27{bottom:4.769400px;}
.y2b{bottom:6.839400px;}
.y15f{bottom:10.260000px;}
.y31{bottom:12.173580px;}
.y14a{bottom:12.780000px;}
.yb3{bottom:15.120000px;}
.yc7{bottom:15.120150px;}
.y125{bottom:15.300000px;}
.yd8{bottom:18.185315px;}
.yd9{bottom:24.083540px;}
.y30{bottom:26.573490px;}
.y33{bottom:26.996550px;}
.yd7{bottom:35.640750px;}
.y2f{bottom:40.973400px;}
.y32{bottom:40.974000px;}
.y2d{bottom:52.134000px;}
.y2c{bottom:55.373400px;}
.y147{bottom:56.017050px;}
.y132{bottom:56.556150px;}
.y148{bottom:58.760700px;}
.y12c{bottom:61.567200px;}
.y121{bottom:62.281200px;}
.y122{bottom:65.062950px;}
.y131{bottom:67.040100px;}
.y15a{bottom:69.128700px;}
.y4{bottom:97.125005px;}
.y15b{bottom:109.484850px;}
.yef{bottom:120.335250px;}
.y12e{bottom:127.329300px;}
.yf7{bottom:131.129308px;}
.yf6{bottom:131.681250px;}
.y130{bottom:132.720750px;}
.ye1{bottom:132.972151px;}
.y146{bottom:133.362330px;}
.yfb{bottom:136.440000px;}
.yf8{bottom:136.872237px;}
.y12d{bottom:137.813100px;}
.yed{bottom:137.851800px;}
.ye0{bottom:138.044850px;}
.yf4{bottom:138.823558px;}
.y21{bottom:139.264499px;}
.yf3{bottom:141.656250px;}
.y12f{bottom:143.204850px;}
.y120{bottom:143.669400px;}
.y123{bottom:143.902350px;}
.yf5{bottom:145.980552px;}
.yee{bottom:147.367089px;}
.yeb{bottom:147.497715px;}
.yfc{bottom:151.560000px;}
.y145{bottom:152.523150px;}
.ye9{bottom:152.925900px;}
.y81{bottom:154.507500px;}
.y66{bottom:154.512000px;}
.y98{bottom:154.534500px;}
.y10f{bottom:154.548000px;}
.yd3{bottom:154.584000px;}
.ya2{bottom:154.597500px;}
.y167{bottom:154.602000px;}
.yb5{bottom:154.620000px;}
.y4a{bottom:156.237120px;}
.yea{bottom:156.543170px;}
.yec{bottom:165.980913px;}
.yd4{bottom:171.720000px;}
.y65{bottom:173.952000px;}
.y158{bottom:174.190500px;}
.y49{bottom:178.741080px;}
.y11e{bottom:182.641500px;}
.y143{bottom:183.721500px;}
.y10e{bottom:187.488000px;}
.y15d{bottom:191.264760px;}
.y80{bottom:191.943000px;}
.y97{bottom:191.970000px;}
.yb1{bottom:194.157000px;}
.y64{bottom:196.456500px;}
.y157{bottom:196.695000px;}
.y18{bottom:196.933500px;}
.yc5{bottom:198.828000px;}
.ydc{bottom:202.076008px;}
.ydb{bottom:203.649726px;}
.y12b{bottom:203.893949px;}
.y11d{bottom:205.146000px;}
.y142{bottom:206.226000px;}
.yda{bottom:207.189450px;}
.y15c{bottom:207.462600px;}
.yf0{bottom:208.358700px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y10d{bottom:209.992500px;}
.yf1{bottom:210.954194px;}
.yfa{bottom:211.879461px;}
.yf9{bottom:212.271750px;}
.y7f{bottom:214.447500px;}
.y96{bottom:214.474500px;}
.yd2{bottom:214.524000px;}
.y166{bottom:214.542000px;}
.yb0{bottom:216.661500px;}
.y63{bottom:218.961000px;}
.y156{bottom:219.199500px;}
.y12a{bottom:219.813750px;}
.yc4{bottom:221.332500px;}
.yf2{bottom:221.336168px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y11c{bottom:227.650500px;}
.y141{bottom:228.730500px;}
.y10c{bottom:232.497000px;}
.ya1{bottom:232.533000px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y7e{bottom:236.952000px;}
.y95{bottom:236.979000px;}
.yd1{bottom:237.028500px;}
.y165{bottom:237.046500px;}
.ye7{bottom:238.265850px;}
.yaf{bottom:239.166000px;}
.y62{bottom:241.465500px;}
.y155{bottom:241.704000px;}
.ye8{bottom:243.379291px;}
.yc3{bottom:243.837000px;}
.y11b{bottom:250.155000px;}
.y140{bottom:251.235000px;}
.y10b{bottom:255.001500px;}
.ya0{bottom:255.037500px;}
.y7d{bottom:259.456500px;}
.y94{bottom:259.483500px;}
.yd0{bottom:259.533000px;}
.y164{bottom:259.551000px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.yae{bottom:261.670500px;}
.y128{bottom:262.237500px;}
.y61{bottom:263.970000px;}
.y154{bottom:264.208500px;}
.yc2{bottom:266.341500px;}
.y184{bottom:267.953370px;}
.y48{bottom:270.180000px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y11a{bottom:272.659500px;}
.y13f{bottom:273.739500px;}
.ydf{bottom:274.536594px;}
.yde{bottom:274.691685px;}
.y10a{bottom:277.506000px;}
.y9f{bottom:277.542000px;}
.ydd{bottom:278.386500px;}
.ye5{bottom:279.795450px;}
.y7c{bottom:281.961000px;}
.y93{bottom:281.988000px;}
.ycf{bottom:282.037500px;}
.y163{bottom:282.055500px;}
.y183{bottom:283.076610px;}
.yad{bottom:284.175000px;}
.y127{bottom:284.742000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y60{bottom:286.474500px;}
.y153{bottom:286.713000px;}
.ye6{bottom:286.874898px;}
.yc1{bottom:288.846000px;}
.ye2{bottom:291.956400px;}
.y47{bottom:292.616790px;}
.ye3{bottom:294.082059px;}
.y119{bottom:295.164000px;}
.y13e{bottom:296.244000px;}
.y182{bottom:298.199850px;}
.y109{bottom:300.010500px;}
.y9e{bottom:300.046500px;}
.ye4{bottom:302.183283px;}
.y133{bottom:304.200000px;}
.y7b{bottom:304.465500px;}
.y92{bottom:304.492500px;}
.yce{bottom:304.542000px;}
.y162{bottom:304.560000px;}
.yac{bottom:306.679500px;}
.y5f{bottom:308.979000px;}
.y152{bottom:309.217500px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.yc0{bottom:311.350500px;}
.y46{bottom:315.120750px;}
.y181{bottom:316.205430px;}
.y118{bottom:317.668500px;}
.y13d{bottom:318.748500px;}
.y134{bottom:319.320000px;}
.y108{bottom:322.515000px;}
.y9d{bottom:322.551000px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y7a{bottom:326.970000px;}
.y91{bottom:326.997000px;}
.ycd{bottom:327.046500px;}
.yab{bottom:329.184000px;}
.y180{bottom:331.328670px;}
.y5e{bottom:331.483500px;}
.y151{bottom:331.722000px;}
.ybf{bottom:333.855000px;}
.y45{bottom:337.624710px;}
.y129{bottom:338.040000px;}
.y117{bottom:340.173000px;}
.y13c{bottom:341.253000px;}
.y107{bottom:345.019500px;}
.y9c{bottom:345.055500px;}
.y161{bottom:345.060000px;}
.y17f{bottom:346.451910px;}
.yf{bottom:348.133500px;}
.y79{bottom:349.474500px;}
.y90{bottom:349.501500px;}
.ycc{bottom:349.551000px;}
.yaa{bottom:351.688500px;}
.y5d{bottom:353.988000px;}
.y150{bottom:354.226500px;}
.ybe{bottom:356.359500px;}
.y44{bottom:360.128670px;}
.y116{bottom:362.677500px;}
.y13b{bottom:363.757500px;}
.y17e{bottom:364.457490px;}
.y106{bottom:367.524000px;}
.y9b{bottom:367.560000px;}
.y78{bottom:371.979000px;}
.y8f{bottom:372.006000px;}
.ycb{bottom:372.055500px;}
.ya9{bottom:374.193000px;}
.y5c{bottom:376.492500px;}
.y14f{bottom:376.731000px;}
.ybd{bottom:378.864000px;}
.y17d{bottom:379.580730px;}
.y43{bottom:382.632630px;}
.y115{bottom:385.182000px;}
.y13a{bottom:386.262000px;}
.ye{bottom:386.785499px;}
.y105{bottom:390.028500px;}
.y77{bottom:394.483500px;}
.y8e{bottom:394.510500px;}
.yca{bottom:394.560000px;}
.ya8{bottom:396.697500px;}
.y17c{bottom:397.755150px;}
.y5b{bottom:398.997000px;}
.y9a{bottom:399.054960px;}
.y14e{bottom:399.235500px;}
.ybc{bottom:401.368500px;}
.yd5{bottom:402.738300px;}
.y42{bottom:405.136590px;}
.y114{bottom:407.686500px;}
.yd{bottom:408.044999px;}
.y139{bottom:408.766500px;}
.y104{bottom:412.533000px;}
.yd6{bottom:413.750706px;}
.y17b{bottom:415.760730px;}
.y76{bottom:416.988000px;}
.y8d{bottom:417.015000px;}
.ya7{bottom:419.202000px;}
.y5a{bottom:421.501500px;}
.y99{bottom:421.560000px;}
.y14d{bottom:421.740000px;}
.ybb{bottom:423.873000px;}
.y41{bottom:427.640550px;}
.y113{bottom:430.191000px;}
.y17a{bottom:430.883970px;}
.y138{bottom:431.271000px;}
.y103{bottom:435.037500px;}
.yc9{bottom:435.060000px;}
.y75{bottom:439.492500px;}
.y8c{bottom:439.519500px;}
.ya6{bottom:441.706500px;}
.y59{bottom:444.006000px;}
.y14c{bottom:444.244500px;}
.yba{bottom:446.377500px;}
.y179{bottom:448.889550px;}
.y40{bottom:450.144510px;}
.y112{bottom:452.695500px;}
.y137{bottom:453.775500px;}
.y102{bottom:457.542000px;}
.y74{bottom:461.997000px;}
.y8b{bottom:462.024000px;}
.y15e{bottom:462.780000px;}
.y178{bottom:464.012790px;}
.ya5{bottom:464.211000px;}
.y58{bottom:466.510500px;}
.yb9{bottom:468.882000px;}
.y3f{bottom:472.648470px;}
.y160{bottom:473.040000px;}
.y111{bottom:475.200000px;}
.y136{bottom:476.280000px;}
.y177{bottom:479.136030px;}
.y101{bottom:480.046500px;}
.y73{bottom:484.501500px;}
.y8a{bottom:484.528500px;}
.yc{bottom:484.864502px;}
.ya4{bottom:486.715500px;}
.y57{bottom:489.015000px;}
.yb8{bottom:491.386500px;}
.y3e{bottom:495.152430px;}
.y176{bottom:497.141610px;}
.y110{bottom:497.704500px;}
.y135{bottom:498.784500px;}
.y159{bottom:499.500000px;}
.y100{bottom:502.551000px;}
.yb{bottom:502.864502px;}
.y72{bottom:507.006000px;}
.y89{bottom:507.033000px;}
.ya3{bottom:509.220000px;}
.y56{bottom:511.519500px;}
.y175{bottom:512.264850px;}
.yb7{bottom:513.891000px;}
.y124{bottom:516.240000px;}
.y149{bottom:517.140000px;}
.y3d{bottom:517.656390px;}
.ya{bottom:520.864502px;}
.yff{bottom:525.055500px;}
.y174{bottom:527.388090px;}
.yb2{bottom:527.580000px;}
.y71{bottom:529.510500px;}
.y88{bottom:529.537500px;}
.y14b{bottom:529.920000px;}
.y126{bottom:531.540000px;}
.y55{bottom:534.024000px;}
.yb6{bottom:536.395500px;}
.y9{bottom:538.864499px;}
.y3c{bottom:540.160350px;}
.y173{bottom:542.511330px;}
.yb4{bottom:542.700000px;}
.yfe{bottom:547.560000px;}
.y70{bottom:552.015000px;}
.y87{bottom:552.042000px;}
.y11f{bottom:552.960000px;}
.y2a{bottom:555.144000px;}
.yc6{bottom:555.660000px;}
.y54{bottom:556.528500px;}
.y144{bottom:556.560000px;}
.y8{bottom:556.864499px;}
.y172{bottom:560.516910px;}
.y29{bottom:561.983400px;}
.y3b{bottom:562.664310px;}
.yc8{bottom:570.780150px;}
.y6f{bottom:574.519500px;}
.y86{bottom:574.546500px;}
.y171{bottom:575.640150px;}
.y53{bottom:579.033000px;}
.yfd{bottom:579.060000px;}
.y3a{bottom:585.168270px;}
.y170{bottom:593.814570px;}
.y6e{bottom:597.024000px;}
.y85{bottom:597.051000px;}
.y52{bottom:601.537500px;}
.y39{bottom:607.672230px;}
.y16f{bottom:608.756910px;}
.y6d{bottom:619.528500px;}
.y84{bottom:619.555500px;}
.y16e{bottom:623.880150px;}
.y51{bottom:624.042000px;}
.y7{bottom:626.610001px;}
.y28{bottom:628.493400px;}
.y38{bottom:630.176190px;}
.y6c{bottom:642.033000px;}
.y16d{bottom:642.054570px;}
.y83{bottom:642.060000px;}
.y26{bottom:645.144000px;}
.y6{bottom:645.510000px;}
.y50{bottom:646.546500px;}
.y25{bottom:649.913400px;}
.y37{bottom:652.680150px;}
.y16c{bottom:656.996910px;}
.y6b{bottom:664.537500px;}
.y5{bottom:666.771000px;}
.y4f{bottom:669.051000px;}
.y16b{bottom:672.120150px;}
.y82{bottom:682.560000px;}
.y6a{bottom:687.042000px;}
.y16a{bottom:690.294570px;}
.y4e{bottom:691.555500px;}
.y169{bottom:705.236910px;}
.y69{bottom:709.546500px;}
.y4d{bottom:714.060000px;}
.y36{bottom:720.180000px;}
.y168{bottom:720.360150px;}
.y68{bottom:732.051000px;}
.y3{bottom:752.599495px;}
.y67{bottom:754.555500px;}
.y4c{bottom:754.560000px;}
.y35{bottom:754.740000px;}
.y4b{bottom:821.880000px;}
.y34{bottom:827.280000px;}
.y23{bottom:829.644000px;}
.y22{bottom:833.693250px;}
.y2{bottom:879.369000px;}
.y1{bottom:966.726000px;}
.h10{height:15.030000px;}
.ha{height:19.080000px;}
.h21{height:19.516497px;}
.hc{height:21.060000px;}
.h1e{height:25.236684px;}
.h35{height:28.080000px;}
.h30{height:30.420000px;}
.h2e{height:31.348033px;}
.h25{height:31.784009px;}
.h11{height:31.888080px;}
.h7{height:32.130000px;}
.h1b{height:32.940000px;}
.h22{height:33.649552px;}
.hf{height:35.048160px;}
.he{height:35.190000px;}
.h2f{height:37.911121px;}
.h26{height:38.437724px;}
.h1f{height:39.369739px;}
.h33{height:41.087783px;}
.h1c{height:45.468000px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h9{height:49.140000px;}
.h17{height:51.472080px;}
.h34{height:55.047347px;}
.h2{height:55.080000px;}
.h28{height:55.484895px;}
.h14{height:56.320312px;}
.h18{height:57.618000px;}
.h16{height:58.536000px;}
.hb{height:59.794453px;}
.h32{height:61.653286px;}
.h2d{height:65.116849px;}
.h24{height:66.022193px;}
.h2b{height:68.995891px;}
.h2a{height:69.202879px;}
.h1a{height:70.678080px;}
.h19{height:76.824000px;}
.h5{height:78.030000px;}
.h29{height:78.959201px;}
.h15{height:89.884080px;}
.h20{height:93.250594px;}
.hd{height:109.019180px;}
.h4{height:119.055004px;}
.h2c{height:215.278500px;}
.h23{height:219.420000px;}
.h31{height:273.420000px;}
.h27{height:313.380000px;}
.h1d{height:471.960000px;}
.h8{height:892.500000px;}
.h12{height:892.980000px;}
.h13{height:893.250000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.wa{width:14.580000px;}
.w9{width:36.720000px;}
.wb{width:82.710000px;}
.w6{width:89.280000px;}
.w7{width:148.680000px;}
.w5{width:160.470000px;}
.w4{width:162.090000px;}
.w8{width:191.790000px;}
.w10{width:354.780000px;}
.w18{width:399.600000px;}
.w19{width:403.738500px;}
.w17{width:403.920000px;}
.w16{width:405.900000px;}
.w13{width:411.121500px;}
.w12{width:413.100000px;}
.w15{width:416.520000px;}
.we{width:417.060000px;}
.wf{width:417.600000px;}
.w11{width:417.778500px;}
.w14{width:419.580000px;}
.wd{width:629.250000px;}
.wc{width:629.460000px;}
.w3{width:630.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x12{left:-8.460000px;}
.x11{left:-6.030000px;}
.x13{left:-4.500000px;}
.xf{left:-1.710000px;}
.x0{left:0.000000px;}
.x37{left:7.855350px;}
.x38{left:25.995030px;}
.xb{left:36.180000px;}
.x7{left:38.070000px;}
.x35{left:41.873850px;}
.x24{left:66.852300px;}
.x41{left:73.474350px;}
.x34{left:77.982750px;}
.x2b{left:79.418850px;}
.xa{left:80.820000px;}
.x29{left:84.954150px;}
.x2a{left:90.473459px;}
.x2c{left:95.976778px;}
.x17{left:97.380000px;}
.x42{left:100.282050px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x15{left:113.580000px;}
.x36{left:114.660000px;}
.x47{left:116.458920px;}
.x1b{left:120.960000px;}
.x19{left:124.393500px;}
.x22{left:134.423700px;}
.x40{left:136.440000px;}
.x18{left:140.580000px;}
.x46{left:142.920000px;}
.xd{left:144.180000px;}
.x23{left:145.462319px;}
.x1a{left:151.393500px;}
.x5{left:152.640000px;}
.x8{left:154.260000px;}
.x1c{left:158.760000px;}
.x6{left:160.380000px;}
.x3c{left:162.156450px;}
.xc{left:166.050000px;}
.x1f{left:168.434550px;}
.x3d{left:171.944100px;}
.x25{left:176.215800px;}
.x20{left:179.476157px;}
.x26{left:181.735109px;}
.x2d{left:184.660109px;}
.x16{left:187.923240px;}
.x21{left:190.517764px;}
.x1d{left:200.729400px;}
.x4{left:203.484001px;}
.x1e{left:207.825000px;}
.x31{left:214.686450px;}
.x9{left:225.450000px;}
.x2e{left:226.898700px;}
.x27{left:228.210900px;}
.x33{left:229.891950px;}
.x2f{left:232.418009px;}
.x28{left:233.730209px;}
.x30{left:237.937319px;}
.x3a{left:258.486750px;}
.x3b{left:268.274400px;}
.x44{left:274.749150px;}
.x45{left:282.192642px;}
.x3e{left:310.115100px;}
.x14{left:312.750300px;}
.xe{left:314.730000px;}
.x32{left:316.016250px;}
.x10{left:317.430000px;}
.x3f{left:319.902750px;}
.x43{left:335.926500px;}
.x39{left:375.977250px;}
.x3{left:454.959000px;}
@media print{
.v2{vertical-align:-11.638400pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:47.894093pt;}
.ls19{letter-spacing:-0.943360pt;}
.ls1c{letter-spacing:-0.686080pt;}
.ls67{letter-spacing:-0.479936pt;}
.ls1d{letter-spacing:-0.471680pt;}
.ls6c{letter-spacing:-0.428800pt;}
.ls64{letter-spacing:-0.324070pt;}
.ls18{letter-spacing:-0.300160pt;}
.ls56{letter-spacing:-0.294400pt;}
.ls26{letter-spacing:-0.288000pt;}
.ls4f{letter-spacing:-0.260139pt;}
.ls29{letter-spacing:-0.240000pt;}
.ls5b{letter-spacing:-0.235715pt;}
.ls62{letter-spacing:-0.232486pt;}
.ls12{letter-spacing:-0.224640pt;}
.ls1b{letter-spacing:-0.214400pt;}
.ls25{letter-spacing:-0.192000pt;}
.ls5e{letter-spacing:-0.181333pt;}
.ls39{letter-spacing:-0.176640pt;}
.ls15{letter-spacing:-0.171520pt;}
.ls2a{letter-spacing:-0.144000pt;}
.ls17{letter-spacing:-0.128640pt;}
.ls28{letter-spacing:-0.128000pt;}
.ls55{letter-spacing:-0.117760pt;}
.ls65{letter-spacing:-0.107986pt;}
.ls5a{letter-spacing:-0.105914pt;}
.ls61{letter-spacing:-0.104461pt;}
.ls35{letter-spacing:-0.096000pt;}
.ls66{letter-spacing:-0.095987pt;}
.ls52{letter-spacing:-0.084098pt;}
.ls5{letter-spacing:-0.081536pt;}
.ls4d{letter-spacing:-0.065035pt;}
.ls36{letter-spacing:-0.064000pt;}
.ls3b{letter-spacing:-0.058880pt;}
.ls53{letter-spacing:-0.048776pt;}
.ls30{letter-spacing:-0.048000pt;}
.ls5d{letter-spacing:-0.047288pt;}
.ls16{letter-spacing:-0.042880pt;}
.ls50{letter-spacing:-0.032517pt;}
.ls51{letter-spacing:-0.028033pt;}
.ls8{letter-spacing:-0.025536pt;}
.ls9{letter-spacing:-0.025344pt;}
.ls7{letter-spacing:-0.021280pt;}
.ls4a{letter-spacing:-0.021024pt;}
.lsa{letter-spacing:-0.010667pt;}
.ls6{letter-spacing:-0.006336pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.017024pt;}
.ls2{letter-spacing:0.025536pt;}
.ls63{letter-spacing:0.035995pt;}
.ls3d{letter-spacing:0.048000pt;}
.ls4c{letter-spacing:0.048776pt;}
.ls5f{letter-spacing:0.056773pt;}
.ls27{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.069312pt;}
.ls11{letter-spacing:0.074880pt;}
.ls4e{letter-spacing:0.081293pt;}
.lsc{letter-spacing:0.085760pt;}
.ls2f{letter-spacing:0.096000pt;}
.ls6b{letter-spacing:0.102912pt;}
.ls60{letter-spacing:0.113546pt;}
.ls59{letter-spacing:0.115124pt;}
.ls4b{letter-spacing:0.126144pt;}
.ls1e{letter-spacing:0.128640pt;}
.ls14{letter-spacing:0.144000pt;}
.ls4{letter-spacing:0.170667pt;}
.lse{letter-spacing:0.180096pt;}
.ls5c{letter-spacing:0.189152pt;}
.ls31{letter-spacing:0.192000pt;}
.ls1a{letter-spacing:0.214400pt;}
.ls38{letter-spacing:0.235520pt;}
.ls13{letter-spacing:0.240000pt;}
.lsb{letter-spacing:0.250667pt;}
.ls6a{letter-spacing:0.261568pt;}
.ls49{letter-spacing:0.262383pt;}
.ls3a{letter-spacing:0.294400pt;}
.lsd{letter-spacing:0.300160pt;}
.ls42{letter-spacing:0.384000pt;}
.ls32{letter-spacing:0.432000pt;}
.ls43{letter-spacing:0.441600pt;}
.ls22{letter-spacing:0.446400pt;}
.ls21{letter-spacing:0.460800pt;}
.ls40{letter-spacing:0.484800pt;}
.ls47{letter-spacing:0.528000pt;}
.ls45{letter-spacing:0.624000pt;}
.ls69{letter-spacing:0.643200pt;}
.ls57{letter-spacing:0.681600pt;}
.ls68{letter-spacing:0.705600pt;}
.ls41{letter-spacing:0.864000pt;}
.ls34{letter-spacing:1.008000pt;}
.ls2d{letter-spacing:1.200000pt;}
.ls46{letter-spacing:1.824000pt;}
.ls33{letter-spacing:2.448000pt;}
.ls3c{letter-spacing:2.462400pt;}
.ls3e{letter-spacing:3.120000pt;}
.ls44{letter-spacing:3.744000pt;}
.ls23{letter-spacing:4.368000pt;}
.ls48{letter-spacing:6.288000pt;}
.ls54{letter-spacing:7.012800pt;}
.ls58{letter-spacing:8.208000pt;}
.ls24{letter-spacing:8.880000pt;}
.ls3f{letter-spacing:12.048000pt;}
.ls20{letter-spacing:25.088000pt;}
.ls2e{letter-spacing:46.800000pt;}
.ls10{letter-spacing:62.261760pt;}
.ls37{letter-spacing:73.894400pt;}
.ls2c{letter-spacing:424.848000pt;}
.ls1f{letter-spacing:438.960000pt;}
.ls2b{letter-spacing:497.808000pt;}
.lsf{letter-spacing:758.304000pt;}
.ws11{word-spacing:-15.125760pt;}
.ws12{word-spacing:-14.901120pt;}
.wsdc{word-spacing:-13.479071pt;}
.wsf0{word-spacing:-13.312000pt;}
.ws3c{word-spacing:-13.184000pt;}
.wsd6{word-spacing:-13.124166pt;}
.ws3b{word-spacing:-13.120000pt;}
.wsdb{word-spacing:-13.098776pt;}
.ws3d{word-spacing:-12.992000pt;}
.wse0{word-spacing:-12.944198pt;}
.wsec{word-spacing:-12.928000pt;}
.wsdf{word-spacing:-12.887426pt;}
.ws8e{word-spacing:-12.011520pt;}
.ws8d{word-spacing:-11.893760pt;}
.wse5{word-spacing:-11.882581pt;}
.wsd3{word-spacing:-11.776000pt;}
.wsbb{word-spacing:-11.544849pt;}
.wse6{word-spacing:-10.366618pt;}
.wsaa{word-spacing:-10.320000pt;}
.ws78{word-spacing:-9.936000pt;}
.ws79{word-spacing:-9.888000pt;}
.ws9d{word-spacing:-9.840000pt;}
.ws62{word-spacing:-9.792000pt;}
.ws3f{word-spacing:-9.696000pt;}
.ws63{word-spacing:-9.648000pt;}
.wsd5{word-spacing:-9.600000pt;}
.ws7a{word-spacing:-9.552000pt;}
.ws3a{word-spacing:-9.504000pt;}
.ws3e{word-spacing:-9.456000pt;}
.ws40{word-spacing:-9.408000pt;}
.ws13{word-spacing:-9.216000pt;}
.wsd7{word-spacing:-9.214483pt;}
.wse1{word-spacing:-9.088090pt;}
.ws16{word-spacing:-8.919040pt;}
.wsf4{word-spacing:-8.876160pt;}
.wsf3{word-spacing:-8.747520pt;}
.wsf1{word-spacing:-8.661760pt;}
.wsf2{word-spacing:-8.490240pt;}
.ws14{word-spacing:-8.447360pt;}
.ws15{word-spacing:-8.361600pt;}
.wsb9{word-spacing:-7.526592pt;}
.wsd9{word-spacing:-7.374518pt;}
.wse3{word-spacing:-7.273486pt;}
.wsbc{word-spacing:-5.658016pt;}
.wsbd{word-spacing:-5.462912pt;}
.wsb2{word-spacing:-3.888000pt;}
.ws6a{word-spacing:-2.880000pt;}
.ws8c{word-spacing:-2.496000pt;}
.ws72{word-spacing:-2.400000pt;}
.ws73{word-spacing:-2.352000pt;}
.wsb1{word-spacing:-2.256000pt;}
.ws25{word-spacing:-2.144000pt;}
.ws8b{word-spacing:-2.016000pt;}
.ws8a{word-spacing:-1.872000pt;}
.ws48{word-spacing:-1.776000pt;}
.ws49{word-spacing:-1.728000pt;}
.ws45{word-spacing:-1.632000pt;}
.ws83{word-spacing:-1.536000pt;}
.ws24{word-spacing:-1.457920pt;}
.ws5c{word-spacing:-1.392000pt;}
.ws89{word-spacing:-1.248000pt;}
.ws6e{word-spacing:-1.152000pt;}
.ws46{word-spacing:-1.104000pt;}
.ws4c{word-spacing:-0.960000pt;}
.wsa3{word-spacing:-0.864000pt;}
.ws35{word-spacing:-0.857600pt;}
.ws26{word-spacing:-0.814720pt;}
.ws5d{word-spacing:-0.720000pt;}
.ws27{word-spacing:-0.686080pt;}
.ws57{word-spacing:-0.576000pt;}
.ws33{word-spacing:-0.557440pt;}
.wsde{word-spacing:-0.538355pt;}
.ws2{word-spacing:-0.481536pt;}
.ws18{word-spacing:-0.480000pt;}
.ws6c{word-spacing:-0.432000pt;}
.ws19{word-spacing:-0.384000pt;}
.ws47{word-spacing:-0.336000pt;}
.wsf9{word-spacing:-0.300160pt;}
.ws9a{word-spacing:-0.288000pt;}
.wsc0{word-spacing:-0.262383pt;}
.ws86{word-spacing:-0.240000pt;}
.ws38{word-spacing:-0.214400pt;}
.wsc{word-spacing:-0.181333pt;}
.ws91{word-spacing:-0.176640pt;}
.wsf8{word-spacing:-0.171520pt;}
.ws8{word-spacing:-0.165984pt;}
.wsc9{word-spacing:-0.162587pt;}
.wsa8{word-spacing:-0.144000pt;}
.ws92{word-spacing:-0.117760pt;}
.ws68{word-spacing:-0.096000pt;}
.wsc4{word-spacing:-0.048776pt;}
.ws32{word-spacing:-0.042880pt;}
.ws0{word-spacing:0.000000pt;}
.wscc{word-spacing:0.028033pt;}
.wsdd{word-spacing:0.047288pt;}
.ws71{word-spacing:0.048000pt;}
.wsf5{word-spacing:0.085760pt;}
.wseb{word-spacing:0.095987pt;}
.wsc3{word-spacing:0.097552pt;}
.ws1e{word-spacing:0.128640pt;}
.wsc1{word-spacing:0.130069pt;}
.ws4d{word-spacing:0.144000pt;}
.ws17{word-spacing:0.149760pt;}
.ws31{word-spacing:0.171520pt;}
.wsbf{word-spacing:0.189216pt;}
.ws61{word-spacing:0.192000pt;}
.wsd2{word-spacing:0.211363pt;}
.wsd4{word-spacing:0.235520pt;}
.ws88{word-spacing:0.240000pt;}
.wsc2{word-spacing:0.243880pt;}
.wsc7{word-spacing:0.252293pt;}
.wsce{word-spacing:0.260139pt;}
.ws53{word-spacing:0.288000pt;}
.wsc8{word-spacing:0.308358pt;}
.ws7e{word-spacing:0.320000pt;}
.ws1b{word-spacing:0.343040pt;}
.ws7f{word-spacing:0.384000pt;}
.wscd{word-spacing:0.406467pt;}
.ws4{word-spacing:0.415872pt;}
.ws5{word-spacing:0.417088pt;}
.ws36{word-spacing:0.428800pt;}
.wsb{word-spacing:0.429856pt;}
.wsca{word-spacing:0.438984pt;}
.wsed{word-spacing:0.448000pt;}
.ws10{word-spacing:0.464000pt;}
.ws7{word-spacing:0.468160pt;}
.ws1c{word-spacing:0.471680pt;}
.wsad{word-spacing:0.512000pt;}
.wsf6{word-spacing:0.514560pt;}
.wsd1{word-spacing:0.520277pt;}
.ws95{word-spacing:0.528000pt;}
.ws39{word-spacing:0.600320pt;}
.wsea{word-spacing:0.611918pt;}
.wsac{word-spacing:0.624000pt;}
.ws54{word-spacing:0.672000pt;}
.wsd0{word-spacing:0.715381pt;}
.wsf7{word-spacing:0.728960pt;}
.wsc6{word-spacing:0.764157pt;}
.ws52{word-spacing:0.768000pt;}
.wsd{word-spacing:0.773333pt;}
.wscf{word-spacing:0.780416pt;}
.wscb{word-spacing:0.796675pt;}
.ws41{word-spacing:0.816000pt;}
.wsa{word-spacing:0.817344pt;}
.ws69{word-spacing:0.960000pt;}
.wsc5{word-spacing:0.991779pt;}
.ws9{word-spacing:0.995904pt;}
.ws6{word-spacing:1.064000pt;}
.wsf{word-spacing:1.098667pt;}
.ws3{word-spacing:1.115136pt;}
.ws85{word-spacing:1.200000pt;}
.ws64{word-spacing:1.344000pt;}
.ws4b{word-spacing:1.392000pt;}
.wse{word-spacing:1.418667pt;}
.ws4a{word-spacing:1.440000pt;}
.ws77{word-spacing:1.488000pt;}
.wsaf{word-spacing:1.584000pt;}
.ws1{word-spacing:1.636544pt;}
.wsb0{word-spacing:1.680000pt;}
.wsa9{word-spacing:1.824000pt;}
.ws74{word-spacing:1.968000pt;}
.ws75{word-spacing:2.064000pt;}
.ws5a{word-spacing:2.112000pt;}
.ws65{word-spacing:2.208000pt;}
.ws30{word-spacing:2.272640pt;}
.ws2f{word-spacing:2.358400pt;}
.ws1a{word-spacing:2.401280pt;}
.ws80{word-spacing:2.448000pt;}
.ws5f{word-spacing:2.592000pt;}
.ws2b{word-spacing:2.658560pt;}
.ws50{word-spacing:2.688000pt;}
.ws96{word-spacing:2.736000pt;}
.ws97{word-spacing:2.880000pt;}
.wsa6{word-spacing:2.976000pt;}
.ws22{word-spacing:3.001600pt;}
.ws23{word-spacing:3.044480pt;}
.ws51{word-spacing:3.120000pt;}
.ws87{word-spacing:3.264000pt;}
.ws37{word-spacing:3.301760pt;}
.wsef{word-spacing:3.312000pt;}
.ws44{word-spacing:3.360000pt;}
.ws43{word-spacing:3.408000pt;}
.wsb4{word-spacing:3.600000pt;}
.ws29{word-spacing:3.644800pt;}
.wsa7{word-spacing:3.744000pt;}
.ws28{word-spacing:3.816320pt;}
.ws5b{word-spacing:3.888000pt;}
.ws81{word-spacing:3.984000pt;}
.ws82{word-spacing:4.032000pt;}
.ws4f{word-spacing:4.128000pt;}
.ws98{word-spacing:4.320000pt;}
.ws1d{word-spacing:4.330880pt;}
.ws70{word-spacing:4.368000pt;}
.ws2a{word-spacing:4.459520pt;}
.wsa5{word-spacing:4.512000pt;}
.ws4e{word-spacing:4.608000pt;}
.ws60{word-spacing:5.040000pt;}
.ws42{word-spacing:5.184000pt;}
.ws93{word-spacing:5.280000pt;}
.ws56{word-spacing:5.328000pt;}
.wsae{word-spacing:5.424000pt;}
.ws66{word-spacing:5.664000pt;}
.ws9e{word-spacing:5.808000pt;}
.ws34{word-spacing:5.831680pt;}
.ws67{word-spacing:5.904000pt;}
.ws9f{word-spacing:5.952000pt;}
.wsa2{word-spacing:6.048000pt;}
.ws21{word-spacing:6.088960pt;}
.ws1f{word-spacing:6.174720pt;}
.ws20{word-spacing:6.217600pt;}
.wsb5{word-spacing:6.288000pt;}
.wsbe{word-spacing:6.432000pt;}
.wsb7{word-spacing:6.528000pt;}
.wsa1{word-spacing:6.576000pt;}
.wsab{word-spacing:6.720000pt;}
.ws2c{word-spacing:6.817920pt;}
.ws2d{word-spacing:6.903680pt;}
.wsa4{word-spacing:7.104000pt;}
.ws2e{word-spacing:7.375360pt;}
.ws8f{word-spacing:7.824000pt;}
.wse4{word-spacing:7.968000pt;}
.wsda{word-spacing:8.208000pt;}
.wsb3{word-spacing:8.352000pt;}
.ws76{word-spacing:8.448000pt;}
.ws6f{word-spacing:8.496000pt;}
.ws58{word-spacing:8.880000pt;}
.ws59{word-spacing:9.024000pt;}
.wsa0{word-spacing:9.120000pt;}
.ws94{word-spacing:9.264000pt;}
.ws7b{word-spacing:9.504000pt;}
.ws7d{word-spacing:9.600000pt;}
.ws90{word-spacing:9.648000pt;}
.ws6b{word-spacing:9.744000pt;}
.ws55{word-spacing:9.792000pt;}
.wsb6{word-spacing:9.888000pt;}
.wse7{word-spacing:10.128000pt;}
.ws84{word-spacing:10.272000pt;}
.ws6d{word-spacing:10.368000pt;}
.ws7c{word-spacing:10.416000pt;}
.ws5e{word-spacing:10.944000pt;}
.wse8{word-spacing:12.048000pt;}
.wse9{word-spacing:12.336000pt;}
.ws99{word-spacing:13.008000pt;}
.ws9b{word-spacing:13.488000pt;}
.ws9c{word-spacing:13.632000pt;}
.wsb8{word-spacing:17.424000pt;}
.wsee{word-spacing:19.872000pt;}
.wse2{word-spacing:899.005229pt;}
.wsd8{word-spacing:911.485603pt;}
.wsba{word-spacing:1201.543957pt;}
._b{margin-left:-4.810848pt;}
._a{margin-left:-3.854400pt;}
._2{margin-left:-2.252640pt;}
._0{margin-left:-1.176448pt;}
._1{width:1.596672pt;}
._5{width:2.991488pt;}
._8{width:4.416000pt;}
._4{width:6.003200pt;}
._9{width:8.058624pt;}
._7{width:10.800000pt;}
._c{width:11.856000pt;}
._3{width:18.497792pt;}
._6{width:509.925760pt;}
.fsf{font-size:16.258667pt;}
.fsd{font-size:21.024000pt;}
.fs19{font-size:26.115200pt;}
.fs12{font-size:26.478400pt;}
.fs10{font-size:28.032533pt;}
.fse{font-size:32.797867pt;}
.fs1a{font-size:33.212267pt;}
.fs13{font-size:33.673600pt;}
.fs1c{font-size:35.995200pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:42.560000pt;}
.fsb{font-size:42.880000pt;}
.fs14{font-size:47.288000pt;}
.fs1d{font-size:47.993600pt;}
.fs9{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1b{font-size:54.011733pt;}
.fs1{font-size:56.000000pt;}
.fs18{font-size:56.772800pt;}
.fs11{font-size:57.562133pt;}
.fs5{font-size:58.240000pt;}
.fsc{font-size:58.880000pt;}
.fs17{font-size:60.444267pt;}
.fs16{font-size:60.625600pt;}
.fs6{font-size:63.360000pt;}
.fs0{font-size:64.000000pt;}
.fs15{font-size:67.294400pt;}
.fsa{font-size:74.880000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:115.520000pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:2.879467pt;}
.y24{bottom:3.599333pt;}
.y27{bottom:4.239467pt;}
.y2b{bottom:6.079467pt;}
.y15f{bottom:9.120000pt;}
.y31{bottom:10.820960pt;}
.y14a{bottom:11.360000pt;}
.yb3{bottom:13.440000pt;}
.yc7{bottom:13.440133pt;}
.y125{bottom:13.600000pt;}
.yd8{bottom:16.164724pt;}
.yd9{bottom:21.407591pt;}
.y30{bottom:23.620880pt;}
.y33{bottom:23.996933pt;}
.yd7{bottom:31.680667pt;}
.y2f{bottom:36.420800pt;}
.y32{bottom:36.421333pt;}
.y2d{bottom:46.341333pt;}
.y2c{bottom:49.220800pt;}
.y147{bottom:49.792933pt;}
.y132{bottom:50.272133pt;}
.y148{bottom:52.231733pt;}
.y12c{bottom:54.726400pt;}
.y121{bottom:55.361067pt;}
.y122{bottom:57.833733pt;}
.y131{bottom:59.591200pt;}
.y15a{bottom:61.447733pt;}
.y4{bottom:86.333337pt;}
.y15b{bottom:97.319867pt;}
.yef{bottom:106.964667pt;}
.y12e{bottom:113.181600pt;}
.yf7{bottom:116.559385pt;}
.yf6{bottom:117.050000pt;}
.y130{bottom:117.974000pt;}
.ye1{bottom:118.197467pt;}
.y146{bottom:118.544293pt;}
.yfb{bottom:121.280000pt;}
.yf8{bottom:121.664211pt;}
.y12d{bottom:122.500533pt;}
.yed{bottom:122.534933pt;}
.ye0{bottom:122.706533pt;}
.yf4{bottom:123.398719pt;}
.y21{bottom:123.790666pt;}
.yf3{bottom:125.916667pt;}
.y12f{bottom:127.293200pt;}
.y120{bottom:127.706133pt;}
.y123{bottom:127.913200pt;}
.yf5{bottom:129.760491pt;}
.yee{bottom:130.992968pt;}
.yeb{bottom:131.109080pt;}
.yfc{bottom:134.720000pt;}
.y145{bottom:135.576133pt;}
.ye9{bottom:135.934133pt;}
.y81{bottom:137.340000pt;}
.y66{bottom:137.344000pt;}
.y98{bottom:137.364000pt;}
.y10f{bottom:137.376000pt;}
.yd3{bottom:137.408000pt;}
.ya2{bottom:137.420000pt;}
.y167{bottom:137.424000pt;}
.yb5{bottom:137.440000pt;}
.y4a{bottom:138.877440pt;}
.yea{bottom:139.149484pt;}
.yec{bottom:147.538589pt;}
.yd4{bottom:152.640000pt;}
.y65{bottom:154.624000pt;}
.y158{bottom:154.836000pt;}
.y49{bottom:158.880960pt;}
.y11e{bottom:162.348000pt;}
.y143{bottom:163.308000pt;}
.y10e{bottom:166.656000pt;}
.y15d{bottom:170.013120pt;}
.y80{bottom:170.616000pt;}
.y97{bottom:170.640000pt;}
.yb1{bottom:172.584000pt;}
.y64{bottom:174.628000pt;}
.y157{bottom:174.840000pt;}
.y18{bottom:175.052000pt;}
.yc5{bottom:176.736000pt;}
.ydc{bottom:179.623119pt;}
.ydb{bottom:181.021979pt;}
.y12b{bottom:181.239066pt;}
.y11d{bottom:182.352000pt;}
.y142{bottom:183.312000pt;}
.yda{bottom:184.168400pt;}
.y15c{bottom:184.411200pt;}
.yf0{bottom:185.207733pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y10d{bottom:186.660000pt;}
.yf1{bottom:187.514839pt;}
.yfa{bottom:188.337299pt;}
.yf9{bottom:188.686000pt;}
.y7f{bottom:190.620000pt;}
.y96{bottom:190.644000pt;}
.yd2{bottom:190.688000pt;}
.y166{bottom:190.704000pt;}
.yb0{bottom:192.588000pt;}
.y63{bottom:194.632000pt;}
.y156{bottom:194.844000pt;}
.y12a{bottom:195.390000pt;}
.yc4{bottom:196.740000pt;}
.yf2{bottom:196.743260pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y11c{bottom:202.356000pt;}
.y141{bottom:203.316000pt;}
.y10c{bottom:206.664000pt;}
.ya1{bottom:206.696000pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y7e{bottom:210.624000pt;}
.y95{bottom:210.648000pt;}
.yd1{bottom:210.692000pt;}
.y165{bottom:210.708000pt;}
.ye7{bottom:211.791867pt;}
.yaf{bottom:212.592000pt;}
.y62{bottom:214.636000pt;}
.y155{bottom:214.848000pt;}
.ye8{bottom:216.337148pt;}
.yc3{bottom:216.744000pt;}
.y11b{bottom:222.360000pt;}
.y140{bottom:223.320000pt;}
.y10b{bottom:226.668000pt;}
.ya0{bottom:226.700000pt;}
.y7d{bottom:230.628000pt;}
.y94{bottom:230.652000pt;}
.yd0{bottom:230.696000pt;}
.y164{bottom:230.712000pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.yae{bottom:232.596000pt;}
.y128{bottom:233.100000pt;}
.y61{bottom:234.640000pt;}
.y154{bottom:234.852000pt;}
.yc2{bottom:236.748000pt;}
.y184{bottom:238.180773pt;}
.y48{bottom:240.160000pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y11a{bottom:242.364000pt;}
.y13f{bottom:243.324000pt;}
.ydf{bottom:244.032528pt;}
.yde{bottom:244.170387pt;}
.y10a{bottom:246.672000pt;}
.y9f{bottom:246.704000pt;}
.ydd{bottom:247.454667pt;}
.ye5{bottom:248.707067pt;}
.y7c{bottom:250.632000pt;}
.y93{bottom:250.656000pt;}
.ycf{bottom:250.700000pt;}
.y163{bottom:250.716000pt;}
.y183{bottom:251.623653pt;}
.yad{bottom:252.600000pt;}
.y127{bottom:253.104000pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y60{bottom:254.644000pt;}
.y153{bottom:254.856000pt;}
.ye6{bottom:254.999909pt;}
.yc1{bottom:256.752000pt;}
.ye2{bottom:259.516800pt;}
.y47{bottom:260.103813pt;}
.ye3{bottom:261.406275pt;}
.y119{bottom:262.368000pt;}
.y13e{bottom:263.328000pt;}
.y182{bottom:265.066533pt;}
.y109{bottom:266.676000pt;}
.y9e{bottom:266.708000pt;}
.ye4{bottom:268.607363pt;}
.y133{bottom:270.400000pt;}
.y7b{bottom:270.636000pt;}
.y92{bottom:270.660000pt;}
.yce{bottom:270.704000pt;}
.y162{bottom:270.720000pt;}
.yac{bottom:272.604000pt;}
.y5f{bottom:274.648000pt;}
.y152{bottom:274.860000pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.yc0{bottom:276.756000pt;}
.y46{bottom:280.107333pt;}
.y181{bottom:281.071493pt;}
.y118{bottom:282.372000pt;}
.y13d{bottom:283.332000pt;}
.y134{bottom:283.840000pt;}
.y108{bottom:286.680000pt;}
.y9d{bottom:286.712000pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y7a{bottom:290.640000pt;}
.y91{bottom:290.664000pt;}
.ycd{bottom:290.708000pt;}
.yab{bottom:292.608000pt;}
.y180{bottom:294.514373pt;}
.y5e{bottom:294.652000pt;}
.y151{bottom:294.864000pt;}
.ybf{bottom:296.760000pt;}
.y45{bottom:300.110853pt;}
.y129{bottom:300.480000pt;}
.y117{bottom:302.376000pt;}
.y13c{bottom:303.336000pt;}
.y107{bottom:306.684000pt;}
.y9c{bottom:306.716000pt;}
.y161{bottom:306.720000pt;}
.y17f{bottom:307.957253pt;}
.yf{bottom:309.452000pt;}
.y79{bottom:310.644000pt;}
.y90{bottom:310.668000pt;}
.ycc{bottom:310.712000pt;}
.yaa{bottom:312.612000pt;}
.y5d{bottom:314.656000pt;}
.y150{bottom:314.868000pt;}
.ybe{bottom:316.764000pt;}
.y44{bottom:320.114373pt;}
.y116{bottom:322.380000pt;}
.y13b{bottom:323.340000pt;}
.y17e{bottom:323.962213pt;}
.y106{bottom:326.688000pt;}
.y9b{bottom:326.720000pt;}
.y78{bottom:330.648000pt;}
.y8f{bottom:330.672000pt;}
.ycb{bottom:330.716000pt;}
.ya9{bottom:332.616000pt;}
.y5c{bottom:334.660000pt;}
.y14f{bottom:334.872000pt;}
.ybd{bottom:336.768000pt;}
.y17d{bottom:337.405093pt;}
.y43{bottom:340.117893pt;}
.y115{bottom:342.384000pt;}
.y13a{bottom:343.344000pt;}
.ye{bottom:343.809333pt;}
.y105{bottom:346.692000pt;}
.y77{bottom:350.652000pt;}
.y8e{bottom:350.676000pt;}
.yca{bottom:350.720000pt;}
.ya8{bottom:352.620000pt;}
.y17c{bottom:353.560133pt;}
.y5b{bottom:354.664000pt;}
.y9a{bottom:354.715520pt;}
.y14e{bottom:354.876000pt;}
.ybc{bottom:356.772000pt;}
.yd5{bottom:357.989600pt;}
.y42{bottom:360.121413pt;}
.y114{bottom:362.388000pt;}
.yd{bottom:362.706666pt;}
.y139{bottom:363.348000pt;}
.y104{bottom:366.696000pt;}
.yd6{bottom:367.778405pt;}
.y17b{bottom:369.565093pt;}
.y76{bottom:370.656000pt;}
.y8d{bottom:370.680000pt;}
.ya7{bottom:372.624000pt;}
.y5a{bottom:374.668000pt;}
.y99{bottom:374.720000pt;}
.y14d{bottom:374.880000pt;}
.ybb{bottom:376.776000pt;}
.y41{bottom:380.124933pt;}
.y113{bottom:382.392000pt;}
.y17a{bottom:383.007973pt;}
.y138{bottom:383.352000pt;}
.y103{bottom:386.700000pt;}
.yc9{bottom:386.720000pt;}
.y75{bottom:390.660000pt;}
.y8c{bottom:390.684000pt;}
.ya6{bottom:392.628000pt;}
.y59{bottom:394.672000pt;}
.y14c{bottom:394.884000pt;}
.yba{bottom:396.780000pt;}
.y179{bottom:399.012933pt;}
.y40{bottom:400.128453pt;}
.y112{bottom:402.396000pt;}
.y137{bottom:403.356000pt;}
.y102{bottom:406.704000pt;}
.y74{bottom:410.664000pt;}
.y8b{bottom:410.688000pt;}
.y15e{bottom:411.360000pt;}
.y178{bottom:412.455813pt;}
.ya5{bottom:412.632000pt;}
.y58{bottom:414.676000pt;}
.yb9{bottom:416.784000pt;}
.y3f{bottom:420.131973pt;}
.y160{bottom:420.480000pt;}
.y111{bottom:422.400000pt;}
.y136{bottom:423.360000pt;}
.y177{bottom:425.898693pt;}
.y101{bottom:426.708000pt;}
.y73{bottom:430.668000pt;}
.y8a{bottom:430.692000pt;}
.yc{bottom:430.990669pt;}
.ya4{bottom:432.636000pt;}
.y57{bottom:434.680000pt;}
.yb8{bottom:436.788000pt;}
.y3e{bottom:440.135493pt;}
.y176{bottom:441.903653pt;}
.y110{bottom:442.404000pt;}
.y135{bottom:443.364000pt;}
.y159{bottom:444.000000pt;}
.y100{bottom:446.712000pt;}
.yb{bottom:446.990669pt;}
.y72{bottom:450.672000pt;}
.y89{bottom:450.696000pt;}
.ya3{bottom:452.640000pt;}
.y56{bottom:454.684000pt;}
.y175{bottom:455.346533pt;}
.yb7{bottom:456.792000pt;}
.y124{bottom:458.880000pt;}
.y149{bottom:459.680000pt;}
.y3d{bottom:460.139013pt;}
.ya{bottom:462.990669pt;}
.yff{bottom:466.716000pt;}
.y174{bottom:468.789413pt;}
.yb2{bottom:468.960000pt;}
.y71{bottom:470.676000pt;}
.y88{bottom:470.700000pt;}
.y14b{bottom:471.040000pt;}
.y126{bottom:472.480000pt;}
.y55{bottom:474.688000pt;}
.yb6{bottom:476.796000pt;}
.y9{bottom:478.990666pt;}
.y3c{bottom:480.142533pt;}
.y173{bottom:482.232293pt;}
.yb4{bottom:482.400000pt;}
.yfe{bottom:486.720000pt;}
.y70{bottom:490.680000pt;}
.y87{bottom:490.704000pt;}
.y11f{bottom:491.520000pt;}
.y2a{bottom:493.461333pt;}
.yc6{bottom:493.920000pt;}
.y54{bottom:494.692000pt;}
.y144{bottom:494.720000pt;}
.y8{bottom:494.990666pt;}
.y172{bottom:498.237253pt;}
.y29{bottom:499.540800pt;}
.y3b{bottom:500.146053pt;}
.yc8{bottom:507.360133pt;}
.y6f{bottom:510.684000pt;}
.y86{bottom:510.708000pt;}
.y171{bottom:511.680133pt;}
.y53{bottom:514.696000pt;}
.yfd{bottom:514.720000pt;}
.y3a{bottom:520.149573pt;}
.y170{bottom:527.835173pt;}
.y6e{bottom:530.688000pt;}
.y85{bottom:530.712000pt;}
.y52{bottom:534.700000pt;}
.y39{bottom:540.153093pt;}
.y16f{bottom:541.117253pt;}
.y6d{bottom:550.692000pt;}
.y84{bottom:550.716000pt;}
.y16e{bottom:554.560133pt;}
.y51{bottom:554.704000pt;}
.y7{bottom:556.986668pt;}
.y28{bottom:558.660800pt;}
.y38{bottom:560.156613pt;}
.y6c{bottom:570.696000pt;}
.y16d{bottom:570.715173pt;}
.y83{bottom:570.720000pt;}
.y26{bottom:573.461333pt;}
.y6{bottom:573.786667pt;}
.y50{bottom:574.708000pt;}
.y25{bottom:577.700800pt;}
.y37{bottom:580.160133pt;}
.y16c{bottom:583.997253pt;}
.y6b{bottom:590.700000pt;}
.y5{bottom:592.685334pt;}
.y4f{bottom:594.712000pt;}
.y16b{bottom:597.440133pt;}
.y82{bottom:606.720000pt;}
.y6a{bottom:610.704000pt;}
.y16a{bottom:613.595173pt;}
.y4e{bottom:614.716000pt;}
.y169{bottom:626.877253pt;}
.y69{bottom:630.708000pt;}
.y4d{bottom:634.720000pt;}
.y36{bottom:640.160000pt;}
.y168{bottom:640.320133pt;}
.y68{bottom:650.712000pt;}
.y3{bottom:668.977329pt;}
.y67{bottom:670.716000pt;}
.y4c{bottom:670.720000pt;}
.y35{bottom:670.880000pt;}
.y4b{bottom:730.560000pt;}
.y34{bottom:735.360000pt;}
.y23{bottom:737.461333pt;}
.y22{bottom:741.060667pt;}
.y2{bottom:781.661334pt;}
.y1{bottom:859.312000pt;}
.h10{height:13.360000pt;}
.ha{height:16.960000pt;}
.h21{height:17.347997pt;}
.hc{height:18.720000pt;}
.h1e{height:22.432608pt;}
.h35{height:24.960000pt;}
.h30{height:27.040000pt;}
.h2e{height:27.864918pt;}
.h25{height:28.252453pt;}
.h11{height:28.344960pt;}
.h7{height:28.560000pt;}
.h1b{height:29.280000pt;}
.h22{height:29.910713pt;}
.hf{height:31.153920pt;}
.he{height:31.280000pt;}
.h2f{height:33.698774pt;}
.h26{height:34.166866pt;}
.h1f{height:34.995324pt;}
.h33{height:36.522473pt;}
.h1c{height:40.416000pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h9{height:43.680000pt;}
.h17{height:45.752960pt;}
.h34{height:48.930975pt;}
.h2{height:48.960000pt;}
.h28{height:49.319906pt;}
.h14{height:50.062500pt;}
.h18{height:51.216000pt;}
.h16{height:52.032000pt;}
.hb{height:53.150625pt;}
.h32{height:54.802921pt;}
.h2d{height:57.881644pt;}
.h24{height:58.686394pt;}
.h2b{height:61.329681pt;}
.h2a{height:61.513670pt;}
.h1a{height:62.824960pt;}
.h19{height:68.288000pt;}
.h5{height:69.360000pt;}
.h29{height:70.185956pt;}
.h15{height:79.896960pt;}
.h20{height:82.889417pt;}
.hd{height:96.905938pt;}
.h4{height:105.826671pt;}
.h2c{height:191.358667pt;}
.h23{height:195.040000pt;}
.h31{height:243.040000pt;}
.h27{height:278.560000pt;}
.h1d{height:419.520000pt;}
.h8{height:793.333333pt;}
.h12{height:793.760000pt;}
.h13{height:794.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.wa{width:12.960000pt;}
.w9{width:32.640000pt;}
.wb{width:73.520000pt;}
.w6{width:79.360000pt;}
.w7{width:132.160000pt;}
.w5{width:142.640000pt;}
.w4{width:144.080000pt;}
.w8{width:170.480000pt;}
.w10{width:315.360000pt;}
.w18{width:355.200000pt;}
.w19{width:358.878667pt;}
.w17{width:359.040000pt;}
.w16{width:360.800000pt;}
.w13{width:365.441333pt;}
.w12{width:367.200000pt;}
.w15{width:370.240000pt;}
.we{width:370.720000pt;}
.wf{width:371.200000pt;}
.w11{width:371.358667pt;}
.w14{width:372.960000pt;}
.wd{width:559.333333pt;}
.wc{width:559.520000pt;}
.w3{width:560.000000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x12{left:-7.520000pt;}
.x11{left:-5.360000pt;}
.x13{left:-4.000000pt;}
.xf{left:-1.520000pt;}
.x0{left:0.000000pt;}
.x37{left:6.982533pt;}
.x38{left:23.106693pt;}
.xb{left:32.160000pt;}
.x7{left:33.840000pt;}
.x35{left:37.221200pt;}
.x24{left:59.424267pt;}
.x41{left:65.310533pt;}
.x34{left:69.318000pt;}
.x2b{left:70.594533pt;}
.xa{left:71.840000pt;}
.x29{left:75.514800pt;}
.x2a{left:80.420853pt;}
.x2c{left:85.312691pt;}
.x17{left:86.560000pt;}
.x42{left:89.139600pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x15{left:100.960000pt;}
.x36{left:101.920000pt;}
.x47{left:103.519040pt;}
.x1b{left:107.520000pt;}
.x19{left:110.572000pt;}
.x22{left:119.487733pt;}
.x40{left:121.280000pt;}
.x18{left:124.960000pt;}
.x46{left:127.040000pt;}
.xd{left:128.160000pt;}
.x23{left:129.299839pt;}
.x1a{left:134.572000pt;}
.x5{left:135.680000pt;}
.x8{left:137.120000pt;}
.x1c{left:141.120000pt;}
.x6{left:142.560000pt;}
.x3c{left:144.139067pt;}
.xc{left:147.600000pt;}
.x1f{left:149.719600pt;}
.x3d{left:152.839200pt;}
.x25{left:156.636267pt;}
.x20{left:159.534362pt;}
.x26{left:161.542319pt;}
.x2d{left:164.142319pt;}
.x16{left:167.042880pt;}
.x21{left:169.349123pt;}
.x1d{left:178.426133pt;}
.x4{left:180.874667pt;}
.x1e{left:184.733333pt;}
.x31{left:190.832400pt;}
.x9{left:200.400000pt;}
.x2e{left:201.687733pt;}
.x27{left:202.854133pt;}
.x33{left:204.348400pt;}
.x2f{left:206.593786pt;}
.x28{left:207.760186pt;}
.x30{left:211.499839pt;}
.x3a{left:229.766000pt;}
.x3b{left:238.466133pt;}
.x44{left:244.221467pt;}
.x45{left:250.837904pt;}
.x3e{left:275.657867pt;}
.x14{left:278.000267pt;}
.xe{left:279.760000pt;}
.x32{left:280.903333pt;}
.x10{left:282.160000pt;}
.x3f{left:284.358000pt;}
.x43{left:298.601333pt;}
.x39{left:334.202000pt;}
.x3{left:404.408000pt;}
}




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