
    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_ab905d4d75fbf94da7732673.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_4032b9b87ffaff7f140b8246.woff')format("woff");}.ff2{font-family:ff2;line-height:0.974000;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_1d03968572006855df229757.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_67aa8b7e51164a41b06069a6.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_89becf8d41f745db14eaefff.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_caaaf2eab47511efa5927f76.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c704dbff742a13849f631faf.woff')format("woff");}.ff7{font-family:ff7;line-height:0.974000;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_b0657b5d49b909a09dcb3e8a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.958000;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_2d078cc87640e3f535404db2.woff')format("woff");}.ff9{font-family:ff9;line-height:0.877000;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_9eff021c16cf0918973f6bff.woff')format("woff");}.ffa{font-family:ffa;line-height:0.880000;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_62f0d816b45e17419a3a1c90.woff')format("woff");}.ffb{font-family:ffb;line-height:0.665000;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_dd91c419764f31da17f7f298.woff')format("woff");}.ffc{font-family:ffc;line-height:0.699000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_b2fae38690642d97c78193f2.woff')format("woff");}.ffd{font-family:ffd;line-height:0.773000;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_394fffc993498f4eca92f5bb.woff')format("woff");}.ffe{font-family:ffe;line-height:0.964000;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;}
.m6{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);}
.m7{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);}
.m23{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);}
.m19{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);}
.m24{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.mc{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);}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.md{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);}
.m1b{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);}
.m14{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);}
.m10{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);}
.m1e{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);}
.m11{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);}
.m3{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);}
.m20{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);}
.ma{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);}
.mb{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);}
.m1f{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);}
.m25{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);}
.m17{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);}
.m12{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);}
.m9{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);}
.me{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);}
.m4{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);}
.m16{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);}
.m18{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);}
.m1d{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);}
.m8{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);}
.m22{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);}
.m1c{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);}
.mf{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:-22.854000px;}
.v3{vertical-align:-10.134000px;}
.v4{vertical-align:-7.358564px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:9.822000px;}
.v1{vertical-align:26.028000px;}
.ls5{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.003791px;}
.ls0{letter-spacing:2.984915px;}
.ls2{letter-spacing:2.987468px;}
.ls6{letter-spacing:2.990496px;}
.lsb{letter-spacing:5.348416px;}
.ls8{letter-spacing:7.077449px;}
.ls4{letter-spacing:8.966400px;}
.ls3{letter-spacing:13.449600px;}
.lsa{letter-spacing:16.429105px;}
.ls9{letter-spacing:23.505643px;}
.ls1{letter-spacing:35.865600px;}
.lsc{letter-spacing:170.642538px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-17.932800px;}
.ws88{word-spacing:-16.363650px;}
.ws35{word-spacing:-13.449600px;}
.ws7e{word-spacing:-5.040004px;}
.ws2d{word-spacing:-4.974550px;}
.ws2b{word-spacing:-4.712731px;}
.ws2c{word-spacing:-4.647277px;}
.ws7f{word-spacing:-4.058185px;}
.ws67{word-spacing:-3.927276px;}
.ws63{word-spacing:-3.665458px;}
.ws9b{word-spacing:-3.403639px;}
.ws81{word-spacing:-2.945457px;}
.ws62{word-spacing:-2.814548px;}
.wsd{word-spacing:-2.797517px;}
.ws65{word-spacing:-2.749093px;}
.ws8e{word-spacing:-2.421820px;}
.ws84{word-spacing:-2.356366px;}
.ws83{word-spacing:-2.290911px;}
.ws75{word-spacing:-1.898183px;}
.ws6c{word-spacing:-1.767274px;}
.ws34{word-spacing:-1.636365px;}
.ws7d{word-spacing:-1.440001px;}
.ws43{word-spacing:-1.374839px;}
.ws3e{word-spacing:-1.374547px;}
.ws49{word-spacing:-1.315063px;}
.ws18{word-spacing:-1.243637px;}
.ws91{word-spacing:-1.112728px;}
.ws77{word-spacing:-0.785455px;}
.ws41{word-spacing:-0.523637px;}
.ws11{word-spacing:-0.458182px;}
.wsa{word-spacing:-0.430387px;}
.ws33{word-spacing:-0.392728px;}
.ws12{word-spacing:-0.261818px;}
.ws1f{word-spacing:-0.196364px;}
.ws8{word-spacing:-0.161395px;}
.ws19{word-spacing:-0.130909px;}
.ws85{word-spacing:-0.086077px;}
.wsf{word-spacing:-0.065455px;}
.ws45{word-spacing:-0.059776px;}
.ws8c{word-spacing:-0.055637px;}
.ws7{word-spacing:-0.053798px;}
.ws64{word-spacing:-0.047821px;}
.ws9c{word-spacing:-0.006431px;}
.ws1{word-spacing:0.000000px;}
.ws46{word-spacing:0.059776px;}
.ws1e{word-spacing:0.065455px;}
.ws2f{word-spacing:0.130909px;}
.ws6{word-spacing:0.161395px;}
.ws1d{word-spacing:0.196364px;}
.wsb{word-spacing:0.215194px;}
.ws13{word-spacing:0.261818px;}
.ws38{word-spacing:0.327273px;}
.ws69{word-spacing:0.392728px;}
.ws2e{word-spacing:0.458182px;}
.ws9{word-spacing:0.484186px;}
.ws32{word-spacing:0.654546px;}
.ws3f{word-spacing:0.720001px;}
.ws15{word-spacing:0.785455px;}
.ws42{word-spacing:0.916364px;}
.ws14{word-spacing:0.981819px;}
.ws30{word-spacing:1.047274px;}
.ws7a{word-spacing:1.243637px;}
.wsc{word-spacing:1.506355px;}
.ws3c{word-spacing:1.701820px;}
.ws9d{word-spacing:1.767274px;}
.wse{word-spacing:1.882944px;}
.ws7c{word-spacing:1.963638px;}
.ws31{word-spacing:2.029093px;}
.ws4a{word-spacing:2.060858px;}
.ws1c{word-spacing:2.160002px;}
.ws1b{word-spacing:2.225456px;}
.ws29{word-spacing:2.290911px;}
.ws28{word-spacing:2.356366px;}
.ws36{word-spacing:2.487275px;}
.ws16{word-spacing:2.552729px;}
.ws17{word-spacing:2.618184px;}
.ws5{word-spacing:2.636122px;}
.ws71{word-spacing:2.945457px;}
.ws3{word-spacing:3.012710px;}
.ws8a{word-spacing:3.076366px;}
.ws61{word-spacing:3.141821px;}
.ws23{word-spacing:3.207275px;}
.ws79{word-spacing:3.338185px;}
.ws3d{word-spacing:3.469094px;}
.ws97{word-spacing:3.534548px;}
.ws90{word-spacing:3.600003px;}
.ws95{word-spacing:3.665458px;}
.ws7b{word-spacing:3.796367px;}
.ws74{word-spacing:3.861821px;}
.ws80{word-spacing:4.058185px;}
.ws26{word-spacing:4.123640px;}
.ws25{word-spacing:4.189094px;}
.ws92{word-spacing:4.450913px;}
.ws20{word-spacing:4.465267px;}
.ws99{word-spacing:4.647277px;}
.ws82{word-spacing:4.778186px;}
.ws72{word-spacing:4.843640px;}
.ws76{word-spacing:5.105459px;}
.ws27{word-spacing:5.170913px;}
.ws3b{word-spacing:5.236368px;}
.ws89{word-spacing:5.629096px;}
.ws8f{word-spacing:5.825459px;}
.ws86{word-spacing:6.152732px;}
.ws21{word-spacing:6.610915px;}
.ws8b{word-spacing:6.676369px;}
.ws8d{word-spacing:6.741824px;}
.ws9a{word-spacing:6.807278px;}
.ws87{word-spacing:6.872733px;}
.ws2a{word-spacing:7.003642px;}
.ws70{word-spacing:7.069097px;}
.ws3a{word-spacing:7.134551px;}
.ws78{word-spacing:7.330915px;}
.ws98{word-spacing:7.527279px;}
.ws96{word-spacing:7.789097px;}
.ws4{word-spacing:13.395802px;}
.ws44{word-spacing:13.509286px;}
.ws68{word-spacing:13.549102px;}
.ws4f{word-spacing:14.465414px;}
.ws4c{word-spacing:14.474512px;}
.ws48{word-spacing:15.003676px;}
.ws1a{word-spacing:16.232741px;}
.ws37{word-spacing:16.560014px;}
.ws24{word-spacing:17.861069px;}
.ws73{word-spacing:18.065470px;}
.ws66{word-spacing:18.130924px;}
.ws6a{word-spacing:18.196379px;}
.ws6d{word-spacing:18.261833px;}
.ws47{word-spacing:18.470660px;}
.ws94{word-spacing:19.505471px;}
.ws40{word-spacing:20.487290px;}
.ws6e{word-spacing:21.120224px;}
.ws6b{word-spacing:21.228360px;}
.ws6f{word-spacing:21.433223px;}
.ws22{word-spacing:23.105474px;}
.ws93{word-spacing:23.236383px;}
.ws0{word-spacing:25.719808px;}
.ws39{word-spacing:32.661845px;}
.ws10{word-spacing:42.952523px;}
.ws4e{word-spacing:54.900003px;}
.ws4b{word-spacing:61.835764px;}
.ws50{word-spacing:133.285391px;}
.ws55{word-spacing:133.897106px;}
.ws56{word-spacing:134.153895px;}
.ws5f{word-spacing:134.252440px;}
.ws54{word-spacing:134.301917px;}
.ws59{word-spacing:134.499824px;}
.ws5c{word-spacing:134.814677px;}
.ws57{word-spacing:135.359332px;}
.ws60{word-spacing:135.457877px;}
.ws52{word-spacing:135.507354px;}
.ws5e{word-spacing:135.538839px;}
.ws5a{word-spacing:135.705262px;}
.ws5b{word-spacing:136.020115px;}
.ws5d{word-spacing:136.744276px;}
.ws51{word-spacing:157.176631px;}
.ws58{word-spacing:163.773008px;}
.ws4d{word-spacing:165.630518px;}
.ws53{word-spacing:175.179682px;}
._15{margin-left:-7.461824px;}
._1d{margin-left:-5.629575px;}
._a{margin-left:-4.581822px;}
._3{margin-left:-3.389299px;}
._0{margin-left:-1.342801px;}
._1{width:1.446094px;}
._14{width:2.520984px;}
._10{width:4.189094px;}
._b{width:10.472755px;}
._f{width:12.600992px;}
._19{width:13.680011px;}
._6{width:14.902157px;}
._5{width:15.978125px;}
._4{width:17.157372px;}
._7{width:18.560448px;}
._11{width:19.622150px;}
._1b{width:20.814563px;}
._8{width:22.778201px;}
._c{width:24.670292px;}
._9{width:26.247295px;}
._13{width:27.602281px;}
._18{width:28.762186px;}
._1c{width:31.941845px;}
._12{width:33.316391px;}
._d{width:35.182829px;}
._2{width:36.366960px;}
._25{width:37.638359px;}
._21{width:38.814578px;}
._e{width:40.484652px;}
._28{width:41.799836px;}
._1a{width:43.038600px;}
._22{width:44.935565px;}
._20{width:46.734584px;}
._1f{width:49.758160px;}
._1e{width:50.995226px;}
._26{width:54.458227px;}
._27{width:87.433006px;}
._24{width:99.556447px;}
._23{width:114.741914px;}
._17{width:576.650465px;}
._16{width:634.992388px;}
.fc2{color:rgb(47,79,79);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:35.848713px;}
.fs6{font-size:35.865600px;}
.fs2{font-size:47.820600px;}
.fs8{font-size:49.068041px;}
.fs3{font-size:53.798400px;}
.fsa{font-size:55.636800px;}
.fs7{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs5{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.yda{bottom:247.312500px;}
.y27{bottom:247.474500px;}
.yb4{bottom:247.626000px;}
.y11e{bottom:250.293000px;}
.y51{bottom:251.902500px;}
.y75{bottom:251.907000px;}
.y26{bottom:262.713000px;}
.yd9{bottom:267.637500px;}
.yb3{bottom:267.951000px;}
.y50{bottom:268.341000px;}
.y11d{bottom:270.616500px;}
.y74{bottom:278.565000px;}
.y4f{bottom:284.779500px;}
.y25{bottom:285.126000px;}
.yb2{bottom:285.819000px;}
.yd8{bottom:287.961000px;}
.yb1{bottom:288.274500px;}
.y11c{bottom:290.940000px;}
.y24{bottom:295.851000px;}
.y73{bottom:298.888500px;}
.yf4{bottom:305.686500px;}
.yd7{bottom:308.284500px;}
.yb0{bottom:308.598000px;}
.y4e{bottom:309.295500px;}
.y11b{bottom:311.263500px;}
.y72{bottom:319.212000px;}
.yf3{bottom:326.011500px;}
.yd6{bottom:328.608000px;}
.yaf{bottom:328.921500px;}
.y4c{bottom:329.619000px;}
.y23{bottom:330.714000px;}
.y11a{bottom:331.587000px;}
.y4d{bottom:335.557500px;}
.y71{bottom:339.535500px;}
.yf2{bottom:346.335000px;}
.yd5{bottom:348.931500px;}
.yae{bottom:349.245000px;}
.y4b{bottom:349.942500px;}
.y22{bottom:351.037500px;}
.y119{bottom:351.912000px;}
.y70{bottom:359.859000px;}
.yd4{bottom:369.256500px;}
.yad{bottom:369.570000px;}
.y4a{bottom:370.266000px;}
.y21{bottom:371.361000px;}
.y118{bottom:372.235500px;}
.y6e{bottom:380.184000px;}
.yf1{bottom:382.879500px;}
.y6f{bottom:386.121000px;}
.y133{bottom:388.456500px;}
.yd3{bottom:389.580000px;}
.yac{bottom:389.893500px;}
.y49{bottom:390.589500px;}
.y20{bottom:391.686000px;}
.y117{bottom:392.559000px;}
.y6d{bottom:400.507500px;}
.y132{bottom:408.780000px;}
.yd2{bottom:409.903500px;}
.yab{bottom:410.217000px;}
.y48{bottom:410.914500px;}
.y1f{bottom:412.009500px;}
.y116{bottom:412.882500px;}
.y6c{bottom:420.831000px;}
.yf0{bottom:425.959500px;}
.y131{bottom:429.103500px;}
.yd1{bottom:430.227000px;}
.y47{bottom:431.238000px;}
.y1e{bottom:432.333000px;}
.y115{bottom:433.206000px;}
.y6b{bottom:441.154500px;}
.yef{bottom:446.283000px;}
.y130{bottom:449.427000px;}
.yaa{bottom:449.468193px;}
.yd0{bottom:450.550500px;}
.y46{bottom:451.561500px;}
.y1d{bottom:452.656500px;}
.y114{bottom:453.531000px;}
.ya9{bottom:464.704829px;}
.yee{bottom:466.606500px;}
.y12f{bottom:469.752000px;}
.ycf{bottom:470.875500px;}
.y45{bottom:471.885000px;}
.ya6{bottom:472.302906px;}
.y1c{bottom:472.980000px;}
.y113{bottom:473.854500px;}
.y6a{bottom:477.700500px;}
.ya8{bottom:479.940341px;}
.yed{bottom:486.931500px;}
.y12e{bottom:490.075500px;}
.yce{bottom:491.199000px;}
.y44{bottom:492.208500px;}
.y1b{bottom:493.305000px;}
.y112{bottom:494.178000px;}
.ya7{bottom:495.175852px;}
.yec{bottom:507.255000px;}
.y12d{bottom:510.399000px;}
.ya5{bottom:510.860030px;}
.ycd{bottom:511.522500px;}
.y1a{bottom:513.628500px;}
.y111{bottom:514.501500px;}
.y69{bottom:520.779000px;}
.y43{bottom:523.111500px;}
.ya4{bottom:526.095541px;}
.yeb{bottom:527.578500px;}
.y12c{bottom:530.722500px;}
.ycc{bottom:531.846000px;}
.ya1{bottom:533.693619px;}
.y19{bottom:533.952000px;}
.y110{bottom:534.825000px;}
.y68{bottom:541.104000px;}
.ya3{bottom:541.331053px;}
.yea{bottom:547.902000px;}
.y12b{bottom:551.046000px;}
.ycb{bottom:552.169500px;}
.y18{bottom:554.275500px;}
.y10f{bottom:555.150000px;}
.ya2{bottom:556.566565px;}
.y67{bottom:561.427500px;}
.y42{bottom:567.397500px;}
.ye9{bottom:568.225500px;}
.y12a{bottom:571.371000px;}
.ya0{bottom:572.250742px;}
.yca{bottom:572.494500px;}
.y17{bottom:574.599000px;}
.y10e{bottom:575.473500px;}
.y66{bottom:581.751000px;}
.y9f{bottom:587.486254px;}
.y41{bottom:587.721000px;}
.ye8{bottom:588.550500px;}
.y129{bottom:591.694500px;}
.yc9{bottom:592.818000px;}
.y16{bottom:594.924000px;}
.y9c{bottom:595.084332px;}
.y10d{bottom:595.797000px;}
.y65{bottom:602.074500px;}
.y9e{bottom:602.721766px;}
.y3f{bottom:608.046000px;}
.ye7{bottom:608.874000px;}
.y128{bottom:612.018000px;}
.yc8{bottom:613.141500px;}
.y40{bottom:613.983000px;}
.y15{bottom:615.247500px;}
.y10c{bottom:616.120500px;}
.y9d{bottom:617.957278px;}
.y64{bottom:622.398000px;}
.y3e{bottom:628.369500px;}
.ye6{bottom:629.197500px;}
.y127{bottom:632.341500px;}
.yc7{bottom:633.465000px;}
.y9b{bottom:633.641455px;}
.y10b{bottom:636.444000px;}
.y63{bottom:642.723000px;}
.y9a{bottom:648.876967px;}
.ye5{bottom:649.521000px;}
.y3d{bottom:650.655000px;}
.y14{bottom:651.792000px;}
.y126{bottom:652.665000px;}
.yc6{bottom:653.788500px;}
.y97{bottom:656.475044px;}
.y10a{bottom:656.767500px;}
.y62{bottom:663.046500px;}
.y99{bottom:664.112479px;}
.ye4{bottom:669.844500px;}
.y3b{bottom:670.978500px;}
.y125{bottom:672.990000px;}
.yc5{bottom:674.113500px;}
.y3c{bottom:676.917000px;}
.y109{bottom:677.092500px;}
.y98{bottom:679.349115px;}
.y61{bottom:683.370000px;}
.ye3{bottom:690.169500px;}
.y3a{bottom:691.302000px;}
.y124{bottom:693.313500px;}
.yc4{bottom:694.437000px;}
.y96{bottom:695.032168px;}
.y108{bottom:697.416000px;}
.y60{bottom:703.693500px;}
.y95{bottom:710.267679px;}
.ye2{bottom:710.493000px;}
.y39{bottom:713.587500px;}
.y123{bottom:713.637000px;}
.yc3{bottom:714.760500px;}
.y107{bottom:717.739500px;}
.y92{bottom:717.866881px;}
.y5f{bottom:724.017000px;}
.y94{bottom:725.504316px;}
.y13{bottom:725.946000px;}
.ye1{bottom:730.816500px;}
.y38{bottom:733.911000px;}
.y122{bottom:733.960500px;}
.yc2{bottom:735.084000px;}
.y106{bottom:738.063000px;}
.y93{bottom:740.739827px;}
.y12{bottom:742.384500px;}
.y5e{bottom:744.342000px;}
.ye0{bottom:751.140000px;}
.y37{bottom:754.236000px;}
.y121{bottom:754.284000px;}
.yc1{bottom:755.407500px;}
.y91{bottom:756.422880px;}
.y105{bottom:758.386500px;}
.y11{bottom:770.163000px;}
.y90{bottom:771.659516px;}
.y36{bottom:774.559500px;}
.y120{bottom:774.609000px;}
.y5d{bottom:775.243500px;}
.yc0{bottom:775.732500px;}
.y104{bottom:778.711500px;}
.y8d{bottom:779.257594px;}
.ydf{bottom:782.043000px;}
.y10{bottom:786.601500px;}
.y8f{bottom:786.895028px;}
.y11f{bottom:794.932500px;}
.ybf{bottom:796.056000px;}
.y35{bottom:796.845000px;}
.y103{bottom:799.035000px;}
.y8e{bottom:802.130540px;}
.yf{bottom:803.040000px;}
.y5c{bottom:809.985000px;}
.yde{bottom:815.256000px;}
.y34{bottom:817.168500px;}
.y8c{bottom:817.814717px;}
.y102{bottom:819.358500px;}
.ye{bottom:819.478500px;}
.ybe{bottom:826.959000px;}
.y5b{bottom:830.310000px;}
.y8b{bottom:833.050229px;}
.ydd{bottom:835.579500px;}
.yd{bottom:835.915500px;}
.y33{bottom:837.492000px;}
.y101{bottom:839.682000px;}
.y88{bottom:840.648307px;}
.y8a{bottom:848.285741px;}
.y5a{bottom:850.633500px;}
.yc{bottom:852.354000px;}
.ydc{bottom:855.903000px;}
.ybd{bottom:857.724000px;}
.y32{bottom:857.815500px;}
.y100{bottom:860.005500px;}
.y89{bottom:863.521253px;}
.yb{bottom:868.792500px;}
.y59{bottom:870.957000px;}
.ydb{bottom:876.228000px;}
.y87{bottom:879.205430px;}
.yff{bottom:880.330500px;}
.ya{bottom:885.231000px;}
.y58{bottom:891.280500px;}
.y31{bottom:891.337500px;}
.y86{bottom:894.440942px;}
.ybc{bottom:896.551500px;}
.yfe{bottom:900.654000px;}
.y9{bottom:901.669500px;}
.y83{bottom:902.039019px;}
.y85{bottom:909.676454px;}
.y57{bottom:911.604000px;}
.y30{bottom:911.661000px;}
.ybb{bottom:916.875000px;}
.y8{bottom:918.108000px;}
.yfd{bottom:920.977500px;}
.y84{bottom:924.911965px;}
.y56{bottom:931.929000px;}
.y2f{bottom:931.984500px;}
.y7{bottom:934.546500px;}
.yba{bottom:937.198500px;}
.y82{bottom:940.596143px;}
.yfc{bottom:941.301000px;}
.y6{bottom:950.985000px;}
.y55{bottom:952.252500px;}
.y2e{bottom:952.308000px;}
.y81{bottom:955.831654px;}
.yb9{bottom:957.522000px;}
.yfb{bottom:961.624500px;}
.y7e{bottom:963.429732px;}
.y5{bottom:967.423500px;}
.y80{bottom:971.068291px;}
.y54{bottom:972.576000px;}
.yb8{bottom:977.847000px;}
.yfa{bottom:981.949500px;}
.y2d{bottom:983.211000px;}
.y7f{bottom:986.303802px;}
.yb7{bottom:995.715000px;}
.yb6{bottom:998.170500px;}
.y7d{bottom:1001.986855px;}
.yf9{bottom:1002.273000px;}
.y53{bottom:1003.479000px;}
.y7c{bottom:1009.605173px;}
.y4{bottom:1012.554000px;}
.y7b{bottom:1017.223491px;}
.yb5{bottom:1018.494000px;}
.y2c{bottom:1020.354000px;}
.yf8{bottom:1022.596500px;}
.y7a{bottom:1035.595164px;}
.y52{bottom:1038.817500px;}
.yf7{bottom:1042.920000px;}
.y3{bottom:1046.925000px;}
.y79{bottom:1053.582000px;}
.y2b{bottom:1059.141000px;}
.yf6{bottom:1063.243500px;}
.y78{bottom:1071.516000px;}
.y2a{bottom:1079.466000px;}
.yf5{bottom:1083.568500px;}
.y2{bottom:1085.779500px;}
.y77{bottom:1089.448500px;}
.y29{bottom:1099.789500px;}
.y76{bottom:1107.381000px;}
.y1{bottom:1118.656500px;}
.y28{bottom:1120.113000px;}
.h9{height:16.741622px;}
.hb{height:26.397082px;}
.h14{height:32.326726px;}
.hd{height:35.195962px;}
.h12{height:35.328989px;}
.h13{height:36.114078px;}
.h4{height:37.658880px;}
.h6{height:39.595622px;}
.h17{height:40.447954px;}
.h11{height:40.826735px;}
.hf{height:41.629126px;}
.h10{height:43.994842px;}
.h15{height:44.312764px;}
.he{height:44.705492px;}
.h7{height:45.687311px;}
.ha{height:47.073600px;}
.h5{height:48.174586px;}
.hc{height:50.068378px;}
.h3{height:52.794163px;}
.h16{height:54.527492px;}
.h8{height:60.081886px;}
.h2{height:72.098095px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:133.936500px;}
.x65{left:141.546000px;}
.x1b{left:150.300000px;}
.x27{left:160.920000px;}
.x66{left:168.988500px;}
.x28{left:174.846000px;}
.x20{left:187.455000px;}
.x47{left:189.246000px;}
.x43{left:191.361000px;}
.x2{left:195.871500px;}
.x4f{left:207.029928px;}
.x44{left:208.143000px;}
.x4c{left:211.838183px;}
.x39{left:214.441500px;}
.x3a{left:229.660500px;}
.x4b{left:242.798353px;}
.x25{left:248.023500px;}
.x26{left:255.633000px;}
.x4a{left:278.020284px;}
.x7{left:304.075500px;}
.x8{left:311.685000px;}
.x9{left:319.791000px;}
.xa{left:327.400500px;}
.xb{left:335.506500px;}
.xc{left:343.116000px;}
.xd{left:351.222000px;}
.xe{left:358.831500px;}
.x51{left:362.037682px;}
.x53{left:364.653211px;}
.x56{left:366.775095px;}
.x50{left:369.700979px;}
.x52{left:371.667686px;}
.x3b{left:376.248000px;}
.x35{left:379.068000px;}
.x4d{left:382.588587px;}
.x3{left:385.863000px;}
.x3c{left:388.194000px;}
.x36{left:389.661000px;}
.x13{left:392.248500px;}
.x4{left:393.472500px;}
.x37{left:395.602500px;}
.x14{left:399.856500px;}
.x5{left:401.215500px;}
.x6{left:408.823500px;}
.x38{left:410.820000px;}
.x42{left:421.837500px;}
.x5b{left:434.787000px;}
.x59{left:441.261000px;}
.x5c{left:451.621500px;}
.x54{left:456.639764px;}
.x5a{left:463.597500px;}
.x1c{left:466.432500px;}
.x3d{left:469.201500px;}
.x45{left:474.099000px;}
.x1d{left:481.651500px;}
.xf{left:484.150500px;}
.x1e{left:489.369000px;}
.x10{left:491.760000px;}
.x11{left:499.809000px;}
.x5d{left:500.946000px;}
.x2b{left:502.366500px;}
.x1f{left:504.588000px;}
.x12{left:507.418500px;}
.x69{left:508.572000px;}
.x2c{left:517.584000px;}
.x2d{left:523.972500px;}
.x5e{left:526.401000px;}
.x2e{left:539.190000px;}
.x2f{left:545.578500px;}
.x3e{left:548.493000px;}
.x33{left:558.951000px;}
.x30{left:560.796000px;}
.x34{left:569.466000px;}
.x17{left:578.865000px;}
.x5f{left:580.638000px;}
.x31{left:588.501000px;}
.x18{left:594.082500px;}
.x19{left:602.485500px;}
.x32{left:603.718500px;}
.x60{left:606.118500px;}
.x57{left:611.647518px;}
.x15{left:615.001500px;}
.x1a{left:617.703000px;}
.x55{left:619.310815px;}
.x58{left:621.277522px;}
.x16{left:622.609500px;}
.x64{left:625.918500px;}
.x61{left:630.888000px;}
.x4e{left:632.198423px;}
.x3f{left:633.255000px;}
.x40{left:641.349000px;}
.x48{left:651.892500px;}
.x29{left:658.246500px;}
.x49{left:668.020500px;}
.x2a{left:673.464000px;}
.x21{left:677.299500px;}
.x67{left:689.542500px;}
.x22{left:692.517000px;}
.x62{left:696.444000px;}
.x23{left:702.046500px;}
.x24{left:717.265500px;}
.x41{left:726.109500px;}
.x63{left:734.065500px;}
.x46{left:746.248500px;}
.x68{left:757.939500px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v3{vertical-align:-9.008000pt;}
.v4{vertical-align:-6.540946pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:8.730667pt;}
.v1{vertical-align:23.136000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.003370pt;}
.ls0{letter-spacing:2.653258pt;}
.ls2{letter-spacing:2.655527pt;}
.ls6{letter-spacing:2.658219pt;}
.lsb{letter-spacing:4.754148pt;}
.ls8{letter-spacing:6.291066pt;}
.ls4{letter-spacing:7.970133pt;}
.ls3{letter-spacing:11.955200pt;}
.lsa{letter-spacing:14.603649pt;}
.ls9{letter-spacing:20.893905pt;}
.ls1{letter-spacing:31.880533pt;}
.lsc{letter-spacing:151.682256pt;}
.ws2{word-spacing:-15.940267pt;}
.ws88{word-spacing:-14.545467pt;}
.ws35{word-spacing:-11.955200pt;}
.ws7e{word-spacing:-4.480004pt;}
.ws2d{word-spacing:-4.421822pt;}
.ws2b{word-spacing:-4.189094pt;}
.ws2c{word-spacing:-4.130913pt;}
.ws7f{word-spacing:-3.607276pt;}
.ws67{word-spacing:-3.490912pt;}
.ws63{word-spacing:-3.258185pt;}
.ws9b{word-spacing:-3.025457pt;}
.ws81{word-spacing:-2.618184pt;}
.ws62{word-spacing:-2.501820pt;}
.wsd{word-spacing:-2.486682pt;}
.ws65{word-spacing:-2.443638pt;}
.ws8e{word-spacing:-2.152729pt;}
.ws84{word-spacing:-2.094547pt;}
.ws83{word-spacing:-2.036365pt;}
.ws75{word-spacing:-1.687274pt;}
.ws6c{word-spacing:-1.570910pt;}
.ws34{word-spacing:-1.454547pt;}
.ws7d{word-spacing:-1.280001pt;}
.ws43{word-spacing:-1.222079pt;}
.ws3e{word-spacing:-1.221819pt;}
.ws49{word-spacing:-1.168945pt;}
.ws18{word-spacing:-1.105455pt;}
.ws91{word-spacing:-0.989092pt;}
.ws77{word-spacing:-0.698182pt;}
.ws41{word-spacing:-0.465455pt;}
.ws11{word-spacing:-0.407273pt;}
.wsa{word-spacing:-0.382566pt;}
.ws33{word-spacing:-0.349091pt;}
.ws12{word-spacing:-0.232727pt;}
.ws1f{word-spacing:-0.174546pt;}
.ws8{word-spacing:-0.143462pt;}
.ws19{word-spacing:-0.116364pt;}
.ws85{word-spacing:-0.076513pt;}
.wsf{word-spacing:-0.058182pt;}
.ws45{word-spacing:-0.053134pt;}
.ws8c{word-spacing:-0.049455pt;}
.ws7{word-spacing:-0.047821pt;}
.ws64{word-spacing:-0.042507pt;}
.ws9c{word-spacing:-0.005716pt;}
.ws1{word-spacing:0.000000pt;}
.ws46{word-spacing:0.053134pt;}
.ws1e{word-spacing:0.058182pt;}
.ws2f{word-spacing:0.116364pt;}
.ws6{word-spacing:0.143462pt;}
.ws1d{word-spacing:0.174546pt;}
.wsb{word-spacing:0.191283pt;}
.ws13{word-spacing:0.232727pt;}
.ws38{word-spacing:0.290909pt;}
.ws69{word-spacing:0.349091pt;}
.ws2e{word-spacing:0.407273pt;}
.ws9{word-spacing:0.430387pt;}
.ws32{word-spacing:0.581819pt;}
.ws3f{word-spacing:0.640001pt;}
.ws15{word-spacing:0.698182pt;}
.ws42{word-spacing:0.814546pt;}
.ws14{word-spacing:0.872728pt;}
.ws30{word-spacing:0.930910pt;}
.ws7a{word-spacing:1.105455pt;}
.wsc{word-spacing:1.338982pt;}
.ws3c{word-spacing:1.512729pt;}
.ws9d{word-spacing:1.570910pt;}
.wse{word-spacing:1.673728pt;}
.ws7c{word-spacing:1.745456pt;}
.ws31{word-spacing:1.803638pt;}
.ws4a{word-spacing:1.831874pt;}
.ws1c{word-spacing:1.920002pt;}
.ws1b{word-spacing:1.978183pt;}
.ws29{word-spacing:2.036365pt;}
.ws28{word-spacing:2.094547pt;}
.ws36{word-spacing:2.210911pt;}
.ws16{word-spacing:2.269093pt;}
.ws17{word-spacing:2.327275pt;}
.ws5{word-spacing:2.343219pt;}
.ws71{word-spacing:2.618184pt;}
.ws3{word-spacing:2.677965pt;}
.ws8a{word-spacing:2.734548pt;}
.ws61{word-spacing:2.792730pt;}
.ws23{word-spacing:2.850911pt;}
.ws79{word-spacing:2.967275pt;}
.ws3d{word-spacing:3.083639pt;}
.ws97{word-spacing:3.141821pt;}
.ws90{word-spacing:3.200003pt;}
.ws95{word-spacing:3.258185pt;}
.ws7b{word-spacing:3.374548pt;}
.ws74{word-spacing:3.432730pt;}
.ws80{word-spacing:3.607276pt;}
.ws26{word-spacing:3.665458pt;}
.ws25{word-spacing:3.723639pt;}
.ws92{word-spacing:3.956367pt;}
.ws20{word-spacing:3.969126pt;}
.ws99{word-spacing:4.130913pt;}
.ws82{word-spacing:4.247276pt;}
.ws72{word-spacing:4.305458pt;}
.ws76{word-spacing:4.538186pt;}
.ws27{word-spacing:4.596367pt;}
.ws3b{word-spacing:4.654549pt;}
.ws89{word-spacing:5.003641pt;}
.ws8f{word-spacing:5.178186pt;}
.ws86{word-spacing:5.469095pt;}
.ws21{word-spacing:5.876369pt;}
.ws8b{word-spacing:5.934550pt;}
.ws8d{word-spacing:5.992732pt;}
.ws9a{word-spacing:6.050914pt;}
.ws87{word-spacing:6.109096pt;}
.ws2a{word-spacing:6.225460pt;}
.ws70{word-spacing:6.283642pt;}
.ws3a{word-spacing:6.341823pt;}
.ws78{word-spacing:6.516369pt;}
.ws98{word-spacing:6.690915pt;}
.ws96{word-spacing:6.923642pt;}
.ws4{word-spacing:11.907379pt;}
.ws44{word-spacing:12.008254pt;}
.ws68{word-spacing:12.043646pt;}
.ws4f{word-spacing:12.858146pt;}
.ws4c{word-spacing:12.866233pt;}
.ws48{word-spacing:13.336601pt;}
.ws1a{word-spacing:14.429103pt;}
.ws37{word-spacing:14.720012pt;}
.ws24{word-spacing:15.876506pt;}
.ws73{word-spacing:16.058195pt;}
.ws66{word-spacing:16.116377pt;}
.ws6a{word-spacing:16.174559pt;}
.ws6d{word-spacing:16.232741pt;}
.ws47{word-spacing:16.418365pt;}
.ws94{word-spacing:17.338196pt;}
.ws40{word-spacing:18.210924pt;}
.ws6e{word-spacing:18.773533pt;}
.ws6b{word-spacing:18.869654pt;}
.ws6f{word-spacing:19.051754pt;}
.ws22{word-spacing:20.538199pt;}
.ws93{word-spacing:20.654563pt;}
.ws0{word-spacing:22.862051pt;}
.ws39{word-spacing:29.032751pt;}
.ws10{word-spacing:38.180020pt;}
.ws4e{word-spacing:48.800002pt;}
.ws4b{word-spacing:54.965124pt;}
.ws50{word-spacing:118.475903pt;}
.ws55{word-spacing:119.019650pt;}
.ws56{word-spacing:119.247907pt;}
.ws5f{word-spacing:119.335502pt;}
.ws54{word-spacing:119.379482pt;}
.ws59{word-spacing:119.555399pt;}
.ws5c{word-spacing:119.835269pt;}
.ws57{word-spacing:120.319406pt;}
.ws60{word-spacing:120.407002pt;}
.ws52{word-spacing:120.450981pt;}
.ws5e{word-spacing:120.478968pt;}
.ws5a{word-spacing:120.626899pt;}
.ws5b{word-spacing:120.906768pt;}
.ws5d{word-spacing:121.550468pt;}
.ws51{word-spacing:139.712561pt;}
.ws58{word-spacing:145.576007pt;}
.ws4d{word-spacing:147.227127pt;}
.ws53{word-spacing:155.715273pt;}
._15{margin-left:-6.632733pt;}
._1d{margin-left:-5.004067pt;}
._a{margin-left:-4.072731pt;}
._3{margin-left:-3.012710pt;}
._0{margin-left:-1.193601pt;}
._1{width:1.285417pt;}
._14{width:2.240875pt;}
._10{width:3.723639pt;}
._b{width:9.309116pt;}
._f{width:11.200882pt;}
._19{width:12.160010pt;}
._6{width:13.246362pt;}
._5{width:14.202778pt;}
._4{width:15.250997pt;}
._7{width:16.498176pt;}
._11{width:17.441911pt;}
._1b{width:18.501834pt;}
._8{width:20.247290pt;}
._c{width:21.929148pt;}
._9{width:23.330929pt;}
._13{width:24.535361pt;}
._18{width:25.566388pt;}
._1c{width:28.392751pt;}
._12{width:29.614570pt;}
._d{width:31.273626pt;}
._2{width:32.326187pt;}
._25{width:33.456319pt;}
._21{width:34.501847pt;}
._e{width:35.986357pt;}
._28{width:37.155410pt;}
._1a{width:38.256533pt;}
._22{width:39.942724pt;}
._20{width:41.541853pt;}
._1f{width:44.229476pt;}
._1e{width:45.329090pt;}
._26{width:48.407313pt;}
._27{width:77.718227pt;}
._24{width:88.494619pt;}
._23{width:101.992812pt;}
._17{width:512.578191pt;}
._16{width:564.437678pt;}
.fs9{font-size:31.865522pt;}
.fs6{font-size:31.880533pt;}
.fs2{font-size:42.507200pt;}
.fs8{font-size:43.616036pt;}
.fs3{font-size:47.820800pt;}
.fsa{font-size:49.454933pt;}
.fs7{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs5{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.yda{bottom:219.833333pt;}
.y27{bottom:219.977333pt;}
.yb4{bottom:220.112000pt;}
.y11e{bottom:222.482667pt;}
.y51{bottom:223.913333pt;}
.y75{bottom:223.917333pt;}
.y26{bottom:233.522667pt;}
.yd9{bottom:237.900000pt;}
.yb3{bottom:238.178667pt;}
.y50{bottom:238.525333pt;}
.y11d{bottom:240.548000pt;}
.y74{bottom:247.613333pt;}
.y4f{bottom:253.137333pt;}
.y25{bottom:253.445333pt;}
.yb2{bottom:254.061333pt;}
.yd8{bottom:255.965333pt;}
.yb1{bottom:256.244000pt;}
.y11c{bottom:258.613333pt;}
.y24{bottom:262.978667pt;}
.y73{bottom:265.678667pt;}
.yf4{bottom:271.721333pt;}
.yd7{bottom:274.030667pt;}
.yb0{bottom:274.309333pt;}
.y4e{bottom:274.929333pt;}
.y11b{bottom:276.678667pt;}
.y72{bottom:283.744000pt;}
.yf3{bottom:289.788000pt;}
.yd6{bottom:292.096000pt;}
.yaf{bottom:292.374667pt;}
.y4c{bottom:292.994667pt;}
.y23{bottom:293.968000pt;}
.y11a{bottom:294.744000pt;}
.y4d{bottom:298.273333pt;}
.y71{bottom:301.809333pt;}
.yf2{bottom:307.853333pt;}
.yd5{bottom:310.161333pt;}
.yae{bottom:310.440000pt;}
.y4b{bottom:311.060000pt;}
.y22{bottom:312.033333pt;}
.y119{bottom:312.810667pt;}
.y70{bottom:319.874667pt;}
.yd4{bottom:328.228000pt;}
.yad{bottom:328.506667pt;}
.y4a{bottom:329.125333pt;}
.y21{bottom:330.098667pt;}
.y118{bottom:330.876000pt;}
.y6e{bottom:337.941333pt;}
.yf1{bottom:340.337333pt;}
.y6f{bottom:343.218667pt;}
.y133{bottom:345.294667pt;}
.yd3{bottom:346.293333pt;}
.yac{bottom:346.572000pt;}
.y49{bottom:347.190667pt;}
.y20{bottom:348.165333pt;}
.y117{bottom:348.941333pt;}
.y6d{bottom:356.006667pt;}
.y132{bottom:363.360000pt;}
.yd2{bottom:364.358667pt;}
.yab{bottom:364.637333pt;}
.y48{bottom:365.257333pt;}
.y1f{bottom:366.230667pt;}
.y116{bottom:367.006667pt;}
.y6c{bottom:374.072000pt;}
.yf0{bottom:378.630667pt;}
.y131{bottom:381.425333pt;}
.yd1{bottom:382.424000pt;}
.y47{bottom:383.322667pt;}
.y1e{bottom:384.296000pt;}
.y115{bottom:385.072000pt;}
.y6b{bottom:392.137333pt;}
.yef{bottom:396.696000pt;}
.y130{bottom:399.490667pt;}
.yaa{bottom:399.527282pt;}
.yd0{bottom:400.489333pt;}
.y46{bottom:401.388000pt;}
.y1d{bottom:402.361333pt;}
.y114{bottom:403.138667pt;}
.ya9{bottom:413.070959pt;}
.yee{bottom:414.761333pt;}
.y12f{bottom:417.557333pt;}
.ycf{bottom:418.556000pt;}
.y45{bottom:419.453333pt;}
.ya6{bottom:419.824806pt;}
.y1c{bottom:420.426667pt;}
.y113{bottom:421.204000pt;}
.y6a{bottom:424.622667pt;}
.ya8{bottom:426.613636pt;}
.yed{bottom:432.828000pt;}
.y12e{bottom:435.622667pt;}
.yce{bottom:436.621333pt;}
.y44{bottom:437.518667pt;}
.y1b{bottom:438.493333pt;}
.y112{bottom:439.269333pt;}
.ya7{bottom:440.156313pt;}
.yec{bottom:450.893333pt;}
.y12d{bottom:453.688000pt;}
.ya5{bottom:454.097804pt;}
.ycd{bottom:454.686667pt;}
.y1a{bottom:456.558667pt;}
.y111{bottom:457.334667pt;}
.y69{bottom:462.914667pt;}
.y43{bottom:464.988000pt;}
.ya4{bottom:467.640481pt;}
.yeb{bottom:468.958667pt;}
.y12c{bottom:471.753333pt;}
.ycc{bottom:472.752000pt;}
.ya1{bottom:474.394328pt;}
.y19{bottom:474.624000pt;}
.y110{bottom:475.400000pt;}
.y68{bottom:480.981333pt;}
.ya3{bottom:481.183158pt;}
.yea{bottom:487.024000pt;}
.y12b{bottom:489.818667pt;}
.ycb{bottom:490.817333pt;}
.y18{bottom:492.689333pt;}
.y10f{bottom:493.466667pt;}
.ya2{bottom:494.725836pt;}
.y67{bottom:499.046667pt;}
.y42{bottom:504.353333pt;}
.ye9{bottom:505.089333pt;}
.y12a{bottom:507.885333pt;}
.ya0{bottom:508.667327pt;}
.yca{bottom:508.884000pt;}
.y17{bottom:510.754667pt;}
.y10e{bottom:511.532000pt;}
.y66{bottom:517.112000pt;}
.y9f{bottom:522.210004pt;}
.y41{bottom:522.418667pt;}
.ye8{bottom:523.156000pt;}
.y129{bottom:525.950667pt;}
.yc9{bottom:526.949333pt;}
.y16{bottom:528.821333pt;}
.y9c{bottom:528.963850pt;}
.y10d{bottom:529.597333pt;}
.y65{bottom:535.177333pt;}
.y9e{bottom:535.752681pt;}
.y3f{bottom:540.485333pt;}
.ye7{bottom:541.221333pt;}
.y128{bottom:544.016000pt;}
.yc8{bottom:545.014667pt;}
.y40{bottom:545.762667pt;}
.y15{bottom:546.886667pt;}
.y10c{bottom:547.662667pt;}
.y9d{bottom:549.295358pt;}
.y64{bottom:553.242667pt;}
.y3e{bottom:558.550667pt;}
.ye6{bottom:559.286667pt;}
.y127{bottom:562.081333pt;}
.yc7{bottom:563.080000pt;}
.y9b{bottom:563.236849pt;}
.y10b{bottom:565.728000pt;}
.y63{bottom:571.309333pt;}
.y9a{bottom:576.779526pt;}
.ye5{bottom:577.352000pt;}
.y3d{bottom:578.360000pt;}
.y14{bottom:579.370667pt;}
.y126{bottom:580.146667pt;}
.yc6{bottom:581.145333pt;}
.y97{bottom:583.533373pt;}
.y10a{bottom:583.793333pt;}
.y62{bottom:589.374667pt;}
.y99{bottom:590.322203pt;}
.ye4{bottom:595.417333pt;}
.y3b{bottom:596.425333pt;}
.y125{bottom:598.213333pt;}
.yc5{bottom:599.212000pt;}
.y3c{bottom:601.704000pt;}
.y109{bottom:601.860000pt;}
.y98{bottom:603.865880pt;}
.y61{bottom:607.440000pt;}
.ye3{bottom:613.484000pt;}
.y3a{bottom:614.490667pt;}
.y124{bottom:616.278667pt;}
.yc4{bottom:617.277333pt;}
.y96{bottom:617.806371pt;}
.y108{bottom:619.925333pt;}
.y60{bottom:625.505333pt;}
.y95{bottom:631.349048pt;}
.ye2{bottom:631.549333pt;}
.y39{bottom:634.300000pt;}
.y123{bottom:634.344000pt;}
.yc3{bottom:635.342667pt;}
.y107{bottom:637.990667pt;}
.y92{bottom:638.103895pt;}
.y5f{bottom:643.570667pt;}
.y94{bottom:644.892725pt;}
.y13{bottom:645.285333pt;}
.ye1{bottom:649.614667pt;}
.y38{bottom:652.365333pt;}
.y122{bottom:652.409333pt;}
.yc2{bottom:653.408000pt;}
.y106{bottom:656.056000pt;}
.y93{bottom:658.435402pt;}
.y12{bottom:659.897333pt;}
.y5e{bottom:661.637333pt;}
.ye0{bottom:667.680000pt;}
.y37{bottom:670.432000pt;}
.y121{bottom:670.474667pt;}
.yc1{bottom:671.473333pt;}
.y91{bottom:672.375894pt;}
.y105{bottom:674.121333pt;}
.y11{bottom:684.589333pt;}
.y90{bottom:685.919570pt;}
.y36{bottom:688.497333pt;}
.y120{bottom:688.541333pt;}
.y5d{bottom:689.105333pt;}
.yc0{bottom:689.540000pt;}
.y104{bottom:692.188000pt;}
.y8d{bottom:692.673417pt;}
.ydf{bottom:695.149333pt;}
.y10{bottom:699.201333pt;}
.y8f{bottom:699.462247pt;}
.y11f{bottom:706.606667pt;}
.ybf{bottom:707.605333pt;}
.y35{bottom:708.306667pt;}
.y103{bottom:710.253333pt;}
.y8e{bottom:713.004924pt;}
.yf{bottom:713.813333pt;}
.y5c{bottom:719.986667pt;}
.yde{bottom:724.672000pt;}
.y34{bottom:726.372000pt;}
.y8c{bottom:726.946415pt;}
.y102{bottom:728.318667pt;}
.ye{bottom:728.425333pt;}
.ybe{bottom:735.074667pt;}
.y5b{bottom:738.053333pt;}
.y8b{bottom:740.489093pt;}
.ydd{bottom:742.737333pt;}
.yd{bottom:743.036000pt;}
.y33{bottom:744.437333pt;}
.y101{bottom:746.384000pt;}
.y88{bottom:747.242939pt;}
.y8a{bottom:754.031770pt;}
.y5a{bottom:756.118667pt;}
.yc{bottom:757.648000pt;}
.ydc{bottom:760.802667pt;}
.ybd{bottom:762.421333pt;}
.y32{bottom:762.502667pt;}
.y100{bottom:764.449333pt;}
.y89{bottom:767.574447pt;}
.yb{bottom:772.260000pt;}
.y59{bottom:774.184000pt;}
.ydb{bottom:778.869333pt;}
.y87{bottom:781.515938pt;}
.yff{bottom:782.516000pt;}
.ya{bottom:786.872000pt;}
.y58{bottom:792.249333pt;}
.y31{bottom:792.300000pt;}
.y86{bottom:795.058615pt;}
.ybc{bottom:796.934667pt;}
.yfe{bottom:800.581333pt;}
.y9{bottom:801.484000pt;}
.y83{bottom:801.812462pt;}
.y85{bottom:808.601292pt;}
.y57{bottom:810.314667pt;}
.y30{bottom:810.365333pt;}
.ybb{bottom:815.000000pt;}
.y8{bottom:816.096000pt;}
.yfd{bottom:818.646667pt;}
.y84{bottom:822.143969pt;}
.y56{bottom:828.381333pt;}
.y2f{bottom:828.430667pt;}
.y7{bottom:830.708000pt;}
.yba{bottom:833.065333pt;}
.y82{bottom:836.085460pt;}
.yfc{bottom:836.712000pt;}
.y6{bottom:845.320000pt;}
.y55{bottom:846.446667pt;}
.y2e{bottom:846.496000pt;}
.y81{bottom:849.628137pt;}
.yb9{bottom:851.130667pt;}
.yfb{bottom:854.777333pt;}
.y7e{bottom:856.381984pt;}
.y5{bottom:859.932000pt;}
.y80{bottom:863.171814pt;}
.y54{bottom:864.512000pt;}
.yb8{bottom:869.197333pt;}
.yfa{bottom:872.844000pt;}
.y2d{bottom:873.965333pt;}
.y7f{bottom:876.714491pt;}
.yb7{bottom:885.080000pt;}
.yb6{bottom:887.262667pt;}
.y7d{bottom:890.654982pt;}
.yf9{bottom:890.909333pt;}
.y53{bottom:891.981333pt;}
.y7c{bottom:897.426821pt;}
.y4{bottom:900.048000pt;}
.y7b{bottom:904.198659pt;}
.yb5{bottom:905.328000pt;}
.y2c{bottom:906.981333pt;}
.yf8{bottom:908.974667pt;}
.y7a{bottom:920.529035pt;}
.y52{bottom:923.393333pt;}
.yf7{bottom:927.040000pt;}
.y3{bottom:930.600000pt;}
.y79{bottom:936.517333pt;}
.y2b{bottom:941.458667pt;}
.yf6{bottom:945.105333pt;}
.y78{bottom:952.458667pt;}
.y2a{bottom:959.525333pt;}
.yf5{bottom:963.172000pt;}
.y2{bottom:965.137333pt;}
.y77{bottom:968.398667pt;}
.y29{bottom:977.590667pt;}
.y76{bottom:984.338667pt;}
.y1{bottom:994.361333pt;}
.y28{bottom:995.656000pt;}
.h9{height:14.881442pt;}
.hb{height:23.464073pt;}
.h14{height:28.734867pt;}
.hd{height:31.285299pt;}
.h12{height:31.403546pt;}
.h13{height:32.101403pt;}
.h4{height:33.474560pt;}
.h6{height:35.196109pt;}
.h17{height:35.953737pt;}
.h11{height:36.290431pt;}
.hf{height:37.003667pt;}
.h10{height:39.106526pt;}
.h15{height:39.389124pt;}
.he{height:39.738215pt;}
.h7{height:40.610943pt;}
.ha{height:41.843200pt;}
.h5{height:42.821854pt;}
.hc{height:44.505225pt;}
.h3{height:46.928145pt;}
.h16{height:48.468882pt;}
.h8{height:53.406121pt;}
.h2{height:64.087196pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:119.054667pt;}
.x65{left:125.818667pt;}
.x1b{left:133.600000pt;}
.x27{left:143.040000pt;}
.x66{left:150.212000pt;}
.x28{left:155.418667pt;}
.x20{left:166.626667pt;}
.x47{left:168.218667pt;}
.x43{left:170.098667pt;}
.x2{left:174.108000pt;}
.x4f{left:184.026603pt;}
.x44{left:185.016000pt;}
.x4c{left:188.300607pt;}
.x39{left:190.614667pt;}
.x3a{left:204.142667pt;}
.x4b{left:215.820758pt;}
.x25{left:220.465333pt;}
.x26{left:227.229333pt;}
.x4a{left:247.129141pt;}
.x7{left:270.289333pt;}
.x8{left:277.053333pt;}
.x9{left:284.258667pt;}
.xa{left:291.022667pt;}
.xb{left:298.228000pt;}
.xc{left:304.992000pt;}
.xd{left:312.197333pt;}
.xe{left:318.961333pt;}
.x51{left:321.811273pt;}
.x53{left:324.136188pt;}
.x56{left:326.022307pt;}
.x50{left:328.623093pt;}
.x52{left:330.371277pt;}
.x3b{left:334.442667pt;}
.x35{left:336.949333pt;}
.x4d{left:340.078744pt;}
.x3{left:342.989333pt;}
.x3c{left:345.061333pt;}
.x36{left:346.365333pt;}
.x13{left:348.665333pt;}
.x4{left:349.753333pt;}
.x37{left:351.646667pt;}
.x14{left:355.428000pt;}
.x5{left:356.636000pt;}
.x6{left:363.398667pt;}
.x38{left:365.173333pt;}
.x42{left:374.966667pt;}
.x5b{left:386.477333pt;}
.x59{left:392.232000pt;}
.x5c{left:401.441333pt;}
.x54{left:405.902012pt;}
.x5a{left:412.086667pt;}
.x1c{left:414.606667pt;}
.x3d{left:417.068000pt;}
.x45{left:421.421333pt;}
.x1d{left:428.134667pt;}
.xf{left:430.356000pt;}
.x1e{left:434.994667pt;}
.x10{left:437.120000pt;}
.x11{left:444.274667pt;}
.x5d{left:445.285333pt;}
.x2b{left:446.548000pt;}
.x1f{left:448.522667pt;}
.x12{left:451.038667pt;}
.x69{left:452.064000pt;}
.x2c{left:460.074667pt;}
.x2d{left:465.753333pt;}
.x5e{left:467.912000pt;}
.x2e{left:479.280000pt;}
.x2f{left:484.958667pt;}
.x3e{left:487.549333pt;}
.x33{left:496.845333pt;}
.x30{left:498.485333pt;}
.x34{left:506.192000pt;}
.x17{left:514.546667pt;}
.x5f{left:516.122667pt;}
.x31{left:523.112000pt;}
.x18{left:528.073333pt;}
.x19{left:535.542667pt;}
.x32{left:536.638667pt;}
.x60{left:538.772000pt;}
.x57{left:543.686683pt;}
.x15{left:546.668000pt;}
.x1a{left:549.069333pt;}
.x55{left:550.498503pt;}
.x58{left:552.246686pt;}
.x16{left:553.430667pt;}
.x64{left:556.372000pt;}
.x61{left:560.789333pt;}
.x4e{left:561.954154pt;}
.x3f{left:562.893333pt;}
.x40{left:570.088000pt;}
.x48{left:579.460000pt;}
.x29{left:585.108000pt;}
.x49{left:593.796000pt;}
.x2a{left:598.634667pt;}
.x21{left:602.044000pt;}
.x67{left:612.926667pt;}
.x22{left:615.570667pt;}
.x62{left:619.061333pt;}
.x23{left:624.041333pt;}
.x24{left:637.569333pt;}
.x41{left:645.430667pt;}
.x63{left:652.502667pt;}
.x46{left:663.332000pt;}
.x68{left:673.724000pt;}
}




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