
    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_05a20aecf41502a5d543033b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a095022f2ce0740aa3a3fd85.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.994000;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_eaf14bf7cbb17c36f85d28ce.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_aa1ade77826d6efbd23ec312.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.994000;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_6d23a6c6ff5237dd58e50b89.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.847000;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_6ce6f29d32aec6518087ee06.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_783c8eea703acecce9a0b007.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_dee43be9d414c3c3bc561b5f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_901cd0d87f1a95775e7daeb5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.935000;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_68837e5059dbc39671d0085c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.946000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c972b41874890afdfafa6f90.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.994000;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_e5f6fedb93935fd8e5ab32b1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.912000;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_9c2bcf56b8bbb6ac7e48525f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.587000;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_1dcc32de2a0f284cc8067810.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_209662252f77eb0af3b475f8.woff2')format("woff");}.fff{font-family:fff;line-height:0.259000;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_2662cf8ecf08156992da418b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_1e80eab63a659cb6e0cbf625.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.246000;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:ff12;src:url('chunks/assets/font_18cd5ed10e9ea47ed325e4db.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.540000;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:ff13;src:url('chunks/assets/font_1f87990606fe93e85101c0e4.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_a81d9f118d99b2a57a4e9eaf.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.938000;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:ff15;src:url('chunks/assets/font_5ad25bc9bf839437a31451a6.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.935000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m26{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);}
