
    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_e991294894889c69cde43864.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.894000;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_a46616af92aa30135085bf22.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.123000;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_2c8c3411ff25c489ca641476.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.989000;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_c723c05eb4aa990c62d70d96.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.943000;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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.736000;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_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.660000;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_37e018c9111f89f364364fc6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.885000;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_b17b4b034f05343b0251d2b3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.191000;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_07f51bbe05c18be550570107.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.933000;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_c3858e39543a66ed2625ffba.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.190000;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_49212ca9b11514cdcc793889.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.998047;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_61c58bbb94693986562fcacb.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.200195;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_cd70713c20e41dbd6f9d7d41.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.206055;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_4b390b8f0778a5fbbbb49ea1.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.040000;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.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);}
.me{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);}
.m25{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);}
.m18{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);}
.mc{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);}
.m1c{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m4{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1b{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);}
.m1{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);}
.m6{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);}
.m1d{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);}
.m14{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m23{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);}
.m27{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);}
.m1e{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);}
.m15{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);}
.m9{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);}
.m16{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);}
.m29{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,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);}
.m11{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);}
.m1a{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m10{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);}
.ma{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);}
.m20{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);}
.m26{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);}
.m24{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);}
.mf{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);}
.m22{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);}
.m28{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);}
.m21{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);}
.m8{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);}
.m3{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);}
.m5{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);}
.m19{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);}
.m17{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);}
.m2c{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);}
.m1f{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);}
.m7{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);}
.m12{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.ls26{letter-spacing:-0.209218px;}
.ls2c{letter-spacing:-0.202003px;}
.ls27{letter-spacing:-0.137074px;}
.ls2f{letter-spacing:-0.115430px;}
.ls22{letter-spacing:-0.103421px;}
.ls23{letter-spacing:-0.079358px;}
.ls2b{letter-spacing:-0.064930px;}
.ls2d{letter-spacing:-0.057715px;}
.ls2e{letter-spacing:-0.050501px;}
.ls24{letter-spacing:-0.036072px;}
.ls29{letter-spacing:-0.028858px;}
.ls25{letter-spacing:-0.021643px;}
.ls28{letter-spacing:-0.014429px;}
.ls30{letter-spacing:-0.007214px;}
.ls8{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.000292px;}
.ls36{letter-spacing:0.000503px;}
.ls0{letter-spacing:0.000583px;}
.ls39{letter-spacing:0.000800px;}
.ls38{letter-spacing:0.002544px;}
.ls32{letter-spacing:0.003668px;}
.ls33{letter-spacing:0.004028px;}
.ls3b{letter-spacing:0.004800px;}
.ls1a{letter-spacing:0.006480px;}
.ls16{letter-spacing:0.007214px;}
.ls12{letter-spacing:0.014429px;}
.ls1b{letter-spacing:0.019440px;}
.ls15{letter-spacing:0.021643px;}
.ls21{letter-spacing:0.028858px;}
.ls11{letter-spacing:0.036072px;}
.ls20{letter-spacing:0.038880px;}
.ls14{letter-spacing:0.043286px;}
.lsf{letter-spacing:0.045965px;}
.lsd{letter-spacing:0.051710px;}
.ls13{letter-spacing:0.057715px;}
.ls1f{letter-spacing:0.064930px;}
.ls2a{letter-spacing:0.072144px;}
.ls17{letter-spacing:0.079358px;}
.ls19{letter-spacing:0.086573px;}
.ls1d{letter-spacing:0.108216px;}
.ls18{letter-spacing:0.115430px;}
.ls1e{letter-spacing:0.194789px;}
.ls10{letter-spacing:0.218333px;}
.lse{letter-spacing:0.229824px;}
.ls1c{letter-spacing:0.230861px;}
.ls31{letter-spacing:0.648088px;}
.ls9{letter-spacing:1.275394px;}
.ls3{letter-spacing:1.861130px;}
.ls1{letter-spacing:2.989200px;}
.ls4{letter-spacing:10.455300px;}
.ls7{letter-spacing:11.954850px;}
.ls3d{letter-spacing:12.104400px;}
.ls3a{letter-spacing:13.329724px;}
.ls34{letter-spacing:13.448400px;}
.ls37{letter-spacing:13.454400px;}
.ls3c{letter-spacing:14.015106px;}
.lsc{letter-spacing:14.704798px;}
.lsb{letter-spacing:15.003676px;}
.lsa{letter-spacing:18.948865px;}
.ls5{letter-spacing:62.761200px;}
.ls6{letter-spacing:64.321654px;}
.ls2{letter-spacing:72.361200px;}
.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;}
}
.ws57{word-spacing:-14.943900px;}
.ws93{word-spacing:-14.593824px;}
.wse2{word-spacing:-13.449600px;}
.ws30{word-spacing:-11.955150px;}
.ws4{word-spacing:-11.357400px;}
.wsb{word-spacing:-10.460700px;}
.ws5a{word-spacing:-3.885414px;}
.wsdf{word-spacing:-3.526760px;}
.ws5c{word-spacing:-3.108331px;}
.ws59{word-spacing:-2.570351px;}
.ws31{word-spacing:-2.391024px;}
.wse6{word-spacing:-2.367130px;}
.ws72{word-spacing:-2.271473px;}
.ws1f{word-spacing:-2.259533px;}
.ws10f{word-spacing:-2.205734px;}
.ws43{word-spacing:-2.032370px;}
.ws7{word-spacing:-1.908367px;}
.ws5b{word-spacing:-1.733492px;}
.ws6c{word-spacing:-1.673717px;}
.ws56{word-spacing:-1.613941px;}
.ws5e{word-spacing:-1.554166px;}
.ws19{word-spacing:-1.506355px;}
.ws37{word-spacing:-1.494390px;}
.ws2a{word-spacing:-1.434614px;}
.ws47{word-spacing:-1.374839px;}
.ws103{word-spacing:-1.344960px;}
.ws6{word-spacing:-1.322630px;}
.ws70{word-spacing:-1.315063px;}
.ws39{word-spacing:-1.255288px;}
.ws10d{word-spacing:-1.237363px;}
.ws7e{word-spacing:-1.195515px;}
.ws6e{word-spacing:-1.195512px;}
.ws10c{word-spacing:-1.183565px;}
.ws71{word-spacing:-1.135736px;}
.ws3d{word-spacing:-1.075961px;}
.ws9{word-spacing:-1.046070px;}
.ws73{word-spacing:-1.016185px;}
.ws112{word-spacing:-0.968371px;}
.ws3c{word-spacing:-0.956410px;}
.ws6f{word-spacing:-0.896634px;}
.ws20{word-spacing:-0.860774px;}
.ws38{word-spacing:-0.777083px;}
.wsa9{word-spacing:-0.757512px;}
.ws52{word-spacing:-0.717307px;}
.wsa3{word-spacing:-0.714226px;}
.ws115{word-spacing:-0.699379px;}
.ws3a{word-spacing:-0.657532px;}
.wsf3{word-spacing:-0.645581px;}
.wsd7{word-spacing:-0.597756px;}
.wsa8{word-spacing:-0.541080px;}
.wsd6{word-spacing:-0.537980px;}
.ws55{word-spacing:-0.478205px;}
.ws61{word-spacing:-0.418429px;}
.ws29{word-spacing:-0.358654px;}
.wsc0{word-spacing:-0.324648px;}
.ws1b{word-spacing:-0.322790px;}
.ws9b{word-spacing:-0.321754px;}
.ws42{word-spacing:-0.298878px;}
.ws9f{word-spacing:-0.281362px;}
.ws106{word-spacing:-0.268992px;}
.wsbd{word-spacing:-0.266933px;}
.wsbc{word-spacing:-0.259718px;}
.wsb6{word-spacing:-0.252504px;}
.ws45{word-spacing:-0.239102px;}
.ws9e{word-spacing:-0.238075px;}
.wsfb{word-spacing:-0.215194px;}
.ws2b{word-spacing:-0.179327px;}
.ws1a{word-spacing:-0.161395px;}
.wsfc{word-spacing:-0.153774px;}
.ws9a{word-spacing:-0.149386px;}
.ws33{word-spacing:-0.119551px;}
.wse7{word-spacing:-0.107597px;}
.ws2{word-spacing:-0.059776px;}
.ws21{word-spacing:-0.053798px;}
.ws16{word-spacing:-0.047821px;}
.ws113{word-spacing:-0.027360px;}
.wsed{word-spacing:-0.009302px;}
.ws102{word-spacing:-0.006010px;}
.wsef{word-spacing:-0.005453px;}
.wsec{word-spacing:-0.003302px;}
.ws5{word-spacing:-0.003250px;}
.ws2f{word-spacing:-0.003082px;}
.wsa{word-spacing:-0.002861px;}
.ws10a{word-spacing:-0.000998px;}
.ws3{word-spacing:-0.000816px;}
.ws0{word-spacing:0.000000px;}
.ws1{word-spacing:0.000600px;}
.wsb7{word-spacing:0.007214px;}
.wsa5{word-spacing:0.036072px;}
.wseb{word-spacing:0.053798px;}
.wsb5{word-spacing:0.057715px;}
.ws2c{word-spacing:0.059776px;}
.wsb8{word-spacing:0.101002px;}
.wsea{word-spacing:0.107597px;}
.wsa4{word-spacing:0.108216px;}
.wsc1{word-spacing:0.115430px;}
.ws26{word-spacing:0.119551px;}
.ws1c{word-spacing:0.161395px;}
.ws28{word-spacing:0.179327px;}
.wsc3{word-spacing:0.181440px;}
.wsb9{word-spacing:0.194789px;}
.wsb4{word-spacing:0.200880px;}
.wsc{word-spacing:0.209214px;}
.wsb3{word-spacing:0.213840px;}
.ws18{word-spacing:0.215194px;}
.wsc2{word-spacing:0.230861px;}
.ws23{word-spacing:0.239102px;}
.wsf5{word-spacing:0.268992px;}
.wse{word-spacing:0.292900px;}
.ws24{word-spacing:0.298878px;}
.ws10e{word-spacing:0.322790px;}
.ws2d{word-spacing:0.358654px;}
.ws5d{word-spacing:0.418429px;}
.wsd3{word-spacing:0.478205px;}
.ws27{word-spacing:0.537980px;}
.ws111{word-spacing:0.537984px;}
.ws110{word-spacing:0.591782px;}
.wscd{word-spacing:0.597756px;}
.ws51{word-spacing:0.657532px;}
.ws1d{word-spacing:0.699379px;}
.ws77{word-spacing:0.717307px;}
.wse3{word-spacing:0.753178px;}
.ws3b{word-spacing:0.777083px;}
.ws63{word-spacing:0.836858px;}
.ws4a{word-spacing:0.896634px;}
.ws9c{word-spacing:0.945086px;}
.ws78{word-spacing:0.956410px;}
.ws9d{word-spacing:0.966730px;}
.ws97{word-spacing:1.016185px;}
.ws69{word-spacing:1.075961px;}
.ws36{word-spacing:1.135736px;}
.ws2e{word-spacing:1.255288px;}
.wsd4{word-spacing:1.315063px;}
.ws99{word-spacing:1.434614px;}
.wsba{word-spacing:1.435666px;}
.ws4f{word-spacing:1.494390px;}
.wsfe{word-spacing:1.560154px;}
.ws95{word-spacing:1.613941px;}
.wsee{word-spacing:1.613952px;}
.ws66{word-spacing:1.673717px;}
.ws84{word-spacing:1.733492px;}
.ws1e{word-spacing:1.775347px;}
.ws49{word-spacing:1.793268px;}
.ws94{word-spacing:1.853044px;}
.ws117{word-spacing:1.882944px;}
.wsdd{word-spacing:1.972595px;}
.wsd{word-spacing:2.008454px;}
.ws6a{word-spacing:2.032370px;}
.ws10b{word-spacing:2.044339px;}
.ws76{word-spacing:2.092146px;}
.ws58{word-spacing:2.151922px;}
.ws64{word-spacing:2.211697px;}
.wscf{word-spacing:2.271473px;}
.ws40{word-spacing:2.391024px;}
.wsdc{word-spacing:2.450800px;}
.ws65{word-spacing:2.510575px;}
.ws3e{word-spacing:2.570351px;}
.ws75{word-spacing:2.630126px;}
.wsa1{word-spacing:2.662114px;}
.wsa2{word-spacing:2.683757px;}
.ws60{word-spacing:2.689902px;}
.wsbf{word-spacing:2.698186px;}
.wsbe{word-spacing:2.734258px;}
.wsaf{word-spacing:2.741472px;}
.ws62{word-spacing:2.749678px;}
.ws6b{word-spacing:2.809453px;}
.ws17{word-spacing:2.869236px;}
.ws74{word-spacing:2.929004px;}
.ws32{word-spacing:3.048556px;}
.ws104{word-spacing:3.066509px;}
.ws92{word-spacing:3.108331px;}
.ws105{word-spacing:3.120307px;}
.wsce{word-spacing:3.168107px;}
.wsfd{word-spacing:3.220570px;}
.wsf4{word-spacing:3.221491px;}
.wsf6{word-spacing:3.224698px;}
.wse8{word-spacing:3.224822px;}
.ws101{word-spacing:3.225053px;}
.ws109{word-spacing:3.225629px;}
.ws100{word-spacing:3.226109px;}
.wsdb{word-spacing:3.227882px;}
.wsf0{word-spacing:3.227904px;}
.ws85{word-spacing:3.287658px;}
.wse9{word-spacing:3.344425px;}
.ws5f{word-spacing:3.347434px;}
.ws46{word-spacing:3.407209px;}
.wsd2{word-spacing:3.466985px;}
.ws114{word-spacing:3.496896px;}
.ws25{word-spacing:3.526760px;}
.ws108{word-spacing:3.550694px;}
.wsac{word-spacing:3.585557px;}
.ws22{word-spacing:3.586536px;}
.wsf7{word-spacing:3.604493px;}
.wsd9{word-spacing:3.706087px;}
.wsab{word-spacing:3.708202px;}
.ws8a{word-spacing:3.765863px;}
.wsff{word-spacing:3.765888px;}
.wsde{word-spacing:3.825638px;}
.ws35{word-spacing:3.885414px;}
.wsb1{word-spacing:3.917419px;}
.ws41{word-spacing:3.945190px;}
.ws8b{word-spacing:4.004965px;}
.wsb2{word-spacing:4.025635px;}
.ws88{word-spacing:4.064741px;}
.ws8e{word-spacing:4.244068px;}
.ws98{word-spacing:4.303843px;}
.wsfa{word-spacing:4.357670px;}
.wsf9{word-spacing:4.364314px;}
.wsb0{word-spacing:4.364712px;}
.ws48{word-spacing:4.423394px;}
.wsf8{word-spacing:4.465267px;}
.wsd0{word-spacing:4.483170px;}
.ws87{word-spacing:4.542946px;}
.wsf2{word-spacing:4.572864px;}
.ws4c{word-spacing:4.662497px;}
.ws67{word-spacing:4.722272px;}
.ws8d{word-spacing:4.782048px;}
.wsc7{word-spacing:4.840862px;}
.ws116{word-spacing:4.841856px;}
.wsc6{word-spacing:4.876934px;}
.ws107{word-spacing:4.895654px;}
.ws4e{word-spacing:4.901599px;}
.ws4d{word-spacing:4.961375px;}
.wsd1{word-spacing:5.021150px;}
.ws44{word-spacing:5.080926px;}
.ws54{word-spacing:5.320028px;}
.wsa6{word-spacing:5.324227px;}
.wsa7{word-spacing:5.331442px;}
.ws6d{word-spacing:5.379804px;}
.ws83{word-spacing:5.559131px;}
.ws68{word-spacing:5.798233px;}
.wse0{word-spacing:5.810227px;}
.ws50{word-spacing:5.858009px;}
.wscc{word-spacing:5.917784px;}
.wse4{word-spacing:6.025421px;}
.ws53{word-spacing:6.037336px;}
.ws14{word-spacing:6.067206px;}
.wse5{word-spacing:6.079219px;}
.ws8c{word-spacing:6.097111px;}
.ws15{word-spacing:6.150892px;}
.wsd8{word-spacing:6.336214px;}
.ws3f{word-spacing:6.395989px;}
.wsbb{word-spacing:6.529032px;}
.wsae{word-spacing:6.593962px;}
.wsad{word-spacing:6.630034px;}
.wse1{word-spacing:6.886195px;}
.wsa0{word-spacing:6.969110px;}
.wsf1{word-spacing:6.993792px;}
.wsc5{word-spacing:7.026826px;}
.wscb{word-spacing:7.053521px;}
.wsc4{word-spacing:7.055683px;}
.ws96{word-spacing:7.292623px;}
.ws34{word-spacing:7.412174px;}
.ws4b{word-spacing:7.591501px;}
.wsda{word-spacing:8.069706px;}
.ws89{word-spacing:8.129482px;}
.wsca{word-spacing:8.189257px;}
.ws8f{word-spacing:8.249033px;}
.wsaa{word-spacing:8.318203px;}
.ws86{word-spacing:8.488135px;}
.ws12{word-spacing:8.661460px;}
.ws90{word-spacing:8.727238px;}
.ws8{word-spacing:15.483541px;}
.wsd5{word-spacing:15.960085px;}
.wsf{word-spacing:16.142252px;}
.ws10{word-spacing:16.151321px;}
.ws11{word-spacing:17.699504px;}
.ws13{word-spacing:27.448877px;}
.ws7d{word-spacing:340.323361px;}
.ws81{word-spacing:509.289390px;}
.ws82{word-spacing:530.139172px;}
.ws79{word-spacing:536.551193px;}
.ws7b{word-spacing:551.780408px;}
.ws7a{word-spacing:561.370220px;}
.ws7f{word-spacing:568.738084px;}
.ws80{word-spacing:605.032942px;}
.ws7c{word-spacing:699.400799px;}
.wsc9{word-spacing:913.604429px;}
.ws91{word-spacing:970.845926px;}
.wsc8{word-spacing:982.304986px;}
._4a{margin-left:-20.179031px;}
._0{margin-left:-11.943245px;}
._1b{margin-left:-8.268659px;}
._d{margin-left:-6.939994px;}
._5{margin-left:-5.253864px;}
._16{margin-left:-4.184292px;}
._6{margin-left:-2.508578px;}
._2{margin-left:-1.322630px;}
._3{width:1.091170px;}
._1{width:2.998962px;}
._8{width:4.789813px;}
._4{width:10.460700px;}
._23{width:11.955150px;}
._9{width:12.971268px;}
._14{width:13.995058px;}
._b{width:15.762931px;}
._17{width:17.342491px;}
._10{width:18.351109px;}
._c{width:19.421222px;}
._f{width:20.682358px;}
._11{width:21.825661px;}
._19{width:23.379827px;}
._3c{width:24.388445px;}
._7{width:25.946136px;}
._15{width:27.502346px;}
._e{width:29.971142px;}
._2f{width:31.143088px;}
._a{width:32.637384px;}
._18{width:34.311194px;}
._1a{width:36.463116px;}
._47{width:38.017282px;}
._45{width:43.636188px;}
._49{width:61.868160px;}
._48{width:88.767360px;}
._25{width:173.191757px;}
._20{width:307.773382px;}
._24{width:324.319309px;}
._21{width:335.174585px;}
._2b{width:392.535385px;}
._1d{width:406.953306px;}
._1c{width:422.689031px;}
._2a{width:501.469397px;}
._2d{width:546.152671px;}
._29{width:573.435653px;}
._2c{width:646.199768px;}
._1f{width:655.428706px;}
._28{width:679.865470px;}
._22{width:688.473178px;}
._1e{width:697.702554px;}
._26{width:722.521445px;}
._27{width:728.690303px;}
._12{width:734.227646px;}
._30{width:796.969498px;}
._33{width:806.041481px;}
._32{width:861.150989px;}
._40{width:887.451869px;}
._36{width:888.700444px;}
._42{width:895.595978px;}
._39{width:898.907807px;}
._43{width:901.494634px;}
._44{width:915.863962px;}
._41{width:918.822874px;}
._3f{width:923.610931px;}
._31{width:926.408448px;}
._3e{width:939.936547px;}
._3d{width:961.753997px;}
._38{width:975.894120px;}
._34{width:1000.381248px;}
._37{width:1063.906923px;}
._3b{width:1139.214610px;}
._3a{width:1161.499776px;}
._2e{width:1364.109796px;}
._46{width:2408.624700px;}
._13{width:2432.534700px;}
._35{width:2457.720619px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(61,100,144);}
.fs7{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fs4{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fs9{font-size:53.798400px;}
.fsd{font-size:56.058000px;}
.fsa{font-size:57.456000px;}
.fs1{font-size:59.775600px;}
.fsc{font-size:64.800000px;}
.fsb{font-size:72.144000px;}
.fs0{font-size:102.515176px;}
.fs2{font-size:107.596800px;}
.y143{bottom:-99.642974px;}
.y142{bottom:-76.639860px;}
.y141{bottom:-32.467680px;}
.y140{bottom:-5.466024px;}
.y0{bottom:0.000000px;}
.ya{bottom:3.425340px;}
.y9{bottom:14.151273px;}
.y2{bottom:18.594411px;}
.y4d{bottom:31.890000px;}
.y1cf{bottom:89.838000px;}
.y186{bottom:92.415000px;}
.y24{bottom:102.823500px;}
.y4c{bottom:103.621500px;}
.ye0{bottom:104.061000px;}
.yb7{bottom:106.246500px;}
.yc1{bottom:106.695000px;}
.y1ce{bottom:107.098500px;}
.y185{bottom:111.244500px;}
.ydf{bottom:116.296500px;}
.y112{bottom:120.145500px;}
.y23{bottom:120.711000px;}
.y4b{bottom:122.449500px;}
.y1cd{bottom:124.359000px;}
.yb6{bottom:125.076000px;}
.yc0{bottom:125.524500px;}
.y82{bottom:127.749000px;}
.yde{bottom:128.251500px;}
.y155{bottom:129.435000px;}
.y184{bottom:130.074000px;}
.y22{bottom:138.600000px;}
.y111{bottom:138.975000px;}
.ydd{bottom:140.487000px;}
.y4a{bottom:141.279000px;}
.y1cc{bottom:141.619500px;}
.yb5{bottom:143.905500px;}
.ybf{bottom:144.354000px;}
.y81{bottom:146.578500px;}
.y154{bottom:148.264500px;}
.y183{bottom:148.903500px;}
.y21{bottom:156.487500px;}
.y110{bottom:157.804500px;}
.y1cb{bottom:158.880000px;}
.ydc{bottom:159.925500px;}
.y49{bottom:160.108500px;}
.yb4{bottom:162.735000px;}
.ybe{bottom:163.183500px;}
.y80{bottom:165.406500px;}
.y153{bottom:167.094000px;}
.y182{bottom:167.733000px;}
.y20{bottom:174.375000px;}
.y1ca{bottom:176.140500px;}
.y10f{bottom:176.634000px;}
.y48{bottom:178.938000px;}
.ydb{bottom:179.352000px;}
.yb3{bottom:181.564500px;}
.ybd{bottom:182.013000px;}
.y7f{bottom:184.236000px;}
.y152{bottom:185.923500px;}
.y181{bottom:186.562500px;}
.yda{bottom:191.589000px;}
.y1f{bottom:192.264000px;}
.y1c9{bottom:193.401000px;}
.y10e{bottom:195.463500px;}
.y47{bottom:197.767500px;}
.yb2{bottom:200.394000px;}
.ybc{bottom:200.842500px;}
.y7e{bottom:203.065500px;}
.yd9{bottom:203.824500px;}
.y151{bottom:204.753000px;}
.y180{bottom:205.392000px;}
.y1e{bottom:210.151500px;}
.y1c8{bottom:210.661500px;}
.y10d{bottom:214.291500px;}
.yd8{bottom:216.201000px;}
.y46{bottom:216.597000px;}
.yb1{bottom:219.223500px;}
.ybb{bottom:219.672000px;}
.y7d{bottom:221.895000px;}
.y150{bottom:223.582500px;}
.y17f{bottom:224.221500px;}
.y1fe{bottom:224.379000px;}
.y1c7{bottom:227.922000px;}
.y1d{bottom:228.039000px;}
.yd7{bottom:228.297000px;}
.y10c{bottom:233.121000px;}
.y45{bottom:235.426500px;}
.yb0{bottom:238.053000px;}
.yba{bottom:238.501500px;}
.y7c{bottom:240.724500px;}
.y1fd{bottom:241.639500px;}
.y14f{bottom:242.412000px;}
.y17e{bottom:243.049500px;}
.y1c6{bottom:245.181000px;}
.yd6{bottom:247.735500px;}
.y10b{bottom:251.950500px;}
.y44{bottom:254.256000px;}
.y19c{bottom:256.882500px;}
.yb9{bottom:257.331000px;}
.y1fc{bottom:258.900000px;}
.y7b{bottom:259.554000px;}
.y14e{bottom:261.241500px;}
.yaf{bottom:261.366000px;}
.y17d{bottom:261.879000px;}
.y1c5{bottom:262.441500px;}
.yd5{bottom:267.162000px;}
.y43{bottom:273.085500px;}
.y10a{bottom:275.263500px;}
.y19b{bottom:275.712000px;}
.yb8{bottom:276.160500px;}
.y7a{bottom:278.383500px;}
.yd4{bottom:279.117000px;}
.y1c4{bottom:279.702000px;}
.y14d{bottom:280.071000px;}
.y17c{bottom:280.708500px;}
.yd3{bottom:291.352500px;}
.y42{bottom:291.915000px;}
.y1fb{bottom:293.421000px;}
.y19a{bottom:294.541500px;}
.yae{bottom:294.990000px;}
.y1c3{bottom:296.962500px;}
.y79{bottom:297.213000px;}
.y14c{bottom:298.900500px;}
.y17b{bottom:299.538000px;}
.yd2{bottom:303.729000px;}
.y1c{bottom:307.299000px;}
.y109{bottom:308.887500px;}
.y1fa{bottom:310.681500px;}
.y41{bottom:310.744500px;}
.y199{bottom:313.371000px;}
.yad{bottom:313.819500px;}
.y1c2{bottom:314.223000px;}
.y78{bottom:316.042500px;}
.y14b{bottom:317.730000px;}
.y17a{bottom:318.367500px;}
.yd1{bottom:323.028000px;}
.y1b{bottom:325.186500px;}
.y108{bottom:327.717000px;}
.y1f9{bottom:327.940500px;}
.y40{bottom:329.574000px;}
.y1c1{bottom:331.483500px;}
.y198{bottom:332.200500px;}
.yac{bottom:332.649000px;}
.y77{bottom:334.872000px;}
.y14a{bottom:336.559500px;}
.y179{bottom:337.197000px;}
.yd0{bottom:342.454500px;}
.y1a{bottom:343.074000px;}
.y1f8{bottom:345.201000px;}
.y107{bottom:346.546500px;}
.y3f{bottom:348.403500px;}
.y1c0{bottom:348.744000px;}
.y197{bottom:351.030000px;}
.yab{bottom:351.478500px;}
.y76{bottom:353.701500px;}
.ycf{bottom:354.690000px;}
.y149{bottom:355.389000px;}
.y178{bottom:356.026500px;}
.y19{bottom:360.963000px;}
.y1f7{bottom:362.461500px;}
.y106{bottom:365.376000px;}
.y1bf{bottom:366.004500px;}
.yce{bottom:366.925500px;}
.y3e{bottom:367.233000px;}
.y196{bottom:369.859500px;}
.yaa{bottom:370.308000px;}
.y75{bottom:372.531000px;}
.y148{bottom:374.218500px;}
.y13f{bottom:374.262116px;}
.y177{bottom:374.856000px;}
.ycd{bottom:379.162500px;}
.y1f6{bottom:379.722000px;}
.y1be{bottom:383.263500px;}
.y105{bottom:384.205500px;}
.y3d{bottom:386.062500px;}
.y195{bottom:388.689000px;}
.ya9{bottom:389.137500px;}
.y74{bottom:391.360500px;}
.y147{bottom:393.048000px;}
.y176{bottom:393.685500px;}
.y1f5{bottom:396.982500px;}
.y13e{bottom:397.373447px;}
.ycc{bottom:398.601000px;}
.y18{bottom:399.024000px;}
.y1bd{bottom:400.524000px;}
.y104{bottom:403.035000px;}
.y194{bottom:407.518500px;}
.ya8{bottom:407.967000px;}
.y3c{bottom:409.375500px;}
.y73{bottom:410.190000px;}
.y146{bottom:411.877500px;}
.y175{bottom:412.515000px;}
.y1f4{bottom:414.243000px;}
.y17{bottom:416.913000px;}
.y1bc{bottom:417.784500px;}
.y13d{bottom:420.378365px;}
.y103{bottom:421.864500px;}
.y193{bottom:426.348000px;}
.ya7{bottom:426.796500px;}
.ycb{bottom:427.350000px;}
.y72{bottom:429.019500px;}
.y145{bottom:430.707000px;}
.y174{bottom:431.344500px;}
.y1f3{bottom:431.503500px;}
.y16{bottom:434.800500px;}
.y1bb{bottom:435.045000px;}
.y102{bottom:440.694000px;}
.y13c{bottom:443.489695px;}
.y192{bottom:445.177500px;}
.ya6{bottom:445.626000px;}
.y1f2{bottom:448.764000px;}
.y173{bottom:450.174000px;}
.y1ba{bottom:452.305500px;}
.y71{bottom:452.332500px;}
.y101{bottom:464.007000px;}
.y144{bottom:464.272500px;}
.ya5{bottom:464.454000px;}
.yca{bottom:464.455500px;}
.y1f1{bottom:466.024500px;}
.y13b{bottom:466.601026px;}
.y172{bottom:469.003500px;}
.y1b9{bottom:469.566000px;}
.y15{bottom:470.622000px;}
.y3b{bottom:481.021500px;}
.y191{bottom:482.836500px;}
.ya4{bottom:483.283500px;}
.yc9{bottom:483.285000px;}
.y70{bottom:485.956500px;}
.y120{bottom:486.702000px;}
.y1b8{bottom:486.826500px;}
.y171{bottom:487.833000px;}
.y14{bottom:488.509500px;}
.y13a{bottom:489.604140px;}
.y100{bottom:497.631000px;}
.y3a{bottom:500.478000px;}
.y1f0{bottom:500.544000px;}
.y190{bottom:501.666000px;}
.ya3{bottom:502.113000px;}
.yc8{bottom:502.114500px;}
.y1b7{bottom:504.087000px;}
.y6f{bottom:504.786000px;}
.y170{bottom:506.662500px;}
.yff{bottom:516.460500px;}
.y1ef{bottom:517.804500px;}
.y18f{bottom:520.495500px;}
.ya2{bottom:520.942500px;}
.y1b6{bottom:521.347500px;}
.y6e{bottom:523.615500px;}
.y13{bottom:524.329500px;}
.y16f{bottom:525.492000px;}
.y1ee{bottom:535.065000px;}
.yfe{bottom:535.290000px;}
.y139{bottom:536.368140px;}
.y39{bottom:537.868500px;}
.y1b5{bottom:538.606500px;}
.y18e{bottom:539.323500px;}
.ya1{bottom:539.772000px;}
.y12{bottom:542.218500px;}
.y6d{bottom:542.445000px;}
.y16e{bottom:544.321500px;}
.y1ed{bottom:552.325500px;}
.yfd{bottom:554.118000px;}
.y1b4{bottom:555.867000px;}
.y38{bottom:557.325000px;}
.y18d{bottom:558.153000px;}
.ya0{bottom:558.601500px;}
.y11{bottom:560.106000px;}
.y138{bottom:560.668140px;}
.y6c{bottom:561.274500px;}
.y16d{bottom:563.151000px;}
.y1ec{bottom:569.586000px;}
.yfc{bottom:572.947500px;}
.y1b3{bottom:573.127500px;}
.y37{bottom:576.783000px;}
.y18c{bottom:576.982500px;}
.y9f{bottom:577.431000px;}
.y10{bottom:577.993500px;}
.y6b{bottom:580.104000px;}
.y16c{bottom:581.980500px;}
.y137{bottom:584.968140px;}
.y1eb{bottom:586.846500px;}
.y1b2{bottom:590.388000px;}
.yfb{bottom:591.777000px;}
.y18b{bottom:595.812000px;}
.yf{bottom:595.882500px;}
.y36{bottom:596.239500px;}
.y9e{bottom:596.260500px;}
.y6a{bottom:598.932000px;}
.y16b{bottom:600.810000px;}
.y1ea{bottom:604.107000px;}
.y1b1{bottom:607.648500px;}
.y136{bottom:609.160140px;}
.yfa{bottom:610.606500px;}
.ye{bottom:613.770000px;}
.y18a{bottom:614.641500px;}
.y9d{bottom:615.090000px;}
.y35{bottom:615.696000px;}
.y69{bottom:617.761500px;}
.y16a{bottom:619.639500px;}
.y1e9{bottom:621.366000px;}
.y1b0{bottom:624.909000px;}
.yf9{bottom:629.436000px;}
.yd{bottom:631.657500px;}
.y135{bottom:633.460140px;}
.y189{bottom:633.471000px;}
.y9c{bottom:633.919500px;}
.y34{bottom:635.154000px;}
.y68{bottom:636.591000px;}
.y169{bottom:638.469000px;}
.y1e8{bottom:638.626500px;}
.y1af{bottom:642.169500px;}
.yf8{bottom:648.265500px;}
.yc{bottom:649.546500px;}
.y188{bottom:652.300500px;}
.y9b{bottom:652.749000px;}
.y33{bottom:654.610500px;}
.y67{bottom:655.420500px;}
.y1e7{bottom:655.887000px;}
.y168{bottom:657.298500px;}
.y134{bottom:657.760140px;}
.y1ae{bottom:659.430000px;}
.yf7{bottom:667.095000px;}
.yb{bottom:667.434000px;}
.y9a{bottom:671.578500px;}
.y1e6{bottom:673.147500px;}
.y32{bottom:674.068500px;}
.y66{bottom:674.250000px;}
.y187{bottom:675.613500px;}
.y1ad{bottom:676.689000px;}
.y167{bottom:680.610000px;}
.yf6{bottom:685.924500px;}
.y8{bottom:689.805055px;}
.y99{bottom:690.408000px;}
.y65{bottom:693.079500px;}
.y31{bottom:693.525000px;}
.y133{bottom:693.940140px;}
.y1ac{bottom:693.949500px;}
.yf5{bottom:704.754000px;}
.y1e5{bottom:707.668500px;}
.y98{bottom:709.237500px;}
.y1ab{bottom:711.210000px;}
.y64{bottom:711.909000px;}
.y30{bottom:712.981500px;}
.y166{bottom:722.934000px;}
.yf4{bottom:723.583500px;}
.y1e4{bottom:724.929000px;}
.y97{bottom:728.067000px;}
.y1aa{bottom:728.470500px;}
.y63{bottom:730.738500px;}
.y2f{bottom:732.439500px;}
.yc7{bottom:732.550500px;}
.y132{bottom:736.822177px;}
.y165{bottom:739.372500px;}
.y1e3{bottom:742.189500px;}
.yf3{bottom:742.413000px;}
.y1a9{bottom:745.731000px;}
.y96{bottom:746.896500px;}
.y62{bottom:749.568000px;}
.y2e{bottom:751.896000px;}
.yc6{bottom:752.724000px;}
.y164{bottom:755.811000px;}
.y1e2{bottom:759.450000px;}
.y131{bottom:759.825292px;}
.yf2{bottom:761.242500px;}
.y1a8{bottom:762.991500px;}
.y95{bottom:765.726000px;}
.y61{bottom:768.397500px;}
.y2d{bottom:771.352500px;}
.y163{bottom:772.249500px;}
.y1e1{bottom:776.709000px;}
.yf1{bottom:780.072000px;}
.y1a7{bottom:780.252000px;}
.y130{bottom:782.936622px;}
.y94{bottom:784.555500px;}
.yc5{bottom:786.348000px;}
.y60{bottom:787.227000px;}
.y162{bottom:788.688000px;}
.y2c{bottom:790.810500px;}
.y1e0{bottom:793.969500px;}
.y1a6{bottom:797.512500px;}
.yf0{bottom:798.901500px;}
.y93{bottom:803.385000px;}
.y161{bottom:805.126500px;}
.yc4{bottom:805.177500px;}
.y12f{bottom:805.941540px;}
.y5f{bottom:806.056500px;}
.y1df{bottom:811.230000px;}
.yef{bottom:817.731000px;}
.y1a5{bottom:819.255000px;}
.y160{bottom:821.565000px;}
.y92{bottom:822.214500px;}
.y5e{bottom:824.886000px;}
.y1de{bottom:828.490500px;}
.y12e{bottom:829.052870px;}
.y2b{bottom:829.120500px;}
.yee{bottom:836.560500px;}
.y15f{bottom:838.003500px;}
.y91{bottom:841.044000px;}
.yc3{bottom:841.941000px;}
.y5d{bottom:843.715500px;}
.y2a{bottom:845.260500px;}
.y1dd{bottom:845.751000px;}
.y12d{bottom:852.164201px;}
.y11f{bottom:852.717000px;}
.y1a4{bottom:852.879000px;}
.yed{bottom:855.390000px;}
.y90{bottom:859.873500px;}
.yc2{bottom:860.769000px;}
.y15e{bottom:861.643500px;}
.y5c{bottom:862.545000px;}
.y1dc{bottom:863.011500px;}
.y29{bottom:865.738500px;}
.y11e{bottom:871.546500px;}
.yec{bottom:874.219500px;}
.y12c{bottom:875.167315px;}
.y28{bottom:877.539000px;}
.y8f{bottom:878.703000px;}
.y1a3{bottom:879.420000px;}
.y1db{bottom:880.272000px;}
.y5b{bottom:881.374500px;}
.y15d{bottom:885.285000px;}
.y11d{bottom:890.374500px;}
.yeb{bottom:893.049000px;}
.y8e{bottom:897.532500px;}
.y27{bottom:898.018500px;}
.y12b{bottom:898.278646px;}
.y5a{bottom:900.204000px;}
.y1a2{bottom:905.961000px;}
.y11c{bottom:909.204000px;}
.y26{bottom:909.817500px;}
.yea{bottom:911.878500px;}
.y1da{bottom:914.791500px;}
.y8d{bottom:916.362000px;}
.y15c{bottom:916.903500px;}
.y59{bottom:919.033500px;}
.y12a{bottom:921.389976px;}
.y1a1{bottom:923.535000px;}
.y11b{bottom:928.033500px;}
.y25{bottom:930.297000px;}
.ye9{bottom:930.708000px;}
.y1d9{bottom:932.052000px;}
.y8c{bottom:935.191500px;}
.y58{bottom:937.863000px;}
.y1a0{bottom:941.109000px;}
.y11a{bottom:946.863000px;}
.y1d8{bottom:949.312500px;}
.ye8{bottom:949.537500px;}
.y129{bottom:949.901285px;}
.y8b{bottom:954.021000px;}
.y57{bottom:956.692500px;}
.y19f{bottom:958.683000px;}
.y15b{bottom:961.482000px;}
.y1d7{bottom:966.573000px;}
.ye7{bottom:968.367000px;}
.y7{bottom:970.215000px;}
.y8a{bottom:972.849000px;}
.y56{bottom:975.522000px;}
.y19e{bottom:976.257000px;}
.y15a{bottom:977.920500px;}
.y1d6{bottom:983.833500px;}
.ye6{bottom:987.196500px;}
.y89{bottom:991.678500px;}
.y119{bottom:992.325000px;}
.y19d{bottom:993.831000px;}
.y55{bottom:994.351500px;}
.y159{bottom:994.359000px;}
.y128{bottom:994.506116px;}
.y1d5{bottom:1001.094000px;}
.ye5{bottom:1006.026000px;}
.y118{bottom:1008.763500px;}
.y88{bottom:1010.508000px;}
.y158{bottom:1010.797500px;}
.y6{bottom:1012.954500px;}
.y54{bottom:1013.181000px;}
.y127{bottom:1017.511034px;}
.y1d4{bottom:1018.354500px;}
.ye4{bottom:1024.855500px;}
.y117{bottom:1025.202000px;}
.y157{bottom:1027.236000px;}
.y87{bottom:1029.337500px;}
.y53{bottom:1032.010500px;}
.y1d3{bottom:1035.615000px;}
.y126{bottom:1040.622365px;}
.y5{bottom:1041.199500px;}
.y116{bottom:1041.640500px;}
.ye3{bottom:1043.685000px;}
.y86{bottom:1048.167000px;}
.y52{bottom:1050.840000px;}
.y156{bottom:1050.876000px;}
.y1d2{bottom:1052.875500px;}
.y115{bottom:1058.079000px;}
.ye2{bottom:1062.513000px;}
.y125{bottom:1063.733695px;}
.y85{bottom:1066.996500px;}
.y4{bottom:1069.443000px;}
.y51{bottom:1069.669500px;}
.y1d1{bottom:1070.134500px;}
.y114{bottom:1074.517500px;}
.ye1{bottom:1081.342500px;}
.y84{bottom:1085.826000px;}
.y124{bottom:1086.736810px;}
.y1d0{bottom:1087.395000px;}
.y50{bottom:1088.499000px;}
.y3{bottom:1097.688000px;}
.y83{bottom:1104.655500px;}
.y113{bottom:1106.137500px;}
.y4f{bottom:1107.327000px;}
.y123{bottom:1109.848140px;}
.y1{bottom:1141.174500px;}
.y4e{bottom:1173.397500px;}
.y122{bottom:1175.296842px;}
.y121{bottom:1187.068140px;}
.h7{height:25.508090px;}
.hc{height:32.565965px;}
.h9{height:33.112997px;}
.h8{height:34.199443px;}
.h16{height:34.574294px;}
.h13{height:35.108294px;}
.h17{height:35.114294px;}
.h10{height:37.605082px;}
.ha{height:37.993262px;}
.hb{height:38.641262px;}
.he{height:38.896243px;}
.h11{height:43.217759px;}
.hd{height:43.421105px;}
.h14{height:43.979105px;}
.h15{height:43.985105px;}
.hf{height:48.848947px;}
.h1e{height:49.117939px;}
.h4{height:50.629933px;}
.h2{height:50.931027px;}
.h1a{height:53.135578px;}
.h19{height:53.444180px;}
.h12{height:54.276245px;}
.h6{height:55.352206px;}
.h1d{height:60.275391px;}
.h1b{height:66.719109px;}
.h1c{height:67.106602px;}
.h3{height:69.505289px;}
.h5{height:77.792486px;}
.h18{height:344.138400px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:211.537947px;}
.w4{width:740.704320px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x7a{left:-101.891880px;}
.x0{left:0.000000px;}
.x3{left:29.274117px;}
.x1{left:54.000000px;}
.x2{left:57.111683px;}
.x79{left:76.106280px;}
.xa1{left:84.645000px;}
.x9e{left:86.272500px;}
.x7b{left:132.792120px;}
.x4{left:147.946500px;}
.x7c{left:171.023993px;}
.x7d{left:191.652120px;}
.x7f{left:210.012120px;}
.x82{left:213.468120px;}
.x7e{left:229.020120px;}
.x6d{left:248.820000px;}
.x7{left:249.832500px;}
.x5{left:250.897500px;}
.x6{left:271.221000px;}
.x61{left:273.504000px;}
.x80{left:278.592120px;}
.xc{left:282.786000px;}
.x54{left:289.168500px;}
.x5d{left:292.596000px;}
.x55{left:304.113000px;}
.x8{left:309.483000px;}
.x68{left:314.175000px;}
.xd{left:317.682000px;}
.xb{left:321.204000px;}
.x66{left:322.897500px;}
.x5f{left:331.791000px;}
.x69{left:333.046500px;}
.x6a{left:334.488000px;}
.x74{left:337.909500px;}
.x62{left:341.074500px;}
.x5e{left:343.245000px;}
.x35{left:345.829500px;}
.x65{left:347.398500px;}
.x64{left:348.540000px;}
.x63{left:353.740500px;}
.x36{left:360.774000px;}
.x88{left:363.148500px;}
.x89{left:364.809000px;}
.x87{left:365.946000px;}
.x85{left:367.606500px;}
.x76{left:370.746000px;}
.x73{left:373.735500px;}
.x75{left:374.767500px;}
.x86{left:376.267500px;}
.x84{left:377.733000px;}
.x5a{left:382.149000px;}
.x5b{left:385.806000px;}
.x6e{left:387.685500px;}
.x2f{left:395.284500px;}
.x9c{left:396.378000px;}
.x6f{left:402.630000px;}
.x8a{left:403.731000px;}
.x8b{left:407.542500px;}
.x30{left:410.229000px;}
.x31{left:413.958000px;}
.x4a{left:417.078000px;}
.x77{left:418.957500px;}
.x52{left:421.570500px;}
.x8c{left:426.297000px;}
.x32{left:428.901000px;}
.x4b{left:432.022500px;}
.x78{left:433.900500px;}
.x53{left:436.515000px;}
.x42{left:438.211500px;}
.x56{left:441.004500px;}
.x6c{left:444.004500px;}
.x43{left:445.683000px;}
.x9{left:451.200000px;}
.x44{left:454.189500px;}
.x57{left:455.947500px;}
.xa{left:458.109000px;}
.x70{left:459.705000px;}
.x8d{left:463.888500px;}
.x45{left:469.134000px;}
.x8e{left:471.360000px;}
.x59{left:472.665000px;}
.x71{left:474.649500px;}
.x46{left:482.167500px;}
.x9a{left:486.514500px;}
.x47{left:489.639000px;}
.x48{left:493.402500px;}
.x83{left:495.216000px;}
.x5c{left:497.710500px;}
.x20{left:505.354500px;}
.x49{left:508.345500px;}
.x9b{left:509.884500px;}
.x93{left:512.029500px;}
.x1e{left:513.145500px;}
.x21{left:520.297500px;}
.x94{left:526.974000px;}
.x1f{left:528.088500px;}
.x95{left:529.668000px;}
.x60{left:535.263000px;}
.x96{left:537.139500px;}
.xe{left:539.127000px;}
.xf{left:546.598500px;}
.x50{left:548.155500px;}
.x10{left:550.309500px;}
.x33{left:551.983500px;}
.x41{left:553.569000px;}
.x11{left:557.781000px;}
.x67{left:558.975000px;}
.x3b{left:561.921000px;}
.x51{left:563.100000px;}
.x34{left:566.928000px;}
.x4c{left:568.443000px;}
.x37{left:570.055500px;}
.x3c{left:576.268500px;}
.x4d{left:583.387500px;}
.x38{left:585.000000px;}
.x39{left:588.661500px;}
.x3a{left:603.604500px;}
.x91{left:613.758000px;}
.x8f{left:614.914500px;}
.x97{left:621.052500px;}
.x92{left:628.701000px;}
.x90{left:629.857500px;}
.x98{left:635.995500px;}
.x2a{left:653.368500px;}
.x28{left:663.145500px;}
.x12{left:664.897500px;}
.x2b{left:668.313000px;}
.x13{left:672.369000px;}
.x14{left:676.033500px;}
.x29{left:678.090000px;}
.x15{left:683.506500px;}
.x2c{left:687.000000px;}
.x2d{left:694.486500px;}
.x16{left:695.754000px;}
.x23{left:697.720500px;}
.x24{left:701.530500px;}
.x17{left:703.225500px;}
.x2e{left:709.431000px;}
.x25{left:716.475000px;}
.x4e{left:719.457000px;}
.xa2{left:723.097500px;}
.x6b{left:726.934500px;}
.x3f{left:732.754500px;}
.x4f{left:734.400000px;}
.x81{left:737.265459px;}
.x26{left:744.312000px;}
.x40{left:747.699000px;}
.xa3{left:749.997000px;}
.x99{left:751.389000px;}
.x3d{left:752.902500px;}
.xa4{left:755.776500px;}
.x27{left:759.255000px;}
.x18{left:763.392000px;}
.x3e{left:767.847000px;}
.x19{left:770.863500px;}
.x58{left:774.730500px;}
.x1a{left:778.186500px;}
.xa5{left:782.674500px;}
.x22{left:785.647500px;}
.x1b{left:793.129500px;}
.x72{left:800.319000px;}
.x9f{left:810.397500px;}
.x1c{left:817.846500px;}
.x1d{left:832.789500px;}
.xa0{left:837.295500px;}
.x9d{left:843.780000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.ls26{letter-spacing:-0.185971pt;}
.ls2c{letter-spacing:-0.179558pt;}
.ls27{letter-spacing:-0.121843pt;}
.ls2f{letter-spacing:-0.102605pt;}
.ls22{letter-spacing:-0.091930pt;}
.ls23{letter-spacing:-0.070541pt;}
.ls2b{letter-spacing:-0.057715pt;}
.ls2d{letter-spacing:-0.051302pt;}
.ls2e{letter-spacing:-0.044890pt;}
.ls24{letter-spacing:-0.032064pt;}
.ls29{letter-spacing:-0.025651pt;}
.ls25{letter-spacing:-0.019238pt;}
.ls28{letter-spacing:-0.012826pt;}
.ls30{letter-spacing:-0.006413pt;}
.ls8{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.000260pt;}
.ls36{letter-spacing:0.000447pt;}
.ls0{letter-spacing:0.000518pt;}
.ls39{letter-spacing:0.000711pt;}
.ls38{letter-spacing:0.002262pt;}
.ls32{letter-spacing:0.003261pt;}
.ls33{letter-spacing:0.003581pt;}
.ls3b{letter-spacing:0.004267pt;}
.ls1a{letter-spacing:0.005760pt;}
.ls16{letter-spacing:0.006413pt;}
.ls12{letter-spacing:0.012826pt;}
.ls1b{letter-spacing:0.017280pt;}
.ls15{letter-spacing:0.019238pt;}
.ls21{letter-spacing:0.025651pt;}
.ls11{letter-spacing:0.032064pt;}
.ls20{letter-spacing:0.034560pt;}
.ls14{letter-spacing:0.038477pt;}
.lsf{letter-spacing:0.040858pt;}
.lsd{letter-spacing:0.045965pt;}
.ls13{letter-spacing:0.051302pt;}
.ls1f{letter-spacing:0.057715pt;}
.ls2a{letter-spacing:0.064128pt;}
.ls17{letter-spacing:0.070541pt;}
.ls19{letter-spacing:0.076954pt;}
.ls1d{letter-spacing:0.096192pt;}
.ls18{letter-spacing:0.102605pt;}
.ls1e{letter-spacing:0.173146pt;}
.ls10{letter-spacing:0.194074pt;}
.lse{letter-spacing:0.204288pt;}
.ls1c{letter-spacing:0.205210pt;}
.ls31{letter-spacing:0.576078pt;}
.ls9{letter-spacing:1.133683pt;}
.ls3{letter-spacing:1.654338pt;}
.ls1{letter-spacing:2.657067pt;}
.ls4{letter-spacing:9.293600pt;}
.ls7{letter-spacing:10.626533pt;}
.ls3d{letter-spacing:10.759467pt;}
.ls3a{letter-spacing:11.848644pt;}
.ls34{letter-spacing:11.954133pt;}
.ls37{letter-spacing:11.959467pt;}
.ls3c{letter-spacing:12.457872pt;}
.lsc{letter-spacing:13.070931pt;}
.lsb{letter-spacing:13.336601pt;}
.lsa{letter-spacing:16.843436pt;}
.ls5{letter-spacing:55.787733pt;}
.ls6{letter-spacing:57.174803pt;}
.ls2{letter-spacing:64.321067pt;}
.ws57{word-spacing:-13.283467pt;}
.ws93{word-spacing:-12.972288pt;}
.wse2{word-spacing:-11.955200pt;}
.ws30{word-spacing:-10.626800pt;}
.ws4{word-spacing:-10.095467pt;}
.wsb{word-spacing:-9.298400pt;}
.ws5a{word-spacing:-3.453701pt;}
.wsdf{word-spacing:-3.134898pt;}
.ws5c{word-spacing:-2.762961pt;}
.ws59{word-spacing:-2.284756pt;}
.ws31{word-spacing:-2.125355pt;}
.wse6{word-spacing:-2.104115pt;}
.ws72{word-spacing:-2.019087pt;}
.ws1f{word-spacing:-2.008474pt;}
.ws10f{word-spacing:-1.960653pt;}
.ws43{word-spacing:-1.806551pt;}
.ws7{word-spacing:-1.696326pt;}
.ws5b{word-spacing:-1.540882pt;}
.ws6c{word-spacing:-1.487748pt;}
.ws56{word-spacing:-1.434614pt;}
.ws5e{word-spacing:-1.381481pt;}
.ws19{word-spacing:-1.338982pt;}
.ws37{word-spacing:-1.328347pt;}
.ws2a{word-spacing:-1.275213pt;}
.ws47{word-spacing:-1.222079pt;}
.ws103{word-spacing:-1.195520pt;}
.ws6{word-spacing:-1.175671pt;}
.ws70{word-spacing:-1.168945pt;}
.ws39{word-spacing:-1.115811pt;}
.ws10d{word-spacing:-1.099878pt;}
.ws7e{word-spacing:-1.062680pt;}
.ws6e{word-spacing:-1.062677pt;}
.ws10c{word-spacing:-1.052058pt;}
.ws71{word-spacing:-1.009543pt;}
.ws3d{word-spacing:-0.956410pt;}
.ws9{word-spacing:-0.929840pt;}
.ws73{word-spacing:-0.903276pt;}
.ws112{word-spacing:-0.860774pt;}
.ws3c{word-spacing:-0.850142pt;}
.ws6f{word-spacing:-0.797008pt;}
.ws20{word-spacing:-0.765133pt;}
.ws38{word-spacing:-0.690740pt;}
.wsa9{word-spacing:-0.673344pt;}
.ws52{word-spacing:-0.637606pt;}
.wsa3{word-spacing:-0.634867pt;}
.ws115{word-spacing:-0.621670pt;}
.ws3a{word-spacing:-0.584473pt;}
.wsf3{word-spacing:-0.573850pt;}
.wsd7{word-spacing:-0.531339pt;}
.wsa8{word-spacing:-0.480960pt;}
.wsd6{word-spacing:-0.478205pt;}
.ws55{word-spacing:-0.425071pt;}
.ws61{word-spacing:-0.371937pt;}
.ws29{word-spacing:-0.318803pt;}
.wsc0{word-spacing:-0.288576pt;}
.ws1b{word-spacing:-0.286925pt;}
.ws9b{word-spacing:-0.286003pt;}
.ws42{word-spacing:-0.265669pt;}
.ws9f{word-spacing:-0.250099pt;}
.ws106{word-spacing:-0.239104pt;}
.wsbd{word-spacing:-0.237274pt;}
.wsbc{word-spacing:-0.230861pt;}
.wsb6{word-spacing:-0.224448pt;}
.ws45{word-spacing:-0.212535pt;}
.ws9e{word-spacing:-0.211622pt;}
.wsfb{word-spacing:-0.191283pt;}
.ws2b{word-spacing:-0.159402pt;}
.ws1a{word-spacing:-0.143462pt;}
.wsfc{word-spacing:-0.136688pt;}
.ws9a{word-spacing:-0.132787pt;}
.ws33{word-spacing:-0.106268pt;}
.wse7{word-spacing:-0.095642pt;}
.ws2{word-spacing:-0.053134pt;}
.ws21{word-spacing:-0.047821pt;}
.ws16{word-spacing:-0.042507pt;}
.ws113{word-spacing:-0.024320pt;}
.wsed{word-spacing:-0.008269pt;}
.ws102{word-spacing:-0.005342pt;}
.wsef{word-spacing:-0.004847pt;}
.wsec{word-spacing:-0.002935pt;}
.ws5{word-spacing:-0.002889pt;}
.ws2f{word-spacing:-0.002739pt;}
.wsa{word-spacing:-0.002543pt;}
.ws10a{word-spacing:-0.000887pt;}
.ws3{word-spacing:-0.000725pt;}
.ws0{word-spacing:0.000000pt;}
.ws1{word-spacing:0.000533pt;}
.wsb7{word-spacing:0.006413pt;}
.wsa5{word-spacing:0.032064pt;}
.wseb{word-spacing:0.047821pt;}
.wsb5{word-spacing:0.051302pt;}
.ws2c{word-spacing:0.053134pt;}
.wsb8{word-spacing:0.089779pt;}
.wsea{word-spacing:0.095642pt;}
.wsa4{word-spacing:0.096192pt;}
.wsc1{word-spacing:0.102605pt;}
.ws26{word-spacing:0.106268pt;}
.ws1c{word-spacing:0.143462pt;}
.ws28{word-spacing:0.159402pt;}
.wsc3{word-spacing:0.161280pt;}
.wsb9{word-spacing:0.173146pt;}
.wsb4{word-spacing:0.178560pt;}
.wsc{word-spacing:0.185968pt;}
.wsb3{word-spacing:0.190080pt;}
.ws18{word-spacing:0.191283pt;}
.wsc2{word-spacing:0.205210pt;}
.ws23{word-spacing:0.212535pt;}
.wsf5{word-spacing:0.239104pt;}
.wse{word-spacing:0.260355pt;}
.ws24{word-spacing:0.265669pt;}
.ws10e{word-spacing:0.286925pt;}
.ws2d{word-spacing:0.318803pt;}
.ws5d{word-spacing:0.371937pt;}
.wsd3{word-spacing:0.425071pt;}
.ws27{word-spacing:0.478205pt;}
.ws111{word-spacing:0.478208pt;}
.ws110{word-spacing:0.526029pt;}
.wscd{word-spacing:0.531339pt;}
.ws51{word-spacing:0.584473pt;}
.ws1d{word-spacing:0.621670pt;}
.ws77{word-spacing:0.637606pt;}
.wse3{word-spacing:0.669491pt;}
.ws3b{word-spacing:0.690740pt;}
.ws63{word-spacing:0.743874pt;}
.ws4a{word-spacing:0.797008pt;}
.ws9c{word-spacing:0.840077pt;}
.ws78{word-spacing:0.850142pt;}
.ws9d{word-spacing:0.859315pt;}
.ws97{word-spacing:0.903276pt;}
.ws69{word-spacing:0.956410pt;}
.ws36{word-spacing:1.009543pt;}
.ws2e{word-spacing:1.115811pt;}
.wsd4{word-spacing:1.168945pt;}
.ws99{word-spacing:1.275213pt;}
.wsba{word-spacing:1.276147pt;}
.ws4f{word-spacing:1.328347pt;}
.wsfe{word-spacing:1.386803pt;}
.ws95{word-spacing:1.434614pt;}
.wsee{word-spacing:1.434624pt;}
.ws66{word-spacing:1.487748pt;}
.ws84{word-spacing:1.540882pt;}
.ws1e{word-spacing:1.578086pt;}
.ws49{word-spacing:1.594016pt;}
.ws94{word-spacing:1.647150pt;}
.ws117{word-spacing:1.673728pt;}
.wsdd{word-spacing:1.753418pt;}
.wsd{word-spacing:1.785293pt;}
.ws6a{word-spacing:1.806551pt;}
.ws10b{word-spacing:1.817190pt;}
.ws76{word-spacing:1.859685pt;}
.ws58{word-spacing:1.912819pt;}
.ws64{word-spacing:1.965953pt;}
.wscf{word-spacing:2.019087pt;}
.ws40{word-spacing:2.125355pt;}
.wsdc{word-spacing:2.178489pt;}
.ws65{word-spacing:2.231622pt;}
.ws3e{word-spacing:2.284756pt;}
.ws75{word-spacing:2.337890pt;}
.wsa1{word-spacing:2.366323pt;}
.wsa2{word-spacing:2.385562pt;}
.ws60{word-spacing:2.391024pt;}
.wsbf{word-spacing:2.398387pt;}
.wsbe{word-spacing:2.430451pt;}
.wsaf{word-spacing:2.436864pt;}
.ws62{word-spacing:2.444158pt;}
.ws6b{word-spacing:2.497292pt;}
.ws17{word-spacing:2.550432pt;}
.ws74{word-spacing:2.603559pt;}
.ws32{word-spacing:2.709827pt;}
.ws104{word-spacing:2.725786pt;}
.ws92{word-spacing:2.762961pt;}
.ws105{word-spacing:2.773606pt;}
.wsce{word-spacing:2.816095pt;}
.wsfd{word-spacing:2.862729pt;}
.wsf4{word-spacing:2.863548pt;}
.wsf6{word-spacing:2.866398pt;}
.wse8{word-spacing:2.866509pt;}
.ws101{word-spacing:2.866714pt;}
.ws109{word-spacing:2.867226pt;}
.ws100{word-spacing:2.867652pt;}
.wsdb{word-spacing:2.869229pt;}
.wsf0{word-spacing:2.869248pt;}
.ws85{word-spacing:2.922363pt;}
.wse9{word-spacing:2.972822pt;}
.ws5f{word-spacing:2.975497pt;}
.ws46{word-spacing:3.028630pt;}
.wsd2{word-spacing:3.081764pt;}
.ws114{word-spacing:3.108352pt;}
.ws25{word-spacing:3.134898pt;}
.ws108{word-spacing:3.156173pt;}
.wsac{word-spacing:3.187162pt;}
.ws22{word-spacing:3.188032pt;}
.wsf7{word-spacing:3.203994pt;}
.wsd9{word-spacing:3.294300pt;}
.wsab{word-spacing:3.296179pt;}
.ws8a{word-spacing:3.347434pt;}
.wsff{word-spacing:3.347456pt;}
.wsde{word-spacing:3.400567pt;}
.ws35{word-spacing:3.453701pt;}
.wsb1{word-spacing:3.482150pt;}
.ws41{word-spacing:3.506835pt;}
.ws8b{word-spacing:3.559969pt;}
.wsb2{word-spacing:3.578342pt;}
.ws88{word-spacing:3.613103pt;}
.ws8e{word-spacing:3.772505pt;}
.ws98{word-spacing:3.825638pt;}
.wsfa{word-spacing:3.873485pt;}
.wsf9{word-spacing:3.879391pt;}
.wsb0{word-spacing:3.879744pt;}
.ws48{word-spacing:3.931906pt;}
.wsf8{word-spacing:3.969126pt;}
.wsd0{word-spacing:3.985040pt;}
.ws87{word-spacing:4.038174pt;}
.wsf2{word-spacing:4.064768pt;}
.ws4c{word-spacing:4.144442pt;}
.ws67{word-spacing:4.197575pt;}
.ws8d{word-spacing:4.250709pt;}
.wsc7{word-spacing:4.302989pt;}
.ws116{word-spacing:4.303872pt;}
.wsc6{word-spacing:4.335053pt;}
.ws107{word-spacing:4.351693pt;}
.ws4e{word-spacing:4.356977pt;}
.ws4d{word-spacing:4.410111pt;}
.wsd1{word-spacing:4.463245pt;}
.ws44{word-spacing:4.516379pt;}
.ws54{word-spacing:4.728914pt;}
.wsa6{word-spacing:4.732646pt;}
.wsa7{word-spacing:4.739059pt;}
.ws6d{word-spacing:4.782048pt;}
.ws83{word-spacing:4.941450pt;}
.ws68{word-spacing:5.153985pt;}
.wse0{word-spacing:5.164646pt;}
.ws50{word-spacing:5.207119pt;}
.wscc{word-spacing:5.260253pt;}
.wse4{word-spacing:5.355930pt;}
.ws53{word-spacing:5.366521pt;}
.ws14{word-spacing:5.393072pt;}
.wse5{word-spacing:5.403750pt;}
.ws8c{word-spacing:5.419654pt;}
.ws15{word-spacing:5.467459pt;}
.wsd8{word-spacing:5.632190pt;}
.ws3f{word-spacing:5.685324pt;}
.wsbb{word-spacing:5.803584pt;}
.wsae{word-spacing:5.861299pt;}
.wsad{word-spacing:5.893363pt;}
.wse1{word-spacing:6.121062pt;}
.wsa0{word-spacing:6.194765pt;}
.wsf1{word-spacing:6.216704pt;}
.wsc5{word-spacing:6.246067pt;}
.wscb{word-spacing:6.269796pt;}
.wsc4{word-spacing:6.271718pt;}
.ws96{word-spacing:6.482332pt;}
.ws34{word-spacing:6.588599pt;}
.ws4b{word-spacing:6.748001pt;}
.wsda{word-spacing:7.173072pt;}
.ws89{word-spacing:7.226206pt;}
.wsca{word-spacing:7.279340pt;}
.ws8f{word-spacing:7.332474pt;}
.wsaa{word-spacing:7.393958pt;}
.ws86{word-spacing:7.545009pt;}
.ws12{word-spacing:7.699075pt;}
.ws90{word-spacing:7.757545pt;}
.ws8{word-spacing:13.763148pt;}
.wsd5{word-spacing:14.186742pt;}
.wsf{word-spacing:14.348669pt;}
.ws10{word-spacing:14.356730pt;}
.ws11{word-spacing:15.732893pt;}
.ws13{word-spacing:24.399002pt;}
.ws7d{word-spacing:302.509654pt;}
.ws81{word-spacing:452.701680pt;}
.ws82{word-spacing:471.234819pt;}
.ws79{word-spacing:476.934394pt;}
.ws7b{word-spacing:490.471474pt;}
.ws7a{word-spacing:498.995751pt;}
.ws7f{word-spacing:505.544964pt;}
.ws80{word-spacing:537.807059pt;}
.ws7c{word-spacing:621.689599pt;}
.wsc9{word-spacing:812.092826pt;}
.ws91{word-spacing:862.974157pt;}
.wsc8{word-spacing:873.159987pt;}
._4a{margin-left:-17.936916pt;}
._0{margin-left:-10.616218pt;}
._1b{margin-left:-7.349919pt;}
._d{margin-left:-6.168883pt;}
._5{margin-left:-4.670101pt;}
._16{margin-left:-3.719371pt;}
._6{margin-left:-2.229847pt;}
._2{margin-left:-1.175671pt;}
._3{width:0.969929pt;}
._1{width:2.665744pt;}
._8{width:4.257612pt;}
._4{width:9.298400pt;}
._23{width:10.626800pt;}
._9{width:11.530016pt;}
._14{width:12.440051pt;}
._b{width:14.011494pt;}
._17{width:15.415548pt;}
._10{width:16.312097pt;}
._c{width:17.263309pt;}
._f{width:18.384318pt;}
._11{width:19.400588pt;}
._19{width:20.782068pt;}
._3c{width:21.678618pt;}
._7{width:23.063232pt;}
._15{width:24.446530pt;}
._e{width:26.641015pt;}
._2f{width:27.682745pt;}
._a{width:29.011008pt;}
._18{width:30.498839pt;}
._1a{width:32.411659pt;}
._47{width:33.793139pt;}
._45{width:38.787723pt;}
._49{width:54.993920pt;}
._48{width:78.904320pt;}
._25{width:153.948229pt;}
._20{width:273.576339pt;}
._24{width:288.283830pt;}
._21{width:297.932965pt;}
._2b{width:348.920342pt;}
._1d{width:361.736272pt;}
._1c{width:375.723583pt;}
._2a{width:445.750575pt;}
._2d{width:485.469041pt;}
._29{width:509.720580pt;}
._2c{width:574.399794pt;}
._1f{width:582.603294pt;}
._28{width:604.324862pt;}
._22{width:611.976158pt;}
._1e{width:620.180048pt;}
._26{width:642.241285pt;}
._27{width:647.724714pt;}
._12{width:652.646796pt;}
._30{width:708.417331pt;}
._33{width:716.481316pt;}
._32{width:765.467546pt;}
._40{width:788.846106pt;}
._36{width:789.955950pt;}
._42{width:796.085314pt;}
._39{width:799.029162pt;}
._43{width:801.328563pt;}
._44{width:814.101299pt;}
._41{width:816.731443pt;}
._3f{width:820.987494pt;}
._31{width:823.474176pt;}
._3e{width:835.499153pt;}
._3d{width:854.892442pt;}
._38{width:867.461440pt;}
._34{width:889.227776pt;}
._37{width:945.695042pt;}
._3b{width:1012.635209pt;}
._3a{width:1032.444246pt;}
._2e{width:1212.542041pt;}
._46{width:2140.999733pt;}
._13{width:2162.253067pt;}
._35{width:2184.640550pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fs4{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fs9{font-size:47.820800pt;}
.fsd{font-size:49.829333pt;}
.fsa{font-size:51.072000pt;}
.fs1{font-size:53.133867pt;}
.fsc{font-size:57.600000pt;}
.fsb{font-size:64.128000pt;}
.fs0{font-size:91.124601pt;}
.fs2{font-size:95.641600pt;}
.y143{bottom:-88.571533pt;}
.y142{bottom:-68.124320pt;}
.y141{bottom:-28.860160pt;}
.y140{bottom:-4.858688pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:3.044747pt;}
.y9{bottom:12.578910pt;}
.y2{bottom:16.528366pt;}
.y4d{bottom:28.346667pt;}
.y1cf{bottom:79.856000pt;}
.y186{bottom:82.146667pt;}
.y24{bottom:91.398667pt;}
.y4c{bottom:92.108000pt;}
.ye0{bottom:92.498667pt;}
.yb7{bottom:94.441333pt;}
.yc1{bottom:94.840000pt;}
.y1ce{bottom:95.198667pt;}
.y185{bottom:98.884000pt;}
.ydf{bottom:103.374667pt;}
.y112{bottom:106.796000pt;}
.y23{bottom:107.298667pt;}
.y4b{bottom:108.844000pt;}
.y1cd{bottom:110.541333pt;}
.yb6{bottom:111.178667pt;}
.yc0{bottom:111.577333pt;}
.y82{bottom:113.554667pt;}
.yde{bottom:114.001333pt;}
.y155{bottom:115.053333pt;}
.y184{bottom:115.621333pt;}
.y22{bottom:123.200000pt;}
.y111{bottom:123.533333pt;}
.ydd{bottom:124.877333pt;}
.y4a{bottom:125.581333pt;}
.y1cc{bottom:125.884000pt;}
.yb5{bottom:127.916000pt;}
.ybf{bottom:128.314667pt;}
.y81{bottom:130.292000pt;}
.y154{bottom:131.790667pt;}
.y183{bottom:132.358667pt;}
.y21{bottom:139.100000pt;}
.y110{bottom:140.270667pt;}
.y1cb{bottom:141.226667pt;}
.ydc{bottom:142.156000pt;}
.y49{bottom:142.318667pt;}
.yb4{bottom:144.653333pt;}
.ybe{bottom:145.052000pt;}
.y80{bottom:147.028000pt;}
.y153{bottom:148.528000pt;}
.y182{bottom:149.096000pt;}
.y20{bottom:155.000000pt;}
.y1ca{bottom:156.569333pt;}
.y10f{bottom:157.008000pt;}
.y48{bottom:159.056000pt;}
.ydb{bottom:159.424000pt;}
.yb3{bottom:161.390667pt;}
.ybd{bottom:161.789333pt;}
.y7f{bottom:163.765333pt;}
.y152{bottom:165.265333pt;}
.y181{bottom:165.833333pt;}
.yda{bottom:170.301333pt;}
.y1f{bottom:170.901333pt;}
.y1c9{bottom:171.912000pt;}
.y10e{bottom:173.745333pt;}
.y47{bottom:175.793333pt;}
.yb2{bottom:178.128000pt;}
.ybc{bottom:178.526667pt;}
.y7e{bottom:180.502667pt;}
.yd9{bottom:181.177333pt;}
.y151{bottom:182.002667pt;}
.y180{bottom:182.570667pt;}
.y1e{bottom:186.801333pt;}
.y1c8{bottom:187.254667pt;}
.y10d{bottom:190.481333pt;}
.yd8{bottom:192.178667pt;}
.y46{bottom:192.530667pt;}
.yb1{bottom:194.865333pt;}
.ybb{bottom:195.264000pt;}
.y7d{bottom:197.240000pt;}
.y150{bottom:198.740000pt;}
.y17f{bottom:199.308000pt;}
.y1fe{bottom:199.448000pt;}
.y1c7{bottom:202.597333pt;}
.y1d{bottom:202.701333pt;}
.yd7{bottom:202.930667pt;}
.y10c{bottom:207.218667pt;}
.y45{bottom:209.268000pt;}
.yb0{bottom:211.602667pt;}
.yba{bottom:212.001333pt;}
.y7c{bottom:213.977333pt;}
.y1fd{bottom:214.790667pt;}
.y14f{bottom:215.477333pt;}
.y17e{bottom:216.044000pt;}
.y1c6{bottom:217.938667pt;}
.yd6{bottom:220.209333pt;}
.y10b{bottom:223.956000pt;}
.y44{bottom:226.005333pt;}
.y19c{bottom:228.340000pt;}
.yb9{bottom:228.738667pt;}
.y1fc{bottom:230.133333pt;}
.y7b{bottom:230.714667pt;}
.y14e{bottom:232.214667pt;}
.yaf{bottom:232.325333pt;}
.y17d{bottom:232.781333pt;}
.y1c5{bottom:233.281333pt;}
.yd5{bottom:237.477333pt;}
.y43{bottom:242.742667pt;}
.y10a{bottom:244.678667pt;}
.y19b{bottom:245.077333pt;}
.yb8{bottom:245.476000pt;}
.y7a{bottom:247.452000pt;}
.yd4{bottom:248.104000pt;}
.y1c4{bottom:248.624000pt;}
.y14d{bottom:248.952000pt;}
.y17c{bottom:249.518667pt;}
.yd3{bottom:258.980000pt;}
.y42{bottom:259.480000pt;}
.y1fb{bottom:260.818667pt;}
.y19a{bottom:261.814667pt;}
.yae{bottom:262.213333pt;}
.y1c3{bottom:263.966667pt;}
.y79{bottom:264.189333pt;}
.y14c{bottom:265.689333pt;}
.y17b{bottom:266.256000pt;}
.yd2{bottom:269.981333pt;}
.y1c{bottom:273.154667pt;}
.y109{bottom:274.566667pt;}
.y1fa{bottom:276.161333pt;}
.y41{bottom:276.217333pt;}
.y199{bottom:278.552000pt;}
.yad{bottom:278.950667pt;}
.y1c2{bottom:279.309333pt;}
.y78{bottom:280.926667pt;}
.y14b{bottom:282.426667pt;}
.y17a{bottom:282.993333pt;}
.yd1{bottom:287.136000pt;}
.y1b{bottom:289.054667pt;}
.y108{bottom:291.304000pt;}
.y1f9{bottom:291.502667pt;}
.y40{bottom:292.954667pt;}
.y1c1{bottom:294.652000pt;}
.y198{bottom:295.289333pt;}
.yac{bottom:295.688000pt;}
.y77{bottom:297.664000pt;}
.y14a{bottom:299.164000pt;}
.y179{bottom:299.730667pt;}
.yd0{bottom:304.404000pt;}
.y1a{bottom:304.954667pt;}
.y1f8{bottom:306.845333pt;}
.y107{bottom:308.041333pt;}
.y3f{bottom:309.692000pt;}
.y1c0{bottom:309.994667pt;}
.y197{bottom:312.026667pt;}
.yab{bottom:312.425333pt;}
.y76{bottom:314.401333pt;}
.ycf{bottom:315.280000pt;}
.y149{bottom:315.901333pt;}
.y178{bottom:316.468000pt;}
.y19{bottom:320.856000pt;}
.y1f7{bottom:322.188000pt;}
.y106{bottom:324.778667pt;}
.y1bf{bottom:325.337333pt;}
.yce{bottom:326.156000pt;}
.y3e{bottom:326.429333pt;}
.y196{bottom:328.764000pt;}
.yaa{bottom:329.162667pt;}
.y75{bottom:331.138667pt;}
.y148{bottom:332.638667pt;}
.y13f{bottom:332.677437pt;}
.y177{bottom:333.205333pt;}
.ycd{bottom:337.033333pt;}
.y1f6{bottom:337.530667pt;}
.y1be{bottom:340.678667pt;}
.y105{bottom:341.516000pt;}
.y3d{bottom:343.166667pt;}
.y195{bottom:345.501333pt;}
.ya9{bottom:345.900000pt;}
.y74{bottom:347.876000pt;}
.y147{bottom:349.376000pt;}
.y176{bottom:349.942667pt;}
.y1f5{bottom:352.873333pt;}
.y13e{bottom:353.220842pt;}
.ycc{bottom:354.312000pt;}
.y18{bottom:354.688000pt;}
.y1bd{bottom:356.021333pt;}
.y104{bottom:358.253333pt;}
.y194{bottom:362.238667pt;}
.ya8{bottom:362.637333pt;}
.y3c{bottom:363.889333pt;}
.y73{bottom:364.613333pt;}
.y146{bottom:366.113333pt;}
.y175{bottom:366.680000pt;}
.y1f4{bottom:368.216000pt;}
.y17{bottom:370.589333pt;}
.y1bc{bottom:371.364000pt;}
.y13d{bottom:373.669658pt;}
.y103{bottom:374.990667pt;}
.y193{bottom:378.976000pt;}
.ya7{bottom:379.374667pt;}
.ycb{bottom:379.866667pt;}
.y72{bottom:381.350667pt;}
.y145{bottom:382.850667pt;}
.y174{bottom:383.417333pt;}
.y1f3{bottom:383.558667pt;}
.y16{bottom:386.489333pt;}
.y1bb{bottom:386.706667pt;}
.y102{bottom:391.728000pt;}
.y13c{bottom:394.213062pt;}
.y192{bottom:395.713333pt;}
.ya6{bottom:396.112000pt;}
.y1f2{bottom:398.901333pt;}
.y173{bottom:400.154667pt;}
.y1ba{bottom:402.049333pt;}
.y71{bottom:402.073333pt;}
.y101{bottom:412.450667pt;}
.y144{bottom:412.686667pt;}
.ya5{bottom:412.848000pt;}
.yca{bottom:412.849333pt;}
.y1f1{bottom:414.244000pt;}
.y13b{bottom:414.756467pt;}
.y172{bottom:416.892000pt;}
.y1b9{bottom:417.392000pt;}
.y15{bottom:418.330667pt;}
.y3b{bottom:427.574667pt;}
.y191{bottom:429.188000pt;}
.ya4{bottom:429.585333pt;}
.yc9{bottom:429.586667pt;}
.y70{bottom:431.961333pt;}
.y120{bottom:432.624000pt;}
.y1b8{bottom:432.734667pt;}
.y171{bottom:433.629333pt;}
.y14{bottom:434.230667pt;}
.y13a{bottom:435.203680pt;}
.y100{bottom:442.338667pt;}
.y3a{bottom:444.869333pt;}
.y1f0{bottom:444.928000pt;}
.y190{bottom:445.925333pt;}
.ya3{bottom:446.322667pt;}
.yc8{bottom:446.324000pt;}
.y1b7{bottom:448.077333pt;}
.y6f{bottom:448.698667pt;}
.y170{bottom:450.366667pt;}
.yff{bottom:459.076000pt;}
.y1ef{bottom:460.270667pt;}
.y18f{bottom:462.662667pt;}
.ya2{bottom:463.060000pt;}
.y1b6{bottom:463.420000pt;}
.y6e{bottom:465.436000pt;}
.y13{bottom:466.070667pt;}
.y16f{bottom:467.104000pt;}
.y1ee{bottom:475.613333pt;}
.yfe{bottom:475.813333pt;}
.y139{bottom:476.771680pt;}
.y39{bottom:478.105333pt;}
.y1b5{bottom:478.761333pt;}
.y18e{bottom:479.398667pt;}
.ya1{bottom:479.797333pt;}
.y12{bottom:481.972000pt;}
.y6d{bottom:482.173333pt;}
.y16e{bottom:483.841333pt;}
.y1ed{bottom:490.956000pt;}
.yfd{bottom:492.549333pt;}
.y1b4{bottom:494.104000pt;}
.y38{bottom:495.400000pt;}
.y18d{bottom:496.136000pt;}
.ya0{bottom:496.534667pt;}
.y11{bottom:497.872000pt;}
.y138{bottom:498.371680pt;}
.y6c{bottom:498.910667pt;}
.y16d{bottom:500.578667pt;}
.y1ec{bottom:506.298667pt;}
.yfc{bottom:509.286667pt;}
.y1b3{bottom:509.446667pt;}
.y37{bottom:512.696000pt;}
.y18c{bottom:512.873333pt;}
.y9f{bottom:513.272000pt;}
.y10{bottom:513.772000pt;}
.y6b{bottom:515.648000pt;}
.y16c{bottom:517.316000pt;}
.y137{bottom:519.971680pt;}
.y1eb{bottom:521.641333pt;}
.y1b2{bottom:524.789333pt;}
.yfb{bottom:526.024000pt;}
.y18b{bottom:529.610667pt;}
.yf{bottom:529.673333pt;}
.y36{bottom:529.990667pt;}
.y9e{bottom:530.009333pt;}
.y6a{bottom:532.384000pt;}
.y16b{bottom:534.053333pt;}
.y1ea{bottom:536.984000pt;}
.y1b1{bottom:540.132000pt;}
.y136{bottom:541.475680pt;}
.yfa{bottom:542.761333pt;}
.ye{bottom:545.573333pt;}
.y18a{bottom:546.348000pt;}
.y9d{bottom:546.746667pt;}
.y35{bottom:547.285333pt;}
.y69{bottom:549.121333pt;}
.y16a{bottom:550.790667pt;}
.y1e9{bottom:552.325333pt;}
.y1b0{bottom:555.474667pt;}
.yf9{bottom:559.498667pt;}
.yd{bottom:561.473333pt;}
.y135{bottom:563.075680pt;}
.y189{bottom:563.085333pt;}
.y9c{bottom:563.484000pt;}
.y34{bottom:564.581333pt;}
.y68{bottom:565.858667pt;}
.y169{bottom:567.528000pt;}
.y1e8{bottom:567.668000pt;}
.y1af{bottom:570.817333pt;}
.yf8{bottom:576.236000pt;}
.yc{bottom:577.374667pt;}
.y188{bottom:579.822667pt;}
.y9b{bottom:580.221333pt;}
.y33{bottom:581.876000pt;}
.y67{bottom:582.596000pt;}
.y1e7{bottom:583.010667pt;}
.y168{bottom:584.265333pt;}
.y134{bottom:584.675680pt;}
.y1ae{bottom:586.160000pt;}
.yf7{bottom:592.973333pt;}
.yb{bottom:593.274667pt;}
.y9a{bottom:596.958667pt;}
.y1e6{bottom:598.353333pt;}
.y32{bottom:599.172000pt;}
.y66{bottom:599.333333pt;}
.y187{bottom:600.545333pt;}
.y1ad{bottom:601.501333pt;}
.y167{bottom:604.986667pt;}
.yf6{bottom:609.710667pt;}
.y8{bottom:613.160048pt;}
.y99{bottom:613.696000pt;}
.y65{bottom:616.070667pt;}
.y31{bottom:616.466667pt;}
.y133{bottom:616.835680pt;}
.y1ac{bottom:616.844000pt;}
.yf5{bottom:626.448000pt;}
.y1e5{bottom:629.038667pt;}
.y98{bottom:630.433333pt;}
.y1ab{bottom:632.186667pt;}
.y64{bottom:632.808000pt;}
.y30{bottom:633.761333pt;}
.y166{bottom:642.608000pt;}
.yf4{bottom:643.185333pt;}
.y1e4{bottom:644.381333pt;}
.y97{bottom:647.170667pt;}
.y1aa{bottom:647.529333pt;}
.y63{bottom:649.545333pt;}
.y2f{bottom:651.057333pt;}
.yc7{bottom:651.156000pt;}
.y132{bottom:654.953046pt;}
.y165{bottom:657.220000pt;}
.y1e3{bottom:659.724000pt;}
.yf3{bottom:659.922667pt;}
.y1a9{bottom:662.872000pt;}
.y96{bottom:663.908000pt;}
.y62{bottom:666.282667pt;}
.y2e{bottom:668.352000pt;}
.yc6{bottom:669.088000pt;}
.y164{bottom:671.832000pt;}
.y1e2{bottom:675.066667pt;}
.y131{bottom:675.400259pt;}
.yf2{bottom:676.660000pt;}
.y1a8{bottom:678.214667pt;}
.y95{bottom:680.645333pt;}
.y61{bottom:683.020000pt;}
.y2d{bottom:685.646667pt;}
.y163{bottom:686.444000pt;}
.y1e1{bottom:690.408000pt;}
.yf1{bottom:693.397333pt;}
.y1a7{bottom:693.557333pt;}
.y130{bottom:695.943664pt;}
.y94{bottom:697.382667pt;}
.yc5{bottom:698.976000pt;}
.y60{bottom:699.757333pt;}
.y162{bottom:701.056000pt;}
.y2c{bottom:702.942667pt;}
.y1e0{bottom:705.750667pt;}
.y1a6{bottom:708.900000pt;}
.yf0{bottom:710.134667pt;}
.y93{bottom:714.120000pt;}
.y161{bottom:715.668000pt;}
.yc4{bottom:715.713333pt;}
.y12f{bottom:716.392480pt;}
.y5f{bottom:716.494667pt;}
.y1df{bottom:721.093333pt;}
.yef{bottom:726.872000pt;}
.y1a5{bottom:728.226667pt;}
.y160{bottom:730.280000pt;}
.y92{bottom:730.857333pt;}
.y5e{bottom:733.232000pt;}
.y1de{bottom:736.436000pt;}
.y12e{bottom:736.935885pt;}
.y2b{bottom:736.996000pt;}
.yee{bottom:743.609333pt;}
.y15f{bottom:744.892000pt;}
.y91{bottom:747.594667pt;}
.yc3{bottom:748.392000pt;}
.y5d{bottom:749.969333pt;}
.y2a{bottom:751.342667pt;}
.y1dd{bottom:751.778667pt;}
.y12d{bottom:757.479290pt;}
.y11f{bottom:757.970667pt;}
.y1a4{bottom:758.114667pt;}
.yed{bottom:760.346667pt;}
.y90{bottom:764.332000pt;}
.yc2{bottom:765.128000pt;}
.y15e{bottom:765.905333pt;}
.y5c{bottom:766.706667pt;}
.y1dc{bottom:767.121333pt;}
.y29{bottom:769.545333pt;}
.y11e{bottom:774.708000pt;}
.yec{bottom:777.084000pt;}
.y12c{bottom:777.926502pt;}
.y28{bottom:780.034667pt;}
.y8f{bottom:781.069333pt;}
.y1a3{bottom:781.706667pt;}
.y1db{bottom:782.464000pt;}
.y5b{bottom:783.444000pt;}
.y15d{bottom:786.920000pt;}
.y11d{bottom:791.444000pt;}
.yeb{bottom:793.821333pt;}
.y8e{bottom:797.806667pt;}
.y27{bottom:798.238667pt;}
.y12b{bottom:798.469907pt;}
.y5a{bottom:800.181333pt;}
.y1a2{bottom:805.298667pt;}
.y11c{bottom:808.181333pt;}
.y26{bottom:808.726667pt;}
.yea{bottom:810.558667pt;}
.y1da{bottom:813.148000pt;}
.y8d{bottom:814.544000pt;}
.y15c{bottom:815.025333pt;}
.y59{bottom:816.918667pt;}
.y12a{bottom:819.013312pt;}
.y1a1{bottom:820.920000pt;}
.y11b{bottom:824.918667pt;}
.y25{bottom:826.930667pt;}
.ye9{bottom:827.296000pt;}
.y1d9{bottom:828.490667pt;}
.y8c{bottom:831.281333pt;}
.y58{bottom:833.656000pt;}
.y1a0{bottom:836.541333pt;}
.y11a{bottom:841.656000pt;}
.y1d8{bottom:843.833333pt;}
.ye8{bottom:844.033333pt;}
.y129{bottom:844.356698pt;}
.y8b{bottom:848.018667pt;}
.y57{bottom:850.393333pt;}
.y19f{bottom:852.162667pt;}
.y15b{bottom:854.650667pt;}
.y1d7{bottom:859.176000pt;}
.ye7{bottom:860.770667pt;}
.y7{bottom:862.413333pt;}
.y8a{bottom:864.754667pt;}
.y56{bottom:867.130667pt;}
.y19e{bottom:867.784000pt;}
.y15a{bottom:869.262667pt;}
.y1d6{bottom:874.518667pt;}
.ye6{bottom:877.508000pt;}
.y89{bottom:881.492000pt;}
.y119{bottom:882.066667pt;}
.y19d{bottom:883.405333pt;}
.y55{bottom:883.868000pt;}
.y159{bottom:883.874667pt;}
.y128{bottom:884.005437pt;}
.y1d5{bottom:889.861333pt;}
.ye5{bottom:894.245333pt;}
.y118{bottom:896.678667pt;}
.y88{bottom:898.229333pt;}
.y158{bottom:898.486667pt;}
.y6{bottom:900.404000pt;}
.y54{bottom:900.605333pt;}
.y127{bottom:904.454253pt;}
.y1d4{bottom:905.204000pt;}
.ye4{bottom:910.982667pt;}
.y117{bottom:911.290667pt;}
.y157{bottom:913.098667pt;}
.y87{bottom:914.966667pt;}
.y53{bottom:917.342667pt;}
.y1d3{bottom:920.546667pt;}
.y126{bottom:924.997658pt;}
.y5{bottom:925.510667pt;}
.y116{bottom:925.902667pt;}
.ye3{bottom:927.720000pt;}
.y86{bottom:931.704000pt;}
.y52{bottom:934.080000pt;}
.y156{bottom:934.112000pt;}
.y1d2{bottom:935.889333pt;}
.y115{bottom:940.514667pt;}
.ye2{bottom:944.456000pt;}
.y125{bottom:945.541062pt;}
.y85{bottom:948.441333pt;}
.y4{bottom:950.616000pt;}
.y51{bottom:950.817333pt;}
.y1d1{bottom:951.230667pt;}
.y114{bottom:955.126667pt;}
.ye1{bottom:961.193333pt;}
.y84{bottom:965.178667pt;}
.y124{bottom:965.988275pt;}
.y1d0{bottom:966.573333pt;}
.y50{bottom:967.554667pt;}
.y3{bottom:975.722667pt;}
.y83{bottom:981.916000pt;}
.y113{bottom:983.233333pt;}
.y4f{bottom:984.290667pt;}
.y123{bottom:986.531680pt;}
.y1{bottom:1014.377333pt;}
.y4e{bottom:1043.020000pt;}
.y122{bottom:1044.708304pt;}
.y121{bottom:1055.171680pt;}
.h7{height:22.673858pt;}
.hc{height:28.947524pt;}
.h9{height:29.433775pt;}
.h8{height:30.399505pt;}
.h16{height:30.732706pt;}
.h13{height:31.207372pt;}
.h17{height:31.212706pt;}
.h10{height:33.426739pt;}
.ha{height:33.771789pt;}
.hb{height:34.347789pt;}
.he{height:34.574438pt;}
.h11{height:38.415786pt;}
.hd{height:38.596538pt;}
.h14{height:39.092538pt;}
.h15{height:39.097871pt;}
.hf{height:43.421286pt;}
.h1e{height:43.660390pt;}
.h4{height:45.004385pt;}
.h2{height:45.272024pt;}
.h1a{height:47.231625pt;}
.h19{height:47.505937pt;}
.h12{height:48.245551pt;}
.h6{height:49.201961pt;}
.h1d{height:53.578125pt;}
.h1b{height:59.305875pt;}
.h1c{height:59.650312pt;}
.h3{height:61.782479pt;}
.h5{height:69.148877pt;}
.h18{height:305.900800pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:188.033730pt;}
.w4{width:658.403840pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x7a{left:-90.570560pt;}
.x0{left:0.000000pt;}
.x3{left:26.021437pt;}
.x1{left:48.000000pt;}
.x2{left:50.765941pt;}
.x79{left:67.650027pt;}
.xa1{left:75.240000pt;}
.x9e{left:76.686667pt;}
.x7b{left:118.037440pt;}
.x4{left:131.508000pt;}
.x7c{left:152.021327pt;}
.x7d{left:170.357440pt;}
.x7f{left:186.677440pt;}
.x82{left:189.749440pt;}
.x7e{left:203.573440pt;}
.x6d{left:221.173333pt;}
.x7{left:222.073333pt;}
.x5{left:223.020000pt;}
.x6{left:241.085333pt;}
.x61{left:243.114667pt;}
.x80{left:247.637440pt;}
.xc{left:251.365333pt;}
.x54{left:257.038667pt;}
.x5d{left:260.085333pt;}
.x55{left:270.322667pt;}
.x8{left:275.096000pt;}
.x68{left:279.266667pt;}
.xd{left:282.384000pt;}
.xb{left:285.514667pt;}
.x66{left:287.020000pt;}
.x5f{left:294.925333pt;}
.x69{left:296.041333pt;}
.x6a{left:297.322667pt;}
.x74{left:300.364000pt;}
.x62{left:303.177333pt;}
.x5e{left:305.106667pt;}
.x35{left:307.404000pt;}
.x65{left:308.798667pt;}
.x64{left:309.813333pt;}
.x63{left:314.436000pt;}
.x36{left:320.688000pt;}
.x88{left:322.798667pt;}
.x89{left:324.274667pt;}
.x87{left:325.285333pt;}
.x85{left:326.761333pt;}
.x76{left:329.552000pt;}
.x73{left:332.209333pt;}
.x75{left:333.126667pt;}
.x86{left:334.460000pt;}
.x84{left:335.762667pt;}
.x5a{left:339.688000pt;}
.x5b{left:342.938667pt;}
.x6e{left:344.609333pt;}
.x2f{left:351.364000pt;}
.x9c{left:352.336000pt;}
.x6f{left:357.893333pt;}
.x8a{left:358.872000pt;}
.x8b{left:362.260000pt;}
.x30{left:364.648000pt;}
.x31{left:367.962667pt;}
.x4a{left:370.736000pt;}
.x77{left:372.406667pt;}
.x52{left:374.729333pt;}
.x8c{left:378.930667pt;}
.x32{left:381.245333pt;}
.x4b{left:384.020000pt;}
.x78{left:385.689333pt;}
.x53{left:388.013333pt;}
.x42{left:389.521333pt;}
.x56{left:392.004000pt;}
.x6c{left:394.670667pt;}
.x43{left:396.162667pt;}
.x9{left:401.066667pt;}
.x44{left:403.724000pt;}
.x57{left:405.286667pt;}
.xa{left:407.208000pt;}
.x70{left:408.626667pt;}
.x8d{left:412.345333pt;}
.x45{left:417.008000pt;}
.x8e{left:418.986667pt;}
.x59{left:420.146667pt;}
.x71{left:421.910667pt;}
.x46{left:428.593333pt;}
.x9a{left:432.457333pt;}
.x47{left:435.234667pt;}
.x48{left:438.580000pt;}
.x83{left:440.192000pt;}
.x5c{left:442.409333pt;}
.x20{left:449.204000pt;}
.x49{left:451.862667pt;}
.x9b{left:453.230667pt;}
.x93{left:455.137333pt;}
.x1e{left:456.129333pt;}
.x21{left:462.486667pt;}
.x94{left:468.421333pt;}
.x1f{left:469.412000pt;}
.x95{left:470.816000pt;}
.x60{left:475.789333pt;}
.x96{left:477.457333pt;}
.xe{left:479.224000pt;}
.xf{left:485.865333pt;}
.x50{left:487.249333pt;}
.x10{left:489.164000pt;}
.x33{left:490.652000pt;}
.x41{left:492.061333pt;}
.x11{left:495.805333pt;}
.x67{left:496.866667pt;}
.x3b{left:499.485333pt;}
.x51{left:500.533333pt;}
.x34{left:503.936000pt;}
.x4c{left:505.282667pt;}
.x37{left:506.716000pt;}
.x3c{left:512.238667pt;}
.x4d{left:518.566667pt;}
.x38{left:520.000000pt;}
.x39{left:523.254667pt;}
.x3a{left:536.537333pt;}
.x91{left:545.562667pt;}
.x8f{left:546.590667pt;}
.x97{left:552.046667pt;}
.x92{left:558.845333pt;}
.x90{left:559.873333pt;}
.x98{left:565.329333pt;}
.x2a{left:580.772000pt;}
.x28{left:589.462667pt;}
.x12{left:591.020000pt;}
.x2b{left:594.056000pt;}
.x13{left:597.661333pt;}
.x14{left:600.918667pt;}
.x29{left:602.746667pt;}
.x15{left:607.561333pt;}
.x2c{left:610.666667pt;}
.x2d{left:617.321333pt;}
.x16{left:618.448000pt;}
.x23{left:620.196000pt;}
.x24{left:623.582667pt;}
.x17{left:625.089333pt;}
.x2e{left:630.605333pt;}
.x25{left:636.866667pt;}
.x4e{left:639.517333pt;}
.xa2{left:642.753333pt;}
.x6b{left:646.164000pt;}
.x3f{left:651.337333pt;}
.x4f{left:652.800000pt;}
.x81{left:655.347075pt;}
.x26{left:661.610667pt;}
.x40{left:664.621333pt;}
.xa3{left:666.664000pt;}
.x99{left:667.901333pt;}
.x3d{left:669.246667pt;}
.xa4{left:671.801333pt;}
.x27{left:674.893333pt;}
.x18{left:678.570667pt;}
.x3e{left:682.530667pt;}
.x19{left:685.212000pt;}
.x58{left:688.649333pt;}
.x1a{left:691.721333pt;}
.xa5{left:695.710667pt;}
.x22{left:698.353333pt;}
.x1b{left:705.004000pt;}
.x72{left:711.394667pt;}
.x9f{left:720.353333pt;}
.x1c{left:726.974667pt;}
.x1d{left:740.257333pt;}
.xa0{left:744.262667pt;}
.x9d{left:750.026667pt;}
}




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