
    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_84d4dc8fcaeaec3ad91ac0cc.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a1ace4b8e785cb5d92886c5b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5183acea0e5752728a982ad1.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0512ed58bb75c02a959c5333.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_39c1223f6b4346f183f9a0c8.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2729ebb16aee55d5632c2807.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.920000;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_295074d8e83558afe89973c6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.959000;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_f6c8ca753d0ab6dda7f523ff.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.948000;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_922e24bd6a740921519d3d28.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.959000;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_d8b8dfa9a41b79a9148ba239.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.959000;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_bb18dc893b3870c9076a9e23.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.959000;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_e95c0fa9db6d84beb2ae41a3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.959000;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_806103e95efea080d615159e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.959000;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_802a71cfce72c6eaf7d58fde.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.947000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_b0661629ec56e3f49b7a9fd3.woff2')format("woff");}.fff{font-family:fff;line-height:0.921000;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_08add08728b13bb722818a66.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.736000;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_77afba2df3da282075126b43.woff2')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_583a44061d6f05d7303db5eb.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.852000;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_24f0c6a6f92b083b4a876f7f.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.959000;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_41d6ee8d350533fccc56a104.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.900000;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_f3690865e6610b08d8b432e1.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_37220918b26fa18b12fb9c16.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.441000;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_396a943e0c4053bfdd08d3c1.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.441000;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_45b71ee590553dd1e70fdc27.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v12{vertical-align:-38.238480px;}
