
    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_03b7681ff2fe803bc0a8fc7f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.190918;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_a7ee6329cfac931d5daf4be6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_26e9cde9baa558d9f6288e29.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.191406;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_613f81e0bd88e1167e2ae8bb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958496;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_33f7e84ec96520fe28e06748.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.722656;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_85b196cb95e06d276160aa1d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.349000;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_1aca64dc2ff1d8daa011c0d2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.190918;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_928cc70160c43393bc87ca16.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.362000;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_66b39a34684a5f4855d957aa.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.727000;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_27c7029a048a36b7c38b6f6e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.258000;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_84afec0fd42560c690d2b16f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.199000;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_156b470feebca76713a9914c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.829000;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_ced1da407d0e60f4df1785b5.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.879000;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_9947215170e6cff76f3d6be8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.957000;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_ba572756cc45d813abb906d1.woff2')format("woff");}.fff{font-family:fff;line-height:0.853000;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_fa817378f8b817f43c792257.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.537000;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_8a0586442d404be03e79b063.woff2')format("woff");}.ff11{font-family:ff11;line-height:2.399000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_15da06ee8e05c0cd611e7937.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.712000;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_7bba3d3c5ecec8bcdb0c9c72.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.727000;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_c1f26d39c89bec1ce5b4e2a1.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.258000;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_a9016eb43caed07eec6334d1.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.724000;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_21bbb4c61eae4a99b6b4733b.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.712000;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_c09eef94f4eeb377a2feb094.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.853000;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_2e0c2f2c23d21ce9d0d1348c.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.799000;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_9ad2cfa8be353b1827cc1560.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.384000;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_d7cc94c906fea16f55446a86.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.715000;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_1cd5ea66b5db19847d93ccc1.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.537000;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_89bb2bce0f210f03c9ea4207.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.712000;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_66edfd0f58d09243f6a34052.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.727000;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_352a781f68c4308328e72ef7.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.317000;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:ff1f;src:url('chunks/assets/font_f1856ee03703f83dea8737ad.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.817000;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:ff20;src:url('chunks/assets/font_fb339465a2c2ca02765e3ee1.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.853000;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:ff21;src:url('chunks/assets/font_55207bdea331e48c2a1f3b02.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.957000;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:ff22;src:url('chunks/assets/font_8d8ba2bea998990b1e10a276.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.666000;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:ff23;src:url('chunks/assets/font_47cd2f211fd0f45b125f6824.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.853000;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:ff24;src:url('chunks/assets/font_165d58a017a7da4f0a047bb1.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.940000;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:ff25;src:url('chunks/assets/font_36a6f821d676f6d9fbdee4c1.woff2')format("woff");}.ff25{font-family:ff25;line-height:2.399000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_c5631a609b32df5bb4ac8b30.woff2')format("woff");}.ff26{font-family:ff26;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;}
.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);}
.v10{vertical-align:-59.981291px;}
.v12{vertical-align:-43.980652px;}
.v11{vertical-align:-22.047177px;}
.v4{vertical-align:-18.899414px;}
.v5{vertical-align:-17.849991px;}
.va{vertical-align:-13.336213px;}
.v7{vertical-align:-10.890018px;}
.v15{vertical-align:-8.099991px;}
.v1{vertical-align:-1.488000px;}
.v0{vertical-align:0.000000px;}
.v16{vertical-align:8.099854px;}
.v8{vertical-align:10.800018px;}
.v9{vertical-align:14.526587px;}
.v13{vertical-align:16.211160px;}
.v6{vertical-align:17.825991px;}
.v3{vertical-align:18.828146px;}
.vb{vertical-align:19.873213px;}
.v2{vertical-align:21.000000px;}
.v14{vertical-align:22.354797px;}
.v17{vertical-align:38.420449px;}
.vd{vertical-align:48.492004px;}
.ve{vertical-align:51.892822px;}
.vc{vertical-align:61.558823px;}
.vf{vertical-align:76.192451px;}
.v18{vertical-align:98.347702px;}
.ls62{letter-spacing:-3.294000px;}
.ls74{letter-spacing:-3.060000px;}
.ls63{letter-spacing:-1.296000px;}
.ls77{letter-spacing:-1.125000px;}
.ls46{letter-spacing:-0.918000px;}
.ls2b{letter-spacing:-0.864000px;}
.ls6b{letter-spacing:-0.765000px;}
.ls76{letter-spacing:-0.675000px;}
.ls2a{letter-spacing:-0.594000px;}
.ls29{letter-spacing:-0.432000px;}
.ls11{letter-spacing:-0.378000px;}
.ls73{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.270000px;}
.ls75{letter-spacing:-0.225000px;}
.lse{letter-spacing:-0.216000px;}
.ls6c{letter-spacing:-0.180000px;}
.ls28{letter-spacing:-0.162000px;}
.ls78{letter-spacing:-0.135000px;}
.lsf{letter-spacing:-0.108000px;}
.ls27{letter-spacing:-0.070200px;}
.lsc{letter-spacing:-0.054000px;}
.ls6a{letter-spacing:-0.045000px;}
.lsb{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.013223px;}
.ls4{letter-spacing:0.013772px;}
.lsa{letter-spacing:0.018028px;}
.ls58{letter-spacing:0.022445px;}
.ls2{letter-spacing:0.027058px;}
.ls26{letter-spacing:0.035100px;}
.ls2e{letter-spacing:0.036302px;}
.ls45{letter-spacing:0.041068px;}
.ls71{letter-spacing:0.045000px;}
.ls21{letter-spacing:0.049247px;}
.ls22{letter-spacing:0.049888px;}
.ls15{letter-spacing:0.054000px;}
.ls3b{letter-spacing:0.054037px;}
.ls6f{letter-spacing:0.067500px;}
.ls48{letter-spacing:0.081000px;}
.ls6e{letter-spacing:0.090000px;}
.ls19{letter-spacing:0.108000px;}
.ls7{letter-spacing:0.126622px;}
.ls8{letter-spacing:0.126659px;}
.ls6d{letter-spacing:0.135000px;}
.ls9{letter-spacing:0.140400px;}
.ls14{letter-spacing:0.157950px;}
.ls4e{letter-spacing:0.158679px;}
.ls20{letter-spacing:0.158836px;}
.ls1f{letter-spacing:0.159019px;}
.ls64{letter-spacing:0.159229px;}
.ls54{letter-spacing:0.159317px;}
.ls1e{letter-spacing:0.159568px;}
.ls47{letter-spacing:0.159660px;}
.ls1c{letter-spacing:0.162000px;}
.ls6{letter-spacing:0.175500px;}
.ls67{letter-spacing:0.180000px;}
.ls4f{letter-spacing:0.202199px;}
.ls66{letter-spacing:0.202500px;}
.ls51{letter-spacing:0.210574px;}
.ls5{letter-spacing:0.216000px;}
.ls49{letter-spacing:0.220145px;}
.ls68{letter-spacing:0.225000px;}
.ls52{letter-spacing:0.232189px;}
.ls23{letter-spacing:0.245700px;}
.ls50{letter-spacing:0.249643px;}
.ls65{letter-spacing:0.264000px;}
.lsd{letter-spacing:0.270000px;}
.ls3c{letter-spacing:0.270186px;}
.ls24{letter-spacing:0.280800px;}
.ls4c{letter-spacing:0.297000px;}
.ls4a{letter-spacing:0.301442px;}
.ls4b{letter-spacing:0.301841px;}
.ls53{letter-spacing:0.302374px;}
.ls4d{letter-spacing:0.313200px;}
.ls69{letter-spacing:0.315000px;}
.ls12{letter-spacing:0.324000px;}
.ls37{letter-spacing:0.340208px;}
.ls1b{letter-spacing:0.378000px;}
.ls38{letter-spacing:0.393642px;}
.ls70{letter-spacing:0.405000px;}
.ls36{letter-spacing:0.415179px;}
.ls34{letter-spacing:0.415184px;}
.ls18{letter-spacing:0.432000px;}
.ls10{letter-spacing:0.486000px;}
.ls16{letter-spacing:0.491400px;}
.ls1d{letter-spacing:0.540000px;}
.ls39{letter-spacing:0.540372px;}
.ls72{letter-spacing:0.585000px;}
.ls1a{letter-spacing:0.594000px;}
.ls33{letter-spacing:0.610944px;}
.ls35{letter-spacing:0.644375px;}
.ls32{letter-spacing:0.648000px;}
.ls25{letter-spacing:0.702000px;}
.ls17{letter-spacing:0.756000px;}
.ls3f{letter-spacing:1.065845px;}
.ls0{letter-spacing:1.872000px;}
.ls5f{letter-spacing:1.945339px;}
.ls5d{letter-spacing:2.053414px;}
.ls1{letter-spacing:3.000000px;}
.ls5c{letter-spacing:3.004390px;}
.ls42{letter-spacing:3.010227px;}
.ls43{letter-spacing:3.019625px;}
.ls31{letter-spacing:3.021273px;}
.ls55{letter-spacing:3.025882px;}
.ls60{letter-spacing:3.242232px;}
.ls5a{letter-spacing:3.285456px;}
.ls2d{letter-spacing:3.757791px;}
.ls30{letter-spacing:3.758432px;}
.ls41{letter-spacing:5.157639px;}
.ls40{letter-spacing:5.349683px;}
.ls44{letter-spacing:5.592640px;}
.ls59{letter-spacing:7.434764px;}
.ls61{letter-spacing:8.051543px;}
.ls5e{letter-spacing:9.024212px;}
.ls3d{letter-spacing:11.996258px;}
.ls3a{letter-spacing:15.022341px;}
.ls2f{letter-spacing:17.994387px;}
.ls57{letter-spacing:18.006598px;}
.ls56{letter-spacing:19.399354px;}
.ls2c{letter-spacing:20.155875px;}
.ls5b{letter-spacing:23.992516px;}
.ls3e{letter-spacing:47.444661px;}
.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;}
}
.ws1{word-spacing:-15.000000px;}
.ws5c{word-spacing:-13.860000px;}
.ws21{word-spacing:-13.596000px;}
.ws57{word-spacing:-12.852000px;}
.ws28{word-spacing:-12.798000px;}
.ws12{word-spacing:-12.528000px;}
.ws22{word-spacing:-12.366000px;}
.ws3f{word-spacing:-12.258000px;}
.ws10{word-spacing:-12.204000px;}
.ws4c{word-spacing:-12.150000px;}
.ws56{word-spacing:-11.988000px;}
.ws32{word-spacing:-11.880000px;}
.ws2a{word-spacing:-11.826000px;}
.ws40{word-spacing:-11.718000px;}
.ws35{word-spacing:-11.664000px;}
.ws65{word-spacing:-10.440000px;}
.ws64{word-spacing:-10.417500px;}
.ws66{word-spacing:-10.080000px;}
.ws42{word-spacing:-9.990000px;}
.ws0{word-spacing:-9.600000px;}
.ws48{word-spacing:-9.072000px;}
.ws54{word-spacing:-9.024212px;}
.ws1f{word-spacing:-8.459100px;}
.ws1d{word-spacing:-8.248500px;}
.ws1c{word-spacing:-8.213400px;}
.ws1b{word-spacing:-8.143200px;}
.ws5{word-spacing:-8.108100px;}
.ws2{word-spacing:-8.034000px;}
.ws1e{word-spacing:-8.002800px;}
.ws4{word-spacing:-7.967700px;}
.ws20{word-spacing:-7.897500px;}
.ws3{word-spacing:-7.371000px;}
.ws6{word-spacing:-6.630000px;}
.ws71{word-spacing:-6.390000px;}
.ws68{word-spacing:-6.030000px;}
.ws6c{word-spacing:-5.805000px;}
.ws4e{word-spacing:-5.508000px;}
.wsb{word-spacing:-4.080000px;}
.ws9{word-spacing:-2.640000px;}
.wsa{word-spacing:-2.340000px;}
.wsc{word-spacing:-2.040000px;}
.wsf{word-spacing:-1.242000px;}
.ws19{word-spacing:-1.188000px;}
.ws2c{word-spacing:-1.134000px;}
.ws52{word-spacing:-1.080000px;}
.ws60{word-spacing:-1.035000px;}
.ws76{word-spacing:-0.990000px;}
.ws27{word-spacing:-0.972000px;}
.ws4f{word-spacing:-0.918000px;}
.ws8{word-spacing:-0.912000px;}
.ws58{word-spacing:-0.864000px;}
.ws73{word-spacing:-0.855000px;}
.ws23{word-spacing:-0.756000px;}
.ws77{word-spacing:-0.660000px;}
.ws13{word-spacing:-0.648000px;}
.ws5d{word-spacing:-0.630000px;}
.ws36{word-spacing:-0.594000px;}
.ws69{word-spacing:-0.585000px;}
.wsd{word-spacing:-0.540000px;}
.ws6e{word-spacing:-0.495000px;}
.ws26{word-spacing:-0.491400px;}
.ws18{word-spacing:-0.486000px;}
.ws15{word-spacing:-0.432000px;}
.ws16{word-spacing:-0.378000px;}
.ws67{word-spacing:-0.360000px;}
.ws11{word-spacing:-0.324000px;}
.ws29{word-spacing:-0.270000px;}
.ws61{word-spacing:-0.225000px;}
.wse{word-spacing:-0.216000px;}
.ws5e{word-spacing:-0.180000px;}
.ws50{word-spacing:-0.108000px;}
.ws6a{word-spacing:-0.090000px;}
.ws38{word-spacing:-0.054037px;}
.ws2f{word-spacing:-0.054000px;}
.ws3a{word-spacing:-0.041068px;}
.ws49{word-spacing:-0.032423px;}
.ws7{word-spacing:0.000000px;}
.ws5b{word-spacing:0.054000px;}
.ws33{word-spacing:0.108000px;}
.ws75{word-spacing:0.135000px;}
.ws2b{word-spacing:0.162000px;}
.ws31{word-spacing:0.216000px;}
.ws6f{word-spacing:0.225000px;}
.ws17{word-spacing:0.270000px;}
.ws51{word-spacing:0.378000px;}
.ws37{word-spacing:0.432000px;}
.ws2d{word-spacing:0.486000px;}
.ws63{word-spacing:0.495000px;}
.ws7e{word-spacing:0.540000px;}
.ws6b{word-spacing:0.585000px;}
.ws34{word-spacing:0.594000px;}
.ws47{word-spacing:0.648000px;}
.ws30{word-spacing:0.702000px;}
.ws62{word-spacing:0.765000px;}
.ws41{word-spacing:0.864000px;}
.ws74{word-spacing:0.990000px;}
.ws53{word-spacing:1.026000px;}
.ws5f{word-spacing:1.035000px;}
.ws59{word-spacing:1.080000px;}
.ws70{word-spacing:1.125000px;}
.ws4d{word-spacing:1.134000px;}
.ws2e{word-spacing:1.188000px;}
.ws14{word-spacing:1.242000px;}
.ws55{word-spacing:1.296000px;}
.ws44{word-spacing:1.350000px;}
.ws72{word-spacing:1.395000px;}
.ws7f{word-spacing:1.458000px;}
.ws5a{word-spacing:1.566000px;}
.ws24{word-spacing:1.620000px;}
.ws45{word-spacing:1.728000px;}
.ws43{word-spacing:1.836000px;}
.ws25{word-spacing:1.890000px;}
.ws7c{word-spacing:2.052000px;}
.ws78{word-spacing:3.024000px;}
.ws6d{word-spacing:3.060000px;}
.ws79{word-spacing:3.132000px;}
.ws3e{word-spacing:4.484377px;}
.ws3b{word-spacing:4.486391px;}
.ws7d{word-spacing:5.670000px;}
.ws80{word-spacing:6.264000px;}
.ws7a{word-spacing:8.154000px;}
.ws7b{word-spacing:8.532000px;}
.ws39{word-spacing:14.848978px;}
.ws3d{word-spacing:14.849528px;}
.ws4a{word-spacing:15.000721px;}
.ws46{word-spacing:15.282000px;}
.ws4b{word-spacing:17.972773px;}
.ws3c{word-spacing:17.994387px;}
.ws1a{word-spacing:24.735000px;}
._14{margin-left:-20.952007px;}
._e{margin-left:-15.047600px;}
._d{margin-left:-13.506740px;}
._13{margin-left:-12.446400px;}
._7{margin-left:-11.246742px;}
._12{margin-left:-10.102438px;}
._1a{margin-left:-8.122709px;}
._11{margin-left:-7.011230px;}
._10{margin-left:-5.856740px;}
._8{margin-left:-4.740970px;}
._4{margin-left:-3.618000px;}
._0{margin-left:-1.876800px;}
._5{width:1.264385px;}
._3{width:2.794822px;}
._2{width:4.522061px;}
._17{width:5.626130px;}
._19{width:7.047340px;}
._18{width:8.095800px;}
._6{width:10.408800px;}
._f{width:11.704794px;}
._15{width:13.630409px;}
._16{width:15.255000px;}
._c{width:16.402066px;}
._9{width:17.423700px;}
._a{width:18.717000px;}
._b{width:19.892486px;}
._1{width:315.796782px;}
.fc4{color:rgb(245,130,31);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(205,221,228);}
.fsc{font-size:32.422800px;}
.fs7{font-size:33.150000px;}
.fs5{font-size:35.100000px;}
.fs3{font-size:39.000000px;}
.fsb{font-size:41.068199px;}
.fsd{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fsa{font-size:54.037199px;}
.fs1{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs6{font-size:108.000000px;}
.fs2{font-size:156.000000px;}
.ya5{bottom:-0.051441px;}
.y0{bottom:0.000000px;}
.ye6{bottom:0.105148px;}
.yda{bottom:0.120163px;}
.y85{bottom:0.253796px;}
.y88{bottom:0.253944px;}
.y80{bottom:1.063498px;}
.y86{bottom:1.063648px;}
.y9c{bottom:2.355000px;}
.y7f{bottom:2.669998px;}
.y84{bottom:2.670296px;}
.yf2{bottom:3.165024px;}
.yad{bottom:3.199200px;}
.y31{bottom:3.199350px;}
.yfc{bottom:3.199950px;}
.y2{bottom:3.200100px;}
.ya3{bottom:3.810001px;}
.y7c{bottom:4.694996px;}
.y83{bottom:4.695145px;}
.yd7{bottom:9.720154px;}
.y8d{bottom:12.720016px;}
.yf4{bottom:12.749588px;}
.yec{bottom:12.750000px;}
.y91{bottom:12.930016px;}
.y98{bottom:13.980000px;}
.y7e{bottom:15.643192px;}
.y82{bottom:15.643501px;}
.ye9{bottom:17.965530px;}
.ye2{bottom:17.970154px;}
.y95{bottom:18.309311px;}
.yd9{bottom:19.190173px;}
.ydb{bottom:19.195294px;}
.ydd{bottom:24.703674px;}
.ydf{bottom:24.705460px;}
.yf1{bottom:27.127808px;}
.y30{bottom:27.430500px;}
.y1{bottom:27.430650px;}
.ye4{bottom:27.433685px;}
.yae{bottom:27.555599px;}
.y3{bottom:27.555750px;}
.y8f{bottom:27.718208px;}
.y90{bottom:27.718964px;}
.y93{bottom:27.719559px;}
.yf7{bottom:27.748535px;}
.yf6{bottom:31.798508px;}
.yef{bottom:31.798828px;}
.ya2{bottom:43.011154px;}
.y9f{bottom:43.016704px;}
.yd4{bottom:67.983005px;}
.y2f{bottom:68.037452px;}
.y16b{bottom:71.914652px;}
.y143{bottom:78.628652px;}
.y103{bottom:78.757650px;}
.yd3{bottom:82.981505px;}
.y2e{bottom:83.037452px;}
.y16a{bottom:84.660902px;}
.y8a{bottom:86.549996px;}
.y142{bottom:93.627152px;}
.y102{bottom:93.756150px;}
.y12a{bottom:94.371152px;}
.y74{bottom:95.048552px;}
.y7b{bottom:96.850502px;}
.y169{bottom:97.407152px;}
.yd2{bottom:97.980005px;}
.y2d{bottom:98.037452px;}
.y7d{bottom:101.545498px;}
.y81{bottom:101.545647px;}
.y87{bottom:101.545956px;}
.y89{bottom:101.548496px;}
.y7a{bottom:101.548503px;}
.y141{bottom:108.625652px;}
.y101{bottom:108.754650px;}
.y129{bottom:109.375652px;}
.y73{bottom:110.047052px;}
.y168{bottom:110.153402px;}
.yd1{bottom:112.978505px;}
.y2c{bottom:113.037452px;}
.y167{bottom:122.899652px;}
.y140{bottom:123.624152px;}
.y100{bottom:123.753150px;}
.y97{bottom:124.048496px;}
.y128{bottom:124.374152px;}
.y72{bottom:125.045552px;}
.ya6{bottom:127.764153px;}
.yd0{bottom:127.977005px;}
.y9b{bottom:128.428505px;}
.y2b{bottom:132.493950px;}
.ya4{bottom:132.839996px;}
.y166{bottom:135.645902px;}
.y99{bottom:138.028496px;}
.y13f{bottom:138.622652px;}
.yff{bottom:138.751650px;}
.y127{bottom:139.372652px;}
.y71{bottom:140.045552px;}
.y96{bottom:140.966400px;}
.ycf{bottom:142.975505px;}
.ya1{bottom:147.268500px;}
.y9d{bottom:147.490047px;}
.y9a{bottom:147.498515px;}
.y165{bottom:148.392152px;}
.y9e{bottom:152.080353px;}
.y13e{bottom:153.621152px;}
.yfe{bottom:153.750150px;}
.y126{bottom:154.371152px;}
.y70{bottom:155.045552px;}
.ya0{bottom:157.534355px;}
.yce{bottom:157.974005px;}
.y164{bottom:161.138402px;}
.y1af{bottom:167.141403px;}
.y13d{bottom:168.642129px;}
.yfd{bottom:168.748650px;}
.y125{bottom:169.407129px;}
.y6f{bottom:170.048552px;}
.y29{bottom:171.305856px;}
.ycd{bottom:172.972505px;}
.y163{bottom:173.884652px;}
.y1ae{bottom:182.139903px;}
.y79{bottom:182.697003px;}
.y13c{bottom:183.640629px;}
.y124{bottom:184.405629px;}
.y6e{bottom:185.047052px;}
.y28{bottom:186.305844px;}
.y162{bottom:186.630902px;}
.ycc{bottom:187.971005px;}
.y78{bottom:197.695503px;}
.y13b{bottom:198.639129px;}
.y161{bottom:199.377152px;}
.y123{bottom:199.404129px;}
.y6d{bottom:200.045552px;}
.y27{bottom:201.313344px;}
.ycb{bottom:202.986005px;}
.y1ad{bottom:204.644403px;}
.y160{bottom:212.123402px;}
.y13a{bottom:213.637629px;}
.y122{bottom:214.402629px;}
.y6c{bottom:215.066552px;}
.y26{bottom:216.311844px;}
.yca{bottom:217.984505px;}
.y8c{bottom:220.198494px;}
.y10b{bottom:221.142140px;}
.y15f{bottom:224.869652px;}
.y1ac{bottom:227.148903px;}
.y139{bottom:228.636129px;}
.y121{bottom:229.401129px;}
.y6b{bottom:230.065052px;}
.y25{bottom:231.310344px;}
.y8b{bottom:231.498002px;}
.y8e{bottom:232.918510px;}
.y94{bottom:232.919106px;}
.y92{bottom:232.919998px;}
.yc9{bottom:232.983005px;}
.y10a{bottom:236.140640px;}
.y15e{bottom:237.619652px;}
.y1ab{bottom:242.148903px;}
.y138{bottom:243.634629px;}
.y120{bottom:244.399629px;}
.y6a{bottom:245.063552px;}
.y24{bottom:246.308844px;}
.yc8{bottom:247.981505px;}
.y137{bottom:258.633129px;}
.y11f{bottom:259.398129px;}
.y69{bottom:260.062052px;}
.y23{bottom:261.307344px;}
.yc7{bottom:262.980005px;}
.y77{bottom:267.600003px;}
.y1aa{bottom:272.148903px;}
.y136{bottom:273.631629px;}
.y11e{bottom:274.396629px;}
.y68{bottom:275.060552px;}
.y22{bottom:276.305844px;}
.yc6{bottom:277.978505px;}
.y76{bottom:282.598503px;}
.y15d{bottom:287.119652px;}
.y1a9{bottom:287.148903px;}
.y135{bottom:288.630129px;}
.y11d{bottom:289.395129px;}
.y67{bottom:290.059052px;}
.y21{bottom:291.311844px;}
.yc5{bottom:292.977005px;}
.y134{bottom:303.628629px;}
.y11c{bottom:304.393629px;}
.y66{bottom:305.057552px;}
.y20{bottom:306.310344px;}
.yc4{bottom:307.975505px;}
.y15c{bottom:317.121152px;}
.y1a8{bottom:318.621761px;}
.y133{bottom:318.627129px;}
.y11b{bottom:319.392129px;}
.y65{bottom:320.056052px;}
.y1f{bottom:321.308844px;}
.yc3{bottom:322.974005px;}
.y15b{bottom:332.128629px;}
.y1a7{bottom:333.620261px;}
.y132{bottom:333.625629px;}
.y11a{bottom:334.390629px;}
.y64{bottom:335.054552px;}
.y1e{bottom:336.307344px;}
.yc2{bottom:337.972505px;}
.yac{bottom:340.192647px;}
.y15a{bottom:347.127129px;}
.y1a6{bottom:348.618761px;}
.y131{bottom:348.624129px;}
.y119{bottom:349.389129px;}
.y63{bottom:350.053052px;}
.y1d{bottom:351.305844px;}
.yc1{bottom:352.971005px;}
.yab{bottom:355.191147px;}
.y159{bottom:362.125629px;}
.y1a5{bottom:363.617261px;}
.y130{bottom:363.622629px;}
.y118{bottom:364.387629px;}
.y62{bottom:365.051552px;}
.y1c{bottom:366.308867px;}
.yc0{bottom:367.973982px;}
.y158{bottom:377.124129px;}
.y1a4{bottom:378.615761px;}
.y12f{bottom:378.621129px;}
.y117{bottom:379.386129px;}
.y61{bottom:380.050052px;}
.y1b{bottom:381.307367px;}
.ybf{bottom:382.972482px;}
.y157{bottom:392.122629px;}
.y1a3{bottom:393.615738px;}
.y12e{bottom:393.619629px;}
.y116{bottom:394.384629px;}
.y60{bottom:395.048552px;}
.y1a{bottom:396.305867px;}
.ybe{bottom:397.970982px;}
.y156{bottom:407.121129px;}
.y115{bottom:409.383129px;}
.y5f{bottom:410.047052px;}
.y19{bottom:411.320830px;}
.ybd{bottom:412.966484px;}
.y155{bottom:422.119629px;}
.y1a2{bottom:423.621738px;}
.y114{bottom:424.381629px;}
.y5e{bottom:425.045552px;}
.y18{bottom:426.319330px;}
.y148{bottom:430.522649px;}
.yeb{bottom:435.469482px;}
.y154{bottom:437.119629px;}
.y1a1{bottom:438.620238px;}
.y113{bottom:439.380129px;}
.y5d{bottom:440.044052px;}
.y147{bottom:445.521149px;}
.yea{bottom:447.437256px;}
.yf3{bottom:448.124863px;}
.yf5{bottom:448.219070px;}
.yee{bottom:448.219482px;}
.y1a0{bottom:453.618738px;}
.yed{bottom:453.808823px;}
.y112{bottom:454.378629px;}
.y5c{bottom:455.044052px;}
.yf8{bottom:457.696060px;}
.yf0{bottom:457.696518px;}
.y19f{bottom:468.617238px;}
.y111{bottom:469.377129px;}
.y153{bottom:470.125629px;}
.y17{bottom:471.463330px;}
.y19e{bottom:483.615738px;}
.ybc{bottom:484.229986px;}
.y110{bottom:484.375629px;}
.y152{bottom:485.124129px;}
.y16{bottom:487.960330px;}
.y5b{bottom:488.062052px;}
.y19d{bottom:498.615738px;}
.ybb{bottom:499.228486px;}
.y10f{bottom:499.374129px;}
.y151{bottom:500.122629px;}
.y5a{bottom:503.060552px;}
.y15{bottom:504.457330px;}
.yba{bottom:514.226986px;}
.y10e{bottom:514.372629px;}
.y150{bottom:515.121129px;}
.y59{bottom:518.059052px;}
.y14{bottom:520.972330px;}
.y109{bottom:527.662480px;}
.y19c{bottom:528.780784px;}
.yb9{bottom:529.225486px;}
.y10d{bottom:529.371129px;}
.y14f{bottom:530.122629px;}
.y58{bottom:533.057552px;}
.y13{bottom:537.469330px;}
.y19b{bottom:541.527034px;}
.y108{bottom:542.660980px;}
.y10c{bottom:544.369629px;}
.y14e{bottom:545.121129px;}
.y57{bottom:548.056052px;}
.ye1{bottom:551.719482px;}
.y12{bottom:553.966330px;}
.y19a{bottom:554.273284px;}
.ye7{bottom:556.630371px;}
.y14d{bottom:560.119629px;}
.y56{bottom:563.054552px;}
.ye0{bottom:564.812256px;}
.y199{bottom:567.019534px;}
.ye5{bottom:567.634644px;}
.ye3{bottom:567.664673px;}
.ye8{bottom:569.680355px;}
.y11{bottom:570.463330px;}
.y14c{bottom:575.119629px;}
.y55{bottom:578.053052px;}
.y198{bottom:579.765784px;}
.y10{bottom:586.960330px;}
.y197{bottom:592.512034px;}
.y54{bottom:593.051552px;}
.y12d{bottom:599.254648px;}
.yb8{bottom:602.720982px;}
.yf{bottom:603.457330px;}
.y196{bottom:605.258284px;}
.y53{bottom:608.050052px;}
.y14b{bottom:608.122629px;}
.yaa{bottom:610.716170px;}
.y12c{bottom:614.253148px;}
.yb7{bottom:617.719631px;}
.y195{bottom:618.004534px;}
.ye{bottom:619.954330px;}
.y52{bottom:623.048552px;}
.y14a{bottom:623.121129px;}
.ya9{bottom:625.714670px;}
.y12b{bottom:629.251648px;}
.y194{bottom:630.750784px;}
.yb6{bottom:632.718131px;}
.y51{bottom:638.047052px;}
.y149{bottom:638.119629px;}
.ya8{bottom:640.713170px;}
.y193{bottom:643.497034px;}
.yd{bottom:649.954330px;}
.y50{bottom:653.045552px;}
.ya7{bottom:655.711670px;}
.y192{bottom:656.243284px;}
.yc{bottom:667.954330px;}
.y4f{bottom:668.050052px;}
.y191{bottom:668.989534px;}
.yd6{bottom:670.219482px;}
.yd8{bottom:677.914673px;}
.yd5{bottom:679.276481px;}
.ydc{bottom:679.938309px;}
.yde{bottom:679.939636px;}
.y190{bottom:681.735784px;}
.y4e{bottom:683.048552px;}
.yb{bottom:685.954330px;}
.y16f{bottom:690.276137px;}
.y146{bottom:693.034631px;}
.y18f{bottom:694.482034px;}
.y4d{bottom:698.047052px;}
.ya{bottom:703.954330px;}
.y16e{bottom:705.274637px;}
.y18e{bottom:707.228284px;}
.y145{bottom:708.033131px;}
.y4c{bottom:713.045552px;}
.yb5{bottom:713.124129px;}
.y18d{bottom:719.974534px;}
.y16d{bottom:720.273137px;}
.y144{bottom:723.031631px;}
.y4b{bottom:728.048506px;}
.yb4{bottom:728.122629px;}
.y18c{bottom:732.720784px;}
.y16c{bottom:735.271637px;}
.y9{bottom:736.930376px;}
.y4a{bottom:743.047006px;}
.yb3{bottom:743.121129px;}
.y18b{bottom:745.467034px;}
.y49{bottom:758.045506px;}
.yb2{bottom:758.122629px;}
.y18a{bottom:758.213284px;}
.y189{bottom:770.959534px;}
.y48{bottom:773.051506px;}
.yb1{bottom:773.121129px;}
.y8{bottom:781.936376px;}
.y188{bottom:783.705784px;}
.y47{bottom:788.050006px;}
.yb0{bottom:788.119629px;}
.y187{bottom:796.452034px;}
.y46{bottom:803.048506px;}
.y186{bottom:809.198284px;}
.y45{bottom:818.047006px;}
.y185{bottom:821.944534px;}
.y7{bottom:826.942376px;}
.y44{bottom:833.045506px;}
.y184{bottom:834.690784px;}
.yfb{bottom:844.954630px;}
.y183{bottom:847.437034px;}
.y43{bottom:848.045506px;}
.yfa{bottom:859.953130px;}
.y182{bottom:860.183284px;}
.y42{bottom:863.045506px;}
.y6{bottom:871.948376px;}
.y181{bottom:872.929534px;}
.yf9{bottom:874.951630px;}
.y41{bottom:878.047006px;}
.y180{bottom:885.675784px;}
.y107{bottom:889.895979px;}
.y40{bottom:893.045506px;}
.y17f{bottom:898.422034px;}
.y106{bottom:904.894479px;}
.y3f{bottom:908.048506px;}
.y17e{bottom:911.168284px;}
.y5{bottom:916.954376px;}
.y105{bottom:919.892979px;}
.y3e{bottom:923.047006px;}
.y17d{bottom:923.914534px;}
.y2a{bottom:924.602509px;}
.y104{bottom:934.891479px;}
.y17c{bottom:936.660784px;}
.y3d{bottom:938.045506px;}
.y17b{bottom:949.407034px;}
.y1b8{bottom:952.993696px;}
.y3c{bottom:953.045506px;}
.y17a{bottom:962.153284px;}
.y3b{bottom:968.045506px;}
.y179{bottom:974.899534px;}
.y1b7{bottom:982.990694px;}
.y3a{bottom:983.047006px;}
.y178{bottom:987.645784px;}
.y1b6{bottom:997.989194px;}
.y39{bottom:998.045506px;}
.y177{bottom:1000.392034px;}
.y1b5{bottom:1012.987694px;}
.y38{bottom:1013.051506px;}
.y176{bottom:1013.138284px;}
.y175{bottom:1025.884534px;}
.y1b4{bottom:1027.986194px;}
.y37{bottom:1028.050006px;}
.y174{bottom:1038.630784px;}
.y1b3{bottom:1042.984694px;}
.y36{bottom:1043.048506px;}
.y173{bottom:1051.377034px;}
.y1b2{bottom:1057.983194px;}
.y35{bottom:1058.047006px;}
.y172{bottom:1064.123284px;}
.y1b1{bottom:1072.981694px;}
.y34{bottom:1073.045506px;}
.y171{bottom:1076.869534px;}
.y1b0{bottom:1087.980194px;}
.y33{bottom:1088.044006px;}
.y170{bottom:1089.615784px;}
.y75{bottom:1140.640320px;}
.yaf{bottom:1140.746521px;}
.y32{bottom:1140.746704px;}
.y4{bottom:1141.922516px;}
.h21{height:2.161488px;}
.h32{height:15.778862px;}
.h26{height:15.904345px;}
.h31{height:18.372648px;}
.h1f{height:19.349999px;}
.h27{height:19.615503px;}
.h46{height:23.942760px;}
.h3f{height:27.900000px;}
.h35{height:28.747739px;}
.h22{height:29.240558px;}
.h44{height:29.281626px;}
.h13{height:30.684677px;}
.h33{height:31.503687px;}
.h2e{height:32.400000px;}
.h45{height:33.750000px;}
.h24{height:34.142090px;}
.h2b{height:34.142726px;}
.h3{height:34.523438px;}
.h4d{height:35.411133px;}
.h43{height:36.000000px;}
.h3a{height:36.529147px;}
.h2f{height:37.826039px;}
.h47{height:38.204300px;}
.h20{height:38.474486px;}
.h37{height:38.528523px;}
.ha{height:38.838867px;}
.h14{height:41.668740px;}
.h36{height:43.650000px;}
.h39{height:44.405912px;}
.h4e{height:44.505000px;}
.h50{height:45.090000px;}
.h2{height:45.679688px;}
.h4{height:45.703125px;}
.h40{height:45.925893px;}
.h4f{height:46.080000px;}
.h34{height:46.297557px;}
.h38{height:48.404340px;}
.h23{height:48.843784px;}
.h25{height:48.844379px;}
.h2c{height:49.113132px;}
.h28{height:49.113771px;}
.h15{height:49.373525px;}
.h42{height:51.048521px;}
.hb{height:51.344016px;}
.h9{height:51.416016px;}
.hc{height:53.406000px;}
.h49{height:53.464001px;}
.hd{height:53.547461px;}
.h3d{height:53.572034px;}
.h10{height:53.577314px;}
.h4c{height:53.577406px;}
.hf{height:53.583314px;}
.h16{height:53.584046px;}
.h1a{height:53.589863px;}
.h4a{height:53.589909px;}
.he{height:53.595223px;}
.h1d{height:53.595909px;}
.h19{height:53.596046px;}
.h4b{height:53.601314px;}
.h17{height:53.602046px;}
.h1e{height:53.607863px;}
.h11{height:53.607909px;}
.h18{height:53.608046px;}
.h2a{height:54.054310px;}
.h3c{height:54.107406px;}
.h1c{height:54.108000px;}
.h3e{height:54.119993px;}
.h3b{height:55.296000px;}
.h5{height:57.099609px;}
.h8{height:57.128906px;}
.h1b{height:62.841797px;}
.h41{height:69.924136px;}
.h29{height:77.732562px;}
.h2d{height:77.733157px;}
.h30{height:78.353939px;}
.h48{height:100.509190px;}
.h12{height:102.832031px;}
.h7{height:112.201172px;}
.h6{height:148.535156px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w4{width:145.154995px;}
.w5{width:160.200005px;}
.w6{width:220.769989px;}
.w3{width:262.184990px;}
.w7{width:352.905006px;}
.w2{width:396.330002px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xb{left:-1.520554px;}
.x0{left:0.000000px;}
.x8{left:7.228350px;}
.x2a{left:30.376053px;}
.xd{left:33.066147px;}
.x46{left:36.131561px;}
.x51{left:42.490356px;}
.xf{left:45.608231px;}
.x4c{left:47.619278px;}
.x3a{left:51.275391px;}
.x11{left:58.460243px;}
.x3{left:61.887897px;}
.x2c{left:71.496597px;}
.x47{left:78.930984px;}
.x53{left:92.724609px;}
.x13{left:98.743950px;}
.x42{left:100.415131px;}
.x3e{left:110.026977px;}
.x2e{left:113.467666px;}
.x44{left:121.191742px;}
.x41{left:137.080811px;}
.x2f{left:139.874130px;}
.x7{left:141.395702px;}
.x57{left:143.822113px;}
.x15{left:145.737282px;}
.x49{left:154.593750px;}
.x56{left:160.642822px;}
.x17{left:165.717155px;}
.x31{left:176.837128px;}
.x19{left:189.166924px;}
.x4f{left:206.231827px;}
.x1b{left:209.052589px;}
.x33{left:218.808334px;}
.x1d{left:221.904579px;}
.x5{left:233.858253px;}
.x35{left:247.684982px;}
.x6{left:251.861846px;}
.x5f{left:254.108253px;}
.xa{left:271.026009px;}
.x1f{left:290.390099px;}
.x5a{left:294.239273px;}
.xc{left:298.395149px;}
.x61{left:302.498703px;}
.xe{left:310.289108px;}
.x21{left:315.972725px;}
.x10{left:322.303802px;}
.x5c{left:327.327759px;}
.x23{left:335.020958px;}
.x5e{left:337.182587px;}
.x12{left:355.527603px;}
.x50{left:362.526443px;}
.x25{left:368.244759px;}
.x14{left:391.396957px;}
.x28{left:401.467484px;}
.x29{left:410.675400px;}
.x52{left:412.880722px;}
.x4a{left:422.175018px;}
.x4b{left:428.511612px;}
.x16{left:431.046158px;}
.x18{left:442.940094px;}
.x2b{left:453.267150px;}
.x54{left:455.986954px;}
.x4d{left:457.172104px;}
.x36{left:459.980988px;}
.x37{left:472.051804px;}
.x1a{left:473.733444px;}
.x55{left:480.799484px;}
.x1c{left:485.748734px;}
.x39{left:488.144119px;}
.x2d{left:492.471588px;}
.x38{left:501.083289px;}
.x1e{left:522.185257px;}
.x4e{left:523.215450px;}
.x3c{left:524.351120px;}
.x3b{left:529.872620px;}
.x58{left:535.664108px;}
.x48{left:539.700760px;}
.x3d{left:555.508942px;}
.x30{left:561.119247px;}
.x43{left:570.453735px;}
.x20{left:575.712296px;}
.x3f{left:579.862793px;}
.x40{left:585.398117px;}
.x4{left:586.814117px;}
.x45{left:595.213028px;}
.x32{left:597.812119px;}
.x22{left:598.865112px;}
.x59{left:622.185287px;}
.x24{left:632.088318px;}
.x34{left:635.476639px;}
.x5b{left:661.983444px;}
.x26{left:667.516479px;}
.x5d{left:693.992111px;}
.x9{left:797.390808px;}
.x2{left:798.901611px;}
.x27{left:815.441980px;}
.x60{left:819.610474px;}
.x1{left:825.774628px;}
@media print{
.v10{vertical-align:-53.316703pt;}
.v12{vertical-align:-39.093913pt;}
.v11{vertical-align:-19.597491pt;}
.v4{vertical-align:-16.799479pt;}
.v5{vertical-align:-15.866659pt;}
.va{vertical-align:-11.854412pt;}
.v7{vertical-align:-9.680016pt;}
.v15{vertical-align:-7.199992pt;}
.v1{vertical-align:-1.322667pt;}
.v0{vertical-align:0.000000pt;}
.v16{vertical-align:7.199870pt;}
.v8{vertical-align:9.600016pt;}
.v9{vertical-align:12.912521pt;}
.v13{vertical-align:14.409920pt;}
.v6{vertical-align:15.845326pt;}
.v3{vertical-align:16.736130pt;}
.vb{vertical-align:17.665079pt;}
.v2{vertical-align:18.666667pt;}
.v14{vertical-align:19.870931pt;}
.v17{vertical-align:34.151510pt;}
.vd{vertical-align:43.104004pt;}
.ve{vertical-align:46.126953pt;}
.vc{vertical-align:54.718953pt;}
.vf{vertical-align:67.726623pt;}
.v18{vertical-align:87.420180pt;}
.ls62{letter-spacing:-2.928000pt;}
.ls74{letter-spacing:-2.720000pt;}
.ls63{letter-spacing:-1.152000pt;}
.ls77{letter-spacing:-1.000000pt;}
.ls46{letter-spacing:-0.816000pt;}
.ls2b{letter-spacing:-0.768000pt;}
.ls6b{letter-spacing:-0.680000pt;}
.ls76{letter-spacing:-0.600000pt;}
.ls2a{letter-spacing:-0.528000pt;}
.ls29{letter-spacing:-0.384000pt;}
.ls11{letter-spacing:-0.336000pt;}
.ls73{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.240000pt;}
.ls75{letter-spacing:-0.200000pt;}
.lse{letter-spacing:-0.192000pt;}
.ls6c{letter-spacing:-0.160000pt;}
.ls28{letter-spacing:-0.144000pt;}
.ls78{letter-spacing:-0.120000pt;}
.lsf{letter-spacing:-0.096000pt;}
.ls27{letter-spacing:-0.062400pt;}
.lsc{letter-spacing:-0.048000pt;}
.ls6a{letter-spacing:-0.040000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.011754pt;}
.ls4{letter-spacing:0.012242pt;}
.lsa{letter-spacing:0.016025pt;}
.ls58{letter-spacing:0.019951pt;}
.ls2{letter-spacing:0.024051pt;}
.ls26{letter-spacing:0.031200pt;}
.ls2e{letter-spacing:0.032269pt;}
.ls45{letter-spacing:0.036505pt;}
.ls71{letter-spacing:0.040000pt;}
.ls21{letter-spacing:0.043775pt;}
.ls22{letter-spacing:0.044345pt;}
.ls15{letter-spacing:0.048000pt;}
.ls3b{letter-spacing:0.048033pt;}
.ls6f{letter-spacing:0.060000pt;}
.ls48{letter-spacing:0.072000pt;}
.ls6e{letter-spacing:0.080000pt;}
.ls19{letter-spacing:0.096000pt;}
.ls7{letter-spacing:0.112553pt;}
.ls8{letter-spacing:0.112586pt;}
.ls6d{letter-spacing:0.120000pt;}
.ls9{letter-spacing:0.124800pt;}
.ls14{letter-spacing:0.140400pt;}
.ls4e{letter-spacing:0.141048pt;}
.ls20{letter-spacing:0.141187pt;}
.ls1f{letter-spacing:0.141350pt;}
.ls64{letter-spacing:0.141537pt;}
.ls54{letter-spacing:0.141615pt;}
.ls1e{letter-spacing:0.141839pt;}
.ls47{letter-spacing:0.141920pt;}
.ls1c{letter-spacing:0.144000pt;}
.ls6{letter-spacing:0.156000pt;}
.ls67{letter-spacing:0.160000pt;}
.ls4f{letter-spacing:0.179732pt;}
.ls66{letter-spacing:0.180000pt;}
.ls51{letter-spacing:0.187177pt;}
.ls5{letter-spacing:0.192000pt;}
.ls49{letter-spacing:0.195685pt;}
.ls68{letter-spacing:0.200000pt;}
.ls52{letter-spacing:0.206390pt;}
.ls23{letter-spacing:0.218400pt;}
.ls50{letter-spacing:0.221905pt;}
.ls65{letter-spacing:0.234667pt;}
.lsd{letter-spacing:0.240000pt;}
.ls3c{letter-spacing:0.240165pt;}
.ls24{letter-spacing:0.249600pt;}
.ls4c{letter-spacing:0.264000pt;}
.ls4a{letter-spacing:0.267948pt;}
.ls4b{letter-spacing:0.268303pt;}
.ls53{letter-spacing:0.268777pt;}
.ls4d{letter-spacing:0.278400pt;}
.ls69{letter-spacing:0.280000pt;}
.ls12{letter-spacing:0.288000pt;}
.ls37{letter-spacing:0.302408pt;}
.ls1b{letter-spacing:0.336000pt;}
.ls38{letter-spacing:0.349904pt;}
.ls70{letter-spacing:0.360000pt;}
.ls36{letter-spacing:0.369048pt;}
.ls34{letter-spacing:0.369052pt;}
.ls18{letter-spacing:0.384000pt;}
.ls10{letter-spacing:0.432000pt;}
.ls16{letter-spacing:0.436800pt;}
.ls1d{letter-spacing:0.480000pt;}
.ls39{letter-spacing:0.480331pt;}
.ls72{letter-spacing:0.520000pt;}
.ls1a{letter-spacing:0.528000pt;}
.ls33{letter-spacing:0.543061pt;}
.ls35{letter-spacing:0.572778pt;}
.ls32{letter-spacing:0.576000pt;}
.ls25{letter-spacing:0.624000pt;}
.ls17{letter-spacing:0.672000pt;}
.ls3f{letter-spacing:0.947418pt;}
.ls0{letter-spacing:1.664000pt;}
.ls5f{letter-spacing:1.729190pt;}
.ls5d{letter-spacing:1.825257pt;}
.ls1{letter-spacing:2.666667pt;}
.ls5c{letter-spacing:2.670569pt;}
.ls42{letter-spacing:2.675757pt;}
.ls43{letter-spacing:2.684111pt;}
.ls31{letter-spacing:2.685576pt;}
.ls55{letter-spacing:2.689673pt;}
.ls60{letter-spacing:2.881984pt;}
.ls5a{letter-spacing:2.920405pt;}
.ls2d{letter-spacing:3.340259pt;}
.ls30{letter-spacing:3.340829pt;}
.ls41{letter-spacing:4.584568pt;}
.ls40{letter-spacing:4.755274pt;}
.ls44{letter-spacing:4.971235pt;}
.ls59{letter-spacing:6.608679pt;}
.ls61{letter-spacing:7.156927pt;}
.ls5e{letter-spacing:8.021522pt;}
.ls3d{letter-spacing:10.663341pt;}
.ls3a{letter-spacing:13.353192pt;}
.ls2f{letter-spacing:15.995011pt;}
.ls57{letter-spacing:16.005865pt;}
.ls56{letter-spacing:17.243871pt;}
.ls2c{letter-spacing:17.916334pt;}
.ls5b{letter-spacing:21.326681pt;}
.ls3e{letter-spacing:42.173032pt;}
.ws1{word-spacing:-13.333333pt;}
.ws5c{word-spacing:-12.320000pt;}
.ws21{word-spacing:-12.085333pt;}
.ws57{word-spacing:-11.424000pt;}
.ws28{word-spacing:-11.376000pt;}
.ws12{word-spacing:-11.136000pt;}
.ws22{word-spacing:-10.992000pt;}
.ws3f{word-spacing:-10.896000pt;}
.ws10{word-spacing:-10.848000pt;}
.ws4c{word-spacing:-10.800000pt;}
.ws56{word-spacing:-10.656000pt;}
.ws32{word-spacing:-10.560000pt;}
.ws2a{word-spacing:-10.512000pt;}
.ws40{word-spacing:-10.416000pt;}
.ws35{word-spacing:-10.368000pt;}
.ws65{word-spacing:-9.280000pt;}
.ws64{word-spacing:-9.260000pt;}
.ws66{word-spacing:-8.960000pt;}
.ws42{word-spacing:-8.880000pt;}
.ws0{word-spacing:-8.533333pt;}
.ws48{word-spacing:-8.064000pt;}
.ws54{word-spacing:-8.021522pt;}
.ws1f{word-spacing:-7.519200pt;}
.ws1d{word-spacing:-7.332000pt;}
.ws1c{word-spacing:-7.300800pt;}
.ws1b{word-spacing:-7.238400pt;}
.ws5{word-spacing:-7.207200pt;}
.ws2{word-spacing:-7.141333pt;}
.ws1e{word-spacing:-7.113600pt;}
.ws4{word-spacing:-7.082400pt;}
.ws20{word-spacing:-7.020000pt;}
.ws3{word-spacing:-6.552000pt;}
.ws6{word-spacing:-5.893333pt;}
.ws71{word-spacing:-5.680000pt;}
.ws68{word-spacing:-5.360000pt;}
.ws6c{word-spacing:-5.160000pt;}
.ws4e{word-spacing:-4.896000pt;}
.wsb{word-spacing:-3.626667pt;}
.ws9{word-spacing:-2.346667pt;}
.wsa{word-spacing:-2.080000pt;}
.wsc{word-spacing:-1.813333pt;}
.wsf{word-spacing:-1.104000pt;}
.ws19{word-spacing:-1.056000pt;}
.ws2c{word-spacing:-1.008000pt;}
.ws52{word-spacing:-0.960000pt;}
.ws60{word-spacing:-0.920000pt;}
.ws76{word-spacing:-0.880000pt;}
.ws27{word-spacing:-0.864000pt;}
.ws4f{word-spacing:-0.816000pt;}
.ws8{word-spacing:-0.810667pt;}
.ws58{word-spacing:-0.768000pt;}
.ws73{word-spacing:-0.760000pt;}
.ws23{word-spacing:-0.672000pt;}
.ws77{word-spacing:-0.586667pt;}
.ws13{word-spacing:-0.576000pt;}
.ws5d{word-spacing:-0.560000pt;}
.ws36{word-spacing:-0.528000pt;}
.ws69{word-spacing:-0.520000pt;}
.wsd{word-spacing:-0.480000pt;}
.ws6e{word-spacing:-0.440000pt;}
.ws26{word-spacing:-0.436800pt;}
.ws18{word-spacing:-0.432000pt;}
.ws15{word-spacing:-0.384000pt;}
.ws16{word-spacing:-0.336000pt;}
.ws67{word-spacing:-0.320000pt;}
.ws11{word-spacing:-0.288000pt;}
.ws29{word-spacing:-0.240000pt;}
.ws61{word-spacing:-0.200000pt;}
.wse{word-spacing:-0.192000pt;}
.ws5e{word-spacing:-0.160000pt;}
.ws50{word-spacing:-0.096000pt;}
.ws6a{word-spacing:-0.080000pt;}
.ws38{word-spacing:-0.048033pt;}
.ws2f{word-spacing:-0.048000pt;}
.ws3a{word-spacing:-0.036505pt;}
.ws49{word-spacing:-0.028820pt;}
.ws7{word-spacing:0.000000pt;}
.ws5b{word-spacing:0.048000pt;}
.ws33{word-spacing:0.096000pt;}
.ws75{word-spacing:0.120000pt;}
.ws2b{word-spacing:0.144000pt;}
.ws31{word-spacing:0.192000pt;}
.ws6f{word-spacing:0.200000pt;}
.ws17{word-spacing:0.240000pt;}
.ws51{word-spacing:0.336000pt;}
.ws37{word-spacing:0.384000pt;}
.ws2d{word-spacing:0.432000pt;}
.ws63{word-spacing:0.440000pt;}
.ws7e{word-spacing:0.480000pt;}
.ws6b{word-spacing:0.520000pt;}
.ws34{word-spacing:0.528000pt;}
.ws47{word-spacing:0.576000pt;}
.ws30{word-spacing:0.624000pt;}
.ws62{word-spacing:0.680000pt;}
.ws41{word-spacing:0.768000pt;}
.ws74{word-spacing:0.880000pt;}
.ws53{word-spacing:0.912000pt;}
.ws5f{word-spacing:0.920000pt;}
.ws59{word-spacing:0.960000pt;}
.ws70{word-spacing:1.000000pt;}
.ws4d{word-spacing:1.008000pt;}
.ws2e{word-spacing:1.056000pt;}
.ws14{word-spacing:1.104000pt;}
.ws55{word-spacing:1.152000pt;}
.ws44{word-spacing:1.200000pt;}
.ws72{word-spacing:1.240000pt;}
.ws7f{word-spacing:1.296000pt;}
.ws5a{word-spacing:1.392000pt;}
.ws24{word-spacing:1.440000pt;}
.ws45{word-spacing:1.536000pt;}
.ws43{word-spacing:1.632000pt;}
.ws25{word-spacing:1.680000pt;}
.ws7c{word-spacing:1.824000pt;}
.ws78{word-spacing:2.688000pt;}
.ws6d{word-spacing:2.720000pt;}
.ws79{word-spacing:2.784000pt;}
.ws3e{word-spacing:3.986113pt;}
.ws3b{word-spacing:3.987903pt;}
.ws7d{word-spacing:5.040000pt;}
.ws80{word-spacing:5.568000pt;}
.ws7a{word-spacing:7.248000pt;}
.ws7b{word-spacing:7.584000pt;}
.ws39{word-spacing:13.199092pt;}
.ws3d{word-spacing:13.199580pt;}
.ws4a{word-spacing:13.333974pt;}
.ws46{word-spacing:13.584000pt;}
.ws4b{word-spacing:15.975798pt;}
.ws3c{word-spacing:15.995011pt;}
.ws1a{word-spacing:21.986667pt;}
._14{margin-left:-18.624006pt;}
._e{margin-left:-13.375644pt;}
._d{margin-left:-12.005991pt;}
._13{margin-left:-11.063467pt;}
._7{margin-left:-9.997104pt;}
._12{margin-left:-8.979945pt;}
._1a{margin-left:-7.220186pt;}
._11{margin-left:-6.232205pt;}
._10{margin-left:-5.205991pt;}
._8{margin-left:-4.214195pt;}
._4{margin-left:-3.216000pt;}
._0{margin-left:-1.668267pt;}
._5{width:1.123898pt;}
._3{width:2.484286pt;}
._2{width:4.019609pt;}
._17{width:5.001004pt;}
._19{width:6.264303pt;}
._18{width:7.196266pt;}
._6{width:9.252267pt;}
._f{width:10.404261pt;}
._15{width:12.115919pt;}
._16{width:13.560000pt;}
._c{width:14.579614pt;}
._9{width:15.487734pt;}
._a{width:16.637333pt;}
._b{width:17.682210pt;}
._1{width:280.708251pt;}
.fsc{font-size:28.820267pt;}
.fs7{font-size:29.466667pt;}
.fs5{font-size:31.200000pt;}
.fs3{font-size:34.666667pt;}
.fsb{font-size:36.505066pt;}
.fsd{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fsa{font-size:48.033066pt;}
.fs1{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs6{font-size:96.000000pt;}
.fs2{font-size:138.666667pt;}
.ya5{bottom:-0.045726pt;}
.y0{bottom:0.000000pt;}
.ye6{bottom:0.093465pt;}
.yda{bottom:0.106812pt;}
.y85{bottom:0.225596pt;}
.y88{bottom:0.225728pt;}
.y80{bottom:0.945332pt;}
.y86{bottom:0.945465pt;}
.y9c{bottom:2.093333pt;}
.y7f{bottom:2.373332pt;}
.y84{bottom:2.373596pt;}
.yf2{bottom:2.813354pt;}
.yad{bottom:2.843733pt;}
.y31{bottom:2.843867pt;}
.yfc{bottom:2.844400pt;}
.y2{bottom:2.844533pt;}
.ya3{bottom:3.386668pt;}
.y7c{bottom:4.173330pt;}
.y83{bottom:4.173462pt;}
.yd7{bottom:8.640137pt;}
.y8d{bottom:11.306681pt;}
.yf4{bottom:11.332967pt;}
.yec{bottom:11.333333pt;}
.y91{bottom:11.493347pt;}
.y98{bottom:12.426666pt;}
.y7e{bottom:13.905060pt;}
.y82{bottom:13.905334pt;}
.ye9{bottom:15.969360pt;}
.ye2{bottom:15.973470pt;}
.y95{bottom:16.274943pt;}
.yd9{bottom:17.057931pt;}
.ydb{bottom:17.062484pt;}
.ydd{bottom:21.958822pt;}
.ydf{bottom:21.960409pt;}
.yf1{bottom:24.113607pt;}
.y30{bottom:24.382667pt;}
.y1{bottom:24.382800pt;}
.ye4{bottom:24.385498pt;}
.yae{bottom:24.493866pt;}
.y3{bottom:24.494000pt;}
.y8f{bottom:24.638407pt;}
.y90{bottom:24.639079pt;}
.y93{bottom:24.639608pt;}
.yf7{bottom:24.665365pt;}
.yf6{bottom:28.265340pt;}
.yef{bottom:28.265625pt;}
.ya2{bottom:38.232137pt;}
.y9f{bottom:38.237070pt;}
.yd4{bottom:60.429338pt;}
.y2f{bottom:60.477735pt;}
.y16b{bottom:63.924135pt;}
.y143{bottom:69.892135pt;}
.y103{bottom:70.006800pt;}
.yd3{bottom:73.761338pt;}
.y2e{bottom:73.811069pt;}
.y16a{bottom:75.254135pt;}
.y8a{bottom:76.933330pt;}
.y142{bottom:83.224135pt;}
.y102{bottom:83.338800pt;}
.y12a{bottom:83.885468pt;}
.y74{bottom:84.487602pt;}
.y7b{bottom:86.089335pt;}
.y169{bottom:86.584135pt;}
.yd2{bottom:87.093338pt;}
.y2d{bottom:87.144402pt;}
.y7d{bottom:90.262665pt;}
.y81{bottom:90.262797pt;}
.y87{bottom:90.263072pt;}
.y89{bottom:90.265330pt;}
.y7a{bottom:90.265336pt;}
.y141{bottom:96.556135pt;}
.y101{bottom:96.670800pt;}
.y129{bottom:97.222802pt;}
.y73{bottom:97.819602pt;}
.y168{bottom:97.914135pt;}
.yd1{bottom:100.425338pt;}
.y2c{bottom:100.477735pt;}
.y167{bottom:109.244135pt;}
.y140{bottom:109.888135pt;}
.y100{bottom:110.002800pt;}
.y97{bottom:110.265330pt;}
.y128{bottom:110.554802pt;}
.y72{bottom:111.151602pt;}
.ya6{bottom:113.568136pt;}
.yd0{bottom:113.757338pt;}
.y9b{bottom:114.158671pt;}
.y2b{bottom:117.772400pt;}
.ya4{bottom:118.079997pt;}
.y166{bottom:120.574135pt;}
.y99{bottom:122.691996pt;}
.y13f{bottom:123.220135pt;}
.yff{bottom:123.334800pt;}
.y127{bottom:123.886802pt;}
.y71{bottom:124.484935pt;}
.y96{bottom:125.303467pt;}
.ycf{bottom:127.089338pt;}
.ya1{bottom:130.905333pt;}
.y9d{bottom:131.102264pt;}
.y9a{bottom:131.109791pt;}
.y165{bottom:131.904135pt;}
.y9e{bottom:135.182536pt;}
.y13e{bottom:136.552135pt;}
.yfe{bottom:136.666800pt;}
.y126{bottom:137.218802pt;}
.y70{bottom:137.818269pt;}
.ya0{bottom:140.030538pt;}
.yce{bottom:140.421338pt;}
.y164{bottom:143.234135pt;}
.y1af{bottom:148.570136pt;}
.y13d{bottom:149.904115pt;}
.yfd{bottom:149.998800pt;}
.y125{bottom:150.584115pt;}
.y6f{bottom:151.154269pt;}
.y29{bottom:152.271872pt;}
.ycd{bottom:153.753338pt;}
.y163{bottom:154.564135pt;}
.y1ae{bottom:161.902136pt;}
.y79{bottom:162.397336pt;}
.y13c{bottom:163.236115pt;}
.y124{bottom:163.916115pt;}
.y6e{bottom:164.486269pt;}
.y28{bottom:165.605195pt;}
.y162{bottom:165.894135pt;}
.ycc{bottom:167.085338pt;}
.y78{bottom:175.729336pt;}
.y13b{bottom:176.568115pt;}
.y161{bottom:177.224135pt;}
.y123{bottom:177.248115pt;}
.y6d{bottom:177.818269pt;}
.y27{bottom:178.945195pt;}
.ycb{bottom:180.432005pt;}
.y1ad{bottom:181.906136pt;}
.y160{bottom:188.554135pt;}
.y13a{bottom:189.900115pt;}
.y122{bottom:190.580115pt;}
.y6c{bottom:191.170269pt;}
.y26{bottom:192.277195pt;}
.yca{bottom:193.764005pt;}
.y8c{bottom:195.731995pt;}
.y10b{bottom:196.570791pt;}
.y15f{bottom:199.884135pt;}
.y1ac{bottom:201.910136pt;}
.y139{bottom:203.232115pt;}
.y121{bottom:203.912115pt;}
.y6b{bottom:204.502269pt;}
.y25{bottom:205.609195pt;}
.y8b{bottom:205.776002pt;}
.y8e{bottom:207.038676pt;}
.y94{bottom:207.039205pt;}
.y92{bottom:207.039998pt;}
.yc9{bottom:207.096005pt;}
.y10a{bottom:209.902791pt;}
.y15e{bottom:211.217468pt;}
.y1ab{bottom:215.243469pt;}
.y138{bottom:216.564115pt;}
.y120{bottom:217.244115pt;}
.y6a{bottom:217.834269pt;}
.y24{bottom:218.941195pt;}
.yc8{bottom:220.428005pt;}
.y137{bottom:229.896115pt;}
.y11f{bottom:230.576115pt;}
.y69{bottom:231.166269pt;}
.y23{bottom:232.273195pt;}
.yc7{bottom:233.760005pt;}
.y77{bottom:237.866669pt;}
.y1aa{bottom:241.910136pt;}
.y136{bottom:243.228115pt;}
.y11e{bottom:243.908115pt;}
.y68{bottom:244.498269pt;}
.y22{bottom:245.605195pt;}
.yc6{bottom:247.092005pt;}
.y76{bottom:251.198669pt;}
.y15d{bottom:255.217468pt;}
.y1a9{bottom:255.243469pt;}
.y135{bottom:256.560115pt;}
.y11d{bottom:257.240115pt;}
.y67{bottom:257.830269pt;}
.y21{bottom:258.943861pt;}
.yc5{bottom:260.424005pt;}
.y134{bottom:269.892115pt;}
.y11c{bottom:270.572115pt;}
.y66{bottom:271.162269pt;}
.y20{bottom:272.275861pt;}
.yc4{bottom:273.756005pt;}
.y15c{bottom:281.885468pt;}
.y1a8{bottom:283.219343pt;}
.y133{bottom:283.224115pt;}
.y11b{bottom:283.904115pt;}
.y65{bottom:284.494269pt;}
.y1f{bottom:285.607861pt;}
.yc3{bottom:287.088005pt;}
.y15b{bottom:295.225448pt;}
.y1a7{bottom:296.551343pt;}
.y132{bottom:296.556115pt;}
.y11a{bottom:297.236115pt;}
.y64{bottom:297.826269pt;}
.y1e{bottom:298.939861pt;}
.yc2{bottom:300.420005pt;}
.yac{bottom:302.393464pt;}
.y15a{bottom:308.557448pt;}
.y1a6{bottom:309.883343pt;}
.y131{bottom:309.888115pt;}
.y119{bottom:310.568115pt;}
.y63{bottom:311.158269pt;}
.y1d{bottom:312.271861pt;}
.yc1{bottom:313.752005pt;}
.yab{bottom:315.725464pt;}
.y159{bottom:321.889448pt;}
.y1a5{bottom:323.215343pt;}
.y130{bottom:323.220115pt;}
.y118{bottom:323.900115pt;}
.y62{bottom:324.490269pt;}
.y1c{bottom:325.607882pt;}
.yc0{bottom:327.087984pt;}
.y158{bottom:335.221448pt;}
.y1a4{bottom:336.547343pt;}
.y12f{bottom:336.552115pt;}
.y117{bottom:337.232115pt;}
.y61{bottom:337.822269pt;}
.y1b{bottom:338.939882pt;}
.ybf{bottom:340.419984pt;}
.y157{bottom:348.553448pt;}
.y1a3{bottom:349.880656pt;}
.y12e{bottom:349.884115pt;}
.y116{bottom:350.564115pt;}
.y60{bottom:351.154269pt;}
.y1a{bottom:352.271882pt;}
.ybe{bottom:353.751984pt;}
.y156{bottom:361.885448pt;}
.y115{bottom:363.896115pt;}
.y5f{bottom:364.486269pt;}
.y19{bottom:365.618516pt;}
.ybd{bottom:367.081319pt;}
.y155{bottom:375.217448pt;}
.y1a2{bottom:376.552656pt;}
.y114{bottom:377.228115pt;}
.y5e{bottom:377.818269pt;}
.y18{bottom:378.950516pt;}
.y148{bottom:382.686799pt;}
.yeb{bottom:387.083984pt;}
.y154{bottom:388.550781pt;}
.y1a1{bottom:389.884656pt;}
.y113{bottom:390.560115pt;}
.y5d{bottom:391.150269pt;}
.y147{bottom:396.018799pt;}
.yea{bottom:397.722005pt;}
.yf3{bottom:398.333211pt;}
.yf5{bottom:398.416951pt;}
.yee{bottom:398.417318pt;}
.y1a0{bottom:403.216656pt;}
.yed{bottom:403.385620pt;}
.y112{bottom:403.892115pt;}
.y5c{bottom:404.483602pt;}
.yf8{bottom:406.840942pt;}
.yf0{bottom:406.841349pt;}
.y19f{bottom:416.548656pt;}
.y111{bottom:417.224115pt;}
.y153{bottom:417.889448pt;}
.y17{bottom:419.078516pt;}
.y19e{bottom:429.880656pt;}
.ybc{bottom:430.426654pt;}
.y110{bottom:430.556115pt;}
.y152{bottom:431.221448pt;}
.y16{bottom:433.742516pt;}
.y5b{bottom:433.832935pt;}
.y19d{bottom:443.213989pt;}
.ybb{bottom:443.758654pt;}
.y10f{bottom:443.888115pt;}
.y151{bottom:444.553448pt;}
.y5a{bottom:447.164935pt;}
.y15{bottom:448.406516pt;}
.yba{bottom:457.090654pt;}
.y10e{bottom:457.220115pt;}
.y150{bottom:457.885448pt;}
.y59{bottom:460.496935pt;}
.y14{bottom:463.086516pt;}
.y109{bottom:469.033316pt;}
.y19c{bottom:470.027363pt;}
.yb9{bottom:470.422654pt;}
.y10d{bottom:470.552115pt;}
.y14f{bottom:471.220115pt;}
.y58{bottom:473.828935pt;}
.y13{bottom:477.750516pt;}
.y19b{bottom:481.357363pt;}
.y108{bottom:482.365316pt;}
.y10c{bottom:483.884115pt;}
.y14e{bottom:484.552115pt;}
.y57{bottom:487.160935pt;}
.ye1{bottom:490.417318pt;}
.y12{bottom:492.414516pt;}
.y19a{bottom:492.687363pt;}
.ye7{bottom:494.782552pt;}
.y14d{bottom:497.884115pt;}
.y56{bottom:500.492935pt;}
.ye0{bottom:502.055339pt;}
.y199{bottom:504.017363pt;}
.ye5{bottom:504.564128pt;}
.ye3{bottom:504.590820pt;}
.ye8{bottom:506.382537pt;}
.y11{bottom:507.078516pt;}
.y14c{bottom:511.217448pt;}
.y55{bottom:513.824935pt;}
.y198{bottom:515.347363pt;}
.y10{bottom:521.742516pt;}
.y197{bottom:526.677363pt;}
.y54{bottom:527.156935pt;}
.y12d{bottom:532.670798pt;}
.yb8{bottom:535.751984pt;}
.yf{bottom:536.406516pt;}
.y196{bottom:538.007363pt;}
.y53{bottom:540.488935pt;}
.y14b{bottom:540.553448pt;}
.yaa{bottom:542.858818pt;}
.y12c{bottom:546.002798pt;}
.yb7{bottom:549.084116pt;}
.y195{bottom:549.337363pt;}
.ye{bottom:551.070516pt;}
.y52{bottom:553.820935pt;}
.y14a{bottom:553.885448pt;}
.ya9{bottom:556.190818pt;}
.y12b{bottom:559.334798pt;}
.y194{bottom:560.667363pt;}
.yb6{bottom:562.416116pt;}
.y51{bottom:567.152935pt;}
.y149{bottom:567.217448pt;}
.ya8{bottom:569.522818pt;}
.y193{bottom:571.997363pt;}
.yd{bottom:577.737183pt;}
.y50{bottom:580.484935pt;}
.ya7{bottom:582.854818pt;}
.y192{bottom:583.327363pt;}
.yc{bottom:593.737183pt;}
.y4f{bottom:593.822269pt;}
.y191{bottom:594.657363pt;}
.yd6{bottom:595.750651pt;}
.yd8{bottom:602.590820pt;}
.yd5{bottom:603.801317pt;}
.ydc{bottom:604.389608pt;}
.yde{bottom:604.390788pt;}
.y190{bottom:605.987363pt;}
.y4e{bottom:607.154269pt;}
.yb{bottom:609.737183pt;}
.y16f{bottom:613.578788pt;}
.y146{bottom:616.030784pt;}
.y18f{bottom:617.317363pt;}
.y4d{bottom:620.486269pt;}
.ya{bottom:625.737183pt;}
.y16e{bottom:626.910788pt;}
.y18e{bottom:628.647363pt;}
.y145{bottom:629.362784pt;}
.y4c{bottom:633.818269pt;}
.yb5{bottom:633.888115pt;}
.y18d{bottom:639.977363pt;}
.y16d{bottom:640.242788pt;}
.y144{bottom:642.694784pt;}
.y4b{bottom:647.154228pt;}
.yb4{bottom:647.220115pt;}
.y18c{bottom:651.307363pt;}
.y16c{bottom:653.574788pt;}
.y9{bottom:655.049223pt;}
.y4a{bottom:660.486228pt;}
.yb3{bottom:660.552115pt;}
.y18b{bottom:662.637363pt;}
.y49{bottom:673.818228pt;}
.yb2{bottom:673.886781pt;}
.y18a{bottom:673.967363pt;}
.y189{bottom:685.297363pt;}
.y48{bottom:687.156895pt;}
.yb1{bottom:687.218781pt;}
.y8{bottom:695.054557pt;}
.y188{bottom:696.627363pt;}
.y47{bottom:700.488895pt;}
.yb0{bottom:700.550781pt;}
.y187{bottom:707.957363pt;}
.y46{bottom:713.820895pt;}
.y186{bottom:719.287363pt;}
.y45{bottom:727.152895pt;}
.y185{bottom:730.617363pt;}
.y7{bottom:735.059890pt;}
.y44{bottom:740.484895pt;}
.y184{bottom:741.947363pt;}
.yfb{bottom:751.070782pt;}
.y183{bottom:753.277363pt;}
.y43{bottom:753.818228pt;}
.yfa{bottom:764.402782pt;}
.y182{bottom:764.607363pt;}
.y42{bottom:767.151561pt;}
.y6{bottom:775.065223pt;}
.y181{bottom:775.937363pt;}
.yf9{bottom:777.734782pt;}
.y41{bottom:780.486228pt;}
.y180{bottom:787.267363pt;}
.y107{bottom:791.018648pt;}
.y40{bottom:793.818228pt;}
.y17f{bottom:798.597363pt;}
.y106{bottom:804.350648pt;}
.y3f{bottom:807.154228pt;}
.y17e{bottom:809.927363pt;}
.y5{bottom:815.070557pt;}
.y105{bottom:817.682648pt;}
.y3e{bottom:820.486228pt;}
.y17d{bottom:821.257363pt;}
.y2a{bottom:821.868896pt;}
.y104{bottom:831.014648pt;}
.y17c{bottom:832.587363pt;}
.y3d{bottom:833.818228pt;}
.y17b{bottom:843.917363pt;}
.y1b8{bottom:847.105507pt;}
.y3c{bottom:847.151561pt;}
.y17a{bottom:855.247363pt;}
.y3b{bottom:860.484895pt;}
.y179{bottom:866.577363pt;}
.y1b7{bottom:873.769506pt;}
.y3a{bottom:873.819561pt;}
.y178{bottom:877.907363pt;}
.y1b6{bottom:887.101506pt;}
.y39{bottom:887.151561pt;}
.y177{bottom:889.237363pt;}
.y1b5{bottom:900.433506pt;}
.y38{bottom:900.490228pt;}
.y176{bottom:900.567363pt;}
.y175{bottom:911.897363pt;}
.y1b4{bottom:913.765506pt;}
.y37{bottom:913.822228pt;}
.y174{bottom:923.227363pt;}
.y1b3{bottom:927.097506pt;}
.y36{bottom:927.154228pt;}
.y173{bottom:934.557363pt;}
.y1b2{bottom:940.429506pt;}
.y35{bottom:940.486228pt;}
.y172{bottom:945.887363pt;}
.y1b1{bottom:953.761506pt;}
.y34{bottom:953.818228pt;}
.y171{bottom:957.217363pt;}
.y1b0{bottom:967.093506pt;}
.y33{bottom:967.150228pt;}
.y170{bottom:968.547363pt;}
.y75{bottom:1013.902507pt;}
.yaf{bottom:1013.996908pt;}
.y32{bottom:1013.997070pt;}
.y4{bottom:1015.042236pt;}
.h21{height:1.921323pt;}
.h32{height:14.025655pt;}
.h26{height:14.137195pt;}
.h31{height:16.331242pt;}
.h1f{height:17.199999pt;}
.h27{height:17.436003pt;}
.h46{height:21.282453pt;}
.h3f{height:24.800000pt;}
.h35{height:25.553546pt;}
.h22{height:25.991607pt;}
.h44{height:26.028112pt;}
.h13{height:27.275268pt;}
.h33{height:28.003277pt;}
.h2e{height:28.800000pt;}
.h45{height:30.000000pt;}
.h24{height:30.348524pt;}
.h2b{height:30.349090pt;}
.h3{height:30.687500pt;}
.h4d{height:31.476562pt;}
.h43{height:32.000000pt;}
.h3a{height:32.470352pt;}
.h2f{height:33.623146pt;}
.h47{height:33.959378pt;}
.h20{height:34.199543pt;}
.h37{height:34.247576pt;}
.ha{height:34.523438pt;}
.h14{height:37.038880pt;}
.h36{height:38.800000pt;}
.h39{height:39.471922pt;}
.h4e{height:39.560000pt;}
.h50{height:40.080000pt;}
.h2{height:40.604167pt;}
.h4{height:40.625000pt;}
.h40{height:40.823016pt;}
.h4f{height:40.960000pt;}
.h34{height:41.153384pt;}
.h38{height:43.026080pt;}
.h23{height:43.416696pt;}
.h25{height:43.417225pt;}
.h2c{height:43.656117pt;}
.h28{height:43.656685pt;}
.h15{height:43.887578pt;}
.h42{height:45.376463pt;}
.hb{height:45.639125pt;}
.h9{height:45.703125pt;}
.hc{height:47.472000pt;}
.h49{height:47.523556pt;}
.hd{height:47.597743pt;}
.h3d{height:47.619586pt;}
.h10{height:47.624279pt;}
.h4c{height:47.624361pt;}
.hf{height:47.629612pt;}
.h16{height:47.630264pt;}
.h1a{height:47.635434pt;}
.h4a{height:47.635475pt;}
.he{height:47.640198pt;}
.h1d{height:47.640808pt;}
.h19{height:47.640930pt;}
.h4b{height:47.645613pt;}
.h17{height:47.646264pt;}
.h1e{height:47.651434pt;}
.h11{height:47.651475pt;}
.h18{height:47.651597pt;}
.h2a{height:48.048276pt;}
.h3c{height:48.095472pt;}
.h1c{height:48.096000pt;}
.h3e{height:48.106661pt;}
.h3b{height:49.152000pt;}
.h5{height:50.755208pt;}
.h8{height:50.781250pt;}
.h1b{height:55.859375pt;}
.h41{height:62.154787pt;}
.h29{height:69.095611pt;}
.h2d{height:69.096140pt;}
.h30{height:69.647945pt;}
.h48{height:89.341502pt;}
.h12{height:91.406250pt;}
.h7{height:99.734375pt;}
.h6{height:132.031250pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w4{width:129.026662pt;}
.w5{width:142.400004pt;}
.w6{width:196.239990pt;}
.w3{width:233.053324pt;}
.w7{width:313.693339pt;}
.w2{width:352.293335pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xb{left:-1.351603pt;}
.x0{left:0.000000pt;}
.x8{left:6.425200pt;}
.x2a{left:27.000936pt;}
.xd{left:29.392131pt;}
.x46{left:32.116943pt;}
.x51{left:37.769206pt;}
.xf{left:40.540649pt;}
.x4c{left:42.328247pt;}
.x3a{left:45.578125pt;}
.x11{left:51.964661pt;}
.x3{left:55.011464pt;}
.x2c{left:63.552531pt;}
.x47{left:70.160875pt;}
.x53{left:82.421875pt;}
.x13{left:87.772400pt;}
.x42{left:89.257894pt;}
.x3e{left:97.801758pt;}
.x2e{left:100.860148pt;}
.x44{left:107.725993pt;}
.x41{left:121.849609pt;}
.x2f{left:124.332560pt;}
.x7{left:125.685069pt;}
.x57{left:127.841878pt;}
.x15{left:129.544250pt;}
.x49{left:137.416667pt;}
.x56{left:142.793620pt;}
.x17{left:147.304138pt;}
.x31{left:157.188558pt;}
.x19{left:168.148376pt;}
.x4f{left:183.317179pt;}
.x1b{left:185.824524pt;}
.x33{left:194.496297pt;}
.x1d{left:197.248515pt;}
.x5{left:207.874003pt;}
.x35{left:220.164429pt;}
.x6{left:223.877196pt;}
.x5f{left:225.874003pt;}
.xa{left:240.912008pt;}
.x1f{left:258.124532pt;}
.x5a{left:261.546021pt;}
.xc{left:265.240133pt;}
.x61{left:268.887736pt;}
.xe{left:275.812541pt;}
.x21{left:280.864644pt;}
.x10{left:286.492269pt;}
.x5c{left:290.958008pt;}
.x23{left:297.796407pt;}
.x5e{left:299.717855pt;}
.x12{left:316.024536pt;}
.x50{left:322.245728pt;}
.x25{left:327.328674pt;}
.x14{left:347.908407pt;}
.x28{left:356.859985pt;}
.x29{left:365.044800pt;}
.x52{left:367.005086pt;}
.x4a{left:375.266683pt;}
.x4b{left:380.899211pt;}
.x16{left:383.152140pt;}
.x18{left:393.724528pt;}
.x2b{left:402.904133pt;}
.x54{left:405.321737pt;}
.x4d{left:406.375203pt;}
.x36{left:408.871989pt;}
.x37{left:419.601603pt;}
.x1a{left:421.096395pt;}
.x55{left:427.377319pt;}
.x1c{left:431.776652pt;}
.x39{left:433.905884pt;}
.x2d{left:437.752523pt;}
.x38{left:445.407368pt;}
.x1e{left:464.164673pt;}
.x4e{left:465.080400pt;}
.x3c{left:466.089884pt;}
.x3b{left:470.997884pt;}
.x58{left:476.145874pt;}
.x48{left:479.734009pt;}
.x3d{left:493.785726pt;}
.x30{left:498.772664pt;}
.x43{left:507.069987pt;}
.x20{left:511.744263pt;}
.x3f{left:515.433594pt;}
.x40{left:520.353882pt;}
.x4{left:521.612549pt;}
.x45{left:529.078247pt;}
.x32{left:531.388550pt;}
.x22{left:532.324544pt;}
.x59{left:553.053589pt;}
.x24{left:561.856283pt;}
.x34{left:564.868123pt;}
.x5b{left:588.429728pt;}
.x26{left:593.347982pt;}
.x5d{left:616.881877pt;}
.x9{left:708.791829pt;}
.x2{left:710.134766pt;}
.x27{left:724.837316pt;}
.x60{left:728.542643pt;}
.x1{left:734.021891pt;}
}




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