
    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_131f66a95ddea57e4e0fd5fb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.861816;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_9a238d8cbbb8d07b96fd0e50.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_b32806d9ff8e54a539cdbe46.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.917480;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_2b08f21feede77a2c8097b4a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.133301;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_c9ea0459d4182ec288b5f017.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_928127c12ca8c5a916eed280.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.895996;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_48eba22e547ff72aaa977e7c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.682617;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_5ba07f460056d2f283c7ff68.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893066;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_d54140269498294854ee1962.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.843262;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_fd0d1fba79155ff5ff06f0f9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.870605;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_92ecf73c60fbf06800124f37.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.927734;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_9dc455f8e1b7d75099a218b7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;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_bb0877c208da502649bafb20.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.958496;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_07b95c7fa6781d42d3febf0e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.992188;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;}
.m12{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,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);}
.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);}
.m1{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.v3{vertical-align:-20.880000px;}
.v2{vertical-align:-5.040000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.766000px;}
.v1{vertical-align:15.114000px;}
.v6{vertical-align:18.000000px;}
.v5{vertical-align:20.886000px;}
.v7{vertical-align:48.240000px;}
.ls29{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.003310px;}
.lsf{letter-spacing:0.008483px;}
.ls1e{letter-spacing:0.019500px;}
.ls46{letter-spacing:0.024824px;}
.ls33{letter-spacing:0.025800px;}
.ls25{letter-spacing:0.030900px;}
.ls44{letter-spacing:0.031800px;}
.ls31{letter-spacing:0.037800px;}
.ls18{letter-spacing:0.063643px;}
.ls9{letter-spacing:0.069000px;}
.ls24{letter-spacing:0.069600px;}
.ls2b{letter-spacing:0.096600px;}
.ls27{letter-spacing:0.156300px;}
.ls14{letter-spacing:0.157138px;}
.ls11{letter-spacing:0.209837px;}
.ls2c{letter-spacing:0.214200px;}
.ls5{letter-spacing:0.220200px;}
.ls10{letter-spacing:0.300275px;}
.lsa{letter-spacing:0.321857px;}
.ls2{letter-spacing:0.369900px;}
.ls1{letter-spacing:0.389100px;}
.ls36{letter-spacing:0.390000px;}
.ls39{letter-spacing:0.411969px;}
.ls3b{letter-spacing:0.417738px;}
.ls7{letter-spacing:0.451671px;}
.ls22{letter-spacing:0.456900px;}
.ls3e{letter-spacing:0.548400px;}
.ls19{letter-spacing:0.553757px;}
.ls1c{letter-spacing:0.572011px;}
.ls1a{letter-spacing:0.577567px;}
.lse{letter-spacing:0.596793px;}
.ls3c{letter-spacing:0.603208px;}
.ls6{letter-spacing:0.608977px;}
.ls2f{letter-spacing:0.654300px;}
.ls3{letter-spacing:0.694345px;}
.ls38{letter-spacing:0.742471px;}
.ls41{letter-spacing:0.751800px;}
.ls15{letter-spacing:0.785700px;}
.ls17{letter-spacing:0.964800px;}
.ls1b{letter-spacing:1.019567px;}
.ls45{letter-spacing:1.027118px;}
.ls3d{letter-spacing:1.635300px;}
.ls28{letter-spacing:6.933000px;}
.ls1f{letter-spacing:8.302357px;}
.lsb{letter-spacing:8.920414px;}
.ls42{letter-spacing:9.608700px;}
.ls40{letter-spacing:9.614700px;}
.ls12{letter-spacing:10.164600px;}
.ls43{letter-spacing:10.334700px;}
.ls2e{letter-spacing:10.757271px;}
.ls20{letter-spacing:10.997571px;}
.ls30{letter-spacing:11.768700px;}
.ls32{letter-spacing:11.774700px;}
.ls34{letter-spacing:11.780700px;}
.ls21{letter-spacing:11.831100px;}
.ls3a{letter-spacing:12.783969px;}
.ls16{letter-spacing:13.214700px;}
.ls0{letter-spacing:14.004000px;}
.ls8{letter-spacing:14.631900px;}
.lsd{letter-spacing:15.991843px;}
.ls37{letter-spacing:16.986000px;}
.ls47{letter-spacing:20.191800px;}
.ls4{letter-spacing:20.895176px;}
.ls2d{letter-spacing:26.176200px;}
.ls26{letter-spacing:27.806100px;}
.lsc{letter-spacing:28.059300px;}
.ls3f{letter-spacing:30.969300px;}
.ls1d{letter-spacing:50.189767px;}
.ls35{letter-spacing:86.839200px;}
.ls23{letter-spacing:134.574000px;}
.ls2a{letter-spacing:139.523131px;}
.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;}
}
.ws61{word-spacing:-59.700000px;}
.ws30{word-spacing:-46.386900px;}
.ws8{word-spacing:-45.495000px;}
.ws7{word-spacing:-45.359700px;}
.wsc{word-spacing:-41.958000px;}
.ws110{word-spacing:-37.529100px;}
.wsb{word-spacing:-37.326900px;}
.ws109{word-spacing:-35.538000px;}
.ws45{word-spacing:-33.981000px;}
.ws24{word-spacing:-33.611100px;}
.ws67{word-spacing:-33.217800px;}
.ws2{word-spacing:-32.866200px;}
.ws69{word-spacing:-32.300700px;}
.ws33{word-spacing:-31.785600px;}
.ws84{word-spacing:-31.578900px;}
.wsb2{word-spacing:-31.062900px;}
.ws1e{word-spacing:-30.933900px;}
.ws36{word-spacing:-30.607800px;}
.wsc2{word-spacing:-30.354547px;}
.ws49{word-spacing:-30.208200px;}
.wsde{word-spacing:-29.622300px;}
.ws7d{word-spacing:-29.520900px;}
.ws4{word-spacing:-29.076300px;}
.ws7f{word-spacing:-28.896000px;}
.ws19{word-spacing:-28.810200px;}
.wsdc{word-spacing:-28.715100px;}
.ws22{word-spacing:-28.251600px;}
.ws23{word-spacing:-28.234200px;}
.wsc3{word-spacing:-28.171200px;}
.ws47{word-spacing:-27.640200px;}
.wsba{word-spacing:-27.625200px;}
.ws12e{word-spacing:-27.508800px;}
.wse{word-spacing:-27.342000px;}
.ws1c{word-spacing:-27.324000px;}
.ws32{word-spacing:-27.282900px;}
.ws35{word-spacing:-27.246300px;}
.ws25{word-spacing:-27.192900px;}
.ws144{word-spacing:-27.138900px;}
.ws114{word-spacing:-27.109200px;}
.wsf{word-spacing:-26.967300px;}
.ws10{word-spacing:-26.953800px;}
.ws85{word-spacing:-26.747100px;}
.ws8c{word-spacing:-26.744100px;}
.ws99{word-spacing:-26.736600px;}
.wse9{word-spacing:-26.728500px;}
.wsa0{word-spacing:-26.580963px;}
.ws119{word-spacing:-26.418300px;}
.ws115{word-spacing:-26.403300px;}
.ws51{word-spacing:-26.239882px;}
.ws123{word-spacing:-25.825200px;}
.wsa4{word-spacing:-25.655100px;}
.ws6e{word-spacing:-25.450800px;}
.ws13b{word-spacing:-25.103700px;}
.ws0{word-spacing:-24.996000px;}
.wse0{word-spacing:-24.451500px;}
.ws14b{word-spacing:-24.359700px;}
.ws13f{word-spacing:-24.347100px;}
.ws1{word-spacing:-24.333300px;}
.wse1{word-spacing:-23.731500px;}
.ws5{word-spacing:-23.477100px;}
.ws6a{word-spacing:-23.183700px;}
.wsa9{word-spacing:-23.143800px;}
.ws1a{word-spacing:-22.665900px;}
.ws21{word-spacing:-22.625400px;}
.wsb0{word-spacing:-22.608900px;}
.ws137{word-spacing:-22.468800px;}
.wsf6{word-spacing:-22.079700px;}
.ws71{word-spacing:-22.058200px;}
.ws10a{word-spacing:-21.896100px;}
.wscb{word-spacing:-21.891600px;}
.ws80{word-spacing:-21.737700px;}
.ws9{word-spacing:-21.511500px;}
.ws140{word-spacing:-21.352500px;}
.ws41{word-spacing:-21.347100px;}
.ws6{word-spacing:-21.100200px;}
.wsf9{word-spacing:-20.980200px;}
.wscd{word-spacing:-20.930689px;}
.wsa1{word-spacing:-20.824029px;}
.wscc{word-spacing:-20.639571px;}
.wsab{word-spacing:-20.439900px;}
.wsd0{word-spacing:-20.376300px;}
.wse5{word-spacing:-20.260200px;}
.ws105{word-spacing:-20.257500px;}
.ws66{word-spacing:-20.114400px;}
.ws31{word-spacing:-20.076000px;}
.wsf0{word-spacing:-20.067000px;}
.wsfa{word-spacing:-19.899900px;}
.ws68{word-spacing:-19.893600px;}
.ws5c{word-spacing:-19.734000px;}
.ws10c{word-spacing:-19.732800px;}
.ws11e{word-spacing:-19.465800px;}
.ws1f{word-spacing:-19.439700px;}
.ws18{word-spacing:-19.411800px;}
.ws39{word-spacing:-19.407300px;}
.ws132{word-spacing:-19.193700px;}
.ws93{word-spacing:-19.178400px;}
.ws5b{word-spacing:-19.057444px;}
.ws10d{word-spacing:-19.022400px;}
.ws70{word-spacing:-19.019700px;}
.wsa3{word-spacing:-19.018200px;}
.ws9e{word-spacing:-19.012200px;}
.wsb1{word-spacing:-18.930300px;}
.wsd6{word-spacing:-18.922200px;}
.ws37{word-spacing:-18.824400px;}
.ws6c{word-spacing:-18.820200px;}
.ws50{word-spacing:-18.817500px;}
.ws65{word-spacing:-18.813000px;}
.ws102{word-spacing:-18.802200px;}
.wsef{word-spacing:-18.797700px;}
.ws72{word-spacing:-18.794433px;}
.ws10b{word-spacing:-18.786600px;}
.wse8{word-spacing:-18.456300px;}
.ws3e{word-spacing:-18.455400px;}
.ws64{word-spacing:-18.448200px;}
.wsda{word-spacing:-18.446700px;}
.ws5a{word-spacing:-18.299700px;}
.ws8b{word-spacing:-18.295800px;}
.wsb9{word-spacing:-18.291900px;}
.wsd1{word-spacing:-18.290100px;}
.ws83{word-spacing:-18.285900px;}
.wsfc{word-spacing:-18.274800px;}
.wsbd{word-spacing:-18.189041px;}
.wsbe{word-spacing:-18.165512px;}
.ws9f{word-spacing:-17.831057px;}
.wsd9{word-spacing:-17.770800px;}
.wsbc{word-spacing:-17.687612px;}
.ws44{word-spacing:-17.571900px;}
.wsa2{word-spacing:-17.569800px;}
.ws12d{word-spacing:-17.507100px;}
.wsc1{word-spacing:-17.304988px;}
.wsc9{word-spacing:-17.224500px;}
.ws139{word-spacing:-17.165700px;}
.ws1b{word-spacing:-17.112000px;}
.ws104{word-spacing:-17.022600px;}
.ws59{word-spacing:-17.015400px;}
.wse6{word-spacing:-16.953882px;}
.ws143{word-spacing:-16.947900px;}
.ws12f{word-spacing:-16.942500px;}
.ws90{word-spacing:-16.851900px;}
.wsae{word-spacing:-16.850100px;}
.ws2f{word-spacing:-16.848000px;}
.ws113{word-spacing:-16.787100px;}
.ws53{word-spacing:-16.694654px;}
.wsad{word-spacing:-16.638600px;}
.wsa6{word-spacing:-16.611681px;}
.wsd{word-spacing:-16.398000px;}
.ws4d{word-spacing:-16.287612px;}
.ws55{word-spacing:-16.281729px;}
.ws145{word-spacing:-16.233900px;}
.ws134{word-spacing:-16.220700px;}
.ws14{word-spacing:-16.167300px;}
.ws4c{word-spacing:-16.155218px;}
.wsd3{word-spacing:-16.138200px;}
.wsdd{word-spacing:-16.136400px;}
.ws7e{word-spacing:-16.131900px;}
.wsc5{word-spacing:-16.129200px;}
.ws127{word-spacing:-16.044600px;}
.wsd4{word-spacing:-15.943500px;}
.wsc4{word-spacing:-15.937500px;}
.wsfd{word-spacing:-15.933900px;}
.ws13{word-spacing:-15.678000px;}
.ws116{word-spacing:-15.507900px;}
.ws130{word-spacing:-15.505200px;}
.ws11a{word-spacing:-15.502500px;}
.ws13d{word-spacing:-15.497100px;}
.ws34{word-spacing:-15.416400px;}
.wsc0{word-spacing:-15.365512px;}
.wsbf{word-spacing:-15.359629px;}
.ws146{word-spacing:-15.354900px;}
.wsca{word-spacing:-15.330300px;}
.ws28{word-spacing:-15.225000px;}
.ws5d{word-spacing:-15.217200px;}
.ws86{word-spacing:-15.213900px;}
.wsbb{word-spacing:-15.213000px;}
.wsc7{word-spacing:-15.209400px;}
.ws15{word-spacing:-15.115800px;}
.ws73{word-spacing:-15.019282px;}
.ws17{word-spacing:-14.958000px;}
.ws4e{word-spacing:-14.862000px;}
.wsc6{word-spacing:-14.844000px;}
.ws142{word-spacing:-14.778900px;}
.ws13c{word-spacing:-14.776500px;}
.ws16{word-spacing:-14.745600px;}
.ws118{word-spacing:-14.743800px;}
.ws4f{word-spacing:-14.696100px;}
.ws54{word-spacing:-14.653747px;}
.wsac{word-spacing:-14.635500px;}
.wsdf{word-spacing:-14.629500px;}
.ws8d{word-spacing:-14.500200px;}
.wsf2{word-spacing:-14.491200px;}
.ws7a{word-spacing:-14.350800px;}
.ws9c{word-spacing:-14.349000px;}
.ws9a{word-spacing:-14.148000px;}
.ws13a{word-spacing:-14.029800px;}
.wsea{word-spacing:-13.984200px;}
.ws9b{word-spacing:-13.970100px;}
.ws9d{word-spacing:-13.778400px;}
.ws48{word-spacing:-13.757929px;}
.ws77{word-spacing:-13.632300px;}
.ws108{word-spacing:-13.613700px;}
.ws122{word-spacing:-13.595100px;}
.ws4a{word-spacing:-13.475847px;}
.ws52{word-spacing:-13.436235px;}
.ws106{word-spacing:-13.421100px;}
.ws14c{word-spacing:-13.347900px;}
.ws13e{word-spacing:-13.344300px;}
.ws79{word-spacing:-13.258800px;}
.wsed{word-spacing:-13.258200px;}
.wsa5{word-spacing:-13.251600px;}
.wsb6{word-spacing:-13.250400px;}
.ws98{word-spacing:-13.249500px;}
.ws43{word-spacing:-13.063500px;}
.ws125{word-spacing:-12.840600px;}
.ws6d{word-spacing:-12.538200px;}
.ws6f{word-spacing:-12.536100px;}
.wsb8{word-spacing:-12.531900px;}
.ws136{word-spacing:-12.483900px;}
.ws107{word-spacing:-12.337500px;}
.ws11c{word-spacing:-11.913900px;}
.ws78{word-spacing:-11.704800px;}
.wsd5{word-spacing:-11.617500px;}
.ws20{word-spacing:-11.533800px;}
.wsd7{word-spacing:-11.264400px;}
.ws92{word-spacing:-11.256300px;}
.ws3f{word-spacing:-11.253600px;}
.ws138{word-spacing:-11.193900px;}
.ws3c{word-spacing:-11.085900px;}
.wsa7{word-spacing:-10.878600px;}
.wsaa{word-spacing:-10.751700px;}
.ws4b{word-spacing:-10.646435px;}
.ws8a{word-spacing:-10.536300px;}
.ws141{word-spacing:-10.458000px;}
.ws6b{word-spacing:-10.378200px;}
.wsaf{word-spacing:-10.177500px;}
.ws81{word-spacing:-9.650400px;}
.ws11d{word-spacing:-9.576600px;}
.wsec{word-spacing:-9.569100px;}
.ws2e{word-spacing:-9.460200px;}
.ws97{word-spacing:-9.458400px;}
.ws91{word-spacing:-9.309000px;}
.wsf5{word-spacing:-9.104400px;}
.ws11f{word-spacing:-9.033900px;}
.ws10e{word-spacing:-9.031200px;}
.wsf7{word-spacing:-8.931900px;}
.ws12{word-spacing:-8.801100px;}
.ws112{word-spacing:-8.300700px;}
.ws11{word-spacing:-8.263200px;}
.ws58{word-spacing:-8.218200px;}
.ws89{word-spacing:-8.213400px;}
.ws82{word-spacing:-8.018400px;}
.ws62{word-spacing:-7.661700px;}
.ws131{word-spacing:-7.587000px;}
.ws133{word-spacing:-7.575000px;}
.ws40{word-spacing:-7.491600px;}
.ws57{word-spacing:-7.485000px;}
.ws8e{word-spacing:-7.297500px;}
.wsf1{word-spacing:-7.153500px;}
.ws5f{word-spacing:-7.132800px;}
.ws120{word-spacing:-6.873000px;}
.ws12c{word-spacing:-6.867900px;}
.wsf3{word-spacing:-6.577500px;}
.ws76{word-spacing:-6.424500px;}
.ws101{word-spacing:-6.221100px;}
.ws100{word-spacing:-6.218400px;}
.ws103{word-spacing:-6.145800px;}
.ws74{word-spacing:-6.051000px;}
.ws14a{word-spacing:-5.980800px;}
.ws11b{word-spacing:-5.946000px;}
.wse2{word-spacing:-5.852100px;}
.ws111{word-spacing:-5.420100px;}
.ws10f{word-spacing:-5.389800px;}
.ws38{word-spacing:-5.327700px;}
.ws3a{word-spacing:-4.980600px;}
.ws135{word-spacing:-4.707900px;}
.wsd8{word-spacing:-4.618200px;}
.ws129{word-spacing:-4.571100px;}
.ws42{word-spacing:-4.413900px;}
.wsff{word-spacing:-4.060800px;}
.ws56{word-spacing:-3.988929px;}
.ws128{word-spacing:-3.987900px;}
.ws121{word-spacing:-3.821100px;}
.ws75{word-spacing:-3.711300px;}
.ws26{word-spacing:-3.544500px;}
.ws12b{word-spacing:-3.268500px;}
.ws27{word-spacing:-3.178200px;}
.wseb{word-spacing:-2.816400px;}
.ws29{word-spacing:-2.610000px;}
.ws117{word-spacing:-2.543400px;}
.ws149{word-spacing:-2.542500px;}
.ws12a{word-spacing:-2.509800px;}
.wsf8{word-spacing:-2.452500px;}
.ws148{word-spacing:-2.412000px;}
.ws5e{word-spacing:-2.237100px;}
.ws87{word-spacing:-2.114400px;}
.wsfe{word-spacing:-1.904400px;}
.ws124{word-spacing:-1.828500px;}
.ws126{word-spacing:-1.827900px;}
.wse7{word-spacing:-1.718100px;}
.wsf4{word-spacing:-1.649400px;}
.ws2a{word-spacing:-1.538100px;}
.wscf{word-spacing:-1.390800px;}
.ws3d{word-spacing:-1.013700px;}
.wsce{word-spacing:-1.005000px;}
.ws8f{word-spacing:-0.815700px;}
.wse4{word-spacing:-0.550024px;}
.wsfb{word-spacing:-0.453600px;}
.wsa{word-spacing:-0.360000px;}
.ws7b{word-spacing:0.000000px;}
.wse3{word-spacing:0.080076px;}
.wsb5{word-spacing:0.956400px;}
.wsa8{word-spacing:1.151700px;}
.ws3b{word-spacing:1.158000px;}
.wsb4{word-spacing:1.292100px;}
.wsee{word-spacing:1.496100px;}
.ws88{word-spacing:1.496400px;}
.ws46{word-spacing:3.114000px;}
.wsb3{word-spacing:3.303900px;}
.wsd2{word-spacing:4.027200px;}
.ws2d{word-spacing:4.235100px;}
.ws96{word-spacing:4.275900px;}
.ws2b{word-spacing:4.573800px;}
.ws95{word-spacing:4.909800px;}
.ws63{word-spacing:5.115967px;}
.ws147{word-spacing:5.125200px;}
.ws1d{word-spacing:5.229300px;}
.ws94{word-spacing:6.174600px;}
.ws60{word-spacing:6.597514px;}
.ws2c{word-spacing:7.264500px;}
.wsdb{word-spacing:7.777200px;}
.wsb7{word-spacing:8.772900px;}
.ws7c{word-spacing:88.558818px;}
.wsc8{word-spacing:182.192143px;}
.ws3{word-spacing:707.248200px;}
._4{margin-left:-2.307300px;}
._1{margin-left:-1.068000px;}
._2{width:1.271700px;}
._17{width:2.480706px;}
._18{width:3.608271px;}
._1a{width:10.728900px;}
._c{width:12.073200px;}
._1b{width:13.150800px;}
._a{width:14.230800px;}
._6{width:15.711600px;}
._7{width:17.109000px;}
._12{width:18.343200px;}
._0{width:19.711500px;}
._b{width:20.727900px;}
._16{width:21.881765px;}
._9{width:23.925600px;}
._11{width:25.560900px;}
._5{width:26.604000px;}
._8{width:28.317600px;}
._13{width:29.508300px;}
._d{width:31.415100px;}
._e{width:33.432900px;}
._15{width:34.469400px;}
._14{width:36.310800px;}
._10{width:39.093900px;}
._19{width:53.280600px;}
._f{width:62.603700px;}
._3{width:819.336900px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs7{font-size:34.500000px;}
.fs9{font-size:39.000000px;}
.fs4{font-size:41.700000px;}
.fs8{font-size:48.300000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:59.700000px;}
.fs1{font-size:62.700000px;}
.fs2{font-size:66.300000px;}
.fs0{font-size:84.300000px;}
.fs5{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.yf{bottom:2.175000px;}
.y7e{bottom:2.265000px;}
.y8d{bottom:3.045000px;}
.yb{bottom:3.061500px;}
.yaf{bottom:3.315000px;}
.y94{bottom:3.405000px;}
.y99{bottom:3.540000px;}
.y61{bottom:4.365000px;}
.yc4{bottom:4.575000px;}
.yc3{bottom:4.755000px;}
.y5b{bottom:4.950000px;}
.y9a{bottom:5.340000px;}
.y39{bottom:5.670000px;}
.y5a{bottom:6.390000px;}
.y8e{bottom:8.086500px;}
.y5c{bottom:11.611500px;}
.y64{bottom:13.845000px;}
.y9{bottom:13.890000px;}
.yd{bottom:13.905000px;}
.y7{bottom:13.950000px;}
.y5{bottom:13.965000px;}
.y81{bottom:14.040000px;}
.y8c{bottom:14.386500px;}
.y97{bottom:14.700000px;}
.y98{bottom:16.140000px;}
.y93{bottom:16.365000px;}
.y84{bottom:18.720000px;}
.y5d{bottom:19.170000px;}
.y63{bottom:21.046500px;}
.y85{bottom:21.600000px;}
.y96{bottom:22.261500px;}
.yc2{bottom:22.575000px;}
.y5f{bottom:22.665000px;}
.y62{bottom:23.386500px;}
.y38{bottom:23.490000px;}
.y3{bottom:25.305000px;}
.yae{bottom:25.815000px;}
.y65{bottom:26.625000px;}
.y59{bottom:32.670000px;}
.y92{bottom:34.365000px;}
.y8b{bottom:35.625000px;}
.yc1{bottom:40.575000px;}
.y37{bottom:41.490000px;}
.yad{bottom:43.636500px;}
.y66{bottom:48.000000px;}
.y58{bottom:50.490000px;}
.y91{bottom:52.186500px;}
.y8a{bottom:53.445000px;}
.yc0{bottom:58.395000px;}
.ybf{bottom:58.575000px;}
.y36{bottom:59.490000px;}
.y6e{bottom:61.005000px;}
.yac{bottom:61.636500px;}
.y7c{bottom:62.446500px;}
.ye0{bottom:62.625000px;}
.yf7{bottom:63.346500px;}
.y11a{bottom:67.125000px;}
.y90{bottom:70.186500px;}
.y89{bottom:71.265000px;}
.y35{bottom:77.311500px;}
.y6d{bottom:78.825000px;}
.yab{bottom:79.455000px;}
.y7b{bottom:79.725000px;}
.ybe{bottom:79.996500px;}
.ydf{bottom:80.265000px;}
.y119{bottom:80.445000px;}
.yf6{bottom:81.165000px;}
.y56{bottom:84.690000px;}
.y8f{bottom:88.005000px;}
.y88{bottom:89.265000px;}
.y57{bottom:89.730000px;}
.y118{bottom:93.765000px;}
.y34{bottom:96.571500px;}
.y6c{bottom:96.825000px;}
.ydc{bottom:98.445000px;}
.ybd{bottom:98.536500px;}
.ydd{bottom:98.625000px;}
.y7a{bottom:99.165000px;}
.yde{bottom:103.665000px;}
.yaa{bottom:105.555000px;}
.ya9{bottom:106.996500px;}
.y117{bottom:107.805000px;}
.y87{bottom:111.765000px;}
.y33{bottom:114.390000px;}
.y6b{bottom:114.646500px;}
.ybb{bottom:116.175000px;}
.ydb{bottom:116.625000px;}
.yf5{bottom:116.986500px;}
.y79{bottom:117.165000px;}
.y55{bottom:117.450000px;}
.y116{bottom:121.125000px;}
.ybc{bottom:121.215000px;}
.y32{bottom:132.030000px;}
.y6a{bottom:132.646500px;}
.yb9{bottom:133.996500px;}
.ya8{bottom:134.175000px;}
.y115{bottom:134.445000px;}
.yda{bottom:134.625000px;}
.yf4{bottom:134.986500px;}
.y54{bottom:135.450000px;}
.yba{bottom:139.215000px;}
.y114{bottom:147.765000px;}
.y78{bottom:147.945000px;}
.y75{bottom:148.125000px;}
.y76{bottom:149.386500px;}
.y74{bottom:149.565000px;}
.y31{bottom:149.850000px;}
.y69{bottom:150.465000px;}
.yc{bottom:150.900000px;}
.ya6{bottom:151.996500px;}
.ya7{bottom:152.175000px;}
.y77{bottom:153.165000px;}
.y52{bottom:153.990000px;}
.yd9{bottom:154.786500px;}
.y53{bottom:159.211500px;}
.y113{bottom:161.625000px;}
.y30{bottom:167.671500px;}
.ya5{bottom:170.175000px;}
.yf3{bottom:170.986500px;}
.y51{bottom:172.171500px;}
.yd8{bottom:172.965000px;}
.y68{bottom:173.865000px;}
.y112{bottom:174.945000px;}
.y73{bottom:175.846500px;}
.y71{bottom:178.186500px;}
.y6f{bottom:179.625000px;}
.y70{bottom:183.405000px;}
.y2f{bottom:186.211500px;}
.ya4{bottom:187.996500px;}
.yb8{bottom:188.175000px;}
.y111{bottom:188.625000px;}
.yf2{bottom:188.986500px;}
.y72{bottom:190.965000px;}
.y67{bottom:191.686500px;}
.yd7{bottom:193.665000px;}
.y110{bottom:202.125000px;}
.y50{bottom:204.030000px;}
.y2e{bottom:204.211500px;}
.y4f{bottom:205.290000px;}
.y4e{bottom:205.471500px;}
.ya3{bottom:205.996500px;}
.yf1{bottom:206.805000px;}
.yb7{bottom:212.655000px;}
.y10f{bottom:215.805000px;}
.yd6{bottom:216.165000px;}
.y2d{bottom:221.850000px;}
.ya2{bottom:223.815000px;}
.yf0{bottom:224.625000px;}
.y10e{bottom:229.486500px;}
.y4d{bottom:238.230000px;}
.yd5{bottom:238.665000px;}
.y2c{bottom:239.670000px;}
.y10d{bottom:242.625000px;}
.yb6{bottom:243.075000px;}
.ya1{bottom:246.315000px;}
.yef{bottom:249.286500px;}
.y5e{bottom:254.100000px;}
.y60{bottom:255.300000px;}
.y10c{bottom:256.125000px;}
.y4b{bottom:256.230000px;}
.y4c{bottom:256.411500px;}
.y7d{bottom:259.200000px;}
.yb5{bottom:260.715000px;}
.ye{bottom:261.450000px;}
.yd4{bottom:266.025000px;}
.y2b{bottom:269.190000px;}
.y10b{bottom:269.986500px;}
.ya0{bottom:273.675000px;}
.y4a{bottom:275.311500px;}
.yb4{bottom:279.075000px;}
.yee{bottom:279.886500px;}
.y10a{bottom:283.305000px;}
.yd3{bottom:283.846500px;}
.y16{bottom:289.275000px;}
.y9f{bottom:291.675000px;}
.y49{bottom:293.311500px;}
.y109{bottom:296.625000px;}
.yb3{bottom:296.895000px;}
.yed{bottom:297.705000px;}
.yd2{bottom:301.665000px;}
.y12b{bottom:304.725000px;}
.y2a{bottom:306.811500px;}
.y9e{bottom:309.495000px;}
.y108{bottom:310.665000px;}
.y48{bottom:312.570000px;}
.yb2{bottom:314.715000px;}
.yec{bottom:315.525000px;}
.y12a{bottom:318.225000px;}
.yd1{bottom:319.665000px;}
.y29{bottom:321.750000px;}
.y107{bottom:323.986500px;}
.y9d{bottom:327.315000px;}
.y47{bottom:329.850000px;}
.y129{bottom:331.725000px;}
.yb1{bottom:332.715000px;}
.yeb{bottom:333.525000px;}
.y28{bottom:336.511500px;}
.y106{bottom:337.305000px;}
.yd0{bottom:337.486500px;}
.y128{bottom:345.046500px;}
.y9c{bottom:345.315000px;}
.y45{bottom:347.850000px;}
.y27{bottom:350.190000px;}
.yb0{bottom:350.536500px;}
.y105{bottom:351.165000px;}
.yea{bottom:351.346500px;}
.y46{bottom:353.070000px;}
.ycf{bottom:355.486500px;}
.y127{bottom:358.365000px;}
.y26{bottom:364.050000px;}
.y104{bottom:364.486500px;}
.y44{bottom:366.211500px;}
.ya{bottom:367.125000px;}
.ye9{bottom:369.346500px;}
.y126{bottom:371.865000px;}
.yce{bottom:373.305000px;}
.y103{bottom:377.805000px;}
.y25{bottom:380.790000px;}
.y125{bottom:385.186500px;}
.ye8{bottom:387.345000px;}
.ycd{bottom:391.125000px;}
.y43{bottom:392.670000px;}
.y24{bottom:396.270000px;}
.y124{bottom:398.686500px;}
.y102{bottom:403.725000px;}
.ye7{bottom:405.345000px;}
.ycc{bottom:408.946500px;}
.y23{bottom:411.570000px;}
.y123{bottom:412.005000px;}
.y42{bottom:422.011500px;}
.ye6{bottom:423.165000px;}
.y122{bottom:425.325000px;}
.ycb{bottom:426.405000px;}
.y22{bottom:426.511500px;}
.y8{bottom:429.375000px;}
.y101{bottom:437.025000px;}
.y121{bottom:438.825000px;}
.ye5{bottom:441.165000px;}
.y21{bottom:441.450000px;}
.yca{bottom:444.765000px;}
.y120{bottom:452.146500px;}
.y100{bottom:454.845000px;}
.y20{bottom:456.211500px;}
.ye4{bottom:458.986500px;}
.y41{bottom:459.450000px;}
.y4{bottom:460.800000px;}
.y11f{bottom:465.465000px;}
.y1f{bottom:471.150000px;}
.yc9{bottom:472.305000px;}
.ye3{bottom:476.805000px;}
.y40{bottom:477.450000px;}
.y11e{bottom:478.965000px;}
.yff{bottom:481.305000px;}
.y1e{bottom:486.090000px;}
.y11d{bottom:492.465000px;}
.ye2{bottom:495.165000px;}
.y3f{bottom:495.270000px;}
.yc8{bottom:499.665000px;}
.y1d{bottom:500.850000px;}
.y11c{bottom:505.786500px;}
.ye1{bottom:512.986500px;}
.y3e{bottom:513.090000px;}
.yfe{bottom:514.605000px;}
.y1c{bottom:515.790000px;}
.yc7{bottom:517.486500px;}
.y11b{bottom:519.286500px;}
.y82{bottom:523.800000px;}
.y1b{bottom:530.550000px;}
.y3d{bottom:531.090000px;}
.yfd{bottom:532.425000px;}
.y1a{bottom:545.490000px;}
.y3c{bottom:548.911500px;}
.y19{bottom:560.430000px;}
.y3b{bottom:572.130000px;}
.y18{bottom:575.190000px;}
.yc6{bottom:582.225000px;}
.yc5{bottom:587.445000px;}
.y3a{bottom:589.950000px;}
.y17{bottom:590.130000px;}
.y9b{bottom:595.650000px;}
.y6{bottom:623.175000px;}
.yfc{bottom:631.725000px;}
.yfb{bottom:650.086500px;}
.yfa{bottom:667.905000px;}
.yf9{bottom:685.365000px;}
.yf8{bottom:702.825000px;}
.y7f{bottom:751.575000px;}
.y80{bottom:769.425000px;}
.y15{bottom:927.105000px;}
.y14{bottom:947.265000px;}
.y95{bottom:959.025000px;}
.y13{bottom:968.686500px;}
.y83{bottom:972.825000px;}
.y86{bottom:984.000000px;}
.y12{bottom:987.045000px;}
.y11{bottom:1034.025000px;}
.y10{bottom:1075.786500px;}
.y2{bottom:1120.786500px;}
.y1{bottom:1146.345000px;}
.h7{height:10.500000px;}
.h5{height:12.675000px;}
.h1d{height:18.075000px;}
.h3{height:25.575000px;}
.h2b{height:27.021973px;}
.h26{height:27.375000px;}
.h15{height:27.993164px;}
.h6{height:28.974170px;}
.h8{height:29.931152px;}
.h24{height:32.175000px;}
.h2f{height:33.560010px;}
.h19{height:35.915039px;}
.hd{height:36.597656px;}
.h1c{height:37.575000px;}
.h2c{height:38.401465px;}
.h16{height:40.460742px;}
.h12{height:41.364404px;}
.h10{height:41.451855px;}
.hf{height:41.481006px;}
.he{height:41.578969px;}
.h11{height:42.851074px;}
.h28{height:43.565074px;}
.hb{height:44.189209px;}
.h13{height:45.124805px;}
.ha{height:46.066846px;}
.h2{height:46.325830px;}
.h14{height:46.669775px;}
.h1e{height:46.757227px;}
.h1a{height:47.124404px;}
.h17{height:47.130404px;}
.h29{height:47.181973px;}
.h2a{height:47.895973px;}
.h1b{height:48.611074px;}
.h23{height:48.873164px;}
.h18{height:48.879164px;}
.h4{height:54.977637px;}
.h1f{height:56.401465px;}
.h1{height:57.626953px;}
.h22{height:57.965074px;}
.h20{height:91.091074px;}
.h9{height:100.054688px;}
.h25{height:132.300000px;}
.h21{height:208.500000px;}
.h27{height:365.775000px;}
.h2d{height:532.725000px;}
.h2e{height:555.000000px;}
.hc{height:612.600000px;}
.h0{height:1188.000000px;}
.w4{width:4.275000px;}
.w5{width:6.375000px;}
.w2{width:9.975000px;}
.w6{width:10.650000px;}
.w1{width:11.625000px;}
.wd{width:14.925000px;}
.w3{width:17.175000px;}
.wf{width:19.950000px;}
.w11{width:51.525000px;}
.wa{width:52.725000px;}
.we{width:79.125000px;}
.wb{width:107.550000px;}
.w10{width:260.325000px;}
.wc{width:334.125000px;}
.w7{width:452.775000px;}
.w8{width:467.625000px;}
.w9{width:480.975000px;}
.w12{width:610.875000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6e{left:7.035000px;}
.x4a{left:9.405000px;}
.x69{left:13.200000px;}
.x18{left:17.625000px;}
.x31{left:19.063500px;}
.x88{left:23.563500px;}
.x17{left:32.563500px;}
.x6d{left:39.613500px;}
.x58{left:44.625000px;}
.x32{left:47.145000px;}
.x26{left:50.025000px;}
.x3d{left:52.363500px;}
.x3{left:54.000000px;}
.x48{left:60.810000px;}
.x59{left:65.505000px;}
.x13{left:73.438500px;}
.x4b{left:77.445000px;}
.x86{left:79.380000px;}
.x77{left:81.345000px;}
.x1{left:83.160000px;}
.x12{left:88.380000px;}
.x33{left:91.063500px;}
.x4c{left:95.085000px;}
.x34{left:97.185000px;}
.x87{left:100.620000px;}
.x83{left:103.320000px;}
.x29{left:105.825000px;}
.xc{left:107.100000px;}
.x35{left:108.345000px;}
.x51{left:109.620000px;}
.x19{left:117.163500px;}
.x4{left:118.950000px;}
.xd{left:121.680000px;}
.x4d{left:127.125000px;}
.x3e{left:131.205000px;}
.x36{left:135.525000px;}
.x52{left:137.685000px;}
.x1a{left:138.945000px;}
.x4e{left:149.445000px;}
.x2a{left:151.725000px;}
.x37{left:153.885000px;}
.x5a{left:156.225000px;}
.x53{left:158.745000px;}
.x70{left:160.875000px;}
.x5b{left:166.125000px;}
.x4f{left:167.985000px;}
.x3f{left:171.525000px;}
.x50{left:176.085000px;}
.x5c{left:177.463500px;}
.x1b{left:178.725000px;}
.x82{left:181.260000px;}
.x7d{left:182.880000px;}
.x54{left:184.125000px;}
.x73{left:185.220000px;}
.x2b{left:187.185000px;}
.x74{left:190.980000px;}
.x1c{left:193.305000px;}
.x2c{left:197.625000px;}
.x38{left:200.685000px;}
.x14{left:203.400000px;}
.x40{left:205.185000px;}
.x1d{left:207.525000px;}
.x2d{left:209.325000px;}
.x41{left:212.563500px;}
.x67{left:214.650000px;}
.x6b{left:216.000000px;}
.x39{left:217.785000px;}
.x15{left:219.420000px;}
.x55{left:220.845000px;}
.x56{left:223.905000px;}
.x1e{left:228.045000px;}
.x7f{left:229.320000px;}
.x2e{left:230.745000px;}
.x57{left:232.725000px;}
.x7a{left:236.503500px;}
.x42{left:243.525000px;}
.x78{left:244.785000px;}
.x6c{left:248.220000px;}
.x68{left:250.500000px;}
.x2f{left:253.785000px;}
.x3a{left:255.585000px;}
.x80{left:257.038500px;}
.x43{left:258.103500px;}
.x5d{left:260.985000px;}
.x30{left:268.185000px;}
.x44{left:269.445000px;}
.x6a{left:270.900000px;}
.x3b{left:276.645000px;}
.x76{left:278.460000px;}
.x1f{left:286.003500px;}
.x27{left:287.263500px;}
.x45{left:289.245000px;}
.x5e{left:291.763500px;}
.x81{left:294.480000px;}
.x46{left:297.705000px;}
.x3c{left:299.145000px;}
.x7b{left:303.285000px;}
.x6f{left:307.125000px;}
.x7c{left:308.145000px;}
.x5f{left:310.485000px;}
.x28{left:311.745000px;}
.x20{left:313.545000px;}
.x60{left:320.025000px;}
.x21{left:324.885000px;}
.x61{left:327.225000px;}
.x2{left:331.020000px;}
.xe{left:332.460000px;}
.x62{left:335.325000px;}
.x22{left:340.545000px;}
.x63{left:345.225000px;}
.x23{left:353.863500px;}
.x64{left:357.105000px;}
.x65{left:359.445000px;}
.x75{left:363.600000px;}
.x11{left:368.100000px;}
.x24{left:369.163500px;}
.x84{left:375.660000px;}
.x10{left:377.100000px;}
.x25{left:385.185000px;}
.x79{left:386.445000px;}
.x85{left:389.338500px;}
.xf{left:411.660000px;}
.x71{left:429.120000px;}
.x72{left:438.300000px;}
.x16{left:450.375000px;}
.x7e{left:468.000000px;}
.x47{left:478.650000px;}
.x6{left:483.375000px;}
.x8{left:534.675000px;}
.x49{left:583.875000px;}
.x7{left:645.675000px;}
.x9{left:653.775000px;}
.x66{left:675.525000px;}
.xa{left:703.500000px;}
.x5{left:746.850000px;}
.xb{left:768.975000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v2{vertical-align:-4.480000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.125333pt;}
.v1{vertical-align:13.434667pt;}
.v6{vertical-align:16.000000pt;}
.v5{vertical-align:18.565333pt;}
.v7{vertical-align:42.880000pt;}
.ls29{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.002943pt;}
.lsf{letter-spacing:0.007540pt;}
.ls1e{letter-spacing:0.017333pt;}
.ls46{letter-spacing:0.022065pt;}
.ls33{letter-spacing:0.022933pt;}
.ls25{letter-spacing:0.027467pt;}
.ls44{letter-spacing:0.028267pt;}
.ls31{letter-spacing:0.033600pt;}
.ls18{letter-spacing:0.056571pt;}
.ls9{letter-spacing:0.061333pt;}
.ls24{letter-spacing:0.061867pt;}
.ls2b{letter-spacing:0.085867pt;}
.ls27{letter-spacing:0.138933pt;}
.ls14{letter-spacing:0.139678pt;}
.ls11{letter-spacing:0.186522pt;}
.ls2c{letter-spacing:0.190400pt;}
.ls5{letter-spacing:0.195733pt;}
.ls10{letter-spacing:0.266911pt;}
.lsa{letter-spacing:0.286095pt;}
.ls2{letter-spacing:0.328800pt;}
.ls1{letter-spacing:0.345867pt;}
.ls36{letter-spacing:0.346667pt;}
.ls39{letter-spacing:0.366195pt;}
.ls3b{letter-spacing:0.371323pt;}
.ls7{letter-spacing:0.401486pt;}
.ls22{letter-spacing:0.406133pt;}
.ls3e{letter-spacing:0.487467pt;}
.ls19{letter-spacing:0.492229pt;}
.ls1c{letter-spacing:0.508454pt;}
.ls1a{letter-spacing:0.513393pt;}
.lse{letter-spacing:0.530483pt;}
.ls3c{letter-spacing:0.536185pt;}
.ls6{letter-spacing:0.541313pt;}
.ls2f{letter-spacing:0.581600pt;}
.ls3{letter-spacing:0.617196pt;}
.ls38{letter-spacing:0.659974pt;}
.ls41{letter-spacing:0.668267pt;}
.ls15{letter-spacing:0.698400pt;}
.ls17{letter-spacing:0.857600pt;}
.ls1b{letter-spacing:0.906281pt;}
.ls45{letter-spacing:0.912993pt;}
.ls3d{letter-spacing:1.453600pt;}
.ls28{letter-spacing:6.162667pt;}
.ls1f{letter-spacing:7.379873pt;}
.lsb{letter-spacing:7.929257pt;}
.ls42{letter-spacing:8.541067pt;}
.ls40{letter-spacing:8.546400pt;}
.ls12{letter-spacing:9.035200pt;}
.ls43{letter-spacing:9.186400pt;}
.ls2e{letter-spacing:9.562019pt;}
.ls20{letter-spacing:9.775619pt;}
.ls30{letter-spacing:10.461067pt;}
.ls32{letter-spacing:10.466400pt;}
.ls34{letter-spacing:10.471733pt;}
.ls21{letter-spacing:10.516533pt;}
.ls3a{letter-spacing:11.363528pt;}
.ls16{letter-spacing:11.746400pt;}
.ls0{letter-spacing:12.448000pt;}
.ls8{letter-spacing:13.006133pt;}
.lsd{letter-spacing:14.214971pt;}
.ls37{letter-spacing:15.098667pt;}
.ls47{letter-spacing:17.948267pt;}
.ls4{letter-spacing:18.573490pt;}
.ls2d{letter-spacing:23.267733pt;}
.ls26{letter-spacing:24.716533pt;}
.lsc{letter-spacing:24.941600pt;}
.ls3f{letter-spacing:27.528267pt;}
.ls1d{letter-spacing:44.613126pt;}
.ls35{letter-spacing:77.190400pt;}
.ls23{letter-spacing:119.621333pt;}
.ls2a{letter-spacing:124.020561pt;}
.ws61{word-spacing:-53.066667pt;}
.ws30{word-spacing:-41.232800pt;}
.ws8{word-spacing:-40.440000pt;}
.ws7{word-spacing:-40.319733pt;}
.wsc{word-spacing:-37.296000pt;}
.ws110{word-spacing:-33.359200pt;}
.wsb{word-spacing:-33.179467pt;}
.ws109{word-spacing:-31.589333pt;}
.ws45{word-spacing:-30.205333pt;}
.ws24{word-spacing:-29.876533pt;}
.ws67{word-spacing:-29.526933pt;}
.ws2{word-spacing:-29.214400pt;}
.ws69{word-spacing:-28.711733pt;}
.ws33{word-spacing:-28.253867pt;}
.ws84{word-spacing:-28.070133pt;}
.wsb2{word-spacing:-27.611467pt;}
.ws1e{word-spacing:-27.496800pt;}
.ws36{word-spacing:-27.206933pt;}
.wsc2{word-spacing:-26.981820pt;}
.ws49{word-spacing:-26.851733pt;}
.wsde{word-spacing:-26.330933pt;}
.ws7d{word-spacing:-26.240800pt;}
.ws4{word-spacing:-25.845600pt;}
.ws7f{word-spacing:-25.685333pt;}
.ws19{word-spacing:-25.609067pt;}
.wsdc{word-spacing:-25.524533pt;}
.ws22{word-spacing:-25.112533pt;}
.ws23{word-spacing:-25.097067pt;}
.wsc3{word-spacing:-25.041067pt;}
.ws47{word-spacing:-24.569067pt;}
.wsba{word-spacing:-24.555733pt;}
.ws12e{word-spacing:-24.452267pt;}
.wse{word-spacing:-24.304000pt;}
.ws1c{word-spacing:-24.288000pt;}
.ws32{word-spacing:-24.251467pt;}
.ws35{word-spacing:-24.218933pt;}
.ws25{word-spacing:-24.171467pt;}
.ws144{word-spacing:-24.123467pt;}
.ws114{word-spacing:-24.097067pt;}
.wsf{word-spacing:-23.970933pt;}
.ws10{word-spacing:-23.958933pt;}
.ws85{word-spacing:-23.775200pt;}
.ws8c{word-spacing:-23.772533pt;}
.ws99{word-spacing:-23.765867pt;}
.wse9{word-spacing:-23.758667pt;}
.wsa0{word-spacing:-23.627523pt;}
.ws119{word-spacing:-23.482933pt;}
.ws115{word-spacing:-23.469600pt;}
.ws51{word-spacing:-23.324340pt;}
.ws123{word-spacing:-22.955733pt;}
.wsa4{word-spacing:-22.804533pt;}
.ws6e{word-spacing:-22.622933pt;}
.ws13b{word-spacing:-22.314400pt;}
.ws0{word-spacing:-22.218667pt;}
.wse0{word-spacing:-21.734667pt;}
.ws14b{word-spacing:-21.653067pt;}
.ws13f{word-spacing:-21.641867pt;}
.ws1{word-spacing:-21.629600pt;}
.wse1{word-spacing:-21.094667pt;}
.ws5{word-spacing:-20.868533pt;}
.ws6a{word-spacing:-20.607733pt;}
.wsa9{word-spacing:-20.572267pt;}
.ws1a{word-spacing:-20.147467pt;}
.ws21{word-spacing:-20.111467pt;}
.wsb0{word-spacing:-20.096800pt;}
.ws137{word-spacing:-19.972267pt;}
.wsf6{word-spacing:-19.626400pt;}
.ws71{word-spacing:-19.607289pt;}
.ws10a{word-spacing:-19.463200pt;}
.wscb{word-spacing:-19.459200pt;}
.ws80{word-spacing:-19.322400pt;}
.ws9{word-spacing:-19.121333pt;}
.ws140{word-spacing:-18.980000pt;}
.ws41{word-spacing:-18.975200pt;}
.ws6{word-spacing:-18.755733pt;}
.wsf9{word-spacing:-18.649067pt;}
.wscd{word-spacing:-18.605057pt;}
.wsa1{word-spacing:-18.510248pt;}
.wscc{word-spacing:-18.346286pt;}
.wsab{word-spacing:-18.168800pt;}
.wsd0{word-spacing:-18.112267pt;}
.wse5{word-spacing:-18.009067pt;}
.ws105{word-spacing:-18.006667pt;}
.ws66{word-spacing:-17.879467pt;}
.ws31{word-spacing:-17.845333pt;}
.wsf0{word-spacing:-17.837333pt;}
.wsfa{word-spacing:-17.688800pt;}
.ws68{word-spacing:-17.683200pt;}
.ws5c{word-spacing:-17.541333pt;}
.ws10c{word-spacing:-17.540267pt;}
.ws11e{word-spacing:-17.302933pt;}
.ws1f{word-spacing:-17.279733pt;}
.ws18{word-spacing:-17.254933pt;}
.ws39{word-spacing:-17.250933pt;}
.ws132{word-spacing:-17.061067pt;}
.ws93{word-spacing:-17.047467pt;}
.ws5b{word-spacing:-16.939950pt;}
.ws10d{word-spacing:-16.908800pt;}
.ws70{word-spacing:-16.906400pt;}
.wsa3{word-spacing:-16.905067pt;}
.ws9e{word-spacing:-16.899733pt;}
.wsb1{word-spacing:-16.826933pt;}
.wsd6{word-spacing:-16.819733pt;}
.ws37{word-spacing:-16.732800pt;}
.ws6c{word-spacing:-16.729067pt;}
.ws50{word-spacing:-16.726667pt;}
.ws65{word-spacing:-16.722667pt;}
.ws102{word-spacing:-16.713067pt;}
.wsef{word-spacing:-16.709067pt;}
.ws72{word-spacing:-16.706163pt;}
.ws10b{word-spacing:-16.699200pt;}
.wse8{word-spacing:-16.405600pt;}
.ws3e{word-spacing:-16.404800pt;}
.ws64{word-spacing:-16.398400pt;}
.wsda{word-spacing:-16.397067pt;}
.ws5a{word-spacing:-16.266400pt;}
.ws8b{word-spacing:-16.262933pt;}
.wsb9{word-spacing:-16.259467pt;}
.wsd1{word-spacing:-16.257867pt;}
.ws83{word-spacing:-16.254133pt;}
.wsfc{word-spacing:-16.244267pt;}
.wsbd{word-spacing:-16.168037pt;}
.wsbe{word-spacing:-16.147122pt;}
.ws9f{word-spacing:-15.849829pt;}
.wsd9{word-spacing:-15.796267pt;}
.wsbc{word-spacing:-15.722322pt;}
.ws44{word-spacing:-15.619467pt;}
.wsa2{word-spacing:-15.617600pt;}
.ws12d{word-spacing:-15.561867pt;}
.wsc1{word-spacing:-15.382212pt;}
.wsc9{word-spacing:-15.310667pt;}
.ws139{word-spacing:-15.258400pt;}
.ws1b{word-spacing:-15.210667pt;}
.ws104{word-spacing:-15.131200pt;}
.ws59{word-spacing:-15.124800pt;}
.wse6{word-spacing:-15.070118pt;}
.ws143{word-spacing:-15.064800pt;}
.ws12f{word-spacing:-15.060000pt;}
.ws90{word-spacing:-14.979467pt;}
.wsae{word-spacing:-14.977867pt;}
.ws2f{word-spacing:-14.976000pt;}
.ws113{word-spacing:-14.921867pt;}
.ws53{word-spacing:-14.839692pt;}
.wsad{word-spacing:-14.789867pt;}
.wsa6{word-spacing:-14.765939pt;}
.wsd{word-spacing:-14.576000pt;}
.ws4d{word-spacing:-14.477877pt;}
.ws55{word-spacing:-14.472648pt;}
.ws145{word-spacing:-14.430133pt;}
.ws134{word-spacing:-14.418400pt;}
.ws14{word-spacing:-14.370933pt;}
.ws4c{word-spacing:-14.360193pt;}
.wsd3{word-spacing:-14.345067pt;}
.wsdd{word-spacing:-14.343467pt;}
.ws7e{word-spacing:-14.339467pt;}
.wsc5{word-spacing:-14.337067pt;}
.ws127{word-spacing:-14.261867pt;}
.wsd4{word-spacing:-14.172000pt;}
.wsc4{word-spacing:-14.166667pt;}
.wsfd{word-spacing:-14.163467pt;}
.ws13{word-spacing:-13.936000pt;}
.ws116{word-spacing:-13.784800pt;}
.ws130{word-spacing:-13.782400pt;}
.ws11a{word-spacing:-13.780000pt;}
.ws13d{word-spacing:-13.775200pt;}
.ws34{word-spacing:-13.703467pt;}
.wsc0{word-spacing:-13.658233pt;}
.wsbf{word-spacing:-13.653004pt;}
.ws146{word-spacing:-13.648800pt;}
.wsca{word-spacing:-13.626933pt;}
.ws28{word-spacing:-13.533333pt;}
.ws5d{word-spacing:-13.526400pt;}
.ws86{word-spacing:-13.523467pt;}
.wsbb{word-spacing:-13.522667pt;}
.wsc7{word-spacing:-13.519467pt;}
.ws15{word-spacing:-13.436267pt;}
.ws73{word-spacing:-13.350473pt;}
.ws17{word-spacing:-13.296000pt;}
.ws4e{word-spacing:-13.210667pt;}
.wsc6{word-spacing:-13.194667pt;}
.ws142{word-spacing:-13.136800pt;}
.ws13c{word-spacing:-13.134667pt;}
.ws16{word-spacing:-13.107200pt;}
.ws118{word-spacing:-13.105600pt;}
.ws4f{word-spacing:-13.063200pt;}
.ws54{word-spacing:-13.025553pt;}
.wsac{word-spacing:-13.009333pt;}
.wsdf{word-spacing:-13.004000pt;}
.ws8d{word-spacing:-12.889067pt;}
.wsf2{word-spacing:-12.881067pt;}
.ws7a{word-spacing:-12.756267pt;}
.ws9c{word-spacing:-12.754667pt;}
.ws9a{word-spacing:-12.576000pt;}
.ws13a{word-spacing:-12.470933pt;}
.wsea{word-spacing:-12.430400pt;}
.ws9b{word-spacing:-12.417867pt;}
.ws9d{word-spacing:-12.247467pt;}
.ws48{word-spacing:-12.229271pt;}
.ws77{word-spacing:-12.117600pt;}
.ws108{word-spacing:-12.101067pt;}
.ws122{word-spacing:-12.084533pt;}
.ws4a{word-spacing:-11.978531pt;}
.ws52{word-spacing:-11.943320pt;}
.ws106{word-spacing:-11.929867pt;}
.ws14c{word-spacing:-11.864800pt;}
.ws13e{word-spacing:-11.861600pt;}
.ws79{word-spacing:-11.785600pt;}
.wsed{word-spacing:-11.785067pt;}
.wsa5{word-spacing:-11.779200pt;}
.wsb6{word-spacing:-11.778133pt;}
.ws98{word-spacing:-11.777333pt;}
.ws43{word-spacing:-11.612000pt;}
.ws125{word-spacing:-11.413867pt;}
.ws6d{word-spacing:-11.145067pt;}
.ws6f{word-spacing:-11.143200pt;}
.wsb8{word-spacing:-11.139467pt;}
.ws136{word-spacing:-11.096800pt;}
.ws107{word-spacing:-10.966667pt;}
.ws11c{word-spacing:-10.590133pt;}
.ws78{word-spacing:-10.404267pt;}
.wsd5{word-spacing:-10.326667pt;}
.ws20{word-spacing:-10.252267pt;}
.wsd7{word-spacing:-10.012800pt;}
.ws92{word-spacing:-10.005600pt;}
.ws3f{word-spacing:-10.003200pt;}
.ws138{word-spacing:-9.950133pt;}
.ws3c{word-spacing:-9.854133pt;}
.wsa7{word-spacing:-9.669867pt;}
.wsaa{word-spacing:-9.557067pt;}
.ws4b{word-spacing:-9.463498pt;}
.ws8a{word-spacing:-9.365600pt;}
.ws141{word-spacing:-9.296000pt;}
.ws6b{word-spacing:-9.225067pt;}
.wsaf{word-spacing:-9.046667pt;}
.ws81{word-spacing:-8.578133pt;}
.ws11d{word-spacing:-8.512533pt;}
.wsec{word-spacing:-8.505867pt;}
.ws2e{word-spacing:-8.409067pt;}
.ws97{word-spacing:-8.407467pt;}
.ws91{word-spacing:-8.274667pt;}
.wsf5{word-spacing:-8.092800pt;}
.ws11f{word-spacing:-8.030133pt;}
.ws10e{word-spacing:-8.027733pt;}
.wsf7{word-spacing:-7.939467pt;}
.ws12{word-spacing:-7.823200pt;}
.ws112{word-spacing:-7.378400pt;}
.ws11{word-spacing:-7.345067pt;}
.ws58{word-spacing:-7.305067pt;}
.ws89{word-spacing:-7.300800pt;}
.ws82{word-spacing:-7.127467pt;}
.ws62{word-spacing:-6.810400pt;}
.ws131{word-spacing:-6.744000pt;}
.ws133{word-spacing:-6.733333pt;}
.ws40{word-spacing:-6.659200pt;}
.ws57{word-spacing:-6.653333pt;}
.ws8e{word-spacing:-6.486667pt;}
.wsf1{word-spacing:-6.358667pt;}
.ws5f{word-spacing:-6.340267pt;}
.ws120{word-spacing:-6.109333pt;}
.ws12c{word-spacing:-6.104800pt;}
.wsf3{word-spacing:-5.846667pt;}
.ws76{word-spacing:-5.710667pt;}
.ws101{word-spacing:-5.529867pt;}
.ws100{word-spacing:-5.527467pt;}
.ws103{word-spacing:-5.462933pt;}
.ws74{word-spacing:-5.378667pt;}
.ws14a{word-spacing:-5.316267pt;}
.ws11b{word-spacing:-5.285333pt;}
.wse2{word-spacing:-5.201867pt;}
.ws111{word-spacing:-4.817867pt;}
.ws10f{word-spacing:-4.790933pt;}
.ws38{word-spacing:-4.735733pt;}
.ws3a{word-spacing:-4.427200pt;}
.ws135{word-spacing:-4.184800pt;}
.wsd8{word-spacing:-4.105067pt;}
.ws129{word-spacing:-4.063200pt;}
.ws42{word-spacing:-3.923467pt;}
.wsff{word-spacing:-3.609600pt;}
.ws56{word-spacing:-3.545714pt;}
.ws128{word-spacing:-3.544800pt;}
.ws121{word-spacing:-3.396533pt;}
.ws75{word-spacing:-3.298933pt;}
.ws26{word-spacing:-3.150667pt;}
.ws12b{word-spacing:-2.905333pt;}
.ws27{word-spacing:-2.825067pt;}
.wseb{word-spacing:-2.503467pt;}
.ws29{word-spacing:-2.320000pt;}
.ws117{word-spacing:-2.260800pt;}
.ws149{word-spacing:-2.260000pt;}
.ws12a{word-spacing:-2.230933pt;}
.wsf8{word-spacing:-2.180000pt;}
.ws148{word-spacing:-2.144000pt;}
.ws5e{word-spacing:-1.988533pt;}
.ws87{word-spacing:-1.879467pt;}
.wsfe{word-spacing:-1.692800pt;}
.ws124{word-spacing:-1.625333pt;}
.ws126{word-spacing:-1.624800pt;}
.wse7{word-spacing:-1.527200pt;}
.wsf4{word-spacing:-1.466133pt;}
.ws2a{word-spacing:-1.367200pt;}
.wscf{word-spacing:-1.236267pt;}
.ws3d{word-spacing:-0.901067pt;}
.wsce{word-spacing:-0.893333pt;}
.ws8f{word-spacing:-0.725067pt;}
.wse4{word-spacing:-0.488910pt;}
.wsfb{word-spacing:-0.403200pt;}
.wsa{word-spacing:-0.320000pt;}
.ws7b{word-spacing:0.000000pt;}
.wse3{word-spacing:0.071179pt;}
.wsb5{word-spacing:0.850133pt;}
.wsa8{word-spacing:1.023733pt;}
.ws3b{word-spacing:1.029333pt;}
.wsb4{word-spacing:1.148533pt;}
.wsee{word-spacing:1.329867pt;}
.ws88{word-spacing:1.330133pt;}
.ws46{word-spacing:2.768000pt;}
.wsb3{word-spacing:2.936800pt;}
.wsd2{word-spacing:3.579733pt;}
.ws2d{word-spacing:3.764533pt;}
.ws96{word-spacing:3.800800pt;}
.ws2b{word-spacing:4.065600pt;}
.ws95{word-spacing:4.364267pt;}
.ws63{word-spacing:4.547526pt;}
.ws147{word-spacing:4.555733pt;}
.ws1d{word-spacing:4.648267pt;}
.ws94{word-spacing:5.488533pt;}
.ws60{word-spacing:5.864457pt;}
.ws2c{word-spacing:6.457333pt;}
.wsdb{word-spacing:6.913067pt;}
.wsb7{word-spacing:7.798133pt;}
.ws7c{word-spacing:78.718949pt;}
.wsc8{word-spacing:161.948571pt;}
.ws3{word-spacing:628.665067pt;}
._4{margin-left:-2.050933pt;}
._1{margin-left:-0.949333pt;}
._2{width:1.130400pt;}
._17{width:2.205072pt;}
._18{width:3.207352pt;}
._1a{width:9.536800pt;}
._c{width:10.731733pt;}
._1b{width:11.689600pt;}
._a{width:12.649600pt;}
._6{width:13.965867pt;}
._7{width:15.208000pt;}
._12{width:16.305067pt;}
._0{width:17.521333pt;}
._b{width:18.424800pt;}
._16{width:19.450458pt;}
._9{width:21.267200pt;}
._11{width:22.720800pt;}
._5{width:23.648000pt;}
._8{width:25.171200pt;}
._13{width:26.229600pt;}
._d{width:27.924533pt;}
._e{width:29.718133pt;}
._15{width:30.639467pt;}
._14{width:32.276267pt;}
._10{width:34.750133pt;}
._19{width:47.360533pt;}
._f{width:55.647733pt;}
._3{width:728.299467pt;}
.fs7{font-size:30.666667pt;}
.fs9{font-size:34.666667pt;}
.fs4{font-size:37.066667pt;}
.fs8{font-size:42.933333pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:53.066667pt;}
.fs1{font-size:55.733333pt;}
.fs2{font-size:58.933333pt;}
.fs0{font-size:74.933333pt;}
.fs5{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:1.933333pt;}
.y7e{bottom:2.013333pt;}
.y8d{bottom:2.706667pt;}
.yb{bottom:2.721333pt;}
.yaf{bottom:2.946667pt;}
.y94{bottom:3.026667pt;}
.y99{bottom:3.146667pt;}
.y61{bottom:3.880000pt;}
.yc4{bottom:4.066667pt;}
.yc3{bottom:4.226667pt;}
.y5b{bottom:4.400000pt;}
.y9a{bottom:4.746667pt;}
.y39{bottom:5.040000pt;}
.y5a{bottom:5.680000pt;}
.y8e{bottom:7.188000pt;}
.y5c{bottom:10.321333pt;}
.y64{bottom:12.306667pt;}
.y9{bottom:12.346667pt;}
.yd{bottom:12.360000pt;}
.y7{bottom:12.400000pt;}
.y5{bottom:12.413333pt;}
.y81{bottom:12.480000pt;}
.y8c{bottom:12.788000pt;}
.y97{bottom:13.066667pt;}
.y98{bottom:14.346667pt;}
.y93{bottom:14.546667pt;}
.y84{bottom:16.640000pt;}
.y5d{bottom:17.040000pt;}
.y63{bottom:18.708000pt;}
.y85{bottom:19.200000pt;}
.y96{bottom:19.788000pt;}
.yc2{bottom:20.066667pt;}
.y5f{bottom:20.146667pt;}
.y62{bottom:20.788000pt;}
.y38{bottom:20.880000pt;}
.y3{bottom:22.493333pt;}
.yae{bottom:22.946667pt;}
.y65{bottom:23.666667pt;}
.y59{bottom:29.040000pt;}
.y92{bottom:30.546667pt;}
.y8b{bottom:31.666667pt;}
.yc1{bottom:36.066667pt;}
.y37{bottom:36.880000pt;}
.yad{bottom:38.788000pt;}
.y66{bottom:42.666667pt;}
.y58{bottom:44.880000pt;}
.y91{bottom:46.388000pt;}
.y8a{bottom:47.506667pt;}
.yc0{bottom:51.906667pt;}
.ybf{bottom:52.066667pt;}
.y36{bottom:52.880000pt;}
.y6e{bottom:54.226667pt;}
.yac{bottom:54.788000pt;}
.y7c{bottom:55.508000pt;}
.ye0{bottom:55.666667pt;}
.yf7{bottom:56.308000pt;}
.y11a{bottom:59.666667pt;}
.y90{bottom:62.388000pt;}
.y89{bottom:63.346667pt;}
.y35{bottom:68.721333pt;}
.y6d{bottom:70.066667pt;}
.yab{bottom:70.626667pt;}
.y7b{bottom:70.866667pt;}
.ybe{bottom:71.108000pt;}
.ydf{bottom:71.346667pt;}
.y119{bottom:71.506667pt;}
.yf6{bottom:72.146667pt;}
.y56{bottom:75.280000pt;}
.y8f{bottom:78.226667pt;}
.y88{bottom:79.346667pt;}
.y57{bottom:79.760000pt;}
.y118{bottom:83.346667pt;}
.y34{bottom:85.841333pt;}
.y6c{bottom:86.066667pt;}
.ydc{bottom:87.506667pt;}
.ybd{bottom:87.588000pt;}
.ydd{bottom:87.666667pt;}
.y7a{bottom:88.146667pt;}
.yde{bottom:92.146667pt;}
.yaa{bottom:93.826667pt;}
.ya9{bottom:95.108000pt;}
.y117{bottom:95.826667pt;}
.y87{bottom:99.346667pt;}
.y33{bottom:101.680000pt;}
.y6b{bottom:101.908000pt;}
.ybb{bottom:103.266667pt;}
.ydb{bottom:103.666667pt;}
.yf5{bottom:103.988000pt;}
.y79{bottom:104.146667pt;}
.y55{bottom:104.400000pt;}
.y116{bottom:107.666667pt;}
.ybc{bottom:107.746667pt;}
.y32{bottom:117.360000pt;}
.y6a{bottom:117.908000pt;}
.yb9{bottom:119.108000pt;}
.ya8{bottom:119.266667pt;}
.y115{bottom:119.506667pt;}
.yda{bottom:119.666667pt;}
.yf4{bottom:119.988000pt;}
.y54{bottom:120.400000pt;}
.yba{bottom:123.746667pt;}
.y114{bottom:131.346667pt;}
.y78{bottom:131.506667pt;}
.y75{bottom:131.666667pt;}
.y76{bottom:132.788000pt;}
.y74{bottom:132.946667pt;}
.y31{bottom:133.200000pt;}
.y69{bottom:133.746667pt;}
.yc{bottom:134.133333pt;}
.ya6{bottom:135.108000pt;}
.ya7{bottom:135.266667pt;}
.y77{bottom:136.146667pt;}
.y52{bottom:136.880000pt;}
.yd9{bottom:137.588000pt;}
.y53{bottom:141.521333pt;}
.y113{bottom:143.666667pt;}
.y30{bottom:149.041333pt;}
.ya5{bottom:151.266667pt;}
.yf3{bottom:151.988000pt;}
.y51{bottom:153.041333pt;}
.yd8{bottom:153.746667pt;}
.y68{bottom:154.546667pt;}
.y112{bottom:155.506667pt;}
.y73{bottom:156.308000pt;}
.y71{bottom:158.388000pt;}
.y6f{bottom:159.666667pt;}
.y70{bottom:163.026667pt;}
.y2f{bottom:165.521333pt;}
.ya4{bottom:167.108000pt;}
.yb8{bottom:167.266667pt;}
.y111{bottom:167.666667pt;}
.yf2{bottom:167.988000pt;}
.y72{bottom:169.746667pt;}
.y67{bottom:170.388000pt;}
.yd7{bottom:172.146667pt;}
.y110{bottom:179.666667pt;}
.y50{bottom:181.360000pt;}
.y2e{bottom:181.521333pt;}
.y4f{bottom:182.480000pt;}
.y4e{bottom:182.641333pt;}
.ya3{bottom:183.108000pt;}
.yf1{bottom:183.826667pt;}
.yb7{bottom:189.026667pt;}
.y10f{bottom:191.826667pt;}
.yd6{bottom:192.146667pt;}
.y2d{bottom:197.200000pt;}
.ya2{bottom:198.946667pt;}
.yf0{bottom:199.666667pt;}
.y10e{bottom:203.988000pt;}
.y4d{bottom:211.760000pt;}
.yd5{bottom:212.146667pt;}
.y2c{bottom:213.040000pt;}
.y10d{bottom:215.666667pt;}
.yb6{bottom:216.066667pt;}
.ya1{bottom:218.946667pt;}
.yef{bottom:221.588000pt;}
.y5e{bottom:225.866667pt;}
.y60{bottom:226.933333pt;}
.y10c{bottom:227.666667pt;}
.y4b{bottom:227.760000pt;}
.y4c{bottom:227.921333pt;}
.y7d{bottom:230.400000pt;}
.yb5{bottom:231.746667pt;}
.ye{bottom:232.400000pt;}
.yd4{bottom:236.466667pt;}
.y2b{bottom:239.280000pt;}
.y10b{bottom:239.988000pt;}
.ya0{bottom:243.266667pt;}
.y4a{bottom:244.721333pt;}
.yb4{bottom:248.066667pt;}
.yee{bottom:248.788000pt;}
.y10a{bottom:251.826667pt;}
.yd3{bottom:252.308000pt;}
.y16{bottom:257.133333pt;}
.y9f{bottom:259.266667pt;}
.y49{bottom:260.721333pt;}
.y109{bottom:263.666667pt;}
.yb3{bottom:263.906667pt;}
.yed{bottom:264.626667pt;}
.yd2{bottom:268.146667pt;}
.y12b{bottom:270.866667pt;}
.y2a{bottom:272.721333pt;}
.y9e{bottom:275.106667pt;}
.y108{bottom:276.146667pt;}
.y48{bottom:277.840000pt;}
.yb2{bottom:279.746667pt;}
.yec{bottom:280.466667pt;}
.y12a{bottom:282.866667pt;}
.yd1{bottom:284.146667pt;}
.y29{bottom:286.000000pt;}
.y107{bottom:287.988000pt;}
.y9d{bottom:290.946667pt;}
.y47{bottom:293.200000pt;}
.y129{bottom:294.866667pt;}
.yb1{bottom:295.746667pt;}
.yeb{bottom:296.466667pt;}
.y28{bottom:299.121333pt;}
.y106{bottom:299.826667pt;}
.yd0{bottom:299.988000pt;}
.y128{bottom:306.708000pt;}
.y9c{bottom:306.946667pt;}
.y45{bottom:309.200000pt;}
.y27{bottom:311.280000pt;}
.yb0{bottom:311.588000pt;}
.y105{bottom:312.146667pt;}
.yea{bottom:312.308000pt;}
.y46{bottom:313.840000pt;}
.ycf{bottom:315.988000pt;}
.y127{bottom:318.546667pt;}
.y26{bottom:323.600000pt;}
.y104{bottom:323.988000pt;}
.y44{bottom:325.521333pt;}
.ya{bottom:326.333333pt;}
.ye9{bottom:328.308000pt;}
.y126{bottom:330.546667pt;}
.yce{bottom:331.826667pt;}
.y103{bottom:335.826667pt;}
.y25{bottom:338.480000pt;}
.y125{bottom:342.388000pt;}
.ye8{bottom:344.306667pt;}
.ycd{bottom:347.666667pt;}
.y43{bottom:349.040000pt;}
.y24{bottom:352.240000pt;}
.y124{bottom:354.388000pt;}
.y102{bottom:358.866667pt;}
.ye7{bottom:360.306667pt;}
.ycc{bottom:363.508000pt;}
.y23{bottom:365.840000pt;}
.y123{bottom:366.226667pt;}
.y42{bottom:375.121333pt;}
.ye6{bottom:376.146667pt;}
.y122{bottom:378.066667pt;}
.ycb{bottom:379.026667pt;}
.y22{bottom:379.121333pt;}
.y8{bottom:381.666667pt;}
.y101{bottom:388.466667pt;}
.y121{bottom:390.066667pt;}
.ye5{bottom:392.146667pt;}
.y21{bottom:392.400000pt;}
.yca{bottom:395.346667pt;}
.y120{bottom:401.908000pt;}
.y100{bottom:404.306667pt;}
.y20{bottom:405.521333pt;}
.ye4{bottom:407.988000pt;}
.y41{bottom:408.400000pt;}
.y4{bottom:409.600000pt;}
.y11f{bottom:413.746667pt;}
.y1f{bottom:418.800000pt;}
.yc9{bottom:419.826667pt;}
.ye3{bottom:423.826667pt;}
.y40{bottom:424.400000pt;}
.y11e{bottom:425.746667pt;}
.yff{bottom:427.826667pt;}
.y1e{bottom:432.080000pt;}
.y11d{bottom:437.746667pt;}
.ye2{bottom:440.146667pt;}
.y3f{bottom:440.240000pt;}
.yc8{bottom:444.146667pt;}
.y1d{bottom:445.200000pt;}
.y11c{bottom:449.588000pt;}
.ye1{bottom:455.988000pt;}
.y3e{bottom:456.080000pt;}
.yfe{bottom:457.426667pt;}
.y1c{bottom:458.480000pt;}
.yc7{bottom:459.988000pt;}
.y11b{bottom:461.588000pt;}
.y82{bottom:465.600000pt;}
.y1b{bottom:471.600000pt;}
.y3d{bottom:472.080000pt;}
.yfd{bottom:473.266667pt;}
.y1a{bottom:484.880000pt;}
.y3c{bottom:487.921333pt;}
.y19{bottom:498.160000pt;}
.y3b{bottom:508.560000pt;}
.y18{bottom:511.280000pt;}
.yc6{bottom:517.533333pt;}
.yc5{bottom:522.173333pt;}
.y3a{bottom:524.400000pt;}
.y17{bottom:524.560000pt;}
.y9b{bottom:529.466667pt;}
.y6{bottom:553.933333pt;}
.yfc{bottom:561.533333pt;}
.yfb{bottom:577.854667pt;}
.yfa{bottom:593.693333pt;}
.yf9{bottom:609.213333pt;}
.yf8{bottom:624.733333pt;}
.y7f{bottom:668.066667pt;}
.y80{bottom:683.933333pt;}
.y15{bottom:824.093333pt;}
.y14{bottom:842.013333pt;}
.y95{bottom:852.466667pt;}
.y13{bottom:861.054667pt;}
.y83{bottom:864.733333pt;}
.y86{bottom:874.666667pt;}
.y12{bottom:877.373333pt;}
.y11{bottom:919.133333pt;}
.y10{bottom:956.254667pt;}
.y2{bottom:996.254667pt;}
.y1{bottom:1018.973333pt;}
.h7{height:9.333333pt;}
.h5{height:11.266667pt;}
.h1d{height:16.066667pt;}
.h3{height:22.733333pt;}
.h2b{height:24.019531pt;}
.h26{height:24.333333pt;}
.h15{height:24.882813pt;}
.h6{height:25.754818pt;}
.h8{height:26.605469pt;}
.h24{height:28.600000pt;}
.h2f{height:29.831120pt;}
.h19{height:31.924479pt;}
.hd{height:32.531250pt;}
.h1c{height:33.400000pt;}
.h2c{height:34.134635pt;}
.h16{height:35.965104pt;}
.h12{height:36.768359pt;}
.h10{height:36.846094pt;}
.hf{height:36.872005pt;}
.he{height:36.959083pt;}
.h11{height:38.089844pt;}
.h28{height:38.724510pt;}
.hb{height:39.279297pt;}
.h13{height:40.110938pt;}
.ha{height:40.948307pt;}
.h2{height:41.178516pt;}
.h14{height:41.484245pt;}
.h1e{height:41.561979pt;}
.h1a{height:41.888359pt;}
.h17{height:41.893693pt;}
.h29{height:41.939531pt;}
.h2a{height:42.574198pt;}
.h1b{height:43.209844pt;}
.h23{height:43.442812pt;}
.h18{height:43.448146pt;}
.h4{height:48.869010pt;}
.h1f{height:50.134635pt;}
.h1{height:51.223958pt;}
.h22{height:51.524510pt;}
.h20{height:80.969844pt;}
.h9{height:88.937500pt;}
.h25{height:117.600000pt;}
.h21{height:185.333333pt;}
.h27{height:325.133333pt;}
.h2d{height:473.533333pt;}
.h2e{height:493.333333pt;}
.hc{height:544.533333pt;}
.h0{height:1056.000000pt;}
.w4{width:3.800000pt;}
.w5{width:5.666667pt;}
.w2{width:8.866667pt;}
.w6{width:9.466667pt;}
.w1{width:10.333333pt;}
.wd{width:13.266667pt;}
.w3{width:15.266667pt;}
.wf{width:17.733333pt;}
.w11{width:45.800000pt;}
.wa{width:46.866667pt;}
.we{width:70.333333pt;}
.wb{width:95.600000pt;}
.w10{width:231.400000pt;}
.wc{width:297.000000pt;}
.w7{width:402.466667pt;}
.w8{width:415.666667pt;}
.w9{width:427.533333pt;}
.w12{width:543.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6e{left:6.253333pt;}
.x4a{left:8.360000pt;}
.x69{left:11.733333pt;}
.x18{left:15.666667pt;}
.x31{left:16.945333pt;}
.x88{left:20.945333pt;}
.x17{left:28.945333pt;}
.x6d{left:35.212000pt;}
.x58{left:39.666667pt;}
.x32{left:41.906667pt;}
.x26{left:44.466667pt;}
.x3d{left:46.545333pt;}
.x3{left:48.000000pt;}
.x48{left:54.053333pt;}
.x59{left:58.226667pt;}
.x13{left:65.278667pt;}
.x4b{left:68.840000pt;}
.x86{left:70.560000pt;}
.x77{left:72.306667pt;}
.x1{left:73.920000pt;}
.x12{left:78.560000pt;}
.x33{left:80.945333pt;}
.x4c{left:84.520000pt;}
.x34{left:86.386667pt;}
.x87{left:89.440000pt;}
.x83{left:91.840000pt;}
.x29{left:94.066667pt;}
.xc{left:95.200000pt;}
.x35{left:96.306667pt;}
.x51{left:97.440000pt;}
.x19{left:104.145333pt;}
.x4{left:105.733333pt;}
.xd{left:108.160000pt;}
.x4d{left:113.000000pt;}
.x3e{left:116.626667pt;}
.x36{left:120.466667pt;}
.x52{left:122.386667pt;}
.x1a{left:123.506667pt;}
.x4e{left:132.840000pt;}
.x2a{left:134.866667pt;}
.x37{left:136.786667pt;}
.x5a{left:138.866667pt;}
.x53{left:141.106667pt;}
.x70{left:143.000000pt;}
.x5b{left:147.666667pt;}
.x4f{left:149.320000pt;}
.x3f{left:152.466667pt;}
.x50{left:156.520000pt;}
.x5c{left:157.745333pt;}
.x1b{left:158.866667pt;}
.x82{left:161.120000pt;}
.x7d{left:162.560000pt;}
.x54{left:163.666667pt;}
.x73{left:164.640000pt;}
.x2b{left:166.386667pt;}
.x74{left:169.760000pt;}
.x1c{left:171.826667pt;}
.x2c{left:175.666667pt;}
.x38{left:178.386667pt;}
.x14{left:180.800000pt;}
.x40{left:182.386667pt;}
.x1d{left:184.466667pt;}
.x2d{left:186.066667pt;}
.x41{left:188.945333pt;}
.x67{left:190.800000pt;}
.x6b{left:192.000000pt;}
.x39{left:193.586667pt;}
.x15{left:195.040000pt;}
.x55{left:196.306667pt;}
.x56{left:199.026667pt;}
.x1e{left:202.706667pt;}
.x7f{left:203.840000pt;}
.x2e{left:205.106667pt;}
.x57{left:206.866667pt;}
.x7a{left:210.225333pt;}
.x42{left:216.466667pt;}
.x78{left:217.586667pt;}
.x6c{left:220.640000pt;}
.x68{left:222.666667pt;}
.x2f{left:225.586667pt;}
.x3a{left:227.186667pt;}
.x80{left:228.478667pt;}
.x43{left:229.425333pt;}
.x5d{left:231.986667pt;}
.x30{left:238.386667pt;}
.x44{left:239.506667pt;}
.x6a{left:240.800000pt;}
.x3b{left:245.906667pt;}
.x76{left:247.520000pt;}
.x1f{left:254.225333pt;}
.x27{left:255.345333pt;}
.x45{left:257.106667pt;}
.x5e{left:259.345333pt;}
.x81{left:261.760000pt;}
.x46{left:264.626667pt;}
.x3c{left:265.906667pt;}
.x7b{left:269.586667pt;}
.x6f{left:273.000000pt;}
.x7c{left:273.906667pt;}
.x5f{left:275.986667pt;}
.x28{left:277.106667pt;}
.x20{left:278.706667pt;}
.x60{left:284.466667pt;}
.x21{left:288.786667pt;}
.x61{left:290.866667pt;}
.x2{left:294.240000pt;}
.xe{left:295.520000pt;}
.x62{left:298.066667pt;}
.x22{left:302.706667pt;}
.x63{left:306.866667pt;}
.x23{left:314.545333pt;}
.x64{left:317.426667pt;}
.x65{left:319.506667pt;}
.x75{left:323.200000pt;}
.x11{left:327.200000pt;}
.x24{left:328.145333pt;}
.x84{left:333.920000pt;}
.x10{left:335.200000pt;}
.x25{left:342.386667pt;}
.x79{left:343.506667pt;}
.x85{left:346.078667pt;}
.xf{left:365.920000pt;}
.x71{left:381.440000pt;}
.x72{left:389.600000pt;}
.x16{left:400.333333pt;}
.x7e{left:416.000000pt;}
.x47{left:425.466667pt;}
.x6{left:429.666667pt;}
.x8{left:475.266667pt;}
.x49{left:519.000000pt;}
.x7{left:573.933333pt;}
.x9{left:581.133333pt;}
.x66{left:600.466667pt;}
.xa{left:625.333333pt;}
.x5{left:663.866667pt;}
.xb{left:683.533333pt;}
}




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