
    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_7f90daf9401857efb9026e0c.woff')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_af15da4ac246f57622bc4cb8.woff')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_7e632e2ada0fd101207a2f75.woff')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_66a0ad792f506d437f7d09a5.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5128e08184b7490804086c48.woff')format("woff");}.ff5{font-family:ff5;line-height:0.499000;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_4b38241e1bd8d1a3379c2531.woff')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_582a3ab7f1386792f1c571cd.woff')format("woff");}.ff7{font-family:ff7;line-height:0.929199;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_28a1c7830340998ec947e387.woff')format("woff");}.ff8{font-family:ff8;line-height:0.926270;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_7375d0d42ec13696e66cec4d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_e681c74088e087e4625e017b.woff')format("woff");}.ffa{font-family:ffa;line-height:0.727539;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_8f7a1ee8368b9a8467aaedf0.woff')format("woff");}.ffb{font-family:ffb;line-height:0.740723;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_0445a89e871a53ff812bbc97.woff')format("woff");}.ffc{font-family:ffc;line-height:0.740234;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_041b8f8ad8c7554f685acef1.woff')format("woff");}.ffd{font-family:ffd;line-height:0.730957;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_e996b35428349543887a3ddf.woff')format("woff");}.ffe{font-family:ffe;line-height:0.730469;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_a03e77e4f679672dec541fd9.woff')format("woff");}.fff{font-family:fff;line-height:0.917480;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_532271c15edde39f06465f71.woff')format("woff");}.ff10{font-family:ff10;line-height:0.730957;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_a03e77e4f679672dec541fd9.woff')format("woff");}.ff11{font-family:ff11;line-height:0.917480;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_a03e77e4f679672dec541fd9.woff')format("woff");}.ff12{font-family:ff12;line-height:0.917480;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_0a29688a7ed31bfa15bb7264.woff')format("woff");}.ff13{font-family:ff13;line-height:0.829000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_2202bcdcb1577b76c6c4666e.woff')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_40b000b3a44fe22109c36355.woff')format("woff");}.ff15{font-family:ff15;line-height:0.668000;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:ff16;src:url('chunks/assets/font_18c2908bb3535e61e126290c.woff')format("woff");}.ff16{font-family:ff16;line-height:0.259000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_9e4f7418e8191f209c4d440d.woff')format("woff");}.ff17{font-family:ff17;line-height:0.838000;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:ff18;src:url('chunks/assets/font_66a0ad792f506d437f7d09a5.woff')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_87790131eaa71a45f9974d36.woff')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_f55184ec90fa8219eaf98e4a.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.668000;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:ff1b;src:url('chunks/assets/font_7fb50519189c6150840b19d9.woff')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_1ab6379eedd9a831399b2d78.woff')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_8262605a06314eba6a6bfc12.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.938477;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:ff1e;src:url('chunks/assets/font_8541c1472f713c978bd9ee23.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.938477;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;}
.m1e{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);}
.m6{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);}
.m17{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);}
.m11{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);}
.md{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);}
.m1c{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);}
.m18{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);}
.m20{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);}
.m1d{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);}
.mb{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);}
.m8{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);}
.m21{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);}
.m1f{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);}
.m13{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);}
.m14{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);}
.m4{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);}
.m1b{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);}
.m10{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);}
.m23{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);}
.me{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);}
.ma{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);}
.m7{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);}
.m1a{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);}
.mc{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);}
.mf{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);}
.m12{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);}
.m9{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);}
.m15{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);}
.m5{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);}
.m1{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);}
.m16{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);}
.m22{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);}
.m3{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);}
.m19{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);}
.v2{vertical-align:-15.840000px;}
.v4{vertical-align:-14.100000px;}
.v5{vertical-align:-7.878000px;}
.v7{vertical-align:-6.528000px;}
.v8{vertical-align:-1.454478px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:5.817912px;}
.v6{vertical-align:7.878000px;}
.v3{vertical-align:14.100000px;}
.v1{vertical-align:19.530000px;}
.ls6{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.001133px;}
.ls1f{letter-spacing:0.001925px;}
.ls1a{letter-spacing:1.549925px;}
.ls28{letter-spacing:1.743377px;}
.ls16{letter-spacing:1.942797px;}
.ls1e{letter-spacing:1.945925px;}
.ls5{letter-spacing:2.988195px;}
.ls4{letter-spacing:2.989167px;}
.ls26{letter-spacing:3.685642px;}
.ls27{letter-spacing:4.819687px;}
.lsb{letter-spacing:5.459247px;}
.lse{letter-spacing:8.636729px;}
.ls1c{letter-spacing:9.172473px;}
.ls20{letter-spacing:9.410729px;}
.ls12{letter-spacing:9.800729px;}
.ls14{letter-spacing:10.188450px;}
.ls17{letter-spacing:10.190729px;}
.ls8{letter-spacing:10.790314px;}
.ls11{letter-spacing:10.792797px;}
.lsa{letter-spacing:10.796314px;}
.ls24{letter-spacing:11.717347px;}
.ls2b{letter-spacing:12.274556px;}
.ls15{letter-spacing:12.343844px;}
.ls10{letter-spacing:12.349844px;}
.ls21{letter-spacing:12.558626px;}
.ls18{letter-spacing:12.564626px;}
.ls19{letter-spacing:12.734314px;}
.ls13{letter-spacing:13.196976px;}
.ls1b{letter-spacing:13.202976px;}
.ls2{letter-spacing:13.451578px;}
.ls0{letter-spacing:13.535129px;}
.ls1{letter-spacing:13.538271px;}
.lsd{letter-spacing:13.802976px;}
.lsc{letter-spacing:13.899551px;}
.ls7{letter-spacing:14.309247px;}
.ls3{letter-spacing:14.378078px;}
.ls9{letter-spacing:15.278570px;}
.ls1d{letter-spacing:17.070261px;}
.lsf{letter-spacing:18.022473px;}
.ls23{letter-spacing:21.007687px;}
.ls22{letter-spacing:31.118314px;}
.ls2a{letter-spacing:55.804228px;}
.ls29{letter-spacing:179.113133px;}
.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;}
}
.ws4b{word-spacing:-39.786701px;}
.ws66{word-spacing:-39.083472px;}
.ws67{word-spacing:-38.813472px;}
.ws65{word-spacing:-34.269581px;}
.ws22{word-spacing:-29.133903px;}
.ws55{word-spacing:-26.498564px;}
.ws24{word-spacing:-16.994777px;}
.ws44{word-spacing:-13.449600px;}
.ws37{word-spacing:-10.460700px;}
.ws70{word-spacing:-8.082012px;}
.ws23{word-spacing:-6.295591px;}
.ws7e{word-spacing:-4.196275px;}
.ws12{word-spacing:-3.825648px;}
.ws25{word-spacing:-3.712090px;}
.ws75{word-spacing:-3.443098px;}
.ws17{word-spacing:-3.395263px;}
.ws19{word-spacing:-3.389299px;}
.ws26{word-spacing:-3.174106px;}
.ws7a{word-spacing:-3.066509px;}
.ws35{word-spacing:-2.958912px;}
.ws29{word-spacing:-2.905114px;}
.ws7d{word-spacing:-2.743718px;}
.ws3{word-spacing:-2.259533px;}
.ws1e{word-spacing:-2.175826px;}
.ws2e{word-spacing:-2.044339px;}
.ws87{word-spacing:-1.921941px;}
.ws78{word-spacing:-1.613952px;}
.ws2d{word-spacing:-1.560154px;}
.ws4a{word-spacing:-1.553078px;}
.ws76{word-spacing:-1.398758px;}
.ws72{word-spacing:-1.183565px;}
.ws1b{word-spacing:-1.087913px;}
.ws82{word-spacing:-1.004227px;}
.ws80{word-spacing:-1.001503px;}
.ws42{word-spacing:-0.914573px;}
.ws5{word-spacing:-0.806976px;}
.ws3a{word-spacing:-0.537984px;}
.ws1d{word-spacing:-0.460271px;}
.ws39{word-spacing:-0.322790px;}
.ws7f{word-spacing:-0.292900px;}
.ws2b{word-spacing:-0.268992px;}
.ws2{word-spacing:-0.215194px;}
.ws83{word-spacing:-0.209214px;}
.ws84{word-spacing:-0.167371px;}
.ws9{word-spacing:-0.161395px;}
.ws86{word-spacing:-0.125528px;}
.wsb{word-spacing:-0.107597px;}
.ws11{word-spacing:-0.095641px;}
.ws1{word-spacing:-0.065455px;}
.wsd{word-spacing:-0.053798px;}
.ws1c{word-spacing:-0.041843px;}
.ws49{word-spacing:-0.038854px;}
.ws5c{word-spacing:-0.035866px;}
.ws0{word-spacing:0.000000px;}
.ws4{word-spacing:0.053798px;}
.ws13{word-spacing:0.095641px;}
.ws2a{word-spacing:0.107597px;}
.ws27{word-spacing:0.161395px;}
.ws6b{word-spacing:0.166018px;}
.ws1a{word-spacing:0.167371px;}
.ws34{word-spacing:0.215194px;}
.ws8{word-spacing:0.268992px;}
.wsa{word-spacing:0.322790px;}
.ws2f{word-spacing:0.376589px;}
.ws46{word-spacing:0.393979px;}
.ws3f{word-spacing:0.430387px;}
.ws36{word-spacing:0.645581px;}
.ws74{word-spacing:0.699379px;}
.ws3d{word-spacing:0.842632px;}
.ws2c{word-spacing:0.860774px;}
.ws7c{word-spacing:0.914573px;}
.ws77{word-spacing:0.968371px;}
.ws68{word-spacing:1.183565px;}
.ws3b{word-spacing:1.344960px;}
.ws89{word-spacing:1.548184px;}
.ws31{word-spacing:2.367130px;}
.ws41{word-spacing:2.474726px;}
.ws8a{word-spacing:2.510568px;}
.ws8b{word-spacing:2.636096px;}
.ws28{word-spacing:2.636122px;}
.ws8f{word-spacing:3.138210px;}
.ws63{word-spacing:3.281702px;}
.ws79{word-spacing:3.389299px;}
.ws62{word-spacing:3.604493px;}
.ws8c{word-spacing:3.682166px;}
.ws20{word-spacing:3.933223px;}
.ws7{word-spacing:4.088678px;}
.ws64{word-spacing:4.572864px;}
.ws69{word-spacing:4.626662px;}
.ws38{word-spacing:4.680461px;}
.ws40{word-spacing:4.841856px;}
.ws6{word-spacing:5.057050px;}
.ws16{word-spacing:8.475974px;}
.ws88{word-spacing:8.494088px;}
.ws4d{word-spacing:8.600534px;}
.ws50{word-spacing:8.930534px;}
.ws81{word-spacing:9.414630px;}
.ws5f{word-spacing:10.145537px;}
.ws5e{word-spacing:10.149734px;}
.ws54{word-spacing:10.150319px;}
.ws53{word-spacing:10.154534px;}
.ws85{word-spacing:10.251486px;}
.ws1f{word-spacing:10.418857px;}
.ws57{word-spacing:10.750319px;}
.ws60{word-spacing:10.751537px;}
.ws5d{word-spacing:10.753334px;}
.ws52{word-spacing:10.755734px;}
.ws48{word-spacing:10.759334px;}
.ws15{word-spacing:11.859509px;}
.ws10{word-spacing:11.907329px;}
.ws14{word-spacing:12.002971px;}
.ws4e{word-spacing:12.304319px;}
.ws56{word-spacing:12.307928px;}
.ws43{word-spacing:12.453724px;}
.ws47{word-spacing:13.004198px;}
.wsf{word-spacing:13.395802px;}
.wse{word-spacing:13.449600px;}
.ws8e{word-spacing:13.557067px;}
.ws5a{word-spacing:13.750098px;}
.ws45{word-spacing:13.771703px;}
.ws8d{word-spacing:14.059181px;}
.ws73{word-spacing:14.087172px;}
.ws59{word-spacing:14.162198px;}
.ws7b{word-spacing:14.304870px;}
.ws6a{word-spacing:14.357357px;}
.ws4c{word-spacing:14.558198px;}
.ws33{word-spacing:14.738502px;}
.ws30{word-spacing:14.779027px;}
.ws51{word-spacing:14.942198px;}
.ws6e{word-spacing:14.969330px;}
.ws6c{word-spacing:15.072554px;}
.ws6d{word-spacing:15.081815px;}
.ws3c{word-spacing:15.698533px;}
.wsc{word-spacing:16.298195px;}
.ws32{word-spacing:17.245592px;}
.ws3e{word-spacing:20.121850px;}
.ws71{word-spacing:26.092224px;}
.ws18{word-spacing:65.389145px;}
.ws4f{word-spacing:332.053928px;}
.ws6f{word-spacing:488.693294px;}
.ws58{word-spacing:492.011537px;}
.ws5b{word-spacing:545.855537px;}
.ws61{word-spacing:605.459537px;}
.ws21{word-spacing:1096.561432px;}
._0{margin-left:-7.540345px;}
._3{margin-left:-4.357670px;}
._1{margin-left:-3.012698px;}
._2{margin-left:-1.452569px;}
._4{width:1.129766px;}
._5{width:2.199748px;}
._8{width:3.251810px;}
._6{width:5.260264px;}
._d{width:6.335846px;}
._c{width:8.966385px;}
._b{width:11.512858px;}
._7{width:14.579366px;}
._e{width:20.304896px;}
._10{width:24.603566px;}
._a{width:65.454600px;}
._f{width:348.075648px;}
._9{width:1046.378880px;}
.fc7{color:transparent;}
.fc5{color:rgb(51,51,255);}
.fc3{color:rgb(0,87,0);}
.fc1{color:rgb(255,0,0);}
.fc6{color:rgb(220,187,88);}
.fc4{color:rgb(59,59,59);}
.fc2{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs12{font-size:17.453737px;}
.fsc{font-size:17.804052px;}
.fs8{font-size:19.422602px;}
.fsb{font-size:21.041152px;}
.fs9{font-size:22.659703px;}
.fs13{font-size:23.271650px;}
.fs7{font-size:24.278253px;}
.fs14{font-size:29.089562px;}
.fs6{font-size:29.133903px;}
.fse{font-size:32.877000px;}
.fs10{font-size:35.865600px;}
.fsa{font-size:38.845205px;}
.fs11{font-size:38.854200px;}
.fs5{font-size:41.842800px;}
.fsd{font-size:43.636200px;}
.fs2{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fsf{font-size:54.000000px;}
.fs3{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y5e{bottom:2.342901px;}
.yd3{bottom:5.031305px;}
.y46{bottom:7.603189px;}
.y5d{bottom:8.412465px;}
.yd5{bottom:9.758359px;}
.yd2{bottom:10.121979px;}
.y4a{bottom:10.435652px;}
.yd9{bottom:11.940076px;}
.yd7{bottom:14.121793px;}
.yd4{bottom:15.212652px;}
.yd1{bottom:15.576272px;}
.y47{bottom:19.742316px;}
.yd0{bottom:20.666945px;}
.y4b{bottom:22.574779px;}
.y40{bottom:26.216517px;}
.y48{bottom:27.835067px;}
.y4e{bottom:28.239704px;}
.y56{bottom:29.858255px;}
.y4c{bottom:30.667530px;}
.y3e{bottom:31.476805px;}
.y52{bottom:32.286080px;}
.y59{bottom:34.309268px;}
.ye0{bottom:34.848107px;}
.y45{bottom:35.927818px;}
.y3d{bottom:37.546368px;}
.yc9{bottom:37.757063px;}
.y5f{bottom:37.951006px;}
.y41{bottom:38.355643px;}
.y49{bottom:38.760281px;}
.y4f{bottom:40.378831px;}
.ydf{bottom:42.120497px;}
.y3c{bottom:43.211294px;}
.y53{bottom:43.615931px;}
.y83{bottom:43.905000px;}
.y51{bottom:44.020569px;}
.y42{bottom:46.448394px;}
.y50{bottom:48.471582px;}
.y58{bottom:50.090132px;}
.y3f{bottom:54.541145px;}
.y4d{bottom:56.564333px;}
.yc0{bottom:59.386760px;}
.yc1{bottom:60.113997px;}
.yde{bottom:61.755952px;}
.y54{bottom:63.038534px;}
.y44{bottom:64.252446px;}
.yd6{bottom:64.664908px;}
.ydd{bottom:69.028343px;}
.yc6{bottom:69.755582px;}
.y5b{bottom:70.726647px;}
.ybe{bottom:72.930881px;}
.yc5{bottom:75.573494px;}
.y5a{bottom:75.582298px;}
.y57{bottom:79.628673px;}
.yc4{bottom:80.664168px;}
.y3b{bottom:90.149249px;}
.y39{bottom:90.958524px;}
.y5c{bottom:95.814175px;}
.y55{bottom:97.028088px;}
.y3a{bottom:103.502288px;}
.y38{bottom:104.311563px;}
.y63{bottom:125.757353px;}
.yc3{bottom:126.116609px;}
.y34{bottom:127.405500px;}
.y107{bottom:128.236500px;}
.ybd{bottom:128.292638px;}
.ybb{bottom:128.317500px;}
.ybf{bottom:129.110788px;}
.yc2{bottom:131.207282px;}
.y82{bottom:131.293500px;}
.y62{bottom:131.826917px;}
.yc8{bottom:133.389000px;}
.ye1{bottom:135.570717px;}
.y61{bottom:137.491842px;}
.ydb{bottom:138.479673px;}
.yc7{bottom:138.843293px;}
.y33{bottom:139.360500px;}
.y60{bottom:143.561406px;}
.y106{bottom:144.675000px;}
.yba{bottom:144.756000px;}
.yda{bottom:145.752064px;}
.y43{bottom:150.440244px;}
.y32{bottom:151.315500px;}
.y81{bottom:153.907500px;}
.y37{bottom:157.723720px;}
.y105{bottom:161.112000px;}
.yb9{bottom:161.194500px;}
.y31{bottom:163.270500px;}
.y36{bottom:166.625746px;}
.yca{bottom:167.569236px;}
.y80{bottom:170.344500px;}
.y30{bottom:176.421000px;}
.y104{bottom:177.550500px;}
.yb8{bottom:177.633000px;}
.y7f{bottom:186.783000px;}
.ycf{bottom:189.022788px;}
.y2f{bottom:189.571500px;}
.ydc{bottom:192.295364px;}
.y103{bottom:193.989000px;}
.yb7{bottom:194.071500px;}
.yce{bottom:194.113461px;}
.yd8{bottom:196.295179px;}
.ycd{bottom:199.567754px;}
.y2e{bottom:201.526500px;}
.y7e{bottom:203.221500px;}
.ycc{bottom:204.658428px;}
.y102{bottom:210.427500px;}
.yb6{bottom:210.508500px;}
.ycb{bottom:213.385297px;}
.y2d{bottom:213.481500px;}
.y7d{bottom:219.660000px;}
.y2c{bottom:225.438000px;}
.y101{bottom:226.866000px;}
.yb5{bottom:226.947000px;}
.y7c{bottom:236.098500px;}
.y2b{bottom:237.393000px;}
.y100{bottom:243.304500px;}
.yb4{bottom:243.385500px;}
.y2a{bottom:249.348000px;}
.y7b{bottom:252.537000px;}
.yb3{bottom:259.824000px;}
.y29{bottom:261.303000px;}
.yff{bottom:263.853000px;}
.y7a{bottom:268.975500px;}
.yb2{bottom:276.262500px;}
.y79{bottom:285.414000px;}
.y28{bottom:288.643500px;}
.yb1{bottom:292.701000px;}
.yfe{bottom:298.122000px;}
.y78{bottom:301.852500px;}
.y27{bottom:305.082000px;}
.yfd{bottom:314.560500px;}
.yb0{bottom:317.170500px;}
.y77{bottom:318.291000px;}
.y26{bottom:321.520500px;}
.yfc{bottom:330.999000px;}
.y76{bottom:334.728000px;}
.y25{bottom:342.067500px;}
.yfb{bottom:347.437500px;}
.y75{bottom:351.166500px;}
.yaf{bottom:355.200000px;}
.yfa{bottom:363.876000px;}
.y74{bottom:367.605000px;}
.yae{bottom:371.638500px;}
.y24{bottom:376.282500px;}
.yf9{bottom:380.314500px;}
.y73{bottom:384.043500px;}
.yad{bottom:388.077000px;}
.y23{bottom:391.227000px;}
.yf8{bottom:396.753000px;}
.y72{bottom:400.482000px;}
.yac{bottom:404.515500px;}
.y22{bottom:406.170000px;}
.yf7{bottom:413.191500px;}
.y71{bottom:416.920500px;}
.yab{bottom:420.954000px;}
.y21{bottom:421.114500px;}
.yf6{bottom:429.630000px;}
.y70{bottom:433.359000px;}
.y20{bottom:436.059000px;}
.yaa{bottom:437.392500px;}
.y6f{bottom:449.797500px;}
.yf5{bottom:450.177000px;}
.y1f{bottom:451.002000px;}
.ya9{bottom:459.283500px;}
.y1e{bottom:465.946500px;}
.y6e{bottom:466.236000px;}
.ya8{bottom:473.853000px;}
.y1d{bottom:480.891000px;}
.y6d{bottom:482.674500px;}
.ya7{bottom:484.404000px;}
.yf4{bottom:484.447500px;}
.ya6{bottom:494.865000px;}
.y6c{bottom:499.113000px;}
.yf3{bottom:500.886000px;}
.y1c{bottom:503.229000px;}
.ya5{bottom:505.417500px;}
.y6b{bottom:515.550000px;}
.ya4{bottom:516.357000px;}
.yf2{bottom:517.324500px;}
.y1b{bottom:519.666000px;}
.y6a{bottom:531.988500px;}
.ya3{bottom:532.272000px;}
.yf1{bottom:533.763000px;}
.y1a{bottom:540.214500px;}
.y69{bottom:548.427000px;}
.ya2{bottom:548.710500px;}
.yf0{bottom:550.201500px;}
.y68{bottom:564.865500px;}
.ya1{bottom:565.149000px;}
.yef{bottom:566.638500px;}
.y19{bottom:572.823000px;}
.y67{bottom:581.304000px;}
.ya0{bottom:581.586000px;}
.yee{bottom:583.077000px;}
.y18{bottom:589.261500px;}
.y66{bottom:597.742500px;}
.y9f{bottom:598.024500px;}
.yed{bottom:599.515500px;}
.y17{bottom:605.700000px;}
.y65{bottom:614.181000px;}
.y9e{bottom:614.463000px;}
.yec{bottom:615.954000px;}
.y16{bottom:622.137000px;}
.y9d{bottom:630.901500px;}
.yeb{bottom:632.392500px;}
.y64{bottom:638.053500px;}
.y15{bottom:638.575500px;}
.y9c{bottom:647.340000px;}
.yea{bottom:648.831000px;}
.y14{bottom:655.014000px;}
.y9b{bottom:663.778500px;}
.ye9{bottom:665.269500px;}
.y13{bottom:671.452500px;}
.y35{bottom:672.898178px;}
.y9a{bottom:680.217000px;}
.ye8{bottom:681.708000px;}
.y12{bottom:687.891000px;}
.y99{bottom:696.655500px;}
.ye7{bottom:698.146500px;}
.y11{bottom:704.329500px;}
.y98{bottom:713.094000px;}
.ye6{bottom:714.585000px;}
.y10{bottom:720.768000px;}
.y97{bottom:729.532500px;}
.ye5{bottom:731.022000px;}
.yf{bottom:737.206500px;}
.y96{bottom:745.969500px;}
.ye4{bottom:747.460500px;}
.ye{bottom:753.645000px;}
.y95{bottom:762.408000px;}
.yd{bottom:770.083500px;}
.ye3{bottom:778.549500px;}
.y94{bottom:778.846500px;}
.yc{bottom:786.520500px;}
.ye2{bottom:794.988000px;}
.y93{bottom:799.395000px;}
.yb{bottom:802.959000px;}
.ya{bottom:819.397500px;}
.y92{bottom:833.827500px;}
.ybc{bottom:834.431886px;}
.y9{bottom:839.946000px;}
.y91{bottom:850.266000px;}
.y90{bottom:866.704500px;}
.y8{bottom:869.218500px;}
.y8f{bottom:883.143000px;}
.y7{bottom:884.161500px;}
.y8e{bottom:899.581500px;}
.y6{bottom:914.551500px;}
.y8d{bottom:916.020000px;}
.y113{bottom:923.865000px;}
.y5{bottom:929.496000px;}
.y8c{bottom:932.458500px;}
.y112{bottom:935.820000px;}
.y11d{bottom:939.930000px;}
.y111{bottom:947.776500px;}
.y8b{bottom:948.897000px;}
.y11c{bottom:951.885000px;}
.y110{bottom:959.731500px;}
.y4{bottom:959.886000px;}
.y11b{bottom:963.840000px;}
.y8a{bottom:965.335500px;}
.y10f{bottom:971.686500px;}
.y3{bottom:974.830500px;}
.y11a{bottom:975.795000px;}
.y119{bottom:975.796500px;}
.y89{bottom:981.774000px;}
.y10e{bottom:983.641500px;}
.y118{bottom:987.751500px;}
.y10d{bottom:995.596500px;}
.y88{bottom:998.211000px;}
.y117{bottom:999.706500px;}
.y10c{bottom:1007.551500px;}
.y116{bottom:1011.661500px;}
.y87{bottom:1014.649500px;}
.y2{bottom:1014.675000px;}
.y10b{bottom:1019.506500px;}
.y115{bottom:1023.616500px;}
.y86{bottom:1031.088000px;}
.y10a{bottom:1031.461500px;}
.y114{bottom:1035.571500px;}
.y1{bottom:1044.562500px;}
.y85{bottom:1047.526500px;}
.y109{bottom:1077.162000px;}
.y84{bottom:1088.323500px;}
.y108{bottom:1093.599000px;}
.h1d{height:12.706798px;}
.h13{height:12.796662px;}
.hc{height:14.140186px;}
.h12{height:15.123328px;}
.hd{height:16.220275px;}
.h11{height:16.286661px;}
.hf{height:16.496883px;}
.h1e{height:16.942398px;}
.hb{height:17.378867px;}
.h1f{height:18.524711px;}
.ha{height:20.939993px;}
.h20{height:21.177997px;}
.he{height:21.210278px;}
.h16{height:23.276916px;}
.h6{height:26.899200px;}
.h18{height:27.858461px;}
.h10{height:28.280371px;}
.h8{height:29.624702px;}
.h7{height:33.474420px;}
.h3{height:33.856985px;}
.h19{height:35.733066px;}
.h1a{height:35.739066px;}
.h21{height:36.098726px;}
.h17{height:37.152000px;}
.h14{height:37.658880px;}
.h5{height:38.089267px;}
.h1b{height:38.573453px;}
.h4{height:45.818220px;}
.h15{height:50.424430px;}
.h2{height:50.785690px;}
.h1{height:72.098095px;}
.h9{height:176.585213px;}
.h1c{height:221.605303px;}
.h0{height:1188.000000px;}
.w1{width:337.854361px;}
.w2{width:340.652798px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5e{left:2.223740px;}
.x5d{left:5.490635px;}
.x1a{left:7.605501px;}
.x19{left:8.819414px;}
.x1b{left:12.195608px;}
.x1f{left:13.814159px;}
.x18{left:27.932214px;}
.x17{left:28.943807px;}
.x1d{left:42.094528px;}
.x1c{left:43.106122px;}
.x1e{left:47.866937px;}
.x59{left:49.329516px;}
.x5a{left:62.056200px;}
.x34{left:65.000808px;}
.x56{left:66.215098px;}
.x2b{left:72.809047px;}
.x4c{left:74.038599px;}
.x29{left:75.040878px;}
.x2a{left:77.512958px;}
.x11{left:80.697000px;}
.x54{left:82.339352px;}
.x55{left:85.611928px;}
.x53{left:87.912956px;}
.x52{left:92.270710px;}
.x43{left:95.641500px;}
.x4e{left:99.605596px;}
.x2d{left:100.944001px;}
.x49{left:117.310500px;}
.x15{left:119.525718px;}
.x14{left:121.441422px;}
.x20{left:124.748071px;}
.x38{left:130.552091px;}
.x4a{left:138.063000px;}
.x8{left:143.214000px;}
.x37{left:146.737593px;}
.x50{left:148.006766px;}
.x12{left:149.619000px;}
.x32{left:153.540562px;}
.x51{left:155.506419px;}
.x3{left:156.568500px;}
.x5f{left:158.756269px;}
.x1{left:165.868500px;}
.x4d{left:167.874252px;}
.x2f{left:170.946297px;}
.x2e{left:187.688175px;}
.x31{left:189.306726px;}
.x63{left:193.947000px;}
.x36{left:196.103374px;}
.x64{left:198.739500px;}
.x2{left:200.226000px;}
.x23{left:203.140272px;}
.x22{left:204.151866px;}
.x65{left:206.632500px;}
.x24{left:208.912681px;}
.x35{left:212.288876px;}
.x33{left:232.849521px;}
.x2c{left:235.871658px;}
.x4f{left:237.053779px;}
.x5b{left:240.229770px;}
.x57{left:254.513200px;}
.x5c{left:259.115259px;}
.x44{left:265.117500px;}
.x30{left:266.592497px;}
.x58{left:267.967122px;}
.x26{left:271.119380px;}
.x25{left:272.130974px;}
.x27{left:276.891789px;}
.xd{left:285.210000px;}
.xe{left:287.218500px;}
.x16{left:289.125751px;}
.x21{left:308.251199px;}
.x28{left:310.027809px;}
.x9{left:376.392000px;}
.x47{left:388.248000px;}
.x4{left:390.885000px;}
.x48{left:394.503000px;}
.x5{left:411.078000px;}
.x45{left:429.114000px;}
.x46{left:435.369000px;}
.xa{left:448.096500px;}
.x3a{left:476.932500px;}
.x42{left:481.624500px;}
.x4b{left:486.987187px;}
.x13{left:488.194312px;}
.x3b{left:491.877000px;}
.x66{left:495.222000px;}
.xf{left:503.127000px;}
.x60{left:510.000000px;}
.x39{left:526.468500px;}
.x10{left:560.185500px;}
.x69{left:562.215000px;}
.x40{left:563.307000px;}
.x6a{left:567.819000px;}
.x41{left:569.560500px;}
.x67{left:583.590000px;}
.x68{left:588.952500px;}
.x61{left:590.697000px;}
.x6b{left:600.349500px;}
.x6c{left:605.991000px;}
.x3c{left:613.480500px;}
.x3d{left:619.735500px;}
.x6{left:621.723000px;}
.xb{left:631.126500px;}
.x3e{left:687.652500px;}
.xc{left:692.145000px;}
.x3f{left:693.907500px;}
.x7{left:695.068500px;}
.x62{left:710.785500px;}
@media print{
.v2{vertical-align:-14.080000pt;}
.v4{vertical-align:-12.533333pt;}
.v5{vertical-align:-7.002667pt;}
.v7{vertical-align:-5.802667pt;}
.v8{vertical-align:-1.292869pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:5.171478pt;}
.v6{vertical-align:7.002667pt;}
.v3{vertical-align:12.533333pt;}
.v1{vertical-align:17.360000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.001007pt;}
.ls1f{letter-spacing:0.001711pt;}
.ls1a{letter-spacing:1.377711pt;}
.ls28{letter-spacing:1.549668pt;}
.ls16{letter-spacing:1.726931pt;}
.ls1e{letter-spacing:1.729711pt;}
.ls5{letter-spacing:2.656173pt;}
.ls4{letter-spacing:2.657037pt;}
.ls26{letter-spacing:3.276126pt;}
.ls27{letter-spacing:4.284166pt;}
.lsb{letter-spacing:4.852664pt;}
.lse{letter-spacing:7.677092pt;}
.ls1c{letter-spacing:8.153309pt;}
.ls20{letter-spacing:8.365092pt;}
.ls12{letter-spacing:8.711759pt;}
.ls14{letter-spacing:9.056400pt;}
.ls17{letter-spacing:9.058426pt;}
.ls8{letter-spacing:9.591390pt;}
.ls11{letter-spacing:9.593597pt;}
.lsa{letter-spacing:9.596723pt;}
.ls24{letter-spacing:10.415420pt;}
.ls2b{letter-spacing:10.910717pt;}
.ls15{letter-spacing:10.972306pt;}
.ls10{letter-spacing:10.977639pt;}
.ls21{letter-spacing:11.163223pt;}
.ls18{letter-spacing:11.168556pt;}
.ls19{letter-spacing:11.319390pt;}
.ls13{letter-spacing:11.730645pt;}
.ls1b{letter-spacing:11.735979pt;}
.ls2{letter-spacing:11.956958pt;}
.ls0{letter-spacing:12.031226pt;}
.ls1{letter-spacing:12.034019pt;}
.lsd{letter-spacing:12.269312pt;}
.lsc{letter-spacing:12.355157pt;}
.ls7{letter-spacing:12.719331pt;}
.ls3{letter-spacing:12.780513pt;}
.ls9{letter-spacing:13.580951pt;}
.ls1d{letter-spacing:15.173565pt;}
.lsf{letter-spacing:16.019976pt;}
.ls23{letter-spacing:18.673499pt;}
.ls22{letter-spacing:27.660723pt;}
.ls2a{letter-spacing:49.603758pt;}
.ls29{letter-spacing:159.211674pt;}
.ws4b{word-spacing:-35.365956pt;}
.ws66{word-spacing:-34.740864pt;}
.ws67{word-spacing:-34.500864pt;}
.ws65{word-spacing:-30.461850pt;}
.ws22{word-spacing:-25.896803pt;}
.ws55{word-spacing:-23.554279pt;}
.ws24{word-spacing:-15.106468pt;}
.ws44{word-spacing:-11.955200pt;}
.ws37{word-spacing:-9.298400pt;}
.ws70{word-spacing:-7.184011pt;}
.ws23{word-spacing:-5.596081pt;}
.ws7e{word-spacing:-3.730022pt;}
.ws12{word-spacing:-3.400576pt;}
.ws25{word-spacing:-3.299635pt;}
.ws75{word-spacing:-3.060531pt;}
.ws17{word-spacing:-3.018011pt;}
.ws19{word-spacing:-3.012710pt;}
.ws26{word-spacing:-2.821427pt;}
.ws7a{word-spacing:-2.725786pt;}
.ws35{word-spacing:-2.630144pt;}
.ws29{word-spacing:-2.582323pt;}
.ws7d{word-spacing:-2.438861pt;}
.ws3{word-spacing:-2.008474pt;}
.ws1e{word-spacing:-1.934067pt;}
.ws2e{word-spacing:-1.817190pt;}
.ws87{word-spacing:-1.708392pt;}
.ws78{word-spacing:-1.434624pt;}
.ws2d{word-spacing:-1.386803pt;}
.ws4a{word-spacing:-1.380514pt;}
.ws76{word-spacing:-1.243341pt;}
.ws72{word-spacing:-1.052058pt;}
.ws1b{word-spacing:-0.967034pt;}
.ws82{word-spacing:-0.892646pt;}
.ws80{word-spacing:-0.890225pt;}
.ws42{word-spacing:-0.812954pt;}
.ws5{word-spacing:-0.717312pt;}
.ws3a{word-spacing:-0.478208pt;}
.ws1d{word-spacing:-0.409130pt;}
.ws39{word-spacing:-0.286925pt;}
.ws7f{word-spacing:-0.260355pt;}
.ws2b{word-spacing:-0.239104pt;}
.ws2{word-spacing:-0.191283pt;}
.ws83{word-spacing:-0.185968pt;}
.ws84{word-spacing:-0.148774pt;}
.ws9{word-spacing:-0.143462pt;}
.ws86{word-spacing:-0.111581pt;}
.wsb{word-spacing:-0.095642pt;}
.ws11{word-spacing:-0.085014pt;}
.ws1{word-spacing:-0.058182pt;}
.wsd{word-spacing:-0.047821pt;}
.ws1c{word-spacing:-0.037194pt;}
.ws49{word-spacing:-0.034537pt;}
.ws5c{word-spacing:-0.031881pt;}
.ws0{word-spacing:0.000000pt;}
.ws4{word-spacing:0.047821pt;}
.ws13{word-spacing:0.085014pt;}
.ws2a{word-spacing:0.095642pt;}
.ws27{word-spacing:0.143462pt;}
.ws6b{word-spacing:0.147572pt;}
.ws1a{word-spacing:0.148774pt;}
.ws34{word-spacing:0.191283pt;}
.ws8{word-spacing:0.239104pt;}
.wsa{word-spacing:0.286925pt;}
.ws2f{word-spacing:0.334746pt;}
.ws46{word-spacing:0.350203pt;}
.ws3f{word-spacing:0.382566pt;}
.ws36{word-spacing:0.573850pt;}
.ws74{word-spacing:0.621670pt;}
.ws3d{word-spacing:0.749006pt;}
.ws2c{word-spacing:0.765133pt;}
.ws7c{word-spacing:0.812954pt;}
.ws77{word-spacing:0.860774pt;}
.ws68{word-spacing:1.052058pt;}
.ws3b{word-spacing:1.195520pt;}
.ws89{word-spacing:1.376163pt;}
.ws31{word-spacing:2.104115pt;}
.ws41{word-spacing:2.199757pt;}
.ws8a{word-spacing:2.231616pt;}
.ws8b{word-spacing:2.343197pt;}
.ws28{word-spacing:2.343219pt;}
.ws8f{word-spacing:2.789520pt;}
.ws63{word-spacing:2.917069pt;}
.ws79{word-spacing:3.012710pt;}
.ws62{word-spacing:3.203994pt;}
.ws8c{word-spacing:3.273037pt;}
.ws20{word-spacing:3.496198pt;}
.ws7{word-spacing:3.634381pt;}
.ws64{word-spacing:4.064768pt;}
.ws69{word-spacing:4.112589pt;}
.ws38{word-spacing:4.160410pt;}
.ws40{word-spacing:4.303872pt;}
.ws6{word-spacing:4.495155pt;}
.ws16{word-spacing:7.534199pt;}
.ws88{word-spacing:7.550301pt;}
.ws4d{word-spacing:7.644919pt;}
.ws50{word-spacing:7.938253pt;}
.ws81{word-spacing:8.368560pt;}
.ws5f{word-spacing:9.018255pt;}
.ws5e{word-spacing:9.021986pt;}
.ws54{word-spacing:9.022506pt;}
.ws53{word-spacing:9.026253pt;}
.ws85{word-spacing:9.112432pt;}
.ws1f{word-spacing:9.261206pt;}
.ws57{word-spacing:9.555839pt;}
.ws60{word-spacing:9.556922pt;}
.ws5d{word-spacing:9.558519pt;}
.ws52{word-spacing:9.560653pt;}
.ws48{word-spacing:9.563853pt;}
.ws15{word-spacing:10.541786pt;}
.ws10{word-spacing:10.584293pt;}
.ws14{word-spacing:10.669307pt;}
.ws4e{word-spacing:10.937172pt;}
.ws56{word-spacing:10.940380pt;}
.ws43{word-spacing:11.069977pt;}
.ws47{word-spacing:11.559287pt;}
.wsf{word-spacing:11.907379pt;}
.wse{word-spacing:11.955200pt;}
.ws8e{word-spacing:12.050726pt;}
.ws5a{word-spacing:12.222309pt;}
.ws45{word-spacing:12.241514pt;}
.ws8d{word-spacing:12.497050pt;}
.ws73{word-spacing:12.521930pt;}
.ws59{word-spacing:12.588621pt;}
.ws7b{word-spacing:12.715440pt;}
.ws6a{word-spacing:12.762095pt;}
.ws4c{word-spacing:12.940621pt;}
.ws33{word-spacing:13.100891pt;}
.ws30{word-spacing:13.136913pt;}
.ws51{word-spacing:13.281954pt;}
.ws6e{word-spacing:13.306071pt;}
.ws6c{word-spacing:13.397826pt;}
.ws6d{word-spacing:13.406058pt;}
.ws3c{word-spacing:13.954252pt;}
.wsc{word-spacing:14.487285pt;}
.ws32{word-spacing:15.329415pt;}
.ws3e{word-spacing:17.886089pt;}
.ws71{word-spacing:23.193088pt;}
.ws18{word-spacing:58.123685pt;}
.ws4f{word-spacing:295.159047pt;}
.ws6f{word-spacing:434.394039pt;}
.ws58{word-spacing:437.343588pt;}
.ws5b{word-spacing:485.204922pt;}
.ws61{word-spacing:538.186255pt;}
.ws21{word-spacing:974.721273pt;}
._0{margin-left:-6.702529pt;}
._3{margin-left:-3.873485pt;}
._1{margin-left:-2.677954pt;}
._2{margin-left:-1.291173pt;}
._4{width:1.004237pt;}
._5{width:1.955331pt;}
._8{width:2.890498pt;}
._6{width:4.675790pt;}
._d{width:5.631863pt;}
._c{width:7.970120pt;}
._b{width:10.233651pt;}
._7{width:12.959437pt;}
._e{width:18.048796pt;}
._10{width:21.869837pt;}
._a{width:58.181867pt;}
._f{width:309.400576pt;}
._9{width:930.114560pt;}
.fs12{font-size:15.514433pt;}
.fsc{font-size:15.825824pt;}
.fs8{font-size:17.264535pt;}
.fsb{font-size:18.703247pt;}
.fs9{font-size:20.141958pt;}
.fs13{font-size:20.685911pt;}
.fs7{font-size:21.580669pt;}
.fs14{font-size:25.857389pt;}
.fs6{font-size:25.896803pt;}
.fse{font-size:29.224000pt;}
.fs10{font-size:31.880533pt;}
.fsa{font-size:34.529071pt;}
.fs11{font-size:34.537067pt;}
.fs5{font-size:37.193600pt;}
.fsd{font-size:38.787733pt;}
.fs2{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fsf{font-size:48.000000pt;}
.fs3{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y5e{bottom:2.082579pt;}
.yd3{bottom:4.472271pt;}
.y46{bottom:6.758391pt;}
.y5d{bottom:7.477746pt;}
.yd5{bottom:8.674097pt;}
.yd2{bottom:8.997314pt;}
.y4a{bottom:9.276135pt;}
.yd9{bottom:10.613401pt;}
.yd7{bottom:12.552705pt;}
.yd4{bottom:13.522357pt;}
.yd1{bottom:13.845575pt;}
.y47{bottom:17.548725pt;}
.yd0{bottom:18.370618pt;}
.y4b{bottom:20.066470pt;}
.y40{bottom:23.303570pt;}
.y48{bottom:24.742282pt;}
.y4e{bottom:25.101959pt;}
.y56{bottom:26.540671pt;}
.y4c{bottom:27.260026pt;}
.y3e{bottom:27.979382pt;}
.y52{bottom:28.698738pt;}
.y59{bottom:30.497127pt;}
.ye0{bottom:30.976095pt;}
.y45{bottom:31.935838pt;}
.y3d{bottom:33.374549pt;}
.yc9{bottom:33.561834pt;}
.y5f{bottom:33.734227pt;}
.y41{bottom:34.093905pt;}
.y49{bottom:34.453583pt;}
.y4f{bottom:35.892294pt;}
.ydf{bottom:37.440442pt;}
.y3c{bottom:38.410039pt;}
.y53{bottom:38.769717pt;}
.y83{bottom:39.026667pt;}
.y51{bottom:39.129394pt;}
.y42{bottom:41.287461pt;}
.y50{bottom:43.085851pt;}
.y58{bottom:44.524562pt;}
.y3f{bottom:48.481018pt;}
.y4d{bottom:50.279407pt;}
.yc0{bottom:52.788231pt;}
.yc1{bottom:53.434664pt;}
.yde{bottom:54.894180pt;}
.y54{bottom:56.034252pt;}
.y44{bottom:57.113285pt;}
.yd6{bottom:57.479918pt;}
.ydd{bottom:61.358527pt;}
.yc6{bottom:62.004962pt;}
.y5b{bottom:62.868131pt;}
.ybe{bottom:64.827450pt;}
.yc5{bottom:67.176439pt;}
.y5a{bottom:67.184264pt;}
.y57{bottom:70.781043pt;}
.yc4{bottom:71.701482pt;}
.y3b{bottom:80.132666pt;}
.y39{bottom:80.852022pt;}
.y5c{bottom:85.168155pt;}
.y55{bottom:86.247189pt;}
.y3a{bottom:92.002034pt;}
.y38{bottom:92.721390pt;}
.y63{bottom:111.784314pt;}
.yc3{bottom:112.103652pt;}
.y34{bottom:113.249333pt;}
.y107{bottom:113.988000pt;}
.ybd{bottom:114.037900pt;}
.ybb{bottom:114.060000pt;}
.ybf{bottom:114.765145pt;}
.yc2{bottom:116.628696pt;}
.y82{bottom:116.705333pt;}
.y62{bottom:117.179481pt;}
.yc8{bottom:118.568000pt;}
.ye1{bottom:120.507304pt;}
.y61{bottom:122.214971pt;}
.ydb{bottom:123.093043pt;}
.yc7{bottom:123.416260pt;}
.y33{bottom:123.876000pt;}
.y60{bottom:127.610138pt;}
.y106{bottom:128.600000pt;}
.yba{bottom:128.672000pt;}
.yda{bottom:129.557390pt;}
.y43{bottom:133.724661pt;}
.y32{bottom:134.502667pt;}
.y81{bottom:136.806667pt;}
.y37{bottom:140.198862pt;}
.y105{bottom:143.210667pt;}
.yb9{bottom:143.284000pt;}
.y31{bottom:145.129333pt;}
.y36{bottom:148.111774pt;}
.yca{bottom:148.950432pt;}
.y80{bottom:151.417333pt;}
.y30{bottom:156.818667pt;}
.y104{bottom:157.822667pt;}
.yb8{bottom:157.896000pt;}
.y7f{bottom:166.029333pt;}
.ycf{bottom:168.020256pt;}
.y2f{bottom:168.508000pt;}
.ydc{bottom:170.929212pt;}
.y103{bottom:172.434667pt;}
.yb7{bottom:172.508000pt;}
.yce{bottom:172.545299pt;}
.yd8{bottom:174.484603pt;}
.ycd{bottom:177.393559pt;}
.y2e{bottom:179.134667pt;}
.y7e{bottom:180.641333pt;}
.ycc{bottom:181.918602pt;}
.y102{bottom:187.046667pt;}
.yb6{bottom:187.118667pt;}
.ycb{bottom:189.675819pt;}
.y2d{bottom:189.761333pt;}
.y7d{bottom:195.253333pt;}
.y2c{bottom:200.389333pt;}
.y101{bottom:201.658667pt;}
.yb5{bottom:201.730667pt;}
.y7c{bottom:209.865333pt;}
.y2b{bottom:211.016000pt;}
.y100{bottom:216.270667pt;}
.yb4{bottom:216.342667pt;}
.y2a{bottom:221.642667pt;}
.y7b{bottom:224.477333pt;}
.yb3{bottom:230.954667pt;}
.y29{bottom:232.269333pt;}
.yff{bottom:234.536000pt;}
.y7a{bottom:239.089333pt;}
.yb2{bottom:245.566667pt;}
.y79{bottom:253.701333pt;}
.y28{bottom:256.572000pt;}
.yb1{bottom:260.178667pt;}
.yfe{bottom:264.997333pt;}
.y78{bottom:268.313333pt;}
.y27{bottom:271.184000pt;}
.yfd{bottom:279.609333pt;}
.yb0{bottom:281.929333pt;}
.y77{bottom:282.925333pt;}
.y26{bottom:285.796000pt;}
.yfc{bottom:294.221333pt;}
.y76{bottom:297.536000pt;}
.y25{bottom:304.060000pt;}
.yfb{bottom:308.833333pt;}
.y75{bottom:312.148000pt;}
.yaf{bottom:315.733333pt;}
.yfa{bottom:323.445333pt;}
.y74{bottom:326.760000pt;}
.yae{bottom:330.345333pt;}
.y24{bottom:334.473333pt;}
.yf9{bottom:338.057333pt;}
.y73{bottom:341.372000pt;}
.yad{bottom:344.957333pt;}
.y23{bottom:347.757333pt;}
.yf8{bottom:352.669333pt;}
.y72{bottom:355.984000pt;}
.yac{bottom:359.569333pt;}
.y22{bottom:361.040000pt;}
.yf7{bottom:367.281333pt;}
.y71{bottom:370.596000pt;}
.yab{bottom:374.181333pt;}
.y21{bottom:374.324000pt;}
.yf6{bottom:381.893333pt;}
.y70{bottom:385.208000pt;}
.y20{bottom:387.608000pt;}
.yaa{bottom:388.793333pt;}
.y6f{bottom:399.820000pt;}
.yf5{bottom:400.157333pt;}
.y1f{bottom:400.890667pt;}
.ya9{bottom:408.252000pt;}
.y1e{bottom:414.174667pt;}
.y6e{bottom:414.432000pt;}
.ya8{bottom:421.202667pt;}
.y1d{bottom:427.458667pt;}
.y6d{bottom:429.044000pt;}
.ya7{bottom:430.581333pt;}
.yf4{bottom:430.620000pt;}
.ya6{bottom:439.880000pt;}
.y6c{bottom:443.656000pt;}
.yf3{bottom:445.232000pt;}
.y1c{bottom:447.314667pt;}
.ya5{bottom:449.260000pt;}
.y6b{bottom:458.266667pt;}
.ya4{bottom:458.984000pt;}
.yf2{bottom:459.844000pt;}
.y1b{bottom:461.925333pt;}
.y6a{bottom:472.878667pt;}
.ya3{bottom:473.130667pt;}
.yf1{bottom:474.456000pt;}
.y1a{bottom:480.190667pt;}
.y69{bottom:487.490667pt;}
.ya2{bottom:487.742667pt;}
.yf0{bottom:489.068000pt;}
.y68{bottom:502.102667pt;}
.ya1{bottom:502.354667pt;}
.yef{bottom:503.678667pt;}
.y19{bottom:509.176000pt;}
.y67{bottom:516.714667pt;}
.ya0{bottom:516.965333pt;}
.yee{bottom:518.290667pt;}
.y18{bottom:523.788000pt;}
.y66{bottom:531.326667pt;}
.y9f{bottom:531.577333pt;}
.yed{bottom:532.902667pt;}
.y17{bottom:538.400000pt;}
.y65{bottom:545.938667pt;}
.y9e{bottom:546.189333pt;}
.yec{bottom:547.514667pt;}
.y16{bottom:553.010667pt;}
.y9d{bottom:560.801333pt;}
.yeb{bottom:562.126667pt;}
.y64{bottom:567.158667pt;}
.y15{bottom:567.622667pt;}
.y9c{bottom:575.413333pt;}
.yea{bottom:576.738667pt;}
.y14{bottom:582.234667pt;}
.y9b{bottom:590.025333pt;}
.ye9{bottom:591.350667pt;}
.y13{bottom:596.846667pt;}
.y35{bottom:598.131713pt;}
.y9a{bottom:604.637333pt;}
.ye8{bottom:605.962667pt;}
.y12{bottom:611.458667pt;}
.y99{bottom:619.249333pt;}
.ye7{bottom:620.574667pt;}
.y11{bottom:626.070667pt;}
.y98{bottom:633.861333pt;}
.ye6{bottom:635.186667pt;}
.y10{bottom:640.682667pt;}
.y97{bottom:648.473333pt;}
.ye5{bottom:649.797333pt;}
.yf{bottom:655.294667pt;}
.y96{bottom:663.084000pt;}
.ye4{bottom:664.409333pt;}
.ye{bottom:669.906667pt;}
.y95{bottom:677.696000pt;}
.yd{bottom:684.518667pt;}
.ye3{bottom:692.044000pt;}
.y94{bottom:692.308000pt;}
.yc{bottom:699.129333pt;}
.ye2{bottom:706.656000pt;}
.y93{bottom:710.573333pt;}
.yb{bottom:713.741333pt;}
.ya{bottom:728.353333pt;}
.y92{bottom:741.180000pt;}
.ybc{bottom:741.717232pt;}
.y9{bottom:746.618667pt;}
.y91{bottom:755.792000pt;}
.y90{bottom:770.404000pt;}
.y8{bottom:772.638667pt;}
.y8f{bottom:785.016000pt;}
.y7{bottom:785.921333pt;}
.y8e{bottom:799.628000pt;}
.y6{bottom:812.934667pt;}
.y8d{bottom:814.240000pt;}
.y113{bottom:821.213333pt;}
.y5{bottom:826.218667pt;}
.y8c{bottom:828.852000pt;}
.y112{bottom:831.840000pt;}
.y11d{bottom:835.493333pt;}
.y111{bottom:842.468000pt;}
.y8b{bottom:843.464000pt;}
.y11c{bottom:846.120000pt;}
.y110{bottom:853.094667pt;}
.y4{bottom:853.232000pt;}
.y11b{bottom:856.746667pt;}
.y8a{bottom:858.076000pt;}
.y10f{bottom:863.721333pt;}
.y3{bottom:866.516000pt;}
.y11a{bottom:867.373333pt;}
.y119{bottom:867.374667pt;}
.y89{bottom:872.688000pt;}
.y10e{bottom:874.348000pt;}
.y118{bottom:878.001333pt;}
.y10d{bottom:884.974667pt;}
.y88{bottom:887.298667pt;}
.y117{bottom:888.628000pt;}
.y10c{bottom:895.601333pt;}
.y116{bottom:899.254667pt;}
.y87{bottom:901.910667pt;}
.y2{bottom:901.933333pt;}
.y10b{bottom:906.228000pt;}
.y115{bottom:909.881333pt;}
.y86{bottom:916.522667pt;}
.y10a{bottom:916.854667pt;}
.y114{bottom:920.508000pt;}
.y1{bottom:928.500000pt;}
.y85{bottom:931.134667pt;}
.y109{bottom:957.477333pt;}
.y84{bottom:967.398667pt;}
.y108{bottom:972.088000pt;}
.h1d{height:11.294932pt;}
.h13{height:11.374811pt;}
.hc{height:12.569054pt;}
.h12{height:13.442959pt;}
.hd{height:14.418023pt;}
.h11{height:14.477032pt;}
.hf{height:14.663896pt;}
.h1e{height:15.059909pt;}
.hb{height:15.447881pt;}
.h1f{height:16.466409pt;}
.ha{height:18.613327pt;}
.h20{height:18.824886pt;}
.he{height:18.853581pt;}
.h16{height:20.690592pt;}
.h6{height:23.910400pt;}
.h18{height:24.763077pt;}
.h10{height:25.138108pt;}
.h8{height:26.333069pt;}
.h7{height:29.755040pt;}
.h3{height:30.095098pt;}
.h19{height:31.762725pt;}
.h1a{height:31.768059pt;}
.h21{height:32.087757pt;}
.h17{height:33.024000pt;}
.h14{height:33.474560pt;}
.h5{height:33.857126pt;}
.h1b{height:34.287514pt;}
.h4{height:40.727307pt;}
.h15{height:44.821715pt;}
.h2{height:45.142835pt;}
.h1{height:64.087196pt;}
.h9{height:156.964633pt;}
.h1c{height:196.982492pt;}
.h0{height:1056.000000pt;}
.w1{width:300.314987pt;}
.w2{width:302.802487pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5e{left:1.976658pt;}
.x5d{left:4.880564pt;}
.x1a{left:6.760446pt;}
.x19{left:7.839479pt;}
.x1b{left:10.840541pt;}
.x1f{left:12.279252pt;}
.x18{left:24.828634pt;}
.x17{left:25.727829pt;}
.x1d{left:37.417358pt;}
.x1c{left:38.316552pt;}
.x1e{left:42.548389pt;}
.x59{left:43.848459pt;}
.x5a{left:55.161066pt;}
.x34{left:57.778496pt;}
.x56{left:58.857865pt;}
.x2b{left:64.719152pt;}
.x4c{left:65.812088pt;}
.x29{left:66.703002pt;}
.x2a{left:68.900407pt;}
.x11{left:71.730667pt;}
.x54{left:73.190535pt;}
.x55{left:76.099491pt;}
.x53{left:78.144849pt;}
.x52{left:82.018409pt;}
.x43{left:85.014667pt;}
.x4e{left:88.538308pt;}
.x2d{left:89.728001pt;}
.x49{left:104.276000pt;}
.x15{left:106.245083pt;}
.x14{left:107.947931pt;}
.x20{left:110.887174pt;}
.x38{left:116.046303pt;}
.x4a{left:122.722667pt;}
.x8{left:127.301333pt;}
.x37{left:130.433416pt;}
.x50{left:131.561570pt;}
.x12{left:132.994667pt;}
.x32{left:136.480499pt;}
.x51{left:138.227928pt;}
.x3{left:139.172000pt;}
.x5f{left:141.116683pt;}
.x1{left:147.438667pt;}
.x4d{left:149.221557pt;}
.x2f{left:151.952264pt;}
.x2e{left:166.833934pt;}
.x31{left:168.272645pt;}
.x63{left:172.397333pt;}
.x36{left:174.314110pt;}
.x64{left:176.657333pt;}
.x2{left:177.978667pt;}
.x23{left:180.569130pt;}
.x22{left:181.468325pt;}
.x65{left:183.673333pt;}
.x24{left:185.700161pt;}
.x35{left:188.701223pt;}
.x33{left:206.977352pt;}
.x2c{left:209.663696pt;}
.x4f{left:210.714470pt;}
.x5b{left:213.537573pt;}
.x57{left:226.233955pt;}
.x5c{left:230.324675pt;}
.x44{left:235.660000pt;}
.x30{left:236.971109pt;}
.x58{left:238.192998pt;}
.x26{left:240.995004pt;}
.x25{left:241.894199pt;}
.x27{left:246.126035pt;}
.xd{left:253.520000pt;}
.xe{left:255.305333pt;}
.x16{left:257.000667pt;}
.x21{left:274.001066pt;}
.x28{left:275.580275pt;}
.x9{left:334.570667pt;}
.x47{left:345.109333pt;}
.x4{left:347.453333pt;}
.x48{left:350.669333pt;}
.x5{left:365.402667pt;}
.x45{left:381.434667pt;}
.x46{left:386.994667pt;}
.xa{left:398.308000pt;}
.x3a{left:423.940000pt;}
.x42{left:428.110667pt;}
.x4b{left:432.877500pt;}
.x13{left:433.950500pt;}
.x3b{left:437.224000pt;}
.x66{left:440.197333pt;}
.xf{left:447.224000pt;}
.x60{left:453.333333pt;}
.x39{left:467.972000pt;}
.x10{left:497.942667pt;}
.x69{left:499.746667pt;}
.x40{left:500.717333pt;}
.x6a{left:504.728000pt;}
.x41{left:506.276000pt;}
.x67{left:518.746667pt;}
.x68{left:523.513333pt;}
.x61{left:525.064000pt;}
.x6b{left:533.644000pt;}
.x6c{left:538.658667pt;}
.x3c{left:545.316000pt;}
.x3d{left:550.876000pt;}
.x6{left:552.642667pt;}
.xb{left:561.001333pt;}
.x3e{left:611.246667pt;}
.xc{left:615.240000pt;}
.x3f{left:616.806667pt;}
.x7{left:617.838667pt;}
.x62{left:631.809333pt;}
}




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