
    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_41a22c1086a9aa18b5673b3c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_4d49b6cd12d9dc2a59595637.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_83130479b388500f8405df4d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_db2d512581e4612d9b720442.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.860840;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_2eff158741b5be88acacf174.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.686523;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_946f09c5e0445c55ee5006ff.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.766113;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_eae22035ae6a5f6e17a3d004.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_6cf2fdbd57a804ab5768f92f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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_26afd79b6cac6369ad2f9405.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.866699;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_d24711c674c75a61cb0a9a72.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ce2fefea561da1d83ab0f1b5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.882324;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_b5268a8ab9bbfb061679707a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;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_27c93cf80255045d33d147af.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_2b298bcaa7a01229af213701.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.999000;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_c19e7351fc971dfdeadaf3ef.woff2')format("woff");}.fff{font-family:fff;line-height:0.707000;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_bd35c85ddea6ea9487527cdf.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_407353c956709ec3cf379b88.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_0867af63bc706b92a79d7a12.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.676000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_08f439565b230f112b107f28.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.898000;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:ff14;src:url('chunks/assets/font_8c155cd334c13e55154f2a71.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.684000;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:ff15;src:url('chunks/assets/font_d96315740dd375f076060623.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_eafb2ffa76506da8fcc7b3e5.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.281250;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:ff17;src:url('chunks/assets/font_e26152530fdc15a1d39d1377.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.706000;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:ff18;src:url('chunks/assets/font_a6704b46f160306805122f56.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_383a283ca4e5abdaddf917c1.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_d7c845f0e6bccbfca8337510.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_9e70ca5fad4699fec90e7fe4.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.521000;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:ff1c;src:url('chunks/assets/font_d73d07fb080b4a54e5c8df0e.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.525000;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:ff1d;src:url('chunks/assets/font_368eb7dbd56ee04ac83febef.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:2.262000;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:ff1e;src:url('chunks/assets/font_6fa4109afe67558fc32fc23a.woff2')format("woff");}.ff1e{font-family:ff1e;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;}
.ff1f{font-family:sans-serif;visibility:hidden;}
.m4{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m9{transform:matrix(0.254082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254082,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.254835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254835,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.269660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269660,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.269825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269825,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.270485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270485,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.298820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298820,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.315572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315572,0.000000,0.000000,0.250000,0,0);}
.vd{vertical-align:-81.360000px;}
.v10{vertical-align:-54.024000px;}
.v1{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.814000px;}
.v3{vertical-align:14.778000px;}
.v6{vertical-align:21.690000px;}
.v2{vertical-align:24.684000px;}
.v7{vertical-align:25.740000px;}
.v11{vertical-align:32.046000px;}
.v4{vertical-align:39.462000px;}
.v9{vertical-align:42.720000px;}
.v8{vertical-align:46.962000px;}
.ve{vertical-align:48.150000px;}
.vf{vertical-align:68.802000px;}
.vb{vertical-align:81.360000px;}
.vc{vertical-align:96.138000px;}
.va{vertical-align:156.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls56{letter-spacing:0.000538px;}
.ls17{letter-spacing:0.000767px;}
.ls32{letter-spacing:0.000993px;}
.ls11{letter-spacing:0.001120px;}
.ls38{letter-spacing:0.002172px;}
.ls6d{letter-spacing:0.002245px;}
.ls7d{letter-spacing:0.002400px;}
.ls9c{letter-spacing:0.002802px;}
.ls3a{letter-spacing:0.003031px;}
.lsb{letter-spacing:0.003269px;}
.ls9{letter-spacing:0.003652px;}
.ls3e{letter-spacing:0.004893px;}
.ls13{letter-spacing:0.005023px;}
.ls65{letter-spacing:0.006993px;}
.ls0{letter-spacing:0.018600px;}
.ls77{letter-spacing:2.142767px;}
.ls6e{letter-spacing:2.144023px;}
.ls21{letter-spacing:2.148767px;}
.ls51{letter-spacing:2.624368px;}
.ls5f{letter-spacing:2.630368px;}
.ls10{letter-spacing:2.984525px;}
.ls58{letter-spacing:2.986982px;}
.lsa{letter-spacing:2.989140px;}
.lsa1{letter-spacing:2.989409px;}
.ls15{letter-spacing:2.990525px;}
.ls95{letter-spacing:3.002207px;}
.ls7c{letter-spacing:3.200086px;}
.ls71{letter-spacing:3.206086px;}
.ls68{letter-spacing:3.317134px;}
.ls69{letter-spacing:3.323134px;}
.ls66{letter-spacing:3.326172px;}
.ls92{letter-spacing:3.441652px;}
.ls1f{letter-spacing:5.126525px;}
.ls22{letter-spacing:5.132525px;}
.ls99{letter-spacing:5.286444px;}
.ls2e{letter-spacing:5.408908px;}
.ls20{letter-spacing:5.618525px;}
.ls6c{letter-spacing:5.977480px;}
.ls27{letter-spacing:6.302525px;}
.ls1{letter-spacing:6.666657px;}
.ls24{letter-spacing:6.758108px;}
.ls16{letter-spacing:6.764108px;}
.ls29{letter-spacing:9.752525px;}
.ls73{letter-spacing:9.961120px;}
.ls75{letter-spacing:12.950525px;}
.ls1b{letter-spacing:13.278538px;}
.ls7e{letter-spacing:13.282200px;}
.lsd{letter-spacing:13.284538px;}
.ls7{letter-spacing:15.522538px;}
.lsc{letter-spacing:16.268525px;}
.ls26{letter-spacing:16.274525px;}
.ls7b{letter-spacing:16.598727px;}
.lsf{letter-spacing:16.602538px;}
.ls4b{letter-spacing:16.604400px;}
.ls59{letter-spacing:16.605269px;}
.ls47{letter-spacing:16.606893px;}
.ls4c{letter-spacing:16.608538px;}
.ls50{letter-spacing:16.610245px;}
.ls6a{letter-spacing:16.617617px;}
.ls4f{letter-spacing:17.502538px;}
.ls31{letter-spacing:17.814538px;}
.ls8c{letter-spacing:18.074400px;}
.ls8b{letter-spacing:18.081031px;}
.ls1c{letter-spacing:18.410525px;}
.ls41{letter-spacing:19.176538px;}
.ls42{letter-spacing:19.187968px;}
.ls4a{letter-spacing:19.526172px;}
.ls1e{letter-spacing:19.586525px;}
.ls12{letter-spacing:19.592525px;}
.ls89{letter-spacing:19.911199px;}
.ls80{letter-spacing:19.922338px;}
.ls79{letter-spacing:20.045602px;}
.ls97{letter-spacing:20.049652px;}
.ls72{letter-spacing:20.051602px;}
.ls46{letter-spacing:20.104893px;}
.ls94{letter-spacing:20.748538px;}
.ls7a{letter-spacing:21.591962px;}
.ls86{letter-spacing:21.668108px;}
.ls2d{letter-spacing:22.116538px;}
.ls35{letter-spacing:22.136108px;}
.ls40{letter-spacing:22.166525px;}
.ls8{letter-spacing:22.280108px;}
.ls88{letter-spacing:22.365223px;}
.ls8f{letter-spacing:22.413652px;}
.ls45{letter-spacing:22.420893px;}
.ls4{letter-spacing:22.495559px;}
.ls3{letter-spacing:22.497859px;}
.ls57{letter-spacing:22.579480px;}
.lsb9{letter-spacing:22.800538px;}
.ls23{letter-spacing:22.910525px;}
.ls14{letter-spacing:22.916525px;}
.ls19{letter-spacing:22.970525px;}
.ls18{letter-spacing:22.976525px;}
.ls28{letter-spacing:23.036525px;}
.ls5e{letter-spacing:23.046538px;}
.ls5d{letter-spacing:23.052538px;}
.ls30{letter-spacing:23.124538px;}
.ls36{letter-spacing:23.366108px;}
.ls44{letter-spacing:23.372108px;}
.ls93{letter-spacing:23.732525px;}
.ls43{letter-spacing:23.786108px;}
.ls3d{letter-spacing:23.862538px;}
.lsb7{letter-spacing:24.100893px;}
.ls48{letter-spacing:24.116525px;}
.ls2a{letter-spacing:24.188108px;}
.ls87{letter-spacing:24.284108px;}
.ls34{letter-spacing:24.584108px;}
.ls85{letter-spacing:24.674172px;}
.ls64{letter-spacing:24.924538px;}
.ls60{letter-spacing:24.929306px;}
.ls61{letter-spacing:24.930538px;}
.ls2c{letter-spacing:25.099140px;}
.ls3f{letter-spacing:25.166172px;}
.ls8a{letter-spacing:25.184172px;}
.ls53{letter-spacing:25.224538px;}
.ls52{letter-spacing:25.229306px;}
.ls39{letter-spacing:25.315140px;}
.ls37{letter-spacing:25.321140px;}
.ls3b{letter-spacing:25.364338px;}
.ls67{letter-spacing:25.364525px;}
.ls2f{letter-spacing:26.113140px;}
.ls1a{letter-spacing:26.354525px;}
.lsa7{letter-spacing:26.456108px;}
.ls5c{letter-spacing:26.493652px;}
.lse{letter-spacing:26.509140px;}
.ls76{letter-spacing:26.560677px;}
.ls2b{letter-spacing:26.684108px;}
.ls63{letter-spacing:26.810823px;}
.lsaf{letter-spacing:26.897518px;}
.ls55{letter-spacing:27.110823px;}
.ls33{letter-spacing:27.416108px;}
.ls4d{letter-spacing:27.578108px;}
.ls70{letter-spacing:28.080538px;}
.ls6f{letter-spacing:28.090896px;}
.ls62{letter-spacing:28.346408px;}
.ls4e{letter-spacing:28.634172px;}
.ls54{letter-spacing:28.646408px;}
.ls5{letter-spacing:28.875604px;}
.ls49{letter-spacing:29.162108px;}
.ls6{letter-spacing:30.188108px;}
.ls5b{letter-spacing:30.554108px;}
.lsb6{letter-spacing:30.860108px;}
.ls3c{letter-spacing:31.040108px;}
.ls74{letter-spacing:36.526677px;}
.lsab{letter-spacing:38.992200px;}
.ls96{letter-spacing:41.236200px;}
.ls8d{letter-spacing:42.568200px;}
.ls82{letter-spacing:43.582200px;}
.ls84{letter-spacing:45.262200px;}
.ls90{letter-spacing:45.376200px;}
.lsaa{letter-spacing:45.400200px;}
.lsa4{letter-spacing:48.652200px;}
.ls9b{letter-spacing:53.746200px;}
.lsb4{letter-spacing:55.960200px;}
.lsb3{letter-spacing:56.284200px;}
.lsa0{letter-spacing:57.952200px;}
.ls83{letter-spacing:58.858200px;}
.lsa9{letter-spacing:59.782200px;}
.ls9d{letter-spacing:60.232200px;}
.lsa2{letter-spacing:60.688200px;}
.ls8e{letter-spacing:61.420200px;}
.lsa5{letter-spacing:62.524200px;}
.lsad{letter-spacing:62.872200px;}
.lsa6{letter-spacing:63.298200px;}
.ls9e{letter-spacing:63.340200px;}
.ls9f{letter-spacing:63.760200px;}
.lsb1{letter-spacing:67.270200px;}
.ls9a{letter-spacing:67.516200px;}
.lsac{letter-spacing:68.104200px;}
.lsa8{letter-spacing:68.926200px;}
.lsb5{letter-spacing:73.132200px;}
.lsb2{letter-spacing:73.462200px;}
.lsa3{letter-spacing:74.332200px;}
.ls91{letter-spacing:77.656200px;}
.lsb8{letter-spacing:77.848200px;}
.lsb0{letter-spacing:78.886200px;}
.ls98{letter-spacing:79.378200px;}
.lsae{letter-spacing:79.540200px;}
.ls5a{letter-spacing:104.828172px;}
.ls81{letter-spacing:260.176893px;}
.ls78{letter-spacing:482.575140px;}
.ls6b{letter-spacing:495.962525px;}
.ls25{letter-spacing:747.764525px;}
.ls1d{letter-spacing:772.292525px;}
.ls7f{letter-spacing:945.248525px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(83,129,53),0 0.015em rgb(83,129,53),0.015em 0 rgb(83,129,53),0 -0.015em  rgb(83,129,53);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(83,129,53);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4d{word-spacing:-59.775600px;}
.ws9a{word-spacing:-43.157983px;}
.ws77{word-spacing:-40.587632px;}
.ws1f{word-spacing:-38.937826px;}
.ws92{word-spacing:-38.615038px;}
.ws75{word-spacing:-37.897730px;}
.ws79{word-spacing:-35.793629px;}
.wsc4{word-spacing:-33.223278px;}
.ws3{word-spacing:-32.418587px;}
.ws2f{word-spacing:-32.278875px;}
.wsd{word-spacing:-29.901132px;}
.wsae{word-spacing:-29.015076px;}
.wsc2{word-spacing:-28.983386px;}
.wsc1{word-spacing:-28.973243px;}
.wsad{word-spacing:-28.955301px;}
.wsc5{word-spacing:-25.642899px;}
.wsc6{word-spacing:-23.491227px;}
.wscc{word-spacing:-22.341827px;}
.ws3e{word-spacing:-22.341439px;}
.wsd5{word-spacing:-22.335827px;}
.ws23{word-spacing:-22.320209px;}
.ws90{word-spacing:-21.579827px;}
.ws54{word-spacing:-21.124507px;}
.ws50{word-spacing:-21.123827px;}
.ws82{word-spacing:-21.087827px;}
.ws2b{word-spacing:-19.677827px;}
.ws7d{word-spacing:-19.365827px;}
.ws9c{word-spacing:-19.089827px;}
.ws36{word-spacing:-19.017827px;}
.wsa8{word-spacing:-19.011454px;}
.ws99{word-spacing:-19.005454px;}
.ws8b{word-spacing:-18.837827px;}
.wsa3{word-spacing:-18.111454px;}
.ws1a{word-spacing:-16.654918px;}
.ws4{word-spacing:-16.613273px;}
.ws1e{word-spacing:-16.605662px;}
.ws113{word-spacing:-16.029827px;}
.ws9b{word-spacing:-15.576598px;}
.wscd{word-spacing:-15.568918px;}
.ws72{word-spacing:-15.075827px;}
.ws2{word-spacing:-15.011994px;}
.ws1{word-spacing:-14.970234px;}
.ws80{word-spacing:-14.169827px;}
.ws70{word-spacing:-13.983827px;}
.ws0{word-spacing:-13.505755px;}
.ws98{word-spacing:-12.330598px;}
.ws10f{word-spacing:-12.252598px;}
.wsc0{word-spacing:-12.106499px;}
.wsb1{word-spacing:-11.812499px;}
.ws12{word-spacing:-11.493132px;}
.wsab{word-spacing:-10.956598px;}
.ws8a{word-spacing:-9.756598px;}
.ws115{word-spacing:-9.372598px;}
.wsbb{word-spacing:-9.126219px;}
.ws73{word-spacing:-8.316598px;}
.wsaf{word-spacing:-6.570598px;}
.ws37{word-spacing:-3.326193px;}
.ws39{word-spacing:-3.320193px;}
.ws117{word-spacing:-2.618171px;}
.ws10c{word-spacing:-2.558396px;}
.ws86{word-spacing:-2.379069px;}
.wse2{word-spacing:-2.319293px;}
.ws104{word-spacing:-1.841088px;}
.wse1{word-spacing:-1.721537px;}
.ws3c{word-spacing:-1.661762px;}
.wsd7{word-spacing:-1.601986px;}
.ws26{word-spacing:-1.542210px;}
.ws10{word-spacing:-1.425658px;}
.ws55{word-spacing:-1.243332px;}
.wsa9{word-spacing:-1.123781px;}
.ws19{word-spacing:-1.064006px;}
.ws47{word-spacing:-0.765128px;}
.ws87{word-spacing:-0.585801px;}
.ws7{word-spacing:-0.511085px;}
.ws96{word-spacing:-0.410108px;}
.ws95{word-spacing:-0.406474px;}
.ws1d{word-spacing:-0.346698px;}
.wsca{word-spacing:-0.227147px;}
.wsc9{word-spacing:-0.167372px;}
.ws62{word-spacing:-0.107596px;}
.wsda{word-spacing:-0.059776px;}
.ws30{word-spacing:-0.053798px;}
.ws51{word-spacing:-0.041843px;}
.wsbe{word-spacing:-0.021471px;}
.ws3a{word-spacing:-0.015471px;}
.ws5{word-spacing:0.000000px;}
.ws24{word-spacing:0.011955px;}
.wsb4{word-spacing:0.191282px;}
.wsc{word-spacing:0.242093px;}
.wsa6{word-spacing:0.251058px;}
.wsa5{word-spacing:0.287042px;}
.wsa7{word-spacing:0.310833px;}
.ws61{word-spacing:0.370609px;}
.ws85{word-spacing:0.430384px;}
.ws108{word-spacing:0.490160px;}
.wsfb{word-spacing:0.609711px;}
.ws116{word-spacing:0.669487px;}
.ws57{word-spacing:0.729262px;}
.ws3d{word-spacing:0.789038px;}
.ws3f{word-spacing:0.844513px;}
.wsdc{word-spacing:0.848814px;}
.wse5{word-spacing:0.908589px;}
.wsb2{word-spacing:0.968365px;}
.ws64{word-spacing:1.087916px;}
.ws60{word-spacing:1.147692px;}
.ws52{word-spacing:1.207467px;}
.ws81{word-spacing:1.267243px;}
.wsb9{word-spacing:1.327018px;}
.wse3{word-spacing:1.386794px;}
.ws42{word-spacing:1.506345px;}
.wsf5{word-spacing:1.566121px;}
.wse8{word-spacing:1.625896px;}
.wsc3{word-spacing:1.685672px;}
.ws5f{word-spacing:1.805223px;}
.ws44{word-spacing:2.044326px;}
.wsea{word-spacing:2.163877px;}
.wsff{word-spacing:2.223652px;}
.ws63{word-spacing:2.343204px;}
.wsec{word-spacing:2.361892px;}
.ws6a{word-spacing:2.402979px;}
.ws40{word-spacing:2.522530px;}
.ws2a{word-spacing:2.628826px;}
.ws2d{word-spacing:2.642082px;}
.ws2c{word-spacing:2.649892px;}
.ws101{word-spacing:2.701857px;}
.ws66{word-spacing:2.761633px;}
.ws107{word-spacing:2.821408px;}
.ws8{word-spacing:2.878214px;}
.wse6{word-spacing:2.881184px;}
.ws7b{word-spacing:2.940960px;}
.ws13{word-spacing:2.985811px;}
.ws7c{word-spacing:3.000735px;}
.ws11{word-spacing:3.039610px;}
.ws6d{word-spacing:3.060511px;}
.ws16{word-spacing:3.093408px;}
.wsbd{word-spacing:3.120286px;}
.ws97{word-spacing:3.239838px;}
.ws35{word-spacing:3.289220px;}
.ws8d{word-spacing:3.299098px;}
.ws1b{word-spacing:3.299613px;}
.wsce{word-spacing:3.317815px;}
.ws22{word-spacing:3.359389px;}
.ws34{word-spacing:3.381807px;}
.wsc7{word-spacing:3.419164px;}
.ws8c{word-spacing:3.478940px;}
.ws8f{word-spacing:3.538716px;}
.ws100{word-spacing:3.598491px;}
.ws5e{word-spacing:3.658267px;}
.ws56{word-spacing:3.718042px;}
.ws68{word-spacing:3.777818px;}
.wsa4{word-spacing:3.837594px;}
.wsf{word-spacing:3.846586px;}
.ws29{word-spacing:3.957145px;}
.ws53{word-spacing:4.016920px;}
.ws4f{word-spacing:4.076696px;}
.ws9e{word-spacing:4.136472px;}
.ws9d{word-spacing:4.196247px;}
.ws4e{word-spacing:4.256023px;}
.wse9{word-spacing:4.375574px;}
.wsa1{word-spacing:4.435350px;}
.wsd8{word-spacing:4.483200px;}
.ws10a{word-spacing:4.488044px;}
.ws11e{word-spacing:4.554901px;}
.wsaa{word-spacing:4.614676px;}
.wse7{word-spacing:4.674452px;}
.wsde{word-spacing:4.734228px;}
.wsdd{word-spacing:4.767795px;}
.ws76{word-spacing:4.853779px;}
.ws102{word-spacing:4.913554px;}
.wsfe{word-spacing:4.973330px;}
.wsfc{word-spacing:5.033106px;}
.wsa{word-spacing:5.083949px;}
.wsd9{word-spacing:5.092881px;}
.wsdf{word-spacing:5.152657px;}
.wsf3{word-spacing:5.212432px;}
.ws69{word-spacing:5.331984px;}
.ws6e{word-spacing:5.379825px;}
.wsac{word-spacing:5.391759px;}
.ws15{word-spacing:5.406739px;}
.wsb3{word-spacing:5.511310px;}
.ws5c{word-spacing:5.630862px;}
.wsf7{word-spacing:5.685977px;}
.ws5b{word-spacing:5.690637px;}
.ws59{word-spacing:5.700521px;}
.ws58{word-spacing:5.736524px;}
.ws5a{word-spacing:5.750413px;}
.ws14{word-spacing:5.783328px;}
.ws94{word-spacing:5.787892px;}
.ws93{word-spacing:5.794075px;}
.ws88{word-spacing:5.810188px;}
.ws89{word-spacing:5.812436px;}
.ws46{word-spacing:5.869964px;}
.wsa2{word-spacing:5.929740px;}
.ws6b{word-spacing:6.049291px;}
.wsf9{word-spacing:6.109066px;}
.ws112{word-spacing:6.288393px;}
.wsf4{word-spacing:6.348169px;}
.ws84{word-spacing:6.407944px;}
.ws2e{word-spacing:6.455775px;}
.ws74{word-spacing:6.467720px;}
.ws41{word-spacing:6.527496px;}
.ws103{word-spacing:6.587271px;}
.ws9{word-spacing:6.590304px;}
.ws48{word-spacing:6.647047px;}
.ws83{word-spacing:6.706822px;}
.ws18{word-spacing:6.826374px;}
.ws119{word-spacing:6.886149px;}
.wsf6{word-spacing:6.945925px;}
.ws114{word-spacing:7.065476px;}
.wsb{word-spacing:7.074490px;}
.ws27{word-spacing:7.125252px;}
.wsba{word-spacing:7.185027px;}
.ws4c{word-spacing:7.244803px;}
.ws45{word-spacing:7.304578px;}
.ws6{word-spacing:7.343482px;}
.wse{word-spacing:7.356568px;}
.ws28{word-spacing:7.424130px;}
.ws1c{word-spacing:7.483905px;}
.ws10e{word-spacing:7.485892px;}
.wsf8{word-spacing:7.543681px;}
.ws71{word-spacing:7.653530px;}
.ws5d{word-spacing:7.663232px;}
.wseb{word-spacing:7.723008px;}
.ws109{word-spacing:7.782783px;}
.ws91{word-spacing:7.842559px;}
.ws10d{word-spacing:8.021886px;}
.ws7f{word-spacing:8.141437px;}
.wsbf{word-spacing:8.316421px;}
.ws6f{word-spacing:8.320764px;}
.ws7e{word-spacing:8.440315px;}
.wsb0{word-spacing:8.496421px;}
.ws67{word-spacing:8.500090px;}
.ws7a{word-spacing:8.619642px;}
.wsa0{word-spacing:8.679417px;}
.ws9f{word-spacing:8.739193px;}
.wscb{word-spacing:8.798968px;}
.ws21{word-spacing:9.217398px;}
.ws6c{word-spacing:9.874929px;}
.wsed{word-spacing:9.934705px;}
.wsc8{word-spacing:10.233583px;}
.wsfd{word-spacing:10.293358px;}
.ws110{word-spacing:10.353134px;}
.ws111{word-spacing:10.532461px;}
.wsb5{word-spacing:10.592236px;}
.ws10b{word-spacing:10.891114px;}
.ws11d{word-spacing:11.010666px;}
.wsf0{word-spacing:11.070441px;}
.wsf1{word-spacing:11.130217px;}
.ws105{word-spacing:11.189992px;}
.ws118{word-spacing:12.146402px;}
.wsd6{word-spacing:12.505056px;}
.ws106{word-spacing:12.744158px;}
.ws11a{word-spacing:13.162587px;}
.ws11b{word-spacing:13.999446px;}
.wsef{word-spacing:14.477650px;}
.wsee{word-spacing:14.537426px;}
.wsfa{word-spacing:18.303289px;}
.ws11f{word-spacing:19.259698px;}
.ws43{word-spacing:19.666172px;}
.wsd2{word-spacing:19.875322px;}
.wsd0{word-spacing:19.879422px;}
.wsf2{word-spacing:21.041011px;}
.ws33{word-spacing:21.339889px;}
.wsbc{word-spacing:21.590947px;}
.wsdb{word-spacing:22.063793px;}
.ws78{word-spacing:22.130852px;}
.ws65{word-spacing:22.236523px;}
.ws11c{word-spacing:22.726683px;}
.ws8e{word-spacing:22.834279px;}
.wscf{word-spacing:22.894055px;}
.wse4{word-spacing:23.194752px;}
.wsb6{word-spacing:23.969833px;}
.ws49{word-spacing:24.328669px;}
.ws4a{word-spacing:26.779469px;}
.wse0{word-spacing:26.992752px;}
.ws32{word-spacing:29.050942px;}
.ws4b{word-spacing:38.236257px;}
.wsb7{word-spacing:43.169938px;}
.ws31{word-spacing:49.848310px;}
.wsd1{word-spacing:55.099038px;}
.wsb8{word-spacing:65.669474px;}
.ws17{word-spacing:69.937725px;}
.wsd4{word-spacing:138.588006px;}
.wsd3{word-spacing:139.334778px;}
.ws38{word-spacing:587.606103px;}
.ws25{word-spacing:610.265309px;}
.ws3b{word-spacing:668.064061px;}
.ws20{word-spacing:818.549309px;}
._26{margin-left:-46.287478px;}
._2b{margin-left:-31.979946px;}
._40{margin-left:-29.887800px;}
._27{margin-left:-28.333634px;}
._2a{margin-left:-16.451141px;}
._20{margin-left:-9.709486px;}
._25{margin-left:-8.091257px;}
._1f{margin-left:-5.839875px;}
._17{margin-left:-3.869611px;}
._e{margin-left:-2.142678px;}
._0{margin-left:-1.107114px;}
._1{width:1.018960px;}
._3{width:2.243445px;}
._b{width:3.350551px;}
._9{width:4.454237px;}
._c{width:5.779331px;}
._13{width:6.816414px;}
._2{width:8.191003px;}
._f{width:9.382883px;}
._8{width:10.448439px;}
._10{width:12.490342px;}
._11{width:13.504041px;}
._19{width:15.430882px;}
._12{width:16.927651px;}
._a{width:18.157187px;}
._3c{width:19.238499px;}
._d{width:20.491826px;}
._5{width:22.239657px;}
._4{width:23.740798px;}
._1a{width:25.148950px;}
._18{width:27.177567px;}
._1e{width:28.299112px;}
._3d{width:29.391107px;}
._21{width:30.407292px;}
._22{width:31.904367px;}
._1b{width:33.534112px;}
._15{width:35.712879px;}
._16{width:37.130935px;}
._1d{width:38.973691px;}
._23{width:40.244902px;}
._7{width:42.016485px;}
._6{width:43.032920px;}
._1c{width:44.794417px;}
._3f{width:48.176433px;}
._3e{width:54.197981px;}
._14{width:58.406319px;}
._3b{width:80.697600px;}
._24{width:96.836850px;}
._29{width:103.710666px;}
._39{width:123.720920px;}
._2c{width:142.529333px;}
._28{width:147.585956px;}
._37{width:172.123365px;}
._33{width:221.628068px;}
._3a{width:235.362387px;}
._32{width:286.326385px;}
._2d{width:295.070146px;}
._2f{width:296.360592px;}
._2e{width:315.519205px;}
._34{width:338.423640px;}
._36{width:341.534683px;}
._31{width:373.237911px;}
._38{width:466.707500px;}
._35{width:745.425730px;}
._30{width:1035.823843px;}
.fcb{color:transparent;}
.fca{color:rgb(0,0,255);}
.fc8{color:rgb(44,62,80);}
.fcc{color:rgb(128,0,0);}
.fc7{color:rgb(83,129,53);}
.fc6{color:rgb(0,32,96);}
.fc4{color:rgb(0,112,192);}
.fc2{color:rgb(192,0,0);}
.fc9{color:rgb(51,51,51);}
.fc5{color:rgb(0,176,80);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(64,64,64);}
.fse{font-size:29.887800px;}
.fs5{font-size:33.119987px;}
.fs9{font-size:41.842800px;}
.fs4{font-size:48.239981px;}
.fs7{font-size:53.798400px;}
.fs1{font-size:53.999978px;}
.fs3{font-size:59.759976px;}
.fs6{font-size:59.775600px;}
.fsa{font-size:60.000000px;}
.fsc{font-size:66.000000px;}
.fs0{font-size:66.239974px;}
.fsf{font-size:71.731200px;}
.fsb{font-size:72.000000px;}
.fs8{font-size:86.077200px;}
.fs2{font-size:102.239959px;}
.fsd{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y73{bottom:2.355022px;}
.y19{bottom:2.699072px;}
.y6f{bottom:2.826022px;}
.yd{bottom:2.878983px;}
.y6d{bottom:3.240022px;}
.y71{bottom:3.564022px;}
.yf{bottom:4.498951px;}
.y17{bottom:4.499059px;}
.y26{bottom:4.499074px;}
.y6c{bottom:21.210022px;}
.y6{bottom:21.540291px;}
.y6b{bottom:39.180022px;}
.y5{bottom:41.700283px;}
.y7a{bottom:72.684000px;}
.y70{bottom:76.668000px;}
.y72{bottom:95.070000px;}
.y42{bottom:174.719930px;}
.ya1{bottom:175.143000px;}
.y156{bottom:176.098500px;}
.ybd{bottom:177.072000px;}
.y10d{bottom:177.424500px;}
.y174{bottom:185.749500px;}
.y1b3{bottom:190.170000px;}
.yd2{bottom:192.433500px;}
.ya0{bottom:193.075500px;}
.y41{bottom:193.079923px;}
.y155{bottom:194.031000px;}
.ybc{bottom:195.006000px;}
.y10c{bottom:195.358500px;}
.y69{bottom:201.822000px;}
.y173{bottom:203.682000px;}
.y1b2{bottom:208.102500px;}
.yd1{bottom:210.366000px;}
.y9f{bottom:211.008000px;}
.y40{bottom:211.439915px;}
.y154{bottom:211.963500px;}
.ybb{bottom:212.938500px;}
.y194{bottom:213.510000px;}
.y68{bottom:219.754500px;}
.y125{bottom:220.324500px;}
.y172{bottom:221.614500px;}
.y1b1{bottom:226.036500px;}
.y10b{bottom:228.090000px;}
.yd0{bottom:228.298500px;}
.y9e{bottom:228.940500px;}
.y153{bottom:229.896000px;}
.yba{bottom:230.871000px;}
.y193{bottom:231.442500px;}
.y67{bottom:237.688500px;}
.y124{bottom:238.257000px;}
.y171{bottom:239.547000px;}
.y3f{bottom:243.119903px;}
.ycf{bottom:246.231000px;}
.y152{bottom:247.828500px;}
.y24{bottom:247.979901px;}
.yb9{bottom:248.803500px;}
.y192{bottom:249.375000px;}
.y66{bottom:255.621000px;}
.y1b0{bottom:255.924000px;}
.y123{bottom:256.189500px;}
.y170{bottom:257.481000px;}
.yce{bottom:264.165000px;}
.y9d{bottom:264.807000px;}
.y151{bottom:265.761000px;}
.yb8{bottom:266.736000px;}
.y191{bottom:267.309000px;}
.y108{bottom:272.427000px;}
.y65{bottom:273.553500px;}
.y1af{bottom:273.856500px;}
.y10a{bottom:273.958500px;}
.y16f{bottom:275.413500px;}
.y9c{bottom:282.739500px;}
.y150{bottom:283.695000px;}
.y190{bottom:285.241500px;}
.y122{bottom:288.921000px;}
.y64{bottom:291.486000px;}
.y107{bottom:291.891000px;}
.y16e{bottom:293.346000px;}
.y104{bottom:294.879000px;}
.y101{bottom:297.013500px;}
.yb7{bottom:299.467500px;}
.ycd{bottom:300.030000px;}
.y9b{bottom:300.672000px;}
.y100{bottom:300.708000px;}
.y46{bottom:300.719880px;}
.y14f{bottom:301.627500px;}
.y18f{bottom:303.174000px;}
.y1ae{bottom:303.744000px;}
.y103{bottom:304.444500px;}
.y106{bottom:309.823500px;}
.y16d{bottom:311.278500px;}
.y102{bottom:313.410000px;}
.yff{bottom:315.538500px;}
.ycc{bottom:317.962500px;}
.y45{bottom:317.999873px;}
.y9a{bottom:318.604500px;}
.y63{bottom:320.668500px;}
.y18e{bottom:321.106500px;}
.y1ad{bottom:321.676500px;}
.y62{bottom:324.363000px;}
.y105{bottom:327.756000px;}
.y14e{bottom:329.211000px;}
.y44{bottom:335.279866px;}
.ycb{bottom:335.895000px;}
.y99{bottom:336.537000px;}
.y109{bottom:339.712500px;}
.y1ac{bottom:351.565500px;}
.y43{bottom:353.279859px;}
.yca{bottom:353.829000px;}
.y18d{bottom:353.838000px;}
.y16c{bottom:356.796000px;}
.y23{bottom:362.639855px;}
.y121{bottom:364.500000px;}
.yb6{bottom:366.819000px;}
.y1ab{bottom:369.498000px;}
.y14d{bottom:371.044500px;}
.yc9{bottom:371.761500px;}
.y98{bottom:372.403500px;}
.y61{bottom:375.172500px;}
.yfe{bottom:376.212000px;}
.y120{bottom:382.432500px;}
.yb5{bottom:384.751500px;}
.y1aa{bottom:387.430500px;}
.y14c{bottom:388.977000px;}
.yc8{bottom:389.694000px;}
.y97{bottom:390.336000px;}
.y60{bottom:393.105000px;}
.yfd{bottom:394.144500px;}
.y16b{bottom:398.628000px;}
.y11f{bottom:400.365000px;}
.y3e{bottom:402.059839px;}
.yb4{bottom:402.685500px;}
.y18c{bottom:403.257000px;}
.y14b{bottom:406.909500px;}
.yc7{bottom:407.626500px;}
.y96{bottom:408.268500px;}
.yfc{bottom:412.077000px;}
.y3d{bottom:413.939834px;}
.y16a{bottom:416.560500px;}
.y1a9{bottom:417.318000px;}
.y11e{bottom:418.299000px;}
.yb3{bottom:420.618000px;}
.y18b{bottom:421.189500px;}
.y5f{bottom:422.287500px;}
.y14a{bottom:424.842000px;}
.yc6{bottom:425.559000px;}
.y5e{bottom:425.982000px;}
.y95{bottom:426.201000px;}
.y3c{bottom:431.219828px;}
.y169{bottom:434.493000px;}
.y1a8{bottom:435.252000px;}
.y11d{bottom:436.231500px;}
.yb2{bottom:438.550500px;}
.y18a{bottom:439.122000px;}
.y149{bottom:442.774500px;}
.y94{bottom:444.133500px;}
.yfb{bottom:444.954000px;}
.y168{bottom:452.427000px;}
.y1a7{bottom:453.184500px;}
.y3b{bottom:456.239818px;}
.yb1{bottom:456.483000px;}
.y189{bottom:457.054500px;}
.y148{bottom:460.707000px;}
.y93{bottom:462.067500px;}
.y167{bottom:470.359500px;}
.yb0{bottom:474.415500px;}
.y188{bottom:474.988500px;}
.y22{bottom:475.859810px;}
.y5d{bottom:476.791500px;}
.y147{bottom:478.641000px;}
.y11c{bottom:479.128500px;}
.y3a{bottom:481.439807px;}
.y1a6{bottom:483.072000px;}
.y166{bottom:488.292000px;}
.yaf{bottom:492.348000px;}
.y187{bottom:492.921000px;}
.y5c{bottom:494.724000px;}
.yfa{bottom:495.763500px;}
.y146{bottom:496.573500px;}
.y11b{bottom:497.061000px;}
.y92{bottom:497.932500px;}
.y39{bottom:498.719801px;}
.y1a5{bottom:501.004500px;}
.y165{bottom:506.224500px;}
.yae{bottom:510.282000px;}
.y186{bottom:510.853500px;}
.y5b{bottom:512.656500px;}
.yf9{bottom:513.696000px;}
.y145{bottom:514.506000px;}
.y11a{bottom:514.993500px;}
.y91{bottom:515.865000px;}
.y38{bottom:515.999794px;}
.y164{bottom:524.157000px;}
.yad{bottom:528.214500px;}
.y185{bottom:528.786000px;}
.y1a4{bottom:530.892000px;}
.yf8{bottom:531.628500px;}
.y144{bottom:532.438500px;}
.y119{bottom:532.926000px;}
.y37{bottom:533.099787px;}
.y90{bottom:533.797500px;}
.y21{bottom:537.599785px;}
.y5a{bottom:548.523000px;}
.y1a3{bottom:548.826000px;}
.yf7{bottom:549.561000px;}
.y143{bottom:550.371000px;}
.y36{bottom:550.379780px;}
.y118{bottom:550.860000px;}
.y8f{bottom:551.730000px;}
.y163{bottom:551.742000px;}
.y20{bottom:552.899779px;}
.y184{bottom:556.369500px;}
.y59{bottom:566.455500px;}
.y1a2{bottom:566.758500px;}
.yf6{bottom:567.493500px;}
.y35{bottom:567.659773px;}
.y1f{bottom:568.199773px;}
.y117{bottom:568.792500px;}
.y8e{bottom:569.664000px;}
.y142{bottom:577.956000px;}
.y1e{bottom:582.239767px;}
.y58{bottom:584.388000px;}
.y34{bottom:584.939766px;}
.y116{bottom:586.725000px;}
.y8d{bottom:587.596500px;}
.y162{bottom:593.574000px;}
.y1a1{bottom:596.646000px;}
.y183{bottom:598.203000px;}
.y33{bottom:602.219759px;}
.yf5{bottom:603.360000px;}
.y8c{bottom:605.529000px;}
.y161{bottom:611.506500px;}
.y182{bottom:616.135500px;}
.y57{bottom:617.119500px;}
.y32{bottom:619.499752px;}
.y141{bottom:619.788000px;}
.yf4{bottom:621.292500px;}
.y8b{bottom:623.461500px;}
.y115{bottom:626.176500px;}
.y1a0{bottom:626.533500px;}
.y160{bottom:629.439000px;}
.y181{bottom:634.068000px;}
.y31{bottom:636.599745px;}
.y140{bottom:637.720500px;}
.yf3{bottom:639.225000px;}
.y1d{bottom:642.719743px;}
.y114{bottom:644.110500px;}
.y15f{bottom:647.373000px;}
.y180{bottom:652.000500px;}
.y30{bottom:653.879738px;}
.y13f{bottom:655.654500px;}
.y19f{bottom:656.422500px;}
.y8a{bottom:659.326500px;}
.y15e{bottom:665.305500px;}
.y17f{bottom:669.934500px;}
.y2f{bottom:671.159732px;}
.yef{bottom:672.252000px;}
.y79{bottom:672.515978px;}
.y13e{bottom:673.587000px;}
.yf2{bottom:673.782000px;}
.y89{bottom:677.260500px;}
.y15d{bottom:683.238000px;}
.y19e{bottom:686.310000px;}
.y17e{bottom:687.867000px;}
.y2e{bottom:688.439725px;}
.y78{bottom:690.448478px;}
.y13d{bottom:691.519500px;}
.yee{bottom:691.714500px;}
.yf1{bottom:691.716000px;}
.yea{bottom:694.704000px;}
.y88{bottom:695.193000px;}
.y113{bottom:695.670000px;}
.ye7{bottom:696.837000px;}
.ye6{bottom:700.531500px;}
.y15c{bottom:701.170500px;}
.y1c{bottom:703.379719px;}
.y19d{bottom:704.242500px;}
.ye9{bottom:704.268000px;}
.y2d{bottom:705.719718px;}
.y17d{bottom:705.799500px;}
.y13c{bottom:709.452000px;}
.yed{bottom:709.648500px;}
.ye8{bottom:713.235000px;}
.ye5{bottom:715.363500px;}
.y15b{bottom:719.103000px;}
.y19c{bottom:722.175000px;}
.y2c{bottom:722.999711px;}
.y17c{bottom:723.732000px;}
.yec{bottom:723.871500px;}
.y13b{bottom:727.384500px;}
.yeb{bottom:727.581000px;}
.y56{bottom:731.170500px;}
.y15a{bottom:737.035500px;}
.yf0{bottom:739.536000px;}
.y2b{bottom:740.099704px;}
.y19b{bottom:740.107500px;}
.yc5{bottom:740.329500px;}
.y13a{bottom:745.317000px;}
.y55{bottom:747.609000px;}
.y17b{bottom:751.315500px;}
.y159{bottom:754.969500px;}
.y2a{bottom:757.379697px;}
.y87{bottom:760.240500px;}
.y139{bottom:763.251000px;}
.y1b{bottom:763.859694px;}
.y86{bottom:763.935000px;}
.y54{bottom:764.047500px;}
.y19a{bottom:769.996500px;}
.y158{bottom:772.902000px;}
.y112{bottom:774.271500px;}
.y29{bottom:774.659690px;}
.ye4{bottom:776.035500px;}
.y111{bottom:777.966000px;}
.y1a{bottom:779.339688px;}
.y53{bottom:780.486000px;}
.y138{bottom:781.183500px;}
.y199{bottom:787.929000px;}
.yc4{bottom:790.834500px;}
.y28{bottom:791.939683px;}
.y17a{bottom:793.149000px;}
.ye3{bottom:793.968000px;}
.y52{bottom:796.924500px;}
.y137{bottom:799.116000px;}
.y198{bottom:805.861500px;}
.yc3{bottom:808.767000px;}
.y27{bottom:809.219676px;}
.y25{bottom:810.840600px;}
.y179{bottom:811.081500px;}
.ye2{bottom:811.902000px;}
.y51{bottom:813.363000px;}
.y85{bottom:814.744500px;}
.y18{bottom:816.960600px;}
.y136{bottom:817.048500px;}
.yc2{bottom:826.699500px;}
.y110{bottom:828.775500px;}
.y178{bottom:829.014000px;}
.y50{bottom:829.801500px;}
.ye1{bottom:829.834500px;}
.y135{bottom:834.981000px;}
.y197{bottom:838.593000px;}
.y84{bottom:843.927000px;}
.y14{bottom:844.319662px;}
.y15{bottom:844.499662px;}
.yc1{bottom:844.632000px;}
.y4f{bottom:846.240000px;}
.y177{bottom:846.946500px;}
.y83{bottom:847.621500px;}
.ye0{bottom:847.767000px;}
.y16{bottom:849.000600px;}
.y134{bottom:852.913500px;}
.y157{bottom:862.566000px;}
.y4e{bottom:862.677000px;}
.y176{bottom:864.880500px;}
.yac{bottom:865.554000px;}
.ydf{bottom:865.699500px;}
.y133{bottom:870.847500px;}
.y10f{bottom:875.890500px;}
.y4d{bottom:879.115500px;}
.y10e{bottom:879.585000px;}
.yc0{bottom:880.498500px;}
.yab{bottom:883.486500px;}
.yde{bottom:883.632000px;}
.y132{bottom:888.780000px;}
.y175{bottom:892.464000px;}
.y4c{bottom:895.554000px;}
.y82{bottom:898.431000px;}
.ydd{bottom:901.564500px;}
.y196{bottom:905.944500px;}
.y131{bottom:906.712500px;}
.y4b{bottom:911.992500px;}
.yb{bottom:913.079635px;}
.ybf{bottom:916.363500px;}
.ydc{bottom:919.498500px;}
.y130{bottom:924.645000px;}
.y81{bottom:927.613500px;}
.y4a{bottom:928.431000px;}
.y80{bottom:931.308000px;}
.yaa{bottom:934.296000px;}
.ydb{bottom:937.431000px;}
.y195{bottom:938.676000px;}
.y12f{bottom:942.577500px;}
.y49{bottom:944.869500px;}
.ya{bottom:945.839622px;}
.ya9{bottom:952.228500px;}
.yda{bottom:955.363500px;}
.y12e{bottom:960.510000px;}
.y48{bottom:961.308000px;}
.ya8{bottom:970.162500px;}
.y12d{bottom:978.444000px;}
.y9{bottom:978.599609px;}
.ya7{bottom:988.095000px;}
.yd9{bottom:991.228500px;}
.y7f{bottom:993.366000px;}
.y12c{bottom:996.376500px;}
.y7e{bottom:997.060500px;}
.y77{bottom:998.555969px;}
.ya6{bottom:1006.027500px;}
.yd8{bottom:1009.161000px;}
.y8{bottom:1011.539595px;}
.y12b{bottom:1014.309000px;}
.ybe{bottom:1023.960000px;}
.yd7{bottom:1027.095000px;}
.y47{bottom:1029.937500px;}
.y12a{bottom:1032.241500px;}
.yc{bottom:1038.720600px;}
.ya5{bottom:1041.892500px;}
.yd6{bottom:1045.027500px;}
.y13{bottom:1047.899581px;}
.y129{bottom:1050.174000px;}
.y7d{bottom:1059.120000px;}
.ya4{bottom:1059.826500px;}
.y76{bottom:1062.814500px;}
.yd5{bottom:1062.960000px;}
.y12{bottom:1066.259573px;}
.y128{bottom:1068.108000px;}
.ya3{bottom:1077.759000px;}
.yd4{bottom:1080.892500px;}
.y11{bottom:1084.619566px;}
.y127{bottom:1086.040500px;}
.ya2{bottom:1095.691500px;}
.y75{bottom:1095.691505px;}
.yd3{bottom:1098.825000px;}
.y10{bottom:1103.339559px;}
.y126{bottom:1103.973000px;}
.y7c{bottom:1113.624000px;}
.ye{bottom:1119.000600px;}
.y74{bottom:1128.568505px;}
.y7b{bottom:1131.556500px;}
.y4{bottom:1147.979541px;}
.y7{bottom:1177.499529px;}
.y3{bottom:1179.839528px;}
.y6a{bottom:1187.325000px;}
.y6e{bottom:1198.557000px;}
.y2{bottom:1198.919520px;}
.y1{bottom:1217.999513px;}
.h2f{height:2.391024px;}
.hd{height:14.040000px;}
.h23{height:17.565000px;}
.h8{height:18.720000px;}
.h21{height:19.767000px;}
.h9{height:20.160000px;}
.h1f{height:21.078000px;}
.h14{height:23.772647px;}
.h31{height:27.783619px;}
.he{height:33.706744px;}
.h10{height:36.624009px;}
.h3{height:36.703110px;}
.h7{height:36.914048px;}
.h26{height:37.658880px;}
.hc{height:38.759750px;}
.hf{height:39.339828px;}
.h13{height:39.830258px;}
.h18{height:40.348800px;}
.h5{height:40.851546px;}
.h12{height:41.493499px;}
.h11{height:41.522679px;}
.h3a{height:41.842920px;}
.h2c{height:42.799330px;}
.h6{height:42.894123px;}
.h15{height:43.536076px;}
.hb{height:44.149201px;}
.h17{height:44.831700px;}
.h32{height:45.080125px;}
.h33{height:45.086125px;}
.ha{height:45.281232px;}
.h1{height:46.025138px;}
.h2{height:47.545293px;}
.h29{height:49.473619px;}
.h38{height:50.541024px;}
.h28{height:52.461619px;}
.h1a{height:52.467619px;}
.h3b{height:53.798400px;}
.h1d{height:53.910000px;}
.h30{height:56.439280px;}
.h3c{height:56.786820px;}
.h24{height:58.857422px;}
.h1e{height:58.886719px;}
.h2d{height:59.427280px;}
.h27{height:59.609700px;}
.h19{height:64.557900px;}
.h22{height:64.775391px;}
.h1c{height:67.239619px;}
.h1b{height:67.245619px;}
.h2a{height:68.539330px;}
.h4{height:69.890597px;}
.h20{height:70.628906px;}
.h39{height:71.193024px;}
.h25{height:77.469300px;}
.h36{height:83.751024px;}
.h35{height:89.755330px;}
.h2b{height:89.761330px;}
.h37{height:98.529024px;}
.h34{height:158.409024px;}
.h2e{height:173.187024px;}
.h16{height:1262.835000px;}
.h0{height:1263.000000px;}
.w4{width:3.600000px;}
.w7{width:7.020000px;}
.w5{width:8.100000px;}
.w2{width:8.280000px;}
.w6{width:113.760000px;}
.wb{width:367.372500px;}
.w3{width:397.980000px;}
.wa{width:837.495000px;}
.wc{width:882.114000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.w8{width:892.914000px;}
.w9{width:893.250000px;}
.x12{left:-4.680264px;}
.xb{left:-1.980103px;}
.x0{left:0.000000px;}
.x3c{left:10.800000px;}
.x3a{left:54.000000px;}
.x3b{left:86.400000px;}
.x1d{left:99.899960px;}
.x1b{left:101.879959px;}
.x1a{left:104.399958px;}
.x18{left:115.920000px;}
.x1{left:116.999953px;}
.x2{left:118.979952px;}
.x31{left:122.457000px;}
.x13{left:124.919950px;}
.x82{left:129.928500px;}
.x7d{left:131.422500px;}
.x7f{left:138.004500px;}
.x32{left:144.873000px;}
.x1e{left:148.499941px;}
.x81{left:152.476500px;}
.x3d{left:156.217500px;}
.x1c{left:158.579937px;}
.x30{left:159.816000px;}
.x4{left:163.619935px;}
.x2f{left:180.552000px;}
.x7c{left:187.605000px;}
.x9{left:201.960000px;}
.x5c{left:217.641000px;}
.x14{left:220.679912px;}
.x15{left:223.559911px;}
.x19{left:229.680000px;}
.x6e{left:234.907500px;}
.x79{left:239.032500px;}
.x6f{left:240.993000px;}
.x1f{left:242.459913px;}
.x20{left:243.539903px;}
.x70{left:252.856500px;}
.xa{left:260.280000px;}
.x45{left:262.713000px;}
.x16{left:265.140000px;}
.x36{left:273.964500px;}
.x46{left:277.497000px;}
.x53{left:282.826500px;}
.x17{left:285.119886px;}
.x2e{left:288.359885px;}
.x22{left:289.439667px;}
.x2c{left:290.519884px;}
.x5a{left:292.264500px;}
.x4e{left:296.167500px;}
.x54{left:297.609000px;}
.x7e{left:300.169500px;}
.x40{left:303.331500px;}
.x21{left:310.139876px;}
.xe{left:315.719838px;}
.x41{left:318.115500px;}
.x33{left:326.035500px;}
.x47{left:330.471000px;}
.x55{left:337.362000px;}
.x5{left:343.080397px;}
.x2d{left:346.679858px;}
.x37{left:349.749000px;}
.x7b{left:354.702000px;}
.x42{left:364.449000px;}
.x2b{left:371.159852px;}
.x6{left:381.059848px;}
.x7{left:383.939846px;}
.x71{left:387.028500px;}
.x56{left:390.336000px;}
.x5d{left:391.863000px;}
.xd{left:396.719841px;}
.x34{left:400.092000px;}
.x5e{left:401.824500px;}
.x61{left:404.674500px;}
.x60{left:406.057500px;}
.xf{left:408.059837px;}
.x4f{left:409.420500px;}
.x3e{left:416.015982px;}
.x48{left:418.969500px;}
.x5f{left:421.467000px;}
.xc{left:425.339830px;}
.x62{left:428.170500px;}
.x72{left:430.585500px;}
.x35{left:439.842000px;}
.x63{left:442.284000px;}
.x85{left:444.561000px;}
.x49{left:446.320500px;}
.x38{left:452.163000px;}
.x74{left:456.322500px;}
.x64{left:458.058000px;}
.x80{left:461.880000px;}
.x73{left:466.755000px;}
.x66{left:468.021000px;}
.x43{left:472.026000px;}
.x57{left:474.013500px;}
.x65{left:478.453500px;}
.x4a{left:486.394500px;}
.x50{left:489.387000px;}
.x39{left:491.914500px;}
.x7a{left:492.946500px;}
.x10{left:504.899798px;}
.x51{left:511.300500px;}
.x8{left:512.819795px;}
.x4b{left:514.281000px;}
.x5b{left:531.396000px;}
.x58{left:532.800000px;}
.x29{left:539.279784px;}
.x44{left:552.331500px;}
.x4c{left:553.977000px;}
.x52{left:558.463500px;}
.x2a{left:560.519776px;}
.x59{left:565.992000px;}
.x75{left:574.962000px;}
.x4d{left:581.985000px;}
.x67{left:586.660500px;}
.x76{left:597.378000px;}
.x68{left:599.113500px;}
.x77{left:600.453000px;}
.x69{left:609.076500px;}
.x78{left:612.069000px;}
.x6b{left:614.320500px;}
.x6a{left:615.405000px;}
.x23{left:628.372249px;}
.x6c{left:635.422500px;}
.x24{left:640.259744px;}
.x83{left:644.737500px;}
.x84{left:652.207500px;}
.x25{left:656.819737px;}
.x11{left:665.640000px;}
.x3{left:671.039732px;}
.x26{left:673.559731px;}
.x27{left:728.999708px;}
.x28{left:742.319703px;}
.x3f{left:743.964001px;}
.x6d{left:751.362000px;}
@media print{
.vd{vertical-align:-72.320000pt;}
.v10{vertical-align:-48.021333pt;}
.v1{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.168000pt;}
.v3{vertical-align:13.136000pt;}
.v6{vertical-align:19.280000pt;}
.v2{vertical-align:21.941333pt;}
.v7{vertical-align:22.880000pt;}
.v11{vertical-align:28.485333pt;}
.v4{vertical-align:35.077333pt;}
.v9{vertical-align:37.973333pt;}
.v8{vertical-align:41.744000pt;}
.ve{vertical-align:42.800000pt;}
.vf{vertical-align:61.157333pt;}
.vb{vertical-align:72.320000pt;}
.vc{vertical-align:85.456000pt;}
.va{vertical-align:138.682667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls56{letter-spacing:0.000479pt;}
.ls17{letter-spacing:0.000681pt;}
.ls32{letter-spacing:0.000882pt;}
.ls11{letter-spacing:0.000996pt;}
.ls38{letter-spacing:0.001931pt;}
.ls6d{letter-spacing:0.001995pt;}
.ls7d{letter-spacing:0.002133pt;}
.ls9c{letter-spacing:0.002491pt;}
.ls3a{letter-spacing:0.002694pt;}
.lsb{letter-spacing:0.002906pt;}
.ls9{letter-spacing:0.003246pt;}
.ls3e{letter-spacing:0.004349pt;}
.ls13{letter-spacing:0.004465pt;}
.ls65{letter-spacing:0.006216pt;}
.ls0{letter-spacing:0.016533pt;}
.ls77{letter-spacing:1.904681pt;}
.ls6e{letter-spacing:1.905799pt;}
.ls21{letter-spacing:1.910015pt;}
.ls51{letter-spacing:2.332772pt;}
.ls5f{letter-spacing:2.338105pt;}
.ls10{letter-spacing:2.652911pt;}
.ls58{letter-spacing:2.655095pt;}
.lsa{letter-spacing:2.657014pt;}
.lsa1{letter-spacing:2.657253pt;}
.ls15{letter-spacing:2.658245pt;}
.ls95{letter-spacing:2.668629pt;}
.ls7c{letter-spacing:2.844521pt;}
.ls71{letter-spacing:2.849855pt;}
.ls68{letter-spacing:2.948564pt;}
.ls69{letter-spacing:2.953897pt;}
.ls66{letter-spacing:2.956597pt;}
.ls92{letter-spacing:3.059246pt;}
.ls1f{letter-spacing:4.556911pt;}
.ls22{letter-spacing:4.562245pt;}
.ls99{letter-spacing:4.699061pt;}
.ls2e{letter-spacing:4.807919pt;}
.ls20{letter-spacing:4.994245pt;}
.ls6c{letter-spacing:5.313316pt;}
.ls27{letter-spacing:5.602245pt;}
.ls1{letter-spacing:5.925918pt;}
.ls24{letter-spacing:6.007207pt;}
.ls16{letter-spacing:6.012540pt;}
.ls29{letter-spacing:8.668911pt;}
.ls73{letter-spacing:8.854329pt;}
.ls75{letter-spacing:11.511578pt;}
.ls1b{letter-spacing:11.803145pt;}
.ls7e{letter-spacing:11.806400pt;}
.lsd{letter-spacing:11.808479pt;}
.ls7{letter-spacing:13.797812pt;}
.lsc{letter-spacing:14.460911pt;}
.ls26{letter-spacing:14.466245pt;}
.ls7b{letter-spacing:14.754424pt;}
.lsf{letter-spacing:14.757812pt;}
.ls4b{letter-spacing:14.759467pt;}
.ls59{letter-spacing:14.760239pt;}
.ls47{letter-spacing:14.761682pt;}
.ls4c{letter-spacing:14.763145pt;}
.ls50{letter-spacing:14.764662pt;}
.ls6a{letter-spacing:14.771215pt;}
.ls4f{letter-spacing:15.557812pt;}
.ls31{letter-spacing:15.835145pt;}
.ls8c{letter-spacing:16.066133pt;}
.ls8b{letter-spacing:16.072027pt;}
.ls1c{letter-spacing:16.364911pt;}
.ls41{letter-spacing:17.045812pt;}
.ls42{letter-spacing:17.055971pt;}
.ls4a{letter-spacing:17.356597pt;}
.ls1e{letter-spacing:17.410245pt;}
.ls12{letter-spacing:17.415578pt;}
.ls89{letter-spacing:17.698843pt;}
.ls80{letter-spacing:17.708745pt;}
.ls79{letter-spacing:17.818313pt;}
.ls97{letter-spacing:17.821913pt;}
.ls72{letter-spacing:17.823646pt;}
.ls46{letter-spacing:17.871016pt;}
.ls94{letter-spacing:18.443145pt;}
.ls7a{letter-spacing:19.192855pt;}
.ls86{letter-spacing:19.260540pt;}
.ls2d{letter-spacing:19.659145pt;}
.ls35{letter-spacing:19.676540pt;}
.ls40{letter-spacing:19.703578pt;}
.ls8{letter-spacing:19.804540pt;}
.ls88{letter-spacing:19.880199pt;}
.ls8f{letter-spacing:19.923246pt;}
.ls45{letter-spacing:19.929682pt;}
.ls4{letter-spacing:19.996052pt;}
.ls3{letter-spacing:19.998097pt;}
.ls57{letter-spacing:20.070649pt;}
.lsb9{letter-spacing:20.267145pt;}
.ls23{letter-spacing:20.364911pt;}
.ls14{letter-spacing:20.370245pt;}
.ls19{letter-spacing:20.418245pt;}
.ls18{letter-spacing:20.423578pt;}
.ls28{letter-spacing:20.476911pt;}
.ls5e{letter-spacing:20.485812pt;}
.ls5d{letter-spacing:20.491145pt;}
.ls30{letter-spacing:20.555145pt;}
.ls36{letter-spacing:20.769873pt;}
.ls44{letter-spacing:20.775207pt;}
.ls93{letter-spacing:21.095578pt;}
.ls43{letter-spacing:21.143207pt;}
.ls3d{letter-spacing:21.211145pt;}
.lsb7{letter-spacing:21.423016pt;}
.ls48{letter-spacing:21.436911pt;}
.ls2a{letter-spacing:21.500540pt;}
.ls87{letter-spacing:21.585873pt;}
.ls34{letter-spacing:21.852540pt;}
.ls85{letter-spacing:21.932597pt;}
.ls64{letter-spacing:22.155145pt;}
.ls60{letter-spacing:22.159383pt;}
.ls61{letter-spacing:22.160479pt;}
.ls2c{letter-spacing:22.310347pt;}
.ls3f{letter-spacing:22.369931pt;}
.ls8a{letter-spacing:22.385931pt;}
.ls53{letter-spacing:22.421812pt;}
.ls52{letter-spacing:22.426050pt;}
.ls39{letter-spacing:22.502347pt;}
.ls37{letter-spacing:22.507680pt;}
.ls3b{letter-spacing:22.546079pt;}
.ls67{letter-spacing:22.546245pt;}
.ls2f{letter-spacing:23.211680pt;}
.ls1a{letter-spacing:23.426245pt;}
.lsa7{letter-spacing:23.516540pt;}
.ls5c{letter-spacing:23.549913pt;}
.lse{letter-spacing:23.563680pt;}
.ls76{letter-spacing:23.609490pt;}
.ls2b{letter-spacing:23.719207pt;}
.ls63{letter-spacing:23.831842pt;}
.lsaf{letter-spacing:23.908905pt;}
.ls55{letter-spacing:24.098509pt;}
.ls33{letter-spacing:24.369873pt;}
.ls4d{letter-spacing:24.513873pt;}
.ls70{letter-spacing:24.960479pt;}
.ls6f{letter-spacing:24.969685pt;}
.ls62{letter-spacing:25.196807pt;}
.ls4e{letter-spacing:25.452597pt;}
.ls54{letter-spacing:25.463474pt;}
.ls5{letter-spacing:25.667203pt;}
.ls49{letter-spacing:25.921873pt;}
.ls6{letter-spacing:26.833873pt;}
.ls5b{letter-spacing:27.159207pt;}
.lsb6{letter-spacing:27.431207pt;}
.ls3c{letter-spacing:27.591207pt;}
.ls74{letter-spacing:32.468157pt;}
.lsab{letter-spacing:34.659733pt;}
.ls96{letter-spacing:36.654400pt;}
.ls8d{letter-spacing:37.838400pt;}
.ls82{letter-spacing:38.739733pt;}
.ls84{letter-spacing:40.233067pt;}
.ls90{letter-spacing:40.334400pt;}
.lsaa{letter-spacing:40.355733pt;}
.lsa4{letter-spacing:43.246400pt;}
.ls9b{letter-spacing:47.774400pt;}
.lsb4{letter-spacing:49.742400pt;}
.lsb3{letter-spacing:50.030400pt;}
.lsa0{letter-spacing:51.513067pt;}
.ls83{letter-spacing:52.318400pt;}
.lsa9{letter-spacing:53.139733pt;}
.ls9d{letter-spacing:53.539733pt;}
.lsa2{letter-spacing:53.945067pt;}
.ls8e{letter-spacing:54.595733pt;}
.lsa5{letter-spacing:55.577067pt;}
.lsad{letter-spacing:55.886400pt;}
.lsa6{letter-spacing:56.265067pt;}
.ls9e{letter-spacing:56.302400pt;}
.ls9f{letter-spacing:56.675733pt;}
.lsb1{letter-spacing:59.795733pt;}
.ls9a{letter-spacing:60.014400pt;}
.lsac{letter-spacing:60.537067pt;}
.lsa8{letter-spacing:61.267733pt;}
.lsb5{letter-spacing:65.006400pt;}
.lsb2{letter-spacing:65.299733pt;}
.lsa3{letter-spacing:66.073067pt;}
.ls91{letter-spacing:69.027733pt;}
.lsb8{letter-spacing:69.198400pt;}
.lsb0{letter-spacing:70.121067pt;}
.ls98{letter-spacing:70.558400pt;}
.lsae{letter-spacing:70.702400pt;}
.ls5a{letter-spacing:93.180597pt;}
.ls81{letter-spacing:231.268349pt;}
.ls78{letter-spacing:428.955680pt;}
.ls6b{letter-spacing:440.855578pt;}
.ls25{letter-spacing:664.679578pt;}
.ls1d{letter-spacing:686.482245pt;}
.ls7f{letter-spacing:840.220911pt;}
.ws4d{word-spacing:-53.133867pt;}
.ws9a{word-spacing:-38.362652pt;}
.ws77{word-spacing:-36.077895pt;}
.ws1f{word-spacing:-34.611401pt;}
.ws92{word-spacing:-34.324478pt;}
.ws75{word-spacing:-33.686871pt;}
.ws79{word-spacing:-31.816559pt;}
.wsc4{word-spacing:-29.531803pt;}
.ws3{word-spacing:-28.816521pt;}
.ws2f{word-spacing:-28.692333pt;}
.wsd{word-spacing:-26.578784pt;}
.wsae{word-spacing:-25.791179pt;}
.wsc2{word-spacing:-25.763010pt;}
.wsc1{word-spacing:-25.753994pt;}
.wsad{word-spacing:-25.738045pt;}
.wsc5{word-spacing:-22.793688pt;}
.wsc6{word-spacing:-20.881091pt;}
.wscc{word-spacing:-19.859402pt;}
.ws3e{word-spacing:-19.859057pt;}
.wsd5{word-spacing:-19.854068pt;}
.ws23{word-spacing:-19.840186pt;}
.ws90{word-spacing:-19.182068pt;}
.ws54{word-spacing:-18.777339pt;}
.ws50{word-spacing:-18.776735pt;}
.ws82{word-spacing:-18.744735pt;}
.ws2b{word-spacing:-17.491402pt;}
.ws7d{word-spacing:-17.214068pt;}
.ws9c{word-spacing:-16.968735pt;}
.ws36{word-spacing:-16.904735pt;}
.wsa8{word-spacing:-16.899070pt;}
.ws99{word-spacing:-16.893737pt;}
.ws8b{word-spacing:-16.744735pt;}
.wsa3{word-spacing:-16.099070pt;}
.ws1a{word-spacing:-14.804372pt;}
.ws4{word-spacing:-14.767354pt;}
.ws1e{word-spacing:-14.760588pt;}
.ws113{word-spacing:-14.248735pt;}
.ws9b{word-spacing:-13.845865pt;}
.wscd{word-spacing:-13.839038pt;}
.ws72{word-spacing:-13.400735pt;}
.ws2{word-spacing:-13.343995pt;}
.ws1{word-spacing:-13.306875pt;}
.ws80{word-spacing:-12.595402pt;}
.ws70{word-spacing:-12.430068pt;}
.ws0{word-spacing:-12.005115pt;}
.ws98{word-spacing:-10.960531pt;}
.ws10f{word-spacing:-10.891198pt;}
.wsc0{word-spacing:-10.761332pt;}
.wsb1{word-spacing:-10.499999pt;}
.ws12{word-spacing:-10.216117pt;}
.wsab{word-spacing:-9.739198pt;}
.ws8a{word-spacing:-8.672531pt;}
.ws115{word-spacing:-8.331198pt;}
.wsbb{word-spacing:-8.112195pt;}
.ws73{word-spacing:-7.392531pt;}
.wsaf{word-spacing:-5.840531pt;}
.ws37{word-spacing:-2.956616pt;}
.ws39{word-spacing:-2.951282pt;}
.ws117{word-spacing:-2.327263pt;}
.ws10c{word-spacing:-2.274129pt;}
.ws86{word-spacing:-2.114728pt;}
.wse2{word-spacing:-2.061594pt;}
.ws104{word-spacing:-1.636523pt;}
.wse1{word-spacing:-1.530255pt;}
.ws3c{word-spacing:-1.477121pt;}
.wsd7{word-spacing:-1.423988pt;}
.ws26{word-spacing:-1.370854pt;}
.ws10{word-spacing:-1.267251pt;}
.ws55{word-spacing:-1.105184pt;}
.wsa9{word-spacing:-0.998917pt;}
.ws19{word-spacing:-0.945783pt;}
.ws47{word-spacing:-0.680113pt;}
.ws87{word-spacing:-0.520712pt;}
.ws7{word-spacing:-0.454298pt;}
.ws96{word-spacing:-0.364541pt;}
.ws95{word-spacing:-0.361310pt;}
.ws1d{word-spacing:-0.308176pt;}
.wsca{word-spacing:-0.201909pt;}
.wsc9{word-spacing:-0.148775pt;}
.ws62{word-spacing:-0.095641pt;}
.wsda{word-spacing:-0.053134pt;}
.ws30{word-spacing:-0.047821pt;}
.ws51{word-spacing:-0.037194pt;}
.wsbe{word-spacing:-0.019085pt;}
.ws3a{word-spacing:-0.013752pt;}
.ws5{word-spacing:0.000000pt;}
.ws24{word-spacing:0.010627pt;}
.wsb4{word-spacing:0.170028pt;}
.wsc{word-spacing:0.215194pt;}
.wsa6{word-spacing:0.223162pt;}
.wsa5{word-spacing:0.255148pt;}
.wsa7{word-spacing:0.276296pt;}
.ws61{word-spacing:0.329430pt;}
.ws85{word-spacing:0.382564pt;}
.ws108{word-spacing:0.435698pt;}
.wsfb{word-spacing:0.541965pt;}
.ws116{word-spacing:0.595099pt;}
.ws57{word-spacing:0.648233pt;}
.ws3d{word-spacing:0.701367pt;}
.ws3f{word-spacing:0.750678pt;}
.wsdc{word-spacing:0.754501pt;}
.wse5{word-spacing:0.807635pt;}
.wsb2{word-spacing:0.860769pt;}
.ws64{word-spacing:0.967036pt;}
.ws60{word-spacing:1.020170pt;}
.ws52{word-spacing:1.073304pt;}
.ws81{word-spacing:1.126438pt;}
.wsb9{word-spacing:1.179572pt;}
.wse3{word-spacing:1.232706pt;}
.ws42{word-spacing:1.338973pt;}
.wsf5{word-spacing:1.392107pt;}
.wse8{word-spacing:1.445241pt;}
.wsc3{word-spacing:1.498375pt;}
.ws5f{word-spacing:1.604643pt;}
.ws44{word-spacing:1.817178pt;}
.wsea{word-spacing:1.923446pt;}
.wsff{word-spacing:1.976580pt;}
.ws63{word-spacing:2.082848pt;}
.wsec{word-spacing:2.099459pt;}
.ws6a{word-spacing:2.135981pt;}
.ws40{word-spacing:2.242249pt;}
.ws2a{word-spacing:2.336735pt;}
.ws2d{word-spacing:2.348517pt;}
.ws2c{word-spacing:2.355459pt;}
.ws101{word-spacing:2.401651pt;}
.ws66{word-spacing:2.454785pt;}
.ws107{word-spacing:2.507919pt;}
.ws8{word-spacing:2.558413pt;}
.wse6{word-spacing:2.561052pt;}
.ws7b{word-spacing:2.614186pt;}
.ws13{word-spacing:2.654054pt;}
.ws7c{word-spacing:2.667320pt;}
.ws11{word-spacing:2.701875pt;}
.ws6d{word-spacing:2.720454pt;}
.ws16{word-spacing:2.749696pt;}
.wsbd{word-spacing:2.773588pt;}
.ws97{word-spacing:2.879856pt;}
.ws35{word-spacing:2.923751pt;}
.ws8d{word-spacing:2.932532pt;}
.ws1b{word-spacing:2.932989pt;}
.wsce{word-spacing:2.949169pt;}
.ws22{word-spacing:2.986123pt;}
.ws34{word-spacing:3.006051pt;}
.wsc7{word-spacing:3.039257pt;}
.ws8c{word-spacing:3.092391pt;}
.ws8f{word-spacing:3.145525pt;}
.ws100{word-spacing:3.198659pt;}
.ws5e{word-spacing:3.251793pt;}
.ws56{word-spacing:3.304927pt;}
.ws68{word-spacing:3.358060pt;}
.wsa4{word-spacing:3.411194pt;}
.wsf{word-spacing:3.419187pt;}
.ws29{word-spacing:3.517462pt;}
.ws53{word-spacing:3.570596pt;}
.ws4f{word-spacing:3.623730pt;}
.ws9e{word-spacing:3.676864pt;}
.ws9d{word-spacing:3.729997pt;}
.ws4e{word-spacing:3.783131pt;}
.wse9{word-spacing:3.889399pt;}
.wsa1{word-spacing:3.942533pt;}
.wsd8{word-spacing:3.985067pt;}
.ws10a{word-spacing:3.989373pt;}
.ws11e{word-spacing:4.048801pt;}
.wsaa{word-spacing:4.101935pt;}
.wse7{word-spacing:4.155068pt;}
.wsde{word-spacing:4.208202pt;}
.wsdd{word-spacing:4.238040pt;}
.ws76{word-spacing:4.314470pt;}
.ws102{word-spacing:4.367604pt;}
.wsfe{word-spacing:4.420738pt;}
.wsfc{word-spacing:4.473872pt;}
.wsa{word-spacing:4.519066pt;}
.wsd9{word-spacing:4.527005pt;}
.wsdf{word-spacing:4.580139pt;}
.wsf3{word-spacing:4.633273pt;}
.ws69{word-spacing:4.739541pt;}
.ws6e{word-spacing:4.782067pt;}
.wsac{word-spacing:4.792675pt;}
.ws15{word-spacing:4.805990pt;}
.wsb3{word-spacing:4.898943pt;}
.ws5c{word-spacing:5.005210pt;}
.wsf7{word-spacing:5.054202pt;}
.ws5b{word-spacing:5.058344pt;}
.ws59{word-spacing:5.067129pt;}
.ws58{word-spacing:5.099133pt;}
.ws5a{word-spacing:5.111478pt;}
.ws14{word-spacing:5.140736pt;}
.ws94{word-spacing:5.144793pt;}
.ws93{word-spacing:5.150289pt;}
.ws88{word-spacing:5.164612pt;}
.ws89{word-spacing:5.166610pt;}
.ws46{word-spacing:5.217746pt;}
.wsa2{word-spacing:5.270880pt;}
.ws6b{word-spacing:5.377147pt;}
.wsf9{word-spacing:5.430281pt;}
.ws112{word-spacing:5.589683pt;}
.wsf4{word-spacing:5.642817pt;}
.ws84{word-spacing:5.695951pt;}
.ws2e{word-spacing:5.738467pt;}
.ws74{word-spacing:5.749084pt;}
.ws41{word-spacing:5.802218pt;}
.ws103{word-spacing:5.855352pt;}
.ws9{word-spacing:5.858048pt;}
.ws48{word-spacing:5.908486pt;}
.ws83{word-spacing:5.961620pt;}
.ws18{word-spacing:6.067888pt;}
.ws119{word-spacing:6.121021pt;}
.wsf6{word-spacing:6.174155pt;}
.ws114{word-spacing:6.280423pt;}
.wsb{word-spacing:6.288435pt;}
.ws27{word-spacing:6.333557pt;}
.wsba{word-spacing:6.386691pt;}
.ws4c{word-spacing:6.439825pt;}
.ws45{word-spacing:6.492959pt;}
.ws6{word-spacing:6.527539pt;}
.wse{word-spacing:6.539172pt;}
.ws28{word-spacing:6.599226pt;}
.ws1c{word-spacing:6.652360pt;}
.ws10e{word-spacing:6.654126pt;}
.wsf8{word-spacing:6.705494pt;}
.ws71{word-spacing:6.803138pt;}
.ws5d{word-spacing:6.811762pt;}
.wseb{word-spacing:6.864896pt;}
.ws109{word-spacing:6.918029pt;}
.ws91{word-spacing:6.971163pt;}
.ws10d{word-spacing:7.130565pt;}
.ws7f{word-spacing:7.236833pt;}
.wsbf{word-spacing:7.392374pt;}
.ws6f{word-spacing:7.396234pt;}
.ws7e{word-spacing:7.502502pt;}
.wsb0{word-spacing:7.552374pt;}
.ws67{word-spacing:7.555636pt;}
.ws7a{word-spacing:7.661904pt;}
.wsa0{word-spacing:7.715037pt;}
.ws9f{word-spacing:7.768171pt;}
.wscb{word-spacing:7.821305pt;}
.ws21{word-spacing:8.193242pt;}
.ws6c{word-spacing:8.777715pt;}
.wsed{word-spacing:8.830849pt;}
.wsc8{word-spacing:9.096518pt;}
.wsfd{word-spacing:9.149652pt;}
.ws110{word-spacing:9.202786pt;}
.ws111{word-spacing:9.362187pt;}
.wsb5{word-spacing:9.415321pt;}
.ws10b{word-spacing:9.680991pt;}
.ws11d{word-spacing:9.787258pt;}
.wsf0{word-spacing:9.840392pt;}
.wsf1{word-spacing:9.893526pt;}
.ws105{word-spacing:9.946660pt;}
.ws118{word-spacing:10.796802pt;}
.wsd6{word-spacing:11.115605pt;}
.ws106{word-spacing:11.328140pt;}
.ws11a{word-spacing:11.700077pt;}
.ws11b{word-spacing:12.443952pt;}
.wsef{word-spacing:12.869023pt;}
.wsee{word-spacing:12.922156pt;}
.wsfa{word-spacing:16.269590pt;}
.ws11f{word-spacing:17.119732pt;}
.ws43{word-spacing:17.481042pt;}
.wsd2{word-spacing:17.666953pt;}
.wsd0{word-spacing:17.670597pt;}
.wsf2{word-spacing:18.703121pt;}
.ws33{word-spacing:18.968790pt;}
.wsbc{word-spacing:19.191953pt;}
.wsdb{word-spacing:19.612261pt;}
.ws78{word-spacing:19.671869pt;}
.ws65{word-spacing:19.765798pt;}
.ws11c{word-spacing:20.201496pt;}
.ws8e{word-spacing:20.297137pt;}
.wscf{word-spacing:20.350271pt;}
.wse4{word-spacing:20.617557pt;}
.wsb6{word-spacing:21.306518pt;}
.ws49{word-spacing:21.625484pt;}
.ws4a{word-spacing:23.803972pt;}
.wse0{word-spacing:23.993557pt;}
.ws32{word-spacing:25.823059pt;}
.ws4b{word-spacing:33.987784pt;}
.wsb7{word-spacing:38.373279pt;}
.ws31{word-spacing:44.309609pt;}
.wsd1{word-spacing:48.976923pt;}
.wsb8{word-spacing:58.372866pt;}
.ws17{word-spacing:62.166867pt;}
.wsd4{word-spacing:123.189339pt;}
.wsd3{word-spacing:123.853136pt;}
.ws38{word-spacing:522.316536pt;}
.ws25{word-spacing:542.458053pt;}
.ws3b{word-spacing:593.834721pt;}
.ws20{word-spacing:727.599386pt;}
._26{margin-left:-41.144425pt;}
._2b{margin-left:-28.426619pt;}
._40{margin-left:-26.566933pt;}
._27{margin-left:-25.185453pt;}
._2a{margin-left:-14.623236pt;}
._20{margin-left:-8.630654pt;}
._25{margin-left:-7.192228pt;}
._1f{margin-left:-5.191000pt;}
._17{margin-left:-3.439654pt;}
._e{margin-left:-1.904602pt;}
._0{margin-left:-0.984101pt;}
._1{width:0.905742pt;}
._3{width:1.994173pt;}
._b{width:2.978268pt;}
._9{width:3.959322pt;}
._c{width:5.137183pt;}
._13{width:6.059034pt;}
._2{width:7.280891pt;}
._f{width:8.340340pt;}
._8{width:9.287501pt;}
._10{width:11.102526pt;}
._11{width:12.003592pt;}
._19{width:13.716340pt;}
._12{width:15.046801pt;}
._a{width:16.139722pt;}
._3c{width:17.100888pt;}
._d{width:18.214956pt;}
._5{width:19.768584pt;}
._4{width:21.102932pt;}
._1a{width:22.354622pt;}
._18{width:24.157837pt;}
._1e{width:25.154766pt;}
._3d{width:26.125429pt;}
._21{width:27.028704pt;}
._22{width:28.359438pt;}
._1b{width:29.808099pt;}
._15{width:31.744782pt;}
._16{width:33.005276pt;}
._1d{width:34.643281pt;}
._23{width:35.773247pt;}
._7{width:37.347987pt;}
._6{width:38.251485pt;}
._1c{width:39.817259pt;}
._3f{width:42.823496pt;}
._3e{width:48.175983pt;}
._14{width:51.916728pt;}
._3b{width:71.731200pt;}
._24{width:86.077200pt;}
._29{width:92.187259pt;}
._39{width:109.974151pt;}
._2c{width:126.692741pt;}
._28{width:131.187517pt;}
._37{width:152.998547pt;}
._33{width:197.002727pt;}
._3a{width:209.211011pt;}
._32{width:254.512342pt;}
._2d{width:262.284574pt;}
._2f{width:263.431637pt;}
._2e{width:280.461515pt;}
._34{width:300.821014pt;}
._36{width:303.586385pt;}
._31{width:331.767032pt;}
._38{width:414.851111pt;}
._35{width:662.600649pt;}
._30{width:920.732305pt;}
.fse{font-size:26.566933pt;}
.fs5{font-size:29.439988pt;}
.fs9{font-size:37.193600pt;}
.fs4{font-size:42.879983pt;}
.fs7{font-size:47.820800pt;}
.fs1{font-size:47.999981pt;}
.fs3{font-size:53.119979pt;}
.fs6{font-size:53.133867pt;}
.fsa{font-size:53.333333pt;}
.fsc{font-size:58.666667pt;}
.fs0{font-size:58.879976pt;}
.fsf{font-size:63.761067pt;}
.fsb{font-size:64.000000pt;}
.fs8{font-size:76.513067pt;}
.fs2{font-size:90.879964pt;}
.fsd{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y73{bottom:2.093353pt;}
.y19{bottom:2.399175pt;}
.y6f{bottom:2.512020pt;}
.yd{bottom:2.559096pt;}
.y6d{bottom:2.880020pt;}
.y71{bottom:3.168020pt;}
.yf{bottom:3.999067pt;}
.y17{bottom:3.999163pt;}
.y26{bottom:3.999177pt;}
.y6c{bottom:18.853353pt;}
.y6{bottom:19.146926pt;}
.y6b{bottom:34.826686pt;}
.y5{bottom:37.066919pt;}
.y7a{bottom:64.608000pt;}
.y70{bottom:68.149333pt;}
.y72{bottom:84.506667pt;}
.y42{bottom:155.306605pt;}
.ya1{bottom:155.682667pt;}
.y156{bottom:156.532000pt;}
.ybd{bottom:157.397333pt;}
.y10d{bottom:157.710667pt;}
.y174{bottom:165.110667pt;}
.y1b3{bottom:169.040000pt;}
.yd2{bottom:171.052000pt;}
.ya0{bottom:171.622667pt;}
.y41{bottom:171.626598pt;}
.y155{bottom:172.472000pt;}
.ybc{bottom:173.338667pt;}
.y10c{bottom:173.652000pt;}
.y69{bottom:179.397333pt;}
.y173{bottom:181.050667pt;}
.y1b2{bottom:184.980000pt;}
.yd1{bottom:186.992000pt;}
.y9f{bottom:187.562667pt;}
.y40{bottom:187.946591pt;}
.y154{bottom:188.412000pt;}
.ybb{bottom:189.278667pt;}
.y194{bottom:189.786667pt;}
.y68{bottom:195.337333pt;}
.y125{bottom:195.844000pt;}
.y172{bottom:196.990667pt;}
.y1b1{bottom:200.921333pt;}
.y10b{bottom:202.746667pt;}
.yd0{bottom:202.932000pt;}
.y9e{bottom:203.502667pt;}
.y153{bottom:204.352000pt;}
.yba{bottom:205.218667pt;}
.y193{bottom:205.726667pt;}
.y67{bottom:211.278667pt;}
.y124{bottom:211.784000pt;}
.y171{bottom:212.930667pt;}
.y3f{bottom:216.106580pt;}
.ycf{bottom:218.872000pt;}
.y152{bottom:220.292000pt;}
.y24{bottom:220.426578pt;}
.yb9{bottom:221.158667pt;}
.y192{bottom:221.666667pt;}
.y66{bottom:227.218667pt;}
.y1b0{bottom:227.488000pt;}
.y123{bottom:227.724000pt;}
.y170{bottom:228.872000pt;}
.yce{bottom:234.813333pt;}
.y9d{bottom:235.384000pt;}
.y151{bottom:236.232000pt;}
.yb8{bottom:237.098667pt;}
.y191{bottom:237.608000pt;}
.y108{bottom:242.157333pt;}
.y65{bottom:243.158667pt;}
.y1af{bottom:243.428000pt;}
.y10a{bottom:243.518667pt;}
.y16f{bottom:244.812000pt;}
.y9c{bottom:251.324000pt;}
.y150{bottom:252.173333pt;}
.y190{bottom:253.548000pt;}
.y122{bottom:256.818667pt;}
.y64{bottom:259.098667pt;}
.y107{bottom:259.458667pt;}
.y16e{bottom:260.752000pt;}
.y104{bottom:262.114667pt;}
.y101{bottom:264.012000pt;}
.yb7{bottom:266.193333pt;}
.ycd{bottom:266.693333pt;}
.y9b{bottom:267.264000pt;}
.y100{bottom:267.296000pt;}
.y46{bottom:267.306560pt;}
.y14f{bottom:268.113333pt;}
.y18f{bottom:269.488000pt;}
.y1ae{bottom:269.994667pt;}
.y103{bottom:270.617333pt;}
.y106{bottom:275.398667pt;}
.y16d{bottom:276.692000pt;}
.y102{bottom:278.586667pt;}
.yff{bottom:280.478667pt;}
.ycc{bottom:282.633333pt;}
.y45{bottom:282.666554pt;}
.y9a{bottom:283.204000pt;}
.y63{bottom:285.038667pt;}
.y18e{bottom:285.428000pt;}
.y1ad{bottom:285.934667pt;}
.y62{bottom:288.322667pt;}
.y105{bottom:291.338667pt;}
.y14e{bottom:292.632000pt;}
.y44{bottom:298.026547pt;}
.ycb{bottom:298.573333pt;}
.y99{bottom:299.144000pt;}
.y109{bottom:301.966667pt;}
.y1ac{bottom:312.502667pt;}
.y43{bottom:314.026541pt;}
.yca{bottom:314.514667pt;}
.y18d{bottom:314.522667pt;}
.y16c{bottom:317.152000pt;}
.y23{bottom:322.346538pt;}
.y121{bottom:324.000000pt;}
.yb6{bottom:326.061333pt;}
.y1ab{bottom:328.442667pt;}
.y14d{bottom:329.817333pt;}
.yc9{bottom:330.454667pt;}
.y98{bottom:331.025333pt;}
.y61{bottom:333.486667pt;}
.yfe{bottom:334.410667pt;}
.y120{bottom:339.940000pt;}
.yb5{bottom:342.001333pt;}
.y1aa{bottom:344.382667pt;}
.y14c{bottom:345.757333pt;}
.yc8{bottom:346.394667pt;}
.y97{bottom:346.965333pt;}
.y60{bottom:349.426667pt;}
.yfd{bottom:350.350667pt;}
.y16b{bottom:354.336000pt;}
.y11f{bottom:355.880000pt;}
.y3e{bottom:357.386524pt;}
.yb4{bottom:357.942667pt;}
.y18c{bottom:358.450667pt;}
.y14b{bottom:361.697333pt;}
.yc7{bottom:362.334667pt;}
.y96{bottom:362.905333pt;}
.yfc{bottom:366.290667pt;}
.y3d{bottom:367.946519pt;}
.y16a{bottom:370.276000pt;}
.y1a9{bottom:370.949333pt;}
.y11e{bottom:371.821333pt;}
.yb3{bottom:373.882667pt;}
.y18b{bottom:374.390667pt;}
.y5f{bottom:375.366667pt;}
.y14a{bottom:377.637333pt;}
.yc6{bottom:378.274667pt;}
.y5e{bottom:378.650667pt;}
.y95{bottom:378.845333pt;}
.y3c{bottom:383.306513pt;}
.y169{bottom:386.216000pt;}
.y1a8{bottom:386.890667pt;}
.y11d{bottom:387.761333pt;}
.yb2{bottom:389.822667pt;}
.y18a{bottom:390.330667pt;}
.y149{bottom:393.577333pt;}
.y94{bottom:394.785333pt;}
.yfb{bottom:395.514667pt;}
.y168{bottom:402.157333pt;}
.y1a7{bottom:402.830667pt;}
.y3b{bottom:405.546504pt;}
.yb1{bottom:405.762667pt;}
.y189{bottom:406.270667pt;}
.y148{bottom:409.517333pt;}
.y93{bottom:410.726667pt;}
.y167{bottom:418.097333pt;}
.yb0{bottom:421.702667pt;}
.y188{bottom:422.212000pt;}
.y22{bottom:422.986497pt;}
.y5d{bottom:423.814667pt;}
.y147{bottom:425.458667pt;}
.y11c{bottom:425.892000pt;}
.y3a{bottom:427.946495pt;}
.y1a6{bottom:429.397333pt;}
.y166{bottom:434.037333pt;}
.yaf{bottom:437.642667pt;}
.y187{bottom:438.152000pt;}
.y5c{bottom:439.754667pt;}
.yfa{bottom:440.678667pt;}
.y146{bottom:441.398667pt;}
.y11b{bottom:441.832000pt;}
.y92{bottom:442.606667pt;}
.y39{bottom:443.306489pt;}
.y1a5{bottom:445.337333pt;}
.y165{bottom:449.977333pt;}
.yae{bottom:453.584000pt;}
.y186{bottom:454.092000pt;}
.y5b{bottom:455.694667pt;}
.yf9{bottom:456.618667pt;}
.y145{bottom:457.338667pt;}
.y11a{bottom:457.772000pt;}
.y91{bottom:458.546667pt;}
.y38{bottom:458.666483pt;}
.y164{bottom:465.917333pt;}
.yad{bottom:469.524000pt;}
.y185{bottom:470.032000pt;}
.y1a4{bottom:471.904000pt;}
.yf8{bottom:472.558667pt;}
.y144{bottom:473.278667pt;}
.y119{bottom:473.712000pt;}
.y37{bottom:473.866477pt;}
.y90{bottom:474.486667pt;}
.y21{bottom:477.866476pt;}
.y5a{bottom:487.576000pt;}
.y1a3{bottom:487.845333pt;}
.yf7{bottom:488.498667pt;}
.y143{bottom:489.218667pt;}
.y36{bottom:489.226471pt;}
.y118{bottom:489.653333pt;}
.y8f{bottom:490.426667pt;}
.y163{bottom:490.437333pt;}
.y20{bottom:491.466470pt;}
.y184{bottom:494.550667pt;}
.y59{bottom:503.516000pt;}
.y1a2{bottom:503.785333pt;}
.yf6{bottom:504.438667pt;}
.y35{bottom:504.586465pt;}
.y1f{bottom:505.066465pt;}
.y117{bottom:505.593333pt;}
.y8e{bottom:506.368000pt;}
.y142{bottom:513.738667pt;}
.y1e{bottom:517.546460pt;}
.y58{bottom:519.456000pt;}
.y34{bottom:519.946459pt;}
.y116{bottom:521.533333pt;}
.y8d{bottom:522.308000pt;}
.y162{bottom:527.621333pt;}
.y1a1{bottom:530.352000pt;}
.y183{bottom:531.736000pt;}
.y33{bottom:535.306453pt;}
.yf5{bottom:536.320000pt;}
.y8c{bottom:538.248000pt;}
.y161{bottom:543.561333pt;}
.y182{bottom:547.676000pt;}
.y57{bottom:548.550667pt;}
.y32{bottom:550.666446pt;}
.y141{bottom:550.922667pt;}
.yf4{bottom:552.260000pt;}
.y8b{bottom:554.188000pt;}
.y115{bottom:556.601333pt;}
.y1a0{bottom:556.918667pt;}
.y160{bottom:559.501333pt;}
.y181{bottom:563.616000pt;}
.y31{bottom:565.866440pt;}
.y140{bottom:566.862667pt;}
.yf3{bottom:568.200000pt;}
.y1d{bottom:571.306438pt;}
.y114{bottom:572.542667pt;}
.y15f{bottom:575.442667pt;}
.y180{bottom:579.556000pt;}
.y30{bottom:581.226434pt;}
.y13f{bottom:582.804000pt;}
.y19f{bottom:583.486667pt;}
.y8a{bottom:586.068000pt;}
.y15e{bottom:591.382667pt;}
.y17f{bottom:595.497333pt;}
.y2f{bottom:596.586428pt;}
.yef{bottom:597.557333pt;}
.y79{bottom:597.791981pt;}
.y13e{bottom:598.744000pt;}
.yf2{bottom:598.917333pt;}
.y89{bottom:602.009333pt;}
.y15d{bottom:607.322667pt;}
.y19e{bottom:610.053333pt;}
.y17e{bottom:611.437333pt;}
.y2e{bottom:611.946422pt;}
.y78{bottom:613.731981pt;}
.y13d{bottom:614.684000pt;}
.yee{bottom:614.857333pt;}
.yf1{bottom:614.858667pt;}
.yea{bottom:617.514667pt;}
.y88{bottom:617.949333pt;}
.y113{bottom:618.373333pt;}
.ye7{bottom:619.410667pt;}
.ye6{bottom:622.694667pt;}
.y15c{bottom:623.262667pt;}
.y1c{bottom:625.226417pt;}
.y19d{bottom:625.993333pt;}
.ye9{bottom:626.016000pt;}
.y2d{bottom:627.306416pt;}
.y17d{bottom:627.377333pt;}
.y13c{bottom:630.624000pt;}
.yed{bottom:630.798667pt;}
.ye8{bottom:633.986667pt;}
.ye5{bottom:635.878667pt;}
.y15b{bottom:639.202667pt;}
.y19c{bottom:641.933333pt;}
.y2c{bottom:642.666410pt;}
.y17c{bottom:643.317333pt;}
.yec{bottom:643.441333pt;}
.y13b{bottom:646.564000pt;}
.yeb{bottom:646.738667pt;}
.y56{bottom:649.929333pt;}
.y15a{bottom:655.142667pt;}
.yf0{bottom:657.365333pt;}
.y2b{bottom:657.866404pt;}
.y19b{bottom:657.873333pt;}
.yc5{bottom:658.070667pt;}
.y13a{bottom:662.504000pt;}
.y55{bottom:664.541333pt;}
.y17b{bottom:667.836000pt;}
.y159{bottom:671.084000pt;}
.y2a{bottom:673.226397pt;}
.y87{bottom:675.769333pt;}
.y139{bottom:678.445333pt;}
.y1b{bottom:678.986395pt;}
.y86{bottom:679.053333pt;}
.y54{bottom:679.153333pt;}
.y19a{bottom:684.441333pt;}
.y158{bottom:687.024000pt;}
.y112{bottom:688.241333pt;}
.y29{bottom:688.586391pt;}
.ye4{bottom:689.809333pt;}
.y111{bottom:691.525333pt;}
.y1a{bottom:692.746390pt;}
.y53{bottom:693.765333pt;}
.y138{bottom:694.385333pt;}
.y199{bottom:700.381333pt;}
.yc4{bottom:702.964000pt;}
.y28{bottom:703.946385pt;}
.y17a{bottom:705.021333pt;}
.ye3{bottom:705.749333pt;}
.y52{bottom:708.377333pt;}
.y137{bottom:710.325333pt;}
.y198{bottom:716.321333pt;}
.yc3{bottom:718.904000pt;}
.y27{bottom:719.306379pt;}
.y25{bottom:720.747200pt;}
.y179{bottom:720.961333pt;}
.ye2{bottom:721.690667pt;}
.y51{bottom:722.989333pt;}
.y85{bottom:724.217333pt;}
.y18{bottom:726.187200pt;}
.y136{bottom:726.265333pt;}
.yc2{bottom:734.844000pt;}
.y110{bottom:736.689333pt;}
.y178{bottom:736.901333pt;}
.y50{bottom:737.601333pt;}
.ye1{bottom:737.630667pt;}
.y135{bottom:742.205333pt;}
.y197{bottom:745.416000pt;}
.y84{bottom:750.157333pt;}
.y14{bottom:750.506366pt;}
.y15{bottom:750.666366pt;}
.yc1{bottom:750.784000pt;}
.y4f{bottom:752.213333pt;}
.y177{bottom:752.841333pt;}
.y83{bottom:753.441333pt;}
.ye0{bottom:753.570667pt;}
.y16{bottom:754.667200pt;}
.y134{bottom:758.145333pt;}
.y157{bottom:766.725333pt;}
.y4e{bottom:766.824000pt;}
.y176{bottom:768.782667pt;}
.yac{bottom:769.381333pt;}
.ydf{bottom:769.510667pt;}
.y133{bottom:774.086667pt;}
.y10f{bottom:778.569333pt;}
.y4d{bottom:781.436000pt;}
.y10e{bottom:781.853333pt;}
.yc0{bottom:782.665333pt;}
.yab{bottom:785.321333pt;}
.yde{bottom:785.450667pt;}
.y132{bottom:790.026667pt;}
.y175{bottom:793.301333pt;}
.y4c{bottom:796.048000pt;}
.y82{bottom:798.605333pt;}
.ydd{bottom:801.390667pt;}
.y196{bottom:805.284000pt;}
.y131{bottom:805.966667pt;}
.y4b{bottom:810.660000pt;}
.yb{bottom:811.626342pt;}
.ybf{bottom:814.545333pt;}
.ydc{bottom:817.332000pt;}
.y130{bottom:821.906667pt;}
.y81{bottom:824.545333pt;}
.y4a{bottom:825.272000pt;}
.y80{bottom:827.829333pt;}
.yaa{bottom:830.485333pt;}
.ydb{bottom:833.272000pt;}
.y195{bottom:834.378667pt;}
.y12f{bottom:837.846667pt;}
.y49{bottom:839.884000pt;}
.ya{bottom:840.746330pt;}
.ya9{bottom:846.425333pt;}
.yda{bottom:849.212000pt;}
.y12e{bottom:853.786667pt;}
.y48{bottom:854.496000pt;}
.ya8{bottom:862.366667pt;}
.y12d{bottom:869.728000pt;}
.y9{bottom:869.866319pt;}
.ya7{bottom:878.306667pt;}
.yd9{bottom:881.092000pt;}
.y7f{bottom:882.992000pt;}
.y12c{bottom:885.668000pt;}
.y7e{bottom:886.276000pt;}
.y77{bottom:887.605305pt;}
.ya6{bottom:894.246667pt;}
.yd8{bottom:897.032000pt;}
.y8{bottom:899.146307pt;}
.y12b{bottom:901.608000pt;}
.ybe{bottom:910.186667pt;}
.yd7{bottom:912.973333pt;}
.y47{bottom:915.500000pt;}
.y12a{bottom:917.548000pt;}
.yc{bottom:923.307200pt;}
.ya5{bottom:926.126667pt;}
.yd6{bottom:928.913333pt;}
.y13{bottom:931.466294pt;}
.y129{bottom:933.488000pt;}
.y7d{bottom:941.440000pt;}
.ya4{bottom:942.068000pt;}
.y76{bottom:944.724000pt;}
.yd5{bottom:944.853333pt;}
.y12{bottom:947.786288pt;}
.y128{bottom:949.429333pt;}
.ya3{bottom:958.008000pt;}
.yd4{bottom:960.793333pt;}
.y11{bottom:964.106281pt;}
.y127{bottom:965.369333pt;}
.ya2{bottom:973.948000pt;}
.y75{bottom:973.948005pt;}
.yd3{bottom:976.733333pt;}
.y10{bottom:980.746274pt;}
.y126{bottom:981.309333pt;}
.y7c{bottom:989.888000pt;}
.ye{bottom:994.667200pt;}
.y74{bottom:1003.172005pt;}
.y7b{bottom:1005.828000pt;}
.y4{bottom:1020.426258pt;}
.y7{bottom:1046.666248pt;}
.y3{bottom:1048.746247pt;}
.y6a{bottom:1055.400000pt;}
.y6e{bottom:1065.384000pt;}
.y2{bottom:1065.706240pt;}
.y1{bottom:1082.666234pt;}
.h2f{height:2.125355pt;}
.hd{height:12.480000pt;}
.h23{height:15.613333pt;}
.h8{height:16.640000pt;}
.h21{height:17.570667pt;}
.h9{height:17.920000pt;}
.h1f{height:18.736000pt;}
.h14{height:21.131242pt;}
.h31{height:24.696550pt;}
.he{height:29.961551pt;}
.h10{height:32.554674pt;}
.h3{height:32.624987pt;}
.h7{height:32.812487pt;}
.h26{height:33.474560pt;}
.hc{height:34.453111pt;}
.hf{height:34.968736pt;}
.h13{height:35.404673pt;}
.h18{height:35.865600pt;}
.h5{height:36.312485pt;}
.h12{height:36.883110pt;}
.h11{height:36.909048pt;}
.h3a{height:37.193707pt;}
.h2c{height:38.043849pt;}
.h6{height:38.128110pt;}
.h15{height:38.698735pt;}
.hb{height:39.243734pt;}
.h17{height:39.850400pt;}
.h32{height:40.071222pt;}
.h33{height:40.076556pt;}
.ha{height:40.249984pt;}
.h1{height:40.911234pt;}
.h2{height:42.262483pt;}
.h29{height:43.976550pt;}
.h38{height:44.925355pt;}
.h28{height:46.632550pt;}
.h1a{height:46.637884pt;}
.h3b{height:47.820800pt;}
.h1d{height:47.920000pt;}
.h30{height:50.168249pt;}
.h3c{height:50.477173pt;}
.h24{height:52.317708pt;}
.h1e{height:52.343750pt;}
.h2d{height:52.824249pt;}
.h27{height:52.986400pt;}
.h19{height:57.384800pt;}
.h22{height:57.578125pt;}
.h1c{height:59.768550pt;}
.h1b{height:59.773884pt;}
.h2a{height:60.923849pt;}
.h4{height:62.124975pt;}
.h20{height:62.781250pt;}
.h39{height:63.282688pt;}
.h25{height:68.861600pt;}
.h36{height:74.445355pt;}
.h35{height:79.782515pt;}
.h2b{height:79.787849pt;}
.h37{height:87.581355pt;}
.h34{height:140.808021pt;}
.h2e{height:153.944021pt;}
.h16{height:1122.520000pt;}
.h0{height:1122.666667pt;}
.w4{width:3.200000pt;}
.w7{width:6.240000pt;}
.w5{width:7.200000pt;}
.w2{width:7.360000pt;}
.w6{width:101.120000pt;}
.wb{width:326.553333pt;}
.w3{width:353.760000pt;}
.wa{width:744.440000pt;}
.wc{width:784.101333pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.w8{width:793.701333pt;}
.w9{width:794.000000pt;}
.x12{left:-4.160235pt;}
.xb{left:-1.760092pt;}
.x0{left:0.000000pt;}
.x3c{left:9.600000pt;}
.x3a{left:48.000000pt;}
.x3b{left:76.800000pt;}
.x1d{left:88.799964pt;}
.x1b{left:90.559964pt;}
.x1a{left:92.799963pt;}
.x18{left:103.040000pt;}
.x1{left:103.999958pt;}
.x2{left:105.759958pt;}
.x31{left:108.850667pt;}
.x13{left:111.039956pt;}
.x82{left:115.492000pt;}
.x7d{left:116.820000pt;}
.x7f{left:122.670667pt;}
.x32{left:128.776000pt;}
.x1e{left:131.999947pt;}
.x81{left:135.534667pt;}
.x3d{left:138.860000pt;}
.x1c{left:140.959944pt;}
.x30{left:142.058667pt;}
.x4{left:145.439942pt;}
.x2f{left:160.490667pt;}
.x7c{left:166.760000pt;}
.x9{left:179.520000pt;}
.x5c{left:193.458667pt;}
.x14{left:196.159922pt;}
.x15{left:198.719921pt;}
.x19{left:204.160000pt;}
.x6e{left:208.806667pt;}
.x79{left:212.473333pt;}
.x6f{left:214.216000pt;}
.x1f{left:215.519923pt;}
.x20{left:216.479913pt;}
.x70{left:224.761333pt;}
.xa{left:231.360000pt;}
.x45{left:233.522667pt;}
.x16{left:235.680000pt;}
.x36{left:243.524000pt;}
.x46{left:246.664000pt;}
.x53{left:251.401333pt;}
.x17{left:253.439899pt;}
.x2e{left:256.319897pt;}
.x22{left:257.279704pt;}
.x2c{left:258.239897pt;}
.x5a{left:259.790667pt;}
.x4e{left:263.260000pt;}
.x54{left:264.541333pt;}
.x7e{left:266.817333pt;}
.x40{left:269.628000pt;}
.x21{left:275.679890pt;}
.xe{left:280.639856pt;}
.x41{left:282.769333pt;}
.x33{left:289.809333pt;}
.x47{left:293.752000pt;}
.x55{left:299.877333pt;}
.x5{left:304.960353pt;}
.x2d{left:308.159874pt;}
.x37{left:310.888000pt;}
.x7b{left:315.290667pt;}
.x42{left:323.954667pt;}
.x2b{left:329.919868pt;}
.x6{left:338.719865pt;}
.x7{left:341.279863pt;}
.x71{left:344.025333pt;}
.x56{left:346.965333pt;}
.x5d{left:348.322667pt;}
.xd{left:352.639859pt;}
.x34{left:355.637333pt;}
.x5e{left:357.177333pt;}
.x61{left:359.710667pt;}
.x60{left:360.940000pt;}
.xf{left:362.719855pt;}
.x4f{left:363.929333pt;}
.x3e{left:369.791984pt;}
.x48{left:372.417333pt;}
.x5f{left:374.637333pt;}
.xc{left:378.079849pt;}
.x62{left:380.596000pt;}
.x72{left:382.742667pt;}
.x35{left:390.970667pt;}
.x63{left:393.141333pt;}
.x85{left:395.165333pt;}
.x49{left:396.729333pt;}
.x38{left:401.922667pt;}
.x74{left:405.620000pt;}
.x64{left:407.162667pt;}
.x80{left:410.560000pt;}
.x73{left:414.893333pt;}
.x66{left:416.018667pt;}
.x43{left:419.578667pt;}
.x57{left:421.345333pt;}
.x65{left:425.292000pt;}
.x4a{left:432.350667pt;}
.x50{left:435.010667pt;}
.x39{left:437.257333pt;}
.x7a{left:438.174667pt;}
.x10{left:448.799820pt;}
.x51{left:454.489333pt;}
.x8{left:455.839818pt;}
.x4b{left:457.138667pt;}
.x5b{left:472.352000pt;}
.x58{left:473.600000pt;}
.x29{left:479.359808pt;}
.x44{left:490.961333pt;}
.x4c{left:492.424000pt;}
.x52{left:496.412000pt;}
.x2a{left:498.239801pt;}
.x59{left:503.104000pt;}
.x75{left:511.077333pt;}
.x4d{left:517.320000pt;}
.x67{left:521.476000pt;}
.x76{left:531.002667pt;}
.x68{left:532.545333pt;}
.x77{left:533.736000pt;}
.x69{left:541.401333pt;}
.x78{left:544.061333pt;}
.x6b{left:546.062667pt;}
.x6a{left:547.026667pt;}
.x23{left:558.553110pt;}
.x6c{left:564.820000pt;}
.x24{left:569.119772pt;}
.x83{left:573.100000pt;}
.x84{left:579.740000pt;}
.x25{left:583.839766pt;}
.x11{left:591.680000pt;}
.x3{left:596.479761pt;}
.x26{left:598.719761pt;}
.x27{left:647.999741pt;}
.x28{left:659.839736pt;}
.x3f{left:661.301335pt;}
.x6d{left:667.877333pt;}
}




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