
    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_46dd354ef8a6a9235bcec1f1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_e4382e87412e151c925fcb32.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_b35fb971958a7724b00a6c03.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_e4382e87412e151c925fcb32.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_a020d0f8af9ade783fa47044.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.402354;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_8be05e8ebfe8f4412925583e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_a451f1b9f49f9f287ca22160.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_85e3b433a2b116393db6cb95.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;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_2312fac77346371b6a8bac0c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.104004;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_471d36d57314bbe0f2a0487c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284668;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_e694984768339f6c1031a931.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.982910;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_4f9530f95df225b2547b09ae.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;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_1c3c7cde6e6f836f235049b0.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.040039;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_bb9b1593ae02cd6547fd8b8c.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.112305;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_8d3abac1f5ba202298ea170b.woff2')format("woff");}.fff{font-family:fff;line-height:1.402354;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_503c4c4273d3dc35423fb890.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.982910;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_349732f7ad2cb6fd82bed320.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.311035;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_79617d73935200b27106b394.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.284668;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_3fd15e79cfc00874a8341258.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.402354;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_b4c63355eab79d485acd53bd.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.284180;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_5bb599fbb538161599ec3c96.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.002930;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_9d5517d0693ad5c25fdc72c7.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.002930;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_bdff8a6a0bd3a67db4972937.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.002930;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_dea29fa45a8f0ee44f6c1d20.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.002930;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_8bfa101cc96d64a8f02cdc2c.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.895996;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);}
