
    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_644e74e41f82ae47703c0777.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.795000;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_650467fc44d05ec25b3046c8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.716000;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_b04b80fd22928ba52493410e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.691000;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_65a652fba4333336dda7e573.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.009000;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_219526349652c5589f713349.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_07b8b85cdff02b8cf93654fe.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_8b053f1fccfaabee24af3d11.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.773000;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_2b455678a8a5add5b2050375.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_49b1a88ce925c60abbd77d6a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.729000;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_2cf7cc746e5a11c534b71ea0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.870000;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_79efb5713d0aae244ed0fd5e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.740000;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_dde10f881f1ca70d787f39d7.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_019d157acaea6f09b0f783e6.woff2')format("woff");}.ff10{font-family:ff10;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;}
.m4{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);}
.m22{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);}
.m27{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);}
.m19{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);}
.m25{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);}
.m13{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);}
.m1c{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);}
.m28{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);}
.mf{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);}
.mc{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);}
.m1f{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);}
.m7{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);}
.m5{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);}
.m2{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);}
.m24{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);}
.m1a{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);}
.m11{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);}
.m10{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);}
.m1{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);}
.m12{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);}
.m9{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);}
.m2a{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);}
.m26{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);}
.m1d{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);}
.m3{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);}
.md{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);}
.m16{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);}
.m18{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);}
.m17{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);}
.m23{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);}
.mb{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);}
.m1b{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);}
.m1e{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);}
.m15{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);}
.me{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);}
.ma{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);}
.m21{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.451025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451025,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.vf{vertical-align:-43.110000px;}
.v4{vertical-align:-17.358000px;}
.vb{vertical-align:-12.306000px;}
.v1{vertical-align:-9.648400px;}
.vc{vertical-align:-4.800000px;}
.v2{vertical-align:-2.313518px;}
.v6{vertical-align:-1.248000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:1.248000px;}
.v10{vertical-align:5.622000px;}
.vd{vertical-align:14.730000px;}
.v7{vertical-align:18.276000px;}
.v9{vertical-align:19.530000px;}
.v3{vertical-align:21.696000px;}
.v5{vertical-align:32.880000px;}
.ve{vertical-align:37.488000px;}
.v8{vertical-align:38.550000px;}
.ls8{letter-spacing:0.000000px;}
.ls53{letter-spacing:0.000496px;}
.ls3a{letter-spacing:0.000608px;}
.ls4e{letter-spacing:0.000699px;}
.ls4c{letter-spacing:0.001123px;}
.ls4f{letter-spacing:0.001584px;}
.ls52{letter-spacing:0.002074px;}
.ls29{letter-spacing:0.002642px;}
.ls4d{letter-spacing:0.003070px;}
.ls1a{letter-spacing:0.003389px;}
.ls51{letter-spacing:0.004601px;}
.ls50{letter-spacing:0.004687px;}
.ls1b{letter-spacing:0.004800px;}
.ls1c{letter-spacing:0.642088px;}
.ls24{letter-spacing:0.648088px;}
.ls34{letter-spacing:0.717483px;}
.ls9{letter-spacing:1.275394px;}
.ls2{letter-spacing:1.861130px;}
.ls2a{letter-spacing:2.989200px;}
.ls0{letter-spacing:11.571746px;}
.ls7{letter-spacing:11.954850px;}
.ls2c{letter-spacing:12.530693px;}
.ls2b{letter-spacing:12.551700px;}
.ls3c{letter-spacing:13.863220px;}
.ls46{letter-spacing:14.166817px;}
.ls45{letter-spacing:14.226593px;}
.ls17{letter-spacing:14.465695px;}
.lsb{letter-spacing:14.704798px;}
.ls2e{letter-spacing:14.751964px;}
.ls11{letter-spacing:14.764573px;}
.ls13{letter-spacing:14.824349px;}
.ls31{letter-spacing:14.864439px;}
.lse{letter-spacing:14.884124px;}
.ls39{letter-spacing:14.941200px;}
.ls5{letter-spacing:14.943900px;}
.ls3f{letter-spacing:14.944200px;}
.ls32{letter-spacing:14.944665px;}
.ls2d{letter-spacing:14.947200px;}
.ls6{letter-spacing:15.003676px;}
.ls3e{letter-spacing:15.030793px;}
.ls3d{letter-spacing:15.081958px;}
.ls16{letter-spacing:15.123227px;}
.ls43{letter-spacing:15.183002px;}
.ls1e{letter-spacing:15.197566px;}
.ls4b{letter-spacing:15.242778px;}
.ls44{letter-spacing:15.302554px;}
.ls35{letter-spacing:15.657483px;}
.ls21{letter-spacing:15.663483px;}
.ls20{letter-spacing:15.688200px;}
.ls33{letter-spacing:15.693986px;}
.ls30{letter-spacing:15.694200px;}
.ls1f{letter-spacing:15.720983px;}
.ls2f{letter-spacing:16.135729px;}
.lsd{letter-spacing:16.139412px;}
.ls3b{letter-spacing:16.194553px;}
.ls15{letter-spacing:16.378514px;}
.ls10{letter-spacing:16.617617px;}
.ls1{letter-spacing:17.739501px;}
.ls12{letter-spacing:17.992456px;}
.lsc{letter-spacing:18.171782px;}
.ls4a{letter-spacing:18.948865px;}
.lsf{letter-spacing:20.024826px;}
.ls14{letter-spacing:21.041011px;}
.ls48{letter-spacing:22.595177px;}
.ls49{letter-spacing:22.894055px;}
.lsa{letter-spacing:23.073382px;}
.ls19{letter-spacing:24.149342px;}
.ls47{letter-spacing:27.616327px;}
.ls3{letter-spacing:62.761200px;}
.ls4{letter-spacing:64.321654px;}
.ls41{letter-spacing:133.812600px;}
.ls42{letter-spacing:135.156600px;}
.ls40{letter-spacing:156.574090px;}
.ls28{letter-spacing:166.632600px;}
.ls38{letter-spacing:179.412600px;}
.ls26{letter-spacing:188.424600px;}
.ls1d{letter-spacing:192.742284px;}
.ls22{letter-spacing:200.478600px;}
.ls27{letter-spacing:239.910600px;}
.ls37{letter-spacing:256.404600px;}
.ls25{letter-spacing:261.702600px;}
.ls18{letter-spacing:343.416600px;}
.ls36{letter-spacing:393.135740px;}
.ls23{letter-spacing:480.424090px;}
.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;}
}
.ws49{word-spacing:-14.943900px;}
.ws9e{word-spacing:-13.449600px;}
.ws31{word-spacing:-11.955150px;}
.ws2{word-spacing:-11.357400px;}
.ws9{word-spacing:-10.460700px;}
.wsc2{word-spacing:-3.287658px;}
.ws10e{word-spacing:-3.174106px;}
.ws4b{word-spacing:-2.929004px;}
.wsc0{word-spacing:-2.869229px;}
.ws9d{word-spacing:-2.630126px;}
.ws60{word-spacing:-2.391024px;}
.wsae{word-spacing:-2.331248px;}
.ws40{word-spacing:-2.271473px;}
.ws3a{word-spacing:-2.151922px;}
.ws103{word-spacing:-1.990541px;}
.wse7{word-spacing:-1.972595px;}
.ws4{word-spacing:-1.908367px;}
.wscd{word-spacing:-1.853044px;}
.wsc1{word-spacing:-1.793268px;}
.wsad{word-spacing:-1.733492px;}
.ws17{word-spacing:-1.721549px;}
.ws80{word-spacing:-1.673717px;}
.ws3f{word-spacing:-1.613941px;}
.ws2b{word-spacing:-1.554166px;}
.ws85{word-spacing:-1.494390px;}
.ws63{word-spacing:-1.374839px;}
.ws3{word-spacing:-1.322630px;}
.wse5{word-spacing:-1.315063px;}
.ws3d{word-spacing:-1.255288px;}
.ws3e{word-spacing:-1.195512px;}
.ws9c{word-spacing:-1.135736px;}
.ws88{word-spacing:-1.075961px;}
.ws134{word-spacing:-0.968371px;}
.wsa5{word-spacing:-0.956410px;}
.ws62{word-spacing:-0.896634px;}
.ws64{word-spacing:-0.836858px;}
.ws50{word-spacing:-0.777083px;}
.ws99{word-spacing:-0.753178px;}
.ws65{word-spacing:-0.717307px;}
.wsef{word-spacing:-0.657532px;}
.wsa4{word-spacing:-0.621668px;}
.wsd3{word-spacing:-0.613512px;}
.ws41{word-spacing:-0.597756px;}
.wsfb{word-spacing:-0.537984px;}
.ws3b{word-spacing:-0.537980px;}
.wsfc{word-spacing:-0.484186px;}
.ws45{word-spacing:-0.478205px;}
.wsff{word-spacing:-0.430387px;}
.wsf2{word-spacing:-0.418429px;}
.wsfe{word-spacing:-0.376589px;}
.ws72{word-spacing:-0.358654px;}
.ws18{word-spacing:-0.322790px;}
.ws21{word-spacing:-0.298878px;}
.ws1e{word-spacing:-0.268992px;}
.ws20{word-spacing:-0.239102px;}
.ws1d{word-spacing:-0.215194px;}
.wsbb{word-spacing:-0.210069px;}
.ws34{word-spacing:-0.179327px;}
.ws16{word-spacing:-0.161395px;}
.ws2c{word-spacing:-0.119551px;}
.ws19{word-spacing:-0.107597px;}
.wsc3{word-spacing:-0.105963px;}
.wsd1{word-spacing:-0.077054px;}
.ws26{word-spacing:-0.059776px;}
.ws95{word-spacing:-0.053798px;}
.ws32{word-spacing:-0.047821px;}
.wsb7{word-spacing:-0.008506px;}
.wsaf{word-spacing:-0.006422px;}
.ws1{word-spacing:-0.003583px;}
.wsca{word-spacing:-0.002506px;}
.wsc4{word-spacing:-0.000900px;}
.wsbf{word-spacing:-0.000814px;}
.wscc{word-spacing:-0.000768px;}
.ws0{word-spacing:0.000000px;}
.ws1c{word-spacing:0.053798px;}
.ws23{word-spacing:0.059776px;}
.ws8e{word-spacing:0.095641px;}
.ws15{word-spacing:0.107597px;}
.ws22{word-spacing:0.119551px;}
.wse0{word-spacing:0.143462px;}
.ws1a{word-spacing:0.161395px;}
.ws36{word-spacing:0.179327px;}
.wsa{word-spacing:0.209214px;}
.ws100{word-spacing:0.215194px;}
.ws56{word-spacing:0.239102px;}
.ws105{word-spacing:0.251657px;}
.wsab{word-spacing:0.257344px;}
.wsfd{word-spacing:0.268992px;}
.wsc{word-spacing:0.292900px;}
.ws2d{word-spacing:0.298878px;}
.ws42{word-spacing:0.358654px;}
.ws7e{word-spacing:0.478205px;}
.ws53{word-spacing:0.537980px;}
.ws139{word-spacing:0.537984px;}
.ws46{word-spacing:0.597756px;}
.ws132{word-spacing:0.645581px;}
.ws47{word-spacing:0.657532px;}
.wsc9{word-spacing:0.672000px;}
.wsb5{word-spacing:0.674400px;}
.ws137{word-spacing:0.699379px;}
.ws48{word-spacing:0.717307px;}
.ws120{word-spacing:0.753178px;}
.ws5f{word-spacing:0.836858px;}
.ws1b{word-spacing:0.860774px;}
.ws38{word-spacing:0.896634px;}
.ws11a{word-spacing:0.914573px;}
.ws4a{word-spacing:1.016185px;}
.ws117{word-spacing:1.022170px;}
.ws10d{word-spacing:1.075968px;}
.ws5b{word-spacing:1.195512px;}
.ws70{word-spacing:1.255288px;}
.wsf6{word-spacing:1.291162px;}
.wsed{word-spacing:1.315063px;}
.ws7d{word-spacing:1.338977px;}
.ws110{word-spacing:1.398758px;}
.ws51{word-spacing:1.434614px;}
.wse1{word-spacing:1.494390px;}
.ws86{word-spacing:1.554166px;}
.wsf5{word-spacing:1.560154px;}
.ws68{word-spacing:1.613941px;}
.wsf4{word-spacing:1.613952px;}
.ws11d{word-spacing:1.667750px;}
.ws5c{word-spacing:1.673717px;}
.ws6c{word-spacing:1.733492px;}
.ws54{word-spacing:1.793268px;}
.ws5d{word-spacing:1.853044px;}
.ws57{word-spacing:1.912819px;}
.ws58{word-spacing:1.972595px;}
.wsb{word-spacing:2.008454px;}
.wsd2{word-spacing:2.022982px;}
.ws37{word-spacing:2.032370px;}
.ws43{word-spacing:2.092146px;}
.ws7f{word-spacing:2.211697px;}
.ws89{word-spacing:2.271473px;}
.ws59{word-spacing:2.331248px;}
.ws84{word-spacing:2.391024px;}
.ws74{word-spacing:2.510575px;}
.ws6{word-spacing:2.513591px;}
.ws44{word-spacing:2.570351px;}
.ws67{word-spacing:2.630126px;}
.ws66{word-spacing:2.689902px;}
.wse3{word-spacing:2.749678px;}
.ws55{word-spacing:2.809453px;}
.ws14{word-spacing:2.869236px;}
.wsbc{word-spacing:3.048556px;}
.ws87{word-spacing:3.108331px;}
.ws116{word-spacing:3.120307px;}
.ws6b{word-spacing:3.168107px;}
.ws113{word-spacing:3.174106px;}
.ws118{word-spacing:3.226963px;}
.ws11b{word-spacing:3.227059px;}
.ws121{word-spacing:3.227309px;}
.ws127{word-spacing:3.227578px;}
.ws39{word-spacing:3.227882px;}
.wsa2{word-spacing:3.227904px;}
.ws4d{word-spacing:3.287658px;}
.ws128{word-spacing:3.335501px;}
.ws4e{word-spacing:3.347434px;}
.ws4f{word-spacing:3.407209px;}
.ws6d{word-spacing:3.466985px;}
.wsb9{word-spacing:3.490904px;}
.ws125{word-spacing:3.496896px;}
.ws5a{word-spacing:3.526760px;}
.ws1f{word-spacing:3.586536px;}
.ws122{word-spacing:3.645753px;}
.wsa9{word-spacing:3.646312px;}
.ws123{word-spacing:3.658291px;}
.ws71{word-spacing:3.765863px;}
.wse6{word-spacing:3.825638px;}
.wsba{word-spacing:3.885414px;}
.ws5e{word-spacing:3.945190px;}
.ws6e{word-spacing:4.004965px;}
.wsac{word-spacing:4.124516px;}
.wsa6{word-spacing:4.184292px;}
.ws12b{word-spacing:4.196275px;}
.ws2e{word-spacing:4.303843px;}
.wsa8{word-spacing:4.363619px;}
.ws24{word-spacing:4.423394px;}
.ws124{word-spacing:4.427859px;}
.ws11f{word-spacing:4.465267px;}
.ws25{word-spacing:4.483170px;}
.ws131{word-spacing:4.519066px;}
.ws2f{word-spacing:4.841824px;}
.ws4c{word-spacing:4.901599px;}
.wse2{word-spacing:4.961375px;}
.wsee{word-spacing:5.021150px;}
.wsf0{word-spacing:5.080926px;}
.ws83{word-spacing:5.140702px;}
.wse4{word-spacing:5.200477px;}
.wsf1{word-spacing:5.260253px;}
.ws33{word-spacing:5.320028px;}
.ws61{word-spacing:5.379804px;}
.wsce{word-spacing:5.439580px;}
.wsa3{word-spacing:5.451548px;}
.wsbd{word-spacing:5.499355px;}
.ws27{word-spacing:5.559131px;}
.ws52{word-spacing:5.858009px;}
.wsf7{word-spacing:5.971622px;}
.ws81{word-spacing:6.037336px;}
.ws12{word-spacing:6.067206px;}
.ws13{word-spacing:6.150892px;}
.wsaa{word-spacing:6.156887px;}
.ws73{word-spacing:6.336214px;}
.wsa7{word-spacing:6.395989px;}
.ws35{word-spacing:6.455765px;}
.ws82{word-spacing:6.515540px;}
.wsbe{word-spacing:6.573535px;}
.ws8a{word-spacing:6.694867px;}
.ws6a{word-spacing:6.814418px;}
.wsfa{word-spacing:6.832397px;}
.ws69{word-spacing:6.874194px;}
.wsd0{word-spacing:6.993745px;}
.wscf{word-spacing:7.053521px;}
.wsf3{word-spacing:7.101389px;}
.wse8{word-spacing:7.412174px;}
.wse9{word-spacing:7.651277px;}
.ws2a{word-spacing:8.189257px;}
.ws29{word-spacing:8.249033px;}
.wseb{word-spacing:8.308808px;}
.wsec{word-spacing:8.368584px;}
.ws10{word-spacing:8.661460px;}
.ws28{word-spacing:9.324994px;}
.ws10b{word-spacing:9.898906px;}
.ws7{word-spacing:10.415759px;}
.wsea{word-spacing:10.520506px;}
.ws12d{word-spacing:11.674253px;}
.ws30{word-spacing:11.906545px;}
.ws135{word-spacing:12.427430px;}
.ws107{word-spacing:13.073011px;}
.ws115{word-spacing:13.288205px;}
.ws108{word-spacing:13.342003px;}
.ws119{word-spacing:13.384915px;}
.ws12a{word-spacing:13.385501px;}
.ws104{word-spacing:13.386547px;}
.ws102{word-spacing:13.387565px;}
.ws12f{word-spacing:13.387891px;}
.ws12c{word-spacing:13.389024px;}
.ws136{word-spacing:13.389869px;}
.ws11c{word-spacing:13.391184px;}
.ws130{word-spacing:13.391280px;}
.ws112{word-spacing:13.393334px;}
.ws109{word-spacing:13.394822px;}
.wsf9{word-spacing:13.395802px;}
.ws12e{word-spacing:13.396118px;}
.ws126{word-spacing:13.449600px;}
.ws106{word-spacing:13.503398px;}
.ws114{word-spacing:13.557197px;}
.ws101{word-spacing:13.610995px;}
.ws10f{word-spacing:13.664794px;}
.ws8b{word-spacing:13.748388px;}
.ws138{word-spacing:13.879987px;}
.ws133{word-spacing:14.041382px;}
.ws10c{word-spacing:14.417971px;}
.ws111{word-spacing:14.848358px;}
.ws3c{word-spacing:14.884124px;}
.ws11e{word-spacing:15.009754px;}
.ws8{word-spacing:15.481836px;}
.ws5{word-spacing:15.483541px;}
.wsd{word-spacing:16.142252px;}
.wse{word-spacing:16.151321px;}
.ws10a{word-spacing:16.623706px;}
.ws129{word-spacing:16.731302px;}
.wsf{word-spacing:17.699504px;}
.ws6f{word-spacing:18.470660px;}
.wsf8{word-spacing:19.367424px;}
.ws11{word-spacing:27.448877px;}
.ws98{word-spacing:82.305600px;}
.wsde{word-spacing:100.738675px;}
.ws96{word-spacing:103.905600px;}
.wsdd{word-spacing:107.058816px;}
.wsd9{word-spacing:107.704397px;}
.wsa1{word-spacing:116.312141px;}
.wsd8{word-spacing:124.079328px;}
.wsdf{word-spacing:124.104259px;}
.ws92{word-spacing:126.533837px;}
.wsda{word-spacing:127.932595px;}
.ws97{word-spacing:130.806000px;}
.ws9a{word-spacing:135.195379px;}
.wsd5{word-spacing:136.163750px;}
.ws93{word-spacing:139.983437px;}
.wsd4{word-spacing:140.604288px;}
.wsa0{word-spacing:143.695526px;}
.wsdc{word-spacing:146.650608px;}
.ws94{word-spacing:149.559552px;}
.wsdb{word-spacing:152.248675px;}
.ws9b{word-spacing:153.379238px;}
.ws91{word-spacing:161.502797px;}
.wsd6{word-spacing:162.006682px;}
.wsd7{word-spacing:181.161955px;}
.ws9f{word-spacing:190.963555px;}
.wsc8{word-spacing:201.690202px;}
.wsc7{word-spacing:221.488013px;}
.ws75{word-spacing:224.608320px;}
.ws77{word-spacing:226.060877px;}
.wsb3{word-spacing:226.786608px;}
.wscb{word-spacing:237.573734px;}
.wsc5{word-spacing:239.349082px;}
.wsb4{word-spacing:242.039002px;}
.wsb1{word-spacing:246.665664px;}
.wsb8{word-spacing:248.387213px;}
.wsb6{word-spacing:254.143642px;}
.ws8c{word-spacing:256.994957px;}
.ws7a{word-spacing:267.105763px;}
.wsc6{word-spacing:269.451955px;}
.wsb2{word-spacing:270.821146px;}
.wsb0{word-spacing:280.504858px;}
.ws76{word-spacing:341.509363px;}
.ws8d{word-spacing:348.021850px;}
.ws79{word-spacing:355.147363px;}
.ws7b{word-spacing:376.750195px;}
.ws7c{word-spacing:384.120576px;}
.ws78{word-spacing:390.199795px;}
.ws8f{word-spacing:878.581133px;}
.ws90{word-spacing:953.307648px;}
._1{margin-left:-11.943245px;}
._0{margin-left:-7.962163px;}
._6d{margin-left:-6.939994px;}
._a{margin-left:-5.706998px;}
._7{margin-left:-3.849538px;}
._55{margin-left:-2.332911px;}
._4{margin-left:-1.322630px;}
._5{width:1.091170px;}
._2{width:3.001937px;}
._6{width:12.971268px;}
._8{width:14.268223px;}
._11{width:15.378749px;}
._b{width:16.516109px;}
._c{width:17.662118px;}
._f{width:19.343402px;}
._10{width:20.890000px;}
._18{width:22.145288px;}
._17{width:24.343804px;}
._e{width:26.009953px;}
._d{width:27.166438px;}
._15{width:28.879182px;}
._3e{width:30.119342px;}
._9b{width:31.146637px;}
._9{width:32.637384px;}
._14{width:35.148053px;}
._16{width:36.582667px;}
._3d{width:38.100956px;}
._92{width:40.169203px;}
._9a{width:42.388468px;}
._3{width:69.347143px;}
._1b{width:90.691085px;}
._95{width:94.885628px;}
._77{width:96.729523px;}
._74{width:113.245632px;}
._73{width:118.786867px;}
._63{width:125.511667px;}
._76{width:129.761741px;}
._75{width:135.320614px;}
._66{width:138.638477px;}
._5f{width:139.983437px;}
._71{width:142.189171px;}
._64{width:144.261283px;}
._70{width:147.676608px;}
._97{width:148.698778px;}
._72{width:151.378186px;}
._6a{width:153.421747px;}
._81{width:160.130573px;}
._68{width:166.882637px;}
._67{width:167.946307px;}
._99{width:171.563098px;}
._62{width:173.392243px;}
._58{width:179.632858px;}
._5d{width:184.636109px;}
._6b{width:187.188115px;}
._96{width:189.047578px;}
._91{width:190.069747px;}
._93{width:191.849462px;}
._56{width:194.535014px;}
._57{width:195.933773px;}
._65{width:197.440128px;}
._6e{width:204.111130px;}
._19{width:212.127091px;}
._98{width:215.193600px;}
._36{width:216.392352px;}
._1a{width:221.730110px;}
._32{width:223.693747px;}
._94{width:227.943821px;}
._8e{width:230.472346px;}
._89{width:233.108467px;}
._1f{width:239.564275px;}
._87{width:243.921946px;}
._6f{width:245.213107px;}
._8a{width:249.009187px;}
._86{width:255.239189px;}
._90{width:256.400448px;}
._8b{width:257.586739px;}
._82{width:259.146893px;}
._7f{width:261.836813px;}
._28{width:267.431846px;}
._21{width:269.960371px;}
._23{width:272.811686px;}
._8c{width:275.770598px;}
._7c{width:277.922534px;}
._26{width:282.226406px;}
._7a{width:283.302374px;}
._80{width:284.324544px;}
._8d{width:287.552448px;}
._7d{width:296.536781px;}
._83{width:301.324838px;}
._40{width:303.261581px;}
._7e{width:305.897702px;}
._43{width:316.280794px;}
._44{width:329.730394px;}
._85{width:352.864310px;}
._78{width:355.452451px;}
._46{width:361.471450px;}
._5e{width:365.667725px;}
._79{width:371.030045px;}
._31{width:383.905382px;}
._30{width:390.199795px;}
._2e{width:392.513126px;}
._2c{width:397.570176px;}
._29{width:403.649395px;}
._1e{width:405.052521px;}
._61{width:409.571587px;}
._1c{width:411.019776px;}
._24{width:426.319114px;}
._27{width:430.867018px;}
._49{width:432.539136px;}
._20{width:434.417713px;}
._22{width:436.300657px;}
._4a{width:437.972774px;}
._60{width:442.868429px;}
._25{width:446.629949px;}
._59{width:457.071206px;}
._5a{width:460.352909px;}
._5b{width:486.498931px;}
._5c{width:497.312410px;}
._34{width:500.656982px;}
._35{width:521.437363px;}
._33{width:544.816397px;}
._45{width:553.270339px;}
._1d{width:572.899162px;}
._2b{width:589.115030px;}
._42{width:602.277455px;}
._2a{width:606.899750px;}
._2f{width:610.827034px;}
._4b{width:612.440986px;}
._2d{width:654.719280px;}
._8f{width:684.315648px;}
._88{width:697.765248px;}
._50{width:700.787098px;}
._47{width:705.619814px;}
._7b{width:711.214848px;}
._69{width:764.690458px;}
._48{width:770.385808px;}
._6c{width:778.893235px;}
._4d{width:819.851280px;}
._3f{width:853.462185px;}
._3c{width:855.932544px;}
._4f{width:864.038352px;}
._3a{width:868.897958px;}
._41{width:882.024768px;}
._38{width:892.730650px;}
._12{width:951.056093px;}
._3b{width:954.329818px;}
._39{width:967.295232px;}
._37{width:991.181722px;}
._4e{width:1052.731459px;}
._4c{width:1184.901667px;}
._53{width:1221.685536px;}
._52{width:1353.836736px;}
._51{width:1514.747750px;}
._54{width:1576.831104px;}
._84{width:2539.633163px;}
._13{width:2563.543163px;}
.fc6{color:transparent;}
.fc5{color:rgb(8,117,183);}
.fc4{color:rgb(12,11,11);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(4,6,6);}
.fc1{color:rgb(24,71,104);}
.fc0{color:rgb(109,164,194);}
.fsb{font-size:35.865600px;}
.fs2{font-size:39.779955px;}
.fs1{font-size:41.124751px;}
.fsa{font-size:41.842800px;}
.fs9{font-size:41.936104px;}
.fs0{font-size:45.033277px;}
.fs7{font-size:45.429600px;}
.fs3{font-size:47.095448px;}
.fs8{font-size:47.236800px;}
.fsc{font-size:47.820600px;}
.fsf{font-size:49.829400px;}
.fsd{font-size:53.798400px;}
.fs10{font-size:56.058000px;}
.fs5{font-size:59.775600px;}
.fse{font-size:62.286600px;}
.fs6{font-size:107.596800px;}
.fs4{font-size:136.067040px;}
.y0{bottom:0.000000px;}
.yc{bottom:3.425340px;}
.y4{bottom:4.281255px;}
.y3{bottom:7.959393px;}
.y2{bottom:12.228458px;}
.yb{bottom:14.151273px;}
.y5{bottom:16.129519px;}
.y4e{bottom:31.890000px;}
.y119{bottom:94.722000px;}
.y1e6{bottom:102.211500px;}
.y24{bottom:102.823500px;}
.y242{bottom:103.557000px;}
.y4d{bottom:104.229000px;}
.yc4{bottom:104.454000px;}
.y20a{bottom:105.933000px;}
.y84{bottom:108.919500px;}
.y118{bottom:113.551500px;}
.y23{bottom:120.711000px;}
.y241{bottom:120.817500px;}
.y1e5{bottom:121.041000px;}
.y4c{bottom:123.058500px;}
.y209{bottom:123.193500px;}
.yc3{bottom:123.283500px;}
.yb8{bottom:125.076000px;}
.y83{bottom:127.749000px;}
.y117{bottom:132.381000px;}
.ye1{bottom:136.186500px;}
.y240{bottom:138.078000px;}
.y22{bottom:138.600000px;}
.y1e4{bottom:139.870500px;}
.y208{bottom:140.454000px;}
.y4b{bottom:141.888000px;}
.yc2{bottom:142.113000px;}
.yb7{bottom:143.905500px;}
.y82{bottom:146.578500px;}
.ydf{bottom:150.384000px;}
.y116{bottom:151.210500px;}
.ye0{bottom:154.723500px;}
.y23f{bottom:155.338500px;}
.y21{bottom:156.487500px;}
.y207{bottom:157.714500px;}
.y1e3{bottom:158.700000px;}
.y4a{bottom:160.717500px;}
.yb6{bottom:162.735000px;}
.y81{bottom:165.406500px;}
.yc1{bottom:165.426000px;}
.y115{bottom:170.040000px;}
.y23e{bottom:172.599000px;}
.yde{bottom:173.130000px;}
.y20{bottom:174.375000px;}
.y1b1{bottom:174.412500px;}
.y206{bottom:174.975000px;}
.y1e2{bottom:177.529500px;}
.y49{bottom:179.547000px;}
.yb5{bottom:181.564500px;}
.y80{bottom:184.236000px;}
.yc0{bottom:185.599500px;}
.y1af{bottom:188.610000px;}
.ydd{bottom:189.568500px;}
.y23d{bottom:189.858000px;}
.y205{bottom:192.235500px;}
.y1f{bottom:192.264000px;}
.y1b0{bottom:192.949500px;}
.y1e1{bottom:196.359000px;}
.y142{bottom:197.298000px;}
.y48{bottom:198.376500px;}
.yb4{bottom:200.394000px;}
.y7f{bottom:203.065500px;}
.y114{bottom:203.215500px;}
.ydc{bottom:206.007000px;}
.y23c{bottom:207.118500px;}
.y204{bottom:209.496000px;}
.y1e{bottom:210.151500px;}
.y1ae{bottom:211.356000px;}
.y1e0{bottom:215.188500px;}
.y141{bottom:216.127500px;}
.y47{bottom:217.206000px;}
.y113{bottom:217.413000px;}
.y1ac{bottom:218.422500px;}
.yb3{bottom:219.223500px;}
.y1ad{bottom:219.316500px;}
.y7e{bottom:221.895000px;}
.y17c{bottom:223.863000px;}
.y23b{bottom:224.379000px;}
.y1d{bottom:228.039000px;}
.ydb{bottom:229.648500px;}
.y203{bottom:231.238500px;}
.y1df{bottom:234.018000px;}
.y140{bottom:234.957000px;}
.y46{bottom:236.035500px;}
.yda{bottom:237.867000px;}
.yb2{bottom:238.053000px;}
.y112{bottom:240.160500px;}
.y7d{bottom:240.724500px;}
.y23a{bottom:241.639500px;}
.y17b{bottom:242.692500px;}
.y1ab{bottom:251.436000px;}
.y1de{bottom:252.847500px;}
.y13f{bottom:253.786500px;}
.y45{bottom:254.865000px;}
.y111{bottom:256.597500px;}
.yb1{bottom:256.882500px;}
.y1a9{bottom:258.501000px;}
.y239{bottom:258.900000px;}
.y1aa{bottom:259.396500px;}
.y7c{bottom:259.554000px;}
.y17a{bottom:261.522000px;}
.yd9{bottom:262.837500px;}
.y202{bottom:264.862500px;}
.y1dd{bottom:271.677000px;}
.y13e{bottom:272.614500px;}
.y110{bottom:273.036000px;}
.y44{bottom:273.694500px;}
.yb0{bottom:275.712000px;}
.y238{bottom:276.160500px;}
.y7b{bottom:278.383500px;}
.yd8{bottom:279.588000px;}
.y179{bottom:280.351500px;}
.y10f{bottom:289.474500px;}
.y1dc{bottom:290.506500px;}
.y201{bottom:291.403500px;}
.y13d{bottom:291.444000px;}
.y1a8{bottom:291.514500px;}
.y43{bottom:292.522500px;}
.y237{bottom:293.421000px;}
.yaf{bottom:294.541500px;}
.yd7{bottom:296.026500px;}
.y7a{bottom:297.213000px;}
.y1a6{bottom:298.581000px;}
.y178{bottom:299.181000px;}
.y1a7{bottom:299.475000px;}
.y10e{bottom:305.913000px;}
.y1c{bottom:307.299000px;}
.y1db{bottom:309.336000px;}
.y13c{bottom:310.273500px;}
.y236{bottom:310.681500px;}
.y42{bottom:311.352000px;}
.yd6{bottom:312.465000px;}
.yae{bottom:313.371000px;}
.y79{bottom:316.042500px;}
.y200{bottom:317.944500px;}
.y176{bottom:318.010500px;}
.ye5{bottom:318.795000px;}
.y10d{bottom:322.351500px;}
.y177{bottom:323.434500px;}
.y1b{bottom:325.186500px;}
.y235{bottom:327.940500px;}
.y1da{bottom:328.165500px;}
.yd5{bottom:328.903500px;}
.y13b{bottom:329.103000px;}
.y41{bottom:330.181500px;}
.y1a5{bottom:331.594500px;}
.yad{bottom:332.200500px;}
.y78{bottom:334.872000px;}
.y175{bottom:336.840000px;}
.yd4{bottom:337.122000px;}
.y1a2{bottom:338.454000px;}
.y1a4{bottom:338.659500px;}
.y1a3{bottom:339.553500px;}
.y1a{bottom:343.074000px;}
.y1ff{bottom:344.484000px;}
.y234{bottom:345.201000px;}
.y10c{bottom:345.993000px;}
.y1d9{bottom:346.995000px;}
.y13a{bottom:347.932500px;}
.y40{bottom:349.011000px;}
.yac{bottom:351.030000px;}
.y77{bottom:353.701500px;}
.y174{bottom:355.669500px;}
.y19{bottom:360.963000px;}
.yd3{bottom:361.779000px;}
.y1fe{bottom:362.058000px;}
.y233{bottom:362.461500px;}
.y1d8{bottom:365.824500px;}
.y139{bottom:366.762000px;}
.y3f{bottom:367.840500px;}
.y10b{bottom:369.633000px;}
.yab{bottom:369.859500px;}
.yd2{bottom:369.999000px;}
.y1a1{bottom:371.673000px;}
.y76{bottom:372.531000px;}
.y173{bottom:374.499000px;}
.y232{bottom:379.722000px;}
.y1d7{bottom:384.654000px;}
.y138{bottom:385.591500px;}
.y3e{bottom:386.670000px;}
.y1a0{bottom:388.111500px;}
.y1fd{bottom:388.599000px;}
.yaa{bottom:388.689000px;}
.y75{bottom:391.360500px;}
.y10a{bottom:393.274500px;}
.y172{bottom:393.328500px;}
.yd1{bottom:394.656000px;}
.y231{bottom:396.982500px;}
.y18{bottom:399.024000px;}
.y1d6{bottom:403.483500px;}
.y137{bottom:404.421000px;}
.y3d{bottom:405.499500px;}
.y1fc{bottom:406.173000px;}
.ya9{bottom:407.518500px;}
.y109{bottom:409.711500px;}
.y74{bottom:410.190000px;}
.yd0{bottom:411.094500px;}
.y19f{bottom:411.751500px;}
.y171{bottom:412.158000px;}
.y230{bottom:414.243000px;}
.y17{bottom:416.913000px;}
.y1d5{bottom:422.313000px;}
.y136{bottom:423.250500px;}
.y3c{bottom:424.329000px;}
.y108{bottom:426.150000px;}
.ya8{bottom:426.348000px;}
.ycf{bottom:427.533000px;}
.y170{bottom:427.911000px;}
.y73{bottom:429.019500px;}
.y16f{bottom:430.987500px;}
.y22f{bottom:431.503500px;}
.y1fb{bottom:432.714000px;}
.y16{bottom:434.800500px;}
.y1d4{bottom:441.142500px;}
.y135{bottom:442.080000px;}
.y3b{bottom:443.158500px;}
.y19e{bottom:443.760000px;}
.yce{bottom:443.971500px;}
.ya7{bottom:445.177500px;}
.y16e{bottom:446.740500px;}
.y16d{bottom:447.087000px;}
.y72{bottom:447.849000px;}
.y22e{bottom:448.764000px;}
.y107{bottom:449.791500px;}
.y16c{bottom:449.815500px;}
.y1fa{bottom:450.288000px;}
.y1d3{bottom:459.972000px;}
.ycd{bottom:460.410000px;}
.y134{bottom:460.909500px;}
.y3a{bottom:461.988000px;}
.ya6{bottom:464.007000px;}
.y22d{bottom:466.024500px;}
.y71{bottom:466.678500px;}
.y1f9{bottom:467.862000px;}
.ycc{bottom:468.628500px;}
.y16b{bottom:468.645000px;}
.y15{bottom:470.622000px;}
.y106{bottom:473.431500px;}
.y19d{bottom:478.287000px;}
.y1d2{bottom:478.801500px;}
.y133{bottom:479.739000px;}
.ya5{bottom:482.836500px;}
.y22c{bottom:483.283500px;}
.y39{bottom:485.301000px;}
.y1f8{bottom:485.436000px;}
.y70{bottom:485.508000px;}
.y16a{bottom:487.474500px;}
.y14{bottom:488.509500px;}
.y105{bottom:489.870000px;}
.ycb{bottom:493.287000px;}
.y19c{bottom:497.116500px;}
.y1d1{bottom:497.631000px;}
.y132{bottom:498.568500px;}
.y22b{bottom:500.544000px;}
.ya4{bottom:501.666000px;}
.y6f{bottom:504.337500px;}
.y169{bottom:506.304000px;}
.y104{bottom:506.308500px;}
.yca{bottom:509.724000px;}
.y19b{bottom:515.946000px;}
.y1d0{bottom:516.460500px;}
.y131{bottom:517.398000px;}
.y22a{bottom:517.804500px;}
.ya3{bottom:520.495500px;}
.y1f7{bottom:520.942500px;}
.y168{bottom:522.057000px;}
.y6e{bottom:523.167000px;}
.y13{bottom:524.329500px;}
.y167{bottom:525.133500px;}
.yc9{bottom:526.162500px;}
.y103{bottom:529.950000px;}
.y19a{bottom:534.775500px;}
.y229{bottom:535.065000px;}
.y1cf{bottom:535.290000px;}
.ya2{bottom:539.323500px;}
.y1f6{bottom:539.772000px;}
.y130{bottom:540.711000px;}
.y166{bottom:540.886500px;}
.y165{bottom:541.233000px;}
.y6d{bottom:541.996500px;}
.y12{bottom:542.218500px;}
.y102{bottom:543.952500px;}
.y164{bottom:543.963000px;}
.yc8{bottom:549.804000px;}
.y228{bottom:552.325500px;}
.y199{bottom:553.605000px;}
.y1ce{bottom:554.118000px;}
.yc7{bottom:558.022500px;}
.ya1{bottom:558.153000px;}
.y1f5{bottom:558.601500px;}
.y11{bottom:560.106000px;}
.y38{bottom:560.451000px;}
.y6c{bottom:560.826000px;}
.y163{bottom:562.792500px;}
.y227{bottom:569.586000px;}
.y198{bottom:572.434500px;}
.y1cd{bottom:572.947500px;}
.y12f{bottom:574.335000px;}
.ya0{bottom:576.982500px;}
.y1f4{bottom:577.431000px;}
.y10{bottom:577.993500px;}
.y6b{bottom:579.655500px;}
.y161{bottom:581.622000px;}
.y101{bottom:585.210000px;}
.y226{bottom:586.846500px;}
.y162{bottom:587.047500px;}
.y197{bottom:591.264000px;}
.y1cc{bottom:591.777000px;}
.y12e{bottom:593.164500px;}
.y9f{bottom:595.812000px;}
.yf{bottom:595.882500px;}
.y1f3{bottom:596.260500px;}
.y37{bottom:597.840000px;}
.yc6{bottom:597.861000px;}
.y6a{bottom:598.485000px;}
.y1f1{bottom:600.295500px;}
.y160{bottom:600.451500px;}
.y225{bottom:604.107000px;}
.y196{bottom:610.093500px;}
.y1cb{bottom:610.606500px;}
.y12d{bottom:611.994000px;}
.ye{bottom:613.770000px;}
.y9e{bottom:614.641500px;}
.y1f2{bottom:615.090000px;}
.y36{bottom:617.298000px;}
.y69{bottom:617.314500px;}
.y224{bottom:621.366000px;}
.y100{bottom:623.479500px;}
.y195{bottom:628.923000px;}
.y1ca{bottom:629.436000px;}
.y12c{bottom:630.823500px;}
.yd{bottom:631.657500px;}
.y9d{bottom:633.471000px;}
.y1f0{bottom:633.919500px;}
.y68{bottom:636.144000px;}
.y35{bottom:636.754500px;}
.yff{bottom:637.677000px;}
.y223{bottom:638.626500px;}
.y15f{bottom:642.594000px;}
.y194{bottom:647.752500px;}
.y1c9{bottom:648.265500px;}
.y12b{bottom:649.653000px;}
.y9c{bottom:652.300500px;}
.y1ef{bottom:652.749000px;}
.ya{bottom:654.028555px;}
.y67{bottom:654.973500px;}
.y222{bottom:655.887000px;}
.y34{bottom:656.212500px;}
.y15d{bottom:656.790000px;}
.yfe{bottom:660.423000px;}
.y15e{bottom:661.131000px;}
.y193{bottom:666.582000px;}
.y1c8{bottom:667.095000px;}
.y12a{bottom:668.482500px;}
.y9b{bottom:671.130000px;}
.y1ee{bottom:671.578500px;}
.y221{bottom:673.147500px;}
.y66{bottom:673.801500px;}
.y33{bottom:675.669000px;}
.yfd{bottom:676.861500px;}
.y15c{bottom:679.537500px;}
.y192{bottom:685.411500px;}
.y1c7{bottom:685.924500px;}
.y129{bottom:687.310500px;}
.y9a{bottom:689.959500px;}
.y1ed{bottom:690.408000px;}
.y65{bottom:692.631000px;}
.yfc{bottom:693.300000px;}
.y32{bottom:695.125500px;}
.y15b{bottom:695.976000px;}
.y191{bottom:704.241000px;}
.y1c6{bottom:704.754000px;}
.y128{bottom:706.140000px;}
.y220{bottom:707.668500px;}
.y99{bottom:708.789000px;}
.y1ec{bottom:709.237500px;}
.yfb{bottom:709.738500px;}
.y64{bottom:711.460500px;}
.y15a{bottom:713.038500px;}
.y31{bottom:714.583500px;}
.y190{bottom:723.070500px;}
.y1c5{bottom:723.583500px;}
.y21f{bottom:724.929000px;}
.y127{bottom:724.969500px;}
.y98{bottom:727.618500px;}
.y1eb{bottom:728.067000px;}
.y155{bottom:728.743500px;}
.y159{bottom:730.102500px;}
.y63{bottom:730.290000px;}
.yfa{bottom:733.378500px;}
.y30{bottom:734.040000px;}
.y18f{bottom:741.900000px;}
.y21e{bottom:742.189500px;}
.y1c4{bottom:742.413000px;}
.y126{bottom:743.799000px;}
.y97{bottom:746.448000px;}
.y158{bottom:746.541000px;}
.y1ea{bottom:746.896500px;}
.y62{bottom:749.119500px;}
.yf9{bottom:749.817000px;}
.y2f{bottom:753.498000px;}
.y21d{bottom:759.450000px;}
.y18e{bottom:760.729500px;}
.y1c3{bottom:761.242500px;}
.y125{bottom:762.628500px;}
.y157{bottom:762.978000px;}
.y96{bottom:765.277500px;}
.y1e9{bottom:765.726000px;}
.yf8{bottom:766.255500px;}
.y61{bottom:772.432500px;}
.y2e{bottom:772.954500px;}
.y21c{bottom:776.709000px;}
.y156{bottom:779.416500px;}
.y1c2{bottom:780.072000px;}
.y124{bottom:781.458000px;}
.yf7{bottom:782.694000px;}
.y95{bottom:784.107000px;}
.y1e8{bottom:784.555500px;}
.ybf{bottom:788.590500px;}
.y2d{bottom:792.411000px;}
.y21b{bottom:793.969500px;}
.y1c1{bottom:798.901500px;}
.yf6{bottom:799.132500px;}
.y123{bottom:800.287500px;}
.y94{bottom:802.936500px;}
.y154{bottom:803.058000px;}
.y1e7{bottom:803.385000px;}
.y60{bottom:806.056500px;}
.y18d{bottom:807.210000px;}
.y21a{bottom:811.230000px;}
.y2c{bottom:811.869000px;}
.yf5{bottom:815.571000px;}
.y18b{bottom:817.068000px;}
.y1c0{bottom:817.731000px;}
.y153{bottom:819.496500px;}
.y18c{bottom:821.407500px;}
.y93{bottom:821.766000px;}
.ybe{bottom:822.214500px;}
.y5f{bottom:824.886000px;}
.y219{bottom:828.490500px;}
.y189{bottom:831.264000px;}
.y2b{bottom:831.325500px;}
.yf4{bottom:832.009500px;}
.y18a{bottom:835.603500px;}
.y152{bottom:836.559000px;}
.y1bf{bottom:836.560500px;}
.y122{bottom:840.421500px;}
.y92{bottom:840.595500px;}
.ybd{bottom:841.044000px;}
.y5e{bottom:843.715500px;}
.yc5{bottom:845.079000px;}
.y218{bottom:845.751000px;}
.yf3{bottom:848.448000px;}
.y2a{bottom:850.782000px;}
.y14d{bottom:852.264000px;}
.y151{bottom:853.621500px;}
.y188{bottom:854.011500px;}
.y121{bottom:854.617500px;}
.y1be{bottom:855.390000px;}
.y91{bottom:859.425000px;}
.ybc{bottom:859.873500px;}
.y5d{bottom:862.545000px;}
.y217{bottom:863.011500px;}
.y120{bottom:868.815000px;}
.y150{bottom:870.060000px;}
.y187{bottom:870.450000px;}
.yf2{bottom:872.088000px;}
.y1bd{bottom:874.219500px;}
.y90{bottom:878.254500px;}
.ybb{bottom:878.703000px;}
.y216{bottom:880.272000px;}
.y5c{bottom:881.374500px;}
.y14f{bottom:886.498500px;}
.y186{bottom:887.512500px;}
.y11f{bottom:887.658000px;}
.yf1{bottom:888.526500px;}
.y29{bottom:889.368000px;}
.y1bc{bottom:893.049000px;}
.ye3{bottom:897.084000px;}
.yba{bottom:897.532500px;}
.y5b{bottom:900.204000px;}
.y8f{bottom:901.567500px;}
.ye4{bottom:902.508000px;}
.y14e{bottom:902.937000px;}
.y11e{bottom:904.096500px;}
.y185{bottom:904.576500px;}
.yf0{bottom:904.965000px;}
.y28{bottom:905.508000px;}
.y1bb{bottom:911.878500px;}
.y215{bottom:914.793000px;}
.yb9{bottom:916.362000px;}
.y5a{bottom:919.033500px;}
.ye2{bottom:920.397000px;}
.y11d{bottom:920.535000px;}
.y184{bottom:921.013500px;}
.yef{bottom:921.403500px;}
.y27{bottom:925.987500px;}
.y14c{bottom:926.578500px;}
.y1ba{bottom:930.708000px;}
.y214{bottom:932.052000px;}
.y8e{bottom:935.191500px;}
.y183{bottom:937.452000px;}
.y26{bottom:937.786500px;}
.yee{bottom:937.842000px;}
.y59{bottom:937.863000px;}
.y14b{bottom:943.017000px;}
.y11c{bottom:944.176500px;}
.y213{bottom:949.312500px;}
.y1b9{bottom:949.537500px;}
.y182{bottom:953.890500px;}
.y8d{bottom:954.021000px;}
.y58{bottom:956.692500px;}
.y25{bottom:958.266000px;}
.y14a{bottom:960.079500px;}
.y11b{bottom:960.615000px;}
.yed{bottom:961.482000px;}
.y212{bottom:966.573000px;}
.y1b8{bottom:968.367000px;}
.y8c{bottom:972.849000px;}
.y57{bottom:975.522000px;}
.y145{bottom:975.988500px;}
.y149{bottom:977.142000px;}
.y181{bottom:977.532000px;}
.yec{bottom:977.920500px;}
.y211{bottom:983.833500px;}
.y1b7{bottom:987.196500px;}
.y8b{bottom:991.678500px;}
.y11a{bottom:992.233500px;}
.y148{bottom:993.580500px;}
.y180{bottom:993.970500px;}
.y56{bottom:994.351500px;}
.yeb{bottom:994.359000px;}
.y9{bottom:998.460000px;}
.y210{bottom:1001.094000px;}
.y1b6{bottom:1006.026000px;}
.y147{bottom:1010.019000px;}
.y17f{bottom:1010.409000px;}
.y8a{bottom:1010.508000px;}
.yea{bottom:1010.797500px;}
.y55{bottom:1013.181000px;}
.y20f{bottom:1018.354500px;}
.y1b5{bottom:1024.855500px;}
.y146{bottom:1026.457500px;}
.y17e{bottom:1026.846000px;}
.ye9{bottom:1027.236000px;}
.y89{bottom:1029.337500px;}
.y54{bottom:1032.010500px;}
.y20e{bottom:1035.615000px;}
.y8{bottom:1041.199500px;}
.y1b4{bottom:1043.685000px;}
.y88{bottom:1048.167000px;}
.y144{bottom:1050.097500px;}
.y17d{bottom:1050.487500px;}
.y53{bottom:1050.840000px;}
.ye8{bottom:1050.876000px;}
.y20d{bottom:1052.875500px;}
.y1b3{bottom:1062.513000px;}
.y87{bottom:1066.996500px;}
.y7{bottom:1069.443000px;}
.y52{bottom:1069.669500px;}
.y20c{bottom:1070.134500px;}
.y143{bottom:1074.127500px;}
.ye7{bottom:1074.517500px;}
.y1b2{bottom:1081.342500px;}
.y86{bottom:1085.826000px;}
.y20b{bottom:1087.395000px;}
.y51{bottom:1088.499000px;}
.y6{bottom:1097.688000px;}
.y85{bottom:1104.655500px;}
.ye6{bottom:1106.137500px;}
.y50{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y4f{bottom:1173.397500px;}
.h9{height:25.508090px;}
.he{height:26.110157px;}
.h4{height:29.527571px;}
.hc{height:30.461558px;}
.hd{height:30.670772px;}
.h1f{height:31.691498px;}
.h3{height:32.333893px;}
.h1a{height:33.072749px;}
.hb{height:33.112997px;}
.h22{height:33.378779px;}
.ha{height:34.199443px;}
.hf{height:34.813397px;}
.h14{height:35.052500px;}
.h21{height:38.143066px;}
.h10{height:38.896243px;}
.h11{height:39.165235px;}
.h2b{height:39.434227px;}
.h1b{height:39.614278px;}
.h1d{height:41.723369px;}
.h23{height:42.380900px;}
.h12{height:43.217759px;}
.h1e{height:43.468157px;}
.h13{height:43.516637px;}
.h6{height:43.815515px;}
.h19{height:48.737558px;}
.h2c{height:49.117939px;}
.h24{height:49.782344px;}
.h26{height:49.985558px;}
.h25{height:49.991558px;}
.h2{height:50.887467px;}
.h8{height:54.541601px;}
.h1c{height:54.774749px;}
.h16{height:71.770243px;}
.h15{height:71.776243px;}
.h18{height:72.039235px;}
.h17{height:72.045235px;}
.h29{height:76.653235px;}
.h2a{height:76.659235px;}
.h20{height:77.446243px;}
.h28{height:77.475235px;}
.h7{height:77.792486px;}
.h5{height:89.939935px;}
.h27{height:104.650243px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:283.414416px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:28.390860px;}
.x2{left:32.479391px;}
.x3{left:43.285382px;}
.x5{left:51.307857px;}
.x1{left:54.000000px;}
.x4c{left:63.457500px;}
.xad{left:64.984500px;}
.x46{left:68.817000px;}
.x4e{left:73.134000px;}
.x5f{left:75.873000px;}
.x47{left:78.339000px;}
.x5d{left:80.950500px;}
.x12{left:83.656500px;}
.x1c{left:85.890000px;}
.x5c{left:90.997500px;}
.x19{left:93.366000px;}
.x14{left:96.729000px;}
.x93{left:101.302500px;}
.x4b{left:104.445000px;}
.x4d{left:106.024500px;}
.x43{left:117.840000px;}
.x44{left:120.900000px;}
.x5a{left:133.746000px;}
.x4a{left:138.559500px;}
.x5b{left:144.291000px;}
.x40{left:147.058500px;}
.x49{left:151.423500px;}
.x52{left:152.568000px;}
.x54{left:156.354000px;}
.x45{left:162.175500px;}
.x58{left:163.704000px;}
.x3f{left:164.805000px;}
.x59{left:166.414500px;}
.x97{left:170.677500px;}
.x51{left:174.193500px;}
.xae{left:175.941000px;}
.x7e{left:176.955000px;}
.xaf{left:184.162500px;}
.x41{left:185.181000px;}
.x95{left:190.704000px;}
.x96{left:192.102000px;}
.x7b{left:195.627000px;}
.x7d{left:197.503500px;}
.x94{left:199.332000px;}
.x42{left:201.387000px;}
.x7c{left:204.732000px;}
.x48{left:214.024500px;}
.xa7{left:215.974500px;}
.x3d{left:225.798000px;}
.x3e{left:229.329000px;}
.x79{left:243.532500px;}
.xf{left:248.655000px;}
.x8{left:249.832500px;}
.x6{left:250.897500px;}
.x24{left:255.420000px;}
.x6e{left:258.369000px;}
.x64{left:259.863000px;}
.x63{left:261.226500px;}
.x3b{left:266.536500px;}
.x62{left:268.456500px;}
.x7{left:271.221000px;}
.x61{left:272.242500px;}
.x60{left:276.565500px;}
.x16{left:279.730500px;}
.x13{left:281.068500px;}
.xb{left:282.786000px;}
.x5e{left:289.857000px;}
.x27{left:295.404000px;}
.x7f{left:297.748500px;}
.xb1{left:304.054500px;}
.x28{left:305.244000px;}
.x1b{left:306.985500px;}
.x9{left:309.451500px;}
.xb2{left:311.527500px;}
.x2d{left:315.634500px;}
.x9c{left:318.370500px;}
.x53{left:319.617000px;}
.xa{left:321.189000px;}
.x2e{left:329.865000px;}
.x9d{left:331.195500px;}
.x6f{left:349.921500px;}
.x65{left:354.526500px;}
.x70{left:357.393000px;}
.x15{left:359.061000px;}
.x11{left:362.034000px;}
.x1f{left:369.405000px;}
.x92{left:372.306000px;}
.x68{left:376.119000px;}
.x9e{left:379.605000px;}
.x20{left:382.392000px;}
.xd{left:385.255500px;}
.x25{left:387.667500px;}
.x69{left:388.731000px;}
.xb3{left:391.947000px;}
.x80{left:394.452000px;}
.x36{left:397.948500px;}
.x18{left:399.759000px;}
.x10{left:402.094500px;}
.x26{left:403.710000px;}
.x4f{left:409.593000px;}
.x37{left:412.990500px;}
.x21{left:414.336000px;}
.x1a{left:416.565000px;}
.x8e{left:418.933500px;}
.x22{left:427.323000px;}
.xe{left:437.409000px;}
.xa4{left:442.941000px;}
.xa3{left:446.146500px;}
.xc{left:450.792000px;}
.x8b{left:453.562500px;}
.x81{left:459.201000px;}
.x75{left:468.552000px;}
.xb5{left:471.423000px;}
.x1d{left:474.351000px;}
.x76{left:480.844500px;}
.x1e{left:482.967000px;}
.x2f{left:488.028000px;}
.x66{left:491.059500px;}
.xb4{left:492.369000px;}
.x23{left:494.590500px;}
.x67{left:498.931500px;}
.x30{left:502.258500px;}
.x8f{left:504.963000px;}
.x50{left:507.120000px;}
.xa5{left:515.373000px;}
.x38{left:523.237500px;}
.x82{left:524.955000px;}
.x85{left:529.327500px;}
.x77{left:532.624500px;}
.x83{left:534.126000px;}
.x39{left:539.259000px;}
.x78{left:548.655000px;}
.x73{left:554.782500px;}
.x98{left:556.341000px;}
.x74{left:562.254000px;}
.xa1{left:567.909000px;}
.x99{left:569.172000px;}
.xaa{left:570.814500px;}
.xa9{left:575.548500px;}
.xa2{left:581.014500px;}
.x55{left:585.427500px;}
.x29{left:588.250500px;}
.x86{left:599.175000px;}
.x2a{left:601.488000px;}
.x9a{left:609.478500px;}
.x87{left:616.275000px;}
.x9b{left:617.706000px;}
.x3c{left:620.623500px;}
.x6a{left:631.528500px;}
.x6b{left:639.000000px;}
.x56{left:643.549500px;}
.x31{left:645.301500px;}
.x57{left:646.912500px;}
.xa8{left:649.890000px;}
.x32{left:658.566000px;}
.x7a{left:669.672000px;}
.x88{left:681.891000px;}
.x17{left:683.470500px;}
.x6c{left:685.927500px;}
.x33{left:691.780500px;}
.x6d{left:693.399000px;}
.xb0{left:695.913000px;}
.x34{left:705.043500px;}
.x89{left:715.726500px;}
.x8c{left:717.045000px;}
.x90{left:731.730000px;}
.x35{left:751.305000px;}
.x9f{left:760.344000px;}
.xa0{left:768.567000px;}
.x2b{left:773.779500px;}
.x84{left:776.331000px;}
.x71{left:782.052000px;}
.x8a{left:785.574000px;}
.x2c{left:787.018500px;}
.xac{left:788.269500px;}
.x72{left:789.523500px;}
.x91{left:790.740000px;}
.xab{left:799.123500px;}
.x8d{left:801.036000px;}
.x3a{left:802.861500px;}
.xa6{left:826.621500px;}
@media print{
.vf{vertical-align:-38.320000pt;}
.v4{vertical-align:-15.429333pt;}
.vb{vertical-align:-10.938667pt;}
.v1{vertical-align:-8.576356pt;}
.vc{vertical-align:-4.266667pt;}
.v2{vertical-align:-2.056460pt;}
.v6{vertical-align:-1.109333pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:1.109333pt;}
.v10{vertical-align:4.997333pt;}
.vd{vertical-align:13.093333pt;}
.v7{vertical-align:16.245333pt;}
.v9{vertical-align:17.360000pt;}
.v3{vertical-align:19.285333pt;}
.v5{vertical-align:29.226667pt;}
.ve{vertical-align:33.322667pt;}
.v8{vertical-align:34.266667pt;}
.ls8{letter-spacing:0.000000pt;}
.ls53{letter-spacing:0.000441pt;}
.ls3a{letter-spacing:0.000540pt;}
.ls4e{letter-spacing:0.000621pt;}
.ls4c{letter-spacing:0.000998pt;}
.ls4f{letter-spacing:0.001408pt;}
.ls52{letter-spacing:0.001843pt;}
.ls29{letter-spacing:0.002348pt;}
.ls4d{letter-spacing:0.002729pt;}
.ls1a{letter-spacing:0.003012pt;}
.ls51{letter-spacing:0.004090pt;}
.ls50{letter-spacing:0.004166pt;}
.ls1b{letter-spacing:0.004267pt;}
.ls1c{letter-spacing:0.570745pt;}
.ls24{letter-spacing:0.576078pt;}
.ls34{letter-spacing:0.637762pt;}
.ls9{letter-spacing:1.133683pt;}
.ls2{letter-spacing:1.654338pt;}
.ls2a{letter-spacing:2.657067pt;}
.ls0{letter-spacing:10.285996pt;}
.ls7{letter-spacing:10.626533pt;}
.ls2c{letter-spacing:11.138393pt;}
.ls2b{letter-spacing:11.157067pt;}
.ls3c{letter-spacing:12.322863pt;}
.ls46{letter-spacing:12.592726pt;}
.ls45{letter-spacing:12.645860pt;}
.ls17{letter-spacing:12.858396pt;}
.lsb{letter-spacing:13.070931pt;}
.ls2e{letter-spacing:13.112857pt;}
.ls11{letter-spacing:13.124065pt;}
.ls13{letter-spacing:13.177199pt;}
.ls31{letter-spacing:13.212834pt;}
.lse{letter-spacing:13.230333pt;}
.ls39{letter-spacing:13.281067pt;}
.ls5{letter-spacing:13.283467pt;}
.ls3f{letter-spacing:13.283733pt;}
.ls32{letter-spacing:13.284147pt;}
.ls2d{letter-spacing:13.286400pt;}
.ls6{letter-spacing:13.336601pt;}
.ls3e{letter-spacing:13.360705pt;}
.ls3d{letter-spacing:13.406185pt;}
.ls16{letter-spacing:13.442868pt;}
.ls43{letter-spacing:13.496002pt;}
.ls1e{letter-spacing:13.508947pt;}
.ls4b{letter-spacing:13.549136pt;}
.ls44{letter-spacing:13.602270pt;}
.ls35{letter-spacing:13.917762pt;}
.ls21{letter-spacing:13.923096pt;}
.ls20{letter-spacing:13.945067pt;}
.ls33{letter-spacing:13.950210pt;}
.ls30{letter-spacing:13.950400pt;}
.ls1f{letter-spacing:13.974207pt;}
.ls2f{letter-spacing:14.342871pt;}
.lsd{letter-spacing:14.346144pt;}
.ls3b{letter-spacing:14.395158pt;}
.ls15{letter-spacing:14.558679pt;}
.ls10{letter-spacing:14.771215pt;}
.ls1{letter-spacing:15.768445pt;}
.ls12{letter-spacing:15.993294pt;}
.lsc{letter-spacing:16.152695pt;}
.ls4a{letter-spacing:16.843436pt;}
.lsf{letter-spacing:17.799845pt;}
.ls14{letter-spacing:18.703121pt;}
.ls48{letter-spacing:20.084602pt;}
.ls49{letter-spacing:20.350271pt;}
.lsa{letter-spacing:20.509673pt;}
.ls19{letter-spacing:21.466082pt;}
.ls47{letter-spacing:24.547846pt;}
.ls3{letter-spacing:55.787733pt;}
.ls4{letter-spacing:57.174803pt;}
.ls41{letter-spacing:118.944533pt;}
.ls42{letter-spacing:120.139200pt;}
.ls40{letter-spacing:139.176969pt;}
.ls28{letter-spacing:148.117867pt;}
.ls38{letter-spacing:159.477867pt;}
.ls26{letter-spacing:167.488533pt;}
.ls1d{letter-spacing:171.326474pt;}
.ls22{letter-spacing:178.203200pt;}
.ls27{letter-spacing:213.253867pt;}
.ls37{letter-spacing:227.915200pt;}
.ls25{letter-spacing:232.624533pt;}
.ls18{letter-spacing:305.259200pt;}
.ls36{letter-spacing:349.453991pt;}
.ls23{letter-spacing:427.043635pt;}
.ws49{word-spacing:-13.283467pt;}
.ws9e{word-spacing:-11.955200pt;}
.ws31{word-spacing:-10.626800pt;}
.ws2{word-spacing:-10.095467pt;}
.ws9{word-spacing:-9.298400pt;}
.wsc2{word-spacing:-2.922363pt;}
.ws10e{word-spacing:-2.821427pt;}
.ws4b{word-spacing:-2.603559pt;}
.wsc0{word-spacing:-2.550426pt;}
.ws9d{word-spacing:-2.337890pt;}
.ws60{word-spacing:-2.125355pt;}
.wsae{word-spacing:-2.072221pt;}
.ws40{word-spacing:-2.019087pt;}
.ws3a{word-spacing:-1.912819pt;}
.ws103{word-spacing:-1.769370pt;}
.wse7{word-spacing:-1.753418pt;}
.ws4{word-spacing:-1.696326pt;}
.wscd{word-spacing:-1.647150pt;}
.wsc1{word-spacing:-1.594016pt;}
.wsad{word-spacing:-1.540882pt;}
.ws17{word-spacing:-1.530266pt;}
.ws80{word-spacing:-1.487748pt;}
.ws3f{word-spacing:-1.434614pt;}
.ws2b{word-spacing:-1.381481pt;}
.ws85{word-spacing:-1.328347pt;}
.ws63{word-spacing:-1.222079pt;}
.ws3{word-spacing:-1.175671pt;}
.wse5{word-spacing:-1.168945pt;}
.ws3d{word-spacing:-1.115811pt;}
.ws3e{word-spacing:-1.062677pt;}
.ws9c{word-spacing:-1.009543pt;}
.ws88{word-spacing:-0.956410pt;}
.ws134{word-spacing:-0.860774pt;}
.wsa5{word-spacing:-0.850142pt;}
.ws62{word-spacing:-0.797008pt;}
.ws64{word-spacing:-0.743874pt;}
.ws50{word-spacing:-0.690740pt;}
.ws99{word-spacing:-0.669491pt;}
.ws65{word-spacing:-0.637606pt;}
.wsef{word-spacing:-0.584473pt;}
.wsa4{word-spacing:-0.552594pt;}
.wsd3{word-spacing:-0.545344pt;}
.ws41{word-spacing:-0.531339pt;}
.wsfb{word-spacing:-0.478208pt;}
.ws3b{word-spacing:-0.478205pt;}
.wsfc{word-spacing:-0.430387pt;}
.ws45{word-spacing:-0.425071pt;}
.wsff{word-spacing:-0.382566pt;}
.wsf2{word-spacing:-0.371937pt;}
.wsfe{word-spacing:-0.334746pt;}
.ws72{word-spacing:-0.318803pt;}
.ws18{word-spacing:-0.286925pt;}
.ws21{word-spacing:-0.265669pt;}
.ws1e{word-spacing:-0.239104pt;}
.ws20{word-spacing:-0.212535pt;}
.ws1d{word-spacing:-0.191283pt;}
.wsbb{word-spacing:-0.186728pt;}
.ws34{word-spacing:-0.159402pt;}
.ws16{word-spacing:-0.143462pt;}
.ws2c{word-spacing:-0.106268pt;}
.ws19{word-spacing:-0.095642pt;}
.wsc3{word-spacing:-0.094190pt;}
.wsd1{word-spacing:-0.068492pt;}
.ws26{word-spacing:-0.053134pt;}
.ws95{word-spacing:-0.047821pt;}
.ws32{word-spacing:-0.042507pt;}
.wsb7{word-spacing:-0.007561pt;}
.wsaf{word-spacing:-0.005709pt;}
.ws1{word-spacing:-0.003185pt;}
.wsca{word-spacing:-0.002227pt;}
.wsc4{word-spacing:-0.000800pt;}
.wsbf{word-spacing:-0.000723pt;}
.wscc{word-spacing:-0.000683pt;}
.ws0{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.047821pt;}
.ws23{word-spacing:0.053134pt;}
.ws8e{word-spacing:0.085014pt;}
.ws15{word-spacing:0.095642pt;}
.ws22{word-spacing:0.106268pt;}
.wse0{word-spacing:0.127522pt;}
.ws1a{word-spacing:0.143462pt;}
.ws36{word-spacing:0.159402pt;}
.wsa{word-spacing:0.185968pt;}
.ws100{word-spacing:0.191283pt;}
.ws56{word-spacing:0.212535pt;}
.ws105{word-spacing:0.223695pt;}
.wsab{word-spacing:0.228750pt;}
.wsfd{word-spacing:0.239104pt;}
.wsc{word-spacing:0.260355pt;}
.ws2d{word-spacing:0.265669pt;}
.ws42{word-spacing:0.318803pt;}
.ws7e{word-spacing:0.425071pt;}
.ws53{word-spacing:0.478205pt;}
.ws139{word-spacing:0.478208pt;}
.ws46{word-spacing:0.531339pt;}
.ws132{word-spacing:0.573850pt;}
.ws47{word-spacing:0.584473pt;}
.wsc9{word-spacing:0.597333pt;}
.wsb5{word-spacing:0.599467pt;}
.ws137{word-spacing:0.621670pt;}
.ws48{word-spacing:0.637606pt;}
.ws120{word-spacing:0.669491pt;}
.ws5f{word-spacing:0.743874pt;}
.ws1b{word-spacing:0.765133pt;}
.ws38{word-spacing:0.797008pt;}
.ws11a{word-spacing:0.812954pt;}
.ws4a{word-spacing:0.903276pt;}
.ws117{word-spacing:0.908595pt;}
.ws10d{word-spacing:0.956416pt;}
.ws5b{word-spacing:1.062677pt;}
.ws70{word-spacing:1.115811pt;}
.wsf6{word-spacing:1.147699pt;}
.wsed{word-spacing:1.168945pt;}
.ws7d{word-spacing:1.190202pt;}
.ws110{word-spacing:1.243341pt;}
.ws51{word-spacing:1.275213pt;}
.wse1{word-spacing:1.328347pt;}
.ws86{word-spacing:1.381481pt;}
.wsf5{word-spacing:1.386803pt;}
.ws68{word-spacing:1.434614pt;}
.wsf4{word-spacing:1.434624pt;}
.ws11d{word-spacing:1.482445pt;}
.ws5c{word-spacing:1.487748pt;}
.ws6c{word-spacing:1.540882pt;}
.ws54{word-spacing:1.594016pt;}
.ws5d{word-spacing:1.647150pt;}
.ws57{word-spacing:1.700284pt;}
.ws58{word-spacing:1.753418pt;}
.wsb{word-spacing:1.785293pt;}
.wsd2{word-spacing:1.798207pt;}
.ws37{word-spacing:1.806551pt;}
.ws43{word-spacing:1.859685pt;}
.ws7f{word-spacing:1.965953pt;}
.ws89{word-spacing:2.019087pt;}
.ws59{word-spacing:2.072221pt;}
.ws84{word-spacing:2.125355pt;}
.ws74{word-spacing:2.231622pt;}
.ws6{word-spacing:2.234303pt;}
.ws44{word-spacing:2.284756pt;}
.ws67{word-spacing:2.337890pt;}
.ws66{word-spacing:2.391024pt;}
.wse3{word-spacing:2.444158pt;}
.ws55{word-spacing:2.497292pt;}
.ws14{word-spacing:2.550432pt;}
.wsbc{word-spacing:2.709827pt;}
.ws87{word-spacing:2.762961pt;}
.ws116{word-spacing:2.773606pt;}
.ws6b{word-spacing:2.816095pt;}
.ws113{word-spacing:2.821427pt;}
.ws118{word-spacing:2.868412pt;}
.ws11b{word-spacing:2.868497pt;}
.ws121{word-spacing:2.868719pt;}
.ws127{word-spacing:2.868958pt;}
.ws39{word-spacing:2.869229pt;}
.wsa2{word-spacing:2.869248pt;}
.ws4d{word-spacing:2.922363pt;}
.ws128{word-spacing:2.964890pt;}
.ws4e{word-spacing:2.975497pt;}
.ws4f{word-spacing:3.028630pt;}
.ws6d{word-spacing:3.081764pt;}
.wsb9{word-spacing:3.103026pt;}
.ws125{word-spacing:3.108352pt;}
.ws5a{word-spacing:3.134898pt;}
.ws1f{word-spacing:3.188032pt;}
.ws122{word-spacing:3.240669pt;}
.wsa9{word-spacing:3.241166pt;}
.ws123{word-spacing:3.251814pt;}
.ws71{word-spacing:3.347434pt;}
.wse6{word-spacing:3.400567pt;}
.wsba{word-spacing:3.453701pt;}
.ws5e{word-spacing:3.506835pt;}
.ws6e{word-spacing:3.559969pt;}
.wsac{word-spacing:3.666237pt;}
.wsa6{word-spacing:3.719371pt;}
.ws12b{word-spacing:3.730022pt;}
.ws2e{word-spacing:3.825638pt;}
.wsa8{word-spacing:3.878772pt;}
.ws24{word-spacing:3.931906pt;}
.ws124{word-spacing:3.935875pt;}
.ws11f{word-spacing:3.969126pt;}
.ws25{word-spacing:3.985040pt;}
.ws131{word-spacing:4.016947pt;}
.ws2f{word-spacing:4.303843pt;}
.ws4c{word-spacing:4.356977pt;}
.wse2{word-spacing:4.410111pt;}
.wsee{word-spacing:4.463245pt;}
.wsf0{word-spacing:4.516379pt;}
.ws83{word-spacing:4.569513pt;}
.wse4{word-spacing:4.622646pt;}
.wsf1{word-spacing:4.675780pt;}
.ws33{word-spacing:4.728914pt;}
.ws61{word-spacing:4.782048pt;}
.wsce{word-spacing:4.835182pt;}
.wsa3{word-spacing:4.845821pt;}
.wsbd{word-spacing:4.888316pt;}
.ws27{word-spacing:4.941450pt;}
.ws52{word-spacing:5.207119pt;}
.wsf7{word-spacing:5.308109pt;}
.ws81{word-spacing:5.366521pt;}
.ws12{word-spacing:5.393072pt;}
.ws13{word-spacing:5.467459pt;}
.wsaa{word-spacing:5.472788pt;}
.ws73{word-spacing:5.632190pt;}
.wsa7{word-spacing:5.685324pt;}
.ws35{word-spacing:5.738458pt;}
.ws82{word-spacing:5.791591pt;}
.wsbe{word-spacing:5.843142pt;}
.ws8a{word-spacing:5.950993pt;}
.ws6a{word-spacing:6.057261pt;}
.wsfa{word-spacing:6.073242pt;}
.ws69{word-spacing:6.110395pt;}
.wsd0{word-spacing:6.216662pt;}
.wscf{word-spacing:6.269796pt;}
.wsf3{word-spacing:6.312346pt;}
.wse8{word-spacing:6.588599pt;}
.wse9{word-spacing:6.801135pt;}
.ws2a{word-spacing:7.279340pt;}
.ws29{word-spacing:7.332474pt;}
.wseb{word-spacing:7.385607pt;}
.wsec{word-spacing:7.438741pt;}
.ws10{word-spacing:7.699075pt;}
.ws28{word-spacing:8.288883pt;}
.ws10b{word-spacing:8.799027pt;}
.ws7{word-spacing:9.258452pt;}
.wsea{word-spacing:9.351561pt;}
.ws12d{word-spacing:10.377114pt;}
.ws30{word-spacing:10.583595pt;}
.ws135{word-spacing:11.046605pt;}
.ws107{word-spacing:11.620454pt;}
.ws115{word-spacing:11.811738pt;}
.ws108{word-spacing:11.859558pt;}
.ws119{word-spacing:11.897702pt;}
.ws12a{word-spacing:11.898223pt;}
.ws104{word-spacing:11.899153pt;}
.ws102{word-spacing:11.900058pt;}
.ws12f{word-spacing:11.900348pt;}
.ws12c{word-spacing:11.901355pt;}
.ws136{word-spacing:11.902106pt;}
.ws11c{word-spacing:11.903275pt;}
.ws130{word-spacing:11.903360pt;}
.ws112{word-spacing:11.905186pt;}
.ws109{word-spacing:11.906509pt;}
.wsf9{word-spacing:11.907379pt;}
.ws12e{word-spacing:11.907661pt;}
.ws126{word-spacing:11.955200pt;}
.ws106{word-spacing:12.003021pt;}
.ws114{word-spacing:12.050842pt;}
.ws101{word-spacing:12.098662pt;}
.ws10f{word-spacing:12.146483pt;}
.ws8b{word-spacing:12.220789pt;}
.ws138{word-spacing:12.337766pt;}
.ws133{word-spacing:12.481229pt;}
.ws10c{word-spacing:12.815974pt;}
.ws111{word-spacing:13.198541pt;}
.ws3c{word-spacing:13.230333pt;}
.ws11e{word-spacing:13.342003pt;}
.ws8{word-spacing:13.761632pt;}
.ws5{word-spacing:13.763148pt;}
.wsd{word-spacing:14.348669pt;}
.wse{word-spacing:14.356730pt;}
.ws10a{word-spacing:14.776627pt;}
.ws129{word-spacing:14.872269pt;}
.wsf{word-spacing:15.732893pt;}
.ws6f{word-spacing:16.418365pt;}
.wsf8{word-spacing:17.215488pt;}
.ws11{word-spacing:24.399002pt;}
.ws98{word-spacing:73.160533pt;}
.wsde{word-spacing:89.545489pt;}
.ws96{word-spacing:92.360533pt;}
.wsdd{word-spacing:95.163392pt;}
.wsd9{word-spacing:95.737242pt;}
.wsa1{word-spacing:103.388570pt;}
.wsd8{word-spacing:110.292736pt;}
.wsdf{word-spacing:110.314897pt;}
.ws92{word-spacing:112.474522pt;}
.wsda{word-spacing:113.717862pt;}
.ws97{word-spacing:116.272000pt;}
.ws9a{word-spacing:120.173670pt;}
.wsd5{word-spacing:121.034445pt;}
.ws93{word-spacing:124.429722pt;}
.wsd4{word-spacing:124.981589pt;}
.wsa0{word-spacing:127.729357pt;}
.wsdc{word-spacing:130.356096pt;}
.ws94{word-spacing:132.941824pt;}
.wsdb{word-spacing:135.332156pt;}
.ws9b{word-spacing:136.337101pt;}
.ws91{word-spacing:143.558042pt;}
.wsd6{word-spacing:144.005939pt;}
.wsd7{word-spacing:161.032849pt;}
.ws9f{word-spacing:169.745382pt;}
.wsc8{word-spacing:179.280179pt;}
.wsc7{word-spacing:196.878234pt;}
.ws75{word-spacing:199.651840pt;}
.ws77{word-spacing:200.943002pt;}
.wsb3{word-spacing:201.588096pt;}
.wscb{word-spacing:211.176653pt;}
.wsc5{word-spacing:212.754739pt;}
.wsb4{word-spacing:215.145779pt;}
.wsb1{word-spacing:219.258368pt;}
.wsb8{word-spacing:220.788634pt;}
.wsb6{word-spacing:225.905459pt;}
.ws8c{word-spacing:228.439962pt;}
.ws7a{word-spacing:237.427345pt;}
.wsc6{word-spacing:239.512849pt;}
.wsb2{word-spacing:240.729907pt;}
.wsb0{word-spacing:249.337651pt;}
.ws76{word-spacing:303.563878pt;}
.ws8d{word-spacing:309.352755pt;}
.ws79{word-spacing:315.686545pt;}
.ws7b{word-spacing:334.889062pt;}
.ws7c{word-spacing:341.440512pt;}
.ws78{word-spacing:346.844262pt;}
.ws8f{word-spacing:780.961007pt;}
.ws90{word-spacing:847.384576pt;}
._1{margin-left:-10.616218pt;}
._0{margin-left:-7.077478pt;}
._6d{margin-left:-6.168883pt;}
._a{margin-left:-5.072887pt;}
._7{margin-left:-3.421811pt;}
._55{margin-left:-2.073699pt;}
._4{margin-left:-1.175671pt;}
._5{width:0.969929pt;}
._2{width:2.668388pt;}
._6{width:11.530016pt;}
._8{width:12.682865pt;}
._11{width:13.669999pt;}
._b{width:14.680986pt;}
._c{width:15.699660pt;}
._f{width:17.194135pt;}
._10{width:18.568889pt;}
._18{width:19.684700pt;}
._17{width:21.638937pt;}
._e{width:23.119958pt;}
._d{width:24.147945pt;}
._15{width:25.670384pt;}
._3e{width:26.772748pt;}
._9b{width:27.685900pt;}
._9{width:29.011008pt;}
._14{width:31.242714pt;}
._16{width:32.517926pt;}
._3d{width:33.867517pt;}
._92{width:35.705958pt;}
._9a{width:37.678638pt;}
._3{width:61.641905pt;}
._1b{width:80.614298pt;}
._95{width:84.342780pt;}
._77{width:85.981798pt;}
._74{width:100.662784pt;}
._73{width:105.588326pt;}
._63{width:111.565926pt;}
._76{width:115.343770pt;}
._75{width:120.284990pt;}
._66{width:123.234202pt;}
._5f{width:124.429722pt;}
._71{width:126.390374pt;}
._64{width:128.232252pt;}
._70{width:131.268096pt;}
._97{width:132.176691pt;}
._72{width:134.558387pt;}
._6a{width:136.374886pt;}
._81{width:142.338287pt;}
._68{width:148.340122pt;}
._67{width:149.285606pt;}
._99{width:152.500531pt;}
._62{width:154.126438pt;}
._58{width:159.673651pt;}
._5d{width:164.120986pt;}
._6b{width:166.389436pt;}
._96{width:168.042291pt;}
._91{width:168.950886pt;}
._93{width:170.532855pt;}
._56{width:172.920013pt;}
._57{width:174.163354pt;}
._65{width:175.502336pt;}
._6e{width:181.432115pt;}
._19{width:188.557414pt;}
._98{width:191.283200pt;}
._36{width:192.348757pt;}
._1a{width:197.093431pt;}
._32{width:198.838886pt;}
._94{width:202.616730pt;}
._8e{width:204.864307pt;}
._89{width:207.207526pt;}
._1f{width:212.946022pt;}
._87{width:216.819507pt;}
._6f{width:217.967206pt;}
._8a{width:221.341500pt;}
._86{width:226.879279pt;}
._90{width:227.911509pt;}
._8b{width:228.965990pt;}
._82{width:230.352794pt;}
._7f{width:232.743834pt;}
._28{width:237.717197pt;}
._21{width:239.964774pt;}
._23{width:242.499277pt;}
._8c{width:245.129421pt;}
._7c{width:247.042253pt;}
._26{width:250.867917pt;}
._7a{width:251.824333pt;}
._80{width:252.732928pt;}
._8d{width:255.602176pt;}
._7d{width:263.588250pt;}
._83{width:267.844301pt;}
._40{width:269.565850pt;}
._7e{width:271.909069pt;}
._43{width:281.138483pt;}
._44{width:293.093683pt;}
._85{width:313.657165pt;}
._78{width:315.957734pt;}
._46{width:321.307955pt;}
._5e{width:325.037978pt;}
._79{width:329.804484pt;}
._31{width:341.249229pt;}
._30{width:346.844262pt;}
._2e{width:348.900557pt;}
._2c{width:353.395712pt;}
._29{width:358.799462pt;}
._1e{width:360.046685pt;}
._61{width:364.063633pt;}
._1c{width:365.350912pt;}
._24{width:378.950323pt;}
._27{width:382.992905pt;}
._49{width:384.479232pt;}
._20{width:386.149078pt;}
._22{width:387.822806pt;}
._4a{width:389.309133pt;}
._60{width:393.660826pt;}
._25{width:397.004399pt;}
._59{width:406.285517pt;}
._5a{width:409.202586pt;}
._5b{width:432.443494pt;}
._5c{width:442.055475pt;}
._34{width:445.028429pt;}
._35{width:463.499878pt;}
._33{width:484.281242pt;}
._45{width:491.795857pt;}
._1d{width:509.243699pt;}
._2b{width:523.657805pt;}
._42{width:535.357738pt;}
._2a{width:539.466445pt;}
._2f{width:542.957363pt;}
._4b{width:544.391987pt;}
._2d{width:581.972693pt;}
._8f{width:608.280576pt;}
._88{width:620.235776pt;}
._50{width:622.921865pt;}
._47{width:627.217613pt;}
._7b{width:632.190976pt;}
._69{width:679.724851pt;}
._48{width:684.787385pt;}
._6c{width:692.349542pt;}
._4d{width:728.756693pt;}
._3f{width:758.633053pt;}
._3c{width:760.828928pt;}
._4f{width:768.034091pt;}
._3a{width:772.353741pt;}
._41{width:784.022016pt;}
._38{width:793.538355pt;}
._12{width:845.383194pt;}
._3b{width:848.293171pt;}
._39{width:859.817984pt;}
._37{width:881.050419pt;}
._4e{width:935.761297pt;}
._4c{width:1053.245926pt;}
._53{width:1085.942699pt;}
._52{width:1203.410432pt;}
._51{width:1346.442445pt;}
._54{width:1401.627648pt;}
._84{width:2257.451700pt;}
._13{width:2278.705034pt;}
.fsb{font-size:31.880533pt;}
.fs2{font-size:35.359960pt;}
.fs1{font-size:36.555334pt;}
.fsa{font-size:37.193600pt;}
.fs9{font-size:37.276537pt;}
.fs0{font-size:40.029579pt;}
.fs7{font-size:40.381867pt;}
.fs3{font-size:41.862621pt;}
.fs8{font-size:41.988267pt;}
.fsc{font-size:42.507200pt;}
.fsf{font-size:44.292800pt;}
.fsd{font-size:47.820800pt;}
.fs10{font-size:49.829333pt;}
.fs5{font-size:53.133867pt;}
.fse{font-size:55.365867pt;}
.fs6{font-size:95.641600pt;}
.fs4{font-size:120.948480pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:3.044747pt;}
.y4{bottom:3.805560pt;}
.y3{bottom:7.075016pt;}
.y2{bottom:10.869741pt;}
.yb{bottom:12.578910pt;}
.y5{bottom:14.337350pt;}
.y4e{bottom:28.346667pt;}
.y119{bottom:84.197333pt;}
.y1e6{bottom:90.854667pt;}
.y24{bottom:91.398667pt;}
.y242{bottom:92.050667pt;}
.y4d{bottom:92.648000pt;}
.yc4{bottom:92.848000pt;}
.y20a{bottom:94.162667pt;}
.y84{bottom:96.817333pt;}
.y118{bottom:100.934667pt;}
.y23{bottom:107.298667pt;}
.y241{bottom:107.393333pt;}
.y1e5{bottom:107.592000pt;}
.y4c{bottom:109.385333pt;}
.y209{bottom:109.505333pt;}
.yc3{bottom:109.585333pt;}
.yb8{bottom:111.178667pt;}
.y83{bottom:113.554667pt;}
.y117{bottom:117.672000pt;}
.ye1{bottom:121.054667pt;}
.y240{bottom:122.736000pt;}
.y22{bottom:123.200000pt;}
.y1e4{bottom:124.329333pt;}
.y208{bottom:124.848000pt;}
.y4b{bottom:126.122667pt;}
.yc2{bottom:126.322667pt;}
.yb7{bottom:127.916000pt;}
.y82{bottom:130.292000pt;}
.ydf{bottom:133.674667pt;}
.y116{bottom:134.409333pt;}
.ye0{bottom:137.532000pt;}
.y23f{bottom:138.078667pt;}
.y21{bottom:139.100000pt;}
.y207{bottom:140.190667pt;}
.y1e3{bottom:141.066667pt;}
.y4a{bottom:142.860000pt;}
.yb6{bottom:144.653333pt;}
.y81{bottom:147.028000pt;}
.yc1{bottom:147.045333pt;}
.y115{bottom:151.146667pt;}
.y23e{bottom:153.421333pt;}
.yde{bottom:153.893333pt;}
.y20{bottom:155.000000pt;}
.y1b1{bottom:155.033333pt;}
.y206{bottom:155.533333pt;}
.y1e2{bottom:157.804000pt;}
.y49{bottom:159.597333pt;}
.yb5{bottom:161.390667pt;}
.y80{bottom:163.765333pt;}
.yc0{bottom:164.977333pt;}
.y1af{bottom:167.653333pt;}
.ydd{bottom:168.505333pt;}
.y23d{bottom:168.762667pt;}
.y205{bottom:170.876000pt;}
.y1f{bottom:170.901333pt;}
.y1b0{bottom:171.510667pt;}
.y1e1{bottom:174.541333pt;}
.y142{bottom:175.376000pt;}
.y48{bottom:176.334667pt;}
.yb4{bottom:178.128000pt;}
.y7f{bottom:180.502667pt;}
.y114{bottom:180.636000pt;}
.ydc{bottom:183.117333pt;}
.y23c{bottom:184.105333pt;}
.y204{bottom:186.218667pt;}
.y1e{bottom:186.801333pt;}
.y1ae{bottom:187.872000pt;}
.y1e0{bottom:191.278667pt;}
.y141{bottom:192.113333pt;}
.y47{bottom:193.072000pt;}
.y113{bottom:193.256000pt;}
.y1ac{bottom:194.153333pt;}
.yb3{bottom:194.865333pt;}
.y1ad{bottom:194.948000pt;}
.y7e{bottom:197.240000pt;}
.y17c{bottom:198.989333pt;}
.y23b{bottom:199.448000pt;}
.y1d{bottom:202.701333pt;}
.ydb{bottom:204.132000pt;}
.y203{bottom:205.545333pt;}
.y1df{bottom:208.016000pt;}
.y140{bottom:208.850667pt;}
.y46{bottom:209.809333pt;}
.yda{bottom:211.437333pt;}
.yb2{bottom:211.602667pt;}
.y112{bottom:213.476000pt;}
.y7d{bottom:213.977333pt;}
.y23a{bottom:214.790667pt;}
.y17b{bottom:215.726667pt;}
.y1ab{bottom:223.498667pt;}
.y1de{bottom:224.753333pt;}
.y13f{bottom:225.588000pt;}
.y45{bottom:226.546667pt;}
.y111{bottom:228.086667pt;}
.yb1{bottom:228.340000pt;}
.y1a9{bottom:229.778667pt;}
.y239{bottom:230.133333pt;}
.y1aa{bottom:230.574667pt;}
.y7c{bottom:230.714667pt;}
.y17a{bottom:232.464000pt;}
.yd9{bottom:233.633333pt;}
.y202{bottom:235.433333pt;}
.y1dd{bottom:241.490667pt;}
.y13e{bottom:242.324000pt;}
.y110{bottom:242.698667pt;}
.y44{bottom:243.284000pt;}
.yb0{bottom:245.077333pt;}
.y238{bottom:245.476000pt;}
.y7b{bottom:247.452000pt;}
.yd8{bottom:248.522667pt;}
.y179{bottom:249.201333pt;}
.y10f{bottom:257.310667pt;}
.y1dc{bottom:258.228000pt;}
.y201{bottom:259.025333pt;}
.y13d{bottom:259.061333pt;}
.y1a8{bottom:259.124000pt;}
.y43{bottom:260.020000pt;}
.y237{bottom:260.818667pt;}
.yaf{bottom:261.814667pt;}
.yd7{bottom:263.134667pt;}
.y7a{bottom:264.189333pt;}
.y1a6{bottom:265.405333pt;}
.y178{bottom:265.938667pt;}
.y1a7{bottom:266.200000pt;}
.y10e{bottom:271.922667pt;}
.y1c{bottom:273.154667pt;}
.y1db{bottom:274.965333pt;}
.y13c{bottom:275.798667pt;}
.y236{bottom:276.161333pt;}
.y42{bottom:276.757333pt;}
.yd6{bottom:277.746667pt;}
.yae{bottom:278.552000pt;}
.y79{bottom:280.926667pt;}
.y200{bottom:282.617333pt;}
.y176{bottom:282.676000pt;}
.ye5{bottom:283.373333pt;}
.y10d{bottom:286.534667pt;}
.y177{bottom:287.497333pt;}
.y1b{bottom:289.054667pt;}
.y235{bottom:291.502667pt;}
.y1da{bottom:291.702667pt;}
.yd5{bottom:292.358667pt;}
.y13b{bottom:292.536000pt;}
.y41{bottom:293.494667pt;}
.y1a5{bottom:294.750667pt;}
.yad{bottom:295.289333pt;}
.y78{bottom:297.664000pt;}
.y175{bottom:299.413333pt;}
.yd4{bottom:299.664000pt;}
.y1a2{bottom:300.848000pt;}
.y1a4{bottom:301.030667pt;}
.y1a3{bottom:301.825333pt;}
.y1a{bottom:304.954667pt;}
.y1ff{bottom:306.208000pt;}
.y234{bottom:306.845333pt;}
.y10c{bottom:307.549333pt;}
.y1d9{bottom:308.440000pt;}
.y13a{bottom:309.273333pt;}
.y40{bottom:310.232000pt;}
.yac{bottom:312.026667pt;}
.y77{bottom:314.401333pt;}
.y174{bottom:316.150667pt;}
.y19{bottom:320.856000pt;}
.yd3{bottom:321.581333pt;}
.y1fe{bottom:321.829333pt;}
.y233{bottom:322.188000pt;}
.y1d8{bottom:325.177333pt;}
.y139{bottom:326.010667pt;}
.y3f{bottom:326.969333pt;}
.y10b{bottom:328.562667pt;}
.yab{bottom:328.764000pt;}
.yd2{bottom:328.888000pt;}
.y1a1{bottom:330.376000pt;}
.y76{bottom:331.138667pt;}
.y173{bottom:332.888000pt;}
.y232{bottom:337.530667pt;}
.y1d7{bottom:341.914667pt;}
.y138{bottom:342.748000pt;}
.y3e{bottom:343.706667pt;}
.y1a0{bottom:344.988000pt;}
.y1fd{bottom:345.421333pt;}
.yaa{bottom:345.501333pt;}
.y75{bottom:347.876000pt;}
.y10a{bottom:349.577333pt;}
.y172{bottom:349.625333pt;}
.yd1{bottom:350.805333pt;}
.y231{bottom:352.873333pt;}
.y18{bottom:354.688000pt;}
.y1d6{bottom:358.652000pt;}
.y137{bottom:359.485333pt;}
.y3d{bottom:360.444000pt;}
.y1fc{bottom:361.042667pt;}
.ya9{bottom:362.238667pt;}
.y109{bottom:364.188000pt;}
.y74{bottom:364.613333pt;}
.yd0{bottom:365.417333pt;}
.y19f{bottom:366.001333pt;}
.y171{bottom:366.362667pt;}
.y230{bottom:368.216000pt;}
.y17{bottom:370.589333pt;}
.y1d5{bottom:375.389333pt;}
.y136{bottom:376.222667pt;}
.y3c{bottom:377.181333pt;}
.y108{bottom:378.800000pt;}
.ya8{bottom:378.976000pt;}
.ycf{bottom:380.029333pt;}
.y170{bottom:380.365333pt;}
.y73{bottom:381.350667pt;}
.y16f{bottom:383.100000pt;}
.y22f{bottom:383.558667pt;}
.y1fb{bottom:384.634667pt;}
.y16{bottom:386.489333pt;}
.y1d4{bottom:392.126667pt;}
.y135{bottom:392.960000pt;}
.y3b{bottom:393.918667pt;}
.y19e{bottom:394.453333pt;}
.yce{bottom:394.641333pt;}
.ya7{bottom:395.713333pt;}
.y16e{bottom:397.102667pt;}
.y16d{bottom:397.410667pt;}
.y72{bottom:398.088000pt;}
.y22e{bottom:398.901333pt;}
.y107{bottom:399.814667pt;}
.y16c{bottom:399.836000pt;}
.y1fa{bottom:400.256000pt;}
.y1d3{bottom:408.864000pt;}
.ycd{bottom:409.253333pt;}
.y134{bottom:409.697333pt;}
.y3a{bottom:410.656000pt;}
.ya6{bottom:412.450667pt;}
.y22d{bottom:414.244000pt;}
.y71{bottom:414.825333pt;}
.y1f9{bottom:415.877333pt;}
.ycc{bottom:416.558667pt;}
.y16b{bottom:416.573333pt;}
.y15{bottom:418.330667pt;}
.y106{bottom:420.828000pt;}
.y19d{bottom:425.144000pt;}
.y1d2{bottom:425.601333pt;}
.y133{bottom:426.434667pt;}
.ya5{bottom:429.188000pt;}
.y22c{bottom:429.585333pt;}
.y39{bottom:431.378667pt;}
.y1f8{bottom:431.498667pt;}
.y70{bottom:431.562667pt;}
.y16a{bottom:433.310667pt;}
.y14{bottom:434.230667pt;}
.y105{bottom:435.440000pt;}
.ycb{bottom:438.477333pt;}
.y19c{bottom:441.881333pt;}
.y1d1{bottom:442.338667pt;}
.y132{bottom:443.172000pt;}
.y22b{bottom:444.928000pt;}
.ya4{bottom:445.925333pt;}
.y6f{bottom:448.300000pt;}
.y169{bottom:450.048000pt;}
.y104{bottom:450.052000pt;}
.yca{bottom:453.088000pt;}
.y19b{bottom:458.618667pt;}
.y1d0{bottom:459.076000pt;}
.y131{bottom:459.909333pt;}
.y22a{bottom:460.270667pt;}
.ya3{bottom:462.662667pt;}
.y1f7{bottom:463.060000pt;}
.y168{bottom:464.050667pt;}
.y6e{bottom:465.037333pt;}
.y13{bottom:466.070667pt;}
.y167{bottom:466.785333pt;}
.yc9{bottom:467.700000pt;}
.y103{bottom:471.066667pt;}
.y19a{bottom:475.356000pt;}
.y229{bottom:475.613333pt;}
.y1cf{bottom:475.813333pt;}
.ya2{bottom:479.398667pt;}
.y1f6{bottom:479.797333pt;}
.y130{bottom:480.632000pt;}
.y166{bottom:480.788000pt;}
.y165{bottom:481.096000pt;}
.y6d{bottom:481.774667pt;}
.y12{bottom:481.972000pt;}
.y102{bottom:483.513333pt;}
.y164{bottom:483.522667pt;}
.yc8{bottom:488.714667pt;}
.y228{bottom:490.956000pt;}
.y199{bottom:492.093333pt;}
.y1ce{bottom:492.549333pt;}
.yc7{bottom:496.020000pt;}
.ya1{bottom:496.136000pt;}
.y1f5{bottom:496.534667pt;}
.y11{bottom:497.872000pt;}
.y38{bottom:498.178667pt;}
.y6c{bottom:498.512000pt;}
.y163{bottom:500.260000pt;}
.y227{bottom:506.298667pt;}
.y198{bottom:508.830667pt;}
.y1cd{bottom:509.286667pt;}
.y12f{bottom:510.520000pt;}
.ya0{bottom:512.873333pt;}
.y1f4{bottom:513.272000pt;}
.y10{bottom:513.772000pt;}
.y6b{bottom:515.249333pt;}
.y161{bottom:516.997333pt;}
.y101{bottom:520.186667pt;}
.y226{bottom:521.641333pt;}
.y162{bottom:521.820000pt;}
.y197{bottom:525.568000pt;}
.y1cc{bottom:526.024000pt;}
.y12e{bottom:527.257333pt;}
.y9f{bottom:529.610667pt;}
.yf{bottom:529.673333pt;}
.y1f3{bottom:530.009333pt;}
.y37{bottom:531.413333pt;}
.yc6{bottom:531.432000pt;}
.y6a{bottom:531.986667pt;}
.y1f1{bottom:533.596000pt;}
.y160{bottom:533.734667pt;}
.y225{bottom:536.984000pt;}
.y196{bottom:542.305333pt;}
.y1cb{bottom:542.761333pt;}
.y12d{bottom:543.994667pt;}
.ye{bottom:545.573333pt;}
.y9e{bottom:546.348000pt;}
.y1f2{bottom:546.746667pt;}
.y36{bottom:548.709333pt;}
.y69{bottom:548.724000pt;}
.y224{bottom:552.325333pt;}
.y100{bottom:554.204000pt;}
.y195{bottom:559.042667pt;}
.y1ca{bottom:559.498667pt;}
.y12c{bottom:560.732000pt;}
.yd{bottom:561.473333pt;}
.y9d{bottom:563.085333pt;}
.y1f0{bottom:563.484000pt;}
.y68{bottom:565.461333pt;}
.y35{bottom:566.004000pt;}
.yff{bottom:566.824000pt;}
.y223{bottom:567.668000pt;}
.y15f{bottom:571.194667pt;}
.y194{bottom:575.780000pt;}
.y1c9{bottom:576.236000pt;}
.y12b{bottom:577.469333pt;}
.y9c{bottom:579.822667pt;}
.y1ef{bottom:580.221333pt;}
.ya{bottom:581.358715pt;}
.y67{bottom:582.198667pt;}
.y222{bottom:583.010667pt;}
.y34{bottom:583.300000pt;}
.y15d{bottom:583.813333pt;}
.yfe{bottom:587.042667pt;}
.y15e{bottom:587.672000pt;}
.y193{bottom:592.517333pt;}
.y1c8{bottom:592.973333pt;}
.y12a{bottom:594.206667pt;}
.y9b{bottom:596.560000pt;}
.y1ee{bottom:596.958667pt;}
.y221{bottom:598.353333pt;}
.y66{bottom:598.934667pt;}
.y33{bottom:600.594667pt;}
.yfd{bottom:601.654667pt;}
.y15c{bottom:604.033333pt;}
.y192{bottom:609.254667pt;}
.y1c7{bottom:609.710667pt;}
.y129{bottom:610.942667pt;}
.y9a{bottom:613.297333pt;}
.y1ed{bottom:613.696000pt;}
.y65{bottom:615.672000pt;}
.yfc{bottom:616.266667pt;}
.y32{bottom:617.889333pt;}
.y15b{bottom:618.645333pt;}
.y191{bottom:625.992000pt;}
.y1c6{bottom:626.448000pt;}
.y128{bottom:627.680000pt;}
.y220{bottom:629.038667pt;}
.y99{bottom:630.034667pt;}
.y1ec{bottom:630.433333pt;}
.yfb{bottom:630.878667pt;}
.y64{bottom:632.409333pt;}
.y15a{bottom:633.812000pt;}
.y31{bottom:635.185333pt;}
.y190{bottom:642.729333pt;}
.y1c5{bottom:643.185333pt;}
.y21f{bottom:644.381333pt;}
.y127{bottom:644.417333pt;}
.y98{bottom:646.772000pt;}
.y1eb{bottom:647.170667pt;}
.y155{bottom:647.772000pt;}
.y159{bottom:648.980000pt;}
.y63{bottom:649.146667pt;}
.yfa{bottom:651.892000pt;}
.y30{bottom:652.480000pt;}
.y18f{bottom:659.466667pt;}
.y21e{bottom:659.724000pt;}
.y1c4{bottom:659.922667pt;}
.y126{bottom:661.154667pt;}
.y97{bottom:663.509333pt;}
.y158{bottom:663.592000pt;}
.y1ea{bottom:663.908000pt;}
.y62{bottom:665.884000pt;}
.yf9{bottom:666.504000pt;}
.y2f{bottom:669.776000pt;}
.y21d{bottom:675.066667pt;}
.y18e{bottom:676.204000pt;}
.y1c3{bottom:676.660000pt;}
.y125{bottom:677.892000pt;}
.y157{bottom:678.202667pt;}
.y96{bottom:680.246667pt;}
.y1e9{bottom:680.645333pt;}
.yf8{bottom:681.116000pt;}
.y61{bottom:686.606667pt;}
.y2e{bottom:687.070667pt;}
.y21c{bottom:690.408000pt;}
.y156{bottom:692.814667pt;}
.y1c2{bottom:693.397333pt;}
.y124{bottom:694.629333pt;}
.yf7{bottom:695.728000pt;}
.y95{bottom:696.984000pt;}
.y1e8{bottom:697.382667pt;}
.ybf{bottom:700.969333pt;}
.y2d{bottom:704.365333pt;}
.y21b{bottom:705.750667pt;}
.y1c1{bottom:710.134667pt;}
.yf6{bottom:710.340000pt;}
.y123{bottom:711.366667pt;}
.y94{bottom:713.721333pt;}
.y154{bottom:713.829333pt;}
.y1e7{bottom:714.120000pt;}
.y60{bottom:716.494667pt;}
.y18d{bottom:717.520000pt;}
.y21a{bottom:721.093333pt;}
.y2c{bottom:721.661333pt;}
.yf5{bottom:724.952000pt;}
.y18b{bottom:726.282667pt;}
.y1c0{bottom:726.872000pt;}
.y153{bottom:728.441333pt;}
.y18c{bottom:730.140000pt;}
.y93{bottom:730.458667pt;}
.ybe{bottom:730.857333pt;}
.y5f{bottom:733.232000pt;}
.y219{bottom:736.436000pt;}
.y189{bottom:738.901333pt;}
.y2b{bottom:738.956000pt;}
.yf4{bottom:739.564000pt;}
.y18a{bottom:742.758667pt;}
.y152{bottom:743.608000pt;}
.y1bf{bottom:743.609333pt;}
.y122{bottom:747.041333pt;}
.y92{bottom:747.196000pt;}
.ybd{bottom:747.594667pt;}
.y5e{bottom:749.969333pt;}
.yc5{bottom:751.181333pt;}
.y218{bottom:751.778667pt;}
.yf3{bottom:754.176000pt;}
.y2a{bottom:756.250667pt;}
.y14d{bottom:757.568000pt;}
.y151{bottom:758.774667pt;}
.y188{bottom:759.121333pt;}
.y121{bottom:759.660000pt;}
.y1be{bottom:760.346667pt;}
.y91{bottom:763.933333pt;}
.ybc{bottom:764.332000pt;}
.y5d{bottom:766.706667pt;}
.y217{bottom:767.121333pt;}
.y120{bottom:772.280000pt;}
.y150{bottom:773.386667pt;}
.y187{bottom:773.733333pt;}
.yf2{bottom:775.189333pt;}
.y1bd{bottom:777.084000pt;}
.y90{bottom:780.670667pt;}
.ybb{bottom:781.069333pt;}
.y216{bottom:782.464000pt;}
.y5c{bottom:783.444000pt;}
.y14f{bottom:787.998667pt;}
.y186{bottom:788.900000pt;}
.y11f{bottom:789.029333pt;}
.yf1{bottom:789.801333pt;}
.y29{bottom:790.549333pt;}
.y1bc{bottom:793.821333pt;}
.ye3{bottom:797.408000pt;}
.yba{bottom:797.806667pt;}
.y5b{bottom:800.181333pt;}
.y8f{bottom:801.393333pt;}
.ye4{bottom:802.229333pt;}
.y14e{bottom:802.610667pt;}
.y11e{bottom:803.641333pt;}
.y185{bottom:804.068000pt;}
.yf0{bottom:804.413333pt;}
.y28{bottom:804.896000pt;}
.y1bb{bottom:810.558667pt;}
.y215{bottom:813.149333pt;}
.yb9{bottom:814.544000pt;}
.y5a{bottom:816.918667pt;}
.ye2{bottom:818.130667pt;}
.y11d{bottom:818.253333pt;}
.y184{bottom:818.678667pt;}
.yef{bottom:819.025333pt;}
.y27{bottom:823.100000pt;}
.y14c{bottom:823.625333pt;}
.y1ba{bottom:827.296000pt;}
.y214{bottom:828.490667pt;}
.y8e{bottom:831.281333pt;}
.y183{bottom:833.290667pt;}
.y26{bottom:833.588000pt;}
.yee{bottom:833.637333pt;}
.y59{bottom:833.656000pt;}
.y14b{bottom:838.237333pt;}
.y11c{bottom:839.268000pt;}
.y213{bottom:843.833333pt;}
.y1b9{bottom:844.033333pt;}
.y182{bottom:847.902667pt;}
.y8d{bottom:848.018667pt;}
.y58{bottom:850.393333pt;}
.y25{bottom:851.792000pt;}
.y14a{bottom:853.404000pt;}
.y11b{bottom:853.880000pt;}
.yed{bottom:854.650667pt;}
.y212{bottom:859.176000pt;}
.y1b8{bottom:860.770667pt;}
.y8c{bottom:864.754667pt;}
.y57{bottom:867.130667pt;}
.y145{bottom:867.545333pt;}
.y149{bottom:868.570667pt;}
.y181{bottom:868.917333pt;}
.yec{bottom:869.262667pt;}
.y211{bottom:874.518667pt;}
.y1b7{bottom:877.508000pt;}
.y8b{bottom:881.492000pt;}
.y11a{bottom:881.985333pt;}
.y148{bottom:883.182667pt;}
.y180{bottom:883.529333pt;}
.y56{bottom:883.868000pt;}
.yeb{bottom:883.874667pt;}
.y9{bottom:887.520000pt;}
.y210{bottom:889.861333pt;}
.y1b6{bottom:894.245333pt;}
.y147{bottom:897.794667pt;}
.y17f{bottom:898.141333pt;}
.y8a{bottom:898.229333pt;}
.yea{bottom:898.486667pt;}
.y55{bottom:900.605333pt;}
.y20f{bottom:905.204000pt;}
.y1b5{bottom:910.982667pt;}
.y146{bottom:912.406667pt;}
.y17e{bottom:912.752000pt;}
.ye9{bottom:913.098667pt;}
.y89{bottom:914.966667pt;}
.y54{bottom:917.342667pt;}
.y20e{bottom:920.546667pt;}
.y8{bottom:925.510667pt;}
.y1b4{bottom:927.720000pt;}
.y88{bottom:931.704000pt;}
.y144{bottom:933.420000pt;}
.y17d{bottom:933.766667pt;}
.y53{bottom:934.080000pt;}
.ye8{bottom:934.112000pt;}
.y20d{bottom:935.889333pt;}
.y1b3{bottom:944.456000pt;}
.y87{bottom:948.441333pt;}
.y7{bottom:950.616000pt;}
.y52{bottom:950.817333pt;}
.y20c{bottom:951.230667pt;}
.y143{bottom:954.780000pt;}
.ye7{bottom:955.126667pt;}
.y1b2{bottom:961.193333pt;}
.y86{bottom:965.178667pt;}
.y20b{bottom:966.573333pt;}
.y51{bottom:967.554667pt;}
.y6{bottom:975.722667pt;}
.y85{bottom:981.916000pt;}
.ye6{bottom:983.233333pt;}
.y50{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y4f{bottom:1043.020000pt;}
.h9{height:22.673858pt;}
.he{height:23.209028pt;}
.h4{height:26.246730pt;}
.hc{height:27.076941pt;}
.hd{height:27.262909pt;}
.h1f{height:28.170221pt;}
.h3{height:28.741238pt;}
.h1a{height:29.397999pt;}
.hb{height:29.433775pt;}
.h22{height:29.670026pt;}
.ha{height:30.399505pt;}
.hf{height:30.945242pt;}
.h14{height:31.157778pt;}
.h21{height:33.904947pt;}
.h10{height:34.574438pt;}
.h11{height:34.813542pt;}
.h2b{height:35.052646pt;}
.h1b{height:35.212691pt;}
.h1d{height:37.087439pt;}
.h23{height:37.671911pt;}
.h12{height:38.415786pt;}
.h1e{height:38.638362pt;}
.h13{height:38.681455pt;}
.h6{height:38.947124pt;}
.h19{height:43.322274pt;}
.h2c{height:43.660390pt;}
.h24{height:44.250973pt;}
.h26{height:44.431607pt;}
.h25{height:44.436941pt;}
.h2{height:45.233304pt;}
.h8{height:48.481423pt;}
.h1c{height:48.688666pt;}
.h16{height:63.795772pt;}
.h15{height:63.801105pt;}
.h18{height:64.034876pt;}
.h17{height:64.040209pt;}
.h29{height:68.136209pt;}
.h2a{height:68.141542pt;}
.h20{height:68.841105pt;}
.h28{height:68.866876pt;}
.h7{height:69.148877pt;}
.h5{height:79.946609pt;}
.h27{height:93.022438pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:251.923925pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:25.236320pt;}
.x2{left:28.870570pt;}
.x3{left:38.475895pt;}
.x5{left:45.606984pt;}
.x1{left:48.000000pt;}
.x4c{left:56.406667pt;}
.xad{left:57.764000pt;}
.x46{left:61.170667pt;}
.x4e{left:65.008000pt;}
.x5f{left:67.442667pt;}
.x47{left:69.634667pt;}
.x5d{left:71.956000pt;}
.x12{left:74.361333pt;}
.x1c{left:76.346667pt;}
.x5c{left:80.886667pt;}
.x19{left:82.992000pt;}
.x14{left:85.981333pt;}
.x93{left:90.046667pt;}
.x4b{left:92.840000pt;}
.x4d{left:94.244000pt;}
.x43{left:104.746667pt;}
.x44{left:107.466667pt;}
.x5a{left:118.885333pt;}
.x4a{left:123.164000pt;}
.x5b{left:128.258667pt;}
.x40{left:130.718667pt;}
.x49{left:134.598667pt;}
.x52{left:135.616000pt;}
.x54{left:138.981333pt;}
.x45{left:144.156000pt;}
.x58{left:145.514667pt;}
.x3f{left:146.493333pt;}
.x59{left:147.924000pt;}
.x97{left:151.713333pt;}
.x51{left:154.838667pt;}
.xae{left:156.392000pt;}
.x7e{left:157.293333pt;}
.xaf{left:163.700000pt;}
.x41{left:164.605333pt;}
.x95{left:169.514667pt;}
.x96{left:170.757333pt;}
.x7b{left:173.890667pt;}
.x7d{left:175.558667pt;}
.x94{left:177.184000pt;}
.x42{left:179.010667pt;}
.x7c{left:181.984000pt;}
.x48{left:190.244000pt;}
.xa7{left:191.977333pt;}
.x3d{left:200.709333pt;}
.x3e{left:203.848000pt;}
.x79{left:216.473333pt;}
.xf{left:221.026667pt;}
.x8{left:222.073333pt;}
.x6{left:223.020000pt;}
.x24{left:227.040000pt;}
.x6e{left:229.661333pt;}
.x64{left:230.989333pt;}
.x63{left:232.201333pt;}
.x3b{left:236.921333pt;}
.x62{left:238.628000pt;}
.x7{left:241.085333pt;}
.x61{left:241.993333pt;}
.x60{left:245.836000pt;}
.x16{left:248.649333pt;}
.x13{left:249.838667pt;}
.xb{left:251.365333pt;}
.x5e{left:257.650667pt;}
.x27{left:262.581333pt;}
.x7f{left:264.665333pt;}
.xb1{left:270.270667pt;}
.x28{left:271.328000pt;}
.x1b{left:272.876000pt;}
.x9{left:275.068000pt;}
.xb2{left:276.913333pt;}
.x2d{left:280.564000pt;}
.x9c{left:282.996000pt;}
.x53{left:284.104000pt;}
.xa{left:285.501333pt;}
.x2e{left:293.213333pt;}
.x9d{left:294.396000pt;}
.x6f{left:311.041333pt;}
.x65{left:315.134667pt;}
.x70{left:317.682667pt;}
.x15{left:319.165333pt;}
.x11{left:321.808000pt;}
.x1f{left:328.360000pt;}
.x92{left:330.938667pt;}
.x68{left:334.328000pt;}
.x9e{left:337.426667pt;}
.x20{left:339.904000pt;}
.xd{left:342.449333pt;}
.x25{left:344.593333pt;}
.x69{left:345.538667pt;}
.xb3{left:348.397333pt;}
.x80{left:350.624000pt;}
.x36{left:353.732000pt;}
.x18{left:355.341333pt;}
.x10{left:357.417333pt;}
.x26{left:358.853333pt;}
.x4f{left:364.082667pt;}
.x37{left:367.102667pt;}
.x21{left:368.298667pt;}
.x1a{left:370.280000pt;}
.x8e{left:372.385333pt;}
.x22{left:379.842667pt;}
.xe{left:388.808000pt;}
.xa4{left:393.725333pt;}
.xa3{left:396.574667pt;}
.xc{left:400.704000pt;}
.x8b{left:403.166667pt;}
.x81{left:408.178667pt;}
.x75{left:416.490667pt;}
.xb5{left:419.042667pt;}
.x1d{left:421.645333pt;}
.x76{left:427.417333pt;}
.x1e{left:429.304000pt;}
.x2f{left:433.802667pt;}
.x66{left:436.497333pt;}
.xb4{left:437.661333pt;}
.x23{left:439.636000pt;}
.x67{left:443.494667pt;}
.x30{left:446.452000pt;}
.x8f{left:448.856000pt;}
.x50{left:450.773333pt;}
.xa5{left:458.109333pt;}
.x38{left:465.100000pt;}
.x82{left:466.626667pt;}
.x85{left:470.513333pt;}
.x77{left:473.444000pt;}
.x83{left:474.778667pt;}
.x39{left:479.341333pt;}
.x78{left:487.693333pt;}
.x73{left:493.140000pt;}
.x98{left:494.525333pt;}
.x74{left:499.781333pt;}
.xa1{left:504.808000pt;}
.x99{left:505.930667pt;}
.xaa{left:507.390667pt;}
.xa9{left:511.598667pt;}
.xa2{left:516.457333pt;}
.x55{left:520.380000pt;}
.x29{left:522.889333pt;}
.x86{left:532.600000pt;}
.x2a{left:534.656000pt;}
.x9a{left:541.758667pt;}
.x87{left:547.800000pt;}
.x9b{left:549.072000pt;}
.x3c{left:551.665333pt;}
.x6a{left:561.358667pt;}
.x6b{left:568.000000pt;}
.x56{left:572.044000pt;}
.x31{left:573.601333pt;}
.x57{left:575.033333pt;}
.xa8{left:577.680000pt;}
.x32{left:585.392000pt;}
.x7a{left:595.264000pt;}
.x88{left:606.125333pt;}
.x17{left:607.529333pt;}
.x6c{left:609.713333pt;}
.x33{left:614.916000pt;}
.x6d{left:616.354667pt;}
.xb0{left:618.589333pt;}
.x34{left:626.705333pt;}
.x89{left:636.201333pt;}
.x8c{left:637.373333pt;}
.x90{left:650.426667pt;}
.x35{left:667.826667pt;}
.x9f{left:675.861333pt;}
.xa0{left:683.170667pt;}
.x2b{left:687.804000pt;}
.x84{left:690.072000pt;}
.x71{left:695.157333pt;}
.x8a{left:698.288000pt;}
.x2c{left:699.572000pt;}
.xac{left:700.684000pt;}
.x72{left:701.798667pt;}
.x91{left:702.880000pt;}
.xab{left:710.332000pt;}
.x8d{left:712.032000pt;}
.x3a{left:713.654667pt;}
.xa6{left:734.774667pt;}
}




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