.vb{vertical-align:-32.475300px;}
.va{vertical-align:-26.991900px;}
.vf{vertical-align:-15.697500px;}
.v6{vertical-align:-11.458800px;}
.v9{vertical-align:-9.822000px;}
.v1{vertical-align:-6.380400px;}
.v2{vertical-align:-4.590300px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:3.895200px;}
.v5{vertical-align:5.382000px;}
.ve{vertical-align:6.930300px;}
.v14{vertical-align:8.436000px;}
.v7{vertical-align:10.292400px;}
.v4{vertical-align:11.766300px;}
.v3{vertical-align:15.440100px;}
.vc{vertical-align:17.241900px;}
.v10{vertical-align:19.948320px;}
.v13{vertical-align:23.754000px;}
.vd{vertical-align:26.590200px;}
.v11{vertical-align:38.238480px;}
.ls0{letter-spacing:0.000000px;}
.ls57{letter-spacing:0.000256px;}
.ls1a{letter-spacing:0.000308px;}
.ls3d{letter-spacing:0.000384px;}
.ls55{letter-spacing:0.000534px;}
.ls3c{letter-spacing:0.001040px;}
.ls53{letter-spacing:0.001350px;}
.ls5b{letter-spacing:0.001357px;}
.ls54{letter-spacing:0.001458px;}
.ls19{letter-spacing:0.001620px;}
.ls1c{letter-spacing:0.001628px;}
.ls47{letter-spacing:0.001747px;}
.ls1d{letter-spacing:0.001749px;}
.lsa{letter-spacing:0.001755px;}
.ls2f{letter-spacing:0.001759px;}
.ls20{letter-spacing:0.001935px;}
.ls32{letter-spacing:0.001987px;}
.ls4{letter-spacing:0.002096px;}
.ls6{letter-spacing:0.002108px;}
.ls31{letter-spacing:0.002114px;}
.ls5c{letter-spacing:0.002163px;}
.ls4b{letter-spacing:0.002268px;}
.ls4d{letter-spacing:0.002278px;}
.ls17{letter-spacing:0.002595px;}
.ls41{letter-spacing:0.002700px;}
.ls3a{letter-spacing:0.002812px;}
.ls59{letter-spacing:0.003256px;}
.ls21{letter-spacing:0.003313px;}
.ls2a{letter-spacing:0.004326px;}
.ls5d{letter-spacing:1.495458px;}
.ls9{letter-spacing:1.940195px;}
.ls37{letter-spacing:1.942267px;}
.ls15{letter-spacing:1.944095px;}
.ls2b{letter-spacing:1.944223px;}
.ls3e{letter-spacing:2.350878px;}
.ls45{letter-spacing:2.712090px;}
.ls5a{letter-spacing:2.717710px;}
.ls51{letter-spacing:2.990915px;}
.ls58{letter-spacing:3.011712px;}
.ls36{letter-spacing:3.215347px;}
.ls1f{letter-spacing:3.257652px;}
.lsb{letter-spacing:3.441896px;}
.lse{letter-spacing:3.444029px;}
.ls14{letter-spacing:3.445796px;}
.ls1b{letter-spacing:3.614055px;}
.ls46{letter-spacing:3.727675px;}
.ls2c{letter-spacing:3.885871px;}
.ls30{letter-spacing:3.911326px;}
.ls11{letter-spacing:3.915226px;}
.ls42{letter-spacing:4.706652px;}
.ls44{letter-spacing:4.723205px;}
.ls28{letter-spacing:4.946688px;}
.ls2e{letter-spacing:5.097986px;}
.ls3b{letter-spacing:5.100112px;}
.ls10{letter-spacing:5.691498px;}
.ls34{letter-spacing:7.088063px;}
.ls35{letter-spacing:7.091963px;}
.ls23{letter-spacing:8.726047px;}
.ls56{letter-spacing:9.087534px;}
.ls52{letter-spacing:9.092706px;}
.ls22{letter-spacing:10.907647px;}
.ls8{letter-spacing:11.816618px;}
.ls16{letter-spacing:11.820518px;}
.ls4e{letter-spacing:12.214188px;}
.ls4c{letter-spacing:12.216466px;}
.ls4f{letter-spacing:12.221506px;}
.ls1e{letter-spacing:14.169252px;}
.ls18{letter-spacing:14.522055px;}
.ls25{letter-spacing:14.543412px;}
.ls13{letter-spacing:15.032347px;}
.ls7{letter-spacing:15.258896px;}
.lsc{letter-spacing:15.261029px;}
.ls43{letter-spacing:15.544675px;}
.lsf{letter-spacing:15.732226px;}
.ls5{letter-spacing:16.120595px;}
.ls12{letter-spacing:16.122667px;}
.ls48{letter-spacing:16.124623px;}
.ls39{letter-spacing:16.917112px;}
.ls2d{letter-spacing:16.918886px;}
.ls33{letter-spacing:16.921012px;}
.lsd{letter-spacing:17.508498px;}
.ls24{letter-spacing:18.179412px;}
.ls3{letter-spacing:21.796382px;}
.ls2{letter-spacing:21.861836px;}
.ls40{letter-spacing:22.886652px;}
.ls26{letter-spacing:23.132688px;}
.ls27{letter-spacing:23.484507px;}
.ls3f{letter-spacing:24.172878px;}
.ls29{letter-spacing:27.120507px;}
.ls50{letter-spacing:30.452714px;}
.ls1{letter-spacing:32.728200px;}
.ls38{letter-spacing:504.361459px;}
.ls4a{letter-spacing:623.272459px;}
.ls49{letter-spacing:832.780723px;}
.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;}
}
.ws5c{word-spacing:-65.454600px;}
.ws35{word-spacing:-42.545490px;}
.ws40{word-spacing:-39.272760px;}
.ws81{word-spacing:-35.815186px;}
.ws98{word-spacing:-32.727300px;}
.ws8{word-spacing:-19.823579px;}
.ws5{word-spacing:-15.637104px;}
.wse{word-spacing:-14.280391px;}
.ws86{word-spacing:-14.053364px;}
.ws30{word-spacing:-13.202127px;}
.ws83{word-spacing:-13.135167px;}
.ws56{word-spacing:-12.122522px;}
.ws27{word-spacing:-11.711137px;}
.ws3a{word-spacing:-10.164118px;}
.ws43{word-spacing:-9.382262px;}
.ws38{word-spacing:-7.879639px;}
.ws99{word-spacing:-7.818552px;}
.ws3f{word-spacing:-7.273513px;}
.ws9c{word-spacing:-6.061261px;}
.ws6d{word-spacing:-5.909754px;}
.ws49{word-spacing:-5.455158px;}
.ws9d{word-spacing:-4.545965px;}
.ws72{word-spacing:-2.037099px;}
.ws74{word-spacing:-2.033199px;}
.ws66{word-spacing:-2.032014px;}
.ws6a{word-spacing:-2.023666px;}
.ws7e{word-spacing:-2.013787px;}
.ws48{word-spacing:-1.876799px;}
.ws46{word-spacing:-1.868556px;}
.wsa4{word-spacing:-1.563999px;}
.wsa3{word-spacing:-1.557130px;}
.ws82{word-spacing:-0.918711px;}
.ws87{word-spacing:-0.913671px;}
.ws57{word-spacing:-0.065455px;}
.ws33{word-spacing:-0.042545px;}
.ws47{word-spacing:-0.039273px;}
.ws9b{word-spacing:-0.032727px;}
.ws34{word-spacing:-0.031083px;}
.ws45{word-spacing:-0.028692px;}
.wsa0{word-spacing:-0.023910px;}
.ws6{word-spacing:0.000000px;}
.wsa6{word-spacing:1.264318px;}
.ws9f{word-spacing:1.279637px;}
.ws42{word-spacing:1.535565px;}
.ws6b{word-spacing:1.643613px;}
.ws39{word-spacing:1.663529px;}
.ws97{word-spacing:2.402985px;}
.ws5e{word-spacing:2.559275px;}
.ws9e{word-spacing:3.079639px;}
.wsa1{word-spacing:3.089343px;}
.ws65{word-spacing:3.123881px;}
.ws4e{word-spacing:3.249776px;}
.wsb{word-spacing:3.604493px;}
.ws11{word-spacing:3.672003px;}
.ws3e{word-spacing:3.695567px;}
.ws53{word-spacing:3.703612px;}
.ws50{word-spacing:3.707212px;}
.ws41{word-spacing:3.708526px;}
.ws4a{word-spacing:3.709521px;}
.ws12{word-spacing:3.737458px;}
.ws63{word-spacing:3.891392px;}
.ws54{word-spacing:3.999276px;}
.ws3c{word-spacing:4.003531px;}
.ws77{word-spacing:4.010911px;}
.ws37{word-spacing:4.014836px;}
.ws32{word-spacing:4.017569px;}
.ws3b{word-spacing:4.018648px;}
.ws75{word-spacing:4.018985px;}
.ws36{word-spacing:4.021505px;}
.ws7c{word-spacing:4.026124px;}
.ws69{word-spacing:4.027551px;}
.ws28{word-spacing:4.311495px;}
.ws3d{word-spacing:4.335713px;}
.ws8c{word-spacing:4.522913px;}
.ws9a{word-spacing:4.525186px;}
.wsa2{word-spacing:4.526147px;}
.ws8b{word-spacing:4.588367px;}
.ws31{word-spacing:4.697022px;}
.ws64{word-spacing:4.739568px;}
.wsc{word-spacing:4.850186px;}
.wsd{word-spacing:4.915640px;}
.ws17{word-spacing:5.058331px;}
.ws1f{word-spacing:5.104150px;}
.ws8e{word-spacing:5.112004px;}
.ws85{word-spacing:5.173793px;}
.wsf{word-spacing:5.196925px;}
.ws3{word-spacing:5.250724px;}
.ws4d{word-spacing:5.428795px;}
.ws4c{word-spacing:5.430223px;}
.ws44{word-spacing:5.431376px;}
.ws4b{word-spacing:5.433823px;}
.ws9{word-spacing:5.624884px;}
.ws16{word-spacing:5.635641px;}
.wsa{word-spacing:5.684660px;}
.ws13{word-spacing:5.701096px;}
.ws70{word-spacing:5.866798px;}
.ws6f{word-spacing:5.878677px;}
.ws7b{word-spacing:5.880091px;}
.ws73{word-spacing:5.882577px;}
.ws71{word-spacing:5.882742px;}
.ws6e{word-spacing:5.883991px;}
.ws7d{word-spacing:5.886642px;}
.ws80{word-spacing:6.069998px;}
.ws7f{word-spacing:6.124980px;}
.ws94{word-spacing:6.150413px;}
.wsa8{word-spacing:6.151319px;}
.ws5f{word-spacing:6.151901px;}
.ws61{word-spacing:6.155771px;}
.ws8f{word-spacing:6.157875px;}
.ws2{word-spacing:6.159278px;}
.ws92{word-spacing:6.166579px;}
.ws5a{word-spacing:6.176640px;}
.ws5d{word-spacing:6.177054px;}
.ws4{word-spacing:6.224732px;}
.wsa5{word-spacing:6.343059px;}
.ws5b{word-spacing:7.430693px;}
.ws0{word-spacing:8.237588px;}
.ws67{word-spacing:8.244027px;}
.ws76{word-spacing:8.250042px;}
.ws1{word-spacing:8.323665px;}
.ws60{word-spacing:8.590820px;}
.ws62{word-spacing:8.614365px;}
.ws10{word-spacing:9.502923px;}
.ws7{word-spacing:9.589000px;}
.ws8d{word-spacing:11.090372px;}
.ws95{word-spacing:12.680118px;}
.ws55{word-spacing:12.686372px;}
.ws68{word-spacing:17.700991px;}
.ws59{word-spacing:21.571034px;}
.ws14{word-spacing:21.730927px;}
.ws91{word-spacing:21.746900px;}
.ws90{word-spacing:21.752555px;}
.ws15{word-spacing:21.771064px;}
.wsa9{word-spacing:21.796382px;}
.ws58{word-spacing:25.610693px;}
.ws93{word-spacing:28.682676px;}
.ws2f{word-spacing:40.938097px;}
.ws2b{word-spacing:61.300117px;}
.ws2a{word-spacing:61.304317px;}
.ws2d{word-spacing:63.851407px;}
.ws2e{word-spacing:75.302917px;}
.ws84{word-spacing:80.421019px;}
.ws89{word-spacing:87.955819px;}
.ws29{word-spacing:106.176235px;}
.ws88{word-spacing:108.619819px;}
.ws2c{word-spacing:134.326629px;}
.ws19{word-spacing:375.090758px;}
.ws1a{word-spacing:379.384654px;}
.ws1d{word-spacing:390.838054px;}
.ws1c{word-spacing:397.997558px;}
.ws18{word-spacing:409.450958px;}
.ws96{word-spacing:410.642524px;}
.ws22{word-spacing:414.069877px;}
.ws1b{word-spacing:421.434780px;}
.ws25{word-spacing:425.523277px;}
.ws26{word-spacing:432.883980px;}
.ws1e{word-spacing:432.888180px;}
.ws21{word-spacing:448.430077px;}
.ws24{word-spacing:448.434277px;}
.ws20{word-spacing:471.341917px;}
.ws8a{word-spacing:476.166859px;}
.ws7a{word-spacing:486.168996px;}
.ws23{word-spacing:494.252917px;}
.ws79{word-spacing:499.764396px;}
.ws6c{word-spacing:533.951791px;}
.wsa7{word-spacing:564.974653px;}
.ws4f{word-spacing:728.209423px;}
.ws78{word-spacing:752.203591px;}
.ws52{word-spacing:842.033906px;}
.ws51{word-spacing:854.598071px;}
._1c{margin-left:-18.549834px;}
._1f{margin-left:-17.122923px;}
._37{margin-left:-14.269103px;}
._1d{margin-left:-9.445099px;}
._3{margin-left:-7.919102px;}
._23{margin-left:-5.924948px;}
._9{margin-left:-4.582714px;}
._0{margin-left:-2.324084px;}
._2{margin-left:-1.210464px;}
._5{width:1.048166px;}
._1{width:2.324084px;}
._21{width:3.613460px;}
._38{width:10.407053px;}
._28{width:11.827646px;}
._24{width:20.946901px;}
._25{width:22.844548px;}
._22{width:24.248171px;}
._6{width:27.225693px;}
._4{width:29.061842px;}
._35{width:34.412819px;}
._31{width:45.670832px;}
._30{width:50.781533px;}
._29{width:55.281256px;}
._19{width:60.794580px;}
._2f{width:63.754951px;}
._1a{width:69.705090px;}
._2d{width:72.570003px;}
._d{width:74.810955px;}
._2c{width:79.088672px;}
._e{width:86.248890px;}
._7{width:102.037632px;}
._17{width:106.198015px;}
._32{width:115.849337px;}
._14{width:117.037081px;}
._33{width:120.984553px;}
._18{width:127.799555px;}
._c{width:138.521778px;}
._16{width:151.002137px;}
._12{width:156.087963px;}
._11{width:164.860290px;}
._10{width:169.390630px;}
._f{width:181.331644px;}
._b{width:192.784797px;}
._2e{width:198.696357px;}
._15{width:260.019690px;}
._2a{width:264.497451px;}
._2b{width:281.788668px;}
._13{width:432.517470px;}
._36{width:460.145838px;}
._34{width:522.962070px;}
._1e{width:896.911293px;}
._a{width:925.917986px;}
._20{width:942.938968px;}
._8{width:944.962619px;}
._1b{width:971.653901px;}
._27{width:1000.372106px;}
._26{width:1112.436927px;}
.fc4{color:rgb(255,0,0);}
.fc2{color:rgb(255,124,0);}
.fc6{color:rgb(128,128,128);}
.fc5{color:rgb(0,0,0);}
.fc3{color:rgb(214,214,214);}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(255,255,255);}
.fs17{font-size:17.932800px;}
.fs11{font-size:21.519360px;}
.fsc{font-size:23.312640px;}
.fs16{font-size:23.910300px;}
.fs10{font-size:28.692360px;}
.fsb{font-size:31.083390px;}
.fs15{font-size:32.727300px;}
.fs4{font-size:35.865600px;}
.fs6{font-size:37.478742px;}
.fs8{font-size:37.572702px;}
.fsf{font-size:39.272760px;}
.fs14{font-size:40.169304px;}
.fse{font-size:40.282030px;}
.fsa{font-size:42.545490px;}
.fs9{font-size:45.818220px;}
.fs12{font-size:47.820600px;}
.fsd{font-size:48.338469px;}
.fs5{font-size:49.969934px;}
.fs7{font-size:50.095210px;}
.fs2{font-size:53.798400px;}
.fs13{font-size:54.981864px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y48{bottom:0.976445px;}
.y55{bottom:0.978507px;}
.y4f{bottom:3.921396px;}
.y42{bottom:3.921959px;}
.y15{bottom:6.493500px;}
.y54{bottom:9.853910px;}
.y4e{bottom:12.774604px;}
.y43{bottom:12.774761px;}
.ya9{bottom:17.854308px;}
.y46{bottom:18.682403px;}
.y4d{bottom:21.627407px;}
.y40{bottom:24.578760px;}
.yb1{bottom:26.418357px;}
.y3f{bottom:27.529563px;}
.y47{bottom:27.535205px;}
.y51{bottom:27.604216px;}
.ya8{bottom:32.127724px;}
.y45{bottom:33.437247px;}
.y4b{bottom:36.382240px;}
.y53{bottom:36.479254px;}
.y3e{bottom:42.284719px;}
.y52{bottom:42.396050px;}
.y50{bottom:45.001500px;}
.y4c{bottom:45.235448px;}
.y41{bottom:45.235562px;}
.yb0{bottom:49.255218px;}
.y4a{bottom:51.137083px;}
.ya6{bottom:52.110002px;}
.y192{bottom:55.601250px;}
.y164{bottom:57.024000px;}
.y60{bottom:59.698500px;}
.ycf{bottom:61.213800px;}
.y70{bottom:61.980000px;}
.yf8{bottom:62.622000px;}
.y88{bottom:62.976750px;}
.y3c{bottom:64.605000px;}
.y191{bottom:65.763000px;}
.y144{bottom:68.675400px;}
.y174{bottom:69.160500px;}
.yeb{bottom:70.485000px;}
.y190{bottom:71.168250px;}
.yce{bottom:73.407900px;}
.y102{bottom:74.626500px;}
.ya0{bottom:76.542000px;}
.y7e{bottom:76.626000px;}
.yd8{bottom:77.098500px;}
.y163{bottom:77.347500px;}
.y5f{bottom:77.631000px;}
.ya2{bottom:77.801647px;}
.yaf{bottom:77.801747px;}
.y87{bottom:80.132700px;}
.yf7{bottom:80.556000px;}
.y12c{bottom:80.985000px;}
.y143{bottom:81.885675px;}
.y18f{bottom:83.254500px;}
.ya1{bottom:83.614500px;}
.yc{bottom:84.928500px;}
.ycd{bottom:85.602000px;}
.y158{bottom:87.049860px;}
.y6f{bottom:88.027950px;}
.y142{bottom:88.340175px;}
.y30{bottom:88.647000px;}
.y173{bottom:89.484000px;}
.y14c{bottom:90.864000px;}
.ya4{bottom:92.074660px;}
.y18e{bottom:93.416250px;}
.y3b{bottom:93.433500px;}
.y86{bottom:94.778100px;}
.y101{bottom:94.950000px;}
.yea{bottom:95.292000px;}
.y9f{bottom:96.865500px;}
.y5e{bottom:97.057500px;}
.ycc{bottom:97.796100px;}
.y157{bottom:97.975320px;}
.yf6{bottom:98.488500px;}
.y141{bottom:98.762925px;}
.y114{bottom:99.137100px;}
.y162{bottom:99.165000px;}
.ye0{bottom:101.239500px;}
.y7d{bottom:102.673650px;}
.y6e{bottom:105.183900px;}
.y16a{bottom:105.411000px;}
.y1e{bottom:105.594000px;}
.y18d{bottom:107.313750px;}
.y2f{bottom:108.075000px;}
.y8d{bottom:109.105500px;}
.y85{bottom:109.423500px;}
.y172{bottom:109.807500px;}
.ycb{bottom:109.990200px;}
.y140{bottom:111.974175px;}
.y113{bottom:112.347375px;}
.y18c{bottom:112.719000px;}
.yb{bottom:113.757000px;}
.y100{bottom:115.273500px;}
.ye9{bottom:115.615500px;}
.yd7{bottom:115.924500px;}
.yf5{bottom:116.421000px;}
.y49{bottom:116.422500px;}
.yca{bottom:116.476500px;}
.y14b{bottom:117.300000px;}
.y125{bottom:117.333675px;}
.y195{bottom:117.745500px;}
.y161{bottom:119.490000px;}
.y6d{bottom:119.829300px;}
.y7c{bottom:119.829600px;}
.ydf{bottom:121.563000px;}
.y3a{bottom:122.260500px;}
.y12b{bottom:123.165000px;}
.ya3{bottom:123.475671px;}
.y5d{bottom:123.957000px;}
.y84{bottom:124.067850px;}
.y18b{bottom:124.805250px;}
.y13f{bottom:125.184450px;}
.y1d{bottom:125.917500px;}
.yb5{bottom:126.330233px;}
.yc9{bottom:126.497100px;}
.y112{bottom:127.282425px;}
.y2e{bottom:127.501500px;}
.y156{bottom:128.524020px;}
.y124{bottom:130.543950px;}
.y13e{bottom:131.638950px;}
.yf4{bottom:134.353500px;}
.y6c{bottom:134.473650px;}
.y7b{bottom:134.473950px;}
.y24{bottom:134.883000px;}
.y18a{bottom:134.967000px;}
.yd6{bottom:136.248000px;}
.ya7{bottom:137.748784px;}
.y194{bottom:138.070500px;}
.yc8{bottom:138.691200px;}
.y83{bottom:138.713250px;}
.y155{bottom:139.449480px;}
.ye8{bottom:140.422500px;}
.y111{bottom:140.492700px;}
.y13d{bottom:142.062675px;}
.ya{bottom:142.584000px;}
.y12a{bottom:143.488500px;}
.y14a{bottom:143.737500px;}
.y123{bottom:143.754225px;}
.y169{bottom:144.237000px;}
.y5c{bottom:144.280500px;}
.y189{bottom:145.128750px;}
.y1c{bottom:146.241000px;}
.y9e{bottom:146.257350px;}
.y171{bottom:146.529000px;}
.y2d{bottom:146.929500px;}
.yc7{bottom:148.312200px;}
.y6b{bottom:149.119050px;}
.y7a{bottom:149.119350px;}
.yb4{bottom:149.167497px;}
.y160{bottom:150.142500px;}
.yc6{bottom:150.885300px;}
.y39{bottom:151.087500px;}
.y82{bottom:153.358650px;}
.y110{bottom:153.702975px;}
.yff{bottom:154.729500px;}
.y14{bottom:154.755000px;}
.y13c{bottom:155.272950px;}
.y188{bottom:155.290500px;}
.y9d{bottom:156.527025px;}
.yd5{bottom:156.571500px;}
.yf3{bottom:156.769500px;}
.y122{bottom:156.964500px;}
.ya5{bottom:157.731063px;}
.y9c{bottom:159.468600px;}
.yde{bottom:160.389000px;}
.y187{bottom:160.695750px;}
.yc5{bottom:163.079400px;}
.y121{bottom:163.419975px;}
.y23{bottom:163.711500px;}
.y6a{bottom:163.764450px;}
.y79{bottom:163.764750px;}
.ye7{bottom:165.229500px;}
.y8c{bottom:165.345000px;}
.y2c{bottom:166.356000px;}
.y10f{bottom:166.913250px;}
.y81{bottom:168.003000px;}
.y34{bottom:168.024000px;}
.y13b{bottom:168.483225px;}
.y186{bottom:169.046250px;}
.y154{bottom:169.998180px;}
.y149{bottom:170.173500px;}
.y9{bottom:171.412500px;}
.y9b{bottom:172.678875px;}
.yc4{bottom:172.700400px;}
.y10e{bottom:172.942650px;}
.y120{bottom:173.842725px;}
.y185{bottom:174.451500px;}
.yb3{bottom:174.859141px;}
.yfe{bottom:175.053000px;}
.yc3{bottom:175.273500px;}
.y193{bottom:176.896500px;}
.y13{bottom:177.171000px;}
.y78{bottom:178.409100px;}
.y69{bottom:178.409850px;}
.y38{bottom:179.916000px;}
.ydd{bottom:180.712500px;}
.y15f{bottom:180.796500px;}
.y13a{bottom:181.693500px;}
.y80{bottom:182.648400px;}
.y168{bottom:183.063000px;}
.y170{bottom:183.252000px;}
.y10d{bottom:183.366375px;}
.yae{bottom:183.422808px;}
.yb2{bottom:183.422909px;}
.y1b{bottom:185.067000px;}
.y129{bottom:185.668500px;}
.y2b{bottom:185.784000px;}
.y9a{bottom:185.889150px;}
.y184{bottom:186.537000px;}
.y5b{bottom:186.720000px;}
.y11f{bottom:187.053000px;}
.yc2{bottom:187.467600px;}
.ye6{bottom:190.036500px;}
.y153{bottom:190.987260px;}
.yf2{bottom:191.710500px;}
.y99{bottom:191.918550px;}
.y22{bottom:192.538500px;}
.y148{bottom:192.589500px;}
.y5{bottom:193.138500px;}
.y139{bottom:194.903775px;}
.yd4{bottom:195.397500px;}
.y10c{bottom:196.576650px;}
.y183{bottom:196.698750px;}
.yc1{bottom:199.662600px;}
.y7f{bottom:199.804350px;}
.y8{bottom:200.239500px;}
.y11e{bottom:200.264250px;}
.yaa{bottom:200.550605px;}
.y138{bottom:201.358275px;}
.y98{bottom:202.341300px;}
.y2a{bottom:205.210500px;}
.y1a{bottom:205.392000px;}
.y33{bottom:206.850000px;}
.y182{bottom:206.861250px;}
.y5a{bottom:207.043500px;}
.y37{bottom:208.743000px;}
.y68{bottom:208.797000px;}
.yac{bottom:209.114453px;}
.yf1{bottom:209.643000px;}
.y10b{bottom:209.786925px;}
.ye5{bottom:210.360000px;}
.y15e{bottom:211.450500px;}
.y137{bottom:211.782000px;}
.yc0{bottom:211.856700px;}
.y4{bottom:213.462000px;}
.y11d{bottom:213.474525px;}
.y44{bottom:213.930000px;}
.yfd{bottom:214.507500px;}
.y152{bottom:214.987740px;}
.y97{bottom:215.552550px;}
.yd3{bottom:215.722500px;}
.y77{bottom:216.120000px;}
.y10a{bottom:216.242400px;}
.y12{bottom:216.594000px;}
.y181{bottom:217.023000px;}
.y136{bottom:218.236500px;}
.ybf{bottom:218.343000px;}
.ydc{bottom:219.538500px;}
.y16f{bottom:219.973500px;}
.y21{bottom:221.367000px;}
.y8b{bottom:221.584500px;}
.y167{bottom:221.889000px;}
.y180{bottom:222.428250px;}
.yab{bottom:223.387868px;}
.y151{bottom:225.914460px;}
.y109{bottom:226.665150px;}
.y11c{bottom:226.684800px;}
.y59{bottom:227.368500px;}
.yf0{bottom:227.575500px;}
.y29{bottom:227.626500px;}
.y128{bottom:227.848500px;}
.ybe{bottom:228.362700px;}
.y135{bottom:228.660225px;}
.y96{bottom:228.762825px;}
.y147{bottom:229.024500px;}
.y7{bottom:229.066500px;}
.y11{bottom:234.526500px;}
.yfc{bottom:234.831000px;}
.y67{bottom:234.844950px;}
.y17f{bottom:235.082250px;}
.ye4{bottom:235.167000px;}
.y11b{bottom:237.107550px;}
.yad{bottom:237.660982px;}
.y15d{bottom:237.814500px;}
.y95{bottom:239.031525px;}
.ydb{bottom:239.862000px;}
.y108{bottom:239.875425px;}
.y11a{bottom:239.895075px;}
.y16e{bottom:240.297000px;}
.ybd{bottom:240.556800px;}
.y134{bottom:241.870500px;}
.y8a{bottom:241.909500px;}
.y94{bottom:241.973100px;}
.y15c{bottom:242.104500px;}
.y76{bottom:242.167650px;}
.y19{bottom:244.218000px;}
.y3{bottom:244.845000px;}
.yef{bottom:245.508000px;}
.y32{bottom:248.664000px;}
.y17e{bottom:248.980500px;}
.y20{bottom:250.194000px;}
.y66{bottom:252.000900px;}
.y133{bottom:252.293250px;}
.y10{bottom:252.460500px;}
.ybc{bottom:252.750900px;}
.y107{bottom:253.085700px;}
.y119{bottom:253.105350px;}
.yd2{bottom:254.548500px;}
.y132{bottom:255.080775px;}
.yfb{bottom:255.154500px;}
.y93{bottom:255.183375px;}
.y17d{bottom:255.754500px;}
.y150{bottom:256.463160px;}
.y75{bottom:259.323600px;}
.y118{bottom:259.559850px;}
.ye3{bottom:259.974000px;}
.y16d{bottom:260.620500px;}
.y166{bottom:260.715000px;}
.yee{bottom:263.440500px;}
.y18{bottom:264.541500px;}
.ybb{bottom:264.945000px;}
.y106{bottom:266.296950px;}
.y65{bottom:266.646300px;}
.y146{bottom:267.850500px;}
.y131{bottom:268.291050px;}
.y92{bottom:268.393650px;}
.y58{bottom:269.808000px;}
.y117{bottom:269.983575px;}
.y127{bottom:270.028500px;}
.y17c{bottom:270.312000px;}
.y31{bottom:271.080000px;}
.y15b{bottom:272.757000px;}
.y28{bottom:273.691500px;}
.y74{bottom:273.967950px;}
.y130{bottom:274.346775px;}
.yf{bottom:274.876500px;}
.y116{bottom:276.438075px;}
.yba{bottom:277.140000px;}
.y14f{bottom:277.450980px;}
.yda{bottom:278.688000px;}
.y1f{bottom:279.022500px;}
.y105{bottom:279.507225px;}
.y64{bottom:281.290650px;}
.y91{bottom:281.603925px;}
.y3d{bottom:281.784000px;}
.y36{bottom:282.589500px;}
.y17b{bottom:284.210250px;}
.y12f{bottom:284.769525px;}
.ye2{bottom:284.781000px;}
.y104{bottom:285.536625px;}
.yed{bottom:285.856500px;}
.y90{bottom:287.836125px;}
.y14e{bottom:288.377700px;}
.y73{bottom:288.613350px;}
.y17a{bottom:289.283250px;}
.yb9{bottom:289.334100px;}
.y57{bottom:290.131500px;}
.y27{bottom:293.118000px;}
.yd1{bottom:293.374500px;}
.yfa{bottom:294.610500px;}
.yb8{bottom:295.292100px;}
.y63{bottom:295.936050px;}
.y16c{bottom:297.343500px;}
.y12e{bottom:297.979800px;}
.y89{bottom:298.149000px;}
.y8f{bottom:298.259850px;}
.yd9{bottom:299.013000px;}
.y165{bottom:299.541000px;}
.y115{bottom:300.460125px;}
.y179{bottom:301.037250px;}
.y178{bottom:301.283250px;}
.y6{bottom:302.913000px;}
.y72{bottom:303.258750px;}
.y17{bottom:303.367500px;}
.y15a{bottom:303.411000px;}
.yb7{bottom:304.914000px;}
.ye1{bottom:305.106000px;}
.y145{bottom:306.676500px;}
.y103{bottom:309.558675px;}
.y62{bottom:310.581450px;}
.y177{bottom:311.199000px;}
.ye{bottom:311.311500px;}
.y126{bottom:312.208500px;}
.y26{bottom:312.546000px;}
.yd0{bottom:313.698000px;}
.yf9{bottom:314.934000px;}
.y176{bottom:316.272000px;}
.y16b{bottom:317.667000px;}
.y71{bottom:317.903100px;}
.y14d{bottom:318.926400px;}
.yec{bottom:320.797500px;}
.y16{bottom:323.691000px;}
.y159{bottom:323.734500px;}
.y12d{bottom:324.789375px;}
.y8e{bottom:325.069425px;}
.y61{bottom:325.225800px;}
.y2{bottom:327.096000px;}
.yb6{bottom:329.660400px;}
.y56{bottom:332.571000px;}
.y175{bottom:334.750500px;}
.y25{bottom:334.962000px;}
.y1{bottom:353.995500px;}
.y35{bottom:374.455500px;}
.yd{bottom:388.458000px;}
.h2e{height:12.821952px;}
.h2d{height:17.095864px;}
.h32{height:17.932725px;}
.h1c{height:20.515037px;}
.h31{height:21.257952px;}
.h1d{height:21.519270px;}
.h13{height:22.224624px;}
.h2c{height:24.545475px;}
.h6{height:25.643904px;}
.h1a{height:27.512627px;}
.ha{height:27.771748px;}
.h30{height:27.820092px;}
.h10{height:27.841372px;}
.h2f{height:28.972865px;}
.h1b{height:29.454570px;}
.h19{height:29.848985px;}
.h12{height:31.909118px;}
.h11{height:34.363665px;}
.h18{height:35.818805px;}
.h9{height:36.428082px;}
.hf{height:36.519408px;}
.h8{height:37.027721px;}
.he{height:37.120551px;}
.h1e{height:37.434870px;}
.h15{height:38.748743px;}
.h14{height:38.752643px;}
.h1f{height:39.746970px;}
.h4{height:40.348800px;}
.h20{height:40.554442px;}
.h23{height:41.236398px;}
.h22{height:43.059218px;}
.h16{height:43.675417px;}
.h5{height:44.831700px;}
.h25{height:48.674412px;}
.h3{height:49.090950px;}
.h21{height:49.902743px;}
.h2b{height:57.945729px;}
.hb{height:60.382350px;}
.h29{height:62.391450px;}
.h2{height:64.557900px;}
.h2a{height:66.250950px;}
.h7{height:69.752025px;}
.hd{height:69.926895px;}
.hc{height:78.080625px;}
.h26{height:79.474878px;}
.h28{height:79.479918px;}
.h24{height:86.912892px;}
.h27{height:86.917932px;}
.h17{height:258.820845px;}
.h1{height:408.000000px;}
.h0{height:408.189000px;}
.w3{width:413.299260px;}
.w2{width:413.306775px;}
.w4{width:459.230760px;}
.w0{width:544.252500px;}
.w1{width:544.500000px;}
.x0{left:0.000000px;}
.x23{left:15.429735px;}
.xd{left:17.008500px;}
.x17{left:22.337097px;}
.x9{left:42.519000px;}
.x16{left:48.708047px;}
.x1e{left:53.388512px;}
.x72{left:55.253820px;}
.xa{left:57.315000px;}
.x5d{left:59.425575px;}
.x10{left:63.780000px;}
.x13{left:65.481000px;}
.x3d{left:67.930050px;}
.x71{left:71.347800px;}
.xb{left:74.388000px;}
.x7{left:78.883500px;}
.x6b{left:81.511275px;}
.x74{left:84.387540px;}
.xc{left:90.042000px;}
.xf{left:92.320500px;}
.x4d{left:94.923975px;}
.x50{left:98.249700px;}
.x4a{left:100.923915px;}
.x5c{left:107.974500px;}
.x29{left:113.706000px;}
.x4b{left:117.760765px;}
.x49{left:120.615549px;}
.x28{left:123.705000px;}
.x4c{left:126.324533px;}
.x11{left:144.271500px;}
.x31{left:145.660500px;}
.x2{left:151.582500px;}
.x2d{left:155.659500px;}
.x39{left:165.042150px;}
.x2e{left:167.542050px;}
.x2a{left:169.450500px;}
.x3c{left:172.853100px;}
.x3a{left:175.620900px;}
.x26{left:179.306850px;}
.x5{left:182.763000px;}
.x25{left:183.960450px;}
.x3b{left:185.365950px;}
.x75{left:187.167000px;}
.x1{left:188.733000px;}
.x47{left:190.500000px;}
.x30{left:191.794950px;}
.x2c{left:193.704450px;}
.x27{left:195.549300px;}
.x32{left:199.167150px;}
.x2f{left:203.249400px;}
.x2b{left:205.158900px;}
.x46{left:209.004000px;}
.x79{left:210.700500px;}
.x64{left:212.297775px;}
.x4{left:213.883500px;}
.x3e{left:217.214250px;}
.x3{left:225.603000px;}
.x68{left:229.038525px;}
.x6a{left:230.385000px;}
.x63{left:233.007750px;}
.x52{left:236.050500px;}
.x65{left:241.008600px;}
.x5e{left:243.909225px;}
.x73{left:248.977560px;}
.x33{left:253.104600px;}
.x45{left:256.032900px;}
.x53{left:257.368800px;}
.x6c{left:259.095825px;}
.x51{left:261.740100px;}
.x6d{left:263.912325px;}
.x48{left:269.227054px;}
.x1d{left:272.614963px;}
.x14{left:274.701173px;}
.xe{left:278.170500px;}
.x34{left:280.394100px;}
.x1b{left:282.338499px;}
.x1a{left:285.461724px;}
.x8{left:288.153000px;}
.x22{left:295.754133px;}
.x18{left:298.364599px;}
.x12{left:300.765000px;}
.x35{left:303.069900px;}
.x76{left:305.081250px;}
.x15{left:307.679618px;}
.x4f{left:311.428890px;}
.x5a{left:312.945000px;}
.x21{left:314.545785px;}
.x78{left:324.029250px;}
.x36{left:326.222400px;}
.x67{left:329.000400px;}
.x19{left:330.437830px;}
.x57{left:335.694900px;}
.x24{left:337.446217px;}
.x20{left:339.552962px;}
.x40{left:343.397775px;}
.x5b{left:347.331000px;}
.x37{left:351.126300px;}
.x6f{left:357.251025px;}
.x1c{left:361.391488px;}
.x56{left:362.915400px;}
.x1f{left:364.287863px;}
.x77{left:366.723750px;}
.x59{left:367.941900px;}
.x44{left:369.651600px;}
.x5f{left:372.345000px;}
.x38{left:377.301750px;}
.x4e{left:379.381547px;}
.x69{left:381.078075px;}
.x6{left:383.376000px;}
.x43{left:388.215600px;}
.x41{left:391.903050px;}
.x55{left:396.504300px;}
.x60{left:397.792500px;}
.x54{left:401.105100px;}
.x62{left:403.037025px;}
.x3f{left:408.368850px;}
.x66{left:409.642650px;}
.x58{left:413.927400px;}
.x70{left:423.852960px;}
.x6e{left:426.233250px;}
.x61{left:438.632325px;}
.x42{left:444.797775px;}
@media print{
.v12{vertical-align:-33.989760pt;}
.vb{vertical-align:-28.866933pt;}
.va{vertical-align:-23.992800pt;}
.vf{vertical-align:-13.953333pt;}
.v6{vertical-align:-10.185600pt;}
.v9{vertical-align:-8.730667pt;}
.v1{vertical-align:-5.671467pt;}
.v2{vertical-align:-4.080267pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:3.462400pt;}
.v5{vertical-align:4.784000pt;}
.ve{vertical-align:6.160267pt;}
.v14{vertical-align:7.498667pt;}
.v7{vertical-align:9.148800pt;}
.v4{vertical-align:10.458933pt;}
.v3{vertical-align:13.724533pt;}
.vc{vertical-align:15.326133pt;}
.v10{vertical-align:17.731840pt;}
.v13{vertical-align:21.114667pt;}
.vd{vertical-align:23.635733pt;}
.v11{vertical-align:33.989760pt;}
.ls0{letter-spacing:0.000000pt;}
.ls57{letter-spacing:0.000228pt;}
.ls1a{letter-spacing:0.000274pt;}
.ls3d{letter-spacing:0.000341pt;}
.ls55{letter-spacing:0.000475pt;}
.ls3c{letter-spacing:0.000924pt;}
.ls53{letter-spacing:0.001200pt;}
.ls5b{letter-spacing:0.001206pt;}
.ls54{letter-spacing:0.001296pt;}
.ls19{letter-spacing:0.001440pt;}
.ls1c{letter-spacing:0.001447pt;}
.ls47{letter-spacing:0.001553pt;}
.ls1d{letter-spacing:0.001555pt;}
.lsa{letter-spacing:0.001560pt;}
.ls2f{letter-spacing:0.001564pt;}
.ls20{letter-spacing:0.001720pt;}
.ls32{letter-spacing:0.001766pt;}
.ls4{letter-spacing:0.001863pt;}
.ls6{letter-spacing:0.001874pt;}
.ls31{letter-spacing:0.001879pt;}
.ls5c{letter-spacing:0.001923pt;}
.ls4b{letter-spacing:0.002016pt;}
.ls4d{letter-spacing:0.002025pt;}
.ls17{letter-spacing:0.002307pt;}
.ls41{letter-spacing:0.002400pt;}
.ls3a{letter-spacing:0.002499pt;}
.ls59{letter-spacing:0.002895pt;}
.ls21{letter-spacing:0.002945pt;}
.ls2a{letter-spacing:0.003845pt;}
.ls5d{letter-spacing:1.329296pt;}
.ls9{letter-spacing:1.724618pt;}
.ls37{letter-spacing:1.726460pt;}
.ls15{letter-spacing:1.728084pt;}
.ls2b{letter-spacing:1.728198pt;}
.ls3e{letter-spacing:2.089669pt;}
.ls45{letter-spacing:2.410747pt;}
.ls5a{letter-spacing:2.415742pt;}
.ls51{letter-spacing:2.658591pt;}
.ls58{letter-spacing:2.677077pt;}
.ls36{letter-spacing:2.858086pt;}
.ls1f{letter-spacing:2.895690pt;}
.lsb{letter-spacing:3.059463pt;}
.lse{letter-spacing:3.061359pt;}
.ls14{letter-spacing:3.062930pt;}
.ls1b{letter-spacing:3.212493pt;}
.ls46{letter-spacing:3.313489pt;}
.ls2c{letter-spacing:3.454108pt;}
.ls30{letter-spacing:3.476734pt;}
.ls11{letter-spacing:3.480201pt;}
.ls42{letter-spacing:4.183691pt;}
.ls44{letter-spacing:4.198404pt;}
.ls28{letter-spacing:4.397056pt;}
.ls2e{letter-spacing:4.531544pt;}
.ls3b{letter-spacing:4.533433pt;}
.ls10{letter-spacing:5.059109pt;}
.ls34{letter-spacing:6.300500pt;}
.ls35{letter-spacing:6.303967pt;}
.ls23{letter-spacing:7.756486pt;}
.ls56{letter-spacing:8.077808pt;}
.ls52{letter-spacing:8.082405pt;}
.ls22{letter-spacing:9.695686pt;}
.ls8{letter-spacing:10.503660pt;}
.ls16{letter-spacing:10.507127pt;}
.ls4e{letter-spacing:10.857056pt;}
.ls4c{letter-spacing:10.859081pt;}
.ls4f{letter-spacing:10.863561pt;}
.ls1e{letter-spacing:12.594890pt;}
.ls18{letter-spacing:12.908493pt;}
.ls25{letter-spacing:12.927477pt;}
.ls13{letter-spacing:13.362086pt;}
.ls7{letter-spacing:13.563463pt;}
.lsc{letter-spacing:13.565359pt;}
.ls43{letter-spacing:13.817489pt;}
.lsf{letter-spacing:13.984201pt;}
.ls5{letter-spacing:14.329418pt;}
.ls12{letter-spacing:14.331260pt;}
.ls48{letter-spacing:14.332998pt;}
.ls39{letter-spacing:15.037433pt;}
.ls2d{letter-spacing:15.039010pt;}
.ls33{letter-spacing:15.040899pt;}
.lsd{letter-spacing:15.563109pt;}
.ls24{letter-spacing:16.159477pt;}
.ls3{letter-spacing:19.374562pt;}
.ls2{letter-spacing:19.432743pt;}
.ls40{letter-spacing:20.343691pt;}
.ls26{letter-spacing:20.562389pt;}
.ls27{letter-spacing:20.875117pt;}
.ls3f{letter-spacing:21.487003pt;}
.ls29{letter-spacing:24.107117pt;}
.ls50{letter-spacing:27.069079pt;}
.ls1{letter-spacing:29.091733pt;}
.ls38{letter-spacing:448.321297pt;}
.ls4a{letter-spacing:554.019964pt;}
.ls49{letter-spacing:740.249532pt;}
.ws5c{word-spacing:-58.181867pt;}
.ws35{word-spacing:-37.818213pt;}
.ws40{word-spacing:-34.909120pt;}
.ws81{word-spacing:-31.835721pt;}
.ws98{word-spacing:-29.090933pt;}
.ws8{word-spacing:-17.620959pt;}
.ws5{word-spacing:-13.899648pt;}
.wse{word-spacing:-12.693681pt;}
.ws86{word-spacing:-12.491880pt;}
.ws30{word-spacing:-11.735224pt;}
.ws83{word-spacing:-11.675704pt;}
.ws56{word-spacing:-10.775575pt;}
.ws27{word-spacing:-10.409900pt;}
.ws3a{word-spacing:-9.034771pt;}
.ws43{word-spacing:-8.339789pt;}
.ws38{word-spacing:-7.004124pt;}
.ws99{word-spacing:-6.949824pt;}
.ws3f{word-spacing:-6.465345pt;}
.ws9c{word-spacing:-5.387788pt;}
.ws6d{word-spacing:-5.253115pt;}
.ws49{word-spacing:-4.849029pt;}
.ws9d{word-spacing:-4.040858pt;}
.ws72{word-spacing:-1.810755pt;}
.ws74{word-spacing:-1.807288pt;}
.ws66{word-spacing:-1.806234pt;}
.ws6a{word-spacing:-1.798814pt;}
.ws7e{word-spacing:-1.790032pt;}
.ws48{word-spacing:-1.668266pt;}
.ws46{word-spacing:-1.660938pt;}
.wsa4{word-spacing:-1.390222pt;}
.wsa3{word-spacing:-1.384115pt;}
.ws82{word-spacing:-0.816632pt;}
.ws87{word-spacing:-0.812152pt;}
.ws57{word-spacing:-0.058182pt;}
.ws33{word-spacing:-0.037818pt;}
.ws47{word-spacing:-0.034909pt;}
.ws9b{word-spacing:-0.029091pt;}
.ws34{word-spacing:-0.027630pt;}
.ws45{word-spacing:-0.025504pt;}
.wsa0{word-spacing:-0.021254pt;}
.ws6{word-spacing:0.000000pt;}
.wsa6{word-spacing:1.123838pt;}
.ws9f{word-spacing:1.137455pt;}
.ws42{word-spacing:1.364947pt;}
.ws6b{word-spacing:1.460989pt;}
.ws39{word-spacing:1.478692pt;}
.ws97{word-spacing:2.135987pt;}
.ws5e{word-spacing:2.274911pt;}
.ws9e{word-spacing:2.737457pt;}
.wsa1{word-spacing:2.746083pt;}
.ws65{word-spacing:2.776783pt;}
.ws4e{word-spacing:2.888690pt;}
.wsb{word-spacing:3.203994pt;}
.ws11{word-spacing:3.264003pt;}
.ws3e{word-spacing:3.284948pt;}
.ws53{word-spacing:3.292099pt;}
.ws50{word-spacing:3.295299pt;}
.ws41{word-spacing:3.296467pt;}
.ws4a{word-spacing:3.297352pt;}
.ws12{word-spacing:3.322185pt;}
.ws63{word-spacing:3.459015pt;}
.ws54{word-spacing:3.554912pt;}
.ws3c{word-spacing:3.558694pt;}
.ws77{word-spacing:3.565254pt;}
.ws37{word-spacing:3.568743pt;}
.ws32{word-spacing:3.571173pt;}
.ws3b{word-spacing:3.572131pt;}
.ws75{word-spacing:3.572431pt;}
.ws36{word-spacing:3.574671pt;}
.ws7c{word-spacing:3.578776pt;}
.ws69{word-spacing:3.580045pt;}
.ws28{word-spacing:3.832440pt;}
.ws3d{word-spacing:3.853967pt;}
.ws8c{word-spacing:4.020367pt;}
.ws9a{word-spacing:4.022388pt;}
.wsa2{word-spacing:4.023242pt;}
.ws8b{word-spacing:4.078549pt;}
.ws31{word-spacing:4.175131pt;}
.ws64{word-spacing:4.212949pt;}
.wsc{word-spacing:4.311276pt;}
.wsd{word-spacing:4.369458pt;}
.ws17{word-spacing:4.496295pt;}
.ws1f{word-spacing:4.537022pt;}
.ws8e{word-spacing:4.544004pt;}
.ws85{word-spacing:4.598927pt;}
.wsf{word-spacing:4.619489pt;}
.ws3{word-spacing:4.667310pt;}
.ws4d{word-spacing:4.825596pt;}
.ws4c{word-spacing:4.826865pt;}
.ws44{word-spacing:4.827890pt;}
.ws4b{word-spacing:4.830065pt;}
.ws9{word-spacing:4.999897pt;}
.ws16{word-spacing:5.009459pt;}
.wsa{word-spacing:5.053031pt;}
.ws13{word-spacing:5.067641pt;}
.ws70{word-spacing:5.214931pt;}
.ws6f{word-spacing:5.225491pt;}
.ws7b{word-spacing:5.226748pt;}
.ws73{word-spacing:5.228957pt;}
.ws71{word-spacing:5.229104pt;}
.ws6e{word-spacing:5.230214pt;}
.ws7d{word-spacing:5.232571pt;}
.ws80{word-spacing:5.395554pt;}
.ws7f{word-spacing:5.444426pt;}
.ws94{word-spacing:5.467034pt;}
.wsa8{word-spacing:5.467839pt;}
.ws5f{word-spacing:5.468356pt;}
.ws61{word-spacing:5.471796pt;}
.ws8f{word-spacing:5.473667pt;}
.ws2{word-spacing:5.474914pt;}
.ws92{word-spacing:5.481404pt;}
.ws5a{word-spacing:5.490347pt;}
.ws5d{word-spacing:5.490715pt;}
.ws4{word-spacing:5.533096pt;}
.wsa5{word-spacing:5.638275pt;}
.ws5b{word-spacing:6.605061pt;}
.ws0{word-spacing:7.322300pt;}
.ws67{word-spacing:7.328024pt;}
.ws76{word-spacing:7.333371pt;}
.ws1{word-spacing:7.398814pt;}
.ws60{word-spacing:7.636284pt;}
.ws62{word-spacing:7.657213pt;}
.ws10{word-spacing:8.447043pt;}
.ws7{word-spacing:8.523556pt;}
.ws8d{word-spacing:9.858109pt;}
.ws95{word-spacing:11.271216pt;}
.ws55{word-spacing:11.276775pt;}
.ws68{word-spacing:15.734214pt;}
.ws59{word-spacing:19.174253pt;}
.ws14{word-spacing:19.316380pt;}
.ws91{word-spacing:19.330578pt;}
.ws90{word-spacing:19.335605pt;}
.ws15{word-spacing:19.352057pt;}
.wsa9{word-spacing:19.374562pt;}
.ws58{word-spacing:22.765061pt;}
.ws93{word-spacing:25.495712pt;}
.ws2f{word-spacing:36.389420pt;}
.ws2b{word-spacing:54.488993pt;}
.ws2a{word-spacing:54.492726pt;}
.ws2d{word-spacing:56.756806pt;}
.ws2e{word-spacing:66.935926pt;}
.ws84{word-spacing:71.485350pt;}
.ws89{word-spacing:78.182950pt;}
.ws29{word-spacing:94.378875pt;}
.ws88{word-spacing:96.550950pt;}
.ws2c{word-spacing:119.401448pt;}
.ws19{word-spacing:333.414007pt;}
.ws1a{word-spacing:337.230804pt;}
.ws1d{word-spacing:347.411604pt;}
.ws1c{word-spacing:353.775607pt;}
.ws18{word-spacing:363.956407pt;}
.ws96{word-spacing:365.015577pt;}
.ws22{word-spacing:368.062113pt;}
.ws1b{word-spacing:374.608694pt;}
.ws25{word-spacing:378.242913pt;}
.ws26{word-spacing:384.785760pt;}
.ws1e{word-spacing:384.789494pt;}
.ws21{word-spacing:398.604513pt;}
.ws24{word-spacing:398.608246pt;}
.ws20{word-spacing:418.970593pt;}
.ws8a{word-spacing:423.259430pt;}
.ws7a{word-spacing:432.150219pt;}
.ws23{word-spacing:439.335926pt;}
.ws79{word-spacing:444.235019pt;}
.ws6c{word-spacing:474.623814pt;}
.wsa7{word-spacing:502.199691pt;}
.ws4f{word-spacing:647.297265pt;}
.ws78{word-spacing:668.625414pt;}
.ws52{word-spacing:748.474583pt;}
.ws51{word-spacing:759.642730pt;}
._1c{margin-left:-16.488741pt;}
._1f{margin-left:-15.220376pt;}
._37{margin-left:-12.683647pt;}
._1d{margin-left:-8.395643pt;}
._3{margin-left:-7.039202pt;}
._23{margin-left:-5.266621pt;}
._9{margin-left:-4.073524pt;}
._0{margin-left:-2.065853pt;}
._2{margin-left:-1.075968pt;}
._5{width:0.931703pt;}
._1{width:2.065853pt;}
._21{width:3.211964pt;}
._38{width:9.250714pt;}
._28{width:10.513463pt;}
._24{width:18.619467pt;}
._25{width:20.306265pt;}
._22{width:21.553929pt;}
._6{width:24.200616pt;}
._4{width:25.832749pt;}
._35{width:30.589172pt;}
._31{width:40.596295pt;}
._30{width:45.139140pt;}
._29{width:49.138895pt;}
._19{width:54.039627pt;}
._2f{width:56.671068pt;}
._1a{width:61.960080pt;}
._2d{width:64.506669pt;}
._d{width:66.498627pt;}
._2c{width:70.301042pt;}
._e{width:76.665680pt;}
._7{width:90.700117pt;}
._17{width:94.398235pt;}
._32{width:102.977189pt;}
._14{width:104.032961pt;}
._33{width:107.541825pt;}
._18{width:113.599605pt;}
._c{width:123.130470pt;}
._16{width:134.224122pt;}
._12{width:138.744856pt;}
._11{width:146.542480pt;}
._10{width:150.569449pt;}
._f{width:161.183683pt;}
._b{width:171.364264pt;}
._2e{width:176.618984pt;}
._15{width:231.128613pt;}
._2a{width:235.108845pt;}
._2b{width:250.478816pt;}
._13{width:384.459973pt;}
._36{width:409.018523pt;}
._34{width:464.855173pt;}
._1e{width:797.254483pt;}
._a{width:823.038210pt;}
._20{width:838.167971pt;}
._8{width:839.966773pt;}
._1b{width:863.692356pt;}
._27{width:889.219650pt;}
._26{width:988.832824pt;}
.fs17{font-size:15.940267pt;}
.fs11{font-size:19.128320pt;}
.fsc{font-size:20.722347pt;}
.fs16{font-size:21.253600pt;}
.fs10{font-size:25.504320pt;}
.fsb{font-size:27.629680pt;}
.fs15{font-size:29.090933pt;}
.fs4{font-size:31.880533pt;}
.fs6{font-size:33.314437pt;}
.fs8{font-size:33.397957pt;}
.fsf{font-size:34.909120pt;}
.fs14{font-size:35.706048pt;}
.fse{font-size:35.806249pt;}
.fsa{font-size:37.818213pt;}
.fs9{font-size:40.727307pt;}
.fs12{font-size:42.507200pt;}
.fsd{font-size:42.967528pt;}
.fs5{font-size:44.417719pt;}
.fs7{font-size:44.529076pt;}
.fs2{font-size:47.820800pt;}
.fs13{font-size:48.872768pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y48{bottom:0.867951pt;}
.y55{bottom:0.869784pt;}
.y4f{bottom:3.485686pt;}
.y42{bottom:3.486185pt;}
.y15{bottom:5.772000pt;}
.y54{bottom:8.759031pt;}
.y4e{bottom:11.355204pt;}
.y43{bottom:11.355343pt;}
.ya9{bottom:15.870496pt;}
.y46{bottom:16.606581pt;}
.y4d{bottom:19.224361pt;}
.y40{bottom:21.847787pt;}
.yb1{bottom:23.482984pt;}
.y3f{bottom:24.470722pt;}
.y47{bottom:24.475738pt;}
.y51{bottom:24.537081pt;}
.ya8{bottom:28.557976pt;}
.y45{bottom:29.721997pt;}
.y4b{bottom:32.339769pt;}
.y53{bottom:32.426003pt;}
.y3e{bottom:37.586417pt;}
.y52{bottom:37.685378pt;}
.y50{bottom:40.001333pt;}
.y4c{bottom:40.209287pt;}
.y41{bottom:40.209389pt;}
.yb0{bottom:43.782416pt;}
.y4a{bottom:45.455185pt;}
.ya6{bottom:46.320002pt;}
.y192{bottom:49.423333pt;}
.y164{bottom:50.688000pt;}
.y60{bottom:53.065333pt;}
.ycf{bottom:54.412267pt;}
.y70{bottom:55.093333pt;}
.yf8{bottom:55.664000pt;}
.y88{bottom:55.979333pt;}
.y3c{bottom:57.426667pt;}
.y191{bottom:58.456000pt;}
.y144{bottom:61.044800pt;}
.y174{bottom:61.476000pt;}
.yeb{bottom:62.653333pt;}
.y190{bottom:63.260667pt;}
.yce{bottom:65.251467pt;}
.y102{bottom:66.334667pt;}
.ya0{bottom:68.037333pt;}
.y7e{bottom:68.112000pt;}
.yd8{bottom:68.532000pt;}
.y163{bottom:68.753333pt;}
.y5f{bottom:69.005333pt;}
.ya2{bottom:69.157019pt;}
.yaf{bottom:69.157109pt;}
.y87{bottom:71.229067pt;}
.yf7{bottom:71.605333pt;}
.y12c{bottom:71.986667pt;}
.y143{bottom:72.787267pt;}
.y18f{bottom:74.004000pt;}
.ya1{bottom:74.324000pt;}
.yc{bottom:75.492000pt;}
.ycd{bottom:76.090667pt;}
.y158{bottom:77.377653pt;}
.y6f{bottom:78.247067pt;}
.y142{bottom:78.524600pt;}
.y30{bottom:78.797333pt;}
.y173{bottom:79.541333pt;}
.y14c{bottom:80.768000pt;}
.ya4{bottom:81.844142pt;}
.y18e{bottom:83.036667pt;}
.y3b{bottom:83.052000pt;}
.y86{bottom:84.247200pt;}
.y101{bottom:84.400000pt;}
.yea{bottom:84.704000pt;}
.y9f{bottom:86.102667pt;}
.y5e{bottom:86.273333pt;}
.ycc{bottom:86.929867pt;}
.y157{bottom:87.089173pt;}
.yf6{bottom:87.545333pt;}
.y141{bottom:87.789267pt;}
.y114{bottom:88.121867pt;}
.y162{bottom:88.146667pt;}
.ye0{bottom:89.990667pt;}
.y7d{bottom:91.265467pt;}
.y6e{bottom:93.496800pt;}
.y16a{bottom:93.698667pt;}
.y1e{bottom:93.861333pt;}
.y18d{bottom:95.390000pt;}
.y2f{bottom:96.066667pt;}
.y8d{bottom:96.982667pt;}
.y85{bottom:97.265333pt;}
.y172{bottom:97.606667pt;}
.ycb{bottom:97.769067pt;}
.y140{bottom:99.532600pt;}
.y113{bottom:99.864333pt;}
.y18c{bottom:100.194667pt;}
.yb{bottom:101.117333pt;}
.y100{bottom:102.465333pt;}
.ye9{bottom:102.769333pt;}
.yd7{bottom:103.044000pt;}
.yf5{bottom:103.485333pt;}
.y49{bottom:103.486667pt;}
.yca{bottom:103.534667pt;}
.y14b{bottom:104.266667pt;}
.y125{bottom:104.296600pt;}
.y195{bottom:104.662667pt;}
.y161{bottom:106.213333pt;}
.y6d{bottom:106.514933pt;}
.y7c{bottom:106.515200pt;}
.ydf{bottom:108.056000pt;}
.y3a{bottom:108.676000pt;}
.y12b{bottom:109.480000pt;}
.ya3{bottom:109.756152pt;}
.y5d{bottom:110.184000pt;}
.y84{bottom:110.282533pt;}
.y18b{bottom:110.938000pt;}
.y13f{bottom:111.275067pt;}
.y1d{bottom:111.926667pt;}
.yb5{bottom:112.293540pt;}
.yc9{bottom:112.441867pt;}
.y112{bottom:113.139933pt;}
.y2e{bottom:113.334667pt;}
.y156{bottom:114.243573pt;}
.y124{bottom:116.039067pt;}
.y13e{bottom:117.012400pt;}
.yf4{bottom:119.425333pt;}
.y6c{bottom:119.532133pt;}
.y7b{bottom:119.532400pt;}
.y24{bottom:119.896000pt;}
.y18a{bottom:119.970667pt;}
.yd6{bottom:121.109333pt;}
.ya7{bottom:122.443364pt;}
.y194{bottom:122.729333pt;}
.yc8{bottom:123.281067pt;}
.y83{bottom:123.300667pt;}
.y155{bottom:123.955093pt;}
.ye8{bottom:124.820000pt;}
.y111{bottom:124.882400pt;}
.y13d{bottom:126.277933pt;}
.ya{bottom:126.741333pt;}
.y12a{bottom:127.545333pt;}
.y14a{bottom:127.766667pt;}
.y123{bottom:127.781533pt;}
.y169{bottom:128.210667pt;}
.y5c{bottom:128.249333pt;}
.y189{bottom:129.003333pt;}
.y1c{bottom:129.992000pt;}
.y9e{bottom:130.006533pt;}
.y171{bottom:130.248000pt;}
.y2d{bottom:130.604000pt;}
.yc7{bottom:131.833067pt;}
.y6b{bottom:132.550267pt;}
.y7a{bottom:132.550533pt;}
.yb4{bottom:132.593330pt;}
.y160{bottom:133.460000pt;}
.yc6{bottom:134.120267pt;}
.y39{bottom:134.300000pt;}
.y82{bottom:136.318800pt;}
.y110{bottom:136.624867pt;}
.yff{bottom:137.537333pt;}
.y14{bottom:137.560000pt;}
.y13c{bottom:138.020400pt;}
.y188{bottom:138.036000pt;}
.y9d{bottom:139.135133pt;}
.yd5{bottom:139.174667pt;}
.yf3{bottom:139.350667pt;}
.y122{bottom:139.524000pt;}
.ya5{bottom:140.205389pt;}
.y9c{bottom:141.749867pt;}
.yde{bottom:142.568000pt;}
.y187{bottom:142.840667pt;}
.yc5{bottom:144.959467pt;}
.y121{bottom:145.262200pt;}
.y23{bottom:145.521333pt;}
.y6a{bottom:145.568400pt;}
.y79{bottom:145.568667pt;}
.ye7{bottom:146.870667pt;}
.y8c{bottom:146.973333pt;}
.y2c{bottom:147.872000pt;}
.y10f{bottom:148.367333pt;}
.y81{bottom:149.336000pt;}
.y34{bottom:149.354667pt;}
.y13b{bottom:149.762867pt;}
.y186{bottom:150.263333pt;}
.y154{bottom:151.109493pt;}
.y149{bottom:151.265333pt;}
.y9{bottom:152.366667pt;}
.y9b{bottom:153.492333pt;}
.yc4{bottom:153.511467pt;}
.y10e{bottom:153.726800pt;}
.y120{bottom:154.526867pt;}
.y185{bottom:155.068000pt;}
.yb3{bottom:155.430348pt;}
.yfe{bottom:155.602667pt;}
.yc3{bottom:155.798667pt;}
.y193{bottom:157.241333pt;}
.y13{bottom:157.485333pt;}
.y78{bottom:158.585867pt;}
.y69{bottom:158.586533pt;}
.y38{bottom:159.925333pt;}
.ydd{bottom:160.633333pt;}
.y15f{bottom:160.708000pt;}
.y13a{bottom:161.505333pt;}
.y80{bottom:162.354133pt;}
.y168{bottom:162.722667pt;}
.y170{bottom:162.890667pt;}
.y10d{bottom:162.992333pt;}
.yae{bottom:163.042496pt;}
.yb2{bottom:163.042586pt;}
.y1b{bottom:164.504000pt;}
.y129{bottom:165.038667pt;}
.y2b{bottom:165.141333pt;}
.y9a{bottom:165.234800pt;}
.y184{bottom:165.810667pt;}
.y5b{bottom:165.973333pt;}
.y11f{bottom:166.269333pt;}
.yc2{bottom:166.637867pt;}
.ye6{bottom:168.921333pt;}
.y153{bottom:169.766453pt;}
.yf2{bottom:170.409333pt;}
.y99{bottom:170.594267pt;}
.y22{bottom:171.145333pt;}
.y148{bottom:171.190667pt;}
.y5{bottom:171.678667pt;}
.y139{bottom:173.247800pt;}
.yd4{bottom:173.686667pt;}
.y10c{bottom:174.734800pt;}
.y183{bottom:174.843333pt;}
.yc1{bottom:177.477867pt;}
.y7f{bottom:177.603867pt;}
.y8{bottom:177.990667pt;}
.y11e{bottom:178.012667pt;}
.yaa{bottom:178.267204pt;}
.y138{bottom:178.985133pt;}
.y98{bottom:179.858933pt;}
.y2a{bottom:182.409333pt;}
.y1a{bottom:182.570667pt;}
.y33{bottom:183.866667pt;}
.y182{bottom:183.876667pt;}
.y5a{bottom:184.038667pt;}
.y37{bottom:185.549333pt;}
.y68{bottom:185.597333pt;}
.yac{bottom:185.879514pt;}
.yf1{bottom:186.349333pt;}
.y10b{bottom:186.477267pt;}
.ye5{bottom:186.986667pt;}
.y15e{bottom:187.956000pt;}
.y137{bottom:188.250667pt;}
.yc0{bottom:188.317067pt;}
.y4{bottom:189.744000pt;}
.y11d{bottom:189.755133pt;}
.y44{bottom:190.160000pt;}
.yfd{bottom:190.673333pt;}
.y152{bottom:191.100213pt;}
.y97{bottom:191.602267pt;}
.yd3{bottom:191.753333pt;}
.y77{bottom:192.106667pt;}
.y10a{bottom:192.215467pt;}
.y12{bottom:192.528000pt;}
.y181{bottom:192.909333pt;}
.y136{bottom:193.988000pt;}
.ybf{bottom:194.082667pt;}
.ydc{bottom:195.145333pt;}
.y16f{bottom:195.532000pt;}
.y21{bottom:196.770667pt;}
.y8b{bottom:196.964000pt;}
.y167{bottom:197.234667pt;}
.y180{bottom:197.714000pt;}
.yab{bottom:198.566994pt;}
.y151{bottom:200.812853pt;}
.y109{bottom:201.480133pt;}
.y11c{bottom:201.497600pt;}
.y59{bottom:202.105333pt;}
.yf0{bottom:202.289333pt;}
.y29{bottom:202.334667pt;}
.y128{bottom:202.532000pt;}
.ybe{bottom:202.989067pt;}
.y135{bottom:203.253533pt;}
.y96{bottom:203.344733pt;}
.y147{bottom:203.577333pt;}
.y7{bottom:203.614667pt;}
.y11{bottom:208.468000pt;}
.yfc{bottom:208.738667pt;}
.y67{bottom:208.751067pt;}
.y17f{bottom:208.962000pt;}
.ye4{bottom:209.037333pt;}
.y11b{bottom:210.762267pt;}
.yad{bottom:211.254206pt;}
.y15d{bottom:211.390667pt;}
.y95{bottom:212.472467pt;}
.ydb{bottom:213.210667pt;}
.y108{bottom:213.222600pt;}
.y11a{bottom:213.240067pt;}
.y16e{bottom:213.597333pt;}
.ybd{bottom:213.828267pt;}
.y134{bottom:214.996000pt;}
.y8a{bottom:215.030667pt;}
.y94{bottom:215.087200pt;}
.y15c{bottom:215.204000pt;}
.y76{bottom:215.260133pt;}
.y19{bottom:217.082667pt;}
.y3{bottom:217.640000pt;}
.yef{bottom:218.229333pt;}
.y32{bottom:221.034667pt;}
.y17e{bottom:221.316000pt;}
.y20{bottom:222.394667pt;}
.y66{bottom:224.000800pt;}
.y133{bottom:224.260667pt;}
.y10{bottom:224.409333pt;}
.ybc{bottom:224.667467pt;}
.y107{bottom:224.965067pt;}
.y119{bottom:224.982533pt;}
.yd2{bottom:226.265333pt;}
.y132{bottom:226.738467pt;}
.yfb{bottom:226.804000pt;}
.y93{bottom:226.829667pt;}
.y17d{bottom:227.337333pt;}
.y150{bottom:227.967253pt;}
.y75{bottom:230.509867pt;}
.y118{bottom:230.719867pt;}
.ye3{bottom:231.088000pt;}
.y16d{bottom:231.662667pt;}
.y166{bottom:231.746667pt;}
.yee{bottom:234.169333pt;}
.y18{bottom:235.148000pt;}
.ybb{bottom:235.506667pt;}
.y106{bottom:236.708400pt;}
.y65{bottom:237.018933pt;}
.y146{bottom:238.089333pt;}
.y131{bottom:238.480933pt;}
.y92{bottom:238.572133pt;}
.y58{bottom:239.829333pt;}
.y117{bottom:239.985400pt;}
.y127{bottom:240.025333pt;}
.y17c{bottom:240.277333pt;}
.y31{bottom:240.960000pt;}
.y15b{bottom:242.450667pt;}
.y28{bottom:243.281333pt;}
.y74{bottom:243.527067pt;}
.y130{bottom:243.863800pt;}
.yf{bottom:244.334667pt;}
.y116{bottom:245.722733pt;}
.yba{bottom:246.346667pt;}
.y14f{bottom:246.623093pt;}
.yda{bottom:247.722667pt;}
.y1f{bottom:248.020000pt;}
.y105{bottom:248.450867pt;}
.y64{bottom:250.036133pt;}
.y91{bottom:250.314600pt;}
.y3d{bottom:250.474667pt;}
.y36{bottom:251.190667pt;}
.y17b{bottom:252.631333pt;}
.y12f{bottom:253.128467pt;}
.ye2{bottom:253.138667pt;}
.y104{bottom:253.810333pt;}
.yed{bottom:254.094667pt;}
.y90{bottom:255.854333pt;}
.y14e{bottom:256.335733pt;}
.y73{bottom:256.545200pt;}
.y17a{bottom:257.140667pt;}
.yb9{bottom:257.185867pt;}
.y57{bottom:257.894667pt;}
.y27{bottom:260.549333pt;}
.yd1{bottom:260.777333pt;}
.yfa{bottom:261.876000pt;}
.yb8{bottom:262.481867pt;}
.y63{bottom:263.054267pt;}
.y16c{bottom:264.305333pt;}
.y12e{bottom:264.870933pt;}
.y89{bottom:265.021333pt;}
.y8f{bottom:265.119867pt;}
.yd9{bottom:265.789333pt;}
.y165{bottom:266.258667pt;}
.y115{bottom:267.075667pt;}
.y179{bottom:267.588667pt;}
.y178{bottom:267.807333pt;}
.y6{bottom:269.256000pt;}
.y72{bottom:269.563333pt;}
.y17{bottom:269.660000pt;}
.y15a{bottom:269.698667pt;}
.yb7{bottom:271.034667pt;}
.ye1{bottom:271.205333pt;}
.y145{bottom:272.601333pt;}
.y103{bottom:275.163267pt;}
.y62{bottom:276.072400pt;}
.y177{bottom:276.621333pt;}
.ye{bottom:276.721333pt;}
.y126{bottom:277.518667pt;}
.y26{bottom:277.818667pt;}
.yd0{bottom:278.842667pt;}
.yf9{bottom:279.941333pt;}
.y176{bottom:281.130667pt;}
.y16b{bottom:282.370667pt;}
.y71{bottom:282.580533pt;}
.y14d{bottom:283.490133pt;}
.yec{bottom:285.153333pt;}
.y16{bottom:287.725333pt;}
.y159{bottom:287.764000pt;}
.y12d{bottom:288.701667pt;}
.y8e{bottom:288.950600pt;}
.y61{bottom:289.089600pt;}
.y2{bottom:290.752000pt;}
.yb6{bottom:293.031467pt;}
.y56{bottom:295.618667pt;}
.y175{bottom:297.556000pt;}
.y25{bottom:297.744000pt;}
.y1{bottom:314.662667pt;}
.y35{bottom:332.849333pt;}
.yd{bottom:345.296000pt;}
.h2e{height:11.397291pt;}
.h2d{height:15.196324pt;}
.h32{height:15.940200pt;}
.h1c{height:18.235589pt;}
.h31{height:18.895957pt;}
.h1d{height:19.128240pt;}
.h13{height:19.755221pt;}
.h2c{height:21.818200pt;}
.h6{height:22.794581pt;}
.h1a{height:24.455668pt;}
.ha{height:24.685998pt;}
.h30{height:24.728971pt;}
.h10{height:24.747886pt;}
.h2f{height:25.753657pt;}
.h1b{height:26.181840pt;}
.h19{height:26.532431pt;}
.h12{height:28.363660pt;}
.h11{height:30.545480pt;}
.h18{height:31.838938pt;}
.h9{height:32.380517pt;}
.hf{height:32.461696pt;}
.h8{height:32.913530pt;}
.he{height:32.996045pt;}
.h1e{height:33.275440pt;}
.h15{height:34.443327pt;}
.h14{height:34.446793pt;}
.h1f{height:35.330640pt;}
.h4{height:35.865600pt;}
.h20{height:36.048393pt;}
.h23{height:36.654576pt;}
.h22{height:38.274860pt;}
.h16{height:38.822593pt;}
.h5{height:39.850400pt;}
.h25{height:43.266144pt;}
.h3{height:43.636400pt;}
.h21{height:44.357993pt;}
.h2b{height:51.507315pt;}
.hb{height:53.673200pt;}
.h29{height:55.459067pt;}
.h2{height:57.384800pt;}
.h2a{height:58.889733pt;}
.h7{height:62.001800pt;}
.hd{height:62.157240pt;}
.hc{height:69.405000pt;}
.h26{height:70.644336pt;}
.h28{height:70.648816pt;}
.h24{height:77.255904pt;}
.h27{height:77.260384pt;}
.h17{height:230.062973pt;}
.h1{height:362.666667pt;}
.h0{height:362.834667pt;}
.w3{width:367.377120pt;}
.w2{width:367.383800pt;}
.w4{width:408.205120pt;}
.w0{width:483.780000pt;}
.w1{width:484.000000pt;}
.x0{left:0.000000pt;}
.x23{left:13.715320pt;}
.xd{left:15.118667pt;}
.x17{left:19.855197pt;}
.x9{left:37.794667pt;}
.x16{left:43.296042pt;}
.x1e{left:47.456455pt;}
.x72{left:49.114507pt;}
.xa{left:50.946667pt;}
.x5d{left:52.822733pt;}
.x10{left:56.693333pt;}
.x13{left:58.205333pt;}
.x3d{left:60.382267pt;}
.x71{left:63.420267pt;}
.xb{left:66.122667pt;}
.x7{left:70.118667pt;}
.x6b{left:72.454467pt;}
.x74{left:75.011147pt;}
.xc{left:80.037333pt;}
.xf{left:82.062667pt;}
.x4d{left:84.376867pt;}
.x50{left:87.333067pt;}
.x4a{left:89.710147pt;}
.x5c{left:95.977333pt;}
.x29{left:101.072000pt;}
.x4b{left:104.676236pt;}
.x49{left:107.213822pt;}
.x28{left:109.960000pt;}
.x4c{left:112.288474pt;}
.x11{left:128.241333pt;}
.x31{left:129.476000pt;}
.x2{left:134.740000pt;}
.x2d{left:138.364000pt;}
.x39{left:146.704133pt;}
.x2e{left:148.926267pt;}
.x2a{left:150.622667pt;}
.x3c{left:153.647200pt;}
.x3a{left:156.107467pt;}
.x26{left:159.383867pt;}
.x5{left:162.456000pt;}
.x25{left:163.520400pt;}
.x3b{left:164.769733pt;}
.x75{left:166.370667pt;}
.x1{left:167.762667pt;}
.x47{left:169.333333pt;}
.x30{left:170.484400pt;}
.x2c{left:172.181733pt;}
.x27{left:173.821600pt;}
.x32{left:177.037467pt;}
.x2f{left:180.666133pt;}
.x2b{left:182.363467pt;}
.x46{left:185.781333pt;}
.x79{left:187.289333pt;}
.x64{left:188.709133pt;}
.x4{left:190.118667pt;}
.x3e{left:193.079333pt;}
.x3{left:200.536000pt;}
.x68{left:203.589800pt;}
.x6a{left:204.786667pt;}
.x63{left:207.118000pt;}
.x52{left:209.822667pt;}
.x65{left:214.229867pt;}
.x5e{left:216.808200pt;}
.x73{left:221.313387pt;}
.x33{left:224.981867pt;}
.x45{left:227.584800pt;}
.x53{left:228.772267pt;}
.x6c{left:230.307400pt;}
.x51{left:232.657867pt;}
.x6d{left:234.588733pt;}
.x48{left:239.312937pt;}
.x1d{left:242.324411pt;}
.x14{left:244.178820pt;}
.xe{left:247.262667pt;}
.x34{left:249.239200pt;}
.x1b{left:250.967555pt;}
.x1a{left:253.743755pt;}
.x8{left:256.136000pt;}
.x22{left:262.892562pt;}
.x18{left:265.212977pt;}
.x12{left:267.346667pt;}
.x35{left:269.395467pt;}
.x76{left:271.183333pt;}
.x15{left:273.492994pt;}
.x4f{left:276.825680pt;}
.x5a{left:278.173333pt;}
.x21{left:279.596254pt;}
.x78{left:288.026000pt;}
.x36{left:289.975467pt;}
.x67{left:292.444800pt;}
.x19{left:293.722515pt;}
.x57{left:298.395467pt;}
.x24{left:299.952193pt;}
.x20{left:301.824855pt;}
.x40{left:305.242467pt;}
.x5b{left:308.738667pt;}
.x37{left:312.112267pt;}
.x6f{left:317.556467pt;}
.x1c{left:321.236878pt;}
.x56{left:322.591467pt;}
.x1f{left:323.811434pt;}
.x77{left:325.976667pt;}
.x59{left:327.059467pt;}
.x44{left:328.579200pt;}
.x5f{left:330.973333pt;}
.x38{left:335.379333pt;}
.x4e{left:337.228042pt;}
.x69{left:338.736067pt;}
.x6{left:340.778667pt;}
.x43{left:345.080533pt;}
.x41{left:348.358267pt;}
.x55{left:352.448267pt;}
.x60{left:353.593333pt;}
.x54{left:356.537867pt;}
.x62{left:358.255133pt;}
.x3f{left:362.994533pt;}
.x66{left:364.126800pt;}
.x58{left:367.935467pt;}
.x70{left:376.758187pt;}
.x6e{left:378.874000pt;}
.x61{left:389.895400pt;}
.x42{left:395.375800pt;}
}




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