
    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_7d13c40a9706a504b0534101.woff')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_7c7eec47e57283769fd9ce02.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c17c49154d45b7b763c1d801.woff')format("woff");}.ff3{font-family:ff3;line-height:0.919000;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_2ba516c6ab607276b4eb1ff7.woff')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_61d8322c0439227a1ff4e928.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_1095a4fb730036b6de8643ae.woff')format("woff");}.ff6{font-family:ff6;line-height:0.921000;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_84cb89261838fcdd002fd2f4.woff')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_cb119c2358f605beef57f9b2.woff')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_acfd876d4e56ce56fb3a5e19.woff')format("woff");}.ff9{font-family:ff9;line-height:1.001000;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_468a4ac0c930da91ac7c7939.woff')format("woff");}.ffa{font-family:ffa;line-height:0.704000;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_2d8f8ac24c8b9e629e439779.woff')format("woff");}.ffb{font-family:ffb;line-height:2.399000;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_19e96b1549ac7f8544d44b46.woff')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_37b1e62bd0f7c5597b4f1344.woff')format("woff");}.ffd{font-family:ffd;line-height:0.908000;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_103f27e598421a22885333eb.woff')format("woff");}.ffe{font-family:ffe;line-height:0.897450;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_847c09a2d45eb90cf2a1acb9.woff')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_4fd243ca3c01c8e3b65a2ab2.woff')format("woff");}.ff10{font-family:ff10;line-height:0.923000;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_3c39de20f5bcaae92176bdb5.woff')format("woff");}.ff11{font-family:ff11;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_c483fddaaa63b6752c632f63.woff')format("woff");}.ff12{font-family:ff12;line-height:0.958000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_19f14593add57610ed0b2aff.woff')format("woff");}.ff13{font-family:ff13;line-height:0.451000;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;}
.m8{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);}
.m13{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);}
.m17{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);}
.m16{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);}
.m25{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);}
.m18{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);}
.m22{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);}
.m15{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);}
.me{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);}
.m2{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);}
.m23{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);}
.m20{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);}
.m3{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);}
.mf{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);}
.m4{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);}
.m11{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);}
.m1d{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);}
.mb{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);}
.md{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);}
.m1c{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);}
.m12{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);}
.ma{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);}
.m27{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);}
.m9{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);}
.m1f{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);}
.m1a{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);}
.m6{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);}
.m1b{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);}
.m7{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);}
.m21{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m19{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);}
.m14{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);}
.m5{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);}
.m26{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);}
.m28{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);}
.mc{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);}
.v23{vertical-align:-62.766000px;}
.v1a{vertical-align:-49.842000px;}
.v4{vertical-align:-35.862000px;}
.v10{vertical-align:-23.754000px;}
.vc{vertical-align:-16.368000px;}
.vd{vertical-align:-10.134000px;}
.v1e{vertical-align:-8.436000px;}
.v1f{vertical-align:-1.860000px;}
.v0{vertical-align:0.000000px;}
.v16{vertical-align:1.572000px;}
.v7{vertical-align:6.054000px;}
.v5{vertical-align:9.408000px;}
.v14{vertical-align:17.268000px;}
.vf{vertical-align:20.226000px;}
.v8{vertical-align:22.566000px;}
.v18{vertical-align:23.748000px;}
.v12{vertical-align:25.776000px;}
.ve{vertical-align:27.528000px;}
.v24{vertical-align:34.290000px;}
.va{vertical-align:39.030000px;}
.v20{vertical-align:40.860000px;}
.v1{vertical-align:44.280000px;}
.v9{vertical-align:46.320000px;}
.v1c{vertical-align:49.842000px;}
.v26{vertical-align:61.980000px;}
.v19{vertical-align:65.556000px;}
.v11{vertical-align:67.776000px;}
.v6{vertical-align:68.820000px;}
.v15{vertical-align:70.158000px;}
.vb{vertical-align:74.796000px;}
.v2{vertical-align:85.704000px;}
.v17{vertical-align:89.178000px;}
.v13{vertical-align:90.348000px;}
.v21{vertical-align:93.252000px;}
.v25{vertical-align:104.676000px;}
.v1b{vertical-align:123.960000px;}
.v3{vertical-align:130.602000px;}
.v22{vertical-align:133.368000px;}
.v1d{vertical-align:159.828000px;}
.ls2{letter-spacing:0.000000px;}
.ls55{letter-spacing:0.000843px;}
.ls69{letter-spacing:0.001052px;}
.ls6a{letter-spacing:0.001059px;}
.ls3a{letter-spacing:0.002149px;}
.ls8b{letter-spacing:0.002688px;}
.ls5f{letter-spacing:0.002700px;}
.ls40{letter-spacing:0.003551px;}
.ls71{letter-spacing:0.003962px;}
.ls54{letter-spacing:0.007864px;}
.ls1c{letter-spacing:0.010242px;}
.ls84{letter-spacing:0.021685px;}
.ls21{letter-spacing:1.291156px;}
.ls45{letter-spacing:1.767274px;}
.ls10{letter-spacing:1.819611px;}
.ls24{letter-spacing:1.832729px;}
.ls30{letter-spacing:2.290911px;}
.lsc{letter-spacing:2.356366px;}
.ls35{letter-spacing:2.487275px;}
.ls60{letter-spacing:2.773595px;}
.ls7e{letter-spacing:2.993236px;}
.ls77{letter-spacing:3.734425px;}
.ls87{letter-spacing:4.276792px;}
.ls2e{letter-spacing:4.709567px;}
.ls20{letter-spacing:5.068984px;}
.ls4f{letter-spacing:5.360712px;}
.ls3f{letter-spacing:5.366712px;}
.ls5e{letter-spacing:5.743488px;}
.ls88{letter-spacing:7.134551px;}
.ls38{letter-spacing:7.172012px;}
.lse{letter-spacing:8.049181px;}
.ls15{letter-spacing:8.057159px;}
.ls23{letter-spacing:8.083860px;}
.ls62{letter-spacing:8.470338px;}
.ls73{letter-spacing:9.098189px;}
.lsb{letter-spacing:10.865464px;}
.ls7b{letter-spacing:10.910793px;}
.ls1a{letter-spacing:10.930918px;}
.ls5a{letter-spacing:11.520010px;}
.ls85{letter-spacing:12.436374px;}
.ls56{letter-spacing:12.504493px;}
.ls48{letter-spacing:12.746062px;}
.ls59{letter-spacing:13.352738px;}
.ls41{letter-spacing:13.898915px;}
.ls4d{letter-spacing:14.310493px;}
.ls6{letter-spacing:14.530921px;}
.ls74{letter-spacing:14.541962px;}
.ls37{letter-spacing:14.596376px;}
.ls32{letter-spacing:15.774559px;}
.ls2f{letter-spacing:16.363650px;}
.ls68{letter-spacing:16.651488px;}
.ls14{letter-spacing:16.657488px;}
.ls7a{letter-spacing:16.889282px;}
.ls12{letter-spacing:17.180793px;}
.ls79{letter-spacing:17.630425px;}
.ls78{letter-spacing:18.084141px;}
.ls7d{letter-spacing:18.086793px;}
.ls46{letter-spacing:18.130924px;}
.ls67{letter-spacing:18.164406px;}
.ls16{letter-spacing:18.182793px;}
.ls11{letter-spacing:18.183181px;}
.ls4{letter-spacing:18.196379px;}
.ls70{letter-spacing:18.201165px;}
.ls47{letter-spacing:18.523652px;}
.ls63{letter-spacing:18.965159px;}
.ls8{letter-spacing:20.029108px;}
.ls50{letter-spacing:20.421835px;}
.lsf{letter-spacing:20.431578px;}
.ls26{letter-spacing:20.437578px;}
.ls22{letter-spacing:20.552744px;}
.ls5b{letter-spacing:20.749108px;}
.ls33{letter-spacing:20.814563px;}
.ls83{letter-spacing:21.164915px;}
.ls3c{letter-spacing:21.338200px;}
.ls3b{letter-spacing:21.403654px;}
.ls29{letter-spacing:21.600018px;}
.ls72{letter-spacing:21.665473px;}
.ls5{letter-spacing:21.796382px;}
.ls2a{letter-spacing:21.861836px;}
.ls66{letter-spacing:21.992746px;}
.ls5d{letter-spacing:22.189109px;}
.ls27{letter-spacing:22.254564px;}
.ls36{letter-spacing:22.445644px;}
.ls6f{letter-spacing:22.843655px;}
.ls3d{letter-spacing:22.974565px;}
.ls34{letter-spacing:23.170928px;}
.ls13{letter-spacing:23.176888px;}
.ls6e{letter-spacing:23.498201px;}
.ls81{letter-spacing:23.563656px;}
.ls75{letter-spacing:23.629111px;}
.ls3e{letter-spacing:23.760020px;}
.ls65{letter-spacing:23.929488px;}
.ls28{letter-spacing:24.218202px;}
.ls39{letter-spacing:24.379860px;}
.ls53{letter-spacing:24.800915px;}
.ls1b{letter-spacing:25.200021px;}
.ls58{letter-spacing:25.265476px;}
.ls3{letter-spacing:25.330930px;}
.ls9{letter-spacing:25.336675px;}
.ls1{letter-spacing:25.524181px;}
.lsa{letter-spacing:26.094493px;}
.ls1f{letter-spacing:26.100493px;}
.ls19{letter-spacing:26.263860px;}
.ls8d{letter-spacing:27.621841px;}
.ls51{letter-spacing:28.210933px;}
.ls86{letter-spacing:28.930933px;}
.ls57{letter-spacing:28.996388px;}
.ls8c{letter-spacing:29.192752px;}
.ls5c{letter-spacing:29.258206px;}
.ls17{letter-spacing:30.305480px;}
.ls0{letter-spacing:31.194305px;}
.ls18{letter-spacing:32.727300px;}
.ls2b{letter-spacing:32.989118px;}
.ls2d{letter-spacing:33.643664px;}
.ls43{letter-spacing:33.747949px;}
.ls42{letter-spacing:34.560029px;}
.ls52{letter-spacing:35.410939px;}
.ls2c{letter-spacing:35.738212px;}
.ls31{letter-spacing:36.196394px;}
.lsd{letter-spacing:36.327303px;}
.ls61{letter-spacing:36.327714px;}
.ls6c{letter-spacing:36.359412px;}
.ls49{letter-spacing:36.368793px;}
.ls25{letter-spacing:36.392758px;}
.ls1d{letter-spacing:38.160032px;}
.ls76{letter-spacing:39.337544px;}
.ls6b{letter-spacing:40.636793px;}
.ls4a{letter-spacing:43.529412px;}
.ls1e{letter-spacing:43.539156px;}
.ls44{letter-spacing:50.676493px;}
.ls4b{letter-spacing:54.440700px;}
.ls4c{letter-spacing:59.027412px;}
.ls7c{letter-spacing:65.454600px;}
.ls8a{letter-spacing:71.738242px;}
.ls7f{letter-spacing:72.581236px;}
.ls7{letter-spacing:83.650979px;}
.ls80{letter-spacing:114.283732px;}
.ls89{letter-spacing:205.527444px;}
.ls82{letter-spacing:411.786926px;}
.ls64{letter-spacing:819.557047px;}
.ls6d{letter-spacing:883.440736px;}
.ls4e{letter-spacing:896.204383px;}
.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;}
}
.ws22{word-spacing:-149.105579px;}
.ws5d{word-spacing:-101.650994px;}
.ws46{word-spacing:-65.454600px;}
.ws94{word-spacing:-54.576045px;}
.ws58{word-spacing:-51.172406px;}
.ws84{word-spacing:-50.809387px;}
.ws2c{word-spacing:-47.324343px;}
.ws4d{word-spacing:-47.323676px;}
.ws20{word-spacing:-47.258221px;}
.ws60{word-spacing:-44.247310px;}
.ws47{word-spacing:-42.833490px;}
.ws2d{word-spacing:-42.637126px;}
.ws5e{word-spacing:-38.997851px;}
.wsb{word-spacing:-38.937826px;}
.ws3c{word-spacing:-37.636395px;}
.ws6f{word-spacing:-37.243667px;}
.ws6e{word-spacing:-36.706940px;}
.ws5a{word-spacing:-36.379667px;}
.ws2{word-spacing:-35.119596px;}
.ws8{word-spacing:-34.311194px;}
.ws2e{word-spacing:-33.211407px;}
.ws56{word-spacing:-32.727300px;}
.ws21{word-spacing:-31.706208px;}
.ws68{word-spacing:-29.127297px;}
.ws9{word-spacing:-28.955301px;}
.ws69{word-spacing:-27.058932px;}
.ws85{word-spacing:-24.440748px;}
.ws83{word-spacing:-22.738928px;}
.ws86{word-spacing:-20.840745px;}
.wsde{word-spacing:-19.701835px;}
.ws82{word-spacing:-19.204380px;}
.ws23{word-spacing:-18.183288px;}
.wsca{word-spacing:-17.934560px;}
.ws95{word-spacing:-17.869106px;}
.wsd7{word-spacing:-17.803651px;}
.ws74{word-spacing:-17.607287px;}
.ws7b{word-spacing:-17.306196px;}
.wse4{word-spacing:-17.214560px;}
.wsdf{word-spacing:-17.149105px;}
.ws75{word-spacing:-17.083651px;}
.wse6{word-spacing:-16.625468px;}
.wse0{word-spacing:-16.429105px;}
.ws15{word-spacing:-16.363650px;}
.ws42{word-spacing:-16.139475px;}
.ws6b{word-spacing:-16.128013px;}
.wsc0{word-spacing:-15.840013px;}
.ws9b{word-spacing:-15.643649px;}
.ws91{word-spacing:-15.512740px;}
.wscc{word-spacing:-15.447286px;}
.wsbd{word-spacing:-15.250922px;}
.ws96{word-spacing:-15.185467px;}
.wsd5{word-spacing:-14.596376px;}
.ws72{word-spacing:-14.426194px;}
.ws98{word-spacing:-14.400012px;}
.wsbe{word-spacing:-14.269103px;}
.wsc4{word-spacing:-14.138194px;}
.wsaf{word-spacing:-13.941830px;}
.ws5b{word-spacing:-13.449600px;}
.ws97{word-spacing:-13.221829px;}
.ws78{word-spacing:-13.025465px;}
.ws79{word-spacing:-12.960011px;}
.wsd{word-spacing:-12.911530px;}
.wsd8{word-spacing:-12.894556px;}
.wse{word-spacing:-12.851754px;}
.wsd9{word-spacing:-12.829102px;}
.ws43{word-spacing:-12.698192px;}
.wsb4{word-spacing:-12.567283px;}
.wsc5{word-spacing:-12.501829px;}
.wsae{word-spacing:-12.436374px;}
.wsb6{word-spacing:-12.305465px;}
.ws6d{word-spacing:-12.240010px;}
.ws1e{word-spacing:-12.174556px;}
.ws7d{word-spacing:-12.043646px;}
.ws77{word-spacing:-11.978192px;}
.wsa3{word-spacing:-11.912737px;}
.wsa4{word-spacing:-11.847283px;}
.wsb8{word-spacing:-11.781828px;}
.ws1{word-spacing:-11.735224px;}
.ws87{word-spacing:-11.585464px;}
.ws89{word-spacing:-11.520010px;}
.wsac{word-spacing:-11.454555px;}
.wsa1{word-spacing:-11.389100px;}
.ws3b{word-spacing:-11.323646px;}
.ws38{word-spacing:-11.258191px;}
.ws55{word-spacing:-11.192737px;}
.ws28{word-spacing:-11.127282px;}
.ws45{word-spacing:-11.061827px;}
.ws44{word-spacing:-10.996373px;}
.ws18{word-spacing:-10.930918px;}
.ws65{word-spacing:-10.865464px;}
.ws31{word-spacing:-10.800009px;}
.ws2a{word-spacing:-10.734554px;}
.ws36{word-spacing:-10.669100px;}
.ws1f{word-spacing:-10.603645px;}
.ws35{word-spacing:-10.538191px;}
.ws4f{word-spacing:-10.472736px;}
.ws9e{word-spacing:-10.407281px;}
.wsa5{word-spacing:-10.341827px;}
.ws6{word-spacing:-10.221628px;}
.ws12{word-spacing:-10.102076px;}
.wsdd{word-spacing:-10.080008px;}
.wscd{word-spacing:-10.014554px;}
.ws13{word-spacing:-9.982525px;}
.ws34{word-spacing:-9.949099px;}
.wsc6{word-spacing:-9.883645px;}
.ws5{word-spacing:-9.862974px;}
.ws4{word-spacing:-9.803198px;}
.ws2b{word-spacing:-9.752735px;}
.ws10{word-spacing:-9.743423px;}
.wsdc{word-spacing:-9.687281px;}
.ws64{word-spacing:-9.556372px;}
.ws66{word-spacing:-9.490917px;}
.wsb9{word-spacing:-9.425462px;}
.ws40{word-spacing:-9.360008px;}
.ws3e{word-spacing:-9.294553px;}
.ws6a{word-spacing:-9.229099px;}
.ws16{word-spacing:-9.163644px;}
.ws61{word-spacing:-9.098189px;}
.wsba{word-spacing:-8.967280px;}
.wsa9{word-spacing:-8.901826px;}
.ws27{word-spacing:-8.705462px;}
.wsb7{word-spacing:-8.640007px;}
.wsd2{word-spacing:-8.443643px;}
.ws1c{word-spacing:-8.378189px;}
.wsa6{word-spacing:-8.181825px;}
.ws11{word-spacing:-7.770828px;}
.wse1{word-spacing:-7.723643px;}
.wsce{word-spacing:-7.658188px;}
.ws70{word-spacing:-7.226188px;}
.ws3a{word-spacing:-6.872733px;}
.wsf{word-spacing:-6.754643px;}
.wsaa{word-spacing:-6.741824px;}
.wsc1{word-spacing:-6.610915px;}
.ws1b{word-spacing:-6.480005px;}
.ws3d{word-spacing:-6.414551px;}
.wse2{word-spacing:-5.956369px;}
.ws50{word-spacing:-5.890914px;}
.ws9f{word-spacing:-5.694550px;}
.wsd3{word-spacing:-5.432732px;}
.ws51{word-spacing:-5.170913px;}
.ws7{word-spacing:-5.140702px;}
.ws8d{word-spacing:-4.909095px;}
.wsd4{word-spacing:-4.778186px;}
.wscf{word-spacing:-4.581822px;}
.wsd1{word-spacing:-4.516367px;}
.wsda{word-spacing:-4.385458px;}
.wsb5{word-spacing:-4.189094px;}
.ws7e{word-spacing:-3.992731px;}
.ws17{word-spacing:-3.927276px;}
.ws7a{word-spacing:-3.861821px;}
.wsdb{word-spacing:-3.796367px;}
.ws7c{word-spacing:-3.665458px;}
.ws59{word-spacing:-3.652367px;}
.ws7f{word-spacing:-3.534548px;}
.ws3{word-spacing:-3.526760px;}
.ws53{word-spacing:-3.272730px;}
.ws9c{word-spacing:-3.141821px;}
.ws9d{word-spacing:-3.076366px;}
.ws8e{word-spacing:-2.880002px;}
.wsad{word-spacing:-2.749093px;}
.ws5f{word-spacing:-2.736002px;}
.ws41{word-spacing:-2.683639px;}
.wsc7{word-spacing:-2.618184px;}
.wsab{word-spacing:-2.356366px;}
.ws92{word-spacing:-2.290911px;}
.ws39{word-spacing:-2.225456px;}
.wsc2{word-spacing:-1.963638px;}
.wsa7{word-spacing:-0.916364px;}
.wsb3{word-spacing:-0.785455px;}
.ws5c{word-spacing:-0.720001px;}
.ws32{word-spacing:-0.065455px;}
.ws4c{word-spacing:-0.052364px;}
.ws73{word-spacing:-0.047821px;}
.ws1d{word-spacing:0.000000px;}
.ws25{word-spacing:0.013091px;}
.ws54{word-spacing:0.340364px;}
.ws67{word-spacing:1.440001px;}
.wsbb{word-spacing:2.618184px;}
.ws62{word-spacing:2.631275px;}
.ws2f{word-spacing:3.416730px;}
.wsa8{word-spacing:4.320004px;}
.ws6c{word-spacing:5.380368px;}
.wsa{word-spacing:8.380539px;}
.ws52{word-spacing:9.962190px;}
.ws80{word-spacing:12.711283px;}
.wsc9{word-spacing:16.560014px;}
.wscb{word-spacing:17.018196px;}
.ws88{word-spacing:18.130924px;}
.ws49{word-spacing:18.144015px;}
.ws24{word-spacing:18.209470px;}
.wsd6{word-spacing:19.112743px;}
.ws99{word-spacing:20.225471px;}
.wsb0{word-spacing:20.618199px;}
.wsc{word-spacing:21.041011px;}
.ws81{word-spacing:21.102044px;}
.ws8f{word-spacing:21.730927px;}
.ws8b{word-spacing:21.796382px;}
.wsbc{word-spacing:22.974565px;}
.ws29{word-spacing:23.105474px;}
.wse3{word-spacing:23.236383px;}
.wse5{word-spacing:23.301838px;}
.ws19{word-spacing:23.367292px;}
.wsb1{word-spacing:23.825474px;}
.wsc3{word-spacing:23.890929px;}
.ws63{word-spacing:24.171066px;}
.ws3f{word-spacing:24.741839px;}
.ws76{word-spacing:24.756010px;}
.wsb2{word-spacing:24.807293px;}
.wsc8{word-spacing:25.200021px;}
.ws57{word-spacing:26.509113px;}
.wsbf{word-spacing:26.967295px;}
.ws9a{word-spacing:27.818205px;}
.ws37{word-spacing:27.883660px;}
.ws30{word-spacing:28.341842px;}
.ws1a{word-spacing:28.472751px;}
.wsa0{word-spacing:28.669115px;}
.ws33{word-spacing:28.865479px;}
.ws4b{word-spacing:29.080639px;}
.ws0{word-spacing:31.091012px;}
.ws71{word-spacing:31.182010px;}
.wsd0{word-spacing:33.250937px;}
.ws90{word-spacing:34.298210px;}
.ws93{word-spacing:34.821847px;}
.ws8a{word-spacing:40.348800px;}
.ws14{word-spacing:48.418425px;}
.ws8c{word-spacing:61.723688px;}
.wsa2{word-spacing:68.661875px;}
.ws48{word-spacing:99.202992px;}
.ws4e{word-spacing:329.865002px;}
.ws4a{word-spacing:563.079742px;}
.ws26{word-spacing:768.803550px;}
._f{margin-left:-94.581897px;}
._10{margin-left:-36.000030px;}
._1e{margin-left:-32.544926px;}
._13{margin-left:-19.923207px;}
._22{margin-left:-18.863831px;}
._1f{margin-left:-17.796014px;}
._1{margin-left:-8.056807px;}
._24{margin-left:-6.212188px;}
._3{margin-left:-4.958075px;}
._17{margin-left:-3.808030px;}
._2{margin-left:-2.788895px;}
._4{margin-left:-1.156321px;}
._5{width:1.936742px;}
._11{width:3.365080px;}
._23{width:4.778186px;}
._1b{width:7.396370px;}
._25{width:17.018196px;}
._9{width:18.459440px;}
._e{width:21.534563px;}
._7{width:23.252708px;}
._a{width:24.676384px;}
._6{width:26.161154px;}
._8{width:27.855430px;}
._1a{width:28.947741px;}
._15{width:29.954019px;}
._14{width:31.152468px;}
._27{width:32.727300px;}
._c{width:34.168610px;}
._34{width:35.363424px;}
._12{width:36.458212px;}
._32{width:37.505486px;}
._1c{width:40.311124px;}
._0{width:41.936714px;}
._33{width:43.348885px;}
._2c{width:49.118198px;}
._b{width:50.241884px;}
._16{width:55.674902px;}
._2b{width:60.023464px;}
._26{width:61.789142px;}
._1d{width:64.080053px;}
._19{width:65.481496px;}
._d{width:67.392585px;}
._28{width:68.727330px;}
._20{width:80.697600px;}
._18{width:96.836850px;}
._2e{width:204.716336px;}
._29{width:206.181990px;}
._30{width:271.222001px;}
._2d{width:326.226969px;}
._31{width:340.953011px;}
._2a{width:343.636650px;}
._2f{width:382.927350px;}
._21{width:602.640502px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.865600px;}
.fs5{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y8d{bottom:169.009500px;}
.y1f{bottom:169.011000px;}
.y43{bottom:213.841500px;}
.ye7{bottom:225.714000px;}
.y13a{bottom:233.070000px;}
.y1e{bottom:234.040500px;}
.y42{bottom:234.166500px;}
.yce{bottom:238.939500px;}
.y13b{bottom:239.008500px;}
.y159{bottom:244.575000px;}
.yfe{bottom:246.037500px;}
.y119{bottom:252.687000px;}
.y139{bottom:253.393500px;}
.y1d{bottom:254.364000px;}
.ye6{bottom:259.488000px;}
.y8c{bottom:260.343000px;}
.y158{bottom:264.900000px;}
.y176{bottom:265.374000px;}
.y191{bottom:265.680000px;}
.yfd{bottom:266.362500px;}
.y41{bottom:266.650500px;}
.yb3{bottom:267.150000px;}
.y89{bottom:267.376500px;}
.ycd{bottom:272.713500px;}
.y118{bottom:273.010500px;}
.y138{bottom:273.717000px;}
.y1c{bottom:274.687500px;}
.y87{bottom:278.601000px;}
.y157{bottom:285.223500px;}
.y175{bottom:285.697500px;}
.y190{bottom:286.003500px;}
.yfc{bottom:286.686000px;}
.y40{bottom:286.974000px;}
.y88{bottom:289.671000px;}
.ye5{bottom:290.379000px;}
.y5f{bottom:291.433500px;}
.ycc{bottom:293.037000px;}
.y8b{bottom:293.152500px;}
.y137{bottom:294.042000px;}
.y1b{bottom:295.011000px;}
.y8a{bottom:297.636000px;}
.yb2{bottom:300.607500px;}
.y156{bottom:305.547000px;}
.y18f{bottom:306.327000px;}
.y117{bottom:306.784500px;}
.y5e{bottom:311.757000px;}
.y1a{bottom:315.336000px;}
.y174{bottom:316.905000px;}
.y3f{bottom:317.526000px;}
.yfb{bottom:317.577000px;}
.y155{bottom:325.870500px;}
.y18e{bottom:326.650500px;}
.ycb{bottom:326.811000px;}
.y86{bottom:329.848500px;}
.y5c{bottom:332.080500px;}
.yb1{bottom:333.591000px;}
.ye4{bottom:334.198500px;}
.y85{bottom:334.204500px;}
.y19{bottom:335.659500px;}
.y172{bottom:337.228500px;}
.y136{bottom:337.263000px;}
.y5d{bottom:338.019000px;}
.y116{bottom:340.558500px;}
.y173{bottom:343.167000px;}
.y154{bottom:346.194000px;}
.y18d{bottom:346.975500px;}
.yca{bottom:347.134500px;}
.y5b{bottom:352.404000px;}
.yb0{bottom:353.914500px;}
.ye3{bottom:354.522000px;}
.y18{bottom:355.983000px;}
.y135{bottom:357.586500px;}
.y3e{bottom:360.139500px;}
.y115{bottom:360.882000px;}
.yfa{bottom:361.396500px;}
.y171{bottom:364.588500px;}
.y84{bottom:365.097000px;}
.y153{bottom:366.519000px;}
.y18c{bottom:367.299000px;}
.yc9{bottom:367.458000px;}
.y5a{bottom:372.729000px;}
.ye2{bottom:374.845500px;}
.y134{bottom:377.910000px;}
.y3d{bottom:380.463000px;}
.yf9{bottom:381.720000px;}
.y170{bottom:384.912000px;}
.y18b{bottom:387.622500px;}
.yaf{bottom:391.224000px;}
.y17{bottom:392.511000px;}
.y59{bottom:393.052500px;}
.y114{bottom:394.654500px;}
.ye1{bottom:395.170500px;}
.y3c{bottom:400.786500px;}
.yc8{bottom:401.232000px;}
.yf8{bottom:402.043500px;}
.y18a{bottom:407.946000px;}
.y83{bottom:408.916500px;}
.y152{bottom:409.740000px;}
.y133{bottom:411.684000px;}
.ye0{bottom:415.494000px;}
.y3b{bottom:421.111500px;}
.y16f{bottom:421.440000px;}
.y58{bottom:423.943500px;}
.yae{bottom:424.681500px;}
.y189{bottom:428.269500px;}
.y82{bottom:429.240000px;}
.y151{bottom:430.063500px;}
.y132{bottom:432.007500px;}
.ydf{bottom:435.817500px;}
.yf7{bottom:438.571500px;}
.y3a{bottom:441.435000px;}
.y16{bottom:444.069000px;}
.yc7{bottom:444.453000px;}
.y80{bottom:449.563500px;}
.y150{bottom:450.387000px;}
.y131{bottom:452.331000px;}
.y81{bottom:453.882000px;}
.y113{bottom:458.724000px;}
.y39{bottom:461.758500px;}
.yad{bottom:461.989500px;}
.y15{bottom:462.001500px;}
.yc6{bottom:464.776500px;}
.y188{bottom:464.797500px;}
.y57{bottom:467.763000px;}
.y14f{bottom:470.710500px;}
.y16e{bottom:471.787500px;}
.yde{bottom:476.464500px;}
.y112{bottom:479.047500px;}
.y14{bottom:479.934000px;}
.y105{bottom:481.522500px;}
.y38{bottom:482.082000px;}
.yc5{bottom:485.100000px;}
.y130{bottom:486.105000px;}
.y56{bottom:488.086500px;}
.y14e{bottom:491.034000px;}
.y16d{bottom:492.112500px;}
.y7f{bottom:492.784500px;}
.yac{bottom:492.882000px;}
.ydd{bottom:496.789500px;}
.y13{bottom:497.866500px;}
.y104{bottom:501.846000px;}
.yc4{bottom:505.423500px;}
.y12f{bottom:506.428500px;}
.yf6{bottom:508.062000px;}
.y55{bottom:508.410000px;}
.y14d{bottom:511.359000px;}
.y16c{bottom:512.436000px;}
.y7e{bottom:513.108000px;}
.y111{bottom:514.914000px;}
.y12{bottom:515.800500px;}
.y187{bottom:516.355500px;}
.ydc{bottom:517.113000px;}
.y37{bottom:524.695500px;}
.y12e{bottom:526.752000px;}
.yf5{bottom:528.387000px;}
.y14c{bottom:531.682500px;}
.y103{bottom:532.737000px;}
.y16b{bottom:532.759500px;}
.y7d{bottom:533.431500px;}
.y11{bottom:533.733000px;}
.y110{bottom:535.237500px;}
.yc3{bottom:536.316000px;}
.yab{bottom:536.551500px;}
.y186{bottom:536.680500px;}
.y7c{bottom:537.750000px;}
.y36{bottom:545.019000px;}
.y12d{bottom:547.075500px;}
.ydb{bottom:550.885500px;}
.y54{bottom:551.631000px;}
.y10{bottom:551.665500px;}
.y14b{bottom:552.006000px;}
.yaa{bottom:552.429000px;}
.y16a{bottom:553.083000px;}
.y7a{bottom:553.756500px;}
.y10f{bottom:556.159500px;}
.ya9{bottom:556.876500px;}
.y7b{bottom:559.693500px;}
.yf4{bottom:562.159500px;}
.y35{bottom:565.344000px;}
.yf{bottom:569.598000px;}
.y185{bottom:570.453000px;}
.y53{bottom:571.956000px;}
.y14a{bottom:572.329500px;}
.y79{bottom:574.080000px;}
.y102{bottom:576.556500px;}
.yc2{bottom:580.135500px;}
.y12c{bottom:580.849500px;}
.yda{bottom:584.659500px;}
.y34{bottom:585.667500px;}
.ye{bottom:587.530500px;}
.y184{bottom:590.776500px;}
.y10e{bottom:592.098000px;}
.y52{bottom:592.279500px;}
.ya8{bottom:592.690500px;}
.y78{bottom:594.403500px;}
.y169{bottom:595.095000px;}
.yf3{bottom:595.933500px;}
.y101{bottom:596.880000px;}
.yd{bottom:605.463000px;}
.y33{bottom:605.991000px;}
.yc1{bottom:610.171500px;}
.y10d{bottom:612.421500px;}
.y168{bottom:615.418500px;}
.y149{bottom:615.550500px;}
.yd9{bottom:618.432000px;}
.yc{bottom:623.397000px;}
.y12b{bottom:624.070500px;}
.y183{bottom:624.550500px;}
.y32{bottom:626.314500px;}
.ya7{bottom:628.504500px;}
.yf2{bottom:629.706000px;}
.yc0{bottom:630.496500px;}
.y77{bottom:631.165500px;}
.y10c{bottom:632.745000px;}
.y19e{bottom:634.116000px;}
.y51{bottom:635.500500px;}
.y148{bottom:635.875500px;}
.y100{bottom:641.233500px;}
.yb{bottom:641.329500px;}
.y12a{bottom:644.394000px;}
.y182{bottom:644.874000px;}
.y167{bottom:646.626000px;}
.ya6{bottom:648.829500px;}
.ybf{bottom:650.820000px;}
.yd8{bottom:652.206000px;}
.y19d{bottom:654.439500px;}
.y50{bottom:655.824000px;}
.y147{bottom:656.199000px;}
.ya{bottom:659.262000px;}
.yff{bottom:661.557000px;}
.yf1{bottom:663.480000px;}
.y10b{bottom:663.637500px;}
.y129{bottom:664.717500px;}
.y181{bottom:665.197500px;}
.y165{bottom:666.949500px;}
.y76{bottom:667.927500px;}
.y31{bottom:668.928000px;}
.y166{bottom:672.888000px;}
.y146{bottom:676.522500px;}
.y9{bottom:677.194500px;}
.y30{bottom:683.610000px;}
.y128{bottom:685.041000px;}
.ya5{bottom:685.357500px;}
.yd7{bottom:685.980000px;}
.y19c{bottom:688.213500px;}
.y75{bottom:688.251000px;}
.y4f{bottom:688.647000px;}
.ybe{bottom:689.076000px;}
.y2e{bottom:689.251500px;}
.y145{bottom:696.846000px;}
.yf0{bottom:697.254000px;}
.y164{bottom:698.157000px;}
.y180{bottom:698.971500px;}
.y4e{bottom:699.871500px;}
.y2f{bottom:702.309000px;}
.y8{bottom:704.467500px;}
.y127{bottom:705.366000px;}
.y10a{bottom:707.455500px;}
.y19b{bottom:708.537000px;}
.y2d{bottom:709.576500px;}
.y71{bottom:710.095500px;}
.y73{bottom:714.414000px;}
.y72{bottom:716.034000px;}
.y144{bottom:717.169500px;}
.y163{bottom:718.482000px;}
.yd6{bottom:719.752500px;}
.y74{bottom:722.556000px;}
.ybd{bottom:722.850000px;}
.y126{bottom:725.689500px;}
.y109{bottom:727.780500px;}
.yef{bottom:728.145000px;}
.y2c{bottom:729.900000px;}
.y70{bottom:730.420500px;}
.y143{bottom:737.494500px;}
.y4d{bottom:740.056500px;}
.y17f{bottom:742.192500px;}
.y19a{bottom:742.309500px;}
.y4c{bottom:745.113000px;}
.y125{bottom:746.013000px;}
.y108{bottom:748.104000px;}
.y162{bottom:749.689500px;}
.y2b{bottom:750.223500px;}
.yd5{bottom:750.645000px;}
.y6e{bottom:750.744000px;}
.ya4{bottom:754.066500px;}
.ybc{bottom:756.622500px;}
.y6f{bottom:756.682500px;}
.y142{bottom:757.818000px;}
.y17e{bottom:762.516000px;}
.y199{bottom:762.634500px;}
.y7{bottom:764.878500px;}
.y124{bottom:766.336500px;}
.y161{bottom:770.013000px;}
.y2a{bottom:770.547000px;}
.yee{bottom:771.964500px;}
.ybb{bottom:776.947500px;}
.y4b{bottom:778.096500px;}
.y141{bottom:778.141500px;}
.y6d{bottom:783.300000px;}
.y123{bottom:786.660000px;}
.y4a{bottom:789.321000px;}
.yed{bottom:792.288000px;}
.y107{bottom:792.457500px;}
.yd4{bottom:794.463000px;}
.y6c{bottom:794.524500px;}
.y17d{bottom:796.290000px;}
.y198{bottom:796.407000px;}
.y140{bottom:798.465000px;}
.y9d{bottom:798.819000px;}
.y6b{bottom:798.841500px;}
.y29{bottom:799.504500px;}
.y160{bottom:800.904000px;}
.ya3{bottom:801.649500px;}
.ya2{bottom:801.988500px;}
.y9c{bottom:803.302500px;}
.y9b{bottom:807.786000px;}
.yba{bottom:810.720000px;}
.y28{bottom:810.729000px;}
.y6a{bottom:812.064000px;}
.yec{bottom:812.611500px;}
.y106{bottom:812.781000px;}
.yd3{bottom:814.786500px;}
.y17c{bottom:816.613500px;}
.y197{bottom:816.730500px;}
.y97{bottom:817.144500px;}
.y13f{bottom:818.788500px;}
.y6{bottom:822.288000px;}
.ya1{bottom:828.157500px;}
.y122{bottom:829.881000px;}
.y49{bottom:832.720500px;}
.yeb{bottom:832.935000px;}
.y9a{bottom:834.684000px;}
.ya0{bottom:835.833000px;}
.y99{bottom:839.167500px;}
.y69{bottom:839.334000px;}
.y5{bottom:843.210000px;}
.y15f{bottom:843.514500px;}
.y98{bottom:843.651000px;}
.y9f{bottom:848.047500px;}
.yd2{bottom:848.560500px;}
.yb9{bottom:848.976000px;}
.y121{bottom:850.206000px;}
.y27{bottom:850.228500px;}
.y17b{bottom:850.386000px;}
.y196{bottom:850.504500px;}
.y48{bottom:853.044000px;}
.yea{bottom:853.258500px;}
.y9e{bottom:859.146000px;}
.y68{bottom:859.657500px;}
.y13e{bottom:862.009500px;}
.y15e{bottom:863.838000px;}
.y4{bottom:864.130500px;}
.y120{bottom:870.529500px;}
.y17a{bottom:870.711000px;}
.ye9{bottom:873.583500px;}
.y26{bottom:875.568000px;}
.yb8{bottom:879.868500px;}
.y96{bottom:881.857500px;}
.yd1{bottom:882.334500px;}
.y195{bottom:884.278500px;}
.y3{bottom:885.052500px;}
.y25{bottom:886.792500px;}
.y47{bottom:889.572000px;}
.y11f{bottom:890.853000px;}
.y15d{bottom:895.045500px;}
.y95{bottom:902.181000px;}
.y13d{bottom:902.658000px;}
.y67{bottom:902.878500px;}
.y179{bottom:904.483500px;}
.y194{bottom:904.602000px;}
.ye8{bottom:907.356000px;}
.y11e{bottom:911.176500px;}
.y15c{bottom:915.369000px;}
.yd0{bottom:918.862500px;}
.y94{bottom:922.506000px;}
.y66{bottom:923.202000px;}
.yb7{bottom:923.688000px;}
.y24{bottom:925.414500px;}
.y2{bottom:930.519000px;}
.y11d{bottom:931.500000px;}
.y193{bottom:938.374500px;}
.y13c{bottom:939.186000px;}
.y46{bottom:941.130000px;}
.yb6{bottom:944.011500px;}
.y23{bottom:945.739500px;}
.y15b{bottom:946.576500px;}
.y178{bottom:947.704500px;}
.y11c{bottom:951.825000px;}
.y65{bottom:953.407500px;}
.y93{bottom:956.313000px;}
.y192{bottom:958.698000px;}
.y90{bottom:963.346500px;}
.y1{bottom:963.396000px;}
.y64{bottom:964.633500px;}
.y22{bottom:966.063000px;}
.y15a{bottom:966.900000px;}
.y177{bottom:968.029500px;}
.y11b{bottom:972.148500px;}
.y8e{bottom:974.571000px;}
.y45{bottom:974.902500px;}
.yb5{bottom:977.784000px;}
.y8f{bottom:985.642500px;}
.ycf{bottom:988.353000px;}
.y92{bottom:989.124000px;}
.y11a{bottom:992.472000px;}
.y91{bottom:993.606000px;}
.y44{bottom:995.227500px;}
.yb4{bottom:998.109000px;}
.y63{bottom:1004.772000px;}
.y21{bottom:1008.676500px;}
.y62{bottom:1022.254500px;}
.y60{bottom:1027.897500px;}
.y20{bottom:1029.000000px;}
.y61{bottom:1032.216000px;}
.h15{height:2.391024px;}
.ha{height:9.411450px;}
.h1f{height:33.665702px;}
.h10{height:35.865450px;}
.h4{height:44.831700px;}
.h26{height:45.425492px;}
.h1b{height:46.865494px;}
.h6{height:49.090950px;}
.h3{height:51.216077px;}
.h19{height:52.233024px;}
.hf{height:53.798400px;}
.h25{height:57.413702px;}
.h1c{height:57.419702px;}
.h18{height:59.613450px;}
.h1a{height:59.619450px;}
.hd{height:63.393450px;}
.h5{height:64.557900px;}
.h13{height:66.358950px;}
.h17{height:66.364950px;}
.h1d{height:66.514950px;}
.he{height:69.316950px;}
.h11{height:70.167024px;}
.h2{height:72.511265px;}
.h1{height:77.469300px;}
.hb{height:79.985702px;}
.h12{height:92.739024px;}
.h7{height:93.370950px;}
.hc{height:93.376950px;}
.h8{height:93.988950px;}
.h14{height:93.994950px;}
.h22{height:95.643024px;}
.h23{height:107.067024px;}
.h24{height:111.070950px;}
.h1e{height:126.351024px;}
.h20{height:126.357024px;}
.h9{height:132.993024px;}
.h16{height:138.268950px;}
.h21{height:162.219024px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x25{left:136.698000px;}
.x16{left:137.701500px;}
.xa6{left:139.042500px;}
.x64{left:146.791500px;}
.xa7{left:151.341000px;}
.x65{left:153.283500px;}
.x26{left:157.701000px;}
.x5f{left:163.105500px;}
.xe9{left:169.512000px;}
.xf8{left:171.337500px;}
.xd1{left:176.695500px;}
.xd{left:178.611000px;}
.x86{left:182.683500px;}
.x66{left:185.020500px;}
.x1{left:186.220500px;}
.x87{left:187.228500px;}
.x44{left:194.809500px;}
.xc{left:201.027000px;}
.xc8{left:214.107000px;}
.xb5{left:215.179500px;}
.x67{left:221.601000px;}
.xf1{left:225.225000px;}
.x54{left:227.160000px;}
.x6{left:228.879000px;}
.xf2{left:234.652500px;}
.x5{left:238.870500px;}
.x55{left:240.964500px;}
.xc5{left:246.880500px;}
.x32{left:249.816000px;}
.x68{left:253.338000px;}
.x56{left:257.929500px;}
.xe{left:259.071000px;}
.x1f{left:260.625000px;}
.x45{left:263.025000px;}
.x57{left:266.962500px;}
.x46{left:272.797500px;}
.x20{left:274.597500px;}
.x58{left:277.999500px;}
.x47{left:279.034500px;}
.x5c{left:280.791000px;}
.x9c{left:282.258000px;}
.x2{left:283.374000px;}
.x3{left:285.334500px;}
.x18{left:288.168000px;}
.x14{left:289.549500px;}
.x21{left:291.616500px;}
.x5d{left:294.358500px;}
.x69{left:295.531500px;}
.x4{left:297.645000px;}
.xc9{left:299.188500px;}
.x9d{left:300.472500px;}
.x15{left:302.331000px;}
.x6a{left:303.423000px;}
.xf{left:305.845500px;}
.x2f{left:308.127000px;}
.x7d{left:311.902500px;}
.xbc{left:315.757500px;}
.xaa{left:318.879000px;}
.x88{left:319.959000px;}
.x7e{left:323.152500px;}
.x48{left:324.675000px;}
.xbd{left:329.041500px;}
.x59{left:331.567500px;}
.xab{left:333.133500px;}
.xb6{left:336.256500px;}
.x4b{left:337.537500px;}
.xbf{left:338.544000px;}
.xd5{left:340.513500px;}
.xac{left:343.048500px;}
.xbe{left:348.630000px;}
.xd2{left:350.203500px;}
.xc0{left:351.421500px;}
.x6b{left:354.192000px;}
.xc2{left:355.884000px;}
.x34{left:357.372000px;}
.x75{left:359.214000px;}
.x1a{left:360.375000px;}
.xb0{left:361.591500px;}
.xb7{left:364.644000px;}
.xde{left:369.532500px;}
.x76{left:372.697500px;}
.x10{left:375.225000px;}
.x27{left:377.287500px;}
.xdb{left:378.547500px;}
.x4c{left:380.158500px;}
.xb8{left:381.663000px;}
.x11{left:382.846500px;}
.xdf{left:384.630000px;}
.x94{left:385.759500px;}
.x22{left:388.794000px;}
.x77{left:391.027500px;}
.xd6{left:392.059500px;}
.xa{left:398.007000px;}
.x89{left:399.751500px;}
.x23{left:401.349000px;}
.x6c{left:403.887000px;}
.xef{left:405.756000px;}
.x24{left:408.621000px;}
.x78{left:411.138000px;}
.x35{left:413.929500px;}
.x7f{left:415.902000px;}
.x28{left:418.863000px;}
.x73{left:419.983500px;}
.xd9{left:421.843500px;}
.xb{left:426.355500px;}
.x12{left:431.815500px;}
.x74{left:434.263500px;}
.x29{left:435.954000px;}
.xb3{left:437.578500px;}
.xb2{left:438.976500px;}
.xaf{left:443.532000px;}
.xc1{left:445.350000px;}
.x95{left:447.129000px;}
.x79{left:448.179000px;}
.xe4{left:450.817500px;}
.x80{left:452.415000px;}
.xe6{left:453.519000px;}
.x17{left:454.909500px;}
.x13{left:457.668000px;}
.x60{left:459.469500px;}
.x8a{left:461.286000px;}
.x6d{left:463.162500px;}
.xda{left:465.432000px;}
.x61{left:467.652000px;}
.xe8{left:470.104500px;}
.x8b{left:474.273000px;}
.xa0{left:475.609500px;}
.x6e{left:477.838500px;}
.x81{left:483.568500px;}
.xcf{left:490.546500px;}
.x8c{left:491.643000px;}
.xb1{left:499.054500px;}
.x2c{left:500.778000px;}
.x6f{left:504.474000px;}
.x9{left:505.627500px;}
.x8d{left:508.333500px;}
.xad{left:511.720500px;}
.x85{left:513.262500px;}
.xc3{left:516.526500px;}
.x82{left:518.416500px;}
.xae{left:519.856500px;}
.x9e{left:522.751500px;}
.x19{left:528.525000px;}
.x1b{left:530.031000px;}
.x97{left:531.031500px;}
.xd3{left:533.161500px;}
.xb4{left:535.899000px;}
.x1c{left:537.304500px;}
.x8e{left:538.627500px;}
.x7{left:542.380500px;}
.x1d{left:545.649000px;}
.xa1{left:548.220000px;}
.x2a{left:549.591000px;}
.x70{left:551.146500px;}
.x8{left:552.501000px;}
.xc4{left:553.651500px;}
.x1e{left:555.564000px;}
.x2b{left:559.018500px;}
.x2d{left:560.259000px;}
.xc6{left:561.586500px;}
.x33{left:564.679500px;}
.xb9{left:566.838000px;}
.xc7{left:569.604000px;}
.x9f{left:570.639000px;}
.x30{left:573.106500px;}
.xca{left:574.855500px;}
.x36{left:576.738000px;}
.x5a{left:578.833500px;}
.x37{left:584.011500px;}
.x96{left:586.605000px;}
.xa2{left:587.982000px;}
.x38{left:592.029000px;}
.x5b{left:594.723000px;}
.x98{left:596.791500px;}
.x2e{left:599.736000px;}
.x39{left:601.944000px;}
.x4d{left:603.816000px;}
.x9a{left:606.061500px;}
.x8f{left:610.081500px;}
.x99{left:613.108500px;}
.xba{left:615.838500px;}
.x71{left:618.030000px;}
.xeb{left:619.900500px;}
.x83{left:623.392500px;}
.xec{left:624.673500px;}
.x7a{left:627.928500px;}
.x31{left:629.401500px;}
.x90{left:631.876500px;}
.xa3{left:635.478000px;}
.x3c{left:637.530000px;}
.xf0{left:643.219500px;}
.x3d{left:645.921000px;}
.x72{left:647.271000px;}
.x84{left:649.728000px;}
.xe0{left:651.045000px;}
.x3e{left:652.413000px;}
.x49{left:654.157500px;}
.x62{left:655.942500px;}
.xa4{left:658.341000px;}
.x3f{left:662.185500px;}
.x4e{left:664.483500px;}
.xed{left:666.084000px;}
.x40{left:668.676000px;}
.xd8{left:672.039000px;}
.xee{left:674.428500px;}
.x41{left:678.498000px;}
.xdc{left:679.576500px;}
.x7b{left:685.909500px;}
.x91{left:688.834500px;}
.xcb{left:690.172500px;}
.xdd{left:694.708500px;}
.x7c{left:695.824500px;}
.x3a{left:701.581500px;}
.xf5{left:705.601500px;}
.xcc{left:708.064500px;}
.x3b{left:711.496500px;}
.xe1{left:713.560500px;}
.x4f{left:714.804000px;}
.x42{left:718.812000px;}
.x50{left:721.294500px;}
.xe5{left:723.277500px;}
.xbb{left:725.817000px;}
.xf6{left:727.806000px;}
.xa8{left:729.678000px;}
.x5e{left:732.130500px;}
.xf7{left:733.465500px;}
.x51{left:734.614500px;}
.x43{left:735.666000px;}
.x92{left:737.916000px;}
.xa9{left:739.500000px;}
.xa5{left:740.875500px;}
.x4a{left:744.690000px;}
.xf3{left:746.494500px;}
.xd4{left:747.933000px;}
.x52{left:752.779500px;}
.x93{left:754.608000px;}
.xcd{left:756.336000px;}
.x9b{left:758.065500px;}
.xd0{left:760.278000px;}
.x53{left:761.814000px;}
.xe7{left:763.512000px;}
.xf4{left:765.742500px;}
.xe2{left:767.289000px;}
.xd7{left:769.507500px;}
.xe3{left:772.162500px;}
.xea{left:775.722000px;}
.x63{left:777.937500px;}
.xce{left:813.835500px;}
@media print{
.v23{vertical-align:-55.792000pt;}
.v1a{vertical-align:-44.304000pt;}
.v4{vertical-align:-31.877333pt;}
.v10{vertical-align:-21.114667pt;}
.vc{vertical-align:-14.549333pt;}
.vd{vertical-align:-9.008000pt;}
.v1e{vertical-align:-7.498667pt;}
.v1f{vertical-align:-1.653333pt;}
.v0{vertical-align:0.000000pt;}
.v16{vertical-align:1.397333pt;}
.v7{vertical-align:5.381333pt;}
.v5{vertical-align:8.362667pt;}
.v14{vertical-align:15.349333pt;}
.vf{vertical-align:17.978667pt;}
.v8{vertical-align:20.058667pt;}
.v18{vertical-align:21.109333pt;}
.v12{vertical-align:22.912000pt;}
.ve{vertical-align:24.469333pt;}
.v24{vertical-align:30.480000pt;}
.va{vertical-align:34.693333pt;}
.v20{vertical-align:36.320000pt;}
.v1{vertical-align:39.360000pt;}
.v9{vertical-align:41.173333pt;}
.v1c{vertical-align:44.304000pt;}
.v26{vertical-align:55.093333pt;}
.v19{vertical-align:58.272000pt;}
.v11{vertical-align:60.245333pt;}
.v6{vertical-align:61.173333pt;}
.v15{vertical-align:62.362667pt;}
.vb{vertical-align:66.485333pt;}
.v2{vertical-align:76.181333pt;}
.v17{vertical-align:79.269333pt;}
.v13{vertical-align:80.309333pt;}
.v21{vertical-align:82.890667pt;}
.v25{vertical-align:93.045333pt;}
.v1b{vertical-align:110.186667pt;}
.v3{vertical-align:116.090667pt;}
.v22{vertical-align:118.549333pt;}
.v1d{vertical-align:142.069333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls55{letter-spacing:0.000749pt;}
.ls69{letter-spacing:0.000935pt;}
.ls6a{letter-spacing:0.000942pt;}
.ls3a{letter-spacing:0.001910pt;}
.ls8b{letter-spacing:0.002389pt;}
.ls5f{letter-spacing:0.002400pt;}
.ls40{letter-spacing:0.003156pt;}
.ls71{letter-spacing:0.003521pt;}
.ls54{letter-spacing:0.006990pt;}
.ls1c{letter-spacing:0.009104pt;}
.ls84{letter-spacing:0.019276pt;}
.ls21{letter-spacing:1.147694pt;}
.ls45{letter-spacing:1.570910pt;}
.ls10{letter-spacing:1.617432pt;}
.ls24{letter-spacing:1.629092pt;}
.ls30{letter-spacing:2.036365pt;}
.lsc{letter-spacing:2.094547pt;}
.ls35{letter-spacing:2.210911pt;}
.ls60{letter-spacing:2.465418pt;}
.ls7e{letter-spacing:2.660654pt;}
.ls77{letter-spacing:3.319489pt;}
.ls87{letter-spacing:3.801593pt;}
.ls2e{letter-spacing:4.186282pt;}
.ls20{letter-spacing:4.505763pt;}
.ls4f{letter-spacing:4.765077pt;}
.ls3f{letter-spacing:4.770411pt;}
.ls5e{letter-spacing:5.105323pt;}
.ls88{letter-spacing:6.341823pt;}
.ls38{letter-spacing:6.375121pt;}
.lse{letter-spacing:7.154827pt;}
.ls15{letter-spacing:7.161919pt;}
.ls23{letter-spacing:7.185653pt;}
.ls62{letter-spacing:7.529190pt;}
.ls73{letter-spacing:8.087279pt;}
.lsb{letter-spacing:9.658190pt;}
.ls7b{letter-spacing:9.698482pt;}
.ls1a{letter-spacing:9.716372pt;}
.ls5a{letter-spacing:10.240009pt;}
.ls85{letter-spacing:11.054555pt;}
.ls56{letter-spacing:11.115104pt;}
.ls48{letter-spacing:11.329833pt;}
.ls59{letter-spacing:11.869101pt;}
.ls41{letter-spacing:12.354591pt;}
.ls4d{letter-spacing:12.720438pt;}
.ls6{letter-spacing:12.916374pt;}
.ls74{letter-spacing:12.926188pt;}
.ls37{letter-spacing:12.974556pt;}
.ls32{letter-spacing:14.021830pt;}
.ls2f{letter-spacing:14.545467pt;}
.ls68{letter-spacing:14.801323pt;}
.ls14{letter-spacing:14.806656pt;}
.ls7a{letter-spacing:15.012695pt;}
.ls12{letter-spacing:15.271816pt;}
.ls79{letter-spacing:15.671489pt;}
.ls78{letter-spacing:16.074792pt;}
.ls7d{letter-spacing:16.077149pt;}
.ls46{letter-spacing:16.116377pt;}
.ls67{letter-spacing:16.146139pt;}
.ls16{letter-spacing:16.162482pt;}
.ls11{letter-spacing:16.162827pt;}
.ls4{letter-spacing:16.174559pt;}
.ls70{letter-spacing:16.178813pt;}
.ls47{letter-spacing:16.465468pt;}
.ls63{letter-spacing:16.857919pt;}
.ls8{letter-spacing:17.803651pt;}
.ls50{letter-spacing:18.152742pt;}
.lsf{letter-spacing:18.161403pt;}
.ls26{letter-spacing:18.166736pt;}
.ls22{letter-spacing:18.269106pt;}
.ls5b{letter-spacing:18.443652pt;}
.ls33{letter-spacing:18.501834pt;}
.ls83{letter-spacing:18.813258pt;}
.ls3c{letter-spacing:18.967289pt;}
.ls3b{letter-spacing:19.025470pt;}
.ls29{letter-spacing:19.200016pt;}
.ls72{letter-spacing:19.258198pt;}
.ls5{letter-spacing:19.374562pt;}
.ls2a{letter-spacing:19.432743pt;}
.ls66{letter-spacing:19.549107pt;}
.ls5d{letter-spacing:19.723653pt;}
.ls27{letter-spacing:19.781835pt;}
.ls36{letter-spacing:19.951684pt;}
.ls6f{letter-spacing:20.305471pt;}
.ls3d{letter-spacing:20.421835pt;}
.ls34{letter-spacing:20.596381pt;}
.ls13{letter-spacing:20.601678pt;}
.ls6e{letter-spacing:20.887290pt;}
.ls81{letter-spacing:20.945472pt;}
.ls75{letter-spacing:21.003654pt;}
.ls3e{letter-spacing:21.120018pt;}
.ls65{letter-spacing:21.270656pt;}
.ls28{letter-spacing:21.527291pt;}
.ls39{letter-spacing:21.670986pt;}
.ls53{letter-spacing:22.045258pt;}
.ls1b{letter-spacing:22.400019pt;}
.ls58{letter-spacing:22.458201pt;}
.ls3{letter-spacing:22.516382pt;}
.ls9{letter-spacing:22.521489pt;}
.ls1{letter-spacing:22.688161pt;}
.lsa{letter-spacing:23.195104pt;}
.ls1f{letter-spacing:23.200438pt;}
.ls19{letter-spacing:23.345653pt;}
.ls8d{letter-spacing:24.552748pt;}
.ls51{letter-spacing:25.076385pt;}
.ls86{letter-spacing:25.716385pt;}
.ls57{letter-spacing:25.774567pt;}
.ls8c{letter-spacing:25.949113pt;}
.ls5c{letter-spacing:26.007294pt;}
.ls17{letter-spacing:26.938204pt;}
.ls0{letter-spacing:27.728271pt;}
.ls18{letter-spacing:29.090933pt;}
.ls2b{letter-spacing:29.323661pt;}
.ls2d{letter-spacing:29.905479pt;}
.ls43{letter-spacing:29.998177pt;}
.ls42{letter-spacing:30.720026pt;}
.ls52{letter-spacing:31.476390pt;}
.ls2c{letter-spacing:31.767299pt;}
.ls31{letter-spacing:32.174572pt;}
.lsd{letter-spacing:32.290936pt;}
.ls61{letter-spacing:32.291301pt;}
.ls6c{letter-spacing:32.319477pt;}
.ls49{letter-spacing:32.327816pt;}
.ls25{letter-spacing:32.349118pt;}
.ls1d{letter-spacing:33.920028pt;}
.ls76{letter-spacing:34.966706pt;}
.ls6b{letter-spacing:36.121593pt;}
.ls4a{letter-spacing:38.692811pt;}
.ls1e{letter-spacing:38.701472pt;}
.ls44{letter-spacing:45.045771pt;}
.ls4b{letter-spacing:48.391733pt;}
.ls4c{letter-spacing:52.468811pt;}
.ls7c{letter-spacing:58.181867pt;}
.ls8a{letter-spacing:63.767326pt;}
.ls7f{letter-spacing:64.516654pt;}
.ls7{letter-spacing:74.356426pt;}
.ls80{letter-spacing:101.585539pt;}
.ls89{letter-spacing:182.691061pt;}
.ls82{letter-spacing:366.032823pt;}
.ls64{letter-spacing:728.495153pt;}
.ls6d{letter-spacing:785.280654pt;}
.ls4e{letter-spacing:796.626118pt;}
.ws22{word-spacing:-132.538292pt;}
.ws5d{word-spacing:-90.356439pt;}
.ws46{word-spacing:-58.181867pt;}
.ws94{word-spacing:-48.512040pt;}
.ws58{word-spacing:-45.486583pt;}
.ws84{word-spacing:-45.163900pt;}
.ws2c{word-spacing:-42.066082pt;}
.ws4d{word-spacing:-42.065490pt;}
.ws20{word-spacing:-42.007308pt;}
.ws60{word-spacing:-39.330942pt;}
.ws47{word-spacing:-38.074214pt;}
.ws2d{word-spacing:-37.899668pt;}
.ws5e{word-spacing:-34.664756pt;}
.wsb{word-spacing:-34.611401pt;}
.ws3c{word-spacing:-33.454573pt;}
.ws6f{word-spacing:-33.105482pt;}
.ws6e{word-spacing:-32.628391pt;}
.ws5a{word-spacing:-32.337481pt;}
.ws2{word-spacing:-31.217418pt;}
.ws8{word-spacing:-30.498839pt;}
.ws2e{word-spacing:-29.521250pt;}
.ws56{word-spacing:-29.090933pt;}
.ws21{word-spacing:-28.183296pt;}
.ws68{word-spacing:-25.890931pt;}
.ws9{word-spacing:-25.738045pt;}
.ws69{word-spacing:-24.052384pt;}
.ws85{word-spacing:-21.725109pt;}
.ws83{word-spacing:-20.212380pt;}
.ws86{word-spacing:-18.525106pt;}
.wsde{word-spacing:-17.512742pt;}
.ws82{word-spacing:-17.070560pt;}
.ws23{word-spacing:-16.162923pt;}
.wsca{word-spacing:-15.941831pt;}
.ws95{word-spacing:-15.883650pt;}
.wsd7{word-spacing:-15.825468pt;}
.ws74{word-spacing:-15.650922pt;}
.ws7b{word-spacing:-15.383286pt;}
.wse4{word-spacing:-15.301831pt;}
.wsdf{word-spacing:-15.243649pt;}
.ws75{word-spacing:-15.185467pt;}
.wse6{word-spacing:-14.778194pt;}
.wse0{word-spacing:-14.603649pt;}
.ws15{word-spacing:-14.545467pt;}
.ws42{word-spacing:-14.346200pt;}
.ws6b{word-spacing:-14.336012pt;}
.wsc0{word-spacing:-14.080012pt;}
.ws9b{word-spacing:-13.905466pt;}
.ws91{word-spacing:-13.789102pt;}
.wscc{word-spacing:-13.730921pt;}
.wsbd{word-spacing:-13.556375pt;}
.ws96{word-spacing:-13.498193pt;}
.wsd5{word-spacing:-12.974556pt;}
.ws72{word-spacing:-12.823283pt;}
.ws98{word-spacing:-12.800011pt;}
.wsbe{word-spacing:-12.683647pt;}
.wsc4{word-spacing:-12.567283pt;}
.wsaf{word-spacing:-12.392738pt;}
.ws5b{word-spacing:-11.955200pt;}
.ws97{word-spacing:-11.752737pt;}
.ws78{word-spacing:-11.578191pt;}
.ws79{word-spacing:-11.520010pt;}
.wsd{word-spacing:-11.476915pt;}
.wsd8{word-spacing:-11.461828pt;}
.wse{word-spacing:-11.423781pt;}
.wsd9{word-spacing:-11.403646pt;}
.ws43{word-spacing:-11.287282pt;}
.wsb4{word-spacing:-11.170918pt;}
.wsc5{word-spacing:-11.112737pt;}
.wsae{word-spacing:-11.054555pt;}
.wsb6{word-spacing:-10.938191pt;}
.ws6d{word-spacing:-10.880009pt;}
.ws1e{word-spacing:-10.821827pt;}
.ws7d{word-spacing:-10.705463pt;}
.ws77{word-spacing:-10.647282pt;}
.wsa3{word-spacing:-10.589100pt;}
.wsa4{word-spacing:-10.530918pt;}
.wsb8{word-spacing:-10.472736pt;}
.ws1{word-spacing:-10.431311pt;}
.ws87{word-spacing:-10.298190pt;}
.ws89{word-spacing:-10.240009pt;}
.wsac{word-spacing:-10.181827pt;}
.wsa1{word-spacing:-10.123645pt;}
.ws3b{word-spacing:-10.065463pt;}
.ws38{word-spacing:-10.007281pt;}
.ws55{word-spacing:-9.949099pt;}
.ws28{word-spacing:-9.890917pt;}
.ws45{word-spacing:-9.832735pt;}
.ws44{word-spacing:-9.774554pt;}
.ws18{word-spacing:-9.716372pt;}
.ws65{word-spacing:-9.658190pt;}
.ws31{word-spacing:-9.600008pt;}
.ws2a{word-spacing:-9.541826pt;}
.ws36{word-spacing:-9.483644pt;}
.ws1f{word-spacing:-9.425462pt;}
.ws35{word-spacing:-9.367281pt;}
.ws4f{word-spacing:-9.309099pt;}
.ws9e{word-spacing:-9.250917pt;}
.wsa5{word-spacing:-9.192735pt;}
.ws6{word-spacing:-9.085891pt;}
.ws12{word-spacing:-8.979623pt;}
.wsdd{word-spacing:-8.960007pt;}
.wscd{word-spacing:-8.901826pt;}
.ws13{word-spacing:-8.873356pt;}
.ws34{word-spacing:-8.843644pt;}
.wsc6{word-spacing:-8.785462pt;}
.ws5{word-spacing:-8.767088pt;}
.ws4{word-spacing:-8.713954pt;}
.ws2b{word-spacing:-8.669098pt;}
.ws10{word-spacing:-8.660820pt;}
.wsdc{word-spacing:-8.610916pt;}
.ws64{word-spacing:-8.494553pt;}
.ws66{word-spacing:-8.436371pt;}
.wsb9{word-spacing:-8.378189pt;}
.ws40{word-spacing:-8.320007pt;}
.ws3e{word-spacing:-8.261825pt;}
.ws6a{word-spacing:-8.203643pt;}
.ws16{word-spacing:-8.145461pt;}
.ws61{word-spacing:-8.087279pt;}
.wsba{word-spacing:-7.970916pt;}
.wsa9{word-spacing:-7.912734pt;}
.ws27{word-spacing:-7.738188pt;}
.wsb7{word-spacing:-7.680006pt;}
.wsd2{word-spacing:-7.505461pt;}
.ws1c{word-spacing:-7.447279pt;}
.wsa6{word-spacing:-7.272733pt;}
.ws11{word-spacing:-6.907403pt;}
.wse1{word-spacing:-6.865460pt;}
.wsce{word-spacing:-6.807278pt;}
.ws70{word-spacing:-6.423278pt;}
.ws3a{word-spacing:-6.109096pt;}
.wsf{word-spacing:-6.004127pt;}
.wsaa{word-spacing:-5.992732pt;}
.wsc1{word-spacing:-5.876369pt;}
.ws1b{word-spacing:-5.760005pt;}
.ws3d{word-spacing:-5.701823pt;}
.wse2{word-spacing:-5.294550pt;}
.ws50{word-spacing:-5.236368pt;}
.ws9f{word-spacing:-5.061822pt;}
.wsd3{word-spacing:-4.829095pt;}
.ws51{word-spacing:-4.596367pt;}
.ws7{word-spacing:-4.569513pt;}
.ws8d{word-spacing:-4.363640pt;}
.wsd4{word-spacing:-4.247276pt;}
.wscf{word-spacing:-4.072731pt;}
.wsd1{word-spacing:-4.014549pt;}
.wsda{word-spacing:-3.898185pt;}
.wsb5{word-spacing:-3.723639pt;}
.ws7e{word-spacing:-3.549094pt;}
.ws17{word-spacing:-3.490912pt;}
.ws7a{word-spacing:-3.432730pt;}
.wsdb{word-spacing:-3.374548pt;}
.ws7c{word-spacing:-3.258185pt;}
.ws59{word-spacing:-3.246548pt;}
.ws7f{word-spacing:-3.141821pt;}
.ws3{word-spacing:-3.134898pt;}
.ws53{word-spacing:-2.909093pt;}
.ws9c{word-spacing:-2.792730pt;}
.ws9d{word-spacing:-2.734548pt;}
.ws8e{word-spacing:-2.560002pt;}
.wsad{word-spacing:-2.443638pt;}
.ws5f{word-spacing:-2.432002pt;}
.ws41{word-spacing:-2.385457pt;}
.wsc7{word-spacing:-2.327275pt;}
.wsab{word-spacing:-2.094547pt;}
.ws92{word-spacing:-2.036365pt;}
.ws39{word-spacing:-1.978183pt;}
.wsc2{word-spacing:-1.745456pt;}
.wsa7{word-spacing:-0.814546pt;}
.wsb3{word-spacing:-0.698182pt;}
.ws5c{word-spacing:-0.640001pt;}
.ws32{word-spacing:-0.058182pt;}
.ws4c{word-spacing:-0.046545pt;}
.ws73{word-spacing:-0.042507pt;}
.ws1d{word-spacing:0.000000pt;}
.ws25{word-spacing:0.011636pt;}
.ws54{word-spacing:0.302546pt;}
.ws67{word-spacing:1.280001pt;}
.wsbb{word-spacing:2.327275pt;}
.ws62{word-spacing:2.338911pt;}
.ws2f{word-spacing:3.037093pt;}
.wsa8{word-spacing:3.840003pt;}
.ws6c{word-spacing:4.782549pt;}
.wsa{word-spacing:7.449368pt;}
.ws52{word-spacing:8.855280pt;}
.ws80{word-spacing:11.298919pt;}
.wsc9{word-spacing:14.720012pt;}
.wscb{word-spacing:15.127285pt;}
.ws88{word-spacing:16.116377pt;}
.ws49{word-spacing:16.128013pt;}
.ws24{word-spacing:16.186195pt;}
.wsd6{word-spacing:16.989105pt;}
.ws99{word-spacing:17.978197pt;}
.wsb0{word-spacing:18.327288pt;}
.wsc{word-spacing:18.703121pt;}
.ws81{word-spacing:18.757373pt;}
.ws8f{word-spacing:19.316380pt;}
.ws8b{word-spacing:19.374562pt;}
.wsbc{word-spacing:20.421835pt;}
.ws29{word-spacing:20.538199pt;}
.wse3{word-spacing:20.654563pt;}
.wse5{word-spacing:20.712745pt;}
.ws19{word-spacing:20.770926pt;}
.wsb1{word-spacing:21.178199pt;}
.wsc3{word-spacing:21.236381pt;}
.ws63{word-spacing:21.485392pt;}
.ws3f{word-spacing:21.992746pt;}
.ws76{word-spacing:22.005342pt;}
.wsb2{word-spacing:22.050927pt;}
.wsc8{word-spacing:22.400019pt;}
.ws57{word-spacing:23.563656pt;}
.wsbf{word-spacing:23.970929pt;}
.ws9a{word-spacing:24.727293pt;}
.ws37{word-spacing:24.785475pt;}
.ws30{word-spacing:25.192748pt;}
.ws1a{word-spacing:25.309112pt;}
.wsa0{word-spacing:25.483658pt;}
.ws33{word-spacing:25.658203pt;}
.ws4b{word-spacing:25.849457pt;}
.ws0{word-spacing:27.636455pt;}
.ws71{word-spacing:27.717342pt;}
.wsd0{word-spacing:29.556388pt;}
.ws90{word-spacing:30.487298pt;}
.ws93{word-spacing:30.952753pt;}
.ws8a{word-spacing:35.865600pt;}
.ws14{word-spacing:43.038600pt;}
.ws8c{word-spacing:54.865500pt;}
.wsa2{word-spacing:61.032778pt;}
.ws48{word-spacing:88.180437pt;}
.ws4e{word-spacing:293.213335pt;}
.ws4a{word-spacing:500.515326pt;}
.ws26{word-spacing:683.380933pt;}
._f{margin-left:-84.072797pt;}
._10{margin-left:-32.000027pt;}
._1e{margin-left:-28.928823pt;}
._13{margin-left:-17.709518pt;}
._22{margin-left:-16.767850pt;}
._1f{margin-left:-15.818679pt;}
._1{margin-left:-7.161606pt;}
._24{margin-left:-5.521944pt;}
._3{margin-left:-4.407178pt;}
._17{margin-left:-3.384916pt;}
._2{margin-left:-2.479018pt;}
._4{margin-left:-1.027841pt;}
._5{width:1.721549pt;}
._11{width:2.991182pt;}
._23{width:4.247276pt;}
._1b{width:6.574551pt;}
._25{width:15.127285pt;}
._9{width:16.408391pt;}
._e{width:19.141834pt;}
._7{width:20.669074pt;}
._a{width:21.934564pt;}
._6{width:23.254359pt;}
._8{width:24.760382pt;}
._1a{width:25.731326pt;}
._15{width:26.625795pt;}
._14{width:27.691083pt;}
._27{width:29.090933pt;}
._c{width:30.372098pt;}
._34{width:31.434155pt;}
._12{width:32.407300pt;}
._32{width:33.338210pt;}
._1c{width:35.832111pt;}
._0{width:37.277079pt;}
._33{width:38.532342pt;}
._2c{width:43.660621pt;}
._b{width:44.659453pt;}
._16{width:49.488802pt;}
._2b{width:53.354190pt;}
._26{width:54.923682pt;}
._1d{width:56.960047pt;}
._19{width:58.205774pt;}
._d{width:59.904520pt;}
._28{width:61.090960pt;}
._20{width:71.731200pt;}
._18{width:86.077200pt;}
._2e{width:181.970076pt;}
._29{width:183.272880pt;}
._30{width:241.086223pt;}
._2d{width:289.979528pt;}
._31{width:303.069343pt;}
._2a{width:305.454800pt;}
._2f{width:340.379867pt;}
._21{width:535.680446pt;}
.fs6{font-size:31.880533pt;}
.fs5{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y8d{bottom:150.230667pt;}
.y1f{bottom:150.232000pt;}
.y43{bottom:190.081333pt;}
.ye7{bottom:200.634667pt;}
.y13a{bottom:207.173333pt;}
.y1e{bottom:208.036000pt;}
.y42{bottom:208.148000pt;}
.yce{bottom:212.390667pt;}
.y13b{bottom:212.452000pt;}
.y159{bottom:217.400000pt;}
.yfe{bottom:218.700000pt;}
.y119{bottom:224.610667pt;}
.y139{bottom:225.238667pt;}
.y1d{bottom:226.101333pt;}
.ye6{bottom:230.656000pt;}
.y8c{bottom:231.416000pt;}
.y158{bottom:235.466667pt;}
.y176{bottom:235.888000pt;}
.y191{bottom:236.160000pt;}
.yfd{bottom:236.766667pt;}
.y41{bottom:237.022667pt;}
.yb3{bottom:237.466667pt;}
.y89{bottom:237.668000pt;}
.ycd{bottom:242.412000pt;}
.y118{bottom:242.676000pt;}
.y138{bottom:243.304000pt;}
.y1c{bottom:244.166667pt;}
.y87{bottom:247.645333pt;}
.y157{bottom:253.532000pt;}
.y175{bottom:253.953333pt;}
.y190{bottom:254.225333pt;}
.yfc{bottom:254.832000pt;}
.y40{bottom:255.088000pt;}
.y88{bottom:257.485333pt;}
.ye5{bottom:258.114667pt;}
.y5f{bottom:259.052000pt;}
.ycc{bottom:260.477333pt;}
.y8b{bottom:260.580000pt;}
.y137{bottom:261.370667pt;}
.y1b{bottom:262.232000pt;}
.y8a{bottom:264.565333pt;}
.yb2{bottom:267.206667pt;}
.y156{bottom:271.597333pt;}
.y18f{bottom:272.290667pt;}
.y117{bottom:272.697333pt;}
.y5e{bottom:277.117333pt;}
.y1a{bottom:280.298667pt;}
.y174{bottom:281.693333pt;}
.y3f{bottom:282.245333pt;}
.yfb{bottom:282.290667pt;}
.y155{bottom:289.662667pt;}
.y18e{bottom:290.356000pt;}
.ycb{bottom:290.498667pt;}
.y86{bottom:293.198667pt;}
.y5c{bottom:295.182667pt;}
.yb1{bottom:296.525333pt;}
.ye4{bottom:297.065333pt;}
.y85{bottom:297.070667pt;}
.y19{bottom:298.364000pt;}
.y172{bottom:299.758667pt;}
.y136{bottom:299.789333pt;}
.y5d{bottom:300.461333pt;}
.y116{bottom:302.718667pt;}
.y173{bottom:305.037333pt;}
.y154{bottom:307.728000pt;}
.y18d{bottom:308.422667pt;}
.yca{bottom:308.564000pt;}
.y5b{bottom:313.248000pt;}
.yb0{bottom:314.590667pt;}
.ye3{bottom:315.130667pt;}
.y18{bottom:316.429333pt;}
.y135{bottom:317.854667pt;}
.y3e{bottom:320.124000pt;}
.y115{bottom:320.784000pt;}
.yfa{bottom:321.241333pt;}
.y171{bottom:324.078667pt;}
.y84{bottom:324.530667pt;}
.y153{bottom:325.794667pt;}
.y18c{bottom:326.488000pt;}
.yc9{bottom:326.629333pt;}
.y5a{bottom:331.314667pt;}
.ye2{bottom:333.196000pt;}
.y134{bottom:335.920000pt;}
.y3d{bottom:338.189333pt;}
.yf9{bottom:339.306667pt;}
.y170{bottom:342.144000pt;}
.y18b{bottom:344.553333pt;}
.yaf{bottom:347.754667pt;}
.y17{bottom:348.898667pt;}
.y59{bottom:349.380000pt;}
.y114{bottom:350.804000pt;}
.ye1{bottom:351.262667pt;}
.y3c{bottom:356.254667pt;}
.yc8{bottom:356.650667pt;}
.yf8{bottom:357.372000pt;}
.y18a{bottom:362.618667pt;}
.y83{bottom:363.481333pt;}
.y152{bottom:364.213333pt;}
.y133{bottom:365.941333pt;}
.ye0{bottom:369.328000pt;}
.y3b{bottom:374.321333pt;}
.y16f{bottom:374.613333pt;}
.y58{bottom:376.838667pt;}
.yae{bottom:377.494667pt;}
.y189{bottom:380.684000pt;}
.y82{bottom:381.546667pt;}
.y151{bottom:382.278667pt;}
.y132{bottom:384.006667pt;}
.ydf{bottom:387.393333pt;}
.yf7{bottom:389.841333pt;}
.y3a{bottom:392.386667pt;}
.y16{bottom:394.728000pt;}
.yc7{bottom:395.069333pt;}
.y80{bottom:399.612000pt;}
.y150{bottom:400.344000pt;}
.y131{bottom:402.072000pt;}
.y81{bottom:403.450667pt;}
.y113{bottom:407.754667pt;}
.y39{bottom:410.452000pt;}
.yad{bottom:410.657333pt;}
.y15{bottom:410.668000pt;}
.yc6{bottom:413.134667pt;}
.y188{bottom:413.153333pt;}
.y57{bottom:415.789333pt;}
.y14f{bottom:418.409333pt;}
.y16e{bottom:419.366667pt;}
.yde{bottom:423.524000pt;}
.y112{bottom:425.820000pt;}
.y14{bottom:426.608000pt;}
.y105{bottom:428.020000pt;}
.y38{bottom:428.517333pt;}
.yc5{bottom:431.200000pt;}
.y130{bottom:432.093333pt;}
.y56{bottom:433.854667pt;}
.y14e{bottom:436.474667pt;}
.y16d{bottom:437.433333pt;}
.y7f{bottom:438.030667pt;}
.yac{bottom:438.117333pt;}
.ydd{bottom:441.590667pt;}
.y13{bottom:442.548000pt;}
.y104{bottom:446.085333pt;}
.yc4{bottom:449.265333pt;}
.y12f{bottom:450.158667pt;}
.yf6{bottom:451.610667pt;}
.y55{bottom:451.920000pt;}
.y14d{bottom:454.541333pt;}
.y16c{bottom:455.498667pt;}
.y7e{bottom:456.096000pt;}
.y111{bottom:457.701333pt;}
.y12{bottom:458.489333pt;}
.y187{bottom:458.982667pt;}
.ydc{bottom:459.656000pt;}
.y37{bottom:466.396000pt;}
.y12e{bottom:468.224000pt;}
.yf5{bottom:469.677333pt;}
.y14c{bottom:472.606667pt;}
.y103{bottom:473.544000pt;}
.y16b{bottom:473.564000pt;}
.y7d{bottom:474.161333pt;}
.y11{bottom:474.429333pt;}
.y110{bottom:475.766667pt;}
.yc3{bottom:476.725333pt;}
.yab{bottom:476.934667pt;}
.y186{bottom:477.049333pt;}
.y7c{bottom:478.000000pt;}
.y36{bottom:484.461333pt;}
.y12d{bottom:486.289333pt;}
.ydb{bottom:489.676000pt;}
.y54{bottom:490.338667pt;}
.y10{bottom:490.369333pt;}
.y14b{bottom:490.672000pt;}
.yaa{bottom:491.048000pt;}
.y16a{bottom:491.629333pt;}
.y7a{bottom:492.228000pt;}
.y10f{bottom:494.364000pt;}
.ya9{bottom:495.001333pt;}
.y7b{bottom:497.505333pt;}
.yf4{bottom:499.697333pt;}
.y35{bottom:502.528000pt;}
.yf{bottom:506.309333pt;}
.y185{bottom:507.069333pt;}
.y53{bottom:508.405333pt;}
.y14a{bottom:508.737333pt;}
.y79{bottom:510.293333pt;}
.y102{bottom:512.494667pt;}
.yc2{bottom:515.676000pt;}
.y12c{bottom:516.310667pt;}
.yda{bottom:519.697333pt;}
.y34{bottom:520.593333pt;}
.ye{bottom:522.249333pt;}
.y184{bottom:525.134667pt;}
.y10e{bottom:526.309333pt;}
.y52{bottom:526.470667pt;}
.ya8{bottom:526.836000pt;}
.y78{bottom:528.358667pt;}
.y169{bottom:528.973333pt;}
.yf3{bottom:529.718667pt;}
.y101{bottom:530.560000pt;}
.yd{bottom:538.189333pt;}
.y33{bottom:538.658667pt;}
.yc1{bottom:542.374667pt;}
.y10d{bottom:544.374667pt;}
.y168{bottom:547.038667pt;}
.y149{bottom:547.156000pt;}
.yd9{bottom:549.717333pt;}
.yc{bottom:554.130667pt;}
.y12b{bottom:554.729333pt;}
.y183{bottom:555.156000pt;}
.y32{bottom:556.724000pt;}
.ya7{bottom:558.670667pt;}
.yf2{bottom:559.738667pt;}
.yc0{bottom:560.441333pt;}
.y77{bottom:561.036000pt;}
.y10c{bottom:562.440000pt;}
.y19e{bottom:563.658667pt;}
.y51{bottom:564.889333pt;}
.y148{bottom:565.222667pt;}
.y100{bottom:569.985333pt;}
.yb{bottom:570.070667pt;}
.y12a{bottom:572.794667pt;}
.y182{bottom:573.221333pt;}
.y167{bottom:574.778667pt;}
.ya6{bottom:576.737333pt;}
.ybf{bottom:578.506667pt;}
.yd8{bottom:579.738667pt;}
.y19d{bottom:581.724000pt;}
.y50{bottom:582.954667pt;}
.y147{bottom:583.288000pt;}
.ya{bottom:586.010667pt;}
.yff{bottom:588.050667pt;}
.yf1{bottom:589.760000pt;}
.y10b{bottom:589.900000pt;}
.y129{bottom:590.860000pt;}
.y181{bottom:591.286667pt;}
.y165{bottom:592.844000pt;}
.y76{bottom:593.713333pt;}
.y31{bottom:594.602667pt;}
.y166{bottom:598.122667pt;}
.y146{bottom:601.353333pt;}
.y9{bottom:601.950667pt;}
.y30{bottom:607.653333pt;}
.y128{bottom:608.925333pt;}
.ya5{bottom:609.206667pt;}
.yd7{bottom:609.760000pt;}
.y19c{bottom:611.745333pt;}
.y75{bottom:611.778667pt;}
.y4f{bottom:612.130667pt;}
.ybe{bottom:612.512000pt;}
.y2e{bottom:612.668000pt;}
.y145{bottom:619.418667pt;}
.yf0{bottom:619.781333pt;}
.y164{bottom:620.584000pt;}
.y180{bottom:621.308000pt;}
.y4e{bottom:622.108000pt;}
.y2f{bottom:624.274667pt;}
.y8{bottom:626.193333pt;}
.y127{bottom:626.992000pt;}
.y10a{bottom:628.849333pt;}
.y19b{bottom:629.810667pt;}
.y2d{bottom:630.734667pt;}
.y71{bottom:631.196000pt;}
.y73{bottom:635.034667pt;}
.y72{bottom:636.474667pt;}
.y144{bottom:637.484000pt;}
.y163{bottom:638.650667pt;}
.yd6{bottom:639.780000pt;}
.y74{bottom:642.272000pt;}
.ybd{bottom:642.533333pt;}
.y126{bottom:645.057333pt;}
.y109{bottom:646.916000pt;}
.yef{bottom:647.240000pt;}
.y2c{bottom:648.800000pt;}
.y70{bottom:649.262667pt;}
.y143{bottom:655.550667pt;}
.y4d{bottom:657.828000pt;}
.y17f{bottom:659.726667pt;}
.y19a{bottom:659.830667pt;}
.y4c{bottom:662.322667pt;}
.y125{bottom:663.122667pt;}
.y108{bottom:664.981333pt;}
.y162{bottom:666.390667pt;}
.y2b{bottom:666.865333pt;}
.yd5{bottom:667.240000pt;}
.y6e{bottom:667.328000pt;}
.ya4{bottom:670.281333pt;}
.ybc{bottom:672.553333pt;}
.y6f{bottom:672.606667pt;}
.y142{bottom:673.616000pt;}
.y17e{bottom:677.792000pt;}
.y199{bottom:677.897333pt;}
.y7{bottom:679.892000pt;}
.y124{bottom:681.188000pt;}
.y161{bottom:684.456000pt;}
.y2a{bottom:684.930667pt;}
.yee{bottom:686.190667pt;}
.ybb{bottom:690.620000pt;}
.y4b{bottom:691.641333pt;}
.y141{bottom:691.681333pt;}
.y6d{bottom:696.266667pt;}
.y123{bottom:699.253333pt;}
.y4a{bottom:701.618667pt;}
.yed{bottom:704.256000pt;}
.y107{bottom:704.406667pt;}
.yd4{bottom:706.189333pt;}
.y6c{bottom:706.244000pt;}
.y17d{bottom:707.813333pt;}
.y198{bottom:707.917333pt;}
.y140{bottom:709.746667pt;}
.y9d{bottom:710.061333pt;}
.y6b{bottom:710.081333pt;}
.y29{bottom:710.670667pt;}
.y160{bottom:711.914667pt;}
.ya3{bottom:712.577333pt;}
.ya2{bottom:712.878667pt;}
.y9c{bottom:714.046667pt;}
.y9b{bottom:718.032000pt;}
.yba{bottom:720.640000pt;}
.y28{bottom:720.648000pt;}
.y6a{bottom:721.834667pt;}
.yec{bottom:722.321333pt;}
.y106{bottom:722.472000pt;}
.yd3{bottom:724.254667pt;}
.y17c{bottom:725.878667pt;}
.y197{bottom:725.982667pt;}
.y97{bottom:726.350667pt;}
.y13f{bottom:727.812000pt;}
.y6{bottom:730.922667pt;}
.ya1{bottom:736.140000pt;}
.y122{bottom:737.672000pt;}
.y49{bottom:740.196000pt;}
.yeb{bottom:740.386667pt;}
.y9a{bottom:741.941333pt;}
.ya0{bottom:742.962667pt;}
.y99{bottom:745.926667pt;}
.y69{bottom:746.074667pt;}
.y5{bottom:749.520000pt;}
.y15f{bottom:749.790667pt;}
.y98{bottom:749.912000pt;}
.y9f{bottom:753.820000pt;}
.yd2{bottom:754.276000pt;}
.yb9{bottom:754.645333pt;}
.y121{bottom:755.738667pt;}
.y27{bottom:755.758667pt;}
.y17b{bottom:755.898667pt;}
.y196{bottom:756.004000pt;}
.y48{bottom:758.261333pt;}
.yea{bottom:758.452000pt;}
.y9e{bottom:763.685333pt;}
.y68{bottom:764.140000pt;}
.y13e{bottom:766.230667pt;}
.y15e{bottom:767.856000pt;}
.y4{bottom:768.116000pt;}
.y120{bottom:773.804000pt;}
.y17a{bottom:773.965333pt;}
.ye9{bottom:776.518667pt;}
.y26{bottom:778.282667pt;}
.yb8{bottom:782.105333pt;}
.y96{bottom:783.873333pt;}
.yd1{bottom:784.297333pt;}
.y195{bottom:786.025333pt;}
.y3{bottom:786.713333pt;}
.y25{bottom:788.260000pt;}
.y47{bottom:790.730667pt;}
.y11f{bottom:791.869333pt;}
.y15d{bottom:795.596000pt;}
.y95{bottom:801.938667pt;}
.y13d{bottom:802.362667pt;}
.y67{bottom:802.558667pt;}
.y179{bottom:803.985333pt;}
.y194{bottom:804.090667pt;}
.ye8{bottom:806.538667pt;}
.y11e{bottom:809.934667pt;}
.y15c{bottom:813.661333pt;}
.yd0{bottom:816.766667pt;}
.y94{bottom:820.005333pt;}
.y66{bottom:820.624000pt;}
.yb7{bottom:821.056000pt;}
.y24{bottom:822.590667pt;}
.y2{bottom:827.128000pt;}
.y11d{bottom:828.000000pt;}
.y193{bottom:834.110667pt;}
.y13c{bottom:834.832000pt;}
.y46{bottom:836.560000pt;}
.yb6{bottom:839.121333pt;}
.y23{bottom:840.657333pt;}
.y15b{bottom:841.401333pt;}
.y178{bottom:842.404000pt;}
.y11c{bottom:846.066667pt;}
.y65{bottom:847.473333pt;}
.y93{bottom:850.056000pt;}
.y192{bottom:852.176000pt;}
.y90{bottom:856.308000pt;}
.y1{bottom:856.352000pt;}
.y64{bottom:857.452000pt;}
.y22{bottom:858.722667pt;}
.y15a{bottom:859.466667pt;}
.y177{bottom:860.470667pt;}
.y11b{bottom:864.132000pt;}
.y8e{bottom:866.285333pt;}
.y45{bottom:866.580000pt;}
.yb5{bottom:869.141333pt;}
.y8f{bottom:876.126667pt;}
.ycf{bottom:878.536000pt;}
.y92{bottom:879.221333pt;}
.y11a{bottom:882.197333pt;}
.y91{bottom:883.205333pt;}
.y44{bottom:884.646667pt;}
.yb4{bottom:887.208000pt;}
.y63{bottom:893.130667pt;}
.y21{bottom:896.601333pt;}
.y62{bottom:908.670667pt;}
.y60{bottom:913.686667pt;}
.y20{bottom:914.666667pt;}
.y61{bottom:917.525333pt;}
.h15{height:2.125355pt;}
.ha{height:8.365733pt;}
.h1f{height:29.925069pt;}
.h10{height:31.880400pt;}
.h4{height:39.850400pt;}
.h26{height:40.378215pt;}
.h1b{height:41.658217pt;}
.h6{height:43.636400pt;}
.h3{height:45.525402pt;}
.h19{height:46.429355pt;}
.hf{height:47.820800pt;}
.h25{height:51.034402pt;}
.h1c{height:51.039735pt;}
.h18{height:52.989733pt;}
.h1a{height:52.995067pt;}
.hd{height:56.349733pt;}
.h5{height:57.384800pt;}
.h13{height:58.985733pt;}
.h17{height:58.991067pt;}
.h1d{height:59.124400pt;}
.he{height:61.615067pt;}
.h11{height:62.370688pt;}
.h2{height:64.454458pt;}
.h1{height:68.861600pt;}
.hb{height:71.098402pt;}
.h12{height:82.434688pt;}
.h7{height:82.996400pt;}
.hc{height:83.001733pt;}
.h8{height:83.545733pt;}
.h14{height:83.551067pt;}
.h22{height:85.016021pt;}
.h23{height:95.170688pt;}
.h24{height:98.729733pt;}
.h1e{height:112.312021pt;}
.h20{height:112.317355pt;}
.h9{height:118.216021pt;}
.h16{height:122.905733pt;}
.h21{height:144.194688pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x25{left:121.509333pt;}
.x16{left:122.401333pt;}
.xa6{left:123.593333pt;}
.x64{left:130.481333pt;}
.xa7{left:134.525333pt;}
.x65{left:136.252000pt;}
.x26{left:140.178667pt;}
.x5f{left:144.982667pt;}
.xe9{left:150.677333pt;}
.xf8{left:152.300000pt;}
.xd1{left:157.062667pt;}
.xd{left:158.765333pt;}
.x86{left:162.385333pt;}
.x66{left:164.462667pt;}
.x1{left:165.529333pt;}
.x87{left:166.425333pt;}
.x44{left:173.164000pt;}
.xc{left:178.690667pt;}
.xc8{left:190.317333pt;}
.xb5{left:191.270667pt;}
.x67{left:196.978667pt;}
.xf1{left:200.200000pt;}
.x54{left:201.920000pt;}
.x6{left:203.448000pt;}
.xf2{left:208.580000pt;}
.x5{left:212.329333pt;}
.x55{left:214.190667pt;}
.xc5{left:219.449333pt;}
.x32{left:222.058667pt;}
.x68{left:225.189333pt;}
.x56{left:229.270667pt;}
.xe{left:230.285333pt;}
.x1f{left:231.666667pt;}
.x45{left:233.800000pt;}
.x57{left:237.300000pt;}
.x46{left:242.486667pt;}
.x20{left:244.086667pt;}
.x58{left:247.110667pt;}
.x47{left:248.030667pt;}
.x5c{left:249.592000pt;}
.x9c{left:250.896000pt;}
.x2{left:251.888000pt;}
.x3{left:253.630667pt;}
.x18{left:256.149333pt;}
.x14{left:257.377333pt;}
.x21{left:259.214667pt;}
.x5d{left:261.652000pt;}
.x69{left:262.694667pt;}
.x4{left:264.573333pt;}
.xc9{left:265.945333pt;}
.x9d{left:267.086667pt;}
.x15{left:268.738667pt;}
.x6a{left:269.709333pt;}
.xf{left:271.862667pt;}
.x2f{left:273.890667pt;}
.x7d{left:277.246667pt;}
.xbc{left:280.673333pt;}
.xaa{left:283.448000pt;}
.x88{left:284.408000pt;}
.x7e{left:287.246667pt;}
.x48{left:288.600000pt;}
.xbd{left:292.481333pt;}
.x59{left:294.726667pt;}
.xab{left:296.118667pt;}
.xb6{left:298.894667pt;}
.x4b{left:300.033333pt;}
.xbf{left:300.928000pt;}
.xd5{left:302.678667pt;}
.xac{left:304.932000pt;}
.xbe{left:309.893333pt;}
.xd2{left:311.292000pt;}
.xc0{left:312.374667pt;}
.x6b{left:314.837333pt;}
.xc2{left:316.341333pt;}
.x34{left:317.664000pt;}
.x75{left:319.301333pt;}
.x1a{left:320.333333pt;}
.xb0{left:321.414667pt;}
.xb7{left:324.128000pt;}
.xde{left:328.473333pt;}
.x76{left:331.286667pt;}
.x10{left:333.533333pt;}
.x27{left:335.366667pt;}
.xdb{left:336.486667pt;}
.x4c{left:337.918667pt;}
.xb8{left:339.256000pt;}
.x11{left:340.308000pt;}
.xdf{left:341.893333pt;}
.x94{left:342.897333pt;}
.x22{left:345.594667pt;}
.x77{left:347.580000pt;}
.xd6{left:348.497333pt;}
.xa{left:353.784000pt;}
.x89{left:355.334667pt;}
.x23{left:356.754667pt;}
.x6c{left:359.010667pt;}
.xef{left:360.672000pt;}
.x24{left:363.218667pt;}
.x78{left:365.456000pt;}
.x35{left:367.937333pt;}
.x7f{left:369.690667pt;}
.x28{left:372.322667pt;}
.x73{left:373.318667pt;}
.xd9{left:374.972000pt;}
.xb{left:378.982667pt;}
.x12{left:383.836000pt;}
.x74{left:386.012000pt;}
.x29{left:387.514667pt;}
.xb3{left:388.958667pt;}
.xb2{left:390.201333pt;}
.xaf{left:394.250667pt;}
.xc1{left:395.866667pt;}
.x95{left:397.448000pt;}
.x79{left:398.381333pt;}
.xe4{left:400.726667pt;}
.x80{left:402.146667pt;}
.xe6{left:403.128000pt;}
.x17{left:404.364000pt;}
.x13{left:406.816000pt;}
.x60{left:408.417333pt;}
.x8a{left:410.032000pt;}
.x6d{left:411.700000pt;}
.xda{left:413.717333pt;}
.x61{left:415.690667pt;}
.xe8{left:417.870667pt;}
.x8b{left:421.576000pt;}
.xa0{left:422.764000pt;}
.x6e{left:424.745333pt;}
.x81{left:429.838667pt;}
.xcf{left:436.041333pt;}
.x8c{left:437.016000pt;}
.xb1{left:443.604000pt;}
.x2c{left:445.136000pt;}
.x6f{left:448.421333pt;}
.x9{left:449.446667pt;}
.x8d{left:451.852000pt;}
.xad{left:454.862667pt;}
.x85{left:456.233333pt;}
.xc3{left:459.134667pt;}
.x82{left:460.814667pt;}
.xae{left:462.094667pt;}
.x9e{left:464.668000pt;}
.x19{left:469.800000pt;}
.x1b{left:471.138667pt;}
.x97{left:472.028000pt;}
.xd3{left:473.921333pt;}
.xb4{left:476.354667pt;}
.x1c{left:477.604000pt;}
.x8e{left:478.780000pt;}
.x7{left:482.116000pt;}
.x1d{left:485.021333pt;}
.xa1{left:487.306667pt;}
.x2a{left:488.525333pt;}
.x70{left:489.908000pt;}
.x8{left:491.112000pt;}
.xc4{left:492.134667pt;}
.x1e{left:493.834667pt;}
.x2b{left:496.905333pt;}
.x2d{left:498.008000pt;}
.xc6{left:499.188000pt;}
.x33{left:501.937333pt;}
.xb9{left:503.856000pt;}
.xc7{left:506.314667pt;}
.x9f{left:507.234667pt;}
.x30{left:509.428000pt;}
.xca{left:510.982667pt;}
.x36{left:512.656000pt;}
.x5a{left:514.518667pt;}
.x37{left:519.121333pt;}
.x96{left:521.426667pt;}
.xa2{left:522.650667pt;}
.x38{left:526.248000pt;}
.x5b{left:528.642667pt;}
.x98{left:530.481333pt;}
.x2e{left:533.098667pt;}
.x39{left:535.061333pt;}
.x4d{left:536.725333pt;}
.x9a{left:538.721333pt;}
.x8f{left:542.294667pt;}
.x99{left:544.985333pt;}
.xba{left:547.412000pt;}
.x71{left:549.360000pt;}
.xeb{left:551.022667pt;}
.x83{left:554.126667pt;}
.xec{left:555.265333pt;}
.x7a{left:558.158667pt;}
.x31{left:559.468000pt;}
.x90{left:561.668000pt;}
.xa3{left:564.869333pt;}
.x3c{left:566.693333pt;}
.xf0{left:571.750667pt;}
.x3d{left:574.152000pt;}
.x72{left:575.352000pt;}
.x84{left:577.536000pt;}
.xe0{left:578.706667pt;}
.x3e{left:579.922667pt;}
.x49{left:581.473333pt;}
.x62{left:583.060000pt;}
.xa4{left:585.192000pt;}
.x3f{left:588.609333pt;}
.x4e{left:590.652000pt;}
.xed{left:592.074667pt;}
.x40{left:594.378667pt;}
.xd8{left:597.368000pt;}
.xee{left:599.492000pt;}
.x41{left:603.109333pt;}
.xdc{left:604.068000pt;}
.x7b{left:609.697333pt;}
.x91{left:612.297333pt;}
.xcb{left:613.486667pt;}
.xdd{left:617.518667pt;}
.x7c{left:618.510667pt;}
.x3a{left:623.628000pt;}
.xf5{left:627.201333pt;}
.xcc{left:629.390667pt;}
.x3b{left:632.441333pt;}
.xe1{left:634.276000pt;}
.x4f{left:635.381333pt;}
.x42{left:638.944000pt;}
.x50{left:641.150667pt;}
.xe5{left:642.913333pt;}
.xbb{left:645.170667pt;}
.xf6{left:646.938667pt;}
.xa8{left:648.602667pt;}
.x5e{left:650.782667pt;}
.xf7{left:651.969333pt;}
.x51{left:652.990667pt;}
.x43{left:653.925333pt;}
.x92{left:655.925333pt;}
.xa9{left:657.333333pt;}
.xa5{left:658.556000pt;}
.x4a{left:661.946667pt;}
.xf3{left:663.550667pt;}
.xd4{left:664.829333pt;}
.x52{left:669.137333pt;}
.x93{left:670.762667pt;}
.xcd{left:672.298667pt;}
.x9b{left:673.836000pt;}
.xd0{left:675.802667pt;}
.x53{left:677.168000pt;}
.xe7{left:678.677333pt;}
.xf4{left:680.660000pt;}
.xe2{left:682.034667pt;}
.xd7{left:684.006667pt;}
.xe3{left:686.366667pt;}
.xea{left:689.530667pt;}
.x63{left:691.500000pt;}
.xce{left:723.409333pt;}
}




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