
    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_d487b913328e08f1794ac3aa.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3aec0ddedfc601a1235fd0e5.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_52521e14869355c48b53979a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e867c38a757734ba04ed6493.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0b1766c7dda33ba607f27d17.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a35322dadca5b257146522f3.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_308ab1e59b303e76c0496673.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.795000;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_5a3052e581a23313cf9793ed.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.716000;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_68abe33d2bd3215c5c5b028b.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_4ad9d9bfaff032cf5d7c0665.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.006348;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_1abf832f7988b48b505bab05.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_7dd45c0234127491e0e4e60f.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.211426;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_36e35f771c42897df43522d9.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.482000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_b43ac78d5f081a1205228468.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.724000;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_d2506acfd227e1b9a4bac990.woff2')format("woff");}.fff{font-family:fff;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{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);}
.m6{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);}
.m1f{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);}
.m1d{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);}
.m24{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);}
.m11{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);}
.m1a{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);}
.m1c{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.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);}
.m2a{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);}
.m20{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);}
.m21{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);}
.ma{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);}
.m12{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);}
.m22{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);}
.m28{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);}
.m9{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);}
.m26{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);}
.m13{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.m1b{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);}
.m3{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);}
.m8{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);}
.m2c{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);}
.me{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);}
.m2b{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);}
.m2d{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);}
.m23{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);}
.m17{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);}
.m7{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);}
.m27{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);}
.md{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);}
.mc{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m29{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);}
.m25{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);}
.m10{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);}
.mb{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);}
.m2{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(0.451025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451025,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-17.358000px;}
.v1{vertical-align:-9.648400px;}
.v2{vertical-align:-2.313518px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.696000px;}
.ls23{letter-spacing:-0.270540px;}
.ls24{letter-spacing:-0.252504px;}
.ls22{letter-spacing:-0.156312px;}
.ls28{letter-spacing:-0.108216px;}
.ls2a{letter-spacing:-0.090180px;}
.ls25{letter-spacing:-0.078156px;}
.ls27{letter-spacing:-0.072144px;}
.ls26{letter-spacing:-0.060120px;}
.ls29{letter-spacing:-0.054108px;}
.ls2b{letter-spacing:-0.048096px;}
.ls1e{letter-spacing:-0.024048px;}
.ls21{letter-spacing:-0.018036px;}
.ls1b{letter-spacing:-0.014364px;}
.ls1f{letter-spacing:-0.012024px;}
.ls20{letter-spacing:-0.006012px;}
.ls1c{letter-spacing:-0.004788px;}
.ls7{letter-spacing:0.000000px;}
.ls30{letter-spacing:0.000741px;}
.ls32{letter-spacing:0.001155px;}
.ls34{letter-spacing:0.002074px;}
.ls31{letter-spacing:0.003701px;}
.ls18{letter-spacing:0.012024px;}
.lse{letter-spacing:0.018036px;}
.ls13{letter-spacing:0.021600px;}
.ls11{letter-spacing:0.024048px;}
.ls17{letter-spacing:0.030060px;}
.ls14{letter-spacing:0.032400px;}
.ls10{letter-spacing:0.036072px;}
.ls12{letter-spacing:0.037800px;}
.lsd{letter-spacing:0.042084px;}
.ls19{letter-spacing:0.048096px;}
.ls15{letter-spacing:0.048600px;}
.lsc{letter-spacing:0.054108px;}
.lsf{letter-spacing:0.060120px;}
.ls1d{letter-spacing:0.078156px;}
.ls16{letter-spacing:0.114228px;}
.lsb{letter-spacing:0.177156px;}
.lsa{letter-spacing:0.191520px;}
.ls6{letter-spacing:1.275394px;}
.ls0{letter-spacing:1.861130px;}
.ls1{letter-spacing:11.571746px;}
.ls5{letter-spacing:11.954850px;}
.ls33{letter-spacing:12.373424px;}
.ls2c{letter-spacing:14.824349px;}
.ls2f{letter-spacing:14.884124px;}
.ls2e{letter-spacing:14.943900px;}
.ls9{letter-spacing:15.063451px;}
.ls8{letter-spacing:15.242778px;}
.ls2d{letter-spacing:15.900310px;}
.ls2{letter-spacing:17.739501px;}
.ls1a{letter-spacing:21.818094px;}
.ls3{letter-spacing:62.761200px;}
.ls4{letter-spacing:64.321654px;}
.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;}
}
.wsef{word-spacing:-13.449600px;}
.ws3f{word-spacing:-12.161520px;}
.ws40{word-spacing:-11.970000px;}
.ws34{word-spacing:-11.955150px;}
.ws13{word-spacing:-11.357400px;}
.ws7{word-spacing:-10.460700px;}
.ws51{word-spacing:-3.583152px;}
.ws83{word-spacing:-3.541068px;}
.ws82{word-spacing:-3.498984px;}
.ws52{word-spacing:-3.480948px;}
.ws42{word-spacing:-3.347434px;}
.wse7{word-spacing:-2.929004px;}
.wsb3{word-spacing:-2.570351px;}
.wsc7{word-spacing:-2.450800px;}
.wse3{word-spacing:-2.151922px;}
.wse2{word-spacing:-2.092146px;}
.ws36{word-spacing:-2.032370px;}
.ws1{word-spacing:-1.908367px;}
.ws63{word-spacing:-1.749492px;}
.ws45{word-spacing:-1.733492px;}
.ws73{word-spacing:-1.719432px;}
.ws62{word-spacing:-1.707408px;}
.ws11b{word-spacing:-1.613952px;}
.ws90{word-spacing:-1.613941px;}
.ws7b{word-spacing:-1.599192px;}
.ws30{word-spacing:-1.554166px;}
.ws61{word-spacing:-1.382760px;}
.ws79{word-spacing:-1.376748px;}
.wsd0{word-spacing:-1.374839px;}
.ws7a{word-spacing:-1.322640px;}
.ws0{word-spacing:-1.322630px;}
.wse8{word-spacing:-1.315063px;}
.ws2f{word-spacing:-1.255288px;}
.ws8{word-spacing:-1.171598px;}
.wsb5{word-spacing:-1.135736px;}
.ws122{word-spacing:-1.075968px;}
.wsa{word-spacing:-1.046070px;}
.wse5{word-spacing:-1.016185px;}
.ws97{word-spacing:-0.956410px;}
.ws10b{word-spacing:-0.860774px;}
.ws129{word-spacing:-0.806976px;}
.ws91{word-spacing:-0.777083px;}
.wsbe{word-spacing:-0.717307px;}
.ws7f{word-spacing:-0.673344px;}
.ws8e{word-spacing:-0.657532px;}
.ws81{word-spacing:-0.601200px;}
.wse6{word-spacing:-0.597756px;}
.ws7e{word-spacing:-0.571140px;}
.ws9b{word-spacing:-0.418429px;}
.ws19{word-spacing:-0.376589px;}
.ws3e{word-spacing:-0.358654px;}
.ws28{word-spacing:-0.298878px;}
.ws4e{word-spacing:-0.277704px;}
.ws11c{word-spacing:-0.268992px;}
.ws67{word-spacing:-0.252504px;}
.ws2a{word-spacing:-0.239102px;}
.ws127{word-spacing:-0.215194px;}
.ws43{word-spacing:-0.179327px;}
.wsff{word-spacing:-0.161395px;}
.ws2e{word-spacing:-0.119551px;}
.ws14{word-spacing:-0.107597px;}
.ws4f{word-spacing:-0.081396px;}
.ws4d{word-spacing:-0.071820px;}
.ws32{word-spacing:-0.059776px;}
.ws1d{word-spacing:-0.053798px;}
.ws35{word-spacing:-0.047821px;}
.ws12{word-spacing:-0.003942px;}
.ws3{word-spacing:0.000000px;}
.ws72{word-spacing:0.036072px;}
.wseb{word-spacing:0.053798px;}
.ws54{word-spacing:0.054108px;}
.ws24{word-spacing:0.059776px;}
.ws7c{word-spacing:0.060120px;}
.ws86{word-spacing:0.066132px;}
.ws6e{word-spacing:0.078156px;}
.ws41{word-spacing:0.107597px;}
.ws55{word-spacing:0.108216px;}
.ws22{word-spacing:0.119551px;}
.ws87{word-spacing:0.144288px;}
.ws6d{word-spacing:0.145800px;}
.ws115{word-spacing:0.161395px;}
.ws3d{word-spacing:0.179327px;}
.ws80{word-spacing:0.186372px;}
.ws1a{word-spacing:0.215194px;}
.ws3b{word-spacing:0.239102px;}
.ws1b{word-spacing:0.268992px;}
.ws3c{word-spacing:0.298878px;}
.ws103{word-spacing:0.322790px;}
.ws6f{word-spacing:0.348696px;}
.wsa7{word-spacing:0.358654px;}
.ws66{word-spacing:0.366732px;}
.ws10e{word-spacing:0.376589px;}
.wsaa{word-spacing:0.418429px;}
.wsa9{word-spacing:0.478205px;}
.wsa8{word-spacing:0.537980px;}
.wse4{word-spacing:0.597756px;}
.ws9f{word-spacing:0.657532px;}
.wsa5{word-spacing:0.717307px;}
.ws92{word-spacing:0.777083px;}
.ws125{word-spacing:0.806976px;}
.ws89{word-spacing:0.836858px;}
.ws6c{word-spacing:0.858600px;}
.ws12f{word-spacing:0.860774px;}
.ws6b{word-spacing:0.874800px;}
.ws93{word-spacing:0.896634px;}
.ws16{word-spacing:0.914573px;}
.ws26{word-spacing:0.956410px;}
.ws9{word-spacing:1.004227px;}
.ws44{word-spacing:1.016185px;}
.ws95{word-spacing:1.075961px;}
.ws18{word-spacing:1.075968px;}
.ws74{word-spacing:1.160316px;}
.wsac{word-spacing:1.195512px;}
.ws5a{word-spacing:1.196388px;}
.ws76{word-spacing:1.238472px;}
.ws2d{word-spacing:1.255288px;}
.ws75{word-spacing:1.256508px;}
.ws2c{word-spacing:1.315063px;}
.ws113{word-spacing:1.344960px;}
.wsb4{word-spacing:1.374839px;}
.wsa1{word-spacing:1.434614px;}
.wse0{word-spacing:1.494390px;}
.ws5b{word-spacing:1.503000px;}
.wsa3{word-spacing:1.613941px;}
.ws27{word-spacing:1.673717px;}
.ws23{word-spacing:1.733492px;}
.ws3a{word-spacing:1.793268px;}
.ws64{word-spacing:1.851696px;}
.wsd5{word-spacing:1.853044px;}
.ws118{word-spacing:1.882944px;}
.wsc0{word-spacing:1.972595px;}
.ws8c{word-spacing:2.032370px;}
.ws1c{word-spacing:2.044339px;}
.ws65{word-spacing:2.050092px;}
.wsab{word-spacing:2.092146px;}
.ws20{word-spacing:2.151922px;}
.ws7d{word-spacing:2.212416px;}
.ws70{word-spacing:2.224440px;}
.ws9d{word-spacing:2.271473px;}
.ws123{word-spacing:2.313331px;}
.ws9c{word-spacing:2.331248px;}
.wsc6{word-spacing:2.450800px;}
.ws15{word-spacing:2.474726px;}
.wsa6{word-spacing:2.510575px;}
.ws2{word-spacing:2.511541px;}
.ws4{word-spacing:2.514839px;}
.wsf1{word-spacing:2.528525px;}
.ws46{word-spacing:2.570351px;}
.ws5d{word-spacing:2.579148px;}
.wsfc{word-spacing:2.582323px;}
.ws71{word-spacing:2.585160px;}
.ws57{word-spacing:2.597184px;}
.ws56{word-spacing:2.621232px;}
.wsc3{word-spacing:2.630126px;}
.ws68{word-spacing:2.667600px;}
.ws6a{word-spacing:2.673000px;}
.ws69{word-spacing:2.683800px;}
.ws9e{word-spacing:2.689902px;}
.ws104{word-spacing:2.689920px;}
.ws17{word-spacing:2.743718px;}
.wsc2{word-spacing:2.749678px;}
.ws2b{word-spacing:2.809453px;}
.ws94{word-spacing:2.869229px;}
.ws8a{word-spacing:2.929004px;}
.ws78{word-spacing:2.963916px;}
.ws37{word-spacing:2.988780px;}
.ws85{word-spacing:2.993976px;}
.ws77{word-spacing:3.048084px;}
.wsa2{word-spacing:3.048556px;}
.wsb7{word-spacing:3.108331px;}
.ws21{word-spacing:3.168107px;}
.wsf5{word-spacing:3.174106px;}
.ws128{word-spacing:3.219475px;}
.ws1e{word-spacing:3.219667px;}
.ws110{word-spacing:3.220032px;}
.ws12e{word-spacing:3.221712px;}
.ws121{word-spacing:3.222758px;}
.ws101{word-spacing:3.224026px;}
.ws10f{word-spacing:3.224448px;}
.ws29{word-spacing:3.227882px;}
.wsee{word-spacing:3.227904px;}
.ws31{word-spacing:3.287658px;}
.wsf9{word-spacing:3.335501px;}
.wsc1{word-spacing:3.347434px;}
.ws84{word-spacing:3.354696px;}
.wsf6{word-spacing:3.389299px;}
.wsdf{word-spacing:3.407209px;}
.ws10a{word-spacing:3.443098px;}
.ws4b{word-spacing:3.466985px;}
.ws114{word-spacing:3.496896px;}
.ws1f{word-spacing:3.586536px;}
.ws108{word-spacing:3.658291px;}
.wsbb{word-spacing:3.706087px;}
.wsa4{word-spacing:3.765863px;}
.wse9{word-spacing:3.825638px;}
.wsbd{word-spacing:3.945190px;}
.ws4c{word-spacing:4.004965px;}
.ws88{word-spacing:4.016016px;}
.wsbc{word-spacing:4.064741px;}
.ws112{word-spacing:4.088678px;}
.wsc8{word-spacing:4.184292px;}
.ws38{word-spacing:4.244068px;}
.wsce{word-spacing:4.303843px;}
.ws47{word-spacing:4.423394px;}
.ws105{word-spacing:4.465267px;}
.wsda{word-spacing:4.602721px;}
.ws117{word-spacing:4.626662px;}
.wsba{word-spacing:4.662497px;}
.ws9a{word-spacing:4.722272px;}
.ws10{word-spacing:4.770079px;}
.ws25{word-spacing:4.841824px;}
.ws11{word-spacing:4.853765px;}
.wsb6{word-spacing:4.901599px;}
.wsa0{word-spacing:4.961375px;}
.wsae{word-spacing:5.021150px;}
.wsc4{word-spacing:5.080926px;}
.ws60{word-spacing:5.098176px;}
.ws5e{word-spacing:5.116212px;}
.ws5f{word-spacing:5.140260px;}
.wsc5{word-spacing:5.140702px;}
.wse1{word-spacing:5.200477px;}
.wscf{word-spacing:5.320028px;}
.ws39{word-spacing:5.439580px;}
.ws53{word-spacing:5.440860px;}
.wsb9{word-spacing:5.559131px;}
.ws59{word-spacing:5.795568px;}
.ws58{word-spacing:5.879736px;}
.wsaf{word-spacing:5.917784px;}
.wsde{word-spacing:6.037336px;}
.wsb2{word-spacing:6.276438px;}
.ws96{word-spacing:6.575316px;}
.ws119{word-spacing:6.724800px;}
.ws5c{word-spacing:6.877728px;}
.wsd9{word-spacing:6.993745px;}
.wsc9{word-spacing:7.591501px;}
.ws98{word-spacing:7.770828px;}
.wse{word-spacing:7.782761px;}
.ws99{word-spacing:7.830604px;}
.wsbf{word-spacing:7.890379px;}
.wsdc{word-spacing:7.950155px;}
.wsea{word-spacing:8.069706px;}
.wsdb{word-spacing:8.249033px;}
.wsb1{word-spacing:8.308808px;}
.wsd4{word-spacing:8.368584px;}
.wsb8{word-spacing:8.428360px;}
.wsec{word-spacing:8.553946px;}
.wsca{word-spacing:8.667462px;}
.wsdd{word-spacing:9.922750px;}
.ws8b{word-spacing:10.221628px;}
.wsad{word-spacing:10.341179px;}
.ws5{word-spacing:10.415759px;}
.wsfb{word-spacing:11.136269px;}
.ws50{word-spacing:11.620476px;}
.wsd8{word-spacing:11.835569px;}
.ws33{word-spacing:11.906545px;}
.wsc{word-spacing:12.176255px;}
.wsd3{word-spacing:12.313774px;}
.ws12a{word-spacing:12.535027px;}
.ws100{word-spacing:13.234406px;}
.ws12d{word-spacing:13.285272px;}
.ws11a{word-spacing:13.288205px;}
.wsf0{word-spacing:13.342003px;}
.ws130{word-spacing:13.382170px;}
.ws102{word-spacing:13.382851px;}
.ws10d{word-spacing:13.383907px;}
.ws11f{word-spacing:13.384560px;}
.ws126{word-spacing:13.385453px;}
.ws131{word-spacing:13.386230px;}
.wsed{word-spacing:13.386259px;}
.ws11e{word-spacing:13.386298px;}
.ws120{word-spacing:13.387430px;}
.wsf3{word-spacing:13.387536px;}
.ws12c{word-spacing:13.387891px;}
.wsfa{word-spacing:13.388093px;}
.ws132{word-spacing:13.388899px;}
.ws109{word-spacing:13.389965px;}
.ws11d{word-spacing:13.394093px;}
.wsf4{word-spacing:13.395802px;}
.wsf8{word-spacing:13.449600px;}
.ws107{word-spacing:13.503398px;}
.ws124{word-spacing:13.557197px;}
.ws116{word-spacing:13.588621px;}
.ws10c{word-spacing:13.610995px;}
.ws12b{word-spacing:13.718592px;}
.wsd1{word-spacing:13.748388px;}
.wsd2{word-spacing:14.286368px;}
.ws106{word-spacing:14.310374px;}
.ws4a{word-spacing:14.884124px;}
.ws8f{word-spacing:14.964612px;}
.ws8d{word-spacing:15.063451px;}
.ws6{word-spacing:15.481836px;}
.wsf2{word-spacing:15.870528px;}
.wsd{word-spacing:16.109478px;}
.ws111{word-spacing:16.569907px;}
.wsf7{word-spacing:16.785101px;}
.wscd{word-spacing:17.036046px;}
.wsd6{word-spacing:17.334924px;}
.ws48{word-spacing:17.454475px;}
.wsb0{word-spacing:17.574026px;}
.wsfe{word-spacing:20.013005px;}
.wsfd{word-spacing:20.066803px;}
.wscb{word-spacing:20.204153px;}
.wsd7{word-spacing:20.503031px;}
.wsf{word-spacing:26.109907px;}
.wscc{word-spacing:26.839244px;}
.wsb{word-spacing:26.840252px;}
.ws49{word-spacing:29.828024px;}
._20{margin-left:-23.604570px;}
._29{margin-left:-20.560037px;}
._13{margin-left:-7.643710px;}
._10{margin-left:-6.328646px;}
._7{margin-left:-5.308087px;}
._9{margin-left:-3.538724px;}
._15{margin-left:-2.482384px;}
._0{margin-left:-1.322630px;}
._1{width:1.091170px;}
._3{width:2.301354px;}
._5{width:3.699295px;}
._1d{width:4.729840px;}
._2{width:12.218098px;}
._8{width:13.963615px;}
._b{width:15.978125px;}
._c{width:17.246957px;}
._d{width:18.836881px;}
._a{width:19.851610px;}
._e{width:21.220338px;}
._f{width:22.834279px;}
._19{width:24.866650px;}
._1a{width:25.882835px;}
._17{width:27.768502px;}
._1c{width:28.998733px;}
._4{width:30.587087px;}
._23{width:31.979946px;}
._16{width:33.534112px;}
._1b{width:35.374098px;}
._1e{width:36.881545px;}
._1f{width:37.957506px;}
._25{width:39.810550px;}
._18{width:42.548285px;}
._21{width:44.361062px;}
._22{width:48.478012px;}
._24{width:49.912626px;}
._28{width:51.339724px;}
._26{width:54.634898px;}
._2a{width:66.394766px;}
._6{width:69.327877px;}
._11{width:965.760647px;}
._14{width:2133.925910px;}
._27{width:2541.641771px;}
._12{width:2565.551771px;}
.fc6{color:transparent;}
.fc5{color:rgb(8,117,183);}
.fc4{color:rgb(4,6,6);}
.fc3{color:rgb(24,71,104);}
.fc2{color:rgb(109,164,194);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(12,11,11);}
.fsb{font-size:35.865600px;}
.fs5{font-size:39.779955px;}
.fs4{font-size:41.124751px;}
.fs2{font-size:41.842800px;}
.fs1{font-size:41.936104px;}
.fs3{font-size:45.033277px;}
.fsa{font-size:45.429600px;}
.fs6{font-size:47.095448px;}
.fs0{font-size:47.236800px;}
.fsc{font-size:47.820600px;}
.fse{font-size:47.880000px;}
.fsd{font-size:53.798400px;}
.fs10{font-size:54.000000px;}
.fs11{font-size:56.058000px;}
.fs8{font-size:59.775600px;}
.fsf{font-size:60.120000px;}
.fs9{font-size:107.596800px;}
.fs7{font-size:136.067040px;}
.y5e{bottom:-527.536050px;}
.y84{bottom:-466.237026px;}
.y83{bottom:-446.977584px;}
.y82{bottom:-427.718142px;}
.y81{bottom:-408.548880px;}
.y80{bottom:-389.289438px;}
.y7f{bottom:-370.120176px;}
.y7e{bottom:-350.860734px;}
.y7d{bottom:-331.601292px;}
.y7c{bottom:-312.430527px;}
.y7b{bottom:-293.171085px;}
.y7a{bottom:-273.911643px;}
.y79{bottom:-254.742381px;}
.y78{bottom:-235.482939px;}
.y77{bottom:-216.313677px;}
.y76{bottom:-197.054235px;}
.y75{bottom:-177.794793px;}
.y74{bottom:-158.625531px;}
.y73{bottom:-139.366089px;}
.y72{bottom:-115.695342px;}
.y71{bottom:-96.435900px;}
.y70{bottom:-59.626500px;}
.y6f{bottom:-42.256050px;}
.y6e{bottom:-24.976050px;}
.y6d{bottom:-2.559192px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.425340px;}
.y1e{bottom:4.281255px;}
.y1d{bottom:7.959393px;}
.y1c{bottom:12.228458px;}
.y2{bottom:14.151273px;}
.y1f{bottom:16.129519px;}
.y4c{bottom:31.890000px;}
.y9d{bottom:93.060000px;}
.y1a{bottom:104.646000px;}
.yf4{bottom:105.847500px;}
.yca{bottom:107.193000px;}
.yc6{bottom:107.641500px;}
.y4b{bottom:111.301500px;}
.y9c{bottom:111.889500px;}
.y138{bottom:117.280500px;}
.y16e{bottom:121.762500px;}
.y19{bottom:122.535000px;}
.yf3{bottom:124.677000px;}
.yc9{bottom:126.022500px;}
.yc5{bottom:126.471000px;}
.y4a{bottom:130.131000px;}
.y9b{bottom:130.719000px;}
.y137{bottom:134.541000px;}
.y16d{bottom:139.023000px;}
.y18{bottom:140.422500px;}
.yf2{bottom:143.506500px;}
.yc8{bottom:144.852000px;}
.yc4{bottom:145.300500px;}
.y49{bottom:148.960500px;}
.y9a{bottom:149.548500px;}
.y136{bottom:151.800000px;}
.y16b{bottom:156.283500px;}
.y16c{bottom:156.492000px;}
.y17{bottom:158.310000px;}
.yf1{bottom:162.336000px;}
.yff{bottom:162.694500px;}
.ydd{bottom:163.681500px;}
.yc3{bottom:164.130000px;}
.y48{bottom:167.790000px;}
.yc7{bottom:168.165000px;}
.y99{bottom:168.378000px;}
.y135{bottom:169.060500px;}
.y16a{bottom:173.544000px;}
.y16{bottom:176.199000px;}
.yf0{bottom:181.165500px;}
.ydc{bottom:182.511000px;}
.yc2{bottom:182.959500px;}
.y134{bottom:186.321000px;}
.y47{bottom:186.619500px;}
.y98{bottom:187.207500px;}
.yfe{bottom:189.235500px;}
.y169{bottom:190.804500px;}
.y15{bottom:194.086500px;}
.yef{bottom:199.995000px;}
.ydb{bottom:201.340500px;}
.yc1{bottom:201.789000px;}
.y133{bottom:203.581500px;}
.y46{bottom:205.449000px;}
.yf5{bottom:205.824000px;}
.y97{bottom:206.037000px;}
.yfd{bottom:206.809500px;}
.y168{bottom:208.065000px;}
.y14{bottom:211.974000px;}
.yee{bottom:218.824500px;}
.yda{bottom:220.170000px;}
.yc0{bottom:220.618500px;}
.y132{bottom:220.842000px;}
.y45{bottom:224.278500px;}
.y96{bottom:224.866500px;}
.y167{bottom:225.325500px;}
.y13{bottom:229.863000px;}
.yfc{bottom:233.350500px;}
.yed{bottom:237.654000px;}
.y131{bottom:238.102500px;}
.yd9{bottom:238.999500px;}
.ybf{bottom:239.446500px;}
.y166{bottom:242.586000px;}
.y44{bottom:243.106500px;}
.y95{bottom:243.696000px;}
.y130{bottom:255.363000px;}
.yec{bottom:256.483500px;}
.yd8{bottom:257.829000px;}
.ybe{bottom:258.276000px;}
.y165{bottom:259.846500px;}
.yfb{bottom:259.891500px;}
.y43{bottom:261.936000px;}
.y94{bottom:262.525500px;}
.y12f{bottom:272.623500px;}
.yeb{bottom:275.313000px;}
.yd7{bottom:276.658500px;}
.ybd{bottom:277.105500px;}
.y42{bottom:280.765500px;}
.y93{bottom:281.355000px;}
.yfa{bottom:286.431000px;}
.y12e{bottom:289.884000px;}
.yea{bottom:294.142500px;}
.y164{bottom:294.366000px;}
.yd6{bottom:295.488000px;}
.ybc{bottom:295.935000px;}
.y41{bottom:299.595000px;}
.y12{bottom:300.154500px;}
.y92{bottom:300.184500px;}
.y6c{bottom:301.911033px;}
.y12d{bottom:307.143000px;}
.y163{bottom:311.626500px;}
.ye9{bottom:312.972000px;}
.yd5{bottom:314.317500px;}
.ybb{bottom:314.764500px;}
.y11{bottom:318.043500px;}
.y40{bottom:318.424500px;}
.y91{bottom:319.014000px;}
.y6b{bottom:321.170475px;}
.y12c{bottom:324.403500px;}
.y162{bottom:328.887000px;}
.yf9{bottom:330.546000px;}
.ye8{bottom:331.801500px;}
.yd4{bottom:333.145500px;}
.yba{bottom:333.594000px;}
.y10{bottom:335.931000px;}
.y3f{bottom:337.254000px;}
.y90{bottom:337.843500px;}
.y6a{bottom:340.339737px;}
.y12b{bottom:341.664000px;}
.y161{bottom:346.147500px;}
.ye7{bottom:350.631000px;}
.yd3{bottom:351.975000px;}
.yb9{bottom:352.423500px;}
.yf{bottom:353.818500px;}
.y3e{bottom:356.083500px;}
.y8f{bottom:356.673000px;}
.yf8{bottom:357.087000px;}
.y12a{bottom:358.924500px;}
.y69{bottom:359.599179px;}
.y160{bottom:363.408000px;}
.ye6{bottom:369.460500px;}
.yd2{bottom:370.804500px;}
.yb8{bottom:371.253000px;}
.yf7{bottom:374.661000px;}
.y3d{bottom:374.913000px;}
.y8e{bottom:375.502500px;}
.y129{bottom:376.185000px;}
.y68{bottom:378.858621px;}
.y15f{bottom:380.668500px;}
.ye{bottom:380.673000px;}
.ye5{bottom:388.290000px;}
.yd1{bottom:389.634000px;}
.yb7{bottom:390.082500px;}
.yf6{bottom:392.235000px;}
.y128{bottom:393.445500px;}
.y3c{bottom:393.742500px;}
.y8d{bottom:394.332000px;}
.y15e{bottom:397.929000px;}
.y67{bottom:398.027883px;}
.yd{bottom:398.562000px;}
.ye4{bottom:407.119500px;}
.yd0{bottom:408.463500px;}
.yb6{bottom:408.912000px;}
.y127{bottom:410.706000px;}
.y3b{bottom:412.572000px;}
.y8c{bottom:413.161500px;}
.y15d{bottom:415.188000px;}
.yc{bottom:416.449500px;}
.y66{bottom:417.287325px;}
.ye3{bottom:425.949000px;}
.ycf{bottom:427.293000px;}
.yb5{bottom:427.741500px;}
.y126{bottom:427.966500px;}
.y3a{bottom:431.401500px;}
.y8b{bottom:431.991000px;}
.y15c{bottom:432.448500px;}
.y65{bottom:436.546767px;}
.ye2{bottom:444.778500px;}
.yb{bottom:444.798000px;}
.y125{bottom:445.225500px;}
.yce{bottom:446.122500px;}
.yb4{bottom:446.571000px;}
.y15b{bottom:449.709000px;}
.y39{bottom:450.231000px;}
.y8a{bottom:450.820500px;}
.y64{bottom:455.716029px;}
.y124{bottom:462.486000px;}
.ye1{bottom:463.608000px;}
.ycd{bottom:464.952000px;}
.yb3{bottom:465.400500px;}
.y15a{bottom:466.969500px;}
.y38{bottom:469.060500px;}
.ya{bottom:471.652500px;}
.y89{bottom:474.132000px;}
.y63{bottom:474.975471px;}
.y123{bottom:479.746500px;}
.ye0{bottom:482.437500px;}
.ycc{bottom:483.781500px;}
.yb2{bottom:484.230000px;}
.y37{bottom:487.890000px;}
.y9{bottom:489.540000px;}
.y88{bottom:489.823500px;}
.y62{bottom:494.144733px;}
.y122{bottom:497.007000px;}
.y159{bottom:501.490500px;}
.yb1{bottom:503.059500px;}
.ydf{bottom:505.749000px;}
.ycb{bottom:507.094500px;}
.y8{bottom:507.429000px;}
.y36{bottom:511.203000px;}
.y61{bottom:513.404175px;}
.y121{bottom:514.267500px;}
.y158{bottom:518.751000px;}
.y87{bottom:520.251000px;}
.yb0{bottom:521.889000px;}
.y7{bottom:525.316500px;}
.yde{bottom:525.924000px;}
.y120{bottom:531.528000px;}
.y60{bottom:532.663617px;}
.y157{bottom:536.011500px;}
.y86{bottom:539.484000px;}
.yaf{bottom:540.718500px;}
.y6{bottom:543.204000px;}
.y11f{bottom:548.788500px;}
.y5f{bottom:551.834382px;}
.y156{bottom:553.272000px;}
.y85{bottom:558.717000px;}
.yae{bottom:559.548000px;}
.y5{bottom:561.093000px;}
.y11e{bottom:566.049000px;}
.y155{bottom:570.531000px;}
.yad{bottom:578.377500px;}
.y4{bottom:578.980500px;}
.y5b{bottom:581.146500px;}
.y11d{bottom:583.309500px;}
.y35{bottom:586.353000px;}
.y154{bottom:587.791500px;}
.y1{bottom:596.868055px;}
.yac{bottom:597.207000px;}
.y11c{bottom:600.568500px;}
.y153{bottom:605.052000px;}
.y5d{bottom:606.554085px;}
.yab{bottom:616.036500px;}
.y5c{bottom:616.183950px;}
.y11b{bottom:617.829000px;}
.y152{bottom:622.312500px;}
.y34{bottom:623.742000px;}
.yaa{bottom:634.866000px;}
.y11a{bottom:635.089500px;}
.y151{bottom:639.573000px;}
.y33{bottom:643.200000px;}
.y119{bottom:652.350000px;}
.ya9{bottom:653.695500px;}
.y150{bottom:656.833500px;}
.y32{bottom:662.656500px;}
.y118{bottom:669.610500px;}
.ya8{bottom:672.525000px;}
.y14f{bottom:674.094000px;}
.y31{bottom:682.113000px;}
.y117{bottom:686.871000px;}
.ya7{bottom:691.354500px;}
.y30{bottom:701.571000px;}
.y116{bottom:704.131500px;}
.y14e{bottom:708.613500px;}
.ya6{bottom:710.184000px;}
.y2f{bottom:721.027500px;}
.y115{bottom:721.392000px;}
.y14d{bottom:725.874000px;}
.ya5{bottom:729.013500px;}
.y114{bottom:738.651000px;}
.y2e{bottom:740.485500px;}
.y14c{bottom:743.134500px;}
.ya4{bottom:747.843000px;}
.y113{bottom:755.911500px;}
.y2d{bottom:759.942000px;}
.y14b{bottom:760.395000px;}
.ya3{bottom:766.671000px;}
.y112{bottom:773.172000px;}
.y14a{bottom:777.655500px;}
.y2c{bottom:779.398500px;}
.ya2{bottom:785.500500px;}
.y111{bottom:790.432500px;}
.y149{bottom:794.916000px;}
.y2b{bottom:798.856500px;}
.ya1{bottom:804.330000px;}
.y110{bottom:807.693000px;}
.y148{bottom:812.176500px;}
.y2a{bottom:818.313000px;}
.ya0{bottom:823.159500px;}
.y10f{bottom:824.953500px;}
.y147{bottom:829.437000px;}
.y29{bottom:837.769500px;}
.y9f{bottom:841.989000px;}
.y10e{bottom:842.214000px;}
.y146{bottom:846.697500px;}
.y28{bottom:857.227500px;}
.y10d{bottom:859.474500px;}
.y9e{bottom:860.818500px;}
.y145{bottom:863.956500px;}
.y27{bottom:876.684000px;}
.y10c{bottom:876.735000px;}
.y5a{bottom:879.648000px;}
.y144{bottom:881.217000px;}
.y10b{bottom:893.994000px;}
.y59{bottom:898.477500px;}
.y10a{bottom:911.254500px;}
.y26{bottom:915.270000px;}
.y143{bottom:915.738000px;}
.y58{bottom:917.307000px;}
.y109{bottom:928.515000px;}
.y142{bottom:932.998500px;}
.y25{bottom:935.749500px;}
.y57{bottom:936.136500px;}
.y108{bottom:945.775500px;}
.y141{bottom:950.259000px;}
.y24{bottom:951.888000px;}
.y56{bottom:954.966000px;}
.y107{bottom:963.036000px;}
.y140{bottom:967.519500px;}
.y55{bottom:973.795500px;}
.y106{bottom:980.296500px;}
.y13f{bottom:984.780000px;}
.y54{bottom:992.625000px;}
.y23{bottom:996.565500px;}
.y105{bottom:997.557000px;}
.y13e{bottom:1002.040500px;}
.y53{bottom:1011.454500px;}
.y104{bottom:1014.817500px;}
.y13d{bottom:1019.299500px;}
.y52{bottom:1030.284000px;}
.y103{bottom:1032.076500px;}
.y22{bottom:1036.485000px;}
.y13c{bottom:1036.560000px;}
.y51{bottom:1049.113500px;}
.y102{bottom:1049.337000px;}
.y13b{bottom:1053.820500px;}
.y21{bottom:1064.728500px;}
.y101{bottom:1066.597500px;}
.y50{bottom:1067.943000px;}
.y13a{bottom:1071.081000px;}
.y100{bottom:1083.858000px;}
.y4f{bottom:1086.772500px;}
.y139{bottom:1088.341500px;}
.y20{bottom:1092.972000px;}
.y4e{bottom:1105.602000px;}
.y1b{bottom:1136.460000px;}
.y4d{bottom:1168.366500px;}
.h2{height:25.508090px;}
.h18{height:27.524478px;}
.h8{height:29.527571px;}
.h7{height:32.333893px;}
.hd{height:32.565965px;}
.h4{height:33.112997px;}
.h3{height:34.199443px;}
.h5{height:37.993262px;}
.hf{height:38.734848px;}
.h11{height:43.038432px;}
.he{height:43.421105px;}
.ha{height:43.815515px;}
.h17{height:43.886426px;}
.h14{height:44.536816px;}
.h10{height:48.848947px;}
.h16{height:50.229492px;}
.h6{height:50.887467px;}
.h12{height:54.276245px;}
.hc{height:54.405312px;}
.h15{height:55.922168px;}
.hb{height:77.469696px;}
.h9{height:89.939935px;}
.h13{height:274.861500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:75.364879px;}
.w3{width:283.414416px;}
.w4{width:503.998500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xb{left:-196.686000px;}
.xc{left:-1.117090px;}
.x0{left:0.000000px;}
.x2{left:29.274117px;}
.xd{left:30.742805px;}
.x3{left:32.479391px;}
.x4{left:43.285382px;}
.x5{left:51.307857px;}
.x6{left:52.525500px;}
.x1{left:53.574073px;}
.x13{left:85.848000px;}
.x8{left:248.526000px;}
.x7{left:249.591000px;}
.x17{left:256.011000px;}
.x16{left:257.826000px;}
.xa{left:281.479500px;}
.xf{left:306.793500px;}
.x9{left:308.220000px;}
.x11{left:309.382500px;}
.x19{left:314.961000px;}
.x18{left:316.500000px;}
.x12{left:376.908000px;}
.x10{left:390.759000px;}
.x1a{left:392.772000px;}
.x1c{left:403.701000px;}
.x1b{left:405.240000px;}
.x14{left:431.908500px;}
.x15{left:442.971000px;}
.xe{left:507.380707px;}
@media print{
.v4{vertical-align:-15.429333pt;}
.v1{vertical-align:-8.576356pt;}
.v2{vertical-align:-2.056460pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.285333pt;}
.ls23{letter-spacing:-0.240480pt;}
.ls24{letter-spacing:-0.224448pt;}
.ls22{letter-spacing:-0.138944pt;}
.ls28{letter-spacing:-0.096192pt;}
.ls2a{letter-spacing:-0.080160pt;}
.ls25{letter-spacing:-0.069472pt;}
.ls27{letter-spacing:-0.064128pt;}
.ls26{letter-spacing:-0.053440pt;}
.ls29{letter-spacing:-0.048096pt;}
.ls2b{letter-spacing:-0.042752pt;}
.ls1e{letter-spacing:-0.021376pt;}
.ls21{letter-spacing:-0.016032pt;}
.ls1b{letter-spacing:-0.012768pt;}
.ls1f{letter-spacing:-0.010688pt;}
.ls20{letter-spacing:-0.005344pt;}
.ls1c{letter-spacing:-0.004256pt;}
.ls7{letter-spacing:0.000000pt;}
.ls30{letter-spacing:0.000659pt;}
.ls32{letter-spacing:0.001026pt;}
.ls34{letter-spacing:0.001843pt;}
.ls31{letter-spacing:0.003290pt;}
.ls18{letter-spacing:0.010688pt;}
.lse{letter-spacing:0.016032pt;}
.ls13{letter-spacing:0.019200pt;}
.ls11{letter-spacing:0.021376pt;}
.ls17{letter-spacing:0.026720pt;}
.ls14{letter-spacing:0.028800pt;}
.ls10{letter-spacing:0.032064pt;}
.ls12{letter-spacing:0.033600pt;}
.lsd{letter-spacing:0.037408pt;}
.ls19{letter-spacing:0.042752pt;}
.ls15{letter-spacing:0.043200pt;}
.lsc{letter-spacing:0.048096pt;}
.lsf{letter-spacing:0.053440pt;}
.ls1d{letter-spacing:0.069472pt;}
.ls16{letter-spacing:0.101536pt;}
.lsb{letter-spacing:0.157472pt;}
.lsa{letter-spacing:0.170240pt;}
.ls6{letter-spacing:1.133683pt;}
.ls0{letter-spacing:1.654338pt;}
.ls1{letter-spacing:10.285996pt;}
.ls5{letter-spacing:10.626533pt;}
.ls33{letter-spacing:10.998599pt;}
.ls2c{letter-spacing:13.177199pt;}
.ls2f{letter-spacing:13.230333pt;}
.ls2e{letter-spacing:13.283467pt;}
.ls9{letter-spacing:13.389734pt;}
.ls8{letter-spacing:13.549136pt;}
.ls2d{letter-spacing:14.133609pt;}
.ls2{letter-spacing:15.768445pt;}
.ls1a{letter-spacing:19.393861pt;}
.ls3{letter-spacing:55.787733pt;}
.ls4{letter-spacing:57.174803pt;}
.wsef{word-spacing:-11.955200pt;}
.ws3f{word-spacing:-10.810240pt;}
.ws40{word-spacing:-10.640000pt;}
.ws34{word-spacing:-10.626800pt;}
.ws13{word-spacing:-10.095467pt;}
.ws7{word-spacing:-9.298400pt;}
.ws51{word-spacing:-3.185024pt;}
.ws83{word-spacing:-3.147616pt;}
.ws82{word-spacing:-3.110208pt;}
.ws52{word-spacing:-3.094176pt;}
.ws42{word-spacing:-2.975497pt;}
.wse7{word-spacing:-2.603559pt;}
.wsb3{word-spacing:-2.284756pt;}
.wsc7{word-spacing:-2.178489pt;}
.wse3{word-spacing:-1.912819pt;}
.wse2{word-spacing:-1.859685pt;}
.ws36{word-spacing:-1.806551pt;}
.ws1{word-spacing:-1.696326pt;}
.ws63{word-spacing:-1.555104pt;}
.ws45{word-spacing:-1.540882pt;}
.ws73{word-spacing:-1.528384pt;}
.ws62{word-spacing:-1.517696pt;}
.ws11b{word-spacing:-1.434624pt;}
.ws90{word-spacing:-1.434614pt;}
.ws7b{word-spacing:-1.421504pt;}
.ws30{word-spacing:-1.381481pt;}
.ws61{word-spacing:-1.229120pt;}
.ws79{word-spacing:-1.223776pt;}
.wsd0{word-spacing:-1.222079pt;}
.ws7a{word-spacing:-1.175680pt;}
.ws0{word-spacing:-1.175671pt;}
.wse8{word-spacing:-1.168945pt;}
.ws2f{word-spacing:-1.115811pt;}
.ws8{word-spacing:-1.041421pt;}
.wsb5{word-spacing:-1.009543pt;}
.ws122{word-spacing:-0.956416pt;}
.wsa{word-spacing:-0.929840pt;}
.wse5{word-spacing:-0.903276pt;}
.ws97{word-spacing:-0.850142pt;}
.ws10b{word-spacing:-0.765133pt;}
.ws129{word-spacing:-0.717312pt;}
.ws91{word-spacing:-0.690740pt;}
.wsbe{word-spacing:-0.637606pt;}
.ws7f{word-spacing:-0.598528pt;}
.ws8e{word-spacing:-0.584473pt;}
.ws81{word-spacing:-0.534400pt;}
.wse6{word-spacing:-0.531339pt;}
.ws7e{word-spacing:-0.507680pt;}
.ws9b{word-spacing:-0.371937pt;}
.ws19{word-spacing:-0.334746pt;}
.ws3e{word-spacing:-0.318803pt;}
.ws28{word-spacing:-0.265669pt;}
.ws4e{word-spacing:-0.246848pt;}
.ws11c{word-spacing:-0.239104pt;}
.ws67{word-spacing:-0.224448pt;}
.ws2a{word-spacing:-0.212535pt;}
.ws127{word-spacing:-0.191283pt;}
.ws43{word-spacing:-0.159402pt;}
.wsff{word-spacing:-0.143462pt;}
.ws2e{word-spacing:-0.106268pt;}
.ws14{word-spacing:-0.095642pt;}
.ws4f{word-spacing:-0.072352pt;}
.ws4d{word-spacing:-0.063840pt;}
.ws32{word-spacing:-0.053134pt;}
.ws1d{word-spacing:-0.047821pt;}
.ws35{word-spacing:-0.042507pt;}
.ws12{word-spacing:-0.003504pt;}
.ws3{word-spacing:0.000000pt;}
.ws72{word-spacing:0.032064pt;}
.wseb{word-spacing:0.047821pt;}
.ws54{word-spacing:0.048096pt;}
.ws24{word-spacing:0.053134pt;}
.ws7c{word-spacing:0.053440pt;}
.ws86{word-spacing:0.058784pt;}
.ws6e{word-spacing:0.069472pt;}
.ws41{word-spacing:0.095642pt;}
.ws55{word-spacing:0.096192pt;}
.ws22{word-spacing:0.106268pt;}
.ws87{word-spacing:0.128256pt;}
.ws6d{word-spacing:0.129600pt;}
.ws115{word-spacing:0.143462pt;}
.ws3d{word-spacing:0.159402pt;}
.ws80{word-spacing:0.165664pt;}
.ws1a{word-spacing:0.191283pt;}
.ws3b{word-spacing:0.212535pt;}
.ws1b{word-spacing:0.239104pt;}
.ws3c{word-spacing:0.265669pt;}
.ws103{word-spacing:0.286925pt;}
.ws6f{word-spacing:0.309952pt;}
.wsa7{word-spacing:0.318803pt;}
.ws66{word-spacing:0.325984pt;}
.ws10e{word-spacing:0.334746pt;}
.wsaa{word-spacing:0.371937pt;}
.wsa9{word-spacing:0.425071pt;}
.wsa8{word-spacing:0.478205pt;}
.wse4{word-spacing:0.531339pt;}
.ws9f{word-spacing:0.584473pt;}
.wsa5{word-spacing:0.637606pt;}
.ws92{word-spacing:0.690740pt;}
.ws125{word-spacing:0.717312pt;}
.ws89{word-spacing:0.743874pt;}
.ws6c{word-spacing:0.763200pt;}
.ws12f{word-spacing:0.765133pt;}
.ws6b{word-spacing:0.777600pt;}
.ws93{word-spacing:0.797008pt;}
.ws16{word-spacing:0.812954pt;}
.ws26{word-spacing:0.850142pt;}
.ws9{word-spacing:0.892646pt;}
.ws44{word-spacing:0.903276pt;}
.ws95{word-spacing:0.956410pt;}
.ws18{word-spacing:0.956416pt;}
.ws74{word-spacing:1.031392pt;}
.wsac{word-spacing:1.062677pt;}
.ws5a{word-spacing:1.063456pt;}
.ws76{word-spacing:1.100864pt;}
.ws2d{word-spacing:1.115811pt;}
.ws75{word-spacing:1.116896pt;}
.ws2c{word-spacing:1.168945pt;}
.ws113{word-spacing:1.195520pt;}
.wsb4{word-spacing:1.222079pt;}
.wsa1{word-spacing:1.275213pt;}
.wse0{word-spacing:1.328347pt;}
.ws5b{word-spacing:1.336000pt;}
.wsa3{word-spacing:1.434614pt;}
.ws27{word-spacing:1.487748pt;}
.ws23{word-spacing:1.540882pt;}
.ws3a{word-spacing:1.594016pt;}
.ws64{word-spacing:1.645952pt;}
.wsd5{word-spacing:1.647150pt;}
.ws118{word-spacing:1.673728pt;}
.wsc0{word-spacing:1.753418pt;}
.ws8c{word-spacing:1.806551pt;}
.ws1c{word-spacing:1.817190pt;}
.ws65{word-spacing:1.822304pt;}
.wsab{word-spacing:1.859685pt;}
.ws20{word-spacing:1.912819pt;}
.ws7d{word-spacing:1.966592pt;}
.ws70{word-spacing:1.977280pt;}
.ws9d{word-spacing:2.019087pt;}
.ws123{word-spacing:2.056294pt;}
.ws9c{word-spacing:2.072221pt;}
.wsc6{word-spacing:2.178489pt;}
.ws15{word-spacing:2.199757pt;}
.wsa6{word-spacing:2.231622pt;}
.ws2{word-spacing:2.232481pt;}
.ws4{word-spacing:2.235412pt;}
.wsf1{word-spacing:2.247578pt;}
.ws46{word-spacing:2.284756pt;}
.ws5d{word-spacing:2.292576pt;}
.wsfc{word-spacing:2.295398pt;}
.ws71{word-spacing:2.297920pt;}
.ws57{word-spacing:2.308608pt;}
.ws56{word-spacing:2.329984pt;}
.wsc3{word-spacing:2.337890pt;}
.ws68{word-spacing:2.371200pt;}
.ws6a{word-spacing:2.376000pt;}
.ws69{word-spacing:2.385600pt;}
.ws9e{word-spacing:2.391024pt;}
.ws104{word-spacing:2.391040pt;}
.ws17{word-spacing:2.438861pt;}
.wsc2{word-spacing:2.444158pt;}
.ws2b{word-spacing:2.497292pt;}
.ws94{word-spacing:2.550426pt;}
.ws8a{word-spacing:2.603559pt;}
.ws78{word-spacing:2.634592pt;}
.ws37{word-spacing:2.656693pt;}
.ws85{word-spacing:2.661312pt;}
.ws77{word-spacing:2.709408pt;}
.wsa2{word-spacing:2.709827pt;}
.wsb7{word-spacing:2.762961pt;}
.ws21{word-spacing:2.816095pt;}
.wsf5{word-spacing:2.821427pt;}
.ws128{word-spacing:2.861756pt;}
.ws1e{word-spacing:2.861926pt;}
.ws110{word-spacing:2.862251pt;}
.ws12e{word-spacing:2.863744pt;}
.ws121{word-spacing:2.864674pt;}
.ws101{word-spacing:2.865801pt;}
.ws10f{word-spacing:2.866176pt;}
.ws29{word-spacing:2.869229pt;}
.wsee{word-spacing:2.869248pt;}
.ws31{word-spacing:2.922363pt;}
.wsf9{word-spacing:2.964890pt;}
.wsc1{word-spacing:2.975497pt;}
.ws84{word-spacing:2.981952pt;}
.wsf6{word-spacing:3.012710pt;}
.wsdf{word-spacing:3.028630pt;}
.ws10a{word-spacing:3.060531pt;}
.ws4b{word-spacing:3.081764pt;}
.ws114{word-spacing:3.108352pt;}
.ws1f{word-spacing:3.188032pt;}
.ws108{word-spacing:3.251814pt;}
.wsbb{word-spacing:3.294300pt;}
.wsa4{word-spacing:3.347434pt;}
.wse9{word-spacing:3.400567pt;}
.wsbd{word-spacing:3.506835pt;}
.ws4c{word-spacing:3.559969pt;}
.ws88{word-spacing:3.569792pt;}
.wsbc{word-spacing:3.613103pt;}
.ws112{word-spacing:3.634381pt;}
.wsc8{word-spacing:3.719371pt;}
.ws38{word-spacing:3.772505pt;}
.wsce{word-spacing:3.825638pt;}
.ws47{word-spacing:3.931906pt;}
.ws105{word-spacing:3.969126pt;}
.wsda{word-spacing:4.091308pt;}
.ws117{word-spacing:4.112589pt;}
.wsba{word-spacing:4.144442pt;}
.ws9a{word-spacing:4.197575pt;}
.ws10{word-spacing:4.240070pt;}
.ws25{word-spacing:4.303843pt;}
.ws11{word-spacing:4.314458pt;}
.wsb6{word-spacing:4.356977pt;}
.wsa0{word-spacing:4.410111pt;}
.wsae{word-spacing:4.463245pt;}
.wsc4{word-spacing:4.516379pt;}
.ws60{word-spacing:4.531712pt;}
.ws5e{word-spacing:4.547744pt;}
.ws5f{word-spacing:4.569120pt;}
.wsc5{word-spacing:4.569513pt;}
.wse1{word-spacing:4.622646pt;}
.wscf{word-spacing:4.728914pt;}
.ws39{word-spacing:4.835182pt;}
.ws53{word-spacing:4.836320pt;}
.wsb9{word-spacing:4.941450pt;}
.ws59{word-spacing:5.151616pt;}
.ws58{word-spacing:5.226432pt;}
.wsaf{word-spacing:5.260253pt;}
.wsde{word-spacing:5.366521pt;}
.wsb2{word-spacing:5.579056pt;}
.ws96{word-spacing:5.844725pt;}
.ws119{word-spacing:5.977600pt;}
.ws5c{word-spacing:6.113536pt;}
.wsd9{word-spacing:6.216662pt;}
.wsc9{word-spacing:6.748001pt;}
.ws98{word-spacing:6.907403pt;}
.wse{word-spacing:6.918010pt;}
.ws99{word-spacing:6.960537pt;}
.wsbf{word-spacing:7.013670pt;}
.wsdc{word-spacing:7.066804pt;}
.wsea{word-spacing:7.173072pt;}
.wsdb{word-spacing:7.332474pt;}
.wsb1{word-spacing:7.385607pt;}
.wsd4{word-spacing:7.438741pt;}
.wsb8{word-spacing:7.491875pt;}
.wsec{word-spacing:7.603507pt;}
.wsca{word-spacing:7.704411pt;}
.wsdd{word-spacing:8.820222pt;}
.ws8b{word-spacing:9.085891pt;}
.wsad{word-spacing:9.192159pt;}
.ws5{word-spacing:9.258452pt;}
.wsfb{word-spacing:9.898906pt;}
.ws50{word-spacing:10.329312pt;}
.wsd8{word-spacing:10.520506pt;}
.ws33{word-spacing:10.583595pt;}
.wsc{word-spacing:10.823338pt;}
.wsd3{word-spacing:10.945577pt;}
.ws12a{word-spacing:11.142246pt;}
.ws100{word-spacing:11.763917pt;}
.ws12d{word-spacing:11.809131pt;}
.ws11a{word-spacing:11.811738pt;}
.wsf0{word-spacing:11.859558pt;}
.ws130{word-spacing:11.895262pt;}
.ws102{word-spacing:11.895868pt;}
.ws10d{word-spacing:11.896806pt;}
.ws11f{word-spacing:11.897387pt;}
.ws126{word-spacing:11.898180pt;}
.ws131{word-spacing:11.898871pt;}
.wsed{word-spacing:11.898897pt;}
.ws11e{word-spacing:11.898931pt;}
.ws120{word-spacing:11.899938pt;}
.wsf3{word-spacing:11.900032pt;}
.ws12c{word-spacing:11.900348pt;}
.wsfa{word-spacing:11.900527pt;}
.ws132{word-spacing:11.901244pt;}
.ws109{word-spacing:11.902191pt;}
.ws11d{word-spacing:11.905860pt;}
.wsf4{word-spacing:11.907379pt;}
.wsf8{word-spacing:11.955200pt;}
.ws107{word-spacing:12.003021pt;}
.ws124{word-spacing:12.050842pt;}
.ws116{word-spacing:12.078774pt;}
.ws10c{word-spacing:12.098662pt;}
.ws12b{word-spacing:12.194304pt;}
.wsd1{word-spacing:12.220789pt;}
.wsd2{word-spacing:12.698994pt;}
.ws106{word-spacing:12.720333pt;}
.ws4a{word-spacing:13.230333pt;}
.ws8f{word-spacing:13.301877pt;}
.ws8d{word-spacing:13.389734pt;}
.ws6{word-spacing:13.761632pt;}
.wsf2{word-spacing:14.107136pt;}
.wsd{word-spacing:14.319536pt;}
.ws111{word-spacing:14.728806pt;}
.wsf7{word-spacing:14.920090pt;}
.wscd{word-spacing:15.143152pt;}
.wsd6{word-spacing:15.408821pt;}
.ws48{word-spacing:15.515089pt;}
.wsb0{word-spacing:15.621357pt;}
.wsfe{word-spacing:17.789338pt;}
.wsfd{word-spacing:17.837158pt;}
.wscb{word-spacing:17.959247pt;}
.wsd7{word-spacing:18.224916pt;}
.wsf{word-spacing:23.208806pt;}
.wscc{word-spacing:23.857106pt;}
.wsb{word-spacing:23.858002pt;}
.ws49{word-spacing:26.513799pt;}
._20{margin-left:-20.981840pt;}
._29{margin-left:-18.275588pt;}
._13{margin-left:-6.794409pt;}
._10{margin-left:-5.625463pt;}
._7{margin-left:-4.718299pt;}
._9{margin-left:-3.145533pt;}
._15{margin-left:-2.206563pt;}
._0{margin-left:-1.175671pt;}
._1{width:0.969929pt;}
._3{width:2.045648pt;}
._5{width:3.288262pt;}
._1d{width:4.204302pt;}
._2{width:10.860531pt;}
._8{width:12.412102pt;}
._b{width:14.202778pt;}
._c{width:15.330628pt;}
._d{width:16.743894pt;}
._a{width:17.645875pt;}
._e{width:18.862523pt;}
._f{width:20.297137pt;}
._19{width:22.103689pt;}
._1a{width:23.006964pt;}
._17{width:24.683113pt;}
._1c{width:25.776652pt;}
._4{width:27.188522pt;}
._23{width:28.426619pt;}
._16{width:29.808099pt;}
._1b{width:31.443643pt;}
._1e{width:32.783596pt;}
._1f{width:33.740005pt;}
._25{width:35.387155pt;}
._18{width:37.820698pt;}
._21{width:39.432055pt;}
._22{width:43.091566pt;}
._24{width:44.366779pt;}
._28{width:45.635310pt;}
._26{width:48.564354pt;}
._2a{width:59.017570pt;}
._6{width:61.624780pt;}
._11{width:858.453908pt;}
._14{width:1896.823031pt;}
._27{width:2259.237130pt;}
._12{width:2280.490463pt;}
.fsb{font-size:31.880533pt;}
.fs5{font-size:35.359960pt;}
.fs4{font-size:36.555334pt;}
.fs2{font-size:37.193600pt;}
.fs1{font-size:37.276537pt;}
.fs3{font-size:40.029579pt;}
.fsa{font-size:40.381867pt;}
.fs6{font-size:41.862621pt;}
.fs0{font-size:41.988267pt;}
.fsc{font-size:42.507200pt;}
.fse{font-size:42.560000pt;}
.fsd{font-size:47.820800pt;}
.fs10{font-size:48.000000pt;}
.fs11{font-size:49.829333pt;}
.fs8{font-size:53.133867pt;}
.fsf{font-size:53.440000pt;}
.fs9{font-size:95.641600pt;}
.fs7{font-size:120.948480pt;}
.y5e{bottom:-468.920933pt;}
.y84{bottom:-414.432912pt;}
.y83{bottom:-397.313408pt;}
.y82{bottom:-380.193904pt;}
.y81{bottom:-363.154560pt;}
.y80{bottom:-346.035056pt;}
.y7f{bottom:-328.995712pt;}
.y7e{bottom:-311.876208pt;}
.y7d{bottom:-294.756704pt;}
.y7c{bottom:-277.716024pt;}
.y7b{bottom:-260.596520pt;}
.y7a{bottom:-243.477016pt;}
.y79{bottom:-226.437672pt;}
.y78{bottom:-209.318168pt;}
.y77{bottom:-192.278824pt;}
.y76{bottom:-175.159320pt;}
.y75{bottom:-158.039816pt;}
.y74{bottom:-141.000472pt;}
.y73{bottom:-123.880968pt;}
.y72{bottom:-102.840304pt;}
.y71{bottom:-85.720800pt;}
.y70{bottom:-53.001333pt;}
.y6f{bottom:-37.560933pt;}
.y6e{bottom:-22.200933pt;}
.y6d{bottom:-2.274837pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.044747pt;}
.y1e{bottom:3.805560pt;}
.y1d{bottom:7.075016pt;}
.y1c{bottom:10.869741pt;}
.y2{bottom:12.578910pt;}
.y1f{bottom:14.337350pt;}
.y4c{bottom:28.346667pt;}
.y9d{bottom:82.720000pt;}
.y1a{bottom:93.018667pt;}
.yf4{bottom:94.086667pt;}
.yca{bottom:95.282667pt;}
.yc6{bottom:95.681333pt;}
.y4b{bottom:98.934667pt;}
.y9c{bottom:99.457333pt;}
.y138{bottom:104.249333pt;}
.y16e{bottom:108.233333pt;}
.y19{bottom:108.920000pt;}
.yf3{bottom:110.824000pt;}
.yc9{bottom:112.020000pt;}
.yc5{bottom:112.418667pt;}
.y4a{bottom:115.672000pt;}
.y9b{bottom:116.194667pt;}
.y137{bottom:119.592000pt;}
.y16d{bottom:123.576000pt;}
.y18{bottom:124.820000pt;}
.yf2{bottom:127.561333pt;}
.yc8{bottom:128.757333pt;}
.yc4{bottom:129.156000pt;}
.y49{bottom:132.409333pt;}
.y9a{bottom:132.932000pt;}
.y136{bottom:134.933333pt;}
.y16b{bottom:138.918667pt;}
.y16c{bottom:139.104000pt;}
.y17{bottom:140.720000pt;}
.yf1{bottom:144.298667pt;}
.yff{bottom:144.617333pt;}
.ydd{bottom:145.494667pt;}
.yc3{bottom:145.893333pt;}
.y48{bottom:149.146667pt;}
.yc7{bottom:149.480000pt;}
.y99{bottom:149.669333pt;}
.y135{bottom:150.276000pt;}
.y16a{bottom:154.261333pt;}
.y16{bottom:156.621333pt;}
.yf0{bottom:161.036000pt;}
.ydc{bottom:162.232000pt;}
.yc2{bottom:162.630667pt;}
.y134{bottom:165.618667pt;}
.y47{bottom:165.884000pt;}
.y98{bottom:166.406667pt;}
.yfe{bottom:168.209333pt;}
.y169{bottom:169.604000pt;}
.y15{bottom:172.521333pt;}
.yef{bottom:177.773333pt;}
.ydb{bottom:178.969333pt;}
.yc1{bottom:179.368000pt;}
.y133{bottom:180.961333pt;}
.y46{bottom:182.621333pt;}
.yf5{bottom:182.954667pt;}
.y97{bottom:183.144000pt;}
.yfd{bottom:183.830667pt;}
.y168{bottom:184.946667pt;}
.y14{bottom:188.421333pt;}
.yee{bottom:194.510667pt;}
.yda{bottom:195.706667pt;}
.yc0{bottom:196.105333pt;}
.y132{bottom:196.304000pt;}
.y45{bottom:199.358667pt;}
.y96{bottom:199.881333pt;}
.y167{bottom:200.289333pt;}
.y13{bottom:204.322667pt;}
.yfc{bottom:207.422667pt;}
.yed{bottom:211.248000pt;}
.y131{bottom:211.646667pt;}
.yd9{bottom:212.444000pt;}
.ybf{bottom:212.841333pt;}
.y166{bottom:215.632000pt;}
.y44{bottom:216.094667pt;}
.y95{bottom:216.618667pt;}
.y130{bottom:226.989333pt;}
.yec{bottom:227.985333pt;}
.yd8{bottom:229.181333pt;}
.ybe{bottom:229.578667pt;}
.y165{bottom:230.974667pt;}
.yfb{bottom:231.014667pt;}
.y43{bottom:232.832000pt;}
.y94{bottom:233.356000pt;}
.y12f{bottom:242.332000pt;}
.yeb{bottom:244.722667pt;}
.yd7{bottom:245.918667pt;}
.ybd{bottom:246.316000pt;}
.y42{bottom:249.569333pt;}
.y93{bottom:250.093333pt;}
.yfa{bottom:254.605333pt;}
.y12e{bottom:257.674667pt;}
.yea{bottom:261.460000pt;}
.y164{bottom:261.658667pt;}
.yd6{bottom:262.656000pt;}
.ybc{bottom:263.053333pt;}
.y41{bottom:266.306667pt;}
.y12{bottom:266.804000pt;}
.y92{bottom:266.830667pt;}
.y6c{bottom:268.365363pt;}
.y12d{bottom:273.016000pt;}
.y163{bottom:277.001333pt;}
.ye9{bottom:278.197333pt;}
.yd5{bottom:279.393333pt;}
.ybb{bottom:279.790667pt;}
.y11{bottom:282.705333pt;}
.y40{bottom:283.044000pt;}
.y91{bottom:283.568000pt;}
.y6b{bottom:285.484867pt;}
.y12c{bottom:288.358667pt;}
.y162{bottom:292.344000pt;}
.yf9{bottom:293.818667pt;}
.ye8{bottom:294.934667pt;}
.yd4{bottom:296.129333pt;}
.yba{bottom:296.528000pt;}
.y10{bottom:298.605333pt;}
.y3f{bottom:299.781333pt;}
.y90{bottom:300.305333pt;}
.y6a{bottom:302.524211pt;}
.y12b{bottom:303.701333pt;}
.y161{bottom:307.686667pt;}
.ye7{bottom:311.672000pt;}
.yd3{bottom:312.866667pt;}
.yb9{bottom:313.265333pt;}
.yf{bottom:314.505333pt;}
.y3e{bottom:316.518667pt;}
.y8f{bottom:317.042667pt;}
.yf8{bottom:317.410667pt;}
.y12a{bottom:319.044000pt;}
.y69{bottom:319.643715pt;}
.y160{bottom:323.029333pt;}
.ye6{bottom:328.409333pt;}
.yd2{bottom:329.604000pt;}
.yb8{bottom:330.002667pt;}
.yf7{bottom:333.032000pt;}
.y3d{bottom:333.256000pt;}
.y8e{bottom:333.780000pt;}
.y129{bottom:334.386667pt;}
.y68{bottom:336.763219pt;}
.y15f{bottom:338.372000pt;}
.ye{bottom:338.376000pt;}
.ye5{bottom:345.146667pt;}
.yd1{bottom:346.341333pt;}
.yb7{bottom:346.740000pt;}
.yf6{bottom:348.653333pt;}
.y128{bottom:349.729333pt;}
.y3c{bottom:349.993333pt;}
.y8d{bottom:350.517333pt;}
.y15e{bottom:353.714667pt;}
.y67{bottom:353.802563pt;}
.yd{bottom:354.277333pt;}
.ye4{bottom:361.884000pt;}
.yd0{bottom:363.078667pt;}
.yb6{bottom:363.477333pt;}
.y127{bottom:365.072000pt;}
.y3b{bottom:366.730667pt;}
.y8c{bottom:367.254667pt;}
.y15d{bottom:369.056000pt;}
.yc{bottom:370.177333pt;}
.y66{bottom:370.922067pt;}
.ye3{bottom:378.621333pt;}
.ycf{bottom:379.816000pt;}
.yb5{bottom:380.214667pt;}
.y126{bottom:380.414667pt;}
.y3a{bottom:383.468000pt;}
.y8b{bottom:383.992000pt;}
.y15c{bottom:384.398667pt;}
.y65{bottom:388.041571pt;}
.ye2{bottom:395.358667pt;}
.yb{bottom:395.376000pt;}
.y125{bottom:395.756000pt;}
.yce{bottom:396.553333pt;}
.yb4{bottom:396.952000pt;}
.y15b{bottom:399.741333pt;}
.y39{bottom:400.205333pt;}
.y8a{bottom:400.729333pt;}
.y64{bottom:405.080915pt;}
.y124{bottom:411.098667pt;}
.ye1{bottom:412.096000pt;}
.ycd{bottom:413.290667pt;}
.yb3{bottom:413.689333pt;}
.y15a{bottom:415.084000pt;}
.y38{bottom:416.942667pt;}
.ya{bottom:419.246667pt;}
.y89{bottom:421.450667pt;}
.y63{bottom:422.200419pt;}
.y123{bottom:426.441333pt;}
.ye0{bottom:428.833333pt;}
.ycc{bottom:430.028000pt;}
.yb2{bottom:430.426667pt;}
.y37{bottom:433.680000pt;}
.y9{bottom:435.146667pt;}
.y88{bottom:435.398667pt;}
.y62{bottom:439.239763pt;}
.y122{bottom:441.784000pt;}
.y159{bottom:445.769333pt;}
.yb1{bottom:447.164000pt;}
.ydf{bottom:449.554667pt;}
.ycb{bottom:450.750667pt;}
.y8{bottom:451.048000pt;}
.y36{bottom:454.402667pt;}
.y61{bottom:456.359267pt;}
.y121{bottom:457.126667pt;}
.y158{bottom:461.112000pt;}
.y87{bottom:462.445333pt;}
.yb0{bottom:463.901333pt;}
.y7{bottom:466.948000pt;}
.yde{bottom:467.488000pt;}
.y120{bottom:472.469333pt;}
.y60{bottom:473.478771pt;}
.y157{bottom:476.454667pt;}
.y86{bottom:479.541333pt;}
.yaf{bottom:480.638667pt;}
.y6{bottom:482.848000pt;}
.y11f{bottom:487.812000pt;}
.y5f{bottom:490.519451pt;}
.y156{bottom:491.797333pt;}
.y85{bottom:496.637333pt;}
.yae{bottom:497.376000pt;}
.y5{bottom:498.749333pt;}
.y11e{bottom:503.154667pt;}
.y155{bottom:507.138667pt;}
.yad{bottom:514.113333pt;}
.y4{bottom:514.649333pt;}
.y5b{bottom:516.574667pt;}
.y11d{bottom:518.497333pt;}
.y35{bottom:521.202667pt;}
.y154{bottom:522.481333pt;}
.y1{bottom:530.549382pt;}
.yac{bottom:530.850667pt;}
.y11c{bottom:533.838667pt;}
.y153{bottom:537.824000pt;}
.y5d{bottom:539.159187pt;}
.yab{bottom:547.588000pt;}
.y5c{bottom:547.719067pt;}
.y11b{bottom:549.181333pt;}
.y152{bottom:553.166667pt;}
.y34{bottom:554.437333pt;}
.yaa{bottom:564.325333pt;}
.y11a{bottom:564.524000pt;}
.y151{bottom:568.509333pt;}
.y33{bottom:571.733333pt;}
.y119{bottom:579.866667pt;}
.ya9{bottom:581.062667pt;}
.y150{bottom:583.852000pt;}
.y32{bottom:589.028000pt;}
.y118{bottom:595.209333pt;}
.ya8{bottom:597.800000pt;}
.y14f{bottom:599.194667pt;}
.y31{bottom:606.322667pt;}
.y117{bottom:610.552000pt;}
.ya7{bottom:614.537333pt;}
.y30{bottom:623.618667pt;}
.y116{bottom:625.894667pt;}
.y14e{bottom:629.878667pt;}
.ya6{bottom:631.274667pt;}
.y2f{bottom:640.913333pt;}
.y115{bottom:641.237333pt;}
.y14d{bottom:645.221333pt;}
.ya5{bottom:648.012000pt;}
.y114{bottom:656.578667pt;}
.y2e{bottom:658.209333pt;}
.y14c{bottom:660.564000pt;}
.ya4{bottom:664.749333pt;}
.y113{bottom:671.921333pt;}
.y2d{bottom:675.504000pt;}
.y14b{bottom:675.906667pt;}
.ya3{bottom:681.485333pt;}
.y112{bottom:687.264000pt;}
.y14a{bottom:691.249333pt;}
.y2c{bottom:692.798667pt;}
.ya2{bottom:698.222667pt;}
.y111{bottom:702.606667pt;}
.y149{bottom:706.592000pt;}
.y2b{bottom:710.094667pt;}
.ya1{bottom:714.960000pt;}
.y110{bottom:717.949333pt;}
.y148{bottom:721.934667pt;}
.y2a{bottom:727.389333pt;}
.ya0{bottom:731.697333pt;}
.y10f{bottom:733.292000pt;}
.y147{bottom:737.277333pt;}
.y29{bottom:744.684000pt;}
.y9f{bottom:748.434667pt;}
.y10e{bottom:748.634667pt;}
.y146{bottom:752.620000pt;}
.y28{bottom:761.980000pt;}
.y10d{bottom:763.977333pt;}
.y9e{bottom:765.172000pt;}
.y145{bottom:767.961333pt;}
.y27{bottom:779.274667pt;}
.y10c{bottom:779.320000pt;}
.y5a{bottom:781.909333pt;}
.y144{bottom:783.304000pt;}
.y10b{bottom:794.661333pt;}
.y59{bottom:798.646667pt;}
.y10a{bottom:810.004000pt;}
.y26{bottom:813.573333pt;}
.y143{bottom:813.989333pt;}
.y58{bottom:815.384000pt;}
.y109{bottom:825.346667pt;}
.y142{bottom:829.332000pt;}
.y25{bottom:831.777333pt;}
.y57{bottom:832.121333pt;}
.y108{bottom:840.689333pt;}
.y141{bottom:844.674667pt;}
.y24{bottom:846.122667pt;}
.y56{bottom:848.858667pt;}
.y107{bottom:856.032000pt;}
.y140{bottom:860.017333pt;}
.y55{bottom:865.596000pt;}
.y106{bottom:871.374667pt;}
.y13f{bottom:875.360000pt;}
.y54{bottom:882.333333pt;}
.y23{bottom:885.836000pt;}
.y105{bottom:886.717333pt;}
.y13e{bottom:890.702667pt;}
.y53{bottom:899.070667pt;}
.y104{bottom:902.060000pt;}
.y13d{bottom:906.044000pt;}
.y52{bottom:915.808000pt;}
.y103{bottom:917.401333pt;}
.y22{bottom:921.320000pt;}
.y13c{bottom:921.386667pt;}
.y51{bottom:932.545333pt;}
.y102{bottom:932.744000pt;}
.y13b{bottom:936.729333pt;}
.y21{bottom:946.425333pt;}
.y101{bottom:948.086667pt;}
.y50{bottom:949.282667pt;}
.y13a{bottom:952.072000pt;}
.y100{bottom:963.429333pt;}
.y4f{bottom:966.020000pt;}
.y139{bottom:967.414667pt;}
.y20{bottom:971.530667pt;}
.y4e{bottom:982.757333pt;}
.y1b{bottom:1010.186667pt;}
.y4d{bottom:1038.548000pt;}
.h2{height:22.673858pt;}
.h18{height:24.466203pt;}
.h8{height:26.246730pt;}
.h7{height:28.741238pt;}
.hd{height:28.947524pt;}
.h4{height:29.433775pt;}
.h3{height:30.399505pt;}
.h5{height:33.771789pt;}
.hf{height:34.430976pt;}
.h11{height:38.256384pt;}
.he{height:38.596538pt;}
.ha{height:38.947124pt;}
.h17{height:39.010156pt;}
.h14{height:39.588281pt;}
.h10{height:43.421286pt;}
.h16{height:44.648438pt;}
.h6{height:45.233304pt;}
.h12{height:48.245551pt;}
.hc{height:48.360277pt;}
.h15{height:49.708594pt;}
.hb{height:68.861952pt;}
.h9{height:79.946609pt;}
.h13{height:244.321333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:66.991004pt;}
.w3{width:251.923925pt;}
.w4{width:447.998667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xb{left:-174.832000pt;}
.xc{left:-0.992969pt;}
.x0{left:0.000000pt;}
.x2{left:26.021437pt;}
.xd{left:27.326938pt;}
.x3{left:28.870570pt;}
.x4{left:38.475895pt;}
.x5{left:45.606984pt;}
.x6{left:46.689333pt;}
.x1{left:47.621398pt;}
.x13{left:76.309333pt;}
.x8{left:220.912000pt;}
.x7{left:221.858667pt;}
.x17{left:227.565333pt;}
.x16{left:229.178667pt;}
.xa{left:250.204000pt;}
.xf{left:272.705333pt;}
.x9{left:273.973333pt;}
.x11{left:275.006667pt;}
.x19{left:279.965333pt;}
.x18{left:281.333333pt;}
.x12{left:335.029333pt;}
.x10{left:347.341333pt;}
.x1a{left:349.130667pt;}
.x1c{left:358.845333pt;}
.x1b{left:360.213333pt;}
.x14{left:383.918667pt;}
.x15{left:393.752000pt;}
.xe{left:451.005073pt;}
}




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