
    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_45631123c423dd70173b1f8d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.905000;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_b893db3755cca2cc8e54c16d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_390f684c361c84d5fd78f69f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.901000;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_6c0338415210e820e95b20a0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_86e09debb75b579333f99e03.woff')format("woff");}.ff5{font-family:ff5;line-height:0.902000;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_6dd94b644ff5c6c6bcea6334.woff')format("woff");}.ff6{font-family:ff6;line-height:0.887000;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_b34a208abd4451d159edb2c1.woff')format("woff");}.ff7{font-family:ff7;line-height:0.899000;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_1b4e12f8c81166197d62fb69.woff')format("woff");}.ff8{font-family:ff8;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0a6b14f0a2a43b202d6af5d1.woff')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_70c683f7df4a9e137de21bc9.woff')format("woff");}.ffa{font-family:ffa;line-height:0.883000;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_0bf864ff6d435289a303a421.woff')format("woff");}.ffb{font-family:ffb;line-height:0.924000;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_fa69303e65673c41b2feb592.woff')format("woff");}.ffc{font-family:ffc;line-height:0.924000;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_3d858a500044e45e845200e6.woff')format("woff");}.ffd{font-family:ffd;line-height:0.924000;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_6c507d1358b3b0af10c89b2b.woff')format("woff");}.ffe{font-family:ffe;line-height:0.674000;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_c6f23217587a3ccef001383e.woff')format("woff");}.fff{font-family:fff;line-height:0.530000;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_806d2b3a6be7ff072986a90f.woff')format("woff");}.ff10{font-family:ff10;line-height:0.901000;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_6adb76f594bf0f8a571ba47b.woff')format("woff");}.ff11{font-family:ff11;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_e9e2ff619cb8cc77753ff6cf.woff')format("woff");}.ff12{font-family:ff12;line-height:0.773000;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_be39eb5222dac6824308a6f8.woff')format("woff");}.ff13{font-family:ff13;line-height:0.924000;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_275a015b503c9be2d312012c.woff')format("woff");}.ff14{font-family:ff14;line-height:1.850000;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_7435996989202922bc3ec08d.woff')format("woff");}.ff15{font-family:ff15;line-height:0.887000;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_d71b353ccf81c19996500075.woff')format("woff");}.ff16{font-family:ff16;line-height:0.664000;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_b31b6212ae7b5cbe65731d9f.woff')format("woff");}.ff17{font-family:ff17;line-height:0.451000;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_d82ac86c4298460e2b5ae3d2.woff')format("woff");}.ff18{font-family:ff18;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_7599fadeea37b29702c0ca36.woff')format("woff");}.ff19{font-family:ff19;line-height:0.450000;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_aeddba60fad9ad758cf38348.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.451000;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_52b3158ee463f8b0c443f291.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.700000;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_35890de21f7a30947874f0a5.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.046000;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_2e18a754bb935c8ec49a10be.woff')format("woff");}.ff1d{font-family:ff1d;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v7{vertical-align:-53.022000px;}
.v11{vertical-align:-40.650000px;}
.v8{vertical-align:-25.992000px;}
.vf{vertical-align:-21.876000px;}
.v2{vertical-align:-15.186000px;}
.v1{vertical-align:-12.912000px;}
.v4{vertical-align:-11.160000px;}
.vd{vertical-align:-9.816000px;}
.v19{vertical-align:-7.290000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:6.366000px;}
.v1d{vertical-align:7.722000px;}
.v6{vertical-align:12.372000px;}
.v9{vertical-align:16.182000px;}
.v1c{vertical-align:17.538000px;}
.v1b{vertical-align:22.566000px;}
.ve{vertical-align:23.754000px;}
.v5{vertical-align:26.028000px;}
.v10{vertical-align:27.030000px;}
.v17{vertical-align:30.162000px;}
.v3{vertical-align:31.236000px;}
.v14{vertical-align:38.196000px;}
.v13{vertical-align:41.478000px;}
.vb{vertical-align:43.212000px;}
.v16{vertical-align:49.092000px;}
.v12{vertical-align:64.560000px;}
.vc{vertical-align:69.204000px;}
.v18{vertical-align:72.372000px;}
.v1a{vertical-align:75.588000px;}
.v15{vertical-align:99.408000px;}
.ls15{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000141px;}
.ls3{letter-spacing:0.000223px;}
.ls51{letter-spacing:0.000445px;}
.ls34{letter-spacing:0.000538px;}
.ls2b{letter-spacing:0.000603px;}
.ls7{letter-spacing:0.001064px;}
.ls50{letter-spacing:0.001066px;}
.ls0{letter-spacing:0.001134px;}
.ls5e{letter-spacing:0.001289px;}
.lsa{letter-spacing:0.001608px;}
.ls4f{letter-spacing:0.001610px;}
.ls13{letter-spacing:0.002038px;}
.ls5f{letter-spacing:0.002157px;}
.ls5d{letter-spacing:0.002676px;}
.ls38{letter-spacing:0.002685px;}
.lsc{letter-spacing:0.002696px;}
.ls3c{letter-spacing:0.002700px;}
.ls41{letter-spacing:0.002706px;}
.ls57{letter-spacing:0.002712px;}
.ls18{letter-spacing:0.002759px;}
.lsf{letter-spacing:0.002915px;}
.ls62{letter-spacing:0.003056px;}
.ls69{letter-spacing:0.003242px;}
.ls1{letter-spacing:0.003269px;}
.ls60{letter-spacing:0.004059px;}
.ls65{letter-spacing:0.004200px;}
.ls3f{letter-spacing:0.004332px;}
.ls2f{letter-spacing:0.005306px;}
.ls17{letter-spacing:0.005587px;}
.ls24{letter-spacing:0.005831px;}
.ls55{letter-spacing:0.006141px;}
.ls37{letter-spacing:0.006819px;}
.lsb{letter-spacing:0.007608px;}
.ls27{letter-spacing:0.065455px;}
.ls61{letter-spacing:2.984289px;}
.lse{letter-spacing:2.984915px;}
.ls2{letter-spacing:2.985269px;}
.ls1c{letter-spacing:2.985954px;}
.ls40{letter-spacing:2.986200px;}
.ls48{letter-spacing:2.986430px;}
.ls70{letter-spacing:2.989289px;}
.ls1b{letter-spacing:2.990525px;}
.ls4{letter-spacing:2.990685px;}
.lsd{letter-spacing:2.990915px;}
.ls1d{letter-spacing:2.991269px;}
.ls35{letter-spacing:2.992200px;}
.ls31{letter-spacing:4.623154px;}
.ls14{letter-spacing:4.649249px;}
.ls5b{letter-spacing:5.098888px;}
.ls1e{letter-spacing:5.972525px;}
.ls21{letter-spacing:5.979954px;}
.ls33{letter-spacing:6.516305px;}
.ls6c{letter-spacing:7.267059px;}
.ls30{letter-spacing:7.619306px;}
.ls71{letter-spacing:9.092147px;}
.ls53{letter-spacing:10.904712px;}
.ls54{letter-spacing:10.910712px;}
.ls23{letter-spacing:11.953114px;}
.ls59{letter-spacing:11.959114px;}
.ls44{letter-spacing:14.542884px;}
.ls19{letter-spacing:14.543412px;}
.ls1a{letter-spacing:14.549412px;}
.ls4e{letter-spacing:15.937473px;}
.ls56{letter-spacing:15.943473px;}
.ls46{letter-spacing:17.528915px;}
.ls6b{letter-spacing:17.534915px;}
.ls47{letter-spacing:17.536200px;}
.ls6e{letter-spacing:18.176712px;}
.ls6f{letter-spacing:18.179400px;}
.ls12{letter-spacing:18.179412px;}
.ls64{letter-spacing:18.182157px;}
.ls45{letter-spacing:18.182701px;}
.ls3e{letter-spacing:18.184332px;}
.ls3a{letter-spacing:18.550881px;}
.ls3b{letter-spacing:18.551412px;}
.ls4d{letter-spacing:18.926915px;}
.ls1f{letter-spacing:19.127802px;}
.ls20{letter-spacing:19.128603px;}
.ls5a{letter-spacing:19.920000px;}
.ls4a{letter-spacing:19.921165px;}
.ls9{letter-spacing:19.924800px;}
.ls58{letter-spacing:19.926000px;}
.ls6a{letter-spacing:21.164915px;}
.ls11{letter-spacing:21.170915px;}
.ls42{letter-spacing:21.175289px;}
.ls43{letter-spacing:21.704700px;}
.ls49{letter-spacing:21.704706px;}
.ls6d{letter-spacing:21.818712px;}
.ls8{letter-spacing:22.910915px;}
.ls52{letter-spacing:22.916915px;}
.ls2e{letter-spacing:23.903604px;}
.ls6{letter-spacing:23.905114px;}
.ls67{letter-spacing:23.907154px;}
.ls2d{letter-spacing:23.913195px;}
.ls2a{letter-spacing:24.261154px;}
.ls29{letter-spacing:24.261921px;}
.ls5c{letter-spacing:25.317229px;}
.ls66{letter-spacing:26.896200px;}
.ls32{letter-spacing:27.467802px;}
.ls68{letter-spacing:30.788147px;}
.ls2c{letter-spacing:31.787802px;}
.ls3d{letter-spacing:32.723973px;}
.ls36{letter-spacing:32.898867px;}
.ls16{letter-spacing:33.774574px;}
.ls4c{letter-spacing:33.804302px;}
.ls4b{letter-spacing:33.832458px;}
.ls28{letter-spacing:33.836221px;}
.ls5{letter-spacing:33.840028px;}
.ls26{letter-spacing:33.852577px;}
.ls25{letter-spacing:40.658915px;}
.ls39{letter-spacing:41.186800px;}
.ls63{letter-spacing:47.648289px;}
.ls22{letter-spacing:55.688915px;}
.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;}
}
.ws22{word-spacing:-71.788385px;}
.ws32{word-spacing:-68.147319px;}
.ws2c{word-spacing:-67.660420px;}
.ws8{word-spacing:-54.796746px;}
.ws15{word-spacing:-51.820407px;}
.ws12{word-spacing:-45.664082px;}
.ws18{word-spacing:-42.637126px;}
.ws30{word-spacing:-40.507930px;}
.ws9{word-spacing:-38.937826px;}
.ws23{word-spacing:-35.687607px;}
.wsd{word-spacing:-33.820392px;}
.ws42{word-spacing:-33.684972px;}
.ws5f{word-spacing:-32.544027px;}
.ws38{word-spacing:-31.771663px;}
.ws16{word-spacing:-31.706208px;}
.ws5b{word-spacing:-29.066882px;}
.ws3c{word-spacing:-24.441944px;}
.ws31{word-spacing:-23.748699px;}
.ws34{word-spacing:-19.875225px;}
.ws4e{word-spacing:-17.981527px;}
.ws62{word-spacing:-16.573105px;}
.ws14{word-spacing:-15.873959px;}
.ws47{word-spacing:-15.872351px;}
.ws1a{word-spacing:-15.829597px;}
.ws20{word-spacing:-15.789937px;}
.ws35{word-spacing:-15.777596px;}
.ws4a{word-spacing:-15.743520px;}
.ws2f{word-spacing:-15.571365px;}
.ws46{word-spacing:-13.514158px;}
.ws4b{word-spacing:-13.479214px;}
.ws11{word-spacing:-13.442427px;}
.ws57{word-spacing:-12.514920px;}
.ws4{word-spacing:-11.794919px;}
.ws5{word-spacing:-10.878555px;}
.ws58{word-spacing:-10.864067px;}
.ws3e{word-spacing:-10.860174px;}
.ws5a{word-spacing:-10.855841px;}
.ws3d{word-spacing:-10.850253px;}
.ws53{word-spacing:-10.820381px;}
.ws39{word-spacing:-10.813100px;}
.ws56{word-spacing:-10.682191px;}
.ws37{word-spacing:-10.616736px;}
.ws3b{word-spacing:-10.040736px;}
.ws60{word-spacing:-9.896736px;}
.ws6{word-spacing:-8.857344px;}
.ws5d{word-spacing:-8.784007px;}
.ws3{word-spacing:-7.802188px;}
.ws2a{word-spacing:-2.682747px;}
.ws29{word-spacing:-2.666559px;}
.ws1f{word-spacing:-1.971168px;}
.ws7{word-spacing:-1.526002px;}
.wsa{word-spacing:-0.086077px;}
.ws24{word-spacing:-0.071731px;}
.ws19{word-spacing:-0.065455px;}
.ws33{word-spacing:-0.059776px;}
.ws1c{word-spacing:-0.047821px;}
.wsc{word-spacing:-0.045818px;}
.ws10{word-spacing:-0.035866px;}
.ws2b{word-spacing:-0.026039px;}
.ws55{word-spacing:-0.025307px;}
.ws1b{word-spacing:0.000000px;}
.wse{word-spacing:0.019636px;}
.ws44{word-spacing:0.022816px;}
.ws45{word-spacing:0.033933px;}
.wsb{word-spacing:8.005098px;}
.ws43{word-spacing:8.070552px;}
.ws4d{word-spacing:10.841970px;}
.ws48{word-spacing:10.909623px;}
.ws13{word-spacing:10.914151px;}
.ws28{word-spacing:12.346646px;}
.ws27{word-spacing:12.380805px;}
.ws54{word-spacing:13.848151px;}
.ws3f{word-spacing:14.465467px;}
.ws26{word-spacing:17.474925px;}
.ws50{word-spacing:17.477840px;}
.ws1e{word-spacing:17.478010px;}
.ws25{word-spacing:17.480925px;}
.ws51{word-spacing:17.483840px;}
.ws1d{word-spacing:17.484010px;}
.ws63{word-spacing:17.934560px;}
.ws5c{word-spacing:18.065470px;}
.ws59{word-spacing:18.100285px;}
.ws3a{word-spacing:18.130924px;}
.ws4c{word-spacing:19.847787px;}
.ws41{word-spacing:19.869542px;}
.ws64{word-spacing:23.170928px;}
.ws1{word-spacing:23.312640px;}
.ws21{word-spacing:23.797868px;}
.ws61{word-spacing:24.021838px;}
.ws17{word-spacing:24.872748px;}
.ws5e{word-spacing:25.069112px;}
.ws49{word-spacing:26.864694px;}
.ws36{word-spacing:29.305388px;}
.ws0{word-spacing:32.227229px;}
.ws2e{word-spacing:32.400027px;}
.ws4f{word-spacing:33.709119px;}
.wsf{word-spacing:33.774574px;}
.ws2d{word-spacing:35.541848px;}
.ws2{word-spacing:38.095331px;}
.ws52{word-spacing:40.330666px;}
.ws40{word-spacing:40.334292px;}
._f{margin-left:-33.840028px;}
._a{margin-left:-12.118700px;}
._18{margin-left:-11.033248px;}
._6{margin-left:-7.833025px;}
._9{margin-left:-6.742733px;}
._0{margin-left:-5.371205px;}
._14{margin-left:-3.313967px;}
._2{margin-left:-1.936742px;}
._1{width:2.080205px;}
._b{width:3.865946px;}
._15{width:5.548636px;}
._1b{width:17.599722px;}
._c{width:20.106478px;}
._1a{width:25.090933px;}
._19{width:26.319999px;}
._4{width:28.722016px;}
._16{width:29.993488px;}
._17{width:32.380696px;}
._12{width:34.140406px;}
._8{width:35.865600px;}
._11{width:37.844422px;}
._e{width:40.590449px;}
._13{width:43.110325px;}
._10{width:54.589136px;}
._7{width:80.697600px;}
._d{width:87.440333px;}
._5{width:94.684920px;}
._3{width:212.109158px;}
.fcb{color:rgb(0,37,178);}
.fc5{color:rgb(186,33,33);}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(0,128,0);}
.fca{color:rgb(171,33,255);}
.fc9{color:rgb(61,122,122);}
.fc2{color:rgb(48,63,159);}
.fc8{color:rgb(216,67,21);}
.fc6{color:rgb(255,0,0);}
.fc1{color:rgb(31,138,28);}
.fc7{color:rgb(102,102,102);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs7{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs4{font-size:59.775600px;}
.fs2{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y1d{bottom:63.168000px;}
.y47{bottom:118.348500px;}
.y124{bottom:125.052000px;}
.yb6{bottom:125.238000px;}
.y14f{bottom:127.545000px;}
.ydb{bottom:133.231500px;}
.y46{bottom:138.673500px;}
.y123{bottom:145.375500px;}
.yb5{bottom:145.561500px;}
.y8e{bottom:147.618000px;}
.y14e{bottom:147.868500px;}
.yda{bottom:153.555000px;}
.y1c{bottom:154.087500px;}
.y67{bottom:157.848000px;}
.y45{bottom:158.997000px;}
.y122{bottom:165.699000px;}
.yb4{bottom:165.885000px;}
.y8d{bottom:167.941500px;}
.y14d{bottom:169.686000px;}
.yd9{bottom:173.878500px;}
.y1b{bottom:174.411000px;}
.yfd{bottom:177.754500px;}
.y44{bottom:179.320500px;}
.y66{bottom:184.149000px;}
.y121{bottom:186.024000px;}
.yb3{bottom:186.210000px;}
.y1d9{bottom:188.169000px;}
.y8c{bottom:188.266500px;}
.y14c{bottom:190.009500px;}
.y1a{bottom:194.734500px;}
.yd8{bottom:195.697500px;}
.yfc{bottom:199.573500px;}
.y43{bottom:199.644000px;}
.y65{bottom:204.472500px;}
.y120{bottom:206.347500px;}
.y19c{bottom:206.467500px;}
.yb2{bottom:206.533500px;}
.y1d8{bottom:208.492500px;}
.y8b{bottom:208.590000px;}
.y14b{bottom:210.334500px;}
.y19{bottom:215.058000px;}
.yd7{bottom:216.021000px;}
.y17c{bottom:218.895000px;}
.yfb{bottom:219.897000px;}
.y42{bottom:219.967500px;}
.y64{bottom:226.290000px;}
.y11f{bottom:226.671000px;}
.yb1{bottom:226.857000px;}
.y8a{bottom:228.913500px;}
.y14a{bottom:230.658000px;}
.y18{bottom:235.383000px;}
.yd6{bottom:236.344500px;}
.y1d7{bottom:238.978500px;}
.y17b{bottom:239.220000px;}
.y19b{bottom:240.064500px;}
.yfa{bottom:240.220500px;}
.y41{bottom:240.292500px;}
.y63{bottom:246.615000px;}
.y11e{bottom:246.994500px;}
.yb0{bottom:247.180500px;}
.y89{bottom:249.237000px;}
.y149{bottom:250.981500px;}
.yd5{bottom:256.668000px;}
.y1d6{bottom:259.302000px;}
.y17a{bottom:259.543500px;}
.y19a{bottom:260.388000px;}
.y40{bottom:260.616000px;}
.yf9{bottom:262.039500px;}
.y11d{bottom:267.318000px;}
.yaf{bottom:267.504000px;}
.y62{bottom:268.432500px;}
.y88{bottom:269.560500px;}
.y148{bottom:271.305000px;}
.y17{bottom:276.549000px;}
.yd4{bottom:276.991500px;}
.y179{bottom:279.867000px;}
.y199{bottom:280.713000px;}
.y3f{bottom:280.939500px;}
.yf8{bottom:282.363000px;}
.yae{bottom:287.829000px;}
.y61{bottom:288.756000px;}
.y1d5{bottom:289.788000px;}
.y87{bottom:289.885500px;}
.y147{bottom:293.124000px;}
.y178{bottom:300.190500px;}
.y11c{bottom:302.496000px;}
.yf7{bottom:302.686500px;}
.y3e{bottom:302.757000px;}
.y60{bottom:309.079500px;}
.y1d4{bottom:310.111500px;}
.y86{bottom:310.209000px;}
.y146{bottom:313.447500px;}
.yd3{bottom:316.209000px;}
.y198{bottom:317.236500px;}
.y177{bottom:320.514000px;}
.y3d{bottom:323.082000px;}
.yad{bottom:324.291000px;}
.yf6{bottom:324.505500px;}
.y16{bottom:328.101000px;}
.y85{bottom:330.532500px;}
.y145{bottom:333.771000px;}
.y176{bottom:340.839000px;}
.yf5{bottom:344.829000px;}
.y3c{bottom:344.899500px;}
.yac{bottom:346.110000px;}
.y1d3{bottom:346.636500px;}
.y5f{bottom:348.655500px;}
.y11b{bottom:352.287000px;}
.y144{bottom:354.094500px;}
.y3b{bottom:365.223000px;}
.yab{bottom:366.433500px;}
.yf4{bottom:366.646500px;}
.y84{bottom:366.996000px;}
.yd2{bottom:367.761000px;}
.y197{bottom:368.788500px;}
.y175{bottom:370.162500px;}
.y174{bottom:370.966500px;}
.y11a{bottom:372.610500px;}
.y143{bottom:374.418000px;}
.y15{bottom:374.865000px;}
.y173{bottom:375.804000px;}
.y5e{bottom:383.034000px;}
.y3a{bottom:385.546500px;}
.yaa{bottom:386.757000px;}
.yf3{bottom:386.970000px;}
.y83{bottom:388.813500px;}
.y14{bottom:389.073000px;}
.y119{bottom:394.428000px;}
.y142{bottom:394.743000px;}
.yd1{bottom:398.247000px;}
.y5d{bottom:403.956000px;}
.y196{bottom:405.252000px;}
.y39{bottom:405.871500px;}
.y172{bottom:406.693500px;}
.ya9{bottom:407.080500px;}
.y1d2{bottom:408.349500px;}
.yf2{bottom:408.789000px;}
.y82{bottom:409.137000px;}
.y118{bottom:414.753000px;}
.y141{bottom:415.066500px;}
.y13{bottom:415.374000px;}
.yd0{bottom:418.570500px;}
.y5c{bottom:424.876500px;}
.y38{bottom:426.195000px;}
.y195{bottom:427.071000px;}
.ya8{bottom:427.405500px;}
.yf1{bottom:429.112500px;}
.y81{bottom:429.462000px;}
.y1d1{bottom:434.652000px;}
.y140{bottom:435.390000px;}
.y117{bottom:436.570500px;}
.y171{bottom:443.815500px;}
.y37{bottom:446.518500px;}
.y194{bottom:447.394500px;}
.yf0{bottom:449.436000px;}
.y80{bottom:449.785500px;}
.y12{bottom:452.046000px;}
.ycf{bottom:455.034000px;}
.y13f{bottom:455.713500px;}
.y116{bottom:456.894000px;}
.y36{bottom:466.842000px;}
.ya7{bottom:466.980000px;}
.y193{bottom:469.212000px;}
.yef{bottom:469.759500px;}
.y7f{bottom:470.109000px;}
.y5b{bottom:474.669000px;}
.y1d0{bottom:475.299000px;}
.yce{bottom:475.357500px;}
.y115{bottom:477.217500px;}
.y13e{bottom:477.532500px;}
.y170{bottom:484.429500px;}
.ya6{bottom:487.303500px;}
.y16f{bottom:488.475000px;}
.y192{bottom:489.535500px;}
.yee{bottom:490.084500px;}
.y5a{bottom:494.992500px;}
.y1cf{bottom:497.118000px;}
.ycd{bottom:497.175000px;}
.y114{bottom:497.542500px;}
.y13d{bottom:497.856000px;}
.y11{bottom:501.837000px;}
.ya5{bottom:507.627000px;}
.y35{bottom:509.407500px;}
.y7e{bottom:509.683500px;}
.y191{bottom:509.860500px;}
.y16e{bottom:510.964500px;}
.y16d{bottom:515.010000px;}
.y59{bottom:515.316000px;}
.y1ce{bottom:517.441500px;}
.ycc{bottom:517.500000px;}
.y113{bottom:517.866000px;}
.y13c{bottom:519.673500px;}
.y10{bottom:522.160500px;}
.ya4{bottom:527.952000px;}
.y7d{bottom:530.008500px;}
.y190{bottom:530.184000px;}
.yed{bottom:530.794500px;}
.y58{bottom:535.639500px;}
.y34{bottom:536.307000px;}
.y16c{bottom:537.499500px;}
.y16b{bottom:537.501000px;}
.y1cd{bottom:539.259000px;}
.ycb{bottom:539.317500px;}
.y112{bottom:539.683500px;}
.y13b{bottom:539.997000px;}
.y16a{bottom:541.545000px;}
.yf{bottom:542.484000px;}
.ya3{bottom:548.275500px;}
.y7c{bottom:550.332000px;}
.y57{bottom:555.963000px;}
.y1cc{bottom:559.582500px;}
.yca{bottom:559.641000px;}
.y111{bottom:560.007000px;}
.y13a{bottom:561.816000px;}
.y169{bottom:564.036000px;}
.ye{bottom:564.303000px;}
.y168{bottom:568.081500px;}
.ya2{bottom:568.599000px;}
.y18f{bottom:569.758500px;}
.y7b{bottom:570.655500px;}
.y56{bottom:576.288000px;}
.yc9{bottom:579.964500px;}
.y110{bottom:581.826000px;}
.y139{bottom:582.139500px;}
.y33{bottom:583.075500px;}
.yd{bottom:584.626500px;}
.ya1{bottom:588.922500px;}
.y18e{bottom:590.082000px;}
.y167{bottom:590.571000px;}
.y7a{bottom:590.979000px;}
.yec{bottom:592.509000px;}
.y166{bottom:594.616500px;}
.y32{bottom:597.283500px;}
.y1cb{bottom:600.231000px;}
.yc8{bottom:600.289500px;}
.y10f{bottom:602.149500px;}
.y138{bottom:602.463000px;}
.yc{bottom:604.950000px;}
.y18d{bottom:610.407000px;}
.y79{bottom:611.302500px;}
.y55{bottom:616.998000px;}
.y165{bottom:617.107500px;}
.yeb{bottom:618.810000px;}
.y1ca{bottom:620.554500px;}
.y164{bottom:621.153000px;}
.y10e{bottom:622.473000px;}
.y137{bottom:622.786500px;}
.ya0{bottom:623.302500px;}
.y31{bottom:623.584500px;}
.yb{bottom:625.273500px;}
.y18c{bottom:630.730500px;}
.y78{bottom:631.627500px;}
.yea{bottom:639.133500px;}
.yc7{bottom:639.864000px;}
.y10d{bottom:642.796500px;}
.y30{bottom:643.908000px;}
.y136{bottom:644.605500px;}
.ya{bottom:645.597000px;}
.y163{bottom:647.688000px;}
.y18b{bottom:651.054000px;}
.y1c9{bottom:654.151500px;}
.ye9{bottom:659.458500px;}
.yc6{bottom:660.187500px;}
.y10c{bottom:663.121500px;}
.y2f{bottom:664.231500px;}
.y135{bottom:664.929000px;}
.y9{bottom:665.922000px;}
.y77{bottom:666.006000px;}
.y54{bottom:666.453000px;}
.y9f{bottom:667.116000px;}
.y53{bottom:670.497000px;}
.y18a{bottom:671.377500px;}
.y162{bottom:672.495000px;}
.ye8{bottom:679.782000px;}
.yc5{bottom:680.511000px;}
.y10b{bottom:683.445000px;}
.y2e{bottom:684.555000px;}
.y134{bottom:685.252500px;}
.y9e{bottom:687.439500px;}
.y1c8{bottom:690.913500px;}
.y189{bottom:691.701000px;}
.y161{bottom:693.256500px;}
.y52{bottom:697.033500px;}
.y160{bottom:697.302000px;}
.ye7{bottom:700.105500px;}
.yc4{bottom:700.836000px;}
.y2d{bottom:704.880000px;}
.y133{bottom:705.577500px;}
.y9d{bottom:707.763000px;}
.y76{bottom:709.819500px;}
.y8{bottom:709.981500px;}
.y51{bottom:717.795000px;}
.y15f{bottom:719.791500px;}
.y10a{bottom:719.973000px;}
.ye6{bottom:720.429000px;}
.yc3{bottom:721.159500px;}
.y50{bottom:721.840500px;}
.y15e{bottom:723.837000px;}
.y188{bottom:725.299500px;}
.y132{bottom:725.901000px;}
.y1c7{bottom:727.677000px;}
.y9c{bottom:728.088000px;}
.y7{bottom:736.879500px;}
.y75{bottom:740.305500px;}
.y2c{bottom:740.787000px;}
.yc2{bottom:741.483000px;}
.y15d{bottom:746.328000px;}
.y109{bottom:746.872500px;}
.y4f{bottom:748.375500px;}
.y15c{bottom:750.373500px;}
.ye5{bottom:754.807500px;}
.y187{bottom:756.189000px;}
.yc1{bottom:761.806500px;}
.y1c6{bottom:763.248000px;}
.y9b{bottom:764.551500px;}
.y131{bottom:765.117000px;}
.y1c5{bottom:767.632500px;}
.y74{bottom:770.791500px;}
.y15b{bottom:772.863000px;}
.y4e{bottom:773.182500px;}
.y15a{bottom:776.908500px;}
.y1b8{bottom:776.947500px;}
.y1b7{bottom:781.857000px;}
.y9a{bottom:786.369000px;}
.y1b6{bottom:786.766500px;}
.y1c4{bottom:787.636500px;}
.y6{bottom:788.431500px;}
.y2b{bottom:789.840000px;}
.y1b5{bottom:791.674500px;}
.y130{bottom:792.016500px;}
.y1c3{bottom:792.021000px;}
.y4d{bottom:793.944000px;}
.y108{bottom:794.379000px;}
.yc0{bottom:796.186500px;}
.y1b4{bottom:796.584000px;}
.y4c{bottom:797.989500px;}
.y159{bottom:799.399500px;}
.y186{bottom:800.002500px;}
.y73{bottom:801.277500px;}
.y1b3{bottom:801.493500px;}
.y158{bottom:803.443500px;}
.y1b2{bottom:806.403000px;}
.y99{bottom:806.692500px;}
.y107{bottom:808.585500px;}
.y5{bottom:808.756500px;}
.ye4{bottom:808.783500px;}
.y1b1{bottom:811.311000px;}
.y2a{bottom:811.659000px;}
.y1c2{bottom:812.025000px;}
.y1b0{bottom:816.220500px;}
.y1c1{bottom:816.409500px;}
.y185{bottom:820.326000px;}
.y1af{bottom:821.130000px;}
.y157{bottom:825.934500px;}
.y1ae{bottom:826.039500px;}
.y98{bottom:827.016000px;}
.y4{bottom:829.080000px;}
.y156{bottom:829.980000px;}
.y1ad{bottom:830.947500px;}
.y72{bottom:831.763500px;}
.y29{bottom:831.982500px;}
.y106{bottom:834.886500px;}
.y12f{bottom:835.066500px;}
.ye3{bottom:835.084500px;}
.y1c0{bottom:836.413500px;}
.y12e{bottom:839.110500px;}
.ybf{bottom:840.000000px;}
.y184{bottom:840.649500px;}
.y1bf{bottom:840.798000px;}
.y4b{bottom:844.914000px;}
.y97{bottom:847.341000px;}
.y71{bottom:852.087000px;}
.y28{bottom:852.306000px;}
.ye2{bottom:855.408000px;}
.ybe{bottom:860.323500px;}
.y1ac{bottom:860.403000px;}
.y1be{bottom:860.802000px;}
.y183{bottom:860.973000px;}
.y12d{bottom:861.601500px;}
.y1bd{bottom:865.186500px;}
.y1ab{bottom:865.312500px;}
.y12c{bottom:865.647000px;}
.y96{bottom:867.664500px;}
.y155{bottom:868.152000px;}
.y1aa{bottom:870.220500px;}
.y4a{bottom:871.215000px;}
.y27{bottom:872.629500px;}
.y1a9{bottom:875.130000px;}
.ye1{bottom:875.733000px;}
.y105{bottom:878.646000px;}
.y1a8{bottom:880.039500px;}
.ybd{bottom:880.647000px;}
.y70{bottom:881.190000px;}
.y182{bottom:881.296500px;}
.y1a7{bottom:884.949000px;}
.y1bc{bottom:885.190500px;}
.y12b{bottom:888.138000px;}
.y6f{bottom:888.610500px;}
.y1bb{bottom:889.575000px;}
.y1a6{bottom:889.857000px;}
.y12a{bottom:892.182000px;}
.y26{bottom:894.448500px;}
.y154{bottom:894.453000px;}
.y1a5{bottom:894.766500px;}
.ye0{bottom:896.056500px;}
.y1a4{bottom:899.676000px;}
.ybc{bottom:900.972000px;}
.y181{bottom:901.621500px;}
.y1a3{bottom:904.585500px;}
.y104{bottom:904.948500px;}
.y49{bottom:907.122000px;}
.y95{bottom:907.239000px;}
.y1a2{bottom:909.493500px;}
.y1ba{bottom:909.579000px;}
.y1b9{bottom:913.963500px;}
.y1a1{bottom:914.403000px;}
.y129{bottom:914.673000px;}
.y25{bottom:914.772000px;}
.y153{bottom:914.776500px;}
.y3{bottom:915.055500px;}
.ydf{bottom:916.380000px;}
.y6e{bottom:917.563500px;}
.y128{bottom:918.718500px;}
.ybb{bottom:921.295500px;}
.y180{bottom:921.945000px;}
.y103{bottom:925.272000px;}
.y94{bottom:927.562500px;}
.y1a0{bottom:929.130000px;}
.y24{bottom:935.095500px;}
.y152{bottom:935.100000px;}
.y6d{bottom:938.335500px;}
.yba{bottom:941.619000px;}
.y17f{bottom:942.268500px;}
.y6c{bottom:944.463000px;}
.y127{bottom:944.835000px;}
.y102{bottom:945.595500px;}
.y93{bottom:947.887500px;}
.yde{bottom:950.758500px;}
.y151{bottom:955.423500px;}
.y23{bottom:956.913000px;}
.y48{bottom:956.914500px;}
.yb9{bottom:961.942500px;}
.y17e{bottom:962.592000px;}
.y19f{bottom:963.015000px;}
.y101{bottom:965.919000px;}
.y2{bottom:967.060500px;}
.y92{bottom:968.211000px;}
.y126{bottom:971.137500px;}
.y6b{bottom:971.362500px;}
.y22{bottom:977.238000px;}
.yb8{bottom:982.266000px;}
.y17d{bottom:982.915500px;}
.y100{bottom:986.242500px;}
.y1{bottom:987.981000px;}
.y91{bottom:988.534500px;}
.y150{bottom:992.095500px;}
.y21{bottom:999.055500px;}
.ydd{bottom:1000.549500px;}
.yb7{bottom:1002.591000px;}
.y19e{bottom:1003.663500px;}
.yff{bottom:1006.566000px;}
.y90{bottom:1008.858000px;}
.y125{bottom:1014.897000px;}
.y20{bottom:1019.379000px;}
.ydc{bottom:1020.874500px;}
.y6a{bottom:1022.914500px;}
.yfe{bottom:1026.891000px;}
.y8f{bottom:1029.181500px;}
.y19d{bottom:1029.964500px;}
.y1f{bottom:1041.198000px;}
.y69{bottom:1043.238000px;}
.y1e{bottom:1061.521500px;}
.y68{bottom:1063.561500px;}
.h21{height:2.618184px;}
.h1d{height:35.865450px;}
.h6{height:45.556402px;}
.h16{height:45.883675px;}
.h12{height:49.090950px;}
.h3{height:49.156405px;}
.h15{height:50.283571px;}
.h2{height:51.287808px;}
.hb{height:53.798400px;}
.ha{height:59.619450px;}
.he{height:60.426194px;}
.h11{height:61.607492px;}
.h7{height:61.893450px;}
.hf{height:61.899450px;}
.h13{height:62.889450px;}
.h10{height:62.895450px;}
.h4{height:64.557900px;}
.h1c{height:65.266950px;}
.h14{height:65.272950px;}
.h1e{height:66.027450px;}
.h23{height:66.628950px;}
.hd{height:71.816184px;}
.h9{height:71.822184px;}
.h1{height:72.614557px;}
.h5{height:72.720266px;}
.h19{height:76.067700px;}
.h22{height:77.157450px;}
.h20{height:78.206184px;}
.hc{height:79.071450px;}
.h8{height:79.077450px;}
.h17{height:82.962266px;}
.h1a{height:83.027700px;}
.h1f{height:84.261450px;}
.h18{height:89.067900px;}
.h1b{height:102.851088px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2c{left:61.237500px;}
.x6{left:69.693000px;}
.x4{left:108.000000px;}
.x28{left:113.977500px;}
.x5a{left:116.731500px;}
.x9{left:122.655000px;}
.xa{left:124.170000px;}
.x48{left:126.993000px;}
.x2b{left:132.592500px;}
.x5b{left:142.447500px;}
.x5{left:143.499000px;}
.x7{left:147.801000px;}
.x27{left:153.942000px;}
.x5c{left:157.953000px;}
.x49{left:162.498000px;}
.x11{left:166.972500px;}
.x2d{left:177.046500px;}
.x16{left:181.624500px;}
.x17{left:193.501500px;}
.x4a{left:198.003000px;}
.x1f{left:202.852500px;}
.x8{left:206.992500px;}
.x37{left:213.109500px;}
.xe{left:215.448000px;}
.x3{left:220.156500px;}
.x46{left:222.460500px;}
.x79{left:223.903500px;}
.x38{left:227.007000px;}
.xb{left:228.241500px;}
.x20{left:232.006500px;}
.x4b{left:233.506500px;}
.x18{left:236.551500px;}
.xf{left:249.271500px;}
.x2e{left:252.726000px;}
.x39{left:256.159500px;}
.x1{left:258.055500px;}
.x2f{left:275.527500px;}
.x21{left:281.160000px;}
.x10{left:283.095000px;}
.x5d{left:284.466000px;}
.x19{left:285.705000px;}
.x4c{left:289.011000px;}
.xc{left:292.140000px;}
.x2{left:294.325500px;}
.x67{left:299.970000px;}
.x3a{left:305.313000px;}
.x22{left:310.312500px;}
.x1a{left:314.859000px;}
.x5e{left:319.971000px;}
.x78{left:322.381500px;}
.x4d{left:324.516000px;}
.x47{left:329.920500px;}
.x6e{left:331.833000px;}
.x3b{left:334.467000px;}
.x6f{left:346.378500px;}
.x30{left:351.207000px;}
.x56{left:355.474500px;}
.x23{left:359.466000px;}
.x1b{left:364.012500px;}
.x3c{left:370.893000px;}
.x24{left:388.618500px;}
.x5f{left:390.979500px;}
.x1c{left:393.165000px;}
.x4e{left:395.524500px;}
.x70{left:398.331000px;}
.x77{left:414.079500px;}
.x42{left:424.653000px;}
.x68{left:426.484500px;}
.x71{left:432.453000px;}
.x12{left:434.008500px;}
.x25{left:437.772000px;}
.x1d{left:442.318500px;}
.x60{left:446.484000px;}
.x74{left:448.201500px;}
.x4f{left:451.029000px;}
.x43{left:453.807000px;}
.xd{left:454.932000px;}
.x72{left:459.360000px;}
.x57{left:461.988000px;}
.x26{left:466.926000px;}
.x1e{left:471.471000px;}
.x13{left:476.809500px;}
.x3d{left:478.351500px;}
.x61{left:481.989000px;}
.x50{left:486.534000px;}
.x75{left:489.229500px;}
.x73{left:494.976000px;}
.x44{left:502.959000px;}
.x62{left:517.492500px;}
.x51{left:522.039000px;}
.x31{left:525.366000px;}
.x45{left:532.113000px;}
.x76{left:539.025000px;}
.x63{left:552.997500px;}
.x32{left:555.441000px;}
.x52{left:557.542500px;}
.x3e{left:573.084000px;}
.x33{left:578.242500px;}
.x58{left:588.502500px;}
.x6c{left:599.296500px;}
.x3f{left:602.238000px;}
.x34{left:608.317500px;}
.x53{left:613.047000px;}
.x14{left:625.365000px;}
.x6d{left:641.992500px;}
.x64{left:644.007000px;}
.x54{left:648.552000px;}
.x40{left:651.391500px;}
.x69{left:659.511000px;}
.x15{left:668.167500px;}
.x6a{left:672.238500px;}
.x65{left:679.512000px;}
.x41{left:680.544000px;}
.x35{left:683.995500px;}
.x2a{left:687.831000px;}
.x59{left:695.016000px;}
.x36{left:706.798500px;}
.x66{left:715.015500px;}
.x55{left:719.560500px;}
.x29{left:765.078000px;}
.x6b{left:778.753500px;}
@media print{
.v7{vertical-align:-47.130667pt;}
.v11{vertical-align:-36.133333pt;}
.v8{vertical-align:-23.104000pt;}
.vf{vertical-align:-19.445333pt;}
.v2{vertical-align:-13.498667pt;}
.v1{vertical-align:-11.477333pt;}
.v4{vertical-align:-9.920000pt;}
.vd{vertical-align:-8.725333pt;}
.v19{vertical-align:-6.480000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:5.658667pt;}
.v1d{vertical-align:6.864000pt;}
.v6{vertical-align:10.997333pt;}
.v9{vertical-align:14.384000pt;}
.v1c{vertical-align:15.589333pt;}
.v1b{vertical-align:20.058667pt;}
.ve{vertical-align:21.114667pt;}
.v5{vertical-align:23.136000pt;}
.v10{vertical-align:24.026667pt;}
.v17{vertical-align:26.810667pt;}
.v3{vertical-align:27.765333pt;}
.v14{vertical-align:33.952000pt;}
.v13{vertical-align:36.869333pt;}
.vb{vertical-align:38.410667pt;}
.v16{vertical-align:43.637333pt;}
.v12{vertical-align:57.386667pt;}
.vc{vertical-align:61.514667pt;}
.v18{vertical-align:64.330667pt;}
.v1a{vertical-align:67.189333pt;}
.v15{vertical-align:88.362667pt;}
.ls15{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000125pt;}
.ls3{letter-spacing:0.000198pt;}
.ls51{letter-spacing:0.000396pt;}
.ls34{letter-spacing:0.000479pt;}
.ls2b{letter-spacing:0.000536pt;}
.ls7{letter-spacing:0.000945pt;}
.ls50{letter-spacing:0.000947pt;}
.ls0{letter-spacing:0.001008pt;}
.ls5e{letter-spacing:0.001146pt;}
.lsa{letter-spacing:0.001429pt;}
.ls4f{letter-spacing:0.001431pt;}
.ls13{letter-spacing:0.001812pt;}
.ls5f{letter-spacing:0.001917pt;}
.ls5d{letter-spacing:0.002378pt;}
.ls38{letter-spacing:0.002387pt;}
.lsc{letter-spacing:0.002397pt;}
.ls3c{letter-spacing:0.002400pt;}
.ls41{letter-spacing:0.002405pt;}
.ls57{letter-spacing:0.002411pt;}
.ls18{letter-spacing:0.002452pt;}
.lsf{letter-spacing:0.002591pt;}
.ls62{letter-spacing:0.002717pt;}
.ls69{letter-spacing:0.002881pt;}
.ls1{letter-spacing:0.002906pt;}
.ls60{letter-spacing:0.003608pt;}
.ls65{letter-spacing:0.003733pt;}
.ls3f{letter-spacing:0.003851pt;}
.ls2f{letter-spacing:0.004716pt;}
.ls17{letter-spacing:0.004966pt;}
.ls24{letter-spacing:0.005183pt;}
.ls55{letter-spacing:0.005459pt;}
.ls37{letter-spacing:0.006062pt;}
.lsb{letter-spacing:0.006763pt;}
.ls27{letter-spacing:0.058182pt;}
.ls61{letter-spacing:2.652701pt;}
.lse{letter-spacing:2.653258pt;}
.ls2{letter-spacing:2.653573pt;}
.ls1c{letter-spacing:2.654181pt;}
.ls40{letter-spacing:2.654400pt;}
.ls48{letter-spacing:2.654605pt;}
.ls70{letter-spacing:2.657146pt;}
.ls1b{letter-spacing:2.658245pt;}
.ls4{letter-spacing:2.658387pt;}
.lsd{letter-spacing:2.658591pt;}
.ls1d{letter-spacing:2.658906pt;}
.ls35{letter-spacing:2.659733pt;}
.ls31{letter-spacing:4.109470pt;}
.ls14{letter-spacing:4.132666pt;}
.ls5b{letter-spacing:4.532345pt;}
.ls1e{letter-spacing:5.308911pt;}
.ls21{letter-spacing:5.315514pt;}
.ls33{letter-spacing:5.792271pt;}
.ls6c{letter-spacing:6.459608pt;}
.ls30{letter-spacing:6.772716pt;}
.ls71{letter-spacing:8.081908pt;}
.ls53{letter-spacing:9.693077pt;}
.ls54{letter-spacing:9.698411pt;}
.ls23{letter-spacing:10.624990pt;}
.ls59{letter-spacing:10.630323pt;}
.ls44{letter-spacing:12.927008pt;}
.ls19{letter-spacing:12.927477pt;}
.ls1a{letter-spacing:12.932811pt;}
.ls4e{letter-spacing:14.166642pt;}
.ls56{letter-spacing:14.171976pt;}
.ls46{letter-spacing:15.581258pt;}
.ls6b{letter-spacing:15.586591pt;}
.ls47{letter-spacing:15.587733pt;}
.ls6e{letter-spacing:16.157077pt;}
.ls6f{letter-spacing:16.159467pt;}
.ls12{letter-spacing:16.159477pt;}
.ls64{letter-spacing:16.161917pt;}
.ls45{letter-spacing:16.162401pt;}
.ls3e{letter-spacing:16.163851pt;}
.ls3a{letter-spacing:16.489672pt;}
.ls3b{letter-spacing:16.490144pt;}
.ls4d{letter-spacing:16.823925pt;}
.ls1f{letter-spacing:17.002491pt;}
.ls20{letter-spacing:17.003203pt;}
.ls5a{letter-spacing:17.706667pt;}
.ls4a{letter-spacing:17.707703pt;}
.ls9{letter-spacing:17.710933pt;}
.ls58{letter-spacing:17.712000pt;}
.ls6a{letter-spacing:18.813258pt;}
.ls11{letter-spacing:18.818591pt;}
.ls42{letter-spacing:18.822479pt;}
.ls43{letter-spacing:19.293067pt;}
.ls49{letter-spacing:19.293072pt;}
.ls6d{letter-spacing:19.394411pt;}
.ls8{letter-spacing:20.365258pt;}
.ls52{letter-spacing:20.370591pt;}
.ls2e{letter-spacing:21.247648pt;}
.ls6{letter-spacing:21.248990pt;}
.ls67{letter-spacing:21.250803pt;}
.ls2d{letter-spacing:21.256174pt;}
.ls2a{letter-spacing:21.565470pt;}
.ls29{letter-spacing:21.566152pt;}
.ls5c{letter-spacing:22.504203pt;}
.ls66{letter-spacing:23.907733pt;}
.ls32{letter-spacing:24.415824pt;}
.ls68{letter-spacing:27.367242pt;}
.ls2c{letter-spacing:28.255824pt;}
.ls3d{letter-spacing:29.087976pt;}
.ls36{letter-spacing:29.243438pt;}
.ls16{letter-spacing:30.021843pt;}
.ls4c{letter-spacing:30.048268pt;}
.ls4b{letter-spacing:30.073296pt;}
.ls28{letter-spacing:30.076641pt;}
.ls5{letter-spacing:30.080025pt;}
.ls26{letter-spacing:30.091179pt;}
.ls25{letter-spacing:36.141258pt;}
.ls39{letter-spacing:36.610489pt;}
.ls63{letter-spacing:42.354034pt;}
.ls22{letter-spacing:49.501258pt;}
.ws22{word-spacing:-63.811898pt;}
.ws32{word-spacing:-60.575395pt;}
.ws2c{word-spacing:-60.142596pt;}
.ws8{word-spacing:-48.708218pt;}
.ws15{word-spacing:-46.062584pt;}
.ws12{word-spacing:-40.590295pt;}
.ws18{word-spacing:-37.899668pt;}
.ws30{word-spacing:-36.007049pt;}
.ws9{word-spacing:-34.611401pt;}
.ws23{word-spacing:-31.722317pt;}
.wsd{word-spacing:-30.062571pt;}
.ws42{word-spacing:-29.942197pt;}
.ws5f{word-spacing:-28.928024pt;}
.ws38{word-spacing:-28.241478pt;}
.ws16{word-spacing:-28.183296pt;}
.ws5b{word-spacing:-25.837228pt;}
.ws3c{word-spacing:-21.726172pt;}
.ws31{word-spacing:-21.109955pt;}
.ws34{word-spacing:-17.666867pt;}
.ws4e{word-spacing:-15.983580pt;}
.ws62{word-spacing:-14.731649pt;}
.ws14{word-spacing:-14.110186pt;}
.ws47{word-spacing:-14.108756pt;}
.ws1a{word-spacing:-14.070753pt;}
.ws20{word-spacing:-14.035500pt;}
.ws35{word-spacing:-14.024530pt;}
.ws4a{word-spacing:-13.994240pt;}
.ws2f{word-spacing:-13.841214pt;}
.ws46{word-spacing:-12.012585pt;}
.ws4b{word-spacing:-11.981524pt;}
.ws11{word-spacing:-11.948824pt;}
.ws57{word-spacing:-11.124373pt;}
.ws4{word-spacing:-10.484372pt;}
.ws5{word-spacing:-9.669826pt;}
.ws58{word-spacing:-9.656949pt;}
.ws3e{word-spacing:-9.653488pt;}
.ws5a{word-spacing:-9.649637pt;}
.ws3d{word-spacing:-9.644669pt;}
.ws53{word-spacing:-9.618116pt;}
.ws39{word-spacing:-9.611644pt;}
.ws56{word-spacing:-9.495281pt;}
.ws37{word-spacing:-9.437099pt;}
.ws3b{word-spacing:-8.925098pt;}
.ws60{word-spacing:-8.797098pt;}
.ws6{word-spacing:-7.873195pt;}
.ws5d{word-spacing:-7.808007pt;}
.ws3{word-spacing:-6.935279pt;}
.ws2a{word-spacing:-2.384664pt;}
.ws29{word-spacing:-2.370275pt;}
.ws1f{word-spacing:-1.752149pt;}
.ws7{word-spacing:-1.356447pt;}
.wsa{word-spacing:-0.076513pt;}
.ws24{word-spacing:-0.063761pt;}
.ws19{word-spacing:-0.058182pt;}
.ws33{word-spacing:-0.053134pt;}
.ws1c{word-spacing:-0.042507pt;}
.wsc{word-spacing:-0.040727pt;}
.ws10{word-spacing:-0.031881pt;}
.ws2b{word-spacing:-0.023146pt;}
.ws55{word-spacing:-0.022495pt;}
.ws1b{word-spacing:0.000000pt;}
.wse{word-spacing:0.017455pt;}
.ws44{word-spacing:0.020281pt;}
.ws45{word-spacing:0.030162pt;}
.wsb{word-spacing:7.115642pt;}
.ws43{word-spacing:7.173824pt;}
.ws4d{word-spacing:9.637306pt;}
.ws48{word-spacing:9.697442pt;}
.ws13{word-spacing:9.701467pt;}
.ws28{word-spacing:10.974797pt;}
.ws27{word-spacing:11.005160pt;}
.ws54{word-spacing:12.309467pt;}
.ws3f{word-spacing:12.858193pt;}
.ws26{word-spacing:15.533267pt;}
.ws50{word-spacing:15.535858pt;}
.ws1e{word-spacing:15.536009pt;}
.ws25{word-spacing:15.538600pt;}
.ws51{word-spacing:15.541191pt;}
.ws1d{word-spacing:15.541342pt;}
.ws63{word-spacing:15.941831pt;}
.ws5c{word-spacing:16.058195pt;}
.ws59{word-spacing:16.089142pt;}
.ws3a{word-spacing:16.116377pt;}
.ws4c{word-spacing:17.642477pt;}
.ws41{word-spacing:17.661815pt;}
.ws64{word-spacing:20.596381pt;}
.ws1{word-spacing:20.722347pt;}
.ws21{word-spacing:21.153660pt;}
.ws61{word-spacing:21.352745pt;}
.ws17{word-spacing:22.109109pt;}
.ws5e{word-spacing:22.283655pt;}
.ws49{word-spacing:23.879728pt;}
.ws36{word-spacing:26.049233pt;}
.ws0{word-spacing:28.646426pt;}
.ws2e{word-spacing:28.800024pt;}
.ws4f{word-spacing:29.963661pt;}
.wsf{word-spacing:30.021843pt;}
.ws2d{word-spacing:31.592754pt;}
.ws2{word-spacing:33.862516pt;}
.ws52{word-spacing:35.849481pt;}
.ws40{word-spacing:35.852704pt;}
._f{margin-left:-30.080025pt;}
._a{margin-left:-10.772178pt;}
._18{margin-left:-9.807332pt;}
._6{margin-left:-6.962689pt;}
._9{margin-left:-5.993540pt;}
._0{margin-left:-4.774404pt;}
._14{margin-left:-2.945748pt;}
._2{margin-left:-1.721549pt;}
._1{width:1.849071pt;}
._b{width:3.436397pt;}
._15{width:4.932121pt;}
._1b{width:15.644198pt;}
._c{width:17.872425pt;}
._1a{width:22.303052pt;}
._19{width:23.395555pt;}
._4{width:25.530681pt;}
._16{width:26.660879pt;}
._17{width:28.782841pt;}
._12{width:30.347027pt;}
._8{width:31.880533pt;}
._11{width:33.639486pt;}
._e{width:36.080399pt;}
._13{width:38.320289pt;}
._10{width:48.523677pt;}
._7{width:71.731200pt;}
._d{width:77.724740pt;}
._5{width:84.164373pt;}
._3{width:188.541474pt;}
.fs5{font-size:31.880533pt;}
.fs7{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs4{font-size:53.133867pt;}
.fs2{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:56.149333pt;}
.y47{bottom:105.198667pt;}
.y124{bottom:111.157333pt;}
.yb6{bottom:111.322667pt;}
.y14f{bottom:113.373333pt;}
.ydb{bottom:118.428000pt;}
.y46{bottom:123.265333pt;}
.y123{bottom:129.222667pt;}
.yb5{bottom:129.388000pt;}
.y8e{bottom:131.216000pt;}
.y14e{bottom:131.438667pt;}
.yda{bottom:136.493333pt;}
.y1c{bottom:136.966667pt;}
.y67{bottom:140.309333pt;}
.y45{bottom:141.330667pt;}
.y122{bottom:147.288000pt;}
.yb4{bottom:147.453333pt;}
.y8d{bottom:149.281333pt;}
.y14d{bottom:150.832000pt;}
.yd9{bottom:154.558667pt;}
.y1b{bottom:155.032000pt;}
.yfd{bottom:158.004000pt;}
.y44{bottom:159.396000pt;}
.y66{bottom:163.688000pt;}
.y121{bottom:165.354667pt;}
.yb3{bottom:165.520000pt;}
.y1d9{bottom:167.261333pt;}
.y8c{bottom:167.348000pt;}
.y14c{bottom:168.897333pt;}
.y1a{bottom:173.097333pt;}
.yd8{bottom:173.953333pt;}
.yfc{bottom:177.398667pt;}
.y43{bottom:177.461333pt;}
.y65{bottom:181.753333pt;}
.y120{bottom:183.420000pt;}
.y19c{bottom:183.526667pt;}
.yb2{bottom:183.585333pt;}
.y1d8{bottom:185.326667pt;}
.y8b{bottom:185.413333pt;}
.y14b{bottom:186.964000pt;}
.y19{bottom:191.162667pt;}
.yd7{bottom:192.018667pt;}
.y17c{bottom:194.573333pt;}
.yfb{bottom:195.464000pt;}
.y42{bottom:195.526667pt;}
.y64{bottom:201.146667pt;}
.y11f{bottom:201.485333pt;}
.yb1{bottom:201.650667pt;}
.y8a{bottom:203.478667pt;}
.y14a{bottom:205.029333pt;}
.y18{bottom:209.229333pt;}
.yd6{bottom:210.084000pt;}
.y1d7{bottom:212.425333pt;}
.y17b{bottom:212.640000pt;}
.y19b{bottom:213.390667pt;}
.yfa{bottom:213.529333pt;}
.y41{bottom:213.593333pt;}
.y63{bottom:219.213333pt;}
.y11e{bottom:219.550667pt;}
.yb0{bottom:219.716000pt;}
.y89{bottom:221.544000pt;}
.y149{bottom:223.094667pt;}
.yd5{bottom:228.149333pt;}
.y1d6{bottom:230.490667pt;}
.y17a{bottom:230.705333pt;}
.y19a{bottom:231.456000pt;}
.y40{bottom:231.658667pt;}
.yf9{bottom:232.924000pt;}
.y11d{bottom:237.616000pt;}
.yaf{bottom:237.781333pt;}
.y62{bottom:238.606667pt;}
.y88{bottom:239.609333pt;}
.y148{bottom:241.160000pt;}
.y17{bottom:245.821333pt;}
.yd4{bottom:246.214667pt;}
.y179{bottom:248.770667pt;}
.y199{bottom:249.522667pt;}
.y3f{bottom:249.724000pt;}
.yf8{bottom:250.989333pt;}
.yae{bottom:255.848000pt;}
.y61{bottom:256.672000pt;}
.y1d5{bottom:257.589333pt;}
.y87{bottom:257.676000pt;}
.y147{bottom:260.554667pt;}
.y178{bottom:266.836000pt;}
.y11c{bottom:268.885333pt;}
.yf7{bottom:269.054667pt;}
.y3e{bottom:269.117333pt;}
.y60{bottom:274.737333pt;}
.y1d4{bottom:275.654667pt;}
.y86{bottom:275.741333pt;}
.y146{bottom:278.620000pt;}
.yd3{bottom:281.074667pt;}
.y198{bottom:281.988000pt;}
.y177{bottom:284.901333pt;}
.y3d{bottom:287.184000pt;}
.yad{bottom:288.258667pt;}
.yf6{bottom:288.449333pt;}
.y16{bottom:291.645333pt;}
.y85{bottom:293.806667pt;}
.y145{bottom:296.685333pt;}
.y176{bottom:302.968000pt;}
.yf5{bottom:306.514667pt;}
.y3c{bottom:306.577333pt;}
.yac{bottom:307.653333pt;}
.y1d3{bottom:308.121333pt;}
.y5f{bottom:309.916000pt;}
.y11b{bottom:313.144000pt;}
.y144{bottom:314.750667pt;}
.y3b{bottom:324.642667pt;}
.yab{bottom:325.718667pt;}
.yf4{bottom:325.908000pt;}
.y84{bottom:326.218667pt;}
.yd2{bottom:326.898667pt;}
.y197{bottom:327.812000pt;}
.y175{bottom:329.033333pt;}
.y174{bottom:329.748000pt;}
.y11a{bottom:331.209333pt;}
.y143{bottom:332.816000pt;}
.y15{bottom:333.213333pt;}
.y173{bottom:334.048000pt;}
.y5e{bottom:340.474667pt;}
.y3a{bottom:342.708000pt;}
.yaa{bottom:343.784000pt;}
.yf3{bottom:343.973333pt;}
.y83{bottom:345.612000pt;}
.y14{bottom:345.842667pt;}
.y119{bottom:350.602667pt;}
.y142{bottom:350.882667pt;}
.yd1{bottom:353.997333pt;}
.y5d{bottom:359.072000pt;}
.y196{bottom:360.224000pt;}
.y39{bottom:360.774667pt;}
.y172{bottom:361.505333pt;}
.ya9{bottom:361.849333pt;}
.y1d2{bottom:362.977333pt;}
.yf2{bottom:363.368000pt;}
.y82{bottom:363.677333pt;}
.y118{bottom:368.669333pt;}
.y141{bottom:368.948000pt;}
.y13{bottom:369.221333pt;}
.yd0{bottom:372.062667pt;}
.y5c{bottom:377.668000pt;}
.y38{bottom:378.840000pt;}
.y195{bottom:379.618667pt;}
.ya8{bottom:379.916000pt;}
.yf1{bottom:381.433333pt;}
.y81{bottom:381.744000pt;}
.y1d1{bottom:386.357333pt;}
.y140{bottom:387.013333pt;}
.y117{bottom:388.062667pt;}
.y171{bottom:394.502667pt;}
.y37{bottom:396.905333pt;}
.y194{bottom:397.684000pt;}
.yf0{bottom:399.498667pt;}
.y80{bottom:399.809333pt;}
.y12{bottom:401.818667pt;}
.ycf{bottom:404.474667pt;}
.y13f{bottom:405.078667pt;}
.y116{bottom:406.128000pt;}
.y36{bottom:414.970667pt;}
.ya7{bottom:415.093333pt;}
.y193{bottom:417.077333pt;}
.yef{bottom:417.564000pt;}
.y7f{bottom:417.874667pt;}
.y5b{bottom:421.928000pt;}
.y1d0{bottom:422.488000pt;}
.yce{bottom:422.540000pt;}
.y115{bottom:424.193333pt;}
.y13e{bottom:424.473333pt;}
.y170{bottom:430.604000pt;}
.ya6{bottom:433.158667pt;}
.y16f{bottom:434.200000pt;}
.y192{bottom:435.142667pt;}
.yee{bottom:435.630667pt;}
.y5a{bottom:439.993333pt;}
.y1cf{bottom:441.882667pt;}
.ycd{bottom:441.933333pt;}
.y114{bottom:442.260000pt;}
.y13d{bottom:442.538667pt;}
.y11{bottom:446.077333pt;}
.ya5{bottom:451.224000pt;}
.y35{bottom:452.806667pt;}
.y7e{bottom:453.052000pt;}
.y191{bottom:453.209333pt;}
.y16e{bottom:454.190667pt;}
.y16d{bottom:457.786667pt;}
.y59{bottom:458.058667pt;}
.y1ce{bottom:459.948000pt;}
.ycc{bottom:460.000000pt;}
.y113{bottom:460.325333pt;}
.y13c{bottom:461.932000pt;}
.y10{bottom:464.142667pt;}
.ya4{bottom:469.290667pt;}
.y7d{bottom:471.118667pt;}
.y190{bottom:471.274667pt;}
.yed{bottom:471.817333pt;}
.y58{bottom:476.124000pt;}
.y34{bottom:476.717333pt;}
.y16c{bottom:477.777333pt;}
.y16b{bottom:477.778667pt;}
.y1cd{bottom:479.341333pt;}
.ycb{bottom:479.393333pt;}
.y112{bottom:479.718667pt;}
.y13b{bottom:479.997333pt;}
.y16a{bottom:481.373333pt;}
.yf{bottom:482.208000pt;}
.ya3{bottom:487.356000pt;}
.y7c{bottom:489.184000pt;}
.y57{bottom:494.189333pt;}
.y1cc{bottom:497.406667pt;}
.yca{bottom:497.458667pt;}
.y111{bottom:497.784000pt;}
.y13a{bottom:499.392000pt;}
.y169{bottom:501.365333pt;}
.ye{bottom:501.602667pt;}
.y168{bottom:504.961333pt;}
.ya2{bottom:505.421333pt;}
.y18f{bottom:506.452000pt;}
.y7b{bottom:507.249333pt;}
.y56{bottom:512.256000pt;}
.yc9{bottom:515.524000pt;}
.y110{bottom:517.178667pt;}
.y139{bottom:517.457333pt;}
.y33{bottom:518.289333pt;}
.yd{bottom:519.668000pt;}
.ya1{bottom:523.486667pt;}
.y18e{bottom:524.517333pt;}
.y167{bottom:524.952000pt;}
.y7a{bottom:525.314667pt;}
.yec{bottom:526.674667pt;}
.y166{bottom:528.548000pt;}
.y32{bottom:530.918667pt;}
.y1cb{bottom:533.538667pt;}
.yc8{bottom:533.590667pt;}
.y10f{bottom:535.244000pt;}
.y138{bottom:535.522667pt;}
.yc{bottom:537.733333pt;}
.y18d{bottom:542.584000pt;}
.y79{bottom:543.380000pt;}
.y55{bottom:548.442667pt;}
.y165{bottom:548.540000pt;}
.yeb{bottom:550.053333pt;}
.y1ca{bottom:551.604000pt;}
.y164{bottom:552.136000pt;}
.y10e{bottom:553.309333pt;}
.y137{bottom:553.588000pt;}
.ya0{bottom:554.046667pt;}
.y31{bottom:554.297333pt;}
.yb{bottom:555.798667pt;}
.y18c{bottom:560.649333pt;}
.y78{bottom:561.446667pt;}
.yea{bottom:568.118667pt;}
.yc7{bottom:568.768000pt;}
.y10d{bottom:571.374667pt;}
.y30{bottom:572.362667pt;}
.y136{bottom:572.982667pt;}
.ya{bottom:573.864000pt;}
.y163{bottom:575.722667pt;}
.y18b{bottom:578.714667pt;}
.y1c9{bottom:581.468000pt;}
.ye9{bottom:586.185333pt;}
.yc6{bottom:586.833333pt;}
.y10c{bottom:589.441333pt;}
.y2f{bottom:590.428000pt;}
.y135{bottom:591.048000pt;}
.y9{bottom:591.930667pt;}
.y77{bottom:592.005333pt;}
.y54{bottom:592.402667pt;}
.y9f{bottom:592.992000pt;}
.y53{bottom:595.997333pt;}
.y18a{bottom:596.780000pt;}
.y162{bottom:597.773333pt;}
.ye8{bottom:604.250667pt;}
.yc5{bottom:604.898667pt;}
.y10b{bottom:607.506667pt;}
.y2e{bottom:608.493333pt;}
.y134{bottom:609.113333pt;}
.y9e{bottom:611.057333pt;}
.y1c8{bottom:614.145333pt;}
.y189{bottom:614.845333pt;}
.y161{bottom:616.228000pt;}
.y52{bottom:619.585333pt;}
.y160{bottom:619.824000pt;}
.ye7{bottom:622.316000pt;}
.yc4{bottom:622.965333pt;}
.y2d{bottom:626.560000pt;}
.y133{bottom:627.180000pt;}
.y9d{bottom:629.122667pt;}
.y76{bottom:630.950667pt;}
.y8{bottom:631.094667pt;}
.y51{bottom:638.040000pt;}
.y15f{bottom:639.814667pt;}
.y10a{bottom:639.976000pt;}
.ye6{bottom:640.381333pt;}
.yc3{bottom:641.030667pt;}
.y50{bottom:641.636000pt;}
.y15e{bottom:643.410667pt;}
.y188{bottom:644.710667pt;}
.y132{bottom:645.245333pt;}
.y1c7{bottom:646.824000pt;}
.y9c{bottom:647.189333pt;}
.y7{bottom:655.004000pt;}
.y75{bottom:658.049333pt;}
.y2c{bottom:658.477333pt;}
.yc2{bottom:659.096000pt;}
.y15d{bottom:663.402667pt;}
.y109{bottom:663.886667pt;}
.y4f{bottom:665.222667pt;}
.y15c{bottom:666.998667pt;}
.ye5{bottom:670.940000pt;}
.y187{bottom:672.168000pt;}
.yc1{bottom:677.161333pt;}
.y1c6{bottom:678.442667pt;}
.y9b{bottom:679.601333pt;}
.y131{bottom:680.104000pt;}
.y1c5{bottom:682.340000pt;}
.y74{bottom:685.148000pt;}
.y15b{bottom:686.989333pt;}
.y4e{bottom:687.273333pt;}
.y15a{bottom:690.585333pt;}
.y1b8{bottom:690.620000pt;}
.y1b7{bottom:694.984000pt;}
.y9a{bottom:698.994667pt;}
.y1b6{bottom:699.348000pt;}
.y1c4{bottom:700.121333pt;}
.y6{bottom:700.828000pt;}
.y2b{bottom:702.080000pt;}
.y1b5{bottom:703.710667pt;}
.y130{bottom:704.014667pt;}
.y1c3{bottom:704.018667pt;}
.y4d{bottom:705.728000pt;}
.y108{bottom:706.114667pt;}
.yc0{bottom:707.721333pt;}
.y1b4{bottom:708.074667pt;}
.y4c{bottom:709.324000pt;}
.y159{bottom:710.577333pt;}
.y186{bottom:711.113333pt;}
.y73{bottom:712.246667pt;}
.y1b3{bottom:712.438667pt;}
.y158{bottom:714.172000pt;}
.y1b2{bottom:716.802667pt;}
.y99{bottom:717.060000pt;}
.y107{bottom:718.742667pt;}
.y5{bottom:718.894667pt;}
.ye4{bottom:718.918667pt;}
.y1b1{bottom:721.165333pt;}
.y2a{bottom:721.474667pt;}
.y1c2{bottom:721.800000pt;}
.y1b0{bottom:725.529333pt;}
.y1c1{bottom:725.697333pt;}
.y185{bottom:729.178667pt;}
.y1af{bottom:729.893333pt;}
.y157{bottom:734.164000pt;}
.y1ae{bottom:734.257333pt;}
.y98{bottom:735.125333pt;}
.y4{bottom:736.960000pt;}
.y156{bottom:737.760000pt;}
.y1ad{bottom:738.620000pt;}
.y72{bottom:739.345333pt;}
.y29{bottom:739.540000pt;}
.y106{bottom:742.121333pt;}
.y12f{bottom:742.281333pt;}
.ye3{bottom:742.297333pt;}
.y1c0{bottom:743.478667pt;}
.y12e{bottom:745.876000pt;}
.ybf{bottom:746.666667pt;}
.y184{bottom:747.244000pt;}
.y1bf{bottom:747.376000pt;}
.y4b{bottom:751.034667pt;}
.y97{bottom:753.192000pt;}
.y71{bottom:757.410667pt;}
.y28{bottom:757.605333pt;}
.ye2{bottom:760.362667pt;}
.ybe{bottom:764.732000pt;}
.y1ac{bottom:764.802667pt;}
.y1be{bottom:765.157333pt;}
.y183{bottom:765.309333pt;}
.y12d{bottom:765.868000pt;}
.y1bd{bottom:769.054667pt;}
.y1ab{bottom:769.166667pt;}
.y12c{bottom:769.464000pt;}
.y96{bottom:771.257333pt;}
.y155{bottom:771.690667pt;}
.y1aa{bottom:773.529333pt;}
.y4a{bottom:774.413333pt;}
.y27{bottom:775.670667pt;}
.y1a9{bottom:777.893333pt;}
.ye1{bottom:778.429333pt;}
.y105{bottom:781.018667pt;}
.y1a8{bottom:782.257333pt;}
.ybd{bottom:782.797333pt;}
.y70{bottom:783.280000pt;}
.y182{bottom:783.374667pt;}
.y1a7{bottom:786.621333pt;}
.y1bc{bottom:786.836000pt;}
.y12b{bottom:789.456000pt;}
.y6f{bottom:789.876000pt;}
.y1bb{bottom:790.733333pt;}
.y1a6{bottom:790.984000pt;}
.y12a{bottom:793.050667pt;}
.y26{bottom:795.065333pt;}
.y154{bottom:795.069333pt;}
.y1a5{bottom:795.348000pt;}
.ye0{bottom:796.494667pt;}
.y1a4{bottom:799.712000pt;}
.ybc{bottom:800.864000pt;}
.y181{bottom:801.441333pt;}
.y1a3{bottom:804.076000pt;}
.y104{bottom:804.398667pt;}
.y49{bottom:806.330667pt;}
.y95{bottom:806.434667pt;}
.y1a2{bottom:808.438667pt;}
.y1ba{bottom:808.514667pt;}
.y1b9{bottom:812.412000pt;}
.y1a1{bottom:812.802667pt;}
.y129{bottom:813.042667pt;}
.y25{bottom:813.130667pt;}
.y153{bottom:813.134667pt;}
.y3{bottom:813.382667pt;}
.ydf{bottom:814.560000pt;}
.y6e{bottom:815.612000pt;}
.y128{bottom:816.638667pt;}
.ybb{bottom:818.929333pt;}
.y180{bottom:819.506667pt;}
.y103{bottom:822.464000pt;}
.y94{bottom:824.500000pt;}
.y1a0{bottom:825.893333pt;}
.y24{bottom:831.196000pt;}
.y152{bottom:831.200000pt;}
.y6d{bottom:834.076000pt;}
.yba{bottom:836.994667pt;}
.y17f{bottom:837.572000pt;}
.y6c{bottom:839.522667pt;}
.y127{bottom:839.853333pt;}
.y102{bottom:840.529333pt;}
.y93{bottom:842.566667pt;}
.yde{bottom:845.118667pt;}
.y151{bottom:849.265333pt;}
.y23{bottom:850.589333pt;}
.y48{bottom:850.590667pt;}
.yb9{bottom:855.060000pt;}
.y17e{bottom:855.637333pt;}
.y19f{bottom:856.013333pt;}
.y101{bottom:858.594667pt;}
.y2{bottom:859.609333pt;}
.y92{bottom:860.632000pt;}
.y126{bottom:863.233333pt;}
.y6b{bottom:863.433333pt;}
.y22{bottom:868.656000pt;}
.yb8{bottom:873.125333pt;}
.y17d{bottom:873.702667pt;}
.y100{bottom:876.660000pt;}
.y1{bottom:878.205333pt;}
.y91{bottom:878.697333pt;}
.y150{bottom:881.862667pt;}
.y21{bottom:888.049333pt;}
.ydd{bottom:889.377333pt;}
.yb7{bottom:891.192000pt;}
.y19e{bottom:892.145333pt;}
.yff{bottom:894.725333pt;}
.y90{bottom:896.762667pt;}
.y125{bottom:902.130667pt;}
.y20{bottom:906.114667pt;}
.ydc{bottom:907.444000pt;}
.y6a{bottom:909.257333pt;}
.yfe{bottom:912.792000pt;}
.y8f{bottom:914.828000pt;}
.y19d{bottom:915.524000pt;}
.y1f{bottom:925.509333pt;}
.y69{bottom:927.322667pt;}
.y1e{bottom:943.574667pt;}
.y68{bottom:945.388000pt;}
.h21{height:2.327275pt;}
.h1d{height:31.880400pt;}
.h6{height:40.494579pt;}
.h16{height:40.785489pt;}
.h12{height:43.636400pt;}
.h3{height:43.694582pt;}
.h15{height:44.696508pt;}
.h2{height:45.589163pt;}
.hb{height:47.820800pt;}
.ha{height:52.995067pt;}
.he{height:53.712173pt;}
.h11{height:54.762215pt;}
.h7{height:55.016400pt;}
.hf{height:55.021733pt;}
.h13{height:55.901733pt;}
.h10{height:55.907067pt;}
.h4{height:57.384800pt;}
.h1c{height:58.015067pt;}
.h14{height:58.020400pt;}
.h1e{height:58.691067pt;}
.h23{height:59.225733pt;}
.hd{height:63.836608pt;}
.h9{height:63.841941pt;}
.h1{height:64.546273pt;}
.h5{height:64.640237pt;}
.h19{height:67.615733pt;}
.h22{height:68.584400pt;}
.h20{height:69.516608pt;}
.hc{height:70.285733pt;}
.h8{height:70.291067pt;}
.h17{height:73.744237pt;}
.h1a{height:73.802400pt;}
.h1f{height:74.899067pt;}
.h18{height:79.171467pt;}
.h1b{height:91.423189pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2c{left:54.433333pt;}
.x6{left:61.949333pt;}
.x4{left:96.000000pt;}
.x28{left:101.313333pt;}
.x5a{left:103.761333pt;}
.x9{left:109.026667pt;}
.xa{left:110.373333pt;}
.x48{left:112.882667pt;}
.x2b{left:117.860000pt;}
.x5b{left:126.620000pt;}
.x5{left:127.554667pt;}
.x7{left:131.378667pt;}
.x27{left:136.837333pt;}
.x5c{left:140.402667pt;}
.x49{left:144.442667pt;}
.x11{left:148.420000pt;}
.x2d{left:157.374667pt;}
.x16{left:161.444000pt;}
.x17{left:172.001333pt;}
.x4a{left:176.002667pt;}
.x1f{left:180.313333pt;}
.x8{left:183.993333pt;}
.x37{left:189.430667pt;}
.xe{left:191.509333pt;}
.x3{left:195.694667pt;}
.x46{left:197.742667pt;}
.x79{left:199.025333pt;}
.x38{left:201.784000pt;}
.xb{left:202.881333pt;}
.x20{left:206.228000pt;}
.x4b{left:207.561333pt;}
.x18{left:210.268000pt;}
.xf{left:221.574667pt;}
.x2e{left:224.645333pt;}
.x39{left:227.697333pt;}
.x1{left:229.382667pt;}
.x2f{left:244.913333pt;}
.x21{left:249.920000pt;}
.x10{left:251.640000pt;}
.x5d{left:252.858667pt;}
.x19{left:253.960000pt;}
.x4c{left:256.898667pt;}
.xc{left:259.680000pt;}
.x2{left:261.622667pt;}
.x67{left:266.640000pt;}
.x3a{left:271.389333pt;}
.x22{left:275.833333pt;}
.x1a{left:279.874667pt;}
.x5e{left:284.418667pt;}
.x78{left:286.561333pt;}
.x4d{left:288.458667pt;}
.x47{left:293.262667pt;}
.x6e{left:294.962667pt;}
.x3b{left:297.304000pt;}
.x6f{left:307.892000pt;}
.x30{left:312.184000pt;}
.x56{left:315.977333pt;}
.x23{left:319.525333pt;}
.x1b{left:323.566667pt;}
.x3c{left:329.682667pt;}
.x24{left:345.438667pt;}
.x5f{left:347.537333pt;}
.x1c{left:349.480000pt;}
.x4e{left:351.577333pt;}
.x70{left:354.072000pt;}
.x77{left:368.070667pt;}
.x42{left:377.469333pt;}
.x68{left:379.097333pt;}
.x71{left:384.402667pt;}
.x12{left:385.785333pt;}
.x25{left:389.130667pt;}
.x1d{left:393.172000pt;}
.x60{left:396.874667pt;}
.x74{left:398.401333pt;}
.x4f{left:400.914667pt;}
.x43{left:403.384000pt;}
.xd{left:404.384000pt;}
.x72{left:408.320000pt;}
.x57{left:410.656000pt;}
.x26{left:415.045333pt;}
.x1e{left:419.085333pt;}
.x13{left:423.830667pt;}
.x3d{left:425.201333pt;}
.x61{left:428.434667pt;}
.x50{left:432.474667pt;}
.x75{left:434.870667pt;}
.x73{left:439.978667pt;}
.x44{left:447.074667pt;}
.x62{left:459.993333pt;}
.x51{left:464.034667pt;}
.x31{left:466.992000pt;}
.x45{left:472.989333pt;}
.x76{left:479.133333pt;}
.x63{left:491.553333pt;}
.x32{left:493.725333pt;}
.x52{left:495.593333pt;}
.x3e{left:509.408000pt;}
.x33{left:513.993333pt;}
.x58{left:523.113333pt;}
.x6c{left:532.708000pt;}
.x3f{left:535.322667pt;}
.x34{left:540.726667pt;}
.x53{left:544.930667pt;}
.x14{left:555.880000pt;}
.x6d{left:570.660000pt;}
.x64{left:572.450667pt;}
.x54{left:576.490667pt;}
.x40{left:579.014667pt;}
.x69{left:586.232000pt;}
.x15{left:593.926667pt;}
.x6a{left:597.545333pt;}
.x65{left:604.010667pt;}
.x41{left:604.928000pt;}
.x35{left:607.996000pt;}
.x2a{left:611.405333pt;}
.x59{left:617.792000pt;}
.x36{left:628.265333pt;}
.x66{left:635.569333pt;}
.x55{left:639.609333pt;}
.x29{left:680.069333pt;}
.x6b{left:692.225333pt;}
}




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