.v1{vertical-align:-82.920000px;}
.v3{vertical-align:-33.120000px;}
.v5{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:30.240000px;}
.v2{vertical-align:33.120000px;}
.ls2f{letter-spacing:-2.700000px;}
.ls2e{letter-spacing:-2.160000px;}
.ls2c{letter-spacing:-1.350000px;}
.ls17{letter-spacing:-0.648000px;}
.ls2d{letter-spacing:-0.540000px;}
.ls1f{letter-spacing:-0.463800px;}
.ls12{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.216000px;}
.ls27{letter-spacing:-0.152400px;}
.ls7{letter-spacing:-0.144000px;}
.ls1a{letter-spacing:-0.072000px;}
.ls3{letter-spacing:-0.037440px;}
.ls2{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.004320px;}
.ls16{letter-spacing:0.072000px;}
.ls20{letter-spacing:0.075000px;}
.ls4{letter-spacing:0.108000px;}
.ls21{letter-spacing:0.109200px;}
.ls23{letter-spacing:0.135360px;}
.ls6{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.162000px;}
.ls11{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.216000px;}
.ls18{letter-spacing:0.256200px;}
.ls1e{letter-spacing:0.256320px;}
.ls22{letter-spacing:0.262200px;}
.ls2a{letter-spacing:0.270000px;}
.ls24{letter-spacing:0.298800px;}
.ls28{letter-spacing:0.305400px;}
.ls26{letter-spacing:0.354000px;}
.lsa{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.432000px;}
.ls1b{letter-spacing:0.504000px;}
.ls1c{letter-spacing:0.576000px;}
.lsf{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.792000px;}
.ls29{letter-spacing:0.810000px;}
.ls2b{letter-spacing:2.376000px;}
.ls30{letter-spacing:2.538000px;}
.ls10{letter-spacing:6.480000px;}
.ls8{letter-spacing:6.749760px;}
.lse{letter-spacing:7.920000px;}
.lsb{letter-spacing:12.960000px;}
.ls14{letter-spacing:16.560000px;}
.ls19{letter-spacing:33.984000px;}
.ls1d{letter-spacing:113.885760px;}
.ls9{letter-spacing:194.376000px;}
.ls5{letter-spacing:2533.416000px;}
.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;}
}
.ws6{word-spacing:-72.000000px;}
.wsc{word-spacing:-18.792000px;}
.wsb{word-spacing:-18.720000px;}
.ws11{word-spacing:-18.576000px;}
.ws10{word-spacing:-18.504000px;}
.ws4{word-spacing:-18.144000px;}
.wse{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.wsf{word-spacing:-17.928000px;}
.ws3{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.ws17{word-spacing:-17.280000px;}
.ws18{word-spacing:-16.822200px;}
.ws16{word-spacing:-16.669200px;}
.ws15{word-spacing:-16.560000px;}
.ws1c{word-spacing:-16.407600px;}
.wsd{word-spacing:-15.226440px;}
.ws13{word-spacing:-15.045240px;}
.ws0{word-spacing:-15.012000px;}
.ws12{word-spacing:-14.970240px;}
.ws1f{word-spacing:-14.742000px;}
.ws14{word-spacing:-14.506440px;}
.ws1d{word-spacing:-13.014000px;}
.ws1e{word-spacing:-12.474000px;}
.ws5{word-spacing:-12.420000px;}
.ws9{word-spacing:-12.060000px;}
.wsa{word-spacing:-11.700000px;}
.ws19{word-spacing:-10.440000px;}
.ws1b{word-spacing:-9.724320px;}
.ws1a{word-spacing:-9.720000px;}
.ws2d{word-spacing:-2.268000px;}
.ws21{word-spacing:-1.512000px;}
.ws50{word-spacing:-1.296000px;}
.ws5a{word-spacing:-1.026000px;}
.ws22{word-spacing:-0.810000px;}
.ws2a{word-spacing:-0.270000px;}
.ws1{word-spacing:0.000000px;}
.ws65{word-spacing:0.270000px;}
.ws23{word-spacing:0.540000px;}
.ws45{word-spacing:1.134000px;}
.ws25{word-spacing:1.350000px;}
.ws36{word-spacing:1.836000px;}
.ws44{word-spacing:2.214000px;}
.ws47{word-spacing:2.862000px;}
.ws3a{word-spacing:2.916000px;}
.ws2b{word-spacing:3.240000px;}
.ws62{word-spacing:3.672000px;}
.ws5b{word-spacing:4.860000px;}
.ws20{word-spacing:5.130000px;}
.ws32{word-spacing:6.642000px;}
.ws3c{word-spacing:6.804000px;}
.ws59{word-spacing:6.858000px;}
.ws66{word-spacing:7.452000px;}
.ws24{word-spacing:7.776000px;}
.ws40{word-spacing:8.802000px;}
.ws37{word-spacing:11.556000px;}
.ws49{word-spacing:11.772000px;}
.ws34{word-spacing:12.420000px;}
.ws67{word-spacing:12.744000px;}
.ws26{word-spacing:12.852000px;}
.ws53{word-spacing:13.986000px;}
.ws3d{word-spacing:14.472000px;}
.ws35{word-spacing:15.498000px;}
.ws3f{word-spacing:16.146000px;}
.ws52{word-spacing:16.308000px;}
.ws5d{word-spacing:16.740000px;}
.ws61{word-spacing:17.064000px;}
.ws2f{word-spacing:17.388000px;}
.ws46{word-spacing:18.522000px;}
.ws54{word-spacing:18.900000px;}
.ws5c{word-spacing:19.548000px;}
.ws3b{word-spacing:19.710000px;}
.ws38{word-spacing:20.142000px;}
.ws28{word-spacing:21.168000px;}
.ws58{word-spacing:21.600000px;}
.ws3e{word-spacing:21.924000px;}
.ws64{word-spacing:22.140000px;}
.ws2c{word-spacing:22.248000px;}
.ws29{word-spacing:22.464000px;}
.ws51{word-spacing:22.626000px;}
.ws4c{word-spacing:23.058000px;}
.ws30{word-spacing:23.922000px;}
.ws57{word-spacing:23.976000px;}
.ws42{word-spacing:24.030000px;}
.ws5f{word-spacing:24.948000px;}
.ws39{word-spacing:26.784000px;}
.ws56{word-spacing:28.944000px;}
.ws60{word-spacing:29.160000px;}
.ws43{word-spacing:29.808000px;}
.ws2e{word-spacing:30.672000px;}
.ws4b{word-spacing:32.346000px;}
.ws48{word-spacing:32.454000px;}
.ws4a{word-spacing:32.832000px;}
.ws5e{word-spacing:34.074000px;}
.ws68{word-spacing:35.640000px;}
.ws4f{word-spacing:35.910000px;}
.ws55{word-spacing:35.964000px;}
.ws33{word-spacing:36.180000px;}
.ws31{word-spacing:36.288000px;}
.ws4e{word-spacing:38.934000px;}
.ws4d{word-spacing:40.014000px;}
.ws27{word-spacing:41.040000px;}
.ws41{word-spacing:41.364000px;}
.ws63{word-spacing:48.870000px;}
._36{margin-left:-46.548000px;}
._35{margin-left:-34.074000px;}
._33{margin-left:-29.200080px;}
._31{margin-left:-16.753920px;}
._2e{margin-left:-15.215040px;}
._2f{margin-left:-11.934000px;}
._30{margin-left:-6.480720px;}
._2d{margin-left:-5.440080px;}
._4{margin-left:-3.672000px;}
._2{margin-left:-2.442960px;}
._0{margin-left:-1.440000px;}
._3{width:1.074960px;}
._1{width:2.244000px;}
._5{width:4.224000px;}
._16{width:5.297040px;}
._c{width:7.176000px;}
._8{width:8.688000px;}
._9{width:9.912000px;}
._1f{width:11.732880px;}
._17{width:13.013040px;}
._19{width:14.946960px;}
._15{width:15.960000px;}
._1b{width:16.966080px;}
._2a{width:18.074880px;}
._1e{width:19.152000px;}
._20{width:20.285040px;}
._b{width:21.312000px;}
._a{width:22.320000px;}
._14{width:23.379120px;}
._13{width:24.384000px;}
._6{width:25.536000px;}
._7{width:27.060000px;}
._18{width:28.560000px;}
._d{width:29.592000px;}
._e{width:30.838080px;}
._f{width:32.904000px;}
._10{width:34.644000px;}
._1a{width:35.904000px;}
._25{width:37.186080px;}
._11{width:38.736000px;}
._12{width:40.109040px;}
._1d{width:41.180880px;}
._2b{width:42.213360px;}
._22{width:44.340000px;}
._21{width:45.408000px;}
._26{width:46.848000px;}
._27{width:47.880000px;}
._28{width:49.078080px;}
._32{width:50.173920px;}
._23{width:65.813040px;}
._24{width:66.822960px;}
._34{width:113.130000px;}
._2c{width:114.217320px;}
._29{width:146.617200px;}
._1c{width:194.376000px;}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(89,89,89);}
.fc3{color:rgb(166,166,166);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(77,77,77);}
.fc0{color:rgb(128,128,128);}
.fs9{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fsb{font-size:48.000000px;}
.fs5{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:72.144000px;}
.fs2{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fsc{font-size:108.000000px;}
.fsa{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y17d{bottom:13.140000px;}
.y181{bottom:18.360000px;}
.y189{bottom:22.140000px;}
.y1b4{bottom:22.485000px;}
.y192{bottom:22.500000px;}
.y18d{bottom:22.530000px;}
.y187{bottom:22.680000px;}
.y1cb{bottom:23.890800px;}
.y1ca{bottom:23.952750px;}
.y1a1{bottom:26.820000px;}
.y19f{bottom:27.000000px;}
.y1a4{bottom:27.045000px;}
.y17f{bottom:28.800000px;}
.y1ad{bottom:31.140000px;}
.y1ab{bottom:31.680000px;}
.y17b{bottom:31.710000px;}
.y19c{bottom:31.860000px;}
.y1ae{bottom:32.940000px;}
.y19d{bottom:41.580000px;}
.y1a7{bottom:50.940000px;}
.y1b3{bottom:50.970000px;}
.y3d{bottom:57.600000px;}
.y191{bottom:59.940000px;}
.y18c{bottom:59.970000px;}
.y186{bottom:60.120000px;}
.y23f{bottom:65.149050px;}
.y208{bottom:73.249050px;}
.y3c{bottom:77.796000px;}
.y23e{bottom:78.649050px;}
.y1a6{bottom:79.380000px;}
.y1b2{bottom:79.410000px;}
.y207{bottom:86.749050px;}
.y190{bottom:88.380000px;}
.y23d{bottom:92.149050px;}
.y18b{bottom:97.410000px;}
.y185{bottom:97.605000px;}
.y206{bottom:100.249050px;}
.y23c{bottom:105.649050px;}
.y205{bottom:113.749050px;}
.y1b1{bottom:116.850000px;}
.y23b{bottom:119.149050px;}
.yec{bottom:119.196000px;}
.y179{bottom:124.236000px;}
.ybc{bottom:124.596000px;}
.y108{bottom:125.496000px;}
.yfb{bottom:126.576000px;}
.yd1{bottom:126.936000px;}
.y136{bottom:129.276000px;}
.y5d{bottom:130.176000px;}
.y23a{bottom:132.649050px;}
.y18a{bottom:134.850000px;}
.y169{bottom:135.036000px;}
.y184{bottom:135.045000px;}
.y204{bottom:140.749050px;}
.y3b{bottom:144.396000px;}
.y239{bottom:146.149050px;}
.y70{bottom:149.256000px;}
.y7e{bottom:149.436000px;}
.yde{bottom:153.030000px;}
.y203{bottom:154.249050px;}
.y168{bottom:155.190000px;}
.y238{bottom:159.649050px;}
.y178{bottom:159.870000px;}
.y53{bottom:160.590000px;}
.y19a{bottom:163.110000px;}
.y183{bottom:163.485000px;}
.ya5{bottom:164.370000px;}
.ybb{bottom:165.990000px;}
.y202{bottom:167.749050px;}
.yfa{bottom:167.970000px;}
.yd0{bottom:168.330000px;}
.y135{bottom:169.410000px;}
.y107{bottom:171.930000px;}
.y237{bottom:173.149050px;}
.y167{bottom:175.350000px;}
.y201{bottom:181.249050px;}
.y3a{bottom:185.970000px;}
.y236{bottom:186.649050px;}
.y5c{bottom:187.050000px;}
.y134{bottom:189.570000px;}
.y6f{bottom:190.830000px;}
.ydd{bottom:194.430000px;}
.y200{bottom:194.749050px;}
.y166{bottom:195.330000px;}
.y177{bottom:195.690000px;}
.y235{bottom:200.149050px;}
.y199{bottom:200.550000px;}
.yeb{bottom:201.990000px;}
.y52{bottom:202.170000px;}
.ya4{bottom:205.770000px;}
.yba{bottom:207.390000px;}
.y1ff{bottom:208.249050px;}
.yf9{bottom:209.370000px;}
.y133{bottom:209.730000px;}
.y234{bottom:213.649050px;}
.y165{bottom:215.490000px;}
.y106{bottom:218.010000px;}
.y93{bottom:218.550000px;}
.y1fe{bottom:221.749050px;}
.y233{bottom:227.149050px;}
.ycf{bottom:227.730000px;}
.y132{bottom:229.890000px;}
.y176{bottom:231.330000px;}
.y6e{bottom:232.230000px;}
.y1fd{bottom:235.249050px;}
.y164{bottom:235.650000px;}
.ydc{bottom:235.830000px;}
.y198{bottom:237.990000px;}
.y232{bottom:240.649050px;}
.y39{bottom:242.310000px;}
.y5b{bottom:243.390000px;}
.y5{bottom:248.550000px;}
.y1fc{bottom:248.749050px;}
.y131{bottom:250.050000px;}
.yf8{bottom:250.770000px;}
.y231{bottom:254.149050px;}
.y163{bottom:255.810000px;}
.y51{bottom:258.330000px;}
.y92{bottom:260.130000px;}
.ya3{bottom:261.930000px;}
.y1fb{bottom:262.249050px;}
.yb9{bottom:263.550000px;}
.y105{bottom:264.090000px;}
.y175{bottom:266.970000px;}
.y230{bottom:267.649050px;}
.y130{bottom:270.210000px;}
.y1b5{bottom:271.650000px;}
.y6d{bottom:273.630000px;}
.y197{bottom:275.430000px;}
.y1fa{bottom:275.749050px;}
.y162{bottom:275.970000px;}
.ydb{bottom:277.230000px;}
.y22f{bottom:281.149050px;}
.yce{bottom:284.610000px;}
.yea{bottom:284.790000px;}
.y5a{bottom:284.970000px;}
.y1f9{bottom:289.249050px;}
.y12f{bottom:290.370000px;}
.yf7{bottom:292.170000px;}
.y1b0{bottom:295.605000px;}
.y161{bottom:296.130000px;}
.y38{bottom:298.650000px;}
.y50{bottom:299.910000px;}
.y91{bottom:301.530000px;}
.y174{bottom:302.610000px;}
.ya2{bottom:303.510000px;}
.yb8{bottom:305.130000px;}
.y22e{bottom:308.149050px;}
.y104{bottom:310.170000px;}
.y12e{bottom:310.530000px;}
.y196{bottom:312.870000px;}
.y6c{bottom:315.030000px;}
.y1f8{bottom:316.249050px;}
.y160{bottom:316.290000px;}
.y263{bottom:316.991550px;}
.yda{bottom:318.630000px;}
.y22d{bottom:321.649050px;}
.ycd{bottom:326.190000px;}
.y262{bottom:330.491550px;}
.y12d{bottom:330.735000px;}
.yf6{bottom:333.615000px;}
.y10{bottom:334.110000px;}
.y22c{bottom:335.149050px;}
.y15f{bottom:336.495000px;}
.y173{bottom:338.475000px;}
.y59{bottom:341.175000px;}
.y4f{bottom:341.355000px;}
.y90{bottom:342.975000px;}
.y1f7{bottom:343.249050px;}
.y261{bottom:343.991550px;}
.ya1{bottom:344.955000px;}
.yb7{bottom:346.575000px;}
.y22b{bottom:348.649050px;}
.y195{bottom:350.355000px;}
.y12c{bottom:350.895000px;}
.y37{bottom:355.035000px;}
.y103{bottom:356.295000px;}
.y6b{bottom:356.475000px;}
.y15e{bottom:356.655000px;}
.y1f6{bottom:356.749050px;}
.yd9{bottom:360.075000px;}
.y22a{bottom:362.149050px;}
.yf{bottom:366.510000px;}
.ycc{bottom:367.635000px;}
.y12b{bottom:370.875000px;}
.y260{bottom:370.991550px;}
.y172{bottom:374.115000px;}
.yf5{bottom:375.015000px;}
.y229{bottom:375.649050px;}
.y15d{bottom:376.635000px;}
.y194{bottom:378.975000px;}
.y4e{bottom:382.755000px;}
.y1f5{bottom:383.749050px;}
.y8f{bottom:384.195000px;}
.y25f{bottom:384.491550px;}
.ya0{bottom:386.355000px;}
.y228{bottom:389.149050px;}
.y12a{bottom:391.035000px;}
.y15c{bottom:396.795000px;}
.y1f4{bottom:397.249050px;}
.y6a{bottom:397.695000px;}
.y25e{bottom:397.991550px;}
.ye{bottom:398.955000px;}
.yd8{bottom:401.475000px;}
.y227{bottom:402.649050px;}
.yb6{bottom:402.915000px;}
.y1c5{bottom:403.995000px;}
.y193{bottom:407.415000px;}
.ycb{bottom:409.035000px;}
.y171{bottom:409.755000px;}
.y1f3{bottom:410.749050px;}
.y129{bottom:411.195000px;}
.y25d{bottom:411.491550px;}
.y36{bottom:411.555000px;}
.y102{bottom:412.635000px;}
.y226{bottom:416.149050px;}
.yf4{bottom:416.415000px;}
.y15b{bottom:416.955000px;}
.y58{bottom:424.155000px;}
.y1f2{bottom:424.249050px;}
.y25c{bottom:424.991550px;}
.y225{bottom:429.649050px;}
.yd{bottom:431.355000px;}
.y18f{bottom:432.075000px;}
.y15a{bottom:437.115000px;}
.y25b{bottom:438.491550px;}
.y4d{bottom:438.915000px;}
.y69{bottom:439.095000px;}
.y8e{bottom:440.535000px;}
.y9f{bottom:442.515000px;}
.yd7{bottom:442.695000px;}
.yb5{bottom:444.495000px;}
.y170{bottom:445.575000px;}
.ye9{bottom:450.435000px;}
.y1f1{bottom:451.249050px;}
.y128{bottom:451.515000px;}
.y25a{bottom:451.991550px;}
.y101{bottom:454.215000px;}
.y224{bottom:456.649050px;}
.y159{bottom:457.275000px;}
.yf3{bottom:457.815000px;}
.yc{bottom:463.755000px;}
.y1f0{bottom:464.749050px;}
.yca{bottom:465.195000px;}
.y259{bottom:465.491550px;}
.y57{bottom:465.555000px;}
.y35{bottom:467.895000px;}
.y223{bottom:470.149050px;}
.y127{bottom:471.675000px;}
.y158{bottom:477.435000px;}
.y1ef{bottom:478.249050px;}
.y258{bottom:478.991550px;}
.y4c{bottom:480.495000px;}
.y16f{bottom:481.215000px;}
.y8d{bottom:482.115000px;}
.y222{bottom:483.649050px;}
.y9e{bottom:484.095000px;}
.yb4{bottom:485.895000px;}
.y1c4{bottom:486.975000px;}
.y1ee{bottom:491.749050px;}
.ye8{bottom:491.835000px;}
.y257{bottom:492.491550px;}
.y1af{bottom:493.275000px;}
.yb{bottom:496.155000px;}
.y221{bottom:497.149050px;}
.y157{bottom:497.595000px;}
.yf2{bottom:499.215000px;}
.y1ed{bottom:505.249050px;}
.y256{bottom:505.991550px;}
.yc9{bottom:506.775000px;}
.y100{bottom:510.375000px;}
.y220{bottom:510.649050px;}
.y126{bottom:511.995000px;}
.y16e{bottom:516.855000px;}
.y156{bottom:517.755000px;}
.y1ec{bottom:518.749050px;}
.y56{bottom:521.715000px;}
.y4b{bottom:521.895000px;}
.y8c{bottom:523.515000px;}
.y21f{bottom:524.149050px;}
.y34{bottom:524.235000px;}
.y9d{bottom:525.495000px;}
.yb3{bottom:527.295000px;}
.ya{bottom:528.555000px;}
.y125{bottom:532.155000px;}
.y1eb{bottom:532.249050px;}
.y255{bottom:532.991550px;}
.ye7{bottom:533.235000px;}
.y21e{bottom:537.649050px;}
.y155{bottom:537.915000px;}
.yf1{bottom:540.615000px;}
.y1c3{bottom:543.135000px;}
.y18e{bottom:545.115000px;}
.y1ea{bottom:545.749050px;}
.y254{bottom:546.491550px;}
.yc8{bottom:548.175000px;}
.y1ac{bottom:549.435000px;}
.y21d{bottom:551.149050px;}
.yff{bottom:551.955000px;}
.y124{bottom:552.315000px;}
.y16d{bottom:552.675000px;}
.y154{bottom:558.075000px;}
.y253{bottom:559.991550px;}
.y9{bottom:560.955000px;}
.y4a{bottom:563.295000px;}
.y21c{bottom:564.649050px;}
.y8b{bottom:564.915000px;}
.y9c{bottom:566.895000px;}
.yb2{bottom:568.695000px;}
.y123{bottom:572.295000px;}
.y1e9{bottom:572.749050px;}
.y252{bottom:573.491550px;}
.ye6{bottom:574.635000px;}
.y153{bottom:578.055000px;}
.y21b{bottom:578.149050px;}
.y68{bottom:578.235000px;}
.y33{bottom:580.575000px;}
.yf0{bottom:582.015000px;}
.y1c2{bottom:584.715000px;}
.y1e8{bottom:586.249050px;}
.y251{bottom:586.991550px;}
.y16c{bottom:588.315000px;}
.yc7{bottom:589.575000px;}
.y21a{bottom:591.649050px;}
.y122{bottom:592.455000px;}
.y8{bottom:593.355000px;}
.y152{bottom:598.245000px;}
.y27{bottom:599.325000px;}
.y1e7{bottom:599.749050px;}
.y250{bottom:600.491550px;}
.y49{bottom:604.725000px;}
.y219{bottom:605.149050px;}
.y1aa{bottom:605.625000px;}
.y8a{bottom:606.345000px;}
.yfe{bottom:608.145000px;}
.y9b{bottom:608.325000px;}
.yb1{bottom:610.125000px;}
.y121{bottom:612.645000px;}
.y1e6{bottom:613.249050px;}
.y24f{bottom:613.991550px;}
.ye5{bottom:616.065000px;}
.y151{bottom:618.405000px;}
.y218{bottom:618.649050px;}
.y7d{bottom:619.305000px;}
.y67{bottom:619.845000px;}
.yef{bottom:623.445000px;}
.y16b{bottom:624.165000px;}
.y7{bottom:625.755000px;}
.y1c1{bottom:626.145000px;}
.y1e5{bottom:626.749050px;}
.y24e{bottom:627.491550px;}
.yc6{bottom:631.005000px;}
.y120{bottom:632.805000px;}
.y32{bottom:637.125000px;}
.y150{bottom:638.565000px;}
.y1c9{bottom:639.105000px;}
.y1e4{bottom:640.249050px;}
.y24d{bottom:640.991550px;}
.y217{bottom:645.649050px;}
.y48{bottom:646.125000px;}
.y26{bottom:647.565000px;}
.y89{bottom:647.745000px;}
.y9a{bottom:649.725000px;}
.yb0{bottom:651.525000px;}
.y11f{bottom:652.965000px;}
.y1e3{bottom:653.749050px;}
.y24c{bottom:654.491550px;}
.ye4{bottom:657.465000px;}
.y6{bottom:658.185000px;}
.y16a{bottom:658.545000px;}
.y14f{bottom:658.725000px;}
.y216{bottom:659.149050px;}
.y66{bottom:661.245000px;}
.yee{bottom:664.845000px;}
.y1e2{bottom:667.249050px;}
.y24b{bottom:667.991550px;}
.yc5{bottom:672.405000px;}
.y215{bottom:672.649050px;}
.y11e{bottom:673.125000px;}
.y7c{bottom:676.005000px;}
.y14e{bottom:678.885000px;}
.y1c0{bottom:682.305000px;}
.y1a9{bottom:683.745000px;}
.y24a{bottom:685.744050px;}
.y214{bottom:686.149050px;}
.y47{bottom:687.525000px;}
.y88{bottom:689.145000px;}
.y99{bottom:691.125000px;}
.y11d{bottom:693.285000px;}
.y31{bottom:693.465000px;}
.y1e1{bottom:694.249050px;}
.y4{bottom:695.340000px;}
.y25{bottom:695.805000px;}
.ye3{bottom:698.865000px;}
.y14d{bottom:699.045000px;}
.y249{bottom:699.244050px;}
.y213{bottom:699.649050px;}
.y1c8{bottom:700.125000px;}
.y65{bottom:702.645000px;}
.yd6{bottom:706.065000px;}
.yed{bottom:706.245000px;}
.yaf{bottom:707.685000px;}
.y1e0{bottom:707.749050px;}
.y248{bottom:712.744050px;}
.y212{bottom:713.149050px;}
.y11c{bottom:713.445000px;}
.yc4{bottom:713.805000px;}
.y14c{bottom:719.205000px;}
.y1a8{bottom:721.185000px;}
.y1df{bottom:721.249050px;}
.y1bf{bottom:723.885000px;}
.y247{bottom:726.244050px;}
.y211{bottom:726.649050px;}
.y46{bottom:728.925000px;}
.y87{bottom:730.545000px;}
.y7b{bottom:732.345000px;}
.y98{bottom:732.525000px;}
.y3{bottom:733.140000px;}
.y11b{bottom:733.605000px;}
.y264{bottom:734.385750px;}
.y1de{bottom:734.749050px;}
.y14b{bottom:739.365000px;}
.y210{bottom:740.149050px;}
.ye2{bottom:740.265000px;}
.y246{bottom:743.996550px;}
.y64{bottom:744.045000px;}
.y24{bottom:744.225000px;}
.y1a5{bottom:745.125000px;}
.y1c7{bottom:747.105000px;}
.yd5{bottom:747.645000px;}
.y1dd{bottom:748.249050px;}
.yae{bottom:749.265000px;}
.y30{bottom:749.445000px;}
.y188{bottom:751.965000px;}
.y20f{bottom:753.649050px;}
.y11a{bottom:753.765000px;}
.yc3{bottom:755.205000px;}
.y245{bottom:757.496550px;}
.y14a{bottom:759.525000px;}
.y1dc{bottom:761.749050px;}
.y1be{bottom:765.285000px;}
.y2{bottom:765.720000px;}
.y20e{bottom:767.149050px;}
.y55{bottom:770.325000px;}
.y244{bottom:770.996550px;}
.y86{bottom:771.945000px;}
.y119{bottom:773.745000px;}
.y7a{bottom:773.925000px;}
.y149{bottom:779.505000px;}
.y20d{bottom:780.649050px;}
.y13{bottom:781.770000px;}
.y243{bottom:784.496550px;}
.y45{bottom:785.265000px;}
.y23{bottom:788.505000px;}
.y1db{bottom:788.749050px;}
.yfd{bottom:788.865000px;}
.yd4{bottom:789.045000px;}
.yad{bottom:790.665000px;}
.y118{bottom:793.905000px;}
.y20c{bottom:794.149050px;}
.ye1{bottom:796.425000px;}
.yc2{bottom:796.605000px;}
.y242{bottom:797.996550px;}
.y182{bottom:799.125000px;}
.y148{bottom:799.665000px;}
.y63{bottom:800.205000px;}
.y1da{bottom:802.249050px;}
.y2f{bottom:806.325000px;}
.y1bd{bottom:806.685000px;}
.y20b{bottom:807.649050px;}
.y1c6{bottom:809.205000px;}
.y241{bottom:811.496550px;}
.y117{bottom:814.065000px;}
.y79{bottom:815.325000px;}
.y1d9{bottom:815.749050px;}
.y12{bottom:819.570000px;}
.y147{bottom:819.825000px;}
.y20a{bottom:821.149050px;}
.y240{bottom:824.996550px;}
.y54{bottom:826.665000px;}
.y44{bottom:826.845000px;}
.y1d8{bottom:829.249050px;}
.y22{bottom:829.905000px;}
.yd3{bottom:830.445000px;}
.y85{bottom:831.345000px;}
.yac{bottom:832.065000px;}
.y116{bottom:834.225000px;}
.y209{bottom:834.649050px;}
.yc1{bottom:838.005000px;}
.y146{bottom:839.985000px;}
.y62{bottom:841.785000px;}
.y1d7{bottom:842.749050px;}
.y1a3{bottom:849.165000px;}
.y21{bottom:850.605000px;}
.y11{bottom:852.150000px;}
.y115{bottom:854.385000px;}
.y1d6{bottom:856.249050px;}
.y97{bottom:856.725000px;}
.y145{bottom:860.145000px;}
.y2e{bottom:862.710000px;}
.y1bc{bottom:863.070000px;}
.y43{bottom:868.290000px;}
.y1d5{bottom:869.749050px;}
.y20{bottom:871.350000px;}
.y78{bottom:871.710000px;}
.yd2{bottom:871.890000px;}
.yab{bottom:873.510000px;}
.y114{bottom:874.590000px;}
.y1{bottom:876.600000px;}
.yc0{bottom:879.450000px;}
.y144{bottom:880.350000px;}
.y61{bottom:883.230000px;}
.y1d4{bottom:883.249050px;}
.y84{bottom:888.270000px;}
.y1f{bottom:892.050000px;}
.y113{bottom:894.750000px;}
.y1d3{bottom:896.749050px;}
.y96{bottom:898.170000px;}
.y143{bottom:900.510000px;}
.y1a2{bottom:900.870000px;}
.y1bb{bottom:904.650000px;}
.y1d2{bottom:910.249050px;}
.y1e{bottom:912.750000px;}
.y77{bottom:913.290000px;}
.yaa{bottom:914.910000px;}
.y2d{bottom:918.690000px;}
.y142{bottom:920.670000px;}
.ybf{bottom:920.850000px;}
.y1d1{bottom:923.749050px;}
.y42{bottom:924.450000px;}
.y83{bottom:929.850000px;}
.y1d{bottom:933.450000px;}
.y112{bottom:935.070000px;}
.y1d0{bottom:937.249050px;}
.y60{bottom:939.390000px;}
.y95{bottom:939.570000px;}
.y141{bottom:940.830000px;}
.y1ba{bottom:946.050000px;}
.y1cf{bottom:950.749050px;}
.y1a0{bottom:952.530000px;}
.y1c{bottom:954.150000px;}
.yfc{bottom:954.330000px;}
.y76{bottom:954.690000px;}
.y111{bottom:955.050000px;}
.ya9{bottom:956.310000px;}
.y140{bottom:960.990000px;}
.ybe{bottom:962.250000px;}
.y1ce{bottom:964.249050px;}
.y41{bottom:966.030000px;}
.y82{bottom:971.250000px;}
.y1b{bottom:974.850000px;}
.y110{bottom:975.210000px;}
.y1cd{bottom:977.749050px;}
.y2c{bottom:979.350000px;}
.y5f{bottom:980.970000px;}
.y180{bottom:987.270000px;}
.y1b9{bottom:987.450000px;}
.y10f{bottom:995.370000px;}
.y1a{bottom:995.550000px;}
.y75{bottom:996.090000px;}
.ya8{bottom:997.710000px;}
.y13f{bottom:1001.130000px;}
.ye0{bottom:1003.650000px;}
.y19e{bottom:1004.010000px;}
.y81{bottom:1012.650000px;}
.y10e{bottom:1015.530000px;}
.y19{bottom:1016.250000px;}
.y13e{bottom:1021.290000px;}
.ybd{bottom:1021.650000px;}
.y2b{bottom:1022.190000px;}
.y5e{bottom:1022.370000px;}
.y1b8{bottom:1028.850000px;}
.y17e{bottom:1030.650000px;}
.y10d{bottom:1035.690000px;}
.y18{bottom:1036.950000px;}
.y74{bottom:1037.490000px;}
.y13d{bottom:1041.450000px;}
.y80{bottom:1054.050000px;}
.y19b{bottom:1055.670000px;}
.y10c{bottom:1055.850000px;}
.y17{bottom:1057.650000px;}
.y13c{bottom:1061.610000px;}
.ydf{bottom:1063.050000px;}
.ya7{bottom:1063.230000px;}
.y40{bottom:1063.770000px;}
.y1cc{bottom:1064.002050px;}
.y2a{bottom:1065.930000px;}
.y1b7{bottom:1070.250000px;}
.y10b{bottom:1076.010000px;}
.y16{bottom:1078.350000px;}
.y94{bottom:1078.710000px;}
.y73{bottom:1078.890000px;}
.y13b{bottom:1081.770000px;}
.y17c{bottom:1084.110000px;}
.y7f{bottom:1095.450000px;}
.y10a{bottom:1096.170000px;}
.y15{bottom:1099.050000px;}
.y13a{bottom:1101.930000px;}
.y3f{bottom:1105.170000px;}
.y29{bottom:1112.730000px;}
.y109{bottom:1116.330000px;}
.ya6{bottom:1120.110000px;}
.y72{bottom:1120.290000px;}
.y139{bottom:1122.090000px;}
.y17a{bottom:1122.270000px;}
.y1b6{bottom:1134.360000px;}
.y14{bottom:1140.480000px;}
.y138{bottom:1142.280000px;}
.y28{bottom:1158.480000px;}
.y3e{bottom:1161.180000px;}
.y71{bottom:1161.720000px;}
.y137{bottom:1162.440000px;}
.h18{height:37.425000px;}
.h33{height:38.759766px;}
.h30{height:39.585938px;}
.h1a{height:42.645000px;}
.h31{height:44.534180px;}
.h1e{height:46.425000px;}
.h1c{height:46.440000px;}
.h24{height:50.745000px;}
.h23{height:50.925000px;}
.h25{height:50.962500px;}
.h19{height:52.725000px;}
.h11{height:53.302500px;}
.h2a{height:55.425000px;}
.h28{height:55.470000px;}
.h27{height:55.620000px;}
.h16{height:55.650000px;}
.h2{height:56.320312px;}
.h29{height:58.651172px;}
.h20{height:64.978594px;}
.h15{height:65.010937px;}
.h22{height:65.865000px;}
.h17{height:66.757500px;}
.hf{height:70.664062px;}
.h21{height:71.225156px;}
.he{height:72.562500px;}
.h9{height:74.004654px;}
.h3{height:75.093750px;}
.h5{height:75.243937px;}
.h13{height:80.440922px;}
.h12{height:80.464922px;}
.h14{height:80.644922px;}
.h10{height:81.736875px;}
.ha{height:82.635820px;}
.hd{height:84.898125px;}
.hb{height:87.695156px;}
.h4{height:87.859687px;}
.h32{height:89.068359px;}
.hc{height:96.508125px;}
.h2c{height:98.426190px;}
.h26{height:103.320000px;}
.h1f{height:112.305000px;}
.h2d{height:117.950273px;}
.h2b{height:140.781000px;}
.h1d{height:158.790000px;}
.h1b{height:187.410000px;}
.h2f{height:1190.250000px;}
.h2e{height:1190.551500px;}
.h7{height:1262.250000px;}
.h6{height:1262.520000px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w7{width:127.609500px;}
.w5{width:276.499500px;}
.w6{width:363.315000px;}
.w8{width:512.190000px;}
.w4{width:639.810000px;}
.w9{width:850.393500px;}
.wa{width:850.500000px;}
.w3{width:892.500000px;}
.w2{width:892.620000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:8.089500px;}
.x29{left:33.625950px;}
.x22{left:35.280300px;}
.x21{left:63.425250px;}
.x11{left:127.656000px;}
.x1b{left:154.650000px;}
.x1c{left:181.650000px;}
.x18{left:221.070000px;}
.x17{left:224.850000px;}
.x1f{left:255.285000px;}
.x23{left:314.650050px;}
.xd{left:319.245000px;}
.x24{left:323.155050px;}
.xc{left:329.325000px;}
.x25{left:333.064050px;}
.x1e{left:404.175000px;}
.x16{left:446.475000px;}
.xa{left:490.470000px;}
.xb{left:505.410000px;}
.x2{left:509.070000px;}
.x6{left:548.790000px;}
.x14{left:551.265000px;}
.x15{left:555.585000px;}
.x26{left:565.520550px;}
.x27{left:574.025550px;}
.x28{left:587.525550px;}
.x8{left:604.050000px;}
.xf{left:610.455000px;}
.x3{left:614.775000px;}
.xe{left:636.990000px;}
.x9{left:640.770000px;}
.x13{left:643.425000px;}
.x10{left:646.275000px;}
.x4{left:650.595000px;}
.x20{left:653.865000px;}
.x1a{left:748.770000px;}
.x5{left:750.990000px;}
.x19{left:757.230000px;}
.x1{left:763.560000px;}
.x12{left:765.510000px;}
.x7{left:829.080000px;}
@media print{
.v1{vertical-align:-73.706667pt;}
.v3{vertical-align:-29.440000pt;}
.v5{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:26.880000pt;}
.v2{vertical-align:29.440000pt;}
.ls2f{letter-spacing:-2.400000pt;}
.ls2e{letter-spacing:-1.920000pt;}
.ls2c{letter-spacing:-1.200000pt;}
.ls17{letter-spacing:-0.576000pt;}
.ls2d{letter-spacing:-0.480000pt;}
.ls1f{letter-spacing:-0.412267pt;}
.ls12{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls27{letter-spacing:-0.135467pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls1a{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:-0.033280pt;}
.ls2{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.003840pt;}
.ls16{letter-spacing:0.064000pt;}
.ls20{letter-spacing:0.066667pt;}
.ls4{letter-spacing:0.096000pt;}
.ls21{letter-spacing:0.097067pt;}
.ls23{letter-spacing:0.120320pt;}
.ls6{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.144000pt;}
.ls11{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.192000pt;}
.ls18{letter-spacing:0.227733pt;}
.ls1e{letter-spacing:0.227840pt;}
.ls22{letter-spacing:0.233067pt;}
.ls2a{letter-spacing:0.240000pt;}
.ls24{letter-spacing:0.265600pt;}
.ls28{letter-spacing:0.271467pt;}
.ls26{letter-spacing:0.314667pt;}
.lsa{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.384000pt;}
.ls1b{letter-spacing:0.448000pt;}
.ls1c{letter-spacing:0.512000pt;}
.lsf{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.704000pt;}
.ls29{letter-spacing:0.720000pt;}
.ls2b{letter-spacing:2.112000pt;}
.ls30{letter-spacing:2.256000pt;}
.ls10{letter-spacing:5.760000pt;}
.ls8{letter-spacing:5.999787pt;}
.lse{letter-spacing:7.040000pt;}
.lsb{letter-spacing:11.520000pt;}
.ls14{letter-spacing:14.720000pt;}
.ls19{letter-spacing:30.208000pt;}
.ls1d{letter-spacing:101.231787pt;}
.ls9{letter-spacing:172.778667pt;}
.ls5{letter-spacing:2251.925333pt;}
.ws6{word-spacing:-64.000000pt;}
.wsc{word-spacing:-16.704000pt;}
.wsb{word-spacing:-16.640000pt;}
.ws11{word-spacing:-16.512000pt;}
.ws10{word-spacing:-16.448000pt;}
.ws4{word-spacing:-16.128000pt;}
.wse{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.wsf{word-spacing:-15.936000pt;}
.ws3{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws17{word-spacing:-15.360000pt;}
.ws18{word-spacing:-14.953067pt;}
.ws16{word-spacing:-14.817067pt;}
.ws15{word-spacing:-14.720000pt;}
.ws1c{word-spacing:-14.584533pt;}
.wsd{word-spacing:-13.534613pt;}
.ws13{word-spacing:-13.373547pt;}
.ws0{word-spacing:-13.344000pt;}
.ws12{word-spacing:-13.306880pt;}
.ws1f{word-spacing:-13.104000pt;}
.ws14{word-spacing:-12.894613pt;}
.ws1d{word-spacing:-11.568000pt;}
.ws1e{word-spacing:-11.088000pt;}
.ws5{word-spacing:-11.040000pt;}
.ws9{word-spacing:-10.720000pt;}
.wsa{word-spacing:-10.400000pt;}
.ws19{word-spacing:-9.280000pt;}
.ws1b{word-spacing:-8.643840pt;}
.ws1a{word-spacing:-8.640000pt;}
.ws2d{word-spacing:-2.016000pt;}
.ws21{word-spacing:-1.344000pt;}
.ws50{word-spacing:-1.152000pt;}
.ws5a{word-spacing:-0.912000pt;}
.ws22{word-spacing:-0.720000pt;}
.ws2a{word-spacing:-0.240000pt;}
.ws1{word-spacing:0.000000pt;}
.ws65{word-spacing:0.240000pt;}
.ws23{word-spacing:0.480000pt;}
.ws45{word-spacing:1.008000pt;}
.ws25{word-spacing:1.200000pt;}
.ws36{word-spacing:1.632000pt;}
.ws44{word-spacing:1.968000pt;}
.ws47{word-spacing:2.544000pt;}
.ws3a{word-spacing:2.592000pt;}
.ws2b{word-spacing:2.880000pt;}
.ws62{word-spacing:3.264000pt;}
.ws5b{word-spacing:4.320000pt;}
.ws20{word-spacing:4.560000pt;}
.ws32{word-spacing:5.904000pt;}
.ws3c{word-spacing:6.048000pt;}
.ws59{word-spacing:6.096000pt;}
.ws66{word-spacing:6.624000pt;}
.ws24{word-spacing:6.912000pt;}
.ws40{word-spacing:7.824000pt;}
.ws37{word-spacing:10.272000pt;}
.ws49{word-spacing:10.464000pt;}
.ws34{word-spacing:11.040000pt;}
.ws67{word-spacing:11.328000pt;}
.ws26{word-spacing:11.424000pt;}
.ws53{word-spacing:12.432000pt;}
.ws3d{word-spacing:12.864000pt;}
.ws35{word-spacing:13.776000pt;}
.ws3f{word-spacing:14.352000pt;}
.ws52{word-spacing:14.496000pt;}
.ws5d{word-spacing:14.880000pt;}
.ws61{word-spacing:15.168000pt;}
.ws2f{word-spacing:15.456000pt;}
.ws46{word-spacing:16.464000pt;}
.ws54{word-spacing:16.800000pt;}
.ws5c{word-spacing:17.376000pt;}
.ws3b{word-spacing:17.520000pt;}
.ws38{word-spacing:17.904000pt;}
.ws28{word-spacing:18.816000pt;}
.ws58{word-spacing:19.200000pt;}
.ws3e{word-spacing:19.488000pt;}
.ws64{word-spacing:19.680000pt;}
.ws2c{word-spacing:19.776000pt;}
.ws29{word-spacing:19.968000pt;}
.ws51{word-spacing:20.112000pt;}
.ws4c{word-spacing:20.496000pt;}
.ws30{word-spacing:21.264000pt;}
.ws57{word-spacing:21.312000pt;}
.ws42{word-spacing:21.360000pt;}
.ws5f{word-spacing:22.176000pt;}
.ws39{word-spacing:23.808000pt;}
.ws56{word-spacing:25.728000pt;}
.ws60{word-spacing:25.920000pt;}
.ws43{word-spacing:26.496000pt;}
.ws2e{word-spacing:27.264000pt;}
.ws4b{word-spacing:28.752000pt;}
.ws48{word-spacing:28.848000pt;}
.ws4a{word-spacing:29.184000pt;}
.ws5e{word-spacing:30.288000pt;}
.ws68{word-spacing:31.680000pt;}
.ws4f{word-spacing:31.920000pt;}
.ws55{word-spacing:31.968000pt;}
.ws33{word-spacing:32.160000pt;}
.ws31{word-spacing:32.256000pt;}
.ws4e{word-spacing:34.608000pt;}
.ws4d{word-spacing:35.568000pt;}
.ws27{word-spacing:36.480000pt;}
.ws41{word-spacing:36.768000pt;}
.ws63{word-spacing:43.440000pt;}
._36{margin-left:-41.376000pt;}
._35{margin-left:-30.288000pt;}
._33{margin-left:-25.955627pt;}
._31{margin-left:-14.892373pt;}
._2e{margin-left:-13.524480pt;}
._2f{margin-left:-10.608000pt;}
._30{margin-left:-5.760640pt;}
._2d{margin-left:-4.835627pt;}
._4{margin-left:-3.264000pt;}
._2{margin-left:-2.171520pt;}
._0{margin-left:-1.280000pt;}
._3{width:0.955520pt;}
._1{width:1.994667pt;}
._5{width:3.754667pt;}
._16{width:4.708480pt;}
._c{width:6.378667pt;}
._8{width:7.722667pt;}
._9{width:8.810667pt;}
._1f{width:10.429227pt;}
._17{width:11.567147pt;}
._19{width:13.286187pt;}
._15{width:14.186667pt;}
._1b{width:15.080960pt;}
._2a{width:16.066560pt;}
._1e{width:17.024000pt;}
._20{width:18.031147pt;}
._b{width:18.944000pt;}
._a{width:19.840000pt;}
._14{width:20.781440pt;}
._13{width:21.674667pt;}
._6{width:22.698667pt;}
._7{width:24.053333pt;}
._18{width:25.386667pt;}
._d{width:26.304000pt;}
._e{width:27.411627pt;}
._f{width:29.248000pt;}
._10{width:30.794667pt;}
._1a{width:31.914667pt;}
._25{width:33.054293pt;}
._11{width:34.432000pt;}
._12{width:35.652480pt;}
._1d{width:36.605227pt;}
._2b{width:37.522987pt;}
._22{width:39.413333pt;}
._21{width:40.362667pt;}
._26{width:41.642667pt;}
._27{width:42.560000pt;}
._28{width:43.624960pt;}
._32{width:44.599040pt;}
._23{width:58.500480pt;}
._24{width:59.398187pt;}
._34{width:100.560000pt;}
._2c{width:101.526507pt;}
._29{width:130.326400pt;}
._1c{width:172.778667pt;}
.fs9{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fsb{font-size:42.666667pt;}
.fs5{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:64.128000pt;}
.fs2{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fsc{font-size:96.000000pt;}
.fsa{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y17d{bottom:11.680000pt;}
.y181{bottom:16.320000pt;}
.y189{bottom:19.680000pt;}
.y1b4{bottom:19.986667pt;}
.y192{bottom:20.000000pt;}
.y18d{bottom:20.026667pt;}
.y187{bottom:20.160000pt;}
.y1cb{bottom:21.236267pt;}
.y1ca{bottom:21.291333pt;}
.y1a1{bottom:23.840000pt;}
.y19f{bottom:24.000000pt;}
.y1a4{bottom:24.040000pt;}
.y17f{bottom:25.600000pt;}
.y1ad{bottom:27.680000pt;}
.y1ab{bottom:28.160000pt;}
.y17b{bottom:28.186667pt;}
.y19c{bottom:28.320000pt;}
.y1ae{bottom:29.280000pt;}
.y19d{bottom:36.960000pt;}
.y1a7{bottom:45.280000pt;}
.y1b3{bottom:45.306667pt;}
.y3d{bottom:51.200000pt;}
.y191{bottom:53.280000pt;}
.y18c{bottom:53.306667pt;}
.y186{bottom:53.440000pt;}
.y23f{bottom:57.910267pt;}
.y208{bottom:65.110267pt;}
.y3c{bottom:69.152000pt;}
.y23e{bottom:69.910267pt;}
.y1a6{bottom:70.560000pt;}
.y1b2{bottom:70.586667pt;}
.y207{bottom:77.110267pt;}
.y190{bottom:78.560000pt;}
.y23d{bottom:81.910267pt;}
.y18b{bottom:86.586667pt;}
.y185{bottom:86.760000pt;}
.y206{bottom:89.110267pt;}
.y23c{bottom:93.910267pt;}
.y205{bottom:101.110267pt;}
.y1b1{bottom:103.866667pt;}
.y23b{bottom:105.910267pt;}
.yec{bottom:105.952000pt;}
.y179{bottom:110.432000pt;}
.ybc{bottom:110.752000pt;}
.y108{bottom:111.552000pt;}
.yfb{bottom:112.512000pt;}
.yd1{bottom:112.832000pt;}
.y136{bottom:114.912000pt;}
.y5d{bottom:115.712000pt;}
.y23a{bottom:117.910267pt;}
.y18a{bottom:119.866667pt;}
.y169{bottom:120.032000pt;}
.y184{bottom:120.040000pt;}
.y204{bottom:125.110267pt;}
.y3b{bottom:128.352000pt;}
.y239{bottom:129.910267pt;}
.y70{bottom:132.672000pt;}
.y7e{bottom:132.832000pt;}
.yde{bottom:136.026667pt;}
.y203{bottom:137.110267pt;}
.y168{bottom:137.946667pt;}
.y238{bottom:141.910267pt;}
.y178{bottom:142.106667pt;}
.y53{bottom:142.746667pt;}
.y19a{bottom:144.986667pt;}
.y183{bottom:145.320000pt;}
.ya5{bottom:146.106667pt;}
.ybb{bottom:147.546667pt;}
.y202{bottom:149.110267pt;}
.yfa{bottom:149.306667pt;}
.yd0{bottom:149.626667pt;}
.y135{bottom:150.586667pt;}
.y107{bottom:152.826667pt;}
.y237{bottom:153.910267pt;}
.y167{bottom:155.866667pt;}
.y201{bottom:161.110267pt;}
.y3a{bottom:165.306667pt;}
.y236{bottom:165.910267pt;}
.y5c{bottom:166.266667pt;}
.y134{bottom:168.506667pt;}
.y6f{bottom:169.626667pt;}
.ydd{bottom:172.826667pt;}
.y200{bottom:173.110267pt;}
.y166{bottom:173.626667pt;}
.y177{bottom:173.946667pt;}
.y235{bottom:177.910267pt;}
.y199{bottom:178.266667pt;}
.yeb{bottom:179.546667pt;}
.y52{bottom:179.706667pt;}
.ya4{bottom:182.906667pt;}
.yba{bottom:184.346667pt;}
.y1ff{bottom:185.110267pt;}
.yf9{bottom:186.106667pt;}
.y133{bottom:186.426667pt;}
.y234{bottom:189.910267pt;}
.y165{bottom:191.546667pt;}
.y106{bottom:193.786667pt;}
.y93{bottom:194.266667pt;}
.y1fe{bottom:197.110267pt;}
.y233{bottom:201.910267pt;}
.ycf{bottom:202.426667pt;}
.y132{bottom:204.346667pt;}
.y176{bottom:205.626667pt;}
.y6e{bottom:206.426667pt;}
.y1fd{bottom:209.110267pt;}
.y164{bottom:209.466667pt;}
.ydc{bottom:209.626667pt;}
.y198{bottom:211.546667pt;}
.y232{bottom:213.910267pt;}
.y39{bottom:215.386667pt;}
.y5b{bottom:216.346667pt;}
.y5{bottom:220.933333pt;}
.y1fc{bottom:221.110267pt;}
.y131{bottom:222.266667pt;}
.yf8{bottom:222.906667pt;}
.y231{bottom:225.910267pt;}
.y163{bottom:227.386667pt;}
.y51{bottom:229.626667pt;}
.y92{bottom:231.226667pt;}
.ya3{bottom:232.826667pt;}
.y1fb{bottom:233.110267pt;}
.yb9{bottom:234.266667pt;}
.y105{bottom:234.746667pt;}
.y175{bottom:237.306667pt;}
.y230{bottom:237.910267pt;}
.y130{bottom:240.186667pt;}
.y1b5{bottom:241.466667pt;}
.y6d{bottom:243.226667pt;}
.y197{bottom:244.826667pt;}
.y1fa{bottom:245.110267pt;}
.y162{bottom:245.306667pt;}
.ydb{bottom:246.426667pt;}
.y22f{bottom:249.910267pt;}
.yce{bottom:252.986667pt;}
.yea{bottom:253.146667pt;}
.y5a{bottom:253.306667pt;}
.y1f9{bottom:257.110267pt;}
.y12f{bottom:258.106667pt;}
.yf7{bottom:259.706667pt;}
.y1b0{bottom:262.760000pt;}
.y161{bottom:263.226667pt;}
.y38{bottom:265.466667pt;}
.y50{bottom:266.586667pt;}
.y91{bottom:268.026667pt;}
.y174{bottom:268.986667pt;}
.ya2{bottom:269.786667pt;}
.yb8{bottom:271.226667pt;}
.y22e{bottom:273.910267pt;}
.y104{bottom:275.706667pt;}
.y12e{bottom:276.026667pt;}
.y196{bottom:278.106667pt;}
.y6c{bottom:280.026667pt;}
.y1f8{bottom:281.110267pt;}
.y160{bottom:281.146667pt;}
.y263{bottom:281.770267pt;}
.yda{bottom:283.226667pt;}
.y22d{bottom:285.910267pt;}
.ycd{bottom:289.946667pt;}
.y262{bottom:293.770267pt;}
.y12d{bottom:293.986667pt;}
.yf6{bottom:296.546667pt;}
.y10{bottom:296.986667pt;}
.y22c{bottom:297.910267pt;}
.y15f{bottom:299.106667pt;}
.y173{bottom:300.866667pt;}
.y59{bottom:303.266667pt;}
.y4f{bottom:303.426667pt;}
.y90{bottom:304.866667pt;}
.y1f7{bottom:305.110267pt;}
.y261{bottom:305.770267pt;}
.ya1{bottom:306.626667pt;}
.yb7{bottom:308.066667pt;}
.y22b{bottom:309.910267pt;}
.y195{bottom:311.426667pt;}
.y12c{bottom:311.906667pt;}
.y37{bottom:315.586667pt;}
.y103{bottom:316.706667pt;}
.y6b{bottom:316.866667pt;}
.y15e{bottom:317.026667pt;}
.y1f6{bottom:317.110267pt;}
.yd9{bottom:320.066667pt;}
.y22a{bottom:321.910267pt;}
.yf{bottom:325.786667pt;}
.ycc{bottom:326.786667pt;}
.y12b{bottom:329.666667pt;}
.y260{bottom:329.770267pt;}
.y172{bottom:332.546667pt;}
.yf5{bottom:333.346667pt;}
.y229{bottom:333.910267pt;}
.y15d{bottom:334.786667pt;}
.y194{bottom:336.866667pt;}
.y4e{bottom:340.226667pt;}
.y1f5{bottom:341.110267pt;}
.y8f{bottom:341.506667pt;}
.y25f{bottom:341.770267pt;}
.ya0{bottom:343.426667pt;}
.y228{bottom:345.910267pt;}
.y12a{bottom:347.586667pt;}
.y15c{bottom:352.706667pt;}
.y1f4{bottom:353.110267pt;}
.y6a{bottom:353.506667pt;}
.y25e{bottom:353.770267pt;}
.ye{bottom:354.626667pt;}
.yd8{bottom:356.866667pt;}
.y227{bottom:357.910267pt;}
.yb6{bottom:358.146667pt;}
.y1c5{bottom:359.106667pt;}
.y193{bottom:362.146667pt;}
.ycb{bottom:363.586667pt;}
.y171{bottom:364.226667pt;}
.y1f3{bottom:365.110267pt;}
.y129{bottom:365.506667pt;}
.y25d{bottom:365.770267pt;}
.y36{bottom:365.826667pt;}
.y102{bottom:366.786667pt;}
.y226{bottom:369.910267pt;}
.yf4{bottom:370.146667pt;}
.y15b{bottom:370.626667pt;}
.y58{bottom:377.026667pt;}
.y1f2{bottom:377.110267pt;}
.y25c{bottom:377.770267pt;}
.y225{bottom:381.910267pt;}
.yd{bottom:383.426667pt;}
.y18f{bottom:384.066667pt;}
.y15a{bottom:388.546667pt;}
.y25b{bottom:389.770267pt;}
.y4d{bottom:390.146667pt;}
.y69{bottom:390.306667pt;}
.y8e{bottom:391.586667pt;}
.y9f{bottom:393.346667pt;}
.yd7{bottom:393.506667pt;}
.yb5{bottom:395.106667pt;}
.y170{bottom:396.066667pt;}
.ye9{bottom:400.386667pt;}
.y1f1{bottom:401.110267pt;}
.y128{bottom:401.346667pt;}
.y25a{bottom:401.770267pt;}
.y101{bottom:403.746667pt;}
.y224{bottom:405.910267pt;}
.y159{bottom:406.466667pt;}
.yf3{bottom:406.946667pt;}
.yc{bottom:412.226667pt;}
.y1f0{bottom:413.110267pt;}
.yca{bottom:413.506667pt;}
.y259{bottom:413.770267pt;}
.y57{bottom:413.826667pt;}
.y35{bottom:415.906667pt;}
.y223{bottom:417.910267pt;}
.y127{bottom:419.266667pt;}
.y158{bottom:424.386667pt;}
.y1ef{bottom:425.110267pt;}
.y258{bottom:425.770267pt;}
.y4c{bottom:427.106667pt;}
.y16f{bottom:427.746667pt;}
.y8d{bottom:428.546667pt;}
.y222{bottom:429.910267pt;}
.y9e{bottom:430.306667pt;}
.yb4{bottom:431.906667pt;}
.y1c4{bottom:432.866667pt;}
.y1ee{bottom:437.110267pt;}
.ye8{bottom:437.186667pt;}
.y257{bottom:437.770267pt;}
.y1af{bottom:438.466667pt;}
.yb{bottom:441.026667pt;}
.y221{bottom:441.910267pt;}
.y157{bottom:442.306667pt;}
.yf2{bottom:443.746667pt;}
.y1ed{bottom:449.110267pt;}
.y256{bottom:449.770267pt;}
.yc9{bottom:450.466667pt;}
.y100{bottom:453.666667pt;}
.y220{bottom:453.910267pt;}
.y126{bottom:455.106667pt;}
.y16e{bottom:459.426667pt;}
.y156{bottom:460.226667pt;}
.y1ec{bottom:461.110267pt;}
.y56{bottom:463.746667pt;}
.y4b{bottom:463.906667pt;}
.y8c{bottom:465.346667pt;}
.y21f{bottom:465.910267pt;}
.y34{bottom:465.986667pt;}
.y9d{bottom:467.106667pt;}
.yb3{bottom:468.706667pt;}
.ya{bottom:469.826667pt;}
.y125{bottom:473.026667pt;}
.y1eb{bottom:473.110267pt;}
.y255{bottom:473.770267pt;}
.ye7{bottom:473.986667pt;}
.y21e{bottom:477.910267pt;}
.y155{bottom:478.146667pt;}
.yf1{bottom:480.546667pt;}
.y1c3{bottom:482.786667pt;}
.y18e{bottom:484.546667pt;}
.y1ea{bottom:485.110267pt;}
.y254{bottom:485.770267pt;}
.yc8{bottom:487.266667pt;}
.y1ac{bottom:488.386667pt;}
.y21d{bottom:489.910267pt;}
.yff{bottom:490.626667pt;}
.y124{bottom:490.946667pt;}
.y16d{bottom:491.266667pt;}
.y154{bottom:496.066667pt;}
.y253{bottom:497.770267pt;}
.y9{bottom:498.626667pt;}
.y4a{bottom:500.706667pt;}
.y21c{bottom:501.910267pt;}
.y8b{bottom:502.146667pt;}
.y9c{bottom:503.906667pt;}
.yb2{bottom:505.506667pt;}
.y123{bottom:508.706667pt;}
.y1e9{bottom:509.110267pt;}
.y252{bottom:509.770267pt;}
.ye6{bottom:510.786667pt;}
.y153{bottom:513.826667pt;}
.y21b{bottom:513.910267pt;}
.y68{bottom:513.986667pt;}
.y33{bottom:516.066667pt;}
.yf0{bottom:517.346667pt;}
.y1c2{bottom:519.746667pt;}
.y1e8{bottom:521.110267pt;}
.y251{bottom:521.770267pt;}
.y16c{bottom:522.946667pt;}
.yc7{bottom:524.066667pt;}
.y21a{bottom:525.910267pt;}
.y122{bottom:526.626667pt;}
.y8{bottom:527.426667pt;}
.y152{bottom:531.773333pt;}
.y27{bottom:532.733333pt;}
.y1e7{bottom:533.110267pt;}
.y250{bottom:533.770267pt;}
.y49{bottom:537.533333pt;}
.y219{bottom:537.910267pt;}
.y1aa{bottom:538.333333pt;}
.y8a{bottom:538.973333pt;}
.yfe{bottom:540.573333pt;}
.y9b{bottom:540.733333pt;}
.yb1{bottom:542.333333pt;}
.y121{bottom:544.573333pt;}
.y1e6{bottom:545.110267pt;}
.y24f{bottom:545.770267pt;}
.ye5{bottom:547.613333pt;}
.y151{bottom:549.693333pt;}
.y218{bottom:549.910267pt;}
.y7d{bottom:550.493333pt;}
.y67{bottom:550.973333pt;}
.yef{bottom:554.173333pt;}
.y16b{bottom:554.813333pt;}
.y7{bottom:556.226667pt;}
.y1c1{bottom:556.573333pt;}
.y1e5{bottom:557.110267pt;}
.y24e{bottom:557.770267pt;}
.yc6{bottom:560.893333pt;}
.y120{bottom:562.493333pt;}
.y32{bottom:566.333333pt;}
.y150{bottom:567.613333pt;}
.y1c9{bottom:568.093333pt;}
.y1e4{bottom:569.110267pt;}
.y24d{bottom:569.770267pt;}
.y217{bottom:573.910267pt;}
.y48{bottom:574.333333pt;}
.y26{bottom:575.613333pt;}
.y89{bottom:575.773333pt;}
.y9a{bottom:577.533333pt;}
.yb0{bottom:579.133333pt;}
.y11f{bottom:580.413333pt;}
.y1e3{bottom:581.110267pt;}
.y24c{bottom:581.770267pt;}
.ye4{bottom:584.413333pt;}
.y6{bottom:585.053333pt;}
.y16a{bottom:585.373333pt;}
.y14f{bottom:585.533333pt;}
.y216{bottom:585.910267pt;}
.y66{bottom:587.773333pt;}
.yee{bottom:590.973333pt;}
.y1e2{bottom:593.110267pt;}
.y24b{bottom:593.770267pt;}
.yc5{bottom:597.693333pt;}
.y215{bottom:597.910267pt;}
.y11e{bottom:598.333333pt;}
.y7c{bottom:600.893333pt;}
.y14e{bottom:603.453333pt;}
.y1c0{bottom:606.493333pt;}
.y1a9{bottom:607.773333pt;}
.y24a{bottom:609.550267pt;}
.y214{bottom:609.910267pt;}
.y47{bottom:611.133333pt;}
.y88{bottom:612.573333pt;}
.y99{bottom:614.333333pt;}
.y11d{bottom:616.253333pt;}
.y31{bottom:616.413333pt;}
.y1e1{bottom:617.110267pt;}
.y4{bottom:618.080000pt;}
.y25{bottom:618.493333pt;}
.ye3{bottom:621.213333pt;}
.y14d{bottom:621.373333pt;}
.y249{bottom:621.550267pt;}
.y213{bottom:621.910267pt;}
.y1c8{bottom:622.333333pt;}
.y65{bottom:624.573333pt;}
.yd6{bottom:627.613333pt;}
.yed{bottom:627.773333pt;}
.yaf{bottom:629.053333pt;}
.y1e0{bottom:629.110267pt;}
.y248{bottom:633.550267pt;}
.y212{bottom:633.910267pt;}
.y11c{bottom:634.173333pt;}
.yc4{bottom:634.493333pt;}
.y14c{bottom:639.293333pt;}
.y1a8{bottom:641.053333pt;}
.y1df{bottom:641.110267pt;}
.y1bf{bottom:643.453333pt;}
.y247{bottom:645.550267pt;}
.y211{bottom:645.910267pt;}
.y46{bottom:647.933333pt;}
.y87{bottom:649.373333pt;}
.y7b{bottom:650.973333pt;}
.y98{bottom:651.133333pt;}
.y3{bottom:651.680000pt;}
.y11b{bottom:652.093333pt;}
.y264{bottom:652.787333pt;}
.y1de{bottom:653.110267pt;}
.y14b{bottom:657.213333pt;}
.y210{bottom:657.910267pt;}
.ye2{bottom:658.013333pt;}
.y246{bottom:661.330267pt;}
.y64{bottom:661.373333pt;}
.y24{bottom:661.533333pt;}
.y1a5{bottom:662.333333pt;}
.y1c7{bottom:664.093333pt;}
.yd5{bottom:664.573333pt;}
.y1dd{bottom:665.110267pt;}
.yae{bottom:666.013333pt;}
.y30{bottom:666.173333pt;}
.y188{bottom:668.413333pt;}
.y20f{bottom:669.910267pt;}
.y11a{bottom:670.013333pt;}
.yc3{bottom:671.293333pt;}
.y245{bottom:673.330267pt;}
.y14a{bottom:675.133333pt;}
.y1dc{bottom:677.110267pt;}
.y1be{bottom:680.253333pt;}
.y2{bottom:680.640000pt;}
.y20e{bottom:681.910267pt;}
.y55{bottom:684.733333pt;}
.y244{bottom:685.330267pt;}
.y86{bottom:686.173333pt;}
.y119{bottom:687.773333pt;}
.y7a{bottom:687.933333pt;}
.y149{bottom:692.893333pt;}
.y20d{bottom:693.910267pt;}
.y13{bottom:694.906667pt;}
.y243{bottom:697.330267pt;}
.y45{bottom:698.013333pt;}
.y23{bottom:700.893333pt;}
.y1db{bottom:701.110267pt;}
.yfd{bottom:701.213333pt;}
.yd4{bottom:701.373333pt;}
.yad{bottom:702.813333pt;}
.y118{bottom:705.693333pt;}
.y20c{bottom:705.910267pt;}
.ye1{bottom:707.933333pt;}
.yc2{bottom:708.093333pt;}
.y242{bottom:709.330267pt;}
.y182{bottom:710.333333pt;}
.y148{bottom:710.813333pt;}
.y63{bottom:711.293333pt;}
.y1da{bottom:713.110267pt;}
.y2f{bottom:716.733333pt;}
.y1bd{bottom:717.053333pt;}
.y20b{bottom:717.910267pt;}
.y1c6{bottom:719.293333pt;}
.y241{bottom:721.330267pt;}
.y117{bottom:723.613333pt;}
.y79{bottom:724.733333pt;}
.y1d9{bottom:725.110267pt;}
.y12{bottom:728.506667pt;}
.y147{bottom:728.733333pt;}
.y20a{bottom:729.910267pt;}
.y240{bottom:733.330267pt;}
.y54{bottom:734.813333pt;}
.y44{bottom:734.973333pt;}
.y1d8{bottom:737.110267pt;}
.y22{bottom:737.693333pt;}
.yd3{bottom:738.173333pt;}
.y85{bottom:738.973333pt;}
.yac{bottom:739.613333pt;}
.y116{bottom:741.533333pt;}
.y209{bottom:741.910267pt;}
.yc1{bottom:744.893333pt;}
.y146{bottom:746.653333pt;}
.y62{bottom:748.253333pt;}
.y1d7{bottom:749.110267pt;}
.y1a3{bottom:754.813333pt;}
.y21{bottom:756.093333pt;}
.y11{bottom:757.466667pt;}
.y115{bottom:759.453333pt;}
.y1d6{bottom:761.110267pt;}
.y97{bottom:761.533333pt;}
.y145{bottom:764.573333pt;}
.y2e{bottom:766.853333pt;}
.y1bc{bottom:767.173333pt;}
.y43{bottom:771.813333pt;}
.y1d5{bottom:773.110267pt;}
.y20{bottom:774.533333pt;}
.y78{bottom:774.853333pt;}
.yd2{bottom:775.013333pt;}
.yab{bottom:776.453333pt;}
.y114{bottom:777.413333pt;}
.y1{bottom:779.200000pt;}
.yc0{bottom:781.733333pt;}
.y144{bottom:782.533333pt;}
.y61{bottom:785.093333pt;}
.y1d4{bottom:785.110267pt;}
.y84{bottom:789.573333pt;}
.y1f{bottom:792.933333pt;}
.y113{bottom:795.333333pt;}
.y1d3{bottom:797.110267pt;}
.y96{bottom:798.373333pt;}
.y143{bottom:800.453333pt;}
.y1a2{bottom:800.773333pt;}
.y1bb{bottom:804.133333pt;}
.y1d2{bottom:809.110267pt;}
.y1e{bottom:811.333333pt;}
.y77{bottom:811.813333pt;}
.yaa{bottom:813.253333pt;}
.y2d{bottom:816.613333pt;}
.y142{bottom:818.373333pt;}
.ybf{bottom:818.533333pt;}
.y1d1{bottom:821.110267pt;}
.y42{bottom:821.733333pt;}
.y83{bottom:826.533333pt;}
.y1d{bottom:829.733333pt;}
.y112{bottom:831.173333pt;}
.y1d0{bottom:833.110267pt;}
.y60{bottom:835.013333pt;}
.y95{bottom:835.173333pt;}
.y141{bottom:836.293333pt;}
.y1ba{bottom:840.933333pt;}
.y1cf{bottom:845.110267pt;}
.y1a0{bottom:846.693333pt;}
.y1c{bottom:848.133333pt;}
.yfc{bottom:848.293333pt;}
.y76{bottom:848.613333pt;}
.y111{bottom:848.933333pt;}
.ya9{bottom:850.053333pt;}
.y140{bottom:854.213333pt;}
.ybe{bottom:855.333333pt;}
.y1ce{bottom:857.110267pt;}
.y41{bottom:858.693333pt;}
.y82{bottom:863.333333pt;}
.y1b{bottom:866.533333pt;}
.y110{bottom:866.853333pt;}
.y1cd{bottom:869.110267pt;}
.y2c{bottom:870.533333pt;}
.y5f{bottom:871.973333pt;}
.y180{bottom:877.573333pt;}
.y1b9{bottom:877.733333pt;}
.y10f{bottom:884.773333pt;}
.y1a{bottom:884.933333pt;}
.y75{bottom:885.413333pt;}
.ya8{bottom:886.853333pt;}
.y13f{bottom:889.893333pt;}
.ye0{bottom:892.133333pt;}
.y19e{bottom:892.453333pt;}
.y81{bottom:900.133333pt;}
.y10e{bottom:902.693333pt;}
.y19{bottom:903.333333pt;}
.y13e{bottom:907.813333pt;}
.ybd{bottom:908.133333pt;}
.y2b{bottom:908.613333pt;}
.y5e{bottom:908.773333pt;}
.y1b8{bottom:914.533333pt;}
.y17e{bottom:916.133333pt;}
.y10d{bottom:920.613333pt;}
.y18{bottom:921.733333pt;}
.y74{bottom:922.213333pt;}
.y13d{bottom:925.733333pt;}
.y80{bottom:936.933333pt;}
.y19b{bottom:938.373333pt;}
.y10c{bottom:938.533333pt;}
.y17{bottom:940.133333pt;}
.y13c{bottom:943.653333pt;}
.ydf{bottom:944.933333pt;}
.ya7{bottom:945.093333pt;}
.y40{bottom:945.573333pt;}
.y1cc{bottom:945.779600pt;}
.y2a{bottom:947.493333pt;}
.y1b7{bottom:951.333333pt;}
.y10b{bottom:956.453333pt;}
.y16{bottom:958.533333pt;}
.y94{bottom:958.853333pt;}
.y73{bottom:959.013333pt;}
.y13b{bottom:961.573333pt;}
.y17c{bottom:963.653333pt;}
.y7f{bottom:973.733333pt;}
.y10a{bottom:974.373333pt;}
.y15{bottom:976.933333pt;}
.y13a{bottom:979.493333pt;}
.y3f{bottom:982.373333pt;}
.y29{bottom:989.093333pt;}
.y109{bottom:992.293333pt;}
.ya6{bottom:995.653333pt;}
.y72{bottom:995.813333pt;}
.y139{bottom:997.413333pt;}
.y17a{bottom:997.573333pt;}
.y1b6{bottom:1008.320000pt;}
.y14{bottom:1013.760000pt;}
.y138{bottom:1015.360000pt;}
.y28{bottom:1029.760000pt;}
.y3e{bottom:1032.160000pt;}
.y71{bottom:1032.640000pt;}
.y137{bottom:1033.280000pt;}
.h18{height:33.266667pt;}
.h33{height:34.453125pt;}
.h30{height:35.187500pt;}
.h1a{height:37.906667pt;}
.h31{height:39.585938pt;}
.h1e{height:41.266667pt;}
.h1c{height:41.280000pt;}
.h24{height:45.106667pt;}
.h23{height:45.266667pt;}
.h25{height:45.300000pt;}
.h19{height:46.866667pt;}
.h11{height:47.380000pt;}
.h2a{height:49.266667pt;}
.h28{height:49.306667pt;}
.h27{height:49.440000pt;}
.h16{height:49.466667pt;}
.h2{height:50.062500pt;}
.h29{height:52.134375pt;}
.h20{height:57.758750pt;}
.h15{height:57.787500pt;}
.h22{height:58.546667pt;}
.h17{height:59.340000pt;}
.hf{height:62.812500pt;}
.h21{height:63.311250pt;}
.he{height:64.500000pt;}
.h9{height:65.781915pt;}
.h3{height:66.750000pt;}
.h5{height:66.883500pt;}
.h13{height:71.503042pt;}
.h12{height:71.524375pt;}
.h14{height:71.684375pt;}
.h10{height:72.655000pt;}
.ha{height:73.454062pt;}
.hd{height:75.465000pt;}
.hb{height:77.951250pt;}
.h4{height:78.097500pt;}
.h32{height:79.171875pt;}
.hc{height:85.785000pt;}
.h2c{height:87.489947pt;}
.h26{height:91.840000pt;}
.h1f{height:99.826667pt;}
.h2d{height:104.844687pt;}
.h2b{height:125.138667pt;}
.h1d{height:141.146667pt;}
.h1b{height:166.586667pt;}
.h2f{height:1058.000000pt;}
.h2e{height:1058.268000pt;}
.h7{height:1122.000000pt;}
.h6{height:1122.240000pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w7{width:113.430667pt;}
.w5{width:245.777333pt;}
.w6{width:322.946667pt;}
.w8{width:455.280000pt;}
.w4{width:568.720000pt;}
.w9{width:755.905333pt;}
.wa{width:756.000000pt;}
.w3{width:793.333333pt;}
.w2{width:793.440000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:7.190667pt;}
.x29{left:29.889733pt;}
.x22{left:31.360267pt;}
.x21{left:56.378000pt;}
.x11{left:113.472000pt;}
.x1b{left:137.466667pt;}
.x1c{left:161.466667pt;}
.x18{left:196.506667pt;}
.x17{left:199.866667pt;}
.x1f{left:226.920000pt;}
.x23{left:279.688933pt;}
.xd{left:283.773333pt;}
.x24{left:287.248933pt;}
.xc{left:292.733333pt;}
.x25{left:296.056933pt;}
.x1e{left:359.266667pt;}
.x16{left:396.866667pt;}
.xa{left:435.973333pt;}
.xb{left:449.253333pt;}
.x2{left:452.506667pt;}
.x6{left:487.813333pt;}
.x14{left:490.013333pt;}
.x15{left:493.853333pt;}
.x26{left:502.684933pt;}
.x27{left:510.244933pt;}
.x28{left:522.244933pt;}
.x8{left:536.933333pt;}
.xf{left:542.626667pt;}
.x3{left:546.466667pt;}
.xe{left:566.213333pt;}
.x9{left:569.573333pt;}
.x13{left:571.933333pt;}
.x10{left:574.466667pt;}
.x4{left:578.306667pt;}
.x20{left:581.213333pt;}
.x1a{left:665.573333pt;}
.x5{left:667.546667pt;}
.x19{left:673.093333pt;}
.x1{left:678.720000pt;}
.x12{left:680.453333pt;}
.x7{left:736.960000pt;}
}




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