
    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_676971db346dd86bf9d0b445.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_cd12523ce31d36ea146f1aec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_d12f1a157f96a64a4e0d928d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.876000;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_73d8d1f7771c0f79adbdc2b8.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_17228337a192ec57e9bb9e24.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.912109;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_2c0240300f22e2a8d4ef290b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_578b4730b9f39e519540b13d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.706055;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_df6cbf23838d2b3b907a6329.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.805664;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_d7038887b1a4571e41237f7a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.919922;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_b8e4b43bcae25a17b57a477f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.899414;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_402b14ff58cca77ffc849d6a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.922852;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_bac57ee4c5f6cc55aafffd93.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.706055;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_26d2f7db04294c1fc76e724d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;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_64a0b8b69ec1ba5d9f4be66d.woff2')format("woff");}.fff{font-family:fff;line-height:0.917969;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_9148313005d6fad4570258a7.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.875000;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_520ef6eeaa058bff98bf28ba.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.860352;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_acfccd1d6d76310fb0ebfd7a.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_22dad198fc5501d057c14b6d.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.770508;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_b67045ac9f20d0743b71e4e4.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.922852;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_cbdb72c4bfb1342fec64c3a1.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.676270;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_a612e33fe5ff49b7223ef32b.woff2')format("woff");}.ff16{font-family:ff16;line-height:2.066406;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_2681942fd70beb033dfafe43.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.912109;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_d92d407ed7c8be210d9b8e65.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_f3316e92bc20acfe95dff164.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.311035;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.432129;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_d12f1a157f96a64a4e0d928d.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.876000;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_a98607d76a48c07efd4080f3.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.695000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-22.680000px;}
