
    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_ddbecd28dbd508cfccf30af3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.165000;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_95de52e9e4c03f131f82cff1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.148000;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_6b148ff573fc3ae81191f650.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.166000;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_05c445e597e8627266bea40b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.165000;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_3a1cf51a30b0c0a85598a4cb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.184000;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_494df719b03b53f24bf8f9a1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.200900;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_0158b52e05017e660488a123.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040048;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_eea72b88f48b449bc004f941.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.165000;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_05c445e597e8627266bea40b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.165000;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_49ef2281673a7e467a81dbff.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.184000;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.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.248111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248111,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.248282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248282,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248405,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.248411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248411,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.248416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248416,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248755,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.248789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248789,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.248820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248820,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248877,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249077,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249189,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.249205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249205,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249207,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249232,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249252,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249282,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.249352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249352,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.249413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249413,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.249434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249434,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.249611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249611,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249620,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.249726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249726,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.249729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249729,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.249784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249784,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249795,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249814,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249884,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249908,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249984,0.000000,0.000000,0.250000,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);}
.m3c{transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250088,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250089,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.250127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250127,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.250232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250232,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.250284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250284,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250373,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250398,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.250430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250430,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250448,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250477,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.250484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250484,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250614,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.250655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250655,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250673,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250907,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.251316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251316,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251348,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.251370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251370,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.251475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251475,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.252147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252147,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-21.978000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.977400px;}
.ls49{letter-spacing:-6.840000px;}
.ls3f{letter-spacing:-4.950000px;}
.ls48{letter-spacing:-3.990000px;}
.ls22{letter-spacing:-3.432000px;}
.ls19{letter-spacing:-3.300000px;}
.ls1c{letter-spacing:-2.304000px;}
.ls42{letter-spacing:-2.070000px;}
.ls41{letter-spacing:-1.530000px;}
.ls43{letter-spacing:-1.350000px;}
.ls1b{letter-spacing:-1.248000px;}
.ls1a{letter-spacing:-1.152000px;}
.ls3e{letter-spacing:-0.900000px;}
.ls24{letter-spacing:-0.480000px;}
.ls17{letter-spacing:-0.462000px;}
.ls40{letter-spacing:-0.450000px;}
.ls8{letter-spacing:-0.396000px;}
.ls18{letter-spacing:-0.330000px;}
.ls21{letter-spacing:-0.270000px;}
.ls1f{letter-spacing:-0.264000px;}
.ls7{letter-spacing:-0.228000px;}
.lsd{letter-spacing:-0.198000px;}
.ls4b{letter-spacing:-0.171000px;}
.ls9{letter-spacing:-0.132000px;}
.ls13{letter-spacing:-0.066000px;}
.ls20{letter-spacing:-0.060000px;}
.ls4a{letter-spacing:-0.057000px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000066px;}
.ls25{letter-spacing:0.033000px;}
.ls1e{letter-spacing:0.066000px;}
.ls3{letter-spacing:0.132000px;}
.lse{letter-spacing:0.198000px;}
.ls4{letter-spacing:0.240000px;}
.lsf{letter-spacing:0.264000px;}
.ls12{letter-spacing:0.270000px;}
.ls47{letter-spacing:0.285000px;}
.ls46{letter-spacing:0.347700px;}
.ls11{letter-spacing:0.360000px;}
.ls26{letter-spacing:0.363000px;}
.ls10{letter-spacing:0.396000px;}
.ls45{letter-spacing:0.456000px;}
.ls44{letter-spacing:0.513000px;}
.ls14{letter-spacing:0.540000px;}
.ls6{letter-spacing:0.600000px;}
.lsb{letter-spacing:0.660000px;}
.ls1{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.810000px;}
.lsc{letter-spacing:1.023000px;}
.lsa{letter-spacing:1.080000px;}
.ls0{letter-spacing:1.350000px;}
.ls23{letter-spacing:1.511400px;}
.ls1d{letter-spacing:2.323200px;}
.ls39{letter-spacing:89.325000px;}
.ls16{letter-spacing:103.440000px;}
.ls2b{letter-spacing:105.975000px;}
.ls32{letter-spacing:108.450000px;}
.ls2d{letter-spacing:109.125000px;}
.ls29{letter-spacing:109.305000px;}
.ls37{letter-spacing:109.530000px;}
.ls2f{letter-spacing:109.980000px;}
.ls31{letter-spacing:110.565000px;}
.ls2e{letter-spacing:112.050000px;}
.ls2c{letter-spacing:112.275000px;}
.ls28{letter-spacing:112.455000px;}
.ls30{letter-spacing:112.590000px;}
.ls27{letter-spacing:115.335000px;}
.ls33{letter-spacing:116.235000px;}
.ls38{letter-spacing:117.405000px;}
.ls3a{letter-spacing:118.395000px;}
.ls3c{letter-spacing:120.825000px;}
.ls35{letter-spacing:121.005000px;}
.ls3d{letter-spacing:121.185000px;}
.ls36{letter-spacing:121.230000px;}
.ls2a{letter-spacing:122.895000px;}
.ls3b{letter-spacing:126.450000px;}
.ls34{letter-spacing:127.620000px;}
.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;}
}
.wsf2{word-spacing:-135.900000px;}
.ws1{word-spacing:-16.632000px;}
.ws10e{word-spacing:-14.148000px;}
.ws85{word-spacing:-13.878000px;}
.ws0{word-spacing:-13.860000px;}
.ws52{word-spacing:-13.728000px;}
.ws39{word-spacing:-13.608000px;}
.ws3a{word-spacing:-13.530000px;}
.ws64{word-spacing:-13.398000px;}
.ws37{word-spacing:-13.338000px;}
.ws21{word-spacing:-13.068000px;}
.ws63{word-spacing:-12.870000px;}
.ws53{word-spacing:-12.738000px;}
.ws55{word-spacing:-12.600000px;}
.ws62{word-spacing:-12.528000px;}
.wsfa{word-spacing:-11.970000px;}
.ws70{word-spacing:-11.685000px;}
.wsfb{word-spacing:-11.115000px;}
.ws6f{word-spacing:-10.830000px;}
.ws54{word-spacing:-10.560000px;}
.ws3b{word-spacing:-9.840000px;}
.ws44{word-spacing:-9.360000px;}
.ws8f{word-spacing:-8.325000px;}
.ws2{word-spacing:-8.080380px;}
.ws109{word-spacing:-7.980000px;}
.wse1{word-spacing:-7.380000px;}
.ws49{word-spacing:-2.970000px;}
.wsa{word-spacing:-2.904000px;}
.ws6a{word-spacing:-2.838000px;}
.ws9{word-spacing:-2.772000px;}
.ws2b{word-spacing:-2.706000px;}
.wsf6{word-spacing:-2.640000px;}
.ws13{word-spacing:-2.520000px;}
.ws2a{word-spacing:-2.508000px;}
.ws7{word-spacing:-2.394000px;}
.ws29{word-spacing:-2.376000px;}
.ws10f{word-spacing:-2.337000px;}
.ws8d{word-spacing:-2.244000px;}
.ws5f{word-spacing:-2.178000px;}
.ws27{word-spacing:-2.112000px;}
.ws28{word-spacing:-2.046000px;}
.ws83{word-spacing:-1.980000px;}
.ws101{word-spacing:-1.914000px;}
.ws2e{word-spacing:-1.848000px;}
.ws100{word-spacing:-1.782000px;}
.ws31{word-spacing:-1.716000px;}
.ws5{word-spacing:-1.710000px;}
.ws19{word-spacing:-1.650000px;}
.wsf{word-spacing:-1.584000px;}
.wsfe{word-spacing:-1.518000px;}
.ws5a{word-spacing:-1.452000px;}
.ws7b{word-spacing:-1.386000px;}
.ws3{word-spacing:-1.350000px;}
.ws6d{word-spacing:-1.320000px;}
.ws7f{word-spacing:-1.254000px;}
.wsff{word-spacing:-1.188000px;}
.ws103{word-spacing:-1.140000px;}
.ws48{word-spacing:-1.122000px;}
.ws66{word-spacing:-1.056000px;}
.ws6c{word-spacing:-0.990000px;}
.ws10b{word-spacing:-0.741000px;}
.ws16{word-spacing:-0.720000px;}
.ws17{word-spacing:-0.660000px;}
.wse{word-spacing:-0.594000px;}
.ws107{word-spacing:-0.570000px;}
.wsfd{word-spacing:-0.528000px;}
.ws84{word-spacing:-0.480000px;}
.ws23{word-spacing:-0.462000px;}
.ws7a{word-spacing:-0.396000px;}
.ws25{word-spacing:-0.330000px;}
.ws7e{word-spacing:-0.264000px;}
.ws10c{word-spacing:-0.228000px;}
.ws106{word-spacing:-0.171000px;}
.ws8{word-spacing:-0.114000px;}
.ws57{word-spacing:-0.066000px;}
.ws4{word-spacing:0.000000px;}
.ws69{word-spacing:0.066000px;}
.ws12{word-spacing:0.120000px;}
.ws102{word-spacing:0.132000px;}
.ws1f{word-spacing:0.198000px;}
.ws32{word-spacing:0.264000px;}
.ws10a{word-spacing:0.285000px;}
.ws1e{word-spacing:0.330000px;}
.ws10{word-spacing:0.396000px;}
.ws8b{word-spacing:0.462000px;}
.ws59{word-spacing:0.528000px;}
.ws1a{word-spacing:0.594000px;}
.ws22{word-spacing:0.660000px;}
.ws50{word-spacing:0.672000px;}
.ws58{word-spacing:0.726000px;}
.ws30{word-spacing:0.792000px;}
.ws18{word-spacing:0.858000px;}
.wsf8{word-spacing:0.900000px;}
.ws6{word-spacing:0.912000px;}
.ws4e{word-spacing:0.924000px;}
.ws1d{word-spacing:0.969000px;}
.ws1c{word-spacing:1.056000px;}
.ws1b{word-spacing:1.122000px;}
.ws2d{word-spacing:1.188000px;}
.ws88{word-spacing:1.254000px;}
.ws56{word-spacing:1.452000px;}
.ws8a{word-spacing:1.584000px;}
.ws82{word-spacing:1.620000px;}
.ws4b{word-spacing:1.650000px;}
.ws24{word-spacing:1.716000px;}
.ws65{word-spacing:1.782000px;}
.wsb{word-spacing:1.980000px;}
.ws80{word-spacing:2.046000px;}
.wsfc{word-spacing:2.112000px;}
.ws67{word-spacing:2.178000px;}
.ws47{word-spacing:2.310000px;}
.ws5d{word-spacing:2.376000px;}
.ws81{word-spacing:2.442000px;}
.ws68{word-spacing:2.508000px;}
.ws5c{word-spacing:2.574000px;}
.ws4d{word-spacing:2.640000px;}
.ws20{word-spacing:2.706000px;}
.ws2f{word-spacing:2.772000px;}
.ws89{word-spacing:2.838000px;}
.ws87{word-spacing:2.904000px;}
.wsc{word-spacing:2.970000px;}
.wsf7{word-spacing:3.036000px;}
.ws7d{word-spacing:3.102000px;}
.ws4f{word-spacing:3.168000px;}
.ws35{word-spacing:3.180000px;}
.ws26{word-spacing:3.234000px;}
.ws2c{word-spacing:3.300000px;}
.ws33{word-spacing:3.366000px;}
.ws6b{word-spacing:3.432000px;}
.ws5e{word-spacing:3.498000px;}
.ws105{word-spacing:3.648000px;}
.ws4a{word-spacing:3.696000px;}
.ws60{word-spacing:3.762000px;}
.ws11{word-spacing:3.780000px;}
.ws61{word-spacing:3.828000px;}
.ws104{word-spacing:3.933000px;}
.ws14{word-spacing:4.140000px;}
.ws86{word-spacing:4.158000px;}
.ws34{word-spacing:4.200000px;}
.ws4c{word-spacing:4.290000px;}
.ws7c{word-spacing:4.422000px;}
.ws8c{word-spacing:4.488000px;}
.wsd{word-spacing:4.554000px;}
.ws5b{word-spacing:4.620000px;}
.wsf9{word-spacing:4.950000px;}
.ws10d{word-spacing:6.612000px;}
.wsb4{word-spacing:33.480000px;}
.wse3{word-spacing:39.645000px;}
.wsbf{word-spacing:41.400000px;}
.wsc5{word-spacing:43.470000px;}
.wsdd{word-spacing:44.010000px;}
.wsb6{word-spacing:44.460000px;}
.ws43{word-spacing:45.984000px;}
.ws9c{word-spacing:46.710000px;}
.wsc7{word-spacing:46.845000px;}
.wsc8{word-spacing:47.430000px;}
.wsdc{word-spacing:48.510000px;}
.wsb3{word-spacing:50.400000px;}
.wsa8{word-spacing:50.895000px;}
.wsd3{word-spacing:51.075000px;}
.ws99{word-spacing:51.750000px;}
.wsb5{word-spacing:52.605000px;}
.wsc1{word-spacing:52.695000px;}
.wsab{word-spacing:52.785000px;}
.wsd0{word-spacing:52.965000px;}
.wsbe{word-spacing:54.180000px;}
.ws9a{word-spacing:54.450000px;}
.wsa6{word-spacing:54.675000px;}
.wsa4{word-spacing:54.855000px;}
.wsb1{word-spacing:54.900000px;}
.wscf{word-spacing:54.990000px;}
.wsc2{word-spacing:55.035000px;}
.wsb9{word-spacing:55.440000px;}
.wsd7{word-spacing:56.610000px;}
.wsed{word-spacing:56.745000px;}
.wsb0{word-spacing:57.015000px;}
.wsbd{word-spacing:57.510000px;}
.ws9e{word-spacing:57.555000px;}
.wsda{word-spacing:57.735000px;}
.wse6{word-spacing:57.825000px;}
.wsc4{word-spacing:59.715000px;}
.wsbc{word-spacing:59.760000px;}
.wsd6{word-spacing:59.940000px;}
.wsa5{word-spacing:60.435000px;}
.ws9f{word-spacing:61.110000px;}
.ws95{word-spacing:61.605000px;}
.wsac{word-spacing:61.740000px;}
.wsaf{word-spacing:62.595000px;}
.wse9{word-spacing:64.305000px;}
.wsf0{word-spacing:64.890000px;}
.wse5{word-spacing:65.115000px;}
.wsec{word-spacing:65.160000px;}
.ws94{word-spacing:65.835000px;}
.ws9d{word-spacing:65.925000px;}
.wsa7{word-spacing:66.195000px;}
.wsb8{word-spacing:67.320000px;}
.wse2{word-spacing:67.770000px;}
.wsf3{word-spacing:67.905000px;}
.wsd2{word-spacing:67.995000px;}
.wsa0{word-spacing:68.625000px;}
.wscb{word-spacing:68.760000px;}
.ws9b{word-spacing:68.985000px;}
.wscc{word-spacing:70.335000px;}
.wsd9{word-spacing:71.415000px;}
.ws3d{word-spacing:72.048000px;}
.ws3f{word-spacing:75.600000px;}
.wsa3{word-spacing:76.500000px;}
.ws3e{word-spacing:77.616000px;}
.ws41{word-spacing:78.048000px;}
.wse8{word-spacing:78.165000px;}
.wsf5{word-spacing:79.875000px;}
.wscd{word-spacing:81.495000px;}
.wsc6{word-spacing:83.835000px;}
.wsd1{word-spacing:83.970000px;}
.wsef{word-spacing:84.465000px;}
.wsa9{word-spacing:85.005000px;}
.wsad{word-spacing:85.095000px;}
.ws40{word-spacing:85.776000px;}
.wsee{word-spacing:87.390000px;}
.wsaa{word-spacing:88.020000px;}
.ws97{word-spacing:88.200000px;}
.wsde{word-spacing:88.335000px;}
.wsea{word-spacing:89.010000px;}
.wsa1{word-spacing:89.190000px;}
.wse0{word-spacing:90.000000px;}
.wse4{word-spacing:90.315000px;}
.wsb7{word-spacing:91.530000px;}
.ws96{word-spacing:91.665000px;}
.wsf1{word-spacing:93.915000px;}
.wsa2{word-spacing:95.265000px;}
.wse7{word-spacing:96.120000px;}
.wsca{word-spacing:96.615000px;}
.wsb2{word-spacing:97.470000px;}
.ws92{word-spacing:97.740000px;}
.ws42{word-spacing:97.968000px;}
.wsd5{word-spacing:103.185000px;}
.wsd4{word-spacing:103.275000px;}
.wsc9{word-spacing:104.355000px;}
.wsc0{word-spacing:104.985000px;}
.ws71{word-spacing:105.600000px;}
.wsba{word-spacing:105.795000px;}
.ws93{word-spacing:105.840000px;}
.wsbb{word-spacing:105.930000px;}
.ws45{word-spacing:106.080000px;}
.ws90{word-spacing:106.245000px;}
.wsae{word-spacing:106.695000px;}
.wseb{word-spacing:106.875000px;}
.wsd8{word-spacing:107.730000px;}
.wsc3{word-spacing:109.260000px;}
.wsdf{word-spacing:110.205000px;}
.ws46{word-spacing:110.256000px;}
.wsce{word-spacing:110.475000px;}
.ws91{word-spacing:114.345000px;}
.wsf4{word-spacing:114.795000px;}
.wsdb{word-spacing:114.975000px;}
.ws98{word-spacing:117.765000px;}
.ws3c{word-spacing:133.008000px;}
.ws79{word-spacing:183.120000px;}
.ws74{word-spacing:184.080000px;}
.ws75{word-spacing:190.320000px;}
.ws72{word-spacing:192.528000px;}
.ws73{word-spacing:193.440000px;}
.ws76{word-spacing:193.872000px;}
.ws78{word-spacing:197.664000px;}
.ws77{word-spacing:316.896000px;}
.ws15{word-spacing:1888.327800px;}
.ws38{word-spacing:1891.999800px;}
.ws51{word-spacing:1892.377800px;}
.ws6e{word-spacing:1892.593800px;}
.ws36{word-spacing:1896.697800px;}
.ws110{word-spacing:1899.937800px;}
.ws8e{word-spacing:1905.823800px;}
.ws108{word-spacing:1912.573800px;}
._15{margin-left:-2619.756000px;}
._13{margin-left:-2618.676000px;}
._3{margin-left:-22.602000px;}
._f{margin-left:-17.694300px;}
._c{margin-left:-16.287900px;}
._12{margin-left:-14.778300px;}
._a{margin-left:-12.834300px;}
._9{margin-left:-10.863900px;}
._2{margin-left:-9.690000px;}
._5{margin-left:-8.419200px;}
._6{margin-left:-7.057800px;}
._b{margin-left:-5.644200px;}
._7{margin-left:-4.500000px;}
._4{margin-left:-2.810400px;}
._1{margin-left:-1.350000px;}
._0{width:1.080000px;}
._11{width:2.159700px;}
._8{width:3.984300px;}
._d{width:5.051460px;}
._34{width:6.979200px;}
._60{width:12.590700px;}
._37{width:41.400000px;}
._10{width:43.020000px;}
._36{width:45.060000px;}
._14{width:46.080000px;}
._e{width:47.700000px;}
._35{width:49.980000px;}
._21{width:55.104000px;}
._54{width:58.050000px;}
._59{width:60.345000px;}
._5d{width:61.695000px;}
._17{width:63.792000px;}
._5a{width:65.115000px;}
._4b{width:66.780000px;}
._58{width:69.165000px;}
._18{width:70.320000px;}
._46{width:71.910000px;}
._4c{width:73.485000px;}
._47{width:75.285000px;}
._5b{width:76.455000px;}
._50{width:77.460000px;}
._1a{width:79.392000px;}
._16{width:80.784000px;}
._19{width:82.704000px;}
._4e{width:84.141300px;}
._48{width:85.725000px;}
._2a{width:86.880000px;}
._22{width:88.248000px;}
._24{width:89.520000px;}
._49{width:90.710700px;}
._4f{width:92.607000px;}
._4d{width:93.876000px;}
._2b{width:95.088000px;}
._23{width:96.264000px;}
._52{width:97.560000px;}
._55{width:98.823000px;}
._1b{width:100.032000px;}
._4a{width:101.340000px;}
._32{width:102.528000px;}
._1d{width:104.352000px;}
._20{width:105.504000px;}
._51{width:106.524000px;}
._2c{width:107.616000px;}
._25{width:108.912300px;}
._1c{width:110.112000px;}
._2d{width:112.128000px;}
._53{width:113.966700px;}
._1e{width:115.008000px;}
._5e{width:116.540700px;}
._26{width:118.094400px;}
._56{width:119.589000px;}
._57{width:120.600000px;}
._5f{width:121.677600px;}
._2e{width:122.784000px;}
._5c{width:125.700300px;}
._33{width:127.728000px;}
._27{width:129.408000px;}
._2f{width:131.424000px;}
._29{width:137.664000px;}
._1f{width:139.056000px;}
._30{width:141.648000px;}
._31{width:159.504000px;}
._38{width:170.220000px;}
._28{width:171.440400px;}
._3e{width:213.072000px;}
._45{width:217.488000px;}
._3a{width:220.608000px;}
._42{width:223.728000px;}
._3b{width:239.376000px;}
._44{width:241.104000px;}
._3f{width:245.424000px;}
._43{width:250.032000px;}
._3c{width:257.376000px;}
._40{width:262.704000px;}
._3d{width:318.938400px;}
._41{width:320.330400px;}
._39{width:322.058400px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.478000px;}
.fs9{font-size:45.000000px;}
.fs8{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:78.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.yf0{bottom:89.716500px;}
.y1e{bottom:89.716650px;}
.y69{bottom:89.722050px;}
.ybb{bottom:89.724750px;}
.y8c{bottom:97.372500px;}
.y54{bottom:99.863700px;}
.y105{bottom:100.999800px;}
.y58{bottom:107.431050px;}
.y1d{bottom:107.716650px;}
.yef{bottom:109.700850px;}
.y68{bottom:109.703550px;}
.yba{bottom:109.706250px;}
.y8b{bottom:115.370250px;}
.y104{bottom:118.997550px;}
.y57{bottom:125.428800px;}
.y1c{bottom:125.716650px;}
.y67{bottom:129.685050px;}
.y2e{bottom:129.687750px;}
.yee{bottom:129.696600px;}
.y1b{bottom:143.716650px;}
.y2d{bottom:149.669250px;}
.yed{bottom:149.675100px;}
.y1a{bottom:161.716650px;}
.y2c{bottom:169.653600px;}
.y66{bottom:169.661850px;}
.y10a{bottom:170.233800px;}
.y19{bottom:179.716650px;}
.y109{bottom:188.233800px;}
.y2b{bottom:189.637800px;}
.y65{bottom:189.643350px;}
.y108{bottom:206.233800px;}
.y2a{bottom:209.622000px;}
.y81{bottom:209.624850px;}
.yb6{bottom:209.633100px;}
.y107{bottom:224.233800px;}
.y64{bottom:229.606350px;}
.y29{bottom:229.614600px;}
.y63{bottom:249.590550px;}
.y28{bottom:249.596100px;}
.y53{bottom:249.601650px;}
.y99{bottom:249.612600px;}
.yb9{bottom:249.891900px;}
.yec{bottom:251.574900px;}
.yb8{bottom:267.889650px;}
.y18{bottom:269.574900px;}
.y27{bottom:269.577600px;}
.y80{bottom:269.580300px;}
.y52{bottom:269.583150px;}
.y98{bottom:269.594100px;}
.yb7{bottom:285.887400px;}
.y17{bottom:289.559100px;}
.y7f{bottom:289.561800px;}
.y51{bottom:289.564650px;}
.y26{bottom:289.575600px;}
.y62{bottom:309.543300px;}
.y50{bottom:309.546150px;}
.y16{bottom:309.551550px;}
.y25{bottom:309.557100px;}
.ydf{bottom:316.757700px;}
.y4f{bottom:329.527650px;}
.yb5{bottom:329.530350px;}
.y15{bottom:329.533050px;}
.yeb{bottom:329.535900px;}
.y24{bottom:329.538600px;}
.yde{bottom:338.020200px;}
.y4e{bottom:349.511850px;}
.y14{bottom:349.514550px;}
.y7e{bottom:349.517400px;}
.y23{bottom:349.520100px;}
.y61{bottom:350.352600px;}
.ydd{bottom:359.282700px;}
.y60{bottom:368.350350px;}
.y13{bottom:369.496050px;}
.y7d{bottom:369.498900px;}
.y22{bottom:369.501600px;}
.y4d{bottom:369.512700px;}
.ydc{bottom:380.545200px;}
.y5f{bottom:386.348100px;}
.y12{bottom:389.480400px;}
.y97{bottom:389.483100px;}
.y4c{bottom:389.494200px;}
.ydb{bottom:401.807700px;}
.y5e{bottom:404.345850px;}
.y21{bottom:409.464600px;}
.y11{bottom:409.467450px;}
.y4b{bottom:409.475700px;}
.yda{bottom:423.070200px;}
.y10{bottom:429.448950px;}
.y96{bottom:429.451650px;}
.y7c{bottom:429.454350px;}
.y4a{bottom:429.457200px;}
.yb4{bottom:429.459900px;}
.y76{bottom:433.057050px;}
.yd9{bottom:444.332700px;}
.yf{bottom:449.433150px;}
.y7b{bottom:449.435850px;}
.y49{bottom:449.438700px;}
.y95{bottom:449.441400px;}
.y75{bottom:454.321050px;}
.yd8{bottom:465.595200px;}
.ye{bottom:469.417350px;}
.y94{bottom:469.422900px;}
.y74{bottom:475.585050px;}
.y56{bottom:483.545550px;}
.yd7{bottom:486.857700px;}
.y48{bottom:489.401700px;}
.y93{bottom:489.404400px;}
.y73{bottom:496.849050px;}
.y55{bottom:501.543300px;}
.yd6{bottom:508.120200px;}
.yd{bottom:509.385900px;}
.y10d{bottom:513.726450px;}
.y72{bottom:518.113050px;}
.y7a{bottom:519.025950px;}
.yd5{bottom:529.333350px;}
.y8a{bottom:529.370100px;}
.y10c{bottom:531.724200px;}
.y79{bottom:537.023700px;}
.y20{bottom:537.374550px;}
.y71{bottom:539.377050px;}
.y89{bottom:549.354450px;}
.y92{bottom:549.357150px;}
.y47{bottom:549.362700px;}
.y10b{bottom:549.721950px;}
.yd4{bottom:550.595850px;}
.y1f{bottom:555.372300px;}
.yb3{bottom:569.338650px;}
.y46{bottom:569.344200px;}
.y91{bottom:569.346900px;}
.yd3{bottom:571.858350px;}
.y5d{bottom:588.840600px;}
.yb2{bottom:589.322850px;}
.y45{bottom:589.325700px;}
.y90{bottom:589.328400px;}
.yd2{bottom:593.120850px;}
.y5c{bottom:606.838350px;}
.y88{bottom:609.307200px;}
.y44{bottom:609.309900px;}
.yd1{bottom:614.383350px;}
.y5b{bottom:624.836100px;}
.y43{bottom:629.291400px;}
.yd0{bottom:635.645850px;}
.y5a{bottom:642.833850px;}
.y42{bottom:649.275600px;}
.ycf{bottom:656.908350px;}
.y87{bottom:669.259950px;}
.y41{bottom:669.262650px;}
.yb1{bottom:669.265350px;}
.y70{bottom:670.139850px;}
.yce{bottom:678.170850px;}
.yc{bottom:682.523550px;}
.y40{bottom:689.244150px;}
.yb0{bottom:689.246850px;}
.y6f{bottom:691.403850px;}
.ycd{bottom:699.433350px;}
.yb{bottom:700.523550px;}
.yfe{bottom:709.135200px;}
.y3f{bottom:709.228350px;}
.y6e{bottom:712.667850px;}
.ycc{bottom:720.695850px;}
.yfd{bottom:727.132950px;}
.y3e{bottom:729.212700px;}
.yea{bottom:729.223650px;}
.y8f{bottom:730.009950px;}
.y6d{bottom:733.931850px;}
.y106{bottom:735.532950px;}
.ycb{bottom:741.958350px;}
.yfc{bottom:745.130700px;}
.y8e{bottom:748.007700px;}
.y3d{bottom:749.196900px;}
.ye9{bottom:749.205150px;}
.yaf{bottom:749.227200px;}
.y6c{bottom:753.311850px;}
.yfb{bottom:763.128450px;}
.yca{bottom:763.220850px;}
.y8d{bottom:766.005450px;}
.y6b{bottom:768.311850px;}
.y3c{bottom:769.181250px;}
.ye8{bottom:769.186650px;}
.yae{bottom:769.208700px;}
.ya{bottom:773.801250px;}
.yc9{bottom:784.483350px;}
.y6a{bottom:787.691850px;}
.y3b{bottom:789.165450px;}
.y86{bottom:789.168150px;}
.yad{bottom:789.190200px;}
.y9{bottom:791.799000px;}
.ya3{bottom:798.745200px;}
.yfa{bottom:799.123950px;}
.y103{bottom:799.138200px;}
.yc8{bottom:805.745850px;}
.y3a{bottom:809.149650px;}
.ye7{bottom:809.166150px;}
.yac{bottom:809.171700px;}
.y8{bottom:809.799000px;}
.yf9{bottom:817.121700px;}
.y102{bottom:817.135950px;}
.ya2{bottom:824.257200px;}
.yc7{bottom:827.008350px;}
.y7{bottom:827.801250px;}
.y85{bottom:829.134000px;}
.y39{bottom:829.142100px;}
.ye6{bottom:829.147650px;}
.yab{bottom:829.153200px;}
.yf8{bottom:835.119450px;}
.y101{bottom:835.133700px;}
.y6{bottom:845.799000px;}
.yc6{bottom:848.270850px;}
.y38{bottom:849.123600px;}
.ye5{bottom:849.129150px;}
.y84{bottom:849.131850px;}
.yaa{bottom:849.134700px;}
.ya1{bottom:849.769200px;}
.yf7{bottom:853.117200px;}
.y100{bottom:853.131450px;}
.y5{bottom:863.799000px;}
.y37{bottom:869.105100px;}
.ye4{bottom:869.110650px;}
.y83{bottom:869.113350px;}
.ya9{bottom:869.116200px;}
.yc5{bottom:869.533350px;}
.yf6{bottom:871.114950px;}
.yff{bottom:871.129200px;}
.ya0{bottom:875.281200px;}
.y36{bottom:889.086600px;}
.ye3{bottom:889.092150px;}
.ya8{bottom:889.097700px;}
.yc4{bottom:890.795850px;}
.y9f{bottom:900.793200px;}
.y35{bottom:909.070950px;}
.ye2{bottom:909.073650px;}
.y82{bottom:909.076350px;}
.ya7{bottom:909.079200px;}
.yc3{bottom:912.058350px;}
.y9e{bottom:926.305200px;}
.y34{bottom:929.055150px;}
.y59{bottom:929.057850px;}
.ya6{bottom:929.060700px;}
.yf5{bottom:929.083950px;}
.yc2{bottom:933.320850px;}
.y33{bottom:949.039350px;}
.ya5{bottom:949.042200px;}
.yf4{bottom:949.062450px;}
.y9d{bottom:951.817200px;}
.y4{bottom:954.082650px;}
.yc1{bottom:954.583350px;}
.y32{bottom:969.023700px;}
.ye1{bottom:969.029100px;}
.y78{bottom:969.031950px;}
.yf3{bottom:969.040950px;}
.yc0{bottom:975.845850px;}
.y9c{bottom:977.329200px;}
.y31{bottom:989.007900px;}
.ye0{bottom:989.010600px;}
.y77{bottom:989.013450px;}
.yf2{bottom:989.019450px;}
.ybf{bottom:997.108350px;}
.y3{bottom:997.585350px;}
.y9b{bottom:1002.841200px;}
.ya4{bottom:1008.992100px;}
.y30{bottom:1008.994950px;}
.yf1{bottom:1008.997950px;}
.ybc{bottom:1014.107100px;}
.ybe{bottom:1017.245850px;}
.y2{bottom:1026.094350px;}
.y9a{bottom:1028.353200px;}
.y2f{bottom:1028.976450px;}
.ybd{bottom:1032.242100px;}
.y1{bottom:1082.225850px;}
.h10{height:40.500000px;}
.hf{height:41.130000px;}
.he{height:43.200000px;}
.hd{height:43.872000px;}
.h2{height:50.868000px;}
.h6{height:51.300000px;}
.ha{height:52.098000px;}
.h9{height:54.000000px;}
.h5{height:55.560000px;}
.h8{height:59.400000px;}
.hc{height:60.324000px;}
.hb{height:62.172000px;}
.h7{height:66.672000px;}
.h4{height:73.476000px;}
.h3{height:94.452000px;}
.h0{height:1148.031000px;}
.h1{height:1148.250000px;}
.w1{width:807.750000px;}
.w0{width:807.874500px;}
.x0{left:0.000000px;}
.x7{left:70.899300px;}
.x5{left:72.283500px;}
.x35{left:73.359450px;}
.x2{left:77.197650px;}
.x31{left:79.354800px;}
.x1{left:80.787450px;}
.x32{left:82.842300px;}
.x33{left:84.589500px;}
.x1c{left:90.804000px;}
.x8{left:92.950950px;}
.x6{left:94.405500px;}
.x1b{left:96.660000px;}
.x1f{left:98.961000px;}
.xc{left:100.116000px;}
.x3{left:101.123850px;}
.x4{left:102.350250px;}
.xd{left:108.348000px;}
.x1d{left:122.700000px;}
.x24{left:131.374800px;}
.x30{left:140.532300px;}
.x25{left:142.726050px;}
.xe{left:182.988000px;}
.xf{left:187.392000px;}
.x21{left:195.073950px;}
.x26{left:217.819800px;}
.x23{left:227.785950px;}
.x22{left:228.853950px;}
.xb{left:231.384000px;}
.x1e{left:234.693000px;}
.x39{left:266.560800px;}
.x11{left:271.620000px;}
.x10{left:276.648000px;}
.x27{left:288.886050px;}
.x20{left:304.881000px;}
.x12{left:337.320000px;}
.x13{left:356.100000px;}
.x28{left:374.577300px;}
.x29{left:377.997300px;}
.x37{left:409.630950px;}
.x36{left:411.055950px;}
.x14{left:417.552000px;}
.x15{left:437.736000px;}
.x2b{left:452.404800px;}
.x2a{left:454.767300px;}
.x16{left:500.736000px;}
.x17{left:523.896000px;}
.x2c{left:526.429800px;}
.x18{left:590.052000px;}
.x2e{left:601.231050px;}
.x2d{left:602.299800px;}
.x1a{left:670.704000px;}
.x2f{left:675.638550px;}
.x19{left:679.176000px;}
.xa{left:714.787350px;}
.x9{left:717.960150px;}
.x34{left:722.131650px;}
.x38{left:730.153050px;}
@media print{
.v2{vertical-align:-19.536000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.535467pt;}
.ls49{letter-spacing:-6.080000pt;}
.ls3f{letter-spacing:-4.400000pt;}
.ls48{letter-spacing:-3.546667pt;}
.ls22{letter-spacing:-3.050667pt;}
.ls19{letter-spacing:-2.933333pt;}
.ls1c{letter-spacing:-2.048000pt;}
.ls42{letter-spacing:-1.840000pt;}
.ls41{letter-spacing:-1.360000pt;}
.ls43{letter-spacing:-1.200000pt;}
.ls1b{letter-spacing:-1.109333pt;}
.ls1a{letter-spacing:-1.024000pt;}
.ls3e{letter-spacing:-0.800000pt;}
.ls24{letter-spacing:-0.426667pt;}
.ls17{letter-spacing:-0.410667pt;}
.ls40{letter-spacing:-0.400000pt;}
.ls8{letter-spacing:-0.352000pt;}
.ls18{letter-spacing:-0.293333pt;}
.ls21{letter-spacing:-0.240000pt;}
.ls1f{letter-spacing:-0.234667pt;}
.ls7{letter-spacing:-0.202667pt;}
.lsd{letter-spacing:-0.176000pt;}
.ls4b{letter-spacing:-0.152000pt;}
.ls9{letter-spacing:-0.117333pt;}
.ls13{letter-spacing:-0.058667pt;}
.ls20{letter-spacing:-0.053333pt;}
.ls4a{letter-spacing:-0.050667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000059pt;}
.ls25{letter-spacing:0.029333pt;}
.ls1e{letter-spacing:0.058667pt;}
.ls3{letter-spacing:0.117333pt;}
.lse{letter-spacing:0.176000pt;}
.ls4{letter-spacing:0.213333pt;}
.lsf{letter-spacing:0.234667pt;}
.ls12{letter-spacing:0.240000pt;}
.ls47{letter-spacing:0.253333pt;}
.ls46{letter-spacing:0.309067pt;}
.ls11{letter-spacing:0.320000pt;}
.ls26{letter-spacing:0.322667pt;}
.ls10{letter-spacing:0.352000pt;}
.ls45{letter-spacing:0.405333pt;}
.ls44{letter-spacing:0.456000pt;}
.ls14{letter-spacing:0.480000pt;}
.ls6{letter-spacing:0.533333pt;}
.lsb{letter-spacing:0.586667pt;}
.ls1{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.720000pt;}
.lsc{letter-spacing:0.909333pt;}
.lsa{letter-spacing:0.960000pt;}
.ls0{letter-spacing:1.200000pt;}
.ls23{letter-spacing:1.343467pt;}
.ls1d{letter-spacing:2.065067pt;}
.ls39{letter-spacing:79.400000pt;}
.ls16{letter-spacing:91.946667pt;}
.ls2b{letter-spacing:94.200000pt;}
.ls32{letter-spacing:96.400000pt;}
.ls2d{letter-spacing:97.000000pt;}
.ls29{letter-spacing:97.160000pt;}
.ls37{letter-spacing:97.360000pt;}
.ls2f{letter-spacing:97.760000pt;}
.ls31{letter-spacing:98.280000pt;}
.ls2e{letter-spacing:99.600000pt;}
.ls2c{letter-spacing:99.800000pt;}
.ls28{letter-spacing:99.960000pt;}
.ls30{letter-spacing:100.080000pt;}
.ls27{letter-spacing:102.520000pt;}
.ls33{letter-spacing:103.320000pt;}
.ls38{letter-spacing:104.360000pt;}
.ls3a{letter-spacing:105.240000pt;}
.ls3c{letter-spacing:107.400000pt;}
.ls35{letter-spacing:107.560000pt;}
.ls3d{letter-spacing:107.720000pt;}
.ls36{letter-spacing:107.760000pt;}
.ls2a{letter-spacing:109.240000pt;}
.ls3b{letter-spacing:112.400000pt;}
.ls34{letter-spacing:113.440000pt;}
.wsf2{word-spacing:-120.800000pt;}
.ws1{word-spacing:-14.784000pt;}
.ws10e{word-spacing:-12.576000pt;}
.ws85{word-spacing:-12.336000pt;}
.ws0{word-spacing:-12.320000pt;}
.ws52{word-spacing:-12.202667pt;}
.ws39{word-spacing:-12.096000pt;}
.ws3a{word-spacing:-12.026667pt;}
.ws64{word-spacing:-11.909333pt;}
.ws37{word-spacing:-11.856000pt;}
.ws21{word-spacing:-11.616000pt;}
.ws63{word-spacing:-11.440000pt;}
.ws53{word-spacing:-11.322667pt;}
.ws55{word-spacing:-11.200000pt;}
.ws62{word-spacing:-11.136000pt;}
.wsfa{word-spacing:-10.640000pt;}
.ws70{word-spacing:-10.386667pt;}
.wsfb{word-spacing:-9.880000pt;}
.ws6f{word-spacing:-9.626667pt;}
.ws54{word-spacing:-9.386667pt;}
.ws3b{word-spacing:-8.746667pt;}
.ws44{word-spacing:-8.320000pt;}
.ws8f{word-spacing:-7.400000pt;}
.ws2{word-spacing:-7.182560pt;}
.ws109{word-spacing:-7.093333pt;}
.wse1{word-spacing:-6.560000pt;}
.ws49{word-spacing:-2.640000pt;}
.wsa{word-spacing:-2.581333pt;}
.ws6a{word-spacing:-2.522667pt;}
.ws9{word-spacing:-2.464000pt;}
.ws2b{word-spacing:-2.405333pt;}
.wsf6{word-spacing:-2.346667pt;}
.ws13{word-spacing:-2.240000pt;}
.ws2a{word-spacing:-2.229333pt;}
.ws7{word-spacing:-2.128000pt;}
.ws29{word-spacing:-2.112000pt;}
.ws10f{word-spacing:-2.077333pt;}
.ws8d{word-spacing:-1.994667pt;}
.ws5f{word-spacing:-1.936000pt;}
.ws27{word-spacing:-1.877333pt;}
.ws28{word-spacing:-1.818667pt;}
.ws83{word-spacing:-1.760000pt;}
.ws101{word-spacing:-1.701333pt;}
.ws2e{word-spacing:-1.642667pt;}
.ws100{word-spacing:-1.584000pt;}
.ws31{word-spacing:-1.525333pt;}
.ws5{word-spacing:-1.520000pt;}
.ws19{word-spacing:-1.466667pt;}
.wsf{word-spacing:-1.408000pt;}
.wsfe{word-spacing:-1.349333pt;}
.ws5a{word-spacing:-1.290667pt;}
.ws7b{word-spacing:-1.232000pt;}
.ws3{word-spacing:-1.200000pt;}
.ws6d{word-spacing:-1.173333pt;}
.ws7f{word-spacing:-1.114667pt;}
.wsff{word-spacing:-1.056000pt;}
.ws103{word-spacing:-1.013333pt;}
.ws48{word-spacing:-0.997333pt;}
.ws66{word-spacing:-0.938667pt;}
.ws6c{word-spacing:-0.880000pt;}
.ws10b{word-spacing:-0.658667pt;}
.ws16{word-spacing:-0.640000pt;}
.ws17{word-spacing:-0.586667pt;}
.wse{word-spacing:-0.528000pt;}
.ws107{word-spacing:-0.506667pt;}
.wsfd{word-spacing:-0.469333pt;}
.ws84{word-spacing:-0.426667pt;}
.ws23{word-spacing:-0.410667pt;}
.ws7a{word-spacing:-0.352000pt;}
.ws25{word-spacing:-0.293333pt;}
.ws7e{word-spacing:-0.234667pt;}
.ws10c{word-spacing:-0.202667pt;}
.ws106{word-spacing:-0.152000pt;}
.ws8{word-spacing:-0.101333pt;}
.ws57{word-spacing:-0.058667pt;}
.ws4{word-spacing:0.000000pt;}
.ws69{word-spacing:0.058667pt;}
.ws12{word-spacing:0.106667pt;}
.ws102{word-spacing:0.117333pt;}
.ws1f{word-spacing:0.176000pt;}
.ws32{word-spacing:0.234667pt;}
.ws10a{word-spacing:0.253333pt;}
.ws1e{word-spacing:0.293333pt;}
.ws10{word-spacing:0.352000pt;}
.ws8b{word-spacing:0.410667pt;}
.ws59{word-spacing:0.469333pt;}
.ws1a{word-spacing:0.528000pt;}
.ws22{word-spacing:0.586667pt;}
.ws50{word-spacing:0.597333pt;}
.ws58{word-spacing:0.645333pt;}
.ws30{word-spacing:0.704000pt;}
.ws18{word-spacing:0.762667pt;}
.wsf8{word-spacing:0.800000pt;}
.ws6{word-spacing:0.810667pt;}
.ws4e{word-spacing:0.821333pt;}
.ws1d{word-spacing:0.861333pt;}
.ws1c{word-spacing:0.938667pt;}
.ws1b{word-spacing:0.997333pt;}
.ws2d{word-spacing:1.056000pt;}
.ws88{word-spacing:1.114667pt;}
.ws56{word-spacing:1.290667pt;}
.ws8a{word-spacing:1.408000pt;}
.ws82{word-spacing:1.440000pt;}
.ws4b{word-spacing:1.466667pt;}
.ws24{word-spacing:1.525333pt;}
.ws65{word-spacing:1.584000pt;}
.wsb{word-spacing:1.760000pt;}
.ws80{word-spacing:1.818667pt;}
.wsfc{word-spacing:1.877333pt;}
.ws67{word-spacing:1.936000pt;}
.ws47{word-spacing:2.053333pt;}
.ws5d{word-spacing:2.112000pt;}
.ws81{word-spacing:2.170667pt;}
.ws68{word-spacing:2.229333pt;}
.ws5c{word-spacing:2.288000pt;}
.ws4d{word-spacing:2.346667pt;}
.ws20{word-spacing:2.405333pt;}
.ws2f{word-spacing:2.464000pt;}
.ws89{word-spacing:2.522667pt;}
.ws87{word-spacing:2.581333pt;}
.wsc{word-spacing:2.640000pt;}
.wsf7{word-spacing:2.698667pt;}
.ws7d{word-spacing:2.757333pt;}
.ws4f{word-spacing:2.816000pt;}
.ws35{word-spacing:2.826667pt;}
.ws26{word-spacing:2.874667pt;}
.ws2c{word-spacing:2.933333pt;}
.ws33{word-spacing:2.992000pt;}
.ws6b{word-spacing:3.050667pt;}
.ws5e{word-spacing:3.109333pt;}
.ws105{word-spacing:3.242667pt;}
.ws4a{word-spacing:3.285333pt;}
.ws60{word-spacing:3.344000pt;}
.ws11{word-spacing:3.360000pt;}
.ws61{word-spacing:3.402667pt;}
.ws104{word-spacing:3.496000pt;}
.ws14{word-spacing:3.680000pt;}
.ws86{word-spacing:3.696000pt;}
.ws34{word-spacing:3.733333pt;}
.ws4c{word-spacing:3.813333pt;}
.ws7c{word-spacing:3.930667pt;}
.ws8c{word-spacing:3.989333pt;}
.wsd{word-spacing:4.048000pt;}
.ws5b{word-spacing:4.106667pt;}
.wsf9{word-spacing:4.400000pt;}
.ws10d{word-spacing:5.877333pt;}
.wsb4{word-spacing:29.760000pt;}
.wse3{word-spacing:35.240000pt;}
.wsbf{word-spacing:36.800000pt;}
.wsc5{word-spacing:38.640000pt;}
.wsdd{word-spacing:39.120000pt;}
.wsb6{word-spacing:39.520000pt;}
.ws43{word-spacing:40.874667pt;}
.ws9c{word-spacing:41.520000pt;}
.wsc7{word-spacing:41.640000pt;}
.wsc8{word-spacing:42.160000pt;}
.wsdc{word-spacing:43.120000pt;}
.wsb3{word-spacing:44.800000pt;}
.wsa8{word-spacing:45.240000pt;}
.wsd3{word-spacing:45.400000pt;}
.ws99{word-spacing:46.000000pt;}
.wsb5{word-spacing:46.760000pt;}
.wsc1{word-spacing:46.840000pt;}
.wsab{word-spacing:46.920000pt;}
.wsd0{word-spacing:47.080000pt;}
.wsbe{word-spacing:48.160000pt;}
.ws9a{word-spacing:48.400000pt;}
.wsa6{word-spacing:48.600000pt;}
.wsa4{word-spacing:48.760000pt;}
.wsb1{word-spacing:48.800000pt;}
.wscf{word-spacing:48.880000pt;}
.wsc2{word-spacing:48.920000pt;}
.wsb9{word-spacing:49.280000pt;}
.wsd7{word-spacing:50.320000pt;}
.wsed{word-spacing:50.440000pt;}
.wsb0{word-spacing:50.680000pt;}
.wsbd{word-spacing:51.120000pt;}
.ws9e{word-spacing:51.160000pt;}
.wsda{word-spacing:51.320000pt;}
.wse6{word-spacing:51.400000pt;}
.wsc4{word-spacing:53.080000pt;}
.wsbc{word-spacing:53.120000pt;}
.wsd6{word-spacing:53.280000pt;}
.wsa5{word-spacing:53.720000pt;}
.ws9f{word-spacing:54.320000pt;}
.ws95{word-spacing:54.760000pt;}
.wsac{word-spacing:54.880000pt;}
.wsaf{word-spacing:55.640000pt;}
.wse9{word-spacing:57.160000pt;}
.wsf0{word-spacing:57.680000pt;}
.wse5{word-spacing:57.880000pt;}
.wsec{word-spacing:57.920000pt;}
.ws94{word-spacing:58.520000pt;}
.ws9d{word-spacing:58.600000pt;}
.wsa7{word-spacing:58.840000pt;}
.wsb8{word-spacing:59.840000pt;}
.wse2{word-spacing:60.240000pt;}
.wsf3{word-spacing:60.360000pt;}
.wsd2{word-spacing:60.440000pt;}
.wsa0{word-spacing:61.000000pt;}
.wscb{word-spacing:61.120000pt;}
.ws9b{word-spacing:61.320000pt;}
.wscc{word-spacing:62.520000pt;}
.wsd9{word-spacing:63.480000pt;}
.ws3d{word-spacing:64.042667pt;}
.ws3f{word-spacing:67.200000pt;}
.wsa3{word-spacing:68.000000pt;}
.ws3e{word-spacing:68.992000pt;}
.ws41{word-spacing:69.376000pt;}
.wse8{word-spacing:69.480000pt;}
.wsf5{word-spacing:71.000000pt;}
.wscd{word-spacing:72.440000pt;}
.wsc6{word-spacing:74.520000pt;}
.wsd1{word-spacing:74.640000pt;}
.wsef{word-spacing:75.080000pt;}
.wsa9{word-spacing:75.560000pt;}
.wsad{word-spacing:75.640000pt;}
.ws40{word-spacing:76.245333pt;}
.wsee{word-spacing:77.680000pt;}
.wsaa{word-spacing:78.240000pt;}
.ws97{word-spacing:78.400000pt;}
.wsde{word-spacing:78.520000pt;}
.wsea{word-spacing:79.120000pt;}
.wsa1{word-spacing:79.280000pt;}
.wse0{word-spacing:80.000000pt;}
.wse4{word-spacing:80.280000pt;}
.wsb7{word-spacing:81.360000pt;}
.ws96{word-spacing:81.480000pt;}
.wsf1{word-spacing:83.480000pt;}
.wsa2{word-spacing:84.680000pt;}
.wse7{word-spacing:85.440000pt;}
.wsca{word-spacing:85.880000pt;}
.wsb2{word-spacing:86.640000pt;}
.ws92{word-spacing:86.880000pt;}
.ws42{word-spacing:87.082667pt;}
.wsd5{word-spacing:91.720000pt;}
.wsd4{word-spacing:91.800000pt;}
.wsc9{word-spacing:92.760000pt;}
.wsc0{word-spacing:93.320000pt;}
.ws71{word-spacing:93.866667pt;}
.wsba{word-spacing:94.040000pt;}
.ws93{word-spacing:94.080000pt;}
.wsbb{word-spacing:94.160000pt;}
.ws45{word-spacing:94.293333pt;}
.ws90{word-spacing:94.440000pt;}
.wsae{word-spacing:94.840000pt;}
.wseb{word-spacing:95.000000pt;}
.wsd8{word-spacing:95.760000pt;}
.wsc3{word-spacing:97.120000pt;}
.wsdf{word-spacing:97.960000pt;}
.ws46{word-spacing:98.005333pt;}
.wsce{word-spacing:98.200000pt;}
.ws91{word-spacing:101.640000pt;}
.wsf4{word-spacing:102.040000pt;}
.wsdb{word-spacing:102.200000pt;}
.ws98{word-spacing:104.680000pt;}
.ws3c{word-spacing:118.229333pt;}
.ws79{word-spacing:162.773333pt;}
.ws74{word-spacing:163.626667pt;}
.ws75{word-spacing:169.173333pt;}
.ws72{word-spacing:171.136000pt;}
.ws73{word-spacing:171.946667pt;}
.ws76{word-spacing:172.330667pt;}
.ws78{word-spacing:175.701333pt;}
.ws77{word-spacing:281.685333pt;}
.ws15{word-spacing:1678.513600pt;}
.ws38{word-spacing:1681.777600pt;}
.ws51{word-spacing:1682.113600pt;}
.ws6e{word-spacing:1682.305600pt;}
.ws36{word-spacing:1685.953600pt;}
.ws110{word-spacing:1688.833600pt;}
.ws8e{word-spacing:1694.065600pt;}
.ws108{word-spacing:1700.065600pt;}
._15{margin-left:-2328.672000pt;}
._13{margin-left:-2327.712000pt;}
._3{margin-left:-20.090667pt;}
._f{margin-left:-15.728267pt;}
._c{margin-left:-14.478133pt;}
._12{margin-left:-13.136267pt;}
._a{margin-left:-11.408267pt;}
._9{margin-left:-9.656800pt;}
._2{margin-left:-8.613333pt;}
._5{margin-left:-7.483733pt;}
._6{margin-left:-6.273600pt;}
._b{margin-left:-5.017067pt;}
._7{margin-left:-4.000000pt;}
._4{margin-left:-2.498133pt;}
._1{margin-left:-1.200000pt;}
._0{width:0.960000pt;}
._11{width:1.919733pt;}
._8{width:3.541600pt;}
._d{width:4.490187pt;}
._34{width:6.203733pt;}
._60{width:11.191733pt;}
._37{width:36.800000pt;}
._10{width:38.240000pt;}
._36{width:40.053333pt;}
._14{width:40.960000pt;}
._e{width:42.400000pt;}
._35{width:44.426667pt;}
._21{width:48.981333pt;}
._54{width:51.600000pt;}
._59{width:53.640000pt;}
._5d{width:54.840000pt;}
._17{width:56.704000pt;}
._5a{width:57.880000pt;}
._4b{width:59.360000pt;}
._58{width:61.480000pt;}
._18{width:62.506667pt;}
._46{width:63.920000pt;}
._4c{width:65.320000pt;}
._47{width:66.920000pt;}
._5b{width:67.960000pt;}
._50{width:68.853333pt;}
._1a{width:70.570667pt;}
._16{width:71.808000pt;}
._19{width:73.514667pt;}
._4e{width:74.792267pt;}
._48{width:76.200000pt;}
._2a{width:77.226667pt;}
._22{width:78.442667pt;}
._24{width:79.573333pt;}
._49{width:80.631733pt;}
._4f{width:82.317333pt;}
._4d{width:83.445333pt;}
._2b{width:84.522667pt;}
._23{width:85.568000pt;}
._52{width:86.720000pt;}
._55{width:87.842667pt;}
._1b{width:88.917333pt;}
._4a{width:90.080000pt;}
._32{width:91.136000pt;}
._1d{width:92.757333pt;}
._20{width:93.781333pt;}
._51{width:94.688000pt;}
._2c{width:95.658667pt;}
._25{width:96.810933pt;}
._1c{width:97.877333pt;}
._2d{width:99.669333pt;}
._53{width:101.303733pt;}
._1e{width:102.229333pt;}
._5e{width:103.591733pt;}
._26{width:104.972800pt;}
._56{width:106.301333pt;}
._57{width:107.200000pt;}
._5f{width:108.157867pt;}
._2e{width:109.141333pt;}
._5c{width:111.733600pt;}
._33{width:113.536000pt;}
._27{width:115.029333pt;}
._2f{width:116.821333pt;}
._29{width:122.368000pt;}
._1f{width:123.605333pt;}
._30{width:125.909333pt;}
._31{width:141.781333pt;}
._38{width:151.306667pt;}
._28{width:152.391467pt;}
._3e{width:189.397333pt;}
._45{width:193.322667pt;}
._3a{width:196.096000pt;}
._42{width:198.869333pt;}
._3b{width:212.778667pt;}
._44{width:214.314667pt;}
._3f{width:218.154667pt;}
._43{width:222.250667pt;}
._3c{width:228.778667pt;}
._40{width:233.514667pt;}
._3d{width:283.500800pt;}
._41{width:284.738133pt;}
._39{width:286.274133pt;}
.fs7{font-size:34.202667pt;}
.fs9{font-size:40.000000pt;}
.fs8{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:69.333333pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.yf0{bottom:79.748000pt;}
.y1e{bottom:79.748133pt;}
.y69{bottom:79.752933pt;}
.ybb{bottom:79.755333pt;}
.y8c{bottom:86.553333pt;}
.y54{bottom:88.767733pt;}
.y105{bottom:89.777600pt;}
.y58{bottom:95.494267pt;}
.y1d{bottom:95.748133pt;}
.yef{bottom:97.511867pt;}
.y68{bottom:97.514267pt;}
.yba{bottom:97.516667pt;}
.y8b{bottom:102.551333pt;}
.y104{bottom:105.775600pt;}
.y57{bottom:111.492267pt;}
.y1c{bottom:111.748133pt;}
.y67{bottom:115.275600pt;}
.y2e{bottom:115.278000pt;}
.yee{bottom:115.285867pt;}
.y1b{bottom:127.748133pt;}
.y2d{bottom:133.039333pt;}
.yed{bottom:133.044533pt;}
.y1a{bottom:143.748133pt;}
.y2c{bottom:150.803200pt;}
.y66{bottom:150.810533pt;}
.y10a{bottom:151.318933pt;}
.y19{bottom:159.748133pt;}
.y109{bottom:167.318933pt;}
.y2b{bottom:168.566933pt;}
.y65{bottom:168.571867pt;}
.y108{bottom:183.318933pt;}
.y2a{bottom:186.330667pt;}
.y81{bottom:186.333200pt;}
.yb6{bottom:186.340533pt;}
.y107{bottom:199.318933pt;}
.y64{bottom:204.094533pt;}
.y29{bottom:204.101867pt;}
.y63{bottom:221.858267pt;}
.y28{bottom:221.863200pt;}
.y53{bottom:221.868133pt;}
.y99{bottom:221.877867pt;}
.yb9{bottom:222.126133pt;}
.yec{bottom:223.622133pt;}
.yb8{bottom:238.124133pt;}
.y18{bottom:239.622133pt;}
.y27{bottom:239.624533pt;}
.y80{bottom:239.626933pt;}
.y52{bottom:239.629467pt;}
.y98{bottom:239.639200pt;}
.yb7{bottom:254.122133pt;}
.y17{bottom:257.385867pt;}
.y7f{bottom:257.388267pt;}
.y51{bottom:257.390800pt;}
.y26{bottom:257.400533pt;}
.y62{bottom:275.149600pt;}
.y50{bottom:275.152133pt;}
.y16{bottom:275.156933pt;}
.y25{bottom:275.161867pt;}
.ydf{bottom:281.562400pt;}
.y4f{bottom:292.913467pt;}
.yb5{bottom:292.915867pt;}
.y15{bottom:292.918267pt;}
.yeb{bottom:292.920800pt;}
.y24{bottom:292.923200pt;}
.yde{bottom:300.462400pt;}
.y4e{bottom:310.677200pt;}
.y14{bottom:310.679600pt;}
.y7e{bottom:310.682133pt;}
.y23{bottom:310.684533pt;}
.y61{bottom:311.424533pt;}
.ydd{bottom:319.362400pt;}
.y60{bottom:327.422533pt;}
.y13{bottom:328.440933pt;}
.y7d{bottom:328.443467pt;}
.y22{bottom:328.445867pt;}
.y4d{bottom:328.455733pt;}
.ydc{bottom:338.262400pt;}
.y5f{bottom:343.420533pt;}
.y12{bottom:346.204800pt;}
.y97{bottom:346.207200pt;}
.y4c{bottom:346.217067pt;}
.ydb{bottom:357.162400pt;}
.y5e{bottom:359.418533pt;}
.y21{bottom:363.968533pt;}
.y11{bottom:363.971067pt;}
.y4b{bottom:363.978400pt;}
.yda{bottom:376.062400pt;}
.y10{bottom:381.732400pt;}
.y96{bottom:381.734800pt;}
.y7c{bottom:381.737200pt;}
.y4a{bottom:381.739733pt;}
.yb4{bottom:381.742133pt;}
.y76{bottom:384.939600pt;}
.yd9{bottom:394.962400pt;}
.yf{bottom:399.496133pt;}
.y7b{bottom:399.498533pt;}
.y49{bottom:399.501067pt;}
.y95{bottom:399.503467pt;}
.y75{bottom:403.840933pt;}
.yd8{bottom:413.862400pt;}
.ye{bottom:417.259867pt;}
.y94{bottom:417.264800pt;}
.y74{bottom:422.742267pt;}
.y56{bottom:429.818267pt;}
.yd7{bottom:432.762400pt;}
.y48{bottom:435.023733pt;}
.y93{bottom:435.026133pt;}
.y73{bottom:441.643600pt;}
.y55{bottom:445.816267pt;}
.yd6{bottom:451.662400pt;}
.yd{bottom:452.787467pt;}
.y10d{bottom:456.645733pt;}
.y72{bottom:460.544933pt;}
.y7a{bottom:461.356400pt;}
.yd5{bottom:470.518533pt;}
.y8a{bottom:470.551200pt;}
.y10c{bottom:472.643733pt;}
.y79{bottom:477.354400pt;}
.y20{bottom:477.666267pt;}
.y71{bottom:479.446267pt;}
.y89{bottom:488.315067pt;}
.y92{bottom:488.317467pt;}
.y47{bottom:488.322400pt;}
.y10b{bottom:488.641733pt;}
.yd4{bottom:489.418533pt;}
.y1f{bottom:493.664267pt;}
.yb3{bottom:506.078800pt;}
.y46{bottom:506.083733pt;}
.y91{bottom:506.086133pt;}
.yd3{bottom:508.318533pt;}
.y5d{bottom:523.413867pt;}
.yb2{bottom:523.842533pt;}
.y45{bottom:523.845067pt;}
.y90{bottom:523.847467pt;}
.yd2{bottom:527.218533pt;}
.y5c{bottom:539.411867pt;}
.y88{bottom:541.606400pt;}
.y44{bottom:541.608800pt;}
.yd1{bottom:546.118533pt;}
.y5b{bottom:555.409867pt;}
.y43{bottom:559.370133pt;}
.yd0{bottom:565.018533pt;}
.y5a{bottom:571.407867pt;}
.y42{bottom:577.133867pt;}
.ycf{bottom:583.918533pt;}
.y87{bottom:594.897733pt;}
.y41{bottom:594.900133pt;}
.yb1{bottom:594.902533pt;}
.y70{bottom:595.679867pt;}
.yce{bottom:602.818533pt;}
.yc{bottom:606.687600pt;}
.y40{bottom:612.661467pt;}
.yb0{bottom:612.663867pt;}
.y6f{bottom:614.581200pt;}
.ycd{bottom:621.718533pt;}
.yb{bottom:622.687600pt;}
.yfe{bottom:630.342400pt;}
.y3f{bottom:630.425200pt;}
.y6e{bottom:633.482533pt;}
.ycc{bottom:640.618533pt;}
.yfd{bottom:646.340400pt;}
.y3e{bottom:648.189067pt;}
.yea{bottom:648.198800pt;}
.y8f{bottom:648.897733pt;}
.y6d{bottom:652.383867pt;}
.y106{bottom:653.807067pt;}
.ycb{bottom:659.518533pt;}
.yfc{bottom:662.338400pt;}
.y8e{bottom:664.895733pt;}
.y3d{bottom:665.952800pt;}
.ye9{bottom:665.960133pt;}
.yaf{bottom:665.979733pt;}
.y6c{bottom:669.610533pt;}
.yfb{bottom:678.336400pt;}
.yca{bottom:678.418533pt;}
.y8d{bottom:680.893733pt;}
.y6b{bottom:682.943867pt;}
.y3c{bottom:683.716667pt;}
.ye8{bottom:683.721467pt;}
.yae{bottom:683.741067pt;}
.ya{bottom:687.823333pt;}
.yc9{bottom:697.318533pt;}
.y6a{bottom:700.170533pt;}
.y3b{bottom:701.480400pt;}
.y86{bottom:701.482800pt;}
.yad{bottom:701.502400pt;}
.y9{bottom:703.821333pt;}
.ya3{bottom:709.995733pt;}
.yfa{bottom:710.332400pt;}
.y103{bottom:710.345067pt;}
.yc8{bottom:716.218533pt;}
.y3a{bottom:719.244133pt;}
.ye7{bottom:719.258800pt;}
.yac{bottom:719.263733pt;}
.y8{bottom:719.821333pt;}
.yf9{bottom:726.330400pt;}
.y102{bottom:726.343067pt;}
.ya2{bottom:732.673067pt;}
.yc7{bottom:735.118533pt;}
.y7{bottom:735.823333pt;}
.y85{bottom:737.008000pt;}
.y39{bottom:737.015200pt;}
.ye6{bottom:737.020133pt;}
.yab{bottom:737.025067pt;}
.yf8{bottom:742.328400pt;}
.y101{bottom:742.341067pt;}
.y6{bottom:751.821333pt;}
.yc6{bottom:754.018533pt;}
.y38{bottom:754.776533pt;}
.ye5{bottom:754.781467pt;}
.y84{bottom:754.783867pt;}
.yaa{bottom:754.786400pt;}
.ya1{bottom:755.350400pt;}
.yf7{bottom:758.326400pt;}
.y100{bottom:758.339067pt;}
.y5{bottom:767.821333pt;}
.y37{bottom:772.537867pt;}
.ye4{bottom:772.542800pt;}
.y83{bottom:772.545200pt;}
.ya9{bottom:772.547733pt;}
.yc5{bottom:772.918533pt;}
.yf6{bottom:774.324400pt;}
.yff{bottom:774.337067pt;}
.ya0{bottom:778.027733pt;}
.y36{bottom:790.299200pt;}
.ye3{bottom:790.304133pt;}
.ya8{bottom:790.309067pt;}
.yc4{bottom:791.818533pt;}
.y9f{bottom:800.705067pt;}
.y35{bottom:808.063067pt;}
.ye2{bottom:808.065467pt;}
.y82{bottom:808.067867pt;}
.ya7{bottom:808.070400pt;}
.yc3{bottom:810.718533pt;}
.y9e{bottom:823.382400pt;}
.y34{bottom:825.826800pt;}
.y59{bottom:825.829200pt;}
.ya6{bottom:825.831733pt;}
.yf5{bottom:825.852400pt;}
.yc2{bottom:829.618533pt;}
.y33{bottom:843.590533pt;}
.ya5{bottom:843.593067pt;}
.yf4{bottom:843.611067pt;}
.y9d{bottom:846.059733pt;}
.y4{bottom:848.073467pt;}
.yc1{bottom:848.518533pt;}
.y32{bottom:861.354400pt;}
.ye1{bottom:861.359200pt;}
.y78{bottom:861.361733pt;}
.yf3{bottom:861.369733pt;}
.yc0{bottom:867.418533pt;}
.y9c{bottom:868.737067pt;}
.y31{bottom:879.118133pt;}
.ye0{bottom:879.120533pt;}
.y77{bottom:879.123067pt;}
.yf2{bottom:879.128400pt;}
.ybf{bottom:886.318533pt;}
.y3{bottom:886.742533pt;}
.y9b{bottom:891.414400pt;}
.ya4{bottom:896.881867pt;}
.y30{bottom:896.884400pt;}
.yf1{bottom:896.887067pt;}
.ybc{bottom:901.428533pt;}
.ybe{bottom:904.218533pt;}
.y2{bottom:912.083867pt;}
.y9a{bottom:914.091733pt;}
.y2f{bottom:914.645733pt;}
.ybd{bottom:917.548533pt;}
.y1{bottom:961.978533pt;}
.h10{height:36.000000pt;}
.hf{height:36.560000pt;}
.he{height:38.400000pt;}
.hd{height:38.997333pt;}
.h2{height:45.216000pt;}
.h6{height:45.600000pt;}
.ha{height:46.309333pt;}
.h9{height:48.000000pt;}
.h5{height:49.386667pt;}
.h8{height:52.800000pt;}
.hc{height:53.621333pt;}
.hb{height:55.264000pt;}
.h7{height:59.264000pt;}
.h4{height:65.312000pt;}
.h3{height:83.957333pt;}
.h0{height:1020.472000pt;}
.h1{height:1020.666667pt;}
.w1{width:718.000000pt;}
.w0{width:718.110667pt;}
.x0{left:0.000000pt;}
.x7{left:63.021600pt;}
.x5{left:64.252000pt;}
.x35{left:65.208400pt;}
.x2{left:68.620133pt;}
.x31{left:70.537600pt;}
.x1{left:71.811067pt;}
.x32{left:73.637600pt;}
.x33{left:75.190667pt;}
.x1c{left:80.714667pt;}
.x8{left:82.623067pt;}
.x6{left:83.916000pt;}
.x1b{left:85.920000pt;}
.x1f{left:87.965333pt;}
.xc{left:88.992000pt;}
.x3{left:89.887867pt;}
.x4{left:90.978000pt;}
.xd{left:96.309333pt;}
.x1d{left:109.066667pt;}
.x24{left:116.777600pt;}
.x30{left:124.917600pt;}
.x25{left:126.867600pt;}
.xe{left:162.656000pt;}
.xf{left:166.570667pt;}
.x21{left:173.399067pt;}
.x26{left:193.617600pt;}
.x23{left:202.476400pt;}
.x22{left:203.425733pt;}
.xb{left:205.674667pt;}
.x1e{left:208.616000pt;}
.x39{left:236.942933pt;}
.x11{left:241.440000pt;}
.x10{left:245.909333pt;}
.x27{left:256.787600pt;}
.x20{left:271.005333pt;}
.x12{left:299.840000pt;}
.x13{left:316.533333pt;}
.x28{left:332.957600pt;}
.x29{left:335.997600pt;}
.x37{left:364.116400pt;}
.x36{left:365.383067pt;}
.x14{left:371.157333pt;}
.x15{left:389.098667pt;}
.x2b{left:402.137600pt;}
.x2a{left:404.237600pt;}
.x16{left:445.098667pt;}
.x17{left:465.685333pt;}
.x2c{left:467.937600pt;}
.x18{left:524.490667pt;}
.x2e{left:534.427600pt;}
.x2d{left:535.377600pt;}
.x1a{left:596.181333pt;}
.x2f{left:600.567600pt;}
.x19{left:603.712000pt;}
.xa{left:635.366533pt;}
.x9{left:638.186800pt;}
.x34{left:641.894800pt;}
.x38{left:649.024933pt;}
}




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