.m1e{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);}
.m15{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);}
.m5{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);}
.m14{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);}
.m20{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.mf{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);}
.mc{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);}
.mb{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.m8{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);}
.m1a{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);}
.m1f{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);}
.m1b{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1d{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);}
.m16{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);}
.m24{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);}
.m28{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);}
.m12{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);}
.m3{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);}
.m23{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);}
.m4{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);}
.m10{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);}
.m13{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);}
.m1c{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);}
.md{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);}
.m22{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);}
.m7{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);}
.m21{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);}
.me{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);}
.m17{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);}
.m27{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);}
.m25{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);}
.m6{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);}
.m18{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);}
.v6{vertical-align:-11.784000px;}
.v3{vertical-align:-9.516000px;}
.v1{vertical-align:-8.070000px;}
.v7{vertical-align:-6.546000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:9.516000px;}
.v2{vertical-align:19.530000px;}
.v8{vertical-align:24.810000px;}
.v5{vertical-align:32.874000px;}
.ls3{letter-spacing:0.000000px;}
.ls2f{letter-spacing:0.003377px;}
.ls3d{letter-spacing:0.003791px;}
.lsb{letter-spacing:0.520598px;}
.ls12{letter-spacing:0.526598px;}
.ls3c{letter-spacing:0.742598px;}
.ls32{letter-spacing:0.958598px;}
.ls41{letter-spacing:1.100582px;}
.ls24{letter-spacing:1.224086px;}
.ls21{letter-spacing:1.230086px;}
.ls2c{letter-spacing:1.232266px;}
.ls25{letter-spacing:1.232419px;}
.lsf{letter-spacing:1.345978px;}
.ls2d{letter-spacing:1.363753px;}
.ls3f{letter-spacing:1.400678px;}
.ls36{letter-spacing:1.497888px;}
.ls35{letter-spacing:1.526774px;}
.ls5{letter-spacing:1.663978px;}
.ls6{letter-spacing:1.669978px;}
.ls45{letter-spacing:1.692633px;}
.ls2b{letter-spacing:1.767235px;}
.ls44{letter-spacing:1.832816px;}
.lse{letter-spacing:1.932864px;}
.ls29{letter-spacing:1.938864px;}
.ls26{letter-spacing:2.486773px;}
.ls4{letter-spacing:2.989167px;}
.ls8{letter-spacing:3.283978px;}
.ls38{letter-spacing:3.356774px;}
.ls34{letter-spacing:3.362774px;}
.ls23{letter-spacing:3.661642px;}
.ls42{letter-spacing:3.884825px;}
.ls2e{letter-spacing:4.057687px;}
.ls28{letter-spacing:4.063687px;}
.ls31{letter-spacing:5.576400px;}
.ls33{letter-spacing:5.845687px;}
.ls37{letter-spacing:5.851687px;}
.ls10{letter-spacing:7.082400px;}
.ls11{letter-spacing:8.156400px;}
.ls13{letter-spacing:8.749724px;}
.ls1{letter-spacing:8.972342px;}
.ls15{letter-spacing:11.720342px;}
.ls1e{letter-spacing:11.833190px;}
.ls0{letter-spacing:12.086342px;}
.ls1a{letter-spacing:12.254342px;}
.lsd{letter-spacing:12.788342px;}
.ls17{letter-spacing:12.794342px;}
.ls3e{letter-spacing:13.197817px;}
.ls16{letter-spacing:13.328342px;}
.ls7{letter-spacing:13.334342px;}
.ls2{letter-spacing:13.448342px;}
.lsa{letter-spacing:13.824269px;}
.ls18{letter-spacing:13.830269px;}
.ls20{letter-spacing:14.942218px;}
.ls1d{letter-spacing:14.948218px;}
.ls3a{letter-spacing:16.948214px;}
.ls39{letter-spacing:17.107642px;}
.ls1f{letter-spacing:19.249526px;}
.ls22{letter-spacing:20.497687px;}
.ls19{letter-spacing:20.861971px;}
.ls27{letter-spacing:21.404131px;}
.ls14{letter-spacing:22.291724px;}
.lsc{letter-spacing:22.297724px;}
.ls1c{letter-spacing:22.472266px;}
.ls3b{letter-spacing:24.024195px;}
.ls40{letter-spacing:131.959167px;}
.ls2a{letter-spacing:391.519687px;}
.ls30{letter-spacing:437.809687px;}
.ls9{letter-spacing:497.670077px;}
.ls1b{letter-spacing:503.100077px;}
.ls43{letter-spacing:613.110195px;}
.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;}
}
.ws41{word-spacing:-31.418266px;}
.ws40{word-spacing:-13.449600px;}
.wsf7{word-spacing:-10.460700px;}
.ws5c{word-spacing:-4.250074px;}
.ws7c{word-spacing:-4.196275px;}
.wsa0{word-spacing:-3.496896px;}
.ws9f{word-spacing:-3.443098px;}
.wsa1{word-spacing:-3.389299px;}
.ws87{word-spacing:-3.335501px;}
.ws88{word-spacing:-3.227904px;}
.ws6{word-spacing:-3.174106px;}
.wse1{word-spacing:-2.851315px;}
.ws7e{word-spacing:-2.797517px;}
.ws71{word-spacing:-2.706322px;}
.ws73{word-spacing:-2.689920px;}
.wsb3{word-spacing:-2.582323px;}
.ws45{word-spacing:-2.474726px;}
.wsb0{word-spacing:-2.367130px;}
.ws4f{word-spacing:-2.313331px;}
.ws9a{word-spacing:-2.044339px;}
.ws7{word-spacing:-1.882944px;}
.ws1c{word-spacing:-1.775347px;}
.ws34{word-spacing:-1.721549px;}
.ws9c{word-spacing:-1.667750px;}
.ws5{word-spacing:-1.506355px;}
.ws2c{word-spacing:-1.398758px;}
.ws16{word-spacing:-1.291162px;}
.wsaf{word-spacing:-1.183565px;}
.ws38{word-spacing:-0.914573px;}
.ws1d{word-spacing:-0.860774px;}
.ws3c{word-spacing:-0.806976px;}
.ws37{word-spacing:-0.753178px;}
.ws46{word-spacing:-0.699379px;}
.ws22{word-spacing:-0.645581px;}
.ws21{word-spacing:-0.591782px;}
.wse8{word-spacing:-0.585799px;}
.ws98{word-spacing:-0.571294px;}
.wsa5{word-spacing:-0.538387px;}
.ws96{word-spacing:-0.537984px;}
.wsee{word-spacing:-0.502114px;}
.ws52{word-spacing:-0.484186px;}
.wsa3{word-spacing:-0.376589px;}
.ws35{word-spacing:-0.322790px;}
.wsa7{word-spacing:-0.295784px;}
.ws57{word-spacing:-0.268992px;}
.wse9{word-spacing:-0.251057px;}
.ws4{word-spacing:-0.215194px;}
.wsf3{word-spacing:-0.209214px;}
.ws20{word-spacing:-0.161395px;}
.wsf2{word-spacing:-0.125528px;}
.ws9{word-spacing:-0.107597px;}
.ws2{word-spacing:-0.065455px;}
.ws8{word-spacing:-0.053798px;}
.ws7a{word-spacing:-0.043636px;}
.wse2{word-spacing:-0.041843px;}
.ws82{word-spacing:-0.032877px;}
.ws1{word-spacing:0.000000px;}
.wsf8{word-spacing:0.041843px;}
.ws26{word-spacing:0.053798px;}
.wse7{word-spacing:0.083686px;}
.wsd{word-spacing:0.107597px;}
.wsb1{word-spacing:0.155819px;}
.wsc{word-spacing:0.161395px;}
.wseb{word-spacing:0.167371px;}
.ws5d{word-spacing:0.197025px;}
.wse4{word-spacing:0.209214px;}
.wsa{word-spacing:0.215194px;}
.wsef{word-spacing:0.251057px;}
.ws3{word-spacing:0.268992px;}
.ws50{word-spacing:0.322790px;}
.ws6f{word-spacing:0.323812px;}
.ws15{word-spacing:0.376589px;}
.ws1a{word-spacing:0.430387px;}
.ws56{word-spacing:0.484186px;}
.ws27{word-spacing:0.537984px;}
.ws80{word-spacing:0.591782px;}
.ws92{word-spacing:0.699379px;}
.wsde{word-spacing:0.753178px;}
.wsdd{word-spacing:0.806976px;}
.ws2e{word-spacing:0.860774px;}
.ws54{word-spacing:0.914573px;}
.ws93{word-spacing:0.968371px;}
.ws3b{word-spacing:1.022170px;}
.ws90{word-spacing:1.075968px;}
.ws17{word-spacing:1.183565px;}
.ws2d{word-spacing:1.237363px;}
.ws6c{word-spacing:1.291162px;}
.wsb{word-spacing:1.344960px;}
.ws79{word-spacing:1.398758px;}
.ws8a{word-spacing:1.506355px;}
.ws53{word-spacing:1.560154px;}
.ws25{word-spacing:1.667750px;}
.wsfb{word-spacing:1.715555px;}
.ws51{word-spacing:1.721549px;}
.ws1b{word-spacing:1.775347px;}
.ws8b{word-spacing:1.829146px;}
.wsab{word-spacing:1.882944px;}
.ws89{word-spacing:1.936742px;}
.ws2a{word-spacing:1.990541px;}
.wsb5{word-spacing:2.098138px;}
.ws23{word-spacing:2.151936px;}
.ws39{word-spacing:2.205734px;}
.wsed{word-spacing:2.217668px;}
.wsdf{word-spacing:2.313331px;}
.ws9b{word-spacing:2.367130px;}
.ws18{word-spacing:2.474726px;}
.ws1f{word-spacing:2.636122px;}
.ws33{word-spacing:2.689920px;}
.ws78{word-spacing:2.743718px;}
.ws94{word-spacing:2.797517px;}
.wse0{word-spacing:2.905114px;}
.wsa4{word-spacing:2.958912px;}
.wsb6{word-spacing:3.012710px;}
.ws5a{word-spacing:3.066509px;}
.wsfc{word-spacing:3.096367px;}
.ws1e{word-spacing:3.174106px;}
.ws32{word-spacing:3.227904px;}
.ws6a{word-spacing:3.296966px;}
.ws59{word-spacing:3.335501px;}
.ws74{word-spacing:3.496896px;}
.ws7b{word-spacing:3.550694px;}
.ws19{word-spacing:3.604493px;}
.ws3e{word-spacing:3.658291px;}
.ws9d{word-spacing:3.712090px;}
.ws9e{word-spacing:3.819686px;}
.ws3d{word-spacing:3.873485px;}
.wsd8{word-spacing:3.912363px;}
.wsf5{word-spacing:4.016909px;}
.ws5b{word-spacing:4.034880px;}
.ws3a{word-spacing:4.142477px;}
.ws28{word-spacing:4.196275px;}
.wse3{word-spacing:4.267966px;}
.ws75{word-spacing:4.303872px;}
.ws3f{word-spacing:4.465267px;}
.wsac{word-spacing:4.509415px;}
.wsae{word-spacing:4.519066px;}
.wsc7{word-spacing:4.894945px;}
.ws29{word-spacing:4.895654px;}
.ws24{word-spacing:4.949453px;}
.ws36{word-spacing:5.003251px;}
.ws8f{word-spacing:5.057050px;}
.wsd9{word-spacing:5.633600px;}
.wsd7{word-spacing:5.636377px;}
.wsd5{word-spacing:5.638945px;}
.wscb{word-spacing:5.765600px;}
.wsc9{word-spacing:5.768377px;}
.ws58{word-spacing:6.240614px;}
.wsd0{word-spacing:6.283613px;}
.ws42{word-spacing:6.436123px;}
.wsc8{word-spacing:6.501794px;}
.ws2b{word-spacing:7.155187px;}
.ws30{word-spacing:7.280647px;}
.wscc{word-spacing:7.511862px;}
.wsda{word-spacing:7.693218px;}
.wscd{word-spacing:7.724587px;}
.wsd6{word-spacing:7.857603px;}
.wsfa{word-spacing:7.866446px;}
.wsd3{word-spacing:7.947451px;}
.ws61{word-spacing:8.015962px;}
.wsd1{word-spacing:8.381705px;}
.wscf{word-spacing:8.605670px;}
.ws11{word-spacing:8.876736px;}
.ws12{word-spacing:8.930534px;}
.ws64{word-spacing:9.087062px;}
.ws44{word-spacing:9.338147px;}
.ws4a{word-spacing:9.556328px;}
.ws85{word-spacing:9.608483px;}
.wsea{word-spacing:9.833058px;}
.ws91{word-spacing:10.114099px;}
.ws43{word-spacing:10.142483px;}
.wsf1{word-spacing:10.293329px;}
.wse6{word-spacing:10.418857px;}
.wsf9{word-spacing:10.460700px;}
.wsec{word-spacing:10.586228px;}
.wsbb{word-spacing:10.598285px;}
.wsf0{word-spacing:10.628071px;}
.ws8e{word-spacing:11.136269px;}
.wse5{word-spacing:11.655977px;}
.ws84{word-spacing:11.943245px;}
.wsf{word-spacing:11.997043px;}
.ws10{word-spacing:12.050842px;}
.ws48{word-spacing:12.158438px;}
.ws6e{word-spacing:12.859085px;}
.ws55{word-spacing:13.180608px;}
.ws31{word-spacing:13.288205px;}
.ws5f{word-spacing:13.391328px;}
.ws2f{word-spacing:13.395802px;}
.ws13{word-spacing:13.397654px;}
.ws63{word-spacing:13.398653px;}
.wsa9{word-spacing:13.399997px;}
.ws76{word-spacing:13.502675px;}
.wsfd{word-spacing:13.515224px;}
.wsdc{word-spacing:13.556882px;}
.ws7d{word-spacing:13.610995px;}
.wsb4{word-spacing:13.695494px;}
.wsb2{word-spacing:13.855292px;}
.ws8c{word-spacing:13.929456px;}
.ws99{word-spacing:13.946943px;}
.wsa2{word-spacing:14.221465px;}
.wsa8{word-spacing:14.222453px;}
.wsf4{word-spacing:14.393923px;}
.ws95{word-spacing:14.483473px;}
.wsb9{word-spacing:14.633165px;}
.ws72{word-spacing:14.662524px;}
.ws6d{word-spacing:14.685542px;}
.wsb8{word-spacing:14.686963px;}
.wsdb{word-spacing:14.794560px;}
.ws70{word-spacing:14.868874px;}
.ws5e{word-spacing:14.911040px;}
.wsba{word-spacing:15.171149px;}
.wsaa{word-spacing:15.555494px;}
.ws65{word-spacing:15.814838px;}
.ws77{word-spacing:16.139520px;}
.wse{word-spacing:16.298195px;}
.ws7f{word-spacing:16.354714px;}
.ws97{word-spacing:16.768646px;}
.ws47{word-spacing:16.946496px;}
.wsd4{word-spacing:17.000294px;}
.wsa6{word-spacing:17.050279px;}
.ws68{word-spacing:17.576851px;}
.ws8d{word-spacing:17.968666px;}
.ws6b{word-spacing:17.987660px;}
.wsad{word-spacing:18.196671px;}
.ws60{word-spacing:18.654298px;}
.ws66{word-spacing:18.654902px;}
.ws67{word-spacing:18.656467px;}
.wsb7{word-spacing:19.206029px;}
.wsf6{word-spacing:19.582430px;}
.ws86{word-spacing:21.108933px;}
.ws4c{word-spacing:23.617498px;}
.ws4e{word-spacing:25.459056px;}
.ws0{word-spacing:25.719808px;}
.wsbe{word-spacing:46.320422px;}
.wsc2{word-spacing:46.325818px;}
.ws4d{word-spacing:48.902746px;}
.wsbf{word-spacing:58.156070px;}
.wsc3{word-spacing:59.716224px;}
.ws14{word-spacing:65.389145px;}
.ws83{word-spacing:66.178829px;}
.ws81{word-spacing:66.867967px;}
.ws49{word-spacing:80.156784px;}
.wsbd{word-spacing:87.691392px;}
.wsc4{word-spacing:102.569472px;}
.wsc6{word-spacing:107.166413px;}
.wsc0{word-spacing:120.567504px;}
.wsbc{word-spacing:133.366234px;}
.ws4b{word-spacing:162.254483px;}
.wsc1{word-spacing:169.895347px;}
.wsc5{word-spacing:202.182259px;}
.ws62{word-spacing:236.596838px;}
.wsd2{word-spacing:545.028337px;}
.wsca{word-spacing:615.235333px;}
.wsce{word-spacing:619.226431px;}
.ws69{word-spacing:718.292467px;}
._12{margin-left:-6.328489px;}
._1{margin-left:-3.526760px;}
._3{margin-left:-2.225456px;}
._4{margin-left:-1.183565px;}
._8{width:1.179353px;}
._a{width:2.421820px;}
._0{width:3.468224px;}
._15{width:5.252723px;}
._21{width:7.297892px;}
._7{width:9.253325px;}
._9{width:10.930193px;}
._6{width:13.122598px;}
._d{width:14.256576px;}
._5{width:15.386342px;}
._2{width:17.454475px;}
._c{width:18.859304px;}
._10{width:20.174400px;}
._11{width:21.196570px;}
._24{width:22.330548px;}
._b{width:23.402304px;}
._e{width:24.854861px;}
._1e{width:26.199821px;}
._26{width:27.359452px;}
._25{width:29.887976px;}
._3f{width:31.842371px;}
._1b{width:37.336090px;}
._19{width:43.038720px;}
._18{width:44.383680px;}
._1f{width:49.147804px;}
._22{width:52.722432px;}
._23{width:54.712973px;}
._28{width:59.770022px;}
._f{width:65.454600px;}
._2e{width:71.767066px;}
._33{width:74.241792px;}
._34{width:79.514035px;}
._29{width:84.071816px;}
._16{width:89.251546px;}
._2b{width:96.900022px;}
._1a{width:98.558669px;}
._37{width:100.065024px;}
._2c{width:101.991554px;}
._2f{width:109.318349px;}
._1d{width:111.039898px;}
._39{width:112.492454px;}
._32{width:117.119117px;}
._2d{width:119.755238px;}
._35{width:120.885005px;}
._1c{width:123.574925px;}
._31{width:131.949168px;}
._27{width:137.885299px;}
._38{width:142.027776px;}
._30{width:145.363277px;}
._2a{width:158.654801px;}
._17{width:168.739405px;}
._36{width:183.344947px;}
._3a{width:207.199344px;}
._3b{width:523.094384px;}
._3c{width:606.565875px;}
._20{width:703.958717px;}
._3e{width:710.476032px;}
._3d{width:716.197846px;}
._14{width:1150.383522px;}
._13{width:1271.955571px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:32.877000px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:43.636200px;}
.fs4{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs3{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y31{bottom:127.023000px;}
.y6d{bottom:137.830500px;}
.y30{bottom:143.461500px;}
.y6c{bottom:154.269000px;}
.y13d{bottom:155.785500px;}
.y2f{bottom:159.900000px;}
.y16b{bottom:163.353000px;}
.y6b{bottom:170.706000px;}
.y13c{bottom:172.224000px;}
.y11a{bottom:173.022000px;}
.y16a{bottom:175.308000px;}
.y2e{bottom:176.338500px;}
.y6a{bottom:187.144500px;}
.y169{bottom:187.263000px;}
.y13b{bottom:188.662500px;}
.y119{bottom:189.460500px;}
.y2d{bottom:192.777000px;}
.y168{bottom:199.218000px;}
.y69{bottom:203.583000px;}
.y13a{bottom:205.101000px;}
.y118{bottom:205.899000px;}
.y2c{bottom:209.215500px;}
.y167{bottom:211.173000px;}
.y68{bottom:220.021500px;}
.y139{bottom:221.538000px;}
.y166{bottom:223.128000px;}
.y2b{bottom:225.654000px;}
.y165{bottom:235.083000px;}
.y67{bottom:236.460000px;}
.y138{bottom:242.086500px;}
.y2a{bottom:242.092500px;}
.y117{bottom:245.299500px;}
.y164{bottom:247.038000px;}
.y66{bottom:252.898500px;}
.y29{bottom:258.531000px;}
.y163{bottom:258.994500px;}
.y65{bottom:269.337000px;}
.y162{bottom:270.949500px;}
.y137{bottom:273.843000px;}
.y28{bottom:274.969500px;}
.y105{bottom:279.078000px;}
.y161{bottom:282.904500px;}
.y64{bottom:285.775500px;}
.y136{bottom:290.281500px;}
.y27{bottom:291.406500px;}
.y160{bottom:294.859500px;}
.y63{bottom:302.214000px;}
.y135{bottom:306.720000px;}
.y15f{bottom:306.814500px;}
.y26{bottom:307.845000px;}
.y104{bottom:312.079500px;}
.yaa{bottom:316.447500px;}
.y62{bottom:318.652500px;}
.y15e{bottom:318.769500px;}
.y134{bottom:323.157000px;}
.y25{bottom:324.283500px;}
.y103{bottom:328.518000px;}
.y15d{bottom:330.724500px;}
.ya9{bottom:332.886000px;}
.y61{bottom:335.091000px;}
.y133{bottom:339.595500px;}
.y24{bottom:340.722000px;}
.y15c{bottom:342.679500px;}
.y102{bottom:344.956500px;}
.ya8{bottom:349.324500px;}
.y60{bottom:351.528000px;}
.y15b{bottom:354.636000px;}
.y132{bottom:356.034000px;}
.y23{bottom:357.160500px;}
.y101{bottom:361.395000px;}
.ya7{bottom:365.763000px;}
.y15a{bottom:366.591000px;}
.y5f{bottom:367.966500px;}
.y131{bottom:372.472500px;}
.y22{bottom:373.599000px;}
.y100{bottom:377.833500px;}
.y159{bottom:378.546000px;}
.ya6{bottom:382.201500px;}
.y5e{bottom:384.405000px;}
.y130{bottom:388.911000px;}
.y21{bottom:390.037500px;}
.y158{bottom:390.501000px;}
.yff{bottom:394.272000px;}
.ya5{bottom:398.640000px;}
.y5d{bottom:400.843500px;}
.y157{bottom:402.456000px;}
.y12f{bottom:405.349500px;}
.y20{bottom:406.476000px;}
.yfe{bottom:410.709000px;}
.y156{bottom:414.411000px;}
.ya4{bottom:415.078500px;}
.yc0{bottom:417.049500px;}
.y5c{bottom:417.282000px;}
.y12e{bottom:421.788000px;}
.y4b{bottom:422.914500px;}
.y155{bottom:426.366000px;}
.y1f{bottom:427.023000px;}
.yfd{bottom:427.147500px;}
.ya3{bottom:431.515500px;}
.ybf{bottom:433.488000px;}
.y5b{bottom:433.720500px;}
.yd3{bottom:436.038000px;}
.y12d{bottom:438.226500px;}
.y154{bottom:438.321000px;}
.y4a{bottom:439.353000px;}
.y70{bottom:439.459500px;}
.yfc{bottom:443.586000px;}
.ya2{bottom:447.954000px;}
.ybe{bottom:449.926500px;}
.y5a{bottom:450.159000px;}
.y153{bottom:450.276000px;}
.yd2{bottom:452.458500px;}
.y12c{bottom:454.665000px;}
.y49{bottom:455.791500px;}
.y6f{bottom:455.898000px;}
.ycf{bottom:459.039000px;}
.yfb{bottom:460.024500px;}
.y152{bottom:462.232500px;}
.y116{bottom:463.890000px;}
.ya1{bottom:464.392500px;}
.ybd{bottom:466.363500px;}
.y59{bottom:466.597500px;}
.ycd{bottom:468.265500px;}
.y1e{bottom:469.081500px;}
.y12b{bottom:471.103500px;}
.y48{bottom:472.228500px;}
.y151{bottom:474.187500px;}
.yfa{bottom:476.463000px;}
.yce{bottom:477.370500px;}
.ya0{bottom:480.831000px;}
.yd1{bottom:482.025000px;}
.ybc{bottom:482.802000px;}
.y58{bottom:483.036000px;}
.yd0{bottom:485.244000px;}
.y1d{bottom:485.520000px;}
.y150{bottom:486.142500px;}
.y12a{bottom:487.540500px;}
.y47{bottom:488.667000px;}
.yf9{bottom:492.901500px;}
.y14f{bottom:498.097500px;}
.y57{bottom:499.474500px;}
.y9f{bottom:502.672500px;}
.ybb{bottom:503.350500px;}
.y129{bottom:503.979000px;}
.y46{bottom:505.105500px;}
.y1c{bottom:506.068500px;}
.y6e{bottom:509.215500px;}
.yf8{bottom:509.340000px;}
.y14d{bottom:510.052500px;}
.y14e{bottom:510.136500px;}
.y56{bottom:515.911500px;}
.y128{bottom:520.417500px;}
.y45{bottom:521.544000px;}
.y14c{bottom:522.028500px;}
.yf7{bottom:525.778500px;}
.ycc{bottom:526.839000px;}
.y55{bottom:532.350000px;}
.y14b{bottom:533.983500px;}
.y127{bottom:536.856000px;}
.yba{bottom:537.460500px;}
.y8d{bottom:537.982500px;}
.y9e{bottom:538.249500px;}
.y1b{bottom:538.753500px;}
.y44{bottom:542.092500px;}
.yf6{bottom:542.217000px;}
.ydf{bottom:542.724000px;}
.ycb{bottom:543.277500px;}
.y14a{bottom:545.938500px;}
.y54{bottom:548.788500px;}
.y126{bottom:553.294500px;}
.yb9{bottom:553.899000px;}
.y8c{bottom:554.421000px;}
.y9d{bottom:554.688000px;}
.y1a{bottom:555.192000px;}
.y149{bottom:557.893500px;}
.yf5{bottom:558.655500px;}
.yde{bottom:559.162500px;}
.yca{bottom:559.716000px;}
.y53{bottom:565.227000px;}
.y125{bottom:569.733000px;}
.y148{bottom:569.848500px;}
.yb8{bottom:570.337500px;}
.y8b{bottom:570.859500px;}
.y9c{bottom:571.126500px;}
.y19{bottom:571.630500px;}
.yf4{bottom:575.092500px;}
.ydd{bottom:575.601000px;}
.yc9{bottom:576.154500px;}
.y43{bottom:579.658500px;}
.y52{bottom:581.665500px;}
.y147{bottom:581.805000px;}
.y124{bottom:586.171500px;}
.yb7{bottom:586.776000px;}
.y8a{bottom:587.298000px;}
.y9b{bottom:587.565000px;}
.yf3{bottom:591.531000px;}
.ydc{bottom:592.039500px;}
.y18{bottom:592.179000px;}
.yc8{bottom:592.593000px;}
.y146{bottom:593.760000px;}
.y42{bottom:596.097000px;}
.y51{bottom:598.104000px;}
.y123{bottom:602.610000px;}
.yb6{bottom:603.214500px;}
.y89{bottom:603.736500px;}
.y9a{bottom:604.003500px;}
.y145{bottom:605.715000px;}
.yf2{bottom:607.969500px;}
.ydb{bottom:608.478000px;}
.yc7{bottom:609.031500px;}
.y41{bottom:612.535500px;}
.y50{bottom:614.542500px;}
.y144{bottom:617.670000px;}
.yb5{bottom:619.653000px;}
.y88{bottom:620.175000px;}
.y99{bottom:620.440500px;}
.y122{bottom:623.157000px;}
.yf1{bottom:624.408000px;}
.y17{bottom:624.864000px;}
.yda{bottom:624.916500px;}
.y40{bottom:628.974000px;}
.y143{bottom:629.625000px;}
.yc6{bottom:633.747000px;}
.yb4{bottom:636.090000px;}
.y87{bottom:636.612000px;}
.y98{bottom:636.879000px;}
.yc3{bottom:640.327500px;}
.yf0{bottom:640.846500px;}
.y16{bottom:641.302500px;}
.yd9{bottom:641.353500px;}
.y142{bottom:641.580000px;}
.y3f{bottom:645.412500px;}
.yc1{bottom:649.554000px;}
.yb3{bottom:652.528500px;}
.y86{bottom:653.050500px;}
.y97{bottom:653.317500px;}
.y141{bottom:653.535000px;}
.y121{bottom:654.913500px;}
.y4f{bottom:656.833500px;}
.yef{bottom:657.285000px;}
.y15{bottom:657.741000px;}
.yc2{bottom:658.659000px;}
.y3e{bottom:661.851000px;}
.yc5{bottom:663.312000px;}
.y140{bottom:665.490000px;}
.yc4{bottom:666.003000px;}
.yb2{bottom:668.967000px;}
.y85{bottom:669.489000px;}
.y96{bottom:669.756000px;}
.y120{bottom:671.352000px;}
.y4e{bottom:673.272000px;}
.yee{bottom:673.723500px;}
.y14{bottom:674.179500px;}
.y13f{bottom:677.445000px;}
.y3d{bottom:678.289500px;}
.yb1{bottom:685.405500px;}
.y84{bottom:685.927500px;}
.y95{bottom:686.194500px;}
.yd8{bottom:686.404500px;}
.y11f{bottom:687.790500px;}
.yed{bottom:690.162000px;}
.y13{bottom:690.618000px;}
.y13e{bottom:693.510000px;}
.y3c{bottom:694.726500px;}
.yb0{bottom:701.844000px;}
.y94{bottom:702.633000px;}
.yd7{bottom:702.841500px;}
.y115{bottom:703.368000px;}
.y11e{bottom:704.229000px;}
.y83{bottom:706.476000px;}
.yec{bottom:706.600500px;}
.y12{bottom:707.056500px;}
.y3b{bottom:711.165000px;}
.y4d{bottom:712.632000px;}
.yaf{bottom:718.282500px;}
.y93{bottom:719.071500px;}
.yd6{bottom:719.280000px;}
.y114{bottom:719.806500px;}
.yeb{bottom:723.039000px;}
.y11{bottom:723.495000px;}
.y3a{bottom:727.603500px;}
.yae{bottom:734.721000px;}
.y92{bottom:735.510000px;}
.yd5{bottom:735.718500px;}
.y113{bottom:736.243500px;}
.yea{bottom:739.477500px;}
.y10{bottom:739.932000px;}
.y39{bottom:744.042000px;}
.y110{bottom:744.463500px;}
.y11d{bottom:746.520000px;}
.yad{bottom:751.159500px;}
.y91{bottom:751.948500px;}
.y112{bottom:752.682000px;}
.y82{bottom:753.280500px;}
.ye9{bottom:755.914500px;}
.yf{bottom:756.370500px;}
.y38{bottom:760.480500px;}
.y11c{bottom:762.958500px;}
.yac{bottom:767.598000px;}
.y90{bottom:768.387000px;}
.y111{bottom:769.120500px;}
.y81{bottom:770.316000px;}
.ye8{bottom:772.353000px;}
.ye{bottom:772.809000px;}
.y37{bottom:776.919000px;}
.y8f{bottom:784.824000px;}
.y10f{bottom:786.157500px;}
.y80{bottom:786.754500px;}
.ye7{bottom:788.791500px;}
.yd{bottom:789.247500px;}
.y36{bottom:793.357500px;}
.y11b{bottom:802.450500px;}
.y10e{bottom:802.596000px;}
.y7f{bottom:803.193000px;}
.ye6{bottom:805.230000px;}
.yc{bottom:805.686000px;}
.y35{bottom:809.796000px;}
.yab{bottom:809.889000px;}
.y10d{bottom:819.033000px;}
.y7e{bottom:819.631500px;}
.ye5{bottom:821.668500px;}
.yb{bottom:822.124500px;}
.y34{bottom:826.234500px;}
.y10a{bottom:827.253000px;}
.y8e{bottom:828.261000px;}
.y10c{bottom:835.471500px;}
.y7d{bottom:836.070000px;}
.ye4{bottom:838.107000px;}
.ya{bottom:838.563000px;}
.y33{bottom:842.673000px;}
.y10b{bottom:851.910000px;}
.y7c{bottom:852.508500px;}
.ye3{bottom:854.545500px;}
.y9{bottom:855.001500px;}
.y32{bottom:859.110000px;}
.y7b{bottom:868.947000px;}
.ye2{bottom:870.984000px;}
.y8{bottom:875.548500px;}
.y7a{bottom:885.385500px;}
.ye1{bottom:887.422500px;}
.y79{bottom:901.822500px;}
.ye0{bottom:903.861000px;}
.y7{bottom:904.360500px;}
.y109{bottom:910.042500px;}
.y78{bottom:918.261000px;}
.y6{bottom:922.293000px;}
.y77{bottom:934.699500px;}
.y5{bottom:940.227000px;}
.yd4{bottom:941.899500px;}
.y76{bottom:951.138000px;}
.y108{bottom:951.736500px;}
.y4{bottom:958.159500px;}
.y107{bottom:959.955000px;}
.y75{bottom:968.175000px;}
.y3{bottom:976.092000px;}
.y74{bottom:976.393500px;}
.y106{bottom:1003.143000px;}
.y2{bottom:1015.962000px;}
.y73{bottom:1019.581500px;}
.y72{bottom:1036.020000px;}
.y1{bottom:1045.849500px;}
.y71{bottom:1052.458500px;}
.y4c{bottom:1089.817500px;}
.hf{height:0.000000px;}
.he{height:30.545340px;}
.ha{height:31.633157px;}
.h10{height:32.988967px;}
.h8{height:37.551283px;}
.h9{height:37.927872px;}
.hd{height:38.089267px;}
.h7{height:38.734848px;}
.h6{height:40.671590px;}
.h4{height:45.190354px;}
.h3{height:45.670354px;}
.h5{height:47.127312px;}
.hb{height:52.518967px;}
.h2{height:54.228787px;}
.hc{height:70.425283px;}
.h1{height:72.098095px;}
.h11{height:73.551590px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xd{left:80.697000px;}
.x43{left:84.112500px;}
.x2d{left:86.961000px;}
.x31{left:92.859000px;}
.x44{left:93.891000px;}
.x12{left:95.641500px;}
.x3f{left:96.999000px;}
.x30{left:99.133500px;}
.x1{left:100.497000px;}
.x2f{left:102.259500px;}
.x73{left:105.726000px;}
.x58{left:106.726500px;}
.x77{left:127.240500px;}
.x40{left:129.826500px;}
.x2e{left:134.562000px;}
.x6{left:138.688500px;}
.x5e{left:143.593500px;}
.x24{left:145.177500px;}
.x4{left:153.061500px;}
.x75{left:162.037500px;}
.x76{left:171.631500px;}
.x5f{left:173.575500px;}
.x3a{left:179.959500px;}
.x74{left:188.199000px;}
.x7{left:213.286500px;}
.x3{left:218.940000px;}
.xe{left:223.149000px;}
.x5{left:227.796000px;}
.x22{left:231.813000px;}
.xf{left:235.657500px;}
.x60{left:241.104000px;}
.x21{left:242.338500px;}
.x23{left:244.321500px;}
.x5b{left:260.571000px;}
.x34{left:263.737500px;}
.x35{left:269.992500px;}
.x10{left:286.696500px;}
.x11{left:299.205000px;}
.x72{left:306.355500px;}
.x2{left:313.021500px;}
.x3d{left:323.068500px;}
.x13{left:328.972500px;}
.x32{left:331.180500px;}
.x14{left:335.227500px;}
.x33{left:343.689000px;}
.x3e{left:345.177000px;}
.x41{left:363.252000px;}
.x42{left:375.141000px;}
.x5c{left:377.139000px;}
.x59{left:390.876000px;}
.x5a{left:404.257500px;}
.x3b{left:409.014000px;}
.x3c{left:423.228000px;}
.x61{left:430.063500px;}
.x62{left:436.317000px;}
.x5d{left:439.528500px;}
.x15{left:476.932500px;}
.x6b{left:480.457500px;}
.x19{left:481.816500px;}
.x1a{left:488.070000px;}
.x37{left:490.383000px;}
.x16{left:491.877000px;}
.x17{left:495.826500px;}
.x18{left:502.081500px;}
.x54{left:504.684000px;}
.xa{left:508.024500px;}
.x38{left:510.085500px;}
.x1f{left:513.526500px;}
.x20{left:519.781500px;}
.x9{left:522.397500px;}
.x1b{left:528.499500px;}
.x39{left:530.260500px;}
.x57{left:548.727000px;}
.x36{left:550.377000px;}
.x55{left:556.455000px;}
.x26{left:557.679000px;}
.x53{left:559.396500px;}
.x4d{left:577.077000px;}
.x64{left:578.799000px;}
.x51{left:581.482500px;}
.xb{left:582.622500px;}
.x56{left:585.297000px;}
.x45{left:587.320500px;}
.x4e{left:589.005000px;}
.x8{left:596.158500px;}
.xc{left:597.417000px;}
.x68{left:602.164500px;}
.x52{left:606.777000px;}
.x47{left:612.564000px;}
.x46{left:613.782000px;}
.x2b{left:621.889500px;}
.x49{left:624.570000px;}
.x48{left:626.829000px;}
.x2c{left:634.398000px;}
.x1e{left:637.561500px;}
.x4b{left:639.445500px;}
.x4a{left:643.711500px;}
.x27{left:647.800500px;}
.x4f{left:650.724000px;}
.x28{left:654.054000px;}
.x4c{left:659.010000px;}
.x50{left:661.981500px;}
.x1c{left:663.955500px;}
.x1d{left:676.464000px;}
.x6c{left:682.282500px;}
.x65{left:696.774000px;}
.x69{left:709.249500px;}
.x66{left:720.804000px;}
.x6a{left:729.544500px;}
.x6f{left:733.168500px;}
.x6d{left:755.392500px;}
.x6e{left:776.958000px;}
.x70{left:778.635000px;}
.x29{left:789.211500px;}
.x71{left:795.192000px;}
.x2a{left:801.720000px;}
.x67{left:813.004500px;}
.x63{left:814.632000px;}
.x25{left:832.081500px;}
@media print{
.v6{vertical-align:-10.474667pt;}
.v3{vertical-align:-8.458667pt;}
.v1{vertical-align:-7.173333pt;}
.v7{vertical-align:-5.818667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:8.458667pt;}
.v2{vertical-align:17.360000pt;}
.v8{vertical-align:22.053333pt;}
.v5{vertical-align:29.221333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2f{letter-spacing:0.003002pt;}
.ls3d{letter-spacing:0.003370pt;}
.lsb{letter-spacing:0.462754pt;}
.ls12{letter-spacing:0.468087pt;}
.ls3c{letter-spacing:0.660087pt;}
.ls32{letter-spacing:0.852087pt;}
.ls41{letter-spacing:0.978295pt;}
.ls24{letter-spacing:1.088077pt;}
.ls21{letter-spacing:1.093410pt;}
.ls2c{letter-spacing:1.095347pt;}
.ls25{letter-spacing:1.095484pt;}
.lsf{letter-spacing:1.196425pt;}
.ls2d{letter-spacing:1.212225pt;}
.ls3f{letter-spacing:1.245047pt;}
.ls36{letter-spacing:1.331456pt;}
.ls35{letter-spacing:1.357133pt;}
.ls5{letter-spacing:1.479091pt;}
.ls6{letter-spacing:1.484425pt;}
.ls45{letter-spacing:1.504563pt;}
.ls2b{letter-spacing:1.570876pt;}
.ls44{letter-spacing:1.629170pt;}
.lse{letter-spacing:1.718101pt;}
.ls29{letter-spacing:1.723435pt;}
.ls26{letter-spacing:2.210465pt;}
.ls4{letter-spacing:2.657037pt;}
.ls8{letter-spacing:2.919091pt;}
.ls38{letter-spacing:2.983799pt;}
.ls34{letter-spacing:2.989133pt;}
.ls23{letter-spacing:3.254793pt;}
.ls42{letter-spacing:3.453178pt;}
.ls2e{letter-spacing:3.606833pt;}
.ls28{letter-spacing:3.612166pt;}
.ls31{letter-spacing:4.956800pt;}
.ls33{letter-spacing:5.196166pt;}
.ls37{letter-spacing:5.201499pt;}
.ls10{letter-spacing:6.295467pt;}
.ls11{letter-spacing:7.250133pt;}
.ls13{letter-spacing:7.777533pt;}
.ls1{letter-spacing:7.975415pt;}
.ls15{letter-spacing:10.418082pt;}
.ls1e{letter-spacing:10.518391pt;}
.ls0{letter-spacing:10.743415pt;}
.ls1a{letter-spacing:10.892749pt;}
.lsd{letter-spacing:11.367415pt;}
.ls17{letter-spacing:11.372749pt;}
.ls3e{letter-spacing:11.731393pt;}
.ls16{letter-spacing:11.847415pt;}
.ls7{letter-spacing:11.852749pt;}
.ls2{letter-spacing:11.954082pt;}
.lsa{letter-spacing:12.288239pt;}
.ls18{letter-spacing:12.293572pt;}
.ls20{letter-spacing:13.281971pt;}
.ls1d{letter-spacing:13.287305pt;}
.ls3a{letter-spacing:15.065079pt;}
.ls39{letter-spacing:15.206793pt;}
.ls1f{letter-spacing:17.110690pt;}
.ls22{letter-spacing:18.220166pt;}
.ls19{letter-spacing:18.543974pt;}
.ls27{letter-spacing:19.025894pt;}
.ls14{letter-spacing:19.814866pt;}
.lsc{letter-spacing:19.820199pt;}
.ls1c{letter-spacing:19.975347pt;}
.ls3b{letter-spacing:21.354840pt;}
.ls40{letter-spacing:117.297037pt;}
.ls2a{letter-spacing:348.017499pt;}
.ls30{letter-spacing:389.164166pt;}
.ls9{letter-spacing:442.373402pt;}
.ls1b{letter-spacing:447.200068pt;}
.ls43{letter-spacing:544.986840pt;}
.ws41{word-spacing:-27.927347pt;}
.ws40{word-spacing:-11.955200pt;}
.wsf7{word-spacing:-9.298400pt;}
.ws5c{word-spacing:-3.777843pt;}
.ws7c{word-spacing:-3.730022pt;}
.wsa0{word-spacing:-3.108352pt;}
.ws9f{word-spacing:-3.060531pt;}
.wsa1{word-spacing:-3.012710pt;}
.ws87{word-spacing:-2.964890pt;}
.ws88{word-spacing:-2.869248pt;}
.ws6{word-spacing:-2.821427pt;}
.wse1{word-spacing:-2.534502pt;}
.ws7e{word-spacing:-2.486682pt;}
.ws71{word-spacing:-2.405619pt;}
.ws73{word-spacing:-2.391040pt;}
.wsb3{word-spacing:-2.295398pt;}
.ws45{word-spacing:-2.199757pt;}
.wsb0{word-spacing:-2.104115pt;}
.ws4f{word-spacing:-2.056294pt;}
.ws9a{word-spacing:-1.817190pt;}
.ws7{word-spacing:-1.673728pt;}
.ws1c{word-spacing:-1.578086pt;}
.ws34{word-spacing:-1.530266pt;}
.ws9c{word-spacing:-1.482445pt;}
.ws5{word-spacing:-1.338982pt;}
.ws2c{word-spacing:-1.243341pt;}
.ws16{word-spacing:-1.147699pt;}
.wsaf{word-spacing:-1.052058pt;}
.ws38{word-spacing:-0.812954pt;}
.ws1d{word-spacing:-0.765133pt;}
.ws3c{word-spacing:-0.717312pt;}
.ws37{word-spacing:-0.669491pt;}
.ws46{word-spacing:-0.621670pt;}
.ws22{word-spacing:-0.573850pt;}
.ws21{word-spacing:-0.526029pt;}
.wse8{word-spacing:-0.520710pt;}
.ws98{word-spacing:-0.507817pt;}
.wsa5{word-spacing:-0.478566pt;}
.ws96{word-spacing:-0.478208pt;}
.wsee{word-spacing:-0.446323pt;}
.ws52{word-spacing:-0.430387pt;}
.wsa3{word-spacing:-0.334746pt;}
.ws35{word-spacing:-0.286925pt;}
.wsa7{word-spacing:-0.262919pt;}
.ws57{word-spacing:-0.239104pt;}
.wse9{word-spacing:-0.223162pt;}
.ws4{word-spacing:-0.191283pt;}
.wsf3{word-spacing:-0.185968pt;}
.ws20{word-spacing:-0.143462pt;}
.wsf2{word-spacing:-0.111581pt;}
.ws9{word-spacing:-0.095642pt;}
.ws2{word-spacing:-0.058182pt;}
.ws8{word-spacing:-0.047821pt;}
.ws7a{word-spacing:-0.038788pt;}
.wse2{word-spacing:-0.037194pt;}
.ws82{word-spacing:-0.029224pt;}
.ws1{word-spacing:0.000000pt;}
.wsf8{word-spacing:0.037194pt;}
.ws26{word-spacing:0.047821pt;}
.wse7{word-spacing:0.074387pt;}
.wsd{word-spacing:0.095642pt;}
.wsb1{word-spacing:0.138505pt;}
.wsc{word-spacing:0.143462pt;}
.wseb{word-spacing:0.148774pt;}
.ws5d{word-spacing:0.175133pt;}
.wse4{word-spacing:0.185968pt;}
.wsa{word-spacing:0.191283pt;}
.wsef{word-spacing:0.223162pt;}
.ws3{word-spacing:0.239104pt;}
.ws50{word-spacing:0.286925pt;}
.ws6f{word-spacing:0.287833pt;}
.ws15{word-spacing:0.334746pt;}
.ws1a{word-spacing:0.382566pt;}
.ws56{word-spacing:0.430387pt;}
.ws27{word-spacing:0.478208pt;}
.ws80{word-spacing:0.526029pt;}
.ws92{word-spacing:0.621670pt;}
.wsde{word-spacing:0.669491pt;}
.wsdd{word-spacing:0.717312pt;}
.ws2e{word-spacing:0.765133pt;}
.ws54{word-spacing:0.812954pt;}
.ws93{word-spacing:0.860774pt;}
.ws3b{word-spacing:0.908595pt;}
.ws90{word-spacing:0.956416pt;}
.ws17{word-spacing:1.052058pt;}
.ws2d{word-spacing:1.099878pt;}
.ws6c{word-spacing:1.147699pt;}
.wsb{word-spacing:1.195520pt;}
.ws79{word-spacing:1.243341pt;}
.ws8a{word-spacing:1.338982pt;}
.ws53{word-spacing:1.386803pt;}
.ws25{word-spacing:1.482445pt;}
.wsfb{word-spacing:1.524938pt;}
.ws51{word-spacing:1.530266pt;}
.ws1b{word-spacing:1.578086pt;}
.ws8b{word-spacing:1.625907pt;}
.wsab{word-spacing:1.673728pt;}
.ws89{word-spacing:1.721549pt;}
.ws2a{word-spacing:1.769370pt;}
.wsb5{word-spacing:1.865011pt;}
.ws23{word-spacing:1.912832pt;}
.ws39{word-spacing:1.960653pt;}
.wsed{word-spacing:1.971261pt;}
.wsdf{word-spacing:2.056294pt;}
.ws9b{word-spacing:2.104115pt;}
.ws18{word-spacing:2.199757pt;}
.ws1f{word-spacing:2.343219pt;}
.ws33{word-spacing:2.391040pt;}
.ws78{word-spacing:2.438861pt;}
.ws94{word-spacing:2.486682pt;}
.wse0{word-spacing:2.582323pt;}
.wsa4{word-spacing:2.630144pt;}
.wsb6{word-spacing:2.677965pt;}
.ws5a{word-spacing:2.725786pt;}
.wsfc{word-spacing:2.752326pt;}
.ws1e{word-spacing:2.821427pt;}
.ws32{word-spacing:2.869248pt;}
.ws6a{word-spacing:2.930636pt;}
.ws59{word-spacing:2.964890pt;}
.ws74{word-spacing:3.108352pt;}
.ws7b{word-spacing:3.156173pt;}
.ws19{word-spacing:3.203994pt;}
.ws3e{word-spacing:3.251814pt;}
.ws9d{word-spacing:3.299635pt;}
.ws9e{word-spacing:3.395277pt;}
.ws3d{word-spacing:3.443098pt;}
.wsd8{word-spacing:3.477656pt;}
.wsf5{word-spacing:3.570586pt;}
.ws5b{word-spacing:3.586560pt;}
.ws3a{word-spacing:3.682202pt;}
.ws28{word-spacing:3.730022pt;}
.wse3{word-spacing:3.793747pt;}
.ws75{word-spacing:3.825664pt;}
.ws3f{word-spacing:3.969126pt;}
.wsac{word-spacing:4.008369pt;}
.wsae{word-spacing:4.016947pt;}
.wsc7{word-spacing:4.351062pt;}
.ws29{word-spacing:4.351693pt;}
.ws24{word-spacing:4.399514pt;}
.ws36{word-spacing:4.447334pt;}
.ws8f{word-spacing:4.495155pt;}
.wsd9{word-spacing:5.007645pt;}
.wsd7{word-spacing:5.010113pt;}
.wsd5{word-spacing:5.012396pt;}
.wscb{word-spacing:5.124978pt;}
.wsc9{word-spacing:5.127446pt;}
.ws58{word-spacing:5.547213pt;}
.wsd0{word-spacing:5.585434pt;}
.ws42{word-spacing:5.720998pt;}
.wsc8{word-spacing:5.779372pt;}
.ws2b{word-spacing:6.360166pt;}
.ws30{word-spacing:6.471686pt;}
.wscc{word-spacing:6.677211pt;}
.wsda{word-spacing:6.838416pt;}
.wscd{word-spacing:6.866300pt;}
.wsd6{word-spacing:6.984536pt;}
.wsfa{word-spacing:6.992397pt;}
.wsd3{word-spacing:7.064401pt;}
.ws61{word-spacing:7.125299pt;}
.wsd1{word-spacing:7.450404pt;}
.wscf{word-spacing:7.649485pt;}
.ws11{word-spacing:7.890432pt;}
.ws12{word-spacing:7.938253pt;}
.ws64{word-spacing:8.077389pt;}
.ws44{word-spacing:8.300575pt;}
.ws4a{word-spacing:8.494514pt;}
.ws85{word-spacing:8.540874pt;}
.wsea{word-spacing:8.740496pt;}
.ws91{word-spacing:8.990310pt;}
.ws43{word-spacing:9.015541pt;}
.wsf1{word-spacing:9.149626pt;}
.wse6{word-spacing:9.261206pt;}
.wsf9{word-spacing:9.298400pt;}
.wsec{word-spacing:9.409981pt;}
.wsbb{word-spacing:9.420698pt;}
.wsf0{word-spacing:9.447174pt;}
.ws8e{word-spacing:9.898906pt;}
.wse5{word-spacing:10.360868pt;}
.ws84{word-spacing:10.616218pt;}
.wsf{word-spacing:10.664038pt;}
.ws10{word-spacing:10.711859pt;}
.ws48{word-spacing:10.807501pt;}
.ws6e{word-spacing:11.430298pt;}
.ws55{word-spacing:11.716096pt;}
.ws31{word-spacing:11.811738pt;}
.ws5f{word-spacing:11.903403pt;}
.ws2f{word-spacing:11.907379pt;}
.ws13{word-spacing:11.909026pt;}
.ws63{word-spacing:11.909914pt;}
.wsa9{word-spacing:11.911108pt;}
.ws76{word-spacing:12.002378pt;}
.wsfd{word-spacing:12.013533pt;}
.wsdc{word-spacing:12.050562pt;}
.ws7d{word-spacing:12.098662pt;}
.wsb4{word-spacing:12.173773pt;}
.wsb2{word-spacing:12.315815pt;}
.ws8c{word-spacing:12.381739pt;}
.ws99{word-spacing:12.397283pt;}
.wsa2{word-spacing:12.641302pt;}
.wsa8{word-spacing:12.642181pt;}
.wsf4{word-spacing:12.794598pt;}
.ws95{word-spacing:12.874198pt;}
.wsb9{word-spacing:13.007258pt;}
.ws72{word-spacing:13.033355pt;}
.ws6d{word-spacing:13.053815pt;}
.wsb8{word-spacing:13.055078pt;}
.wsdb{word-spacing:13.150720pt;}
.ws70{word-spacing:13.216777pt;}
.ws5e{word-spacing:13.254258pt;}
.wsba{word-spacing:13.485466pt;}
.wsaa{word-spacing:13.827106pt;}
.ws65{word-spacing:14.057634pt;}
.ws77{word-spacing:14.346240pt;}
.wse{word-spacing:14.487285pt;}
.ws7f{word-spacing:14.537523pt;}
.ws97{word-spacing:14.905463pt;}
.ws47{word-spacing:15.063552pt;}
.wsd4{word-spacing:15.111373pt;}
.wsa6{word-spacing:15.155804pt;}
.ws68{word-spacing:15.623868pt;}
.ws8d{word-spacing:15.972147pt;}
.ws6b{word-spacing:15.989031pt;}
.wsad{word-spacing:16.174819pt;}
.ws60{word-spacing:16.581598pt;}
.ws66{word-spacing:16.582135pt;}
.ws67{word-spacing:16.583526pt;}
.wsb7{word-spacing:17.072026pt;}
.wsf6{word-spacing:17.406605pt;}
.ws86{word-spacing:18.763496pt;}
.ws4c{word-spacing:20.993331pt;}
.ws4e{word-spacing:22.630272pt;}
.ws0{word-spacing:22.862051pt;}
.wsbe{word-spacing:41.173709pt;}
.wsc2{word-spacing:41.178505pt;}
.ws4d{word-spacing:43.469107pt;}
.wsbf{word-spacing:51.694285pt;}
.wsc3{word-spacing:53.081088pt;}
.ws14{word-spacing:58.123685pt;}
.ws83{word-spacing:58.825626pt;}
.ws81{word-spacing:59.438193pt;}
.ws49{word-spacing:71.250475pt;}
.wsbd{word-spacing:77.947904pt;}
.wsc4{word-spacing:91.172864pt;}
.wsc6{word-spacing:95.259034pt;}
.wsc0{word-spacing:107.171115pt;}
.wsbc{word-spacing:118.547763pt;}
.ws4b{word-spacing:144.226207pt;}
.wsc1{word-spacing:151.018086pt;}
.wsc5{word-spacing:179.717564pt;}
.ws62{word-spacing:210.308301pt;}
.wsd2{word-spacing:484.469633pt;}
.wsca{word-spacing:546.875851pt;}
.wsce{word-spacing:550.423494pt;}
.ws69{word-spacing:638.482193pt;}
._12{margin-left:-5.625324pt;}
._1{margin-left:-3.134898pt;}
._3{margin-left:-1.978183pt;}
._4{margin-left:-1.052058pt;}
._8{width:1.048314pt;}
._a{width:2.152729pt;}
._0{width:3.082866pt;}
._15{width:4.669087pt;}
._21{width:6.487015pt;}
._7{width:8.225178pt;}
._9{width:9.715727pt;}
._6{width:11.664531pt;}
._d{width:12.672512pt;}
._5{width:13.676749pt;}
._2{width:15.515089pt;}
._c{width:16.763826pt;}
._10{width:17.932800pt;}
._11{width:18.841395pt;}
._24{width:19.849376pt;}
._b{width:20.802048pt;}
._e{width:22.093210pt;}
._1e{width:23.288730pt;}
._26{width:24.319513pt;}
._25{width:26.567090pt;}
._3f{width:28.304330pt;}
._1b{width:33.187635pt;}
._19{width:38.256640pt;}
._18{width:39.452160pt;}
._1f{width:43.686937pt;}
._22{width:46.864384pt;}
._23{width:48.633754pt;}
._28{width:53.128909pt;}
._f{width:58.181867pt;}
._2e{width:63.792947pt;}
._33{width:65.992704pt;}
._34{width:70.679142pt;}
._29{width:74.730503pt;}
._16{width:79.334707pt;}
._2b{width:86.133353pt;}
._1a{width:87.607706pt;}
._37{width:88.946688pt;}
._2c{width:90.659159pt;}
._2f{width:97.171866pt;}
._1d{width:98.702131pt;}
._39{width:99.993293pt;}
._32{width:104.105882pt;}
._2d{width:106.449101pt;}
._35{width:107.453338pt;}
._1c{width:109.844378pt;}
._31{width:117.288149pt;}
._27{width:122.564710pt;}
._38{width:126.246912pt;}
._30{width:129.211802pt;}
._2a{width:141.026490pt;}
._17{width:149.990582pt;}
._36{width:162.973286pt;}
._3a{width:184.177195pt;}
._3b{width:464.972786pt;}
._3c{width:539.169667pt;}
._20{width:625.741082pt;}
._3e{width:631.534251pt;}
._3d{width:636.620308pt;}
._14{width:1022.563131pt;}
._13{width:1130.627174pt;}
.fs7{font-size:29.224000pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:38.787733pt;}
.fs4{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs3{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:112.909333pt;}
.y6d{bottom:122.516000pt;}
.y30{bottom:127.521333pt;}
.y6c{bottom:137.128000pt;}
.y13d{bottom:138.476000pt;}
.y2f{bottom:142.133333pt;}
.y16b{bottom:145.202667pt;}
.y6b{bottom:151.738667pt;}
.y13c{bottom:153.088000pt;}
.y11a{bottom:153.797333pt;}
.y16a{bottom:155.829333pt;}
.y2e{bottom:156.745333pt;}
.y6a{bottom:166.350667pt;}
.y169{bottom:166.456000pt;}
.y13b{bottom:167.700000pt;}
.y119{bottom:168.409333pt;}
.y2d{bottom:171.357333pt;}
.y168{bottom:177.082667pt;}
.y69{bottom:180.962667pt;}
.y13a{bottom:182.312000pt;}
.y118{bottom:183.021333pt;}
.y2c{bottom:185.969333pt;}
.y167{bottom:187.709333pt;}
.y68{bottom:195.574667pt;}
.y139{bottom:196.922667pt;}
.y166{bottom:198.336000pt;}
.y2b{bottom:200.581333pt;}
.y165{bottom:208.962667pt;}
.y67{bottom:210.186667pt;}
.y138{bottom:215.188000pt;}
.y2a{bottom:215.193333pt;}
.y117{bottom:218.044000pt;}
.y164{bottom:219.589333pt;}
.y66{bottom:224.798667pt;}
.y29{bottom:229.805333pt;}
.y163{bottom:230.217333pt;}
.y65{bottom:239.410667pt;}
.y162{bottom:240.844000pt;}
.y137{bottom:243.416000pt;}
.y28{bottom:244.417333pt;}
.y105{bottom:248.069333pt;}
.y161{bottom:251.470667pt;}
.y64{bottom:254.022667pt;}
.y136{bottom:258.028000pt;}
.y27{bottom:259.028000pt;}
.y160{bottom:262.097333pt;}
.y63{bottom:268.634667pt;}
.y135{bottom:272.640000pt;}
.y15f{bottom:272.724000pt;}
.y26{bottom:273.640000pt;}
.y104{bottom:277.404000pt;}
.yaa{bottom:281.286667pt;}
.y62{bottom:283.246667pt;}
.y15e{bottom:283.350667pt;}
.y134{bottom:287.250667pt;}
.y25{bottom:288.252000pt;}
.y103{bottom:292.016000pt;}
.y15d{bottom:293.977333pt;}
.ya9{bottom:295.898667pt;}
.y61{bottom:297.858667pt;}
.y133{bottom:301.862667pt;}
.y24{bottom:302.864000pt;}
.y15c{bottom:304.604000pt;}
.y102{bottom:306.628000pt;}
.ya8{bottom:310.510667pt;}
.y60{bottom:312.469333pt;}
.y15b{bottom:315.232000pt;}
.y132{bottom:316.474667pt;}
.y23{bottom:317.476000pt;}
.y101{bottom:321.240000pt;}
.ya7{bottom:325.122667pt;}
.y15a{bottom:325.858667pt;}
.y5f{bottom:327.081333pt;}
.y131{bottom:331.086667pt;}
.y22{bottom:332.088000pt;}
.y100{bottom:335.852000pt;}
.y159{bottom:336.485333pt;}
.ya6{bottom:339.734667pt;}
.y5e{bottom:341.693333pt;}
.y130{bottom:345.698667pt;}
.y21{bottom:346.700000pt;}
.y158{bottom:347.112000pt;}
.yff{bottom:350.464000pt;}
.ya5{bottom:354.346667pt;}
.y5d{bottom:356.305333pt;}
.y157{bottom:357.738667pt;}
.y12f{bottom:360.310667pt;}
.y20{bottom:361.312000pt;}
.yfe{bottom:365.074667pt;}
.y156{bottom:368.365333pt;}
.ya4{bottom:368.958667pt;}
.yc0{bottom:370.710667pt;}
.y5c{bottom:370.917333pt;}
.y12e{bottom:374.922667pt;}
.y4b{bottom:375.924000pt;}
.y155{bottom:378.992000pt;}
.y1f{bottom:379.576000pt;}
.yfd{bottom:379.686667pt;}
.ya3{bottom:383.569333pt;}
.ybf{bottom:385.322667pt;}
.y5b{bottom:385.529333pt;}
.yd3{bottom:387.589333pt;}
.y12d{bottom:389.534667pt;}
.y154{bottom:389.618667pt;}
.y4a{bottom:390.536000pt;}
.y70{bottom:390.630667pt;}
.yfc{bottom:394.298667pt;}
.ya2{bottom:398.181333pt;}
.ybe{bottom:399.934667pt;}
.y5a{bottom:400.141333pt;}
.y153{bottom:400.245333pt;}
.yd2{bottom:402.185333pt;}
.y12c{bottom:404.146667pt;}
.y49{bottom:405.148000pt;}
.y6f{bottom:405.242667pt;}
.ycf{bottom:408.034667pt;}
.yfb{bottom:408.910667pt;}
.y152{bottom:410.873333pt;}
.y116{bottom:412.346667pt;}
.ya1{bottom:412.793333pt;}
.ybd{bottom:414.545333pt;}
.y59{bottom:414.753333pt;}
.ycd{bottom:416.236000pt;}
.y1e{bottom:416.961333pt;}
.y12b{bottom:418.758667pt;}
.y48{bottom:419.758667pt;}
.y151{bottom:421.500000pt;}
.yfa{bottom:423.522667pt;}
.yce{bottom:424.329333pt;}
.ya0{bottom:427.405333pt;}
.yd1{bottom:428.466667pt;}
.ybc{bottom:429.157333pt;}
.y58{bottom:429.365333pt;}
.yd0{bottom:431.328000pt;}
.y1d{bottom:431.573333pt;}
.y150{bottom:432.126667pt;}
.y12a{bottom:433.369333pt;}
.y47{bottom:434.370667pt;}
.yf9{bottom:438.134667pt;}
.y14f{bottom:442.753333pt;}
.y57{bottom:443.977333pt;}
.y9f{bottom:446.820000pt;}
.ybb{bottom:447.422667pt;}
.y129{bottom:447.981333pt;}
.y46{bottom:448.982667pt;}
.y1c{bottom:449.838667pt;}
.y6e{bottom:452.636000pt;}
.yf8{bottom:452.746667pt;}
.y14d{bottom:453.380000pt;}
.y14e{bottom:453.454667pt;}
.y56{bottom:458.588000pt;}
.y128{bottom:462.593333pt;}
.y45{bottom:463.594667pt;}
.y14c{bottom:464.025333pt;}
.yf7{bottom:467.358667pt;}
.ycc{bottom:468.301333pt;}
.y55{bottom:473.200000pt;}
.y14b{bottom:474.652000pt;}
.y127{bottom:477.205333pt;}
.yba{bottom:477.742667pt;}
.y8d{bottom:478.206667pt;}
.y9e{bottom:478.444000pt;}
.y1b{bottom:478.892000pt;}
.y44{bottom:481.860000pt;}
.yf6{bottom:481.970667pt;}
.ydf{bottom:482.421333pt;}
.ycb{bottom:482.913333pt;}
.y14a{bottom:485.278667pt;}
.y54{bottom:487.812000pt;}
.y126{bottom:491.817333pt;}
.yb9{bottom:492.354667pt;}
.y8c{bottom:492.818667pt;}
.y9d{bottom:493.056000pt;}
.y1a{bottom:493.504000pt;}
.y149{bottom:495.905333pt;}
.yf5{bottom:496.582667pt;}
.yde{bottom:497.033333pt;}
.yca{bottom:497.525333pt;}
.y53{bottom:502.424000pt;}
.y125{bottom:506.429333pt;}
.y148{bottom:506.532000pt;}
.yb8{bottom:506.966667pt;}
.y8b{bottom:507.430667pt;}
.y9c{bottom:507.668000pt;}
.y19{bottom:508.116000pt;}
.yf4{bottom:511.193333pt;}
.ydd{bottom:511.645333pt;}
.yc9{bottom:512.137333pt;}
.y43{bottom:515.252000pt;}
.y52{bottom:517.036000pt;}
.y147{bottom:517.160000pt;}
.y124{bottom:521.041333pt;}
.yb7{bottom:521.578667pt;}
.y8a{bottom:522.042667pt;}
.y9b{bottom:522.280000pt;}
.yf3{bottom:525.805333pt;}
.ydc{bottom:526.257333pt;}
.y18{bottom:526.381333pt;}
.yc8{bottom:526.749333pt;}
.y146{bottom:527.786667pt;}
.y42{bottom:529.864000pt;}
.y51{bottom:531.648000pt;}
.y123{bottom:535.653333pt;}
.yb6{bottom:536.190667pt;}
.y89{bottom:536.654667pt;}
.y9a{bottom:536.892000pt;}
.y145{bottom:538.413333pt;}
.yf2{bottom:540.417333pt;}
.ydb{bottom:540.869333pt;}
.yc7{bottom:541.361333pt;}
.y41{bottom:544.476000pt;}
.y50{bottom:546.260000pt;}
.y144{bottom:549.040000pt;}
.yb5{bottom:550.802667pt;}
.y88{bottom:551.266667pt;}
.y99{bottom:551.502667pt;}
.y122{bottom:553.917333pt;}
.yf1{bottom:555.029333pt;}
.y17{bottom:555.434667pt;}
.yda{bottom:555.481333pt;}
.y40{bottom:559.088000pt;}
.y143{bottom:559.666667pt;}
.yc6{bottom:563.330667pt;}
.yb4{bottom:565.413333pt;}
.y87{bottom:565.877333pt;}
.y98{bottom:566.114667pt;}
.yc3{bottom:569.180000pt;}
.yf0{bottom:569.641333pt;}
.y16{bottom:570.046667pt;}
.yd9{bottom:570.092000pt;}
.y142{bottom:570.293333pt;}
.y3f{bottom:573.700000pt;}
.yc1{bottom:577.381333pt;}
.yb3{bottom:580.025333pt;}
.y86{bottom:580.489333pt;}
.y97{bottom:580.726667pt;}
.y141{bottom:580.920000pt;}
.y121{bottom:582.145333pt;}
.y4f{bottom:583.852000pt;}
.yef{bottom:584.253333pt;}
.y15{bottom:584.658667pt;}
.yc2{bottom:585.474667pt;}
.y3e{bottom:588.312000pt;}
.yc5{bottom:589.610667pt;}
.y140{bottom:591.546667pt;}
.yc4{bottom:592.002667pt;}
.yb2{bottom:594.637333pt;}
.y85{bottom:595.101333pt;}
.y96{bottom:595.338667pt;}
.y120{bottom:596.757333pt;}
.y4e{bottom:598.464000pt;}
.yee{bottom:598.865333pt;}
.y14{bottom:599.270667pt;}
.y13f{bottom:602.173333pt;}
.y3d{bottom:602.924000pt;}
.yb1{bottom:609.249333pt;}
.y84{bottom:609.713333pt;}
.y95{bottom:609.950667pt;}
.yd8{bottom:610.137333pt;}
.y11f{bottom:611.369333pt;}
.yed{bottom:613.477333pt;}
.y13{bottom:613.882667pt;}
.y13e{bottom:616.453333pt;}
.y3c{bottom:617.534667pt;}
.yb0{bottom:623.861333pt;}
.y94{bottom:624.562667pt;}
.yd7{bottom:624.748000pt;}
.y115{bottom:625.216000pt;}
.y11e{bottom:625.981333pt;}
.y83{bottom:627.978667pt;}
.yec{bottom:628.089333pt;}
.y12{bottom:628.494667pt;}
.y3b{bottom:632.146667pt;}
.y4d{bottom:633.450667pt;}
.yaf{bottom:638.473333pt;}
.y93{bottom:639.174667pt;}
.yd6{bottom:639.360000pt;}
.y114{bottom:639.828000pt;}
.yeb{bottom:642.701333pt;}
.y11{bottom:643.106667pt;}
.y3a{bottom:646.758667pt;}
.yae{bottom:653.085333pt;}
.y92{bottom:653.786667pt;}
.yd5{bottom:653.972000pt;}
.y113{bottom:654.438667pt;}
.yea{bottom:657.313333pt;}
.y10{bottom:657.717333pt;}
.y39{bottom:661.370667pt;}
.y110{bottom:661.745333pt;}
.y11d{bottom:663.573333pt;}
.yad{bottom:667.697333pt;}
.y91{bottom:668.398667pt;}
.y112{bottom:669.050667pt;}
.y82{bottom:669.582667pt;}
.ye9{bottom:671.924000pt;}
.yf{bottom:672.329333pt;}
.y38{bottom:675.982667pt;}
.y11c{bottom:678.185333pt;}
.yac{bottom:682.309333pt;}
.y90{bottom:683.010667pt;}
.y111{bottom:683.662667pt;}
.y81{bottom:684.725333pt;}
.ye8{bottom:686.536000pt;}
.ye{bottom:686.941333pt;}
.y37{bottom:690.594667pt;}
.y8f{bottom:697.621333pt;}
.y10f{bottom:698.806667pt;}
.y80{bottom:699.337333pt;}
.ye7{bottom:701.148000pt;}
.yd{bottom:701.553333pt;}
.y36{bottom:705.206667pt;}
.y11b{bottom:713.289333pt;}
.y10e{bottom:713.418667pt;}
.y7f{bottom:713.949333pt;}
.ye6{bottom:715.760000pt;}
.yc{bottom:716.165333pt;}
.y35{bottom:719.818667pt;}
.yab{bottom:719.901333pt;}
.y10d{bottom:728.029333pt;}
.y7e{bottom:728.561333pt;}
.ye5{bottom:730.372000pt;}
.yb{bottom:730.777333pt;}
.y34{bottom:734.430667pt;}
.y10a{bottom:735.336000pt;}
.y8e{bottom:736.232000pt;}
.y10c{bottom:742.641333pt;}
.y7d{bottom:743.173333pt;}
.ye4{bottom:744.984000pt;}
.ya{bottom:745.389333pt;}
.y33{bottom:749.042667pt;}
.y10b{bottom:757.253333pt;}
.y7c{bottom:757.785333pt;}
.ye3{bottom:759.596000pt;}
.y9{bottom:760.001333pt;}
.y32{bottom:763.653333pt;}
.y7b{bottom:772.397333pt;}
.ye2{bottom:774.208000pt;}
.y8{bottom:778.265333pt;}
.y7a{bottom:787.009333pt;}
.ye1{bottom:788.820000pt;}
.y79{bottom:801.620000pt;}
.ye0{bottom:803.432000pt;}
.y7{bottom:803.876000pt;}
.y109{bottom:808.926667pt;}
.y78{bottom:816.232000pt;}
.y6{bottom:819.816000pt;}
.y77{bottom:830.844000pt;}
.y5{bottom:835.757333pt;}
.yd4{bottom:837.244000pt;}
.y76{bottom:845.456000pt;}
.y108{bottom:845.988000pt;}
.y4{bottom:851.697333pt;}
.y107{bottom:853.293333pt;}
.y75{bottom:860.600000pt;}
.y3{bottom:867.637333pt;}
.y74{bottom:867.905333pt;}
.y106{bottom:891.682667pt;}
.y2{bottom:903.077333pt;}
.y73{bottom:906.294667pt;}
.y72{bottom:920.906667pt;}
.y1{bottom:929.644000pt;}
.y71{bottom:935.518667pt;}
.y4c{bottom:968.726667pt;}
.hf{height:0.000000pt;}
.he{height:27.151413pt;}
.ha{height:28.118362pt;}
.h10{height:29.323526pt;}
.h8{height:33.378918pt;}
.h9{height:33.713664pt;}
.hd{height:33.857126pt;}
.h7{height:34.430976pt;}
.h6{height:36.152525pt;}
.h4{height:40.169203pt;}
.h3{height:40.595870pt;}
.h5{height:41.890944pt;}
.hb{height:46.683526pt;}
.h2{height:48.203366pt;}
.hc{height:62.600252pt;}
.h1{height:64.087196pt;}
.h11{height:65.379191pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xd{left:71.730667pt;}
.x43{left:74.766667pt;}
.x2d{left:77.298667pt;}
.x31{left:82.541333pt;}
.x44{left:83.458667pt;}
.x12{left:85.014667pt;}
.x3f{left:86.221333pt;}
.x30{left:88.118667pt;}
.x1{left:89.330667pt;}
.x2f{left:90.897333pt;}
.x73{left:93.978667pt;}
.x58{left:94.868000pt;}
.x77{left:113.102667pt;}
.x40{left:115.401333pt;}
.x2e{left:119.610667pt;}
.x6{left:123.278667pt;}
.x5e{left:127.638667pt;}
.x24{left:129.046667pt;}
.x4{left:136.054667pt;}
.x75{left:144.033333pt;}
.x76{left:152.561333pt;}
.x5f{left:154.289333pt;}
.x3a{left:159.964000pt;}
.x74{left:167.288000pt;}
.x7{left:189.588000pt;}
.x3{left:194.613333pt;}
.xe{left:198.354667pt;}
.x5{left:202.485333pt;}
.x22{left:206.056000pt;}
.xf{left:209.473333pt;}
.x60{left:214.314667pt;}
.x21{left:215.412000pt;}
.x23{left:217.174667pt;}
.x5b{left:231.618667pt;}
.x34{left:234.433333pt;}
.x35{left:239.993333pt;}
.x10{left:254.841333pt;}
.x11{left:265.960000pt;}
.x72{left:272.316000pt;}
.x2{left:278.241333pt;}
.x3d{left:287.172000pt;}
.x13{left:292.420000pt;}
.x32{left:294.382667pt;}
.x14{left:297.980000pt;}
.x33{left:305.501333pt;}
.x3e{left:306.824000pt;}
.x41{left:322.890667pt;}
.x42{left:333.458667pt;}
.x5c{left:335.234667pt;}
.x59{left:347.445333pt;}
.x5a{left:359.340000pt;}
.x3b{left:363.568000pt;}
.x3c{left:376.202667pt;}
.x61{left:382.278667pt;}
.x62{left:387.837333pt;}
.x5d{left:390.692000pt;}
.x15{left:423.940000pt;}
.x6b{left:427.073333pt;}
.x19{left:428.281333pt;}
.x1a{left:433.840000pt;}
.x37{left:435.896000pt;}
.x16{left:437.224000pt;}
.x17{left:440.734667pt;}
.x18{left:446.294667pt;}
.x54{left:448.608000pt;}
.xa{left:451.577333pt;}
.x38{left:453.409333pt;}
.x1f{left:456.468000pt;}
.x20{left:462.028000pt;}
.x9{left:464.353333pt;}
.x1b{left:469.777333pt;}
.x39{left:471.342667pt;}
.x57{left:487.757333pt;}
.x36{left:489.224000pt;}
.x55{left:494.626667pt;}
.x26{left:495.714667pt;}
.x53{left:497.241333pt;}
.x4d{left:512.957333pt;}
.x64{left:514.488000pt;}
.x51{left:516.873333pt;}
.xb{left:517.886667pt;}
.x56{left:520.264000pt;}
.x45{left:522.062667pt;}
.x4e{left:523.560000pt;}
.x8{left:529.918667pt;}
.xc{left:531.037333pt;}
.x68{left:535.257333pt;}
.x52{left:539.357333pt;}
.x47{left:544.501333pt;}
.x46{left:545.584000pt;}
.x2b{left:552.790667pt;}
.x49{left:555.173333pt;}
.x48{left:557.181333pt;}
.x2c{left:563.909333pt;}
.x1e{left:566.721333pt;}
.x4b{left:568.396000pt;}
.x4a{left:572.188000pt;}
.x27{left:575.822667pt;}
.x4f{left:578.421333pt;}
.x28{left:581.381333pt;}
.x4c{left:585.786667pt;}
.x50{left:588.428000pt;}
.x1c{left:590.182667pt;}
.x1d{left:601.301333pt;}
.x6c{left:606.473333pt;}
.x65{left:619.354667pt;}
.x69{left:630.444000pt;}
.x66{left:640.714667pt;}
.x6a{left:648.484000pt;}
.x6f{left:651.705333pt;}
.x6d{left:671.460000pt;}
.x6e{left:690.629333pt;}
.x70{left:692.120000pt;}
.x29{left:701.521333pt;}
.x71{left:706.837333pt;}
.x2a{left:712.640000pt;}
.x67{left:722.670667pt;}
.x63{left:724.117333pt;}
.x25{left:739.628000pt;}
}




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