
    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_b8d884202e8c1937c723b203.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f664fa835d64aaecbea1d962.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.946000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_06663cc6810303b79b326d67.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_71becf94e07f9d56c95d0501.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_e6a949bfeed082d1707c499d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.968000;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_466fa4d26b702105a40d5af0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_9656a4496e752137f7686398.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.018000;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_9656a4496e752137f7686398.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.018000;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_006defddd62811fadfaa0162.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.946000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_12656a247a61834ea4c3fe06.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_bd044a55893f486d9e9b012a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_9b31a2929368e8a3aaf02ee9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.699000;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_8c973b858c270437f026b831.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.686000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_69747bccfbacbb97dd237432.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.945000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_62f371b58addea060cdf9daa.woff2')format("woff");}.fff{font-family:fff;line-height:0.876000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_9d6a7430eceb48bed7696565.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.946000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_5a14f24f6640179dd2dc9393.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.961000;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;}
.m1f{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.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);}
.md{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;}
.v2{vertical-align:23.748000px;}
.v1{vertical-align:26.028000px;}
.ls4{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.002712px;}
.lsd{letter-spacing:0.003961px;}
.ls0{letter-spacing:2.989654px;}
.ls3{letter-spacing:8.961408px;}
.ls9{letter-spacing:10.910712px;}
.ls2{letter-spacing:13.449600px;}
.ls8{letter-spacing:16.101832px;}
.ls6{letter-spacing:16.491798px;}
.ls5{letter-spacing:16.497865px;}
.ls7{letter-spacing:16.690923px;}
.lsb{letter-spacing:22.088915px;}
.lsc{letter-spacing:27.425477px;}
.ls1{letter-spacing:35.865600px;}
.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;}
}
.ws2{word-spacing:-17.932800px;}
.ws2a{word-spacing:-16.363650px;}
.ws18{word-spacing:-7.049647px;}
.ws17{word-spacing:-6.599670px;}
.ws50{word-spacing:-5.021150px;}
.ws4d{word-spacing:-4.961375px;}
.ws9d{word-spacing:-4.843640px;}
.ws1e{word-spacing:-4.581822px;}
.ws19{word-spacing:-4.349782px;}
.ws2d{word-spacing:-4.123640px;}
.ws7b{word-spacing:-3.730912px;}
.ws7a{word-spacing:-3.600003px;}
.ws38{word-spacing:-3.076366px;}
.ws31{word-spacing:-3.010912px;}
.ws89{word-spacing:-2.683639px;}
.ws3a{word-spacing:-2.618184px;}
.ws23{word-spacing:-2.552729px;}
.ws60{word-spacing:-2.487275px;}
.ws8e{word-spacing:-2.290911px;}
.ws24{word-spacing:-2.225456px;}
.ws7d{word-spacing:-2.032370px;}
.ws86{word-spacing:-2.029093px;}
.ws74{word-spacing:-1.972595px;}
.ws5{word-spacing:-1.775347px;}
.ws3f{word-spacing:-1.701820px;}
.ws9b{word-spacing:-1.636365px;}
.ws9c{word-spacing:-1.570910px;}
.ws39{word-spacing:-1.505456px;}
.ws7c{word-spacing:-1.440001px;}
.ws3b{word-spacing:-1.374547px;}
.ws80{word-spacing:-1.309092px;}
.ws33{word-spacing:-1.243637px;}
.ws36{word-spacing:-1.047274px;}
.ws46{word-spacing:-0.981819px;}
.ws8d{word-spacing:-0.916364px;}
.ws88{word-spacing:-0.850910px;}
.ws7f{word-spacing:-0.785455px;}
.ws35{word-spacing:-0.589091px;}
.ws34{word-spacing:-0.523637px;}
.ws14{word-spacing:-0.458182px;}
.ws72{word-spacing:-0.392728px;}
.ws26{word-spacing:-0.327273px;}
.ws6{word-spacing:-0.268992px;}
.ws21{word-spacing:-0.261818px;}
.ws73{word-spacing:-0.239102px;}
.ws3{word-spacing:-0.215194px;}
.ws11{word-spacing:-0.196364px;}
.ws6a{word-spacing:-0.179327px;}
.wsc{word-spacing:-0.130909px;}
.ws8f{word-spacing:-0.086077px;}
.ws9{word-spacing:-0.065455px;}
.ws54{word-spacing:-0.059776px;}
.ws91{word-spacing:-0.055637px;}
.ws1{word-spacing:0.000000px;}
.ws12{word-spacing:0.065455px;}
.ws49{word-spacing:0.122121px;}
.wsd{word-spacing:0.130909px;}
.ws6b{word-spacing:0.179327px;}
.wsb{word-spacing:0.196364px;}
.ws7{word-spacing:0.215194px;}
.ws13{word-spacing:0.261818px;}
.ws37{word-spacing:0.327273px;}
.ws41{word-spacing:0.392728px;}
.ws75{word-spacing:0.418429px;}
.ws28{word-spacing:0.523637px;}
.wse{word-spacing:0.720001px;}
.ws79{word-spacing:0.785455px;}
.ws8c{word-spacing:0.850910px;}
.ws27{word-spacing:0.916364px;}
.ws67{word-spacing:1.047274px;}
.ws58{word-spacing:1.112728px;}
.ws94{word-spacing:1.178183px;}
.ws22{word-spacing:1.309092px;}
.ws7e{word-spacing:1.315063px;}
.ws4a{word-spacing:1.374547px;}
.ws43{word-spacing:1.440001px;}
.ws25{word-spacing:1.505456px;}
.ws59{word-spacing:1.570910px;}
.ws8{word-spacing:1.613952px;}
.ws56{word-spacing:1.636365px;}
.ws84{word-spacing:1.644023px;}
.ws48{word-spacing:1.679172px;}
.ws57{word-spacing:1.701820px;}
.ws5d{word-spacing:1.767274px;}
.ws5c{word-spacing:1.832729px;}
.ws5e{word-spacing:1.898183px;}
.ws5f{word-spacing:1.963638px;}
.ws40{word-spacing:2.094547px;}
.ws4{word-spacing:2.098138px;}
.ws20{word-spacing:2.160002px;}
.ws6c{word-spacing:2.225456px;}
.ws85{word-spacing:2.290911px;}
.ws5a{word-spacing:2.356366px;}
.ws99{word-spacing:2.421820px;}
.ws47{word-spacing:2.487275px;}
.ws2e{word-spacing:2.552729px;}
.ws1f{word-spacing:2.683639px;}
.ws1c{word-spacing:2.749093px;}
.ws97{word-spacing:2.814548px;}
.ws95{word-spacing:2.880002px;}
.ws1a{word-spacing:2.945457px;}
.ws3d{word-spacing:3.076366px;}
.ws6d{word-spacing:3.141821px;}
.ws61{word-spacing:3.207275px;}
.ws10{word-spacing:3.272730px;}
.ws29{word-spacing:3.338185px;}
.ws2f{word-spacing:3.403639px;}
.ws90{word-spacing:3.469094px;}
.ws9a{word-spacing:3.534548px;}
.ws92{word-spacing:3.600003px;}
.ws87{word-spacing:3.665458px;}
.ws42{word-spacing:3.730912px;}
.ws71{word-spacing:3.796367px;}
.ws8a{word-spacing:3.861821px;}
.ws6e{word-spacing:4.123640px;}
.ws98{word-spacing:4.189094px;}
.ws68{word-spacing:4.203936px;}
.ws78{word-spacing:4.254549px;}
.ws77{word-spacing:4.450913px;}
.ws16{word-spacing:4.519066px;}
.ws45{word-spacing:4.647277px;}
.ws8b{word-spacing:4.712731px;}
.ws69{word-spacing:4.932596px;}
.ws83{word-spacing:4.974550px;}
.ws81{word-spacing:5.040004px;}
.ws55{word-spacing:5.367277px;}
.ws66{word-spacing:5.629096px;}
.wsf{word-spacing:5.760005px;}
.ws62{word-spacing:5.825459px;}
.ws1b{word-spacing:5.890914px;}
.ws3e{word-spacing:5.956369px;}
.ws44{word-spacing:6.349096px;}
.ws82{word-spacing:6.414551px;}
.ws96{word-spacing:6.545460px;}
.ws30{word-spacing:6.741824px;}
.ws93{word-spacing:7.200006px;}
.ws76{word-spacing:7.330915px;}
.ws1d{word-spacing:7.396370px;}
.ws32{word-spacing:7.461824px;}
.ws9e{word-spacing:8.443643px;}
.ws15{word-spacing:9.294553px;}
.ws65{word-spacing:10.815188px;}
.ws70{word-spacing:11.061827px;}
.ws5b{word-spacing:14.824349px;}
.ws53{word-spacing:14.884124px;}
.ws2c{word-spacing:17.861069px;}
.ws6f{word-spacing:19.047289px;}
.ws2b{word-spacing:21.433223px;}
.ws0{word-spacing:25.719808px;}
.ws64{word-spacing:31.549117px;}
.ws3c{word-spacing:35.793869px;}
.ws63{word-spacing:38.677544px;}
.wsa{word-spacing:42.952523px;}
.ws51{word-spacing:56.786820px;}
.ws4e{word-spacing:88.706990px;}
.ws4f{word-spacing:90.440483px;}
.ws52{word-spacing:94.564999px;}
.ws4b{word-spacing:278.983290px;}
.ws4c{word-spacing:300.040890px;}
._2b{margin-left:-648.016752px;}
._2a{margin-left:-594.226752px;}
._5{margin-left:-11.568749px;}
._a{margin-left:-7.696898px;}
._10{margin-left:-6.604822px;}
._4{margin-left:-5.371205px;}
._c{margin-left:-4.326096px;}
._6{margin-left:-3.122466px;}
._3{margin-left:-1.342801px;}
._2{width:1.446094px;}
._14{width:2.618184px;}
._0{width:3.821819px;}
._40{width:5.105459px;}
._45{width:9.428168px;}
._f{width:10.472755px;}
._19{width:11.515138px;}
._12{width:13.221829px;}
._7{width:15.498257px;}
._d{width:17.214560px;}
._b{width:18.916379px;}
._9{width:20.449855px;}
._8{width:22.433933px;}
._13{width:23.793729px;}
._11{width:25.658203px;}
._17{width:27.294568px;}
._e{width:28.407296px;}
._18{width:29.650934px;}
._1{width:30.884428px;}
._4d{width:32.596391px;}
._4f{width:34.690938px;}
._16{width:35.865600px;}
._3f{width:37.801013px;}
._57{width:39.228228px;}
._50{width:41.760035px;}
._15{width:43.038600px;}
._58{width:49.859033px;}
._43{width:53.345461px;}
._1f{width:71.730720px;}
._1e{width:74.105226px;}
._26{width:77.588729px;}
._48{width:78.603247px;}
._25{width:80.906918px;}
._3a{width:82.490328px;}
._2f{width:85.957313px;}
._38{width:90.320932px;}
._27{width:93.190160px;}
._37{width:96.918192px;}
._52{width:99.651654px;}
._20{width:105.125396px;}
._29{width:108.148913px;}
._22{width:109.449124px;}
._23{width:111.133488px;}
._2e{width:112.154506px;}
._41{width:120.023222px;}
._30{width:128.142510px;}
._35{width:134.696371px;}
._3e{width:137.244778px;}
._44{width:139.578988px;}
._3d{width:149.380891px;}
._47{width:150.694288px;}
._31{width:151.889800px;}
._34{width:155.938164px;}
._32{width:162.492025px;}
._3b{width:163.844920px;}
._24{width:165.279534px;}
._46{width:172.633960px;}
._4c{width:176.734126px;}
._56{width:178.550537px;}
._39{width:187.699248px;}
._36{width:190.287679px;}
._53{width:191.341696px;}
._33{width:200.726465px;}
._21{width:210.768766px;}
._28{width:211.904502px;}
._42{width:215.730140px;}
._51{width:241.774891px;}
._55{width:243.868891px;}
._1d{width:263.317700px;}
._54{width:269.572891px;}
._3c{width:271.087248px;}
._4b{width:276.186374px;}
._1c{width:296.845630px;}
._1a{width:323.521434px;}
._4a{width:337.835315px;}
._4e{width:339.927461px;}
._1b{width:371.744456px;}
._2c{width:400.850842px;}
._2d{width:407.162004px;}
._49{width:706.586490px;}
.fc4{color:transparent;}
.fc2{color:rgb(47,79,79);}
.fc3{color:rgb(128,128,128);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:17.399130px;}
.fs7{font-size:26.398680px;}
.fs8{font-size:28.198590px;}
.fs6{font-size:35.865600px;}
.fs2{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fsb{font-size:55.636800px;}
.fsa{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs5{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y2a{bottom:3.599820px;}
.y2c{bottom:9.599520px;}
.y29{bottom:11.099445px;}
.y2b{bottom:17.249137px;}
.y28{bottom:21.448927px;}
.y27{bottom:58.510426px;}
.y155{bottom:246.714000px;}
.y26{bottom:247.501500px;}
.yb8{bottom:247.555500px;}
.y54{bottom:248.742000px;}
.y1a1{bottom:250.368000px;}
.y93{bottom:255.984000px;}
.yf3{bottom:261.979500px;}
.y136{bottom:262.134000px;}
.y25{bottom:262.740000px;}
.ycd{bottom:265.020000px;}
.y154{bottom:267.037500px;}
.yb7{bottom:267.879000px;}
.y53{bottom:269.065500px;}
.y1a0{bottom:270.691500px;}
.y92{bottom:276.307500px;}
.y24{bottom:279.178500px;}
.yf2{bottom:282.303000px;}
.y135{bottom:282.457500px;}
.ycc{bottom:285.343500px;}
.y153{bottom:287.362500px;}
.yb6{bottom:288.204000px;}
.y52{bottom:289.390500px;}
.y19f{bottom:291.015000px;}
.y23{bottom:295.878000px;}
.y91{bottom:296.631000px;}
.yf1{bottom:302.628000px;}
.y134{bottom:302.781000px;}
.ycb{bottom:305.667000px;}
.y152{bottom:307.686000px;}
.yb5{bottom:308.527500px;}
.y51{bottom:309.714000px;}
.y19e{bottom:311.338500px;}
.y171{bottom:316.134000px;}
.y90{bottom:316.954500px;}
.yf0{bottom:322.951500px;}
.yca{bottom:325.990500px;}
.y113{bottom:327.204000px;}
.y6b{bottom:327.546000px;}
.y151{bottom:328.009500px;}
.yb4{bottom:328.851000px;}
.y50{bottom:330.037500px;}
.y19d{bottom:331.663500px;}
.y170{bottom:336.457500px;}
.y8f{bottom:337.279500px;}
.yef{bottom:343.275000px;}
.y133{bottom:343.428000px;}
.y22{bottom:343.456500px;}
.y194{bottom:345.343500px;}
.yc9{bottom:346.315500px;}
.y112{bottom:347.527500px;}
.y6a{bottom:347.869500px;}
.y150{bottom:348.333000px;}
.yb3{bottom:349.174500px;}
.y4f{bottom:350.361000px;}
.y19c{bottom:351.987000px;}
.y16f{bottom:356.781000px;}
.y8e{bottom:357.603000px;}
.yee{bottom:363.598500px;}
.y132{bottom:363.753000px;}
.y21{bottom:363.780000px;}
.y193{bottom:365.667000px;}
.yc8{bottom:366.639000px;}
.y111{bottom:367.851000px;}
.y69{bottom:368.194500px;}
.y14f{bottom:368.656500px;}
.yb2{bottom:369.498000px;}
.y4e{bottom:370.684500px;}
.y19b{bottom:372.310500px;}
.y16e{bottom:377.104500px;}
.y8d{bottom:377.926500px;}
.y131{bottom:384.076500px;}
.y20{bottom:384.105000px;}
.y192{bottom:385.990500px;}
.yc7{bottom:386.962500px;}
.y110{bottom:388.174500px;}
.y68{bottom:388.518000px;}
.y14e{bottom:388.981500px;}
.yb1{bottom:389.823000px;}
.y4d{bottom:391.008000px;}
.y19a{bottom:392.634000px;}
.yed{bottom:394.452000px;}
.y16d{bottom:397.428000px;}
.y8c{bottom:398.250000px;}
.y130{bottom:404.400000px;}
.y1f{bottom:404.428500px;}
.y191{bottom:406.314000px;}
.yc6{bottom:407.286000px;}
.y10f{bottom:408.499500px;}
.y14d{bottom:409.305000px;}
.yb0{bottom:410.146500px;}
.y4c{bottom:411.333000px;}
.y199{bottom:412.957500px;}
.y16c{bottom:417.753000px;}
.y8b{bottom:418.573500px;}
.y12f{bottom:424.723500px;}
.y1e{bottom:424.752000px;}
.y67{bottom:424.987500px;}
.y190{bottom:426.637500px;}
.yc5{bottom:427.609500px;}
.y10e{bottom:428.823000px;}
.yaf{bottom:430.470000px;}
.y198{bottom:433.281000px;}
.y16b{bottom:438.076500px;}
.yec{bottom:438.189000px;}
.y8a{bottom:438.897000px;}
.y14c{bottom:440.158500px;}
.y4b{bottom:442.186500px;}
.y1d{bottom:445.075500px;}
.yc4{bottom:447.934500px;}
.y10d{bottom:449.146500px;}
.yae{bottom:450.793500px;}
.y197{bottom:453.606000px;}
.y16a{bottom:458.400000px;}
.yeb{bottom:458.512500px;}
.y89{bottom:459.222000px;}
.y18f{bottom:463.108500px;}
.y12e{bottom:465.372000px;}
.y1c{bottom:465.399000px;}
.y10c{bottom:469.470000px;}
.y196{bottom:473.929500px;}
.y66{bottom:476.457000px;}
.y169{bottom:478.723500px;}
.yea{bottom:478.836000px;}
.y4a{bottom:479.254500px;}
.y88{bottom:479.545500px;}
.yad{bottom:481.647000px;}
.y14b{bottom:483.895500px;}
.y12d{bottom:485.695500px;}
.y1b{bottom:485.724000px;}
.y10b{bottom:489.793500px;}
.y195{bottom:494.253000px;}
.y65{bottom:496.780500px;}
.y168{bottom:499.047000px;}
.ye9{bottom:499.161000px;}
.yc3{bottom:503.742000px;}
.y14a{bottom:504.219000px;}
.y12c{bottom:506.019000px;}
.y1a{bottom:506.047500px;}
.y10a{bottom:510.118500px;}
.y18e{bottom:514.576500px;}
.y64{bottom:517.104000px;}
.y167{bottom:519.372000px;}
.ye8{bottom:519.484500px;}
.y87{bottom:520.192500px;}
.yc2{bottom:521.674500px;}
.y149{bottom:524.542500px;}
.yac{bottom:525.384000px;}
.y12b{bottom:526.342500px;}
.y19{bottom:526.371000px;}
.y49{bottom:530.722500px;}
.y18d{bottom:534.900000px;}
.y63{bottom:537.427500px;}
.ye7{bottom:539.808000px;}
.y86{bottom:540.516000px;}
.y148{bottom:544.866000px;}
.yab{bottom:545.707500px;}
.y12a{bottom:546.666000px;}
.y18{bottom:546.694500px;}
.yc1{bottom:548.469000px;}
.y109{bottom:550.765500px;}
.y48{bottom:551.046000px;}
.y18c{bottom:555.225000px;}
.y62{bottom:557.751000px;}
.ye6{bottom:560.131500px;}
.y85{bottom:560.841000px;}
.y147{bottom:565.189500px;}
.yaa{bottom:566.031000px;}
.yc0{bottom:566.401500px;}
.y129{bottom:566.991000px;}
.y17{bottom:567.018000px;}
.y166{bottom:567.109500px;}
.y108{bottom:571.089000px;}
.y47{bottom:571.371000px;}
.y18b{bottom:575.548500px;}
.y61{bottom:578.076000px;}
.ye5{bottom:580.455000px;}
.y84{bottom:581.164500px;}
.ybf{bottom:584.335500px;}
.y165{bottom:585.042000px;}
.y146{bottom:585.514500px;}
.ya9{bottom:586.356000px;}
.y128{bottom:587.314500px;}
.y16{bottom:587.343000px;}
.y107{bottom:591.412500px;}
.y46{bottom:591.694500px;}
.y18a{bottom:595.872000px;}
.y60{bottom:598.399500px;}
.ye4{bottom:600.780000px;}
.y83{bottom:601.488000px;}
.ybe{bottom:602.268000px;}
.y145{bottom:605.838000px;}
.ya8{bottom:606.679500px;}
.y127{bottom:607.638000px;}
.y15{bottom:607.666500px;}
.y106{bottom:611.737500px;}
.y164{bottom:611.836500px;}
.y45{bottom:612.018000px;}
.y189{bottom:616.195500px;}
.y5f{bottom:618.723000px;}
.ybd{bottom:620.797500px;}
.ye3{bottom:621.103500px;}
.y82{bottom:621.811500px;}
.y144{bottom:626.161500px;}
.y126{bottom:627.961500px;}
.y14{bottom:627.990000px;}
.y163{bottom:629.770500px;}
.y105{bottom:632.061000px;}
.y44{bottom:632.341500px;}
.y188{bottom:636.519000px;}
.y5e{bottom:639.046500px;}
.ye2{bottom:641.427000px;}
.y81{bottom:642.135000px;}
.y143{bottom:646.485000px;}
.ya7{bottom:647.326500px;}
.y162{bottom:647.703000px;}
.y125{bottom:648.285000px;}
.y13{bottom:648.313500px;}
.y104{bottom:652.384500px;}
.y43{bottom:652.665000px;}
.y187{bottom:656.844000px;}
.y5d{bottom:659.370000px;}
.ybc{bottom:661.020000px;}
.ye1{bottom:661.750500px;}
.y80{bottom:662.460000px;}
.y161{bottom:665.635500px;}
.y142{bottom:666.808500px;}
.ya6{bottom:667.650000px;}
.y42{bottom:672.990000px;}
.y186{bottom:677.167500px;}
.ybb{bottom:678.952500px;}
.y124{bottom:679.138500px;}
.y5c{bottom:679.695000px;}
.ye0{bottom:682.074000px;}
.y7f{bottom:682.783500px;}
.y160{bottom:683.568000px;}
.y12{bottom:684.783000px;}
.ya5{bottom:687.975000px;}
.y103{bottom:693.031500px;}
.y41{bottom:693.313500px;}
.y185{bottom:697.491000px;}
.y5b{bottom:700.018500px;}
.y15f{bottom:702.099000px;}
.ydf{bottom:702.399000px;}
.y7e{bottom:703.107000px;}
.y141{bottom:703.279500px;}
.yba{bottom:705.351000px;}
.ya4{bottom:708.298500px;}
.y102{bottom:713.356500px;}
.y40{bottom:713.637000px;}
.y184{bottom:717.814500px;}
.y5a{bottom:720.342000px;}
.yde{bottom:722.722500px;}
.y7d{bottom:723.430500px;}
.ya3{bottom:728.622000px;}
.y101{bottom:733.680000px;}
.y3f{bottom:733.960500px;}
.y123{bottom:734.671500px;}
.y183{bottom:738.138000px;}
.y59{bottom:740.665500px;}
.ydd{bottom:743.046000px;}
.y7c{bottom:743.754000px;}
.ya2{bottom:748.945500px;}
.y122{bottom:752.604000px;}
.y100{bottom:754.003500px;}
.y3e{bottom:754.284000px;}
.y140{bottom:754.747500px;}
.y182{bottom:758.463000px;}
.y11{bottom:758.823000px;}
.y15e{bottom:760.596000px;}
.y58{bottom:760.989000px;}
.ydc{bottom:763.369500px;}
.y7b{bottom:764.079000px;}
.ya1{bottom:769.269000px;}
.y121{bottom:770.536500px;}
.yff{bottom:774.327000px;}
.y3d{bottom:774.609000px;}
.y13f{bottom:775.072500px;}
.y10{bottom:775.261500px;}
.y15d{bottom:778.530000px;}
.y181{bottom:778.786500px;}
.y57{bottom:781.314000px;}
.ydb{bottom:783.693000px;}
.y7a{bottom:784.402500px;}
.y120{bottom:788.469000px;}
.ya0{bottom:789.594000px;}
.yfe{bottom:794.650500px;}
.y3c{bottom:794.932500px;}
.y13e{bottom:795.396000px;}
.y180{bottom:799.110000px;}
.yf{bottom:803.040000px;}
.y79{bottom:804.726000px;}
.y15c{bottom:805.324500px;}
.y56{bottom:812.167500px;}
.yfd{bottom:814.975500px;}
.y3b{bottom:815.256000px;}
.y11f{bottom:815.263500px;}
.y13d{bottom:815.719500px;}
.y17f{bottom:819.433500px;}
.ye{bottom:819.478500px;}
.yda{bottom:820.162500px;}
.y15b{bottom:823.257000px;}
.y78{bottom:825.049500px;}
.y11e{bottom:833.196000px;}
.yfc{bottom:835.299000px;}
.y3a{bottom:835.579500px;}
.yd{bottom:835.915500px;}
.y13c{bottom:836.043000px;}
.y9f{bottom:837.331500px;}
.y17e{bottom:839.757000px;}
.y15a{bottom:841.189500px;}
.y77{bottom:845.373000px;}
.y11d{bottom:851.130000px;}
.yc{bottom:852.354000px;}
.y9e{bottom:855.264000px;}
.yfb{bottom:855.622500px;}
.y39{bottom:855.903000px;}
.y13b{bottom:856.366500px;}
.y159{bottom:859.122000px;}
.y17d{bottom:860.082000px;}
.y76{bottom:865.698000px;}
.yb{bottom:868.792500px;}
.y11c{bottom:869.062500px;}
.yd9{bottom:871.632000px;}
.y9d{bottom:873.198000px;}
.y38{bottom:876.228000px;}
.y13a{bottom:876.691500px;}
.y158{bottom:877.054500px;}
.y17c{bottom:880.405500px;}
.ya{bottom:885.231000px;}
.y75{bottom:886.021500px;}
.yfa{bottom:886.476000px;}
.y11b{bottom:887.592000px;}
.yd8{bottom:891.955500px;}
.y157{bottom:895.585500px;}
.y37{bottom:896.551500px;}
.y139{bottom:897.015000px;}
.y17b{bottom:900.729000px;}
.y9{bottom:901.669500px;}
.y9c{bottom:903.522000px;}
.y11a{bottom:905.526000px;}
.y74{bottom:906.345000px;}
.yd7{bottom:912.280500px;}
.y36{bottom:916.875000px;}
.y8{bottom:918.108000px;}
.y17a{bottom:921.052500px;}
.y9b{bottom:921.454500px;}
.y73{bottom:926.668500px;}
.yf9{bottom:930.213000px;}
.yd6{bottom:932.604000px;}
.y7{bottom:934.546500px;}
.y55{bottom:937.198500px;}
.y9a{bottom:939.387000px;}
.y179{bottom:941.376000px;}
.y119{bottom:946.090500px;}
.y72{bottom:946.992000px;}
.yf8{bottom:950.536500px;}
.y6{bottom:950.985000px;}
.y138{bottom:952.546500px;}
.y99{bottom:957.319500px;}
.y35{bottom:957.522000px;}
.y178{bottom:961.701000px;}
.y118{bottom:964.023000px;}
.y71{bottom:967.317000px;}
.y5{bottom:967.423500px;}
.y137{bottom:970.479000px;}
.y98{bottom:975.252000px;}
.y34{bottom:977.847000px;}
.y117{bottom:981.955500px;}
.y177{bottom:982.024500px;}
.y156{bottom:987.640500px;}
.yd5{bottom:988.411500px;}
.y33{bottom:998.170500px;}
.y116{bottom:999.889500px;}
.y97{bottom:1001.401500px;}
.y176{bottom:1002.348000px;}
.yd4{bottom:1006.344000px;}
.y70{bottom:1007.964000px;}
.y4{bottom:1012.554000px;}
.y32{bottom:1018.494000px;}
.y96{bottom:1019.334000px;}
.y175{bottom:1022.671500px;}
.yf7{bottom:1024.278000px;}
.y115{bottom:1026.684000px;}
.y6f{bottom:1028.287500px;}
.yd3{bottom:1033.138500px;}
.y95{bottom:1037.266500px;}
.y31{bottom:1038.817500px;}
.yf6{bottom:1042.210500px;}
.y174{bottom:1042.995000px;}
.y114{bottom:1044.616500px;}
.y3{bottom:1046.925000px;}
.y6e{bottom:1048.611000px;}
.yd2{bottom:1051.072500px;}
.y30{bottom:1059.141000px;}
.yf5{bottom:1060.143000px;}
.y173{bottom:1063.320000px;}
.y94{bottom:1063.414500px;}
.yb9{bottom:1067.220000px;}
.y6d{bottom:1068.936000px;}
.yd1{bottom:1069.005000px;}
.y2f{bottom:1079.466000px;}
.y172{bottom:1083.643500px;}
.y2{bottom:1085.779500px;}
.yd0{bottom:1086.937500px;}
.y6c{bottom:1089.259500px;}
.y2e{bottom:1099.789500px;}
.yf4{bottom:1104.870000px;}
.ycf{bottom:1105.468500px;}
.y1{bottom:1118.656500px;}
.y2d{bottom:1120.113000px;}
.yce{bottom:1123.401000px;}
.hf{height:13.919304px;}
.hd{height:21.118944px;}
.he{height:22.558872px;}
.hb{height:25.392845px;}
.hc{height:26.698665px;}
.h4{height:37.658880px;}
.h6{height:38.089267px;}
.h16{height:40.447954px;}
.h14{height:41.723369px;}
.h13{height:42.321125px;}
.h15{height:44.705492px;}
.h5{height:45.687311px;}
.ha{height:46.212826px;}
.h8{height:46.341857px;}
.h9{height:47.073600px;}
.h10{height:50.068378px;}
.h11{height:55.548699px;}
.h12{height:55.554699px;}
.h3{height:59.502420px;}
.h7{height:60.081886px;}
.h2{height:72.098095px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:108.144593px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:12.599370px;}
.x5{left:20.848958px;}
.x8{left:61.346932px;}
.x7{left:71.246437px;}
.x1{left:133.033500px;}
.x3{left:134.683500px;}
.x23{left:139.768500px;}
.x4a{left:141.546000px;}
.x9{left:150.300000px;}
.x24{left:154.986000px;}
.x33{left:158.254500px;}
.x4b{left:168.988500px;}
.xc{left:173.968500px;}
.xd{left:181.578000px;}
.x4{left:187.455000px;}
.x2{left:195.871500px;}
.x29{left:208.521000px;}
.x25{left:212.673000px;}
.x47{left:217.114500px;}
.x3f{left:224.952000px;}
.x26{left:227.892000px;}
.x2a{left:231.984000px;}
.x2b{left:239.610000px;}
.x36{left:243.262500px;}
.x31{left:245.230500px;}
.x3a{left:254.890500px;}
.x34{left:259.594500px;}
.xe{left:267.942000px;}
.x3b{left:270.109500px;}
.x38{left:273.522000px;}
.xf{left:275.551500px;}
.x44{left:292.392000px;}
.x43{left:301.129500px;}
.x2c{left:303.652500px;}
.x35{left:304.936500px;}
.x3c{left:306.396000px;}
.x37{left:335.794500px;}
.x2d{left:339.379500px;}
.x21{left:350.136000px;}
.x32{left:356.887500px;}
.x22{left:365.355000px;}
.x30{left:380.581500px;}
.x27{left:382.260000px;}
.x28{left:410.244000px;}
.x39{left:424.294500px;}
.x1b{left:425.505000px;}
.x17{left:432.750000px;}
.x18{left:440.358000px;}
.x42{left:459.738000px;}
.x12{left:464.404500px;}
.x13{left:472.014000px;}
.x1c{left:487.126500px;}
.x45{left:497.574000px;}
.x4f{left:505.728000px;}
.x46{left:512.793000px;}
.x10{left:579.963000px;}
.x11{left:587.572500px;}
.x19{left:595.206000px;}
.x4c{left:597.735000px;}
.x1a{left:602.815500px;}
.x4e{left:604.974000px;}
.xa{left:608.473500px;}
.x2e{left:609.991500px;}
.xb{left:616.083000px;}
.x40{left:617.976000px;}
.x2f{left:645.717000px;}
.x3d{left:648.097500px;}
.x1f{left:660.474000px;}
.x3e{left:663.316500px;}
.x48{left:667.092000px;}
.x41{left:671.896500px;}
.x20{left:675.691500px;}
.x49{left:682.309500px;}
.x16{left:690.021000px;}
.x1d{left:695.349000px;}
.x14{left:698.461500px;}
.x15{left:706.071000px;}
.x1e{left:710.568000px;}
.x4d{left:757.968000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.109333pt;}
.v1{vertical-align:23.136000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.002411pt;}
.lsd{letter-spacing:0.003521pt;}
.ls0{letter-spacing:2.657470pt;}
.ls3{letter-spacing:7.965696pt;}
.ls9{letter-spacing:9.698411pt;}
.ls2{letter-spacing:11.955200pt;}
.ls8{letter-spacing:14.312739pt;}
.ls6{letter-spacing:14.659376pt;}
.ls5{letter-spacing:14.664769pt;}
.ls7{letter-spacing:14.836376pt;}
.lsb{letter-spacing:19.634591pt;}
.lsc{letter-spacing:24.378202pt;}
.ls1{letter-spacing:31.880533pt;}
.ws2{word-spacing:-15.940267pt;}
.ws2a{word-spacing:-14.545467pt;}
.ws18{word-spacing:-6.266353pt;}
.ws17{word-spacing:-5.866373pt;}
.ws50{word-spacing:-4.463245pt;}
.ws4d{word-spacing:-4.410111pt;}
.ws9d{word-spacing:-4.305458pt;}
.ws1e{word-spacing:-4.072731pt;}
.ws19{word-spacing:-3.866473pt;}
.ws2d{word-spacing:-3.665458pt;}
.ws7b{word-spacing:-3.316366pt;}
.ws7a{word-spacing:-3.200003pt;}
.ws38{word-spacing:-2.734548pt;}
.ws31{word-spacing:-2.676366pt;}
.ws89{word-spacing:-2.385457pt;}
.ws3a{word-spacing:-2.327275pt;}
.ws23{word-spacing:-2.269093pt;}
.ws60{word-spacing:-2.210911pt;}
.ws8e{word-spacing:-2.036365pt;}
.ws24{word-spacing:-1.978183pt;}
.ws7d{word-spacing:-1.806551pt;}
.ws86{word-spacing:-1.803638pt;}
.ws74{word-spacing:-1.753418pt;}
.ws5{word-spacing:-1.578086pt;}
.ws3f{word-spacing:-1.512729pt;}
.ws9b{word-spacing:-1.454547pt;}
.ws9c{word-spacing:-1.396365pt;}
.ws39{word-spacing:-1.338183pt;}
.ws7c{word-spacing:-1.280001pt;}
.ws3b{word-spacing:-1.221819pt;}
.ws80{word-spacing:-1.163637pt;}
.ws33{word-spacing:-1.105455pt;}
.ws36{word-spacing:-0.930910pt;}
.ws46{word-spacing:-0.872728pt;}
.ws8d{word-spacing:-0.814546pt;}
.ws88{word-spacing:-0.756364pt;}
.ws7f{word-spacing:-0.698182pt;}
.ws35{word-spacing:-0.523637pt;}
.ws34{word-spacing:-0.465455pt;}
.ws14{word-spacing:-0.407273pt;}
.ws72{word-spacing:-0.349091pt;}
.ws26{word-spacing:-0.290909pt;}
.ws6{word-spacing:-0.239104pt;}
.ws21{word-spacing:-0.232727pt;}
.ws73{word-spacing:-0.212535pt;}
.ws3{word-spacing:-0.191283pt;}
.ws11{word-spacing:-0.174546pt;}
.ws6a{word-spacing:-0.159402pt;}
.wsc{word-spacing:-0.116364pt;}
.ws8f{word-spacing:-0.076513pt;}
.ws9{word-spacing:-0.058182pt;}
.ws54{word-spacing:-0.053134pt;}
.ws91{word-spacing:-0.049455pt;}
.ws1{word-spacing:0.000000pt;}
.ws12{word-spacing:0.058182pt;}
.ws49{word-spacing:0.108552pt;}
.wsd{word-spacing:0.116364pt;}
.ws6b{word-spacing:0.159402pt;}
.wsb{word-spacing:0.174546pt;}
.ws7{word-spacing:0.191283pt;}
.ws13{word-spacing:0.232727pt;}
.ws37{word-spacing:0.290909pt;}
.ws41{word-spacing:0.349091pt;}
.ws75{word-spacing:0.371937pt;}
.ws28{word-spacing:0.465455pt;}
.wse{word-spacing:0.640001pt;}
.ws79{word-spacing:0.698182pt;}
.ws8c{word-spacing:0.756364pt;}
.ws27{word-spacing:0.814546pt;}
.ws67{word-spacing:0.930910pt;}
.ws58{word-spacing:0.989092pt;}
.ws94{word-spacing:1.047274pt;}
.ws22{word-spacing:1.163637pt;}
.ws7e{word-spacing:1.168945pt;}
.ws4a{word-spacing:1.221819pt;}
.ws43{word-spacing:1.280001pt;}
.ws25{word-spacing:1.338183pt;}
.ws59{word-spacing:1.396365pt;}
.ws8{word-spacing:1.434624pt;}
.ws56{word-spacing:1.454547pt;}
.ws84{word-spacing:1.461354pt;}
.ws48{word-spacing:1.492597pt;}
.ws57{word-spacing:1.512729pt;}
.ws5d{word-spacing:1.570910pt;}
.ws5c{word-spacing:1.629092pt;}
.ws5e{word-spacing:1.687274pt;}
.ws5f{word-spacing:1.745456pt;}
.ws40{word-spacing:1.861820pt;}
.ws4{word-spacing:1.865011pt;}
.ws20{word-spacing:1.920002pt;}
.ws6c{word-spacing:1.978183pt;}
.ws85{word-spacing:2.036365pt;}
.ws5a{word-spacing:2.094547pt;}
.ws99{word-spacing:2.152729pt;}
.ws47{word-spacing:2.210911pt;}
.ws2e{word-spacing:2.269093pt;}
.ws1f{word-spacing:2.385457pt;}
.ws1c{word-spacing:2.443638pt;}
.ws97{word-spacing:2.501820pt;}
.ws95{word-spacing:2.560002pt;}
.ws1a{word-spacing:2.618184pt;}
.ws3d{word-spacing:2.734548pt;}
.ws6d{word-spacing:2.792730pt;}
.ws61{word-spacing:2.850911pt;}
.ws10{word-spacing:2.909093pt;}
.ws29{word-spacing:2.967275pt;}
.ws2f{word-spacing:3.025457pt;}
.ws90{word-spacing:3.083639pt;}
.ws9a{word-spacing:3.141821pt;}
.ws92{word-spacing:3.200003pt;}
.ws87{word-spacing:3.258185pt;}
.ws42{word-spacing:3.316366pt;}
.ws71{word-spacing:3.374548pt;}
.ws8a{word-spacing:3.432730pt;}
.ws6e{word-spacing:3.665458pt;}
.ws98{word-spacing:3.723639pt;}
.ws68{word-spacing:3.736832pt;}
.ws78{word-spacing:3.781821pt;}
.ws77{word-spacing:3.956367pt;}
.ws16{word-spacing:4.016947pt;}
.ws45{word-spacing:4.130913pt;}
.ws8b{word-spacing:4.189094pt;}
.ws69{word-spacing:4.384530pt;}
.ws83{word-spacing:4.421822pt;}
.ws81{word-spacing:4.480004pt;}
.ws55{word-spacing:4.770913pt;}
.ws66{word-spacing:5.003641pt;}
.wsf{word-spacing:5.120004pt;}
.ws62{word-spacing:5.178186pt;}
.ws1b{word-spacing:5.236368pt;}
.ws3e{word-spacing:5.294550pt;}
.ws44{word-spacing:5.643641pt;}
.ws82{word-spacing:5.701823pt;}
.ws96{word-spacing:5.818187pt;}
.ws30{word-spacing:5.992732pt;}
.ws93{word-spacing:6.400005pt;}
.ws76{word-spacing:6.516369pt;}
.ws1d{word-spacing:6.574551pt;}
.ws32{word-spacing:6.632733pt;}
.ws9e{word-spacing:7.505461pt;}
.ws15{word-spacing:8.261825pt;}
.ws65{word-spacing:9.613500pt;}
.ws70{word-spacing:9.832735pt;}
.ws5b{word-spacing:13.177199pt;}
.ws53{word-spacing:13.230333pt;}
.ws2c{word-spacing:15.876506pt;}
.ws6f{word-spacing:16.930923pt;}
.ws2b{word-spacing:19.051754pt;}
.ws0{word-spacing:22.862051pt;}
.ws64{word-spacing:28.043660pt;}
.ws3c{word-spacing:31.816772pt;}
.ws63{word-spacing:34.380039pt;}
.wsa{word-spacing:38.180020pt;}
.ws51{word-spacing:50.477173pt;}
.ws4e{word-spacing:78.850658pt;}
.ws4f{word-spacing:80.391540pt;}
.ws52{word-spacing:84.057777pt;}
.ws4b{word-spacing:247.985147pt;}
.ws4c{word-spacing:266.703013pt;}
._2b{margin-left:-576.014891pt;}
._2a{margin-left:-528.201557pt;}
._5{margin-left:-10.283332pt;}
._a{margin-left:-6.841687pt;}
._10{margin-left:-5.870953pt;}
._4{margin-left:-4.774404pt;}
._c{margin-left:-3.845419pt;}
._6{margin-left:-2.775525pt;}
._3{margin-left:-1.193601pt;}
._2{width:1.285417pt;}
._14{width:2.327275pt;}
._0{width:3.397172pt;}
._40{width:4.538186pt;}
._45{width:8.380594pt;}
._f{width:9.309116pt;}
._19{width:10.235678pt;}
._12{width:11.752737pt;}
._7{width:13.776228pt;}
._d{width:15.301831pt;}
._b{width:16.814559pt;}
._9{width:18.177649pt;}
._8{width:19.941274pt;}
._13{width:21.149981pt;}
._11{width:22.807292pt;}
._17{width:24.261838pt;}
._e{width:25.250930pt;}
._18{width:26.356386pt;}
._1{width:27.452825pt;}
._4d{width:28.974570pt;}
._4f{width:30.836389pt;}
._16{width:31.880533pt;}
._3f{width:33.600901pt;}
._57{width:34.869536pt;}
._50{width:37.120031pt;}
._15{width:38.256533pt;}
._58{width:44.319141pt;}
._43{width:47.418187pt;}
._1f{width:63.760640pt;}
._1e{width:65.871312pt;}
._26{width:68.967759pt;}
._48{width:69.869553pt;}
._25{width:71.917261pt;}
._3a{width:73.324736pt;}
._2f{width:76.406500pt;}
._38{width:80.285273pt;}
._27{width:82.835698pt;}
._37{width:86.149504pt;}
._52{width:88.579248pt;}
._20{width:93.444797pt;}
._29{width:96.132367pt;}
._22{width:97.288110pt;}
._23{width:98.785323pt;}
._2e{width:99.692894pt;}
._41{width:106.687309pt;}
._30{width:113.904453pt;}
._35{width:119.730108pt;}
._3e{width:121.995358pt;}
._44{width:124.070211pt;}
._3d{width:132.783014pt;}
._47{width:133.950478pt;}
._31{width:135.013155pt;}
._34{width:138.611701pt;}
._32{width:144.437356pt;}
._3b{width:145.639929pt;}
._24{width:146.915141pt;}
._46{width:153.452409pt;}
._4c{width:157.097001pt;}
._56{width:158.711588pt;}
._39{width:166.843776pt;}
._36{width:169.144604pt;}
._53{width:170.081507pt;}
._33{width:178.423524pt;}
._21{width:187.350014pt;}
._28{width:188.359557pt;}
._42{width:191.760125pt;}
._51{width:214.911014pt;}
._55{width:216.772348pt;}
._1d{width:234.060178pt;}
._54{width:239.620348pt;}
._3c{width:240.966443pt;}
._4b{width:245.498999pt;}
._1c{width:263.862782pt;}
._1a{width:287.574608pt;}
._4a{width:300.298058pt;}
._4e{width:302.157743pt;}
._1b{width:330.439517pt;}
._2c{width:356.311859pt;}
._2d{width:361.921781pt;}
._49{width:628.076880pt;}
.fs9{font-size:15.465893pt;}
.fs7{font-size:23.465493pt;}
.fs8{font-size:25.065413pt;}
.fs6{font-size:31.880533pt;}
.fs2{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fsb{font-size:49.454933pt;}
.fsa{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs5{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:3.199840pt;}
.y2c{bottom:8.532907pt;}
.y29{bottom:9.866173pt;}
.y2b{bottom:15.332567pt;}
.y28{bottom:19.065713pt;}
.y27{bottom:52.009267pt;}
.y155{bottom:219.301333pt;}
.y26{bottom:220.001333pt;}
.yb8{bottom:220.049333pt;}
.y54{bottom:221.104000pt;}
.y1a1{bottom:222.549333pt;}
.y93{bottom:227.541333pt;}
.yf3{bottom:232.870667pt;}
.y136{bottom:233.008000pt;}
.y25{bottom:233.546667pt;}
.ycd{bottom:235.573333pt;}
.y154{bottom:237.366667pt;}
.yb7{bottom:238.114667pt;}
.y53{bottom:239.169333pt;}
.y1a0{bottom:240.614667pt;}
.y92{bottom:245.606667pt;}
.y24{bottom:248.158667pt;}
.yf2{bottom:250.936000pt;}
.y135{bottom:251.073333pt;}
.ycc{bottom:253.638667pt;}
.y153{bottom:255.433333pt;}
.yb6{bottom:256.181333pt;}
.y52{bottom:257.236000pt;}
.y19f{bottom:258.680000pt;}
.y23{bottom:263.002667pt;}
.y91{bottom:263.672000pt;}
.yf1{bottom:269.002667pt;}
.y134{bottom:269.138667pt;}
.ycb{bottom:271.704000pt;}
.y152{bottom:273.498667pt;}
.yb5{bottom:274.246667pt;}
.y51{bottom:275.301333pt;}
.y19e{bottom:276.745333pt;}
.y171{bottom:281.008000pt;}
.y90{bottom:281.737333pt;}
.yf0{bottom:287.068000pt;}
.yca{bottom:289.769333pt;}
.y113{bottom:290.848000pt;}
.y6b{bottom:291.152000pt;}
.y151{bottom:291.564000pt;}
.yb4{bottom:292.312000pt;}
.y50{bottom:293.366667pt;}
.y19d{bottom:294.812000pt;}
.y170{bottom:299.073333pt;}
.y8f{bottom:299.804000pt;}
.yef{bottom:305.133333pt;}
.y133{bottom:305.269333pt;}
.y22{bottom:305.294667pt;}
.y194{bottom:306.972000pt;}
.yc9{bottom:307.836000pt;}
.y112{bottom:308.913333pt;}
.y6a{bottom:309.217333pt;}
.y150{bottom:309.629333pt;}
.yb3{bottom:310.377333pt;}
.y4f{bottom:311.432000pt;}
.y19c{bottom:312.877333pt;}
.y16f{bottom:317.138667pt;}
.y8e{bottom:317.869333pt;}
.yee{bottom:323.198667pt;}
.y132{bottom:323.336000pt;}
.y21{bottom:323.360000pt;}
.y193{bottom:325.037333pt;}
.yc8{bottom:325.901333pt;}
.y111{bottom:326.978667pt;}
.y69{bottom:327.284000pt;}
.y14f{bottom:327.694667pt;}
.yb2{bottom:328.442667pt;}
.y4e{bottom:329.497333pt;}
.y19b{bottom:330.942667pt;}
.y16e{bottom:335.204000pt;}
.y8d{bottom:335.934667pt;}
.y131{bottom:341.401333pt;}
.y20{bottom:341.426667pt;}
.y192{bottom:343.102667pt;}
.yc7{bottom:343.966667pt;}
.y110{bottom:345.044000pt;}
.y68{bottom:345.349333pt;}
.y14e{bottom:345.761333pt;}
.yb1{bottom:346.509333pt;}
.y4d{bottom:347.562667pt;}
.y19a{bottom:349.008000pt;}
.yed{bottom:350.624000pt;}
.y16d{bottom:353.269333pt;}
.y8c{bottom:354.000000pt;}
.y130{bottom:359.466667pt;}
.y1f{bottom:359.492000pt;}
.y191{bottom:361.168000pt;}
.yc6{bottom:362.032000pt;}
.y10f{bottom:363.110667pt;}
.y14d{bottom:363.826667pt;}
.yb0{bottom:364.574667pt;}
.y4c{bottom:365.629333pt;}
.y199{bottom:367.073333pt;}
.y16c{bottom:371.336000pt;}
.y8b{bottom:372.065333pt;}
.y12f{bottom:377.532000pt;}
.y1e{bottom:377.557333pt;}
.y67{bottom:377.766667pt;}
.y190{bottom:379.233333pt;}
.yc5{bottom:380.097333pt;}
.y10e{bottom:381.176000pt;}
.yaf{bottom:382.640000pt;}
.y198{bottom:385.138667pt;}
.y16b{bottom:389.401333pt;}
.yec{bottom:389.501333pt;}
.y8a{bottom:390.130667pt;}
.y14c{bottom:391.252000pt;}
.y4b{bottom:393.054667pt;}
.y1d{bottom:395.622667pt;}
.yc4{bottom:398.164000pt;}
.y10d{bottom:399.241333pt;}
.yae{bottom:400.705333pt;}
.y197{bottom:403.205333pt;}
.y16a{bottom:407.466667pt;}
.yeb{bottom:407.566667pt;}
.y89{bottom:408.197333pt;}
.y18f{bottom:411.652000pt;}
.y12e{bottom:413.664000pt;}
.y1c{bottom:413.688000pt;}
.y10c{bottom:417.306667pt;}
.y196{bottom:421.270667pt;}
.y66{bottom:423.517333pt;}
.y169{bottom:425.532000pt;}
.yea{bottom:425.632000pt;}
.y4a{bottom:426.004000pt;}
.y88{bottom:426.262667pt;}
.yad{bottom:428.130667pt;}
.y14b{bottom:430.129333pt;}
.y12d{bottom:431.729333pt;}
.y1b{bottom:431.754667pt;}
.y10b{bottom:435.372000pt;}
.y195{bottom:439.336000pt;}
.y65{bottom:441.582667pt;}
.y168{bottom:443.597333pt;}
.ye9{bottom:443.698667pt;}
.yc3{bottom:447.770667pt;}
.y14a{bottom:448.194667pt;}
.y12c{bottom:449.794667pt;}
.y1a{bottom:449.820000pt;}
.y10a{bottom:453.438667pt;}
.y18e{bottom:457.401333pt;}
.y64{bottom:459.648000pt;}
.y167{bottom:461.664000pt;}
.ye8{bottom:461.764000pt;}
.y87{bottom:462.393333pt;}
.yc2{bottom:463.710667pt;}
.y149{bottom:466.260000pt;}
.yac{bottom:467.008000pt;}
.y12b{bottom:467.860000pt;}
.y19{bottom:467.885333pt;}
.y49{bottom:471.753333pt;}
.y18d{bottom:475.466667pt;}
.y63{bottom:477.713333pt;}
.ye7{bottom:479.829333pt;}
.y86{bottom:480.458667pt;}
.y148{bottom:484.325333pt;}
.yab{bottom:485.073333pt;}
.y12a{bottom:485.925333pt;}
.y18{bottom:485.950667pt;}
.yc1{bottom:487.528000pt;}
.y109{bottom:489.569333pt;}
.y48{bottom:489.818667pt;}
.y18c{bottom:493.533333pt;}
.y62{bottom:495.778667pt;}
.ye6{bottom:497.894667pt;}
.y85{bottom:498.525333pt;}
.y147{bottom:502.390667pt;}
.yaa{bottom:503.138667pt;}
.yc0{bottom:503.468000pt;}
.y129{bottom:503.992000pt;}
.y17{bottom:504.016000pt;}
.y166{bottom:504.097333pt;}
.y108{bottom:507.634667pt;}
.y47{bottom:507.885333pt;}
.y18b{bottom:511.598667pt;}
.y61{bottom:513.845333pt;}
.ye5{bottom:515.960000pt;}
.y84{bottom:516.590667pt;}
.ybf{bottom:519.409333pt;}
.y165{bottom:520.037333pt;}
.y146{bottom:520.457333pt;}
.ya9{bottom:521.205333pt;}
.y128{bottom:522.057333pt;}
.y16{bottom:522.082667pt;}
.y107{bottom:525.700000pt;}
.y46{bottom:525.950667pt;}
.y18a{bottom:529.664000pt;}
.y60{bottom:531.910667pt;}
.ye4{bottom:534.026667pt;}
.y83{bottom:534.656000pt;}
.ybe{bottom:535.349333pt;}
.y145{bottom:538.522667pt;}
.ya8{bottom:539.270667pt;}
.y127{bottom:540.122667pt;}
.y15{bottom:540.148000pt;}
.y106{bottom:543.766667pt;}
.y164{bottom:543.854667pt;}
.y45{bottom:544.016000pt;}
.y189{bottom:547.729333pt;}
.y5f{bottom:549.976000pt;}
.ybd{bottom:551.820000pt;}
.ye3{bottom:552.092000pt;}
.y82{bottom:552.721333pt;}
.y144{bottom:556.588000pt;}
.y126{bottom:558.188000pt;}
.y14{bottom:558.213333pt;}
.y163{bottom:559.796000pt;}
.y105{bottom:561.832000pt;}
.y44{bottom:562.081333pt;}
.y188{bottom:565.794667pt;}
.y5e{bottom:568.041333pt;}
.ye2{bottom:570.157333pt;}
.y81{bottom:570.786667pt;}
.y143{bottom:574.653333pt;}
.ya7{bottom:575.401333pt;}
.y162{bottom:575.736000pt;}
.y125{bottom:576.253333pt;}
.y13{bottom:576.278667pt;}
.y104{bottom:579.897333pt;}
.y43{bottom:580.146667pt;}
.y187{bottom:583.861333pt;}
.y5d{bottom:586.106667pt;}
.ybc{bottom:587.573333pt;}
.ye1{bottom:588.222667pt;}
.y80{bottom:588.853333pt;}
.y161{bottom:591.676000pt;}
.y142{bottom:592.718667pt;}
.ya6{bottom:593.466667pt;}
.y42{bottom:598.213333pt;}
.y186{bottom:601.926667pt;}
.ybb{bottom:603.513333pt;}
.y124{bottom:603.678667pt;}
.y5c{bottom:604.173333pt;}
.ye0{bottom:606.288000pt;}
.y7f{bottom:606.918667pt;}
.y160{bottom:607.616000pt;}
.y12{bottom:608.696000pt;}
.ya5{bottom:611.533333pt;}
.y103{bottom:616.028000pt;}
.y41{bottom:616.278667pt;}
.y185{bottom:619.992000pt;}
.y5b{bottom:622.238667pt;}
.y15f{bottom:624.088000pt;}
.ydf{bottom:624.354667pt;}
.y7e{bottom:624.984000pt;}
.y141{bottom:625.137333pt;}
.yba{bottom:626.978667pt;}
.ya4{bottom:629.598667pt;}
.y102{bottom:634.094667pt;}
.y40{bottom:634.344000pt;}
.y184{bottom:638.057333pt;}
.y5a{bottom:640.304000pt;}
.yde{bottom:642.420000pt;}
.y7d{bottom:643.049333pt;}
.ya3{bottom:647.664000pt;}
.y101{bottom:652.160000pt;}
.y3f{bottom:652.409333pt;}
.y123{bottom:653.041333pt;}
.y183{bottom:656.122667pt;}
.y59{bottom:658.369333pt;}
.ydd{bottom:660.485333pt;}
.y7c{bottom:661.114667pt;}
.ya2{bottom:665.729333pt;}
.y122{bottom:668.981333pt;}
.y100{bottom:670.225333pt;}
.y3e{bottom:670.474667pt;}
.y140{bottom:670.886667pt;}
.y182{bottom:674.189333pt;}
.y11{bottom:674.509333pt;}
.y15e{bottom:676.085333pt;}
.y58{bottom:676.434667pt;}
.ydc{bottom:678.550667pt;}
.y7b{bottom:679.181333pt;}
.ya1{bottom:683.794667pt;}
.y121{bottom:684.921333pt;}
.yff{bottom:688.290667pt;}
.y3d{bottom:688.541333pt;}
.y13f{bottom:688.953333pt;}
.y10{bottom:689.121333pt;}
.y15d{bottom:692.026667pt;}
.y181{bottom:692.254667pt;}
.y57{bottom:694.501333pt;}
.ydb{bottom:696.616000pt;}
.y7a{bottom:697.246667pt;}
.y120{bottom:700.861333pt;}
.ya0{bottom:701.861333pt;}
.yfe{bottom:706.356000pt;}
.y3c{bottom:706.606667pt;}
.y13e{bottom:707.018667pt;}
.y180{bottom:710.320000pt;}
.yf{bottom:713.813333pt;}
.y79{bottom:715.312000pt;}
.y15c{bottom:715.844000pt;}
.y56{bottom:721.926667pt;}
.yfd{bottom:724.422667pt;}
.y3b{bottom:724.672000pt;}
.y11f{bottom:724.678667pt;}
.y13d{bottom:725.084000pt;}
.y17f{bottom:728.385333pt;}
.ye{bottom:728.425333pt;}
.yda{bottom:729.033333pt;}
.y15b{bottom:731.784000pt;}
.y78{bottom:733.377333pt;}
.y11e{bottom:740.618667pt;}
.yfc{bottom:742.488000pt;}
.y3a{bottom:742.737333pt;}
.yd{bottom:743.036000pt;}
.y13c{bottom:743.149333pt;}
.y9f{bottom:744.294667pt;}
.y17e{bottom:746.450667pt;}
.y15a{bottom:747.724000pt;}
.y77{bottom:751.442667pt;}
.y11d{bottom:756.560000pt;}
.yc{bottom:757.648000pt;}
.y9e{bottom:760.234667pt;}
.yfb{bottom:760.553333pt;}
.y39{bottom:760.802667pt;}
.y13b{bottom:761.214667pt;}
.y159{bottom:763.664000pt;}
.y17d{bottom:764.517333pt;}
.y76{bottom:769.509333pt;}
.yb{bottom:772.260000pt;}
.y11c{bottom:772.500000pt;}
.yd9{bottom:774.784000pt;}
.y9d{bottom:776.176000pt;}
.y38{bottom:778.869333pt;}
.y13a{bottom:779.281333pt;}
.y158{bottom:779.604000pt;}
.y17c{bottom:782.582667pt;}
.ya{bottom:786.872000pt;}
.y75{bottom:787.574667pt;}
.yfa{bottom:787.978667pt;}
.y11b{bottom:788.970667pt;}
.yd8{bottom:792.849333pt;}
.y157{bottom:796.076000pt;}
.y37{bottom:796.934667pt;}
.y139{bottom:797.346667pt;}
.y17b{bottom:800.648000pt;}
.y9{bottom:801.484000pt;}
.y9c{bottom:803.130667pt;}
.y11a{bottom:804.912000pt;}
.y74{bottom:805.640000pt;}
.yd7{bottom:810.916000pt;}
.y36{bottom:815.000000pt;}
.y8{bottom:816.096000pt;}
.y17a{bottom:818.713333pt;}
.y9b{bottom:819.070667pt;}
.y73{bottom:823.705333pt;}
.yf9{bottom:826.856000pt;}
.yd6{bottom:828.981333pt;}
.y7{bottom:830.708000pt;}
.y55{bottom:833.065333pt;}
.y9a{bottom:835.010667pt;}
.y179{bottom:836.778667pt;}
.y119{bottom:840.969333pt;}
.y72{bottom:841.770667pt;}
.yf8{bottom:844.921333pt;}
.y6{bottom:845.320000pt;}
.y138{bottom:846.708000pt;}
.y99{bottom:850.950667pt;}
.y35{bottom:851.130667pt;}
.y178{bottom:854.845333pt;}
.y118{bottom:856.909333pt;}
.y71{bottom:859.837333pt;}
.y5{bottom:859.932000pt;}
.y137{bottom:862.648000pt;}
.y98{bottom:866.890667pt;}
.y34{bottom:869.197333pt;}
.y117{bottom:872.849333pt;}
.y177{bottom:872.910667pt;}
.y156{bottom:877.902667pt;}
.yd5{bottom:878.588000pt;}
.y33{bottom:887.262667pt;}
.y116{bottom:888.790667pt;}
.y97{bottom:890.134667pt;}
.y176{bottom:890.976000pt;}
.yd4{bottom:894.528000pt;}
.y70{bottom:895.968000pt;}
.y4{bottom:900.048000pt;}
.y32{bottom:905.328000pt;}
.y96{bottom:906.074667pt;}
.y175{bottom:909.041333pt;}
.yf7{bottom:910.469333pt;}
.y115{bottom:912.608000pt;}
.y6f{bottom:914.033333pt;}
.yd3{bottom:918.345333pt;}
.y95{bottom:922.014667pt;}
.y31{bottom:923.393333pt;}
.yf6{bottom:926.409333pt;}
.y174{bottom:927.106667pt;}
.y114{bottom:928.548000pt;}
.y3{bottom:930.600000pt;}
.y6e{bottom:932.098667pt;}
.yd2{bottom:934.286667pt;}
.y30{bottom:941.458667pt;}
.yf5{bottom:942.349333pt;}
.y173{bottom:945.173333pt;}
.y94{bottom:945.257333pt;}
.yb9{bottom:948.640000pt;}
.y6d{bottom:950.165333pt;}
.yd1{bottom:950.226667pt;}
.y2f{bottom:959.525333pt;}
.y172{bottom:963.238667pt;}
.y2{bottom:965.137333pt;}
.yd0{bottom:966.166667pt;}
.y6c{bottom:968.230667pt;}
.y2e{bottom:977.590667pt;}
.yf4{bottom:982.106667pt;}
.ycf{bottom:982.638667pt;}
.y1{bottom:994.361333pt;}
.y2d{bottom:995.656000pt;}
.yce{bottom:998.578667pt;}
.hf{height:12.372715pt;}
.hd{height:18.772395pt;}
.he{height:20.052331pt;}
.hb{height:22.571418pt;}
.hc{height:23.732147pt;}
.h4{height:33.474560pt;}
.h6{height:33.857126pt;}
.h16{height:35.953737pt;}
.h14{height:37.087439pt;}
.h13{height:37.618778pt;}
.h15{height:39.738215pt;}
.h5{height:40.610943pt;}
.ha{height:41.078067pt;}
.h8{height:41.192762pt;}
.h9{height:41.843200pt;}
.h10{height:44.505225pt;}
.h11{height:49.376621pt;}
.h12{height:49.381955pt;}
.h3{height:52.891040pt;}
.h7{height:53.406121pt;}
.h2{height:64.087196pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:96.128527pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:11.199440pt;}
.x5{left:18.532407pt;}
.x8{left:54.530607pt;}
.x7{left:63.330167pt;}
.x1{left:118.252000pt;}
.x3{left:119.718667pt;}
.x23{left:124.238667pt;}
.x4a{left:125.818667pt;}
.x9{left:133.600000pt;}
.x24{left:137.765333pt;}
.x33{left:140.670667pt;}
.x4b{left:150.212000pt;}
.xc{left:154.638667pt;}
.xd{left:161.402667pt;}
.x4{left:166.626667pt;}
.x2{left:174.108000pt;}
.x29{left:185.352000pt;}
.x25{left:189.042667pt;}
.x47{left:192.990667pt;}
.x3f{left:199.957333pt;}
.x26{left:202.570667pt;}
.x2a{left:206.208000pt;}
.x2b{left:212.986667pt;}
.x36{left:216.233333pt;}
.x31{left:217.982667pt;}
.x3a{left:226.569333pt;}
.x34{left:230.750667pt;}
.xe{left:238.170667pt;}
.x3b{left:240.097333pt;}
.x38{left:243.130667pt;}
.xf{left:244.934667pt;}
.x44{left:259.904000pt;}
.x43{left:267.670667pt;}
.x2c{left:269.913333pt;}
.x35{left:271.054667pt;}
.x3c{left:272.352000pt;}
.x37{left:298.484000pt;}
.x2d{left:301.670667pt;}
.x21{left:311.232000pt;}
.x32{left:317.233333pt;}
.x22{left:324.760000pt;}
.x30{left:338.294667pt;}
.x27{left:339.786667pt;}
.x28{left:364.661333pt;}
.x39{left:377.150667pt;}
.x1b{left:378.226667pt;}
.x17{left:384.666667pt;}
.x18{left:391.429333pt;}
.x42{left:408.656000pt;}
.x12{left:412.804000pt;}
.x13{left:419.568000pt;}
.x1c{left:433.001333pt;}
.x45{left:442.288000pt;}
.x4f{left:449.536000pt;}
.x46{left:455.816000pt;}
.x10{left:515.522667pt;}
.x11{left:522.286667pt;}
.x19{left:529.072000pt;}
.x4c{left:531.320000pt;}
.x1a{left:535.836000pt;}
.x4e{left:537.754667pt;}
.xa{left:540.865333pt;}
.x2e{left:542.214667pt;}
.xb{left:547.629333pt;}
.x40{left:549.312000pt;}
.x2f{left:573.970667pt;}
.x3d{left:576.086667pt;}
.x1f{left:587.088000pt;}
.x3e{left:589.614667pt;}
.x48{left:592.970667pt;}
.x41{left:597.241333pt;}
.x20{left:600.614667pt;}
.x49{left:606.497333pt;}
.x16{left:613.352000pt;}
.x1d{left:618.088000pt;}
.x14{left:620.854667pt;}
.x15{left:627.618667pt;}
.x1e{left:631.616000pt;}
.x4d{left:673.749333pt;}
}




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