
    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_bf3c74d9c99564131b066a81.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.074036;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_2943a2a14bf501430ba1ba47.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e0b53b86878349709beec78b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.038574;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_63c3ce9c8d23e6d6c52a644f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.052734;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_c705027d64720fde1e4363ea.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.074000;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_fb52d15219c6d0a97a5fcbde.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.964844;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_3d985cabc029fcf3764bf612.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.919000;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_848602bcd5df2e91625c8a95.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914000;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_a146df5d807c9bcfc2bcdf3d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.989746;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;}
.me{transform:matrix(0.245134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245134,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.245139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245139,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.245419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245419,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.245438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245438,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.245974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245974,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.246079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246079,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.246411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246411,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.246426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246426,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.246569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246569,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.246677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246677,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.246720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246720,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.246754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246754,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.246964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246964,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.246998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246998,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.247055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247055,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.247124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247124,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.247148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247148,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.247173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247173,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.247187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247187,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247297,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.247362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247362,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.247636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247636,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.247644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247644,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.247687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247687,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.248026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248026,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.248072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248072,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.248337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248337,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.248342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248342,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.248407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248407,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.248488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248488,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.248658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248658,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.248746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248746,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.248779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248779,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.248780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248780,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248782,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.248811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248811,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.248818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248818,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.248883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248883,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248945,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.248978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248978,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.249024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249024,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.249055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249055,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.249112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249112,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.249194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249194,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249220,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.249423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249423,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.249486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249486,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.249677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249677,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.249722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249722,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.249830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249830,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.249923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249923,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.249931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249931,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249988,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);}
.m45{transform:matrix(0.250062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250062,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.250098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250098,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.250146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250146,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.250158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250158,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250177,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.250179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250179,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.250196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250196,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250273,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.250283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250283,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.250380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250380,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250395,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.250481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250481,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.250514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250514,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.250541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250541,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.250560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250560,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250562,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250572,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.250574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250574,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.250591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250591,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.250615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250615,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.250617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250617,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.250644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250644,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.250746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250746,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.251163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251163,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.251254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251254,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.251273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251273,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.251301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251301,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251309,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.251354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251354,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.251397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251397,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.251416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251416,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.251498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251498,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.251572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251572,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.251612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251612,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251837,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.251897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251897,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.251902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251902,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.252007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252007,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.252100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252100,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.252136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252136,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.252170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252170,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.252218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252218,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.252239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252239,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.252419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252419,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.252663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252663,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.252699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252699,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.252751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252751,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.252837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252837,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.252876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252876,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.252900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252900,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.252921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252921,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.253108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253108,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.253160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253160,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.253244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253244,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.253304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253304,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.254055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254055,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.254105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254105,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.254129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254129,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.254189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254189,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.254222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254222,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.254433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254433,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.254467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254467,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.254754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254754,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.254900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254900,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.254978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254978,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.031350px;}
.ls3{letter-spacing:0.062700px;}
.ls1{letter-spacing:0.125400px;}
.ls2{letter-spacing:0.188100px;}
.ls5{letter-spacing:0.250800px;}
.ls4{letter-spacing:0.313500px;}
.ls8{letter-spacing:0.376200px;}
.ls10{letter-spacing:0.438900px;}
.ls9{letter-spacing:0.501600px;}
.ls7{letter-spacing:0.564300px;}
.ls6{letter-spacing:0.752400px;}
.lsa{letter-spacing:0.815100px;}
.lsd{letter-spacing:1.128600px;}
.lsc{letter-spacing:1.191300px;}
.lsf{letter-spacing:2.069100px;}
.lse{letter-spacing:2.382600px;}
.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;}
}
.ws60{word-spacing:-17.994900px;}
.ws61{word-spacing:-17.681400px;}
.ws2{word-spacing:-17.242500px;}
.ws56{word-spacing:-16.740900px;}
.ws55{word-spacing:-16.427400px;}
.ws63{word-spacing:-16.113900px;}
.ws62{word-spacing:-16.051200px;}
.ws64{word-spacing:-15.925800px;}
.ws1c{word-spacing:-15.486900px;}
.ws3e{word-spacing:-15.424200px;}
.ws1b{word-spacing:-15.048000px;}
.wsd{word-spacing:-14.797200px;}
.ws14{word-spacing:-14.734500px;}
.ws3d{word-spacing:-14.671800px;}
.ws30{word-spacing:-8.049600px;}
.ws5a{word-spacing:-6.583500px;}
.ws10{word-spacing:-4.702500px;}
.ws43{word-spacing:-4.680000px;}
.ws2e{word-spacing:-4.644000px;}
.ws1e{word-spacing:-4.577100px;}
.ws29{word-spacing:-4.200900px;}
.ws34{word-spacing:-4.138200px;}
.ws35{word-spacing:-4.075500px;}
.ws39{word-spacing:-4.012800px;}
.ws2c{word-spacing:-3.824700px;}
.ws42{word-spacing:-3.806400px;}
.ws57{word-spacing:-3.762000px;}
.ws19{word-spacing:-3.636600px;}
.ws16{word-spacing:-3.511200px;}
.ws3b{word-spacing:-3.448500px;}
.ws40{word-spacing:-3.385800px;}
.ws11{word-spacing:-3.323100px;}
.ws45{word-spacing:-3.260400px;}
.wse{word-spacing:-3.186000px;}
.ws3a{word-spacing:-3.135000px;}
.ws44{word-spacing:-3.072300px;}
.ws3{word-spacing:-3.009600px;}
.ws33{word-spacing:-2.884200px;}
.ws5{word-spacing:-2.696100px;}
.ws2d{word-spacing:-2.633400px;}
.ws4b{word-spacing:-2.445300px;}
.ws36{word-spacing:-2.382600px;}
.ws17{word-spacing:-2.319900px;}
.ws2f{word-spacing:-2.291040px;}
.ws37{word-spacing:-2.257200px;}
.ws38{word-spacing:-2.194500px;}
.ws2a{word-spacing:-2.131800px;}
.ws1d{word-spacing:-2.069100px;}
.wsf{word-spacing:-1.998000px;}
.ws72{word-spacing:-1.920000px;}
.ws2b{word-spacing:-1.881000px;}
.ws71{word-spacing:-1.860000px;}
.ws18{word-spacing:-1.755600px;}
.ws31{word-spacing:-1.630200px;}
.ws1f{word-spacing:-1.254000px;}
.ws50{word-spacing:-1.191300px;}
.ws46{word-spacing:-1.128600px;}
.ws32{word-spacing:-1.065900px;}
.ws75{word-spacing:-0.840000px;}
.ws1a{word-spacing:-0.815100px;}
.ws3f{word-spacing:-0.627000px;}
.ws25{word-spacing:-0.376200px;}
.ws13{word-spacing:-0.313500px;}
.ws8{word-spacing:-0.250800px;}
.ws12{word-spacing:-0.188100px;}
.ws3c{word-spacing:-0.125400px;}
.ws1{word-spacing:-0.066000px;}
.ws15{word-spacing:-0.062700px;}
.ws0{word-spacing:0.000000px;}
.ws22{word-spacing:0.062700px;}
.ws5c{word-spacing:0.125400px;}
.ws41{word-spacing:0.188100px;}
.ws27{word-spacing:0.250800px;}
.ws23{word-spacing:0.376200px;}
.ws28{word-spacing:0.501600px;}
.ws24{word-spacing:0.564300px;}
.ws9{word-spacing:0.689700px;}
.ws6b{word-spacing:1.191300px;}
.ws26{word-spacing:1.379400px;}
.ws6e{word-spacing:1.740000px;}
.ws73{word-spacing:1.860000px;}
.ws74{word-spacing:1.932000px;}
.ws59{word-spacing:2.006400px;}
.ws21{word-spacing:2.069100px;}
.ws4a{word-spacing:2.319900px;}
.ws68{word-spacing:2.382600px;}
.ws5b{word-spacing:2.508000px;}
.ws48{word-spacing:2.696100px;}
.ws4e{word-spacing:2.758800px;}
.ws20{word-spacing:3.072300px;}
.ws7{word-spacing:3.448500px;}
.ws5e{word-spacing:3.699300px;}
.ws4{word-spacing:3.762000px;}
.ws49{word-spacing:4.012800px;}
.ws70{word-spacing:4.380000px;}
.wsc{word-spacing:4.451700px;}
.ws6d{word-spacing:4.639800px;}
.ws4d{word-spacing:5.517600px;}
.ws47{word-spacing:6.332700px;}
.wsb{word-spacing:6.646200px;}
.wsa{word-spacing:6.708900px;}
.ws6f{word-spacing:7.320000px;}
.ws5f{word-spacing:8.339100px;}
.ws67{word-spacing:8.589900px;}
.ws4c{word-spacing:10.094700px;}
.ws53{word-spacing:10.282800px;}
.ws65{word-spacing:11.286000px;}
.ws51{word-spacing:11.913000px;}
.ws6{word-spacing:12.351900px;}
.ws5d{word-spacing:12.790800px;}
.ws52{word-spacing:13.794000px;}
.ws69{word-spacing:14.232900px;}
.ws4f{word-spacing:14.859900px;}
.ws66{word-spacing:16.615500px;}
.ws6a{word-spacing:17.179800px;}
.ws58{word-spacing:17.556000px;}
.ws6c{word-spacing:26.271300px;}
.ws54{word-spacing:53.420400px;}
._0{margin-left:-10.836000px;}
._3{margin-left:-7.200000px;}
._1{margin-left:-5.400000px;}
._4{margin-left:-3.600000px;}
._2{margin-left:-1.800000px;}
._5{width:1.782000px;}
._8{width:3.205500px;}
._9{width:4.959570px;}
._c{width:6.076140px;}
._7{width:7.396800px;}
._13{width:8.765460px;}
._12{width:9.906600px;}
._14{width:11.662200px;}
._1b{width:12.872820px;}
._1a{width:14.577750px;}
._17{width:17.305200px;}
._15{width:18.998610px;}
._1c{width:21.595410px;}
._10{width:22.910580px;}
._1e{width:25.656840px;}
._18{width:27.124530px;}
._1d{width:33.419100px;}
._11{width:106.132290px;}
._e{width:475.794000px;}
._19{width:480.612000px;}
._16{width:482.790000px;}
._f{width:496.056000px;}
._b{width:504.702000px;}
._a{width:506.880000px;}
._d{width:508.134000px;}
._6{width:520.146000px;}
.fc4{color:rgb(246,174,45);}
.fc2{color:rgb(74,114,132);}
.fc5{color:rgb(255,255,255);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(251,251,251);}
.fc0{color:rgb(245,174,38);}
.fsa{font-size:42.000000px;}
.fs6{font-size:54.000000px;}
.fs9{font-size:60.000000px;}
.fs5{font-size:61.500000px;}
.fs7{font-size:61.920000px;}
.fs8{font-size:62.400000px;}
.fs3{font-size:62.700000px;}
.fs4{font-size:66.000000px;}
.fs2{font-size:87.000000px;}
.fs1{font-size:126.000000px;}
.fs0{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.yba{bottom:46.935450px;}
.y36{bottom:47.461050px;}
.y12{bottom:47.561400px;}
.y22{bottom:48.961050px;}
.y58{bottom:49.061400px;}
.y1a0{bottom:91.891350px;}
.y19f{bottom:104.491350px;}
.y19e{bottom:117.091350px;}
.yf0{bottom:126.783600px;}
.y134{bottom:127.427775px;}
.y158{bottom:127.752525px;}
.y112{bottom:128.525700px;}
.y35{bottom:131.974500px;}
.yca{bottom:132.783600px;}
.y71{bottom:139.084800px;}
.y17b{bottom:139.991025px;}
.y19d{bottom:142.291350px;}
.y133{bottom:149.921400px;}
.y157{bottom:150.246150px;}
.yef{bottom:152.283600px;}
.y111{bottom:154.025700px;}
.y19c{bottom:154.891350px;}
.y34{bottom:157.474500px;}
.yc9{bottom:158.283600px;}
.y70{bottom:164.584800px;}
.y17a{bottom:165.494250px;}
.y132{bottom:172.434675px;}
.y156{bottom:172.769025px;}
.y110{bottom:179.525700px;}
.yb9{bottom:180.139950px;}
.yee{bottom:180.783600px;}
.y95{bottom:186.728100px;}
.y179{bottom:187.995825px;}
.y6f{bottom:190.084800px;}
.y131{bottom:194.928300px;}
.y155{bottom:195.262650px;}
.y33{bottom:197.841900px;}
.y10f{bottom:205.025700px;}
.yb8{bottom:205.639950px;}
.y94{bottom:212.228100px;}
.yed{bottom:213.559200px;}
.y6e{bottom:215.584800px;}
.y32{bottom:223.341900px;}
.y178{bottom:228.045450px;}
.y10e{bottom:230.525700px;}
.yb7{bottom:231.139950px;}
.y154{bottom:235.312275px;}
.y137{bottom:236.265900px;}
.y93{bottom:237.728100px;}
.yec{bottom:239.059200px;}
.y6d{bottom:241.075125px;}
.y57{bottom:248.756100px;}
.y31{bottom:248.841900px;}
.y177{bottom:253.561350px;}
.y10d{bottom:256.022025px;}
.yb6{bottom:256.639950px;}
.y153{bottom:260.815500px;}
.y136{bottom:261.778200px;}
.y92{bottom:263.228100px;}
.y6c{bottom:266.578350px;}
.y56{bottom:274.258275px;}
.y30{bottom:274.341900px;}
.yeb{bottom:275.368050px;}
.y176{bottom:276.054975px;}
.yb5{bottom:282.139950px;}
.y152{bottom:283.309125px;}
.y135{bottom:284.271825px;}
.y6b{bottom:292.081575px;}
.y10c{bottom:294.237675px;}
.y175{bottom:298.548600px;}
.y2f{bottom:299.841900px;}
.yea{bottom:300.868050px;}
.y91{bottom:301.252875px;}
.y151{bottom:305.802750px;}
.yb4{bottom:307.639950px;}
.y52{bottom:313.580850px;}
.y6a{bottom:317.584800px;}
.y10b{bottom:319.740900px;}
.y2e{bottom:325.341900px;}
.y130{bottom:326.018325px;}
.ye9{bottom:326.368050px;}
.y90{bottom:326.756100px;}
.yb3{bottom:333.139950px;}
.y17d{bottom:337.698900px;}
.y51{bottom:339.080850px;}
.y69{bottom:343.078350px;}
.y15a{bottom:344.950950px;}
.y10a{bottom:345.240900px;}
.y12f{bottom:348.511950px;}
.y2d{bottom:350.841900px;}
.ye8{bottom:351.868050px;}
.y8f{bottom:352.256100px;}
.yb2{bottom:358.639950px;}
.y17c{bottom:360.193425px;}
.y50{bottom:364.580850px;}
.y159{bottom:367.454625px;}
.y68{bottom:368.581575px;}
.y109{bottom:370.740900px;}
.y12e{bottom:371.011950px;}
.y2c{bottom:376.335450px;}
.ye7{bottom:377.368050px;}
.y8e{bottom:377.756100px;}
.y5{bottom:379.842000px;}
.yb1{bottom:384.139950px;}
.y4f{bottom:390.080850px;}
.y12d{bottom:393.529875px;}
.y67{bottom:394.084800px;}
.y108{bottom:396.240900px;}
.y17f{bottom:399.352500px;}
.y2b{bottom:401.838675px;}
.ye6{bottom:402.868050px;}
.y8d{bottom:403.256100px;}
.y150{bottom:407.502150px;}
.y18{bottom:408.386925px;}
.yb0{bottom:409.639950px;}
.y4e{bottom:415.574400px;}
.y4{bottom:417.642000px;}
.y66{bottom:419.584800px;}
.y107{bottom:421.740900px;}
.y17e{bottom:421.857975px;}
.y2a{bottom:427.341900px;}
.ye5{bottom:428.368050px;}
.y8c{bottom:428.756100px;}
.y14f{bottom:430.002150px;}
.y12c{bottom:433.971375px;}
.yaf{bottom:435.139950px;}
.y4d{bottom:441.077625px;}
.y106{bottom:447.240900px;}
.y17{bottom:450.391425px;}
.y14e{bottom:452.521650px;}
.y29{bottom:452.841900px;}
.ye4{bottom:453.868050px;}
.y12b{bottom:456.465000px;}
.y65{bottom:457.940550px;}
.yae{bottom:460.639950px;}
.y8b{bottom:460.659300px;}
.y181{bottom:462.506100px;}
.y4c{bottom:466.580850px;}
.y105{bottom:472.745250px;}
.y16{bottom:472.885050px;}
.y14d{bottom:475.015275px;}
.y28{bottom:478.341900px;}
.y12a{bottom:478.958625px;}
.ye3{bottom:479.368050px;}
.y64{bottom:483.443775px;}
.yad{bottom:486.139950px;}
.y180{bottom:488.010300px;}
.y21{bottom:491.303925px;}
.y4b{bottom:492.080850px;}
.y27{bottom:503.841900px;}
.ye2{bottom:504.868050px;}
.y63{bottom:508.947000px;}
.y15{bottom:510.384675px;}
.yac{bottom:511.639950px;}
.y104{bottom:512.685150px;}
.y14c{bottom:515.064900px;}
.y20{bottom:516.807150px;}
.y3{bottom:517.434300px;}
.y4a{bottom:517.580850px;}
.y138{bottom:521.143350px;}
.y8a{bottom:523.509900px;}
.y174{bottom:526.557150px;}
.y26{bottom:529.341900px;}
.ye1{bottom:530.368050px;}
.y14{bottom:532.878300px;}
.y62{bottom:534.447000px;}
.y103{bottom:538.185150px;}
.y14b{bottom:540.568125px;}
.y1f{bottom:542.307150px;}
.y49{bottom:543.080850px;}
.y89{bottom:549.009900px;}
.y173{bottom:549.057150px;}
.yab{bottom:550.179300px;}
.ye0{bottom:555.868050px;}
.y61{bottom:559.947000px;}
.y129{bottom:560.484300px;}
.y25{bottom:560.670000px;}
.y14a{bottom:563.061750px;}
.y102{bottom:563.685150px;}
.y13{bottom:567.377400px;}
.y48{bottom:568.580850px;}
.y2{bottom:569.949300px;}
.y172{bottom:571.567575px;}
.y88{bottom:574.509900px;}
.yaa{bottom:575.679300px;}
.y128{bottom:583.009275px;}
.y60{bottom:585.447000px;}
.y149{bottom:585.555375px;}
.y101{bottom:589.185150px;}
.y1e{bottom:589.791750px;}
.y171{bottom:594.061200px;}
.y47{bottom:594.080850px;}
.ydf{bottom:594.083475px;}
.y19{bottom:596.311650px;}
.y87{bottom:600.009900px;}
.ya9{bottom:601.179300px;}
.y127{bottom:605.502900px;}
.y5f{bottom:610.943775px;}
.y100{bottom:614.685150px;}
.y1d{bottom:615.294975px;}
.y46{bottom:619.580850px;}
.yde{bottom:619.586700px;}
.y1{bottom:622.464300px;}
.y24{bottom:624.411150px;}
.y15c{bottom:624.718350px;}
.y86{bottom:625.509900px;}
.ya8{bottom:626.679300px;}
.y170{bottom:634.628100px;}
.y18f{bottom:634.982400px;}
.y5e{bottom:636.447000px;}
.yff{bottom:640.185150px;}
.y1c{bottom:640.798200px;}
.y23{bottom:643.905150px;}
.y45{bottom:645.080850px;}
.ydd{bottom:645.086700px;}
.y126{bottom:646.446000px;}
.y15b{bottom:647.211975px;}
.y85{bottom:651.009900px;}
.ya7{bottom:652.179300px;}
.y16f{bottom:657.134475px;}
.y18e{bottom:657.488775px;}
.y5d{bottom:661.947000px;}
.yfe{bottom:665.685150px;}
.y1b{bottom:666.301425px;}
.y125{bottom:668.939625px;}
.ydc{bottom:670.586700px;}
.y84{bottom:676.509900px;}
.ya6{bottom:677.679300px;}
.y16e{bottom:679.628100px;}
.y18d{bottom:679.982400px;}
.y44{bottom:684.183450px;}
.y148{bottom:690.264375px;}
.yfd{bottom:691.185150px;}
.y124{bottom:691.433250px;}
.ydb{bottom:696.086700px;}
.y5c{bottom:701.253075px;}
.y83{bottom:702.009900px;}
.y16d{bottom:702.139050px;}
.y18c{bottom:702.475650px;}
.ya5{bottom:703.179300px;}
.y43{bottom:709.683450px;}
.y147{bottom:712.758000px;}
.y123{bottom:713.923800px;}
.y11{bottom:714.086700px;}
.yfc{bottom:716.685150px;}
.yda{bottom:721.586700px;}
.y16c{bottom:724.632675px;}
.y5b{bottom:726.756300px;}
.y82{bottom:727.506675px;}
.ya4{bottom:728.679300px;}
.y6{bottom:732.295500px;}
.y42{bottom:735.183450px;}
.y146{bottom:735.258000px;}
.y10{bottom:739.589175px;}
.y192{bottom:744.476550px;}
.yd9{bottom:747.083475px;}
.y16b{bottom:747.126300px;}
.yfb{bottom:748.588500px;}
.y122{bottom:750.807075px;}
.y5a{bottom:752.256300px;}
.y81{bottom:753.009900px;}
.ya3{bottom:754.179300px;}
.y145{bottom:757.762575px;}
.y41{bottom:760.683450px;}
.y191{bottom:766.981575px;}
.y19b{bottom:770.073900px;}
.yd8{bottom:772.586700px;}
.y121{bottom:776.310300px;}
.y80{bottom:778.509900px;}
.ya2{bottom:779.672700px;}
.y59{bottom:783.584400px;}
.y40{bottom:786.183450px;}
.y16a{bottom:787.175925px;}
.yf{bottom:787.444950px;}
.y19a{bottom:788.073900px;}
.y190{bottom:789.475200px;}
.y144{bottom:797.812200px;}
.yd7{bottom:798.086700px;}
.y120{bottom:798.803925px;}
.y7f{bottom:804.009900px;}
.ya1{bottom:805.175925px;}
.y199{bottom:806.073900px;}
.yc8{bottom:809.744250px;}
.y3f{bottom:811.673775px;}
.y169{bottom:812.679150px;}
.ye{bottom:812.944950px;}
.yfa{bottom:813.252000px;}
.y143{bottom:823.315425px;}
.y198{bottom:824.073900px;}
.yd6{bottom:829.990050px;}
.ya0{bottom:830.679150px;}
.y18b{bottom:831.825750px;}
.y168{bottom:835.189125px;}
.yc7{bottom:835.244250px;}
.y11f{bottom:835.687200px;}
.y3e{bottom:837.177000px;}
.yd{bottom:838.441200px;}
.yf9{bottom:838.752000px;}
.y7e{bottom:843.479325px;}
.y142{bottom:845.809050px;}
.y9f{bottom:856.179150px;}
.y18a{bottom:857.328975px;}
.y167{bottom:857.682750px;}
.y11e{bottom:858.206025px;}
.yc6{bottom:860.744250px;}
.y3d{bottom:862.680225px;}
.yf8{bottom:864.252000px;}
.y141{bottom:868.310625px;}
.y7d{bottom:868.982550px;}
.y189{bottom:879.822600px;}
.y9e{bottom:881.679150px;}
.y11d{bottom:883.709250px;}
.yc5{bottom:886.244250px;}
.yc{bottom:886.281300px;}
.y3c{bottom:888.183450px;}
.yf7{bottom:889.752000px;}
.yd5{bottom:893.614350px;}
.y7c{bottom:894.482550px;}
.y166{bottom:896.509725px;}
.y188{bottom:902.316225px;}
.y197{bottom:904.053900px;}
.y9d{bottom:907.179150px;}
.y140{bottom:908.360250px;}
.yc4{bottom:911.744250px;}
.yb{bottom:911.784525px;}
.y3b{bottom:913.683450px;}
.yf6{bottom:915.252000px;}
.yd4{bottom:919.114350px;}
.y7b{bottom:919.982550px;}
.y165{bottom:922.012950px;}
.y196{bottom:922.053900px;}
.y13f{bottom:933.860250px;}
.y11c{bottom:933.884925px;}
.yc3{bottom:937.244250px;}
.y3a{bottom:939.183450px;}
.y195{bottom:940.053900px;}
.y164{bottom:944.506575px;}
.y9c{bottom:944.614200px;}
.yd3{bottom:944.614350px;}
.y187{bottom:944.670075px;}
.y7a{bottom:945.482550px;}
.yf5{bottom:955.433100px;}
.y13e{bottom:956.377125px;}
.y11b{bottom:956.378550px;}
.y194{bottom:958.053900px;}
.ya{bottom:960.706200px;}
.yc2{bottom:962.744250px;}
.y163{bottom:967.000200px;}
.yd2{bottom:970.111125px;}
.y9b{bottom:970.114200px;}
.y186{bottom:970.173300px;}
.y79{bottom:970.982550px;}
.y193{bottom:976.053900px;}
.y55{bottom:976.890150px;}
.y13d{bottom:978.870750px;}
.y11a{bottom:978.872175px;}
.yf4{bottom:980.933100px;}
.y9{bottom:986.209425px;}
.yc1{bottom:988.244250px;}
.y162{bottom:989.493825px;}
.y185{bottom:992.673300px;}
.y9a{bottom:995.614200px;}
.yd1{bottom:995.614350px;}
.y78{bottom:996.482400px;}
.y54{bottom:1002.390150px;}
.yf3{bottom:1006.433100px;}
.y8{bottom:1011.712650px;}
.yc0{bottom:1013.744250px;}
.y161{bottom:1014.997050px;}
.y184{bottom:1015.175850px;}
.y13c{bottom:1018.904700px;}
.y119{bottom:1018.906125px;}
.y99{bottom:1021.114200px;}
.yd0{bottom:1021.114350px;}
.y77{bottom:1021.982400px;}
.yf2{bottom:1031.933100px;}
.y53{bottom:1033.718400px;}
.ybf{bottom:1039.244250px;}
.y13b{bottom:1041.398325px;}
.y118{bottom:1041.399750px;}
.y113{bottom:1046.610975px;}
.y98{bottom:1046.614200px;}
.ycf{bottom:1046.614350px;}
.y76{bottom:1047.482400px;}
.y160{bottom:1055.610975px;}
.y183{bottom:1055.617350px;}
.y7{bottom:1059.526800px;}
.y13a{bottom:1063.891950px;}
.y117{bottom:1063.904700px;}
.ybe{bottom:1064.744250px;}
.y97{bottom:1072.114200px;}
.yce{bottom:1072.114350px;}
.y75{bottom:1072.982400px;}
.y15f{bottom:1081.114200px;}
.y182{bottom:1081.120575px;}
.ybd{bottom:1090.244250px;}
.y39{bottom:1097.610975px;}
.y96{bottom:1097.614200px;}
.ycd{bottom:1097.614350px;}
.y74{bottom:1098.482400px;}
.y139{bottom:1103.236200px;}
.y116{bottom:1103.248950px;}
.y15e{bottom:1103.614200px;}
.ybc{bottom:1115.744250px;}
.ycc{bottom:1123.111125px;}
.y38{bottom:1123.114200px;}
.yf1{bottom:1123.114350px;}
.y73{bottom:1123.982400px;}
.y115{bottom:1125.742575px;}
.y15d{bottom:1126.120575px;}
.ybb{bottom:1147.647600px;}
.y114{bottom:1148.236200px;}
.y37{bottom:1148.614200px;}
.ycb{bottom:1148.614350px;}
.y72{bottom:1149.482400px;}
.y1a{bottom:1194.940800px;}
.h18{height:34.125000px;}
.h19{height:34.719727px;}
.hd{height:43.875000px;}
.ha{height:45.325500px;}
.h16{height:48.750000px;}
.hb{height:49.434000px;}
.h17{height:49.599609px;}
.h11{height:50.310000px;}
.h12{height:50.700000px;}
.h5{height:50.943750px;}
.hf{height:50.956650px;}
.h15{height:50.958450px;}
.h6{height:50.958750px;}
.he{height:50.969550px;}
.h10{height:50.982450px;}
.h13{height:51.583594px;}
.h14{height:51.770361px;}
.h7{height:51.831592px;}
.hc{height:52.921080px;}
.h9{height:53.625000px;}
.h8{height:55.704000px;}
.h4{height:73.431164px;}
.h3{height:94.374000px;}
.h2{height:151.926545px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:31.511925px;}
.x8{left:34.015800px;}
.x9{left:45.813300px;}
.x6{left:54.758100px;}
.xf{left:68.161050px;}
.x3{left:76.634550px;}
.xd{left:77.944425px;}
.xc{left:81.726675px;}
.xb{left:84.817050px;}
.xa{left:88.107300px;}
.x2{left:93.869550px;}
.x1{left:110.069550px;}
.x16{left:162.588450px;}
.x11{left:170.078700px;}
.x14{left:187.086600px;}
.x13{left:191.338500px;}
.x15{left:198.693450px;}
.x12{left:201.641700px;}
.x17{left:209.565300px;}
.x7{left:219.188850px;}
.x10{left:574.277100px;}
.x4{left:602.070600px;}
.x5{left:624.750600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.027867pt;}
.ls3{letter-spacing:0.055733pt;}
.ls1{letter-spacing:0.111467pt;}
.ls2{letter-spacing:0.167200pt;}
.ls5{letter-spacing:0.222933pt;}
.ls4{letter-spacing:0.278667pt;}
.ls8{letter-spacing:0.334400pt;}
.ls10{letter-spacing:0.390133pt;}
.ls9{letter-spacing:0.445867pt;}
.ls7{letter-spacing:0.501600pt;}
.ls6{letter-spacing:0.668800pt;}
.lsa{letter-spacing:0.724533pt;}
.lsd{letter-spacing:1.003200pt;}
.lsc{letter-spacing:1.058933pt;}
.lsf{letter-spacing:1.839200pt;}
.lse{letter-spacing:2.117867pt;}
.ws60{word-spacing:-15.995467pt;}
.ws61{word-spacing:-15.716800pt;}
.ws2{word-spacing:-15.326667pt;}
.ws56{word-spacing:-14.880800pt;}
.ws55{word-spacing:-14.602133pt;}
.ws63{word-spacing:-14.323467pt;}
.ws62{word-spacing:-14.267733pt;}
.ws64{word-spacing:-14.156267pt;}
.ws1c{word-spacing:-13.766133pt;}
.ws3e{word-spacing:-13.710400pt;}
.ws1b{word-spacing:-13.376000pt;}
.wsd{word-spacing:-13.153067pt;}
.ws14{word-spacing:-13.097333pt;}
.ws3d{word-spacing:-13.041600pt;}
.ws30{word-spacing:-7.155200pt;}
.ws5a{word-spacing:-5.852000pt;}
.ws10{word-spacing:-4.180000pt;}
.ws43{word-spacing:-4.160000pt;}
.ws2e{word-spacing:-4.128000pt;}
.ws1e{word-spacing:-4.068533pt;}
.ws29{word-spacing:-3.734133pt;}
.ws34{word-spacing:-3.678400pt;}
.ws35{word-spacing:-3.622667pt;}
.ws39{word-spacing:-3.566933pt;}
.ws2c{word-spacing:-3.399733pt;}
.ws42{word-spacing:-3.383467pt;}
.ws57{word-spacing:-3.344000pt;}
.ws19{word-spacing:-3.232533pt;}
.ws16{word-spacing:-3.121067pt;}
.ws3b{word-spacing:-3.065333pt;}
.ws40{word-spacing:-3.009600pt;}
.ws11{word-spacing:-2.953867pt;}
.ws45{word-spacing:-2.898133pt;}
.wse{word-spacing:-2.832000pt;}
.ws3a{word-spacing:-2.786667pt;}
.ws44{word-spacing:-2.730933pt;}
.ws3{word-spacing:-2.675200pt;}
.ws33{word-spacing:-2.563733pt;}
.ws5{word-spacing:-2.396533pt;}
.ws2d{word-spacing:-2.340800pt;}
.ws4b{word-spacing:-2.173600pt;}
.ws36{word-spacing:-2.117867pt;}
.ws17{word-spacing:-2.062133pt;}
.ws2f{word-spacing:-2.036480pt;}
.ws37{word-spacing:-2.006400pt;}
.ws38{word-spacing:-1.950667pt;}
.ws2a{word-spacing:-1.894933pt;}
.ws1d{word-spacing:-1.839200pt;}
.wsf{word-spacing:-1.776000pt;}
.ws72{word-spacing:-1.706667pt;}
.ws2b{word-spacing:-1.672000pt;}
.ws71{word-spacing:-1.653333pt;}
.ws18{word-spacing:-1.560533pt;}
.ws31{word-spacing:-1.449067pt;}
.ws1f{word-spacing:-1.114667pt;}
.ws50{word-spacing:-1.058933pt;}
.ws46{word-spacing:-1.003200pt;}
.ws32{word-spacing:-0.947467pt;}
.ws75{word-spacing:-0.746667pt;}
.ws1a{word-spacing:-0.724533pt;}
.ws3f{word-spacing:-0.557333pt;}
.ws25{word-spacing:-0.334400pt;}
.ws13{word-spacing:-0.278667pt;}
.ws8{word-spacing:-0.222933pt;}
.ws12{word-spacing:-0.167200pt;}
.ws3c{word-spacing:-0.111467pt;}
.ws1{word-spacing:-0.058667pt;}
.ws15{word-spacing:-0.055733pt;}
.ws0{word-spacing:0.000000pt;}
.ws22{word-spacing:0.055733pt;}
.ws5c{word-spacing:0.111467pt;}
.ws41{word-spacing:0.167200pt;}
.ws27{word-spacing:0.222933pt;}
.ws23{word-spacing:0.334400pt;}
.ws28{word-spacing:0.445867pt;}
.ws24{word-spacing:0.501600pt;}
.ws9{word-spacing:0.613067pt;}
.ws6b{word-spacing:1.058933pt;}
.ws26{word-spacing:1.226133pt;}
.ws6e{word-spacing:1.546667pt;}
.ws73{word-spacing:1.653333pt;}
.ws74{word-spacing:1.717333pt;}
.ws59{word-spacing:1.783467pt;}
.ws21{word-spacing:1.839200pt;}
.ws4a{word-spacing:2.062133pt;}
.ws68{word-spacing:2.117867pt;}
.ws5b{word-spacing:2.229333pt;}
.ws48{word-spacing:2.396533pt;}
.ws4e{word-spacing:2.452267pt;}
.ws20{word-spacing:2.730933pt;}
.ws7{word-spacing:3.065333pt;}
.ws5e{word-spacing:3.288267pt;}
.ws4{word-spacing:3.344000pt;}
.ws49{word-spacing:3.566933pt;}
.ws70{word-spacing:3.893333pt;}
.wsc{word-spacing:3.957067pt;}
.ws6d{word-spacing:4.124267pt;}
.ws4d{word-spacing:4.904533pt;}
.ws47{word-spacing:5.629067pt;}
.wsb{word-spacing:5.907733pt;}
.wsa{word-spacing:5.963467pt;}
.ws6f{word-spacing:6.506667pt;}
.ws5f{word-spacing:7.412533pt;}
.ws67{word-spacing:7.635467pt;}
.ws4c{word-spacing:8.973067pt;}
.ws53{word-spacing:9.140267pt;}
.ws65{word-spacing:10.032000pt;}
.ws51{word-spacing:10.589333pt;}
.ws6{word-spacing:10.979467pt;}
.ws5d{word-spacing:11.369600pt;}
.ws52{word-spacing:12.261333pt;}
.ws69{word-spacing:12.651467pt;}
.ws4f{word-spacing:13.208800pt;}
.ws66{word-spacing:14.769333pt;}
.ws6a{word-spacing:15.270933pt;}
.ws58{word-spacing:15.605333pt;}
.ws6c{word-spacing:23.352267pt;}
.ws54{word-spacing:47.484800pt;}
._0{margin-left:-9.632000pt;}
._3{margin-left:-6.400000pt;}
._1{margin-left:-4.800000pt;}
._4{margin-left:-3.200000pt;}
._2{margin-left:-1.600000pt;}
._5{width:1.584000pt;}
._8{width:2.849333pt;}
._9{width:4.408507pt;}
._c{width:5.401013pt;}
._7{width:6.574933pt;}
._13{width:7.791520pt;}
._12{width:8.805867pt;}
._14{width:10.366400pt;}
._1b{width:11.442507pt;}
._1a{width:12.958000pt;}
._17{width:15.382400pt;}
._15{width:16.887653pt;}
._1c{width:19.195920pt;}
._10{width:20.364960pt;}
._1e{width:22.806080pt;}
._18{width:24.110693pt;}
._1d{width:29.705867pt;}
._11{width:94.339813pt;}
._e{width:422.928000pt;}
._19{width:427.210667pt;}
._16{width:429.146667pt;}
._f{width:440.938667pt;}
._b{width:448.624000pt;}
._a{width:450.560000pt;}
._d{width:451.674667pt;}
._6{width:462.352000pt;}
.fsa{font-size:37.333333pt;}
.fs6{font-size:48.000000pt;}
.fs9{font-size:53.333333pt;}
.fs5{font-size:54.666667pt;}
.fs7{font-size:55.040000pt;}
.fs8{font-size:55.466667pt;}
.fs3{font-size:55.733333pt;}
.fs4{font-size:58.666667pt;}
.fs2{font-size:77.333333pt;}
.fs1{font-size:112.000000pt;}
.fs0{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.yba{bottom:41.720400pt;}
.y36{bottom:42.187600pt;}
.y12{bottom:42.276800pt;}
.y22{bottom:43.520933pt;}
.y58{bottom:43.610133pt;}
.y1a0{bottom:81.681200pt;}
.y19f{bottom:92.881200pt;}
.y19e{bottom:104.081200pt;}
.yf0{bottom:112.696533pt;}
.y134{bottom:113.269133pt;}
.y158{bottom:113.557800pt;}
.y112{bottom:114.245067pt;}
.y35{bottom:117.310667pt;}
.yca{bottom:118.029867pt;}
.y71{bottom:123.630933pt;}
.y17b{bottom:124.436467pt;}
.y19d{bottom:126.481200pt;}
.y133{bottom:133.263467pt;}
.y157{bottom:133.552133pt;}
.yef{bottom:135.363200pt;}
.y111{bottom:136.911733pt;}
.y19c{bottom:137.681200pt;}
.y34{bottom:139.977333pt;}
.yc9{bottom:140.696533pt;}
.y70{bottom:146.297600pt;}
.y17a{bottom:147.106000pt;}
.y132{bottom:153.275267pt;}
.y156{bottom:153.572467pt;}
.y110{bottom:159.578400pt;}
.yb9{bottom:160.124400pt;}
.yee{bottom:160.696533pt;}
.y95{bottom:165.980533pt;}
.y179{bottom:167.107400pt;}
.y6f{bottom:168.964267pt;}
.y131{bottom:173.269600pt;}
.y155{bottom:173.566800pt;}
.y33{bottom:175.859467pt;}
.y10f{bottom:182.245067pt;}
.yb8{bottom:182.791067pt;}
.y94{bottom:188.647200pt;}
.yed{bottom:189.830400pt;}
.y6e{bottom:191.630933pt;}
.y32{bottom:198.526133pt;}
.y178{bottom:202.707067pt;}
.y10e{bottom:204.911733pt;}
.yb7{bottom:205.457733pt;}
.y154{bottom:209.166467pt;}
.y137{bottom:210.014133pt;}
.y93{bottom:211.313867pt;}
.yec{bottom:212.497067pt;}
.y6d{bottom:214.289000pt;}
.y57{bottom:221.116533pt;}
.y31{bottom:221.192800pt;}
.y177{bottom:225.387867pt;}
.y10d{bottom:227.575133pt;}
.yb6{bottom:228.124400pt;}
.y153{bottom:231.836000pt;}
.y136{bottom:232.691733pt;}
.y92{bottom:233.980533pt;}
.y6c{bottom:236.958533pt;}
.y56{bottom:243.785133pt;}
.y30{bottom:243.859467pt;}
.yeb{bottom:244.771600pt;}
.y176{bottom:245.382200pt;}
.yb5{bottom:250.791067pt;}
.y152{bottom:251.830333pt;}
.y135{bottom:252.686067pt;}
.y6b{bottom:259.628067pt;}
.y10c{bottom:261.544600pt;}
.y175{bottom:265.376533pt;}
.y2f{bottom:266.526133pt;}
.yea{bottom:267.438267pt;}
.y91{bottom:267.780333pt;}
.y151{bottom:271.824667pt;}
.yb4{bottom:273.457733pt;}
.y52{bottom:278.738533pt;}
.y6a{bottom:282.297600pt;}
.y10b{bottom:284.214133pt;}
.y2e{bottom:289.192800pt;}
.y130{bottom:289.794067pt;}
.ye9{bottom:290.104933pt;}
.y90{bottom:290.449867pt;}
.yb3{bottom:296.124400pt;}
.y17d{bottom:300.176800pt;}
.y51{bottom:301.405200pt;}
.y69{bottom:304.958533pt;}
.y15a{bottom:306.623067pt;}
.y10a{bottom:306.880800pt;}
.y12f{bottom:309.788400pt;}
.y2d{bottom:311.859467pt;}
.ye8{bottom:312.771600pt;}
.y8f{bottom:313.116533pt;}
.yb2{bottom:318.791067pt;}
.y17c{bottom:320.171933pt;}
.y50{bottom:324.071867pt;}
.y159{bottom:326.626333pt;}
.y68{bottom:327.628067pt;}
.y109{bottom:329.547467pt;}
.y12e{bottom:329.788400pt;}
.y2c{bottom:334.520400pt;}
.ye7{bottom:335.438267pt;}
.y8e{bottom:335.783200pt;}
.y5{bottom:337.637333pt;}
.yb1{bottom:341.457733pt;}
.y4f{bottom:346.738533pt;}
.y12d{bottom:349.804333pt;}
.y67{bottom:350.297600pt;}
.y108{bottom:352.214133pt;}
.y17f{bottom:354.980000pt;}
.y2b{bottom:357.189933pt;}
.ye6{bottom:358.104933pt;}
.y8d{bottom:358.449867pt;}
.y150{bottom:362.224133pt;}
.y18{bottom:363.010600pt;}
.yb0{bottom:364.124400pt;}
.y4e{bottom:369.399467pt;}
.y4{bottom:371.237333pt;}
.y66{bottom:372.964267pt;}
.y107{bottom:374.880800pt;}
.y17e{bottom:374.984867pt;}
.y2a{bottom:379.859467pt;}
.ye5{bottom:380.771600pt;}
.y8c{bottom:381.116533pt;}
.y14f{bottom:382.224133pt;}
.y12c{bottom:385.752333pt;}
.yaf{bottom:386.791067pt;}
.y4d{bottom:392.069000pt;}
.y106{bottom:397.547467pt;}
.y17{bottom:400.347933pt;}
.y14e{bottom:402.241467pt;}
.y29{bottom:402.526133pt;}
.ye4{bottom:403.438267pt;}
.y12b{bottom:405.746667pt;}
.y65{bottom:407.058267pt;}
.yae{bottom:409.457733pt;}
.y8b{bottom:409.474933pt;}
.y181{bottom:411.116533pt;}
.y4c{bottom:414.738533pt;}
.y105{bottom:420.218000pt;}
.y16{bottom:420.342267pt;}
.y14d{bottom:422.235800pt;}
.y28{bottom:425.192800pt;}
.y12a{bottom:425.741000pt;}
.ye3{bottom:426.104933pt;}
.y64{bottom:429.727800pt;}
.yad{bottom:432.124400pt;}
.y180{bottom:433.786933pt;}
.y21{bottom:436.714600pt;}
.y4b{bottom:437.405200pt;}
.y27{bottom:447.859467pt;}
.ye2{bottom:448.771600pt;}
.y63{bottom:452.397333pt;}
.y15{bottom:453.675267pt;}
.yac{bottom:454.791067pt;}
.y104{bottom:455.720133pt;}
.y14c{bottom:457.835467pt;}
.y20{bottom:459.384133pt;}
.y3{bottom:459.941600pt;}
.y4a{bottom:460.071867pt;}
.y138{bottom:463.238533pt;}
.y8a{bottom:465.342133pt;}
.y174{bottom:468.050800pt;}
.y26{bottom:470.526133pt;}
.ye1{bottom:471.438267pt;}
.y14{bottom:473.669600pt;}
.y62{bottom:475.064000pt;}
.y103{bottom:478.386800pt;}
.y14b{bottom:480.505000pt;}
.y1f{bottom:482.050800pt;}
.y49{bottom:482.738533pt;}
.y89{bottom:488.008800pt;}
.y173{bottom:488.050800pt;}
.yab{bottom:489.048267pt;}
.ye0{bottom:494.104933pt;}
.y61{bottom:497.730667pt;}
.y129{bottom:498.208267pt;}
.y25{bottom:498.373333pt;}
.y14a{bottom:500.499333pt;}
.y102{bottom:501.053467pt;}
.y13{bottom:504.335467pt;}
.y48{bottom:505.405200pt;}
.y2{bottom:506.621600pt;}
.y172{bottom:508.060067pt;}
.y88{bottom:510.675467pt;}
.yaa{bottom:511.714933pt;}
.y128{bottom:518.230467pt;}
.y60{bottom:520.397333pt;}
.y149{bottom:520.493667pt;}
.y101{bottom:523.720133pt;}
.y1e{bottom:524.259333pt;}
.y171{bottom:528.054400pt;}
.y47{bottom:528.071867pt;}
.ydf{bottom:528.074200pt;}
.y19{bottom:530.054800pt;}
.y87{bottom:533.342133pt;}
.ya9{bottom:534.381600pt;}
.y127{bottom:538.224800pt;}
.y5f{bottom:543.061133pt;}
.y100{bottom:546.386800pt;}
.y1d{bottom:546.928867pt;}
.y46{bottom:550.738533pt;}
.yde{bottom:550.743733pt;}
.y1{bottom:553.301600pt;}
.y24{bottom:555.032133pt;}
.y15c{bottom:555.305200pt;}
.y86{bottom:556.008800pt;}
.ya8{bottom:557.048267pt;}
.y170{bottom:564.113867pt;}
.y18f{bottom:564.428800pt;}
.y5e{bottom:565.730667pt;}
.yff{bottom:569.053467pt;}
.y1c{bottom:569.598400pt;}
.y23{bottom:572.360133pt;}
.y45{bottom:573.405200pt;}
.ydd{bottom:573.410400pt;}
.y126{bottom:574.618667pt;}
.y15b{bottom:575.299533pt;}
.y85{bottom:578.675467pt;}
.ya7{bottom:579.714933pt;}
.y16f{bottom:584.119533pt;}
.y18e{bottom:584.434467pt;}
.y5d{bottom:588.397333pt;}
.yfe{bottom:591.720133pt;}
.y1b{bottom:592.267933pt;}
.y125{bottom:594.613000pt;}
.ydc{bottom:596.077067pt;}
.y84{bottom:601.342133pt;}
.ya6{bottom:602.381600pt;}
.y16e{bottom:604.113867pt;}
.y18d{bottom:604.428800pt;}
.y44{bottom:608.163067pt;}
.y148{bottom:613.568333pt;}
.yfd{bottom:614.386800pt;}
.y124{bottom:614.607333pt;}
.ydb{bottom:618.743733pt;}
.y5c{bottom:623.336067pt;}
.y83{bottom:624.008800pt;}
.y16d{bottom:624.123600pt;}
.y18c{bottom:624.422800pt;}
.ya5{bottom:625.048267pt;}
.y43{bottom:630.829733pt;}
.y147{bottom:633.562667pt;}
.y123{bottom:634.598933pt;}
.y11{bottom:634.743733pt;}
.yfc{bottom:637.053467pt;}
.yda{bottom:641.410400pt;}
.y16c{bottom:644.117933pt;}
.y5b{bottom:646.005600pt;}
.y82{bottom:646.672600pt;}
.ya4{bottom:647.714933pt;}
.y6{bottom:650.929333pt;}
.y42{bottom:653.496400pt;}
.y146{bottom:653.562667pt;}
.y10{bottom:657.412600pt;}
.y192{bottom:661.756933pt;}
.yd9{bottom:664.074200pt;}
.y16b{bottom:664.112267pt;}
.yfb{bottom:665.412000pt;}
.y122{bottom:667.384067pt;}
.y5a{bottom:668.672267pt;}
.y81{bottom:669.342133pt;}
.ya3{bottom:670.381600pt;}
.y145{bottom:673.566733pt;}
.y41{bottom:676.163067pt;}
.y191{bottom:681.761400pt;}
.y19b{bottom:684.510133pt;}
.yd8{bottom:686.743733pt;}
.y121{bottom:690.053600pt;}
.y80{bottom:692.008800pt;}
.ya2{bottom:693.042400pt;}
.y59{bottom:696.519467pt;}
.y40{bottom:698.829733pt;}
.y16a{bottom:699.711933pt;}
.yf{bottom:699.951067pt;}
.y19a{bottom:700.510133pt;}
.y190{bottom:701.755733pt;}
.y144{bottom:709.166400pt;}
.yd7{bottom:709.410400pt;}
.y120{bottom:710.047933pt;}
.y7f{bottom:714.675467pt;}
.ya1{bottom:715.711933pt;}
.y199{bottom:716.510133pt;}
.yc8{bottom:719.772667pt;}
.y3f{bottom:721.487800pt;}
.y169{bottom:722.381467pt;}
.ye{bottom:722.617733pt;}
.yfa{bottom:722.890667pt;}
.y143{bottom:731.835933pt;}
.y198{bottom:732.510133pt;}
.yd6{bottom:737.768933pt;}
.ya0{bottom:738.381467pt;}
.y18b{bottom:739.400667pt;}
.y168{bottom:742.390333pt;}
.yc7{bottom:742.439333pt;}
.y11f{bottom:742.833067pt;}
.y3e{bottom:744.157333pt;}
.yd{bottom:745.281067pt;}
.yf9{bottom:745.557333pt;}
.y7e{bottom:749.759400pt;}
.y142{bottom:751.830267pt;}
.y9f{bottom:761.048133pt;}
.y18a{bottom:762.070200pt;}
.y167{bottom:762.384667pt;}
.y11e{bottom:762.849800pt;}
.yc6{bottom:765.106000pt;}
.y3d{bottom:766.826867pt;}
.yf8{bottom:768.224000pt;}
.y141{bottom:771.831667pt;}
.y7d{bottom:772.428933pt;}
.y189{bottom:782.064533pt;}
.y9e{bottom:783.714800pt;}
.y11d{bottom:785.519333pt;}
.yc5{bottom:787.772667pt;}
.yc{bottom:787.805600pt;}
.y3c{bottom:789.496400pt;}
.yf7{bottom:790.890667pt;}
.yd5{bottom:794.323867pt;}
.y7c{bottom:795.095600pt;}
.y166{bottom:796.897533pt;}
.y188{bottom:802.058867pt;}
.y197{bottom:803.603467pt;}
.y9d{bottom:806.381467pt;}
.y140{bottom:807.431333pt;}
.yc4{bottom:810.439333pt;}
.yb{bottom:810.475133pt;}
.y3b{bottom:812.163067pt;}
.yf6{bottom:813.557333pt;}
.yd4{bottom:816.990533pt;}
.y7b{bottom:817.762267pt;}
.y165{bottom:819.567067pt;}
.y196{bottom:819.603467pt;}
.y13f{bottom:830.098000pt;}
.y11c{bottom:830.119933pt;}
.yc3{bottom:833.106000pt;}
.y3a{bottom:834.829733pt;}
.y195{bottom:835.603467pt;}
.y164{bottom:839.561400pt;}
.y9c{bottom:839.657067pt;}
.yd3{bottom:839.657200pt;}
.y187{bottom:839.706733pt;}
.y7a{bottom:840.428933pt;}
.yf5{bottom:849.273867pt;}
.y13e{bottom:850.113000pt;}
.y11b{bottom:850.114267pt;}
.y194{bottom:851.603467pt;}
.ya{bottom:853.961067pt;}
.yc2{bottom:855.772667pt;}
.y163{bottom:859.555733pt;}
.yd2{bottom:862.321000pt;}
.y9b{bottom:862.323733pt;}
.y186{bottom:862.376267pt;}
.y79{bottom:863.095600pt;}
.y193{bottom:867.603467pt;}
.y55{bottom:868.346800pt;}
.y13d{bottom:870.107333pt;}
.y11a{bottom:870.108600pt;}
.yf4{bottom:871.940533pt;}
.y9{bottom:876.630600pt;}
.yc1{bottom:878.439333pt;}
.y162{bottom:879.550067pt;}
.y185{bottom:882.376267pt;}
.y9a{bottom:884.990400pt;}
.yd1{bottom:884.990533pt;}
.y78{bottom:885.762133pt;}
.y54{bottom:891.013467pt;}
.yf3{bottom:894.607200pt;}
.y8{bottom:899.300133pt;}
.yc0{bottom:901.106000pt;}
.y161{bottom:902.219600pt;}
.y184{bottom:902.378533pt;}
.y13c{bottom:905.693067pt;}
.y119{bottom:905.694333pt;}
.y99{bottom:907.657067pt;}
.yd0{bottom:907.657200pt;}
.y77{bottom:908.428800pt;}
.yf2{bottom:917.273867pt;}
.y53{bottom:918.860800pt;}
.ybf{bottom:923.772667pt;}
.y13b{bottom:925.687400pt;}
.y118{bottom:925.688667pt;}
.y113{bottom:930.320867pt;}
.y98{bottom:930.323733pt;}
.ycf{bottom:930.323867pt;}
.y76{bottom:931.095467pt;}
.y160{bottom:938.320867pt;}
.y183{bottom:938.326533pt;}
.y7{bottom:941.801600pt;}
.y13a{bottom:945.681733pt;}
.y117{bottom:945.693067pt;}
.ybe{bottom:946.439333pt;}
.y97{bottom:952.990400pt;}
.yce{bottom:952.990533pt;}
.y75{bottom:953.762133pt;}
.y15f{bottom:960.990400pt;}
.y182{bottom:960.996067pt;}
.ybd{bottom:969.106000pt;}
.y39{bottom:975.654200pt;}
.y96{bottom:975.657067pt;}
.ycd{bottom:975.657200pt;}
.y74{bottom:976.428800pt;}
.y139{bottom:980.654400pt;}
.y116{bottom:980.665733pt;}
.y15e{bottom:980.990400pt;}
.ybc{bottom:991.772667pt;}
.ycc{bottom:998.321000pt;}
.y38{bottom:998.323733pt;}
.yf1{bottom:998.323867pt;}
.y73{bottom:999.095467pt;}
.y115{bottom:1000.660067pt;}
.y15d{bottom:1000.996067pt;}
.ybb{bottom:1020.131200pt;}
.y114{bottom:1020.654400pt;}
.y37{bottom:1020.990400pt;}
.ycb{bottom:1020.990533pt;}
.y72{bottom:1021.762133pt;}
.y1a{bottom:1062.169600pt;}
.h18{height:30.333333pt;}
.h19{height:30.861979pt;}
.hd{height:39.000000pt;}
.ha{height:40.289333pt;}
.h16{height:43.333333pt;}
.hb{height:43.941333pt;}
.h17{height:44.088542pt;}
.h11{height:44.720000pt;}
.h12{height:45.066667pt;}
.h5{height:45.283333pt;}
.hf{height:45.294800pt;}
.h15{height:45.296400pt;}
.h6{height:45.296667pt;}
.he{height:45.306267pt;}
.h10{height:45.317733pt;}
.h13{height:45.852083pt;}
.h14{height:46.018099pt;}
.h7{height:46.072526pt;}
.hc{height:47.040960pt;}
.h9{height:47.666667pt;}
.h8{height:49.514667pt;}
.h4{height:65.272145pt;}
.h3{height:83.888000pt;}
.h2{height:135.045818pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:28.010600pt;}
.x8{left:30.236267pt;}
.x9{left:40.722933pt;}
.x6{left:48.673867pt;}
.xf{left:60.587600pt;}
.x3{left:68.119600pt;}
.xd{left:69.283933pt;}
.xc{left:72.645933pt;}
.xb{left:75.392933pt;}
.xa{left:78.317600pt;}
.x2{left:83.439600pt;}
.x1{left:97.839600pt;}
.x16{left:144.523067pt;}
.x11{left:151.181067pt;}
.x14{left:166.299200pt;}
.x13{left:170.078667pt;}
.x15{left:176.616400pt;}
.x12{left:179.237067pt;}
.x17{left:186.280267pt;}
.x7{left:194.834533pt;}
.x10{left:510.468533pt;}
.x4{left:535.173867pt;}
.x5{left:555.333867pt;}
}




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