
    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_b54746184c3501f92a62cc21.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_86555b0d3b0cd41f16dd3329.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_8ea743152d2e169b020893a5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_425fcdbaef73abd0f8724ca4.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_766eccc3f45a2b45d5198929.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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_c9f4f7678ae505300f7bc1a9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.077000;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_904ec6b5bf1c1850671e4015.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.933000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a22e0410201fb93228362125.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.930000;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_313c9dfde3833c518a47e68a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.711000;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_0158c8c4bfeb9ec8c74b984b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.943000;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_922dbc5f4a018f902e005b7c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.942000;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_e75e80c453f959e5624c9908.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.947000;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_6ce353a7c330c8b0d44b15ec.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.911000;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_6bdfea68c9ddbb9cee2aef13.woff2')format("woff");}.fff{font-family:fff;line-height:0.945000;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_d60607272aa8177d1b850718.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_2a02846c2c97877e4edc7f13.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.821000;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_196574ac3fe4908d26d888c7.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_d458928a9fc0d9a96f70f94e.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.689000;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_1b8dc845d2fdb96af83c0d9d.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.930000;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_610a9899ae492d9957119ff1.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_d458928a9fc0d9a96f70f94e.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.689000;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_d60607272aa8177d1b850718.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_2a02846c2c97877e4edc7f13.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.821000;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_196574ac3fe4908d26d888c7.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_d458928a9fc0d9a96f70f94e.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.689000;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_8447b5476edf3639d61e5f19.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.831000;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_610a9899ae492d9957119ff1.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_d458928a9fc0d9a96f70f94e.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.689000;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_2a02846c2c97877e4edc7f13.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.821000;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_610a9899ae492d9957119ff1.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_d458928a9fc0d9a96f70f94e.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.689000;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_8447b5476edf3639d61e5f19.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.831000;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_610a9899ae492d9957119ff1.woff2')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_d458928a9fc0d9a96f70f94e.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.689000;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_d60607272aa8177d1b850718.woff2')format("woff");}.ff24{font-family:ff24;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:ff25;src:url('chunks/assets/font_d60607272aa8177d1b850718.woff2')format("woff");}.ff25{font-family:ff25;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;}
