
    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_d0504fbe416cb3e62d4c31a5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.078000;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_bc8413112f0f7b44c50ac728.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.964789;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_2c74ed13502a2b083d2c7ee4.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_95b0875224759135c0026ee2.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b906e3d21802d03e23188044.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.985352;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_46ed867063412acf8d6c01c2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_87c29996df14c27d9502729a.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_f4c982d0213dd4d566ec36c1.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_3436ce80822bc650bc4863fe.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.024902;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_f642528b6c3eb011aab467d4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.039062;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_3f33c0a5cf07493d67ce7825.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.887207;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_8b3703ae50098a1c0e4af748.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.010742;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_cca50578d6e93e877ff98e86.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.985352;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;}
.m24{transform:matrix(0.245053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245053,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.245227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245227,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.245261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245261,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.245297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245297,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.246170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246170,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.246352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246352,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.246756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246756,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.247478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247478,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.247978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247978,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.248038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248038,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m34{transform:matrix(0.248419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248419,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.248567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248567,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.248589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248589,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.248785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248785,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.248789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248789,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249002,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249043,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249146,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249376,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.249464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249464,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249498,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249569,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.249608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249608,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.249734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249734,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.249804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249804,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);}
.m2b{transform:matrix(0.250026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250026,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250029,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250079,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.250117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250117,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.250292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250292,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250364,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.250526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250526,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250677,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250715,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250722,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.250892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250892,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.250907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250907,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.250923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250923,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.251108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251108,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.251380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251380,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.251947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251947,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251967,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.252038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252038,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.252246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252246,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.252275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252275,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.252285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252285,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.252402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252402,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.252600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252600,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.252742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252742,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.252847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252847,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.252974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252974,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.253175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253175,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.253366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253366,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.253596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253596,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.m1{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);}
.m8{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;}
.ls16{letter-spacing:-3.762000px;}
.ls15{letter-spacing:-3.072300px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.025800px;}
.lsd{letter-spacing:0.062700px;}
.lsb{letter-spacing:0.125400px;}
.lsc{letter-spacing:0.188100px;}
.ls14{letter-spacing:0.250800px;}
.ls13{letter-spacing:0.313500px;}
.lsa{letter-spacing:1.128600px;}
.ls7{letter-spacing:1.379400px;}
.ls10{letter-spacing:1.442100px;}
.ls2{letter-spacing:1.504800px;}
.ls12{letter-spacing:1.630200px;}
.ls8{letter-spacing:1.755600px;}
.ls11{letter-spacing:1.818300px;}
.ls5{letter-spacing:1.881000px;}
.ls6{letter-spacing:1.943700px;}
.ls9{letter-spacing:2.006400px;}
.ls3{letter-spacing:2.194500px;}
.lse{letter-spacing:2.319900px;}
.lsf{letter-spacing:3.762000px;}
.ls4{letter-spacing:3.887400px;}
.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;}
}
.wsd{word-spacing:-23.925000px;}
.ws5{word-spacing:-19.800000px;}
.wse{word-spacing:-18.245700px;}
.ws79{word-spacing:-16.302000px;}
.ws3{word-spacing:-15.990000px;}
.ws36{word-spacing:-15.612300px;}
.ws43{word-spacing:-13.229700px;}
.wsb1{word-spacing:-11.850300px;}
.ws7d{word-spacing:-4.953300px;}
.ws2d{word-spacing:-4.890600px;}
.ws20{word-spacing:-4.827900px;}
.ws1{word-spacing:-4.704000px;}
.ws21{word-spacing:-4.702500px;}
.ws1f{word-spacing:-4.639800px;}
.ws4e{word-spacing:-4.577100px;}
.ws7e{word-spacing:-4.326300px;}
.ws7a{word-spacing:-4.263600px;}
.ws2c{word-spacing:-4.138200px;}
.ws7b{word-spacing:-4.075500px;}
.ws26{word-spacing:-4.012800px;}
.ws3d{word-spacing:-3.950100px;}
.ws23{word-spacing:-3.887400px;}
.ws3c{word-spacing:-3.824700px;}
.ws3b{word-spacing:-3.762000px;}
.ws22{word-spacing:-3.699300px;}
.ws3e{word-spacing:-3.636600px;}
.ws3a{word-spacing:-3.573900px;}
.ws34{word-spacing:-3.511200px;}
.ws39{word-spacing:-3.385800px;}
.ws25{word-spacing:-3.323100px;}
.ws31{word-spacing:-3.260400px;}
.ws2a{word-spacing:-3.197700px;}
.ws29{word-spacing:-3.072300px;}
.ws2f{word-spacing:-2.946900px;}
.ws30{word-spacing:-2.821500px;}
.ws6c{word-spacing:-2.758800px;}
.ws73{word-spacing:-2.696100px;}
.ws6d{word-spacing:-2.633400px;}
.ws7c{word-spacing:-2.570700px;}
.ws38{word-spacing:-2.508000px;}
.ws42{word-spacing:-2.445300px;}
.ws24{word-spacing:-2.382600px;}
.ws11{word-spacing:-2.319900px;}
.ws59{word-spacing:-2.257200px;}
.ws7f{word-spacing:-2.194500px;}
.ws70{word-spacing:-2.131800px;}
.ws9c{word-spacing:-2.069100px;}
.ws37{word-spacing:-2.006400px;}
.wsa{word-spacing:-1.943700px;}
.wsbb{word-spacing:-1.920000px;}
.ws77{word-spacing:-1.881000px;}
.wsba{word-spacing:-1.860000px;}
.ws4c{word-spacing:-1.818300px;}
.ws9e{word-spacing:-1.782000px;}
.ws40{word-spacing:-1.755600px;}
.ws83{word-spacing:-1.630200px;}
.ws53{word-spacing:-1.567500px;}
.ws18{word-spacing:-1.442100px;}
.ws6{word-spacing:-1.379400px;}
.wsb5{word-spacing:-1.316700px;}
.wsb2{word-spacing:-1.254000px;}
.ws52{word-spacing:-1.191300px;}
.ws4f{word-spacing:-1.128600px;}
.ws35{word-spacing:-1.065900px;}
.ws2e{word-spacing:-0.940500px;}
.wsae{word-spacing:-0.877800px;}
.ws3f{word-spacing:-0.815100px;}
.ws64{word-spacing:-0.564300px;}
.ws6a{word-spacing:-0.501600px;}
.ws41{word-spacing:-0.438900px;}
.ws33{word-spacing:-0.376200px;}
.ws28{word-spacing:-0.313500px;}
.ws27{word-spacing:-0.250800px;}
.ws32{word-spacing:-0.188100px;}
.ws4a{word-spacing:-0.125400px;}
.ws4{word-spacing:-0.066000px;}
.ws2b{word-spacing:-0.062700px;}
.ws2{word-spacing:0.000000px;}
.ws57{word-spacing:0.062700px;}
.ws44{word-spacing:0.125400px;}
.wsa6{word-spacing:0.188100px;}
.ws9d{word-spacing:0.313500px;}
.ws49{word-spacing:0.376200px;}
.ws81{word-spacing:0.438900px;}
.ws80{word-spacing:0.501600px;}
.ws6b{word-spacing:0.627000px;}
.ws46{word-spacing:0.689700px;}
.ws9b{word-spacing:0.752400px;}
.ws69{word-spacing:0.815100px;}
.ws78{word-spacing:0.877800px;}
.ws87{word-spacing:0.940500px;}
.ws71{word-spacing:1.065900px;}
.ws8a{word-spacing:1.191300px;}
.ws5b{word-spacing:1.316700px;}
.ws4b{word-spacing:1.379400px;}
.wsad{word-spacing:1.442100px;}
.wsaa{word-spacing:1.504800px;}
.ws56{word-spacing:1.567500px;}
.ws5d{word-spacing:1.630200px;}
.wsa3{word-spacing:1.692900px;}
.wsb7{word-spacing:1.740000px;}
.wsbc{word-spacing:1.860000px;}
.ws8d{word-spacing:1.881000px;}
.wsbd{word-spacing:1.932000px;}
.ws90{word-spacing:1.943700px;}
.wsa0{word-spacing:1.960200px;}
.ws8b{word-spacing:2.319900px;}
.ws5e{word-spacing:2.382600px;}
.ws88{word-spacing:2.445300px;}
.ws47{word-spacing:2.508000px;}
.ws89{word-spacing:2.570700px;}
.wsa9{word-spacing:2.633400px;}
.ws82{word-spacing:2.696100px;}
.ws8c{word-spacing:2.884200px;}
.ws58{word-spacing:3.009600px;}
.ws5c{word-spacing:3.072300px;}
.wsb4{word-spacing:3.135000px;}
.ws91{word-spacing:3.197700px;}
.wsb3{word-spacing:3.260400px;}
.ws8f{word-spacing:3.323100px;}
.ws63{word-spacing:3.385800px;}
.ws51{word-spacing:3.511200px;}
.ws66{word-spacing:3.636600px;}
.ws50{word-spacing:3.699300px;}
.ws6e{word-spacing:3.762000px;}
.ws9f{word-spacing:3.801600px;}
.wsbe{word-spacing:3.822000px;}
.ws4d{word-spacing:3.824700px;}
.ws86{word-spacing:3.887400px;}
.ws74{word-spacing:4.012800px;}
.ws55{word-spacing:4.138200px;}
.ws6f{word-spacing:4.200900px;}
.ws48{word-spacing:4.326300px;}
.wsb9{word-spacing:4.380000px;}
.ws5f{word-spacing:4.514400px;}
.ws61{word-spacing:4.577100px;}
.ws45{word-spacing:4.639800px;}
.ws60{word-spacing:4.702500px;}
.wsb0{word-spacing:4.827900px;}
.wsa4{word-spacing:4.890600px;}
.wsaf{word-spacing:5.141400px;}
.ws5a{word-spacing:5.266800px;}
.ws85{word-spacing:5.392200px;}
.ws96{word-spacing:5.517600px;}
.wsa7{word-spacing:5.643000px;}
.ws54{word-spacing:5.831100px;}
.wsb6{word-spacing:5.893800px;}
.ws1c{word-spacing:6.144600px;}
.ws76{word-spacing:6.207300px;}
.wsa5{word-spacing:6.332700px;}
.wsc{word-spacing:6.395400px;}
.ws8{word-spacing:6.458100px;}
.ws72{word-spacing:6.520800px;}
.wsa2{word-spacing:6.708900px;}
.ws62{word-spacing:6.771600px;}
.ws84{word-spacing:6.959700px;}
.wsb{word-spacing:7.085100px;}
.ws67{word-spacing:7.210500px;}
.wsb8{word-spacing:7.320000px;}
.ws8e{word-spacing:7.398600px;}
.ws68{word-spacing:7.524000px;}
.ws65{word-spacing:7.712100px;}
.ws17{word-spacing:7.900200px;}
.ws75{word-spacing:7.962900px;}
.ws92{word-spacing:8.025600px;}
.ws16{word-spacing:8.276400px;}
.ws93{word-spacing:8.401800px;}
.wsa1{word-spacing:8.464500px;}
.ws95{word-spacing:8.840700px;}
.wsf{word-spacing:9.091500px;}
.ws9{word-spacing:9.216900px;}
.ws7{word-spacing:9.279600px;}
.ws1d{word-spacing:9.593100px;}
.wsa8{word-spacing:10.470900px;}
.ws1a{word-spacing:10.596300px;}
.ws97{word-spacing:10.784400px;}
.ws1e{word-spacing:11.035200px;}
.ws19{word-spacing:11.097900px;}
.ws14{word-spacing:11.599500px;}
.ws15{word-spacing:12.163800px;}
.ws94{word-spacing:12.477300px;}
.wsac{word-spacing:12.540000px;}
.ws1b{word-spacing:12.853500px;}
.wsab{word-spacing:13.167000px;}
.ws10{word-spacing:14.232900px;}
.ws98{word-spacing:17.179800px;}
.ws99{word-spacing:17.744100px;}
.ws9a{word-spacing:18.559200px;}
.ws13{word-spacing:25.644300px;}
.ws12{word-spacing:26.835600px;}
.ws0{word-spacing:28.560000px;}
._9{margin-left:-15.990000px;}
._e{margin-left:-13.035480px;}
._5{margin-left:-7.779000px;}
._2{margin-left:-5.292000px;}
._b{margin-left:-4.223610px;}
._1{margin-left:-3.024000px;}
._0{margin-left:-1.764000px;}
._6{width:1.812000px;}
._3{width:3.011400px;}
._f{width:4.238850px;}
._4{width:5.292000px;}
._12{width:6.343080px;}
._8{width:7.360800px;}
._11{width:8.546010px;}
._17{width:9.575280px;}
._15{width:12.533730px;}
._13{width:475.794000px;}
._18{width:480.612000px;}
._16{width:482.790000px;}
._14{width:496.056000px;}
._c{width:500.478000px;}
._d{width:504.702000px;}
._a{width:506.880000px;}
._10{width:508.134000px;}
._7{width:520.146000px;}
.fc9{color:rgb(0,1,1);}
.fc6{color:rgb(245,174,43);}
.fc5{color:rgb(74,115,132);}
.fc4{color:rgb(246,174,45);}
.fc8{color:rgb(74,114,132);}
.fc2{color:rgb(74,114,132);}
.fca{color:rgb(255,255,255);}
.fc7{color:rgb(0,0,0);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(251,251,251);}
.fc0{color:rgb(245,174,38);}
.fsa{font-size:42.000000px;}
.fs8{font-size:59.400000px;}
.fs9{font-size:60.000000px;}
.fs5{font-size:61.500000px;}
.fs3{font-size:62.700000px;}
.fs4{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs7{font-size:80.400000px;}
.fs2{font-size:87.000000px;}
.fs1{font-size:126.000000px;}
.fs0{font-size:168.000000px;}
.y0{bottom:0.000000px;}
.y199{bottom:43.085100px;}
.y174{bottom:43.147050px;}
.y1f{bottom:46.398150px;}
.y13{bottom:47.337000px;}
.y1ad{bottom:91.891350px;}
.y1ac{bottom:104.491350px;}
.y1ab{bottom:117.091350px;}
.y148{bottom:126.718050px;}
.y90{bottom:127.397850px;}
.y105{bottom:127.509675px;}
.y4c{bottom:127.754175px;}
.ybe{bottom:127.763850px;}
.yde{bottom:128.017800px;}
.y36{bottom:129.565050px;}
.y6f{bottom:129.582750px;}
.y1aa{bottom:142.291350px;}
.y121{bottom:144.762675px;}
.y147{bottom:152.221275px;}
.y8f{bottom:152.884950px;}
.y104{bottom:153.012900px;}
.y4b{bottom:153.257400px;}
.ybd{bottom:153.267225px;}
.ydd{bottom:153.517800px;}
.y1a9{bottom:154.891350px;}
.y35{bottom:155.061825px;}
.y6e{bottom:155.082750px;}
.y189{bottom:166.695225px;}
.y120{bottom:170.265900px;}
.y146{bottom:177.724500px;}
.y8e{bottom:178.388175px;}
.y103{bottom:178.509675px;}
.y4a{bottom:178.760625px;}
.ydc{bottom:179.017800px;}
.y34{bottom:180.565050px;}
.y6d{bottom:180.582750px;}
.ybc{bottom:191.561250px;}
.y188{bottom:192.198450px;}
.y11f{bottom:195.759450px;}
.y16e{bottom:202.077150px;}
.y145{bottom:203.224500px;}
.y8d{bottom:203.891400px;}
.y102{bottom:204.012900px;}
.y49{bottom:204.263850px;}
.y33{bottom:206.065050px;}
.y6c{bottom:206.082750px;}
.ydb{bottom:212.747250px;}
.ybb{bottom:217.041900px;}
.y187{bottom:217.701675px;}
.y11e{bottom:221.262675px;}
.y16d{bottom:227.580375px;}
.y144{bottom:228.721275px;}
.y8c{bottom:229.394625px;}
.y48{bottom:229.763850px;}
.y32{bottom:231.565050px;}
.y6b{bottom:231.579525px;}
.y101{bottom:236.944650px;}
.yba{bottom:242.545125px;}
.y186{bottom:243.204900px;}
.y11d{bottom:246.765900px;}
.y16c{bottom:253.083600px;}
.y143{bottom:254.224500px;}
.y8b{bottom:254.897850px;}
.y47{bottom:255.263850px;}
.y31{bottom:257.065050px;}
.y6a{bottom:257.082750px;}
.yb9{bottom:268.048350px;}
.y185{bottom:268.698450px;}
.y100{bottom:270.960900px;}
.y11c{bottom:272.256225px;}
.y16b{bottom:278.586825px;}
.y142{bottom:279.724500px;}
.yda{bottom:280.367700px;}
.y46{bottom:280.763850px;}
.y30{bottom:282.565050px;}
.y69{bottom:282.582750px;}
.yb8{bottom:293.551575px;}
.y184{bottom:294.201675px;}
.y11b{bottom:297.759450px;}
.y8a{bottom:301.064850px;}
.y16a{bottom:304.090050px;}
.yd9{bottom:305.870925px;}
.y45{bottom:306.263850px;}
.y2f{bottom:308.061825px;}
.y68{bottom:308.082750px;}
.yb7{bottom:319.054800px;}
.y183{bottom:319.704900px;}
.y11a{bottom:323.262675px;}
.y89{bottom:326.568075px;}
.y169{bottom:329.593275px;}
.y141{bottom:329.876775px;}
.yd8{bottom:331.374150px;}
.y44{bottom:331.763850px;}
.y2e{bottom:333.565050px;}
.y67{bottom:333.582750px;}
.yff{bottom:335.661600px;}
.yb6{bottom:344.558025px;}
.y182{bottom:345.204900px;}
.y119{bottom:348.765900px;}
.y88{bottom:352.071300px;}
.y168{bottom:355.096500px;}
.y140{bottom:355.380000px;}
.yd7{bottom:356.874150px;}
.y66{bottom:359.082750px;}
.yfe{bottom:361.161600px;}
.yb5{bottom:370.061250px;}
.y87{bottom:377.574525px;}
.y167{bottom:380.596500px;}
.y13f{bottom:380.876775px;}
.y2d{bottom:381.379800px;}
.yd6{bottom:382.354800px;}
.y43{bottom:383.271750px;}
.y118{bottom:383.292000px;}
.y65{bottom:384.582750px;}
.yfd{bottom:386.661600px;}
.y181{bottom:393.099675px;}
.yb4{bottom:395.554800px;}
.y86{bottom:403.077750px;}
.y166{bottom:406.093275px;}
.y13e{bottom:406.380000px;}
.y2c{bottom:406.879800px;}
.yd5{bottom:407.858025px;}
.y42{bottom:408.771750px;}
.y64{bottom:410.082750px;}
.yfc{bottom:412.161600px;}
.y3{bottom:417.619350px;}
.y180{bottom:418.602900px;}
.yb3{bottom:421.058025px;}
.y85{bottom:428.580975px;}
.y165{bottom:431.596500px;}
.y2b{bottom:432.379800px;}
.y117{bottom:432.604800px;}
.yd4{bottom:433.361250px;}
.y41{bottom:434.271750px;}
.y63{bottom:435.582750px;}
.yfb{bottom:437.661600px;}
.y13d{bottom:440.906250px;}
.y17f{bottom:444.106125px;}
.yb2{bottom:446.561250px;}
.y84{bottom:454.084200px;}
.y164{bottom:457.093275px;}
.y2a{bottom:457.850775px;}
.y116{bottom:458.108025px;}
.yd3{bottom:458.864475px;}
.y40{bottom:459.771750px;}
.y62{bottom:461.082750px;}
.yfa{bottom:463.161600px;}
.y17e{bottom:469.609350px;}
.y83{bottom:479.587425px;}
.yb1{bottom:481.621050px;}
.y163{bottom:482.596500px;}
.y29{bottom:483.354000px;}
.y115{bottom:483.611250px;}
.yd2{bottom:484.367700px;}
.y3f{bottom:485.271750px;}
.y61{bottom:486.582750px;}
.yf9{bottom:488.661600px;}
.y17d{bottom:495.112575px;}
.y13c{bottom:503.797950px;}
.y82{bottom:505.090650px;}
.yb0{bottom:507.124275px;}
.y28{bottom:508.857225px;}
.y114{bottom:509.114475px;}
.yd1{bottom:509.870925px;}
.y3e{bottom:510.771750px;}
.yf8{bottom:514.161600px;}
.y17c{bottom:520.615800px;}
.y13b{bottom:524.795850px;}
.y60{bottom:527.454300px;}
.y81{bottom:530.590650px;}
.yaf{bottom:532.627500px;}
.y27{bottom:534.360450px;}
.y113{bottom:534.617700px;}
.y162{bottom:534.930150px;}
.yd0{bottom:535.374150px;}
.yf7{bottom:539.661600px;}
.y3d{bottom:544.123350px;}
.y1c{bottom:544.564500px;}
.y13a{bottom:545.793750px;}
.y17b{bottom:546.119025px;}
.y5f{bottom:552.957525px;}
.yae{bottom:558.130725px;}
.y26{bottom:559.863675px;}
.y112{bottom:560.120925px;}
.y161{bottom:560.433375px;}
.yf6{bottom:565.161600px;}
.y1b{bottom:565.566750px;}
.y139{bottom:566.793750px;}
.y17a{bottom:571.622250px;}
.ycf{bottom:573.939825px;}
.y5e{bottom:578.460750px;}
.ya3{bottom:580.864350px;}
.yad{bottom:583.633950px;}
.y25{bottom:585.366900px;}
.y111{bottom:585.624150px;}
.y160{bottom:585.936600px;}
.y138{bottom:587.793750px;}
.yf5{bottom:590.661600px;}
.y2{bottom:591.856650px;}
.yce{bottom:599.443050px;}
.y1a{bottom:600.068250px;}
.y5d{bottom:603.960750px;}
.ya2{bottom:606.348225px;}
.y24{bottom:610.870125px;}
.y110{bottom:611.120925px;}
.y15f{bottom:611.439825px;}
.y3c{bottom:612.500100px;}
.y179{bottom:616.075725px;}
.yf4{bottom:616.161600px;}
.yac{bottom:623.880000px;}
.ycd{bottom:624.939825px;}
.y12{bottom:626.793150px;}
.y5c{bottom:629.460750px;}
.ya1{bottom:631.851450px;}
.y19{bottom:634.569750px;}
.y23{bottom:636.373350px;}
.y10f{bottom:636.624150px;}
.y15e{bottom:636.943050px;}
.y3b{bottom:638.000100px;}
.y137{bottom:638.044125px;}
.y178{bottom:641.578950px;}
.y1{bottom:644.356650px;}
.yab{bottom:649.373550px;}
.ycc{bottom:650.443050px;}
.y11{bottom:652.292775px;}
.y5b{bottom:654.960750px;}
.y18{bottom:655.572000px;}
.ya0{bottom:657.354675px;}
.y22{bottom:661.876575px;}
.yf3{bottom:662.498325px;}
.y3a{bottom:663.490425px;}
.y136{bottom:663.547350px;}
.y177{bottom:667.072275px;}
.y10e{bottom:671.150400px;}
.yaa{bottom:674.876775px;}
.y10{bottom:677.796000px;}
.y9f{bottom:682.857900px;}
.y15d{bottom:684.619875px;}
.y21{bottom:687.379800px;}
.yf2{bottom:688.001550px;}
.y39{bottom:688.993650px;}
.ycb{bottom:689.008725px;}
.y135{bottom:689.037675px;}
.y17{bottom:690.073500px;}
.ya9{bottom:700.380000px;}
.y80{bottom:700.418175px;}
.y9e{bottom:708.361125px;}
.y15c{bottom:710.123100px;}
.y16{bottom:711.075750px;}
.yf1{bottom:713.504775px;}
.y38{bottom:714.496875px;}
.yca{bottom:714.511950px;}
.y134{bottom:714.540900px;}
.y176{bottom:716.197725px;}
.y20{bottom:722.068200px;}
.ya8{bottom:725.865750px;}
.y7f{bottom:725.921400px;}
.yf{bottom:727.125225px;}
.y4{bottom:732.272850px;}
.y9d{bottom:733.864350px;}
.y15b{bottom:735.626325px;}
.yf0{bottom:739.008000px;}
.y37{bottom:740.000100px;}
.yc9{bottom:740.008725px;}
.y133{bottom:740.044125px;}
.y12e{bottom:740.103225px;}
.y175{bottom:741.700950px;}
.y15{bottom:745.577250px;}
.ya7{bottom:751.368975px;}
.y7e{bottom:751.421400px;}
.ye{bottom:752.628450px;}
.y9c{bottom:759.354675px;}
.y15a{bottom:761.129550px;}
.yef{bottom:764.508000px;}
.y14{bottom:765.070500px;}
.yc8{bottom:765.511950px;}
.y132{bottom:765.547350px;}
.y12d{bottom:765.606450px;}
.y1a8{bottom:768.978900px;}
.y7d{bottom:776.921400px;}
.yd{bottom:778.126350px;}
.y9b{bottom:784.857900px;}
.y159{bottom:786.632775px;}
.y1a7{bottom:786.978900px;}
.y190{bottom:787.069350px;}
.y5a{bottom:789.352500px;}
.yee{bottom:790.008000px;}
.y131{bottom:791.040900px;}
.y12c{bottom:791.096775px;}
.y1d{bottom:795.067500px;}
.ya6{bottom:799.961475px;}
.y7c{bottom:802.421400px;}
.y1a6{bottom:804.978900px;}
.y18f{bottom:808.079850px;}
.y9a{bottom:810.361125px;}
.y158{bottom:812.136000px;}
.y59{bottom:814.852500px;}
.yed{bottom:815.508000px;}
.y130{bottom:816.544125px;}
.y12b{bottom:816.600000px;}
.ye9{bottom:816.612825px;}
.y1a5{bottom:822.978900px;}
.ya5{bottom:825.464700px;}
.yc{bottom:827.596650px;}
.y7b{bottom:827.921400px;}
.y18e{bottom:829.077750px;}
.y99{bottom:835.864350px;}
.y157{bottom:837.636000px;}
.y58{bottom:840.352500px;}
.yec{bottom:841.008000px;}
.y12f{bottom:842.047350px;}
.y12a{bottom:842.103225px;}
.ye8{bottom:842.116050px;}
.y18d{bottom:850.075650px;}
.yb{bottom:853.099875px;}
.y7a{bottom:853.421400px;}
.ya4{bottom:858.396450px;}
.y98{bottom:861.357900px;}
.y57{bottom:865.852500px;}
.yeb{bottom:866.504775px;}
.y129{bottom:867.606450px;}
.ye7{bottom:867.619275px;}
.y18c{bottom:871.073550px;}
.y97{bottom:886.861125px;}
.y156{bottom:891.236475px;}
.y56{bottom:891.352500px;}
.yea{bottom:892.008000px;}
.y18b{bottom:892.071450px;}
.y128{bottom:893.100000px;}
.ye6{bottom:893.122500px;}
.y152{bottom:893.934825px;}
.y79{bottom:898.161450px;}
.ya{bottom:903.071775px;}
.y1a4{bottom:904.053900px;}
.y96{bottom:912.364350px;}
.y18a{bottom:913.069350px;}
.y155{bottom:916.739700px;}
.y55{bottom:916.852500px;}
.y127{bottom:918.603225px;}
.ye5{bottom:918.625725px;}
.yc7{bottom:918.658950px;}
.y19f{bottom:919.110975px;}
.y151{bottom:919.438050px;}
.y1a3{bottom:922.053900px;}
.y78{bottom:923.661450px;}
.y9{bottom:928.575000px;}
.y1a2{bottom:940.053900px;}
.y10c{bottom:942.039450px;}
.y154{bottom:942.242925px;}
.y54{bottom:942.352500px;}
.y126{bottom:944.106450px;}
.ye4{bottom:944.128950px;}
.yc6{bottom:944.162175px;}
.y19e{bottom:944.614200px;}
.y150{bottom:944.941275px;}
.y95{bottom:945.295950px;}
.y77{bottom:949.161450px;}
.y1a1{bottom:958.053900px;}
.y198{bottom:961.976400px;}
.y10b{bottom:967.539450px;}
.y153{bottom:967.746150px;}
.y53{bottom:967.850550px;}
.y125{bottom:969.606450px;}
.ye3{bottom:969.632175px;}
.yc5{bottom:969.665400px;}
.y19d{bottom:970.107750px;}
.y14f{bottom:970.444500px;}
.y76{bottom:974.661450px;}
.y1a0{bottom:976.053900px;}
.y94{bottom:979.312350px;}
.y8{bottom:980.678700px;}
.y197{bottom:987.476400px;}
.y10a{bottom:993.039450px;}
.ye2{bottom:995.135400px;}
.yc4{bottom:995.152500px;}
.y19c{bottom:995.610975px;}
.y14e{bottom:995.947725px;}
.y75{bottom:1000.161450px;}
.y7{bottom:1006.181925px;}
.y196{bottom:1012.976400px;}
.y109{bottom:1018.539450px;}
.ye1{bottom:1020.638625px;}
.yc3{bottom:1020.655725px;}
.y124{bottom:1021.098075px;}
.y52{bottom:1021.114200px;}
.y14d{bottom:1021.450950px;}
.y171{bottom:1022.647725px;}
.y74{bottom:1025.661450px;}
.y6{bottom:1031.685150px;}
.y195{bottom:1038.466725px;}
.y108{bottom:1044.039450px;}
.ye0{bottom:1046.141850px;}
.yc2{bottom:1046.158950px;}
.y123{bottom:1046.601300px;}
.y19b{bottom:1046.607750px;}
.y93{bottom:1046.610975px;}
.y51{bottom:1046.614200px;}
.y14c{bottom:1046.947725px;}
.y170{bottom:1048.150950px;}
.y73{bottom:1051.161450px;}
.y194{bottom:1063.969950px;}
.y107{bottom:1069.539450px;}
.yc1{bottom:1071.662175px;}
.y122{bottom:1072.104525px;}
.y19a{bottom:1072.110975px;}
.y50{bottom:1072.114200px;}
.y14b{bottom:1072.450950px;}
.y72{bottom:1076.661450px;}
.y5{bottom:1079.499150px;}
.y173{bottom:1084.182150px;}
.y193{bottom:1089.473175px;}
.y106{bottom:1095.039450px;}
.yc0{bottom:1097.165400px;}
.ydf{bottom:1097.607750px;}
.y4f{bottom:1097.614200px;}
.y71{bottom:1102.161450px;}
.y172{bottom:1109.675325px;}
.y192{bottom:1114.976400px;}
.y14a{bottom:1123.099425px;}
.y4e{bottom:1123.110975px;}
.y92{bottom:1123.114200px;}
.y191{bottom:1147.265100px;}
.y16f{bottom:1148.596350px;}
.y149{bottom:1148.602650px;}
.y91{bottom:1148.608425px;}
.ybf{bottom:1148.613900px;}
.y4d{bottom:1148.614200px;}
.y70{bottom:1148.614500px;}
.y10d{bottom:1148.620275px;}
.y1e{bottom:1193.069250px;}
.h21{height:33.550781px;}
.h20{height:34.125000px;}
.hb{height:45.325500px;}
.h1b{height:45.855176px;}
.ha{height:46.371000px;}
.h1f{height:47.929688px;}
.h1e{height:48.750000px;}
.hc{height:49.434000px;}
.he{height:50.086523px;}
.h5{height:50.943750px;}
.h7{height:50.945250px;}
.h9{height:50.950195px;}
.h10{height:50.951550px;}
.h6{height:50.952150px;}
.hf{height:50.956650px;}
.h12{height:50.966850px;}
.h16{height:50.969550px;}
.h1d{height:50.970450px;}
.h1c{height:50.971050px;}
.h17{height:50.982450px;}
.h11{height:50.995350px;}
.h19{height:51.000750px;}
.h18{height:51.008250px;}
.h1a{height:51.021150px;}
.h13{height:51.770361px;}
.h15{height:52.045898px;}
.h8{height:55.704000px;}
.hd{height:61.056000px;}
.h14{height:68.179200px;}
.h4{height:73.776000px;}
.h3{height:94.374000px;}
.h2{height:142.464000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:32.952750px;}
.x4{left:34.015800px;}
.x8{left:39.491250px;}
.xa{left:41.320875px;}
.x9{left:49.315875px;}
.x1{left:54.757500px;}
.xb{left:68.161050px;}
.x5{left:74.061300px;}
.x16{left:77.598450px;}
.x6{left:89.782875px;}
.x7{left:95.610000px;}
.x18{left:162.648450px;}
.xf{left:168.141750px;}
.xd{left:169.653450px;}
.xe{left:170.929050px;}
.x15{left:192.572325px;}
.x17{left:198.693450px;}
.x19{left:209.565300px;}
.x10{left:213.129000px;}
.x11{left:215.067450px;}
.x12{left:216.850350px;}
.x3{left:219.188850px;}
.x14{left:260.831700px;}
.xc{left:534.341100px;}
.x2{left:576.062100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-3.344000pt;}
.ls15{letter-spacing:-2.730933pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.022933pt;}
.lsd{letter-spacing:0.055733pt;}
.lsb{letter-spacing:0.111467pt;}
.lsc{letter-spacing:0.167200pt;}
.ls14{letter-spacing:0.222933pt;}
.ls13{letter-spacing:0.278667pt;}
.lsa{letter-spacing:1.003200pt;}
.ls7{letter-spacing:1.226133pt;}
.ls10{letter-spacing:1.281867pt;}
.ls2{letter-spacing:1.337600pt;}
.ls12{letter-spacing:1.449067pt;}
.ls8{letter-spacing:1.560533pt;}
.ls11{letter-spacing:1.616267pt;}
.ls5{letter-spacing:1.672000pt;}
.ls6{letter-spacing:1.727733pt;}
.ls9{letter-spacing:1.783467pt;}
.ls3{letter-spacing:1.950667pt;}
.lse{letter-spacing:2.062133pt;}
.lsf{letter-spacing:3.344000pt;}
.ls4{letter-spacing:3.455467pt;}
.wsd{word-spacing:-21.266667pt;}
.ws5{word-spacing:-17.600000pt;}
.wse{word-spacing:-16.218400pt;}
.ws79{word-spacing:-14.490667pt;}
.ws3{word-spacing:-14.213333pt;}
.ws36{word-spacing:-13.877600pt;}
.ws43{word-spacing:-11.759733pt;}
.wsb1{word-spacing:-10.533600pt;}
.ws7d{word-spacing:-4.402933pt;}
.ws2d{word-spacing:-4.347200pt;}
.ws20{word-spacing:-4.291467pt;}
.ws1{word-spacing:-4.181333pt;}
.ws21{word-spacing:-4.180000pt;}
.ws1f{word-spacing:-4.124267pt;}
.ws4e{word-spacing:-4.068533pt;}
.ws7e{word-spacing:-3.845600pt;}
.ws7a{word-spacing:-3.789867pt;}
.ws2c{word-spacing:-3.678400pt;}
.ws7b{word-spacing:-3.622667pt;}
.ws26{word-spacing:-3.566933pt;}
.ws3d{word-spacing:-3.511200pt;}
.ws23{word-spacing:-3.455467pt;}
.ws3c{word-spacing:-3.399733pt;}
.ws3b{word-spacing:-3.344000pt;}
.ws22{word-spacing:-3.288267pt;}
.ws3e{word-spacing:-3.232533pt;}
.ws3a{word-spacing:-3.176800pt;}
.ws34{word-spacing:-3.121067pt;}
.ws39{word-spacing:-3.009600pt;}
.ws25{word-spacing:-2.953867pt;}
.ws31{word-spacing:-2.898133pt;}
.ws2a{word-spacing:-2.842400pt;}
.ws29{word-spacing:-2.730933pt;}
.ws2f{word-spacing:-2.619467pt;}
.ws30{word-spacing:-2.508000pt;}
.ws6c{word-spacing:-2.452267pt;}
.ws73{word-spacing:-2.396533pt;}
.ws6d{word-spacing:-2.340800pt;}
.ws7c{word-spacing:-2.285067pt;}
.ws38{word-spacing:-2.229333pt;}
.ws42{word-spacing:-2.173600pt;}
.ws24{word-spacing:-2.117867pt;}
.ws11{word-spacing:-2.062133pt;}
.ws59{word-spacing:-2.006400pt;}
.ws7f{word-spacing:-1.950667pt;}
.ws70{word-spacing:-1.894933pt;}
.ws9c{word-spacing:-1.839200pt;}
.ws37{word-spacing:-1.783467pt;}
.wsa{word-spacing:-1.727733pt;}
.wsbb{word-spacing:-1.706667pt;}
.ws77{word-spacing:-1.672000pt;}
.wsba{word-spacing:-1.653333pt;}
.ws4c{word-spacing:-1.616267pt;}
.ws9e{word-spacing:-1.584000pt;}
.ws40{word-spacing:-1.560533pt;}
.ws83{word-spacing:-1.449067pt;}
.ws53{word-spacing:-1.393333pt;}
.ws18{word-spacing:-1.281867pt;}
.ws6{word-spacing:-1.226133pt;}
.wsb5{word-spacing:-1.170400pt;}
.wsb2{word-spacing:-1.114667pt;}
.ws52{word-spacing:-1.058933pt;}
.ws4f{word-spacing:-1.003200pt;}
.ws35{word-spacing:-0.947467pt;}
.ws2e{word-spacing:-0.836000pt;}
.wsae{word-spacing:-0.780267pt;}
.ws3f{word-spacing:-0.724533pt;}
.ws64{word-spacing:-0.501600pt;}
.ws6a{word-spacing:-0.445867pt;}
.ws41{word-spacing:-0.390133pt;}
.ws33{word-spacing:-0.334400pt;}
.ws28{word-spacing:-0.278667pt;}
.ws27{word-spacing:-0.222933pt;}
.ws32{word-spacing:-0.167200pt;}
.ws4a{word-spacing:-0.111467pt;}
.ws4{word-spacing:-0.058667pt;}
.ws2b{word-spacing:-0.055733pt;}
.ws2{word-spacing:0.000000pt;}
.ws57{word-spacing:0.055733pt;}
.ws44{word-spacing:0.111467pt;}
.wsa6{word-spacing:0.167200pt;}
.ws9d{word-spacing:0.278667pt;}
.ws49{word-spacing:0.334400pt;}
.ws81{word-spacing:0.390133pt;}
.ws80{word-spacing:0.445867pt;}
.ws6b{word-spacing:0.557333pt;}
.ws46{word-spacing:0.613067pt;}
.ws9b{word-spacing:0.668800pt;}
.ws69{word-spacing:0.724533pt;}
.ws78{word-spacing:0.780267pt;}
.ws87{word-spacing:0.836000pt;}
.ws71{word-spacing:0.947467pt;}
.ws8a{word-spacing:1.058933pt;}
.ws5b{word-spacing:1.170400pt;}
.ws4b{word-spacing:1.226133pt;}
.wsad{word-spacing:1.281867pt;}
.wsaa{word-spacing:1.337600pt;}
.ws56{word-spacing:1.393333pt;}
.ws5d{word-spacing:1.449067pt;}
.wsa3{word-spacing:1.504800pt;}
.wsb7{word-spacing:1.546667pt;}
.wsbc{word-spacing:1.653333pt;}
.ws8d{word-spacing:1.672000pt;}
.wsbd{word-spacing:1.717333pt;}
.ws90{word-spacing:1.727733pt;}
.wsa0{word-spacing:1.742400pt;}
.ws8b{word-spacing:2.062133pt;}
.ws5e{word-spacing:2.117867pt;}
.ws88{word-spacing:2.173600pt;}
.ws47{word-spacing:2.229333pt;}
.ws89{word-spacing:2.285067pt;}
.wsa9{word-spacing:2.340800pt;}
.ws82{word-spacing:2.396533pt;}
.ws8c{word-spacing:2.563733pt;}
.ws58{word-spacing:2.675200pt;}
.ws5c{word-spacing:2.730933pt;}
.wsb4{word-spacing:2.786667pt;}
.ws91{word-spacing:2.842400pt;}
.wsb3{word-spacing:2.898133pt;}
.ws8f{word-spacing:2.953867pt;}
.ws63{word-spacing:3.009600pt;}
.ws51{word-spacing:3.121067pt;}
.ws66{word-spacing:3.232533pt;}
.ws50{word-spacing:3.288267pt;}
.ws6e{word-spacing:3.344000pt;}
.ws9f{word-spacing:3.379200pt;}
.wsbe{word-spacing:3.397333pt;}
.ws4d{word-spacing:3.399733pt;}
.ws86{word-spacing:3.455467pt;}
.ws74{word-spacing:3.566933pt;}
.ws55{word-spacing:3.678400pt;}
.ws6f{word-spacing:3.734133pt;}
.ws48{word-spacing:3.845600pt;}
.wsb9{word-spacing:3.893333pt;}
.ws5f{word-spacing:4.012800pt;}
.ws61{word-spacing:4.068533pt;}
.ws45{word-spacing:4.124267pt;}
.ws60{word-spacing:4.180000pt;}
.wsb0{word-spacing:4.291467pt;}
.wsa4{word-spacing:4.347200pt;}
.wsaf{word-spacing:4.570133pt;}
.ws5a{word-spacing:4.681600pt;}
.ws85{word-spacing:4.793067pt;}
.ws96{word-spacing:4.904533pt;}
.wsa7{word-spacing:5.016000pt;}
.ws54{word-spacing:5.183200pt;}
.wsb6{word-spacing:5.238933pt;}
.ws1c{word-spacing:5.461867pt;}
.ws76{word-spacing:5.517600pt;}
.wsa5{word-spacing:5.629067pt;}
.wsc{word-spacing:5.684800pt;}
.ws8{word-spacing:5.740533pt;}
.ws72{word-spacing:5.796267pt;}
.wsa2{word-spacing:5.963467pt;}
.ws62{word-spacing:6.019200pt;}
.ws84{word-spacing:6.186400pt;}
.wsb{word-spacing:6.297867pt;}
.ws67{word-spacing:6.409333pt;}
.wsb8{word-spacing:6.506667pt;}
.ws8e{word-spacing:6.576533pt;}
.ws68{word-spacing:6.688000pt;}
.ws65{word-spacing:6.855200pt;}
.ws17{word-spacing:7.022400pt;}
.ws75{word-spacing:7.078133pt;}
.ws92{word-spacing:7.133867pt;}
.ws16{word-spacing:7.356800pt;}
.ws93{word-spacing:7.468267pt;}
.wsa1{word-spacing:7.524000pt;}
.ws95{word-spacing:7.858400pt;}
.wsf{word-spacing:8.081333pt;}
.ws9{word-spacing:8.192800pt;}
.ws7{word-spacing:8.248533pt;}
.ws1d{word-spacing:8.527200pt;}
.wsa8{word-spacing:9.307467pt;}
.ws1a{word-spacing:9.418933pt;}
.ws97{word-spacing:9.586133pt;}
.ws1e{word-spacing:9.809067pt;}
.ws19{word-spacing:9.864800pt;}
.ws14{word-spacing:10.310667pt;}
.ws15{word-spacing:10.812267pt;}
.ws94{word-spacing:11.090933pt;}
.wsac{word-spacing:11.146667pt;}
.ws1b{word-spacing:11.425333pt;}
.wsab{word-spacing:11.704000pt;}
.ws10{word-spacing:12.651467pt;}
.ws98{word-spacing:15.270933pt;}
.ws99{word-spacing:15.772533pt;}
.ws9a{word-spacing:16.497067pt;}
.ws13{word-spacing:22.794933pt;}
.ws12{word-spacing:23.853867pt;}
.ws0{word-spacing:25.386667pt;}
._9{margin-left:-14.213333pt;}
._e{margin-left:-11.587093pt;}
._5{margin-left:-6.914667pt;}
._2{margin-left:-4.704000pt;}
._b{margin-left:-3.754320pt;}
._1{margin-left:-2.688000pt;}
._0{margin-left:-1.568000pt;}
._6{width:1.610667pt;}
._3{width:2.676800pt;}
._f{width:3.767867pt;}
._4{width:4.704000pt;}
._12{width:5.638293pt;}
._8{width:6.542933pt;}
._11{width:7.596453pt;}
._17{width:8.511360pt;}
._15{width:11.141093pt;}
._13{width:422.928000pt;}
._18{width:427.210667pt;}
._16{width:429.146667pt;}
._14{width:440.938667pt;}
._c{width:444.869333pt;}
._d{width:448.624000pt;}
._a{width:450.560000pt;}
._10{width:451.674667pt;}
._7{width:462.352000pt;}
.fsa{font-size:37.333333pt;}
.fs8{font-size:52.800000pt;}
.fs9{font-size:53.333333pt;}
.fs5{font-size:54.666667pt;}
.fs3{font-size:55.733333pt;}
.fs4{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs7{font-size:71.466667pt;}
.fs2{font-size:77.333333pt;}
.fs1{font-size:112.000000pt;}
.fs0{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.y199{bottom:38.297867pt;}
.y174{bottom:38.352933pt;}
.y1f{bottom:41.242800pt;}
.y13{bottom:42.077333pt;}
.y1ad{bottom:81.681200pt;}
.y1ac{bottom:92.881200pt;}
.y1ab{bottom:104.081200pt;}
.y148{bottom:112.638267pt;}
.y90{bottom:113.242533pt;}
.y105{bottom:113.341933pt;}
.y4c{bottom:113.559267pt;}
.ybe{bottom:113.567867pt;}
.yde{bottom:113.793600pt;}
.y36{bottom:115.168933pt;}
.y6f{bottom:115.184667pt;}
.y1aa{bottom:126.481200pt;}
.y121{bottom:128.677933pt;}
.y147{bottom:135.307800pt;}
.y8f{bottom:135.897733pt;}
.y104{bottom:136.011467pt;}
.y4b{bottom:136.228800pt;}
.ybd{bottom:136.237533pt;}
.ydd{bottom:136.460267pt;}
.y1a9{bottom:137.681200pt;}
.y35{bottom:137.832733pt;}
.y6e{bottom:137.851333pt;}
.y189{bottom:148.173533pt;}
.y120{bottom:151.347467pt;}
.y146{bottom:157.977333pt;}
.y8e{bottom:158.567267pt;}
.y103{bottom:158.675267pt;}
.y4a{bottom:158.898333pt;}
.ydc{bottom:159.126933pt;}
.y34{bottom:160.502267pt;}
.y6d{bottom:160.518000pt;}
.ybc{bottom:170.276667pt;}
.y188{bottom:170.843067pt;}
.y11f{bottom:174.008400pt;}
.y16e{bottom:179.624133pt;}
.y145{bottom:180.644000pt;}
.y8d{bottom:181.236800pt;}
.y102{bottom:181.344800pt;}
.y49{bottom:181.567867pt;}
.y33{bottom:183.168933pt;}
.y6c{bottom:183.184667pt;}
.ydb{bottom:189.108667pt;}
.ybb{bottom:192.926133pt;}
.y187{bottom:193.512600pt;}
.y11e{bottom:196.677933pt;}
.y16d{bottom:202.293667pt;}
.y144{bottom:203.307800pt;}
.y8c{bottom:203.906333pt;}
.y48{bottom:204.234533pt;}
.y32{bottom:205.835600pt;}
.y6b{bottom:205.848467pt;}
.y101{bottom:210.617467pt;}
.yba{bottom:215.595667pt;}
.y186{bottom:216.182133pt;}
.y11d{bottom:219.347467pt;}
.y16c{bottom:224.963200pt;}
.y143{bottom:225.977333pt;}
.y8b{bottom:226.575867pt;}
.y47{bottom:226.901200pt;}
.y31{bottom:228.502267pt;}
.y6a{bottom:228.518000pt;}
.yb9{bottom:238.265200pt;}
.y185{bottom:238.843067pt;}
.y100{bottom:240.854133pt;}
.y11c{bottom:242.005533pt;}
.y16b{bottom:247.632733pt;}
.y142{bottom:248.644000pt;}
.yda{bottom:249.215733pt;}
.y46{bottom:249.567867pt;}
.y30{bottom:251.168933pt;}
.y69{bottom:251.184667pt;}
.yb8{bottom:260.934733pt;}
.y184{bottom:261.512600pt;}
.y11b{bottom:264.675067pt;}
.y8a{bottom:267.613200pt;}
.y16a{bottom:270.302267pt;}
.yd9{bottom:271.885267pt;}
.y45{bottom:272.234533pt;}
.y2f{bottom:273.832733pt;}
.y68{bottom:273.851333pt;}
.yb7{bottom:283.604267pt;}
.y183{bottom:284.182133pt;}
.y11a{bottom:287.344600pt;}
.y89{bottom:290.282733pt;}
.y169{bottom:292.971800pt;}
.y141{bottom:293.223800pt;}
.yd8{bottom:294.554800pt;}
.y44{bottom:294.901200pt;}
.y2e{bottom:296.502267pt;}
.y67{bottom:296.518000pt;}
.yff{bottom:298.365867pt;}
.yb6{bottom:306.273800pt;}
.y182{bottom:306.848800pt;}
.y119{bottom:310.014133pt;}
.y88{bottom:312.952267pt;}
.y168{bottom:315.641333pt;}
.y140{bottom:315.893333pt;}
.yd7{bottom:317.221467pt;}
.y66{bottom:319.184667pt;}
.yfe{bottom:321.032533pt;}
.yb5{bottom:328.943333pt;}
.y87{bottom:335.621800pt;}
.y167{bottom:338.308000pt;}
.y13f{bottom:338.557133pt;}
.y2d{bottom:339.004267pt;}
.yd6{bottom:339.870933pt;}
.y43{bottom:340.686000pt;}
.y118{bottom:340.704000pt;}
.y65{bottom:341.851333pt;}
.yfd{bottom:343.699200pt;}
.y181{bottom:349.421933pt;}
.yb4{bottom:351.604267pt;}
.y86{bottom:358.291333pt;}
.y166{bottom:360.971800pt;}
.y13e{bottom:361.226667pt;}
.y2c{bottom:361.670933pt;}
.yd5{bottom:362.540467pt;}
.y42{bottom:363.352667pt;}
.y64{bottom:364.518000pt;}
.yfc{bottom:366.365867pt;}
.y3{bottom:371.217200pt;}
.y180{bottom:372.091467pt;}
.yb3{bottom:374.273800pt;}
.y85{bottom:380.960867pt;}
.y165{bottom:383.641333pt;}
.y2b{bottom:384.337600pt;}
.y117{bottom:384.537600pt;}
.yd4{bottom:385.210000pt;}
.y41{bottom:386.019333pt;}
.y63{bottom:387.184667pt;}
.yfb{bottom:389.032533pt;}
.y13d{bottom:391.916667pt;}
.y17f{bottom:394.761000pt;}
.yb2{bottom:396.943333pt;}
.y84{bottom:403.630400pt;}
.y164{bottom:406.305133pt;}
.y2a{bottom:406.978467pt;}
.y116{bottom:407.207133pt;}
.yd3{bottom:407.879533pt;}
.y40{bottom:408.686000pt;}
.y62{bottom:409.851333pt;}
.yfa{bottom:411.699200pt;}
.y17e{bottom:417.430533pt;}
.y83{bottom:426.299933pt;}
.yb1{bottom:428.107600pt;}
.y163{bottom:428.974667pt;}
.y29{bottom:429.648000pt;}
.y115{bottom:429.876667pt;}
.yd2{bottom:430.549067pt;}
.y3f{bottom:431.352667pt;}
.y61{bottom:432.518000pt;}
.yf9{bottom:434.365867pt;}
.y17d{bottom:440.100067pt;}
.y13c{bottom:447.820400pt;}
.y82{bottom:448.969467pt;}
.yb0{bottom:450.777133pt;}
.y28{bottom:452.317533pt;}
.y114{bottom:452.546200pt;}
.yd1{bottom:453.218600pt;}
.y3e{bottom:454.019333pt;}
.yf8{bottom:457.032533pt;}
.y17c{bottom:462.769600pt;}
.y13b{bottom:466.485200pt;}
.y60{bottom:468.848267pt;}
.y81{bottom:471.636133pt;}
.yaf{bottom:473.446667pt;}
.y27{bottom:474.987067pt;}
.y113{bottom:475.215733pt;}
.y162{bottom:475.493467pt;}
.yd0{bottom:475.888133pt;}
.yf7{bottom:479.699200pt;}
.y3d{bottom:483.665200pt;}
.y1c{bottom:484.057333pt;}
.y13a{bottom:485.150000pt;}
.y17b{bottom:485.439133pt;}
.y5f{bottom:491.517800pt;}
.yae{bottom:496.116200pt;}
.y26{bottom:497.656600pt;}
.y112{bottom:497.885267pt;}
.y161{bottom:498.163000pt;}
.yf6{bottom:502.365867pt;}
.y1b{bottom:502.726000pt;}
.y139{bottom:503.816667pt;}
.y17a{bottom:508.108667pt;}
.ycf{bottom:510.168733pt;}
.y5e{bottom:514.187333pt;}
.ya3{bottom:516.323867pt;}
.yad{bottom:518.785733pt;}
.y25{bottom:520.326133pt;}
.y111{bottom:520.554800pt;}
.y160{bottom:520.832533pt;}
.y138{bottom:522.483333pt;}
.yf5{bottom:525.032533pt;}
.y2{bottom:526.094800pt;}
.yce{bottom:532.838267pt;}
.y1a{bottom:533.394000pt;}
.y5d{bottom:536.854000pt;}
.ya2{bottom:538.976200pt;}
.y24{bottom:542.995667pt;}
.y110{bottom:543.218600pt;}
.y15f{bottom:543.502067pt;}
.y3c{bottom:544.444533pt;}
.y179{bottom:547.622867pt;}
.yf4{bottom:547.699200pt;}
.yac{bottom:554.560000pt;}
.ycd{bottom:555.502067pt;}
.y12{bottom:557.149467pt;}
.y5c{bottom:559.520667pt;}
.ya1{bottom:561.645733pt;}
.y19{bottom:564.062000pt;}
.y23{bottom:565.665200pt;}
.y10f{bottom:565.888133pt;}
.y15e{bottom:566.171600pt;}
.y3b{bottom:567.111200pt;}
.y137{bottom:567.150333pt;}
.y178{bottom:570.292400pt;}
.y1{bottom:572.761467pt;}
.yab{bottom:577.220933pt;}
.ycc{bottom:578.171600pt;}
.y11{bottom:579.815800pt;}
.y5b{bottom:582.187333pt;}
.y18{bottom:582.730667pt;}
.ya0{bottom:584.315267pt;}
.y22{bottom:588.334733pt;}
.yf3{bottom:588.887400pt;}
.y3a{bottom:589.769267pt;}
.y136{bottom:589.819867pt;}
.y177{bottom:592.953133pt;}
.y10e{bottom:596.578133pt;}
.yaa{bottom:599.890467pt;}
.y10{bottom:602.485333pt;}
.y9f{bottom:606.984800pt;}
.y15d{bottom:608.551000pt;}
.y21{bottom:611.004267pt;}
.yf2{bottom:611.556933pt;}
.y39{bottom:612.438800pt;}
.ycb{bottom:612.452200pt;}
.y135{bottom:612.477933pt;}
.y17{bottom:613.398667pt;}
.ya9{bottom:622.560000pt;}
.y80{bottom:622.593933pt;}
.y9e{bottom:629.654333pt;}
.y15c{bottom:631.220533pt;}
.y16{bottom:632.067333pt;}
.yf1{bottom:634.226467pt;}
.y38{bottom:635.108333pt;}
.yca{bottom:635.121733pt;}
.y134{bottom:635.147467pt;}
.y176{bottom:636.620200pt;}
.y20{bottom:641.838400pt;}
.ya8{bottom:645.214000pt;}
.y7f{bottom:645.263467pt;}
.yf{bottom:646.333533pt;}
.y4{bottom:650.909200pt;}
.y9d{bottom:652.323867pt;}
.y15b{bottom:653.890067pt;}
.yf0{bottom:656.896000pt;}
.y37{bottom:657.777867pt;}
.yc9{bottom:657.785533pt;}
.y133{bottom:657.817000pt;}
.y12e{bottom:657.869533pt;}
.y175{bottom:659.289733pt;}
.y15{bottom:662.735333pt;}
.ya7{bottom:667.883533pt;}
.y7e{bottom:667.930133pt;}
.ye{bottom:669.003067pt;}
.y9c{bottom:674.981933pt;}
.y15a{bottom:676.559600pt;}
.yef{bottom:679.562667pt;}
.y14{bottom:680.062667pt;}
.yc8{bottom:680.455067pt;}
.y132{bottom:680.486533pt;}
.y12d{bottom:680.539067pt;}
.y1a8{bottom:683.536800pt;}
.y7d{bottom:690.596800pt;}
.yd{bottom:691.667867pt;}
.y9b{bottom:697.651467pt;}
.y159{bottom:699.229133pt;}
.y1a7{bottom:699.536800pt;}
.y190{bottom:699.617200pt;}
.y5a{bottom:701.646667pt;}
.yee{bottom:702.229333pt;}
.y131{bottom:703.147467pt;}
.y12c{bottom:703.197133pt;}
.y1d{bottom:706.726667pt;}
.ya6{bottom:711.076867pt;}
.y7c{bottom:713.263467pt;}
.y1a6{bottom:715.536800pt;}
.y18f{bottom:718.293200pt;}
.y9a{bottom:720.321000pt;}
.y158{bottom:721.898667pt;}
.y59{bottom:724.313333pt;}
.yed{bottom:724.896000pt;}
.y130{bottom:725.817000pt;}
.y12b{bottom:725.866667pt;}
.ye9{bottom:725.878067pt;}
.y1a5{bottom:731.536800pt;}
.ya5{bottom:733.746400pt;}
.yc{bottom:735.641467pt;}
.y7b{bottom:735.930133pt;}
.y18e{bottom:736.958000pt;}
.y99{bottom:742.990533pt;}
.y157{bottom:744.565333pt;}
.y58{bottom:746.980000pt;}
.yec{bottom:747.562667pt;}
.y12f{bottom:748.486533pt;}
.y12a{bottom:748.536200pt;}
.ye8{bottom:748.547600pt;}
.y18d{bottom:755.622800pt;}
.yb{bottom:758.311000pt;}
.y7a{bottom:758.596800pt;}
.ya4{bottom:763.019067pt;}
.y98{bottom:765.651467pt;}
.y57{bottom:769.646667pt;}
.yeb{bottom:770.226467pt;}
.y129{bottom:771.205733pt;}
.ye7{bottom:771.217133pt;}
.y18c{bottom:774.287600pt;}
.y97{bottom:788.321000pt;}
.y156{bottom:792.210200pt;}
.y56{bottom:792.313333pt;}
.yea{bottom:792.896000pt;}
.y18b{bottom:792.952400pt;}
.y128{bottom:793.866667pt;}
.ye6{bottom:793.886667pt;}
.y152{bottom:794.608733pt;}
.y79{bottom:798.365733pt;}
.ya{bottom:802.730467pt;}
.y1a4{bottom:803.603467pt;}
.y96{bottom:810.990533pt;}
.y18a{bottom:811.617200pt;}
.y155{bottom:814.879733pt;}
.y55{bottom:814.980000pt;}
.y127{bottom:816.536200pt;}
.ye5{bottom:816.556200pt;}
.yc7{bottom:816.585733pt;}
.y19f{bottom:816.987533pt;}
.y151{bottom:817.278267pt;}
.y1a3{bottom:819.603467pt;}
.y78{bottom:821.032400pt;}
.y9{bottom:825.400000pt;}
.y1a2{bottom:835.603467pt;}
.y10c{bottom:837.368400pt;}
.y154{bottom:837.549267pt;}
.y54{bottom:837.646667pt;}
.y126{bottom:839.205733pt;}
.ye4{bottom:839.225733pt;}
.yc6{bottom:839.255267pt;}
.y19e{bottom:839.657067pt;}
.y150{bottom:839.947800pt;}
.y95{bottom:840.263067pt;}
.y77{bottom:843.699067pt;}
.y1a1{bottom:851.603467pt;}
.y198{bottom:855.090133pt;}
.y10b{bottom:860.035067pt;}
.y153{bottom:860.218800pt;}
.y53{bottom:860.311600pt;}
.y125{bottom:861.872400pt;}
.ye3{bottom:861.895267pt;}
.yc5{bottom:861.924800pt;}
.y19d{bottom:862.318000pt;}
.y14f{bottom:862.617333pt;}
.y76{bottom:866.365733pt;}
.y1a0{bottom:867.603467pt;}
.y94{bottom:870.499867pt;}
.y8{bottom:871.714400pt;}
.y197{bottom:877.756800pt;}
.y10a{bottom:882.701733pt;}
.ye2{bottom:884.564800pt;}
.yc4{bottom:884.580000pt;}
.y19c{bottom:884.987533pt;}
.y14e{bottom:885.286867pt;}
.y75{bottom:889.032400pt;}
.y7{bottom:894.383933pt;}
.y196{bottom:900.423467pt;}
.y109{bottom:905.368400pt;}
.ye1{bottom:907.234333pt;}
.yc3{bottom:907.249533pt;}
.y124{bottom:907.642733pt;}
.y52{bottom:907.657067pt;}
.y14d{bottom:907.956400pt;}
.y171{bottom:909.020200pt;}
.y74{bottom:911.699067pt;}
.y6{bottom:917.053467pt;}
.y195{bottom:923.081533pt;}
.y108{bottom:928.035067pt;}
.ye0{bottom:929.903867pt;}
.yc2{bottom:929.919067pt;}
.y123{bottom:930.312267pt;}
.y19b{bottom:930.318000pt;}
.y93{bottom:930.320867pt;}
.y51{bottom:930.323733pt;}
.y14c{bottom:930.620200pt;}
.y170{bottom:931.689733pt;}
.y73{bottom:934.365733pt;}
.y194{bottom:945.751067pt;}
.y107{bottom:950.701733pt;}
.yc1{bottom:952.588600pt;}
.y122{bottom:952.981800pt;}
.y19a{bottom:952.987533pt;}
.y50{bottom:952.990400pt;}
.y14b{bottom:953.289733pt;}
.y72{bottom:957.032400pt;}
.y5{bottom:959.554800pt;}
.y173{bottom:963.717467pt;}
.y193{bottom:968.420600pt;}
.y106{bottom:973.368400pt;}
.yc0{bottom:975.258133pt;}
.ydf{bottom:975.651333pt;}
.y4f{bottom:975.657067pt;}
.y71{bottom:979.699067pt;}
.y172{bottom:986.378067pt;}
.y192{bottom:991.090133pt;}
.y14a{bottom:998.310600pt;}
.y4e{bottom:998.320867pt;}
.y92{bottom:998.323733pt;}
.y191{bottom:1019.791200pt;}
.y16f{bottom:1020.974533pt;}
.y149{bottom:1020.980133pt;}
.y91{bottom:1020.985267pt;}
.ybf{bottom:1020.990133pt;}
.y4d{bottom:1020.990400pt;}
.y70{bottom:1020.990667pt;}
.y10d{bottom:1020.995800pt;}
.y1e{bottom:1060.506000pt;}
.h21{height:29.822917pt;}
.h20{height:30.333333pt;}
.hb{height:40.289333pt;}
.h1b{height:40.760156pt;}
.ha{height:41.218667pt;}
.h1f{height:42.604167pt;}
.h1e{height:43.333333pt;}
.hc{height:43.941333pt;}
.he{height:44.521354pt;}
.h5{height:45.283333pt;}
.h7{height:45.284667pt;}
.h9{height:45.289062pt;}
.h10{height:45.290267pt;}
.h6{height:45.290800pt;}
.hf{height:45.294800pt;}
.h12{height:45.303867pt;}
.h16{height:45.306267pt;}
.h1d{height:45.307067pt;}
.h1c{height:45.307600pt;}
.h17{height:45.317733pt;}
.h11{height:45.329200pt;}
.h19{height:45.334000pt;}
.h18{height:45.340667pt;}
.h1a{height:45.352133pt;}
.h13{height:46.018099pt;}
.h15{height:46.263021pt;}
.h8{height:49.514667pt;}
.hd{height:54.272000pt;}
.h14{height:60.603733pt;}
.h4{height:65.578667pt;}
.h3{height:83.888000pt;}
.h2{height:126.634667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:29.291333pt;}
.x4{left:30.236267pt;}
.x8{left:35.103333pt;}
.xa{left:36.729667pt;}
.x9{left:43.836333pt;}
.x1{left:48.673333pt;}
.xb{left:60.587600pt;}
.x5{left:65.832267pt;}
.x16{left:68.976400pt;}
.x6{left:79.807000pt;}
.x7{left:84.986667pt;}
.x18{left:144.576400pt;}
.xf{left:149.459333pt;}
.xd{left:150.803067pt;}
.xe{left:151.936933pt;}
.x15{left:171.175400pt;}
.x17{left:176.616400pt;}
.x19{left:186.280267pt;}
.x10{left:189.448000pt;}
.x11{left:191.171067pt;}
.x12{left:192.755867pt;}
.x3{left:194.834533pt;}
.x14{left:231.850400pt;}
.xc{left:474.969867pt;}
.x2{left:512.055200pt;}
}




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