
    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_ebb3becef775ae3b3267f3ae.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986000;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_c76d600950324a56a8db95bd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.011000;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_2a476f17addb4f78b284a724.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.010000;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_0f289147678f27239e960524.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_700f2369830254dcd6fc56be.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.761000;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_35332b3d2f93a60f3e898b03.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cd3f345cef5824200c8e1ba4.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e241e564172e04d68dd38a8f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.900000;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_45cae37c25e2c46ec21df70b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.907000;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_f17a3a7bfd526150b43867ce.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.014160;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_e17b51e7627b46ea3a85347e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.006836;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_bf706d1086d00095e30df22d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.216309;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_5e83cc9c034bbeb4ed858802.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.014160;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_5b57662821316c8145d4dd8f.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.006836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_fcbf36988bcd83c7c65c5f30.woff2')format("woff");}.fff{font-family:fff;line-height:1.216309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_ad314b5514b3b74ed3898eda.woff2')format("woff");}.ff10{font-family:ff10;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;}
@font-face{font-family:ff11;src:url('chunks/assets/font_c0610f107f3c5fda4fd1967d.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.216309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_65d68449701d2e9f5616c0d7.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.726000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m19{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);}
.m29{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m27{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);}
.m5{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);}
.m1c{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);}
.m1b{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);}
.m12{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m26{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);}
.m15{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);}
.m23{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.me{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);}
.m9{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);}
.m7{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);}
.m8{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);}
.m13{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.m1f{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);}
.ma{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);}
.mf{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);}
.m3{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);}
.md{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);}
.m25{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);}
.m18{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);}
.m22{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);}
.m20{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);}
.m2{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);}
.m4{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);}
.m28{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);}
.m1e{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);}
.m21{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);}
.mc{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);}
.mb{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);}
.m11{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);}
.m16{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.v0{vertical-align:0.000000px;}
.ls2a{letter-spacing:-0.360000px;}
.ls2c{letter-spacing:-0.198000px;}
.ls2b{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.ls38{letter-spacing:0.000243px;}
.ls10{letter-spacing:0.000273px;}
.ls15{letter-spacing:0.000435px;}
.ls0{letter-spacing:0.000600px;}
.ls49{letter-spacing:0.000604px;}
.ls31{letter-spacing:0.000800px;}
.ls3d{letter-spacing:0.001036px;}
.ls9{letter-spacing:0.001127px;}
.ls3c{letter-spacing:0.001155px;}
.lsf{letter-spacing:0.001298px;}
.ls2f{letter-spacing:0.001484px;}
.ls8{letter-spacing:0.001552px;}
.ls11{letter-spacing:0.001656px;}
.ls4a{letter-spacing:0.002045px;}
.ls47{letter-spacing:0.002074px;}
.ls35{letter-spacing:0.002096px;}
.lsa{letter-spacing:0.002286px;}
.ls45{letter-spacing:0.002544px;}
.ls40{letter-spacing:0.003263px;}
.ls6{letter-spacing:0.003699px;}
.ls1a{letter-spacing:0.004090px;}
.ls1e{letter-spacing:0.004951px;}
.ls36{letter-spacing:0.005522px;}
.ls29{letter-spacing:0.036000px;}
.ls25{letter-spacing:0.108000px;}
.ls2e{letter-spacing:0.126000px;}
.ls2d{letter-spacing:0.162000px;}
.ls21{letter-spacing:0.180000px;}
.ls23{letter-spacing:0.540000px;}
.ls17{letter-spacing:0.642088px;}
.ls18{letter-spacing:0.648088px;}
.ls16{letter-spacing:1.074422px;}
.ls24{letter-spacing:1.620000px;}
.ls26{letter-spacing:1.740000px;}
.ls2{letter-spacing:11.954850px;}
.ls19{letter-spacing:11.957700px;}
.ls39{letter-spacing:13.135287px;}
.ls3a{letter-spacing:13.155508px;}
.ls32{letter-spacing:13.176931px;}
.ls48{letter-spacing:13.249811px;}
.ls41{letter-spacing:13.293257px;}
.ls4c{letter-spacing:13.320988px;}
.ls37{letter-spacing:13.348058px;}
.ls4d{letter-spacing:13.379911px;}
.ls28{letter-spacing:13.448400px;}
.ls33{letter-spacing:13.454400px;}
.ls42{letter-spacing:13.458563px;}
.ls44{letter-spacing:13.460400px;}
.ls27{letter-spacing:13.535233px;}
.ls3e{letter-spacing:13.553409px;}
.ls43{letter-spacing:13.574642px;}
.ls34{letter-spacing:13.580642px;}
.ls4e{letter-spacing:13.660380px;}
.ls46{letter-spacing:13.815106px;}
.ls3b{letter-spacing:14.220988px;}
.ls50{letter-spacing:14.350400px;}
.ls12{letter-spacing:14.692082px;}
.ls7{letter-spacing:14.764573px;}
.lsb{letter-spacing:14.811306px;}
.ls1b{letter-spacing:14.824349px;}
.lsc{letter-spacing:14.834034px;}
.ls13{letter-spacing:14.944200px;}
.ls1c{letter-spacing:15.123227px;}
.lse{letter-spacing:15.147494px;}
.lsd{letter-spacing:15.594553px;}
.ls1d{letter-spacing:15.720983px;}
.ls3f{letter-spacing:16.691576px;}
.ls30{letter-spacing:16.703341px;}
.ls4b{letter-spacing:19.009224px;}
.ls4f{letter-spacing:19.703341px;}
.ls20{letter-spacing:19.905275px;}
.ls14{letter-spacing:23.551586px;}
.ls1{letter-spacing:28.453654px;}
.ls22{letter-spacing:65.726640px;}
.ls4{letter-spacing:2724.791700px;}
.ls1f{letter-spacing:2725.985700px;}
.ls5{letter-spacing:2727.185700px;}
.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;}
}
.wse{word-spacing:-69.034585px;}
.wsbd{word-spacing:-54.000000px;}
.wsba{word-spacing:-15.210000px;}
.ws72{word-spacing:-14.943900px;}
.wsc1{word-spacing:-13.662000px;}
.wsc2{word-spacing:-13.626000px;}
.wsbc{word-spacing:-13.536000px;}
.wsbb{word-spacing:-13.500000px;}
.wsbf{word-spacing:-13.482000px;}
.wsb9{word-spacing:-13.449600px;}
.wsc0{word-spacing:-13.302000px;}
.wsbe{word-spacing:-13.140000px;}
.wsb7{word-spacing:-12.150000px;}
.wsb8{word-spacing:-11.970000px;}
.ws28{word-spacing:-11.955150px;}
.ws3{word-spacing:-10.460700px;}
.wsa7{word-spacing:-3.227882px;}
.ws3c{word-spacing:-3.168107px;}
.ws97{word-spacing:-3.048556px;}
.ws9f{word-spacing:-2.869229px;}
.ws7b{word-spacing:-2.689902px;}
.ws5b{word-spacing:-2.630126px;}
.ws2b{word-spacing:-2.570351px;}
.ws6d{word-spacing:-2.331248px;}
.ws103{word-spacing:-2.313331px;}
.ws76{word-spacing:-2.271473px;}
.ws3e{word-spacing:-2.211697px;}
.wsdd{word-spacing:-2.205734px;}
.ws36{word-spacing:-2.151922px;}
.ws58{word-spacing:-2.032370px;}
.ws6f{word-spacing:-1.912819px;}
.ws7a{word-spacing:-1.853044px;}
.ws7d{word-spacing:-1.554166px;}
.ws40{word-spacing:-1.494390px;}
.ws19{word-spacing:-1.434614px;}
.wsae{word-spacing:-1.374839px;}
.wse4{word-spacing:-1.344960px;}
.ws5e{word-spacing:-1.255288px;}
.ws4{word-spacing:-1.171598px;}
.ws71{word-spacing:-1.135736px;}
.wsab{word-spacing:-1.075961px;}
.ws6{word-spacing:-1.046070px;}
.ws2c{word-spacing:-0.896634px;}
.ws74{word-spacing:-0.836858px;}
.wsb6{word-spacing:-0.806976px;}
.wsaa{word-spacing:-0.777083px;}
.ws55{word-spacing:-0.717307px;}
.ws5d{word-spacing:-0.657532px;}
.ws65{word-spacing:-0.597756px;}
.ws77{word-spacing:-0.537980px;}
.ws43{word-spacing:-0.478205px;}
.wsca{word-spacing:-0.430387px;}
.ws73{word-spacing:-0.418429px;}
.ws48{word-spacing:-0.358654px;}
.wsd7{word-spacing:-0.322790px;}
.ws20{word-spacing:-0.298878px;}
.wscc{word-spacing:-0.268992px;}
.ws2a{word-spacing:-0.239102px;}
.ws15{word-spacing:-0.215194px;}
.ws23{word-spacing:-0.179327px;}
.ws101{word-spacing:-0.176974px;}
.wscd{word-spacing:-0.161395px;}
.ws1f{word-spacing:-0.119551px;}
.ws14{word-spacing:-0.107597px;}
.ws9e{word-spacing:-0.087950px;}
.wsf{word-spacing:-0.059776px;}
.ws11{word-spacing:-0.053798px;}
.wsdf{word-spacing:-0.027062px;}
.wscf{word-spacing:-0.025507px;}
.wse0{word-spacing:-0.024979px;}
.wsce{word-spacing:-0.007354px;}
.ws91{word-spacing:-0.005449px;}
.ws27{word-spacing:-0.005250px;}
.ws2{word-spacing:-0.004500px;}
.wsee{word-spacing:-0.003418px;}
.ws1{word-spacing:0.000000px;}
.ws96{word-spacing:0.005902px;}
.wsc3{word-spacing:0.053798px;}
.ws1b{word-spacing:0.059776px;}
.wsf4{word-spacing:0.093791px;}
.wsc4{word-spacing:0.107597px;}
.ws39{word-spacing:0.119551px;}
.wsfa{word-spacing:0.121331px;}
.wsd3{word-spacing:0.161395px;}
.ws2d{word-spacing:0.179327px;}
.ws10{word-spacing:0.215194px;}
.ws38{word-spacing:0.239102px;}
.ws16{word-spacing:0.268992px;}
.ws35{word-spacing:0.298878px;}
.wsb5{word-spacing:0.322790px;}
.ws4e{word-spacing:0.358654px;}
.ws67{word-spacing:0.418429px;}
.ws5a{word-spacing:0.478205px;}
.ws31{word-spacing:0.537980px;}
.wsd9{word-spacing:0.537984px;}
.ws51{word-spacing:0.597756px;}
.wsfc{word-spacing:0.645581px;}
.ws32{word-spacing:0.657532px;}
.wsf5{word-spacing:0.699379px;}
.ws9d{word-spacing:0.717307px;}
.ws5c{word-spacing:0.777083px;}
.wsf0{word-spacing:0.806976px;}
.wsb0{word-spacing:0.836858px;}
.ws59{word-spacing:0.896634px;}
.ws105{word-spacing:0.914573px;}
.ws33{word-spacing:0.956410px;}
.ws5{word-spacing:1.004227px;}
.ws21{word-spacing:1.016185px;}
.wse7{word-spacing:1.075968px;}
.ws54{word-spacing:1.135736px;}
.ws47{word-spacing:1.195512px;}
.ws66{word-spacing:1.255288px;}
.ws3b{word-spacing:1.315063px;}
.ws22{word-spacing:1.374839px;}
.ws4a{word-spacing:1.434614px;}
.wse5{word-spacing:1.452557px;}
.ws7c{word-spacing:1.494390px;}
.ws60{word-spacing:1.554166px;}
.wsf3{word-spacing:1.560154px;}
.ws79{word-spacing:1.613941px;}
.wseb{word-spacing:1.667750px;}
.ws30{word-spacing:1.673717px;}
.wse6{word-spacing:1.775347px;}
.ws2f{word-spacing:1.793268px;}
.ws1c{word-spacing:1.853044px;}
.ws56{word-spacing:1.972595px;}
.wsc7{word-spacing:1.990541px;}
.ws1e{word-spacing:2.032370px;}
.ws53{word-spacing:2.092146px;}
.ws104{word-spacing:2.098138px;}
.ws29{word-spacing:2.151922px;}
.wsb2{word-spacing:2.205734px;}
.ws24{word-spacing:2.211697px;}
.wsd4{word-spacing:2.259533px;}
.ws6e{word-spacing:2.271473px;}
.wsa1{word-spacing:2.331248px;}
.wsa9{word-spacing:2.391024px;}
.ws3f{word-spacing:2.450800px;}
.wsb3{word-spacing:2.474726px;}
.ws0{word-spacing:2.511541px;}
.wsc9{word-spacing:2.528525px;}
.ws4b{word-spacing:2.570351px;}
.wsde{word-spacing:2.582323px;}
.ws1a{word-spacing:2.630126px;}
.ws75{word-spacing:2.749678px;}
.ws42{word-spacing:2.809453px;}
.ws45{word-spacing:2.869229px;}
.ws13{word-spacing:2.905114px;}
.ws78{word-spacing:2.988780px;}
.wsf2{word-spacing:3.012710px;}
.ws57{word-spacing:3.048556px;}
.wsd5{word-spacing:3.120307px;}
.ws4d{word-spacing:3.168107px;}
.wsfd{word-spacing:3.174106px;}
.wsef{word-spacing:3.218602px;}
.wsd1{word-spacing:3.219331px;}
.ws17{word-spacing:3.219667px;}
.wsd0{word-spacing:3.219821px;}
.wsd6{word-spacing:3.220099px;}
.wsf1{word-spacing:3.220387px;}
.wsf8{word-spacing:3.221395px;}
.wsec{word-spacing:3.222528px;}
.wsed{word-spacing:3.223670px;}
.wsdc{word-spacing:3.223853px;}
.ws102{word-spacing:3.224112px;}
.wsf9{word-spacing:3.224554px;}
.wse8{word-spacing:3.226579px;}
.ws68{word-spacing:3.227882px;}
.wsc8{word-spacing:3.227904px;}
.wsad{word-spacing:3.287658px;}
.wscb{word-spacing:3.335501px;}
.ws41{word-spacing:3.347434px;}
.wsdb{word-spacing:3.389299px;}
.ws44{word-spacing:3.407209px;}
.wsea{word-spacing:3.443098px;}
.wsc5{word-spacing:3.496896px;}
.ws18{word-spacing:3.586536px;}
.ws6b{word-spacing:3.667525px;}
.wsa2{word-spacing:3.675488px;}
.ws6a{word-spacing:3.681325px;}
.ws4c{word-spacing:3.706087px;}
.ws12{word-spacing:3.819686px;}
.ws49{word-spacing:3.885414px;}
.ws1d{word-spacing:3.945190px;}
.wsb1{word-spacing:4.004965px;}
.ws25{word-spacing:4.124516px;}
.ws64{word-spacing:4.184292px;}
.ws7e{word-spacing:4.244068px;}
.wsf7{word-spacing:4.250074px;}
.wsfb{word-spacing:4.357670px;}
.wse1{word-spacing:4.400816px;}
.wse2{word-spacing:4.411469px;}
.ws62{word-spacing:4.423394px;}
.wsc6{word-spacing:4.465267px;}
.ws5f{word-spacing:4.602721px;}
.wsd2{word-spacing:4.680461px;}
.ws82{word-spacing:4.722272px;}
.wsc{word-spacing:4.770079px;}
.ws3a{word-spacing:4.782048px;}
.ws46{word-spacing:4.841824px;}
.wsd{word-spacing:4.853765px;}
.wsfe{word-spacing:4.949453px;}
.wsa0{word-spacing:4.961375px;}
.ws95{word-spacing:5.021150px;}
.ws37{word-spacing:5.080926px;}
.ws84{word-spacing:5.260253px;}
.wsda{word-spacing:5.379840px;}
.wsa5{word-spacing:5.439580px;}
.wsb4{word-spacing:5.487437px;}
.wsf6{word-spacing:5.541235px;}
.wsa6{word-spacing:5.618906px;}
.ws34{word-spacing:5.738458px;}
.ws52{word-spacing:5.917784px;}
.wsaf{word-spacing:5.977560px;}
.ws81{word-spacing:6.097111px;}
.ws26{word-spacing:6.156887px;}
.wsa3{word-spacing:6.216662px;}
.ws100{word-spacing:6.240614px;}
.wsac{word-spacing:6.276438px;}
.ws69{word-spacing:6.395989px;}
.ws86{word-spacing:6.694867px;}
.wse3{word-spacing:6.724800px;}
.ws3d{word-spacing:6.933970px;}
.ws2e{word-spacing:7.173072px;}
.wsa8{word-spacing:7.412174px;}
.wsa4{word-spacing:7.531726px;}
.ws6c{word-spacing:7.591501px;}
.ws80{word-spacing:7.711052px;}
.wsa{word-spacing:7.782761px;}
.ws85{word-spacing:8.069606px;}
.ws70{word-spacing:8.129482px;}
.ws4f{word-spacing:8.189257px;}
.ws63{word-spacing:8.368584px;}
.ws7f{word-spacing:8.428360px;}
.ws83{word-spacing:8.607686px;}
.ws50{word-spacing:8.727238px;}
.ws9b{word-spacing:9.434312px;}
.wse9{word-spacing:11.351462px;}
.ws8{word-spacing:12.176255px;}
.wsd8{word-spacing:13.342003px;}
.ws9{word-spacing:16.109478px;}
.wsff{word-spacing:18.560448px;}
.wsb{word-spacing:26.109907px;}
.ws7{word-spacing:26.840252px;}
.ws61{word-spacing:26.899020px;}
.ws98{word-spacing:94.254797px;}
.ws92{word-spacing:95.761910px;}
.ws88{word-spacing:95.767910px;}
.ws8d{word-spacing:98.720064px;}
.ws87{word-spacing:107.435405px;}
.ws89{word-spacing:107.704397px;}
.ws9c{word-spacing:112.331059px;}
.ws8c{word-spacing:117.462000px;}
.ws8a{word-spacing:125.780659px;}
.ws99{word-spacing:130.909200px;}
.ws8b{word-spacing:131.767200px;}
.ws9a{word-spacing:141.709200px;}
.ws8f{word-spacing:152.679859px;}
.ws8e{word-spacing:163.493338px;}
.ws90{word-spacing:168.765581px;}
.ws94{word-spacing:185.981069px;}
.ws93{word-spacing:315.373200px;}
._3d{margin-left:-23.994086px;}
._3b{margin-left:-20.216221px;}
._35{margin-left:-7.800797px;}
._9{margin-left:-6.724786px;}
._16{margin-left:-5.559131px;}
._b{margin-left:-4.064741px;}
._6{margin-left:-3.003201px;}
._0{margin-left:-1.506341px;}
._36{width:1.156080px;}
._3{width:2.301354px;}
._1a{width:3.419086px;}
._15{width:4.793999px;}
._3c{width:6.079219px;}
._38{width:10.308000px;}
._4{width:11.582422px;}
._1{width:12.971999px;}
._11{width:14.822886px;}
._8{width:16.193304px;}
._e{width:17.346875px;}
._a{width:18.602162px;}
._d{width:19.923295px;}
._14{width:20.981236px;}
._32{width:21.997421px;}
._10{width:23.085332px;}
._c{width:24.747098px;}
._2{width:25.942536px;}
._13{width:27.269624px;}
._17{width:29.290044px;}
._5{width:30.587087px;}
._34{width:32.171224px;}
._18{width:33.354785px;}
._33{width:34.490521px;}
._f{width:37.084774px;}
._1b{width:41.197339px;}
._19{width:44.771999px;}
._7{width:54.425792px;}
._3a{width:61.868160px;}
._39{width:88.767360px;}
._22{width:104.081976px;}
._28{width:134.603597px;}
._1c{width:137.129040px;}
._26{width:145.197936px;}
._24{width:146.957174px;}
._30{width:153.540634px;}
._25{width:154.710414px;}
._23{width:159.781248px;}
._31{width:161.664192px;}
._21{width:164.145610px;}
._1f{width:166.990234px;}
._2a{width:168.066187px;}
._2c{width:170.496557px;}
._2e{width:178.294387px;}
._2b{width:184.689907px;}
._29{width:189.094792px;}
._20{width:199.430669px;}
._1d{width:248.295587px;}
._2d{width:259.110976px;}
._1e{width:319.992883px;}
._2f{width:350.604173px;}
._27{width:385.573133px;}
._12{width:768.620504px;}
._37{width:2278.814280px;}
.fc2{color:rgb(8,117,183);}
.fc3{color:transparent;}
.fc1{color:rgb(185,114,20);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs8{font-size:47.880000px;}
.fs5{font-size:53.798400px;}
.fsa{font-size:54.000000px;}
.fs7{font-size:56.058000px;}
.fs2{font-size:59.775600px;}
.fs9{font-size:60.120000px;}
.fs6{font-size:62.286600px;}
.fs1{font-size:88.733400px;}
.fs3{font-size:107.596800px;}
.y1b0{bottom:-308.490000px;}
.y1ba{bottom:-264.789000px;}
.y1c4{bottom:-187.659000px;}
.y1c3{bottom:-170.379000px;}
.y1c2{bottom:-151.479000px;}
.y1c1{bottom:-134.199000px;}
.y1c0{bottom:-115.299000px;}
.y1bf{bottom:-96.489000px;}
.y1b4{bottom:-86.340000px;}
.y1be{bottom:-77.589000px;}
.y1bd{bottom:-53.799000px;}
.y1b3{bottom:-50.970000px;}
.y1bc{bottom:-16.989000px;}
.y1b2{bottom:-15.690000px;}
.y0{bottom:0.000000px;}
.y1bb{bottom:5.511000px;}
.y1b1{bottom:6.810000px;}
.y1a{bottom:17.756821px;}
.y47{bottom:31.890000px;}
.y17c{bottom:91.665000px;}
.y202{bottom:104.503500px;}
.y18{bottom:104.646000px;}
.yd3{bottom:107.193000px;}
.y7e{bottom:107.641500px;}
.ycd{bottom:109.882500px;}
.yf6{bottom:110.331000px;}
.y17b{bottom:110.494500px;}
.y14b{bottom:111.018000px;}
.y46{bottom:113.811000px;}
.y1cc{bottom:115.375500px;}
.y130{bottom:120.642000px;}
.y201{bottom:121.762500px;}
.y17{bottom:122.535000px;}
.ya8{bottom:124.228500px;}
.yd2{bottom:126.022500px;}
.y7d{bottom:126.471000px;}
.ycc{bottom:128.712000px;}
.yf5{bottom:129.160500px;}
.y17a{bottom:129.324000px;}
.y14a{bottom:129.847500px;}
.y1cb{bottom:132.636000px;}
.y45{bottom:132.640500px;}
.y200{bottom:139.023000px;}
.y12f{bottom:139.471500px;}
.y16{bottom:140.422500px;}
.ya7{bottom:143.058000px;}
.yd1{bottom:144.852000px;}
.y7c{bottom:145.300500px;}
.yf4{bottom:147.990000px;}
.y179{bottom:148.153500px;}
.y149{bottom:148.677000px;}
.y1ca{bottom:149.896500px;}
.y44{bottom:151.470000px;}
.ycb{bottom:152.025000px;}
.y1ff{bottom:156.283500px;}
.y12e{bottom:158.301000px;}
.y15{bottom:158.310000px;}
.ya6{bottom:161.887500px;}
.yd0{bottom:163.681500px;}
.y7b{bottom:164.130000px;}
.yf3{bottom:166.819500px;}
.y178{bottom:166.983000px;}
.y1c9{bottom:167.157000px;}
.y148{bottom:167.505000px;}
.yca{bottom:167.716500px;}
.y43{bottom:170.299500px;}
.y1a2{bottom:171.466500px;}
.y1fe{bottom:173.544000px;}
.y14{bottom:176.199000px;}
.y12d{bottom:177.130500px;}
.ya5{bottom:180.717000px;}
.ycf{bottom:182.511000px;}
.y7a{bottom:182.959500px;}
.y1c8{bottom:184.417500px;}
.yf2{bottom:185.649000px;}
.y177{bottom:185.812500px;}
.y147{bottom:186.334500px;}
.y42{bottom:189.129000px;}
.y1fd{bottom:190.804500px;}
.y13{bottom:194.086500px;}
.y12c{bottom:195.960000px;}
.ya4{bottom:199.546500px;}
.yc9{bottom:201.340500px;}
.y79{bottom:201.789000px;}
.y1a1{bottom:203.337000px;}
.yf1{bottom:204.478500px;}
.y176{bottom:204.642000px;}
.y146{bottom:205.164000px;}
.y1c7{bottom:206.160000px;}
.y41{bottom:207.958500px;}
.y1fc{bottom:208.065000px;}
.y12{bottom:211.974000px;}
.y12b{bottom:214.789500px;}
.ya3{bottom:218.376000px;}
.yc8{bottom:220.170000px;}
.y78{bottom:220.618500px;}
.y1a0{bottom:221.817000px;}
.yf0{bottom:223.308000px;}
.y175{bottom:223.471500px;}
.y145{bottom:223.993500px;}
.y1fb{bottom:225.325500px;}
.y40{bottom:226.788000px;}
.y11{bottom:229.863000px;}
.y12a{bottom:233.619000px;}
.ya2{bottom:237.205500px;}
.y19f{bottom:238.255500px;}
.y1b6{bottom:238.924500px;}
.yc7{bottom:238.999500px;}
.y77{bottom:239.446500px;}
.y1c6{bottom:239.725500px;}
.yef{bottom:242.137500px;}
.y174{bottom:242.301000px;}
.y1fa{bottom:242.586000px;}
.y144{bottom:242.823000px;}
.y3f{bottom:245.617500px;}
.y129{bottom:252.448500px;}
.y19e{bottom:254.694000px;}
.ya1{bottom:256.035000px;}
.yc6{bottom:257.829000px;}
.y1b5{bottom:258.157500px;}
.y76{bottom:258.276000px;}
.y1c5{bottom:258.958500px;}
.y1f9{bottom:259.846500px;}
.yee{bottom:260.967000px;}
.y173{bottom:261.130500px;}
.y143{bottom:261.652500px;}
.y3e{bottom:264.447000px;}
.y128{bottom:271.278000px;}
.ya0{bottom:274.864500px;}
.yc5{bottom:276.658500px;}
.y75{bottom:277.105500px;}
.y19d{bottom:278.334000px;}
.yed{bottom:279.796500px;}
.y172{bottom:279.960000px;}
.y142{bottom:280.482000px;}
.y3d{bottom:283.276500px;}
.y1ad{bottom:283.575000px;}
.y1b7{bottom:284.377500px;}
.y127{bottom:290.107500px;}
.y9f{bottom:293.694000px;}
.y1f8{bottom:294.366000px;}
.yc4{bottom:295.488000px;}
.y74{bottom:295.935000px;}
.yec{bottom:298.626000px;}
.y141{bottom:299.311500px;}
.yce{bottom:299.970000px;}
.y10{bottom:300.154500px;}
.y3c{bottom:302.106000px;}
.y126{bottom:308.937000px;}
.y19c{bottom:309.954000px;}
.y1f7{bottom:311.626500px;}
.y171{bottom:312.471000px;}
.yc3{bottom:314.317500px;}
.y73{bottom:314.764500px;}
.y9e{bottom:317.007000px;}
.yeb{bottom:317.455500px;}
.yf{bottom:318.043500px;}
.y140{bottom:318.141000px;}
.y3b{bottom:320.935500px;}
.y125{bottom:327.766500px;}
.y1f6{bottom:328.887000px;}
.y170{bottom:330.949500px;}
.yc2{bottom:333.145500px;}
.y72{bottom:333.594000px;}
.ye{bottom:335.931000px;}
.yea{bottom:336.285000px;}
.y13f{bottom:336.970500px;}
.y3a{bottom:339.765000px;}
.y19b{bottom:342.016500px;}
.y1f5{bottom:346.147500px;}
.y124{bottom:346.596000px;}
.y16f{bottom:347.388000px;}
.y9d{bottom:350.631000px;}
.yc1{bottom:351.975000px;}
.y71{bottom:352.423500px;}
.yd{bottom:353.818500px;}
.y13e{bottom:355.800000px;}
.y39{bottom:358.594500px;}
.ye9{bottom:359.598000px;}
.y19a{bottom:360.495000px;}
.y1f4{bottom:363.408000px;}
.y16e{bottom:363.826500px;}
.y123{bottom:365.425500px;}
.y9c{bottom:369.460500px;}
.yc0{bottom:370.804500px;}
.y70{bottom:371.253000px;}
.y199{bottom:376.933500px;}
.y38{bottom:377.424000px;}
.ye8{bottom:379.771500px;}
.y1f3{bottom:380.668500px;}
.yc{bottom:380.673000px;}
.y16d{bottom:387.466500px;}
.y9b{bottom:388.290000px;}
.y13d{bottom:388.390500px;}
.y122{bottom:388.738500px;}
.ybf{bottom:389.634000px;}
.y6f{bottom:390.082500px;}
.y198{bottom:393.372000px;}
.y37{bottom:396.253500px;}
.y1f2{bottom:397.929000px;}
.yb{bottom:398.562000px;}
.y13c{bottom:406.869000px;}
.y9a{bottom:407.119500px;}
.ybe{bottom:408.463500px;}
.y6e{bottom:408.912000px;}
.y197{bottom:409.810500px;}
.ye7{bottom:413.395500px;}
.y36{bottom:415.083000px;}
.y1f1{bottom:415.188000px;}
.ya{bottom:416.449500px;}
.y16c{bottom:419.086500px;}
.y121{bottom:422.362500px;}
.y13b{bottom:423.307500px;}
.y99{bottom:425.949000px;}
.ybd{bottom:427.293000px;}
.y6d{bottom:427.741500px;}
.ye6{bottom:432.225000px;}
.y1f0{bottom:432.448500px;}
.y196{bottom:433.450500px;}
.y35{bottom:433.912500px;}
.y13a{bottom:439.746000px;}
.y120{bottom:441.192000px;}
.y98{bottom:444.778500px;}
.y9{bottom:444.798000px;}
.ybc{bottom:446.122500px;}
.y6c{bottom:446.571000px;}
.y1ef{bottom:449.709000px;}
.y16b{bottom:450.634500px;}
.y34{bottom:452.742000px;}
.ye5{bottom:460.021500px;}
.y8{bottom:462.685500px;}
.y139{bottom:463.386000px;}
.y97{bottom:463.608000px;}
.ybb{bottom:464.952000px;}
.y195{bottom:465.070500px;}
.y6b{bottom:465.400500px;}
.y1ee{bottom:466.969500px;}
.y16a{bottom:469.113000px;}
.y33{bottom:471.571500px;}
.ye4{bottom:478.851000px;}
.y96{bottom:482.437500px;}
.yba{bottom:483.781500px;}
.y6a{bottom:484.230000px;}
.y169{bottom:485.551500px;}
.y7{bottom:489.540000px;}
.y32{bottom:490.401000px;}
.y138{bottom:495.006000px;}
.y194{bottom:496.218000px;}
.y95{bottom:501.267000px;}
.y1ed{bottom:501.490500px;}
.y168{bottom:501.990000px;}
.y11f{bottom:502.162500px;}
.yb9{bottom:502.611000px;}
.y69{bottom:503.059500px;}
.ye3{bottom:506.646000px;}
.y6{bottom:507.429000px;}
.y31{bottom:509.230500px;}
.y193{bottom:515.047500px;}
.y167{bottom:518.428500px;}
.y1ec{bottom:518.751000px;}
.y94{bottom:520.095000px;}
.yb8{bottom:521.440500px;}
.y68{bottom:521.889000px;}
.y5{bottom:525.316500px;}
.ye2{bottom:525.475500px;}
.y137{bottom:526.711500px;}
.y30{bottom:528.060000px;}
.y1ac{bottom:529.420500px;}
.y192{bottom:533.877000px;}
.y11e{bottom:535.786500px;}
.y1eb{bottom:536.011500px;}
.y93{bottom:538.924500px;}
.yb7{bottom:540.270000px;}
.y67{bottom:540.718500px;}
.y166{bottom:542.068500px;}
.y4{bottom:543.204000px;}
.y136{bottom:545.191500px;}
.y2f{bottom:546.889500px;}
.y191{bottom:552.706500px;}
.ye1{bottom:553.272000px;}
.y11d{bottom:554.616000px;}
.y1ab{bottom:555.961500px;}
.y92{bottom:557.754000px;}
.yb6{bottom:559.099500px;}
.y66{bottom:559.548000px;}
.y3{bottom:561.093000px;}
.y135{bottom:561.630000px;}
.y2e{bottom:565.719000px;}
.y1ea{bottom:570.531000px;}
.y190{bottom:571.536000px;}
.ye0{bottom:572.101500px;}
.y11c{bottom:573.445500px;}
.y165{bottom:573.688500px;}
.y91{bottom:576.583500px;}
.yb5{bottom:577.929000px;}
.y134{bottom:578.068500px;}
.y65{bottom:578.377500px;}
.y2{bottom:578.980500px;}
.y1aa{bottom:582.502500px;}
.y1e9{bottom:587.791500px;}
.y2d{bottom:589.030500px;}
.y18f{bottom:590.365500px;}
.y11b{bottom:592.275000px;}
.y133{bottom:594.507000px;}
.y90{bottom:595.413000px;}
.yb4{bottom:596.758500px;}
.y1{bottom:596.868000px;}
.y64{bottom:597.207000px;}
.ydf{bottom:599.896500px;}
.y1e8{bottom:605.052000px;}
.y1a9{bottom:609.042000px;}
.y18e{bottom:609.195000px;}
.y164{bottom:609.219000px;}
.y8f{bottom:614.242500px;}
.yb3{bottom:615.588000px;}
.y63{bottom:616.036500px;}
.y132{bottom:618.147000px;}
.yde{bottom:618.726000px;}
.y1e7{bottom:622.312500px;}
.y18d{bottom:628.024500px;}
.y163{bottom:628.048500px;}
.y8e{bottom:633.072000px;}
.yb2{bottom:634.417500px;}
.y62{bottom:634.866000px;}
.y1a8{bottom:635.583000px;}
.y1e6{bottom:639.573000px;}
.ydd{bottom:646.522500px;}
.y18c{bottom:646.854000px;}
.y162{bottom:646.878000px;}
.y11a{bottom:649.212000px;}
.y131{bottom:649.767000px;}
.y8d{bottom:651.901500px;}
.y1a7{bottom:653.157000px;}
.yb1{bottom:653.247000px;}
.y61{bottom:653.695500px;}
.y1e5{bottom:656.833500px;}
.y2c{bottom:664.180500px;}
.ydc{bottom:665.352000px;}
.y18b{bottom:665.683500px;}
.y161{bottom:665.707500px;}
.y119{bottom:668.041500px;}
.y8c{bottom:670.731000px;}
.yb0{bottom:672.076500px;}
.y60{bottom:672.525000px;}
.y1e4{bottom:674.094000px;}
.y18a{bottom:684.513000px;}
.y160{bottom:684.537000px;}
.y118{bottom:686.871000px;}
.y8b{bottom:689.560500px;}
.yaf{bottom:690.906000px;}
.y5f{bottom:691.354500px;}
.ydb{bottom:693.147000px;}
.y1a6{bottom:697.272000px;}
.y2b{bottom:701.571000px;}
.y189{bottom:703.342500px;}
.y15f{bottom:703.366500px;}
.y117{bottom:705.700500px;}
.y8a{bottom:708.390000px;}
.y1e3{bottom:708.613500px;}
.yae{bottom:709.735500px;}
.y5e{bottom:710.184000px;}
.yda{bottom:711.976500px;}
.y1a5{bottom:714.846000px;}
.y2a{bottom:721.027500px;}
.y188{bottom:722.170500px;}
.y15e{bottom:722.196000px;}
.y116{bottom:724.530000px;}
.y1e2{bottom:725.874000px;}
.y89{bottom:727.219500px;}
.yad{bottom:728.565000px;}
.y5d{bottom:729.013500px;}
.y1a4{bottom:732.420000px;}
.yd9{bottom:739.773000px;}
.y29{bottom:740.485500px;}
.y187{bottom:741.000000px;}
.y15d{bottom:741.025500px;}
.y1e1{bottom:743.134500px;}
.y115{bottom:743.359500px;}
.y88{bottom:746.049000px;}
.yac{bottom:747.394500px;}
.y5c{bottom:747.843000px;}
.y1a3{bottom:749.994000px;}
.yd8{bottom:758.602500px;}
.y186{bottom:759.829500px;}
.y15c{bottom:759.855000px;}
.y28{bottom:759.942000px;}
.y1e0{bottom:760.395000px;}
.y114{bottom:762.189000px;}
.y87{bottom:764.878500px;}
.yab{bottom:766.224000px;}
.y5b{bottom:766.671000px;}
.y1df{bottom:777.655500px;}
.y185{bottom:778.659000px;}
.y15b{bottom:778.684500px;}
.y27{bottom:779.398500px;}
.y113{bottom:781.018500px;}
.y86{bottom:783.708000px;}
.yaa{bottom:785.053500px;}
.y5a{bottom:785.500500px;}
.yd7{bottom:786.397500px;}
.y1de{bottom:794.916000px;}
.y184{bottom:797.488500px;}
.y15a{bottom:797.514000px;}
.y26{bottom:798.856500px;}
.y112{bottom:799.848000px;}
.y85{bottom:802.537500px;}
.y102{bottom:803.883000px;}
.y59{bottom:804.330000px;}
.yd6{bottom:805.227000px;}
.ya9{bottom:808.365000px;}
.y1dd{bottom:812.176500px;}
.y183{bottom:816.318000px;}
.y159{bottom:816.343500px;}
.y25{bottom:818.313000px;}
.y111{bottom:818.677500px;}
.y84{bottom:821.367000px;}
.y101{bottom:822.712500px;}
.y58{bottom:823.159500px;}
.y1af{bottom:827.760000px;}
.y1dc{bottom:829.437000px;}
.yd5{bottom:833.023500px;}
.y1ae{bottom:837.390000px;}
.y110{bottom:837.507000px;}
.y24{bottom:837.769500px;}
.y83{bottom:840.196500px;}
.y100{bottom:841.540500px;}
.y57{bottom:841.989000px;}
.y1db{bottom:846.697500px;}
.y182{bottom:846.844500px;}
.y158{bottom:847.359000px;}
.yd4{bottom:851.853000px;}
.y10f{bottom:856.335000px;}
.y23{bottom:857.227500px;}
.y82{bottom:859.026000px;}
.yff{bottom:860.370000px;}
.y56{bottom:860.818500px;}
.y1da{bottom:863.956500px;}
.y181{bottom:865.323000px;}
.y157{bottom:865.837500px;}
.y1b9{bottom:871.461000px;}
.y10e{bottom:875.164500px;}
.y22{bottom:876.684000px;}
.y81{bottom:877.855500px;}
.yfe{bottom:879.199500px;}
.y55{bottom:879.648000px;}
.y1b8{bottom:881.091000px;}
.y1d9{bottom:881.217000px;}
.y180{bottom:881.761500px;}
.y156{bottom:882.276000px;}
.y10d{bottom:893.994000px;}
.yfd{bottom:898.029000px;}
.y17f{bottom:898.200000px;}
.y54{bottom:898.477500px;}
.y155{bottom:898.714500px;}
.y80{bottom:901.168500px;}
.y10c{bottom:912.823500px;}
.y21{bottom:915.270000px;}
.y1d8{bottom:915.738000px;}
.yfc{bottom:916.858500px;}
.y53{bottom:917.307000px;}
.y7f{bottom:921.342000px;}
.y17e{bottom:921.841500px;}
.y154{bottom:922.356000px;}
.y20{bottom:931.410000px;}
.y10b{bottom:931.653000px;}
.y1d7{bottom:932.998500px;}
.yfb{bottom:935.688000px;}
.y52{bottom:936.136500px;}
.y1f{bottom:947.548500px;}
.y1d6{bottom:950.259000px;}
.y10a{bottom:950.482500px;}
.y17d{bottom:953.460000px;}
.y153{bottom:953.974500px;}
.yfa{bottom:954.517500px;}
.y51{bottom:954.966000px;}
.y1d5{bottom:967.519500px;}
.y109{bottom:969.312000px;}
.yf9{bottom:973.347000px;}
.y50{bottom:973.795500px;}
.y152{bottom:984.028500px;}
.y1d4{bottom:984.780000px;}
.y108{bottom:988.141500px;}
.yf8{bottom:992.176500px;}
.y4f{bottom:992.625000px;}
.y1e{bottom:996.565500px;}
.y1d2{bottom:1002.039000px;}
.y1d3{bottom:1002.040500px;}
.y151{bottom:1002.507000px;}
.y107{bottom:1006.971000px;}
.y4e{bottom:1011.454500px;}
.yf7{bottom:1015.489500px;}
.y150{bottom:1018.945500px;}
.y1d1{bottom:1019.299500px;}
.y106{bottom:1025.800500px;}
.y4d{bottom:1030.284000px;}
.y14f{bottom:1035.384000px;}
.y1d{bottom:1036.485000px;}
.y1d0{bottom:1036.560000px;}
.y105{bottom:1044.630000px;}
.y4c{bottom:1049.113500px;}
.y14e{bottom:1051.822500px;}
.y1cf{bottom:1053.820500px;}
.y104{bottom:1063.459500px;}
.y1c{bottom:1064.728500px;}
.y4b{bottom:1067.943000px;}
.y1ce{bottom:1071.081000px;}
.y14d{bottom:1075.462500px;}
.y103{bottom:1082.289000px;}
.y4a{bottom:1086.772500px;}
.y1cd{bottom:1088.341500px;}
.y1b{bottom:1092.972000px;}
.y49{bottom:1105.602000px;}
.y14c{bottom:1107.082500px;}
.y19{bottom:1136.460000px;}
.y48{bottom:1168.366500px;}
.h10{height:16.817382px;}
.h2{height:30.461558px;}
.h3{height:30.712615px;}
.h9{height:34.813397px;}
.he{height:35.100320px;}
.ha{height:38.734848px;}
.hb{height:39.165235px;}
.h19{height:39.488026px;}
.h11{height:41.723369px;}
.hc{height:43.038432px;}
.hd{height:43.516637px;}
.h6{height:43.875290px;}
.h17{height:44.268047px;}
.h13{height:44.279648px;}
.h8{height:44.473046px;}
.h1a{height:49.117939px;}
.h15{height:49.939453px;}
.h4{height:50.914908px;}
.hf{height:54.575123px;}
.h14{height:55.599258px;}
.h5{height:60.161245px;}
.h18{height:61.793886px;}
.h7{height:77.469696px;}
.h12{height:792.469500px;}
.h16{height:836.170500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:131.800156px;}
.w3{width:694.137750px;}
.w4{width:728.372550px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xaf{left:-44.330250px;}
.xb3{left:-29.034450px;}
.x0{left:0.000000px;}
.xb5{left:2.825550px;}
.x1{left:53.574000px;}
.x2{left:58.504783px;}
.xb2{left:82.057950px;}
.xbd{left:84.058500px;}
.xb6{left:85.848000px;}
.xae{left:99.176250px;}
.xb1{left:151.269750px;}
.xb4{left:166.565550px;}
.x1e{left:247.348500px;}
.x4{left:248.526000px;}
.x3{left:249.591000px;}
.xa4{left:259.149000px;}
.x98{left:266.584500px;}
.x9a{left:273.468000px;}
.x95{left:275.287500px;}
.x91{left:276.595500px;}
.x7f{left:277.879500px;}
.x6{left:281.479500px;}
.x80{left:285.357000px;}
.x82{left:286.504500px;}
.x81{left:290.466000px;}
.x7{left:292.102500px;}
.x8{left:299.574000px;}
.x3f{left:300.655500px;}
.x9{left:307.024500px;}
.x5{left:308.368500px;}
.x73{left:310.032000px;}
.x9b{left:312.316500px;}
.xa{left:314.496000px;}
.x40{left:315.600000px;}
.x42{left:316.777500px;}
.x32{left:317.962500px;}
.x5b{left:321.207000px;}
.x1b{left:323.134500px;}
.x43{left:324.249000px;}
.x44{left:328.059000px;}
.x99{left:329.158500px;}
.x5f{left:330.291000px;}
.x33{left:332.905500px;}
.x6a{left:336.195000px;}
.x5c{left:339.963000px;}
.x45{left:343.003500px;}
.x5d{left:347.584500px;}
.x6b{left:354.799500px;}
.x70{left:358.023000px;}
.x5e{left:362.527500px;}
.x34{left:377.569500px;}
.x71{left:380.587500px;}
.x27{left:382.066500px;}
.x38{left:385.584000px;}
.x35{left:392.512500px;}
.x72{left:395.532000px;}
.x28{left:397.011000px;}
.x54{left:398.664000px;}
.x39{left:400.527000px;}
.x3a{left:404.188500px;}
.x1c{left:412.408500px;}
.x55{left:413.607000px;}
.x3b{left:419.133000px;}
.x93{left:420.631500px;}
.x2d{left:426.078000px;}
.x1d{left:427.353000px;}
.x62{left:429.823500px;}
.x88{left:434.919000px;}
.x15{left:441.031500px;}
.x63{left:444.768000px;}
.x97{left:446.224500px;}
.x89{left:449.862000px;}
.x46{left:454.807500px;}
.x16{left:455.974500px;}
.x8d{left:464.704500px;}
.x3d{left:470.076000px;}
.x47{left:473.562000px;}
.x8e{left:476.995500px;}
.x7a{left:478.311000px;}
.x64{left:482.875500px;}
.x3e{left:485.019000px;}
.x48{left:488.505000px;}
.x7b{left:493.255500px;}
.xa8{left:494.457000px;}
.x6d{left:495.672000px;}
.x29{left:497.392500px;}
.x21{left:500.916000px;}
.x9f{left:506.607000px;}
.xa9{left:509.400000px;}
.x6e{left:510.615000px;}
.x2a{left:512.337000px;}
.x8b{left:514.921500px;}
.xf{left:516.460500px;}
.x8c{left:518.728500px;}
.x10{left:523.933500px;}
.x9e{left:525.508500px;}
.x41{left:527.397000px;}
.x7c{left:531.880500px;}
.x2e{left:534.603000px;}
.x22{left:538.284000px;}
.x83{left:539.748000px;}
.xa0{left:544.911000px;}
.x7d{left:546.825000px;}
.x2f{left:549.547500px;}
.x84{left:552.946500px;}
.x67{left:554.125500px;}
.x30{left:556.869000px;}
.x92{left:568.216500px;}
.x31{left:571.813500px;}
.x94{left:583.498500px;}
.xaa{left:584.556000px;}
.x58{left:587.173500px;}
.x56{left:591.951000px;}
.x8f{left:595.636500px;}
.xab{left:599.500500px;}
.xb{left:601.236000px;}
.xac{left:603.312000px;}
.x57{left:606.894000px;}
.xc{left:608.707500px;}
.x90{left:610.581000px;}
.x11{left:611.944500px;}
.x76{left:613.920000px;}
.xd{left:616.156500px;}
.xad{left:618.255000px;}
.x12{left:619.416000px;}
.xa5{left:622.174500px;}
.xe{left:623.629500px;}
.x85{left:626.581500px;}
.x77{left:628.864500px;}
.x86{left:630.286500px;}
.x1f{left:631.537500px;}
.x20{left:635.347500px;}
.x96{left:637.968000px;}
.x2b{left:640.591500px;}
.x87{left:645.231000px;}
.x9c{left:647.359500px;}
.x17{left:649.555500px;}
.x74{left:652.218000px;}
.x2c{left:655.536000px;}
.x18{left:657.027000px;}
.xa6{left:659.683500px;}
.x19{left:660.823500px;}
.x9d{left:663.358500px;}
.x75{left:667.162500px;}
.x7e{left:670.207500px;}
.xb9{left:671.278500px;}
.xa7{left:674.628000px;}
.x1a{left:675.768000px;}
.x4e{left:677.938500px;}
.xc2{left:684.829500px;}
.x13{left:686.328000px;}
.xb0{left:688.449750px;}
.x4b{left:690.120000px;}
.x4f{left:692.883000px;}
.x4c{left:693.930000px;}
.x50{left:696.544500px;}
.xba{left:698.178000px;}
.x14{left:701.271000px;}
.x4d{left:708.874500px;}
.x51{left:711.487500px;}
.x8a{left:716.145000px;}
.xa1{left:721.986000px;}
.xb7{left:723.298500px;}
.x6f{left:731.485500px;}
.xc4{left:732.649500px;}
.xc6{left:735.027000px;}
.xbb{left:737.584500px;}
.xa2{left:739.587000px;}
.xc3{left:742.590000px;}
.x59{left:746.158500px;}
.x3c{left:747.991500px;}
.xa3{left:751.878000px;}
.x68{left:754.836000px;}
.x23{left:756.900000px;}
.x6c{left:759.412500px;}
.x5a{left:761.103000px;}
.x36{left:763.422000px;}
.xbc{left:764.484000px;}
.xc5{left:766.054500px;}
.x69{left:769.780500px;}
.x24{left:771.843000px;}
.x25{left:775.624500px;}
.x37{left:778.366500px;}
.x60{left:780.651000px;}
.x49{left:782.304000px;}
.xc1{left:788.169000px;}
.xbe{left:789.490500px;}
.x26{left:790.569000px;}
.x61{left:795.594000px;}
.x4a{left:797.248500px;}
.x78{left:799.254000px;}
.xbf{left:810.357000px;}
.x79{left:814.198500px;}
.x52{left:817.299000px;}
.x65{left:818.893500px;}
.xb8{left:822.616500px;}
.x53{left:832.243500px;}
.x66{left:833.838000px;}
.xc0{left:837.255000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2a{letter-spacing:-0.320000pt;}
.ls2c{letter-spacing:-0.176000pt;}
.ls2b{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls38{letter-spacing:0.000216pt;}
.ls10{letter-spacing:0.000243pt;}
.ls15{letter-spacing:0.000387pt;}
.ls0{letter-spacing:0.000533pt;}
.ls49{letter-spacing:0.000536pt;}
.ls31{letter-spacing:0.000711pt;}
.ls3d{letter-spacing:0.000921pt;}
.ls9{letter-spacing:0.001002pt;}
.ls3c{letter-spacing:0.001026pt;}
.lsf{letter-spacing:0.001154pt;}
.ls2f{letter-spacing:0.001319pt;}
.ls8{letter-spacing:0.001379pt;}
.ls11{letter-spacing:0.001472pt;}
.ls4a{letter-spacing:0.001818pt;}
.ls47{letter-spacing:0.001843pt;}
.ls35{letter-spacing:0.001863pt;}
.lsa{letter-spacing:0.002032pt;}
.ls45{letter-spacing:0.002262pt;}
.ls40{letter-spacing:0.002900pt;}
.ls6{letter-spacing:0.003288pt;}
.ls1a{letter-spacing:0.003635pt;}
.ls1e{letter-spacing:0.004401pt;}
.ls36{letter-spacing:0.004909pt;}
.ls29{letter-spacing:0.032000pt;}
.ls25{letter-spacing:0.096000pt;}
.ls2e{letter-spacing:0.112000pt;}
.ls2d{letter-spacing:0.144000pt;}
.ls21{letter-spacing:0.160000pt;}
.ls23{letter-spacing:0.480000pt;}
.ls17{letter-spacing:0.570745pt;}
.ls18{letter-spacing:0.576078pt;}
.ls16{letter-spacing:0.955042pt;}
.ls24{letter-spacing:1.440000pt;}
.ls26{letter-spacing:1.546667pt;}
.ls2{letter-spacing:10.626533pt;}
.ls19{letter-spacing:10.629067pt;}
.ls39{letter-spacing:11.675811pt;}
.ls3a{letter-spacing:11.693785pt;}
.ls32{letter-spacing:11.712827pt;}
.ls48{letter-spacing:11.777609pt;}
.ls41{letter-spacing:11.816229pt;}
.ls4c{letter-spacing:11.840878pt;}
.ls37{letter-spacing:11.864941pt;}
.ls4d{letter-spacing:11.893255pt;}
.ls28{letter-spacing:11.954133pt;}
.ls33{letter-spacing:11.959467pt;}
.ls42{letter-spacing:11.963167pt;}
.ls44{letter-spacing:11.964800pt;}
.ls27{letter-spacing:12.031318pt;}
.ls3e{letter-spacing:12.047475pt;}
.ls43{letter-spacing:12.066349pt;}
.ls34{letter-spacing:12.071682pt;}
.ls4e{letter-spacing:12.142560pt;}
.ls46{letter-spacing:12.280094pt;}
.ls3b{letter-spacing:12.640878pt;}
.ls50{letter-spacing:12.755911pt;}
.ls12{letter-spacing:13.059628pt;}
.ls7{letter-spacing:13.124065pt;}
.lsb{letter-spacing:13.165606pt;}
.ls1b{letter-spacing:13.177199pt;}
.lsc{letter-spacing:13.185808pt;}
.ls13{letter-spacing:13.283733pt;}
.ls1c{letter-spacing:13.442868pt;}
.lse{letter-spacing:13.464439pt;}
.lsd{letter-spacing:13.861825pt;}
.ls1d{letter-spacing:13.974207pt;}
.ls3f{letter-spacing:14.836957pt;}
.ls30{letter-spacing:14.847414pt;}
.ls4b{letter-spacing:16.897088pt;}
.ls4f{letter-spacing:17.514081pt;}
.ls20{letter-spacing:17.693578pt;}
.ls14{letter-spacing:20.934743pt;}
.ls1{letter-spacing:25.292137pt;}
.ls22{letter-spacing:58.423680pt;}
.ls4{letter-spacing:2422.037067pt;}
.ls1f{letter-spacing:2423.098400pt;}
.ls5{letter-spacing:2424.165067pt;}
.wse{word-spacing:-61.364076pt;}
.wsbd{word-spacing:-48.000000pt;}
.wsba{word-spacing:-13.520000pt;}
.ws72{word-spacing:-13.283467pt;}
.wsc1{word-spacing:-12.144000pt;}
.wsc2{word-spacing:-12.112000pt;}
.wsbc{word-spacing:-12.032000pt;}
.wsbb{word-spacing:-12.000000pt;}
.wsbf{word-spacing:-11.984000pt;}
.wsb9{word-spacing:-11.955200pt;}
.wsc0{word-spacing:-11.824000pt;}
.wsbe{word-spacing:-11.680000pt;}
.wsb7{word-spacing:-10.800000pt;}
.wsb8{word-spacing:-10.640000pt;}
.ws28{word-spacing:-10.626800pt;}
.ws3{word-spacing:-9.298400pt;}
.wsa7{word-spacing:-2.869229pt;}
.ws3c{word-spacing:-2.816095pt;}
.ws97{word-spacing:-2.709827pt;}
.ws9f{word-spacing:-2.550426pt;}
.ws7b{word-spacing:-2.391024pt;}
.ws5b{word-spacing:-2.337890pt;}
.ws2b{word-spacing:-2.284756pt;}
.ws6d{word-spacing:-2.072221pt;}
.ws103{word-spacing:-2.056294pt;}
.ws76{word-spacing:-2.019087pt;}
.ws3e{word-spacing:-1.965953pt;}
.wsdd{word-spacing:-1.960653pt;}
.ws36{word-spacing:-1.912819pt;}
.ws58{word-spacing:-1.806551pt;}
.ws6f{word-spacing:-1.700284pt;}
.ws7a{word-spacing:-1.647150pt;}
.ws7d{word-spacing:-1.381481pt;}
.ws40{word-spacing:-1.328347pt;}
.ws19{word-spacing:-1.275213pt;}
.wsae{word-spacing:-1.222079pt;}
.wse4{word-spacing:-1.195520pt;}
.ws5e{word-spacing:-1.115811pt;}
.ws4{word-spacing:-1.041421pt;}
.ws71{word-spacing:-1.009543pt;}
.wsab{word-spacing:-0.956410pt;}
.ws6{word-spacing:-0.929840pt;}
.ws2c{word-spacing:-0.797008pt;}
.ws74{word-spacing:-0.743874pt;}
.wsb6{word-spacing:-0.717312pt;}
.wsaa{word-spacing:-0.690740pt;}
.ws55{word-spacing:-0.637606pt;}
.ws5d{word-spacing:-0.584473pt;}
.ws65{word-spacing:-0.531339pt;}
.ws77{word-spacing:-0.478205pt;}
.ws43{word-spacing:-0.425071pt;}
.wsca{word-spacing:-0.382566pt;}
.ws73{word-spacing:-0.371937pt;}
.ws48{word-spacing:-0.318803pt;}
.wsd7{word-spacing:-0.286925pt;}
.ws20{word-spacing:-0.265669pt;}
.wscc{word-spacing:-0.239104pt;}
.ws2a{word-spacing:-0.212535pt;}
.ws15{word-spacing:-0.191283pt;}
.ws23{word-spacing:-0.159402pt;}
.ws101{word-spacing:-0.157310pt;}
.wscd{word-spacing:-0.143462pt;}
.ws1f{word-spacing:-0.106268pt;}
.ws14{word-spacing:-0.095642pt;}
.ws9e{word-spacing:-0.078178pt;}
.wsf{word-spacing:-0.053134pt;}
.ws11{word-spacing:-0.047821pt;}
.wsdf{word-spacing:-0.024055pt;}
.wscf{word-spacing:-0.022673pt;}
.wse0{word-spacing:-0.022204pt;}
.wsce{word-spacing:-0.006537pt;}
.ws91{word-spacing:-0.004843pt;}
.ws27{word-spacing:-0.004667pt;}
.ws2{word-spacing:-0.004000pt;}
.wsee{word-spacing:-0.003038pt;}
.ws1{word-spacing:0.000000pt;}
.ws96{word-spacing:0.005246pt;}
.wsc3{word-spacing:0.047821pt;}
.ws1b{word-spacing:0.053134pt;}
.wsf4{word-spacing:0.083370pt;}
.wsc4{word-spacing:0.095642pt;}
.ws39{word-spacing:0.106268pt;}
.wsfa{word-spacing:0.107850pt;}
.wsd3{word-spacing:0.143462pt;}
.ws2d{word-spacing:0.159402pt;}
.ws10{word-spacing:0.191283pt;}
.ws38{word-spacing:0.212535pt;}
.ws16{word-spacing:0.239104pt;}
.ws35{word-spacing:0.265669pt;}
.wsb5{word-spacing:0.286925pt;}
.ws4e{word-spacing:0.318803pt;}
.ws67{word-spacing:0.371937pt;}
.ws5a{word-spacing:0.425071pt;}
.ws31{word-spacing:0.478205pt;}
.wsd9{word-spacing:0.478208pt;}
.ws51{word-spacing:0.531339pt;}
.wsfc{word-spacing:0.573850pt;}
.ws32{word-spacing:0.584473pt;}
.wsf5{word-spacing:0.621670pt;}
.ws9d{word-spacing:0.637606pt;}
.ws5c{word-spacing:0.690740pt;}
.wsf0{word-spacing:0.717312pt;}
.wsb0{word-spacing:0.743874pt;}
.ws59{word-spacing:0.797008pt;}
.ws105{word-spacing:0.812954pt;}
.ws33{word-spacing:0.850142pt;}
.ws5{word-spacing:0.892646pt;}
.ws21{word-spacing:0.903276pt;}
.wse7{word-spacing:0.956416pt;}
.ws54{word-spacing:1.009543pt;}
.ws47{word-spacing:1.062677pt;}
.ws66{word-spacing:1.115811pt;}
.ws3b{word-spacing:1.168945pt;}
.ws22{word-spacing:1.222079pt;}
.ws4a{word-spacing:1.275213pt;}
.wse5{word-spacing:1.291162pt;}
.ws7c{word-spacing:1.328347pt;}
.ws60{word-spacing:1.381481pt;}
.wsf3{word-spacing:1.386803pt;}
.ws79{word-spacing:1.434614pt;}
.wseb{word-spacing:1.482445pt;}
.ws30{word-spacing:1.487748pt;}
.wse6{word-spacing:1.578086pt;}
.ws2f{word-spacing:1.594016pt;}
.ws1c{word-spacing:1.647150pt;}
.ws56{word-spacing:1.753418pt;}
.wsc7{word-spacing:1.769370pt;}
.ws1e{word-spacing:1.806551pt;}
.ws53{word-spacing:1.859685pt;}
.ws104{word-spacing:1.865011pt;}
.ws29{word-spacing:1.912819pt;}
.wsb2{word-spacing:1.960653pt;}
.ws24{word-spacing:1.965953pt;}
.wsd4{word-spacing:2.008474pt;}
.ws6e{word-spacing:2.019087pt;}
.wsa1{word-spacing:2.072221pt;}
.wsa9{word-spacing:2.125355pt;}
.ws3f{word-spacing:2.178489pt;}
.wsb3{word-spacing:2.199757pt;}
.ws0{word-spacing:2.232481pt;}
.wsc9{word-spacing:2.247578pt;}
.ws4b{word-spacing:2.284756pt;}
.wsde{word-spacing:2.295398pt;}
.ws1a{word-spacing:2.337890pt;}
.ws75{word-spacing:2.444158pt;}
.ws42{word-spacing:2.497292pt;}
.ws45{word-spacing:2.550426pt;}
.ws13{word-spacing:2.582323pt;}
.ws78{word-spacing:2.656693pt;}
.wsf2{word-spacing:2.677965pt;}
.ws57{word-spacing:2.709827pt;}
.wsd5{word-spacing:2.773606pt;}
.ws4d{word-spacing:2.816095pt;}
.wsfd{word-spacing:2.821427pt;}
.wsef{word-spacing:2.860979pt;}
.wsd1{word-spacing:2.861628pt;}
.ws17{word-spacing:2.861926pt;}
.wsd0{word-spacing:2.862063pt;}
.wsd6{word-spacing:2.862310pt;}
.wsf1{word-spacing:2.862566pt;}
.wsf8{word-spacing:2.863462pt;}
.wsec{word-spacing:2.864469pt;}
.wsed{word-spacing:2.865485pt;}
.wsdc{word-spacing:2.865647pt;}
.ws102{word-spacing:2.865877pt;}
.wsf9{word-spacing:2.866270pt;}
.wse8{word-spacing:2.868070pt;}
.ws68{word-spacing:2.869229pt;}
.wsc8{word-spacing:2.869248pt;}
.wsad{word-spacing:2.922363pt;}
.wscb{word-spacing:2.964890pt;}
.ws41{word-spacing:2.975497pt;}
.wsdb{word-spacing:3.012710pt;}
.ws44{word-spacing:3.028630pt;}
.wsea{word-spacing:3.060531pt;}
.wsc5{word-spacing:3.108352pt;}
.ws18{word-spacing:3.188032pt;}
.ws6b{word-spacing:3.260022pt;}
.wsa2{word-spacing:3.267101pt;}
.ws6a{word-spacing:3.272289pt;}
.ws4c{word-spacing:3.294300pt;}
.ws12{word-spacing:3.395277pt;}
.ws49{word-spacing:3.453701pt;}
.ws1d{word-spacing:3.506835pt;}
.wsb1{word-spacing:3.559969pt;}
.ws25{word-spacing:3.666237pt;}
.ws64{word-spacing:3.719371pt;}
.ws7e{word-spacing:3.772505pt;}
.wsf7{word-spacing:3.777843pt;}
.wsfb{word-spacing:3.873485pt;}
.wse1{word-spacing:3.911837pt;}
.wse2{word-spacing:3.921306pt;}
.ws62{word-spacing:3.931906pt;}
.wsc6{word-spacing:3.969126pt;}
.ws5f{word-spacing:4.091308pt;}
.wsd2{word-spacing:4.160410pt;}
.ws82{word-spacing:4.197575pt;}
.wsc{word-spacing:4.240070pt;}
.ws3a{word-spacing:4.250709pt;}
.ws46{word-spacing:4.303843pt;}
.wsd{word-spacing:4.314458pt;}
.wsfe{word-spacing:4.399514pt;}
.wsa0{word-spacing:4.410111pt;}
.ws95{word-spacing:4.463245pt;}
.ws37{word-spacing:4.516379pt;}
.ws84{word-spacing:4.675780pt;}
.wsda{word-spacing:4.782080pt;}
.wsa5{word-spacing:4.835182pt;}
.wsb4{word-spacing:4.877722pt;}
.wsf6{word-spacing:4.925542pt;}
.wsa6{word-spacing:4.994583pt;}
.ws34{word-spacing:5.100851pt;}
.ws52{word-spacing:5.260253pt;}
.wsaf{word-spacing:5.313387pt;}
.ws81{word-spacing:5.419654pt;}
.ws26{word-spacing:5.472788pt;}
.wsa3{word-spacing:5.525922pt;}
.ws100{word-spacing:5.547213pt;}
.wsac{word-spacing:5.579056pt;}
.ws69{word-spacing:5.685324pt;}
.ws86{word-spacing:5.950993pt;}
.wse3{word-spacing:5.977600pt;}
.ws3d{word-spacing:6.163529pt;}
.ws2e{word-spacing:6.376064pt;}
.wsa8{word-spacing:6.588599pt;}
.wsa4{word-spacing:6.694867pt;}
.ws6c{word-spacing:6.748001pt;}
.ws80{word-spacing:6.854269pt;}
.wsa{word-spacing:6.918010pt;}
.ws85{word-spacing:7.172983pt;}
.ws70{word-spacing:7.226206pt;}
.ws4f{word-spacing:7.279340pt;}
.ws63{word-spacing:7.438741pt;}
.ws7f{word-spacing:7.491875pt;}
.ws83{word-spacing:7.651277pt;}
.ws50{word-spacing:7.757545pt;}
.ws9b{word-spacing:8.386055pt;}
.wse9{word-spacing:10.090189pt;}
.ws8{word-spacing:10.823338pt;}
.wsd8{word-spacing:11.859558pt;}
.ws9{word-spacing:14.319536pt;}
.wsff{word-spacing:16.498176pt;}
.wsb{word-spacing:23.208806pt;}
.ws7{word-spacing:23.858002pt;}
.ws61{word-spacing:23.910240pt;}
.ws98{word-spacing:83.782042pt;}
.ws92{word-spacing:85.121698pt;}
.ws88{word-spacing:85.127031pt;}
.ws8d{word-spacing:87.751168pt;}
.ws87{word-spacing:95.498138pt;}
.ws89{word-spacing:95.737242pt;}
.ws9c{word-spacing:99.849830pt;}
.ws8c{word-spacing:104.410667pt;}
.ws8a{word-spacing:111.805030pt;}
.ws99{word-spacing:116.363733pt;}
.ws8b{word-spacing:117.126400pt;}
.ws9a{word-spacing:125.963733pt;}
.ws8f{word-spacing:135.715430pt;}
.ws8e{word-spacing:145.327411pt;}
.ws90{word-spacing:150.013850pt;}
.ws94{word-spacing:165.316506pt;}
.ws93{word-spacing:280.331733pt;}
._3d{margin-left:-21.328077pt;}
._3b{margin-left:-17.969974pt;}
._35{margin-left:-6.934042pt;}
._9{margin-left:-5.977587pt;}
._16{margin-left:-4.941450pt;}
._b{margin-left:-3.613103pt;}
._6{margin-left:-2.669512pt;}
._0{margin-left:-1.338970pt;}
._36{width:1.027627pt;}
._3{width:2.045648pt;}
._1a{width:3.039187pt;}
._15{width:4.261332pt;}
._3c{width:5.403750pt;}
._38{width:9.162667pt;}
._4{width:10.295486pt;}
._1{width:11.530666pt;}
._11{width:13.175899pt;}
._8{width:14.394048pt;}
._e{width:15.419444pt;}
._a{width:16.535255pt;}
._d{width:17.709596pt;}
._14{width:18.649987pt;}
._32{width:19.553263pt;}
._10{width:20.520295pt;}
._c{width:21.997421pt;}
._2{width:23.060032pt;}
._13{width:24.239666pt;}
._17{width:26.035595pt;}
._5{width:27.188522pt;}
._34{width:28.596643pt;}
._18{width:29.648698pt;}
._33{width:30.658241pt;}
._f{width:32.964243pt;}
._1b{width:36.619857pt;}
._19{width:39.797332pt;}
._7{width:48.378482pt;}
._3a{width:54.993920pt;}
._39{width:78.904320pt;}
._22{width:92.517312pt;}
._28{width:119.647642pt;}
._1c{width:121.892480pt;}
._26{width:129.064832pt;}
._24{width:130.628599pt;}
._30{width:136.480563pt;}
._25{width:137.520368pt;}
._23{width:142.027776pt;}
._31{width:143.701504pt;}
._21{width:145.907209pt;}
._1f{width:148.435763pt;}
._2a{width:149.392166pt;}
._2c{width:151.552495pt;}
._2e{width:158.483900pt;}
._2b{width:164.168806pt;}
._29{width:168.084259pt;}
._20{width:177.271706pt;}
._1d{width:220.707188pt;}
._2d{width:230.320867pt;}
._1e{width:284.438118pt;}
._2f{width:311.648154pt;}
._27{width:342.731674pt;}
._12{width:683.218226pt;}
._37{width:2025.612693pt;}
.fs0{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs8{font-size:42.560000pt;}
.fs5{font-size:47.820800pt;}
.fsa{font-size:48.000000pt;}
.fs7{font-size:49.829333pt;}
.fs2{font-size:53.133867pt;}
.fs9{font-size:53.440000pt;}
.fs6{font-size:55.365867pt;}
.fs1{font-size:78.874133pt;}
.fs3{font-size:95.641600pt;}
.y1b0{bottom:-274.213333pt;}
.y1ba{bottom:-235.368000pt;}
.y1c4{bottom:-166.808000pt;}
.y1c3{bottom:-151.448000pt;}
.y1c2{bottom:-134.648000pt;}
.y1c1{bottom:-119.288000pt;}
.y1c0{bottom:-102.488000pt;}
.y1bf{bottom:-85.768000pt;}
.y1b4{bottom:-76.746667pt;}
.y1be{bottom:-68.968000pt;}
.y1bd{bottom:-47.821333pt;}
.y1b3{bottom:-45.306667pt;}
.y1bc{bottom:-15.101333pt;}
.y1b2{bottom:-13.946667pt;}
.y0{bottom:0.000000pt;}
.y1bb{bottom:4.898667pt;}
.y1b1{bottom:6.053333pt;}
.y1a{bottom:15.783841pt;}
.y47{bottom:28.346667pt;}
.y17c{bottom:81.480000pt;}
.y202{bottom:92.892000pt;}
.y18{bottom:93.018667pt;}
.yd3{bottom:95.282667pt;}
.y7e{bottom:95.681333pt;}
.ycd{bottom:97.673333pt;}
.yf6{bottom:98.072000pt;}
.y17b{bottom:98.217333pt;}
.y14b{bottom:98.682667pt;}
.y46{bottom:101.165333pt;}
.y1cc{bottom:102.556000pt;}
.y130{bottom:107.237333pt;}
.y201{bottom:108.233333pt;}
.y17{bottom:108.920000pt;}
.ya8{bottom:110.425333pt;}
.yd2{bottom:112.020000pt;}
.y7d{bottom:112.418667pt;}
.ycc{bottom:114.410667pt;}
.yf5{bottom:114.809333pt;}
.y17a{bottom:114.954667pt;}
.y14a{bottom:115.420000pt;}
.y1cb{bottom:117.898667pt;}
.y45{bottom:117.902667pt;}
.y200{bottom:123.576000pt;}
.y12f{bottom:123.974667pt;}
.y16{bottom:124.820000pt;}
.ya7{bottom:127.162667pt;}
.yd1{bottom:128.757333pt;}
.y7c{bottom:129.156000pt;}
.yf4{bottom:131.546667pt;}
.y179{bottom:131.692000pt;}
.y149{bottom:132.157333pt;}
.y1ca{bottom:133.241333pt;}
.y44{bottom:134.640000pt;}
.ycb{bottom:135.133333pt;}
.y1ff{bottom:138.918667pt;}
.y12e{bottom:140.712000pt;}
.y15{bottom:140.720000pt;}
.ya6{bottom:143.900000pt;}
.yd0{bottom:145.494667pt;}
.y7b{bottom:145.893333pt;}
.yf3{bottom:148.284000pt;}
.y178{bottom:148.429333pt;}
.y1c9{bottom:148.584000pt;}
.y148{bottom:148.893333pt;}
.yca{bottom:149.081333pt;}
.y43{bottom:151.377333pt;}
.y1a2{bottom:152.414667pt;}
.y1fe{bottom:154.261333pt;}
.y14{bottom:156.621333pt;}
.y12d{bottom:157.449333pt;}
.ya5{bottom:160.637333pt;}
.ycf{bottom:162.232000pt;}
.y7a{bottom:162.630667pt;}
.y1c8{bottom:163.926667pt;}
.yf2{bottom:165.021333pt;}
.y177{bottom:165.166667pt;}
.y147{bottom:165.630667pt;}
.y42{bottom:168.114667pt;}
.y1fd{bottom:169.604000pt;}
.y13{bottom:172.521333pt;}
.y12c{bottom:174.186667pt;}
.ya4{bottom:177.374667pt;}
.yc9{bottom:178.969333pt;}
.y79{bottom:179.368000pt;}
.y1a1{bottom:180.744000pt;}
.yf1{bottom:181.758667pt;}
.y176{bottom:181.904000pt;}
.y146{bottom:182.368000pt;}
.y1c7{bottom:183.253333pt;}
.y41{bottom:184.852000pt;}
.y1fc{bottom:184.946667pt;}
.y12{bottom:188.421333pt;}
.y12b{bottom:190.924000pt;}
.ya3{bottom:194.112000pt;}
.yc8{bottom:195.706667pt;}
.y78{bottom:196.105333pt;}
.y1a0{bottom:197.170667pt;}
.yf0{bottom:198.496000pt;}
.y175{bottom:198.641333pt;}
.y145{bottom:199.105333pt;}
.y1fb{bottom:200.289333pt;}
.y40{bottom:201.589333pt;}
.y11{bottom:204.322667pt;}
.y12a{bottom:207.661333pt;}
.ya2{bottom:210.849333pt;}
.y19f{bottom:211.782667pt;}
.y1b6{bottom:212.377333pt;}
.yc7{bottom:212.444000pt;}
.y77{bottom:212.841333pt;}
.y1c6{bottom:213.089333pt;}
.yef{bottom:215.233333pt;}
.y174{bottom:215.378667pt;}
.y1fa{bottom:215.632000pt;}
.y144{bottom:215.842667pt;}
.y3f{bottom:218.326667pt;}
.y129{bottom:224.398667pt;}
.y19e{bottom:226.394667pt;}
.ya1{bottom:227.586667pt;}
.yc6{bottom:229.181333pt;}
.y1b5{bottom:229.473333pt;}
.y76{bottom:229.578667pt;}
.y1c5{bottom:230.185333pt;}
.y1f9{bottom:230.974667pt;}
.yee{bottom:231.970667pt;}
.y173{bottom:232.116000pt;}
.y143{bottom:232.580000pt;}
.y3e{bottom:235.064000pt;}
.y128{bottom:241.136000pt;}
.ya0{bottom:244.324000pt;}
.yc5{bottom:245.918667pt;}
.y75{bottom:246.316000pt;}
.y19d{bottom:247.408000pt;}
.yed{bottom:248.708000pt;}
.y172{bottom:248.853333pt;}
.y142{bottom:249.317333pt;}
.y3d{bottom:251.801333pt;}
.y1ad{bottom:252.066667pt;}
.y1b7{bottom:252.780000pt;}
.y127{bottom:257.873333pt;}
.y9f{bottom:261.061333pt;}
.y1f8{bottom:261.658667pt;}
.yc4{bottom:262.656000pt;}
.y74{bottom:263.053333pt;}
.yec{bottom:265.445333pt;}
.y141{bottom:266.054667pt;}
.yce{bottom:266.640000pt;}
.y10{bottom:266.804000pt;}
.y3c{bottom:268.538667pt;}
.y126{bottom:274.610667pt;}
.y19c{bottom:275.514667pt;}
.y1f7{bottom:277.001333pt;}
.y171{bottom:277.752000pt;}
.yc3{bottom:279.393333pt;}
.y73{bottom:279.790667pt;}
.y9e{bottom:281.784000pt;}
.yeb{bottom:282.182667pt;}
.yf{bottom:282.705333pt;}
.y140{bottom:282.792000pt;}
.y3b{bottom:285.276000pt;}
.y125{bottom:291.348000pt;}
.y1f6{bottom:292.344000pt;}
.y170{bottom:294.177333pt;}
.yc2{bottom:296.129333pt;}
.y72{bottom:296.528000pt;}
.ye{bottom:298.605333pt;}
.yea{bottom:298.920000pt;}
.y13f{bottom:299.529333pt;}
.y3a{bottom:302.013333pt;}
.y19b{bottom:304.014667pt;}
.y1f5{bottom:307.686667pt;}
.y124{bottom:308.085333pt;}
.y16f{bottom:308.789333pt;}
.y9d{bottom:311.672000pt;}
.yc1{bottom:312.866667pt;}
.y71{bottom:313.265333pt;}
.yd{bottom:314.505333pt;}
.y13e{bottom:316.266667pt;}
.y39{bottom:318.750667pt;}
.ye9{bottom:319.642667pt;}
.y19a{bottom:320.440000pt;}
.y1f4{bottom:323.029333pt;}
.y16e{bottom:323.401333pt;}
.y123{bottom:324.822667pt;}
.y9c{bottom:328.409333pt;}
.yc0{bottom:329.604000pt;}
.y70{bottom:330.002667pt;}
.y199{bottom:335.052000pt;}
.y38{bottom:335.488000pt;}
.ye8{bottom:337.574667pt;}
.y1f3{bottom:338.372000pt;}
.yc{bottom:338.376000pt;}
.y16d{bottom:344.414667pt;}
.y9b{bottom:345.146667pt;}
.y13d{bottom:345.236000pt;}
.y122{bottom:345.545333pt;}
.ybf{bottom:346.341333pt;}
.y6f{bottom:346.740000pt;}
.y198{bottom:349.664000pt;}
.y37{bottom:352.225333pt;}
.y1f2{bottom:353.714667pt;}
.yb{bottom:354.277333pt;}
.y13c{bottom:361.661333pt;}
.y9a{bottom:361.884000pt;}
.ybe{bottom:363.078667pt;}
.y6e{bottom:363.477333pt;}
.y197{bottom:364.276000pt;}
.ye7{bottom:367.462667pt;}
.y36{bottom:368.962667pt;}
.y1f1{bottom:369.056000pt;}
.ya{bottom:370.177333pt;}
.y16c{bottom:372.521333pt;}
.y121{bottom:375.433333pt;}
.y13b{bottom:376.273333pt;}
.y99{bottom:378.621333pt;}
.ybd{bottom:379.816000pt;}
.y6d{bottom:380.214667pt;}
.ye6{bottom:384.200000pt;}
.y1f0{bottom:384.398667pt;}
.y196{bottom:385.289333pt;}
.y35{bottom:385.700000pt;}
.y13a{bottom:390.885333pt;}
.y120{bottom:392.170667pt;}
.y98{bottom:395.358667pt;}
.y9{bottom:395.376000pt;}
.ybc{bottom:396.553333pt;}
.y6c{bottom:396.952000pt;}
.y1ef{bottom:399.741333pt;}
.y16b{bottom:400.564000pt;}
.y34{bottom:402.437333pt;}
.ye5{bottom:408.908000pt;}
.y8{bottom:411.276000pt;}
.y139{bottom:411.898667pt;}
.y97{bottom:412.096000pt;}
.ybb{bottom:413.290667pt;}
.y195{bottom:413.396000pt;}
.y6b{bottom:413.689333pt;}
.y1ee{bottom:415.084000pt;}
.y16a{bottom:416.989333pt;}
.y33{bottom:419.174667pt;}
.ye4{bottom:425.645333pt;}
.y96{bottom:428.833333pt;}
.yba{bottom:430.028000pt;}
.y6a{bottom:430.426667pt;}
.y169{bottom:431.601333pt;}
.y7{bottom:435.146667pt;}
.y32{bottom:435.912000pt;}
.y138{bottom:440.005333pt;}
.y194{bottom:441.082667pt;}
.y95{bottom:445.570667pt;}
.y1ed{bottom:445.769333pt;}
.y168{bottom:446.213333pt;}
.y11f{bottom:446.366667pt;}
.yb9{bottom:446.765333pt;}
.y69{bottom:447.164000pt;}
.ye3{bottom:450.352000pt;}
.y6{bottom:451.048000pt;}
.y31{bottom:452.649333pt;}
.y193{bottom:457.820000pt;}
.y167{bottom:460.825333pt;}
.y1ec{bottom:461.112000pt;}
.y94{bottom:462.306667pt;}
.yb8{bottom:463.502667pt;}
.y68{bottom:463.901333pt;}
.y5{bottom:466.948000pt;}
.ye2{bottom:467.089333pt;}
.y137{bottom:468.188000pt;}
.y30{bottom:469.386667pt;}
.y1ac{bottom:470.596000pt;}
.y192{bottom:474.557333pt;}
.y11e{bottom:476.254667pt;}
.y1eb{bottom:476.454667pt;}
.y93{bottom:479.044000pt;}
.yb7{bottom:480.240000pt;}
.y67{bottom:480.638667pt;}
.y166{bottom:481.838667pt;}
.y4{bottom:482.848000pt;}
.y136{bottom:484.614667pt;}
.y2f{bottom:486.124000pt;}
.y191{bottom:491.294667pt;}
.ye1{bottom:491.797333pt;}
.y11d{bottom:492.992000pt;}
.y1ab{bottom:494.188000pt;}
.y92{bottom:495.781333pt;}
.yb6{bottom:496.977333pt;}
.y66{bottom:497.376000pt;}
.y3{bottom:498.749333pt;}
.y135{bottom:499.226667pt;}
.y2e{bottom:502.861333pt;}
.y1ea{bottom:507.138667pt;}
.y190{bottom:508.032000pt;}
.ye0{bottom:508.534667pt;}
.y11c{bottom:509.729333pt;}
.y165{bottom:509.945333pt;}
.y91{bottom:512.518667pt;}
.yb5{bottom:513.714667pt;}
.y134{bottom:513.838667pt;}
.y65{bottom:514.113333pt;}
.y2{bottom:514.649333pt;}
.y1aa{bottom:517.780000pt;}
.y1e9{bottom:522.481333pt;}
.y2d{bottom:523.582667pt;}
.y18f{bottom:524.769333pt;}
.y11b{bottom:526.466667pt;}
.y133{bottom:528.450667pt;}
.y90{bottom:529.256000pt;}
.yb4{bottom:530.452000pt;}
.y1{bottom:530.549333pt;}
.y64{bottom:530.850667pt;}
.ydf{bottom:533.241333pt;}
.y1e8{bottom:537.824000pt;}
.y1a9{bottom:541.370667pt;}
.y18e{bottom:541.506667pt;}
.y164{bottom:541.528000pt;}
.y8f{bottom:545.993333pt;}
.yb3{bottom:547.189333pt;}
.y63{bottom:547.588000pt;}
.y132{bottom:549.464000pt;}
.yde{bottom:549.978667pt;}
.y1e7{bottom:553.166667pt;}
.y18d{bottom:558.244000pt;}
.y163{bottom:558.265333pt;}
.y8e{bottom:562.730667pt;}
.yb2{bottom:563.926667pt;}
.y62{bottom:564.325333pt;}
.y1a8{bottom:564.962667pt;}
.y1e6{bottom:568.509333pt;}
.ydd{bottom:574.686667pt;}
.y18c{bottom:574.981333pt;}
.y162{bottom:575.002667pt;}
.y11a{bottom:577.077333pt;}
.y131{bottom:577.570667pt;}
.y8d{bottom:579.468000pt;}
.y1a7{bottom:580.584000pt;}
.yb1{bottom:580.664000pt;}
.y61{bottom:581.062667pt;}
.y1e5{bottom:583.852000pt;}
.y2c{bottom:590.382667pt;}
.ydc{bottom:591.424000pt;}
.y18b{bottom:591.718667pt;}
.y161{bottom:591.740000pt;}
.y119{bottom:593.814667pt;}
.y8c{bottom:596.205333pt;}
.yb0{bottom:597.401333pt;}
.y60{bottom:597.800000pt;}
.y1e4{bottom:599.194667pt;}
.y18a{bottom:608.456000pt;}
.y160{bottom:608.477333pt;}
.y118{bottom:610.552000pt;}
.y8b{bottom:612.942667pt;}
.yaf{bottom:614.138667pt;}
.y5f{bottom:614.537333pt;}
.ydb{bottom:616.130667pt;}
.y1a6{bottom:619.797333pt;}
.y2b{bottom:623.618667pt;}
.y189{bottom:625.193333pt;}
.y15f{bottom:625.214667pt;}
.y117{bottom:627.289333pt;}
.y8a{bottom:629.680000pt;}
.y1e3{bottom:629.878667pt;}
.yae{bottom:630.876000pt;}
.y5e{bottom:631.274667pt;}
.yda{bottom:632.868000pt;}
.y1a5{bottom:635.418667pt;}
.y2a{bottom:640.913333pt;}
.y188{bottom:641.929333pt;}
.y15e{bottom:641.952000pt;}
.y116{bottom:644.026667pt;}
.y1e2{bottom:645.221333pt;}
.y89{bottom:646.417333pt;}
.yad{bottom:647.613333pt;}
.y5d{bottom:648.012000pt;}
.y1a4{bottom:651.040000pt;}
.yd9{bottom:657.576000pt;}
.y29{bottom:658.209333pt;}
.y187{bottom:658.666667pt;}
.y15d{bottom:658.689333pt;}
.y1e1{bottom:660.564000pt;}
.y115{bottom:660.764000pt;}
.y88{bottom:663.154667pt;}
.yac{bottom:664.350667pt;}
.y5c{bottom:664.749333pt;}
.y1a3{bottom:666.661333pt;}
.yd8{bottom:674.313333pt;}
.y186{bottom:675.404000pt;}
.y15c{bottom:675.426667pt;}
.y28{bottom:675.504000pt;}
.y1e0{bottom:675.906667pt;}
.y114{bottom:677.501333pt;}
.y87{bottom:679.892000pt;}
.yab{bottom:681.088000pt;}
.y5b{bottom:681.485333pt;}
.y1df{bottom:691.249333pt;}
.y185{bottom:692.141333pt;}
.y15b{bottom:692.164000pt;}
.y27{bottom:692.798667pt;}
.y113{bottom:694.238667pt;}
.y86{bottom:696.629333pt;}
.yaa{bottom:697.825333pt;}
.y5a{bottom:698.222667pt;}
.yd7{bottom:699.020000pt;}
.y1de{bottom:706.592000pt;}
.y184{bottom:708.878667pt;}
.y15a{bottom:708.901333pt;}
.y26{bottom:710.094667pt;}
.y112{bottom:710.976000pt;}
.y85{bottom:713.366667pt;}
.y102{bottom:714.562667pt;}
.y59{bottom:714.960000pt;}
.yd6{bottom:715.757333pt;}
.ya9{bottom:718.546667pt;}
.y1dd{bottom:721.934667pt;}
.y183{bottom:725.616000pt;}
.y159{bottom:725.638667pt;}
.y25{bottom:727.389333pt;}
.y111{bottom:727.713333pt;}
.y84{bottom:730.104000pt;}
.y101{bottom:731.300000pt;}
.y58{bottom:731.697333pt;}
.y1af{bottom:735.786667pt;}
.y1dc{bottom:737.277333pt;}
.yd5{bottom:740.465333pt;}
.y1ae{bottom:744.346667pt;}
.y110{bottom:744.450667pt;}
.y24{bottom:744.684000pt;}
.y83{bottom:746.841333pt;}
.y100{bottom:748.036000pt;}
.y57{bottom:748.434667pt;}
.y1db{bottom:752.620000pt;}
.y182{bottom:752.750667pt;}
.y158{bottom:753.208000pt;}
.yd4{bottom:757.202667pt;}
.y10f{bottom:761.186667pt;}
.y23{bottom:761.980000pt;}
.y82{bottom:763.578667pt;}
.yff{bottom:764.773333pt;}
.y56{bottom:765.172000pt;}
.y1da{bottom:767.961333pt;}
.y181{bottom:769.176000pt;}
.y157{bottom:769.633333pt;}
.y1b9{bottom:774.632000pt;}
.y10e{bottom:777.924000pt;}
.y22{bottom:779.274667pt;}
.y81{bottom:780.316000pt;}
.yfe{bottom:781.510667pt;}
.y55{bottom:781.909333pt;}
.y1b8{bottom:783.192000pt;}
.y1d9{bottom:783.304000pt;}
.y180{bottom:783.788000pt;}
.y156{bottom:784.245333pt;}
.y10d{bottom:794.661333pt;}
.yfd{bottom:798.248000pt;}
.y17f{bottom:798.400000pt;}
.y54{bottom:798.646667pt;}
.y155{bottom:798.857333pt;}
.y80{bottom:801.038667pt;}
.y10c{bottom:811.398667pt;}
.y21{bottom:813.573333pt;}
.y1d8{bottom:813.989333pt;}
.yfc{bottom:814.985333pt;}
.y53{bottom:815.384000pt;}
.y7f{bottom:818.970667pt;}
.y17e{bottom:819.414667pt;}
.y154{bottom:819.872000pt;}
.y20{bottom:827.920000pt;}
.y10b{bottom:828.136000pt;}
.y1d7{bottom:829.332000pt;}
.yfb{bottom:831.722667pt;}
.y52{bottom:832.121333pt;}
.y1f{bottom:842.265333pt;}
.y1d6{bottom:844.674667pt;}
.y10a{bottom:844.873333pt;}
.y17d{bottom:847.520000pt;}
.y153{bottom:847.977333pt;}
.yfa{bottom:848.460000pt;}
.y51{bottom:848.858667pt;}
.y1d5{bottom:860.017333pt;}
.y109{bottom:861.610667pt;}
.yf9{bottom:865.197333pt;}
.y50{bottom:865.596000pt;}
.y152{bottom:874.692000pt;}
.y1d4{bottom:875.360000pt;}
.y108{bottom:878.348000pt;}
.yf8{bottom:881.934667pt;}
.y4f{bottom:882.333333pt;}
.y1e{bottom:885.836000pt;}
.y1d2{bottom:890.701333pt;}
.y1d3{bottom:890.702667pt;}
.y151{bottom:891.117333pt;}
.y107{bottom:895.085333pt;}
.y4e{bottom:899.070667pt;}
.yf7{bottom:902.657333pt;}
.y150{bottom:905.729333pt;}
.y1d1{bottom:906.044000pt;}
.y106{bottom:911.822667pt;}
.y4d{bottom:915.808000pt;}
.y14f{bottom:920.341333pt;}
.y1d{bottom:921.320000pt;}
.y1d0{bottom:921.386667pt;}
.y105{bottom:928.560000pt;}
.y4c{bottom:932.545333pt;}
.y14e{bottom:934.953333pt;}
.y1cf{bottom:936.729333pt;}
.y104{bottom:945.297333pt;}
.y1c{bottom:946.425333pt;}
.y4b{bottom:949.282667pt;}
.y1ce{bottom:952.072000pt;}
.y14d{bottom:955.966667pt;}
.y103{bottom:962.034667pt;}
.y4a{bottom:966.020000pt;}
.y1cd{bottom:967.414667pt;}
.y1b{bottom:971.530667pt;}
.y49{bottom:982.757333pt;}
.y14c{bottom:984.073333pt;}
.y19{bottom:1010.186667pt;}
.y48{bottom:1038.548000pt;}
.h10{height:14.948784pt;}
.h2{height:27.076941pt;}
.h3{height:27.300102pt;}
.h9{height:30.945242pt;}
.he{height:31.200285pt;}
.ha{height:34.430976pt;}
.hb{height:34.813542pt;}
.h19{height:35.100467pt;}
.h11{height:37.087439pt;}
.hc{height:38.256384pt;}
.hd{height:38.681455pt;}
.h6{height:39.000258pt;}
.h17{height:39.349375pt;}
.h13{height:39.359687pt;}
.h8{height:39.531597pt;}
.h1a{height:43.660390pt;}
.h15{height:44.390625pt;}
.h4{height:45.257696pt;}
.hf{height:48.511220pt;}
.h14{height:49.421563pt;}
.h5{height:53.476662pt;}
.h18{height:54.927899pt;}
.h7{height:68.861952pt;}
.h12{height:704.417333pt;}
.h16{height:743.262667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:117.155694pt;}
.w3{width:617.011333pt;}
.w4{width:647.442267pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xaf{left:-39.404667pt;}
.xb3{left:-25.808400pt;}
.x0{left:0.000000pt;}
.xb5{left:2.511600pt;}
.x1{left:47.621333pt;}
.x2{left:52.004251pt;}
.xb2{left:72.940400pt;}
.xbd{left:74.718667pt;}
.xb6{left:76.309333pt;}
.xae{left:88.156667pt;}
.xb1{left:134.462000pt;}
.xb4{left:148.058267pt;}
.x1e{left:219.865333pt;}
.x4{left:220.912000pt;}
.x3{left:221.858667pt;}
.xa4{left:230.354667pt;}
.x98{left:236.964000pt;}
.x9a{left:243.082667pt;}
.x95{left:244.700000pt;}
.x91{left:245.862667pt;}
.x7f{left:247.004000pt;}
.x6{left:250.204000pt;}
.x80{left:253.650667pt;}
.x82{left:254.670667pt;}
.x81{left:258.192000pt;}
.x7{left:259.646667pt;}
.x8{left:266.288000pt;}
.x3f{left:267.249333pt;}
.x9{left:272.910667pt;}
.x5{left:274.105333pt;}
.x73{left:275.584000pt;}
.x9b{left:277.614667pt;}
.xa{left:279.552000pt;}
.x40{left:280.533333pt;}
.x42{left:281.580000pt;}
.x32{left:282.633333pt;}
.x5b{left:285.517333pt;}
.x1b{left:287.230667pt;}
.x43{left:288.221333pt;}
.x44{left:291.608000pt;}
.x99{left:292.585333pt;}
.x5f{left:293.592000pt;}
.x33{left:295.916000pt;}
.x6a{left:298.840000pt;}
.x5c{left:302.189333pt;}
.x45{left:304.892000pt;}
.x5d{left:308.964000pt;}
.x6b{left:315.377333pt;}
.x70{left:318.242667pt;}
.x5e{left:322.246667pt;}
.x34{left:335.617333pt;}
.x71{left:338.300000pt;}
.x27{left:339.614667pt;}
.x38{left:342.741333pt;}
.x35{left:348.900000pt;}
.x72{left:351.584000pt;}
.x28{left:352.898667pt;}
.x54{left:354.368000pt;}
.x39{left:356.024000pt;}
.x3a{left:359.278667pt;}
.x1c{left:366.585333pt;}
.x55{left:367.650667pt;}
.x3b{left:372.562667pt;}
.x93{left:373.894667pt;}
.x2d{left:378.736000pt;}
.x1d{left:379.869333pt;}
.x62{left:382.065333pt;}
.x88{left:386.594667pt;}
.x15{left:392.028000pt;}
.x63{left:395.349333pt;}
.x97{left:396.644000pt;}
.x89{left:399.877333pt;}
.x46{left:404.273333pt;}
.x16{left:405.310667pt;}
.x8d{left:413.070667pt;}
.x3d{left:417.845333pt;}
.x47{left:420.944000pt;}
.x8e{left:423.996000pt;}
.x7a{left:425.165333pt;}
.x64{left:429.222667pt;}
.x3e{left:431.128000pt;}
.x48{left:434.226667pt;}
.x7b{left:438.449333pt;}
.xa8{left:439.517333pt;}
.x6d{left:440.597333pt;}
.x29{left:442.126667pt;}
.x21{left:445.258667pt;}
.x9f{left:450.317333pt;}
.xa9{left:452.800000pt;}
.x6e{left:453.880000pt;}
.x2a{left:455.410667pt;}
.x8b{left:457.708000pt;}
.xf{left:459.076000pt;}
.x8c{left:461.092000pt;}
.x10{left:465.718667pt;}
.x9e{left:467.118667pt;}
.x41{left:468.797333pt;}
.x7c{left:472.782667pt;}
.x2e{left:475.202667pt;}
.x22{left:478.474667pt;}
.x83{left:479.776000pt;}
.xa0{left:484.365333pt;}
.x7d{left:486.066667pt;}
.x2f{left:488.486667pt;}
.x84{left:491.508000pt;}
.x67{left:492.556000pt;}
.x30{left:494.994667pt;}
.x92{left:505.081333pt;}
.x31{left:508.278667pt;}
.x94{left:518.665333pt;}
.xaa{left:519.605333pt;}
.x58{left:521.932000pt;}
.x56{left:526.178667pt;}
.x8f{left:529.454667pt;}
.xab{left:532.889333pt;}
.xb{left:534.432000pt;}
.xac{left:536.277333pt;}
.x57{left:539.461333pt;}
.xc{left:541.073333pt;}
.x90{left:542.738667pt;}
.x11{left:543.950667pt;}
.x76{left:545.706667pt;}
.xd{left:547.694667pt;}
.xad{left:549.560000pt;}
.x12{left:550.592000pt;}
.xa5{left:553.044000pt;}
.xe{left:554.337333pt;}
.x85{left:556.961333pt;}
.x77{left:558.990667pt;}
.x86{left:560.254667pt;}
.x1f{left:561.366667pt;}
.x20{left:564.753333pt;}
.x96{left:567.082667pt;}
.x2b{left:569.414667pt;}
.x87{left:573.538667pt;}
.x9c{left:575.430667pt;}
.x17{left:577.382667pt;}
.x74{left:579.749333pt;}
.x2c{left:582.698667pt;}
.x18{left:584.024000pt;}
.xa6{left:586.385333pt;}
.x19{left:587.398667pt;}
.x9d{left:589.652000pt;}
.x75{left:593.033333pt;}
.x7e{left:595.740000pt;}
.xb9{left:596.692000pt;}
.xa7{left:599.669333pt;}
.x1a{left:600.682667pt;}
.x4e{left:602.612000pt;}
.xc2{left:608.737333pt;}
.x13{left:610.069333pt;}
.xb0{left:611.955333pt;}
.x4b{left:613.440000pt;}
.x4f{left:615.896000pt;}
.x4c{left:616.826667pt;}
.x50{left:619.150667pt;}
.xba{left:620.602667pt;}
.x14{left:623.352000pt;}
.x4d{left:630.110667pt;}
.x51{left:632.433333pt;}
.x8a{left:636.573333pt;}
.xa1{left:641.765333pt;}
.xb7{left:642.932000pt;}
.x6f{left:650.209333pt;}
.xc4{left:651.244000pt;}
.xc6{left:653.357333pt;}
.xbb{left:655.630667pt;}
.xa2{left:657.410667pt;}
.xc3{left:660.080000pt;}
.x59{left:663.252000pt;}
.x3c{left:664.881333pt;}
.xa3{left:668.336000pt;}
.x68{left:670.965333pt;}
.x23{left:672.800000pt;}
.x6c{left:675.033333pt;}
.x5a{left:676.536000pt;}
.x36{left:678.597333pt;}
.xbc{left:679.541333pt;}
.xc5{left:680.937333pt;}
.x69{left:684.249333pt;}
.x24{left:686.082667pt;}
.x25{left:689.444000pt;}
.x37{left:691.881333pt;}
.x60{left:693.912000pt;}
.x49{left:695.381333pt;}
.xc1{left:700.594667pt;}
.xbe{left:701.769333pt;}
.x26{left:702.728000pt;}
.x61{left:707.194667pt;}
.x4a{left:708.665333pt;}
.x78{left:710.448000pt;}
.xbf{left:720.317333pt;}
.x79{left:723.732000pt;}
.x52{left:726.488000pt;}
.x65{left:727.905333pt;}
.xb8{left:731.214667pt;}
.x53{left:739.772000pt;}
.x66{left:741.189333pt;}
.xc0{left:744.226667pt;}
}




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