.m3{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.244161,0.000000,-0.053715,0.244161,0,0);-ms-transform:matrix(0.244161,0.000000,-0.053715,0.244161,0,0);-webkit-transform:matrix(0.244161,0.000000,-0.053715,0.244161,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);}
.v2{vertical-align:-17.820000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:3.000000px;}
.v5{vertical-align:15.840000px;}
.v3{vertical-align:17.820000px;}
.v1{vertical-align:20.790000px;}
.ls26{letter-spacing:-1.080000px;}
.lsb{letter-spacing:-0.540000px;}
.lsf{letter-spacing:-0.528000px;}
.ls15{letter-spacing:-0.180000px;}
.lsd{letter-spacing:-0.060000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.060000px;}
.ls27{letter-spacing:0.108000px;}
.ls25{letter-spacing:0.216000px;}
.ls1e{letter-spacing:0.300000px;}
.ls5{letter-spacing:0.408900px;}
.ls7{letter-spacing:0.409500px;}
.ls19{letter-spacing:0.420000px;}
.ls8{letter-spacing:0.450000px;}
.lsc{letter-spacing:0.600000px;}
.ls4{letter-spacing:0.630000px;}
.ls3{letter-spacing:0.840000px;}
.ls2{letter-spacing:0.900000px;}
.ls23{letter-spacing:1.079400px;}
.ls22{letter-spacing:1.080000px;}
.ls10{letter-spacing:2.879400px;}
.ls24{letter-spacing:6.302400px;}
.ls21{letter-spacing:9.157200px;}
.ls28{letter-spacing:9.157800px;}
.ls9{letter-spacing:10.498800px;}
.ls1b{letter-spacing:12.060000px;}
.lsa{letter-spacing:70.393800px;}
.ls6{letter-spacing:71.943600px;}
.ls16{letter-spacing:132.360000px;}
.ls11{letter-spacing:156.780000px;}
.ls1a{letter-spacing:157.380000px;}
.ls14{letter-spacing:299.124000px;}
.lse{letter-spacing:304.524000px;}
.ls1c{letter-spacing:377.885723px;}
.ls17{letter-spacing:390.787040px;}
.ls1f{letter-spacing:392.630085px;}
.ls1d{letter-spacing:428.460000px;}
.ls18{letter-spacing:443.040000px;}
.ls20{letter-spacing:445.140000px;}
.ls12{letter-spacing:896.602200px;}
.ls13{letter-spacing:911.634600px;}
.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;}
}
.ws131{word-spacing:-445.140000px;}
.ws106{word-spacing:-443.040000px;}
.ws120{word-spacing:-428.460000px;}
.ws130{word-spacing:-392.630085px;}
.ws105{word-spacing:-390.787040px;}
.ws11f{word-spacing:-377.885723px;}
.ws10d{word-spacing:-148.860000px;}
.wsef{word-spacing:-147.660000px;}
.ws111{word-spacing:-117.600000px;}
.wsf2{word-spacing:-109.200000px;}
.wsf0{word-spacing:-20.268000px;}
.ws2{word-spacing:-18.228000px;}
.ws1{word-spacing:-13.986000px;}
.wsee{word-spacing:-13.332000px;}
.ws3c{word-spacing:-13.320000px;}
.ws7{word-spacing:-12.720000px;}
.ws15d{word-spacing:-12.528000px;}
.ws185{word-spacing:-11.664000px;}
.ws184{word-spacing:-11.556000px;}
.ws15c{word-spacing:-11.448000px;}
.ws3d{word-spacing:-10.920000px;}
.ws182{word-spacing:-10.368000px;}
.wsc{word-spacing:-10.176000px;}
.ws5{word-spacing:-9.828000px;}
.wsb{word-spacing:-9.810000px;}
.ws8{word-spacing:-9.696000px;}
.wsc9{word-spacing:-9.408000px;}
.ws4{word-spacing:-9.360000px;}
.ws9{word-spacing:-8.820000px;}
.ws183{word-spacing:-8.748000px;}
.ws6d{word-spacing:-8.736000px;}
.wsa{word-spacing:-8.232000px;}
.ws3{word-spacing:-6.879600px;}
.ws101{word-spacing:-6.115200px;}
.ws108{word-spacing:-5.220000px;}
.ws10c{word-spacing:-3.408000px;}
.ws6{word-spacing:-2.666400px;}
.wsc7{word-spacing:-2.305800px;}
.ws15e{word-spacing:-2.179800px;}
.wsf5{word-spacing:-1.881600px;}
.ws170{word-spacing:-1.080000px;}
.ws41{word-spacing:-0.600000px;}
.ws6e{word-spacing:-0.450000px;}
.ws0{word-spacing:0.000000px;}
.ws1a1{word-spacing:1.080000px;}
.ws154{word-spacing:3.996000px;}
.ws46{word-spacing:4.140000px;}
.wsec{word-spacing:4.500000px;}
.ws166{word-spacing:4.914000px;}
.ws186{word-spacing:4.968000px;}
.ws134{word-spacing:5.220000px;}
.ws156{word-spacing:5.238000px;}
.ws58{word-spacing:5.400000px;}
.ws107{word-spacing:5.520000px;}
.ws72{word-spacing:5.580000px;}
.ws162{word-spacing:5.616000px;}
.ws45{word-spacing:5.640000px;}
.ws36{word-spacing:5.664000px;}
.wsc4{word-spacing:5.700000px;}
.ws13{word-spacing:5.778000px;}
.ws122{word-spacing:5.808000px;}
.ws137{word-spacing:6.000000px;}
.ws157{word-spacing:6.048000px;}
.ws165{word-spacing:6.102000px;}
.ws187{word-spacing:6.156000px;}
.ws3b{word-spacing:6.192000px;}
.ws93{word-spacing:6.300000px;}
.ws1a4{word-spacing:6.318000px;}
.ws14d{word-spacing:6.384000px;}
.ws76{word-spacing:6.420000px;}
.ws1a9{word-spacing:6.426000px;}
.ws16a{word-spacing:6.480000px;}
.ws161{word-spacing:6.534000px;}
.ws53{word-spacing:6.540000px;}
.ws17{word-spacing:6.588000px;}
.ws34{word-spacing:6.594000px;}
.ws44{word-spacing:6.600000px;}
.wse{word-spacing:6.615000px;}
.ws39{word-spacing:6.660000px;}
.ws194{word-spacing:6.696000px;}
.ws90{word-spacing:6.720000px;}
.ws63{word-spacing:6.780000px;}
.wse9{word-spacing:6.840000px;}
.ws47{word-spacing:6.960000px;}
.ws17c{word-spacing:6.966000px;}
.ws5e{word-spacing:7.020000px;}
.wsf{word-spacing:7.065000px;}
.ws168{word-spacing:7.074000px;}
.ws164{word-spacing:7.128000px;}
.ws1c{word-spacing:7.182000px;}
.ws60{word-spacing:7.200000px;}
.wsb0{word-spacing:7.260000px;}
.ws89{word-spacing:7.320000px;}
.wsab{word-spacing:7.380000px;}
.ws87{word-spacing:7.440000px;}
.wsa3{word-spacing:7.500000px;}
.ws169{word-spacing:7.506000px;}
.ws81{word-spacing:7.536000px;}
.ws92{word-spacing:7.560000px;}
.ws7e{word-spacing:7.620000px;}
.ws181{word-spacing:7.668000px;}
.ws4c{word-spacing:7.680000px;}
.ws54{word-spacing:7.740000px;}
.wse1{word-spacing:7.776000px;}
.ws71{word-spacing:7.800000px;}
.ws28{word-spacing:7.860000px;}
.ws160{word-spacing:7.884000px;}
.ws32{word-spacing:7.920000px;}
.ws173{word-spacing:7.938000px;}
.ws67{word-spacing:7.980000px;}
.ws31{word-spacing:8.040000px;}
.ws9d{word-spacing:8.100000px;}
.ws3a{word-spacing:8.160000px;}
.wsae{word-spacing:8.220000px;}
.ws167{word-spacing:8.262000px;}
.wsa7{word-spacing:8.280000px;}
.wsdd{word-spacing:8.340000px;}
.ws18c{word-spacing:8.370000px;}
.wsc0{word-spacing:8.400000px;}
.ws15f{word-spacing:8.424000px;}
.wsc5{word-spacing:8.460000px;}
.ws12{word-spacing:8.478000px;}
.ws38{word-spacing:8.484000px;}
.ws79{word-spacing:8.520000px;}
.ws5d{word-spacing:8.580000px;}
.ws12e{word-spacing:8.640000px;}
.ws178{word-spacing:8.694000px;}
.wsb5{word-spacing:8.700000px;}
.ws5b{word-spacing:8.760000px;}
.ws7f{word-spacing:8.778000px;}
.ws15b{word-spacing:8.802000px;}
.wsdc{word-spacing:8.820000px;}
.ws180{word-spacing:8.910000px;}
.ws74{word-spacing:8.940000px;}
.ws80{word-spacing:8.949000px;}
.ws9c{word-spacing:9.000000px;}
.ws52{word-spacing:9.060000px;}
.ws1aa{word-spacing:9.072000px;}
.ws5c{word-spacing:9.120000px;}
.ws26{word-spacing:9.180000px;}
.wsd9{word-spacing:9.198000px;}
.ws1d{word-spacing:9.234000px;}
.ws6c{word-spacing:9.261000px;}
.ws172{word-spacing:9.288000px;}
.wsad{word-spacing:9.300000px;}
.ws4a{word-spacing:9.360000px;}
.ws176{word-spacing:9.396000px;}
.wsdf{word-spacing:9.420000px;}
.ws158{word-spacing:9.450000px;}
.ws9e{word-spacing:9.480000px;}
.ws19b{word-spacing:9.504000px;}
.wsbe{word-spacing:9.540000px;}
.ws152{word-spacing:9.558000px;}
.wsd{word-spacing:9.600000px;}
.ws16{word-spacing:9.612000px;}
.ws5f{word-spacing:9.660000px;}
.ws18f{word-spacing:9.666000px;}
.ws68{word-spacing:9.720000px;}
.wsa6{word-spacing:9.780000px;}
.ws151{word-spacing:9.828000px;}
.wsaa{word-spacing:9.900000px;}
.ws18e{word-spacing:9.936000px;}
.wsdb{word-spacing:9.960000px;}
.ws196{word-spacing:9.990000px;}
.ws96{word-spacing:10.020000px;}
.ws175{word-spacing:10.044000px;}
.ws69{word-spacing:10.080000px;}
.ws4b{word-spacing:10.140000px;}
.ws2c{word-spacing:10.200000px;}
.ws188{word-spacing:10.206000px;}
.ws30{word-spacing:10.260000px;}
.ws190{word-spacing:10.368000px;}
.ws9a{word-spacing:10.380000px;}
.ws35{word-spacing:10.416000px;}
.ws147{word-spacing:10.440000px;}
.ws66{word-spacing:10.500000px;}
.ws61{word-spacing:10.620000px;}
.ws19d{word-spacing:10.638000px;}
.ws135{word-spacing:10.680000px;}
.ws6b{word-spacing:10.692000px;}
.ws11{word-spacing:10.710000px;}
.ws8f{word-spacing:10.740000px;}
.ws7b{word-spacing:10.800000px;}
.ws150{word-spacing:10.854000px;}
.wsb1{word-spacing:10.860000px;}
.ws17d{word-spacing:10.908000px;}
.wsed{word-spacing:10.920000px;}
.wsde{word-spacing:10.980000px;}
.ws153{word-spacing:11.070000px;}
.ws62{word-spacing:11.100000px;}
.wsc1{word-spacing:11.160000px;}
.ws77{word-spacing:11.220000px;}
.ws57{word-spacing:11.280000px;}
.ws37{word-spacing:11.298000px;}
.wseb{word-spacing:11.340000px;}
.ws15a{word-spacing:11.448000px;}
.ws149{word-spacing:11.460000px;}
.ws10a{word-spacing:11.514000px;}
.ws95{word-spacing:11.520000px;}
.ws86{word-spacing:11.580000px;}
.wsb2{word-spacing:11.640000px;}
.ws195{word-spacing:11.664000px;}
.ws82{word-spacing:11.700000px;}
.ws199{word-spacing:11.718000px;}
.ws10b{word-spacing:11.742000px;}
.ws3e{word-spacing:11.760000px;}
.ws189{word-spacing:11.772000px;}
.wsc6{word-spacing:11.820000px;}
.ws191{word-spacing:11.826000px;}
.wsb7{word-spacing:11.880000px;}
.ws65{word-spacing:11.940000px;}
.ws146{word-spacing:12.000000px;}
.wsc2{word-spacing:12.060000px;}
.ws8d{word-spacing:12.120000px;}
.ws14b{word-spacing:12.141000px;}
.ws148{word-spacing:12.180000px;}
.ws11e{word-spacing:12.240000px;}
.ws19{word-spacing:12.258000px;}
.wsaf{word-spacing:12.360000px;}
.ws19c{word-spacing:12.366000px;}
.ws43{word-spacing:12.420000px;}
.ws14c{word-spacing:12.426000px;}
.ws1ab{word-spacing:12.474000px;}
.ws78{word-spacing:12.480000px;}
.ws16d{word-spacing:12.528000px;}
.wsa9{word-spacing:12.540000px;}
.wsa4{word-spacing:12.600000px;}
.wsa1{word-spacing:12.660000px;}
.wsf1{word-spacing:12.720000px;}
.wsc3{word-spacing:12.780000px;}
.ws18b{word-spacing:12.852000px;}
.wsbd{word-spacing:12.900000px;}
.ws8c{word-spacing:12.960000px;}
.ws18d{word-spacing:13.014000px;}
.ws104{word-spacing:13.020000px;}
.ws198{word-spacing:13.122000px;}
.ws98{word-spacing:13.140000px;}
.ws109{word-spacing:13.200000px;}
.ws88{word-spacing:13.260000px;}
.ws16c{word-spacing:13.284000px;}
.ws9b{word-spacing:13.320000px;}
.wsda{word-spacing:13.440000px;}
.ws163{word-spacing:13.446000px;}
.ws23{word-spacing:13.500000px;}
.ws138{word-spacing:13.560000px;}
.ws85{word-spacing:13.620000px;}
.ws19a{word-spacing:13.662000px;}
.ws2b{word-spacing:13.680000px;}
.wsbf{word-spacing:13.740000px;}
.ws136{word-spacing:13.800000px;}
.wse8{word-spacing:13.860000px;}
.ws10{word-spacing:13.944000px;}
.ws8e{word-spacing:13.980000px;}
.wsb4{word-spacing:14.040000px;}
.ws64{word-spacing:14.100000px;}
.ws174{word-spacing:14.148000px;}
.ws177{word-spacing:14.256000px;}
.ws5a{word-spacing:14.280000px;}
.ws29{word-spacing:14.340000px;}
.ws1ac{word-spacing:14.364000px;}
.ws51{word-spacing:14.460000px;}
.ws70{word-spacing:14.520000px;}
.ws59{word-spacing:14.580000px;}
.ws4f{word-spacing:14.760000px;}
.ws2f{word-spacing:14.820000px;}
.ws42{word-spacing:14.880000px;}
.ws9f{word-spacing:15.000000px;}
.wsa0{word-spacing:15.120000px;}
.ws18{word-spacing:15.174000px;}
.ws17e{word-spacing:15.228000px;}
.ws49{word-spacing:15.240000px;}
.ws1f{word-spacing:15.282000px;}
.wsb9{word-spacing:15.300000px;}
.ws197{word-spacing:15.336000px;}
.ws102{word-spacing:15.360000px;}
.ws1b{word-spacing:15.390000px;}
.ws11c{word-spacing:15.420000px;}
.ws40{word-spacing:15.480000px;}
.ws16b{word-spacing:15.498000px;}
.ws14e{word-spacing:15.540000px;}
.ws155{word-spacing:15.552000px;}
.ws6a{word-spacing:15.660000px;}
.wsbb{word-spacing:15.780000px;}
.ws84{word-spacing:15.840000px;}
.ws55{word-spacing:15.960000px;}
.ws83{word-spacing:16.080000px;}
.ws159{word-spacing:16.092000px;}
.ws6f{word-spacing:16.140000px;}
.ws1a6{word-spacing:16.146000px;}
.ws91{word-spacing:16.200000px;}
.wsac{word-spacing:16.320000px;}
.wsa8{word-spacing:16.380000px;}
.ws4d{word-spacing:16.500000px;}
.ws171{word-spacing:16.524000px;}
.ws3f{word-spacing:16.560000px;}
.wsb8{word-spacing:16.680000px;}
.wsf4{word-spacing:16.794000px;}
.ws75{word-spacing:16.860000px;}
.wsb3{word-spacing:16.920000px;}
.ws17f{word-spacing:16.956000px;}
.ws73{word-spacing:16.980000px;}
.ws18a{word-spacing:17.010000px;}
.ws27{word-spacing:17.040000px;}
.ws19e{word-spacing:17.064000px;}
.ws2d{word-spacing:17.100000px;}
.ws4e{word-spacing:17.160000px;}
.ws2a{word-spacing:17.280000px;}
.wsea{word-spacing:17.340000px;}
.wsba{word-spacing:17.400000px;}
.ws25{word-spacing:17.550000px;}
.wsa5{word-spacing:17.580000px;}
.ws8a{word-spacing:17.640000px;}
.ws50{word-spacing:17.700000px;}
.ws94{word-spacing:17.760000px;}
.ws179{word-spacing:18.252000px;}
.ws121{word-spacing:18.360000px;}
.wsbc{word-spacing:18.420000px;}
.wsa2{word-spacing:18.540000px;}
.wsb6{word-spacing:18.660000px;}
.ws2e{word-spacing:18.720000px;}
.ws1a5{word-spacing:18.792000px;}
.ws15{word-spacing:18.900000px;}
.ws7c{word-spacing:19.020000px;}
.ws1ad{word-spacing:19.224000px;}
.ws48{word-spacing:19.260000px;}
.ws132{word-spacing:19.440000px;}
.ws22{word-spacing:19.710000px;}
.ws14a{word-spacing:19.740000px;}
.ws24{word-spacing:19.926000px;}
.ws20{word-spacing:19.980000px;}
.ws33{word-spacing:20.280000px;}
.ws17b{word-spacing:20.412000px;}
.wse0{word-spacing:20.580000px;}
.ws56{word-spacing:20.640000px;}
.ws8b{word-spacing:21.000000px;}
.ws133{word-spacing:21.420000px;}
.ws7a{word-spacing:21.780000px;}
.ws21{word-spacing:22.194000px;}
.ws14f{word-spacing:22.500000px;}
.ws103{word-spacing:23.460000px;}
.ws7d{word-spacing:23.520000px;}
.ws99{word-spacing:23.700000px;}
.ws17a{word-spacing:23.760000px;}
.ws193{word-spacing:23.814000px;}
.ws11d{word-spacing:25.380000px;}
.ws97{word-spacing:25.560000px;}
.ws14{word-spacing:26.460000px;}
.ws12f{word-spacing:26.820000px;}
.ws192{word-spacing:27.756000px;}
.ws1a3{word-spacing:31.104000px;}
.ws16f{word-spacing:32.778000px;}
.ws11b{word-spacing:33.660000px;}
.ws1a{word-spacing:33.696000px;}
.ws1a7{word-spacing:34.020000px;}
.ws1e{word-spacing:34.992000px;}
.ws1a2{word-spacing:36.288000px;}
.ws16e{word-spacing:38.178000px;}
.ws1a8{word-spacing:39.582000px;}
.ws1a0{word-spacing:40.176000px;}
.ws19f{word-spacing:46.818000px;}
.ws10e{word-spacing:124.800000px;}
.ws126{word-spacing:134.503800px;}
.ws123{word-spacing:139.200000px;}
.ws12d{word-spacing:151.927800px;}
.ws128{word-spacing:174.727800px;}
.ws127{word-spacing:181.231800px;}
.ws12b{word-spacing:187.831800px;}
.ws145{word-spacing:188.533800px;}
.ws12c{word-spacing:195.823800px;}
.ws144{word-spacing:196.464600px;}
.ws13a{word-spacing:204.270600px;}
.ws139{word-spacing:209.022000px;}
.ws142{word-spacing:212.694600px;}
.ws129{word-spacing:219.127800px;}
.ws12a{word-spacing:220.375800px;}
.ws13c{word-spacing:235.494600px;}
.ws100{word-spacing:241.656600px;}
.ws143{word-spacing:245.065200px;}
.ws13f{word-spacing:248.598600px;}
.wsfb{word-spacing:253.056000px;}
.wsd0{word-spacing:254.856600px;}
.ws13e{word-spacing:255.923400px;}
.wscf{word-spacing:257.760600px;}
.ws13b{word-spacing:259.998600px;}
.ws13d{word-spacing:265.590600px;}
.wsf9{word-spacing:267.360000px;}
.wsca{word-spacing:269.160600px;}
.wsd4{word-spacing:272.064600px;}
.wse2{word-spacing:278.307600px;}
.wsd8{word-spacing:280.560000px;}
.ws141{word-spacing:281.142600px;}
.wsf7{word-spacing:281.664000px;}
.wsd1{word-spacing:283.464000px;}
.ws11a{word-spacing:286.019400px;}
.wsce{word-spacing:291.960000px;}
.wsd6{word-spacing:291.960600px;}
.ws140{word-spacing:294.198600px;}
.ws110{word-spacing:296.460000px;}
.ws114{word-spacing:297.420000px;}
.ws125{word-spacing:304.380000px;}
.ws115{word-spacing:308.819400px;}
.ws118{word-spacing:310.524000px;}
.wscc{word-spacing:314.760600px;}
.wse5{word-spacing:315.593400px;}
.ws113{word-spacing:321.923400px;}
.wse7{word-spacing:326.929200px;}
.wse6{word-spacing:326.929800px;}
.ws10f{word-spacing:336.120000px;}
.ws117{word-spacing:338.248800px;}
.wse4{word-spacing:340.749000px;}
.ws119{word-spacing:343.068000px;}
.wsf3{word-spacing:348.720000px;}
.ws124{word-spacing:350.520000px;}
.ws116{word-spacing:353.219400px;}
.ws112{word-spacing:354.467400px;}
.wse3{word-spacing:570.844200px;}
.wsc8{word-spacing:574.948200px;}
.wsf6{word-spacing:580.348200px;}
.wsd3{word-spacing:643.672800px;}
.wsfd{word-spacing:649.072800px;}
.wscb{word-spacing:683.659200px;}
.wsd5{word-spacing:695.224800px;}
.wsd7{word-spacing:698.104800px;}
.wsfe{word-spacing:700.624800px;}
.wsff{word-spacing:703.504800px;}
.wscd{word-spacing:714.424800px;}
.wsfa{word-spacing:719.824800px;}
.wsf8{word-spacing:725.224800px;}
.wsd2{word-spacing:750.520800px;}
.wsfc{word-spacing:755.920800px;}
._75{margin-left:-1583.905800px;}
._90{margin-left:-1231.039200px;}
._67{margin-left:-1098.042600px;}
._4b{margin-left:-405.600000px;}
._49{margin-left:-402.540000px;}
._46{margin-left:-27.758415px;}
._5{margin-left:-15.585015px;}
._14{margin-left:-12.631815px;}
._4c{margin-left:-10.504815px;}
._1{margin-left:-8.640000px;}
._a3{margin-left:-6.931112px;}
._7{margin-left:-5.523615px;}
._2{margin-left:-4.140000px;}
._9{margin-left:-3.135944px;}
._0{margin-left:-1.919985px;}
._8{width:1.011600px;}
._6{width:2.117971px;}
._10{width:3.208200px;}
._65{width:4.788000px;}
._3{width:6.240000px;}
._4{width:7.799985px;}
._11{width:8.945985px;}
._f{width:9.978015px;}
._34{width:11.090400px;}
._74{width:12.901844px;}
._e{width:14.874000px;}
._13{width:15.884400px;}
._a2{width:17.023017px;}
._b{width:19.755000px;}
._a{width:20.843985px;}
._66{width:23.375371px;}
._a4{width:28.000171px;}
._a1{width:40.090500px;}
._a5{width:46.438500px;}
._68{width:52.450800px;}
._c{width:60.220515px;}
._81{width:120.516600px;}
._12{width:131.698171px;}
._d{width:133.679400px;}
._7c{width:142.092600px;}
._8f{width:143.335800px;}
._8e{width:152.335200px;}
._76{width:155.431800px;}
._85{width:166.135800px;}
._88{width:167.840400px;}
._84{width:175.135800px;}
._48{width:180.420000px;}
._83{width:186.536400px;}
._82{width:195.535200px;}
._7d{width:197.239800px;}
._87{width:199.639800px;}
._64{width:203.400000px;}
._7e{width:208.639200px;}
._80{width:211.039800px;}
._4a{width:216.000000px;}
._73{width:217.800000px;}
._a0{width:218.936400px;}
._7f{width:220.039800px;}
._7b{width:223.184400px;}
._91{width:225.198600px;}
._9a{width:227.950800px;}
._77{width:229.413600px;}
._8d{width:232.183800px;}
._86{width:233.339400px;}
._89{width:237.031800px;}
._8a{width:239.935800px;}
._78{width:241.183800px;}
._7a{width:243.583800px;}
._79{width:252.583200px;}
._99{width:256.302600px;}
._98{width:262.939200px;}
._40{width:264.892200px;}
._47{width:269.820000px;}
._21{width:272.218200px;}
._54{width:276.202200px;}
._38{width:278.044185px;}
._97{width:280.807200px;}
._96{width:287.406000px;}
._9c{width:290.550600px;}
._5d{width:293.409600px;}
._3d{width:294.556200px;}
._69{width:296.244000px;}
._25{width:300.826800px;}
._94{width:301.950600px;}
._1f{width:303.730200px;}
._57{width:304.810800px;}
._3e{width:307.132200px;}
._9b{width:308.213385px;}
._3f{width:310.780200px;}
._93{width:313.607400px;}
._19{width:315.130200px;}
._27{width:318.034200px;}
._52{width:319.693800px;}
._6c{width:322.182600px;}
._9f{width:325.342800px;}
._30{width:326.530800px;}
._24{width:329.434800px;}
._70{width:331.331400px;}
._44{width:332.662200px;}
._95{width:336.742800px;}
._1d{width:337.930800px;}
._8c{width:339.756000px;}
._1b{width:340.986600px;}
._41{width:350.217600px;}
._6e{width:351.437985px;}
._6f{width:353.087985px;}
._6b{width:361.230600px;}
._18{width:363.786600px;}
._63{width:375.307800px;}
._33{width:377.707200px;}
._72{width:379.134600px;}
._53{width:382.603800px;}
._42{width:383.782185px;}
._20{width:385.003200px;}
._2a{width:386.586600px;}
._6d{width:390.534600px;}
._4f{width:394.315185px;}
._15{width:399.715185px;}
._16{width:402.949800px;}
._50{width:406.549200px;}
._43{width:409.522200px;}
._60{width:417.547800px;}
._2f{width:419.947200px;}
._62{width:421.195800px;}
._32{width:423.595200px;}
._5f{width:433.579200px;}
._2e{width:435.979200px;}
._31{width:441.157200px;}
._61{width:446.557200px;}
._45{width:451.622144px;}
._22{width:458.632785px;}
._55{width:464.032785px;}
._5c{width:487.243800px;}
._2c{width:489.643200px;}
._3a{width:505.324200px;}
._36{width:508.684200px;}
._35{width:514.203585px;}
._5b{width:517.479600px;}
._2b{width:519.879600px;}
._9e{width:523.006800px;}
._37{width:529.180200px;}
._92{width:535.266600px;}
._8b{width:543.867600px;}
._1a{width:554.251200px;}
._6a{width:558.894000px;}
._3b{width:562.300200px;}
._39{width:574.540200px;}
._3c{width:575.836200px;}
._4e{width:584.144985px;}
._17{width:627.259200px;}
._59{width:644.347200px;}
._28{width:646.747200px;}
._1c{width:650.107200px;}
._58{width:658.459200px;}
._26{width:660.859200px;}
._51{width:668.824200px;}
._1e{width:670.603200px;}
._5a{width:672.715800px;}
._4d{width:673.829400px;}
._29{width:675.115200px;}
._9d{width:683.401200px;}
._56{width:713.563200px;}
._5e{width:714.859200px;}
._23{width:715.963200px;}
._2d{width:717.259200px;}
._71{width:848.051400px;}
.fc2{color:rgb(0,0,128);}
.fc1{color:rgb(16,20,126);}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:31.200000px;}
.fsc{font-size:35.100000px;}
.fsb{font-size:40.950000px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:45.000000px;}
.fs6{font-size:48.000000px;}
.fsf{font-size:49.147875px;}
.fs8{font-size:54.000000px;}
.fse{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs10{font-size:61.434844px;}
.fs1{font-size:63.000000px;}
.fsd{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:84.000000px;}
.fs5{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y184{bottom:5.999700px;}
.y112{bottom:6.000000px;}
.y16e{bottom:7.499700px;}
.y16f{bottom:12.599700px;}
.y6{bottom:35.925007px;}
.y5{bottom:66.525004px;}
.y1e6{bottom:67.426200px;}
.y39{bottom:67.597501px;}
.y6d{bottom:71.940600px;}
.y21d{bottom:73.426200px;}
.y6c{bottom:83.940600px;}
.y38{bottom:84.097501px;}
.yf7{bottom:85.426200px;}
.y1ba{bottom:85.650000px;}
.yda{bottom:86.926200px;}
.yf0{bottom:88.426200px;}
.y134{bottom:90.525000px;}
.yb4{bottom:91.426200px;}
.yb7{bottom:94.275000px;}
.y6b{bottom:95.940600px;}
.y4{bottom:97.125005px;}
.y21c{bottom:100.426200px;}
.y14c{bottom:101.551200px;}
.y1b9{bottom:103.650000px;}
.y133{bottom:104.025000px;}
.y17c{bottom:104.176200px;}
.yf6{bottom:104.926200px;}
.yd9{bottom:106.426200px;}
.y255{bottom:106.801200px;}
.yb6{bottom:107.775000px;}
.yef{bottom:107.926200px;}
.y67{bottom:108.315600px;}
.y28b{bottom:110.551200px;}
.yb3{bottom:110.926200px;}
.y1e5{bottom:116.926200px;}
.y1b8{bottom:117.150000px;}
.y132{bottom:117.525000px;}
.y69{bottom:119.190600px;}
.y14b{bottom:121.051200px;}
.y254{bottom:123.301200px;}
.y17b{bottom:123.676200px;}
.yf5{bottom:124.426200px;}
.yd8{bottom:125.926200px;}
.y28a{bottom:127.051200px;}
.yee{bottom:127.426200px;}
.y1b7{bottom:130.650000px;}
.y131{bottom:131.025000px;}
.y68{bottom:132.690600px;}
.y23{bottom:139.264499px;}
.y253{bottom:139.801200px;}
.y14a{bottom:140.551200px;}
.yb2{bottom:140.926200px;}
.y17a{bottom:143.176200px;}
.y289{bottom:143.551200px;}
.yf4{bottom:143.926200px;}
.y1b6{bottom:144.150000px;}
.y130{bottom:144.525000px;}
.yd7{bottom:145.426200px;}
.yed{bottom:146.926200px;}
.y21b{bottom:149.926200px;}
.y252{bottom:156.301200px;}
.y1b5{bottom:157.650000px;}
.y12f{bottom:158.025000px;}
.y149{bottom:160.051200px;}
.y179{bottom:162.676200px;}
.yf3{bottom:163.426200px;}
.yd6{bottom:164.926200px;}
.yec{bottom:166.426200px;}
.yb1{bottom:170.926200px;}
.y1b4{bottom:171.150000px;}
.y12e{bottom:171.525000px;}
.y66{bottom:172.426200px;}
.y251{bottom:172.801200px;}
.y177{bottom:173.926500px;}
.y288{bottom:176.551200px;}
.y148{bottom:179.551200px;}
.y178{bottom:181.426200px;}
.y176{bottom:182.176200px;}
.yd5{bottom:184.426200px;}
.y1b3{bottom:184.650000px;}
.y12d{bottom:185.025000px;}
.yeb{bottom:185.926200px;}
.y250{bottom:189.301200px;}
.y65{bottom:191.926200px;}
.y287{bottom:193.051200px;}
.yf2{bottom:193.426200px;}
.y1a{bottom:196.933500px;}
.y1e4{bottom:197.926200px;}
.y1b2{bottom:198.150000px;}
.y12c{bottom:198.525000px;}
.y147{bottom:199.051200px;}
.y175{bottom:201.676200px;}
.yd4{bottom:203.926200px;}
.yea{bottom:205.426200px;}
.y24f{bottom:205.801200px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y286{bottom:209.551200px;}
.y64{bottom:211.426200px;}
.y1b1{bottom:211.650000px;}
.y12b{bottom:212.025000px;}
.y1e3{bottom:217.426200px;}
.y146{bottom:218.551200px;}
.y174{bottom:221.176200px;}
.yb0{bottom:221.926200px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y24e{bottom:222.301200px;}
.yd3{bottom:223.426200px;}
.ye9{bottom:224.926200px;}
.y1b0{bottom:225.150000px;}
.y12a{bottom:225.525000px;}
.y285{bottom:226.051200px;}
.y63{bottom:230.926200px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y1e2{bottom:236.926200px;}
.y37{bottom:236.926501px;}
.y1af{bottom:238.650000px;}
.y24d{bottom:238.801200px;}
.y129{bottom:239.025000px;}
.y173{bottom:240.676200px;}
.yaf{bottom:241.426200px;}
.y284{bottom:242.551200px;}
.yd2{bottom:242.926200px;}
.ye8{bottom:244.426200px;}
.y145{bottom:248.551200px;}
.y62{bottom:250.426200px;}
.y1ae{bottom:252.150000px;}
.y128{bottom:252.525000px;}
.y24c{bottom:255.301200px;}
.y1e1{bottom:256.426200px;}
.y283{bottom:259.051200px;}
.y21a{bottom:259.426200px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y172{bottom:260.176200px;}
.yae{bottom:260.926200px;}
.yd1{bottom:262.426200px;}
.ye7{bottom:263.926200px;}
.y1ad{bottom:265.650000px;}
.y127{bottom:266.025000px;}
.y61{bottom:269.926200px;}
.y24b{bottom:271.801200px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y282{bottom:275.551200px;}
.y1e0{bottom:275.926200px;}
.y1ac{bottom:279.150000px;}
.y126{bottom:279.525000px;}
.y171{bottom:279.676200px;}
.yad{bottom:280.426200px;}
.yd0{bottom:281.926200px;}
.ye6{bottom:283.426200px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y24a{bottom:288.301200px;}
.y60{bottom:289.426200px;}
.y281{bottom:292.051200px;}
.y219{bottom:292.426200px;}
.y1d0{bottom:292.650000px;}
.y125{bottom:293.025000px;}
.y1df{bottom:295.426200px;}
.y1ab{bottom:297.525000px;}
.y170{bottom:299.176200px;}
.y144{bottom:299.551200px;}
.yac{bottom:299.926200px;}
.y36{bottom:301.276501px;}
.ycf{bottom:301.426200px;}
.ye5{bottom:302.926200px;}
.y249{bottom:304.801200px;}
.y1cf{bottom:306.150000px;}
.y124{bottom:306.525000px;}
.y280{bottom:308.551200px;}
.y5f{bottom:308.926200px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y16d{bottom:311.176500px;}
.y1de{bottom:314.926200px;}
.y1aa{bottom:316.275000px;}
.y218{bottom:317.926200px;}
.y16c{bottom:318.676200px;}
.y143{bottom:319.051200px;}
.yab{bottom:319.426200px;}
.y1ce{bottom:319.650000px;}
.y123{bottom:320.025000px;}
.yce{bottom:320.926200px;}
.y248{bottom:321.301200px;}
.ye4{bottom:322.426200px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y27f{bottom:325.051200px;}
.y5e{bottom:328.426200px;}
.y1cd{bottom:333.150000px;}
.y122{bottom:333.525000px;}
.y1dd{bottom:334.426200px;}
.y1a9{bottom:335.025000px;}
.y247{bottom:337.801200px;}
.y16b{bottom:338.176200px;}
.y142{bottom:338.551200px;}
.yaa{bottom:338.926200px;}
.ycd{bottom:340.426200px;}
.y27e{bottom:341.551200px;}
.ye3{bottom:341.926200px;}
.y1cc{bottom:346.650000px;}
.y121{bottom:347.025000px;}
.y5d{bottom:347.926200px;}
.y11{bottom:348.133500px;}
.y217{bottom:350.926200px;}
.y1dc{bottom:353.926200px;}
.y246{bottom:354.301200px;}
.y16a{bottom:357.676200px;}
.y141{bottom:358.051200px;}
.ya9{bottom:358.426200px;}
.y120{bottom:360.525000px;}
.y1ca{bottom:365.025000px;}
.y35{bottom:365.626501px;}
.y5c{bottom:367.426200px;}
.ycc{bottom:370.426200px;}
.y245{bottom:370.801200px;}
.ye2{bottom:371.926200px;}
.y1db{bottom:373.426200px;}
.y11f{bottom:374.025000px;}
.y27d{bottom:374.551200px;}
.y216{bottom:376.426200px;}
.y169{bottom:377.176200px;}
.y140{bottom:377.551200px;}
.ya8{bottom:377.926200px;}
.y1cb{bottom:378.525000px;}
.y10{bottom:386.785499px;}
.y5b{bottom:386.926200px;}
.y244{bottom:387.301200px;}
.y11e{bottom:387.525000px;}
.y27c{bottom:391.051200px;}
.y1da{bottom:392.926200px;}
.y13f{bottom:397.051200px;}
.y1c9{bottom:397.275000px;}
.ya7{bottom:397.426200px;}
.y11d{bottom:401.025000px;}
.y243{bottom:403.801200px;}
.y5a{bottom:406.426200px;}
.y168{bottom:407.176200px;}
.y27b{bottom:407.551200px;}
.yf{bottom:408.044999px;}
.y215{bottom:409.426200px;}
.y1d9{bottom:412.426200px;}
.y11c{bottom:414.525000px;}
.y1c8{bottom:416.025000px;}
.ya6{bottom:416.926200px;}
.ycb{bottom:418.426200px;}
.y242{bottom:420.301200px;}
.ye1{bottom:422.926200px;}
.y27a{bottom:424.051200px;}
.y59{bottom:425.926200px;}
.y11b{bottom:428.025000px;}
.y1d8{bottom:431.926200px;}
.y34{bottom:432.907500px;}
.ya5{bottom:436.426200px;}
.y241{bottom:436.801200px;}
.y167{bottom:437.176200px;}
.yca{bottom:437.926200px;}
.y279{bottom:440.551200px;}
.y11a{bottom:441.525000px;}
.ye0{bottom:442.426200px;}
.y13e{bottom:443.551200px;}
.y1d7{bottom:451.426200px;}
.y214{bottom:452.926200px;}
.y240{bottom:453.301200px;}
.y119{bottom:455.025000px;}
.y58{bottom:455.926200px;}
.y278{bottom:457.051200px;}
.yc9{bottom:457.426200px;}
.ydf{bottom:461.926200px;}
.y13d{bottom:463.051200px;}
.y1a8{bottom:467.926500px;}
.y118{bottom:468.525000px;}
.y1c7{bottom:469.426200px;}
.y23f{bottom:469.801200px;}
.y277{bottom:473.551200px;}
.ya4{bottom:475.426200px;}
.y1a5{bottom:476.551200px;}
.yc8{bottom:476.926200px;}
.yde{bottom:481.426200px;}
.y117{bottom:482.025000px;}
.y13c{bottom:482.551200px;}
.ye{bottom:484.864502px;}
.y23e{bottom:486.301200px;}
.y1c6{bottom:488.926200px;}
.y276{bottom:490.051200px;}
.y33{bottom:494.326501px;}
.y1a4{bottom:494.551200px;}
.ya3{bottom:494.926200px;}
.y116{bottom:495.525000px;}
.yc7{bottom:496.426200px;}
.ydd{bottom:500.926200px;}
.y13b{bottom:502.051200px;}
.y213{bottom:502.426200px;}
.y23d{bottom:502.801200px;}
.yd{bottom:502.864502px;}
.y275{bottom:506.551200px;}
.y1a3{bottom:508.051200px;}
.y1c5{bottom:508.426200px;}
.y115{bottom:509.025000px;}
.ya2{bottom:514.426200px;}
.yc6{bottom:515.926200px;}
.y23c{bottom:519.301200px;}
.y84{bottom:519.338700px;}
.yc{bottom:520.864502px;}
.y13a{bottom:521.551200px;}
.y114{bottom:522.525000px;}
.y274{bottom:523.051200px;}
.y1c4{bottom:527.926200px;}
.y212{bottom:529.426200px;}
.ydc{bottom:530.926200px;}
.y1d6{bottom:532.426200px;}
.y83{bottom:532.838700px;}
.ya1{bottom:533.926200px;}
.y1a2{bottom:535.051200px;}
.yc5{bottom:535.426200px;}
.y23b{bottom:535.801200px;}
.y113{bottom:536.025000px;}
.yb{bottom:538.864499px;}
.y273{bottom:539.551200px;}
.y139{bottom:541.051200px;}
.y57{bottom:542.926200px;}
.y82{bottom:546.338700px;}
.y111{bottom:548.025000px;}
.y1a1{bottom:548.551200px;}
.y1d5{bottom:551.926200px;}
.y23a{bottom:552.301200px;}
.ya0{bottom:553.426200px;}
.y110{bottom:554.025000px;}
.yc4{bottom:554.926200px;}
.y272{bottom:556.051200px;}
.ya{bottom:556.864499px;}
.y56{bottom:557.926200px;}
.y81{bottom:559.838700px;}
.y138{bottom:560.551200px;}
.ydb{bottom:560.926200px;}
.y32{bottom:561.607500px;}
.y1a0{bottom:562.051200px;}
.yf1{bottom:563.926200px;}
.y239{bottom:568.801200px;}
.y1d4{bottom:571.426200px;}
.y271{bottom:572.551200px;}
.y55{bottom:572.926200px;}
.y80{bottom:573.338700px;}
.yc3{bottom:574.426200px;}
.y19f{bottom:575.551200px;}
.y10f{bottom:575.775000px;}
.y211{bottom:578.926200px;}
.y238{bottom:585.301200px;}
.y54{bottom:587.926200px;}
.y19e{bottom:589.051200px;}
.y137{bottom:590.551200px;}
.y1d3{bottom:590.926200px;}
.y9f{bottom:592.426200px;}
.yc2{bottom:593.926200px;}
.y210{bottom:595.426200px;}
.y31{bottom:595.957501px;}
.y7f{bottom:596.213700px;}
.y237{bottom:601.801200px;}
.y19d{bottom:602.551200px;}
.y53{bottom:602.926200px;}
.y270{bottom:605.551200px;}
.y1c3{bottom:608.926200px;}
.y7e{bottom:609.713700px;}
.y1d2{bottom:610.426200px;}
.y30{bottom:610.957501px;}
.y9e{bottom:611.926200px;}
.yc1{bottom:613.426200px;}
.y10e{bottom:615.863700px;}
.y19c{bottom:616.051200px;}
.y52{bottom:617.926200px;}
.y236{bottom:618.301200px;}
.y26f{bottom:622.051200px;}
.y7d{bottom:623.213700px;}
.y2f{bottom:625.957500px;}
.y1c2{bottom:628.426200px;}
.y19b{bottom:629.551200px;}
.y1d1{bottom:629.926200px;}
.y9d{bottom:631.426200px;}
.y51{bottom:632.926200px;}
.y235{bottom:634.801200px;}
.y10d{bottom:635.363700px;}
.y7c{bottom:636.713700px;}
.y26e{bottom:638.551200px;}
.y20f{bottom:638.926200px;}
.y136{bottom:641.551200px;}
.y19a{bottom:643.051200px;}
.y9{bottom:645.510000px;}
.y50{bottom:647.926200px;}
.y7b{bottom:650.213700px;}
.y9c{bottom:650.926200px;}
.y234{bottom:651.301200px;}
.yc0{bottom:652.426200px;}
.y10c{bottom:654.863700px;}
.y26d{bottom:655.051200px;}
.y199{bottom:656.551200px;}
.y135{bottom:661.051200px;}
.y4f{bottom:662.926200px;}
.y7a{bottom:663.713700px;}
.y8{bottom:666.771000px;}
.y1c1{bottom:667.426200px;}
.y233{bottom:667.801200px;}
.y1ff{bottom:668.176200px;}
.y198{bottom:670.051200px;}
.y9b{bottom:670.426200px;}
.y26c{bottom:671.551200px;}
.ybf{bottom:671.926200px;}
.y10b{bottom:674.363700px;}
.y79{bottom:677.213700px;}
.y4e{bottom:677.926200px;}
.y1fe{bottom:681.301200px;}
.y197{bottom:683.551200px;}
.y232{bottom:684.301200px;}
.y1c0{bottom:686.926200px;}
.y26b{bottom:688.051200px;}
.y20e{bottom:688.426200px;}
.y9a{bottom:689.926200px;}
.ybe{bottom:691.426200px;}
.y4d{bottom:692.926200px;}
.y10a{bottom:693.863700px;}
.y196{bottom:697.051200px;}
.y1fd{bottom:699.301200px;}
.y78{bottom:699.976200px;}
.y231{bottom:700.801200px;}
.y1a7{bottom:701.926500px;}
.y166{bottom:704.551200px;}
.y1bf{bottom:706.426200px;}
.y2e{bottom:707.317498px;}
.y4c{bottom:707.926200px;}
.y99{bottom:709.426200px;}
.y195{bottom:710.551200px;}
.ybd{bottom:710.926200px;}
.y1fc{bottom:712.051500px;}
.y109{bottom:713.363700px;}
.y77{bottom:713.476200px;}
.y230{bottom:717.301200px;}
.y165{bottom:718.051200px;}
.y26a{bottom:721.051200px;}
.y4b{bottom:722.926200px;}
.y194{bottom:724.051200px;}
.y1be{bottom:725.926200px;}
.y7{bottom:726.298500px;}
.y76{bottom:726.976200px;}
.y20d{bottom:727.426200px;}
.y98{bottom:728.926200px;}
.ybc{bottom:730.426200px;}
.y164{bottom:731.551200px;}
.y108{bottom:732.863700px;}
.y22f{bottom:733.801200px;}
.y2d{bottom:737.317498px;}
.y193{bottom:737.551200px;}
.y4a{bottom:737.926200px;}
.y1fb{bottom:739.801200px;}
.y75{bottom:740.476200px;}
.y163{bottom:745.051200px;}
.y1bd{bottom:745.426200px;}
.y20c{bottom:746.926200px;}
.y97{bottom:748.426200px;}
.ybb{bottom:749.926200px;}
.y22e{bottom:750.301200px;}
.y192{bottom:751.051200px;}
.y107{bottom:752.363700px;}
.y3{bottom:752.599495px;}
.y49{bottom:752.926200px;}
.y1fa{bottom:753.301200px;}
.y74{bottom:753.976200px;}
.y269{bottom:754.051200px;}
.y2c{bottom:755.317498px;}
.y162{bottom:763.051200px;}
.y191{bottom:764.551200px;}
.y20b{bottom:766.426200px;}
.y1f9{bottom:766.801200px;}
.y73{bottom:767.476200px;}
.y48{bottom:767.926200px;}
.yba{bottom:769.426200px;}
.y268{bottom:770.551200px;}
.y2b{bottom:773.317498px;}
.y1bc{bottom:775.426200px;}
.y190{bottom:778.051200px;}
.y72{bottom:780.976200px;}
.y161{bottom:781.801200px;}
.y47{bottom:782.926200px;}
.y22d{bottom:783.301200px;}
.y1f8{bottom:785.551200px;}
.y20a{bottom:785.926200px;}
.y267{bottom:787.051200px;}
.y96{bottom:787.426200px;}
.yb9{bottom:788.926200px;}
.y2a{bottom:791.317498px;}
.y18f{bottom:791.551200px;}
.y46{bottom:797.926200px;}
.y106{bottom:798.863700px;}
.y22c{bottom:799.801200px;}
.y1f7{bottom:803.551200px;}
.y71{bottom:803.738700px;}
.y18e{bottom:805.051200px;}
.y209{bottom:805.426200px;}
.y95{bottom:806.926200px;}
.y45{bottom:812.926200px;}
.y22b{bottom:816.301200px;}
.y70{bottom:817.238700px;}
.y105{bottom:818.363700px;}
.y18d{bottom:818.551200px;}
.yb8{bottom:818.926200px;}
.y266{bottom:820.051200px;}
.y208{bottom:824.926200px;}
.y94{bottom:826.426200px;}
.y44{bottom:827.926200px;}
.y6f{bottom:830.738700px;}
.y18c{bottom:832.051200px;}
.y22a{bottom:832.801200px;}
.y160{bottom:833.738700px;}
.y265{bottom:836.551200px;}
.y104{bottom:837.863700px;}
.y43{bottom:842.926200px;}
.y29{bottom:843.789002px;}
.y6e{bottom:844.238700px;}
.y207{bottom:844.426200px;}
.y18b{bottom:845.551200px;}
.y93{bottom:845.926200px;}
.y15f{bottom:847.238700px;}
.y229{bottom:849.301200px;}
.y1f6{bottom:850.613700px;}
.y264{bottom:853.051200px;}
.y103{bottom:857.363700px;}
.y18a{bottom:859.051200px;}
.y15e{bottom:860.738700px;}
.y92{bottom:865.426200px;}
.y228{bottom:865.801200px;}
.y1f5{bottom:868.613700px;}
.y263{bottom:869.551200px;}
.y189{bottom:872.551200px;}
.y15d{bottom:874.238700px;}
.y206{bottom:874.426200px;}
.y102{bottom:876.863700px;}
.y2{bottom:879.369000px;}
.y1f4{bottom:882.113700px;}
.y227{bottom:882.301200px;}
.y91{bottom:884.926200px;}
.y188{bottom:886.051200px;}
.y15c{bottom:887.738700px;}
.y42{bottom:889.801200px;}
.y1f3{bottom:895.613700px;}
.y101{bottom:896.363700px;}
.y226{bottom:898.801200px;}
.y187{bottom:899.551200px;}
.y15b{bottom:901.238700px;}
.y262{bottom:902.551200px;}
.y90{bottom:904.426200px;}
.y28{bottom:907.440000px;}
.y1f2{bottom:909.113700px;}
.y41{bottom:909.256200px;}
.y186{bottom:913.051200px;}
.y15a{bottom:914.738700px;}
.y225{bottom:915.301200px;}
.y261{bottom:919.051200px;}
.y205{bottom:922.426200px;}
.y1f1{bottom:922.613700px;}
.y8f{bottom:923.926200px;}
.y185{bottom:926.551200px;}
.y159{bottom:928.238700px;}
.y40{bottom:931.801200px;}
.y260{bottom:935.551200px;}
.y1f0{bottom:936.113700px;}
.y183{bottom:938.551500px;}
.y27{bottom:938.940000px;}
.y158{bottom:941.738700px;}
.y204{bottom:941.926200px;}
.y100{bottom:942.863700px;}
.y8e{bottom:943.426200px;}
.y182{bottom:944.551200px;}
.y224{bottom:948.301200px;}
.y1ef{bottom:949.613700px;}
.y25f{bottom:952.051200px;}
.y157{bottom:955.238700px;}
.y203{bottom:961.426200px;}
.yff{bottom:962.363700px;}
.y8d{bottom:962.926200px;}
.y1ee{bottom:963.113700px;}
.y223{bottom:964.801200px;}
.y181{bottom:966.301200px;}
.y1{bottom:966.726000px;}
.y25e{bottom:968.551200px;}
.y156{bottom:968.738700px;}
.y26{bottom:970.440000px;}
.y3f{bottom:970.801200px;}
.y1ed{bottom:976.613700px;}
.y202{bottom:980.926200px;}
.y222{bottom:981.301200px;}
.yfe{bottom:981.863700px;}
.y155{bottom:982.238700px;}
.y8c{bottom:982.426200px;}
.y180{bottom:984.301200px;}
.y25d{bottom:985.051200px;}
.y1ec{bottom:990.113700px;}
.y1a6{bottom:994.426500px;}
.y3e{bottom:994.801200px;}
.y154{bottom:995.738700px;}
.y221{bottom:997.801200px;}
.y201{bottom:1000.426200px;}
.yfd{bottom:1001.363700px;}
.y25c{bottom:1001.551200px;}
.y8b{bottom:1001.926200px;}
.y1eb{bottom:1003.613700px;}
.y153{bottom:1009.238700px;}
.y1ea{bottom:1017.113700px;}
.y25b{bottom:1018.051200px;}
.y3d{bottom:1018.801200px;}
.yfc{bottom:1020.863700px;}
.y8a{bottom:1021.426200px;}
.y152{bottom:1022.738700px;}
.y220{bottom:1024.801200px;}
.y200{bottom:1030.426200px;}
.y1e9{bottom:1030.613700px;}
.y1bb{bottom:1033.426500px;}
.y25a{bottom:1034.551200px;}
.y25{bottom:1035.546001px;}
.y151{bottom:1036.238700px;}
.y17f{bottom:1036.613700px;}
.yfb{bottom:1040.363700px;}
.y89{bottom:1040.926200px;}
.y1e8{bottom:1044.113700px;}
.y3a{bottom:1047.511200px;}
.y150{bottom:1049.738700px;}
.y17e{bottom:1050.113700px;}
.y259{bottom:1051.051200px;}
.yfa{bottom:1059.863700px;}
.y88{bottom:1060.426200px;}
.y1e7{bottom:1062.488700px;}
.y14f{bottom:1063.238700px;}
.y17d{bottom:1063.613700px;}
.y258{bottom:1067.551200px;}
.y21f{bottom:1071.301200px;}
.yf9{bottom:1079.363700px;}
.y87{bottom:1079.926200px;}
.y14e{bottom:1081.238700px;}
.y6a{bottom:1083.782250px;}
.y257{bottom:1084.051200px;}
.y3c{bottom:1097.407950px;}
.y21e{bottom:1098.301200px;}
.yf8{bottom:1098.863700px;}
.y86{bottom:1099.426200px;}
.y14d{bottom:1099.988700px;}
.y256{bottom:1100.551200px;}
.y3b{bottom:1110.907950px;}
.yb5{bottom:1141.238100px;}
.y85{bottom:1141.313100px;}
.y24{bottom:1165.122003px;}
.h2b{height:18.000000px;}
.h22{height:18.001500px;}
.h16{height:25.096500px;}
.h24{height:27.000000px;}
.h1b{height:30.030000px;}
.h18{height:31.500000px;}
.h7{height:32.130000px;}
.h13{height:32.175000px;}
.h23{height:34.125136px;}
.h1d{height:34.320000px;}
.h1c{height:34.608000px;}
.hb{height:36.726562px;}
.h1f{height:37.215000px;}
.h2a{height:38.148000px;}
.h17{height:38.610000px;}
.h1e{height:39.696000px;}
.h21{height:40.755000px;}
.hf{height:41.317383px;}
.h27{height:41.340000px;}
.h2c{height:41.660156px;}
.h25{height:42.000000px;}
.h28{height:42.600000px;}
.h26{height:42.656420px;}
.h19{height:44.658000px;}
.h20{height:45.423000px;}
.h6{height:45.900000px;}
.he{height:45.908203px;}
.h1a{height:47.586000px;}
.h3{height:48.195000px;}
.h12{height:49.620000px;}
.h29{height:52.620000px;}
.h15{height:54.655650px;}
.h2{height:55.080000px;}
.hd{height:55.089844px;}
.h14{height:60.564000px;}
.ha{height:68.862305px;}
.h5{height:78.030000px;}
.hc{height:82.620000px;}
.h4{height:119.055004px;}
.h11{height:1190.250000px;}
.h10{height:1190.551500px;}
.h9{height:1249.500000px;}
.h8{height:1249.560000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w6{width:6.885000px;}
.wb{width:79.704000px;}
.w7{width:90.504000px;}
.w9{width:90.639000px;}
.wa{width:177.747000px;}
.wc{width:181.677000px;}
.w8{width:266.755500px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w5{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:951.480000px;}
.w4{width:951.750000px;}
.x0{left:0.000000px;}
.x14{left:5.007600px;}
.x20{left:28.857150px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xa{left:108.149850px;}
.x1d{left:112.257000px;}
.x47{left:123.000000px;}
.xb{left:126.112350px;}
.x6{left:145.650000px;}
.x39{left:182.545950px;}
.x2a{left:189.207000px;}
.x5{left:191.880000px;}
.x7{left:197.700000px;}
.x3e{left:199.987650px;}
.x11{left:201.038400px;}
.x4{left:203.484001px;}
.x28{left:220.568850px;}
.x9{left:228.743990px;}
.x44{left:233.422950px;}
.x10{left:262.913400px;}
.x35{left:266.091900px;}
.x19{left:268.875000px;}
.x1a{left:272.012250px;}
.x36{left:281.091900px;}
.x45{left:287.597100px;}
.x3f{left:289.887750px;}
.x8{left:293.590494px;}
.x13{left:297.219600px;}
.x3d{left:300.975300px;}
.x15{left:310.569600px;}
.x40{left:321.157050px;}
.x27{left:342.137850px;}
.xe{left:348.298500px;}
.x1b{left:349.648500px;}
.xf{left:355.183050px;}
.x1c{left:356.533050px;}
.x3a{left:370.555200px;}
.x37{left:373.405050px;}
.x12{left:380.029500px;}
.x38{left:383.592900px;}
.x2d{left:443.739000px;}
.x2e{left:446.739000px;}
.x3{left:454.959000px;}
.x1e{left:474.294000px;}
.x1f{left:491.901150px;}
.x2b{left:504.396450px;}
.x16{left:515.052000px;}
.x2f{left:518.284950px;}
.x17{left:519.308550px;}
.x30{left:521.284950px;}
.x18{left:532.658550px;}
.x3b{left:534.406800px;}
.x25{left:546.889350px;}
.x21{left:553.551150px;}
.x29{left:565.175550px;}
.x46{left:569.532000px;}
.xd{left:570.946500px;}
.x42{left:576.535950px;}
.x43{left:586.411650px;}
.x31{left:592.830900px;}
.x32{left:595.830900px;}
.x22{left:625.377000px;}
.x23{left:629.634300px;}
.x41{left:638.103450px;}
.x24{left:642.984300px;}
.xc{left:650.025750px;}
.x33{left:661.198050px;}
.x34{left:671.468550px;}
.x26{left:723.457200px;}
.x3c{left:733.747800px;}
.x2c{left:742.468650px;}
@media print{
.v2{vertical-align:-15.840000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.666667pt;}
.v5{vertical-align:14.080000pt;}
.v3{vertical-align:15.840000pt;}
.v1{vertical-align:18.480000pt;}
.ls26{letter-spacing:-0.960000pt;}
.lsb{letter-spacing:-0.480000pt;}
.lsf{letter-spacing:-0.469333pt;}
.ls15{letter-spacing:-0.160000pt;}
.lsd{letter-spacing:-0.053333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.053333pt;}
.ls27{letter-spacing:0.096000pt;}
.ls25{letter-spacing:0.192000pt;}
.ls1e{letter-spacing:0.266667pt;}
.ls5{letter-spacing:0.363467pt;}
.ls7{letter-spacing:0.364000pt;}
.ls19{letter-spacing:0.373333pt;}
.ls8{letter-spacing:0.400000pt;}
.lsc{letter-spacing:0.533333pt;}
.ls4{letter-spacing:0.560000pt;}
.ls3{letter-spacing:0.746667pt;}
.ls2{letter-spacing:0.800000pt;}
.ls23{letter-spacing:0.959467pt;}
.ls22{letter-spacing:0.960000pt;}
.ls10{letter-spacing:2.559467pt;}
.ls24{letter-spacing:5.602133pt;}
.ls21{letter-spacing:8.139733pt;}
.ls28{letter-spacing:8.140267pt;}
.ls9{letter-spacing:9.332267pt;}
.ls1b{letter-spacing:10.720000pt;}
.lsa{letter-spacing:62.572267pt;}
.ls6{letter-spacing:63.949867pt;}
.ls16{letter-spacing:117.653333pt;}
.ls11{letter-spacing:139.360000pt;}
.ls1a{letter-spacing:139.893333pt;}
.ls14{letter-spacing:265.888000pt;}
.lse{letter-spacing:270.688000pt;}
.ls1c{letter-spacing:335.898420pt;}
.ls17{letter-spacing:347.366258pt;}
.ls1f{letter-spacing:349.004520pt;}
.ls1d{letter-spacing:380.853333pt;}
.ls18{letter-spacing:393.813333pt;}
.ls20{letter-spacing:395.680000pt;}
.ls12{letter-spacing:796.979733pt;}
.ls13{letter-spacing:810.341867pt;}
.ws131{word-spacing:-395.680000pt;}
.ws106{word-spacing:-393.813333pt;}
.ws120{word-spacing:-380.853333pt;}
.ws130{word-spacing:-349.004520pt;}
.ws105{word-spacing:-347.366258pt;}
.ws11f{word-spacing:-335.898420pt;}
.ws10d{word-spacing:-132.320000pt;}
.wsef{word-spacing:-131.253333pt;}
.ws111{word-spacing:-104.533333pt;}
.wsf2{word-spacing:-97.066667pt;}
.wsf0{word-spacing:-18.016000pt;}
.ws2{word-spacing:-16.202667pt;}
.ws1{word-spacing:-12.432000pt;}
.wsee{word-spacing:-11.850667pt;}
.ws3c{word-spacing:-11.840000pt;}
.ws7{word-spacing:-11.306667pt;}
.ws15d{word-spacing:-11.136000pt;}
.ws185{word-spacing:-10.368000pt;}
.ws184{word-spacing:-10.272000pt;}
.ws15c{word-spacing:-10.176000pt;}
.ws3d{word-spacing:-9.706667pt;}
.ws182{word-spacing:-9.216000pt;}
.wsc{word-spacing:-9.045333pt;}
.ws5{word-spacing:-8.736000pt;}
.wsb{word-spacing:-8.720000pt;}
.ws8{word-spacing:-8.618667pt;}
.wsc9{word-spacing:-8.362667pt;}
.ws4{word-spacing:-8.320000pt;}
.ws9{word-spacing:-7.840000pt;}
.ws183{word-spacing:-7.776000pt;}
.ws6d{word-spacing:-7.765333pt;}
.wsa{word-spacing:-7.317333pt;}
.ws3{word-spacing:-6.115200pt;}
.ws101{word-spacing:-5.435733pt;}
.ws108{word-spacing:-4.640000pt;}
.ws10c{word-spacing:-3.029333pt;}
.ws6{word-spacing:-2.370133pt;}
.wsc7{word-spacing:-2.049600pt;}
.ws15e{word-spacing:-1.937600pt;}
.wsf5{word-spacing:-1.672533pt;}
.ws170{word-spacing:-0.960000pt;}
.ws41{word-spacing:-0.533333pt;}
.ws6e{word-spacing:-0.400000pt;}
.ws0{word-spacing:0.000000pt;}
.ws1a1{word-spacing:0.960000pt;}
.ws154{word-spacing:3.552000pt;}
.ws46{word-spacing:3.680000pt;}
.wsec{word-spacing:4.000000pt;}
.ws166{word-spacing:4.368000pt;}
.ws186{word-spacing:4.416000pt;}
.ws134{word-spacing:4.640000pt;}
.ws156{word-spacing:4.656000pt;}
.ws58{word-spacing:4.800000pt;}
.ws107{word-spacing:4.906667pt;}
.ws72{word-spacing:4.960000pt;}
.ws162{word-spacing:4.992000pt;}
.ws45{word-spacing:5.013333pt;}
.ws36{word-spacing:5.034667pt;}
.wsc4{word-spacing:5.066667pt;}
.ws13{word-spacing:5.136000pt;}
.ws122{word-spacing:5.162667pt;}
.ws137{word-spacing:5.333333pt;}
.ws157{word-spacing:5.376000pt;}
.ws165{word-spacing:5.424000pt;}
.ws187{word-spacing:5.472000pt;}
.ws3b{word-spacing:5.504000pt;}
.ws93{word-spacing:5.600000pt;}
.ws1a4{word-spacing:5.616000pt;}
.ws14d{word-spacing:5.674667pt;}
.ws76{word-spacing:5.706667pt;}
.ws1a9{word-spacing:5.712000pt;}
.ws16a{word-spacing:5.760000pt;}
.ws161{word-spacing:5.808000pt;}
.ws53{word-spacing:5.813333pt;}
.ws17{word-spacing:5.856000pt;}
.ws34{word-spacing:5.861333pt;}
.ws44{word-spacing:5.866667pt;}
.wse{word-spacing:5.880000pt;}
.ws39{word-spacing:5.920000pt;}
.ws194{word-spacing:5.952000pt;}
.ws90{word-spacing:5.973333pt;}
.ws63{word-spacing:6.026667pt;}
.wse9{word-spacing:6.080000pt;}
.ws47{word-spacing:6.186667pt;}
.ws17c{word-spacing:6.192000pt;}
.ws5e{word-spacing:6.240000pt;}
.wsf{word-spacing:6.280000pt;}
.ws168{word-spacing:6.288000pt;}
.ws164{word-spacing:6.336000pt;}
.ws1c{word-spacing:6.384000pt;}
.ws60{word-spacing:6.400000pt;}
.wsb0{word-spacing:6.453333pt;}
.ws89{word-spacing:6.506667pt;}
.wsab{word-spacing:6.560000pt;}
.ws87{word-spacing:6.613333pt;}
.wsa3{word-spacing:6.666667pt;}
.ws169{word-spacing:6.672000pt;}
.ws81{word-spacing:6.698667pt;}
.ws92{word-spacing:6.720000pt;}
.ws7e{word-spacing:6.773333pt;}
.ws181{word-spacing:6.816000pt;}
.ws4c{word-spacing:6.826667pt;}
.ws54{word-spacing:6.880000pt;}
.wse1{word-spacing:6.912000pt;}
.ws71{word-spacing:6.933333pt;}
.ws28{word-spacing:6.986667pt;}
.ws160{word-spacing:7.008000pt;}
.ws32{word-spacing:7.040000pt;}
.ws173{word-spacing:7.056000pt;}
.ws67{word-spacing:7.093333pt;}
.ws31{word-spacing:7.146667pt;}
.ws9d{word-spacing:7.200000pt;}
.ws3a{word-spacing:7.253333pt;}
.wsae{word-spacing:7.306667pt;}
.ws167{word-spacing:7.344000pt;}
.wsa7{word-spacing:7.360000pt;}
.wsdd{word-spacing:7.413333pt;}
.ws18c{word-spacing:7.440000pt;}
.wsc0{word-spacing:7.466667pt;}
.ws15f{word-spacing:7.488000pt;}
.wsc5{word-spacing:7.520000pt;}
.ws12{word-spacing:7.536000pt;}
.ws38{word-spacing:7.541333pt;}
.ws79{word-spacing:7.573333pt;}
.ws5d{word-spacing:7.626667pt;}
.ws12e{word-spacing:7.680000pt;}
.ws178{word-spacing:7.728000pt;}
.wsb5{word-spacing:7.733333pt;}
.ws5b{word-spacing:7.786667pt;}
.ws7f{word-spacing:7.802667pt;}
.ws15b{word-spacing:7.824000pt;}
.wsdc{word-spacing:7.840000pt;}
.ws180{word-spacing:7.920000pt;}
.ws74{word-spacing:7.946667pt;}
.ws80{word-spacing:7.954667pt;}
.ws9c{word-spacing:8.000000pt;}
.ws52{word-spacing:8.053333pt;}
.ws1aa{word-spacing:8.064000pt;}
.ws5c{word-spacing:8.106667pt;}
.ws26{word-spacing:8.160000pt;}
.wsd9{word-spacing:8.176000pt;}
.ws1d{word-spacing:8.208000pt;}
.ws6c{word-spacing:8.232000pt;}
.ws172{word-spacing:8.256000pt;}
.wsad{word-spacing:8.266667pt;}
.ws4a{word-spacing:8.320000pt;}
.ws176{word-spacing:8.352000pt;}
.wsdf{word-spacing:8.373333pt;}
.ws158{word-spacing:8.400000pt;}
.ws9e{word-spacing:8.426667pt;}
.ws19b{word-spacing:8.448000pt;}
.wsbe{word-spacing:8.480000pt;}
.ws152{word-spacing:8.496000pt;}
.wsd{word-spacing:8.533333pt;}
.ws16{word-spacing:8.544000pt;}
.ws5f{word-spacing:8.586667pt;}
.ws18f{word-spacing:8.592000pt;}
.ws68{word-spacing:8.640000pt;}
.wsa6{word-spacing:8.693333pt;}
.ws151{word-spacing:8.736000pt;}
.wsaa{word-spacing:8.800000pt;}
.ws18e{word-spacing:8.832000pt;}
.wsdb{word-spacing:8.853333pt;}
.ws196{word-spacing:8.880000pt;}
.ws96{word-spacing:8.906667pt;}
.ws175{word-spacing:8.928000pt;}
.ws69{word-spacing:8.960000pt;}
.ws4b{word-spacing:9.013333pt;}
.ws2c{word-spacing:9.066667pt;}
.ws188{word-spacing:9.072000pt;}
.ws30{word-spacing:9.120000pt;}
.ws190{word-spacing:9.216000pt;}
.ws9a{word-spacing:9.226667pt;}
.ws35{word-spacing:9.258667pt;}
.ws147{word-spacing:9.280000pt;}
.ws66{word-spacing:9.333333pt;}
.ws61{word-spacing:9.440000pt;}
.ws19d{word-spacing:9.456000pt;}
.ws135{word-spacing:9.493333pt;}
.ws6b{word-spacing:9.504000pt;}
.ws11{word-spacing:9.520000pt;}
.ws8f{word-spacing:9.546667pt;}
.ws7b{word-spacing:9.600000pt;}
.ws150{word-spacing:9.648000pt;}
.wsb1{word-spacing:9.653333pt;}
.ws17d{word-spacing:9.696000pt;}
.wsed{word-spacing:9.706667pt;}
.wsde{word-spacing:9.760000pt;}
.ws153{word-spacing:9.840000pt;}
.ws62{word-spacing:9.866667pt;}
.wsc1{word-spacing:9.920000pt;}
.ws77{word-spacing:9.973333pt;}
.ws57{word-spacing:10.026667pt;}
.ws37{word-spacing:10.042667pt;}
.wseb{word-spacing:10.080000pt;}
.ws15a{word-spacing:10.176000pt;}
.ws149{word-spacing:10.186667pt;}
.ws10a{word-spacing:10.234667pt;}
.ws95{word-spacing:10.240000pt;}
.ws86{word-spacing:10.293333pt;}
.wsb2{word-spacing:10.346667pt;}
.ws195{word-spacing:10.368000pt;}
.ws82{word-spacing:10.400000pt;}
.ws199{word-spacing:10.416000pt;}
.ws10b{word-spacing:10.437333pt;}
.ws3e{word-spacing:10.453333pt;}
.ws189{word-spacing:10.464000pt;}
.wsc6{word-spacing:10.506667pt;}
.ws191{word-spacing:10.512000pt;}
.wsb7{word-spacing:10.560000pt;}
.ws65{word-spacing:10.613333pt;}
.ws146{word-spacing:10.666667pt;}
.wsc2{word-spacing:10.720000pt;}
.ws8d{word-spacing:10.773333pt;}
.ws14b{word-spacing:10.792000pt;}
.ws148{word-spacing:10.826667pt;}
.ws11e{word-spacing:10.880000pt;}
.ws19{word-spacing:10.896000pt;}
.wsaf{word-spacing:10.986667pt;}
.ws19c{word-spacing:10.992000pt;}
.ws43{word-spacing:11.040000pt;}
.ws14c{word-spacing:11.045333pt;}
.ws1ab{word-spacing:11.088000pt;}
.ws78{word-spacing:11.093333pt;}
.ws16d{word-spacing:11.136000pt;}
.wsa9{word-spacing:11.146667pt;}
.wsa4{word-spacing:11.200000pt;}
.wsa1{word-spacing:11.253333pt;}
.wsf1{word-spacing:11.306667pt;}
.wsc3{word-spacing:11.360000pt;}
.ws18b{word-spacing:11.424000pt;}
.wsbd{word-spacing:11.466667pt;}
.ws8c{word-spacing:11.520000pt;}
.ws18d{word-spacing:11.568000pt;}
.ws104{word-spacing:11.573333pt;}
.ws198{word-spacing:11.664000pt;}
.ws98{word-spacing:11.680000pt;}
.ws109{word-spacing:11.733333pt;}
.ws88{word-spacing:11.786667pt;}
.ws16c{word-spacing:11.808000pt;}
.ws9b{word-spacing:11.840000pt;}
.wsda{word-spacing:11.946667pt;}
.ws163{word-spacing:11.952000pt;}
.ws23{word-spacing:12.000000pt;}
.ws138{word-spacing:12.053333pt;}
.ws85{word-spacing:12.106667pt;}
.ws19a{word-spacing:12.144000pt;}
.ws2b{word-spacing:12.160000pt;}
.wsbf{word-spacing:12.213333pt;}
.ws136{word-spacing:12.266667pt;}
.wse8{word-spacing:12.320000pt;}
.ws10{word-spacing:12.394667pt;}
.ws8e{word-spacing:12.426667pt;}
.wsb4{word-spacing:12.480000pt;}
.ws64{word-spacing:12.533333pt;}
.ws174{word-spacing:12.576000pt;}
.ws177{word-spacing:12.672000pt;}
.ws5a{word-spacing:12.693333pt;}
.ws29{word-spacing:12.746667pt;}
.ws1ac{word-spacing:12.768000pt;}
.ws51{word-spacing:12.853333pt;}
.ws70{word-spacing:12.906667pt;}
.ws59{word-spacing:12.960000pt;}
.ws4f{word-spacing:13.120000pt;}
.ws2f{word-spacing:13.173333pt;}
.ws42{word-spacing:13.226667pt;}
.ws9f{word-spacing:13.333333pt;}
.wsa0{word-spacing:13.440000pt;}
.ws18{word-spacing:13.488000pt;}
.ws17e{word-spacing:13.536000pt;}
.ws49{word-spacing:13.546667pt;}
.ws1f{word-spacing:13.584000pt;}
.wsb9{word-spacing:13.600000pt;}
.ws197{word-spacing:13.632000pt;}
.ws102{word-spacing:13.653333pt;}
.ws1b{word-spacing:13.680000pt;}
.ws11c{word-spacing:13.706667pt;}
.ws40{word-spacing:13.760000pt;}
.ws16b{word-spacing:13.776000pt;}
.ws14e{word-spacing:13.813333pt;}
.ws155{word-spacing:13.824000pt;}
.ws6a{word-spacing:13.920000pt;}
.wsbb{word-spacing:14.026667pt;}
.ws84{word-spacing:14.080000pt;}
.ws55{word-spacing:14.186667pt;}
.ws83{word-spacing:14.293333pt;}
.ws159{word-spacing:14.304000pt;}
.ws6f{word-spacing:14.346667pt;}
.ws1a6{word-spacing:14.352000pt;}
.ws91{word-spacing:14.400000pt;}
.wsac{word-spacing:14.506667pt;}
.wsa8{word-spacing:14.560000pt;}
.ws4d{word-spacing:14.666667pt;}
.ws171{word-spacing:14.688000pt;}
.ws3f{word-spacing:14.720000pt;}
.wsb8{word-spacing:14.826667pt;}
.wsf4{word-spacing:14.928000pt;}
.ws75{word-spacing:14.986667pt;}
.wsb3{word-spacing:15.040000pt;}
.ws17f{word-spacing:15.072000pt;}
.ws73{word-spacing:15.093333pt;}
.ws18a{word-spacing:15.120000pt;}
.ws27{word-spacing:15.146667pt;}
.ws19e{word-spacing:15.168000pt;}
.ws2d{word-spacing:15.200000pt;}
.ws4e{word-spacing:15.253333pt;}
.ws2a{word-spacing:15.360000pt;}
.wsea{word-spacing:15.413333pt;}
.wsba{word-spacing:15.466667pt;}
.ws25{word-spacing:15.600000pt;}
.wsa5{word-spacing:15.626667pt;}
.ws8a{word-spacing:15.680000pt;}
.ws50{word-spacing:15.733333pt;}
.ws94{word-spacing:15.786667pt;}
.ws179{word-spacing:16.224000pt;}
.ws121{word-spacing:16.320000pt;}
.wsbc{word-spacing:16.373333pt;}
.wsa2{word-spacing:16.480000pt;}
.wsb6{word-spacing:16.586667pt;}
.ws2e{word-spacing:16.640000pt;}
.ws1a5{word-spacing:16.704000pt;}
.ws15{word-spacing:16.800000pt;}
.ws7c{word-spacing:16.906667pt;}
.ws1ad{word-spacing:17.088000pt;}
.ws48{word-spacing:17.120000pt;}
.ws132{word-spacing:17.280000pt;}
.ws22{word-spacing:17.520000pt;}
.ws14a{word-spacing:17.546667pt;}
.ws24{word-spacing:17.712000pt;}
.ws20{word-spacing:17.760000pt;}
.ws33{word-spacing:18.026667pt;}
.ws17b{word-spacing:18.144000pt;}
.wse0{word-spacing:18.293333pt;}
.ws56{word-spacing:18.346667pt;}
.ws8b{word-spacing:18.666667pt;}
.ws133{word-spacing:19.040000pt;}
.ws7a{word-spacing:19.360000pt;}
.ws21{word-spacing:19.728000pt;}
.ws14f{word-spacing:20.000000pt;}
.ws103{word-spacing:20.853333pt;}
.ws7d{word-spacing:20.906667pt;}
.ws99{word-spacing:21.066667pt;}
.ws17a{word-spacing:21.120000pt;}
.ws193{word-spacing:21.168000pt;}
.ws11d{word-spacing:22.560000pt;}
.ws97{word-spacing:22.720000pt;}
.ws14{word-spacing:23.520000pt;}
.ws12f{word-spacing:23.840000pt;}
.ws192{word-spacing:24.672000pt;}
.ws1a3{word-spacing:27.648000pt;}
.ws16f{word-spacing:29.136000pt;}
.ws11b{word-spacing:29.920000pt;}
.ws1a{word-spacing:29.952000pt;}
.ws1a7{word-spacing:30.240000pt;}
.ws1e{word-spacing:31.104000pt;}
.ws1a2{word-spacing:32.256000pt;}
.ws16e{word-spacing:33.936000pt;}
.ws1a8{word-spacing:35.184000pt;}
.ws1a0{word-spacing:35.712000pt;}
.ws19f{word-spacing:41.616000pt;}
.ws10e{word-spacing:110.933333pt;}
.ws126{word-spacing:119.558933pt;}
.ws123{word-spacing:123.733333pt;}
.ws12d{word-spacing:135.046933pt;}
.ws128{word-spacing:155.313600pt;}
.ws127{word-spacing:161.094933pt;}
.ws12b{word-spacing:166.961600pt;}
.ws145{word-spacing:167.585600pt;}
.ws12c{word-spacing:174.065600pt;}
.ws144{word-spacing:174.635200pt;}
.ws13a{word-spacing:181.573867pt;}
.ws139{word-spacing:185.797333pt;}
.ws142{word-spacing:189.061867pt;}
.ws129{word-spacing:194.780267pt;}
.ws12a{word-spacing:195.889600pt;}
.ws13c{word-spacing:209.328533pt;}
.ws100{word-spacing:214.805867pt;}
.ws143{word-spacing:217.835733pt;}
.ws13f{word-spacing:220.976533pt;}
.wsfb{word-spacing:224.938667pt;}
.wsd0{word-spacing:226.539200pt;}
.ws13e{word-spacing:227.487467pt;}
.wscf{word-spacing:229.120533pt;}
.ws13b{word-spacing:231.109867pt;}
.ws13d{word-spacing:236.080533pt;}
.wsf9{word-spacing:237.653333pt;}
.wsca{word-spacing:239.253867pt;}
.wsd4{word-spacing:241.835200pt;}
.wse2{word-spacing:247.384533pt;}
.wsd8{word-spacing:249.386667pt;}
.ws141{word-spacing:249.904533pt;}
.wsf7{word-spacing:250.368000pt;}
.wsd1{word-spacing:251.968000pt;}
.ws11a{word-spacing:254.239467pt;}
.wsce{word-spacing:259.520000pt;}
.wsd6{word-spacing:259.520533pt;}
.ws140{word-spacing:261.509867pt;}
.ws110{word-spacing:263.520000pt;}
.ws114{word-spacing:264.373333pt;}
.ws125{word-spacing:270.560000pt;}
.ws115{word-spacing:274.506133pt;}
.ws118{word-spacing:276.021333pt;}
.wscc{word-spacing:279.787200pt;}
.wse5{word-spacing:280.527467pt;}
.ws113{word-spacing:286.154133pt;}
.wse7{word-spacing:290.603733pt;}
.wse6{word-spacing:290.604267pt;}
.ws10f{word-spacing:298.773333pt;}
.ws117{word-spacing:300.665600pt;}
.wse4{word-spacing:302.888000pt;}
.ws119{word-spacing:304.949333pt;}
.wsf3{word-spacing:309.973333pt;}
.ws124{word-spacing:311.573333pt;}
.ws116{word-spacing:313.972800pt;}
.ws112{word-spacing:315.082133pt;}
.wse3{word-spacing:507.417067pt;}
.wsc8{word-spacing:511.065067pt;}
.wsf6{word-spacing:515.865067pt;}
.wsd3{word-spacing:572.153600pt;}
.wsfd{word-spacing:576.953600pt;}
.wscb{word-spacing:607.697067pt;}
.wsd5{word-spacing:617.977600pt;}
.wsd7{word-spacing:620.537600pt;}
.wsfe{word-spacing:622.777600pt;}
.wsff{word-spacing:625.337600pt;}
.wscd{word-spacing:635.044267pt;}
.wsfa{word-spacing:639.844267pt;}
.wsf8{word-spacing:644.644267pt;}
.wsd2{word-spacing:667.129600pt;}
.wsfc{word-spacing:671.929600pt;}
._75{margin-left:-1407.916267pt;}
._90{margin-left:-1094.257067pt;}
._67{margin-left:-976.037867pt;}
._4b{margin-left:-360.533333pt;}
._49{margin-left:-357.813333pt;}
._46{margin-left:-24.674146pt;}
._5{margin-left:-13.853346pt;}
._14{margin-left:-11.228280pt;}
._4c{margin-left:-9.337613pt;}
._1{margin-left:-7.680000pt;}
._a3{margin-left:-6.160989pt;}
._7{margin-left:-4.909880pt;}
._2{margin-left:-3.680000pt;}
._9{margin-left:-2.787506pt;}
._0{margin-left:-1.706654pt;}
._8{width:0.899200pt;}
._6{width:1.882641pt;}
._10{width:2.851733pt;}
._65{width:4.256000pt;}
._3{width:5.546667pt;}
._4{width:6.933320pt;}
._11{width:7.951987pt;}
._f{width:8.869346pt;}
._34{width:9.858133pt;}
._74{width:11.468306pt;}
._e{width:13.221333pt;}
._13{width:14.119467pt;}
._a2{width:15.131571pt;}
._b{width:17.560000pt;}
._a{width:18.527987pt;}
._66{width:20.778107pt;}
._a4{width:24.889041pt;}
._a1{width:35.636000pt;}
._a5{width:41.278667pt;}
._68{width:46.622933pt;}
._c{width:53.529346pt;}
._81{width:107.125867pt;}
._12{width:117.065041pt;}
._d{width:118.826133pt;}
._7c{width:126.304533pt;}
._8f{width:127.409600pt;}
._8e{width:135.409067pt;}
._76{width:138.161600pt;}
._85{width:147.676267pt;}
._88{width:149.191467pt;}
._84{width:155.676267pt;}
._48{width:160.373333pt;}
._83{width:165.810133pt;}
._82{width:173.809067pt;}
._7d{width:175.324267pt;}
._87{width:177.457600pt;}
._64{width:180.800000pt;}
._7e{width:185.457067pt;}
._80{width:187.590933pt;}
._4a{width:192.000000pt;}
._73{width:193.600000pt;}
._a0{width:194.610133pt;}
._7f{width:195.590933pt;}
._7b{width:198.386133pt;}
._91{width:200.176533pt;}
._9a{width:202.622933pt;}
._77{width:203.923200pt;}
._8d{width:206.385600pt;}
._86{width:207.412800pt;}
._89{width:210.694933pt;}
._8a{width:213.276267pt;}
._78{width:214.385600pt;}
._7a{width:216.518933pt;}
._79{width:224.518400pt;}
._99{width:227.824533pt;}
._98{width:233.723733pt;}
._40{width:235.459733pt;}
._47{width:239.840000pt;}
._21{width:241.971733pt;}
._54{width:245.513067pt;}
._38{width:247.150387pt;}
._97{width:249.606400pt;}
._96{width:255.472000pt;}
._9c{width:258.267200pt;}
._5d{width:260.808533pt;}
._3d{width:261.827733pt;}
._69{width:263.328000pt;}
._25{width:267.401600pt;}
._94{width:268.400533pt;}
._1f{width:269.982400pt;}
._57{width:270.942933pt;}
._3e{width:273.006400pt;}
._9b{width:273.967454pt;}
._3f{width:276.249067pt;}
._93{width:278.762133pt;}
._19{width:280.115733pt;}
._27{width:282.697067pt;}
._52{width:284.172267pt;}
._6c{width:286.384533pt;}
._9f{width:289.193600pt;}
._30{width:290.249600pt;}
._24{width:292.830933pt;}
._70{width:294.516800pt;}
._44{width:295.699733pt;}
._95{width:299.326933pt;}
._1d{width:300.382933pt;}
._8c{width:302.005333pt;}
._1b{width:303.099200pt;}
._41{width:311.304533pt;}
._6e{width:312.389320pt;}
._6f{width:313.855987pt;}
._6b{width:321.093867pt;}
._18{width:323.365867pt;}
._63{width:333.606933pt;}
._33{width:335.739733pt;}
._72{width:337.008533pt;}
._53{width:340.092267pt;}
._42{width:341.139720pt;}
._20{width:342.225067pt;}
._2a{width:343.632533pt;}
._6d{width:347.141867pt;}
._4f{width:350.502387pt;}
._15{width:355.302387pt;}
._16{width:358.177600pt;}
._50{width:361.377067pt;}
._43{width:364.019733pt;}
._60{width:371.153600pt;}
._2f{width:373.286400pt;}
._62{width:374.396267pt;}
._32{width:376.529067pt;}
._5f{width:385.403733pt;}
._2e{width:387.537067pt;}
._31{width:392.139733pt;}
._61{width:396.939733pt;}
._45{width:401.441906pt;}
._22{width:407.673587pt;}
._55{width:412.473587pt;}
._5c{width:433.105600pt;}
._2c{width:435.238400pt;}
._3a{width:449.177067pt;}
._36{width:452.163733pt;}
._35{width:457.069854pt;}
._5b{width:459.981867pt;}
._2b{width:462.115200pt;}
._9e{width:464.894933pt;}
._37{width:470.382400pt;}
._92{width:475.792533pt;}
._8b{width:483.437867pt;}
._1a{width:492.667733pt;}
._6a{width:496.794667pt;}
._3b{width:499.822400pt;}
._39{width:510.702400pt;}
._3c{width:511.854400pt;}
._4e{width:519.239987pt;}
._17{width:557.563733pt;}
._59{width:572.753067pt;}
._28{width:574.886400pt;}
._1c{width:577.873067pt;}
._58{width:585.297067pt;}
._26{width:587.430400pt;}
._51{width:594.510400pt;}
._1e{width:596.091733pt;}
._5a{width:597.969600pt;}
._4d{width:598.959467pt;}
._29{width:600.102400pt;}
._9d{width:607.467733pt;}
._56{width:634.278400pt;}
._5e{width:635.430400pt;}
._23{width:636.411733pt;}
._2d{width:637.563733pt;}
._71{width:753.823467pt;}
.fs11{font-size:27.733333pt;}
.fsc{font-size:31.200000pt;}
.fsb{font-size:36.400000pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:40.000000pt;}
.fs6{font-size:42.666667pt;}
.fsf{font-size:43.687000pt;}
.fs8{font-size:48.000000pt;}
.fse{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs10{font-size:54.608750pt;}
.fs1{font-size:56.000000pt;}
.fsd{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:74.666667pt;}
.fs5{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y184{bottom:5.333067pt;}
.y112{bottom:5.333333pt;}
.y16e{bottom:6.666400pt;}
.y16f{bottom:11.199733pt;}
.y6{bottom:31.933340pt;}
.y5{bottom:59.133337pt;}
.y1e6{bottom:59.934400pt;}
.y39{bottom:60.086668pt;}
.y6d{bottom:63.947200pt;}
.y21d{bottom:65.267733pt;}
.y6c{bottom:74.613867pt;}
.y38{bottom:74.753335pt;}
.yf7{bottom:75.934400pt;}
.y1ba{bottom:76.133333pt;}
.yda{bottom:77.267733pt;}
.yf0{bottom:78.601067pt;}
.y134{bottom:80.466667pt;}
.yb4{bottom:81.267733pt;}
.yb7{bottom:83.800000pt;}
.y6b{bottom:85.280533pt;}
.y4{bottom:86.333337pt;}
.y21c{bottom:89.267733pt;}
.y14c{bottom:90.267733pt;}
.y1b9{bottom:92.133333pt;}
.y133{bottom:92.466667pt;}
.y17c{bottom:92.601067pt;}
.yf6{bottom:93.267733pt;}
.yd9{bottom:94.601067pt;}
.y255{bottom:94.934400pt;}
.yb6{bottom:95.800000pt;}
.yef{bottom:95.934400pt;}
.y67{bottom:96.280533pt;}
.y28b{bottom:98.267733pt;}
.yb3{bottom:98.601067pt;}
.y1e5{bottom:103.934400pt;}
.y1b8{bottom:104.133333pt;}
.y132{bottom:104.466667pt;}
.y69{bottom:105.947200pt;}
.y14b{bottom:107.601067pt;}
.y254{bottom:109.601067pt;}
.y17b{bottom:109.934400pt;}
.yf5{bottom:110.601067pt;}
.yd8{bottom:111.934400pt;}
.y28a{bottom:112.934400pt;}
.yee{bottom:113.267733pt;}
.y1b7{bottom:116.133333pt;}
.y131{bottom:116.466667pt;}
.y68{bottom:117.947200pt;}
.y23{bottom:123.790666pt;}
.y253{bottom:124.267733pt;}
.y14a{bottom:124.934400pt;}
.yb2{bottom:125.267733pt;}
.y17a{bottom:127.267733pt;}
.y289{bottom:127.601067pt;}
.yf4{bottom:127.934400pt;}
.y1b6{bottom:128.133333pt;}
.y130{bottom:128.466667pt;}
.yd7{bottom:129.267733pt;}
.yed{bottom:130.601067pt;}
.y21b{bottom:133.267733pt;}
.y252{bottom:138.934400pt;}
.y1b5{bottom:140.133333pt;}
.y12f{bottom:140.466667pt;}
.y149{bottom:142.267733pt;}
.y179{bottom:144.601067pt;}
.yf3{bottom:145.267733pt;}
.yd6{bottom:146.601067pt;}
.yec{bottom:147.934400pt;}
.yb1{bottom:151.934400pt;}
.y1b4{bottom:152.133333pt;}
.y12e{bottom:152.466667pt;}
.y66{bottom:153.267733pt;}
.y251{bottom:153.601067pt;}
.y177{bottom:154.601333pt;}
.y288{bottom:156.934400pt;}
.y148{bottom:159.601067pt;}
.y178{bottom:161.267733pt;}
.y176{bottom:161.934400pt;}
.yd5{bottom:163.934400pt;}
.y1b3{bottom:164.133333pt;}
.y12d{bottom:164.466667pt;}
.yeb{bottom:165.267733pt;}
.y250{bottom:168.267733pt;}
.y65{bottom:170.601067pt;}
.y287{bottom:171.601067pt;}
.yf2{bottom:171.934400pt;}
.y1a{bottom:175.052000pt;}
.y1e4{bottom:175.934400pt;}
.y1b2{bottom:176.133333pt;}
.y12c{bottom:176.466667pt;}
.y147{bottom:176.934400pt;}
.y175{bottom:179.267733pt;}
.yd4{bottom:181.267733pt;}
.yea{bottom:182.601067pt;}
.y24f{bottom:182.934400pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y286{bottom:186.267733pt;}
.y64{bottom:187.934400pt;}
.y1b1{bottom:188.133333pt;}
.y12b{bottom:188.466667pt;}
.y1e3{bottom:193.267733pt;}
.y146{bottom:194.267733pt;}
.y174{bottom:196.601067pt;}
.yb0{bottom:197.267733pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y24e{bottom:197.601067pt;}
.yd3{bottom:198.601067pt;}
.ye9{bottom:199.934400pt;}
.y1b0{bottom:200.133333pt;}
.y12a{bottom:200.466667pt;}
.y285{bottom:200.934400pt;}
.y63{bottom:205.267733pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y1e2{bottom:210.601067pt;}
.y37{bottom:210.601334pt;}
.y1af{bottom:212.133333pt;}
.y24d{bottom:212.267733pt;}
.y129{bottom:212.466667pt;}
.y173{bottom:213.934400pt;}
.yaf{bottom:214.601067pt;}
.y284{bottom:215.601067pt;}
.yd2{bottom:215.934400pt;}
.ye8{bottom:217.267733pt;}
.y145{bottom:220.934400pt;}
.y62{bottom:222.601067pt;}
.y1ae{bottom:224.133333pt;}
.y128{bottom:224.466667pt;}
.y24c{bottom:226.934400pt;}
.y1e1{bottom:227.934400pt;}
.y283{bottom:230.267733pt;}
.y21a{bottom:230.601067pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y172{bottom:231.267733pt;}
.yae{bottom:231.934400pt;}
.yd1{bottom:233.267733pt;}
.ye7{bottom:234.601067pt;}
.y1ad{bottom:236.133333pt;}
.y127{bottom:236.466667pt;}
.y61{bottom:239.934400pt;}
.y24b{bottom:241.601067pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y282{bottom:244.934400pt;}
.y1e0{bottom:245.267733pt;}
.y1ac{bottom:248.133333pt;}
.y126{bottom:248.466667pt;}
.y171{bottom:248.601067pt;}
.yad{bottom:249.267733pt;}
.yd0{bottom:250.601067pt;}
.ye6{bottom:251.934400pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y24a{bottom:256.267733pt;}
.y60{bottom:257.267733pt;}
.y281{bottom:259.601067pt;}
.y219{bottom:259.934400pt;}
.y1d0{bottom:260.133333pt;}
.y125{bottom:260.466667pt;}
.y1df{bottom:262.601067pt;}
.y1ab{bottom:264.466667pt;}
.y170{bottom:265.934400pt;}
.y144{bottom:266.267733pt;}
.yac{bottom:266.601067pt;}
.y36{bottom:267.801334pt;}
.ycf{bottom:267.934400pt;}
.ye5{bottom:269.267733pt;}
.y249{bottom:270.934400pt;}
.y1cf{bottom:272.133333pt;}
.y124{bottom:272.466667pt;}
.y280{bottom:274.267733pt;}
.y5f{bottom:274.601067pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y16d{bottom:276.601333pt;}
.y1de{bottom:279.934400pt;}
.y1aa{bottom:281.133333pt;}
.y218{bottom:282.601067pt;}
.y16c{bottom:283.267733pt;}
.y143{bottom:283.601067pt;}
.yab{bottom:283.934400pt;}
.y1ce{bottom:284.133333pt;}
.y123{bottom:284.466667pt;}
.yce{bottom:285.267733pt;}
.y248{bottom:285.601067pt;}
.ye4{bottom:286.601067pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y27f{bottom:288.934400pt;}
.y5e{bottom:291.934400pt;}
.y1cd{bottom:296.133333pt;}
.y122{bottom:296.466667pt;}
.y1dd{bottom:297.267733pt;}
.y1a9{bottom:297.800000pt;}
.y247{bottom:300.267733pt;}
.y16b{bottom:300.601067pt;}
.y142{bottom:300.934400pt;}
.yaa{bottom:301.267733pt;}
.ycd{bottom:302.601067pt;}
.y27e{bottom:303.601067pt;}
.ye3{bottom:303.934400pt;}
.y1cc{bottom:308.133333pt;}
.y121{bottom:308.466667pt;}
.y5d{bottom:309.267733pt;}
.y11{bottom:309.452000pt;}
.y217{bottom:311.934400pt;}
.y1dc{bottom:314.601067pt;}
.y246{bottom:314.934400pt;}
.y16a{bottom:317.934400pt;}
.y141{bottom:318.267733pt;}
.ya9{bottom:318.601067pt;}
.y120{bottom:320.466667pt;}
.y1ca{bottom:324.466667pt;}
.y35{bottom:325.001334pt;}
.y5c{bottom:326.601067pt;}
.ycc{bottom:329.267733pt;}
.y245{bottom:329.601067pt;}
.ye2{bottom:330.601067pt;}
.y1db{bottom:331.934400pt;}
.y11f{bottom:332.466667pt;}
.y27d{bottom:332.934400pt;}
.y216{bottom:334.601067pt;}
.y169{bottom:335.267733pt;}
.y140{bottom:335.601067pt;}
.ya8{bottom:335.934400pt;}
.y1cb{bottom:336.466667pt;}
.y10{bottom:343.809333pt;}
.y5b{bottom:343.934400pt;}
.y244{bottom:344.267733pt;}
.y11e{bottom:344.466667pt;}
.y27c{bottom:347.601067pt;}
.y1da{bottom:349.267733pt;}
.y13f{bottom:352.934400pt;}
.y1c9{bottom:353.133333pt;}
.ya7{bottom:353.267733pt;}
.y11d{bottom:356.466667pt;}
.y243{bottom:358.934400pt;}
.y5a{bottom:361.267733pt;}
.y168{bottom:361.934400pt;}
.y27b{bottom:362.267733pt;}
.yf{bottom:362.706666pt;}
.y215{bottom:363.934400pt;}
.y1d9{bottom:366.601067pt;}
.y11c{bottom:368.466667pt;}
.y1c8{bottom:369.800000pt;}
.ya6{bottom:370.601067pt;}
.ycb{bottom:371.934400pt;}
.y242{bottom:373.601067pt;}
.ye1{bottom:375.934400pt;}
.y27a{bottom:376.934400pt;}
.y59{bottom:378.601067pt;}
.y11b{bottom:380.466667pt;}
.y1d8{bottom:383.934400pt;}
.y34{bottom:384.806667pt;}
.ya5{bottom:387.934400pt;}
.y241{bottom:388.267733pt;}
.y167{bottom:388.601067pt;}
.yca{bottom:389.267733pt;}
.y279{bottom:391.601067pt;}
.y11a{bottom:392.466667pt;}
.ye0{bottom:393.267733pt;}
.y13e{bottom:394.267733pt;}
.y1d7{bottom:401.267733pt;}
.y214{bottom:402.601067pt;}
.y240{bottom:402.934400pt;}
.y119{bottom:404.466667pt;}
.y58{bottom:405.267733pt;}
.y278{bottom:406.267733pt;}
.yc9{bottom:406.601067pt;}
.ydf{bottom:410.601067pt;}
.y13d{bottom:411.601067pt;}
.y1a8{bottom:415.934667pt;}
.y118{bottom:416.466667pt;}
.y1c7{bottom:417.267733pt;}
.y23f{bottom:417.601067pt;}
.y277{bottom:420.934400pt;}
.ya4{bottom:422.601067pt;}
.y1a5{bottom:423.601067pt;}
.yc8{bottom:423.934400pt;}
.yde{bottom:427.934400pt;}
.y117{bottom:428.466667pt;}
.y13c{bottom:428.934400pt;}
.ye{bottom:430.990669pt;}
.y23e{bottom:432.267733pt;}
.y1c6{bottom:434.601067pt;}
.y276{bottom:435.601067pt;}
.y33{bottom:439.401334pt;}
.y1a4{bottom:439.601067pt;}
.ya3{bottom:439.934400pt;}
.y116{bottom:440.466667pt;}
.yc7{bottom:441.267733pt;}
.ydd{bottom:445.267733pt;}
.y13b{bottom:446.267733pt;}
.y213{bottom:446.601067pt;}
.y23d{bottom:446.934400pt;}
.yd{bottom:446.990669pt;}
.y275{bottom:450.267733pt;}
.y1a3{bottom:451.601067pt;}
.y1c5{bottom:451.934400pt;}
.y115{bottom:452.466667pt;}
.ya2{bottom:457.267733pt;}
.yc6{bottom:458.601067pt;}
.y23c{bottom:461.601067pt;}
.y84{bottom:461.634400pt;}
.yc{bottom:462.990669pt;}
.y13a{bottom:463.601067pt;}
.y114{bottom:464.466667pt;}
.y274{bottom:464.934400pt;}
.y1c4{bottom:469.267733pt;}
.y212{bottom:470.601067pt;}
.ydc{bottom:471.934400pt;}
.y1d6{bottom:473.267733pt;}
.y83{bottom:473.634400pt;}
.ya1{bottom:474.601067pt;}
.y1a2{bottom:475.601067pt;}
.yc5{bottom:475.934400pt;}
.y23b{bottom:476.267733pt;}
.y113{bottom:476.466667pt;}
.yb{bottom:478.990666pt;}
.y273{bottom:479.601067pt;}
.y139{bottom:480.934400pt;}
.y57{bottom:482.601067pt;}
.y82{bottom:485.634400pt;}
.y111{bottom:487.133333pt;}
.y1a1{bottom:487.601067pt;}
.y1d5{bottom:490.601067pt;}
.y23a{bottom:490.934400pt;}
.ya0{bottom:491.934400pt;}
.y110{bottom:492.466667pt;}
.yc4{bottom:493.267733pt;}
.y272{bottom:494.267733pt;}
.ya{bottom:494.990666pt;}
.y56{bottom:495.934400pt;}
.y81{bottom:497.634400pt;}
.y138{bottom:498.267733pt;}
.ydb{bottom:498.601067pt;}
.y32{bottom:499.206667pt;}
.y1a0{bottom:499.601067pt;}
.yf1{bottom:501.267733pt;}
.y239{bottom:505.601067pt;}
.y1d4{bottom:507.934400pt;}
.y271{bottom:508.934400pt;}
.y55{bottom:509.267733pt;}
.y80{bottom:509.634400pt;}
.yc3{bottom:510.601067pt;}
.y19f{bottom:511.601067pt;}
.y10f{bottom:511.800000pt;}
.y211{bottom:514.601067pt;}
.y238{bottom:520.267733pt;}
.y54{bottom:522.601067pt;}
.y19e{bottom:523.601067pt;}
.y137{bottom:524.934400pt;}
.y1d3{bottom:525.267733pt;}
.y9f{bottom:526.601067pt;}
.yc2{bottom:527.934400pt;}
.y210{bottom:529.267733pt;}
.y31{bottom:529.740001pt;}
.y7f{bottom:529.967733pt;}
.y237{bottom:534.934400pt;}
.y19d{bottom:535.601067pt;}
.y53{bottom:535.934400pt;}
.y270{bottom:538.267733pt;}
.y1c3{bottom:541.267733pt;}
.y7e{bottom:541.967733pt;}
.y1d2{bottom:542.601067pt;}
.y30{bottom:543.073335pt;}
.y9e{bottom:543.934400pt;}
.yc1{bottom:545.267733pt;}
.y10e{bottom:547.434400pt;}
.y19c{bottom:547.601067pt;}
.y52{bottom:549.267733pt;}
.y236{bottom:549.601067pt;}
.y26f{bottom:552.934400pt;}
.y7d{bottom:553.967733pt;}
.y2f{bottom:556.406667pt;}
.y1c2{bottom:558.601067pt;}
.y19b{bottom:559.601067pt;}
.y1d1{bottom:559.934400pt;}
.y9d{bottom:561.267733pt;}
.y51{bottom:562.601067pt;}
.y235{bottom:564.267733pt;}
.y10d{bottom:564.767733pt;}
.y7c{bottom:565.967733pt;}
.y26e{bottom:567.601067pt;}
.y20f{bottom:567.934400pt;}
.y136{bottom:570.267733pt;}
.y19a{bottom:571.601067pt;}
.y9{bottom:573.786667pt;}
.y50{bottom:575.934400pt;}
.y7b{bottom:577.967733pt;}
.y9c{bottom:578.601067pt;}
.y234{bottom:578.934400pt;}
.yc0{bottom:579.934400pt;}
.y10c{bottom:582.101067pt;}
.y26d{bottom:582.267733pt;}
.y199{bottom:583.601067pt;}
.y135{bottom:587.601067pt;}
.y4f{bottom:589.267733pt;}
.y7a{bottom:589.967733pt;}
.y8{bottom:592.685334pt;}
.y1c1{bottom:593.267733pt;}
.y233{bottom:593.601067pt;}
.y1ff{bottom:593.934400pt;}
.y198{bottom:595.601067pt;}
.y9b{bottom:595.934400pt;}
.y26c{bottom:596.934400pt;}
.ybf{bottom:597.267733pt;}
.y10b{bottom:599.434400pt;}
.y79{bottom:601.967733pt;}
.y4e{bottom:602.601067pt;}
.y1fe{bottom:605.601067pt;}
.y197{bottom:607.601067pt;}
.y232{bottom:608.267733pt;}
.y1c0{bottom:610.601067pt;}
.y26b{bottom:611.601067pt;}
.y20e{bottom:611.934400pt;}
.y9a{bottom:613.267733pt;}
.ybe{bottom:614.601067pt;}
.y4d{bottom:615.934400pt;}
.y10a{bottom:616.767733pt;}
.y196{bottom:619.601067pt;}
.y1fd{bottom:621.601067pt;}
.y78{bottom:622.201067pt;}
.y231{bottom:622.934400pt;}
.y1a7{bottom:623.934667pt;}
.y166{bottom:626.267733pt;}
.y1bf{bottom:627.934400pt;}
.y2e{bottom:628.726665pt;}
.y4c{bottom:629.267733pt;}
.y99{bottom:630.601067pt;}
.y195{bottom:631.601067pt;}
.ybd{bottom:631.934400pt;}
.y1fc{bottom:632.934667pt;}
.y109{bottom:634.101067pt;}
.y77{bottom:634.201067pt;}
.y230{bottom:637.601067pt;}
.y165{bottom:638.267733pt;}
.y26a{bottom:640.934400pt;}
.y4b{bottom:642.601067pt;}
.y194{bottom:643.601067pt;}
.y1be{bottom:645.267733pt;}
.y7{bottom:645.598667pt;}
.y76{bottom:646.201067pt;}
.y20d{bottom:646.601067pt;}
.y98{bottom:647.934400pt;}
.ybc{bottom:649.267733pt;}
.y164{bottom:650.267733pt;}
.y108{bottom:651.434400pt;}
.y22f{bottom:652.267733pt;}
.y2d{bottom:655.393332pt;}
.y193{bottom:655.601067pt;}
.y4a{bottom:655.934400pt;}
.y1fb{bottom:657.601067pt;}
.y75{bottom:658.201067pt;}
.y163{bottom:662.267733pt;}
.y1bd{bottom:662.601067pt;}
.y20c{bottom:663.934400pt;}
.y97{bottom:665.267733pt;}
.ybb{bottom:666.601067pt;}
.y22e{bottom:666.934400pt;}
.y192{bottom:667.601067pt;}
.y107{bottom:668.767733pt;}
.y3{bottom:668.977329pt;}
.y49{bottom:669.267733pt;}
.y1fa{bottom:669.601067pt;}
.y74{bottom:670.201067pt;}
.y269{bottom:670.267733pt;}
.y2c{bottom:671.393332pt;}
.y162{bottom:678.267733pt;}
.y191{bottom:679.601067pt;}
.y20b{bottom:681.267733pt;}
.y1f9{bottom:681.601067pt;}
.y73{bottom:682.201067pt;}
.y48{bottom:682.601067pt;}
.yba{bottom:683.934400pt;}
.y268{bottom:684.934400pt;}
.y2b{bottom:687.393332pt;}
.y1bc{bottom:689.267733pt;}
.y190{bottom:691.601067pt;}
.y72{bottom:694.201067pt;}
.y161{bottom:694.934400pt;}
.y47{bottom:695.934400pt;}
.y22d{bottom:696.267733pt;}
.y1f8{bottom:698.267733pt;}
.y20a{bottom:698.601067pt;}
.y267{bottom:699.601067pt;}
.y96{bottom:699.934400pt;}
.yb9{bottom:701.267733pt;}
.y2a{bottom:703.393332pt;}
.y18f{bottom:703.601067pt;}
.y46{bottom:709.267733pt;}
.y106{bottom:710.101067pt;}
.y22c{bottom:710.934400pt;}
.y1f7{bottom:714.267733pt;}
.y71{bottom:714.434400pt;}
.y18e{bottom:715.601067pt;}
.y209{bottom:715.934400pt;}
.y95{bottom:717.267733pt;}
.y45{bottom:722.601067pt;}
.y22b{bottom:725.601067pt;}
.y70{bottom:726.434400pt;}
.y105{bottom:727.434400pt;}
.y18d{bottom:727.601067pt;}
.yb8{bottom:727.934400pt;}
.y266{bottom:728.934400pt;}
.y208{bottom:733.267733pt;}
.y94{bottom:734.601067pt;}
.y44{bottom:735.934400pt;}
.y6f{bottom:738.434400pt;}
.y18c{bottom:739.601067pt;}
.y22a{bottom:740.267733pt;}
.y160{bottom:741.101067pt;}
.y265{bottom:743.601067pt;}
.y104{bottom:744.767733pt;}
.y43{bottom:749.267733pt;}
.y29{bottom:750.034669pt;}
.y6e{bottom:750.434400pt;}
.y207{bottom:750.601067pt;}
.y18b{bottom:751.601067pt;}
.y93{bottom:751.934400pt;}
.y15f{bottom:753.101067pt;}
.y229{bottom:754.934400pt;}
.y1f6{bottom:756.101067pt;}
.y264{bottom:758.267733pt;}
.y103{bottom:762.101067pt;}
.y18a{bottom:763.601067pt;}
.y15e{bottom:765.101067pt;}
.y92{bottom:769.267733pt;}
.y228{bottom:769.601067pt;}
.y1f5{bottom:772.101067pt;}
.y263{bottom:772.934400pt;}
.y189{bottom:775.601067pt;}
.y15d{bottom:777.101067pt;}
.y206{bottom:777.267733pt;}
.y102{bottom:779.434400pt;}
.y2{bottom:781.661334pt;}
.y1f4{bottom:784.101067pt;}
.y227{bottom:784.267733pt;}
.y91{bottom:786.601067pt;}
.y188{bottom:787.601067pt;}
.y15c{bottom:789.101067pt;}
.y42{bottom:790.934400pt;}
.y1f3{bottom:796.101067pt;}
.y101{bottom:796.767733pt;}
.y226{bottom:798.934400pt;}
.y187{bottom:799.601067pt;}
.y15b{bottom:801.101067pt;}
.y262{bottom:802.267733pt;}
.y90{bottom:803.934400pt;}
.y28{bottom:806.613333pt;}
.y1f2{bottom:808.101067pt;}
.y41{bottom:808.227733pt;}
.y186{bottom:811.601067pt;}
.y15a{bottom:813.101067pt;}
.y225{bottom:813.601067pt;}
.y261{bottom:816.934400pt;}
.y205{bottom:819.934400pt;}
.y1f1{bottom:820.101067pt;}
.y8f{bottom:821.267733pt;}
.y185{bottom:823.601067pt;}
.y159{bottom:825.101067pt;}
.y40{bottom:828.267733pt;}
.y260{bottom:831.601067pt;}
.y1f0{bottom:832.101067pt;}
.y183{bottom:834.268000pt;}
.y27{bottom:834.613333pt;}
.y158{bottom:837.101067pt;}
.y204{bottom:837.267733pt;}
.y100{bottom:838.101067pt;}
.y8e{bottom:838.601067pt;}
.y182{bottom:839.601067pt;}
.y224{bottom:842.934400pt;}
.y1ef{bottom:844.101067pt;}
.y25f{bottom:846.267733pt;}
.y157{bottom:849.101067pt;}
.y203{bottom:854.601067pt;}
.yff{bottom:855.434400pt;}
.y8d{bottom:855.934400pt;}
.y1ee{bottom:856.101067pt;}
.y223{bottom:857.601067pt;}
.y181{bottom:858.934400pt;}
.y1{bottom:859.312000pt;}
.y25e{bottom:860.934400pt;}
.y156{bottom:861.101067pt;}
.y26{bottom:862.613333pt;}
.y3f{bottom:862.934400pt;}
.y1ed{bottom:868.101067pt;}
.y202{bottom:871.934400pt;}
.y222{bottom:872.267733pt;}
.yfe{bottom:872.767733pt;}
.y155{bottom:873.101067pt;}
.y8c{bottom:873.267733pt;}
.y180{bottom:874.934400pt;}
.y25d{bottom:875.601067pt;}
.y1ec{bottom:880.101067pt;}
.y1a6{bottom:883.934667pt;}
.y3e{bottom:884.267733pt;}
.y154{bottom:885.101067pt;}
.y221{bottom:886.934400pt;}
.y201{bottom:889.267733pt;}
.yfd{bottom:890.101067pt;}
.y25c{bottom:890.267733pt;}
.y8b{bottom:890.601067pt;}
.y1eb{bottom:892.101067pt;}
.y153{bottom:897.101067pt;}
.y1ea{bottom:904.101067pt;}
.y25b{bottom:904.934400pt;}
.y3d{bottom:905.601067pt;}
.yfc{bottom:907.434400pt;}
.y8a{bottom:907.934400pt;}
.y152{bottom:909.101067pt;}
.y220{bottom:910.934400pt;}
.y200{bottom:915.934400pt;}
.y1e9{bottom:916.101067pt;}
.y1bb{bottom:918.601333pt;}
.y25a{bottom:919.601067pt;}
.y25{bottom:920.485335pt;}
.y151{bottom:921.101067pt;}
.y17f{bottom:921.434400pt;}
.yfb{bottom:924.767733pt;}
.y89{bottom:925.267733pt;}
.y1e8{bottom:928.101067pt;}
.y3a{bottom:931.121067pt;}
.y150{bottom:933.101067pt;}
.y17e{bottom:933.434400pt;}
.y259{bottom:934.267733pt;}
.yfa{bottom:942.101067pt;}
.y88{bottom:942.601067pt;}
.y1e7{bottom:944.434400pt;}
.y14f{bottom:945.101067pt;}
.y17d{bottom:945.434400pt;}
.y258{bottom:948.934400pt;}
.y21f{bottom:952.267733pt;}
.yf9{bottom:959.434400pt;}
.y87{bottom:959.934400pt;}
.y14e{bottom:961.101067pt;}
.y6a{bottom:963.362000pt;}
.y257{bottom:963.601067pt;}
.y3c{bottom:975.473733pt;}
.y21e{bottom:976.267733pt;}
.yf8{bottom:976.767733pt;}
.y86{bottom:977.267733pt;}
.y14d{bottom:977.767733pt;}
.y256{bottom:978.267733pt;}
.y3b{bottom:987.473733pt;}
.yb5{bottom:1014.433867pt;}
.y85{bottom:1014.500533pt;}
.y24{bottom:1035.664002pt;}
.h2b{height:16.000000pt;}
.h22{height:16.001333pt;}
.h16{height:22.308000pt;}
.h24{height:24.000000pt;}
.h1b{height:26.693333pt;}
.h18{height:28.000000pt;}
.h7{height:28.560000pt;}
.h13{height:28.600000pt;}
.h23{height:30.333454pt;}
.h1d{height:30.506667pt;}
.h1c{height:30.762667pt;}
.hb{height:32.645833pt;}
.h1f{height:33.080000pt;}
.h2a{height:33.909333pt;}
.h17{height:34.320000pt;}
.h1e{height:35.285333pt;}
.h21{height:36.226667pt;}
.hf{height:36.726562pt;}
.h27{height:36.746667pt;}
.h2c{height:37.031250pt;}
.h25{height:37.333333pt;}
.h28{height:37.866667pt;}
.h26{height:37.916817pt;}
.h19{height:39.696000pt;}
.h20{height:40.376000pt;}
.h6{height:40.800000pt;}
.he{height:40.807292pt;}
.h1a{height:42.298667pt;}
.h3{height:42.840000pt;}
.h12{height:44.106667pt;}
.h29{height:46.773333pt;}
.h15{height:48.582800pt;}
.h2{height:48.960000pt;}
.hd{height:48.968750pt;}
.h14{height:53.834667pt;}
.ha{height:61.210938pt;}
.h5{height:69.360000pt;}
.hc{height:73.440000pt;}
.h4{height:105.826671pt;}
.h11{height:1058.000000pt;}
.h10{height:1058.268000pt;}
.h9{height:1110.666667pt;}
.h8{height:1110.720000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w6{width:6.120000pt;}
.wb{width:70.848000pt;}
.w7{width:80.448000pt;}
.w9{width:80.568000pt;}
.wa{width:157.997333pt;}
.wc{width:161.490667pt;}
.w8{width:237.116000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w5{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:845.760000pt;}
.w4{width:846.000000pt;}
.x0{left:0.000000pt;}
.x14{left:4.451200pt;}
.x20{left:25.650800pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xa{left:96.133200pt;}
.x1d{left:99.784000pt;}
.x47{left:109.333333pt;}
.xb{left:112.099867pt;}
.x6{left:129.466667pt;}
.x39{left:162.263067pt;}
.x2a{left:168.184000pt;}
.x5{left:170.560000pt;}
.x7{left:175.733333pt;}
.x3e{left:177.766800pt;}
.x11{left:178.700800pt;}
.x4{left:180.874667pt;}
.x28{left:196.061200pt;}
.x9{left:203.327991pt;}
.x44{left:207.487067pt;}
.x10{left:233.700800pt;}
.x35{left:236.526133pt;}
.x19{left:239.000000pt;}
.x1a{left:241.788667pt;}
.x36{left:249.859467pt;}
.x45{left:255.641867pt;}
.x3f{left:257.678000pt;}
.x8{left:260.969328pt;}
.x13{left:264.195200pt;}
.x3d{left:267.533600pt;}
.x15{left:276.061867pt;}
.x40{left:285.472933pt;}
.x27{left:304.122533pt;}
.xe{left:309.598667pt;}
.x1b{left:310.798667pt;}
.xf{left:315.718267pt;}
.x1c{left:316.918267pt;}
.x3a{left:329.382400pt;}
.x37{left:331.915600pt;}
.x12{left:337.804000pt;}
.x38{left:340.971467pt;}
.x2d{left:394.434667pt;}
.x2e{left:397.101333pt;}
.x3{left:404.408000pt;}
.x1e{left:421.594667pt;}
.x1f{left:437.245467pt;}
.x2b{left:448.352400pt;}
.x16{left:457.824000pt;}
.x2f{left:460.697733pt;}
.x17{left:461.607600pt;}
.x30{left:463.364400pt;}
.x18{left:473.474267pt;}
.x3b{left:475.028267pt;}
.x25{left:486.123867pt;}
.x21{left:492.045467pt;}
.x29{left:502.378267pt;}
.x46{left:506.250667pt;}
.xd{left:507.508000pt;}
.x42{left:512.476400pt;}
.x43{left:521.254800pt;}
.x31{left:526.960800pt;}
.x32{left:529.627467pt;}
.x22{left:555.890667pt;}
.x23{left:559.674933pt;}
.x41{left:567.203067pt;}
.x24{left:571.541600pt;}
.xc{left:577.800667pt;}
.x33{left:587.731600pt;}
.x34{left:596.860933pt;}
.x26{left:643.073067pt;}
.x3c{left:652.220267pt;}
.x2c{left:659.972133pt;}
}




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