
    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_5851674eb2dbf03b7bdfe628.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_a37fa30548f7af54667b8200.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_4f257319f319ad2d8763a193.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.717000;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_474cae02a2df90938afe9fe5.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_f6283e3e871cd83b8eb02a74.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.911000;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_d2d2b654ba8c14eb78bede6d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.911000;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_8040e71c5a31b54e4f28a6c5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.888000;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_ceb2326121eb91f482c7cd20.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.859000;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_70da51e21b68e8fcefc5ead6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.431000;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_b1c7637a3d5a0593e25fbb02.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.999000;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_cf36d2f23fa8ac990c58728f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921000;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_ed156b72a002f024b9134c0e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.901000;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_e32dc0d4219a5d6b8e432c5a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.431000;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_3895a33476e5707adbb48674.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_80c84e944ade89d9492e2e8a.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_ac30f41831df899247a3447d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.755205;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_cc69a2903033eda73985da83.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.999000;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_26ef60d3525396a8d79c6e95.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_9d5cf4646d0f3ade23096fbd.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.872000;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_fb27bca6a22d911606811975.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.683000;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_d81a35a241aeb032b2f84831.woff2')format("woff");}.ff15{font-family:ff15;line-height:2.262000;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_7b83625c0f687991f8aee73b.woff2')format("woff");}.ff16{font-family:ff16;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;}
