
    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_d992b01f2a72223293ac7f5b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_bd6b171740ce4925d0826799.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.353000;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_a4467b2490f86b602c34bc8c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.946000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_46767f1f850d2073b5193dc8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_bb3d4deaff0cfec38a529d09.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.969000;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_d662b22e32ecb48102cb17ad.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7ea991514ebecec391601891.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_424021e6a233d16836aeeeb7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.708000;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_1f8fc867fd18fc228e80cf0c.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_8599cfe5076fcf4ca5176b3c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.968000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_bbdf83166a64532ade717095.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.912000;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_78fae27cf40f7f68702fcf7f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.702000;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_3843e5dcc3ae315ec3bf8080.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.030273;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_8983568b90ea2fa62cfe4ecc.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.945000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb{transform:matrix(0.220631,0.000000,-0.049029,0.245145,0,0);-ms-transform:matrix(0.220631,0.000000,-0.049029,0.245145,0,0);-webkit-transform:matrix(0.220631,0.000000,-0.049029,0.245145,0,0);}
.me{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m1b{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);}
.m27{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);}
.m24{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);}
.m18{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);}
.m9{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);}
.m12{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.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);}
.m26{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);}
.m17{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);}
.m11{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);}
.m1c{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);}
.m3{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);}
.m21{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);}
.m22{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);}
.m1f{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);}
.m5{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.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);}
.m1a{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);}
.m28{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);}
.m13{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);}
.m1e{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);}
.md{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);}
.m19{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);}
.m7{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);}
.m16{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);}
.m2{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);}
.m23{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);}
.m10{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);}
.ma{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m25{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);}
.m8{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);}
.mc{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);}
.m6{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);}
.m1d{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);}
.vb{vertical-align:-20.172000px;}
.v3{vertical-align:-16.812000px;}
.v5{vertical-align:-11.298000px;}
.va{vertical-align:-9.036000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:11.508000px;}
.ve{vertical-align:14.226000px;}
.v7{vertical-align:16.680000px;}
.v9{vertical-align:19.050000px;}
.v4{vertical-align:20.172000px;}
.v2{vertical-align:24.210000px;}
.v15{vertical-align:25.824000px;}
.vd{vertical-align:28.452000px;}
.v6{vertical-align:31.206000px;}
.v1{vertical-align:34.866000px;}
.vf{vertical-align:39.216000px;}
.v8{vertical-align:41.772000px;}
.v14{vertical-align:44.868000px;}
.v11{vertical-align:46.260000px;}
.v10{vertical-align:47.490000px;}
.v12{vertical-align:66.432000px;}
.v13{vertical-align:74.712000px;}
.lsb{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.000126px;}
.ls0{letter-spacing:0.000169px;}
.ls29{letter-spacing:0.001032px;}
.ls27{letter-spacing:0.001526px;}
.ls25{letter-spacing:0.001799px;}
.ls1f{letter-spacing:0.001859px;}
.ls22{letter-spacing:0.002336px;}
.ls32{letter-spacing:0.003051px;}
.ls18{letter-spacing:0.003706px;}
.ls5{letter-spacing:0.003800px;}
.ls2a{letter-spacing:0.003809px;}
.lsf{letter-spacing:0.004053px;}
.ls17{letter-spacing:0.004194px;}
.ls2f{letter-spacing:0.005165px;}
.ls8{letter-spacing:1.925653px;}
.ls3{letter-spacing:1.930161px;}
.ls1d{letter-spacing:2.309479px;}
.ls19{letter-spacing:2.312161px;}
.ls1e{letter-spacing:2.315479px;}
.lse{letter-spacing:2.318161px;}
.ls7{letter-spacing:2.722929px;}
.ls1{letter-spacing:2.776881px;}
.lsa{letter-spacing:2.984018px;}
.ls6{letter-spacing:3.043113px;}
.ls1a{letter-spacing:3.982053px;}
.ls30{letter-spacing:7.044774px;}
.ls2e{letter-spacing:7.050774px;}
.ls23{letter-spacing:8.966378px;}
.ls12{letter-spacing:8.967997px;}
.ls9{letter-spacing:11.207580px;}
.ls16{letter-spacing:12.153188px;}
.ls20{letter-spacing:12.569479px;}
.ls4{letter-spacing:13.448378px;}
.ls14{letter-spacing:13.449959px;}
.ls13{letter-spacing:13.453328px;}
.ls1b{letter-spacing:13.453984px;}
.ls28{letter-spacing:13.711629px;}
.ls1c{letter-spacing:14.267479px;}
.ls24{letter-spacing:14.633479px;}
.ls34{letter-spacing:14.687908px;}
.ls33{letter-spacing:14.693790px;}
.ls26{letter-spacing:16.223479px;}
.ls2b{letter-spacing:17.252161px;}
.ls15{letter-spacing:17.256840px;}
.ls10{letter-spacing:17.258161px;}
.lsd{letter-spacing:18.399012px;}
.ls2d{letter-spacing:26.898990px;}
.ls2c{letter-spacing:29.216161px;}
.ls2{letter-spacing:32.279302px;}
.lsc{letter-spacing:33.421984px;}
.ls21{letter-spacing:43.888715px;}
.ls31{letter-spacing:48.609969px;}
.ls11{letter-spacing:57.358715px;}
.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;}
}
.wsf8{word-spacing:-77.469600px;}
.ws55{word-spacing:-72.197292px;}
.ws0{word-spacing:-69.722415px;}
.ws2{word-spacing:-64.557720px;}
.ws3f{word-spacing:-58.102200px;}
.wsb{word-spacing:-53.798280px;}
.wsa9{word-spacing:-50.591756px;}
.ws36{word-spacing:-49.609298px;}
.ws98{word-spacing:-49.091220px;}
.ws1{word-spacing:-48.420791px;}
.ws4{word-spacing:-48.419713px;}
.ws35{word-spacing:-46.625280px;}
.ws3{word-spacing:-45.190140px;}
.wsea{word-spacing:-44.652572px;}
.ws38{word-spacing:-44.598774px;}
.ws45{word-spacing:-44.329783px;}
.ws5a{word-spacing:-44.114590px;}
.wsab{word-spacing:-44.060791px;}
.ws46{word-spacing:-43.845598px;}
.ws47{word-spacing:-43.791800px;}
.wsd7{word-spacing:-43.684203px;}
.wsd8{word-spacing:-43.630405px;}
.ws31{word-spacing:-43.469010px;}
.ws76{word-spacing:-43.361414px;}
.ws1c{word-spacing:-43.307615px;}
.ws74{word-spacing:-43.253817px;}
.ws9f{word-spacing:-43.200019px;}
.ws37{word-spacing:-43.146221px;}
.wsf2{word-spacing:-43.038624px;}
.ws58{word-spacing:-43.038600px;}
.wsf7{word-spacing:-42.984826px;}
.ws72{word-spacing:-42.823431px;}
.ws6b{word-spacing:-42.608238px;}
.ws3a{word-spacing:-42.393045px;}
.ws104{word-spacing:-42.339246px;}
.ws48{word-spacing:-42.231650px;}
.ws7b{word-spacing:-42.070255px;}
.wsaa{word-spacing:-42.016457px;}
.wsac{word-spacing:-41.962658px;}
.ws8e{word-spacing:-41.908860px;}
.ws59{word-spacing:-41.855062px;}
.ws75{word-spacing:-41.693667px;}
.ws7c{word-spacing:-41.674714px;}
.ws40{word-spacing:-41.639869px;}
.ws61{word-spacing:-41.586070px;}
.wsaf{word-spacing:-41.532272px;}
.ws41{word-spacing:-41.478474px;}
.ws7a{word-spacing:-41.317079px;}
.wsf9{word-spacing:-41.263281px;}
.ws12{word-spacing:-41.101886px;}
.ws8d{word-spacing:-41.098213px;}
.ws77{word-spacing:-40.994289px;}
.ws81{word-spacing:-40.886693px;}
.ws8c{word-spacing:-40.779096px;}
.wsae{word-spacing:-40.725298px;}
.ws1b{word-spacing:-40.671500px;}
.wsd0{word-spacing:-40.629603px;}
.wsde{word-spacing:-40.623698px;}
.ws3b{word-spacing:-40.617701px;}
.ws69{word-spacing:-40.586460px;}
.ws14{word-spacing:-40.563903px;}
.wsca{word-spacing:-40.558108px;}
.wsc8{word-spacing:-40.554061px;}
.ws8f{word-spacing:-40.540497px;}
.wsd{word-spacing:-40.510105px;}
.wse0{word-spacing:-40.472362px;}
.wse{word-spacing:-40.456307px;}
.wsdf{word-spacing:-40.452255px;}
.ws4e{word-spacing:-40.402508px;}
.wsda{word-spacing:-40.375013px;}
.ws86{word-spacing:-40.350385px;}
.ws5e{word-spacing:-40.350080px;}
.ws5d{word-spacing:-40.349794px;}
.ws5f{word-spacing:-40.349048px;}
.wsbb{word-spacing:-40.348870px;}
.ws16{word-spacing:-40.348710px;}
.wse3{word-spacing:-40.348173px;}
.wsb2{word-spacing:-40.347223px;}
.ws8b{word-spacing:-40.332662px;}
.wsba{word-spacing:-40.315783px;}
.ws23{word-spacing:-40.294912px;}
.ws15{word-spacing:-40.241113px;}
.ws43{word-spacing:-40.187315px;}
.wsd6{word-spacing:-40.161869px;}
.ws42{word-spacing:-40.133517px;}
.wsb0{word-spacing:-40.098322px;}
.wse8{word-spacing:-40.090557px;}
.ws11{word-spacing:-40.079719px;}
.ws8a{word-spacing:-40.076036px;}
.wsef{word-spacing:-40.040628px;}
.ws30{word-spacing:-40.025920px;}
.wsfe{word-spacing:-39.972122px;}
.ws3e{word-spacing:-39.918324px;}
.wsfd{word-spacing:-39.864525px;}
.ws66{word-spacing:-39.810727px;}
.ws19{word-spacing:-39.756929px;}
.wsf6{word-spacing:-39.711750px;}
.ws9b{word-spacing:-39.703131px;}
.ws80{word-spacing:-39.649332px;}
.ws78{word-spacing:-39.595534px;}
.ws2f{word-spacing:-39.541736px;}
.wsb1{word-spacing:-39.487938px;}
.ws3d{word-spacing:-39.434139px;}
.ws68{word-spacing:-39.418183px;}
.wsfb{word-spacing:-39.326543px;}
.ws70{word-spacing:-39.272744px;}
.wse5{word-spacing:-39.229504px;}
.ws65{word-spacing:-39.218946px;}
.ws54{word-spacing:-39.111350px;}
.ws32{word-spacing:-39.003753px;}
.ws7d{word-spacing:-38.949955px;}
.ws71{word-spacing:-38.896156px;}
.ws56{word-spacing:-38.842358px;}
.wsc{word-spacing:-38.734800px;}
.ws50{word-spacing:-38.734762px;}
.wsf{word-spacing:-38.627165px;}
.ws60{word-spacing:-38.573367px;}
.ws34{word-spacing:-38.519568px;}
.wsa8{word-spacing:-38.465770px;}
.ws95{word-spacing:-38.389334px;}
.wse4{word-spacing:-38.358174px;}
.ws96{word-spacing:-38.340243px;}
.wsc9{word-spacing:-38.277559px;}
.ws99{word-spacing:-38.089182px;}
.wsd9{word-spacing:-38.048906px;}
.wsf1{word-spacing:-37.982402px;}
.ws18{word-spacing:-37.981586px;}
.wsf0{word-spacing:-37.927787px;}
.wsfa{word-spacing:-37.873989px;}
.wsd5{word-spacing:-37.779434px;}
.wse7{word-spacing:-37.734432px;}
.wse9{word-spacing:-37.710962px;}
.wsd3{word-spacing:-37.695252px;}
.wsd1{word-spacing:-37.686181px;}
.wsd4{word-spacing:-37.658796px;}
.ws6a{word-spacing:-37.604998px;}
.ws9e{word-spacing:-37.551199px;}
.wsf5{word-spacing:-37.443840px;}
.ws73{word-spacing:-37.389805px;}
.wsdc{word-spacing:-37.370574px;}
.wscf{word-spacing:-37.336006px;}
.ws87{word-spacing:-37.300140px;}
.wsa2{word-spacing:-37.282208px;}
.wse2{word-spacing:-37.178870px;}
.ws51{word-spacing:-37.174611px;}
.wsc7{word-spacing:-37.064091px;}
.ws6d{word-spacing:-37.013217px;}
.ws22{word-spacing:-36.905620px;}
.ws1e{word-spacing:-36.867506px;}
.ws5b{word-spacing:-36.851822px;}
.ws97{word-spacing:-36.818415px;}
.ws6{word-spacing:-36.807417px;}
.ws5c{word-spacing:-36.798024px;}
.wseb{word-spacing:-36.769324px;}
.ws44{word-spacing:-36.744225px;}
.wsec{word-spacing:-36.720233px;}
.wsce{word-spacing:-36.690427px;}
.wscb{word-spacing:-36.641268px;}
.ws79{word-spacing:-36.636629px;}
.wscd{word-spacing:-36.636429px;}
.ws6f{word-spacing:-36.421436px;}
.ws6c{word-spacing:-36.367637px;}
.ws49{word-spacing:-36.313839px;}
.ws3c{word-spacing:-36.206242px;}
.wsa1{word-spacing:-36.152444px;}
.wsb3{word-spacing:-36.044848px;}
.ws6e{word-spacing:-35.883453px;}
.wsf3{word-spacing:-35.668260px;}
.wse1{word-spacing:-35.560663px;}
.ws63{word-spacing:-35.506865px;}
.wscc{word-spacing:-35.482132px;}
.ws4a{word-spacing:-35.291672px;}
.ws4b{word-spacing:-35.130277px;}
.ws67{word-spacing:-34.915084px;}
.wse6{word-spacing:-34.855255px;}
.ws13{word-spacing:-34.807487px;}
.wsa0{word-spacing:-34.538496px;}
.ws84{word-spacing:-34.377101px;}
.ws85{word-spacing:-34.323303px;}
.wsdb{word-spacing:-34.263866px;}
.wsff{word-spacing:-34.161908px;}
.wsc2{word-spacing:-34.069742px;}
.ws9{word-spacing:-33.982974px;}
.ws7{word-spacing:-33.938142px;}
.ws8{word-spacing:-33.758812px;}
.ws5{word-spacing:-33.669147px;}
.wsa{word-spacing:-33.624315px;}
.ws2b{word-spacing:-33.623699px;}
.ws27{word-spacing:-33.623495px;}
.ws29{word-spacing:-33.622117px;}
.ws28{word-spacing:-33.606950px;}
.ws2c{word-spacing:-33.600950px;}
.ws7f{word-spacing:-33.570127px;}
.ws53{word-spacing:-33.516328px;}
.ws24{word-spacing:-33.489818px;}
.ws26{word-spacing:-33.444985px;}
.ws7e{word-spacing:-33.139740px;}
.ws9a{word-spacing:-32.978346px;}
.wsd2{word-spacing:-32.851148px;}
.ws62{word-spacing:-32.655556px;}
.wsfc{word-spacing:-32.386565px;}
.wsed{word-spacing:-32.154749px;}
.wsee{word-spacing:-32.105658px;}
.ws9d{word-spacing:-32.009977px;}
.ws82{word-spacing:-31.956178px;}
.ws83{word-spacing:-30.503625px;}
.ws10{word-spacing:-30.288432px;}
.ws25{word-spacing:-30.217051px;}
.ws2a{word-spacing:-29.903224px;}
.ws4f{word-spacing:-29.642852px;}
.wsa6{word-spacing:-29.481457px;}
.ws4d{word-spacing:-29.051071px;}
.wsad{word-spacing:-28.997273px;}
.ws9c{word-spacing:-28.782080px;}
.ws103{word-spacing:-28.620685px;}
.wsb4{word-spacing:-28.459290px;}
.wsa3{word-spacing:-27.490921px;}
.wsb6{word-spacing:-26.899924px;}
.wsdd{word-spacing:-26.522552px;}
.ws88{word-spacing:-25.781333px;}
.ws90{word-spacing:-25.781264px;}
.wsbf{word-spacing:-25.781054px;}
.wsbd{word-spacing:-25.780835px;}
.wsc0{word-spacing:-25.779851px;}
.ws33{word-spacing:-24.370621px;}
.wsa5{word-spacing:-24.155428px;}
.ws52{word-spacing:-22.702874px;}
.wsf4{word-spacing:-21.411715px;}
.ws102{word-spacing:-20.335750px;}
.ws2e{word-spacing:-20.174355px;}
.ws1a{word-spacing:-20.160624px;}
.ws39{word-spacing:-19.769119px;}
.ws100{word-spacing:-19.205986px;}
.ws2d{word-spacing:-19.179087px;}
.ws89{word-spacing:-18.427742px;}
.ws1f{word-spacing:-18.039402px;}
.wsb5{word-spacing:-17.933946px;}
.wsc6{word-spacing:-17.931022px;}
.wsc3{word-spacing:-14.288729px;}
.ws1d{word-spacing:-14.074398px;}
.ws64{word-spacing:-13.801083px;}
.ws21{word-spacing:-12.593545px;}
.wsa7{word-spacing:-10.436866px;}
.ws91{word-spacing:-8.668934px;}
.ws92{word-spacing:-7.767173px;}
.ws93{word-spacing:-7.761161px;}
.ws94{word-spacing:-6.685059px;}
.ws17{word-spacing:-1.057503px;}
.ws4c{word-spacing:0.000000px;}
.ws101{word-spacing:1.344957px;}
.wsa4{word-spacing:3.281695px;}
.ws57{word-spacing:13.018258px;}
.wsb7{word-spacing:35.862054px;}
.wsc5{word-spacing:35.864978px;}
.wsb8{word-spacing:89.664054px;}
.wsc4{word-spacing:89.666978px;}
.wsb9{word-spacing:143.460054px;}
.wsc1{word-spacing:143.462978px;}
.wsbc{word-spacing:197.256054px;}
.wsbe{word-spacing:197.258978px;}
.ws20{word-spacing:1114.056575px;}
._14{margin-left:-18.399012px;}
._23{margin-left:-6.817325px;}
._0{margin-left:-5.577793px;}
._a{margin-left:-3.774877px;}
._2{margin-left:-2.645113px;}
._1{margin-left:-1.120811px;}
._5{width:1.721545px;}
._8{width:3.043113px;}
._17{width:5.216430px;}
._16{width:6.929214px;}
._1e{width:7.994424px;}
._15{width:9.091909px;}
._d{width:10.974849px;}
._b{width:12.131512px;}
._3{width:13.987715px;}
._4{width:15.512017px;}
._7{width:17.430686px;}
._1c{width:18.452810px;}
._e{width:19.474977px;}
._13{width:21.304119px;}
._c{width:22.433883px;}
._19{width:23.561412px;}
._1d{width:25.016200px;}
._1a{width:27.275728px;}
._10{width:28.728282px;}
._18{width:30.512622px;}
._1b{width:31.618858px;}
._25{width:32.969392px;}
._6{width:34.386098px;}
._12{width:36.313839px;}
._f{width:38.734800px;}
._28{width:39.900379px;}
._2b{width:41.218436px;}
._26{width:44.006993px;}
._11{width:50.131044px;}
._27{width:52.560920px;}
._24{width:58.855318px;}
._29{width:65.517352px;}
._2a{width:97.222494px;}
._21{width:368.285543px;}
._22{width:403.709727px;}
._9{width:405.953778px;}
._1f{width:760.609639px;}
._20{width:865.253792px;}
.fc3{color:transparent;}
.fc2{color:rgb(47,79,79);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:21.967620px;}
.fsc{font-size:26.899140px;}
.fs4{font-size:31.382520px;}
.fs10{font-size:32.278920px;}
.fs14{font-size:32.931324px;}
.fsf{font-size:37.300140px;}
.fs13{font-size:38.232320px;}
.fs12{font-size:38.261934px;}
.fsa{font-size:42.545760px;}
.fs11{font-size:42.704109px;}
.fse{font-size:43.038600px;}
.fs5{font-size:44.832420px;}
.fs3{font-size:45.190140px;}
.fsd{font-size:46.625280px;}
.fs8{font-size:47.548643px;}
.fs9{font-size:49.091220px;}
.fs6{font-size:53.798280px;}
.fs2{font-size:64.557720px;}
.fs1{font-size:65.073900px;}
.fs7{font-size:77.469600px;}
.fs0{font-size:92.963220px;}
.y0{bottom:0.000000px;}
.yf5{bottom:20.589481px;}
.yf4{bottom:42.171048px;}
.yf3{bottom:53.735510px;}
.yf0{bottom:76.577174px;}
.yf2{bottom:78.176357px;}
.yee{bottom:86.332190px;}
.yec{bottom:87.155473px;}
.yef{bottom:88.141636px;}
.yf1{bottom:88.183097px;}
.ye8{bottom:106.950000px;}
.ye5{bottom:111.697500px;}
.y3a{bottom:112.312500px;}
.y66{bottom:115.266000px;}
.ye9{bottom:117.555000px;}
.y1e0{bottom:117.931500px;}
.y18b{bottom:118.395000px;}
.y39{bottom:120.381000px;}
.ye4{bottom:121.111500px;}
.ye7{bottom:121.239000px;}
.yed{bottom:122.432266px;}
.y12d{bottom:122.898000px;}
.y1a1{bottom:123.150000px;}
.y177{bottom:124.165500px;}
.ya2{bottom:126.163500px;}
.y38{bottom:130.281000px;}
.y65{bottom:131.404500px;}
.y1df{bottom:134.070000px;}
.y18a{bottom:134.533500px;}
.ye6{bottom:137.070000px;}
.y12c{bottom:139.038000px;}
.y1a0{bottom:139.288500px;}
.y176{bottom:140.305500px;}
.ya1{bottom:142.302000px;}
.yeb{bottom:142.839618px;}
.y37{bottom:143.943000px;}
.y64{bottom:147.544500px;}
.y1de{bottom:150.210000px;}
.y189{bottom:150.673500px;}
.y12b{bottom:155.176500px;}
.y19f{bottom:155.428500px;}
.y175{bottom:156.444000px;}
.ye3{bottom:156.933000px;}
.ya0{bottom:158.442000px;}
.y36{bottom:161.988000px;}
.y63{bottom:163.683000px;}
.y1dd{bottom:166.350000px;}
.y188{bottom:166.812000px;}
.y35{bottom:170.778000px;}
.y12a{bottom:171.316500px;}
.y19e{bottom:171.567000px;}
.y174{bottom:172.584000px;}
.ye2{bottom:173.073000px;}
.y9f{bottom:174.582000px;}
.y62{bottom:179.823000px;}
.y1dc{bottom:182.488500px;}
.y187{bottom:182.952000px;}
.y34{bottom:184.227000px;}
.y129{bottom:187.455000px;}
.y19d{bottom:187.707000px;}
.y173{bottom:188.724000px;}
.y9e{bottom:190.720500px;}
.y33{bottom:191.373000px;}
.ye1{bottom:192.712500px;}
.y61{bottom:195.963000px;}
.yde{bottom:197.458500px;}
.y32{bottom:198.060000px;}
.y1db{bottom:198.628500px;}
.y186{bottom:199.092000px;}
.y128{bottom:203.595000px;}
.y19c{bottom:203.847000px;}
.y172{bottom:204.862500px;}
.y9d{bottom:206.860500px;}
.ydd{bottom:206.874000px;}
.ye0{bottom:207.001500px;}
.y31{bottom:211.509000px;}
.y60{bottom:212.101500px;}
.y1da{bottom:214.767000px;}
.y185{bottom:215.230500px;}
.y127{bottom:219.735000px;}
.y19b{bottom:219.985500px;}
.y171{bottom:221.002500px;}
.ydf{bottom:222.831000px;}
.y9c{bottom:223.000500px;}
.y30{bottom:224.959500px;}
.y5f{bottom:228.241500px;}
.y1d9{bottom:230.907000px;}
.y184{bottom:231.370500px;}
.y126{bottom:235.873500px;}
.y19a{bottom:236.125500px;}
.y170{bottom:237.141000px;}
.y9b{bottom:239.139000px;}
.ydc{bottom:242.641500px;}
.y5e{bottom:244.381500px;}
.y1d8{bottom:247.047000px;}
.y183{bottom:247.510500px;}
.y125{bottom:252.013500px;}
.y199{bottom:252.265500px;}
.y16f{bottom:253.281000px;}
.y9a{bottom:255.279000px;}
.yda{bottom:258.781500px;}
.y5d{bottom:260.520000px;}
.y1d7{bottom:263.185500px;}
.y182{bottom:263.649000px;}
.ydb{bottom:263.824500px;}
.y2f{bottom:263.902500px;}
.y124{bottom:268.153500px;}
.y198{bottom:268.404000px;}
.y16e{bottom:269.421000px;}
.yd9{bottom:274.920000px;}
.y5c{bottom:276.660000px;}
.yd8{bottom:277.798500px;}
.y1d6{bottom:279.325500px;}
.y181{bottom:279.789000px;}
.y2e{bottom:280.042500px;}
.y123{bottom:284.292000px;}
.y197{bottom:284.544000px;}
.y99{bottom:284.689500px;}
.y16d{bottom:285.559500px;}
.yd6{bottom:291.060000px;}
.y5b{bottom:292.798500px;}
.y1d5{bottom:295.465500px;}
.y180{bottom:295.927500px;}
.yd7{bottom:296.103000px;}
.y2d{bottom:296.181000px;}
.y122{bottom:300.432000px;}
.y196{bottom:300.682500px;}
.y16c{bottom:301.699500px;}
.yd5{bottom:307.198500px;}
.y5a{bottom:308.938500px;}
.y1d4{bottom:311.604000px;}
.y2c{bottom:312.321000px;}
.y121{bottom:316.570500px;}
.y195{bottom:316.822500px;}
.y16b{bottom:317.839500px;}
.yd4{bottom:323.338500px;}
.y59{bottom:325.078500px;}
.y1d3{bottom:327.744000px;}
.y98{bottom:328.123500px;}
.y120{bottom:332.710500px;}
.y194{bottom:332.962500px;}
.y16a{bottom:333.978000px;}
.y2b{bottom:338.979000px;}
.yd3{bottom:339.478500px;}
.y58{bottom:341.217000px;}
.y1d2{bottom:343.882500px;}
.y97{bottom:344.263500px;}
.y193{bottom:349.101000px;}
.y169{bottom:350.118000px;}
.y17f{bottom:351.141000px;}
.y2a{bottom:353.706000px;}
.yd2{bottom:355.617000px;}
.y57{bottom:357.357000px;}
.y1d1{bottom:360.022500px;}
.y96{bottom:360.403500px;}
.y11f{bottom:362.121000px;}
.y192{bottom:365.241000px;}
.y17e{bottom:365.868000px;}
.y168{bottom:366.256500px;}
.y29{bottom:368.433000px;}
.yd1{bottom:371.757000px;}
.y56{bottom:373.497000px;}
.y1d0{bottom:376.162500px;}
.y95{bottom:376.542000px;}
.y167{bottom:382.396500px;}
.y28{bottom:383.161500px;}
.yd0{bottom:387.897000px;}
.y55{bottom:389.635500px;}
.y1cf{bottom:392.301000px;}
.y94{bottom:392.682000px;}
.y191{bottom:394.651500px;}
.y27{bottom:397.888500px;}
.y166{bottom:398.536500px;}
.ycf{bottom:404.035500px;}
.y11e{bottom:405.556500px;}
.y1ce{bottom:408.441000px;}
.y93{bottom:408.822000px;}
.y26{bottom:412.615500px;}
.y165{bottom:414.675000px;}
.y54{bottom:419.046000px;}
.yce{bottom:420.175500px;}
.y11d{bottom:421.695000px;}
.y1cd{bottom:424.581000px;}
.y92{bottom:424.960500px;}
.y25{bottom:427.342500px;}
.y164{bottom:430.815000px;}
.y11c{bottom:437.835000px;}
.y190{bottom:438.085500px;}
.y1cc{bottom:440.719500px;}
.y91{bottom:441.100500px;}
.ycc{bottom:441.696000px;}
.y24{bottom:442.069500px;}
.yca{bottom:442.233000px;}
.yc9{bottom:446.854500px;}
.y163{bottom:446.955000px;}
.yc8{bottom:452.407500px;}
.y11b{bottom:453.975000px;}
.y18f{bottom:454.225500px;}
.y1cb{bottom:456.859500px;}
.ycd{bottom:456.994500px;}
.yc7{bottom:457.170000px;}
.y90{bottom:457.239000px;}
.ycb{bottom:457.297500px;}
.y23{bottom:457.395000px;}
.y53{bottom:462.481500px;}
.y162{bottom:463.093500px;}
.y11a{bottom:470.113500px;}
.y18e{bottom:470.365500px;}
.y1ca{bottom:472.998000px;}
.y8f{bottom:473.379000px;}
.y52{bottom:478.620000px;}
.y161{bottom:479.233500px;}
.yc6{bottom:485.995500px;}
.y119{bottom:486.253500px;}
.y18d{bottom:486.504000px;}
.y1c9{bottom:489.138000px;}
.y8e{bottom:489.519000px;}
.y51{bottom:494.760000px;}
.y22{bottom:495.283500px;}
.y160{bottom:495.372000px;}
.yc5{bottom:502.135500px;}
.y118{bottom:502.392000px;}
.y18c{bottom:502.644000px;}
.y1c8{bottom:505.278000px;}
.y8d{bottom:505.657500px;}
.y21{bottom:510.010500px;}
.y50{bottom:510.900000px;}
.y15f{bottom:511.512000px;}
.yc4{bottom:518.274000px;}
.y117{bottom:518.532000px;}
.y1c7{bottom:521.416500px;}
.y8c{bottom:521.797500px;}
.y20{bottom:524.739000px;}
.y4f{bottom:527.038500px;}
.y15e{bottom:527.652000px;}
.yc3{bottom:534.414000px;}
.y116{bottom:534.672000px;}
.y1c6{bottom:537.556500px;}
.y8b{bottom:537.937500px;}
.y1f{bottom:539.466000px;}
.y4e{bottom:543.178500px;}
.y15d{bottom:543.790500px;}
.yc2{bottom:550.554000px;}
.y115{bottom:550.810500px;}
.y1c5{bottom:553.696500px;}
.y8a{bottom:554.076000px;}
.y17d{bottom:557.857500px;}
.y4d{bottom:559.318500px;}
.y15c{bottom:559.930500px;}
.y1e{bottom:564.952500px;}
.yc1{bottom:566.692500px;}
.y114{bottom:566.950500px;}
.y1c4{bottom:569.835000px;}
.y89{bottom:570.216000px;}
.y17c{bottom:572.584500px;}
.y4c{bottom:575.457000px;}
.y15b{bottom:576.070500px;}
.yc0{bottom:582.832500px;}
.y113{bottom:583.090500px;}
.y1c3{bottom:585.975000px;}
.y88{bottom:586.354500px;}
.y17b{bottom:587.311500px;}
.y4b{bottom:591.597000px;}
.y1d{bottom:591.853500px;}
.y15a{bottom:592.209000px;}
.ybf{bottom:598.971000px;}
.y112{bottom:599.229000px;}
.y1c2{bottom:602.113500px;}
.y87{bottom:602.494500px;}
.y4a{bottom:607.735500px;}
.y1c{bottom:607.992000px;}
.y159{bottom:608.349000px;}
.y17a{bottom:610.756500px;}
.ybe{bottom:615.111000px;}
.y111{bottom:615.369000px;}
.y1c1{bottom:618.253500px;}
.y86{bottom:618.634500px;}
.y49{bottom:623.875500px;}
.y1b{bottom:624.132000px;}
.y158{bottom:624.487500px;}
.ybd{bottom:631.251000px;}
.y110{bottom:631.507500px;}
.y1c0{bottom:634.393500px;}
.y85{bottom:634.773000px;}
.y48{bottom:640.015500px;}
.y1a{bottom:640.270500px;}
.y157{bottom:640.627500px;}
.ybc{bottom:647.389500px;}
.y10f{bottom:647.647500px;}
.y1bf{bottom:650.532000px;}
.y84{bottom:650.913000px;}
.y47{bottom:656.154000px;}
.y156{bottom:656.767500px;}
.ybb{bottom:663.529500px;}
.y10e{bottom:663.787500px;}
.y1be{bottom:666.672000px;}
.y83{bottom:667.051500px;}
.y46{bottom:672.294000px;}
.y155{bottom:672.906000px;}
.y19{bottom:675.162000px;}
.y10d{bottom:679.926000px;}
.y1bd{bottom:682.812000px;}
.y82{bottom:683.191500px;}
.yba{bottom:687.876000px;}
.y45{bottom:688.434000px;}
.y154{bottom:689.046000px;}
.y18{bottom:691.302000px;}
.y1bc{bottom:698.950500px;}
.y81{bottom:699.331500px;}
.y44{bottom:704.572500px;}
.y17{bottom:707.442000px;}
.yb9{bottom:712.221000px;}
.y10c{bottom:714.817500px;}
.y1bb{bottom:715.090500px;}
.y80{bottom:715.470000px;}
.y43{bottom:720.712500px;}
.y16{bottom:723.580500px;}
.yb8{bottom:728.361000px;}
.y10b{bottom:730.957500px;}
.y1ba{bottom:731.229000px;}
.y7f{bottom:731.610000px;}
.y42{bottom:736.851000px;}
.y153{bottom:738.795000px;}
.y15{bottom:739.720500px;}
.yb7{bottom:744.501000px;}
.y10a{bottom:747.096000px;}
.y1b9{bottom:747.369000px;}
.y7e{bottom:747.750000px;}
.y41{bottom:752.991000px;}
.y152{bottom:754.935000px;}
.y14{bottom:755.860500px;}
.y179{bottom:760.371000px;}
.yb6{bottom:760.639500px;}
.y108{bottom:763.236000px;}
.y1b8{bottom:763.509000px;}
.y7d{bottom:763.888500px;}
.y109{bottom:768.279000px;}
.y40{bottom:769.131000px;}
.y151{bottom:771.073500px;}
.y13{bottom:771.999000px;}
.yb5{bottom:776.779500px;}
.y107{bottom:779.376000px;}
.y1b7{bottom:779.647500px;}
.y7c{bottom:780.028500px;}
.y150{bottom:782.821500px;}
.y14f{bottom:784.516500px;}
.y3f{bottom:785.269500px;}
.y12{bottom:788.139000px;}
.y14e{bottom:789.277500px;}
.y106{bottom:791.959500px;}
.yb4{bottom:792.918000px;}
.y104{bottom:795.514500px;}
.y1b6{bottom:795.787500px;}
.y7b{bottom:796.167000px;}
.y3e{bottom:801.409500px;}
.y105{bottom:802.627500px;}
.y14c{bottom:803.877000px;}
.y11{bottom:804.277500px;}
.y149{bottom:806.028000px;}
.yb3{bottom:809.058000px;}
.y14d{bottom:810.681000px;}
.y1b5{bottom:811.927500px;}
.y7a{bottom:812.307000px;}
.y103{bottom:815.176500px;}
.y148{bottom:815.443500px;}
.y14b{bottom:815.571000px;}
.y3d{bottom:817.548000px;}
.y10{bottom:820.417500px;}
.yb2{bottom:825.198000px;}
.y102{bottom:827.760000px;}
.y1b4{bottom:828.066000px;}
.y79{bottom:828.447000px;}
.y14a{bottom:828.805500px;}
.yff{bottom:831.316500px;}
.y3c{bottom:833.688000px;}
.y100{bottom:836.359500px;}
.yf{bottom:836.557500px;}
.y147{bottom:837.369000px;}
.y101{bottom:838.428000px;}
.y144{bottom:839.518500px;}
.yb1{bottom:841.336500px;}
.y1b3{bottom:844.206000px;}
.y143{bottom:848.934000px;}
.y146{bottom:849.061500px;}
.y3b{bottom:849.828000px;}
.y77{bottom:849.843000px;}
.yfe{bottom:850.978500px;}
.y76{bottom:855.013500px;}
.yb0{bottom:857.476500px;}
.y1b2{bottom:860.344500px;}
.y145{bottom:862.296000px;}
.y78{bottom:865.153500px;}
.y75{bottom:865.327500px;}
.ye{bottom:865.966500px;}
.yfd{bottom:867.118500px;}
.y142{bottom:870.886500px;}
.yaf{bottom:873.616500px;}
.y1b1{bottom:876.484500px;}
.yfc{bottom:883.257000px;}
.y140{bottom:884.329500px;}
.y141{bottom:885.534000px;}
.y13f{bottom:889.090500px;}
.yae{bottom:889.755000px;}
.y1b0{bottom:892.624500px;}
.y74{bottom:897.607500px;}
.yfa{bottom:899.397000px;}
.yfb{bottom:904.440000px;}
.yad{bottom:905.895000px;}
.y13e{bottom:907.020000px;}
.y1af{bottom:908.763000px;}
.y13d{bottom:910.576500px;}
.yd{bottom:911.971500px;}
.y73{bottom:913.746000px;}
.yf8{bottom:915.537000px;}
.yf9{bottom:920.580000px;}
.yac{bottom:922.033500px;}
.y1ae{bottom:924.903000px;}
.yc{bottom:925.422000px;}
.y13c{bottom:929.539500px;}
.y72{bottom:929.886000px;}
.yab{bottom:938.173500px;}
.y1ad{bottom:941.043000px;}
.y71{bottom:946.026000px;}
.yb{bottom:948.259500px;}
.y13b{bottom:948.955500px;}
.yaa{bottom:954.313500px;}
.y1ac{bottom:957.181500px;}
.ya{bottom:961.708500px;}
.y70{bottom:962.164500px;}
.y178{bottom:964.524000px;}
.y13a{bottom:965.095500px;}
.ya9{bottom:970.452000px;}
.yf7{bottom:970.749000px;}
.y1ab{bottom:973.321500px;}
.y9{bottom:975.159000px;}
.y6f{bottom:978.304500px;}
.y139{bottom:981.235500px;}
.yf6{bottom:985.476000px;}
.ya8{bottom:986.592000px;}
.y8{bottom:988.608000px;}
.y1aa{bottom:989.460000px;}
.y6e{bottom:994.443000px;}
.y138{bottom:997.374000px;}
.y7{bottom:1002.058500px;}
.ya7{bottom:1002.732000px;}
.yea{bottom:1004.503500px;}
.y1a9{bottom:1005.600000px;}
.y6d{bottom:1010.583000px;}
.y137{bottom:1013.514000px;}
.y6{bottom:1015.507500px;}
.ya6{bottom:1018.870500px;}
.y1a8{bottom:1021.740000px;}
.y5{bottom:1028.958000px;}
.y136{bottom:1029.654000px;}
.ya5{bottom:1035.010500px;}
.y1a7{bottom:1037.878500px;}
.y6c{bottom:1039.993500px;}
.y4{bottom:1042.407000px;}
.y135{bottom:1045.792500px;}
.ya4{bottom:1051.149000px;}
.y1a6{bottom:1054.018500px;}
.y134{bottom:1061.932500px;}
.ya3{bottom:1067.289000px;}
.y1a5{bottom:1070.158500px;}
.y133{bottom:1078.071000px;}
.y3{bottom:1083.372000px;}
.y6b{bottom:1083.429000px;}
.y1a4{bottom:1086.297000px;}
.y132{bottom:1091.514000px;}
.y131{bottom:1096.275000px;}
.y6a{bottom:1099.567500px;}
.y1a3{bottom:1102.437000px;}
.y2{bottom:1110.552000px;}
.y130{bottom:1112.415000px;}
.y69{bottom:1115.707500px;}
.y1a2{bottom:1118.575500px;}
.y12f{bottom:1128.555000px;}
.y68{bottom:1131.847500px;}
.y1{bottom:1147.851000px;}
.y67{bottom:1147.986000px;}
.y12e{bottom:1150.852500px;}
.hd{height:15.333399px;}
.h11{height:19.044591px;}
.he{height:21.904999px;}
.h4{height:22.218824px;}
.h1d{height:25.289495px;}
.h29{height:27.834044px;}
.hb{height:30.930768px;}
.h18{height:31.461217px;}
.h1b{height:31.611940px;}
.h6{height:31.741353px;}
.h28{height:32.314524px;}
.h27{height:32.339555px;}
.h13{height:33.896579px;}
.h9{height:34.567863px;}
.hc{height:34.756584px;}
.ha{height:35.345678px;}
.h26{height:36.094147px;}
.h5{height:37.551199px;}
.h21{height:37.658796px;}
.h8{height:38.089182px;}
.h10{height:38.511049px;}
.h12{height:38.734762px;}
.hf{height:39.228367px;}
.h20{height:41.207006px;}
.h15{height:49.871006px;}
.h19{height:50.567006px;}
.h1f{height:50.573006px;}
.h1a{height:50.649329px;}
.h1c{height:51.345329px;}
.h2a{height:51.435329px;}
.h14{height:51.633217px;}
.h2c{height:51.639217px;}
.h7{height:54.073781px;}
.h3{height:57.243992px;}
.h2d{height:59.907217px;}
.h23{height:59.913217px;}
.h2b{height:61.385006px;}
.h24{height:64.097006px;}
.h2e{height:75.611006px;}
.h33{height:75.695006px;}
.h32{height:76.329217px;}
.h2f{height:78.951217px;}
.h22{height:81.071006px;}
.h16{height:81.077006px;}
.h17{height:91.643006px;}
.h2{height:95.189505px;}
.h30{height:97.893217px;}
.h1e{height:100.121006px;}
.h31{height:106.173217px;}
.h25{height:159.918300px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:284.299196px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x91{left:13.985443px;}
.x8e{left:18.871836px;}
.x8d{left:21.418683px;}
.x8c{left:78.004589px;}
.xb6{left:106.251000px;}
.x1{left:108.000000px;}
.x13{left:111.366000px;}
.x9{left:112.560000px;}
.xba{left:113.689500px;}
.xb1{left:115.992000px;}
.x97{left:117.409500px;}
.xa{left:118.531500px;}
.x12{left:121.449000px;}
.xb7{left:123.049500px;}
.x89{left:126.111004px;}
.x8a{left:129.983959px;}
.x46{left:132.364500px;}
.xbe{left:137.797500px;}
.x9b{left:138.994500px;}
.xb{left:141.702000px;}
.x48{left:145.285500px;}
.xbf{left:152.845500px;}
.x92{left:154.210500px;}
.x3e{left:157.344000px;}
.x93{left:160.083000px;}
.x14{left:161.160000px;}
.x40{left:167.233500px;}
.x3b{left:172.290000px;}
.xd1{left:174.136500px;}
.x2{left:175.224000px;}
.x94{left:178.590000px;}
.x8f{left:181.960368px;}
.xc1{left:183.789000px;}
.x95{left:186.286500px;}
.xc2{left:190.042500px;}
.x90{left:191.362972px;}
.xaa{left:197.077500px;}
.x3c{left:199.984500px;}
.xa6{left:203.160000px;}
.x49{left:205.767000px;}
.x96{left:207.817500px;}
.xa7{left:210.138000px;}
.x8b{left:214.876885px;}
.xab{left:223.195500px;}
.x3d{left:227.895000px;}
.xac{left:229.066500px;}
.xc{left:232.005000px;}
.x3f{left:233.302500px;}
.xd{left:242.616000px;}
.xa3{left:243.897000px;}
.x38{left:244.899000px;}
.xad{left:246.511500px;}
.x41{left:251.958000px;}
.xa4{left:253.552500px;}
.x42{left:257.647500px;}
.x4a{left:259.480500px;}
.x39{left:265.107000px;}
.x4d{left:266.823000px;}
.xb2{left:268.849500px;}
.xae{left:271.296000px;}
.x98{left:279.136500px;}
.x99{left:295.801500px;}
.x3a{left:296.934000px;}
.xe{left:299.691000px;}
.xc0{left:301.720500px;}
.x9c{left:304.689000px;}
.xb8{left:308.911500px;}
.x9d{left:313.746000px;}
.xb4{left:316.285500px;}
.x4e{left:323.233500px;}
.x9e{left:331.063500px;}
.xa8{left:334.755000px;}
.xa9{left:340.888500px;}
.x9f{left:343.665000px;}
.xa0{left:349.536000px;}
.xb9{left:350.823000px;}
.x47{left:353.928000px;}
.x3{left:363.496500px;}
.x43{left:367.672500px;}
.x4{left:369.750000px;}
.xaf{left:371.544000px;}
.x4b{left:373.366500px;}
.x45{left:374.811000px;}
.x5{left:376.636500px;}
.x44{left:380.181000px;}
.x6{left:382.890000px;}
.xbc{left:384.693000px;}
.xf{left:386.568000px;}
.x7{left:389.775000px;}
.x11{left:394.876500px;}
.x8{left:396.030000px;}
.xb0{left:400.390500px;}
.xa1{left:402.073500px;}
.xb3{left:403.129500px;}
.xb5{left:405.264000px;}
.xa2{left:409.770000px;}
.x4c{left:413.650500px;}
.x10{left:416.451000px;}
.xbd{left:417.657000px;}
.xbb{left:419.808000px;}
.xa5{left:421.296000px;}
.x9a{left:426.991500px;}
.x15{left:464.389500px;}
.xcb{left:467.460000px;}
.x1c{left:469.273500px;}
.x80{left:471.625500px;}
.xc9{left:472.672500px;}
.x72{left:474.034500px;}
.x1d{left:475.527000px;}
.x20{left:477.838500px;}
.x73{left:480.705000px;}
.x4f{left:481.719000px;}
.x6f{left:484.858500px;}
.x24{left:487.858500px;}
.xd2{left:494.655000px;}
.x74{left:496.473000px;}
.x53{left:498.367500px;}
.x56{left:501.468000px;}
.x54{left:509.416500px;}
.x75{left:510.579000px;}
.x82{left:516.381000px;}
.x6a{left:518.091000px;}
.xc3{left:523.164000px;}
.x27{left:527.623500px;}
.x62{left:531.529500px;}
.x2e{left:532.923000px;}
.x59{left:534.783000px;}
.x63{left:536.730000px;}
.x51{left:537.852000px;}
.x55{left:539.466000px;}
.x5a{left:540.835500px;}
.x7c{left:543.154500px;}
.x2f{left:545.431500px;}
.x18{left:547.060500px;}
.x25{left:548.284500px;}
.x7f{left:551.607000px;}
.x19{left:553.315500px;}
.x7d{left:554.857500px;}
.x50{left:558.385500px;}
.x21{left:560.526000px;}
.x64{left:562.332000px;}
.x2c{left:566.860500px;}
.xc4{left:569.119500px;}
.x22{left:573.034500px;}
.xca{left:576.303000px;}
.xc5{left:578.157000px;}
.x2d{left:579.367500px;}
.x6b{left:582.253500px;}
.xd0{left:584.884500px;}
.x77{left:588.208500px;}
.xcd{left:590.913000px;}
.x6c{left:594.705000px;}
.x76{left:596.586000px;}
.x65{left:597.942000px;}
.x84{left:599.029500px;}
.x5b{left:602.706000px;}
.xc7{left:606.420000px;}
.x81{left:610.783500px;}
.x5c{left:613.921500px;}
.x1e{left:616.038000px;}
.x83{left:618.295500px;}
.x1f{left:622.291500px;}
.x78{left:623.923500px;}
.x7a{left:625.632000px;}
.x30{left:629.604000px;}
.x85{left:633.216000px;}
.x52{left:635.043000px;}
.x36{left:639.516000px;}
.x31{left:642.112500px;}
.x79{left:644.730000px;}
.x37{left:645.771000px;}
.x88{left:649.065000px;}
.x86{left:652.921500px;}
.xce{left:655.309500px;}
.x5d{left:658.857000px;}
.x6d{left:661.846500px;}
.x1a{left:668.743500px;}
.x5e{left:672.222000px;}
.x1b{left:674.998500px;}
.x57{left:678.384000px;}
.xcf{left:680.647500px;}
.xcc{left:685.084500px;}
.x58{left:686.631000px;}
.x2a{left:688.105500px;}
.x66{left:689.934000px;}
.x2b{left:694.360500px;}
.x87{left:697.782000px;}
.x6e{left:698.880000px;}
.x5f{left:703.728000px;}
.x60{left:711.121500px;}
.xc6{left:717.222000px;}
.x28{left:718.629000px;}
.x70{left:724.639500px;}
.xc8{left:728.175000px;}
.x34{left:730.576500px;}
.x67{left:735.678000px;}
.x35{left:736.830000px;}
.x71{left:742.444500px;}
.x29{left:745.485000px;}
.x68{left:749.853000px;}
.x26{left:758.056500px;}
.x7b{left:759.508500px;}
.x23{left:764.772000px;}
.x32{left:766.045500px;}
.x16{left:773.842500px;}
.x61{left:776.197500px;}
.x33{left:778.552500px;}
.x17{left:780.096000px;}
.x69{left:782.169000px;}
.x7e{left:783.375000px;}
@media print{
.vb{vertical-align:-17.930667pt;}
.v3{vertical-align:-14.944000pt;}
.v5{vertical-align:-10.042667pt;}
.va{vertical-align:-8.032000pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:10.229333pt;}
.ve{vertical-align:12.645333pt;}
.v7{vertical-align:14.826667pt;}
.v9{vertical-align:16.933333pt;}
.v4{vertical-align:17.930667pt;}
.v2{vertical-align:21.520000pt;}
.v15{vertical-align:22.954667pt;}
.vd{vertical-align:25.290667pt;}
.v6{vertical-align:27.738667pt;}
.v1{vertical-align:30.992000pt;}
.vf{vertical-align:34.858667pt;}
.v8{vertical-align:37.130667pt;}
.v14{vertical-align:39.882667pt;}
.v11{vertical-align:41.120000pt;}
.v10{vertical-align:42.213333pt;}
.v12{vertical-align:59.050667pt;}
.v13{vertical-align:66.410667pt;}
.lsb{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.000112pt;}
.ls0{letter-spacing:0.000150pt;}
.ls29{letter-spacing:0.000917pt;}
.ls27{letter-spacing:0.001357pt;}
.ls25{letter-spacing:0.001599pt;}
.ls1f{letter-spacing:0.001653pt;}
.ls22{letter-spacing:0.002077pt;}
.ls32{letter-spacing:0.002712pt;}
.ls18{letter-spacing:0.003294pt;}
.ls5{letter-spacing:0.003378pt;}
.ls2a{letter-spacing:0.003386pt;}
.lsf{letter-spacing:0.003603pt;}
.ls17{letter-spacing:0.003728pt;}
.ls2f{letter-spacing:0.004591pt;}
.ls8{letter-spacing:1.711691pt;}
.ls3{letter-spacing:1.715699pt;}
.ls1d{letter-spacing:2.052870pt;}
.ls19{letter-spacing:2.055254pt;}
.ls1e{letter-spacing:2.058204pt;}
.lse{letter-spacing:2.060587pt;}
.ls7{letter-spacing:2.420381pt;}
.ls1{letter-spacing:2.468338pt;}
.lsa{letter-spacing:2.652460pt;}
.ls6{letter-spacing:2.704989pt;}
.ls1a{letter-spacing:3.539603pt;}
.ls30{letter-spacing:6.262021pt;}
.ls2e{letter-spacing:6.267355pt;}
.ls23{letter-spacing:7.970114pt;}
.ls12{letter-spacing:7.971553pt;}
.ls9{letter-spacing:9.962293pt;}
.ls16{letter-spacing:10.802833pt;}
.ls20{letter-spacing:11.172870pt;}
.ls4{letter-spacing:11.954114pt;}
.ls14{letter-spacing:11.955519pt;}
.ls13{letter-spacing:11.958513pt;}
.ls1b{letter-spacing:11.959097pt;}
.ls28{letter-spacing:12.188114pt;}
.ls1c{letter-spacing:12.682204pt;}
.ls24{letter-spacing:13.007537pt;}
.ls34{letter-spacing:13.055918pt;}
.ls33{letter-spacing:13.061147pt;}
.ls26{letter-spacing:14.420870pt;}
.ls2b{letter-spacing:15.335254pt;}
.ls15{letter-spacing:15.339413pt;}
.ls10{letter-spacing:15.340587pt;}
.lsd{letter-spacing:16.354677pt;}
.ls2d{letter-spacing:23.910213pt;}
.ls2c{letter-spacing:25.969921pt;}
.ls2{letter-spacing:28.692713pt;}
.lsc{letter-spacing:29.708430pt;}
.ls21{letter-spacing:39.012191pt;}
.ls31{letter-spacing:43.208861pt;}
.ls11{letter-spacing:50.985524pt;}
.wsf8{word-spacing:-68.861867pt;}
.ws55{word-spacing:-64.175370pt;}
.ws0{word-spacing:-61.975480pt;}
.ws2{word-spacing:-57.384640pt;}
.ws3f{word-spacing:-51.646400pt;}
.wsb{word-spacing:-47.820693pt;}
.wsa9{word-spacing:-44.970449pt;}
.ws36{word-spacing:-44.097154pt;}
.ws98{word-spacing:-43.636640pt;}
.ws1{word-spacing:-43.040703pt;}
.ws4{word-spacing:-43.039745pt;}
.ws35{word-spacing:-41.444693pt;}
.ws3{word-spacing:-40.169013pt;}
.wsea{word-spacing:-39.691175pt;}
.ws38{word-spacing:-39.643355pt;}
.ws45{word-spacing:-39.404251pt;}
.ws5a{word-spacing:-39.212969pt;}
.wsab{word-spacing:-39.165148pt;}
.ws46{word-spacing:-38.973865pt;}
.ws47{word-spacing:-38.926044pt;}
.wsd7{word-spacing:-38.830403pt;}
.wsd8{word-spacing:-38.782582pt;}
.ws31{word-spacing:-38.639120pt;}
.ws76{word-spacing:-38.543479pt;}
.ws1c{word-spacing:-38.495658pt;}
.ws74{word-spacing:-38.447837pt;}
.ws9f{word-spacing:-38.400017pt;}
.ws37{word-spacing:-38.352196pt;}
.wsf2{word-spacing:-38.256555pt;}
.ws58{word-spacing:-38.256533pt;}
.wsf7{word-spacing:-38.208734pt;}
.ws72{word-spacing:-38.065272pt;}
.ws6b{word-spacing:-37.873989pt;}
.ws3a{word-spacing:-37.682706pt;}
.ws104{word-spacing:-37.634886pt;}
.ws48{word-spacing:-37.539244pt;}
.ws7b{word-spacing:-37.395782pt;}
.wsaa{word-spacing:-37.347961pt;}
.wsac{word-spacing:-37.300141pt;}
.ws8e{word-spacing:-37.252320pt;}
.ws59{word-spacing:-37.204499pt;}
.ws75{word-spacing:-37.061037pt;}
.ws7c{word-spacing:-37.044191pt;}
.ws40{word-spacing:-37.013217pt;}
.ws61{word-spacing:-36.965396pt;}
.wsaf{word-spacing:-36.917575pt;}
.ws41{word-spacing:-36.869755pt;}
.ws7a{word-spacing:-36.726292pt;}
.wsf9{word-spacing:-36.678472pt;}
.ws12{word-spacing:-36.535010pt;}
.ws8d{word-spacing:-36.531744pt;}
.ws77{word-spacing:-36.439368pt;}
.ws81{word-spacing:-36.343727pt;}
.ws8c{word-spacing:-36.248086pt;}
.wsae{word-spacing:-36.200265pt;}
.ws1b{word-spacing:-36.152444pt;}
.wsd0{word-spacing:-36.115203pt;}
.wsde{word-spacing:-36.109954pt;}
.ws3b{word-spacing:-36.104623pt;}
.ws69{word-spacing:-36.076853pt;}
.ws14{word-spacing:-36.056803pt;}
.wsca{word-spacing:-36.051652pt;}
.wsc8{word-spacing:-36.048055pt;}
.ws8f{word-spacing:-36.035998pt;}
.wsd{word-spacing:-36.008982pt;}
.wse0{word-spacing:-35.975433pt;}
.wse{word-spacing:-35.961161pt;}
.wsdf{word-spacing:-35.957560pt;}
.ws4e{word-spacing:-35.913341pt;}
.wsda{word-spacing:-35.888900pt;}
.ws86{word-spacing:-35.867009pt;}
.ws5e{word-spacing:-35.866738pt;}
.ws5d{word-spacing:-35.866484pt;}
.ws5f{word-spacing:-35.865821pt;}
.wsbb{word-spacing:-35.865662pt;}
.ws16{word-spacing:-35.865520pt;}
.wse3{word-spacing:-35.865043pt;}
.wsb2{word-spacing:-35.864198pt;}
.ws8b{word-spacing:-35.851255pt;}
.wsba{word-spacing:-35.836252pt;}
.ws23{word-spacing:-35.817699pt;}
.ws15{word-spacing:-35.769879pt;}
.ws43{word-spacing:-35.722058pt;}
.wsd6{word-spacing:-35.699439pt;}
.ws42{word-spacing:-35.674237pt;}
.wsb0{word-spacing:-35.642952pt;}
.wse8{word-spacing:-35.636051pt;}
.ws11{word-spacing:-35.626417pt;}
.ws8a{word-spacing:-35.623143pt;}
.wsef{word-spacing:-35.591670pt;}
.ws30{word-spacing:-35.578596pt;}
.wsfe{word-spacing:-35.530775pt;}
.ws3e{word-spacing:-35.482954pt;}
.wsfd{word-spacing:-35.435134pt;}
.ws66{word-spacing:-35.387313pt;}
.ws19{word-spacing:-35.339492pt;}
.wsf6{word-spacing:-35.299334pt;}
.ws9b{word-spacing:-35.291672pt;}
.ws80{word-spacing:-35.243851pt;}
.ws78{word-spacing:-35.196030pt;}
.ws2f{word-spacing:-35.148210pt;}
.wsb1{word-spacing:-35.100389pt;}
.ws3d{word-spacing:-35.052568pt;}
.ws68{word-spacing:-35.038385pt;}
.wsfb{word-spacing:-34.956927pt;}
.ws70{word-spacing:-34.909106pt;}
.wse5{word-spacing:-34.870670pt;}
.ws65{word-spacing:-34.861285pt;}
.ws54{word-spacing:-34.765644pt;}
.ws32{word-spacing:-34.670003pt;}
.ws7d{word-spacing:-34.622182pt;}
.ws71{word-spacing:-34.574361pt;}
.ws56{word-spacing:-34.526541pt;}
.wsc{word-spacing:-34.430933pt;}
.ws50{word-spacing:-34.430899pt;}
.wsf{word-spacing:-34.335258pt;}
.ws60{word-spacing:-34.287437pt;}
.ws34{word-spacing:-34.239616pt;}
.wsa8{word-spacing:-34.191796pt;}
.ws95{word-spacing:-34.123852pt;}
.wse4{word-spacing:-34.096154pt;}
.ws96{word-spacing:-34.080216pt;}
.wsc9{word-spacing:-34.024497pt;}
.ws99{word-spacing:-33.857051pt;}
.wsd9{word-spacing:-33.821250pt;}
.wsf1{word-spacing:-33.762135pt;}
.ws18{word-spacing:-33.761409pt;}
.wsf0{word-spacing:-33.713589pt;}
.wsfa{word-spacing:-33.665768pt;}
.wsd5{word-spacing:-33.581719pt;}
.wse7{word-spacing:-33.541717pt;}
.wse9{word-spacing:-33.520855pt;}
.wsd3{word-spacing:-33.506891pt;}
.wsd1{word-spacing:-33.498827pt;}
.wsd4{word-spacing:-33.474485pt;}
.ws6a{word-spacing:-33.426665pt;}
.ws9e{word-spacing:-33.378844pt;}
.wsf5{word-spacing:-33.283413pt;}
.ws73{word-spacing:-33.235382pt;}
.wsdc{word-spacing:-33.218288pt;}
.wscf{word-spacing:-33.187561pt;}
.ws87{word-spacing:-33.155680pt;}
.wsa2{word-spacing:-33.139740pt;}
.wse2{word-spacing:-33.047885pt;}
.ws51{word-spacing:-33.044099pt;}
.wsc7{word-spacing:-32.945859pt;}
.ws6d{word-spacing:-32.900637pt;}
.ws22{word-spacing:-32.804996pt;}
.ws1e{word-spacing:-32.771117pt;}
.ws5b{word-spacing:-32.757175pt;}
.ws97{word-spacing:-32.727480pt;}
.ws6{word-spacing:-32.717704pt;}
.ws5c{word-spacing:-32.709354pt;}
.wseb{word-spacing:-32.683843pt;}
.ws44{word-spacing:-32.661534pt;}
.wsec{word-spacing:-32.640207pt;}
.wsce{word-spacing:-32.613713pt;}
.wscb{word-spacing:-32.570016pt;}
.ws79{word-spacing:-32.565892pt;}
.wscd{word-spacing:-32.565714pt;}
.ws6f{word-spacing:-32.374609pt;}
.ws6c{word-spacing:-32.326789pt;}
.ws49{word-spacing:-32.278968pt;}
.ws3c{word-spacing:-32.183327pt;}
.wsa1{word-spacing:-32.135506pt;}
.wsb3{word-spacing:-32.039865pt;}
.ws6e{word-spacing:-31.896402pt;}
.wsf3{word-spacing:-31.705120pt;}
.wse1{word-spacing:-31.609478pt;}
.ws63{word-spacing:-31.561658pt;}
.wscc{word-spacing:-31.539673pt;}
.ws4a{word-spacing:-31.370375pt;}
.ws4b{word-spacing:-31.226913pt;}
.ws67{word-spacing:-31.035630pt;}
.wse6{word-spacing:-30.982449pt;}
.ws13{word-spacing:-30.939989pt;}
.wsa0{word-spacing:-30.700885pt;}
.ws84{word-spacing:-30.557423pt;}
.ws85{word-spacing:-30.509602pt;}
.wsdb{word-spacing:-30.456770pt;}
.wsff{word-spacing:-30.366140pt;}
.wsc2{word-spacing:-30.284215pt;}
.ws9{word-spacing:-30.207088pt;}
.ws7{word-spacing:-30.167237pt;}
.ws8{word-spacing:-30.007833pt;}
.ws5{word-spacing:-29.928131pt;}
.wsa{word-spacing:-29.888280pt;}
.ws2b{word-spacing:-29.887732pt;}
.ws27{word-spacing:-29.887551pt;}
.ws29{word-spacing:-29.886326pt;}
.ws28{word-spacing:-29.872844pt;}
.ws2c{word-spacing:-29.867511pt;}
.ws7f{word-spacing:-29.840113pt;}
.ws53{word-spacing:-29.792292pt;}
.ws24{word-spacing:-29.768727pt;}
.ws26{word-spacing:-29.728876pt;}
.ws7e{word-spacing:-29.457547pt;}
.ws9a{word-spacing:-29.314085pt;}
.wsd2{word-spacing:-29.201020pt;}
.ws62{word-spacing:-29.027161pt;}
.wsfc{word-spacing:-28.788057pt;}
.wsed{word-spacing:-28.581999pt;}
.wsee{word-spacing:-28.538363pt;}
.ws9d{word-spacing:-28.453313pt;}
.ws82{word-spacing:-28.405492pt;}
.ws83{word-spacing:-27.114333pt;}
.ws10{word-spacing:-26.923050pt;}
.ws25{word-spacing:-26.859601pt;}
.ws2a{word-spacing:-26.580644pt;}
.ws4f{word-spacing:-26.349202pt;}
.wsa6{word-spacing:-26.205740pt;}
.ws4d{word-spacing:-25.823174pt;}
.wsad{word-spacing:-25.775354pt;}
.ws9c{word-spacing:-25.584071pt;}
.ws103{word-spacing:-25.440609pt;}
.wsb4{word-spacing:-25.297147pt;}
.wsa3{word-spacing:-24.436374pt;}
.wsb6{word-spacing:-23.911043pt;}
.wsdd{word-spacing:-23.575602pt;}
.ws88{word-spacing:-22.916740pt;}
.ws90{word-spacing:-22.916679pt;}
.wsbf{word-spacing:-22.916492pt;}
.wsbd{word-spacing:-22.916298pt;}
.wsc0{word-spacing:-22.915423pt;}
.ws33{word-spacing:-21.662774pt;}
.wsa5{word-spacing:-21.471491pt;}
.ws52{word-spacing:-20.180333pt;}
.wsf4{word-spacing:-19.032636pt;}
.ws102{word-spacing:-18.076222pt;}
.ws2e{word-spacing:-17.932760pt;}
.ws1a{word-spacing:-17.920555pt;}
.ws39{word-spacing:-17.572550pt;}
.ws100{word-spacing:-17.071988pt;}
.ws2d{word-spacing:-17.048077pt;}
.ws89{word-spacing:-16.380215pt;}
.ws1f{word-spacing:-16.035024pt;}
.wsb5{word-spacing:-15.941286pt;}
.wsc6{word-spacing:-15.938686pt;}
.wsc3{word-spacing:-12.701093pt;}
.ws1d{word-spacing:-12.510576pt;}
.ws64{word-spacing:-12.267629pt;}
.ws21{word-spacing:-11.194262pt;}
.wsa7{word-spacing:-9.277215pt;}
.ws91{word-spacing:-7.705719pt;}
.ws92{word-spacing:-6.904153pt;}
.ws93{word-spacing:-6.898810pt;}
.ws94{word-spacing:-5.942274pt;}
.ws17{word-spacing:-0.940003pt;}
.ws4c{word-spacing:0.000000pt;}
.ws101{word-spacing:1.195517pt;}
.wsa4{word-spacing:2.917062pt;}
.ws57{word-spacing:11.571785pt;}
.wsb7{word-spacing:31.877381pt;}
.wsc5{word-spacing:31.879981pt;}
.wsb8{word-spacing:79.701381pt;}
.wsc4{word-spacing:79.703981pt;}
.wsb9{word-spacing:127.520048pt;}
.wsc1{word-spacing:127.522647pt;}
.wsbc{word-spacing:175.338714pt;}
.wsbe{word-spacing:175.341314pt;}
.ws20{word-spacing:990.272511pt;}
._14{margin-left:-16.354677pt;}
._23{margin-left:-6.059844pt;}
._0{margin-left:-4.958038pt;}
._a{margin-left:-3.355446pt;}
._2{margin-left:-2.351211pt;}
._1{margin-left:-0.996276pt;}
._5{width:1.530262pt;}
._8{width:2.704989pt;}
._17{width:4.636827pt;}
._16{width:6.159301pt;}
._1e{width:7.106155pt;}
._15{width:8.081697pt;}
._d{width:9.755421pt;}
._b{width:10.783566pt;}
._3{width:12.433524pt;}
._4{width:13.788460pt;}
._7{width:15.493943pt;}
._1c{width:16.402498pt;}
._e{width:17.311091pt;}
._13{width:18.936995pt;}
._c{width:19.941229pt;}
._19{width:20.943477pt;}
._1d{width:22.236622pt;}
._1a{width:24.245092pt;}
._10{width:25.536250pt;}
._18{width:27.122331pt;}
._1b{width:28.105652pt;}
._25{width:29.306126pt;}
._6{width:30.565420pt;}
._12{width:32.278968pt;}
._f{width:34.430933pt;}
._28{width:35.467003pt;}
._2b{width:36.638610pt;}
._26{width:39.117327pt;}
._11{width:44.560928pt;}
._27{width:46.720817pt;}
._24{width:52.315839pt;}
._29{width:58.237646pt;}
._2a{width:86.419995pt;}
._21{width:327.364927pt;}
._22{width:358.853091pt;}
._9{width:360.847803pt;}
._1f{width:676.097457pt;}
._20{width:769.114482pt;}
.fsb{font-size:19.526773pt;}
.fsc{font-size:23.910347pt;}
.fs4{font-size:27.895573pt;}
.fs10{font-size:28.692373pt;}
.fs14{font-size:29.272288pt;}
.fsf{font-size:33.155680pt;}
.fs13{font-size:33.984284pt;}
.fs12{font-size:34.010608pt;}
.fsa{font-size:37.818453pt;}
.fs11{font-size:37.959208pt;}
.fse{font-size:38.256533pt;}
.fs5{font-size:39.851040pt;}
.fs3{font-size:40.169013pt;}
.fsd{font-size:41.444693pt;}
.fs8{font-size:42.265460pt;}
.fs9{font-size:43.636640pt;}
.fs6{font-size:47.820693pt;}
.fs2{font-size:57.384640pt;}
.fs1{font-size:57.843467pt;}
.fs7{font-size:68.861867pt;}
.fs0{font-size:82.633973pt;}
.y0{bottom:0.000000pt;}
.yf5{bottom:18.301761pt;}
.yf4{bottom:37.485376pt;}
.yf3{bottom:47.764898pt;}
.yf0{bottom:68.068599pt;}
.yf2{bottom:69.490095pt;}
.yee{bottom:76.739725pt;}
.yec{bottom:77.471532pt;}
.yef{bottom:78.348121pt;}
.yf1{bottom:78.384975pt;}
.ye8{bottom:95.066667pt;}
.ye5{bottom:99.286667pt;}
.y3a{bottom:99.833333pt;}
.y66{bottom:102.458667pt;}
.ye9{bottom:104.493333pt;}
.y1e0{bottom:104.828000pt;}
.y18b{bottom:105.240000pt;}
.y39{bottom:107.005333pt;}
.ye4{bottom:107.654667pt;}
.ye7{bottom:107.768000pt;}
.yed{bottom:108.828681pt;}
.y12d{bottom:109.242667pt;}
.y1a1{bottom:109.466667pt;}
.y177{bottom:110.369333pt;}
.ya2{bottom:112.145333pt;}
.y38{bottom:115.805333pt;}
.y65{bottom:116.804000pt;}
.y1df{bottom:119.173333pt;}
.y18a{bottom:119.585333pt;}
.ye6{bottom:121.840000pt;}
.y12c{bottom:123.589333pt;}
.y1a0{bottom:123.812000pt;}
.y176{bottom:124.716000pt;}
.ya1{bottom:126.490667pt;}
.yeb{bottom:126.968549pt;}
.y37{bottom:127.949333pt;}
.y64{bottom:131.150667pt;}
.y1de{bottom:133.520000pt;}
.y189{bottom:133.932000pt;}
.y12b{bottom:137.934667pt;}
.y19f{bottom:138.158667pt;}
.y175{bottom:139.061333pt;}
.ye3{bottom:139.496000pt;}
.ya0{bottom:140.837333pt;}
.y36{bottom:143.989333pt;}
.y63{bottom:145.496000pt;}
.y1dd{bottom:147.866667pt;}
.y188{bottom:148.277333pt;}
.y35{bottom:151.802667pt;}
.y12a{bottom:152.281333pt;}
.y19e{bottom:152.504000pt;}
.y174{bottom:153.408000pt;}
.ye2{bottom:153.842667pt;}
.y9f{bottom:155.184000pt;}
.y62{bottom:159.842667pt;}
.y1dc{bottom:162.212000pt;}
.y187{bottom:162.624000pt;}
.y34{bottom:163.757333pt;}
.y129{bottom:166.626667pt;}
.y19d{bottom:166.850667pt;}
.y173{bottom:167.754667pt;}
.y9e{bottom:169.529333pt;}
.y33{bottom:170.109333pt;}
.ye1{bottom:171.300000pt;}
.y61{bottom:174.189333pt;}
.yde{bottom:175.518667pt;}
.y32{bottom:176.053333pt;}
.y1db{bottom:176.558667pt;}
.y186{bottom:176.970667pt;}
.y128{bottom:180.973333pt;}
.y19c{bottom:181.197333pt;}
.y172{bottom:182.100000pt;}
.y9d{bottom:183.876000pt;}
.ydd{bottom:183.888000pt;}
.ye0{bottom:184.001333pt;}
.y31{bottom:188.008000pt;}
.y60{bottom:188.534667pt;}
.y1da{bottom:190.904000pt;}
.y185{bottom:191.316000pt;}
.y127{bottom:195.320000pt;}
.y19b{bottom:195.542667pt;}
.y171{bottom:196.446667pt;}
.ydf{bottom:198.072000pt;}
.y9c{bottom:198.222667pt;}
.y30{bottom:199.964000pt;}
.y5f{bottom:202.881333pt;}
.y1d9{bottom:205.250667pt;}
.y184{bottom:205.662667pt;}
.y126{bottom:209.665333pt;}
.y19a{bottom:209.889333pt;}
.y170{bottom:210.792000pt;}
.y9b{bottom:212.568000pt;}
.ydc{bottom:215.681333pt;}
.y5e{bottom:217.228000pt;}
.y1d8{bottom:219.597333pt;}
.y183{bottom:220.009333pt;}
.y125{bottom:224.012000pt;}
.y199{bottom:224.236000pt;}
.y16f{bottom:225.138667pt;}
.y9a{bottom:226.914667pt;}
.yda{bottom:230.028000pt;}
.y5d{bottom:231.573333pt;}
.y1d7{bottom:233.942667pt;}
.y182{bottom:234.354667pt;}
.ydb{bottom:234.510667pt;}
.y2f{bottom:234.580000pt;}
.y124{bottom:238.358667pt;}
.y198{bottom:238.581333pt;}
.y16e{bottom:239.485333pt;}
.yd9{bottom:244.373333pt;}
.y5c{bottom:245.920000pt;}
.yd8{bottom:246.932000pt;}
.y1d6{bottom:248.289333pt;}
.y181{bottom:248.701333pt;}
.y2e{bottom:248.926667pt;}
.y123{bottom:252.704000pt;}
.y197{bottom:252.928000pt;}
.y99{bottom:253.057333pt;}
.y16d{bottom:253.830667pt;}
.yd6{bottom:258.720000pt;}
.y5b{bottom:260.265333pt;}
.y1d5{bottom:262.636000pt;}
.y180{bottom:263.046667pt;}
.yd7{bottom:263.202667pt;}
.y2d{bottom:263.272000pt;}
.y122{bottom:267.050667pt;}
.y196{bottom:267.273333pt;}
.y16c{bottom:268.177333pt;}
.yd5{bottom:273.065333pt;}
.y5a{bottom:274.612000pt;}
.y1d4{bottom:276.981333pt;}
.y2c{bottom:277.618667pt;}
.y121{bottom:281.396000pt;}
.y195{bottom:281.620000pt;}
.y16b{bottom:282.524000pt;}
.yd4{bottom:287.412000pt;}
.y59{bottom:288.958667pt;}
.y1d3{bottom:291.328000pt;}
.y98{bottom:291.665333pt;}
.y120{bottom:295.742667pt;}
.y194{bottom:295.966667pt;}
.y16a{bottom:296.869333pt;}
.y2b{bottom:301.314667pt;}
.yd3{bottom:301.758667pt;}
.y58{bottom:303.304000pt;}
.y1d2{bottom:305.673333pt;}
.y97{bottom:306.012000pt;}
.y193{bottom:310.312000pt;}
.y169{bottom:311.216000pt;}
.y17f{bottom:312.125333pt;}
.y2a{bottom:314.405333pt;}
.yd2{bottom:316.104000pt;}
.y57{bottom:317.650667pt;}
.y1d1{bottom:320.020000pt;}
.y96{bottom:320.358667pt;}
.y11f{bottom:321.885333pt;}
.y192{bottom:324.658667pt;}
.y17e{bottom:325.216000pt;}
.y168{bottom:325.561333pt;}
.y29{bottom:327.496000pt;}
.yd1{bottom:330.450667pt;}
.y56{bottom:331.997333pt;}
.y1d0{bottom:334.366667pt;}
.y95{bottom:334.704000pt;}
.y167{bottom:339.908000pt;}
.y28{bottom:340.588000pt;}
.yd0{bottom:344.797333pt;}
.y55{bottom:346.342667pt;}
.y1cf{bottom:348.712000pt;}
.y94{bottom:349.050667pt;}
.y191{bottom:350.801333pt;}
.y27{bottom:353.678667pt;}
.y166{bottom:354.254667pt;}
.ycf{bottom:359.142667pt;}
.y11e{bottom:360.494667pt;}
.y1ce{bottom:363.058667pt;}
.y93{bottom:363.397333pt;}
.y26{bottom:366.769333pt;}
.y165{bottom:368.600000pt;}
.y54{bottom:372.485333pt;}
.yce{bottom:373.489333pt;}
.y11d{bottom:374.840000pt;}
.y1cd{bottom:377.405333pt;}
.y92{bottom:377.742667pt;}
.y25{bottom:379.860000pt;}
.y164{bottom:382.946667pt;}
.y11c{bottom:389.186667pt;}
.y190{bottom:389.409333pt;}
.y1cc{bottom:391.750667pt;}
.y91{bottom:392.089333pt;}
.ycc{bottom:392.618667pt;}
.y24{bottom:392.950667pt;}
.yca{bottom:393.096000pt;}
.yc9{bottom:397.204000pt;}
.y163{bottom:397.293333pt;}
.yc8{bottom:402.140000pt;}
.y11b{bottom:403.533333pt;}
.y18f{bottom:403.756000pt;}
.y1cb{bottom:406.097333pt;}
.ycd{bottom:406.217333pt;}
.yc7{bottom:406.373333pt;}
.y90{bottom:406.434667pt;}
.ycb{bottom:406.486667pt;}
.y23{bottom:406.573333pt;}
.y53{bottom:411.094667pt;}
.y162{bottom:411.638667pt;}
.y11a{bottom:417.878667pt;}
.y18e{bottom:418.102667pt;}
.y1ca{bottom:420.442667pt;}
.y8f{bottom:420.781333pt;}
.y52{bottom:425.440000pt;}
.y161{bottom:425.985333pt;}
.yc6{bottom:431.996000pt;}
.y119{bottom:432.225333pt;}
.y18d{bottom:432.448000pt;}
.y1c9{bottom:434.789333pt;}
.y8e{bottom:435.128000pt;}
.y51{bottom:439.786667pt;}
.y22{bottom:440.252000pt;}
.y160{bottom:440.330667pt;}
.yc5{bottom:446.342667pt;}
.y118{bottom:446.570667pt;}
.y18c{bottom:446.794667pt;}
.y1c8{bottom:449.136000pt;}
.y8d{bottom:449.473333pt;}
.y21{bottom:453.342667pt;}
.y50{bottom:454.133333pt;}
.y15f{bottom:454.677333pt;}
.yc4{bottom:460.688000pt;}
.y117{bottom:460.917333pt;}
.y1c7{bottom:463.481333pt;}
.y8c{bottom:463.820000pt;}
.y20{bottom:466.434667pt;}
.y4f{bottom:468.478667pt;}
.y15e{bottom:469.024000pt;}
.yc3{bottom:475.034667pt;}
.y116{bottom:475.264000pt;}
.y1c6{bottom:477.828000pt;}
.y8b{bottom:478.166667pt;}
.y1f{bottom:479.525333pt;}
.y4e{bottom:482.825333pt;}
.y15d{bottom:483.369333pt;}
.yc2{bottom:489.381333pt;}
.y115{bottom:489.609333pt;}
.y1c5{bottom:492.174667pt;}
.y8a{bottom:492.512000pt;}
.y17d{bottom:495.873333pt;}
.y4d{bottom:497.172000pt;}
.y15c{bottom:497.716000pt;}
.y1e{bottom:502.180000pt;}
.yc1{bottom:503.726667pt;}
.y114{bottom:503.956000pt;}
.y1c4{bottom:506.520000pt;}
.y89{bottom:506.858667pt;}
.y17c{bottom:508.964000pt;}
.y4c{bottom:511.517333pt;}
.y15b{bottom:512.062667pt;}
.yc0{bottom:518.073333pt;}
.y113{bottom:518.302667pt;}
.y1c3{bottom:520.866667pt;}
.y88{bottom:521.204000pt;}
.y17b{bottom:522.054667pt;}
.y4b{bottom:525.864000pt;}
.y1d{bottom:526.092000pt;}
.y15a{bottom:526.408000pt;}
.ybf{bottom:532.418667pt;}
.y112{bottom:532.648000pt;}
.y1c2{bottom:535.212000pt;}
.y87{bottom:535.550667pt;}
.y4a{bottom:540.209333pt;}
.y1c{bottom:540.437333pt;}
.y159{bottom:540.754667pt;}
.y17a{bottom:542.894667pt;}
.ybe{bottom:546.765333pt;}
.y111{bottom:546.994667pt;}
.y1c1{bottom:549.558667pt;}
.y86{bottom:549.897333pt;}
.y49{bottom:554.556000pt;}
.y1b{bottom:554.784000pt;}
.y158{bottom:555.100000pt;}
.ybd{bottom:561.112000pt;}
.y110{bottom:561.340000pt;}
.y1c0{bottom:563.905333pt;}
.y85{bottom:564.242667pt;}
.y48{bottom:568.902667pt;}
.y1a{bottom:569.129333pt;}
.y157{bottom:569.446667pt;}
.ybc{bottom:575.457333pt;}
.y10f{bottom:575.686667pt;}
.y1bf{bottom:578.250667pt;}
.y84{bottom:578.589333pt;}
.y47{bottom:583.248000pt;}
.y156{bottom:583.793333pt;}
.ybb{bottom:589.804000pt;}
.y10e{bottom:590.033333pt;}
.y1be{bottom:592.597333pt;}
.y83{bottom:592.934667pt;}
.y46{bottom:597.594667pt;}
.y155{bottom:598.138667pt;}
.y19{bottom:600.144000pt;}
.y10d{bottom:604.378667pt;}
.y1bd{bottom:606.944000pt;}
.y82{bottom:607.281333pt;}
.yba{bottom:611.445333pt;}
.y45{bottom:611.941333pt;}
.y154{bottom:612.485333pt;}
.y18{bottom:614.490667pt;}
.y1bc{bottom:621.289333pt;}
.y81{bottom:621.628000pt;}
.y44{bottom:626.286667pt;}
.y17{bottom:628.837333pt;}
.yb9{bottom:633.085333pt;}
.y10c{bottom:635.393333pt;}
.y1bb{bottom:635.636000pt;}
.y80{bottom:635.973333pt;}
.y43{bottom:640.633333pt;}
.y16{bottom:643.182667pt;}
.yb8{bottom:647.432000pt;}
.y10b{bottom:649.740000pt;}
.y1ba{bottom:649.981333pt;}
.y7f{bottom:650.320000pt;}
.y42{bottom:654.978667pt;}
.y153{bottom:656.706667pt;}
.y15{bottom:657.529333pt;}
.yb7{bottom:661.778667pt;}
.y10a{bottom:664.085333pt;}
.y1b9{bottom:664.328000pt;}
.y7e{bottom:664.666667pt;}
.y41{bottom:669.325333pt;}
.y152{bottom:671.053333pt;}
.y14{bottom:671.876000pt;}
.y179{bottom:675.885333pt;}
.yb6{bottom:676.124000pt;}
.y108{bottom:678.432000pt;}
.y1b8{bottom:678.674667pt;}
.y7d{bottom:679.012000pt;}
.y109{bottom:682.914667pt;}
.y40{bottom:683.672000pt;}
.y151{bottom:685.398667pt;}
.y13{bottom:686.221333pt;}
.yb5{bottom:690.470667pt;}
.y107{bottom:692.778667pt;}
.y1b7{bottom:693.020000pt;}
.y7c{bottom:693.358667pt;}
.y150{bottom:695.841333pt;}
.y14f{bottom:697.348000pt;}
.y3f{bottom:698.017333pt;}
.y12{bottom:700.568000pt;}
.y14e{bottom:701.580000pt;}
.y106{bottom:703.964000pt;}
.yb4{bottom:704.816000pt;}
.y104{bottom:707.124000pt;}
.y1b6{bottom:707.366667pt;}
.y7b{bottom:707.704000pt;}
.y3e{bottom:712.364000pt;}
.y105{bottom:713.446667pt;}
.y14c{bottom:714.557333pt;}
.y11{bottom:714.913333pt;}
.y149{bottom:716.469333pt;}
.yb3{bottom:719.162667pt;}
.y14d{bottom:720.605333pt;}
.y1b5{bottom:721.713333pt;}
.y7a{bottom:722.050667pt;}
.y103{bottom:724.601333pt;}
.y148{bottom:724.838667pt;}
.y14b{bottom:724.952000pt;}
.y3d{bottom:726.709333pt;}
.y10{bottom:729.260000pt;}
.yb2{bottom:733.509333pt;}
.y102{bottom:735.786667pt;}
.y1b4{bottom:736.058667pt;}
.y79{bottom:736.397333pt;}
.y14a{bottom:736.716000pt;}
.yff{bottom:738.948000pt;}
.y3c{bottom:741.056000pt;}
.y100{bottom:743.430667pt;}
.yf{bottom:743.606667pt;}
.y147{bottom:744.328000pt;}
.y101{bottom:745.269333pt;}
.y144{bottom:746.238667pt;}
.yb1{bottom:747.854667pt;}
.y1b3{bottom:750.405333pt;}
.y143{bottom:754.608000pt;}
.y146{bottom:754.721333pt;}
.y3b{bottom:755.402667pt;}
.y77{bottom:755.416000pt;}
.yfe{bottom:756.425333pt;}
.y76{bottom:760.012000pt;}
.yb0{bottom:762.201333pt;}
.y1b2{bottom:764.750667pt;}
.y145{bottom:766.485333pt;}
.y78{bottom:769.025333pt;}
.y75{bottom:769.180000pt;}
.ye{bottom:769.748000pt;}
.yfd{bottom:770.772000pt;}
.y142{bottom:774.121333pt;}
.yaf{bottom:776.548000pt;}
.y1b1{bottom:779.097333pt;}
.yfc{bottom:785.117333pt;}
.y140{bottom:786.070667pt;}
.y141{bottom:787.141333pt;}
.y13f{bottom:790.302667pt;}
.yae{bottom:790.893333pt;}
.y1b0{bottom:793.444000pt;}
.y74{bottom:797.873333pt;}
.yfa{bottom:799.464000pt;}
.yfb{bottom:803.946667pt;}
.yad{bottom:805.240000pt;}
.y13e{bottom:806.240000pt;}
.y1af{bottom:807.789333pt;}
.y13d{bottom:809.401333pt;}
.yd{bottom:810.641333pt;}
.y73{bottom:812.218667pt;}
.yf8{bottom:813.810667pt;}
.yf9{bottom:818.293333pt;}
.yac{bottom:819.585333pt;}
.y1ae{bottom:822.136000pt;}
.yc{bottom:822.597333pt;}
.y13c{bottom:826.257333pt;}
.y72{bottom:826.565333pt;}
.yab{bottom:833.932000pt;}
.y1ad{bottom:836.482667pt;}
.y71{bottom:840.912000pt;}
.yb{bottom:842.897333pt;}
.y13b{bottom:843.516000pt;}
.yaa{bottom:848.278667pt;}
.y1ac{bottom:850.828000pt;}
.ya{bottom:854.852000pt;}
.y70{bottom:855.257333pt;}
.y178{bottom:857.354667pt;}
.y13a{bottom:857.862667pt;}
.ya9{bottom:862.624000pt;}
.yf7{bottom:862.888000pt;}
.y1ab{bottom:865.174667pt;}
.y9{bottom:866.808000pt;}
.y6f{bottom:869.604000pt;}
.y139{bottom:872.209333pt;}
.yf6{bottom:875.978667pt;}
.ya8{bottom:876.970667pt;}
.y8{bottom:878.762667pt;}
.y1aa{bottom:879.520000pt;}
.y6e{bottom:883.949333pt;}
.y138{bottom:886.554667pt;}
.y7{bottom:890.718667pt;}
.ya7{bottom:891.317333pt;}
.yea{bottom:892.892000pt;}
.y1a9{bottom:893.866667pt;}
.y6d{bottom:898.296000pt;}
.y137{bottom:900.901333pt;}
.y6{bottom:902.673333pt;}
.ya6{bottom:905.662667pt;}
.y1a8{bottom:908.213333pt;}
.y5{bottom:914.629333pt;}
.y136{bottom:915.248000pt;}
.ya5{bottom:920.009333pt;}
.y1a7{bottom:922.558667pt;}
.y6c{bottom:924.438667pt;}
.y4{bottom:926.584000pt;}
.y135{bottom:929.593333pt;}
.ya4{bottom:934.354667pt;}
.y1a6{bottom:936.905333pt;}
.y134{bottom:943.940000pt;}
.ya3{bottom:948.701333pt;}
.y1a5{bottom:951.252000pt;}
.y133{bottom:958.285333pt;}
.y3{bottom:962.997333pt;}
.y6b{bottom:963.048000pt;}
.y1a4{bottom:965.597333pt;}
.y132{bottom:970.234667pt;}
.y131{bottom:974.466667pt;}
.y6a{bottom:977.393333pt;}
.y1a3{bottom:979.944000pt;}
.y2{bottom:987.157333pt;}
.y130{bottom:988.813333pt;}
.y69{bottom:991.740000pt;}
.y1a2{bottom:994.289333pt;}
.y12f{bottom:1003.160000pt;}
.y68{bottom:1006.086667pt;}
.y1{bottom:1020.312000pt;}
.y67{bottom:1020.432000pt;}
.y12e{bottom:1022.980000pt;}
.hd{height:13.629688pt;}
.h11{height:16.928525pt;}
.he{height:19.471110pt;}
.h4{height:19.750066pt;}
.h1d{height:22.479551pt;}
.h29{height:24.741372pt;}
.hb{height:27.494016pt;}
.h18{height:27.965526pt;}
.h1b{height:28.099502pt;}
.h6{height:28.214536pt;}
.h28{height:28.724021pt;}
.h27{height:28.746271pt;}
.h13{height:30.130292pt;}
.h9{height:30.726989pt;}
.hc{height:30.894741pt;}
.ha{height:31.418381pt;}
.h26{height:32.083686pt;}
.h5{height:33.378844pt;}
.h21{height:33.474485pt;}
.h8{height:33.857051pt;}
.h10{height:34.232043pt;}
.h12{height:34.430899pt;}
.hf{height:34.869660pt;}
.h20{height:36.628449pt;}
.h15{height:44.329783pt;}
.h19{height:44.948449pt;}
.h1f{height:44.953783pt;}
.h1a{height:45.021626pt;}
.h1c{height:45.640292pt;}
.h2a{height:45.720292pt;}
.h14{height:45.896193pt;}
.h2c{height:45.901526pt;}
.h7{height:48.065583pt;}
.h3{height:50.883549pt;}
.h2d{height:53.250859pt;}
.h23{height:53.256193pt;}
.h2b{height:54.564449pt;}
.h24{height:56.975116pt;}
.h2e{height:67.209783pt;}
.h33{height:67.284449pt;}
.h32{height:67.848193pt;}
.h2f{height:70.178859pt;}
.h22{height:72.063116pt;}
.h16{height:72.068449pt;}
.h17{height:81.460449pt;}
.h2{height:84.612894pt;}
.h30{height:87.016193pt;}
.h1e{height:88.996449pt;}
.h31{height:94.376193pt;}
.h25{height:142.149600pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:252.710396pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x91{left:12.431505pt;}
.x8e{left:16.774965pt;}
.x8d{left:19.038829pt;}
.x8c{left:69.337412pt;}
.xb6{left:94.445333pt;}
.x1{left:96.000000pt;}
.x13{left:98.992000pt;}
.x9{left:100.053333pt;}
.xba{left:101.057333pt;}
.xb1{left:103.104000pt;}
.x97{left:104.364000pt;}
.xa{left:105.361333pt;}
.x12{left:107.954667pt;}
.xb7{left:109.377333pt;}
.x89{left:112.098670pt;}
.x8a{left:115.541297pt;}
.x46{left:117.657333pt;}
.xbe{left:122.486667pt;}
.x9b{left:123.550667pt;}
.xb{left:125.957333pt;}
.x48{left:129.142667pt;}
.xbf{left:135.862667pt;}
.x92{left:137.076000pt;}
.x3e{left:139.861333pt;}
.x93{left:142.296000pt;}
.x14{left:143.253333pt;}
.x40{left:148.652000pt;}
.x3b{left:153.146667pt;}
.xd1{left:154.788000pt;}
.x2{left:155.754667pt;}
.x94{left:158.746667pt;}
.x8f{left:161.742549pt;}
.xc1{left:163.368000pt;}
.x95{left:165.588000pt;}
.xc2{left:168.926667pt;}
.x90{left:170.100419pt;}
.xaa{left:175.180000pt;}
.x3c{left:177.764000pt;}
.xa6{left:180.586667pt;}
.x49{left:182.904000pt;}
.x96{left:184.726667pt;}
.xa7{left:186.789333pt;}
.x8b{left:191.001675pt;}
.xab{left:198.396000pt;}
.x3d{left:202.573333pt;}
.xac{left:203.614667pt;}
.xc{left:206.226667pt;}
.x3f{left:207.380000pt;}
.xd{left:215.658667pt;}
.xa3{left:216.797333pt;}
.x38{left:217.688000pt;}
.xad{left:219.121333pt;}
.x41{left:223.962667pt;}
.xa4{left:225.380000pt;}
.x42{left:229.020000pt;}
.x4a{left:230.649333pt;}
.x39{left:235.650667pt;}
.x4d{left:237.176000pt;}
.xb2{left:238.977333pt;}
.xae{left:241.152000pt;}
.x98{left:248.121333pt;}
.x99{left:262.934667pt;}
.x3a{left:263.941333pt;}
.xe{left:266.392000pt;}
.xc0{left:268.196000pt;}
.x9c{left:270.834667pt;}
.xb8{left:274.588000pt;}
.x9d{left:278.885333pt;}
.xb4{left:281.142667pt;}
.x4e{left:287.318667pt;}
.x9e{left:294.278667pt;}
.xa8{left:297.560000pt;}
.xa9{left:303.012000pt;}
.x9f{left:305.480000pt;}
.xa0{left:310.698667pt;}
.xb9{left:311.842667pt;}
.x47{left:314.602667pt;}
.x3{left:323.108000pt;}
.x43{left:326.820000pt;}
.x4{left:328.666667pt;}
.xaf{left:330.261333pt;}
.x4b{left:331.881333pt;}
.x45{left:333.165333pt;}
.x5{left:334.788000pt;}
.x44{left:337.938667pt;}
.x6{left:340.346667pt;}
.xbc{left:341.949333pt;}
.xf{left:343.616000pt;}
.x7{left:346.466667pt;}
.x11{left:351.001333pt;}
.x8{left:352.026667pt;}
.xb0{left:355.902667pt;}
.xa1{left:357.398667pt;}
.xb3{left:358.337333pt;}
.xb5{left:360.234667pt;}
.xa2{left:364.240000pt;}
.x4c{left:367.689333pt;}
.x10{left:370.178667pt;}
.xbd{left:371.250667pt;}
.xbb{left:373.162667pt;}
.xa5{left:374.485333pt;}
.x9a{left:379.548000pt;}
.x15{left:412.790667pt;}
.xcb{left:415.520000pt;}
.x1c{left:417.132000pt;}
.x80{left:419.222667pt;}
.xc9{left:420.153333pt;}
.x72{left:421.364000pt;}
.x1d{left:422.690667pt;}
.x20{left:424.745333pt;}
.x73{left:427.293333pt;}
.x4f{left:428.194667pt;}
.x6f{left:430.985333pt;}
.x24{left:433.652000pt;}
.xd2{left:439.693333pt;}
.x74{left:441.309333pt;}
.x53{left:442.993333pt;}
.x56{left:445.749333pt;}
.x54{left:452.814667pt;}
.x75{left:453.848000pt;}
.x82{left:459.005333pt;}
.x6a{left:460.525333pt;}
.xc3{left:465.034667pt;}
.x27{left:468.998667pt;}
.x62{left:472.470667pt;}
.x2e{left:473.709333pt;}
.x59{left:475.362667pt;}
.x63{left:477.093333pt;}
.x51{left:478.090667pt;}
.x55{left:479.525333pt;}
.x5a{left:480.742667pt;}
.x7c{left:482.804000pt;}
.x2f{left:484.828000pt;}
.x18{left:486.276000pt;}
.x25{left:487.364000pt;}
.x7f{left:490.317333pt;}
.x19{left:491.836000pt;}
.x7d{left:493.206667pt;}
.x50{left:496.342667pt;}
.x21{left:498.245333pt;}
.x64{left:499.850667pt;}
.x2c{left:503.876000pt;}
.xc4{left:505.884000pt;}
.x22{left:509.364000pt;}
.xca{left:512.269333pt;}
.xc5{left:513.917333pt;}
.x2d{left:514.993333pt;}
.x6b{left:517.558667pt;}
.xd0{left:519.897333pt;}
.x77{left:522.852000pt;}
.xcd{left:525.256000pt;}
.x6c{left:528.626667pt;}
.x76{left:530.298667pt;}
.x65{left:531.504000pt;}
.x84{left:532.470667pt;}
.x5b{left:535.738667pt;}
.xc7{left:539.040000pt;}
.x81{left:542.918667pt;}
.x5c{left:545.708000pt;}
.x1e{left:547.589333pt;}
.x83{left:549.596000pt;}
.x1f{left:553.148000pt;}
.x78{left:554.598667pt;}
.x7a{left:556.117333pt;}
.x30{left:559.648000pt;}
.x85{left:562.858667pt;}
.x52{left:564.482667pt;}
.x36{left:568.458667pt;}
.x31{left:570.766667pt;}
.x79{left:573.093333pt;}
.x37{left:574.018667pt;}
.x88{left:576.946667pt;}
.x86{left:580.374667pt;}
.xce{left:582.497333pt;}
.x5d{left:585.650667pt;}
.x6d{left:588.308000pt;}
.x1a{left:594.438667pt;}
.x5e{left:597.530667pt;}
.x1b{left:599.998667pt;}
.x57{left:603.008000pt;}
.xcf{left:605.020000pt;}
.xcc{left:608.964000pt;}
.x58{left:610.338667pt;}
.x2a{left:611.649333pt;}
.x66{left:613.274667pt;}
.x2b{left:617.209333pt;}
.x87{left:620.250667pt;}
.x6e{left:621.226667pt;}
.x5f{left:625.536000pt;}
.x60{left:632.108000pt;}
.xc6{left:637.530667pt;}
.x28{left:638.781333pt;}
.x70{left:644.124000pt;}
.xc8{left:647.266667pt;}
.x34{left:649.401333pt;}
.x67{left:653.936000pt;}
.x35{left:654.960000pt;}
.x71{left:659.950667pt;}
.x29{left:662.653333pt;}
.x68{left:666.536000pt;}
.x26{left:673.828000pt;}
.x7b{left:675.118667pt;}
.x23{left:679.797333pt;}
.x32{left:680.929333pt;}
.x16{left:687.860000pt;}
.x61{left:689.953333pt;}
.x33{left:692.046667pt;}
.x17{left:693.418667pt;}
.x69{left:695.261333pt;}
.x7e{left:696.333333pt;}
}




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