.v5{vertical-align:-9.723516px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:7.559976px;}
.v9{vertical-align:10.080000px;}
.v8{vertical-align:16.198920px;}
.va{vertical-align:17.280324px;}
.vd{vertical-align:19.800000px;}
.v3{vertical-align:23.761260px;}
.v2{vertical-align:25.917228px;}
.v7{vertical-align:27.000000px;}
.vb{vertical-align:32.049060px;}
.v1{vertical-align:37.442520px;}
.v6{vertical-align:44.277948px;}
.lsac{letter-spacing:-5.274828px;}
.ls1{letter-spacing:-4.325400px;}
.lsae{letter-spacing:-3.662928px;}
.ls12{letter-spacing:-3.173220px;}
.ls11{letter-spacing:-2.621808px;}
.lsf{letter-spacing:-2.257668px;}
.ls23{letter-spacing:-1.665792px;}
.ls14{letter-spacing:-1.107108px;}
.ls13{letter-spacing:-0.824904px;}
.ls5d{letter-spacing:-0.612648px;}
.ls8f{letter-spacing:-0.434808px;}
.ls26{letter-spacing:-0.421632px;}
.ls61{letter-spacing:-0.382104px;}
.lsb2{letter-spacing:-0.368928px;}
.lsb0{letter-spacing:-0.335988px;}
.ls90{letter-spacing:-0.316224px;}
.lsaa{letter-spacing:-0.309636px;}
.ls2c{letter-spacing:-0.303048px;}
.ls59{letter-spacing:-0.283284px;}
.lsaf{letter-spacing:-0.270108px;}
.lsad{letter-spacing:-0.263520px;}
.ls5c{letter-spacing:-0.255672px;}
.ls60{letter-spacing:-0.250344px;}
.ls2f{letter-spacing:-0.243756px;}
.ls62{letter-spacing:-0.237168px;}
.ls31{letter-spacing:-0.230580px;}
.ls29{letter-spacing:-0.223992px;}
.ls52{letter-spacing:-0.217404px;}
.ls1f{letter-spacing:-0.216432px;}
.ls2a{letter-spacing:-0.210816px;}
.ls50{letter-spacing:-0.204228px;}
.ls28{letter-spacing:-0.197640px;}
.ls1b{letter-spacing:-0.192384px;}
.ls53{letter-spacing:-0.191052px;}
.ls32{letter-spacing:-0.184464px;}
.ls30{letter-spacing:-0.177876px;}
.ls1c{letter-spacing:-0.174348px;}
.ls4f{letter-spacing:-0.171288px;}
.ls54{letter-spacing:-0.164700px;}
.ls18{letter-spacing:-0.162324px;}
.ls25{letter-spacing:-0.158112px;}
.ls15{letter-spacing:-0.156312px;}
.ls24{letter-spacing:-0.151524px;}
.ls57{letter-spacing:-0.144936px;}
.ls17{letter-spacing:-0.144288px;}
.ls2b{letter-spacing:-0.138348px;}
.ls1d{letter-spacing:-0.138276px;}
.ls20{letter-spacing:-0.132264px;}
.ls2d{letter-spacing:-0.131760px;}
.ls2e{letter-spacing:-0.125172px;}
.ls22{letter-spacing:-0.120240px;}
.ls91{letter-spacing:-0.118584px;}
.ls1a{letter-spacing:-0.114228px;}
.ls94{letter-spacing:-0.111996px;}
.ls21{letter-spacing:-0.108216px;}
.ls56{letter-spacing:-0.105408px;}
.lsb3{letter-spacing:-0.092232px;}
.ls8c{letter-spacing:-0.079056px;}
.ls19{letter-spacing:-0.066132px;}
.ls58{letter-spacing:-0.065880px;}
.ls93{letter-spacing:-0.059292px;}
.lsa9{letter-spacing:-0.052704px;}
.ls27{letter-spacing:-0.046116px;}
.ls5a{letter-spacing:-0.032940px;}
.ls51{letter-spacing:-0.026352px;}
.lsc2{letter-spacing:-0.007200px;}
.lsab{letter-spacing:-0.006588px;}
.ls0{letter-spacing:0.000000px;}
.lsb5{letter-spacing:0.007200px;}
.lsc5{letter-spacing:0.013176px;}
.lsc3{letter-spacing:0.014400px;}
.lsc6{letter-spacing:0.019764px;}
.lscb{letter-spacing:0.021600px;}
.lsc4{letter-spacing:0.026352px;}
.lsc9{letter-spacing:0.028800px;}
.lsbd{letter-spacing:0.032940px;}
.lsca{letter-spacing:0.036000px;}
.lsc0{letter-spacing:0.039528px;}
.lsc8{letter-spacing:0.043200px;}
.ls6e{letter-spacing:0.046116px;}
.lsb7{letter-spacing:0.052704px;}
.ls92{letter-spacing:0.059292px;}
.lsbb{letter-spacing:0.065880px;}
.lsb9{letter-spacing:0.072468px;}
.lsba{letter-spacing:0.079056px;}
.lsc1{letter-spacing:0.085644px;}
.lsb6{letter-spacing:0.092232px;}
.lsb8{letter-spacing:0.098820px;}
.lsbc{letter-spacing:0.111996px;}
.ls2{letter-spacing:0.114228px;}
.lsbe{letter-spacing:0.118584px;}
.lsbf{letter-spacing:0.138348px;}
.lsc7{letter-spacing:0.177876px;}
.ls65{letter-spacing:0.244620px;}
.ls33{letter-spacing:0.250056px;}
.ls8a{letter-spacing:0.402264px;}
.ls8b{letter-spacing:0.418572px;}
.lse{letter-spacing:0.429444px;}
.ls89{letter-spacing:0.451188px;}
.lsb{letter-spacing:0.483804px;}
.ls9{letter-spacing:0.494676px;}
.lsa{letter-spacing:0.505548px;}
.ls7{letter-spacing:0.510984px;}
.lsd{letter-spacing:0.538164px;}
.ls64{letter-spacing:0.782784px;}
.ls4c{letter-spacing:1.603980px;}
.ls8d{letter-spacing:1.607472px;}
.ls3e{letter-spacing:1.966212px;}
.ls41{letter-spacing:2.108124px;}
.ls9a{letter-spacing:2.110572px;}
.ls4a{letter-spacing:2.110680px;}
.ls84{letter-spacing:2.112984px;}
.ls83{letter-spacing:2.113560px;}
.ls97{letter-spacing:2.113848px;}
.ls44{letter-spacing:2.114280px;}
.ls6a{letter-spacing:2.114424px;}
.ls77{letter-spacing:2.180628px;}
.ls3c{letter-spacing:2.474280px;}
.ls8{letter-spacing:2.736000px;}
.ls37{letter-spacing:2.764080px;}
.ls6b{letter-spacing:2.824200px;}
.ls67{letter-spacing:2.824560px;}
.ls78{letter-spacing:2.826000px;}
.ls6{letter-spacing:2.952000px;}
.ls68{letter-spacing:3.096360px;}
.ls73{letter-spacing:3.097800px;}
.ls45{letter-spacing:3.124080px;}
.ls5e{letter-spacing:3.307176px;}
.lsa0{letter-spacing:3.313764px;}
.ls69{letter-spacing:3.457800px;}
.ls43{letter-spacing:3.458700px;}
.lsc{letter-spacing:6.840000px;}
.ls86{letter-spacing:8.570988px;}
.ls39{letter-spacing:9.249552px;}
.ls6d{letter-spacing:9.964080px;}
.ls85{letter-spacing:11.404080px;}
.ls3d{letter-spacing:13.973148px;}
.ls46{letter-spacing:14.263020px;}
.ls5f{letter-spacing:14.322312px;}
.ls3b{letter-spacing:14.328900px;}
.ls76{letter-spacing:16.311888px;}
.ls74{letter-spacing:16.786224px;}
.ls7a{letter-spacing:17.148564px;}
.ls3f{letter-spacing:17.165232px;}
.ls9f{letter-spacing:17.214444px;}
.ls79{letter-spacing:17.224560px;}
.ls3a{letter-spacing:17.524080px;}
.ls6c{letter-spacing:17.584560px;}
.ls7f{letter-spacing:17.820540px;}
.ls36{letter-spacing:17.866656px;}
.ls95{letter-spacing:17.873244px;}
.ls80{letter-spacing:17.932536px;}
.lsa1{letter-spacing:19.190844px;}
.ls16{letter-spacing:19.268460px;}
.ls8e{letter-spacing:19.678356px;}
.ls1e{letter-spacing:19.773468px;}
.ls48{letter-spacing:20.044080px;}
.ls81{letter-spacing:20.179044px;}
.ls9e{letter-spacing:20.404080px;}
.ls42{letter-spacing:20.824200px;}
.lsb1{letter-spacing:20.936664px;}
.ls35{letter-spacing:21.124080px;}
.ls87{letter-spacing:21.544200px;}
.ls96{letter-spacing:21.839220px;}
.ls7e{letter-spacing:22.695660px;}
.lsa3{letter-spacing:22.728600px;}
.ls72{letter-spacing:23.117292px;}
.ls82{letter-spacing:23.776092px;}
.ls49{letter-spacing:24.364080px;}
.ls63{letter-spacing:24.691824px;}
.lsa6{letter-spacing:24.737940px;}
.lsa2{letter-spacing:25.067340px;}
.ls38{letter-spacing:25.133220px;}
.ls9d{letter-spacing:25.488972px;}
.ls70{letter-spacing:25.673436px;}
.ls3{letter-spacing:26.488872px;}
.ls55{letter-spacing:26.523288px;}
.ls4b{letter-spacing:26.884080px;}
.ls9c{letter-spacing:28.324080px;}
.ls10{letter-spacing:28.642212px;}
.ls66{letter-spacing:29.230956px;}
.ls7d{letter-spacing:29.270484px;}
.ls4{letter-spacing:29.520000px;}
.ls98{letter-spacing:30.124080px;}
.ls5{letter-spacing:30.600000px;}
.ls99{letter-spacing:31.204080px;}
.ls34{letter-spacing:31.680000px;}
.ls7c{letter-spacing:32.284080px;}
.ls88{letter-spacing:32.644080px;}
.ls4e{letter-spacing:33.364080px;}
.lsa8{letter-spacing:34.079724px;}
.ls9b{letter-spacing:35.164080px;}
.ls71{letter-spacing:36.360000px;}
.lsa5{letter-spacing:37.874412px;}
.ls4d{letter-spacing:40.923432px;}
.lsa7{letter-spacing:42.176376px;}
.ls5b{letter-spacing:95.175720px;}
.ls47{letter-spacing:408.844080px;}
.ls6f{letter-spacing:451.482228px;}
.lsa4{letter-spacing:458.327160px;}
.ls7b{letter-spacing:459.763344px;}
.ls40{letter-spacing:497.815632px;}
.ls75{letter-spacing:612.763056px;}
.lsb4{letter-spacing:1366.920000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5d{word-spacing:-95.262480px;}
.ws62{word-spacing:-69.187176px;}
.ws26{word-spacing:-65.880000px;}
.ws63{word-spacing:-48.240000px;}
.wsb7{word-spacing:-42.242256px;}
.wsc4{word-spacing:-34.145604px;}
.ws6{word-spacing:-28.746252px;}
.ws41{word-spacing:-26.589168px;}
.wsb0{word-spacing:-24.803820px;}
.ws75{word-spacing:-24.757704px;}
.wsa1{word-spacing:-21.905100px;}
.wsfc{word-spacing:-21.002544px;}
.ws15{word-spacing:-19.833588px;}
.ws8c{word-spacing:-19.744236px;}
.wsb{word-spacing:-19.328580px;}
.ws127{word-spacing:-18.043200px;}
.ws9e{word-spacing:-17.939124px;}
.ws64{word-spacing:-14.388192px;}
.ws2{word-spacing:-13.500000px;}
.ws3{word-spacing:-9.174600px;}
.ws121{word-spacing:-0.355752px;}
.ws12c{word-spacing:-0.244800px;}
.ws12f{word-spacing:-0.129600px;}
.ws96{word-spacing:-0.125172px;}
.ws5{word-spacing:-0.104040px;}
.ws12a{word-spacing:-0.086400px;}
.ws133{word-spacing:-0.072000px;}
.ws1f{word-spacing:-0.065880px;}
.ws12b{word-spacing:-0.064800px;}
.wsc{word-spacing:-0.060120px;}
.ws111{word-spacing:-0.057600px;}
.ws5f{word-spacing:-0.048240px;}
.ws129{word-spacing:-0.043200px;}
.ws12e{word-spacing:-0.036000px;}
.ws58{word-spacing:-0.032940px;}
.ws12d{word-spacing:-0.028800px;}
.ws11e{word-spacing:-0.026352px;}
.ws130{word-spacing:-0.021600px;}
.ws119{word-spacing:-0.019764px;}
.ws112{word-spacing:-0.014400px;}
.ws124{word-spacing:-0.013176px;}
.ws10f{word-spacing:-0.007200px;}
.ws114{word-spacing:-0.006588px;}
.ws0{word-spacing:0.000000px;}
.ws123{word-spacing:0.006588px;}
.ws110{word-spacing:0.007200px;}
.ws116{word-spacing:0.013176px;}
.ws115{word-spacing:0.019764px;}
.ws117{word-spacing:0.026352px;}
.ws118{word-spacing:0.032940px;}
.ws113{word-spacing:0.039528px;}
.ws122{word-spacing:0.046116px;}
.ws120{word-spacing:0.052704px;}
.ws11a{word-spacing:0.059292px;}
.ws131{word-spacing:0.064800px;}
.ws125{word-spacing:0.065880px;}
.wsce{word-spacing:0.072468px;}
.ws126{word-spacing:0.079056px;}
.wsf2{word-spacing:0.085644px;}
.wsee{word-spacing:0.092232px;}
.wse6{word-spacing:0.111996px;}
.ws81{word-spacing:0.131760px;}
.ws106{word-spacing:0.164700px;}
.ws24{word-spacing:0.237168px;}
.wsf3{word-spacing:0.270108px;}
.ws101{word-spacing:0.303048px;}
.ws4{word-spacing:2.153628px;}
.ws7{word-spacing:2.517768px;}
.wsda{word-spacing:5.170788px;}
.ws1{word-spacing:9.504000px;}
.wsaa{word-spacing:14.024880px;}
.ws82{word-spacing:14.322312px;}
.wse{word-spacing:14.404752px;}
.wsf7{word-spacing:14.803236px;}
.ws8f{word-spacing:15.389568px;}
.wse3{word-spacing:15.672852px;}
.ws9f{word-spacing:16.246008px;}
.wsc8{word-spacing:16.285536px;}
.wsc7{word-spacing:16.331652px;}
.ws91{word-spacing:16.542468px;}
.ws9d{word-spacing:16.654464px;}
.ws66{word-spacing:16.997040px;}
.ws68{word-spacing:17.010216px;}
.ws79{word-spacing:17.090784px;}
.ws3a{word-spacing:17.115624px;}
.ws67{word-spacing:17.181504px;}
.ws39{word-spacing:17.188092px;}
.ws3b{word-spacing:17.253972px;}
.wse5{word-spacing:17.306676px;}
.ws59{word-spacing:17.438436px;}
.ws2f{word-spacing:17.569152px;}
.ws33{word-spacing:17.650692px;}
.ws60{word-spacing:17.696952px;}
.wse9{word-spacing:17.741484px;}
.ws32{word-spacing:17.759412px;}
.wsac{word-spacing:17.786592px;}
.wse8{word-spacing:17.873244px;}
.wse4{word-spacing:17.879832px;}
.ws34{word-spacing:17.987724px;}
.wsd9{word-spacing:18.228996px;}
.wsae{word-spacing:18.248652px;}
.ws48{word-spacing:18.406872px;}
.ws49{word-spacing:18.446400px;}
.ws10{word-spacing:18.486900px;}
.wsd8{word-spacing:18.532044px;}
.wsf{word-spacing:18.534996px;}
.wsdb{word-spacing:18.551808px;}
.ws61{word-spacing:18.767880px;}
.wsbb{word-spacing:18.769212px;}
.wsa7{word-spacing:18.808740px;}
.wsec{word-spacing:18.881208px;}
.wsa5{word-spacing:18.887796px;}
.ws12{word-spacing:18.949824px;}
.ws11{word-spacing:19.112148px;}
.ws55{word-spacing:19.171080px;}
.wsfe{word-spacing:19.184256px;}
.ws2b{word-spacing:19.210608px;}
.wsbc{word-spacing:19.217196px;}
.wsc2{word-spacing:19.276488px;}
.wsab{word-spacing:19.286928px;}
.wsa6{word-spacing:19.296252px;}
.wsc6{word-spacing:19.368720px;}
.wsd{word-spacing:19.376676px;}
.wsbd{word-spacing:19.408248px;}
.ws7a{word-spacing:19.569600px;}
.ws10a{word-spacing:19.599300px;}
.ws18{word-spacing:19.815552px;}
.ws17{word-spacing:19.863648px;}
.ws14{word-spacing:19.875672px;}
.ws10b{word-spacing:19.928700px;}
.ws90{word-spacing:19.935288px;}
.wse7{word-spacing:20.185632px;}
.wsfa{word-spacing:20.429388px;}
.ws9a{word-spacing:20.475504px;}
.ws9b{word-spacing:20.534796px;}
.ws9c{word-spacing:20.594088px;}
.wsf1{word-spacing:20.613852px;}
.ws3f{word-spacing:20.659968px;}
.wsc9{word-spacing:20.679732px;}
.wsa3{word-spacing:20.758788px;}
.wse2{word-spacing:20.864196px;}
.wsed{word-spacing:20.930076px;}
.ws52{word-spacing:20.969604px;}
.wsd7{word-spacing:21.154068px;}
.ws3e{word-spacing:21.299004px;}
.ws1a{word-spacing:21.318552px;}
.ws3d{word-spacing:21.345120px;}
.ws69{word-spacing:21.378060px;}
.ws30{word-spacing:21.385224px;}
.ws94{word-spacing:21.450528px;}
.ws6a{word-spacing:21.470292px;}
.ws6b{word-spacing:21.516408px;}
.ws5e{word-spacing:21.536172px;}
.ws2a{word-spacing:21.707460px;}
.ws84{word-spacing:21.714048px;}
.ws3c{word-spacing:21.753576px;}
.ws108{word-spacing:21.766752px;}
.ws8e{word-spacing:21.806280px;}
.ws4a{word-spacing:21.819456px;}
.wsf4{word-spacing:21.852396px;}
.wsd6{word-spacing:21.891924px;}
.wsdc{word-spacing:21.898512px;}
.wscf{word-spacing:21.905100px;}
.wsa4{word-spacing:21.918276px;}
.wsfd{word-spacing:21.944628px;}
.ws2d{word-spacing:21.957804px;}
.wsde{word-spacing:21.970980px;}
.ws5c{word-spacing:21.984156px;}
.ws2c{word-spacing:22.050036px;}
.wsb8{word-spacing:22.063212px;}
.ws51{word-spacing:22.102740px;}
.ws46{word-spacing:22.168620px;}
.ws95{word-spacing:22.260852px;}
.ws11f{word-spacing:22.274028px;}
.ws128{word-spacing:22.320144px;}
.ws45{word-spacing:22.333320px;}
.wsd0{word-spacing:22.353084px;}
.ws65{word-spacing:22.366260px;}
.wsdf{word-spacing:22.372848px;}
.ws47{word-spacing:22.405788px;}
.wsba{word-spacing:22.425552px;}
.wsfb{word-spacing:22.438728px;}
.ws38{word-spacing:22.451904px;}
.wsd5{word-spacing:22.491432px;}
.ws37{word-spacing:22.544136px;}
.wsb9{word-spacing:22.557312px;}
.ws27{word-spacing:22.649544px;}
.ws43{word-spacing:22.675896px;}
.ws44{word-spacing:22.728600px;}
.wsad{word-spacing:22.776840px;}
.ws8a{word-spacing:22.781304px;}
.ws8b{word-spacing:22.873536px;}
.ws31{word-spacing:22.874688px;}
.wsd2{word-spacing:22.965768px;}
.ws19{word-spacing:23.068044px;}
.ws13{word-spacing:23.074056px;}
.wsd1{word-spacing:23.143644px;}
.ws28{word-spacing:23.216112px;}
.wsf8{word-spacing:23.242464px;}
.wsf6{word-spacing:23.268816px;}
.ws8d{word-spacing:23.407164px;}
.ws109{word-spacing:23.413752px;}
.ws1c{word-spacing:23.420340px;}
.wsca{word-spacing:23.446692px;}
.wsdd{word-spacing:23.453280px;}
.ws102{word-spacing:23.519160px;}
.wsff{word-spacing:23.670684px;}
.ws89{word-spacing:23.716800px;}
.wse1{word-spacing:23.789268px;}
.ws105{word-spacing:23.802444px;}
.ws50{word-spacing:23.822208px;}
.wsb1{word-spacing:23.894676px;}
.wsc3{word-spacing:23.914440px;}
.ws70{word-spacing:23.940792px;}
.ws6c{word-spacing:23.973732px;}
.ws10e{word-spacing:24.026436px;}
.ws9{word-spacing:24.045228px;}
.ws6f{word-spacing:24.105492px;}
.ws6d{word-spacing:24.112080px;}
.ws5a{word-spacing:24.171372px;}
.ws10c{word-spacing:24.224076px;}
.wsa0{word-spacing:24.342660px;}
.ws5b{word-spacing:24.395364px;}
.wsa2{word-spacing:24.428304px;}
.wsa{word-spacing:24.428736px;}
.ws25{word-spacing:24.540300px;}
.ws36{word-spacing:24.606180px;}
.ws107{word-spacing:24.823584px;}
.wsaf{word-spacing:24.836760px;}
.ws6e{word-spacing:24.882876px;}
.ws74{word-spacing:24.968520px;}
.ws20{word-spacing:25.014636px;}
.ws35{word-spacing:25.060752px;}
.ws76{word-spacing:25.067340px;}
.ws23{word-spacing:25.199100px;}
.ws54{word-spacing:25.205688px;}
.wseb{word-spacing:25.212276px;}
.ws77{word-spacing:25.225452px;}
.ws53{word-spacing:25.344036px;}
.ws78{word-spacing:25.357212px;}
.ws21{word-spacing:25.640496px;}
.ws4f{word-spacing:25.647084px;}
.ws22{word-spacing:25.699788px;}
.ws10d{word-spacing:25.706376px;}
.ws4e{word-spacing:25.726140px;}
.ws83{word-spacing:25.772256px;}
.ws1e{word-spacing:25.811784px;}
.ws7d{word-spacing:25.824960px;}
.ws7b{word-spacing:25.983072px;}
.wsb5{word-spacing:26.002836px;}
.ws7c{word-spacing:26.009424px;}
.wsb6{word-spacing:26.246592px;}
.ws87{word-spacing:26.384940px;}
.ws2e{word-spacing:26.505936px;}
.wsbf{word-spacing:26.582580px;}
.wsd4{word-spacing:26.727516px;}
.wsd3{word-spacing:26.767044px;}
.ws73{word-spacing:26.819748px;}
.ws42{word-spacing:26.931744px;}
.wsbe{word-spacing:27.010800px;}
.ws4d{word-spacing:27.135972px;}
.ws4b{word-spacing:27.327024px;}
.wsf5{word-spacing:27.346788px;}
.ws4c{word-spacing:27.373140px;}
.wsf9{word-spacing:27.412668px;}
.wsf0{word-spacing:27.419256px;}
.wsb2{word-spacing:27.518076px;}
.ws1d{word-spacing:27.531252px;}
.wsc0{word-spacing:27.544428px;}
.wsef{word-spacing:27.656424px;}
.ws40{word-spacing:27.906768px;}
.ws57{word-spacing:28.170288px;}
.wscc{word-spacing:28.183464px;}
.ws80{word-spacing:28.282284px;}
.wsb3{word-spacing:28.354752px;}
.wscb{word-spacing:28.361340px;}
.ws86{word-spacing:28.367928px;}
.ws7f{word-spacing:28.486512px;}
.wsb4{word-spacing:28.638036px;}
.ws56{word-spacing:28.723680px;}
.ws104{word-spacing:28.796148px;}
.ws103{word-spacing:28.894968px;}
.ws100{word-spacing:28.914732px;}
.ws98{word-spacing:29.132136px;}
.wse0{word-spacing:29.474712px;}
.ws29{word-spacing:29.501064px;}
.ws99{word-spacing:29.514240px;}
.wsa9{word-spacing:29.632824px;}
.wsc1{word-spacing:29.731644px;}
.wscd{word-spacing:29.797524px;}
.wsa8{word-spacing:29.981988px;}
.ws97{word-spacing:30.014928px;}
.ws88{word-spacing:30.047868px;}
.wsea{word-spacing:30.225744px;}
.ws72{word-spacing:30.331152px;}
.ws71{word-spacing:30.805488px;}
.ws16{word-spacing:30.817512px;}
.ws7e{word-spacing:31.530168px;}
.wsc5{word-spacing:32.024268px;}
.ws85{word-spacing:32.208732px;}
.ws92{word-spacing:32.492016px;}
.ws93{word-spacing:32.551308px;}
.ws8{word-spacing:36.372384px;}
.ws11c{word-spacing:55.418256px;}
.ws132{word-spacing:55.438020px;}
.ws11d{word-spacing:55.444608px;}
.ws11b{word-spacing:55.451196px;}
.ws1b{word-spacing:98.420544px;}
._22{margin-left:-97.249284px;}
._30{margin-left:-95.401296px;}
._24{margin-left:-94.360176px;}
._23{margin-left:-63.950796px;}
._34{margin-left:-56.426220px;}
._35{margin-left:-54.710760px;}
._2f{margin-left:-42.175737px;}
._a{margin-left:-34.917467px;}
._8{margin-left:-32.509264px;}
._9{margin-left:-31.326444px;}
._b{margin-left:-29.616255px;}
._1e{margin-left:-26.602344px;}
._1d{margin-left:-24.935580px;}
._2d{margin-left:-23.930752px;}
._1{margin-left:-22.766400px;}
._e{margin-left:-21.324564px;}
._f{margin-left:-19.322568px;}
._2b{margin-left:-17.129700px;}
._2{margin-left:-11.404800px;}
._c{margin-left:-10.112937px;}
._6{margin-left:-6.971400px;}
._31{margin-left:-5.962140px;}
._5{margin-left:-4.957200px;}
._0{margin-left:-3.138523px;}
._4{margin-left:-2.025096px;}
._1b{margin-left:-1.007964px;}
._12{width:1.022988px;}
._3{width:2.025096px;}
._32{width:3.223283px;}
._7{width:4.320000px;}
._33{width:8.677348px;}
._2c{width:15.625968px;}
._20{width:17.159856px;}
._25{width:18.455736px;}
._10{width:20.398975px;}
._2a{width:21.574218px;}
._17{width:22.632360px;}
._d{width:24.457680px;}
._11{width:26.326548px;}
._21{width:27.810583px;}
._18{width:28.845793px;}
._16{width:30.412788px;}
._15{width:31.875324px;}
._19{width:34.261331px;}
._13{width:35.871709px;}
._14{width:38.310647px;}
._1a{width:39.783552px;}
._27{width:41.510988px;}
._1f{width:45.020798px;}
._2e{width:46.367640px;}
._1c{width:47.640463px;}
._29{width:49.330728px;}
._28{width:50.523372px;}
._36{width:54.507960px;}
._26{width:55.544832px;}
._37{width:1425.542400px;}
.fc2{color:rgb(150,10,43);}
.fc1{color:rgb(37,60,128);}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:36.000000px;}
.fs4{font-size:42.000000px;}
.fsd{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs12{font-size:54.360000px;}
.fs3{font-size:60.000000px;}
.fse{font-size:60.120000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:64.314000px;}
.fs10{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fsc{font-size:72.360000px;}
.fs8{font-size:76.708200px;}
.fs9{font-size:84.000000px;}
.fsf{font-size:86.760000px;}
.fs2{font-size:102.000000px;}
.fsb{font-size:104.040000px;}
.fs5{font-size:144.000000px;}
.fs7{font-size:432.000000px;}
.y0{bottom:0.000000px;}
.y10c{bottom:20.010450px;}
.y17c{bottom:54.835527px;}
.y143{bottom:56.110449px;}
.y5{bottom:66.525004px;}
.y17b{bottom:73.825437px;}
.y1b8{bottom:77.539500px;}
.y142{bottom:79.599963px;}
.y1b2{bottom:80.130450px;}
.y17a{bottom:95.695950px;}
.y4{bottom:97.125005px;}
.y141{bottom:98.589873px;}
.y1b1{bottom:100.559847px;}
.y179{bottom:114.776445px;}
.y140{bottom:117.579783px;}
.y1b0{bottom:119.910450px;}
.y2a{bottom:132.931500px;}
.y178{bottom:133.766355px;}
.y10b{bottom:137.629272px;}
.ye6{bottom:137.639124px;}
.y6c{bottom:137.640450px;}
.y20{bottom:139.264499px;}
.y13f{bottom:141.069297px;}
.y1af{bottom:143.490450px;}
.y177{bottom:155.636868px;}
.y13e{bottom:159.968622px;}
.y1ae{bottom:164.280450px;}
.y29{bottom:165.331500px;}
.y176{bottom:174.717363px;}
.y13d{bottom:178.958532px;}
.y1ad{bottom:184.980450px;}
.y6b{bottom:188.130450px;}
.y95{bottom:190.470450px;}
.y175{bottom:193.707273px;}
.y17{bottom:196.933500px;}
.y13c{bottom:202.448046px;}
.y6a{bottom:204.600450px;}
.yc4{bottom:206.310879px;}
.y1ac{bottom:208.560450px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y3a{bottom:212.024850px;}
.y94{bottom:214.409100px;}
.y69{bottom:215.310702px;}
.y174{bottom:215.577786px;}
.y13b{bottom:221.437956px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y39{bottom:227.024700px;}
.yc3{bottom:228.450600px;}
.y1ab{bottom:229.350450px;}
.y68{bottom:231.780423px;}
.y173{bottom:234.658281px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y93{bottom:234.749550px;}
.yc2{bottom:239.250702px;}
.y13a{bottom:240.427866px;}
.y1aa{bottom:250.050450px;}
.y172{bottom:253.557606px;}
.y67{bottom:253.920450px;}
.y92{bottom:255.090000px;}
.yc1{bottom:255.630729px;}
.y38{bottom:257.024400px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y139{bottom:263.828442px;}
.y66{bottom:265.080729px;}
.y1a9{bottom:270.751044px;}
.y37{bottom:272.024250px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y171{bottom:275.428119px;}
.y91{bottom:275.430585px;}
.yc0{bottom:277.770450px;}
.y1b7{bottom:282.475500px;}
.y138{bottom:282.818352px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y36{bottom:287.024100px;}
.y65{bottom:287.220450px;}
.y90{bottom:291.629946px;}
.y1a8{bottom:293.970450px;}
.y170{bottom:294.508614px;}
.y8f{bottom:295.680000px;}
.y1b6{bottom:300.475500px;}
.y137{bottom:301.808262px;}
.y35{bottom:302.023950px;}
.ybf{bottom:302.610000px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y64{bottom:310.527885px;}
.y1a7{bottom:313.410450px;}
.y16f{bottom:313.498524px;}
.y8e{bottom:316.020000px;}
.y34{bottom:317.023800px;}
.y1b5{bottom:318.475500px;}
.ybe{bottom:318.630456px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.ybd{bottom:322.948335px;}
.y136{bottom:325.297776px;}
.y63{bottom:330.868335px;}
.y33{bottom:332.023650px;}
.y1a6{bottom:334.110450px;}
.y16e{bottom:335.369037px;}
.y8d{bottom:336.360603px;}
.y10a{bottom:339.228660px;}
.ybc{bottom:343.288785px;}
.y135{bottom:344.287686px;}
.ye5{bottom:347.158935px;}
.ye{bottom:348.133500px;}
.y62{bottom:351.208785px;}
.y16d{bottom:354.449532px;}
.y1b4{bottom:354.475500px;}
.y1a5{bottom:354.811044px;}
.y8c{bottom:356.701053px;}
.y109{bottom:359.478525px;}
.y32{bottom:362.023350px;}
.y134{bottom:363.277596px;}
.ybb{bottom:363.629235px;}
.ye4{bottom:367.499385px;}
.y61{bottom:371.549235px;}
.y16c{bottom:373.439442px;}
.y31{bottom:377.023200px;}
.y1a4{bottom:378.030450px;}
.y108{bottom:379.818975px;}
.yba{bottom:383.969685px;}
.y133{bottom:386.678172px;}
.y8b{bottom:386.761188px;}
.yd{bottom:386.785499px;}
.ye3{bottom:387.839835px;}
.y60{bottom:391.799100px;}
.y16b{bottom:395.309955px;}
.y1a3{bottom:397.470450px;}
.y107{bottom:400.159425px;}
.yb9{bottom:404.219550px;}
.y132{bottom:405.668082px;}
.y30{bottom:407.022900px;}
.yc{bottom:408.044999px;}
.ye2{bottom:408.180285px;}
.y5f{bottom:412.139550px;}
.y16a{bottom:414.390450px;}
.y1a2{bottom:418.171503px;}
.y106{bottom:420.499875px;}
.y2f{bottom:422.022750px;}
.yb8{bottom:424.560000px;}
.y131{bottom:424.657992px;}
.y89{bottom:425.820450px;}
.ye1{bottom:428.520735px;}
.y5e{bottom:432.480000px;}
.y8a{bottom:433.020720px;}
.y169{bottom:433.374573px;}
.y2e{bottom:437.022600px;}
.y88{bottom:437.071329px;}
.y105{bottom:440.840325px;}
.y1a1{bottom:441.390909px;}
.yb6{bottom:444.900078px;}
.yb7{bottom:444.900450px;}
.y130{bottom:448.147506px;}
.ye0{bottom:448.770600px;}
.y2d{bottom:452.022450px;}
.y168{bottom:452.273898px;}
.y5d{bottom:452.820135px;}
.y1a0{bottom:460.830450px;}
.y104{bottom:461.180775px;}
.y2c{bottom:467.022300px;}
.y12f{bottom:467.137416px;}
.y5c{bottom:473.160585px;}
.yb3{bottom:473.430600px;}
.y167{bottom:474.233349px;}
.y87{bottom:480.540600px;}
.y103{bottom:481.430640px;}
.y19f{bottom:481.531068px;}
.y2b{bottom:482.022150px;}
.ydf{bottom:485.310450px;}
.y12e{bottom:486.036741px;}
.yb5{bottom:488.820870px;}
.yb4{bottom:492.870600px;}
.yb0{bottom:492.871134px;}
.y166{bottom:493.223259px;}
.y5b{bottom:493.410450px;}
.y102{bottom:501.771090px;}
.y19e{bottom:504.841059px;}
.yb2{bottom:508.440600px;}
.y12d{bottom:509.526255px;}
.y165{bottom:512.213169px;}
.yb1{bottom:513.300450px;}
.y86{bottom:517.080450px;}
.yb{bottom:520.864502px;}
.y101{bottom:522.111540px;}
.y19d{bottom:524.280450px;}
.y12c{bottom:528.516165px;}
.y5a{bottom:529.950450px;}
.y164{bottom:534.083682px;}
.yde{bottom:536.875464px;}
.ya{bottom:538.864499px;}
.yaf{bottom:541.920441px;}
.y100{bottom:542.451990px;}
.y19c{bottom:544.980450px;}
.y4b{bottom:545.281350px;}
.y12b{bottom:547.506075px;}
.y163{bottom:553.164177px;}
.y9{bottom:556.864499px;}
.ydd{bottom:557.215914px;}
.y4a{bottom:560.281200px;}
.yae{bottom:562.260891px;}
.yff{bottom:562.792440px;}
.y19b{bottom:565.681503px;}
.y85{bottom:568.552755px;}
.y12a{bottom:570.995589px;}
.y162{bottom:572.154087px;}
.ydc{bottom:577.556364px;}
.y59{bottom:581.251413px;}
.yad{bottom:582.601341px;}
.yfe{bottom:583.042305px;}
.y84{bottom:588.893205px;}
.y19a{bottom:588.900909px;}
.y129{bottom:589.985499px;}
.y49{bottom:590.280900px;}
.y161{bottom:594.024600px;}
.ydb{bottom:597.806229px;}
.y58{bottom:599.161161px;}
.yac{bottom:602.851206px;}
.yfd{bottom:603.382755px;}
.y48{bottom:605.280750px;}
.y199{bottom:608.340450px;}
.y128{bottom:608.884824px;}
.y83{bottom:609.233655px;}
.y160{bottom:613.105095px;}
.yda{bottom:618.146679px;}
.y47{bottom:620.280600px;}
.yfc{bottom:623.723205px;}
.y198{bottom:629.040450px;}
.y82{bottom:629.574105px;}
.ya9{bottom:631.020450px;}
.y15f{bottom:632.095005px;}
.y127{bottom:632.374338px;}
.y46{bottom:635.280450px;}
.yd9{bottom:638.487129px;}
.yfb{bottom:644.063655px;}
.y8{bottom:645.510000px;}
.yab{bottom:646.320720px;}
.y197{bottom:649.736757px;}
.y81{bottom:649.914555px;}
.y45{bottom:650.280300px;}
.ya6{bottom:650.370243px;}
.yaa{bottom:650.370450px;}
.y126{bottom:651.364248px;}
.y15e{bottom:653.965518px;}
.y28{bottom:656.059650px;}
.yd8{bottom:658.827579px;}
.y57{bottom:658.921944px;}
.yfa{bottom:664.404105px;}
.y44{bottom:665.280150px;}
.ya8{bottom:665.940450px;}
.y7{bottom:666.771000px;}
.y80{bottom:670.255005px;}
.y125{bottom:670.354158px;}
.ya7{bottom:670.890450px;}
.y196{bottom:672.956163px;}
.y15d{bottom:673.046013px;}
.y56{bottom:676.831692px;}
.yd7{bottom:679.168029px;}
.yf9{bottom:684.744555px;}
.y7f{bottom:690.504870px;}
.y15c{bottom:692.035923px;}
.y195{bottom:692.036658px;}
.y124{bottom:693.843672px;}
.y55{bottom:694.741440px;}
.y43{bottom:695.279850px;}
.ya5{bottom:699.419550px;}
.yd6{bottom:699.508479px;}
.yf8{bottom:704.994420px;}
.y27{bottom:706.459650px;}
.y42{bottom:710.279700px;}
.y7e{bottom:710.845320px;}
.y194{bottom:710.935983px;}
.y54{bottom:712.741368px;}
.y123{bottom:712.742997px;}
.y15b{bottom:713.906436px;}
.yd5{bottom:719.758344px;}
.ya4{bottom:719.760000px;}
.yf7{bottom:725.334870px;}
.y6{bottom:726.298500px;}
.y53{bottom:730.651116px;}
.y7d{bottom:731.185770px;}
.y122{bottom:731.732907px;}
.y193{bottom:732.895434px;}
.y15a{bottom:732.986931px;}
.ya3{bottom:740.097894px;}
.yd4{bottom:740.098794px;}
.y41{bottom:740.279400px;}
.yf6{bottom:745.675320px;}
.y52{bottom:748.560864px;}
.y7c{bottom:751.526220px;}
.y192{bottom:751.885344px;}
.y159{bottom:751.886256px;}
.y3{bottom:752.599495px;}
.y121{bottom:755.222421px;}
.y40{bottom:755.279250px;}
.y26{bottom:756.859650px;}
.ya2{bottom:760.438344px;}
.yd3{bottom:760.439244px;}
.yf5{bottom:766.015770px;}
.y51{bottom:766.470612px;}
.y3f{bottom:770.279100px;}
.y191{bottom:770.875254px;}
.y7b{bottom:771.866670px;}
.y158{bottom:773.845707px;}
.y120{bottom:774.212331px;}
.ya1{bottom:780.778794px;}
.yd2{bottom:780.779694px;}
.y3e{bottom:785.278950px;}
.yf4{bottom:786.356220px;}
.y50{bottom:791.940450px;}
.y7a{bottom:792.116535px;}
.y190{bottom:792.745767px;}
.y157{bottom:792.835617px;}
.y11f{bottom:793.202241px;}
.y3d{bottom:800.278800px;}
.ya0{bottom:801.119244px;}
.yd1{bottom:801.120144px;}
.yf3{bottom:806.696670px;}
.y156{bottom:811.825527px;}
.y18f{bottom:811.826262px;}
.y79{bottom:812.456985px;}
.y3c{bottom:815.278650px;}
.y11e{bottom:816.602817px;}
.y9f{bottom:821.369109px;}
.yd0{bottom:821.370009px;}
.yf2{bottom:826.946535px;}
.y3b{bottom:830.278500px;}
.y18e{bottom:830.816172px;}
.y78{bottom:832.797435px;}
.y155{bottom:833.696040px;}
.y11d{bottom:835.592727px;}
.y9e{bottom:841.709559px;}
.ycd{bottom:845.580450px;}
.yf1{bottom:847.286985px;}
.y18d{bottom:852.686685px;}
.y154{bottom:852.776535px;}
.y77{bottom:853.137885px;}
.y11c{bottom:854.582637px;}
.ycf{bottom:860.970720px;}
.y9d{bottom:862.050009px;}
.y25{bottom:864.450000px;}
.yca{bottom:865.019793px;}
.yce{bottom:865.020450px;}
.y4f{bottom:866.640450px;}
.yf0{bottom:867.627435px;}
.y153{bottom:871.766445px;}
.y18c{bottom:871.767180px;}
.y76{bottom:873.478335px;}
.y11b{bottom:878.072151px;}
.y2{bottom:879.369000px;}
.ycc{bottom:880.590450px;}
.ycb{bottom:885.540600px;}
.y9b{bottom:886.260450px;}
.yef{bottom:887.967885px;}
.y152{bottom:890.756355px;}
.y18b{bottom:890.757090px;}
.y75{bottom:893.818785px;}
.y11a{bottom:897.062061px;}
.y24{bottom:897.450000px;}
.y9c{bottom:901.650720px;}
.y4e{bottom:903.361143px;}
.y98{bottom:905.700450px;}
.yee{bottom:908.308335px;}
.y18a{bottom:909.747000px;}
.y151{bottom:912.626868px;}
.y74{bottom:914.068650px;}
.yc9{bottom:914.069100px;}
.y119{bottom:916.051971px;}
.y9a{bottom:921.270450px;}
.y99{bottom:926.130450px;}
.yed{bottom:928.558200px;}
.y189{bottom:931.617513px;}
.y150{bottom:931.707363px;}
.y73{bottom:934.409100px;}
.yc8{bottom:934.409550px;}
.y118{bottom:939.452547px;}
.yec{bottom:948.898650px;}
.y14f{bottom:950.697273px;}
.y188{bottom:950.698008px;}
.y97{bottom:954.748785px;}
.y72{bottom:954.749550px;}
.yc7{bottom:954.750000px;}
.y4d{bottom:957.899820px;}
.y117{bottom:958.442457px;}
.y1{bottom:966.726000px;}
.yeb{bottom:969.239100px;}
.y187{bottom:969.597333px;}
.yc6{bottom:970.770756px;}
.y14e{bottom:972.567786px;}
.y96{bottom:975.089235px;}
.y71{bottom:975.090000px;}
.y116{bottom:977.432367px;}
.yea{bottom:989.579550px;}
.y4c{bottom:990.750450px;}
.y186{bottom:991.467846px;}
.y14d{bottom:991.557696px;}
.y70{bottom:995.429685px;}
.yc5{bottom:995.430585px;}
.y115{bottom:1000.921881px;}
.ye9{bottom:1009.920000px;}
.y14c{bottom:1010.547606px;}
.y185{bottom:1010.548341px;}
.y6f{bottom:1015.679550px;}
.y114{bottom:1019.911791px;}
.y184{bottom:1029.538251px;}
.ye8{bottom:1030.260450px;}
.y14b{bottom:1032.418119px;}
.y6e{bottom:1036.020000px;}
.y113{bottom:1038.811116px;}
.y183{bottom:1051.408764px;}
.y14a{bottom:1051.498614px;}
.ye7{bottom:1055.010450px;}
.y6d{bottom:1056.360450px;}
.y112{bottom:1062.300630px;}
.y149{bottom:1070.488524px;}
.y182{bottom:1070.489259px;}
.y111{bottom:1081.290540px;}
.y181{bottom:1089.479169px;}
.y148{bottom:1092.359037px;}
.y110{bottom:1100.280450px;}
.y180{bottom:1111.349682px;}
.y147{bottom:1111.439532px;}
.y10f{bottom:1124.130450px;}
.y146{bottom:1130.429442px;}
.y17f{bottom:1130.430177px;}
.y23{bottom:1135.026900px;}
.y10e{bottom:1144.830450px;}
.y1b3{bottom:1148.775750px;}
.y17e{bottom:1149.420087px;}
.y145{bottom:1152.299955px;}
.y22{bottom:1154.321100px;}
.y10d{bottom:1169.850450px;}
.y17d{bottom:1171.290600px;}
.y144{bottom:1171.380450px;}
.y21{bottom:1194.189750px;}
.h18{height:23.994141px;}
.h1a{height:25.312500px;}
.h3f{height:25.920000px;}
.h1b{height:27.000000px;}
.h7{height:32.130000px;}
.h25{height:32.152148px;}
.he{height:37.494141px;}
.hf{height:37.599609px;}
.hd{height:38.880000px;}
.h19{height:40.770000px;}
.h13{height:42.037031px;}
.h26{height:43.909277px;}
.h14{height:45.090000px;}
.h6{height:45.900000px;}
.h9{height:46.306080px;}
.h34{height:47.222578px;}
.h3{height:48.195000px;}
.h3e{height:49.032000px;}
.h20{height:49.407048px;}
.h2c{height:49.407864px;}
.h16{height:49.410000px;}
.h29{height:49.410828px;}
.h21{height:49.411800px;}
.h33{height:49.412628px;}
.h30{height:49.413600px;}
.h3d{height:51.840000px;}
.h12{height:54.270000px;}
.h2{height:55.080000px;}
.hb{height:55.229904px;}
.h22{height:55.913948px;}
.h27{height:59.152148px;}
.h11{height:59.930197px;}
.h17{height:59.941260px;}
.h1c{height:59.943060px;}
.h24{height:59.946660px;}
.h28{height:59.950224px;}
.hc{height:60.480000px;}
.h15{height:60.664219px;}
.h31{height:63.833948px;}
.h2e{height:64.201208px;}
.h38{height:64.657617px;}
.h1f{height:65.608920px;}
.h23{height:65.612016px;}
.h32{height:66.688776px;}
.h2f{height:66.689976px;}
.h2b{height:66.690324px;}
.h2d{height:66.691812px;}
.h3a{height:70.659851px;}
.h3c{height:70.661686px;}
.h3b{height:70.662190px;}
.h37{height:70.664062px;}
.h39{height:70.678835px;}
.h36{height:72.562500px;}
.h5{height:78.030000px;}
.h2a{height:82.889244px;}
.h10{height:85.670743px;}
.h35{height:90.464062px;}
.h1d{height:93.684432px;}
.h8{height:103.680000px;}
.h1e{height:104.152148px;}
.h4{height:119.055004px;}
.ha{height:311.040000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w3{width:892.500000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x7{left:148.818900px;}
.x33{left:161.167500px;}
.x10{left:176.760000px;}
.x31{left:191.429433px;}
.x12{left:195.120000px;}
.x11{left:202.138371px;}
.x4{left:203.484001px;}
.xe{left:217.620360px;}
.xf{left:218.789694px;}
.x26{left:222.750558px;}
.x8{left:228.060000px;}
.xd{left:240.030090px;}
.x6{left:264.073500px;}
.x5{left:265.395000px;}
.x2e{left:276.120000px;}
.x9{left:297.178974px;}
.x17{left:299.161539px;}
.x19{left:310.590000px;}
.x27{left:312.569703px;}
.x14{left:322.109397px;}
.x1f{left:350.910603px;}
.xa{left:382.139424px;}
.x1b{left:383.490000px;}
.x1c{left:384.930000px;}
.x29{left:386.910000px;}
.x1a{left:388.980000px;}
.x28{left:390.960000px;}
.xb{left:399.060000px;}
.x1d{left:409.860000px;}
.x30{left:411.570000px;}
.xc{left:412.830000px;}
.x20{left:423.810000px;}
.x21{left:425.250000px;}
.x15{left:428.760000px;}
.x13{left:441.630000px;}
.x22{left:450.180000px;}
.x3{left:454.959000px;}
.x2f{left:459.180756px;}
.x18{left:472.140162px;}
.x23{left:478.440000px;}
.x2c{left:483.570252px;}
.x24{left:505.531062px;}
.x2d{left:515.250000px;}
.x25{left:524.430000px;}
.x2a{left:543.781062px;}
.x16{left:554.039712px;}
.x2b{left:562.680000px;}
.x1e{left:564.660000px;}
.x32{left:867.075000px;}
@media print{
.v4{vertical-align:-20.160000pt;}
.v5{vertical-align:-8.643125pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:6.719979pt;}
.v9{vertical-align:8.960000pt;}
.v8{vertical-align:14.399040pt;}
.va{vertical-align:15.360288pt;}
.vd{vertical-align:17.600000pt;}
.v3{vertical-align:21.121120pt;}
.v2{vertical-align:23.037536pt;}
.v7{vertical-align:24.000000pt;}
.vb{vertical-align:28.488053pt;}
.v1{vertical-align:33.282240pt;}
.v6{vertical-align:39.358176pt;}
.lsac{letter-spacing:-4.688736pt;}
.ls1{letter-spacing:-3.844800pt;}
.lsae{letter-spacing:-3.255936pt;}
.ls12{letter-spacing:-2.820640pt;}
.ls11{letter-spacing:-2.330496pt;}
.lsf{letter-spacing:-2.006816pt;}
.ls23{letter-spacing:-1.480704pt;}
.ls14{letter-spacing:-0.984096pt;}
.ls13{letter-spacing:-0.733248pt;}
.ls5d{letter-spacing:-0.544576pt;}
.ls8f{letter-spacing:-0.386496pt;}
.ls26{letter-spacing:-0.374784pt;}
.ls61{letter-spacing:-0.339648pt;}
.lsb2{letter-spacing:-0.327936pt;}
.lsb0{letter-spacing:-0.298656pt;}
.ls90{letter-spacing:-0.281088pt;}
.lsaa{letter-spacing:-0.275232pt;}
.ls2c{letter-spacing:-0.269376pt;}
.ls59{letter-spacing:-0.251808pt;}
.lsaf{letter-spacing:-0.240096pt;}
.lsad{letter-spacing:-0.234240pt;}
.ls5c{letter-spacing:-0.227264pt;}
.ls60{letter-spacing:-0.222528pt;}
.ls2f{letter-spacing:-0.216672pt;}
.ls62{letter-spacing:-0.210816pt;}
.ls31{letter-spacing:-0.204960pt;}
.ls29{letter-spacing:-0.199104pt;}
.ls52{letter-spacing:-0.193248pt;}
.ls1f{letter-spacing:-0.192384pt;}
.ls2a{letter-spacing:-0.187392pt;}
.ls50{letter-spacing:-0.181536pt;}
.ls28{letter-spacing:-0.175680pt;}
.ls1b{letter-spacing:-0.171008pt;}
.ls53{letter-spacing:-0.169824pt;}
.ls32{letter-spacing:-0.163968pt;}
.ls30{letter-spacing:-0.158112pt;}
.ls1c{letter-spacing:-0.154976pt;}
.ls4f{letter-spacing:-0.152256pt;}
.ls54{letter-spacing:-0.146400pt;}
.ls18{letter-spacing:-0.144288pt;}
.ls25{letter-spacing:-0.140544pt;}
.ls15{letter-spacing:-0.138944pt;}
.ls24{letter-spacing:-0.134688pt;}
.ls57{letter-spacing:-0.128832pt;}
.ls17{letter-spacing:-0.128256pt;}
.ls2b{letter-spacing:-0.122976pt;}
.ls1d{letter-spacing:-0.122912pt;}
.ls20{letter-spacing:-0.117568pt;}
.ls2d{letter-spacing:-0.117120pt;}
.ls2e{letter-spacing:-0.111264pt;}
.ls22{letter-spacing:-0.106880pt;}
.ls91{letter-spacing:-0.105408pt;}
.ls1a{letter-spacing:-0.101536pt;}
.ls94{letter-spacing:-0.099552pt;}
.ls21{letter-spacing:-0.096192pt;}
.ls56{letter-spacing:-0.093696pt;}
.lsb3{letter-spacing:-0.081984pt;}
.ls8c{letter-spacing:-0.070272pt;}
.ls19{letter-spacing:-0.058784pt;}
.ls58{letter-spacing:-0.058560pt;}
.ls93{letter-spacing:-0.052704pt;}
.lsa9{letter-spacing:-0.046848pt;}
.ls27{letter-spacing:-0.040992pt;}
.ls5a{letter-spacing:-0.029280pt;}
.ls51{letter-spacing:-0.023424pt;}
.lsc2{letter-spacing:-0.006400pt;}
.lsab{letter-spacing:-0.005856pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb5{letter-spacing:0.006400pt;}
.lsc5{letter-spacing:0.011712pt;}
.lsc3{letter-spacing:0.012800pt;}
.lsc6{letter-spacing:0.017568pt;}
.lscb{letter-spacing:0.019200pt;}
.lsc4{letter-spacing:0.023424pt;}
.lsc9{letter-spacing:0.025600pt;}
.lsbd{letter-spacing:0.029280pt;}
.lsca{letter-spacing:0.032000pt;}
.lsc0{letter-spacing:0.035136pt;}
.lsc8{letter-spacing:0.038400pt;}
.ls6e{letter-spacing:0.040992pt;}
.lsb7{letter-spacing:0.046848pt;}
.ls92{letter-spacing:0.052704pt;}
.lsbb{letter-spacing:0.058560pt;}
.lsb9{letter-spacing:0.064416pt;}
.lsba{letter-spacing:0.070272pt;}
.lsc1{letter-spacing:0.076128pt;}
.lsb6{letter-spacing:0.081984pt;}
.lsb8{letter-spacing:0.087840pt;}
.lsbc{letter-spacing:0.099552pt;}
.ls2{letter-spacing:0.101536pt;}
.lsbe{letter-spacing:0.105408pt;}
.lsbf{letter-spacing:0.122976pt;}
.lsc7{letter-spacing:0.158112pt;}
.ls65{letter-spacing:0.217440pt;}
.ls33{letter-spacing:0.222272pt;}
.ls8a{letter-spacing:0.357568pt;}
.ls8b{letter-spacing:0.372064pt;}
.lse{letter-spacing:0.381728pt;}
.ls89{letter-spacing:0.401056pt;}
.lsb{letter-spacing:0.430048pt;}
.ls9{letter-spacing:0.439712pt;}
.lsa{letter-spacing:0.449376pt;}
.ls7{letter-spacing:0.454208pt;}
.lsd{letter-spacing:0.478368pt;}
.ls64{letter-spacing:0.695808pt;}
.ls4c{letter-spacing:1.425760pt;}
.ls8d{letter-spacing:1.428864pt;}
.ls3e{letter-spacing:1.747744pt;}
.ls41{letter-spacing:1.873888pt;}
.ls9a{letter-spacing:1.876064pt;}
.ls4a{letter-spacing:1.876160pt;}
.ls84{letter-spacing:1.878208pt;}
.ls83{letter-spacing:1.878720pt;}
.ls97{letter-spacing:1.878976pt;}
.ls44{letter-spacing:1.879360pt;}
.ls6a{letter-spacing:1.879488pt;}
.ls77{letter-spacing:1.938336pt;}
.ls3c{letter-spacing:2.199360pt;}
.ls8{letter-spacing:2.432000pt;}
.ls37{letter-spacing:2.456960pt;}
.ls6b{letter-spacing:2.510400pt;}
.ls67{letter-spacing:2.510720pt;}
.ls78{letter-spacing:2.512000pt;}
.ls6{letter-spacing:2.624000pt;}
.ls68{letter-spacing:2.752320pt;}
.ls73{letter-spacing:2.753600pt;}
.ls45{letter-spacing:2.776960pt;}
.ls5e{letter-spacing:2.939712pt;}
.lsa0{letter-spacing:2.945568pt;}
.ls69{letter-spacing:3.073600pt;}
.ls43{letter-spacing:3.074400pt;}
.lsc{letter-spacing:6.080000pt;}
.ls86{letter-spacing:7.618656pt;}
.ls39{letter-spacing:8.221824pt;}
.ls6d{letter-spacing:8.856960pt;}
.ls85{letter-spacing:10.136960pt;}
.ls3d{letter-spacing:12.420576pt;}
.ls46{letter-spacing:12.678240pt;}
.ls5f{letter-spacing:12.730944pt;}
.ls3b{letter-spacing:12.736800pt;}
.ls76{letter-spacing:14.499456pt;}
.ls74{letter-spacing:14.921088pt;}
.ls7a{letter-spacing:15.243168pt;}
.ls3f{letter-spacing:15.257984pt;}
.ls9f{letter-spacing:15.301728pt;}
.ls79{letter-spacing:15.310720pt;}
.ls3a{letter-spacing:15.576960pt;}
.ls6c{letter-spacing:15.630720pt;}
.ls7f{letter-spacing:15.840480pt;}
.ls36{letter-spacing:15.881472pt;}
.ls95{letter-spacing:15.887328pt;}
.ls80{letter-spacing:15.940032pt;}
.lsa1{letter-spacing:17.058528pt;}
.ls16{letter-spacing:17.127520pt;}
.ls8e{letter-spacing:17.491872pt;}
.ls1e{letter-spacing:17.576416pt;}
.ls48{letter-spacing:17.816960pt;}
.ls81{letter-spacing:17.936928pt;}
.ls9e{letter-spacing:18.136960pt;}
.ls42{letter-spacing:18.510400pt;}
.lsb1{letter-spacing:18.610368pt;}
.ls35{letter-spacing:18.776960pt;}
.ls87{letter-spacing:19.150400pt;}
.ls96{letter-spacing:19.412640pt;}
.ls7e{letter-spacing:20.173920pt;}
.lsa3{letter-spacing:20.203200pt;}
.ls72{letter-spacing:20.548704pt;}
.ls82{letter-spacing:21.134304pt;}
.ls49{letter-spacing:21.656960pt;}
.ls63{letter-spacing:21.948288pt;}
.lsa6{letter-spacing:21.989280pt;}
.lsa2{letter-spacing:22.282080pt;}
.ls38{letter-spacing:22.340640pt;}
.ls9d{letter-spacing:22.656864pt;}
.ls70{letter-spacing:22.820832pt;}
.ls3{letter-spacing:23.545664pt;}
.ls55{letter-spacing:23.576256pt;}
.ls4b{letter-spacing:23.896960pt;}
.ls9c{letter-spacing:25.176960pt;}
.ls10{letter-spacing:25.459744pt;}
.ls66{letter-spacing:25.983072pt;}
.ls7d{letter-spacing:26.018208pt;}
.ls4{letter-spacing:26.240000pt;}
.ls98{letter-spacing:26.776960pt;}
.ls5{letter-spacing:27.200000pt;}
.ls99{letter-spacing:27.736960pt;}
.ls34{letter-spacing:28.160000pt;}
.ls7c{letter-spacing:28.696960pt;}
.ls88{letter-spacing:29.016960pt;}
.ls4e{letter-spacing:29.656960pt;}
.lsa8{letter-spacing:30.293088pt;}
.ls9b{letter-spacing:31.256960pt;}
.ls71{letter-spacing:32.320000pt;}
.lsa5{letter-spacing:33.666144pt;}
.ls4d{letter-spacing:36.376384pt;}
.lsa7{letter-spacing:37.490112pt;}
.ls5b{letter-spacing:84.600640pt;}
.ls47{letter-spacing:363.416960pt;}
.ls6f{letter-spacing:401.317536pt;}
.lsa4{letter-spacing:407.401920pt;}
.ls7b{letter-spacing:408.678528pt;}
.ls40{letter-spacing:442.502784pt;}
.ls75{letter-spacing:544.678272pt;}
.lsb4{letter-spacing:1215.040000pt;}
.ws5d{word-spacing:-84.677760pt;}
.ws62{word-spacing:-61.499712pt;}
.ws26{word-spacing:-58.560000pt;}
.ws63{word-spacing:-42.880000pt;}
.wsb7{word-spacing:-37.548672pt;}
.wsc4{word-spacing:-30.351648pt;}
.ws6{word-spacing:-25.552224pt;}
.ws41{word-spacing:-23.634816pt;}
.wsb0{word-spacing:-22.047840pt;}
.ws75{word-spacing:-22.006848pt;}
.wsa1{word-spacing:-19.471200pt;}
.wsfc{word-spacing:-18.668928pt;}
.ws15{word-spacing:-17.629856pt;}
.ws8c{word-spacing:-17.550432pt;}
.wsb{word-spacing:-17.180960pt;}
.ws127{word-spacing:-16.038400pt;}
.ws9e{word-spacing:-15.945888pt;}
.ws64{word-spacing:-12.789504pt;}
.ws2{word-spacing:-12.000000pt;}
.ws3{word-spacing:-8.155200pt;}
.ws121{word-spacing:-0.316224pt;}
.ws12c{word-spacing:-0.217600pt;}
.ws12f{word-spacing:-0.115200pt;}
.ws96{word-spacing:-0.111264pt;}
.ws5{word-spacing:-0.092480pt;}
.ws12a{word-spacing:-0.076800pt;}
.ws133{word-spacing:-0.064000pt;}
.ws1f{word-spacing:-0.058560pt;}
.ws12b{word-spacing:-0.057600pt;}
.wsc{word-spacing:-0.053440pt;}
.ws111{word-spacing:-0.051200pt;}
.ws5f{word-spacing:-0.042880pt;}
.ws129{word-spacing:-0.038400pt;}
.ws12e{word-spacing:-0.032000pt;}
.ws58{word-spacing:-0.029280pt;}
.ws12d{word-spacing:-0.025600pt;}
.ws11e{word-spacing:-0.023424pt;}
.ws130{word-spacing:-0.019200pt;}
.ws119{word-spacing:-0.017568pt;}
.ws112{word-spacing:-0.012800pt;}
.ws124{word-spacing:-0.011712pt;}
.ws10f{word-spacing:-0.006400pt;}
.ws114{word-spacing:-0.005856pt;}
.ws0{word-spacing:0.000000pt;}
.ws123{word-spacing:0.005856pt;}
.ws110{word-spacing:0.006400pt;}
.ws116{word-spacing:0.011712pt;}
.ws115{word-spacing:0.017568pt;}
.ws117{word-spacing:0.023424pt;}
.ws118{word-spacing:0.029280pt;}
.ws113{word-spacing:0.035136pt;}
.ws122{word-spacing:0.040992pt;}
.ws120{word-spacing:0.046848pt;}
.ws11a{word-spacing:0.052704pt;}
.ws131{word-spacing:0.057600pt;}
.ws125{word-spacing:0.058560pt;}
.wsce{word-spacing:0.064416pt;}
.ws126{word-spacing:0.070272pt;}
.wsf2{word-spacing:0.076128pt;}
.wsee{word-spacing:0.081984pt;}
.wse6{word-spacing:0.099552pt;}
.ws81{word-spacing:0.117120pt;}
.ws106{word-spacing:0.146400pt;}
.ws24{word-spacing:0.210816pt;}
.wsf3{word-spacing:0.240096pt;}
.ws101{word-spacing:0.269376pt;}
.ws4{word-spacing:1.914336pt;}
.ws7{word-spacing:2.238016pt;}
.wsda{word-spacing:4.596256pt;}
.ws1{word-spacing:8.448000pt;}
.wsaa{word-spacing:12.466560pt;}
.ws82{word-spacing:12.730944pt;}
.wse{word-spacing:12.804224pt;}
.wsf7{word-spacing:13.158432pt;}
.ws8f{word-spacing:13.679616pt;}
.wse3{word-spacing:13.931424pt;}
.ws9f{word-spacing:14.440896pt;}
.wsc8{word-spacing:14.476032pt;}
.wsc7{word-spacing:14.517024pt;}
.ws91{word-spacing:14.704416pt;}
.ws9d{word-spacing:14.803968pt;}
.ws66{word-spacing:15.108480pt;}
.ws68{word-spacing:15.120192pt;}
.ws79{word-spacing:15.191808pt;}
.ws3a{word-spacing:15.213888pt;}
.ws67{word-spacing:15.272448pt;}
.ws39{word-spacing:15.278304pt;}
.ws3b{word-spacing:15.336864pt;}
.wse5{word-spacing:15.383712pt;}
.ws59{word-spacing:15.500832pt;}
.ws2f{word-spacing:15.617024pt;}
.ws33{word-spacing:15.689504pt;}
.ws60{word-spacing:15.730624pt;}
.wse9{word-spacing:15.770208pt;}
.ws32{word-spacing:15.786144pt;}
.wsac{word-spacing:15.810304pt;}
.wse8{word-spacing:15.887328pt;}
.wse4{word-spacing:15.893184pt;}
.ws34{word-spacing:15.989088pt;}
.wsd9{word-spacing:16.203552pt;}
.wsae{word-spacing:16.221024pt;}
.ws48{word-spacing:16.361664pt;}
.ws49{word-spacing:16.396800pt;}
.ws10{word-spacing:16.432800pt;}
.wsd8{word-spacing:16.472928pt;}
.wsf{word-spacing:16.475552pt;}
.wsdb{word-spacing:16.490496pt;}
.ws61{word-spacing:16.682560pt;}
.wsbb{word-spacing:16.683744pt;}
.wsa7{word-spacing:16.718880pt;}
.wsec{word-spacing:16.783296pt;}
.wsa5{word-spacing:16.789152pt;}
.ws12{word-spacing:16.844288pt;}
.ws11{word-spacing:16.988576pt;}
.ws55{word-spacing:17.040960pt;}
.wsfe{word-spacing:17.052672pt;}
.ws2b{word-spacing:17.076096pt;}
.wsbc{word-spacing:17.081952pt;}
.wsc2{word-spacing:17.134656pt;}
.wsab{word-spacing:17.143936pt;}
.wsa6{word-spacing:17.152224pt;}
.wsc6{word-spacing:17.216640pt;}
.wsd{word-spacing:17.223712pt;}
.wsbd{word-spacing:17.251776pt;}
.ws7a{word-spacing:17.395200pt;}
.ws10a{word-spacing:17.421600pt;}
.ws18{word-spacing:17.613824pt;}
.ws17{word-spacing:17.656576pt;}
.ws14{word-spacing:17.667264pt;}
.ws10b{word-spacing:17.714400pt;}
.ws90{word-spacing:17.720256pt;}
.wse7{word-spacing:17.942784pt;}
.wsfa{word-spacing:18.159456pt;}
.ws9a{word-spacing:18.200448pt;}
.ws9b{word-spacing:18.253152pt;}
.ws9c{word-spacing:18.305856pt;}
.wsf1{word-spacing:18.323424pt;}
.ws3f{word-spacing:18.364416pt;}
.wsc9{word-spacing:18.381984pt;}
.wsa3{word-spacing:18.452256pt;}
.wse2{word-spacing:18.545952pt;}
.wsed{word-spacing:18.604512pt;}
.ws52{word-spacing:18.639648pt;}
.wsd7{word-spacing:18.803616pt;}
.ws3e{word-spacing:18.932448pt;}
.ws1a{word-spacing:18.949824pt;}
.ws3d{word-spacing:18.973440pt;}
.ws69{word-spacing:19.002720pt;}
.ws30{word-spacing:19.009088pt;}
.ws94{word-spacing:19.067136pt;}
.ws6a{word-spacing:19.084704pt;}
.ws6b{word-spacing:19.125696pt;}
.ws5e{word-spacing:19.143264pt;}
.ws2a{word-spacing:19.295520pt;}
.ws84{word-spacing:19.301376pt;}
.ws3c{word-spacing:19.336512pt;}
.ws108{word-spacing:19.348224pt;}
.ws8e{word-spacing:19.383360pt;}
.ws4a{word-spacing:19.395072pt;}
.wsf4{word-spacing:19.424352pt;}
.wsd6{word-spacing:19.459488pt;}
.wsdc{word-spacing:19.465344pt;}
.wscf{word-spacing:19.471200pt;}
.wsa4{word-spacing:19.482912pt;}
.wsfd{word-spacing:19.506336pt;}
.ws2d{word-spacing:19.518048pt;}
.wsde{word-spacing:19.529760pt;}
.ws5c{word-spacing:19.541472pt;}
.ws2c{word-spacing:19.600032pt;}
.wsb8{word-spacing:19.611744pt;}
.ws51{word-spacing:19.646880pt;}
.ws46{word-spacing:19.705440pt;}
.ws95{word-spacing:19.787424pt;}
.ws11f{word-spacing:19.799136pt;}
.ws128{word-spacing:19.840128pt;}
.ws45{word-spacing:19.851840pt;}
.wsd0{word-spacing:19.869408pt;}
.ws65{word-spacing:19.881120pt;}
.wsdf{word-spacing:19.886976pt;}
.ws47{word-spacing:19.916256pt;}
.wsba{word-spacing:19.933824pt;}
.wsfb{word-spacing:19.945536pt;}
.ws38{word-spacing:19.957248pt;}
.wsd5{word-spacing:19.992384pt;}
.ws37{word-spacing:20.039232pt;}
.wsb9{word-spacing:20.050944pt;}
.ws27{word-spacing:20.132928pt;}
.ws43{word-spacing:20.156352pt;}
.ws44{word-spacing:20.203200pt;}
.wsad{word-spacing:20.246080pt;}
.ws8a{word-spacing:20.250048pt;}
.ws8b{word-spacing:20.332032pt;}
.ws31{word-spacing:20.333056pt;}
.wsd2{word-spacing:20.414016pt;}
.ws19{word-spacing:20.504928pt;}
.ws13{word-spacing:20.510272pt;}
.wsd1{word-spacing:20.572128pt;}
.ws28{word-spacing:20.636544pt;}
.wsf8{word-spacing:20.659968pt;}
.wsf6{word-spacing:20.683392pt;}
.ws8d{word-spacing:20.806368pt;}
.ws109{word-spacing:20.812224pt;}
.ws1c{word-spacing:20.818080pt;}
.wsca{word-spacing:20.841504pt;}
.wsdd{word-spacing:20.847360pt;}
.ws102{word-spacing:20.905920pt;}
.wsff{word-spacing:21.040608pt;}
.ws89{word-spacing:21.081600pt;}
.wse1{word-spacing:21.146016pt;}
.ws105{word-spacing:21.157728pt;}
.ws50{word-spacing:21.175296pt;}
.wsb1{word-spacing:21.239712pt;}
.wsc3{word-spacing:21.257280pt;}
.ws70{word-spacing:21.280704pt;}
.ws6c{word-spacing:21.309984pt;}
.ws10e{word-spacing:21.356832pt;}
.ws9{word-spacing:21.373536pt;}
.ws6f{word-spacing:21.427104pt;}
.ws6d{word-spacing:21.432960pt;}
.ws5a{word-spacing:21.485664pt;}
.ws10c{word-spacing:21.532512pt;}
.wsa0{word-spacing:21.637920pt;}
.ws5b{word-spacing:21.684768pt;}
.wsa2{word-spacing:21.714048pt;}
.wsa{word-spacing:21.714432pt;}
.ws25{word-spacing:21.813600pt;}
.ws36{word-spacing:21.872160pt;}
.ws107{word-spacing:22.065408pt;}
.wsaf{word-spacing:22.077120pt;}
.ws6e{word-spacing:22.118112pt;}
.ws74{word-spacing:22.194240pt;}
.ws20{word-spacing:22.235232pt;}
.ws35{word-spacing:22.276224pt;}
.ws76{word-spacing:22.282080pt;}
.ws23{word-spacing:22.399200pt;}
.ws54{word-spacing:22.405056pt;}
.wseb{word-spacing:22.410912pt;}
.ws77{word-spacing:22.422624pt;}
.ws53{word-spacing:22.528032pt;}
.ws78{word-spacing:22.539744pt;}
.ws21{word-spacing:22.791552pt;}
.ws4f{word-spacing:22.797408pt;}
.ws22{word-spacing:22.844256pt;}
.ws10d{word-spacing:22.850112pt;}
.ws4e{word-spacing:22.867680pt;}
.ws83{word-spacing:22.908672pt;}
.ws1e{word-spacing:22.943808pt;}
.ws7d{word-spacing:22.955520pt;}
.ws7b{word-spacing:23.096064pt;}
.wsb5{word-spacing:23.113632pt;}
.ws7c{word-spacing:23.119488pt;}
.wsb6{word-spacing:23.330304pt;}
.ws87{word-spacing:23.453280pt;}
.ws2e{word-spacing:23.560832pt;}
.wsbf{word-spacing:23.628960pt;}
.wsd4{word-spacing:23.757792pt;}
.wsd3{word-spacing:23.792928pt;}
.ws73{word-spacing:23.839776pt;}
.ws42{word-spacing:23.939328pt;}
.wsbe{word-spacing:24.009600pt;}
.ws4d{word-spacing:24.120864pt;}
.ws4b{word-spacing:24.290688pt;}
.wsf5{word-spacing:24.308256pt;}
.ws4c{word-spacing:24.331680pt;}
.wsf9{word-spacing:24.366816pt;}
.wsf0{word-spacing:24.372672pt;}
.wsb2{word-spacing:24.460512pt;}
.ws1d{word-spacing:24.472224pt;}
.wsc0{word-spacing:24.483936pt;}
.wsef{word-spacing:24.583488pt;}
.ws40{word-spacing:24.806016pt;}
.ws57{word-spacing:25.040256pt;}
.wscc{word-spacing:25.051968pt;}
.ws80{word-spacing:25.139808pt;}
.wsb3{word-spacing:25.204224pt;}
.wscb{word-spacing:25.210080pt;}
.ws86{word-spacing:25.215936pt;}
.ws7f{word-spacing:25.321344pt;}
.wsb4{word-spacing:25.456032pt;}
.ws56{word-spacing:25.532160pt;}
.ws104{word-spacing:25.596576pt;}
.ws103{word-spacing:25.684416pt;}
.ws100{word-spacing:25.701984pt;}
.ws98{word-spacing:25.895232pt;}
.wse0{word-spacing:26.199744pt;}
.ws29{word-spacing:26.223168pt;}
.ws99{word-spacing:26.234880pt;}
.wsa9{word-spacing:26.340288pt;}
.wsc1{word-spacing:26.428128pt;}
.wscd{word-spacing:26.486688pt;}
.wsa8{word-spacing:26.650656pt;}
.ws97{word-spacing:26.679936pt;}
.ws88{word-spacing:26.709216pt;}
.wsea{word-spacing:26.867328pt;}
.ws72{word-spacing:26.961024pt;}
.ws71{word-spacing:27.382656pt;}
.ws16{word-spacing:27.393344pt;}
.ws7e{word-spacing:28.026816pt;}
.wsc5{word-spacing:28.466016pt;}
.ws85{word-spacing:28.629984pt;}
.ws92{word-spacing:28.881792pt;}
.ws93{word-spacing:28.934496pt;}
.ws8{word-spacing:32.331008pt;}
.ws11c{word-spacing:49.260672pt;}
.ws132{word-spacing:49.278240pt;}
.ws11d{word-spacing:49.284096pt;}
.ws11b{word-spacing:49.289952pt;}
.ws1b{word-spacing:87.484928pt;}
._22{margin-left:-86.443808pt;}
._30{margin-left:-84.801152pt;}
._24{margin-left:-83.875712pt;}
._23{margin-left:-56.845152pt;}
._34{margin-left:-50.156640pt;}
._35{margin-left:-48.631786pt;}
._2f{margin-left:-37.489544pt;}
._a{margin-left:-31.037748pt;}
._8{margin-left:-28.897124pt;}
._9{margin-left:-27.845728pt;}
._b{margin-left:-26.325560pt;}
._1e{margin-left:-23.646528pt;}
._1d{margin-left:-22.164960pt;}
._2d{margin-left:-21.271780pt;}
._1{margin-left:-20.236800pt;}
._e{margin-left:-18.955168pt;}
._f{margin-left:-17.175616pt;}
._2b{margin-left:-15.226400pt;}
._2{margin-left:-10.137600pt;}
._c{margin-left:-8.989277pt;}
._6{margin-left:-6.196800pt;}
._31{margin-left:-5.299680pt;}
._5{margin-left:-4.406400pt;}
._0{margin-left:-2.789798pt;}
._4{margin-left:-1.800086pt;}
._1b{margin-left:-0.895968pt;}
._12{width:0.909322pt;}
._3{width:1.800086pt;}
._32{width:2.865140pt;}
._7{width:3.840000pt;}
._33{width:7.713198pt;}
._2c{width:13.889750pt;}
._20{width:15.253206pt;}
._25{width:16.405098pt;}
._10{width:18.132422pt;}
._2a{width:19.177083pt;}
._17{width:20.117654pt;}
._d{width:21.740160pt;}
._11{width:23.401376pt;}
._21{width:24.720518pt;}
._18{width:25.640705pt;}
._16{width:27.033590pt;}
._15{width:28.333622pt;}
._19{width:30.454516pt;}
._13{width:31.885964pt;}
._14{width:34.053908pt;}
._1a{width:35.363158pt;}
._27{width:36.898656pt;}
._1f{width:40.018487pt;}
._2e{width:41.215680pt;}
._1c{width:42.347078pt;}
._29{width:43.849536pt;}
._28{width:44.909664pt;}
._36{width:48.451520pt;}
._26{width:49.373184pt;}
._37{width:1267.148800pt;}
.fs11{font-size:32.000000pt;}
.fs4{font-size:37.333333pt;}
.fsd{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs12{font-size:48.320000pt;}
.fs3{font-size:53.333333pt;}
.fse{font-size:53.440000pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:57.168000pt;}
.fs10{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fsc{font-size:64.320000pt;}
.fs8{font-size:68.185067pt;}
.fs9{font-size:74.666667pt;}
.fsf{font-size:77.120000pt;}
.fs2{font-size:90.666667pt;}
.fsb{font-size:92.480000pt;}
.fs5{font-size:128.000000pt;}
.fs7{font-size:384.000000pt;}
.y0{bottom:0.000000pt;}
.y10c{bottom:17.787067pt;}
.y17c{bottom:48.742691pt;}
.y143{bottom:49.875955pt;}
.y5{bottom:59.133337pt;}
.y17b{bottom:65.622611pt;}
.y1b8{bottom:68.924000pt;}
.y142{bottom:70.755523pt;}
.y1b2{bottom:71.227067pt;}
.y17a{bottom:85.063067pt;}
.y4{bottom:86.333337pt;}
.y141{bottom:87.635443pt;}
.y1b1{bottom:89.386531pt;}
.y179{bottom:102.023507pt;}
.y140{bottom:104.515363pt;}
.y1b0{bottom:106.587067pt;}
.y2a{bottom:118.161333pt;}
.y178{bottom:118.903427pt;}
.y10b{bottom:122.337131pt;}
.ye6{bottom:122.345888pt;}
.y6c{bottom:122.347067pt;}
.y20{bottom:123.790666pt;}
.y13f{bottom:125.394931pt;}
.y1af{bottom:127.547067pt;}
.y177{bottom:138.343883pt;}
.y13e{bottom:142.194331pt;}
.y1ae{bottom:146.027067pt;}
.y29{bottom:146.961333pt;}
.y176{bottom:155.304323pt;}
.y13d{bottom:159.074251pt;}
.y1ad{bottom:164.427067pt;}
.y6b{bottom:167.227067pt;}
.y95{bottom:169.307067pt;}
.y175{bottom:172.184243pt;}
.y17{bottom:175.052000pt;}
.y13c{bottom:179.953819pt;}
.y6a{bottom:181.867067pt;}
.yc4{bottom:183.387448pt;}
.y1ac{bottom:185.387067pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y3a{bottom:188.466533pt;}
.y94{bottom:190.585867pt;}
.y69{bottom:191.387291pt;}
.y174{bottom:191.624699pt;}
.y13b{bottom:196.833739pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y39{bottom:201.799733pt;}
.yc3{bottom:203.067200pt;}
.y1ab{bottom:203.867067pt;}
.y68{bottom:206.027043pt;}
.y173{bottom:208.585139pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y93{bottom:208.666267pt;}
.yc2{bottom:212.667291pt;}
.y13a{bottom:213.713659pt;}
.y1aa{bottom:222.267067pt;}
.y172{bottom:225.384539pt;}
.y67{bottom:225.707067pt;}
.y92{bottom:226.746667pt;}
.yc1{bottom:227.227315pt;}
.y38{bottom:228.466133pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y139{bottom:234.514171pt;}
.y66{bottom:235.627315pt;}
.y1a9{bottom:240.667595pt;}
.y37{bottom:241.799333pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y171{bottom:244.824995pt;}
.y91{bottom:244.827187pt;}
.yc0{bottom:246.907067pt;}
.y1b7{bottom:251.089333pt;}
.y138{bottom:251.394091pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y36{bottom:255.132533pt;}
.y65{bottom:255.307067pt;}
.y90{bottom:259.226619pt;}
.y1a8{bottom:261.307067pt;}
.y170{bottom:261.785435pt;}
.y8f{bottom:262.826667pt;}
.y1b6{bottom:267.089333pt;}
.y137{bottom:268.274011pt;}
.y35{bottom:268.465733pt;}
.ybf{bottom:268.986667pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y64{bottom:276.024787pt;}
.y1a7{bottom:278.587067pt;}
.y16f{bottom:278.665355pt;}
.y8e{bottom:280.906667pt;}
.y34{bottom:281.798933pt;}
.y1b5{bottom:283.089333pt;}
.ybe{bottom:283.227072pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.ybd{bottom:287.065187pt;}
.y136{bottom:289.153579pt;}
.y63{bottom:294.105187pt;}
.y33{bottom:295.132133pt;}
.y1a6{bottom:296.987067pt;}
.y16e{bottom:298.105811pt;}
.y8d{bottom:298.987203pt;}
.y10a{bottom:301.536587pt;}
.ybc{bottom:305.145587pt;}
.y135{bottom:306.033499pt;}
.ye5{bottom:308.585720pt;}
.ye{bottom:309.452000pt;}
.y62{bottom:312.185587pt;}
.y16d{bottom:315.066251pt;}
.y1b4{bottom:315.089333pt;}
.y1a5{bottom:315.387595pt;}
.y8c{bottom:317.067603pt;}
.y109{bottom:319.536467pt;}
.y32{bottom:321.798533pt;}
.y134{bottom:322.913419pt;}
.ybb{bottom:323.225987pt;}
.ye4{bottom:326.666120pt;}
.y61{bottom:330.265987pt;}
.y16c{bottom:331.946171pt;}
.y31{bottom:335.131733pt;}
.y1a4{bottom:336.027067pt;}
.y108{bottom:337.616867pt;}
.yba{bottom:341.306387pt;}
.y133{bottom:343.713931pt;}
.y8b{bottom:343.787723pt;}
.yd{bottom:343.809333pt;}
.ye3{bottom:344.746520pt;}
.y60{bottom:348.265867pt;}
.y16b{bottom:351.386627pt;}
.y1a3{bottom:353.307067pt;}
.y107{bottom:355.697267pt;}
.yb9{bottom:359.306267pt;}
.y132{bottom:360.593851pt;}
.y30{bottom:361.798133pt;}
.yc{bottom:362.706666pt;}
.ye2{bottom:362.826920pt;}
.y5f{bottom:366.346267pt;}
.y16a{bottom:368.347067pt;}
.y1a2{bottom:371.708003pt;}
.y106{bottom:373.777667pt;}
.y2f{bottom:375.131333pt;}
.yb8{bottom:377.386667pt;}
.y131{bottom:377.473771pt;}
.y89{bottom:378.507067pt;}
.ye1{bottom:380.907320pt;}
.y5e{bottom:384.426667pt;}
.y8a{bottom:384.907307pt;}
.y169{bottom:385.221843pt;}
.y2e{bottom:388.464533pt;}
.y88{bottom:388.507848pt;}
.y105{bottom:391.858067pt;}
.y1a1{bottom:392.347475pt;}
.yb6{bottom:395.466736pt;}
.yb7{bottom:395.467067pt;}
.y130{bottom:398.353339pt;}
.ye0{bottom:398.907200pt;}
.y2d{bottom:401.797733pt;}
.y168{bottom:402.021243pt;}
.y5d{bottom:402.506787pt;}
.y1a0{bottom:409.627067pt;}
.y104{bottom:409.938467pt;}
.y2c{bottom:415.130933pt;}
.y12f{bottom:415.233259pt;}
.y5c{bottom:420.587187pt;}
.yb3{bottom:420.827200pt;}
.y167{bottom:421.540755pt;}
.y87{bottom:427.147200pt;}
.y103{bottom:427.938347pt;}
.y19f{bottom:428.027616pt;}
.y2b{bottom:428.464133pt;}
.ydf{bottom:431.387067pt;}
.y12e{bottom:432.032659pt;}
.yb5{bottom:434.507440pt;}
.yb4{bottom:438.107200pt;}
.yb0{bottom:438.107675pt;}
.y166{bottom:438.420675pt;}
.y5b{bottom:438.587067pt;}
.y102{bottom:446.018747pt;}
.y19e{bottom:448.747608pt;}
.yb2{bottom:451.947200pt;}
.y12d{bottom:452.912227pt;}
.y165{bottom:455.300595pt;}
.yb1{bottom:456.267067pt;}
.y86{bottom:459.627067pt;}
.yb{bottom:462.990669pt;}
.y101{bottom:464.099147pt;}
.y19d{bottom:466.027067pt;}
.y12c{bottom:469.792147pt;}
.y5a{bottom:471.067067pt;}
.y164{bottom:474.741051pt;}
.yde{bottom:477.222635pt;}
.ya{bottom:478.990666pt;}
.yaf{bottom:481.707059pt;}
.y100{bottom:482.179547pt;}
.y19c{bottom:484.427067pt;}
.y4b{bottom:484.694533pt;}
.y12b{bottom:486.672067pt;}
.y163{bottom:491.701491pt;}
.y9{bottom:494.990666pt;}
.ydd{bottom:495.303035pt;}
.y4a{bottom:498.027733pt;}
.yae{bottom:499.787459pt;}
.yff{bottom:500.259947pt;}
.y19b{bottom:502.828003pt;}
.y85{bottom:505.380227pt;}
.y12a{bottom:507.551635pt;}
.y162{bottom:508.581411pt;}
.ydc{bottom:513.383435pt;}
.y59{bottom:516.667923pt;}
.yad{bottom:517.867859pt;}
.yfe{bottom:518.259827pt;}
.y84{bottom:523.460627pt;}
.y19a{bottom:523.467475pt;}
.y129{bottom:524.431555pt;}
.y49{bottom:524.694133pt;}
.y161{bottom:528.021867pt;}
.ydb{bottom:531.383315pt;}
.y58{bottom:532.587699pt;}
.yac{bottom:535.867739pt;}
.yfd{bottom:536.340227pt;}
.y48{bottom:538.027333pt;}
.y199{bottom:540.747067pt;}
.y128{bottom:541.230955pt;}
.y83{bottom:541.541027pt;}
.y160{bottom:544.982307pt;}
.yda{bottom:549.463715pt;}
.y47{bottom:551.360533pt;}
.yfc{bottom:554.420627pt;}
.y198{bottom:559.147067pt;}
.y82{bottom:559.621427pt;}
.ya9{bottom:560.907067pt;}
.y15f{bottom:561.862227pt;}
.y127{bottom:562.110523pt;}
.y46{bottom:564.693733pt;}
.yd9{bottom:567.544115pt;}
.yfb{bottom:572.501027pt;}
.y8{bottom:573.786667pt;}
.yab{bottom:574.507307pt;}
.y197{bottom:577.543784pt;}
.y81{bottom:577.701827pt;}
.y45{bottom:578.026933pt;}
.ya6{bottom:578.106883pt;}
.yaa{bottom:578.107067pt;}
.y126{bottom:578.990443pt;}
.y15e{bottom:581.302683pt;}
.y28{bottom:583.164133pt;}
.yd8{bottom:585.624515pt;}
.y57{bottom:585.708395pt;}
.yfa{bottom:590.581427pt;}
.y44{bottom:591.360133pt;}
.ya8{bottom:591.947067pt;}
.y7{bottom:592.685334pt;}
.y80{bottom:595.782227pt;}
.y125{bottom:595.870363pt;}
.ya7{bottom:596.347067pt;}
.y196{bottom:598.183256pt;}
.y15d{bottom:598.263123pt;}
.y56{bottom:601.628171pt;}
.yd7{bottom:603.704915pt;}
.yf9{bottom:608.661827pt;}
.y7f{bottom:613.782107pt;}
.y15c{bottom:615.143043pt;}
.y195{bottom:615.143696pt;}
.y124{bottom:616.749931pt;}
.y55{bottom:617.547947pt;}
.y43{bottom:618.026533pt;}
.ya5{bottom:621.706267pt;}
.yd6{bottom:621.785315pt;}
.yf8{bottom:626.661707pt;}
.y27{bottom:627.964133pt;}
.y42{bottom:631.359733pt;}
.y7e{bottom:631.862507pt;}
.y194{bottom:631.943096pt;}
.y54{bottom:633.547883pt;}
.y123{bottom:633.549331pt;}
.y15b{bottom:634.583499pt;}
.yd5{bottom:639.785195pt;}
.ya4{bottom:639.786667pt;}
.yf7{bottom:644.742107pt;}
.y6{bottom:645.598667pt;}
.y53{bottom:649.467659pt;}
.y7d{bottom:649.942907pt;}
.y122{bottom:650.429251pt;}
.y193{bottom:651.462608pt;}
.y15a{bottom:651.543939pt;}
.ya3{bottom:657.864795pt;}
.yd4{bottom:657.865595pt;}
.y41{bottom:658.026133pt;}
.yf6{bottom:662.822507pt;}
.y52{bottom:665.387435pt;}
.y7c{bottom:668.023307pt;}
.y192{bottom:668.342528pt;}
.y159{bottom:668.343339pt;}
.y3{bottom:668.977329pt;}
.y121{bottom:671.308819pt;}
.y40{bottom:671.359333pt;}
.y26{bottom:672.764133pt;}
.ya2{bottom:675.945195pt;}
.yd3{bottom:675.945995pt;}
.yf5{bottom:680.902907pt;}
.y51{bottom:681.307211pt;}
.y3f{bottom:684.692533pt;}
.y191{bottom:685.222448pt;}
.y7b{bottom:686.103707pt;}
.y158{bottom:687.862851pt;}
.y120{bottom:688.188739pt;}
.ya1{bottom:694.025595pt;}
.yd2{bottom:694.026395pt;}
.y3e{bottom:698.025733pt;}
.yf4{bottom:698.983307pt;}
.y50{bottom:703.947067pt;}
.y7a{bottom:704.103587pt;}
.y190{bottom:704.662904pt;}
.y157{bottom:704.742771pt;}
.y11f{bottom:705.068659pt;}
.y3d{bottom:711.358933pt;}
.ya0{bottom:712.105995pt;}
.yd1{bottom:712.106795pt;}
.yf3{bottom:717.063707pt;}
.y156{bottom:721.622691pt;}
.y18f{bottom:721.623344pt;}
.y79{bottom:722.183987pt;}
.y3c{bottom:724.692133pt;}
.y11e{bottom:725.869171pt;}
.y9f{bottom:730.105875pt;}
.yd0{bottom:730.106675pt;}
.yf2{bottom:735.063587pt;}
.y3b{bottom:738.025333pt;}
.y18e{bottom:738.503264pt;}
.y78{bottom:740.264387pt;}
.y155{bottom:741.063147pt;}
.y11d{bottom:742.749091pt;}
.y9e{bottom:748.186275pt;}
.ycd{bottom:751.627067pt;}
.yf1{bottom:753.143987pt;}
.y18d{bottom:757.943720pt;}
.y154{bottom:758.023587pt;}
.y77{bottom:758.344787pt;}
.y11c{bottom:759.629011pt;}
.ycf{bottom:765.307307pt;}
.y9d{bottom:766.266675pt;}
.y25{bottom:768.400000pt;}
.yca{bottom:768.906483pt;}
.yce{bottom:768.907067pt;}
.y4f{bottom:770.347067pt;}
.yf0{bottom:771.224387pt;}
.y153{bottom:774.903507pt;}
.y18c{bottom:774.904160pt;}
.y76{bottom:776.425187pt;}
.y11b{bottom:780.508579pt;}
.y2{bottom:781.661334pt;}
.ycc{bottom:782.747067pt;}
.ycb{bottom:787.147200pt;}
.y9b{bottom:787.787067pt;}
.yef{bottom:789.304787pt;}
.y152{bottom:791.783427pt;}
.y18b{bottom:791.784080pt;}
.y75{bottom:794.505587pt;}
.y11a{bottom:797.388499pt;}
.y24{bottom:797.733333pt;}
.y9c{bottom:801.467307pt;}
.y4e{bottom:802.987683pt;}
.y98{bottom:805.067067pt;}
.yee{bottom:807.385187pt;}
.y18a{bottom:808.664000pt;}
.y151{bottom:811.223883pt;}
.y74{bottom:812.505467pt;}
.yc9{bottom:812.505867pt;}
.y119{bottom:814.268419pt;}
.y9a{bottom:818.907067pt;}
.y99{bottom:823.227067pt;}
.yed{bottom:825.385067pt;}
.y189{bottom:828.104456pt;}
.y150{bottom:828.184323pt;}
.y73{bottom:830.585867pt;}
.yc8{bottom:830.586267pt;}
.y118{bottom:835.068931pt;}
.yec{bottom:843.465467pt;}
.y14f{bottom:845.064243pt;}
.y188{bottom:845.064896pt;}
.y97{bottom:848.665587pt;}
.y72{bottom:848.666267pt;}
.yc7{bottom:848.666667pt;}
.y4d{bottom:851.466507pt;}
.y117{bottom:851.948851pt;}
.y1{bottom:859.312000pt;}
.yeb{bottom:861.545867pt;}
.y187{bottom:861.864296pt;}
.yc6{bottom:862.907339pt;}
.y14e{bottom:864.504699pt;}
.y96{bottom:866.745987pt;}
.y71{bottom:866.746667pt;}
.y116{bottom:868.828771pt;}
.yea{bottom:879.626267pt;}
.y4c{bottom:880.667067pt;}
.y186{bottom:881.304752pt;}
.y14d{bottom:881.384619pt;}
.y70{bottom:884.826387pt;}
.yc5{bottom:884.827187pt;}
.y115{bottom:889.708339pt;}
.ye9{bottom:897.706667pt;}
.y14c{bottom:898.264539pt;}
.y185{bottom:898.265192pt;}
.y6f{bottom:902.826267pt;}
.y114{bottom:906.588259pt;}
.y184{bottom:915.145112pt;}
.ye8{bottom:915.787067pt;}
.y14b{bottom:917.704995pt;}
.y6e{bottom:920.906667pt;}
.y113{bottom:923.387659pt;}
.y183{bottom:934.585568pt;}
.y14a{bottom:934.665435pt;}
.ye7{bottom:937.787067pt;}
.y6d{bottom:938.987067pt;}
.y112{bottom:944.267227pt;}
.y149{bottom:951.545355pt;}
.y182{bottom:951.546008pt;}
.y111{bottom:961.147147pt;}
.y181{bottom:968.425928pt;}
.y148{bottom:970.985811pt;}
.y110{bottom:978.027067pt;}
.y180{bottom:987.866384pt;}
.y147{bottom:987.946251pt;}
.y10f{bottom:999.227067pt;}
.y146{bottom:1004.826171pt;}
.y17f{bottom:1004.826824pt;}
.y23{bottom:1008.912800pt;}
.y10e{bottom:1017.627067pt;}
.y1b3{bottom:1021.134000pt;}
.y17e{bottom:1021.706744pt;}
.y145{bottom:1024.266627pt;}
.y22{bottom:1026.063200pt;}
.y10d{bottom:1039.867067pt;}
.y17d{bottom:1041.147200pt;}
.y144{bottom:1041.227067pt;}
.y21{bottom:1061.502000pt;}
.h18{height:21.328125pt;}
.h1a{height:22.500000pt;}
.h3f{height:23.040000pt;}
.h1b{height:24.000000pt;}
.h7{height:28.560000pt;}
.h25{height:28.579687pt;}
.he{height:33.328125pt;}
.hf{height:33.421875pt;}
.hd{height:34.560000pt;}
.h19{height:36.240000pt;}
.h13{height:37.366250pt;}
.h26{height:39.030469pt;}
.h14{height:40.080000pt;}
.h6{height:40.800000pt;}
.h9{height:41.160960pt;}
.h34{height:41.975625pt;}
.h3{height:42.840000pt;}
.h3e{height:43.584000pt;}
.h20{height:43.917376pt;}
.h2c{height:43.918101pt;}
.h16{height:43.920000pt;}
.h29{height:43.920736pt;}
.h21{height:43.921600pt;}
.h33{height:43.922336pt;}
.h30{height:43.923200pt;}
.h3d{height:46.080000pt;}
.h12{height:48.240000pt;}
.h2{height:48.960000pt;}
.hb{height:49.093248pt;}
.h22{height:49.701287pt;}
.h27{height:52.579687pt;}
.h11{height:53.271286pt;}
.h17{height:53.281120pt;}
.h1c{height:53.282720pt;}
.h24{height:53.285920pt;}
.h28{height:53.289088pt;}
.hc{height:53.760000pt;}
.h15{height:53.923750pt;}
.h31{height:56.741287pt;}
.h2e{height:57.067741pt;}
.h38{height:57.473437pt;}
.h1f{height:58.319040pt;}
.h23{height:58.321792pt;}
.h32{height:59.278912pt;}
.h2f{height:59.279979pt;}
.h2b{height:59.280288pt;}
.h2d{height:59.281611pt;}
.h3a{height:62.808756pt;}
.h3c{height:62.810388pt;}
.h3b{height:62.810836pt;}
.h37{height:62.812500pt;}
.h39{height:62.825631pt;}
.h36{height:64.500000pt;}
.h5{height:69.360000pt;}
.h2a{height:73.679328pt;}
.h10{height:76.151771pt;}
.h35{height:80.412500pt;}
.h1d{height:83.275051pt;}
.h8{height:92.160000pt;}
.h1e{height:92.579688pt;}
.h4{height:105.826671pt;}
.ha{height:276.480000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w3{width:793.333333pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x7{left:132.283467pt;}
.x33{left:143.260000pt;}
.x10{left:157.120000pt;}
.x31{left:170.159496pt;}
.x12{left:173.440000pt;}
.x11{left:179.678552pt;}
.x4{left:180.874667pt;}
.xe{left:193.440320pt;}
.xf{left:194.479728pt;}
.x26{left:198.000496pt;}
.x8{left:202.720000pt;}
.xd{left:213.360080pt;}
.x6{left:234.732000pt;}
.x5{left:235.906667pt;}
.x2e{left:245.440000pt;}
.x9{left:264.159088pt;}
.x17{left:265.921368pt;}
.x19{left:276.080000pt;}
.x27{left:277.839736pt;}
.x14{left:286.319464pt;}
.x1f{left:311.920536pt;}
.xa{left:339.679488pt;}
.x1b{left:340.880000pt;}
.x1c{left:342.160000pt;}
.x29{left:343.920000pt;}
.x1a{left:345.760000pt;}
.x28{left:347.520000pt;}
.xb{left:354.720000pt;}
.x1d{left:364.320000pt;}
.x30{left:365.840000pt;}
.xc{left:366.960000pt;}
.x20{left:376.720000pt;}
.x21{left:378.000000pt;}
.x15{left:381.120000pt;}
.x13{left:392.560000pt;}
.x22{left:400.160000pt;}
.x3{left:404.408000pt;}
.x2f{left:408.160672pt;}
.x18{left:419.680144pt;}
.x23{left:425.280000pt;}
.x2c{left:429.840224pt;}
.x24{left:449.360944pt;}
.x2d{left:458.000000pt;}
.x25{left:466.160000pt;}
.x2a{left:483.360944pt;}
.x16{left:492.479744pt;}
.x2b{left:500.160000pt;}
.x1e{left:501.920000pt;}
.x32{left:770.733333pt;}
}




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