.m9{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);}
.m3{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);}
.m12{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);}
.m1e{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);}
.m8{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);}
.m1f{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);}
.mf{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);}
.m2{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);}
.m1c{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);}
.ma{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);}
.m13{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);}
.mb{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);}
.mc{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);}
.m1b{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);}
.m7{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);}
.m1d{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);}
.m17{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);}
.m10{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);}
.m18{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);}
.me{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);}
.m16{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);}
.m1a{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);}
.m11{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);}
.m19{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);}
.m6{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);}
.m14{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);}
.md{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);}
.m15{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);}
.m5{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);}
.v11{vertical-align:-66.354000px;}
.vc{vertical-align:-54.462000px;}
.v3{vertical-align:-22.854000px;}
.va{vertical-align:-15.144000px;}
.v2{vertical-align:-12.912000px;}
.v4{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.456000px;}
.v6{vertical-align:14.778000px;}
.v9{vertical-align:16.698000px;}
.v10{vertical-align:18.036000px;}
.v8{vertical-align:21.690000px;}
.v5{vertical-align:24.678000px;}
.v7{vertical-align:39.456000px;}
.ve{vertical-align:48.420000px;}
.vd{vertical-align:54.030000px;}
.vf{vertical-align:66.354000px;}
.vb{vertical-align:81.366000px;}
.ls3{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.000065px;}
.ls42{letter-spacing:0.000843px;}
.ls24{letter-spacing:0.001793px;}
.ls56{letter-spacing:0.002012px;}
.ls4e{letter-spacing:0.002338px;}
.ls35{letter-spacing:0.002400px;}
.ls46{letter-spacing:0.002481px;}
.ls4d{letter-spacing:0.003241px;}
.ls1c{letter-spacing:0.003506px;}
.ls5a{letter-spacing:0.004618px;}
.ls1e{letter-spacing:0.005781px;}
.ls55{letter-spacing:0.006065px;}
.ls2c{letter-spacing:0.008452px;}
.ls17{letter-spacing:0.010258px;}
.ls12{letter-spacing:0.010343px;}
.ls9{letter-spacing:0.013549px;}
.ls10{letter-spacing:0.013564px;}
.ls49{letter-spacing:0.013957px;}
.ls51{letter-spacing:0.019998px;}
.ls2e{letter-spacing:0.022963px;}
.ls48{letter-spacing:0.027267px;}
.ls3f{letter-spacing:0.030063px;}
.ls13{letter-spacing:0.031228px;}
.ls6{letter-spacing:0.032104px;}
.ls2f{letter-spacing:0.033365px;}
.ls18{letter-spacing:0.298878px;}
.ls3e{letter-spacing:1.659241px;}
.ls1f{letter-spacing:1.661781px;}
.ls23{letter-spacing:1.673717px;}
.lse{letter-spacing:2.986362px;}
.ls15{letter-spacing:2.987197px;}
.ls40{letter-spacing:2.988710px;}
.ls16{letter-spacing:2.992362px;}
.lsd{letter-spacing:2.993197px;}
.ls43{letter-spacing:2.994710px;}
.ls20{letter-spacing:5.914362px;}
.ls37{letter-spacing:5.977560px;}
.ls31{letter-spacing:5.978521px;}
.ls47{letter-spacing:6.395989px;}
.ls2b{letter-spacing:6.455765px;}
.ls3b{letter-spacing:7.209852px;}
.ls5b{letter-spacing:7.560615px;}
.ls52{letter-spacing:8.304065px;}
.ls38{letter-spacing:9.922750px;}
.ls44{letter-spacing:9.960843px;}
.ls36{letter-spacing:9.982525px;}
.ls30{letter-spacing:12.947197px;}
.ls34{letter-spacing:12.953197px;}
.ls59{letter-spacing:12.957660px;}
.ls22{letter-spacing:13.270183px;}
.ls21{letter-spacing:16.271197px;}
.ls4b{letter-spacing:16.557841px;}
.ls33{letter-spacing:16.602538px;}
.ls57{letter-spacing:16.610012px;}
.lsc{letter-spacing:16.617617px;}
.ls3a{letter-spacing:17.574026px;}
.ls58{letter-spacing:18.798538px;}
.ls14{letter-spacing:19.589197px;}
.lsb{letter-spacing:19.595197px;}
.ls8{letter-spacing:19.905275px;}
.ls4{letter-spacing:21.419468px;}
.ls7{letter-spacing:22.912362px;}
.lsa{letter-spacing:22.913197px;}
.ls4f{letter-spacing:22.914710px;}
.ls11{letter-spacing:22.918362px;}
.ls5{letter-spacing:29.887800px;}
.ls2{letter-spacing:33.032218px;}
.ls50{letter-spacing:35.865360px;}
.ls1{letter-spacing:35.883533px;}
.ls1b{letter-spacing:228.880772px;}
.ls4c{letter-spacing:250.399988px;}
.ls3d{letter-spacing:265.782710px;}
.ls0{letter-spacing:345.347589px;}
.ls29{letter-spacing:357.697190px;}
.ls1a{letter-spacing:368.819197px;}
.ls19{letter-spacing:383.753197px;}
.ls28{letter-spacing:426.521197px;}
.ls2a{letter-spacing:495.929197px;}
.ls27{letter-spacing:512.603197px;}
.ls32{letter-spacing:672.296173px;}
.ls4a{letter-spacing:715.573708px;}
.ls5c{letter-spacing:800.514835px;}
.ls25{letter-spacing:850.726339px;}
.ls39{letter-spacing:878.761096px;}
.ls5d{letter-spacing:919.288952px;}
.ls53{letter-spacing:955.871620px;}
.ls2d{letter-spacing:980.857820px;}
.ls3c{letter-spacing:1029.873812px;}
.ls1d{letter-spacing:1033.579900px;}
.ls26{letter-spacing:1040.633420px;}
.ls41{letter-spacing:1054.202482px;}
.ls45{letter-spacing:1056.175076px;}
.ls54{letter-spacing:1074.755197px;}
.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;}
}
.ws19{word-spacing:-59.775600px;}
.ws2e{word-spacing:-47.654765px;}
.ws31{word-spacing:-47.324343px;}
.ws2a{word-spacing:-34.370970px;}
.ws40{word-spacing:-29.887800px;}
.ws13{word-spacing:-27.646998px;}
.ws24{word-spacing:-16.605662px;}
.ws0{word-spacing:-16.139475px;}
.ws27{word-spacing:-15.302554px;}
.ws52{word-spacing:-13.927715px;}
.ws28{word-spacing:-13.748388px;}
.ws1a{word-spacing:-13.531962px;}
.ws3{word-spacing:-13.449600px;}
.ws5c{word-spacing:-12.971305px;}
.ws2b{word-spacing:-12.911530px;}
.ws4e{word-spacing:-12.791978px;}
.ws4b{word-spacing:-12.313774px;}
.ws5e{word-spacing:-12.253998px;}
.ws54{word-spacing:-11.955120px;}
.ws5d{word-spacing:-11.841546px;}
.ws51{word-spacing:-11.656242px;}
.ws18{word-spacing:-11.476915px;}
.ws41{word-spacing:-11.417140px;}
.ws26{word-spacing:-11.237813px;}
.ws33{word-spacing:-11.058486px;}
.ws60{word-spacing:-10.646034px;}
.ws4f{word-spacing:-10.520506px;}
.ws2f{word-spacing:-10.400954px;}
.ws44{word-spacing:-10.341179px;}
.ws16{word-spacing:-10.281403px;}
.ws25{word-spacing:-10.221628px;}
.ws3d{word-spacing:-10.161852px;}
.ws49{word-spacing:-10.102076px;}
.ws17{word-spacing:-10.042301px;}
.ws4{word-spacing:-9.982525px;}
.wse{word-spacing:-9.922750px;}
.ws22{word-spacing:-9.862974px;}
.ws36{word-spacing:-9.803198px;}
.ws5a{word-spacing:-9.743423px;}
.ws21{word-spacing:-9.683647px;}
.ws61{word-spacing:-9.629849px;}
.wsf{word-spacing:-9.623872px;}
.ws3b{word-spacing:-9.564096px;}
.ws48{word-spacing:-9.504320px;}
.ws11{word-spacing:-9.444545px;}
.ws5f{word-spacing:-9.390747px;}
.ws34{word-spacing:-9.324994px;}
.ws5{word-spacing:-9.247945px;}
.ws8{word-spacing:-9.194147px;}
.ws5b{word-spacing:-9.151644px;}
.ws62{word-spacing:-8.912542px;}
.ws50{word-spacing:-8.667462px;}
.ws1d{word-spacing:-8.607686px;}
.ws4a{word-spacing:-8.368584px;}
.ws55{word-spacing:-8.189257px;}
.ws42{word-spacing:-7.830604px;}
.ws58{word-spacing:-7.591501px;}
.ws38{word-spacing:-7.352399px;}
.ws4c{word-spacing:-7.292623px;}
.ws3f{word-spacing:-7.232848px;}
.ws3c{word-spacing:-7.173072px;}
.ws10{word-spacing:-6.993745px;}
.ws29{word-spacing:-6.754643px;}
.ws2d{word-spacing:-6.623136px;}
.ws53{word-spacing:-6.515540px;}
.ws1f{word-spacing:-6.037336px;}
.ws20{word-spacing:-5.678682px;}
.ws57{word-spacing:-5.372616px;}
.wsc{word-spacing:-5.027128px;}
.ws39{word-spacing:-3.526760px;}
.ws3a{word-spacing:-3.466985px;}
.ws56{word-spacing:-3.407209px;}
.ws12{word-spacing:-2.988780px;}
.ws47{word-spacing:-2.689902px;}
.ws4d{word-spacing:-1.494390px;}
.wsd{word-spacing:-0.657532px;}
.ws2{word-spacing:-0.086077px;}
.ws1b{word-spacing:-0.059776px;}
.ws3e{word-spacing:-0.047820px;}
.ws43{word-spacing:-0.041843px;}
.ws9{word-spacing:0.000000px;}
.ws23{word-spacing:0.011955px;}
.wsa{word-spacing:2.683639px;}
.ws32{word-spacing:2.738463px;}
.ws46{word-spacing:2.740415px;}
.ws35{word-spacing:6.057390px;}
.ws2c{word-spacing:6.058415px;}
.ws45{word-spacing:6.063496px;}
.ws30{word-spacing:6.066863px;}
.ws59{word-spacing:9.862974px;}
.ws1e{word-spacing:9.922750px;}
.wsb{word-spacing:11.429123px;}
.ws6{word-spacing:18.399053px;}
.ws7{word-spacing:21.196570px;}
.ws1{word-spacing:23.384371px;}
.ws15{word-spacing:34.370970px;}
.ws1c{word-spacing:129.473950px;}
.ws37{word-spacing:324.414136px;}
.ws14{word-spacing:2299.355786px;}
._0{margin-left:-8.091257px;}
._3{margin-left:-5.881958px;}
._6{margin-left:-4.572864px;}
._1{margin-left:-2.668393px;}
._7{margin-left:-1.560154px;}
._5{width:1.172942px;}
._2{width:2.668393px;}
._2a{width:3.763301px;}
._38{width:8.267664px;}
._37{width:17.413724px;}
._2c{width:18.866044px;}
._4{width:20.959727px;}
._39{width:22.450650px;}
._29{width:23.912681px;}
._27{width:26.305952px;}
._8{width:27.342617px;}
._2d{width:29.887880px;}
._2b{width:32.099497px;}
._30{width:33.414560px;}
._2f{width:35.207828px;}
._31{width:36.605239px;}
._36{width:37.741150px;}
._35{width:53.604077px;}
._28{width:69.481817px;}
._32{width:79.344791px;}
._33{width:80.938610px;}
._34{width:107.971492px;}
._2e{width:143.962214px;}
._12{width:847.205410px;}
._21{width:936.193316px;}
._a{width:991.307304px;}
._17{width:1188.552943px;}
._b{width:1247.260754px;}
._f{width:1248.440746px;}
._1e{width:1309.589804px;}
._1b{width:1433.460545px;}
._23{width:1449.779107px;}
._26{width:1462.371630px;}
._19{width:1506.776648px;}
._d{width:1513.830169px;}
._25{width:1621.828981px;}
._24{width:1633.821307px;}
._13{width:1660.390231px;}
._14{width:1695.091297px;}
._18{width:1697.325564px;}
._10{width:1715.407733px;}
._e{width:1787.803253px;}
._20{width:1878.662165px;}
._1c{width:1880.493700px;}
._15{width:1907.079524px;}
._c{width:1918.017079px;}
._1a{width:1995.093969px;}
._16{width:2008.024387px;}
._1f{width:2015.182385px;}
._11{width:2051.620657px;}
._1d{width:2294.391681px;}
._22{width:2303.347456px;}
._9{width:2307.165006px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:29.887800px;}
.fs7{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y45{bottom:160.314000px;}
.y8f{bottom:167.952000px;}
.y2c{bottom:173.425500px;}
.y5a{bottom:187.213500px;}
.y107{bottom:197.229000px;}
.y44{bottom:208.276500px;}
.y8e{bottom:210.268500px;}
.y2b{bottom:213.094500px;}
.y59{bottom:214.113000px;}
.y74{bottom:228.708000px;}
.y106{bottom:234.145500px;}
.y8d{bottom:237.168000px;}
.ya2{bottom:241.011000px;}
.yd1{bottom:241.516500px;}
.ybc{bottom:248.317500px;}
.y43{bottom:254.199000px;}
.y2a{bottom:254.937000px;}
.y73{bottom:255.607500px;}
.y58{bottom:262.515000px;}
.y8c{bottom:264.067500px;}
.yea{bottom:267.910500px;}
.yd0{bottom:268.416000px;}
.y105{bottom:270.798000px;}
.yd{bottom:273.297000px;}
.ybb{bottom:275.217000px;}
.y29{bottom:281.836500px;}
.y72{bottom:282.507000px;}
.ya1{bottom:292.830000px;}
.ye9{bottom:295.119000px;}
.ycf{bottom:295.315500px;}
.yc{bottom:300.943500px;}
.yba{bottom:302.116500px;}
.y42{bottom:306.240000px;}
.y28{bottom:308.736000px;}
.y57{bottom:310.917000px;}
.y8b{bottom:312.462000px;}
.y104{bottom:319.219500px;}
.ye8{bottom:322.018500px;}
.yce{bottom:322.213500px;}
.y71{bottom:324.060000px;}
.yb{bottom:328.588500px;}
.y27{bottom:335.634000px;}
.ye7{bottom:348.916500px;}
.ycd{bottom:349.113000px;}
.yb9{bottom:350.275500px;}
.ya{bottom:356.235000px;}
.y41{bottom:356.439000px;}
.y26{bottom:362.533500px;}
.y70{bottom:365.611500px;}
.y56{bottom:373.122000px;}
.ya0{bottom:373.159500px;}
.y8a{bottom:374.634000px;}
.ye6{bottom:375.816000px;}
.y103{bottom:381.528000px;}
.y89{bottom:397.359000px;}
.ycc{bottom:397.777500px;}
.y55{bottom:400.021500px;}
.y9f{bottom:400.059000px;}
.y88{bottom:401.532000px;}
.y25{bottom:404.377500px;}
.y102{bottom:408.427500px;}
.yb8{bottom:410.713500px;}
.y6f{bottom:413.770500px;}
.ye5{bottom:424.284000px;}
.y40{bottom:428.175000px;}
.y24{bottom:431.275500px;}
.yb7{bottom:437.613000px;}
.y54{bottom:443.082000px;}
.y87{bottom:443.848500px;}
.ycb{bottom:446.440500px;}
.y101{bottom:450.795000px;}
.y3f{bottom:455.073000px;}
.y23{bottom:458.175000px;}
.y9e{bottom:460.198500px;}
.yb6{bottom:464.512500px;}
.y6e{bottom:474.636000px;}
.y53{bottom:479.677500px;}
.y3e{bottom:481.972500px;}
.y22{bottom:485.074500px;}
.y86{bottom:486.165000px;}
.ye4{bottom:486.840000px;}
.y9d{bottom:487.098000px;}
.y9{bottom:491.260500px;}
.yb5{bottom:491.412000px;}
.y100{bottom:493.162500px;}
.y6d{bottom:501.535500px;}
.y52{bottom:507.306000px;}
.yca{bottom:510.036000px;}
.y21{bottom:511.974000px;}
.ye3{bottom:513.739500px;}
.y85{bottom:522.741000px;}
.y6c{bottom:528.435000px;}
.y3d{bottom:532.171500px;}
.yc9{bottom:536.935500px;}
.yb4{bottom:539.571000px;}
.ye2{bottom:540.637500px;}
.yff{bottom:541.584000px;}
.y8{bottom:543.672000px;}
.y84{bottom:550.350000px;}
.y9c{bottom:552.544500px;}
.y20{bottom:553.816500px;}
.y51{bottom:555.708000px;}
.y6b{bottom:566.293500px;}
.ye1{bottom:567.537000px;}
.y6a{bottom:569.988000px;}
.y7{bottom:570.570000px;}
.yc8{bottom:574.315500px;}
.y1f{bottom:580.716000px;}
.y9b{bottom:587.944500px;}
.ye0{bottom:594.745500px;}
.y6{bottom:597.469500px;}
.y83{bottom:598.746000px;}
.yb3{bottom:600.009000px;}
.yfe{bottom:603.892500px;}
.y3c{bottom:603.907500px;}
.y1e{bottom:607.615500px;}
.y69{bottom:611.539500px;}
.yc7{bottom:612.202500px;}
.y9a{bottom:614.844000px;}
.y50{bottom:617.914500px;}
.ydf{bottom:621.645000px;}
.yb2{bottom:626.908500px;}
.yfd{bottom:627.097500px;}
.yfc{bottom:630.792000px;}
.y1d{bottom:634.513500px;}
.y99{bottom:641.743500px;}
.yde{bottom:648.543000px;}
.y3b{bottom:649.830000px;}
.yc6{bottom:650.088000px;}
.yb1{bottom:653.806500px;}
.y4f{bottom:654.510000px;}
.y68{bottom:659.698500px;}
.y82{bottom:660.916500px;}
.yfa{bottom:663.819000px;}
.y98{bottom:669.240000px;}
.ydd{bottom:675.442500px;}
.y1c{bottom:676.357500px;}
.yfb{bottom:678.004500px;}
.yf8{bottom:681.699000px;}
.y4e{bottom:682.138500px;}
.yf9{bottom:684.841500px;}
.y81{bottom:687.816000px;}
.yc5{bottom:687.973500px;}
.yb0{bottom:692.884500px;}
.y3a{bottom:695.752500px;}
.ydc{bottom:702.342000px;}
.y114{bottom:713.988000px;}
.y80{bottom:714.714000px;}
.y1b{bottom:718.200000px;}
.y67{bottom:720.564000px;}
.yf7{bottom:724.068000px;}
.yc4{bottom:725.355000px;}
.y4d{bottom:730.540500px;}
.yaf{bottom:731.961000px;}
.y113{bottom:740.887500px;}
.y39{bottom:741.675000px;}
.yf6{bottom:746.793000px;}
.y66{bottom:747.463500px;}
.y97{bottom:748.392000px;}
.y5{bottom:748.551000px;}
.ydb{bottom:750.810000px;}
.yf5{bottom:750.966000px;}
.yae{bottom:758.860500px;}
.y7f{bottom:763.110000px;}
.y1a{bottom:766.359000px;}
.y112{bottom:767.785500px;}
.yc3{bottom:774.019500px;}
.y65{bottom:783.154500px;}
.y38{bottom:787.597500px;}
.y7e{bottom:790.009500px;}
.y4c{bottom:792.747000px;}
.y111{bottom:794.685000px;}
.yf4{bottom:799.387500px;}
.yad{bottom:807.019500px;}
.y64{bottom:810.054000px;}
.yda{bottom:813.364500px;}
.y4b{bottom:819.646500px;}
.y110{bottom:821.584500px;}
.y96{bottom:828.721500px;}
.y37{bottom:833.520000px;}
.yc2{bottom:837.613500px;}
.yd9{bottom:840.264000px;}
.y19{bottom:844.120500px;}
.y10f{bottom:848.484000px;}
.y63{bottom:851.607000px;}
.y7d{bottom:852.180000px;}
.y95{bottom:855.621000px;}
.yf3{bottom:861.696000px;}
.y36{bottom:862.458000px;}
.yc1{bottom:864.513000px;}
.yd8{bottom:867.163500px;}
.yac{bottom:867.457500px;}
.y4a{bottom:868.048500px;}
.y18{bottom:871.020000px;}
.y10e{bottom:875.382000px;}
.y7c{bottom:879.079500px;}
.yf2{bottom:888.595500px;}
.yab{bottom:890.662500px;}
.y35{bottom:891.397500px;}
.yc0{bottom:891.412500px;}
.y62{bottom:893.160000px;}
.yd7{bottom:894.063000px;}
.yaa{bottom:894.357000px;}
.y10d{bottom:902.281500px;}
.y4{bottom:902.547000px;}
.y94{bottom:904.782000px;}
.y17{bottom:907.810500px;}
.ybf{bottom:918.312000px;}
.y49{bottom:919.261500px;}
.y61{bottom:920.059500px;}
.y34{bottom:920.335500px;}
.yd6{bottom:921.271500px;}
.yf1{bottom:925.248000px;}
.y10c{bottom:929.181000px;}
.y7b{bottom:930.835500px;}
.ya9{bottom:932.880000px;}
.y3{bottom:933.928500px;}
.y16{bottom:934.710000px;}
.yd5{bottom:948.169500px;}
.y33{bottom:949.275000px;}
.yf0{bottom:952.935000px;}
.y93{bottom:953.944500px;}
.y10b{bottom:956.080500px;}
.ya8{bottom:959.779500px;}
.y15{bottom:961.609500px;}
.y7a{bottom:962.061000px;}
.y79{bottom:966.235500px;}
.ybe{bottom:966.975000px;}
.y60{bottom:968.217000px;}
.y48{bottom:968.925000px;}
.yd4{bottom:975.069000px;}
.y92{bottom:980.844000px;}
.y10a{bottom:982.978500px;}
.ya7{bottom:986.679000px;}
.y14{bottom:988.509000px;}
.yef{bottom:991.608000px;}
.y78{bottom:993.135000px;}
.y32{bottom:995.197500px;}
.yee{bottom:995.302500px;}
.y2{bottom:999.790500px;}
.yd3{bottom:1001.968500px;}
.y109{bottom:1009.878000px;}
.y5f{bottom:1018.711500px;}
.y77{bottom:1020.034500px;}
.ya6{bottom:1022.061000px;}
.y31{bottom:1024.135500px;}
.ya5{bottom:1025.755500px;}
.y13{bottom:1027.213500px;}
.y12{bottom:1032.636000px;}
.y91{bottom:1032.661500px;}
.y108{bottom:1036.777500px;}
.yed{bottom:1037.671500px;}
.y1{bottom:1040.139000px;}
.y76{bottom:1046.932500px;}
.yd2{bottom:1050.436500px;}
.y30{bottom:1053.075000px;}
.y47{bottom:1053.963000px;}
.y5e{bottom:1054.113000px;}
.y10{bottom:1059.342000px;}
.yec{bottom:1064.569500px;}
.ya4{bottom:1064.832000px;}
.y11{bottom:1065.280500px;}
.y75{bottom:1074.430500px;}
.y5d{bottom:1081.011000px;}
.y2f{bottom:1082.013000px;}
.yeb{bottom:1091.469000px;}
.ya3{bottom:1091.731500px;}
.ybd{bottom:1104.216000px;}
.y5c{bottom:1107.910500px;}
.yf{bottom:1108.509000px;}
.y2e{bottom:1110.952500px;}
.y90{bottom:1112.991000px;}
.y5b{bottom:1135.407000px;}
.y46{bottom:1138.962000px;}
.ye{bottom:1139.890500px;}
.y2d{bottom:1192.194000px;}
.hd{height:16.677504px;}
.ha{height:31.382100px;}
.h9{height:31.800699px;}
.h7{height:37.927872px;}
.hc{height:41.842920px;}
.he{height:42.141798px;}
.hb{height:42.799330px;}
.h6{height:44.831700px;}
.h8{height:49.090950px;}
.h5{height:50.211840px;}
.h12{height:53.072100px;}
.h14{height:53.078100px;}
.h16{height:53.346318px;}
.h3{height:53.798400px;}
.hf{height:56.060100px;}
.h17{height:56.066100px;}
.h1a{height:56.175024px;}
.h11{height:59.609700px;}
.h2{height:60.254040px;}
.h13{height:61.529700px;}
.h4{height:67.226503px;}
.h18{height:68.124318px;}
.h19{height:68.745024px;}
.h10{height:70.838100px;}
.h15{height:83.757024px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:106.215000px;}
.x13{left:108.000000px;}
.x1e{left:109.666500px;}
.x19{left:110.739000px;}
.x17{left:113.397000px;}
.x16{left:119.208000px;}
.x15{left:125.019000px;}
.x1d{left:130.416000px;}
.x5f{left:131.857500px;}
.xc{left:139.032000px;}
.x18{left:141.499500px;}
.x1b{left:142.537500px;}
.x30{left:146.169000px;}
.x48{left:149.539500px;}
.x4f{left:151.516500px;}
.x29{left:157.081500px;}
.x12{left:158.809500px;}
.x22{left:160.975500px;}
.x49{left:166.374000px;}
.x31{left:169.851000px;}
.x11{left:173.754000px;}
.x53{left:176.610000px;}
.x2a{left:180.822000px;}
.x1{left:186.321000px;}
.x65{left:212.248500px;}
.xf{left:214.422000px;}
.x2{left:215.536500px;}
.x10{left:221.125500px;}
.x62{left:234.982500px;}
.x66{left:240.321000px;}
.x78{left:241.729500px;}
.x76{left:256.770000px;}
.x77{left:264.669000px;}
.x4e{left:267.154500px;}
.x3{left:274.819500px;}
.x5b{left:279.580500px;}
.x27{left:290.212500px;}
.x24{left:291.618000px;}
.x55{left:294.948000px;}
.x61{left:303.973500px;}
.x60{left:306.465000px;}
.xb{left:307.663500px;}
.x42{left:308.784000px;}
.x40{left:312.261000px;}
.x3d{left:314.257500px;}
.x44{left:317.314500px;}
.x28{left:320.239500px;}
.x5c{left:324.999000px;}
.x3e{left:326.629500px;}
.x7{left:329.793000px;}
.x26{left:331.408500px;}
.x6b{left:332.764500px;}
.x1f{left:339.846000px;}
.x63{left:345.013500px;}
.x4a{left:348.531000px;}
.x23{left:349.744500px;}
.x32{left:353.917500px;}
.x4{left:356.499000px;}
.x37{left:358.782000px;}
.x47{left:360.387000px;}
.x4d{left:362.989500px;}
.x56{left:364.033500px;}
.x36{left:369.115500px;}
.x38{left:371.154000px;}
.x1c{left:373.006500px;}
.x6c{left:374.611500px;}
.x33{left:377.488500px;}
.x68{left:379.678500px;}
.x6{left:381.384000px;}
.xd{left:382.602000px;}
.x41{left:385.927500px;}
.x69{left:389.272500px;}
.x8{left:392.640000px;}
.x5{left:394.558500px;}
.x4b{left:398.182500px;}
.x2f{left:404.497500px;}
.x9{left:405.966000px;}
.x14{left:409.203000px;}
.x73{left:414.009000px;}
.x3f{left:417.708000px;}
.x52{left:426.256500px;}
.x25{left:429.288000px;}
.x39{left:431.602500px;}
.x3c{left:433.227000px;}
.x21{left:446.863500px;}
.x20{left:448.252500px;}
.x74{left:451.515000px;}
.x4c{left:467.370000px;}
.x75{left:476.689500px;}
.x6d{left:479.596500px;}
.x6a{left:483.472500px;}
.x6e{left:503.445000px;}
.xe{left:511.759500px;}
.x3a{left:534.738000px;}
.x59{left:537.225000px;}
.x3b{left:561.495000px;}
.x50{left:578.017500px;}
.x2b{left:590.914500px;}
.x51{left:601.888500px;}
.x6f{left:608.713500px;}
.x2c{left:627.145500px;}
.x57{left:630.075000px;}
.x70{left:632.449500px;}
.x34{left:639.375000px;}
.x5a{left:648.490500px;}
.x43{left:650.809500px;}
.x58{left:653.929500px;}
.x54{left:660.696000px;}
.x35{left:665.836500px;}
.x5d{left:676.485000px;}
.x2d{left:686.695500px;}
.x5e{left:706.819500px;}
.x2e{left:710.548500px;}
.x45{left:769.534500px;}
.x71{left:784.537500px;}
.x64{left:791.013000px;}
.x46{left:795.672000px;}
.x72{left:796.909500px;}
.x1a{left:799.195500px;}
.x67{left:806.200500px;}
@media print{
.v11{vertical-align:-58.981333pt;}
.vc{vertical-align:-48.410667pt;}
.v3{vertical-align:-20.314667pt;}
.va{vertical-align:-13.461333pt;}
.v2{vertical-align:-11.477333pt;}
.v4{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.738667pt;}
.v6{vertical-align:13.136000pt;}
.v9{vertical-align:14.842667pt;}
.v10{vertical-align:16.032000pt;}
.v8{vertical-align:19.280000pt;}
.v5{vertical-align:21.936000pt;}
.v7{vertical-align:35.072000pt;}
.ve{vertical-align:43.040000pt;}
.vd{vertical-align:48.026667pt;}
.vf{vertical-align:58.981333pt;}
.vb{vertical-align:72.325333pt;}
.ls3{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.000058pt;}
.ls42{letter-spacing:0.000749pt;}
.ls24{letter-spacing:0.001594pt;}
.ls56{letter-spacing:0.001788pt;}
.ls4e{letter-spacing:0.002079pt;}
.ls35{letter-spacing:0.002133pt;}
.ls46{letter-spacing:0.002205pt;}
.ls4d{letter-spacing:0.002881pt;}
.ls1c{letter-spacing:0.003116pt;}
.ls5a{letter-spacing:0.004105pt;}
.ls1e{letter-spacing:0.005138pt;}
.ls55{letter-spacing:0.005391pt;}
.ls2c{letter-spacing:0.007513pt;}
.ls17{letter-spacing:0.009119pt;}
.ls12{letter-spacing:0.009194pt;}
.ls9{letter-spacing:0.012044pt;}
.ls10{letter-spacing:0.012057pt;}
.ls49{letter-spacing:0.012406pt;}
.ls51{letter-spacing:0.017776pt;}
.ls2e{letter-spacing:0.020412pt;}
.ls48{letter-spacing:0.024237pt;}
.ls3f{letter-spacing:0.026723pt;}
.ls13{letter-spacing:0.027758pt;}
.ls6{letter-spacing:0.028537pt;}
.ls2f{letter-spacing:0.029658pt;}
.ls18{letter-spacing:0.265669pt;}
.ls3e{letter-spacing:1.474881pt;}
.ls1f{letter-spacing:1.477138pt;}
.ls23{letter-spacing:1.487748pt;}
.lse{letter-spacing:2.654544pt;}
.ls15{letter-spacing:2.655286pt;}
.ls40{letter-spacing:2.656631pt;}
.ls16{letter-spacing:2.659878pt;}
.lsd{letter-spacing:2.660619pt;}
.ls43{letter-spacing:2.661964pt;}
.ls20{letter-spacing:5.257211pt;}
.ls37{letter-spacing:5.313387pt;}
.ls31{letter-spacing:5.314241pt;}
.ls47{letter-spacing:5.685324pt;}
.ls2b{letter-spacing:5.738458pt;}
.ls3b{letter-spacing:6.408758pt;}
.ls5b{letter-spacing:6.720546pt;}
.ls52{letter-spacing:7.381391pt;}
.ls38{letter-spacing:8.820222pt;}
.ls44{letter-spacing:8.854082pt;}
.ls36{letter-spacing:8.873356pt;}
.ls30{letter-spacing:11.508619pt;}
.ls34{letter-spacing:11.513953pt;}
.ls59{letter-spacing:11.517920pt;}
.ls22{letter-spacing:11.795718pt;}
.ls21{letter-spacing:14.463286pt;}
.ls4b{letter-spacing:14.718081pt;}
.ls33{letter-spacing:14.757812pt;}
.ls57{letter-spacing:14.764455pt;}
.lsc{letter-spacing:14.771215pt;}
.ls3a{letter-spacing:15.621357pt;}
.ls58{letter-spacing:16.709812pt;}
.ls14{letter-spacing:17.412619pt;}
.lsb{letter-spacing:17.417953pt;}
.ls8{letter-spacing:17.693578pt;}
.ls4{letter-spacing:19.039527pt;}
.ls7{letter-spacing:20.366544pt;}
.lsa{letter-spacing:20.367286pt;}
.ls4f{letter-spacing:20.368631pt;}
.ls11{letter-spacing:20.371878pt;}
.ls5{letter-spacing:26.566933pt;}
.ls2{letter-spacing:29.361971pt;}
.ls50{letter-spacing:31.880320pt;}
.ls1{letter-spacing:31.896474pt;}
.ls1b{letter-spacing:203.449575pt;}
.ls4c{letter-spacing:222.577767pt;}
.ls3d{letter-spacing:236.251297pt;}
.ls0{letter-spacing:306.975635pt;}
.ls29{letter-spacing:317.953058pt;}
.ls1a{letter-spacing:327.839286pt;}
.ls19{letter-spacing:341.113953pt;}
.ls28{letter-spacing:379.129953pt;}
.ls2a{letter-spacing:440.825953pt;}
.ls27{letter-spacing:455.647286pt;}
.ls32{letter-spacing:597.596598pt;}
.ls4a{letter-spacing:636.065518pt;}
.ls5c{letter-spacing:711.568742pt;}
.ls25{letter-spacing:756.201190pt;}
.ls39{letter-spacing:781.120974pt;}
.ls5d{letter-spacing:817.145735pt;}
.ls53{letter-spacing:849.663662pt;}
.ls2d{letter-spacing:871.873618pt;}
.ls3c{letter-spacing:915.443389pt;}
.ls1d{letter-spacing:918.737689pt;}
.ls26{letter-spacing:925.007485pt;}
.ls41{letter-spacing:937.068873pt;}
.ls45{letter-spacing:938.822290pt;}
.ls54{letter-spacing:955.337953pt;}
.ws19{word-spacing:-53.133867pt;}
.ws2e{word-spacing:-42.359791pt;}
.ws31{word-spacing:-42.066082pt;}
.ws2a{word-spacing:-30.551973pt;}
.ws40{word-spacing:-26.566933pt;}
.ws13{word-spacing:-24.575109pt;}
.ws24{word-spacing:-14.760588pt;}
.ws0{word-spacing:-14.346200pt;}
.ws27{word-spacing:-13.602270pt;}
.ws52{word-spacing:-12.380191pt;}
.ws28{word-spacing:-12.220789pt;}
.ws1a{word-spacing:-12.028410pt;}
.ws3{word-spacing:-11.955200pt;}
.ws5c{word-spacing:-11.530049pt;}
.ws2b{word-spacing:-11.476915pt;}
.ws4e{word-spacing:-11.370647pt;}
.ws4b{word-spacing:-10.945577pt;}
.ws5e{word-spacing:-10.892443pt;}
.ws54{word-spacing:-10.626773pt;}
.ws5d{word-spacing:-10.525819pt;}
.ws51{word-spacing:-10.361104pt;}
.ws18{word-spacing:-10.201702pt;}
.ws41{word-spacing:-10.148569pt;}
.ws26{word-spacing:-9.989167pt;}
.ws33{word-spacing:-9.829765pt;}
.ws60{word-spacing:-9.463142pt;}
.ws4f{word-spacing:-9.351561pt;}
.ws2f{word-spacing:-9.245293pt;}
.ws44{word-spacing:-9.192159pt;}
.ws16{word-spacing:-9.139025pt;}
.ws25{word-spacing:-9.085891pt;}
.ws3d{word-spacing:-9.032757pt;}
.ws49{word-spacing:-8.979623pt;}
.ws17{word-spacing:-8.926490pt;}
.ws4{word-spacing:-8.873356pt;}
.wse{word-spacing:-8.820222pt;}
.ws22{word-spacing:-8.767088pt;}
.ws36{word-spacing:-8.713954pt;}
.ws5a{word-spacing:-8.660820pt;}
.ws21{word-spacing:-8.607686pt;}
.ws61{word-spacing:-8.559866pt;}
.wsf{word-spacing:-8.554553pt;}
.ws3b{word-spacing:-8.501419pt;}
.ws48{word-spacing:-8.448285pt;}
.ws11{word-spacing:-8.395151pt;}
.ws5f{word-spacing:-8.347330pt;}
.ws34{word-spacing:-8.288883pt;}
.ws5{word-spacing:-8.220396pt;}
.ws8{word-spacing:-8.172575pt;}
.ws5b{word-spacing:-8.134795pt;}
.ws62{word-spacing:-7.922260pt;}
.ws50{word-spacing:-7.704411pt;}
.ws1d{word-spacing:-7.651277pt;}
.ws4a{word-spacing:-7.438741pt;}
.ws55{word-spacing:-7.279340pt;}
.ws42{word-spacing:-6.960537pt;}
.ws58{word-spacing:-6.748001pt;}
.ws38{word-spacing:-6.535466pt;}
.ws4c{word-spacing:-6.482332pt;}
.ws3f{word-spacing:-6.429198pt;}
.ws3c{word-spacing:-6.376064pt;}
.ws10{word-spacing:-6.216662pt;}
.ws29{word-spacing:-6.004127pt;}
.ws2d{word-spacing:-5.887232pt;}
.ws53{word-spacing:-5.791591pt;}
.ws1f{word-spacing:-5.366521pt;}
.ws20{word-spacing:-5.047717pt;}
.ws57{word-spacing:-4.775658pt;}
.wsc{word-spacing:-4.468558pt;}
.ws39{word-spacing:-3.134898pt;}
.ws3a{word-spacing:-3.081764pt;}
.ws56{word-spacing:-3.028630pt;}
.ws12{word-spacing:-2.656693pt;}
.ws47{word-spacing:-2.391024pt;}
.ws4d{word-spacing:-1.328347pt;}
.wsd{word-spacing:-0.584473pt;}
.ws2{word-spacing:-0.076513pt;}
.ws1b{word-spacing:-0.053134pt;}
.ws3e{word-spacing:-0.042507pt;}
.ws43{word-spacing:-0.037194pt;}
.ws9{word-spacing:0.000000pt;}
.ws23{word-spacing:0.010627pt;}
.wsa{word-spacing:2.385457pt;}
.ws32{word-spacing:2.434190pt;}
.ws46{word-spacing:2.435924pt;}
.ws35{word-spacing:5.384346pt;}
.ws2c{word-spacing:5.385258pt;}
.ws45{word-spacing:5.389775pt;}
.ws30{word-spacing:5.392767pt;}
.ws59{word-spacing:8.767088pt;}
.ws1e{word-spacing:8.820222pt;}
.wsb{word-spacing:10.159221pt;}
.ws6{word-spacing:16.354714pt;}
.ws7{word-spacing:18.841395pt;}
.ws1{word-spacing:20.786108pt;}
.ws15{word-spacing:30.551973pt;}
.ws1c{word-spacing:115.087955pt;}
.ws37{word-spacing:288.368121pt;}
.ws14{word-spacing:2043.871810pt;}
._0{margin-left:-7.192228pt;}
._3{margin-left:-5.228407pt;}
._6{margin-left:-4.064768pt;}
._1{margin-left:-2.371905pt;}
._7{margin-left:-1.386803pt;}
._5{width:1.042615pt;}
._2{width:2.371905pt;}
._2a{width:3.345156pt;}
._38{width:7.349035pt;}
._37{width:15.478866pt;}
._2c{width:16.769817pt;}
._4{width:18.630868pt;}
._39{width:19.956133pt;}
._29{width:21.255716pt;}
._27{width:23.383069pt;}
._8{width:24.304548pt;}
._2d{width:26.567005pt;}
._2b{width:28.532886pt;}
._30{width:29.701831pt;}
._2f{width:31.295847pt;}
._31{width:32.537990pt;}
._36{width:33.547689pt;}
._35{width:47.648068pt;}
._28{width:61.761615pt;}
._32{width:70.528703pt;}
._33{width:71.945431pt;}
._34{width:95.974659pt;}
._2e{width:127.966413pt;}
._12{width:753.071475pt;}
._21{width:832.171837pt;}
._a{width:881.162048pt;}
._17{width:1056.491505pt;}
._b{width:1108.676226pt;}
._f{width:1109.725107pt;}
._1e{width:1164.079826pt;}
._1b{width:1274.187151pt;}
._23{width:1288.692540pt;}
._26{width:1299.885893pt;}
._19{width:1339.357021pt;}
._d{width:1345.626817pt;}
._25{width:1441.625761pt;}
._24{width:1452.285606pt;}
._13{width:1475.902428pt;}
._14{width:1506.747820pt;}
._18{width:1508.733835pt;}
._10{width:1524.806874pt;}
._e{width:1589.158447pt;}
._20{width:1669.921924pt;}
._1c{width:1671.549955pt;}
._15{width:1695.181799pt;}
._c{width:1704.904070pt;}
._1a{width:1773.416861pt;}
._16{width:1784.910567pt;}
._1f{width:1791.273231pt;}
._11{width:1823.662806pt;}
._1d{width:2039.459272pt;}
._22{width:2047.419961pt;}
._9{width:2050.813339pt;}
.fs8{font-size:26.566933pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:142.501333pt;}
.y8f{bottom:149.290667pt;}
.y2c{bottom:154.156000pt;}
.y5a{bottom:166.412000pt;}
.y107{bottom:175.314667pt;}
.y44{bottom:185.134667pt;}
.y8e{bottom:186.905333pt;}
.y2b{bottom:189.417333pt;}
.y59{bottom:190.322667pt;}
.y74{bottom:203.296000pt;}
.y106{bottom:208.129333pt;}
.y8d{bottom:210.816000pt;}
.ya2{bottom:214.232000pt;}
.yd1{bottom:214.681333pt;}
.ybc{bottom:220.726667pt;}
.y43{bottom:225.954667pt;}
.y2a{bottom:226.610667pt;}
.y73{bottom:227.206667pt;}
.y58{bottom:233.346667pt;}
.y8c{bottom:234.726667pt;}
.yea{bottom:238.142667pt;}
.yd0{bottom:238.592000pt;}
.y105{bottom:240.709333pt;}
.yd{bottom:242.930667pt;}
.ybb{bottom:244.637333pt;}
.y29{bottom:250.521333pt;}
.y72{bottom:251.117333pt;}
.ya1{bottom:260.293333pt;}
.ye9{bottom:262.328000pt;}
.ycf{bottom:262.502667pt;}
.yc{bottom:267.505333pt;}
.yba{bottom:268.548000pt;}
.y42{bottom:272.213333pt;}
.y28{bottom:274.432000pt;}
.y57{bottom:276.370667pt;}
.y8b{bottom:277.744000pt;}
.y104{bottom:283.750667pt;}
.ye8{bottom:286.238667pt;}
.yce{bottom:286.412000pt;}
.y71{bottom:288.053333pt;}
.yb{bottom:292.078667pt;}
.y27{bottom:298.341333pt;}
.ye7{bottom:310.148000pt;}
.ycd{bottom:310.322667pt;}
.yb9{bottom:311.356000pt;}
.ya{bottom:316.653333pt;}
.y41{bottom:316.834667pt;}
.y26{bottom:322.252000pt;}
.y70{bottom:324.988000pt;}
.y56{bottom:331.664000pt;}
.ya0{bottom:331.697333pt;}
.y8a{bottom:333.008000pt;}
.ye6{bottom:334.058667pt;}
.y103{bottom:339.136000pt;}
.y89{bottom:353.208000pt;}
.ycc{bottom:353.580000pt;}
.y55{bottom:355.574667pt;}
.y9f{bottom:355.608000pt;}
.y88{bottom:356.917333pt;}
.y25{bottom:359.446667pt;}
.y102{bottom:363.046667pt;}
.yb8{bottom:365.078667pt;}
.y6f{bottom:367.796000pt;}
.ye5{bottom:377.141333pt;}
.y40{bottom:380.600000pt;}
.y24{bottom:383.356000pt;}
.yb7{bottom:388.989333pt;}
.y54{bottom:393.850667pt;}
.y87{bottom:394.532000pt;}
.ycb{bottom:396.836000pt;}
.y101{bottom:400.706667pt;}
.y3f{bottom:404.509333pt;}
.y23{bottom:407.266667pt;}
.y9e{bottom:409.065333pt;}
.yb6{bottom:412.900000pt;}
.y6e{bottom:421.898667pt;}
.y53{bottom:426.380000pt;}
.y3e{bottom:428.420000pt;}
.y22{bottom:431.177333pt;}
.y86{bottom:432.146667pt;}
.ye4{bottom:432.746667pt;}
.y9d{bottom:432.976000pt;}
.y9{bottom:436.676000pt;}
.yb5{bottom:436.810667pt;}
.y100{bottom:438.366667pt;}
.y6d{bottom:445.809333pt;}
.y52{bottom:450.938667pt;}
.yca{bottom:453.365333pt;}
.y21{bottom:455.088000pt;}
.ye3{bottom:456.657333pt;}
.y85{bottom:464.658667pt;}
.y6c{bottom:469.720000pt;}
.y3d{bottom:473.041333pt;}
.yc9{bottom:477.276000pt;}
.yb4{bottom:479.618667pt;}
.ye2{bottom:480.566667pt;}
.yff{bottom:481.408000pt;}
.y8{bottom:483.264000pt;}
.y84{bottom:489.200000pt;}
.y9c{bottom:491.150667pt;}
.y20{bottom:492.281333pt;}
.y51{bottom:493.962667pt;}
.y6b{bottom:503.372000pt;}
.ye1{bottom:504.477333pt;}
.y6a{bottom:506.656000pt;}
.y7{bottom:507.173333pt;}
.yc8{bottom:510.502667pt;}
.y1f{bottom:516.192000pt;}
.y9b{bottom:522.617333pt;}
.ye0{bottom:528.662667pt;}
.y6{bottom:531.084000pt;}
.y83{bottom:532.218667pt;}
.yb3{bottom:533.341333pt;}
.yfe{bottom:536.793333pt;}
.y3c{bottom:536.806667pt;}
.y1e{bottom:540.102667pt;}
.y69{bottom:543.590667pt;}
.yc7{bottom:544.180000pt;}
.y9a{bottom:546.528000pt;}
.y50{bottom:549.257333pt;}
.ydf{bottom:552.573333pt;}
.yb2{bottom:557.252000pt;}
.yfd{bottom:557.420000pt;}
.yfc{bottom:560.704000pt;}
.y1d{bottom:564.012000pt;}
.y99{bottom:570.438667pt;}
.yde{bottom:576.482667pt;}
.y3b{bottom:577.626667pt;}
.yc6{bottom:577.856000pt;}
.yb1{bottom:581.161333pt;}
.y4f{bottom:581.786667pt;}
.y68{bottom:586.398667pt;}
.y82{bottom:587.481333pt;}
.yfa{bottom:590.061333pt;}
.y98{bottom:594.880000pt;}
.ydd{bottom:600.393333pt;}
.y1c{bottom:601.206667pt;}
.yfb{bottom:602.670667pt;}
.yf8{bottom:605.954667pt;}
.y4e{bottom:606.345333pt;}
.yf9{bottom:608.748000pt;}
.y81{bottom:611.392000pt;}
.yc5{bottom:611.532000pt;}
.yb0{bottom:615.897333pt;}
.y3a{bottom:618.446667pt;}
.ydc{bottom:624.304000pt;}
.y114{bottom:634.656000pt;}
.y80{bottom:635.301333pt;}
.y1b{bottom:638.400000pt;}
.y67{bottom:640.501333pt;}
.yf7{bottom:643.616000pt;}
.yc4{bottom:644.760000pt;}
.y4d{bottom:649.369333pt;}
.yaf{bottom:650.632000pt;}
.y113{bottom:658.566667pt;}
.y39{bottom:659.266667pt;}
.yf6{bottom:663.816000pt;}
.y66{bottom:664.412000pt;}
.y97{bottom:665.237333pt;}
.y5{bottom:665.378667pt;}
.ydb{bottom:667.386667pt;}
.yf5{bottom:667.525333pt;}
.yae{bottom:674.542667pt;}
.y7f{bottom:678.320000pt;}
.y1a{bottom:681.208000pt;}
.y112{bottom:682.476000pt;}
.yc3{bottom:688.017333pt;}
.y65{bottom:696.137333pt;}
.y38{bottom:700.086667pt;}
.y7e{bottom:702.230667pt;}
.y4c{bottom:704.664000pt;}
.y111{bottom:706.386667pt;}
.yf4{bottom:710.566667pt;}
.yad{bottom:717.350667pt;}
.y64{bottom:720.048000pt;}
.yda{bottom:722.990667pt;}
.y4b{bottom:728.574667pt;}
.y110{bottom:730.297333pt;}
.y96{bottom:736.641333pt;}
.y37{bottom:740.906667pt;}
.yc2{bottom:744.545333pt;}
.yd9{bottom:746.901333pt;}
.y19{bottom:750.329333pt;}
.y10f{bottom:754.208000pt;}
.y63{bottom:756.984000pt;}
.y7d{bottom:757.493333pt;}
.y95{bottom:760.552000pt;}
.yf3{bottom:765.952000pt;}
.y36{bottom:766.629333pt;}
.yc1{bottom:768.456000pt;}
.yd8{bottom:770.812000pt;}
.yac{bottom:771.073333pt;}
.y4a{bottom:771.598667pt;}
.y18{bottom:774.240000pt;}
.y10e{bottom:778.117333pt;}
.y7c{bottom:781.404000pt;}
.yf2{bottom:789.862667pt;}
.yab{bottom:791.700000pt;}
.y35{bottom:792.353333pt;}
.yc0{bottom:792.366667pt;}
.y62{bottom:793.920000pt;}
.yd7{bottom:794.722667pt;}
.yaa{bottom:794.984000pt;}
.y10d{bottom:802.028000pt;}
.y4{bottom:802.264000pt;}
.y94{bottom:804.250667pt;}
.y17{bottom:806.942667pt;}
.ybf{bottom:816.277333pt;}
.y49{bottom:817.121333pt;}
.y61{bottom:817.830667pt;}
.y34{bottom:818.076000pt;}
.yd6{bottom:818.908000pt;}
.yf1{bottom:822.442667pt;}
.y10c{bottom:825.938667pt;}
.y7b{bottom:827.409333pt;}
.ya9{bottom:829.226667pt;}
.y3{bottom:830.158667pt;}
.y16{bottom:830.853333pt;}
.yd5{bottom:842.817333pt;}
.y33{bottom:843.800000pt;}
.yf0{bottom:847.053333pt;}
.y93{bottom:847.950667pt;}
.y10b{bottom:849.849333pt;}
.ya8{bottom:853.137333pt;}
.y15{bottom:854.764000pt;}
.y7a{bottom:855.165333pt;}
.y79{bottom:858.876000pt;}
.ybe{bottom:859.533333pt;}
.y60{bottom:860.637333pt;}
.y48{bottom:861.266667pt;}
.yd4{bottom:866.728000pt;}
.y92{bottom:871.861333pt;}
.y10a{bottom:873.758667pt;}
.ya7{bottom:877.048000pt;}
.y14{bottom:878.674667pt;}
.yef{bottom:881.429333pt;}
.y78{bottom:882.786667pt;}
.y32{bottom:884.620000pt;}
.yee{bottom:884.713333pt;}
.y2{bottom:888.702667pt;}
.yd3{bottom:890.638667pt;}
.y109{bottom:897.669333pt;}
.y5f{bottom:905.521333pt;}
.y77{bottom:906.697333pt;}
.ya6{bottom:908.498667pt;}
.y31{bottom:910.342667pt;}
.ya5{bottom:911.782667pt;}
.y13{bottom:913.078667pt;}
.y12{bottom:917.898667pt;}
.y91{bottom:917.921333pt;}
.y108{bottom:921.580000pt;}
.yed{bottom:922.374667pt;}
.y1{bottom:924.568000pt;}
.y76{bottom:930.606667pt;}
.yd2{bottom:933.721333pt;}
.y30{bottom:936.066667pt;}
.y47{bottom:936.856000pt;}
.y5e{bottom:936.989333pt;}
.y10{bottom:941.637333pt;}
.yec{bottom:946.284000pt;}
.ya4{bottom:946.517333pt;}
.y11{bottom:946.916000pt;}
.y75{bottom:955.049333pt;}
.y5d{bottom:960.898667pt;}
.y2f{bottom:961.789333pt;}
.yeb{bottom:970.194667pt;}
.ya3{bottom:970.428000pt;}
.ybd{bottom:981.525333pt;}
.y5c{bottom:984.809333pt;}
.yf{bottom:985.341333pt;}
.y2e{bottom:987.513333pt;}
.y90{bottom:989.325333pt;}
.y5b{bottom:1009.250667pt;}
.y46{bottom:1012.410667pt;}
.ye{bottom:1013.236000pt;}
.y2d{bottom:1059.728000pt;}
.hd{height:14.824448pt;}
.ha{height:27.895200pt;}
.h9{height:28.267288pt;}
.h7{height:33.713664pt;}
.hc{height:37.193707pt;}
.he{height:37.459376pt;}
.hb{height:38.043849pt;}
.h6{height:39.850400pt;}
.h8{height:43.636400pt;}
.h5{height:44.632747pt;}
.h12{height:47.175200pt;}
.h14{height:47.180533pt;}
.h16{height:47.418949pt;}
.h3{height:47.820800pt;}
.hf{height:49.831200pt;}
.h17{height:49.836533pt;}
.h1a{height:49.933355pt;}
.h11{height:52.986400pt;}
.h2{height:53.559147pt;}
.h13{height:54.693067pt;}
.h4{height:59.756892pt;}
.h18{height:60.554949pt;}
.h19{height:61.106688pt;}
.h10{height:62.967200pt;}
.h15{height:74.450688pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:94.413333pt;}
.x13{left:96.000000pt;}
.x1e{left:97.481333pt;}
.x19{left:98.434667pt;}
.x17{left:100.797333pt;}
.x16{left:105.962667pt;}
.x15{left:111.128000pt;}
.x1d{left:115.925333pt;}
.x5f{left:117.206667pt;}
.xc{left:123.584000pt;}
.x18{left:125.777333pt;}
.x1b{left:126.700000pt;}
.x30{left:129.928000pt;}
.x48{left:132.924000pt;}
.x4f{left:134.681333pt;}
.x29{left:139.628000pt;}
.x12{left:141.164000pt;}
.x22{left:143.089333pt;}
.x49{left:147.888000pt;}
.x31{left:150.978667pt;}
.x11{left:154.448000pt;}
.x53{left:156.986667pt;}
.x2a{left:160.730667pt;}
.x1{left:165.618667pt;}
.x65{left:188.665333pt;}
.xf{left:190.597333pt;}
.x2{left:191.588000pt;}
.x10{left:196.556000pt;}
.x62{left:208.873333pt;}
.x66{left:213.618667pt;}
.x78{left:214.870667pt;}
.x76{left:228.240000pt;}
.x77{left:235.261333pt;}
.x4e{left:237.470667pt;}
.x3{left:244.284000pt;}
.x5b{left:248.516000pt;}
.x27{left:257.966667pt;}
.x24{left:259.216000pt;}
.x55{left:262.176000pt;}
.x61{left:270.198667pt;}
.x60{left:272.413333pt;}
.xb{left:273.478667pt;}
.x42{left:274.474667pt;}
.x40{left:277.565333pt;}
.x3d{left:279.340000pt;}
.x44{left:282.057333pt;}
.x28{left:284.657333pt;}
.x5c{left:288.888000pt;}
.x3e{left:290.337333pt;}
.x7{left:293.149333pt;}
.x26{left:294.585333pt;}
.x6b{left:295.790667pt;}
.x1f{left:302.085333pt;}
.x63{left:306.678667pt;}
.x4a{left:309.805333pt;}
.x23{left:310.884000pt;}
.x32{left:314.593333pt;}
.x4{left:316.888000pt;}
.x37{left:318.917333pt;}
.x47{left:320.344000pt;}
.x4d{left:322.657333pt;}
.x56{left:323.585333pt;}
.x36{left:328.102667pt;}
.x38{left:329.914667pt;}
.x1c{left:331.561333pt;}
.x6c{left:332.988000pt;}
.x33{left:335.545333pt;}
.x68{left:337.492000pt;}
.x6{left:339.008000pt;}
.xd{left:340.090667pt;}
.x41{left:343.046667pt;}
.x69{left:346.020000pt;}
.x8{left:349.013333pt;}
.x5{left:350.718667pt;}
.x4b{left:353.940000pt;}
.x2f{left:359.553333pt;}
.x9{left:360.858667pt;}
.x14{left:363.736000pt;}
.x73{left:368.008000pt;}
.x3f{left:371.296000pt;}
.x52{left:378.894667pt;}
.x25{left:381.589333pt;}
.x39{left:383.646667pt;}
.x3c{left:385.090667pt;}
.x21{left:397.212000pt;}
.x20{left:398.446667pt;}
.x74{left:401.346667pt;}
.x4c{left:415.440000pt;}
.x75{left:423.724000pt;}
.x6d{left:426.308000pt;}
.x6a{left:429.753333pt;}
.x6e{left:447.506667pt;}
.xe{left:454.897333pt;}
.x3a{left:475.322667pt;}
.x59{left:477.533333pt;}
.x3b{left:499.106667pt;}
.x50{left:513.793333pt;}
.x2b{left:525.257333pt;}
.x51{left:535.012000pt;}
.x6f{left:541.078667pt;}
.x2c{left:557.462667pt;}
.x57{left:560.066667pt;}
.x70{left:562.177333pt;}
.x34{left:568.333333pt;}
.x5a{left:576.436000pt;}
.x43{left:578.497333pt;}
.x58{left:581.270667pt;}
.x54{left:587.285333pt;}
.x35{left:591.854667pt;}
.x5d{left:601.320000pt;}
.x2d{left:610.396000pt;}
.x5e{left:628.284000pt;}
.x2e{left:631.598667pt;}
.x45{left:684.030667pt;}
.x71{left:697.366667pt;}
.x64{left:703.122667pt;}
.x46{left:707.264000pt;}
.x72{left:708.364000pt;}
.x1a{left:710.396000pt;}
.x67{left:716.622667pt;}
}




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