
    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_f77c6f0fff8e3cb0125ab55b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_9677f86ea39e272228d6365e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_107e1bf183b19eac22aa8554.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.097168;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_b9e4229cb6cefa1b8c7b1c21.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_4effcde713c98c31fdd8fbe2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_e92740594c868231aa96c62e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.879883;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_229baf7c32c588d161e138b4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_71b71065f953d2b9840903e2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_4e1cb05c24db0313a7ba3559.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284668;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_496739617ec69ba8a92f0a4b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_b327036b729820fc88f1974e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;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_dcb621dbff6b4ea397f27cf4.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.040039;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_73f9be94b6b4e09df7cb960a.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.402354;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;}
.m2{transform:matrix(0.000000,-0.343569,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.343569,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.343569,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.276201,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.276201,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.276201,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.181914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181914,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.226285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226285,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.229431,0.000000,-0.076469,0.238018,0,0);-ms-transform:matrix(0.229431,0.000000,-0.076469,0.238018,0,0);-webkit-transform:matrix(0.229431,0.000000,-0.076469,0.238018,0,0);}
.mc{transform:matrix(0.231665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231665,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.238980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238980,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.239096,0.000000,-0.079690,0.236959,0,0);-ms-transform:matrix(0.239096,0.000000,-0.079690,0.236959,0,0);-webkit-transform:matrix(0.239096,0.000000,-0.079690,0.236959,0,0);}
.me{transform:matrix(0.240981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240981,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.241344,0.000001,-0.080440,0.236705,0,0);-ms-transform:matrix(0.241344,0.000001,-0.080440,0.236705,0,0);-webkit-transform:matrix(0.241344,0.000001,-0.080440,0.236705,0,0);}
.m1a{transform:matrix(0.241345,0.000000,-0.080439,0.236706,0,0);-ms-transform:matrix(0.241345,0.000000,-0.080439,0.236706,0,0);-webkit-transform:matrix(0.241345,0.000000,-0.080439,0.236706,0,0);}
.m8{transform:matrix(0.241790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241790,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.241968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241968,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.242518,0.000000,-0.080831,0.236572,0,0);-ms-transform:matrix(0.242518,0.000000,-0.080831,0.236572,0,0);-webkit-transform:matrix(0.242518,0.000000,-0.080831,0.236572,0,0);}
.md{transform:matrix(0.243915,0.000000,-0.081296,0.236413,0,0);-ms-transform:matrix(0.243915,0.000000,-0.081296,0.236413,0,0);-webkit-transform:matrix(0.243915,0.000000,-0.081296,0.236413,0,0);}
.m23{transform:matrix(0.244144,0.000000,-0.081373,0.236386,0,0);-ms-transform:matrix(0.244144,0.000000,-0.081373,0.236386,0,0);-webkit-transform:matrix(0.244144,0.000000,-0.081373,0.236386,0,0);}
.m1d{transform:matrix(0.247811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247811,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249661,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);}
.m24{transform:matrix(0.251415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251415,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.252044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252044,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.252255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252255,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.252841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252841,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.254441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254441,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.255094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255094,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.255792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255792,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.255810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255810,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.256284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256284,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.256284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256284,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.256284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256284,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.257060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257060,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.258205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258205,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.261354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261354,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.264093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264093,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.267325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267325,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.267797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267797,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.273099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273099,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-18.814829px;}
.v1{vertical-align:-5.760000px;}
.v6{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.760000px;}
.va{vertical-align:9.780000px;}
.v2{vertical-align:18.608789px;}
.vd{vertical-align:21.900000px;}
.v4{vertical-align:27.360000px;}
.vc{vertical-align:29.280000px;}
.v9{vertical-align:34.140000px;}
.vb{vertical-align:41.460000px;}
.v7{vertical-align:53.580000px;}
.v8{vertical-align:82.980000px;}
.ls1c{letter-spacing:-15.120000px;}
.ls12{letter-spacing:-10.080000px;}
.ls13{letter-spacing:-2.869948px;}
.ls11{letter-spacing:-2.524209px;}
.ls10{letter-spacing:-2.481007px;}
.lsf{letter-spacing:-2.462492px;}
.ls20{letter-spacing:-1.705618px;}
.ls23{letter-spacing:-1.584000px;}
.ls14{letter-spacing:-1.369477px;}
.ls1f{letter-spacing:-1.187024px;}
.ls1d{letter-spacing:-1.052440px;}
.ls24{letter-spacing:-0.864000px;}
.ls21{letter-spacing:-0.720000px;}
.ls1b{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.041040px;}
.ls2a{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.120000px;}
.ls29{letter-spacing:0.126000px;}
.ls5{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.174240px;}
.ls1{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.298800px;}
.lsb{letter-spacing:0.306000px;}
.lsd{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.412267px;}
.lse{letter-spacing:0.720000px;}
.ls16{letter-spacing:1.080000px;}
.ls17{letter-spacing:2.880000px;}
.ls22{letter-spacing:7.920000px;}
.ls1e{letter-spacing:19.440000px;}
.ls19{letter-spacing:19.578556px;}
.ls26{letter-spacing:39.600000px;}
.ls27{letter-spacing:122.400000px;}
.ls15{letter-spacing:173.562051px;}
.ls2b{letter-spacing:188.040000px;}
.ls28{letter-spacing:224.040000px;}
.ls18{letter-spacing:248.579046px;}
.ls25{letter-spacing:263.511501px;}
.ls1a{letter-spacing:310.671252px;}
.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;}
}
.ws7{word-spacing:-72.216000px;}
.ws2d{word-spacing:-72.000000px;}
.ws50{word-spacing:-71.136000px;}
.ws4f{word-spacing:-70.416000px;}
.ws45{word-spacing:-48.240000px;}
.ws28{word-spacing:-43.789267px;}
.ws2e{word-spacing:-42.416277px;}
.ws37{word-spacing:-41.504998px;}
.ws4b{word-spacing:-41.388176px;}
.ws40{word-spacing:-41.124495px;}
.ws3f{word-spacing:-41.122793px;}
.ws27{word-spacing:-40.807979px;}
.ws44{word-spacing:-40.166645px;}
.ws39{word-spacing:-39.200982px;}
.ws22{word-spacing:-39.178443px;}
.ws4e{word-spacing:-39.081139px;}
.ws1{word-spacing:-21.060000px;}
.ws3{word-spacing:-18.216000px;}
.ws4{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.784000px;}
.ws0{word-spacing:-15.238800px;}
.ws1b{word-spacing:-13.811760px;}
.ws9{word-spacing:-13.464720px;}
.ws31{word-spacing:-12.060000px;}
.ws2c{word-spacing:-0.075601px;}
.ws48{word-spacing:-0.075388px;}
.ws3c{word-spacing:-0.074908px;}
.ws23{word-spacing:-0.074331px;}
.ws1d{word-spacing:-0.074183px;}
.ws3e{word-spacing:-0.074107px;}
.ws42{word-spacing:-0.073163px;}
.ws21{word-spacing:-0.071363px;}
.ws4c{word-spacing:-0.071186px;}
.wsc{word-spacing:-0.046652px;}
.ws2a{word-spacing:-0.044064px;}
.ws24{word-spacing:-0.043434px;}
.ws17{word-spacing:-0.043431px;}
.ws1e{word-spacing:-0.043285px;}
.ws30{word-spacing:-0.042920px;}
.ws52{word-spacing:-0.042644px;}
.ws19{word-spacing:-0.039311px;}
.wsd{word-spacing:-0.039071px;}
.wsb{word-spacing:-0.028430px;}
.ws6{word-spacing:0.000000px;}
.ws3d{word-spacing:0.978333px;}
.ws41{word-spacing:1.113860px;}
.ws34{word-spacing:1.293876px;}
.ws49{word-spacing:1.630229px;}
.ws1c{word-spacing:2.388309px;}
.ws1f{word-spacing:2.437722px;}
.ws25{word-spacing:2.480775px;}
.ws33{word-spacing:2.794347px;}
.ws43{word-spacing:11.126792px;}
.ws4d{word-spacing:11.450350px;}
.ws15{word-spacing:35.668069px;}
.ws3a{word-spacing:37.446083px;}
.ws55{word-spacing:43.452000px;}
.ws56{word-spacing:43.836864px;}
.ws57{word-spacing:43.902000px;}
.ws54{word-spacing:43.962000px;}
.ws53{word-spacing:44.082000px;}
.wsf{word-spacing:46.907585px;}
.ws13{word-spacing:49.889689px;}
.ws14{word-spacing:61.103097px;}
.ws10{word-spacing:68.745321px;}
.wsa{word-spacing:72.386657px;}
.ws11{word-spacing:72.394646px;}
.ws38{word-spacing:73.846458px;}
.ws47{word-spacing:77.387023px;}
.ws3b{word-spacing:77.966167px;}
.ws1a{word-spacing:88.435005px;}
.ws18{word-spacing:88.441496px;}
.ws12{word-spacing:91.250278px;}
.wse{word-spacing:115.379095px;}
.ws51{word-spacing:123.828989px;}
.ws16{word-spacing:126.249426px;}
.ws2f{word-spacing:149.220961px;}
.ws59{word-spacing:181.494000px;}
.ws5a{word-spacing:182.034000px;}
.ws58{word-spacing:182.046000px;}
.ws20{word-spacing:186.267386px;}
.ws46{word-spacing:236.362287px;}
.ws26{word-spacing:280.465113px;}
.ws4a{word-spacing:330.976472px;}
.ws2b{word-spacing:579.642100px;}
.ws32{word-spacing:667.425667px;}
.ws29{word-spacing:699.628292px;}
.ws36{word-spacing:1093.764635px;}
.ws35{word-spacing:1473.525404px;}
._62{margin-left:-699.579313px;}
._63{margin-left:-437.522044px;}
._60{margin-left:-430.715236px;}
._61{margin-left:-421.783864px;}
._56{margin-left:-418.466050px;}
._76{margin-left:-417.191124px;}
._57{margin-left:-414.893501px;}
._3f{margin-left:-368.471654px;}
._46{margin-left:-341.154599px;}
._47{margin-left:-338.688252px;}
._64{margin-left:-287.929912px;}
._5f{margin-left:-256.685638px;}
._34{margin-left:-241.652486px;}
._5e{margin-left:-240.425568px;}
._3e{margin-left:-238.424878px;}
._43{margin-left:-237.346174px;}
._40{margin-left:-233.397248px;}
._5a{margin-left:-231.864759px;}
._4c{margin-left:-227.399111px;}
._5c{margin-left:-224.763937px;}
._44{margin-left:-221.216116px;}
._79{margin-left:-212.628217px;}
._58{margin-left:-202.886636px;}
._5d{margin-left:-200.510891px;}
._4f{margin-left:-195.138566px;}
._28{margin-left:-190.457428px;}
._41{margin-left:-188.418513px;}
._6d{margin-left:-181.682163px;}
._45{margin-left:-180.322340px;}
._7d{margin-left:-178.500589px;}
._78{margin-left:-172.644002px;}
._6e{margin-left:-171.388164px;}
._7e{margin-left:-166.130931px;}
._59{margin-left:-163.527472px;}
._35{margin-left:-160.812456px;}
._77{margin-left:-158.463114px;}
._3b{margin-left:-157.417952px;}
._32{margin-left:-156.331685px;}
._2e{margin-left:-154.781061px;}
._42{margin-left:-153.759454px;}
._4e{margin-left:-148.431579px;}
._38{margin-left:-145.799510px;}
._4d{margin-left:-140.663701px;}
._72{margin-left:-139.278485px;}
._74{margin-left:-135.721812px;}
._75{margin-left:-132.267181px;}
._6b{margin-left:-130.868478px;}
._73{margin-left:-129.161988px;}
._51{margin-left:-119.875922px;}
._52{margin-left:-118.401703px;}
._2d{margin-left:-116.596534px;}
._50{margin-left:-111.928052px;}
._7c{margin-left:-107.020921px;}
._2a{margin-left:-103.737890px;}
._37{margin-left:-99.984941px;}
._65{margin-left:-98.243029px;}
._3a{margin-left:-92.670950px;}
._7b{margin-left:-91.151214px;}
._70{margin-left:-89.858597px;}
._30{margin-left:-87.003294px;}
._2c{margin-left:-81.422556px;}
._48{margin-left:-79.919407px;}
._31{margin-left:-77.501283px;}
._39{margin-left:-72.379560px;}
._49{margin-left:-71.115024px;}
._29{margin-left:-54.372325px;}
._5b{margin-left:-52.601317px;}
._33{margin-left:-50.473636px;}
._2f{margin-left:-48.312300px;}
._2b{margin-left:-42.291319px;}
._36{margin-left:-33.656238px;}
._71{margin-left:-19.440000px;}
._6{margin-left:-9.792000px;}
._67{margin-left:-8.496000px;}
._d{margin-left:-7.441440px;}
._3{margin-left:-6.336000px;}
._5{margin-left:-5.112000px;}
._2{margin-left:-4.020000px;}
._1{margin-left:-2.568240px;}
._4{margin-left:-1.152000px;}
._0{width:1.513440px;}
._a{width:2.595360px;}
._e{width:3.819840px;}
._f{width:5.256000px;}
._c{width:7.068000px;}
._b{width:8.412000px;}
._19{width:10.008000px;}
._1b{width:11.448000px;}
._27{width:13.392000px;}
._8{width:14.544000px;}
._9{width:15.550560px;}
._10{width:16.560000px;}
._1a{width:19.512000px;}
._1c{width:20.589120px;}
._55{width:21.621120px;}
._53{width:23.328000px;}
._54{width:24.408000px;}
._6c{width:25.488000px;}
._4a{width:26.640000px;}
._13{width:28.080000px;}
._12{width:29.232000px;}
._11{width:30.528000px;}
._7a{width:34.560000px;}
._7{width:36.480000px;}
._17{width:37.944000px;}
._18{width:39.240000px;}
._68{width:40.788000px;}
._69{width:43.056000px;}
._6a{width:44.244000px;}
._6f{width:46.114560px;}
._14{width:47.304000px;}
._15{width:48.528000px;}
._16{width:49.824000px;}
._24{width:50.984764px;}
._3d{width:52.008852px;}
._3c{width:53.199236px;}
._7f{width:58.104000px;}
._80{width:59.326560px;}
._25{width:62.692872px;}
._66{width:70.560000px;}
._1d{width:73.448306px;}
._23{width:78.891624px;}
._21{width:90.157065px;}
._22{width:91.914793px;}
._20{width:93.353324px;}
._1f{width:104.141144px;}
._1e{width:114.277892px;}
._81{width:115.344000px;}
._82{width:116.352000px;}
._26{width:127.446972px;}
._4b{width:194.400000px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,112,192);}
.fc5{color:rgb(89,89,89);}
.fc4{color:rgb(64,64,64);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:28.430302px;}
.fs4{font-size:38.880000px;}
.fs5{font-size:39.071106px;}
.fs9{font-size:39.311114px;}
.fs26{font-size:41.536051px;}
.fs16{font-size:41.652238px;}
.fs20{font-size:42.643531px;}
.fs12{font-size:42.920032px;}
.fsb{font-size:43.284937px;}
.fs8{font-size:43.431063px;}
.fse{font-size:43.434292px;}
.fs1e{font-size:43.718180px;}
.fs19{font-size:43.719989px;}
.fs11{font-size:44.064414px;}
.fs7{font-size:46.651709px;}
.fs3{font-size:48.240000px;}
.fs2b{font-size:54.000000px;}
.fs2c{font-size:54.144000px;}
.fs0{font-size:59.760000px;}
.fs2a{font-size:66.240000px;}
.fs25{font-size:71.186046px;}
.fsc{font-size:71.363284px;}
.fs17{font-size:71.404339px;}
.fs23{font-size:71.830905px;}
.fs1{font-size:72.000000px;}
.fs1f{font-size:73.163288px;}
.fs13{font-size:73.557965px;}
.fs1b{font-size:74.106886px;}
.fsa{font-size:74.183353px;}
.fsd{font-size:74.331473px;}
.fs1d{font-size:74.904906px;}
.fs18{font-size:74.908006px;}
.fs22{font-size:75.388298px;}
.fs10{font-size:75.601089px;}
.fs21{font-size:76.006134px;}
.fs1a{font-size:76.006140px;}
.fs14{font-size:76.100409px;}
.fs15{font-size:77.260977px;}
.fs1c{font-size:78.313184px;}
.fs28{font-size:78.313213px;}
.fs24{font-size:78.313218px;}
.fs27{font-size:78.313233px;}
.fs29{font-size:78.374782px;}
.fsf{font-size:79.761870px;}
.fs2{font-size:84.240000px;}
.yc6{bottom:-240.848714px;}
.y114{bottom:-236.256394px;}
.y10b{bottom:-236.256380px;}
.y113{bottom:-209.852407px;}
.y10a{bottom:-209.852392px;}
.yc5{bottom:-206.013744px;}
.ybd{bottom:-206.013731px;}
.yb5{bottom:-206.013717px;}
.y10d{bottom:-197.405045px;}
.y104{bottom:-197.405031px;}
.yc0{bottom:-193.116412px;}
.yb8{bottom:-193.116398px;}
.yb0{bottom:-193.116384px;}
.y10e{bottom:-160.200908px;}
.y105{bottom:-160.200894px;}
.yc1{bottom:-154.234661px;}
.yb9{bottom:-154.234648px;}
.yb1{bottom:-154.234634px;}
.yc7{bottom:-127.329432px;}
.ybe{bottom:-127.329418px;}
.yb6{bottom:-127.329404px;}
.y10f{bottom:-123.154189px;}
.y106{bottom:-123.154175px;}
.yc2{bottom:-115.350913px;}
.yba{bottom:-115.350899px;}
.yb2{bottom:-115.350886px;}
.y115{bottom:-112.558515px;}
.y10c{bottom:-112.558500px;}
.y110{bottom:-85.989000px;}
.y107{bottom:-85.988986px;}
.yc3{bottom:-76.421224px;}
.ybb{bottom:-76.421211px;}
.yb3{bottom:-76.421197px;}
.y111{bottom:-48.943904px;}
.y108{bottom:-48.943890px;}
.yc4{bottom:-37.731226px;}
.ybc{bottom:-37.731212px;}
.yb4{bottom:-37.731198px;}
.yc8{bottom:-16.622711px;}
.ybf{bottom:-16.622698px;}
.yb7{bottom:-16.622684px;}
.y112{bottom:-11.896697px;}
.y109{bottom:-11.896683px;}
.y0{bottom:0.000000px;}
.y1ba{bottom:2.734290px;}
.y1bd{bottom:2.734376px;}
.y1b0{bottom:2.734405px;}
.y1b2{bottom:2.734412px;}
.y1c1{bottom:4.204749px;}
.y162{bottom:4.226149px;}
.y1ca{bottom:4.226187px;}
.y1b4{bottom:4.226224px;}
.y1ce{bottom:4.259659px;}
.y173{bottom:4.344815px;}
.y15b{bottom:4.344833px;}
.y1cd{bottom:4.362558px;}
.y1d7{bottom:4.785663px;}
.y165{bottom:4.945124px;}
.y15f{bottom:4.945136px;}
.y19e{bottom:5.440425px;}
.y14b{bottom:6.513107px;}
.y13d{bottom:6.550498px;}
.y13e{bottom:6.550503px;}
.y31{bottom:7.020000px;}
.y136{bottom:7.050000px;}
.y14e{bottom:7.090988px;}
.y14d{bottom:7.090992px;}
.y143{bottom:7.091003px;}
.y142{bottom:7.091015px;}
.y2f{bottom:7.200000px;}
.y1dd{bottom:7.363590px;}
.y1d1{bottom:7.363603px;}
.y1b7{bottom:7.363615px;}
.y1d2{bottom:7.363630px;}
.y1b8{bottom:7.363670px;}
.y1b9{bottom:7.421470px;}
.y1bc{bottom:7.421761px;}
.y1b1{bottom:7.421766px;}
.y1af{bottom:7.421784px;}
.y1ea{bottom:8.756754px;}
.y1c0{bottom:8.756756px;}
.y159{bottom:9.048524px;}
.y15a{bottom:9.048526px;}
.y1d6{bottom:9.250040px;}
.y166{bottom:9.558259px;}
.y167{bottom:9.558268px;}
.y160{bottom:9.558284px;}
.y19f{bottom:9.891707px;}
.y14a{bottom:11.165459px;}
.y13c{bottom:11.202672px;}
.y13f{bottom:11.202723px;}
.y22b{bottom:13.215000px;}
.y19a{bottom:17.875992px;}
.y5b{bottom:18.900000px;}
.y56{bottom:18.945000px;}
.y6e{bottom:19.080000px;}
.y19d{bottom:19.289317px;}
.yad{bottom:20.425614px;}
.ya5{bottom:20.425628px;}
.y9d{bottom:20.425642px;}
.y1a1{bottom:23.740015px;}
.y102{bottom:28.013868px;}
.yf9{bottom:28.013883px;}
.yf0{bottom:28.013897px;}
.y221{bottom:30.750000px;}
.y59{bottom:30.780000px;}
.y55{bottom:30.825000px;}
.y53{bottom:30.960000px;}
.y137{bottom:30.990000px;}
.y131{bottom:31.005000px;}
.y19c{bottom:31.687977px;}
.ya8{bottom:33.320949px;}
.ya0{bottom:33.320963px;}
.y96{bottom:33.320977px;}
.y1a0{bottom:34.797112px;}
.y5a{bottom:42.660000px;}
.y19b{bottom:42.781690px;}
.y5d{bottom:42.840000px;}
.y101{bottom:54.425971px;}
.yf8{bottom:54.425985px;}
.yef{bottom:54.425999px;}
.y64{bottom:54.540000px;}
.y58{bottom:54.720000px;}
.y138{bottom:54.750000px;}
.y69{bottom:54.765000px;}
.y97{bottom:59.307393px;}
.y222{bottom:61.230000px;}
.y65{bottom:66.600000px;}
.yfb{bottom:66.866841px;}
.yf2{bottom:66.866854px;}
.ye9{bottom:66.866868px;}
.y6{bottom:69.480000px;}
.ya9{bottom:72.204698px;}
.ya1{bottom:72.204711px;}
.y63{bottom:78.480000px;}
.y68{bottom:78.525000px;}
.y98{bottom:85.147998px;}
.y223{bottom:91.695000px;}
.y35{bottom:93.060000px;}
.y206{bottom:93.600000px;}
.y34{bottom:98.280000px;}
.y1e7{bottom:98.460000px;}
.y205{bottom:98.820000px;}
.yae{bottom:99.155867px;}
.ya6{bottom:99.155881px;}
.y9e{bottom:99.155895px;}
.yfc{bottom:104.069355px;}
.yf3{bottom:104.069369px;}
.yea{bottom:104.069383px;}
.y13a{bottom:106.020000px;}
.yaa{bottom:111.134386px;}
.ya2{bottom:111.134400px;}
.y99{bottom:111.134414px;}
.y61{bottom:111.420000px;}
.y33{bottom:111.960000px;}
.y204{bottom:113.760000px;}
.y60{bottom:116.640000px;}
.y224{bottom:122.190000px;}
.y1e6{bottom:122.220000px;}
.y139{bottom:123.480000px;}
.y21c{bottom:125.640000px;}
.y171{bottom:129.780000px;}
.y5f{bottom:130.320000px;}
.y32{bottom:136.260000px;}
.y9a{bottom:136.929078px;}
.yfd{bottom:141.116074px;}
.yf4{bottom:141.116088px;}
.yeb{bottom:141.116102px;}
.y21e{bottom:142.125000px;}
.y1e5{bottom:146.160000px;}
.y135{bottom:147.960000px;}
.y21b{bottom:149.400000px;}
.yab{bottom:150.018135px;}
.ya3{bottom:150.018148px;}
.y103{bottom:151.750697px;}
.yfa{bottom:151.750711px;}
.yf1{bottom:151.750725px;}
.y225{bottom:152.640000px;}
.y170{bottom:153.570000px;}
.y203{bottom:160.410000px;}
.y30{bottom:160.770000px;}
.y9b{bottom:162.915494px;}
.y121{bottom:163.470000px;}
.y1e4{bottom:169.950000px;}
.y5e{bottom:170.310000px;}
.y21a{bottom:173.190000px;}
.y198{bottom:176.250000px;}
.y16f{bottom:177.330000px;}
.yfe{bottom:178.157925px;}
.yf5{bottom:178.157939px;}
.yec{bottom:178.157953px;}
.y202{bottom:178.590000px;}
.y226{bottom:183.090000px;}
.y2e{bottom:185.250000px;}
.y120{bottom:187.230000px;}
.yac{bottom:188.708133px;}
.ya4{bottom:188.708146px;}
.y9c{bottom:188.708161px;}
.y1e3{bottom:193.710000px;}
.y219{bottom:196.950000px;}
.y197{bottom:200.010000px;}
.y16e{bottom:201.090000px;}
.y21f{bottom:203.070000px;}
.y201{bottom:203.970000px;}
.yaf{bottom:209.868780px;}
.ya7{bottom:209.868794px;}
.y9f{bottom:209.868807px;}
.y11f{bottom:210.990000px;}
.y227{bottom:213.585000px;}
.yff{bottom:215.175433px;}
.yf6{bottom:215.175447px;}
.yed{bottom:215.175461px;}
.y2c{bottom:216.930000px;}
.y1e2{bottom:217.470000px;}
.y134{bottom:220.170000px;}
.y218{bottom:220.890000px;}
.y2d{bottom:222.870000px;}
.y196{bottom:223.770000px;}
.y16d{bottom:224.850000px;}
.y200{bottom:229.350000px;}
.y11e{bottom:234.750000px;}
.y2b{bottom:240.690000px;}
.y1e1{bottom:241.230000px;}
.y220{bottom:242.070000px;}
.y5c{bottom:242.490000px;}
.y228{bottom:244.050000px;}
.y217{bottom:244.650000px;}
.y93{bottom:246.860978px;}
.y8b{bottom:246.860992px;}
.y83{bottom:246.861005px;}
.y195{bottom:247.530000px;}
.y16c{bottom:248.790000px;}
.y100{bottom:252.209169px;}
.yf7{bottom:252.209183px;}
.yee{bottom:252.209197px;}
.y1ff{bottom:254.550000px;}
.y11d{bottom:258.690000px;}
.y8e{bottom:259.804251px;}
.y86{bottom:259.804265px;}
.y7e{bottom:259.804278px;}
.y2a{bottom:264.630000px;}
.y1e0{bottom:265.170000px;}
.y216{bottom:268.410000px;}
.y194{bottom:271.470000px;}
.y16b{bottom:272.550000px;}
.y229{bottom:274.530000px;}
.y1fe{bottom:279.930000px;}
.y11c{bottom:282.450000px;}
.y29{bottom:288.390000px;}
.y1df{bottom:288.930000px;}
.y215{bottom:292.170000px;}
.ye7{bottom:292.277654px;}
.yde{bottom:292.277668px;}
.yd5{bottom:292.277682px;}
.y133{bottom:292.350000px;}
.y193{bottom:295.230000px;}
.y16a{bottom:296.310000px;}
.y8f{bottom:298.693991px;}
.y87{bottom:298.694005px;}
.y7f{bottom:298.694019px;}
.y22a{bottom:304.995000px;}
.y1fd{bottom:305.130000px;}
.y11b{bottom:306.210000px;}
.y28{bottom:312.150000px;}
.y1de{bottom:312.690000px;}
.y57{bottom:314.670000px;}
.y214{bottom:316.110000px;}
.y132{bottom:316.830000px;}
.ye6{bottom:318.697871px;}
.ydd{bottom:318.697885px;}
.yd4{bottom:318.697899px;}
.y192{bottom:318.990000px;}
.y169{bottom:320.070000px;}
.y94{bottom:325.599221px;}
.y8c{bottom:325.599235px;}
.y84{bottom:325.599248px;}
.y11a{bottom:329.970000px;}
.y1fc{bottom:330.510000px;}
.ye0{bottom:331.177689px;}
.yd7{bottom:331.177703px;}
.ycd{bottom:331.177717px;}
.y1dc{bottom:332.565000px;}
.y27{bottom:335.910000px;}
.y90{bottom:337.563757px;}
.y88{bottom:337.563772px;}
.y80{bottom:337.563785px;}
.y213{bottom:339.870000px;}
.y1db{bottom:340.050000px;}
.y191{bottom:342.750000px;}
.y168{bottom:344.010000px;}
.y7c{bottom:353.730000px;}
.y1fb{bottom:355.710000px;}
.y26{bottom:359.670000px;}
.yce{bottom:362.141945px;}
.y212{bottom:363.630000px;}
.y164{bottom:363.839959px;}
.y1da{bottom:363.990000px;}
.y190{bottom:366.690000px;}
.ye1{bottom:368.341254px;}
.yd8{bottom:368.341268px;}
.y163{bottom:372.810000px;}
.y91{bottom:376.453498px;}
.y89{bottom:376.453512px;}
.y81{bottom:376.453525px;}
.y7b{bottom:377.490000px;}
.y119{bottom:377.670000px;}
.y1fa{bottom:381.090000px;}
.y25{bottom:383.610000px;}
.y1d8{bottom:383.864959px;}
.y18f{bottom:384.150000px;}
.y54{bottom:386.850000px;}
.y211{bottom:387.390000px;}
.y130{bottom:389.010000px;}
.y1d9{bottom:391.350000px;}
.ycf{bottom:392.943888px;}
.y15e{bottom:394.814959px;}
.y161{bottom:399.315000px;}
.y7a{bottom:401.475000px;}
.y15d{bottom:403.815000px;}
.ye2{bottom:405.391220px;}
.yd9{bottom:405.391234px;}
.y1f9{bottom:406.515000px;}
.y24{bottom:407.415000px;}
.y18e{bottom:408.675000px;}
.y1d5{bottom:411.240000px;}
.y210{bottom:411.375000px;}
.y92{bottom:415.203419px;}
.y8a{bottom:415.203433px;}
.y82{bottom:415.203446px;}
.ye8{bottom:415.858688px;}
.ydf{bottom:415.858702px;}
.yd6{bottom:415.858716px;}
.y1d4{bottom:420.195000px;}
.yd0{bottom:423.908116px;}
.y79{bottom:425.235000px;}
.y158{bottom:425.789959px;}
.y23{bottom:431.175000px;}
.y1f8{bottom:431.715000px;}
.y18d{bottom:433.335000px;}
.y15c{bottom:434.775000px;}
.y52{bottom:435.135000px;}
.y95{bottom:436.296154px;}
.y8d{bottom:436.296168px;}
.y85{bottom:436.296181px;}
.y1d0{bottom:441.239959px;}
.ye3{bottom:442.424956px;}
.yda{bottom:442.424970px;}
.y1d3{bottom:444.315000px;}
.y1cf{bottom:448.815000px;}
.y78{bottom:448.995000px;}
.yd1{bottom:454.710058px;}
.y22{bottom:454.935000px;}
.y1f7{bottom:457.095000px;}
.y18c{bottom:457.815000px;}
.y20f{bottom:458.895000px;}
.y157{bottom:460.875000px;}
.y12f{bottom:461.235000px;}
.y1cc{bottom:468.990000px;}
.y77{bottom:472.755000px;}
.y118{bottom:472.935000px;}
.y1cb{bottom:473.475000px;}
.y21{bottom:478.875000px;}
.ye4{bottom:479.474921px;}
.ydb{bottom:479.474935px;}
.y18b{bottom:482.295000px;}
.y20e{bottom:482.655000px;}
.y51{bottom:483.555000px;}
.y156{bottom:484.635000px;}
.yd2{bottom:485.674287px;}
.y12e{bottom:485.895000px;}
.y1c9{bottom:493.664959px;}
.y76{bottom:496.695000px;}
.y1c8{bottom:498.135000px;}
.y20{bottom:502.635000px;}
.y20d{bottom:506.415000px;}
.y18a{bottom:506.955000px;}
.y1f6{bottom:507.675000px;}
.y155{bottom:508.395000px;}
.y4f{bottom:515.235000px;}
.ye5{bottom:516.524887px;}
.ydc{bottom:516.524900px;}
.yd3{bottom:516.524915px;}
.y75{bottom:520.455000px;}
.y50{bottom:521.175000px;}
.y1c7{bottom:522.075000px;}
.y1f{bottom:526.395000px;}
.y20c{bottom:530.355000px;}
.y189{bottom:531.435000px;}
.y154{bottom:532.155000px;}
.y12d{bottom:534.135000px;}
.y4e{bottom:538.995000px;}
.y74{bottom:544.215000px;}
.y1c6{bottom:545.835000px;}
.y1e{bottom:550.155000px;}
.y20b{bottom:554.115000px;}
.y153{bottom:556.095000px;}
.y4d{bottom:562.755000px;}
.y73{bottom:567.975000px;}
.y117{bottom:568.155000px;}
.y1c5{bottom:569.775000px;}
.y1d{bottom:574.095000px;}
.y20a{bottom:577.875000px;}
.y152{bottom:579.855000px;}
.y188{bottom:580.575000px;}
.y12c{bottom:582.555000px;}
.y4c{bottom:586.515000px;}
.ycc{bottom:587.939959px;}
.y116{bottom:587.955000px;}
.y72{bottom:591.915000px;}
.y1c4{bottom:593.535000px;}
.y1c{bottom:597.855000px;}
.y209{bottom:601.635000px;}
.y151{bottom:603.615000px;}
.y187{bottom:605.055000px;}
.y12b{bottom:607.035000px;}
.y4b{bottom:610.455000px;}
.y1f5{bottom:611.355000px;}
.y71{bottom:615.675000px;}
.y1c3{bottom:617.295000px;}
.y1b{bottom:621.615000px;}
.y208{bottom:625.575000px;}
.y150{bottom:627.375000px;}
.y186{bottom:629.715000px;}
.y4a{bottom:634.215000px;}
.y1f4{bottom:635.295000px;}
.y70{bottom:639.435000px;}
.y1c2{bottom:641.055000px;}
.y207{bottom:645.195000px;}
.y1a{bottom:645.375000px;}
.yca{bottom:645.555000px;}
.y21d{bottom:646.380000px;}
.y14f{bottom:651.345000px;}
.ycb{bottom:651.525000px;}
.y49{bottom:651.705000px;}
.y185{bottom:654.225000px;}
.y12a{bottom:655.485000px;}
.y1f3{bottom:659.085000px;}
.y1bf{bottom:660.839959px;}
.y1bb{bottom:662.339959px;}
.y6f{bottom:663.225000px;}
.y7d{bottom:665.339959px;}
.yc9{bottom:665.385000px;}
.y19{bottom:669.345000px;}
.y1be{bottom:669.885000px;}
.y149{bottom:671.115000px;}
.y14c{bottom:674.039959px;}
.y48{bottom:676.185000px;}
.y6d{bottom:680.685000px;}
.y148{bottom:681.585000px;}
.y1f2{bottom:682.845000px;}
.y184{bottom:685.905000px;}
.y1b6{bottom:691.664919px;}
.y18{bottom:693.105000px;}
.y1b5{bottom:699.225000px;}
.y47{bottom:700.845000px;}
.y129{bottom:703.725000px;}
.y1f1{bottom:706.605000px;}
.y147{bottom:707.865000px;}
.y183{bottom:709.665000px;}
.y17{bottom:716.865000px;}
.y1ae{bottom:720.989919px;}
.y1b3{bottom:724.064919px;}
.y46{bottom:725.325000px;}
.y128{bottom:728.385000px;}
.y1ad{bottom:728.565000px;}
.y6c{bottom:729.105000px;}
.y1f0{bottom:730.545000px;}
.y146{bottom:731.625000px;}
.y182{bottom:733.425000px;}
.y16{bottom:740.625000px;}
.y45{bottom:749.985000px;}
.y1ac{bottom:754.125000px;}
.y1ef{bottom:754.305000px;}
.y145{bottom:755.565000px;}
.y181{bottom:757.365000px;}
.y15{bottom:764.565000px;}
.y44{bottom:774.465000px;}
.y127{bottom:776.805000px;}
.y6b{bottom:777.525000px;}
.y1ab{bottom:777.885000px;}
.y1ee{bottom:778.065000px;}
.y144{bottom:779.325000px;}
.y180{bottom:781.125000px;}
.y14{bottom:788.325000px;}
.y43{bottom:798.945000px;}
.y13b{bottom:799.139919px;}
.y1aa{bottom:801.645000px;}
.y1ed{bottom:801.825000px;}
.y141{bottom:801.989919px;}
.y17f{bottom:804.885000px;}
.y140{bottom:809.565000px;}
.y13{bottom:812.085000px;}
.y42{bottom:823.605000px;}
.y126{bottom:825.045000px;}
.y1a9{bottom:825.405000px;}
.y6a{bottom:825.765000px;}
.y17d{bottom:828.645000px;}
.y17e{bottom:834.585000px;}
.y12{bottom:835.845000px;}
.y1a8{bottom:849.345000px;}
.y1ec{bottom:849.525000px;}
.y125{bottom:849.705000px;}
.y17c{bottom:852.405000px;}
.y40{bottom:855.105000px;}
.y11{bottom:859.605000px;}
.y41{bottom:861.045000px;}
.y1a7{bottom:873.105000px;}
.y1eb{bottom:873.285000px;}
.y67{bottom:874.185000px;}
.y17b{bottom:876.345000px;}
.y3f{bottom:879.045000px;}
.y10{bottom:883.545000px;}
.y1a6{bottom:896.865000px;}
.y1e9{bottom:897.014919px;}
.y1e8{bottom:897.045000px;}
.y124{bottom:897.990000px;}
.y17a{bottom:900.150000px;}
.y3e{bottom:902.850000px;}
.yf{bottom:907.350000px;}
.y1a5{bottom:920.670000px;}
.y179{bottom:923.910000px;}
.y3d{bottom:926.610000px;}
.ye{bottom:931.110000px;}
.y1a4{bottom:944.610000px;}
.y123{bottom:946.410000px;}
.y178{bottom:947.670000px;}
.y3c{bottom:950.370000px;}
.yd{bottom:954.870000px;}
.y1a3{bottom:968.370000px;}
.y66{bottom:970.170000px;}
.y177{bottom:971.610000px;}
.y3b{bottom:974.310000px;}
.yc{bottom:978.810000px;}
.y199{bottom:988.139919px;}
.y3a{bottom:991.770000px;}
.y122{bottom:994.830000px;}
.y176{bottom:995.370000px;}
.yb{bottom:1002.570000px;}
.y1a2{bottom:1012.110000px;}
.y39{bottom:1016.250000px;}
.y62{bottom:1018.590000px;}
.y175{bottom:1019.130000px;}
.ya{bottom:1026.330000px;}
.y172{bottom:1038.840000px;}
.y38{bottom:1040.910000px;}
.y174{bottom:1047.930000px;}
.y9{bottom:1050.090000px;}
.y37{bottom:1065.390000px;}
.y8{bottom:1074.030000px;}
.y36{bottom:1089.870000px;}
.y7{bottom:1097.790000px;}
.y5{bottom:1130.550000px;}
.y4{bottom:1162.440000px;}
.y3{bottom:1191.780000px;}
.y2{bottom:1220.940000px;}
.y1{bottom:1238.220000px;}
.h33{height:16.200191px;}
.h50{height:16.200232px;}
.h44{height:16.200273px;}
.h52{height:21.599588px;}
.h2b{height:23.400983px;}
.h24{height:23.401023px;}
.hc{height:23.760000px;}
.hd{height:23.796000px;}
.hb{height:23.940000px;}
.h5b{height:24.300604px;}
.h55{height:24.300645px;}
.h46{height:24.300686px;}
.h49{height:26.099916px;}
.h4c{height:26.100955px;}
.h3f{height:26.100996px;}
.h57{height:26.999766px;}
.h4d{height:27.000504px;}
.h5e{height:27.000544px;}
.h30{height:27.899439px;}
.h37{height:27.900118px;}
.h2c{height:27.900159px;}
.h18{height:29.651917px;}
.h26{height:29.699571px;}
.h1f{height:29.699652px;}
.he{height:38.671172px;}
.h17{height:40.749943px;}
.h3d{height:40.859056px;}
.h3b{height:40.879394px;}
.h1c{height:41.000263px;}
.h31{height:42.102707px;}
.h2{height:42.164648px;}
.h22{height:42.460664px;}
.h29{height:42.607174px;}
.h41{height:42.908778px;}
.h2f{height:43.246812px;}
.h1b{height:45.297241px;}
.h15{height:47.520000px;}
.h11{height:47.556000px;}
.h10{height:47.700000px;}
.h1d{height:47.736000px;}
.ha{height:48.616875px;}
.h19{height:48.656275px;}
.h6{height:50.800781px;}
.h51{height:52.773790px;}
.h45{height:52.773794px;}
.h34{height:52.839249px;}
.h35{height:53.645073px;}
.h63{height:53.709961px;}
.h48{height:54.375658px;}
.h5c{height:54.375678px;}
.h56{height:54.375682px;}
.h5a{height:54.375692px;}
.h5d{height:54.418428px;}
.h3a{height:54.899234px;}
.h2d{height:55.381533px;}
.hf{height:59.439023px;}
.h3{height:60.226875px;}
.h9{height:63.457031px;}
.h60{height:65.884219px;}
.h58{height:69.865211px;}
.h39{height:69.876211px;}
.h25{height:70.039161px;}
.h3e{height:70.044589px;}
.h21{height:70.116957px;}
.h28{height:70.220419px;}
.h54{height:70.463032px;}
.h8{height:70.664062px;}
.h12{height:71.460000px;}
.h1e{height:71.496000px;}
.h5f{height:71.770042px;}
.h4e{height:71.805766px;}
.h32{height:72.157203px;}
.h36{height:72.193120px;}
.h7{height:72.562500px;}
.h47{height:72.731856px;}
.h23{height:72.770682px;}
.h20{height:72.806904px;}
.h2a{height:72.915981px;}
.h27{height:72.952276px;}
.h40{height:73.481535px;}
.h4a{height:73.515069px;}
.h42{height:73.518111px;}
.h53{height:73.989492px;}
.h61{height:74.004654px;}
.h2e{height:74.198334px;}
.h5{height:82.676953px;}
.h4{height:84.898125px;}
.h59{height:87.687964px;}
.h3c{height:87.882210px;}
.h4f{height:89.978176px;}
.h4b{height:92.227391px;}
.h43{height:92.231207px;}
.h38{height:93.013163px;}
.h13{height:95.220000px;}
.h14{height:95.256000px;}
.h64{height:136.689961px;}
.h65{height:185.349961px;}
.h62{height:325.260000px;}
.h16{height:449.099642px;}
.h1a{height:526.489296px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1f{width:15.299823px;}
.w34{width:16.199429px;}
.w1e{width:18.000600px;}
.w2d{width:18.000620px;}
.w32{width:18.000661px;}
.w35{width:18.900429px;}
.w2f{width:45.899598px;}
.w2b{width:48.599054px;}
.w28{width:49.500000px;}
.w3a{width:54.900003px;}
.wa{width:61.020000px;}
.w8{width:62.856000px;}
.wc{width:65.160000px;}
.w39{width:66.600756px;}
.w36{width:66.600772px;}
.w2e{width:66.600792px;}
.wd{width:67.176000px;}
.w11{width:67.320000px;}
.w10{width:67.356000px;}
.w13{width:67.500000px;}
.w12{width:67.536000px;}
.wb{width:70.956000px;}
.w16{width:71.640000px;}
.w7{width:73.260000px;}
.w9{width:74.880000px;}
.w18{width:78.300936px;}
.we{width:78.480000px;}
.wf{width:86.040000px;}
.w1b{width:89.100568px;}
.w25{width:95.076000px;}
.w31{width:96.303188px;}
.w2a{width:97.196267px;}
.w3c{width:97.740000px;}
.w2c{width:100.796890px;}
.w3b{width:100.800149px;}
.w6{width:105.660000px;}
.w33{width:107.999956px;}
.w19{width:108.897207px;}
.w1c{width:108.897227px;}
.w20{width:111.596181px;}
.w38{width:115.203342px;}
.w23{width:122.256000px;}
.w30{width:122.397124px;}
.w3d{width:124.056000px;}
.w17{width:135.001262px;}
.w37{width:136.803655px;}
.w40{width:143.460000px;}
.w1a{width:143.995471px;}
.w26{width:148.140000px;}
.w3e{width:148.176000px;}
.w22{width:150.480000px;}
.w24{width:180.030000px;}
.w3f{width:184.710000px;}
.w29{width:225.615000px;}
.w1d{width:250.200867px;}
.w27{width:275.835000px;}
.w21{width:403.201290px;}
.w5{width:594.825000px;}
.w41{width:673.560000px;}
.w15{width:694.782295px;}
.w4{width:701.205000px;}
.w14{width:701.978834px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x39{left:-1.800000px;}
.x0{left:0.000000px;}
.x2b{left:1.080000px;}
.x61{left:2.340000px;}
.x38{left:4.320000px;}
.x2a{left:5.580000px;}
.xf{left:7.740000px;}
.x4f{left:8.862996px;}
.x33{left:10.620000px;}
.xb3{left:11.700000px;}
.x29{left:12.990000px;}
.x47{left:14.109057px;}
.x27{left:15.660000px;}
.x28{left:17.100000px;}
.x26{left:18.540000px;}
.x1a{left:19.800000px;}
.x4e{left:21.728197px;}
.xb5{left:23.040000px;}
.x1e{left:24.120000px;}
.x22{left:26.100000px;}
.x8f{left:27.585000px;}
.x20{left:29.010000px;}
.x1c{left:30.960000px;}
.x25{left:32.760000px;}
.x69{left:35.640000px;}
.x8e{left:36.900000px;}
.x6d{left:39.185340px;}
.x18{left:40.680000px;}
.x12{left:41.760000px;}
.x30{left:43.020000px;}
.xac{left:44.588701px;}
.x98{left:46.742600px;}
.x6c{left:48.142416px;}
.x77{left:49.971657px;}
.x8c{left:52.560000px;}
.x74{left:56.444096px;}
.x68{left:57.645000px;}
.x6a{left:60.705000px;}
.x82{left:67.229354px;}
.x8d{left:69.114000px;}
.x71{left:70.237087px;}
.x92{left:73.620000px;}
.xb8{left:74.700000px;}
.x93{left:75.832197px;}
.xb7{left:79.200000px;}
.x3{left:84.995987px;}
.x6b{left:86.136067px;}
.x87{left:88.056000px;}
.x14{left:89.855987px;}
.x81{left:92.300991px;}
.x6{left:94.355987px;}
.x7{left:96.155987px;}
.xa3{left:98.397943px;}
.xba{left:99.900000px;}
.x80{left:103.001532px;}
.x73{left:105.416513px;}
.xaf{left:107.135987px;}
.x9c{left:110.630370px;}
.x91{left:112.350000px;}
.x58{left:120.455987px;}
.x43{left:122.419715px;}
.x3a{left:124.470506px;}
.x7b{left:136.617670px;}
.xbb{left:137.880000px;}
.xa9{left:148.964990px;}
.xa2{left:151.439990px;}
.x2f{left:165.090000px;}
.x17{left:167.070000px;}
.x60{left:172.290000px;}
.xad{left:178.139980px;}
.xb2{left:192.450000px;}
.x72{left:195.764980px;}
.x9{left:205.229987px;}
.x9d{left:207.389987px;}
.x4b{left:220.529987px;}
.xc{left:224.849987px;}
.x6e{left:229.065000px;}
.x84{left:233.715000px;}
.x2c{left:236.729987px;}
.x88{left:239.430000px;}
.x19{left:241.050000px;}
.x62{left:244.650000px;}
.x3d{left:247.417816px;}
.x56{left:249.803757px;}
.x31{left:251.850000px;}
.x52{left:254.636484px;}
.x3b{left:256.051206px;}
.xa4{left:259.409987px;}
.x44{left:262.199228px;}
.xaa{left:264.089987px;}
.x10{left:266.979000px;}
.x3c{left:268.914083px;}
.xae{left:278.894987px;}
.x5d{left:281.054987px;}
.x50{left:282.178648px;}
.x7a{left:287.039980px;}
.x7d{left:289.514980px;}
.x13{left:301.034987px;}
.x1b{left:304.635000px;}
.x6f{left:307.334987px;}
.x63{left:312.735000px;}
.x49{left:314.784419px;}
.xb4{left:317.235000px;}
.x32{left:319.935000px;}
.xbc{left:327.705000px;}
.x95{left:331.139980px;}
.x70{left:333.239980px;}
.x75{left:339.734987px;}
.xa{left:348.374987px;}
.x4{left:350.714987px;}
.x76{left:352.889959px;}
.x3e{left:359.303048px;}
.x89{left:362.415000px;}
.x51{left:366.024339px;}
.x1d{left:380.235000px;}
.x34{left:387.975000px;}
.x85{left:394.271943px;}
.x59{left:406.334987px;}
.x90{left:412.635000px;}
.x7f{left:426.839959px;}
.x5{left:430.634987px;}
.x1f{left:442.155000px;}
.x8{left:446.504987px;}
.x64{left:449.025000px;}
.xa7{left:453.690000px;}
.x2{left:457.124987px;}
.x94{left:463.964987px;}
.x97{left:466.439959px;}
.x78{left:472.064959px;}
.x5a{left:480.344973px;}
.x46{left:484.298247px;}
.x5b{left:486.464987px;}
.x41{left:489.646876px;}
.x45{left:492.931637px;}
.x7e{left:496.184987px;}
.x3f{left:499.123257px;}
.x48{left:503.745178px;}
.x40{left:505.809047px;}
.x53{left:508.861671px;}
.x1{left:510.404987px;}
.x21{left:513.825000px;}
.x65{left:517.065000px;}
.x54{left:523.124839px;}
.x35{left:524.265000px;}
.x99{left:533.084987px;}
.x7c{left:537.224987px;}
.x83{left:538.484987px;}
.x8a{left:543.165000px;}
.x9e{left:548.339959px;}
.xab{left:559.004987px;}
.x96{left:566.339959px;}
.x23{left:579.705000px;}
.x79{left:580.964987px;}
.x66{left:585.285000px;}
.xa8{left:590.504987px;}
.x36{left:592.485000px;}
.x42{left:596.183477px;}
.x5e{left:605.804973px;}
.x55{left:606.867706px;}
.x5f{left:611.924987px;}
.x86{left:636.989987px;}
.x8b{left:638.970000px;}
.x9f{left:644.729987px;}
.x24{left:647.610000px;}
.x2d{left:649.949973px;}
.xb6{left:651.570000px;}
.x67{left:653.370000px;}
.x2e{left:656.069987px;}
.x37{left:660.570000px;}
.xd{left:662.009973px;}
.x4c{left:666.329973px;}
.xe{left:668.129987px;}
.x4d{left:672.449987px;}
.xa5{left:673.664959px;}
.x15{left:681.269973px;}
.x16{left:687.389987px;}
.x11{left:689.550000px;}
.xa6{left:692.609987px;}
.xa0{left:703.514919px;}
.xa1{left:721.589987px;}
.x9a{left:731.264919px;}
.xb{left:744.989987px;}
.xb9{left:760.109987px;}
.xb0{left:775.589973px;}
.x9b{left:777.209987px;}
.x57{left:779.909987px;}
.xb1{left:781.709987px;}
.x4a{left:787.109987px;}
.x5c{left:808.019987px;}
@media print{
.v3{vertical-align:-16.724292pt;}
.v1{vertical-align:-5.120000pt;}
.v6{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.120000pt;}
.va{vertical-align:8.693333pt;}
.v2{vertical-align:16.541146pt;}
.vd{vertical-align:19.466667pt;}
.v4{vertical-align:24.320000pt;}
.vc{vertical-align:26.026667pt;}
.v9{vertical-align:30.346667pt;}
.vb{vertical-align:36.853333pt;}
.v7{vertical-align:47.626667pt;}
.v8{vertical-align:73.760000pt;}
.ls1c{letter-spacing:-13.440000pt;}
.ls12{letter-spacing:-8.960000pt;}
.ls13{letter-spacing:-2.551065pt;}
.ls11{letter-spacing:-2.243741pt;}
.ls10{letter-spacing:-2.205340pt;}
.lsf{letter-spacing:-2.188882pt;}
.ls20{letter-spacing:-1.516105pt;}
.ls23{letter-spacing:-1.408000pt;}
.ls14{letter-spacing:-1.217313pt;}
.ls1f{letter-spacing:-1.055132pt;}
.ls1d{letter-spacing:-0.935502pt;}
.ls24{letter-spacing:-0.768000pt;}
.ls21{letter-spacing:-0.640000pt;}
.ls1b{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.036480pt;}
.ls2a{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.106667pt;}
.ls29{letter-spacing:0.112000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.154880pt;}
.ls1{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.265600pt;}
.lsb{letter-spacing:0.272000pt;}
.lsd{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.366460pt;}
.lse{letter-spacing:0.640000pt;}
.ls16{letter-spacing:0.960000pt;}
.ls17{letter-spacing:2.560000pt;}
.ls22{letter-spacing:7.040000pt;}
.ls1e{letter-spacing:17.280000pt;}
.ls19{letter-spacing:17.403161pt;}
.ls26{letter-spacing:35.200000pt;}
.ls27{letter-spacing:108.800000pt;}
.ls15{letter-spacing:154.277379pt;}
.ls2b{letter-spacing:167.146667pt;}
.ls28{letter-spacing:199.146667pt;}
.ls18{letter-spacing:220.959152pt;}
.ls25{letter-spacing:234.232446pt;}
.ls1a{letter-spacing:276.152224pt;}
.ws7{word-spacing:-64.192000pt;}
.ws2d{word-spacing:-64.000000pt;}
.ws50{word-spacing:-63.232000pt;}
.ws4f{word-spacing:-62.592000pt;}
.ws45{word-spacing:-42.880000pt;}
.ws28{word-spacing:-38.923793pt;}
.ws2e{word-spacing:-37.703357pt;}
.ws37{word-spacing:-36.893331pt;}
.ws4b{word-spacing:-36.789489pt;}
.ws40{word-spacing:-36.555107pt;}
.ws3f{word-spacing:-36.553594pt;}
.ws27{word-spacing:-36.273759pt;}
.ws44{word-spacing:-35.703685pt;}
.ws39{word-spacing:-34.845318pt;}
.ws22{word-spacing:-34.825283pt;}
.ws4e{word-spacing:-34.738790pt;}
.ws1{word-spacing:-18.720000pt;}
.ws3{word-spacing:-16.192000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws0{word-spacing:-13.545600pt;}
.ws1b{word-spacing:-12.277120pt;}
.ws9{word-spacing:-11.968640pt;}
.ws31{word-spacing:-10.720000pt;}
.ws2c{word-spacing:-0.067201pt;}
.ws48{word-spacing:-0.067012pt;}
.ws3c{word-spacing:-0.066585pt;}
.ws23{word-spacing:-0.066072pt;}
.ws1d{word-spacing:-0.065941pt;}
.ws3e{word-spacing:-0.065873pt;}
.ws42{word-spacing:-0.065034pt;}
.ws21{word-spacing:-0.063434pt;}
.ws4c{word-spacing:-0.063276pt;}
.wsc{word-spacing:-0.041468pt;}
.ws2a{word-spacing:-0.039168pt;}
.ws24{word-spacing:-0.038608pt;}
.ws17{word-spacing:-0.038605pt;}
.ws1e{word-spacing:-0.038475pt;}
.ws30{word-spacing:-0.038151pt;}
.ws52{word-spacing:-0.037905pt;}
.ws19{word-spacing:-0.034943pt;}
.wsd{word-spacing:-0.034730pt;}
.wsb{word-spacing:-0.025271pt;}
.ws6{word-spacing:0.000000pt;}
.ws3d{word-spacing:0.869629pt;}
.ws41{word-spacing:0.990098pt;}
.ws34{word-spacing:1.150112pt;}
.ws49{word-spacing:1.449093pt;}
.ws1c{word-spacing:2.122941pt;}
.ws1f{word-spacing:2.166864pt;}
.ws25{word-spacing:2.205133pt;}
.ws33{word-spacing:2.483864pt;}
.ws43{word-spacing:9.890482pt;}
.ws4d{word-spacing:10.178088pt;}
.ws15{word-spacing:31.704950pt;}
.ws3a{word-spacing:33.285407pt;}
.ws55{word-spacing:38.624000pt;}
.ws56{word-spacing:38.966101pt;}
.ws57{word-spacing:39.024000pt;}
.ws54{word-spacing:39.077333pt;}
.ws53{word-spacing:39.184000pt;}
.wsf{word-spacing:41.695631pt;}
.ws13{word-spacing:44.346390pt;}
.ws14{word-spacing:54.313864pt;}
.ws10{word-spacing:61.106952pt;}
.wsa{word-spacing:64.343695pt;}
.ws11{word-spacing:64.350797pt;}
.ws38{word-spacing:65.641296pt;}
.ws47{word-spacing:68.788465pt;}
.ws3b{word-spacing:69.303260pt;}
.ws1a{word-spacing:78.608893pt;}
.ws18{word-spacing:78.614663pt;}
.ws12{word-spacing:81.111358pt;}
.wse{word-spacing:102.559195pt;}
.ws51{word-spacing:110.070213pt;}
.ws16{word-spacing:112.221712pt;}
.ws2f{word-spacing:132.640854pt;}
.ws59{word-spacing:161.328000pt;}
.ws5a{word-spacing:161.808000pt;}
.ws58{word-spacing:161.818667pt;}
.ws20{word-spacing:165.571010pt;}
.ws46{word-spacing:210.099811pt;}
.ws26{word-spacing:249.302322pt;}
.ws4a{word-spacing:294.201308pt;}
.ws2b{word-spacing:515.237422pt;}
.ws32{word-spacing:593.267259pt;}
.ws29{word-spacing:621.891815pt;}
.ws36{word-spacing:972.235231pt;}
.ws35{word-spacing:1309.800360pt;}
._62{margin-left:-621.848278pt;}
._63{margin-left:-388.908483pt;}
._60{margin-left:-382.857988pt;}
._61{margin-left:-374.918990pt;}
._56{margin-left:-371.969822pt;}
._76{margin-left:-370.836555pt;}
._57{margin-left:-368.794223pt;}
._3f{margin-left:-327.530359pt;}
._46{margin-left:-303.248533pt;}
._47{margin-left:-301.056224pt;}
._64{margin-left:-255.937700pt;}
._5f{margin-left:-228.165012pt;}
._34{margin-left:-214.802210pt;}
._5e{margin-left:-213.711616pt;}
._3e{margin-left:-211.933225pt;}
._43{margin-left:-210.974377pt;}
._40{margin-left:-207.464220pt;}
._5a{margin-left:-206.102008pt;}
._4c{margin-left:-202.132543pt;}
._5c{margin-left:-199.790166pt;}
._44{margin-left:-196.636548pt;}
._79{margin-left:-189.002859pt;}
._58{margin-left:-180.343676pt;}
._5d{margin-left:-178.231903pt;}
._4f{margin-left:-173.456503pt;}
._28{margin-left:-169.295491pt;}
._41{margin-left:-167.483123pt;}
._6d{margin-left:-161.495256pt;}
._45{margin-left:-160.286524pt;}
._7d{margin-left:-158.667191pt;}
._78{margin-left:-153.461335pt;}
._6e{margin-left:-152.345035pt;}
._7e{margin-left:-147.671938pt;}
._59{margin-left:-145.357753pt;}
._35{margin-left:-142.944406pt;}
._77{margin-left:-140.856101pt;}
._3b{margin-left:-139.927069pt;}
._32{margin-left:-138.961498pt;}
._2e{margin-left:-137.583165pt;}
._42{margin-left:-136.675070pt;}
._4e{margin-left:-131.939181pt;}
._38{margin-left:-129.599564pt;}
._4d{margin-left:-125.034401pt;}
._72{margin-left:-123.803097pt;}
._74{margin-left:-120.641611pt;}
._75{margin-left:-117.570828pt;}
._6b{margin-left:-116.327536pt;}
._73{margin-left:-114.810656pt;}
._51{margin-left:-106.556376pt;}
._52{margin-left:-105.245959pt;}
._2d{margin-left:-103.641364pt;}
._50{margin-left:-99.491601pt;}
._7c{margin-left:-95.129707pt;}
._2a{margin-left:-92.211458pt;}
._37{margin-left:-88.875503pt;}
._65{margin-left:-87.327137pt;}
._3a{margin-left:-82.374178pt;}
._7b{margin-left:-81.023302pt;}
._70{margin-left:-79.874308pt;}
._30{margin-left:-77.336261pt;}
._2c{margin-left:-72.375605pt;}
._48{margin-left:-71.039473pt;}
._31{margin-left:-68.890029pt;}
._39{margin-left:-64.337387pt;}
._49{margin-left:-63.213355pt;}
._29{margin-left:-48.330955pt;}
._5b{margin-left:-46.756726pt;}
._33{margin-left:-44.865454pt;}
._2f{margin-left:-42.944266pt;}
._2b{margin-left:-37.592283pt;}
._36{margin-left:-29.916656pt;}
._71{margin-left:-17.280000pt;}
._6{margin-left:-8.704000pt;}
._67{margin-left:-7.552000pt;}
._d{margin-left:-6.614613pt;}
._3{margin-left:-5.632000pt;}
._5{margin-left:-4.544000pt;}
._2{margin-left:-3.573333pt;}
._1{margin-left:-2.282880pt;}
._4{margin-left:-1.024000pt;}
._0{width:1.345280pt;}
._a{width:2.306987pt;}
._e{width:3.395413pt;}
._f{width:4.672000pt;}
._c{width:6.282667pt;}
._b{width:7.477333pt;}
._19{width:8.896000pt;}
._1b{width:10.176000pt;}
._27{width:11.904000pt;}
._8{width:12.928000pt;}
._9{width:13.822720pt;}
._10{width:14.720000pt;}
._1a{width:17.344000pt;}
._1c{width:18.301440pt;}
._55{width:19.218773pt;}
._53{width:20.736000pt;}
._54{width:21.696000pt;}
._6c{width:22.656000pt;}
._4a{width:23.680000pt;}
._13{width:24.960000pt;}
._12{width:25.984000pt;}
._11{width:27.136000pt;}
._7a{width:30.720000pt;}
._7{width:32.426667pt;}
._17{width:33.728000pt;}
._18{width:34.880000pt;}
._68{width:36.256000pt;}
._69{width:38.272000pt;}
._6a{width:39.328000pt;}
._6f{width:40.990720pt;}
._14{width:42.048000pt;}
._15{width:43.136000pt;}
._16{width:44.288000pt;}
._24{width:45.319790pt;}
._3d{width:46.230090pt;}
._3c{width:47.288210pt;}
._7f{width:51.648000pt;}
._80{width:52.734720pt;}
._25{width:55.726997pt;}
._66{width:62.720000pt;}
._1d{width:65.287383pt;}
._23{width:70.125888pt;}
._21{width:80.139613pt;}
._22{width:81.702038pt;}
._20{width:82.980733pt;}
._1f{width:92.569906pt;}
._1e{width:101.580348pt;}
._81{width:102.528000pt;}
._82{width:103.424000pt;}
._26{width:113.286197pt;}
._4b{width:172.800000pt;}
.fs6{font-size:25.271380pt;}
.fs4{font-size:34.560000pt;}
.fs5{font-size:34.729872pt;}
.fs9{font-size:34.943212pt;}
.fs26{font-size:36.920934pt;}
.fs16{font-size:37.024212pt;}
.fs20{font-size:37.905361pt;}
.fs12{font-size:38.151140pt;}
.fsb{font-size:38.475500pt;}
.fs8{font-size:38.605389pt;}
.fse{font-size:38.608259pt;}
.fs1e{font-size:38.860604pt;}
.fs19{font-size:38.862212pt;}
.fs11{font-size:39.168368pt;}
.fs7{font-size:41.468186pt;}
.fs3{font-size:42.880000pt;}
.fs2b{font-size:48.000000pt;}
.fs2c{font-size:48.128000pt;}
.fs0{font-size:53.120000pt;}
.fs2a{font-size:58.880000pt;}
.fs25{font-size:63.276485pt;}
.fsc{font-size:63.434030pt;}
.fs17{font-size:63.470524pt;}
.fs23{font-size:63.849694pt;}
.fs1{font-size:64.000000pt;}
.fs1f{font-size:65.034034pt;}
.fs13{font-size:65.384858pt;}
.fs1b{font-size:65.872787pt;}
.fsa{font-size:65.940758pt;}
.fsd{font-size:66.072420pt;}
.fs1d{font-size:66.582139pt;}
.fs18{font-size:66.584894pt;}
.fs22{font-size:67.011820pt;}
.fs10{font-size:67.200968pt;}
.fs21{font-size:67.561008pt;}
.fs1a{font-size:67.561013pt;}
.fs14{font-size:67.644808pt;}
.fs15{font-size:68.676424pt;}
.fs1c{font-size:69.611719pt;}
.fs28{font-size:69.611745pt;}
.fs24{font-size:69.611750pt;}
.fs27{font-size:69.611763pt;}
.fs29{font-size:69.666473pt;}
.fsf{font-size:70.899440pt;}
.fs2{font-size:74.880000pt;}
.yc6{bottom:-214.087746pt;}
.y114{bottom:-210.005684pt;}
.y10b{bottom:-210.005671pt;}
.y113{bottom:-186.535472pt;}
.y10a{bottom:-186.535460pt;}
.yc5{bottom:-183.123328pt;}
.ybd{bottom:-183.123316pt;}
.yb5{bottom:-183.123304pt;}
.y10d{bottom:-175.471151pt;}
.y104{bottom:-175.471139pt;}
.yc0{bottom:-171.659033pt;}
.yb8{bottom:-171.659021pt;}
.yb0{bottom:-171.659008pt;}
.y10e{bottom:-142.400807pt;}
.y105{bottom:-142.400795pt;}
.yc1{bottom:-137.097477pt;}
.yb9{bottom:-137.097465pt;}
.yb1{bottom:-137.097452pt;}
.yc7{bottom:-113.181717pt;}
.ybe{bottom:-113.181705pt;}
.yb6{bottom:-113.181693pt;}
.y10f{bottom:-109.470390pt;}
.y106{bottom:-109.470377pt;}
.yc2{bottom:-102.534145pt;}
.yba{bottom:-102.534133pt;}
.yb2{bottom:-102.534120pt;}
.y115{bottom:-100.052013pt;}
.y10c{bottom:-100.052000pt;}
.y110{bottom:-76.434667pt;}
.y107{bottom:-76.434654pt;}
.yc3{bottom:-67.929977pt;}
.ybb{bottom:-67.929965pt;}
.yb3{bottom:-67.929953pt;}
.y111{bottom:-43.505692pt;}
.y108{bottom:-43.505680pt;}
.yc4{bottom:-33.538867pt;}
.ybc{bottom:-33.538855pt;}
.yb4{bottom:-33.538843pt;}
.yc8{bottom:-14.775743pt;}
.ybf{bottom:-14.775731pt;}
.yb7{bottom:-14.775719pt;}
.y112{bottom:-10.574842pt;}
.y109{bottom:-10.574830pt;}
.y0{bottom:0.000000pt;}
.y1ba{bottom:2.430480pt;}
.y1bd{bottom:2.430557pt;}
.y1b0{bottom:2.430582pt;}
.y1b2{bottom:2.430588pt;}
.y1c1{bottom:3.737555pt;}
.y162{bottom:3.756577pt;}
.y1ca{bottom:3.756610pt;}
.y1b4{bottom:3.756644pt;}
.y1ce{bottom:3.786363pt;}
.y173{bottom:3.862058pt;}
.y15b{bottom:3.862074pt;}
.y1cd{bottom:3.877829pt;}
.y1d7{bottom:4.253922pt;}
.y165{bottom:4.395666pt;}
.y15f{bottom:4.395676pt;}
.y19e{bottom:4.835933pt;}
.y14b{bottom:5.789429pt;}
.y13d{bottom:5.822665pt;}
.y13e{bottom:5.822670pt;}
.y31{bottom:6.240000pt;}
.y136{bottom:6.266667pt;}
.y14e{bottom:6.303101pt;}
.y14d{bottom:6.303104pt;}
.y143{bottom:6.303114pt;}
.y142{bottom:6.303124pt;}
.y2f{bottom:6.400000pt;}
.y1dd{bottom:6.545414pt;}
.y1d1{bottom:6.545425pt;}
.y1b7{bottom:6.545435pt;}
.y1d2{bottom:6.545449pt;}
.y1b8{bottom:6.545485pt;}
.y1b9{bottom:6.596862pt;}
.y1bc{bottom:6.597121pt;}
.y1b1{bottom:6.597126pt;}
.y1af{bottom:6.597141pt;}
.y1ea{bottom:7.783782pt;}
.y1c0{bottom:7.783783pt;}
.y159{bottom:8.043133pt;}
.y15a{bottom:8.043134pt;}
.y1d6{bottom:8.222258pt;}
.y166{bottom:8.496230pt;}
.y167{bottom:8.496238pt;}
.y160{bottom:8.496253pt;}
.y19f{bottom:8.792628pt;}
.y14a{bottom:9.924852pt;}
.y13c{bottom:9.957931pt;}
.y13f{bottom:9.957976pt;}
.y22b{bottom:11.746667pt;}
.y19a{bottom:15.889771pt;}
.y5b{bottom:16.800000pt;}
.y56{bottom:16.840000pt;}
.y6e{bottom:16.960000pt;}
.y19d{bottom:17.146060pt;}
.yad{bottom:18.156101pt;}
.ya5{bottom:18.156114pt;}
.y9d{bottom:18.156126pt;}
.y1a1{bottom:21.102236pt;}
.y102{bottom:24.901216pt;}
.yf9{bottom:24.901229pt;}
.yf0{bottom:24.901241pt;}
.y221{bottom:27.333333pt;}
.y59{bottom:27.360000pt;}
.y55{bottom:27.400000pt;}
.y53{bottom:27.520000pt;}
.y137{bottom:27.546667pt;}
.y131{bottom:27.560000pt;}
.y19c{bottom:28.167091pt;}
.ya8{bottom:29.618622pt;}
.ya0{bottom:29.618634pt;}
.y96{bottom:29.618646pt;}
.y1a0{bottom:30.930766pt;}
.y5a{bottom:37.920000pt;}
.y19b{bottom:38.028169pt;}
.y5d{bottom:38.080000pt;}
.y101{bottom:48.378641pt;}
.yf8{bottom:48.378653pt;}
.yef{bottom:48.378666pt;}
.y64{bottom:48.480000pt;}
.y58{bottom:48.640000pt;}
.y138{bottom:48.666667pt;}
.y69{bottom:48.680000pt;}
.y97{bottom:52.717683pt;}
.y222{bottom:54.426667pt;}
.y65{bottom:59.200000pt;}
.yfb{bottom:59.437192pt;}
.yf2{bottom:59.437204pt;}
.ye9{bottom:59.437216pt;}
.y6{bottom:61.760000pt;}
.ya9{bottom:64.181953pt;}
.ya1{bottom:64.181965pt;}
.y63{bottom:69.760000pt;}
.y68{bottom:69.800000pt;}
.y98{bottom:75.687109pt;}
.y223{bottom:81.506667pt;}
.y35{bottom:82.720000pt;}
.y206{bottom:83.200000pt;}
.y34{bottom:87.360000pt;}
.y1e7{bottom:87.520000pt;}
.y205{bottom:87.840000pt;}
.yae{bottom:88.138549pt;}
.ya6{bottom:88.138561pt;}
.y9e{bottom:88.138573pt;}
.yfc{bottom:92.506093pt;}
.yf3{bottom:92.506105pt;}
.yea{bottom:92.506118pt;}
.y13a{bottom:94.240000pt;}
.yaa{bottom:98.786121pt;}
.ya2{bottom:98.786133pt;}
.y99{bottom:98.786146pt;}
.y61{bottom:99.040000pt;}
.y33{bottom:99.520000pt;}
.y204{bottom:101.120000pt;}
.y60{bottom:103.680000pt;}
.y224{bottom:108.613333pt;}
.y1e6{bottom:108.640000pt;}
.y139{bottom:109.760000pt;}
.y21c{bottom:111.680000pt;}
.y171{bottom:115.360000pt;}
.y5f{bottom:115.840000pt;}
.y32{bottom:121.120000pt;}
.y9a{bottom:121.714736pt;}
.yfd{bottom:125.436510pt;}
.yf4{bottom:125.436523pt;}
.yeb{bottom:125.436535pt;}
.y21e{bottom:126.333333pt;}
.y1e5{bottom:129.920000pt;}
.y135{bottom:131.520000pt;}
.y21b{bottom:132.800000pt;}
.yab{bottom:133.349453pt;}
.ya3{bottom:133.349465pt;}
.y103{bottom:134.889508pt;}
.yfa{bottom:134.889521pt;}
.yf1{bottom:134.889533pt;}
.y225{bottom:135.680000pt;}
.y170{bottom:136.506667pt;}
.y203{bottom:142.586667pt;}
.y30{bottom:142.906667pt;}
.y9b{bottom:144.813772pt;}
.y121{bottom:145.306667pt;}
.y1e4{bottom:151.066667pt;}
.y5e{bottom:151.386667pt;}
.y21a{bottom:153.946667pt;}
.y198{bottom:156.666667pt;}
.y16f{bottom:157.626667pt;}
.yfe{bottom:158.362600pt;}
.yf5{bottom:158.362612pt;}
.yec{bottom:158.362625pt;}
.y202{bottom:158.746667pt;}
.y226{bottom:162.746667pt;}
.y2e{bottom:164.666667pt;}
.y120{bottom:166.426667pt;}
.yac{bottom:167.740563pt;}
.ya4{bottom:167.740575pt;}
.y9c{bottom:167.740587pt;}
.y1e3{bottom:172.186667pt;}
.y219{bottom:175.066667pt;}
.y197{bottom:177.786667pt;}
.y16e{bottom:178.746667pt;}
.y21f{bottom:180.506667pt;}
.y201{bottom:181.306667pt;}
.yaf{bottom:186.550027pt;}
.ya7{bottom:186.550039pt;}
.y9f{bottom:186.550051pt;}
.y11f{bottom:187.546667pt;}
.y227{bottom:189.853333pt;}
.yff{bottom:191.267052pt;}
.yf6{bottom:191.267064pt;}
.yed{bottom:191.267076pt;}
.y2c{bottom:192.826667pt;}
.y1e2{bottom:193.306667pt;}
.y134{bottom:195.706667pt;}
.y218{bottom:196.346667pt;}
.y2d{bottom:198.106667pt;}
.y196{bottom:198.906667pt;}
.y16d{bottom:199.866667pt;}
.y200{bottom:203.866667pt;}
.y11e{bottom:208.666667pt;}
.y2b{bottom:213.946667pt;}
.y1e1{bottom:214.426667pt;}
.y220{bottom:215.173333pt;}
.y5c{bottom:215.546667pt;}
.y228{bottom:216.933333pt;}
.y217{bottom:217.466667pt;}
.y93{bottom:219.431980pt;}
.y8b{bottom:219.431992pt;}
.y83{bottom:219.432005pt;}
.y195{bottom:220.026667pt;}
.y16c{bottom:221.146667pt;}
.y100{bottom:224.185928pt;}
.yf7{bottom:224.185941pt;}
.yee{bottom:224.185953pt;}
.y1ff{bottom:226.266667pt;}
.y11d{bottom:229.946667pt;}
.y8e{bottom:230.937112pt;}
.y86{bottom:230.937124pt;}
.y7e{bottom:230.937136pt;}
.y2a{bottom:235.226667pt;}
.y1e0{bottom:235.706667pt;}
.y216{bottom:238.586667pt;}
.y194{bottom:241.306667pt;}
.y16b{bottom:242.266667pt;}
.y229{bottom:244.026667pt;}
.y1fe{bottom:248.826667pt;}
.y11c{bottom:251.066667pt;}
.y29{bottom:256.346667pt;}
.y1df{bottom:256.826667pt;}
.y215{bottom:259.706667pt;}
.ye7{bottom:259.802359pt;}
.yde{bottom:259.802372pt;}
.yd5{bottom:259.802384pt;}
.y133{bottom:259.866667pt;}
.y193{bottom:262.426667pt;}
.y16a{bottom:263.386667pt;}
.y8f{bottom:265.505770pt;}
.y87{bottom:265.505783pt;}
.y7f{bottom:265.505794pt;}
.y22a{bottom:271.106667pt;}
.y1fd{bottom:271.226667pt;}
.y11b{bottom:272.186667pt;}
.y28{bottom:277.466667pt;}
.y1de{bottom:277.946667pt;}
.y57{bottom:279.706667pt;}
.y214{bottom:280.986667pt;}
.y132{bottom:281.626667pt;}
.ye6{bottom:283.286996pt;}
.ydd{bottom:283.287009pt;}
.yd4{bottom:283.287021pt;}
.y192{bottom:283.546667pt;}
.y169{bottom:284.506667pt;}
.y94{bottom:289.421529pt;}
.y8c{bottom:289.421542pt;}
.y84{bottom:289.421554pt;}
.y11a{bottom:293.306667pt;}
.y1fc{bottom:293.786667pt;}
.ye0{bottom:294.380168pt;}
.yd7{bottom:294.380180pt;}
.ycd{bottom:294.380193pt;}
.y1dc{bottom:295.613333pt;}
.y27{bottom:298.586667pt;}
.y90{bottom:300.056673pt;}
.y88{bottom:300.056686pt;}
.y80{bottom:300.056698pt;}
.y213{bottom:302.106667pt;}
.y1db{bottom:302.266667pt;}
.y191{bottom:304.666667pt;}
.y168{bottom:305.786667pt;}
.y7c{bottom:314.426667pt;}
.y1fb{bottom:316.186667pt;}
.y26{bottom:319.706667pt;}
.yce{bottom:321.903952pt;}
.y212{bottom:323.226667pt;}
.y164{bottom:323.413297pt;}
.y1da{bottom:323.546667pt;}
.y190{bottom:325.946667pt;}
.ye1{bottom:327.414448pt;}
.yd8{bottom:327.414461pt;}
.y163{bottom:331.386667pt;}
.y91{bottom:334.625331pt;}
.y89{bottom:334.625344pt;}
.y81{bottom:334.625356pt;}
.y7b{bottom:335.546667pt;}
.y119{bottom:335.706667pt;}
.y1fa{bottom:338.746667pt;}
.y25{bottom:340.986667pt;}
.y1d8{bottom:341.213297pt;}
.y18f{bottom:341.466667pt;}
.y54{bottom:343.866667pt;}
.y211{bottom:344.346667pt;}
.y130{bottom:345.786667pt;}
.y1d9{bottom:347.866667pt;}
.ycf{bottom:349.283456pt;}
.y15e{bottom:350.946630pt;}
.y161{bottom:354.946667pt;}
.y7a{bottom:356.866667pt;}
.y15d{bottom:358.946667pt;}
.ye2{bottom:360.347751pt;}
.yd9{bottom:360.347763pt;}
.y1f9{bottom:361.346667pt;}
.y24{bottom:362.146667pt;}
.y18e{bottom:363.266667pt;}
.y1d5{bottom:365.546667pt;}
.y210{bottom:365.666667pt;}
.y92{bottom:369.069706pt;}
.y8a{bottom:369.069718pt;}
.y82{bottom:369.069730pt;}
.ye8{bottom:369.652167pt;}
.ydf{bottom:369.652179pt;}
.yd6{bottom:369.652192pt;}
.y1d4{bottom:373.506667pt;}
.yd0{bottom:376.807214pt;}
.y79{bottom:377.986667pt;}
.y158{bottom:378.479964pt;}
.y23{bottom:383.266667pt;}
.y1f8{bottom:383.746667pt;}
.y18d{bottom:385.186667pt;}
.y15c{bottom:386.466667pt;}
.y52{bottom:386.786667pt;}
.y95{bottom:387.818803pt;}
.y8d{bottom:387.818816pt;}
.y85{bottom:387.818828pt;}
.y1d0{bottom:392.213297pt;}
.ye3{bottom:393.266628pt;}
.yda{bottom:393.266640pt;}
.y1d3{bottom:394.946667pt;}
.y1cf{bottom:398.946667pt;}
.y78{bottom:399.106667pt;}
.yd1{bottom:404.186718pt;}
.y22{bottom:404.386667pt;}
.y1f7{bottom:406.306667pt;}
.y18c{bottom:406.946667pt;}
.y20f{bottom:407.906667pt;}
.y157{bottom:409.666667pt;}
.y12f{bottom:409.986667pt;}
.y1cc{bottom:416.880000pt;}
.y77{bottom:420.226667pt;}
.y118{bottom:420.386667pt;}
.y1cb{bottom:420.866667pt;}
.y21{bottom:425.666667pt;}
.ye4{bottom:426.199930pt;}
.ydb{bottom:426.199942pt;}
.y18b{bottom:428.706667pt;}
.y20e{bottom:429.026667pt;}
.y51{bottom:429.826667pt;}
.y156{bottom:430.786667pt;}
.yd2{bottom:431.710477pt;}
.y12e{bottom:431.906667pt;}
.y1c9{bottom:438.813297pt;}
.y76{bottom:441.506667pt;}
.y1c8{bottom:442.786667pt;}
.y20{bottom:446.786667pt;}
.y20d{bottom:450.146667pt;}
.y18a{bottom:450.626667pt;}
.y1f6{bottom:451.266667pt;}
.y155{bottom:451.906667pt;}
.y4f{bottom:457.986667pt;}
.ye5{bottom:459.133233pt;}
.ydc{bottom:459.133245pt;}
.yd3{bottom:459.133258pt;}
.y75{bottom:462.626667pt;}
.y50{bottom:463.266667pt;}
.y1c7{bottom:464.066667pt;}
.y1f{bottom:467.906667pt;}
.y20c{bottom:471.426667pt;}
.y189{bottom:472.386667pt;}
.y154{bottom:473.026667pt;}
.y12d{bottom:474.786667pt;}
.y4e{bottom:479.106667pt;}
.y74{bottom:483.746667pt;}
.y1c6{bottom:485.186667pt;}
.y1e{bottom:489.026667pt;}
.y20b{bottom:492.546667pt;}
.y153{bottom:494.306667pt;}
.y4d{bottom:500.226667pt;}
.y73{bottom:504.866667pt;}
.y117{bottom:505.026667pt;}
.y1c5{bottom:506.466667pt;}
.y1d{bottom:510.306667pt;}
.y20a{bottom:513.666667pt;}
.y152{bottom:515.426667pt;}
.y188{bottom:516.066667pt;}
.y12c{bottom:517.826667pt;}
.y4c{bottom:521.346667pt;}
.ycc{bottom:522.613297pt;}
.y116{bottom:522.626667pt;}
.y72{bottom:526.146667pt;}
.y1c4{bottom:527.586667pt;}
.y1c{bottom:531.426667pt;}
.y209{bottom:534.786667pt;}
.y151{bottom:536.546667pt;}
.y187{bottom:537.826667pt;}
.y12b{bottom:539.586667pt;}
.y4b{bottom:542.626667pt;}
.y1f5{bottom:543.426667pt;}
.y71{bottom:547.266667pt;}
.y1c3{bottom:548.706667pt;}
.y1b{bottom:552.546667pt;}
.y208{bottom:556.066667pt;}
.y150{bottom:557.666667pt;}
.y186{bottom:559.746667pt;}
.y4a{bottom:563.746667pt;}
.y1f4{bottom:564.706667pt;}
.y70{bottom:568.386667pt;}
.y1c2{bottom:569.826667pt;}
.y207{bottom:573.506667pt;}
.y1a{bottom:573.666667pt;}
.yca{bottom:573.826667pt;}
.y21d{bottom:574.560000pt;}
.y14f{bottom:578.973333pt;}
.ycb{bottom:579.133333pt;}
.y49{bottom:579.293333pt;}
.y185{bottom:581.533333pt;}
.y12a{bottom:582.653333pt;}
.y1f3{bottom:585.853333pt;}
.y1bf{bottom:587.413297pt;}
.y1bb{bottom:588.746630pt;}
.y6f{bottom:589.533333pt;}
.y7d{bottom:591.413297pt;}
.yc9{bottom:591.453333pt;}
.y19{bottom:594.973333pt;}
.y1be{bottom:595.453333pt;}
.y149{bottom:596.546667pt;}
.y14c{bottom:599.146630pt;}
.y48{bottom:601.053333pt;}
.y6d{bottom:605.053333pt;}
.y148{bottom:605.853333pt;}
.y1f2{bottom:606.973333pt;}
.y184{bottom:609.693333pt;}
.y1b6{bottom:614.813261pt;}
.y18{bottom:616.093333pt;}
.y1b5{bottom:621.533333pt;}
.y47{bottom:622.973333pt;}
.y129{bottom:625.533333pt;}
.y1f1{bottom:628.093333pt;}
.y147{bottom:629.213333pt;}
.y183{bottom:630.813333pt;}
.y17{bottom:637.213333pt;}
.y1ae{bottom:640.879928pt;}
.y1b3{bottom:643.613261pt;}
.y46{bottom:644.733333pt;}
.y128{bottom:647.453333pt;}
.y1ad{bottom:647.613333pt;}
.y6c{bottom:648.093333pt;}
.y1f0{bottom:649.373333pt;}
.y146{bottom:650.333333pt;}
.y182{bottom:651.933333pt;}
.y16{bottom:658.333333pt;}
.y45{bottom:666.653333pt;}
.y1ac{bottom:670.333333pt;}
.y1ef{bottom:670.493333pt;}
.y145{bottom:671.613333pt;}
.y181{bottom:673.213333pt;}
.y15{bottom:679.613333pt;}
.y44{bottom:688.413333pt;}
.y127{bottom:690.493333pt;}
.y6b{bottom:691.133333pt;}
.y1ab{bottom:691.453333pt;}
.y1ee{bottom:691.613333pt;}
.y144{bottom:692.733333pt;}
.y180{bottom:694.333333pt;}
.y14{bottom:700.733333pt;}
.y43{bottom:710.173333pt;}
.y13b{bottom:710.346594pt;}
.y1aa{bottom:712.573333pt;}
.y1ed{bottom:712.733333pt;}
.y141{bottom:712.879928pt;}
.y17f{bottom:715.453333pt;}
.y140{bottom:719.613333pt;}
.y13{bottom:721.853333pt;}
.y42{bottom:732.093333pt;}
.y126{bottom:733.373333pt;}
.y1a9{bottom:733.693333pt;}
.y6a{bottom:734.013333pt;}
.y17d{bottom:736.573333pt;}
.y17e{bottom:741.853333pt;}
.y12{bottom:742.973333pt;}
.y1a8{bottom:754.973333pt;}
.y1ec{bottom:755.133333pt;}
.y125{bottom:755.293333pt;}
.y17c{bottom:757.693333pt;}
.y40{bottom:760.093333pt;}
.y11{bottom:764.093333pt;}
.y41{bottom:765.373333pt;}
.y1a7{bottom:776.093333pt;}
.y1eb{bottom:776.253333pt;}
.y67{bottom:777.053333pt;}
.y17b{bottom:778.973333pt;}
.y3f{bottom:781.373333pt;}
.y10{bottom:785.373333pt;}
.y1a6{bottom:797.213333pt;}
.y1e9{bottom:797.346594pt;}
.y1e8{bottom:797.373333pt;}
.y124{bottom:798.213333pt;}
.y17a{bottom:800.133333pt;}
.y3e{bottom:802.533333pt;}
.yf{bottom:806.533333pt;}
.y1a5{bottom:818.373333pt;}
.y179{bottom:821.253333pt;}
.y3d{bottom:823.653333pt;}
.ye{bottom:827.653333pt;}
.y1a4{bottom:839.653333pt;}
.y123{bottom:841.253333pt;}
.y178{bottom:842.373333pt;}
.y3c{bottom:844.773333pt;}
.yd{bottom:848.773333pt;}
.y1a3{bottom:860.773333pt;}
.y66{bottom:862.373333pt;}
.y177{bottom:863.653333pt;}
.y3b{bottom:866.053333pt;}
.yc{bottom:870.053333pt;}
.y199{bottom:878.346594pt;}
.y3a{bottom:881.573333pt;}
.y122{bottom:884.293333pt;}
.y176{bottom:884.773333pt;}
.yb{bottom:891.173333pt;}
.y1a2{bottom:899.653333pt;}
.y39{bottom:903.333333pt;}
.y62{bottom:905.413333pt;}
.y175{bottom:905.893333pt;}
.ya{bottom:912.293333pt;}
.y172{bottom:923.413333pt;}
.y38{bottom:925.253333pt;}
.y174{bottom:931.493333pt;}
.y9{bottom:933.413333pt;}
.y37{bottom:947.013333pt;}
.y8{bottom:954.693333pt;}
.y36{bottom:968.773333pt;}
.y7{bottom:975.813333pt;}
.y5{bottom:1004.933333pt;}
.y4{bottom:1033.280000pt;}
.y3{bottom:1059.360000pt;}
.y2{bottom:1085.280000pt;}
.y1{bottom:1100.640000pt;}
.h33{height:14.400170pt;}
.h50{height:14.400206pt;}
.h44{height:14.400242pt;}
.h52{height:19.199634pt;}
.h2b{height:20.800874pt;}
.h24{height:20.800910pt;}
.hc{height:21.120000pt;}
.hd{height:21.152000pt;}
.hb{height:21.280000pt;}
.h5b{height:21.600537pt;}
.h55{height:21.600573pt;}
.h46{height:21.600610pt;}
.h49{height:23.199925pt;}
.h4c{height:23.200849pt;}
.h3f{height:23.200885pt;}
.h57{height:23.999792pt;}
.h4d{height:24.000448pt;}
.h5e{height:24.000484pt;}
.h30{height:24.799501pt;}
.h37{height:24.800105pt;}
.h2c{height:24.800141pt;}
.h18{height:26.357260pt;}
.h26{height:26.399619pt;}
.h1f{height:26.399691pt;}
.he{height:34.374375pt;}
.h17{height:36.222171pt;}
.h3d{height:36.319161pt;}
.h3b{height:36.337239pt;}
.h1c{height:36.444678pt;}
.h31{height:37.424629pt;}
.h2{height:37.479688pt;}
.h22{height:37.742812pt;}
.h29{height:37.873043pt;}
.h41{height:38.141136pt;}
.h2f{height:38.441611pt;}
.h1b{height:40.264215pt;}
.h15{height:42.240000pt;}
.h11{height:42.272000pt;}
.h10{height:42.400000pt;}
.h1d{height:42.432000pt;}
.ha{height:43.215000pt;}
.h19{height:43.250022pt;}
.h6{height:45.156250pt;}
.h51{height:46.910036pt;}
.h45{height:46.910040pt;}
.h34{height:46.968221pt;}
.h35{height:47.684510pt;}
.h63{height:47.742188pt;}
.h48{height:48.333918pt;}
.h5c{height:48.333936pt;}
.h56{height:48.333939pt;}
.h5a{height:48.333949pt;}
.h5d{height:48.371936pt;}
.h3a{height:48.799319pt;}
.h2d{height:49.228029pt;}
.hf{height:52.834688pt;}
.h3{height:53.535000pt;}
.h9{height:56.406250pt;}
.h60{height:58.563750pt;}
.h58{height:62.102410pt;}
.h39{height:62.112188pt;}
.h25{height:62.257032pt;}
.h3e{height:62.261857pt;}
.h21{height:62.326184pt;}
.h28{height:62.418151pt;}
.h54{height:62.633806pt;}
.h8{height:62.812500pt;}
.h12{height:63.520000pt;}
.h1e{height:63.552000pt;}
.h5f{height:63.795593pt;}
.h4e{height:63.827348pt;}
.h32{height:64.139736pt;}
.h36{height:64.171662pt;}
.h7{height:64.500000pt;}
.h47{height:64.650538pt;}
.h23{height:64.685051pt;}
.h20{height:64.717248pt;}
.h2a{height:64.814205pt;}
.h27{height:64.846467pt;}
.h40{height:65.316920pt;}
.h4a{height:65.346728pt;}
.h42{height:65.349432pt;}
.h53{height:65.768437pt;}
.h61{height:65.781915pt;}
.h2e{height:65.954075pt;}
.h5{height:73.490625pt;}
.h4{height:75.465000pt;}
.h59{height:77.944856pt;}
.h3c{height:78.117520pt;}
.h4f{height:79.980601pt;}
.h4b{height:81.979903pt;}
.h43{height:81.983295pt;}
.h38{height:82.678367pt;}
.h13{height:84.640000pt;}
.h14{height:84.672000pt;}
.h64{height:121.502188pt;}
.h65{height:164.755521pt;}
.h62{height:289.120000pt;}
.h16{height:399.199682pt;}
.h1a{height:467.990485pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1f{width:13.599843pt;}
.w34{width:14.399493pt;}
.w1e{width:16.000533pt;}
.w2d{width:16.000551pt;}
.w32{width:16.000587pt;}
.w35{width:16.800381pt;}
.w2f{width:40.799643pt;}
.w2b{width:43.199159pt;}
.w28{width:44.000000pt;}
.w3a{width:48.800003pt;}
.wa{width:54.240000pt;}
.w8{width:55.872000pt;}
.wc{width:57.920000pt;}
.w39{width:59.200672pt;}
.w36{width:59.200686pt;}
.w2e{width:59.200704pt;}
.wd{width:59.712000pt;}
.w11{width:59.840000pt;}
.w10{width:59.872000pt;}
.w13{width:60.000000pt;}
.w12{width:60.032000pt;}
.wb{width:63.072000pt;}
.w16{width:63.680000pt;}
.w7{width:65.120000pt;}
.w9{width:66.560000pt;}
.w18{width:69.600832pt;}
.we{width:69.760000pt;}
.wf{width:76.480000pt;}
.w1b{width:79.200504pt;}
.w25{width:84.512000pt;}
.w31{width:85.602834pt;}
.w2a{width:86.396681pt;}
.w3c{width:86.880000pt;}
.w2c{width:89.597235pt;}
.w3b{width:89.600133pt;}
.w6{width:93.920000pt;}
.w33{width:95.999961pt;}
.w19{width:96.797517pt;}
.w1c{width:96.797535pt;}
.w20{width:99.196606pt;}
.w38{width:102.402971pt;}
.w23{width:108.672000pt;}
.w30{width:108.797444pt;}
.w3d{width:110.272000pt;}
.w17{width:120.001121pt;}
.w37{width:121.603249pt;}
.w40{width:127.520000pt;}
.w1a{width:127.995974pt;}
.w26{width:131.680000pt;}
.w3e{width:131.712000pt;}
.w22{width:133.760000pt;}
.w24{width:160.026667pt;}
.w3f{width:164.186667pt;}
.w29{width:200.546667pt;}
.w1d{width:222.400770pt;}
.w27{width:245.186667pt;}
.w21{width:358.401147pt;}
.w5{width:528.733333pt;}
.w41{width:598.720000pt;}
.w15{width:617.584262pt;}
.w4{width:623.293333pt;}
.w14{width:623.981186pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x39{left:-1.600000pt;}
.x0{left:0.000000pt;}
.x2b{left:0.960000pt;}
.x61{left:2.080000pt;}
.x38{left:3.840000pt;}
.x2a{left:4.960000pt;}
.xf{left:6.880000pt;}
.x4f{left:7.878219pt;}
.x33{left:9.440000pt;}
.xb3{left:10.400000pt;}
.x29{left:11.546667pt;}
.x47{left:12.541384pt;}
.x27{left:13.920000pt;}
.x28{left:15.200000pt;}
.x26{left:16.480000pt;}
.x1a{left:17.600000pt;}
.x4e{left:19.313952pt;}
.xb5{left:20.480000pt;}
.x1e{left:21.440000pt;}
.x22{left:23.200000pt;}
.x8f{left:24.520000pt;}
.x20{left:25.786667pt;}
.x1c{left:27.520000pt;}
.x25{left:29.120000pt;}
.x69{left:31.680000pt;}
.x8e{left:32.800000pt;}
.x6d{left:34.831413pt;}
.x18{left:36.160000pt;}
.x12{left:37.120000pt;}
.x30{left:38.240000pt;}
.xac{left:39.634401pt;}
.x98{left:41.548978pt;}
.x6c{left:42.793259pt;}
.x77{left:44.419251pt;}
.x8c{left:46.720000pt;}
.x74{left:50.172530pt;}
.x68{left:51.240000pt;}
.x6a{left:53.960000pt;}
.x82{left:59.759425pt;}
.x8d{left:61.434667pt;}
.x71{left:62.432967pt;}
.x92{left:65.440000pt;}
.xb8{left:66.400000pt;}
.x93{left:67.406397pt;}
.xb7{left:70.400000pt;}
.x3{left:75.551988pt;}
.x6b{left:76.565393pt;}
.x87{left:78.272000pt;}
.x14{left:79.871988pt;}
.x81{left:82.045325pt;}
.x6{left:83.871988pt;}
.x7{left:85.471988pt;}
.xa3{left:87.464838pt;}
.xba{left:88.800000pt;}
.x80{left:91.556918pt;}
.x73{left:93.703567pt;}
.xaf{left:95.231988pt;}
.x9c{left:98.338107pt;}
.x91{left:99.866667pt;}
.x58{left:107.071988pt;}
.x43{left:108.817525pt;}
.x3a{left:110.640450pt;}
.x7b{left:121.437929pt;}
.xbb{left:122.560000pt;}
.xa9{left:132.413324pt;}
.xa2{left:134.613324pt;}
.x2f{left:146.746667pt;}
.x17{left:148.506667pt;}
.x60{left:153.146667pt;}
.xad{left:158.346649pt;}
.xb2{left:171.066667pt;}
.x72{left:174.013315pt;}
.x9{left:182.426655pt;}
.x9d{left:184.346655pt;}
.x4b{left:196.026655pt;}
.xc{left:199.866655pt;}
.x6e{left:203.613333pt;}
.x84{left:207.746667pt;}
.x2c{left:210.426655pt;}
.x88{left:212.826667pt;}
.x19{left:214.266667pt;}
.x62{left:217.466667pt;}
.x3d{left:219.926947pt;}
.x56{left:222.047784pt;}
.x31{left:223.866667pt;}
.x52{left:226.343541pt;}
.x3b{left:227.601072pt;}
.xa4{left:230.586655pt;}
.x44{left:233.065980pt;}
.xaa{left:234.746655pt;}
.x10{left:237.314667pt;}
.x3c{left:239.034741pt;}
.xae{left:247.906655pt;}
.x5d{left:249.826655pt;}
.x50{left:250.825465pt;}
.x7a{left:255.146649pt;}
.x7d{left:257.346649pt;}
.x13{left:267.586655pt;}
.x1b{left:270.786667pt;}
.x6f{left:273.186655pt;}
.x63{left:277.986667pt;}
.x49{left:279.808372pt;}
.xb4{left:281.986667pt;}
.x32{left:284.386667pt;}
.xbc{left:291.293333pt;}
.x95{left:294.346649pt;}
.x70{left:296.213315pt;}
.x75{left:301.986655pt;}
.xa{left:309.666655pt;}
.x4{left:311.746655pt;}
.x76{left:313.679964pt;}
.x3e{left:319.380488pt;}
.x89{left:322.146667pt;}
.x51{left:325.354968pt;}
.x1d{left:337.986667pt;}
.x34{left:344.866667pt;}
.x85{left:350.463950pt;}
.x59{left:361.186655pt;}
.x90{left:366.786667pt;}
.x7f{left:379.413297pt;}
.x5{left:382.786655pt;}
.x1f{left:393.026667pt;}
.x8{left:396.893322pt;}
.x64{left:399.133333pt;}
.xa7{left:403.280000pt;}
.x2{left:406.333322pt;}
.x94{left:412.413322pt;}
.x97{left:414.613297pt;}
.x78{left:419.613297pt;}
.x5a{left:426.973310pt;}
.x46{left:430.487331pt;}
.x5b{left:432.413322pt;}
.x41{left:435.241668pt;}
.x45{left:438.161455pt;}
.x7e{left:441.053322pt;}
.x3f{left:443.665117pt;}
.x48{left:447.773491pt;}
.x40{left:449.608041pt;}
.x53{left:452.321485pt;}
.x1{left:453.693322pt;}
.x21{left:456.733333pt;}
.x65{left:459.613333pt;}
.x54{left:464.999857pt;}
.x35{left:466.013333pt;}
.x99{left:473.853322pt;}
.x7c{left:477.533322pt;}
.x83{left:478.653322pt;}
.x8a{left:482.813333pt;}
.x9e{left:487.413297pt;}
.xab{left:496.893322pt;}
.x96{left:503.413297pt;}
.x23{left:515.293333pt;}
.x79{left:516.413322pt;}
.x66{left:520.253333pt;}
.xa8{left:524.893322pt;}
.x36{left:526.653333pt;}
.x42{left:529.940869pt;}
.x5e{left:538.493310pt;}
.x55{left:539.437961pt;}
.x5f{left:543.933322pt;}
.x86{left:566.213322pt;}
.x8b{left:567.973333pt;}
.x9f{left:573.093322pt;}
.x24{left:575.653333pt;}
.x2d{left:577.733310pt;}
.xb6{left:579.173333pt;}
.x67{left:580.773333pt;}
.x2e{left:583.173322pt;}
.x37{left:587.173333pt;}
.xd{left:588.453310pt;}
.x4c{left:592.293310pt;}
.xe{left:593.893322pt;}
.x4d{left:597.733322pt;}
.xa5{left:598.813297pt;}
.x15{left:605.573310pt;}
.x16{left:611.013322pt;}
.x11{left:612.933333pt;}
.xa6{left:615.653322pt;}
.xa0{left:625.346594pt;}
.xa1{left:641.413322pt;}
.x9a{left:650.013261pt;}
.xb{left:662.213322pt;}
.xb9{left:675.653322pt;}
.xb0{left:689.413310pt;}
.x9b{left:690.853322pt;}
.x57{left:693.253322pt;}
.xb1{left:694.853322pt;}
.x4a{left:699.653322pt;}
.x5c{left:718.239988pt;}
}




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