
    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_99d0f10d6880676ffd0e576e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.086000;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_f888b2f2df65080f71a20c4f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.086000;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_28cfedbe36776a6132d880be.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.082000;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_03da22ffa5c78bb53f9f94cd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.124000;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_f888b2f2df65080f71a20c4f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.086000;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_f888b2f2df65080f71a20c4f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.086000;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_f888b2f2df65080f71a20c4f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.086000;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_06140bebd6248be671fecf2c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.913000;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_b807aeac167355111e185ac8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.070000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v2{vertical-align:-19.800000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.820000px;}
.v1{vertical-align:19.800000px;}
.ls3f{letter-spacing:-3.000000px;}
.ls6b{letter-spacing:-2.760000px;}
.ls14{letter-spacing:-2.400000px;}
.ls31{letter-spacing:-0.300000px;}
.ls32{letter-spacing:-0.240000px;}
.ls58{letter-spacing:-0.180000px;}
.ls34{letter-spacing:-0.120000px;}
.ls60{letter-spacing:-0.060000px;}
.ls13{letter-spacing:0.000000px;}
.ls73{letter-spacing:0.048000px;}
.ls5e{letter-spacing:0.055800px;}
.ls4d{letter-spacing:0.060000px;}
.lsd{letter-spacing:0.096000px;}
.ls1f{letter-spacing:0.120000px;}
.ls18{letter-spacing:0.144000px;}
.ls49{letter-spacing:0.150000px;}
.ls82{letter-spacing:0.162000px;}
.ls36{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.192000px;}
.ls63{letter-spacing:0.211200px;}
.ls80{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.240000px;}
.ls0{letter-spacing:0.255000px;}
.ls64{letter-spacing:0.270000px;}
.ls12{letter-spacing:0.285000px;}
.ls19{letter-spacing:0.288000px;}
.ls2f{letter-spacing:0.300000px;}
.ls24{letter-spacing:0.360000px;}
.ls87{letter-spacing:0.378000px;}
.lse{letter-spacing:0.384000px;}
.ls56{letter-spacing:0.390000px;}
.ls2d{letter-spacing:0.420000px;}
.lsa{letter-spacing:0.432000px;}
.ls50{letter-spacing:0.447600px;}
.ls38{letter-spacing:0.450000px;}
.ls54{letter-spacing:0.465600px;}
.ls1a{letter-spacing:0.480000px;}
.ls6c{letter-spacing:0.486000px;}
.ls3a{letter-spacing:0.510000px;}
.ls11{letter-spacing:0.528000px;}
.lsb{letter-spacing:0.540000px;}
.ls16{letter-spacing:0.560400px;}
.ls78{letter-spacing:0.570000px;}
.ls15{letter-spacing:0.576000px;}
.ls6d{letter-spacing:0.594000px;}
.ls23{letter-spacing:0.600000px;}
.lsf{letter-spacing:0.624000px;}
.ls48{letter-spacing:0.660000px;}
.ls43{letter-spacing:0.695400px;}
.ls6f{letter-spacing:0.711600px;}
.ls4{letter-spacing:0.720000px;}
.ls1c{letter-spacing:0.748200px;}
.ls6a{letter-spacing:0.750000px;}
.ls89{letter-spacing:0.756000px;}
.ls1b{letter-spacing:0.768000px;}
.ls27{letter-spacing:0.780000px;}
.ls7b{letter-spacing:0.810000px;}
.ls83{letter-spacing:0.837000px;}
.ls8{letter-spacing:0.840000px;}
.ls72{letter-spacing:0.864000px;}
.ls25{letter-spacing:0.870000px;}
.ls30{letter-spacing:0.900000px;}
.ls7a{letter-spacing:0.918000px;}
.ls46{letter-spacing:0.930000px;}
.ls1d{letter-spacing:0.960000px;}
.ls86{letter-spacing:0.972000px;}
.ls52{letter-spacing:0.990000px;}
.ls42{letter-spacing:1.020000px;}
.ls6e{letter-spacing:1.026000px;}
.ls7{letter-spacing:1.056000px;}
.ls3d{letter-spacing:1.080000px;}
.ls17{letter-spacing:1.104000px;}
.ls88{letter-spacing:1.134000px;}
.ls4f{letter-spacing:1.140000px;}
.ls66{letter-spacing:1.170000px;}
.ls40{letter-spacing:1.200000px;}
.ls7d{letter-spacing:1.242000px;}
.ls2{letter-spacing:1.248000px;}
.ls4a{letter-spacing:1.260000px;}
.ls10{letter-spacing:1.296000px;}
.ls35{letter-spacing:1.320000px;}
.ls6{letter-spacing:1.344000px;}
.ls5c{letter-spacing:1.350000px;}
.ls51{letter-spacing:1.374000px;}
.ls21{letter-spacing:1.380000px;}
.ls5d{letter-spacing:1.404000px;}
.ls1e{letter-spacing:1.440000px;}
.ls84{letter-spacing:1.458000px;}
.ls75{letter-spacing:1.470000px;}
.ls7c{letter-spacing:1.485000px;}
.ls20{letter-spacing:1.500000px;}
.ls81{letter-spacing:1.512000px;}
.ls3{letter-spacing:1.560000px;}
.ls85{letter-spacing:1.566000px;}
.ls2e{letter-spacing:1.620000px;}
.ls2b{letter-spacing:1.680000px;}
.ls76{letter-spacing:1.710000px;}
.ls5{letter-spacing:1.728000px;}
.ls33{letter-spacing:1.740000px;}
.ls61{letter-spacing:1.770000px;}
.ls7e{letter-spacing:1.782000px;}
.ls69{letter-spacing:1.800000px;}
.ls62{letter-spacing:1.830000px;}
.ls7f{letter-spacing:1.836000px;}
.ls39{letter-spacing:1.860000px;}
.ls2a{letter-spacing:1.920000px;}
.ls5f{letter-spacing:1.944000px;}
.ls57{letter-spacing:1.950000px;}
.ls37{letter-spacing:1.980000px;}
.ls26{letter-spacing:2.040000px;}
.ls4b{letter-spacing:2.100000px;}
.ls4e{letter-spacing:2.130000px;}
.ls29{letter-spacing:2.160000px;}
.ls71{letter-spacing:2.190000px;}
.ls4c{letter-spacing:2.220000px;}
.ls28{letter-spacing:2.280000px;}
.ls68{letter-spacing:2.304000px;}
.ls47{letter-spacing:2.340000px;}
.ls22{letter-spacing:2.400000px;}
.ls41{letter-spacing:2.520000px;}
.ls2c{letter-spacing:2.580000px;}
.ls67{letter-spacing:2.640000px;}
.ls77{letter-spacing:2.760000px;}
.ls70{letter-spacing:2.820000px;}
.ls3b{letter-spacing:2.880000px;}
.ls65{letter-spacing:2.940000px;}
.ls55{letter-spacing:3.000000px;}
.ls53{letter-spacing:3.060000px;}
.ls5b{letter-spacing:3.120000px;}
.ls45{letter-spacing:3.180000px;}
.ls5a{letter-spacing:3.240000px;}
.ls44{letter-spacing:3.300000px;}
.ls74{letter-spacing:3.420000px;}
.ls79{letter-spacing:3.600000px;}
.ls3c{letter-spacing:3.720000px;}
.ls3e{letter-spacing:3.780000px;}
.ls59{letter-spacing:4.320000px;}
.ls1{letter-spacing:268.341000px;}
.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;}
}
.wsd2{word-spacing:-21.060000px;}
.ws5e{word-spacing:-20.580000px;}
.wsa1{word-spacing:-20.520000px;}
.ws8e{word-spacing:-20.460000px;}
.wsd3{word-spacing:-20.340000px;}
.ws43{word-spacing:-20.040000px;}
.ws60{word-spacing:-19.680000px;}
.ws63{word-spacing:-19.500000px;}
.wsa2{word-spacing:-19.440000px;}
.ws8d{word-spacing:-19.320000px;}
.ws45{word-spacing:-19.260000px;}
.wsd1{word-spacing:-19.110000px;}
.ws5c{word-spacing:-19.020000px;}
.wsb0{word-spacing:-18.900000px;}
.ws61{word-spacing:-18.840000px;}
.ws42{word-spacing:-18.780000px;}
.wsbc{word-spacing:-18.570000px;}
.ws9f{word-spacing:-18.480000px;}
.ws79{word-spacing:-18.420000px;}
.ws5f{word-spacing:-18.360000px;}
.ws5d{word-spacing:-18.180000px;}
.ws46{word-spacing:-18.120000px;}
.ws78{word-spacing:-18.000000px;}
.ws44{word-spacing:-17.880000px;}
.wsa0{word-spacing:-17.850000px;}
.ws9e{word-spacing:-17.760000px;}
.ws8f{word-spacing:-17.700000px;}
.ws27{word-spacing:-17.640000px;}
.ws9d{word-spacing:-17.520000px;}
.ws7a{word-spacing:-17.460000px;}
.ws64{word-spacing:-17.400000px;}
.ws62{word-spacing:-17.160000px;}
.ws47{word-spacing:-17.100000px;}
.wse8{word-spacing:-15.660000px;}
.ws16{word-spacing:-14.880000px;}
.ws15{word-spacing:-14.544000px;}
.ws7b{word-spacing:-13.920000px;}
.ws0{word-spacing:-12.600000px;}
.wsaa{word-spacing:-3.240000px;}
.wsac{word-spacing:-3.120000px;}
.ws35{word-spacing:-2.280000px;}
.ws4c{word-spacing:-2.040000px;}
.ws89{word-spacing:-1.920000px;}
.wsc6{word-spacing:-1.740000px;}
.wsc7{word-spacing:-1.680000px;}
.wscb{word-spacing:-1.560000px;}
.wsbf{word-spacing:-1.020000px;}
.ws21{word-spacing:-0.960000px;}
.wsf8{word-spacing:-0.918000px;}
.wsdf{word-spacing:-0.900000px;}
.ws100{word-spacing:-0.864000px;}
.wse0{word-spacing:-0.840000px;}
.ws19{word-spacing:-0.624000px;}
.ws6b{word-spacing:-0.540000px;}
.ws95{word-spacing:-0.360000px;}
.ws82{word-spacing:-0.300000px;}
.ws1{word-spacing:-0.285000px;}
.ws72{word-spacing:-0.180000px;}
.ws14{word-spacing:-0.144000px;}
.ws2{word-spacing:0.000000px;}
.wsd8{word-spacing:0.060000px;}
.ws40{word-spacing:0.120000px;}
.ws1d{word-spacing:0.240000px;}
.ws8c{word-spacing:0.288000px;}
.ws52{word-spacing:0.300000px;}
.wsa8{word-spacing:0.420000px;}
.ws8a{word-spacing:0.480000px;}
.wsf2{word-spacing:0.594000px;}
.wsdc{word-spacing:0.600000px;}
.ws25{word-spacing:0.624000px;}
.ws70{word-spacing:0.660000px;}
.ws6f{word-spacing:0.720000px;}
.ws9b{word-spacing:0.768000px;}
.ws39{word-spacing:0.900000px;}
.wsb6{word-spacing:0.960000px;}
.wse3{word-spacing:1.020000px;}
.ws24{word-spacing:1.200000px;}
.ws1c{word-spacing:1.392000px;}
.ws77{word-spacing:1.488000px;}
.ws13{word-spacing:1.536000px;}
.ws59{word-spacing:1.560000px;}
.ws17{word-spacing:1.680000px;}
.wsd6{word-spacing:1.740000px;}
.ws3d{word-spacing:1.800000px;}
.ws3c{word-spacing:1.860000px;}
.wsd5{word-spacing:1.920000px;}
.wse{word-spacing:2.064000px;}
.ws18{word-spacing:2.100000px;}
.wsb{word-spacing:2.112000px;}
.ws9c{word-spacing:2.160000px;}
.ws1a{word-spacing:2.304000px;}
.wsf4{word-spacing:2.322000px;}
.wsa5{word-spacing:2.340000px;}
.ws11{word-spacing:2.352000px;}
.wsf5{word-spacing:2.376000px;}
.ws10{word-spacing:2.400000px;}
.wsc8{word-spacing:2.430000px;}
.wsf{word-spacing:2.580000px;}
.ws3b{word-spacing:2.640000px;}
.ws6{word-spacing:2.688000px;}
.ws28{word-spacing:2.700000px;}
.wsc{word-spacing:2.736000px;}
.ws102{word-spacing:2.754000px;}
.ws4e{word-spacing:2.760000px;}
.ws20{word-spacing:2.784000px;}
.ws2c{word-spacing:2.820000px;}
.wsb8{word-spacing:2.880000px;}
.ws4f{word-spacing:2.940000px;}
.wsfd{word-spacing:2.970000px;}
.ws50{word-spacing:3.000000px;}
.wsf9{word-spacing:3.024000px;}
.wsc2{word-spacing:3.060000px;}
.wseb{word-spacing:3.078000px;}
.wsa{word-spacing:3.120000px;}
.wsea{word-spacing:3.132000px;}
.ws3f{word-spacing:3.180000px;}
.ws94{word-spacing:3.240000px;}
.wsaf{word-spacing:3.300000px;}
.wscf{word-spacing:3.312000px;}
.wsff{word-spacing:3.348000px;}
.ws2e{word-spacing:3.360000px;}
.wsf7{word-spacing:3.402000px;}
.wsc1{word-spacing:3.480000px;}
.wsd0{word-spacing:3.504000px;}
.wse9{word-spacing:3.510000px;}
.wsa7{word-spacing:3.540000px;}
.ws22{word-spacing:3.552000px;}
.wsf6{word-spacing:3.564000px;}
.ws66{word-spacing:3.600000px;}
.ws101{word-spacing:3.618000px;}
.ws71{word-spacing:3.660000px;}
.ws65{word-spacing:3.720000px;}
.wsfb{word-spacing:3.726000px;}
.ws6d{word-spacing:3.780000px;}
.wsc9{word-spacing:3.834000px;}
.ws49{word-spacing:3.900000px;}
.wsa9{word-spacing:3.960000px;}
.wsf3{word-spacing:3.996000px;}
.ws32{word-spacing:4.020000px;}
.ws9{word-spacing:4.032000px;}
.wsd{word-spacing:4.080000px;}
.ws31{word-spacing:4.140000px;}
.wsfe{word-spacing:4.212000px;}
.ws1b{word-spacing:4.224000px;}
.wse1{word-spacing:4.260000px;}
.ws3a{word-spacing:4.320000px;}
.ws2f{word-spacing:4.380000px;}
.ws3{word-spacing:4.410000px;}
.ws41{word-spacing:4.440000px;}
.ws6a{word-spacing:4.560000px;}
.ws1e{word-spacing:4.608000px;}
.wsb2{word-spacing:4.620000px;}
.ws26{word-spacing:4.656000px;}
.ws7f{word-spacing:4.680000px;}
.wsef{word-spacing:4.698000px;}
.ws93{word-spacing:4.740000px;}
.ws4{word-spacing:4.752000px;}
.wsb5{word-spacing:4.800000px;}
.wsee{word-spacing:4.806000px;}
.ws29{word-spacing:4.860000px;}
.ws92{word-spacing:4.920000px;}
.ws12{word-spacing:4.944000px;}
.ws104{word-spacing:4.968000px;}
.wsa6{word-spacing:4.980000px;}
.ws8{word-spacing:5.040000px;}
.ws91{word-spacing:5.100000px;}
.wsb7{word-spacing:5.160000px;}
.ws103{word-spacing:5.184000px;}
.ws85{word-spacing:5.220000px;}
.ws37{word-spacing:5.280000px;}
.ws97{word-spacing:5.340000px;}
.ws23{word-spacing:5.424000px;}
.ws55{word-spacing:5.460000px;}
.ws69{word-spacing:5.520000px;}
.wsed{word-spacing:5.562000px;}
.ws74{word-spacing:5.580000px;}
.wsfa{word-spacing:5.616000px;}
.ws86{word-spacing:5.700000px;}
.wsec{word-spacing:5.724000px;}
.ws1f{word-spacing:5.760000px;}
.ws81{word-spacing:5.880000px;}
.ws5{word-spacing:5.940000px;}
.ws4a{word-spacing:6.000000px;}
.ws80{word-spacing:6.060000px;}
.ws84{word-spacing:6.120000px;}
.ws36{word-spacing:6.180000px;}
.ws90{word-spacing:6.240000px;}
.ws83{word-spacing:6.300000px;}
.ws76{word-spacing:6.360000px;}
.ws2b{word-spacing:6.420000px;}
.ws7{word-spacing:6.480000px;}
.wsf0{word-spacing:6.588000px;}
.ws8b{word-spacing:6.600000px;}
.ws2a{word-spacing:6.660000px;}
.ws54{word-spacing:6.720000px;}
.ws51{word-spacing:6.840000px;}
.wsf1{word-spacing:6.858000px;}
.wsc5{word-spacing:6.900000px;}
.ws57{word-spacing:7.020000px;}
.ws6c{word-spacing:7.080000px;}
.ws7d{word-spacing:7.140000px;}
.wsca{word-spacing:7.200000px;}
.ws48{word-spacing:7.260000px;}
.wsfc{word-spacing:7.344000px;}
.wse7{word-spacing:7.380000px;}
.wsd4{word-spacing:7.440000px;}
.ws3e{word-spacing:7.500000px;}
.ws6e{word-spacing:7.560000px;}
.wsc0{word-spacing:7.620000px;}
.ws7e{word-spacing:7.680000px;}
.ws9a{word-spacing:7.740000px;}
.wsc3{word-spacing:7.800000px;}
.wse6{word-spacing:7.860000px;}
.wsb4{word-spacing:7.980000px;}
.ws58{word-spacing:8.040000px;}
.wsae{word-spacing:8.160000px;}
.wsb3{word-spacing:8.280000px;}
.wsbe{word-spacing:8.340000px;}
.ws75{word-spacing:8.400000px;}
.ws4b{word-spacing:8.460000px;}
.ws68{word-spacing:8.520000px;}
.ws38{word-spacing:8.580000px;}
.wsbd{word-spacing:8.640000px;}
.ws88{word-spacing:8.700000px;}
.ws30{word-spacing:8.820000px;}
.ws4d{word-spacing:8.880000px;}
.ws99{word-spacing:8.940000px;}
.wsdd{word-spacing:9.000000px;}
.ws87{word-spacing:9.060000px;}
.wsad{word-spacing:9.120000px;}
.ws73{word-spacing:9.180000px;}
.ws34{word-spacing:9.240000px;}
.wsce{word-spacing:9.300000px;}
.ws7c{word-spacing:9.480000px;}
.ws33{word-spacing:9.540000px;}
.ws5a{word-spacing:9.600000px;}
.wsa4{word-spacing:9.660000px;}
.wsbb{word-spacing:9.720000px;}
.wse5{word-spacing:9.840000px;}
.wscc{word-spacing:9.960000px;}
.ws2d{word-spacing:10.020000px;}
.ws96{word-spacing:10.740000px;}
.wsd9{word-spacing:10.800000px;}
.wsba{word-spacing:10.920000px;}
.wsdb{word-spacing:11.460000px;}
.wsde{word-spacing:11.520000px;}
.wse2{word-spacing:11.580000px;}
.wscd{word-spacing:11.640000px;}
.ws53{word-spacing:11.820000px;}
.wsda{word-spacing:11.880000px;}
.wsb1{word-spacing:12.060000px;}
.wsb9{word-spacing:12.120000px;}
.ws98{word-spacing:12.360000px;}
.wsc4{word-spacing:12.480000px;}
.wsab{word-spacing:13.320000px;}
.ws67{word-spacing:13.380000px;}
.ws5b{word-spacing:14.040000px;}
.wsd7{word-spacing:14.100000px;}
.wse4{word-spacing:14.520000px;}
.ws56{word-spacing:15.060000px;}
.wsa3{word-spacing:17.400000px;}
._e{margin-left:-17.908800px;}
._d{margin-left:-8.078400px;}
._7{margin-left:-5.916000px;}
._3{margin-left:-4.795200px;}
._6{margin-left:-3.637200px;}
._0{margin-left:-2.550000px;}
._2{margin-left:-1.320000px;}
._1{width:1.953600px;}
._4{width:3.139200px;}
._5{width:4.445400px;}
._b{width:5.987400px;}
._c{width:9.650400px;}
._8{width:11.207400px;}
._a{width:16.609800px;}
._9{width:54.300000px;}
.fc1{color:rgb(237,28,36);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:37.800000px;}
.fs5{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs7{font-size:48.000000px;}
.fs1{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:76.535400px;}
.y63{bottom:119.055000px;}
.y23{bottom:119.055150px;}
.y137{bottom:119.055300px;}
.y149{bottom:128.625600px;}
.yac{bottom:132.555150px;}
.y1ac{bottom:135.652800px;}
.y89{bottom:135.889950px;}
.y62{bottom:135.977400px;}
.y16e{bottom:136.333050px;}
.y22{bottom:141.178050px;}
.y1e8{bottom:143.565450px;}
.y148{bottom:145.125600px;}
.y191{bottom:146.055150px;}
.y1ab{bottom:152.152800px;}
.y88{bottom:152.725050px;}
.y61{bottom:152.899650px;}
.y16d{bottom:153.610950px;}
.yef{bottom:154.559250px;}
.y21{bottom:154.797150px;}
.y190{bottom:159.555150px;}
.y147{bottom:161.625600px;}
.yee{bottom:168.059250px;}
.y1e7{bottom:168.076050px;}
.y20{bottom:168.416250px;}
.y1aa{bottom:168.652800px;}
.y87{bottom:169.559850px;}
.y60{bottom:169.822050px;}
.y16c{bottom:170.889000px;}
.yab{bottom:175.818900px;}
.y121{bottom:176.625600px;}
.yca{bottom:181.127550px;}
.y1f{bottom:182.035200px;}
.y1a9{bottom:185.152800px;}
.y5f{bottom:186.744300px;}
.y136{bottom:187.381350px;}
.y16b{bottom:188.166900px;}
.yed{bottom:190.063350px;}
.yaa{bottom:192.489600px;}
.y1e6{bottom:192.586500px;}
.y113{bottom:192.590700px;}
.y120{bottom:193.125600px;}
.y1e{bottom:195.654300px;}
.yc9{bottom:197.627550px;}
.y146{bottom:198.879450px;}
.y1a8{bottom:201.652800px;}
.y18f{bottom:202.818900px;}
.yec{bottom:203.563350px;}
.y5e{bottom:203.666550px;}
.y135{bottom:203.881350px;}
.y16a{bottom:205.444950px;}
.y86{bottom:207.148650px;}
.ya9{bottom:209.160150px;}
.y1d{bottom:209.273250px;}
.y112{bottom:209.362350px;}
.y11f{bottom:209.625600px;}
.yc8{bottom:214.127550px;}
.y1c1{bottom:214.617900px;}
.y145{bottom:215.379450px;}
.y1e5{bottom:217.096950px;}
.y1a7{bottom:218.152800px;}
.y134{bottom:220.381350px;}
.y5d{bottom:220.588950px;}
.y18e{bottom:222.161550px;}
.y169{bottom:222.722850px;}
.y1c{bottom:222.892350px;}
.y85{bottom:223.983600px;}
.y11e{bottom:226.125600px;}
.y111{bottom:226.134000px;}
.yc7{bottom:230.627550px;}
.y1c0{bottom:231.117900px;}
.y144{bottom:231.879450px;}
.y1e4{bottom:233.103450px;}
.y1a6{bottom:234.652800px;}
.y1b{bottom:236.511300px;}
.y133{bottom:236.881350px;}
.y84{bottom:240.818550px;}
.y18d{bottom:241.504050px;}
.ya8{bottom:242.332500px;}
.y11d{bottom:242.625600px;}
.yeb{bottom:246.827100px;}
.yc6{bottom:247.127550px;}
.y1bf{bottom:247.617900px;}
.y143{bottom:248.379450px;}
.y1a{bottom:250.130400px;}
.y132{bottom:253.381350px;}
.y1e3{bottom:257.613900px;}
.y83{bottom:257.653500px;}
.y5c{bottom:258.265050px;}
.y11c{bottom:259.125600px;}
.y168{bottom:260.754750px;}
.y18c{bottom:260.846700px;}
.y110{bottom:263.659650px;}
.y1be{bottom:264.117900px;}
.yea{bottom:264.737850px;}
.y142{bottom:264.879450px;}
.y19{bottom:266.749350px;}
.y1a5{bottom:271.906650px;}
.y82{bottom:274.488450px;}
.y5b{bottom:275.187450px;}
.y167{bottom:278.032650px;}
.yc5{bottom:280.127550px;}
.y18b{bottom:280.189200px;}
.y10f{bottom:280.431300px;}
.y1bd{bottom:280.617900px;}
.y141{bottom:281.379450px;}
.y1e2{bottom:282.124350px;}
.ye9{bottom:282.648450px;}
.y1a4{bottom:288.406650px;}
.y131{bottom:290.635200px;}
.y81{bottom:291.323400px;}
.ya7{bottom:292.003050px;}
.y5a{bottom:292.109700px;}
.y11b{bottom:292.127550px;}
.y166{bottom:295.310550px;}
.y1bc{bottom:297.117900px;}
.y10e{bottom:297.202950px;}
.y140{bottom:297.879450px;}
.y1e1{bottom:298.130850px;}
.y18a{bottom:299.531850px;}
.ye8{bottom:300.559050px;}
.y1a3{bottom:304.906650px;}
.y130{bottom:307.135200px;}
.y80{bottom:308.158350px;}
.y11a{bottom:308.627550px;}
.y59{bottom:309.032100px;}
.y165{bottom:312.588600px;}
.y1bb{bottom:313.617900px;}
.y10d{bottom:313.974750px;}
.y18{bottom:313.995300px;}
.y1e0{bottom:314.137500px;}
.y13f{bottom:314.379450px;}
.ye7{bottom:318.469650px;}
.y189{bottom:318.874350px;}
.y1a2{bottom:321.406650px;}
.y12f{bottom:323.635200px;}
.y58{bottom:325.954350px;}
.y164{bottom:329.866500px;}
.y10c{bottom:330.746400px;}
.y17{bottom:336.118350px;}
.ye6{bottom:336.380250px;}
.y1a1{bottom:337.906650px;}
.y188{bottom:338.217000px;}
.y1df{bottom:338.647950px;}
.y12e{bottom:340.135200px;}
.y7f{bottom:341.495250px;}
.y57{bottom:342.876600px;}
.ya6{bottom:345.925650px;}
.y163{bottom:347.144550px;}
.y13e{bottom:347.381400px;}
.y10b{bottom:347.518050px;}
.y16{bottom:349.737300px;}
.y1ba{bottom:350.871750px;}
.ye5{bottom:354.290850px;}
.y1a0{bottom:354.406650px;}
.y1de{bottom:354.654450px;}
.y12d{bottom:356.635200px;}
.y187{bottom:357.559500px;}
.y13d{bottom:360.881400px;}
.ya5{bottom:362.596200px;}
.y15{bottom:363.356400px;}
.y162{bottom:364.422450px;}
.y1b9{bottom:367.371750px;}
.y1dd{bottom:370.660950px;}
.y19f{bottom:370.906650px;}
.ye4{bottom:372.201450px;}
.y14{bottom:376.975350px;}
.ya4{bottom:379.266750px;}
.y56{bottom:380.552850px;}
.y10a{bottom:380.791650px;}
.y161{bottom:381.700500px;}
.y1b8{bottom:383.871750px;}
.y12c{bottom:389.637150px;}
.ye3{bottom:390.112050px;}
.y13{bottom:390.594450px;}
.y1dc{bottom:395.171400px;}
.y7e{bottom:395.582100px;}
.ya3{bottom:395.937300px;}
.y55{bottom:397.475100px;}
.y109{bottom:397.563450px;}
.y186{bottom:397.656000px;}
.y160{bottom:398.978400px;}
.y1b7{bottom:400.371750px;}
.y12{bottom:404.213400px;}
.ye2{bottom:408.022650px;}
.y19e{bottom:408.160500px;}
.y1db{bottom:411.178050px;}
.y7d{bottom:412.417050px;}
.ya2{bottom:412.607850px;}
.y54{bottom:414.397500px;}
.y1b6{bottom:416.871750px;}
.y185{bottom:416.998500px;}
.y11{bottom:417.832500px;}
.y19d{bottom:424.660500px;}
.ye1{bottom:425.933400px;}
.y1da{bottom:427.184550px;}
.y7c{bottom:429.252000px;}
.ya1{bottom:429.278400px;}
.y53{bottom:431.319750px;}
.y10{bottom:431.451450px;}
.yc4{bottom:433.127550px;}
.y1b5{bottom:433.371750px;}
.y184{bottom:436.341150px;}
.y15f{bottom:437.010300px;}
.y12b{bottom:440.152800px;}
.y19c{bottom:441.160500px;}
.ye0{bottom:443.844000px;}
.yf{bottom:445.070550px;}
.y7b{bottom:446.086950px;}
.y52{bottom:448.242150px;}
.y1b4{bottom:449.871750px;}
.y108{bottom:451.587000px;}
.y1d9{bottom:451.695000px;}
.y201{bottom:453.376950px;}
.y15e{bottom:454.288200px;}
.y183{bottom:455.683650px;}
.y12a{bottom:456.652800px;}
.y19b{bottom:457.660500px;}
.ye{bottom:458.689650px;}
.y7a{bottom:462.921900px;}
.y51{bottom:465.164400px;}
.ya0{bottom:466.702800px;}
.y1d8{bottom:467.701500px;}
.y107{bottom:468.358800px;}
.y15d{bottom:471.566250px;}
.yd{bottom:472.308600px;}
.y129{bottom:473.152800px;}
.y19a{bottom:474.160500px;}
.yc3{bottom:474.879450px;}
.y182{bottom:475.026150px;}
.y200{bottom:476.880900px;}
.y79{bottom:479.756850px;}
.y50{bottom:482.086650px;}
.ydf{bottom:482.508450px;}
.y9f{bottom:483.373350px;}
.y106{bottom:485.130450px;}
.y1b3{bottom:487.125600px;}
.y15c{bottom:488.844150px;}
.y128{bottom:489.652800px;}
.yc2{bottom:491.379450px;}
.y1ff{bottom:491.880900px;}
.y1d7{bottom:492.211950px;}
.y181{bottom:494.368800px;}
.y78{bottom:496.591800px;}
.y4f{bottom:499.009050px;}
.y119{bottom:499.127550px;}
.y9e{bottom:500.043900px;}
.yde{bottom:500.419050px;}
.y105{bottom:501.902100px;}
.y1b2{bottom:503.625600px;}
.y15b{bottom:506.122200px;}
.y127{bottom:506.152800px;}
.y199{bottom:507.162450px;}
.yc1{bottom:507.879450px;}
.y1d6{bottom:508.218450px;}
.y77{bottom:513.426750px;}
.y1fe{bottom:515.384850px;}
.y4e{bottom:515.931300px;}
.ydd{bottom:518.329650px;}
.y104{bottom:518.673900px;}
.y1b1{bottom:520.125600px;}
.y126{bottom:522.652800px;}
.y15a{bottom:523.400100px;}
.y1d5{bottom:524.225100px;}
.yc0{bottom:524.379450px;}
.y1fd{bottom:530.384850px;}
.y4d{bottom:532.853700px;}
.y180{bottom:534.465300px;}
.y103{bottom:535.445550px;}
.ydc{bottom:536.240250px;}
.y1b0{bottom:536.625600px;}
.y9d{bottom:537.468300px;}
.y1d4{bottom:540.231600px;}
.y159{bottom:540.678150px;}
.ybf{bottom:540.879450px;}
.y1fc{bottom:545.384850px;}
.y4c{bottom:549.775950px;}
.y76{bottom:551.015550px;}
.y102{bottom:552.217200px;}
.y1af{bottom:553.125600px;}
.y17f{bottom:553.807800px;}
.y9c{bottom:554.138850px;}
.ydb{bottom:554.151000px;}
.y125{bottom:555.654750px;}
.ybe{bottom:557.379450px;}
.y198{bottom:560.914350px;}
.y1d3{bottom:564.742050px;}
.y75{bottom:567.850500px;}
.y1fb{bottom:568.888800px;}
.y1ae{bottom:569.625600px;}
.y9b{bottom:570.809400px;}
.yc{bottom:571.914150px;}
.yda{bottom:572.061600px;}
.y124{bottom:572.154750px;}
.y17e{bottom:573.150450px;}
.ybd{bottom:573.879450px;}
.y3a{bottom:575.371500px;}
.y197{bottom:577.414350px;}
.y158{bottom:578.709900px;}
.y1d2{bottom:580.748550px;}
.y1fa{bottom:583.888800px;}
.y74{bottom:584.685450px;}
.y123{bottom:585.654750px;}
.y4b{bottom:587.452200px;}
.y9a{bottom:587.480100px;}
.yb{bottom:588.414150px;}
.y101{bottom:589.742850px;}
.yd9{bottom:589.972200px;}
.ybc{bottom:590.379450px;}
.y17d{bottom:592.492950px;}
.y196{bottom:593.914350px;}
.y157{bottom:595.987950px;}
.y1d1{bottom:596.755200px;}
.y39{bottom:597.375450px;}
.y1f9{bottom:598.888800px;}
.y73{bottom:601.520400px;}
.y99{bottom:604.150650px;}
.y4a{bottom:604.374450px;}
.y100{bottom:606.514500px;}
.ybb{bottom:606.879450px;}
.yd8{bottom:607.882800px;}
.y195{bottom:610.414350px;}
.y38{bottom:610.875450px;}
.y17c{bottom:611.835450px;}
.y1d0{bottom:612.761700px;}
.y156{bottom:613.265850px;}
.y1f8{bottom:613.888800px;}
.y72{bottom:618.355350px;}
.ya{bottom:618.414150px;}
.y98{bottom:620.821050px;}
.y49{bottom:621.296700px;}
.yff{bottom:623.286150px;}
.y118{bottom:623.379450px;}
.y37{bottom:624.375450px;}
.y194{bottom:626.914350px;}
.y155{bottom:630.543750px;}
.y17b{bottom:631.178100px;}
.y9{bottom:634.914150px;}
.y71{bottom:635.190300px;}
.y1cf{bottom:637.272150px;}
.y1f7{bottom:637.392750px;}
.y97{bottom:637.491600px;}
.y36{bottom:637.875450px;}
.y48{bottom:638.219100px;}
.y117{bottom:639.879450px;}
.yfe{bottom:640.057950px;}
.yba{bottom:644.133300px;}
.yd7{bottom:646.547250px;}
.y154{bottom:647.821800px;}
.y17a{bottom:650.520600px;}
.y35{bottom:651.375450px;}
.y8{bottom:651.414150px;}
.y70{bottom:652.025250px;}
.y1f6{bottom:652.392750px;}
.y47{bottom:655.141350px;}
.y116{bottom:656.379450px;}
.yfd{bottom:656.829600px;}
.y193{bottom:659.916300px;}
.yb9{bottom:660.633300px;}
.y1ce{bottom:661.782600px;}
.yd6{bottom:664.457850px;}
.y34{bottom:664.875450px;}
.y153{bottom:665.099850px;}
.y7{bottom:667.914150px;}
.y13c{bottom:668.381400px;}
.y179{bottom:669.863250px;}
.y46{bottom:672.063750px;}
.y115{bottom:672.879450px;}
.y192{bottom:673.416300px;}
.yfc{bottom:673.601250px;}
.y96{bottom:674.916150px;}
.y1f5{bottom:675.896550px;}
.yb8{bottom:677.133300px;}
.y1cd{bottom:677.789100px;}
.y33{bottom:678.375450px;}
.yd5{bottom:682.368600px;}
.y45{bottom:688.986000px;}
.y1ad{bottom:689.379450px;}
.y6f{bottom:689.614050px;}
.yfb{bottom:690.373050px;}
.y1f4{bottom:690.896550px;}
.y95{bottom:691.586700px;}
.y32{bottom:691.875450px;}
.yb7{bottom:693.633300px;}
.y1cc{bottom:693.795750px;}
.yd4{bottom:700.279200px;}
.y152{bottom:703.131600px;}
.y31{bottom:705.375450px;}
.y178{bottom:705.707700px;}
.y44{bottom:705.908400px;}
.y6e{bottom:706.449000px;}
.y6{bottom:706.914150px;}
.yfa{bottom:707.144700px;}
.y94{bottom:708.257250px;}
.yb6{bottom:710.133300px;}
.y1f3{bottom:714.400500px;}
.yd3{bottom:718.189800px;}
.y1cb{bottom:718.306200px;}
.y30{bottom:718.875450px;}
.y151{bottom:720.409650px;}
.y43{bottom:722.830650px;}
.y6d{bottom:723.283950px;}
.y177{bottom:723.550200px;}
.yf9{bottom:723.916350px;}
.y93{bottom:724.927800px;}
.y5{bottom:726.414150px;}
.yb5{bottom:726.633300px;}
.y1f2{bottom:729.400500px;}
.y1ca{bottom:734.312700px;}
.yd2{bottom:736.100400px;}
.y150{bottom:737.687550px;}
.y6c{bottom:740.118900px;}
.y176{bottom:741.392850px;}
.y92{bottom:741.598350px;}
.yb4{bottom:743.133300px;}
.y1f1{bottom:744.400500px;}
.y1c9{bottom:750.319200px;}
.yd1{bottom:754.011000px;}
.y14f{bottom:754.965600px;}
.y6b{bottom:756.953850px;}
.y91{bottom:758.268900px;}
.y4{bottom:758.670000px;}
.y175{bottom:759.235350px;}
.y1f0{bottom:759.400500px;}
.yb3{bottom:759.633300px;}
.y42{bottom:760.506750px;}
.yf8{bottom:761.442000px;}
.y2f{bottom:765.883350px;}
.y1c8{bottom:766.325700px;}
.yd0{bottom:771.921600px;}
.y14e{bottom:772.243500px;}
.y6a{bottom:773.788650px;}
.y90{bottom:774.939450px;}
.yb2{bottom:776.133300px;}
.y174{bottom:777.077850px;}
.y41{bottom:777.429150px;}
.yf7{bottom:778.213650px;}
.y1ef{bottom:782.904450px;}
.y3{bottom:785.670000px;}
.y2e{bottom:787.887300px;}
.ycf{bottom:789.832200px;}
.y69{bottom:790.623750px;}
.y1c7{bottom:790.836150px;}
.y8f{bottom:791.610000px;}
.yb1{bottom:792.633300px;}
.y40{bottom:794.351400px;}
.yf6{bottom:794.985300px;}
.y2d{bottom:801.387300px;}
.y14d{bottom:806.023350px;}
.y1ee{bottom:806.408400px;}
.y68{bottom:807.458700px;}
.y8e{bottom:808.280550px;}
.y13b{bottom:809.133300px;}
.y114{bottom:809.135250px;}
.y3f{bottom:811.273800px;}
.yf5{bottom:811.757100px;}
.y2{bottom:812.670000px;}
.y2c{bottom:814.887300px;}
.y1c6{bottom:815.346750px;}
.y173{bottom:815.674350px;}
.y1ed{bottom:821.408400px;}
.y67{bottom:824.293650px;}
.y13a{bottom:825.633300px;}
.y3e{bottom:828.196050px;}
.y2b{bottom:828.387300px;}
.yf4{bottom:828.528750px;}
.yb0{bottom:829.887300px;}
.y1c5{bottom:831.353250px;}
.y172{bottom:835.017000px;}
.yce{bottom:840.744750px;}
.y66{bottom:841.128450px;}
.y2a{bottom:841.887300px;}
.y139{bottom:842.133300px;}
.y1ec{bottom:844.912350px;}
.y3d{bottom:845.118300px;}
.yf3{bottom:845.300400px;}
.y8d{bottom:845.704950px;}
.yaf{bottom:846.387300px;}
.y171{bottom:854.359500px;}
.y29{bottom:855.387300px;}
.y1c4{bottom:855.863700px;}
.y65{bottom:857.963400px;}
.y138{bottom:858.633300px;}
.ycd{bottom:858.655350px;}
.y1eb{bottom:859.912350px;}
.y14c{bottom:860.553300px;}
.y3c{bottom:862.040700px;}
.yf2{bottom:862.072050px;}
.y8c{bottom:862.375650px;}
.yae{bottom:862.887300px;}
.y28{bottom:868.887300px;}
.y1c3{bottom:871.870200px;}
.y170{bottom:873.702150px;}
.ycc{bottom:876.565950px;}
.y14b{bottom:877.831200px;}
.yf1{bottom:878.843850px;}
.y8b{bottom:879.046200px;}
.yad{bottom:879.387300px;}
.y27{bottom:882.387300px;}
.y1ea{bottom:883.416300px;}
.y1c2{bottom:887.876700px;}
.y16f{bottom:893.044650px;}
.ycb{bottom:894.476550px;}
.y14a{bottom:895.109250px;}
.y3b{bottom:895.464900px;}
.y64{bottom:895.552350px;}
.yf0{bottom:895.615500px;}
.y8a{bottom:895.716750px;}
.y26{bottom:895.887300px;}
.y1e9{bottom:898.416300px;}
.y25{bottom:912.387300px;}
.y122{bottom:913.416300px;}
.y24{bottom:960.702450px;}
.h7{height:37.548000px;}
.h9{height:41.952000px;}
.hd{height:42.912000px;}
.h3{height:45.594000px;}
.h10{height:47.088000px;}
.h12{height:47.196000px;}
.h6{height:48.276000px;}
.h2{height:50.958000px;}
.h11{height:51.613200px;}
.he{height:52.320000px;}
.h8{height:52.440000px;}
.hb{height:53.640000px;}
.ha{height:54.180000px;}
.hf{height:57.347400px;}
.hc{height:57.348000px;}
.h5{height:59.004000px;}
.h4{height:86.688000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x2{left:102.047250px;}
.x6{left:110.551200px;}
.xc{left:113.122800px;}
.xe{left:115.766250px;}
.x5{left:127.559100px;}
.x8{left:136.063050px;}
.x11{left:152.194050px;}
.xa{left:154.559250px;}
.x9{left:157.771650px;}
.x14{left:182.373600px;}
.x13{left:195.019200px;}
.x3{left:221.102400px;}
.x12{left:316.837050px;}
.xd{left:331.320900px;}
.xf{left:333.046650px;}
.xb{left:336.953100px;}
.x10{left:339.824850px;}
.x7{left:471.504000px;}
.x4{left:517.575150px;}
.x1{left:597.172950px;}
@media print{
.v2{vertical-align:-17.600000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.840000pt;}
.v1{vertical-align:17.600000pt;}
.ls3f{letter-spacing:-2.666667pt;}
.ls6b{letter-spacing:-2.453333pt;}
.ls14{letter-spacing:-2.133333pt;}
.ls31{letter-spacing:-0.266667pt;}
.ls32{letter-spacing:-0.213333pt;}
.ls58{letter-spacing:-0.160000pt;}
.ls34{letter-spacing:-0.106667pt;}
.ls60{letter-spacing:-0.053333pt;}
.ls13{letter-spacing:0.000000pt;}
.ls73{letter-spacing:0.042667pt;}
.ls5e{letter-spacing:0.049600pt;}
.ls4d{letter-spacing:0.053333pt;}
.lsd{letter-spacing:0.085333pt;}
.ls1f{letter-spacing:0.106667pt;}
.ls18{letter-spacing:0.128000pt;}
.ls49{letter-spacing:0.133333pt;}
.ls82{letter-spacing:0.144000pt;}
.ls36{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.170667pt;}
.ls63{letter-spacing:0.187733pt;}
.ls80{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.213333pt;}
.ls0{letter-spacing:0.226667pt;}
.ls64{letter-spacing:0.240000pt;}
.ls12{letter-spacing:0.253333pt;}
.ls19{letter-spacing:0.256000pt;}
.ls2f{letter-spacing:0.266667pt;}
.ls24{letter-spacing:0.320000pt;}
.ls87{letter-spacing:0.336000pt;}
.lse{letter-spacing:0.341333pt;}
.ls56{letter-spacing:0.346667pt;}
.ls2d{letter-spacing:0.373333pt;}
.lsa{letter-spacing:0.384000pt;}
.ls50{letter-spacing:0.397867pt;}
.ls38{letter-spacing:0.400000pt;}
.ls54{letter-spacing:0.413867pt;}
.ls1a{letter-spacing:0.426667pt;}
.ls6c{letter-spacing:0.432000pt;}
.ls3a{letter-spacing:0.453333pt;}
.ls11{letter-spacing:0.469333pt;}
.lsb{letter-spacing:0.480000pt;}
.ls16{letter-spacing:0.498133pt;}
.ls78{letter-spacing:0.506667pt;}
.ls15{letter-spacing:0.512000pt;}
.ls6d{letter-spacing:0.528000pt;}
.ls23{letter-spacing:0.533333pt;}
.lsf{letter-spacing:0.554667pt;}
.ls48{letter-spacing:0.586667pt;}
.ls43{letter-spacing:0.618133pt;}
.ls6f{letter-spacing:0.632533pt;}
.ls4{letter-spacing:0.640000pt;}
.ls1c{letter-spacing:0.665067pt;}
.ls6a{letter-spacing:0.666667pt;}
.ls89{letter-spacing:0.672000pt;}
.ls1b{letter-spacing:0.682667pt;}
.ls27{letter-spacing:0.693333pt;}
.ls7b{letter-spacing:0.720000pt;}
.ls83{letter-spacing:0.744000pt;}
.ls8{letter-spacing:0.746667pt;}
.ls72{letter-spacing:0.768000pt;}
.ls25{letter-spacing:0.773333pt;}
.ls30{letter-spacing:0.800000pt;}
.ls7a{letter-spacing:0.816000pt;}
.ls46{letter-spacing:0.826667pt;}
.ls1d{letter-spacing:0.853333pt;}
.ls86{letter-spacing:0.864000pt;}
.ls52{letter-spacing:0.880000pt;}
.ls42{letter-spacing:0.906667pt;}
.ls6e{letter-spacing:0.912000pt;}
.ls7{letter-spacing:0.938667pt;}
.ls3d{letter-spacing:0.960000pt;}
.ls17{letter-spacing:0.981333pt;}
.ls88{letter-spacing:1.008000pt;}
.ls4f{letter-spacing:1.013333pt;}
.ls66{letter-spacing:1.040000pt;}
.ls40{letter-spacing:1.066667pt;}
.ls7d{letter-spacing:1.104000pt;}
.ls2{letter-spacing:1.109333pt;}
.ls4a{letter-spacing:1.120000pt;}
.ls10{letter-spacing:1.152000pt;}
.ls35{letter-spacing:1.173333pt;}
.ls6{letter-spacing:1.194667pt;}
.ls5c{letter-spacing:1.200000pt;}
.ls51{letter-spacing:1.221333pt;}
.ls21{letter-spacing:1.226667pt;}
.ls5d{letter-spacing:1.248000pt;}
.ls1e{letter-spacing:1.280000pt;}
.ls84{letter-spacing:1.296000pt;}
.ls75{letter-spacing:1.306667pt;}
.ls7c{letter-spacing:1.320000pt;}
.ls20{letter-spacing:1.333333pt;}
.ls81{letter-spacing:1.344000pt;}
.ls3{letter-spacing:1.386667pt;}
.ls85{letter-spacing:1.392000pt;}
.ls2e{letter-spacing:1.440000pt;}
.ls2b{letter-spacing:1.493333pt;}
.ls76{letter-spacing:1.520000pt;}
.ls5{letter-spacing:1.536000pt;}
.ls33{letter-spacing:1.546667pt;}
.ls61{letter-spacing:1.573333pt;}
.ls7e{letter-spacing:1.584000pt;}
.ls69{letter-spacing:1.600000pt;}
.ls62{letter-spacing:1.626667pt;}
.ls7f{letter-spacing:1.632000pt;}
.ls39{letter-spacing:1.653333pt;}
.ls2a{letter-spacing:1.706667pt;}
.ls5f{letter-spacing:1.728000pt;}
.ls57{letter-spacing:1.733333pt;}
.ls37{letter-spacing:1.760000pt;}
.ls26{letter-spacing:1.813333pt;}
.ls4b{letter-spacing:1.866667pt;}
.ls4e{letter-spacing:1.893333pt;}
.ls29{letter-spacing:1.920000pt;}
.ls71{letter-spacing:1.946667pt;}
.ls4c{letter-spacing:1.973333pt;}
.ls28{letter-spacing:2.026667pt;}
.ls68{letter-spacing:2.048000pt;}
.ls47{letter-spacing:2.080000pt;}
.ls22{letter-spacing:2.133333pt;}
.ls41{letter-spacing:2.240000pt;}
.ls2c{letter-spacing:2.293333pt;}
.ls67{letter-spacing:2.346667pt;}
.ls77{letter-spacing:2.453333pt;}
.ls70{letter-spacing:2.506667pt;}
.ls3b{letter-spacing:2.560000pt;}
.ls65{letter-spacing:2.613333pt;}
.ls55{letter-spacing:2.666667pt;}
.ls53{letter-spacing:2.720000pt;}
.ls5b{letter-spacing:2.773333pt;}
.ls45{letter-spacing:2.826667pt;}
.ls5a{letter-spacing:2.880000pt;}
.ls44{letter-spacing:2.933333pt;}
.ls74{letter-spacing:3.040000pt;}
.ls79{letter-spacing:3.200000pt;}
.ls3c{letter-spacing:3.306667pt;}
.ls3e{letter-spacing:3.360000pt;}
.ls59{letter-spacing:3.840000pt;}
.ls1{letter-spacing:238.525333pt;}
.wsd2{word-spacing:-18.720000pt;}
.ws5e{word-spacing:-18.293333pt;}
.wsa1{word-spacing:-18.240000pt;}
.ws8e{word-spacing:-18.186667pt;}
.wsd3{word-spacing:-18.080000pt;}
.ws43{word-spacing:-17.813333pt;}
.ws60{word-spacing:-17.493333pt;}
.ws63{word-spacing:-17.333333pt;}
.wsa2{word-spacing:-17.280000pt;}
.ws8d{word-spacing:-17.173333pt;}
.ws45{word-spacing:-17.120000pt;}
.wsd1{word-spacing:-16.986667pt;}
.ws5c{word-spacing:-16.906667pt;}
.wsb0{word-spacing:-16.800000pt;}
.ws61{word-spacing:-16.746667pt;}
.ws42{word-spacing:-16.693333pt;}
.wsbc{word-spacing:-16.506667pt;}
.ws9f{word-spacing:-16.426667pt;}
.ws79{word-spacing:-16.373333pt;}
.ws5f{word-spacing:-16.320000pt;}
.ws5d{word-spacing:-16.160000pt;}
.ws46{word-spacing:-16.106667pt;}
.ws78{word-spacing:-16.000000pt;}
.ws44{word-spacing:-15.893333pt;}
.wsa0{word-spacing:-15.866667pt;}
.ws9e{word-spacing:-15.786667pt;}
.ws8f{word-spacing:-15.733333pt;}
.ws27{word-spacing:-15.680000pt;}
.ws9d{word-spacing:-15.573333pt;}
.ws7a{word-spacing:-15.520000pt;}
.ws64{word-spacing:-15.466667pt;}
.ws62{word-spacing:-15.253333pt;}
.ws47{word-spacing:-15.200000pt;}
.wse8{word-spacing:-13.920000pt;}
.ws16{word-spacing:-13.226667pt;}
.ws15{word-spacing:-12.928000pt;}
.ws7b{word-spacing:-12.373333pt;}
.ws0{word-spacing:-11.200000pt;}
.wsaa{word-spacing:-2.880000pt;}
.wsac{word-spacing:-2.773333pt;}
.ws35{word-spacing:-2.026667pt;}
.ws4c{word-spacing:-1.813333pt;}
.ws89{word-spacing:-1.706667pt;}
.wsc6{word-spacing:-1.546667pt;}
.wsc7{word-spacing:-1.493333pt;}
.wscb{word-spacing:-1.386667pt;}
.wsbf{word-spacing:-0.906667pt;}
.ws21{word-spacing:-0.853333pt;}
.wsf8{word-spacing:-0.816000pt;}
.wsdf{word-spacing:-0.800000pt;}
.ws100{word-spacing:-0.768000pt;}
.wse0{word-spacing:-0.746667pt;}
.ws19{word-spacing:-0.554667pt;}
.ws6b{word-spacing:-0.480000pt;}
.ws95{word-spacing:-0.320000pt;}
.ws82{word-spacing:-0.266667pt;}
.ws1{word-spacing:-0.253333pt;}
.ws72{word-spacing:-0.160000pt;}
.ws14{word-spacing:-0.128000pt;}
.ws2{word-spacing:0.000000pt;}
.wsd8{word-spacing:0.053333pt;}
.ws40{word-spacing:0.106667pt;}
.ws1d{word-spacing:0.213333pt;}
.ws8c{word-spacing:0.256000pt;}
.ws52{word-spacing:0.266667pt;}
.wsa8{word-spacing:0.373333pt;}
.ws8a{word-spacing:0.426667pt;}
.wsf2{word-spacing:0.528000pt;}
.wsdc{word-spacing:0.533333pt;}
.ws25{word-spacing:0.554667pt;}
.ws70{word-spacing:0.586667pt;}
.ws6f{word-spacing:0.640000pt;}
.ws9b{word-spacing:0.682667pt;}
.ws39{word-spacing:0.800000pt;}
.wsb6{word-spacing:0.853333pt;}
.wse3{word-spacing:0.906667pt;}
.ws24{word-spacing:1.066667pt;}
.ws1c{word-spacing:1.237333pt;}
.ws77{word-spacing:1.322667pt;}
.ws13{word-spacing:1.365333pt;}
.ws59{word-spacing:1.386667pt;}
.ws17{word-spacing:1.493333pt;}
.wsd6{word-spacing:1.546667pt;}
.ws3d{word-spacing:1.600000pt;}
.ws3c{word-spacing:1.653333pt;}
.wsd5{word-spacing:1.706667pt;}
.wse{word-spacing:1.834667pt;}
.ws18{word-spacing:1.866667pt;}
.wsb{word-spacing:1.877333pt;}
.ws9c{word-spacing:1.920000pt;}
.ws1a{word-spacing:2.048000pt;}
.wsf4{word-spacing:2.064000pt;}
.wsa5{word-spacing:2.080000pt;}
.ws11{word-spacing:2.090667pt;}
.wsf5{word-spacing:2.112000pt;}
.ws10{word-spacing:2.133333pt;}
.wsc8{word-spacing:2.160000pt;}
.wsf{word-spacing:2.293333pt;}
.ws3b{word-spacing:2.346667pt;}
.ws6{word-spacing:2.389333pt;}
.ws28{word-spacing:2.400000pt;}
.wsc{word-spacing:2.432000pt;}
.ws102{word-spacing:2.448000pt;}
.ws4e{word-spacing:2.453333pt;}
.ws20{word-spacing:2.474667pt;}
.ws2c{word-spacing:2.506667pt;}
.wsb8{word-spacing:2.560000pt;}
.ws4f{word-spacing:2.613333pt;}
.wsfd{word-spacing:2.640000pt;}
.ws50{word-spacing:2.666667pt;}
.wsf9{word-spacing:2.688000pt;}
.wsc2{word-spacing:2.720000pt;}
.wseb{word-spacing:2.736000pt;}
.wsa{word-spacing:2.773333pt;}
.wsea{word-spacing:2.784000pt;}
.ws3f{word-spacing:2.826667pt;}
.ws94{word-spacing:2.880000pt;}
.wsaf{word-spacing:2.933333pt;}
.wscf{word-spacing:2.944000pt;}
.wsff{word-spacing:2.976000pt;}
.ws2e{word-spacing:2.986667pt;}
.wsf7{word-spacing:3.024000pt;}
.wsc1{word-spacing:3.093333pt;}
.wsd0{word-spacing:3.114667pt;}
.wse9{word-spacing:3.120000pt;}
.wsa7{word-spacing:3.146667pt;}
.ws22{word-spacing:3.157333pt;}
.wsf6{word-spacing:3.168000pt;}
.ws66{word-spacing:3.200000pt;}
.ws101{word-spacing:3.216000pt;}
.ws71{word-spacing:3.253333pt;}
.ws65{word-spacing:3.306667pt;}
.wsfb{word-spacing:3.312000pt;}
.ws6d{word-spacing:3.360000pt;}
.wsc9{word-spacing:3.408000pt;}
.ws49{word-spacing:3.466667pt;}
.wsa9{word-spacing:3.520000pt;}
.wsf3{word-spacing:3.552000pt;}
.ws32{word-spacing:3.573333pt;}
.ws9{word-spacing:3.584000pt;}
.wsd{word-spacing:3.626667pt;}
.ws31{word-spacing:3.680000pt;}
.wsfe{word-spacing:3.744000pt;}
.ws1b{word-spacing:3.754667pt;}
.wse1{word-spacing:3.786667pt;}
.ws3a{word-spacing:3.840000pt;}
.ws2f{word-spacing:3.893333pt;}
.ws3{word-spacing:3.920000pt;}
.ws41{word-spacing:3.946667pt;}
.ws6a{word-spacing:4.053333pt;}
.ws1e{word-spacing:4.096000pt;}
.wsb2{word-spacing:4.106667pt;}
.ws26{word-spacing:4.138667pt;}
.ws7f{word-spacing:4.160000pt;}
.wsef{word-spacing:4.176000pt;}
.ws93{word-spacing:4.213333pt;}
.ws4{word-spacing:4.224000pt;}
.wsb5{word-spacing:4.266667pt;}
.wsee{word-spacing:4.272000pt;}
.ws29{word-spacing:4.320000pt;}
.ws92{word-spacing:4.373333pt;}
.ws12{word-spacing:4.394667pt;}
.ws104{word-spacing:4.416000pt;}
.wsa6{word-spacing:4.426667pt;}
.ws8{word-spacing:4.480000pt;}
.ws91{word-spacing:4.533333pt;}
.wsb7{word-spacing:4.586667pt;}
.ws103{word-spacing:4.608000pt;}
.ws85{word-spacing:4.640000pt;}
.ws37{word-spacing:4.693333pt;}
.ws97{word-spacing:4.746667pt;}
.ws23{word-spacing:4.821333pt;}
.ws55{word-spacing:4.853333pt;}
.ws69{word-spacing:4.906667pt;}
.wsed{word-spacing:4.944000pt;}
.ws74{word-spacing:4.960000pt;}
.wsfa{word-spacing:4.992000pt;}
.ws86{word-spacing:5.066667pt;}
.wsec{word-spacing:5.088000pt;}
.ws1f{word-spacing:5.120000pt;}
.ws81{word-spacing:5.226667pt;}
.ws5{word-spacing:5.280000pt;}
.ws4a{word-spacing:5.333333pt;}
.ws80{word-spacing:5.386667pt;}
.ws84{word-spacing:5.440000pt;}
.ws36{word-spacing:5.493333pt;}
.ws90{word-spacing:5.546667pt;}
.ws83{word-spacing:5.600000pt;}
.ws76{word-spacing:5.653333pt;}
.ws2b{word-spacing:5.706667pt;}
.ws7{word-spacing:5.760000pt;}
.wsf0{word-spacing:5.856000pt;}
.ws8b{word-spacing:5.866667pt;}
.ws2a{word-spacing:5.920000pt;}
.ws54{word-spacing:5.973333pt;}
.ws51{word-spacing:6.080000pt;}
.wsf1{word-spacing:6.096000pt;}
.wsc5{word-spacing:6.133333pt;}
.ws57{word-spacing:6.240000pt;}
.ws6c{word-spacing:6.293333pt;}
.ws7d{word-spacing:6.346667pt;}
.wsca{word-spacing:6.400000pt;}
.ws48{word-spacing:6.453333pt;}
.wsfc{word-spacing:6.528000pt;}
.wse7{word-spacing:6.560000pt;}
.wsd4{word-spacing:6.613333pt;}
.ws3e{word-spacing:6.666667pt;}
.ws6e{word-spacing:6.720000pt;}
.wsc0{word-spacing:6.773333pt;}
.ws7e{word-spacing:6.826667pt;}
.ws9a{word-spacing:6.880000pt;}
.wsc3{word-spacing:6.933333pt;}
.wse6{word-spacing:6.986667pt;}
.wsb4{word-spacing:7.093333pt;}
.ws58{word-spacing:7.146667pt;}
.wsae{word-spacing:7.253333pt;}
.wsb3{word-spacing:7.360000pt;}
.wsbe{word-spacing:7.413333pt;}
.ws75{word-spacing:7.466667pt;}
.ws4b{word-spacing:7.520000pt;}
.ws68{word-spacing:7.573333pt;}
.ws38{word-spacing:7.626667pt;}
.wsbd{word-spacing:7.680000pt;}
.ws88{word-spacing:7.733333pt;}
.ws30{word-spacing:7.840000pt;}
.ws4d{word-spacing:7.893333pt;}
.ws99{word-spacing:7.946667pt;}
.wsdd{word-spacing:8.000000pt;}
.ws87{word-spacing:8.053333pt;}
.wsad{word-spacing:8.106667pt;}
.ws73{word-spacing:8.160000pt;}
.ws34{word-spacing:8.213333pt;}
.wsce{word-spacing:8.266667pt;}
.ws7c{word-spacing:8.426667pt;}
.ws33{word-spacing:8.480000pt;}
.ws5a{word-spacing:8.533333pt;}
.wsa4{word-spacing:8.586667pt;}
.wsbb{word-spacing:8.640000pt;}
.wse5{word-spacing:8.746667pt;}
.wscc{word-spacing:8.853333pt;}
.ws2d{word-spacing:8.906667pt;}
.ws96{word-spacing:9.546667pt;}
.wsd9{word-spacing:9.600000pt;}
.wsba{word-spacing:9.706667pt;}
.wsdb{word-spacing:10.186667pt;}
.wsde{word-spacing:10.240000pt;}
.wse2{word-spacing:10.293333pt;}
.wscd{word-spacing:10.346667pt;}
.ws53{word-spacing:10.506667pt;}
.wsda{word-spacing:10.560000pt;}
.wsb1{word-spacing:10.720000pt;}
.wsb9{word-spacing:10.773333pt;}
.ws98{word-spacing:10.986667pt;}
.wsc4{word-spacing:11.093333pt;}
.wsab{word-spacing:11.840000pt;}
.ws67{word-spacing:11.893333pt;}
.ws5b{word-spacing:12.480000pt;}
.wsd7{word-spacing:12.533333pt;}
.wse4{word-spacing:12.906667pt;}
.ws56{word-spacing:13.386667pt;}
.wsa3{word-spacing:15.466667pt;}
._e{margin-left:-15.918933pt;}
._d{margin-left:-7.180800pt;}
._7{margin-left:-5.258667pt;}
._3{margin-left:-4.262400pt;}
._6{margin-left:-3.233067pt;}
._0{margin-left:-2.266667pt;}
._2{margin-left:-1.173333pt;}
._1{width:1.736533pt;}
._4{width:2.790400pt;}
._5{width:3.951467pt;}
._b{width:5.322133pt;}
._c{width:8.578133pt;}
._8{width:9.962133pt;}
._a{width:14.764267pt;}
._9{width:48.266667pt;}
.fs9{font-size:33.600000pt;}
.fs5{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs7{font-size:42.666667pt;}
.fs1{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:68.031467pt;}
.y63{bottom:105.826667pt;}
.y23{bottom:105.826800pt;}
.y137{bottom:105.826933pt;}
.y149{bottom:114.333867pt;}
.yac{bottom:117.826800pt;}
.y1ac{bottom:120.580267pt;}
.y89{bottom:120.791067pt;}
.y62{bottom:120.868800pt;}
.y16e{bottom:121.184933pt;}
.y22{bottom:125.491600pt;}
.y1e8{bottom:127.613733pt;}
.y148{bottom:129.000533pt;}
.y191{bottom:129.826800pt;}
.y1ab{bottom:135.246933pt;}
.y88{bottom:135.755600pt;}
.y61{bottom:135.910800pt;}
.y16d{bottom:136.543067pt;}
.yef{bottom:137.386000pt;}
.y21{bottom:137.597467pt;}
.y190{bottom:141.826800pt;}
.y147{bottom:143.667200pt;}
.yee{bottom:149.386000pt;}
.y1e7{bottom:149.400933pt;}
.y20{bottom:149.703333pt;}
.y1aa{bottom:149.913600pt;}
.y87{bottom:150.719867pt;}
.y60{bottom:150.952933pt;}
.y16c{bottom:151.901333pt;}
.yab{bottom:156.283467pt;}
.y121{bottom:157.000533pt;}
.yca{bottom:161.002267pt;}
.y1f{bottom:161.809067pt;}
.y1a9{bottom:164.580267pt;}
.y5f{bottom:165.994933pt;}
.y136{bottom:166.561200pt;}
.y16b{bottom:167.259467pt;}
.yed{bottom:168.945200pt;}
.yaa{bottom:171.101867pt;}
.y1e6{bottom:171.188000pt;}
.y113{bottom:171.191733pt;}
.y120{bottom:171.667200pt;}
.y1e{bottom:173.914933pt;}
.yc9{bottom:175.668933pt;}
.y146{bottom:176.781733pt;}
.y1a8{bottom:179.246933pt;}
.y18f{bottom:180.283467pt;}
.yec{bottom:180.945200pt;}
.y5e{bottom:181.036933pt;}
.y135{bottom:181.227867pt;}
.y16a{bottom:182.617733pt;}
.y86{bottom:184.132133pt;}
.ya9{bottom:185.920133pt;}
.y1d{bottom:186.020667pt;}
.y112{bottom:186.099867pt;}
.y11f{bottom:186.333867pt;}
.yc8{bottom:190.335600pt;}
.y1c1{bottom:190.771467pt;}
.y145{bottom:191.448400pt;}
.y1e5{bottom:192.975067pt;}
.y1a7{bottom:193.913600pt;}
.y134{bottom:195.894533pt;}
.y5d{bottom:196.079067pt;}
.y18e{bottom:197.476933pt;}
.y169{bottom:197.975867pt;}
.y1c{bottom:198.126533pt;}
.y85{bottom:199.096533pt;}
.y11e{bottom:201.000533pt;}
.y111{bottom:201.008000pt;}
.yc7{bottom:205.002267pt;}
.y1c0{bottom:205.438133pt;}
.y144{bottom:206.115067pt;}
.y1e4{bottom:207.203067pt;}
.y1a6{bottom:208.580267pt;}
.y1b{bottom:210.232267pt;}
.y133{bottom:210.561200pt;}
.y84{bottom:214.060933pt;}
.y18d{bottom:214.670267pt;}
.ya8{bottom:215.406667pt;}
.y11d{bottom:215.667200pt;}
.yeb{bottom:219.401867pt;}
.yc6{bottom:219.668933pt;}
.y1bf{bottom:220.104800pt;}
.y143{bottom:220.781733pt;}
.y1a{bottom:222.338133pt;}
.y132{bottom:225.227867pt;}
.y1e3{bottom:228.990133pt;}
.y83{bottom:229.025333pt;}
.y5c{bottom:229.568933pt;}
.y11c{bottom:230.333867pt;}
.y168{bottom:231.782000pt;}
.y18c{bottom:231.863733pt;}
.y110{bottom:234.364133pt;}
.y1be{bottom:234.771467pt;}
.yea{bottom:235.322533pt;}
.y142{bottom:235.448400pt;}
.y19{bottom:237.110533pt;}
.y1a5{bottom:241.694800pt;}
.y82{bottom:243.989733pt;}
.y5b{bottom:244.611067pt;}
.y167{bottom:247.140133pt;}
.yc5{bottom:249.002267pt;}
.y18b{bottom:249.057067pt;}
.y10f{bottom:249.272267pt;}
.y1bd{bottom:249.438133pt;}
.y141{bottom:250.115067pt;}
.y1e2{bottom:250.777200pt;}
.ye9{bottom:251.243067pt;}
.y1a4{bottom:256.361467pt;}
.y131{bottom:258.342400pt;}
.y81{bottom:258.954133pt;}
.ya7{bottom:259.558267pt;}
.y5a{bottom:259.653067pt;}
.y11b{bottom:259.668933pt;}
.y166{bottom:262.498267pt;}
.y1bc{bottom:264.104800pt;}
.y10e{bottom:264.180400pt;}
.y140{bottom:264.781733pt;}
.y1e1{bottom:265.005200pt;}
.y18a{bottom:266.250533pt;}
.ye8{bottom:267.163600pt;}
.y1a3{bottom:271.028133pt;}
.y130{bottom:273.009067pt;}
.y80{bottom:273.918533pt;}
.y11a{bottom:274.335600pt;}
.y59{bottom:274.695200pt;}
.y165{bottom:277.856533pt;}
.y1bb{bottom:278.771467pt;}
.y10d{bottom:279.088667pt;}
.y18{bottom:279.106933pt;}
.y1e0{bottom:279.233333pt;}
.y13f{bottom:279.448400pt;}
.ye7{bottom:283.084133pt;}
.y189{bottom:283.443867pt;}
.y1a2{bottom:285.694800pt;}
.y12f{bottom:287.675733pt;}
.y58{bottom:289.737200pt;}
.y164{bottom:293.214667pt;}
.y10c{bottom:293.996800pt;}
.y17{bottom:298.771867pt;}
.ye6{bottom:299.004667pt;}
.y1a1{bottom:300.361467pt;}
.y188{bottom:300.637333pt;}
.y1df{bottom:301.020400pt;}
.y12e{bottom:302.342400pt;}
.y7f{bottom:303.551333pt;}
.y57{bottom:304.779200pt;}
.ya6{bottom:307.489467pt;}
.y163{bottom:308.572933pt;}
.y13e{bottom:308.783467pt;}
.y10b{bottom:308.904933pt;}
.y16{bottom:310.877600pt;}
.y1ba{bottom:311.886000pt;}
.ye5{bottom:314.925200pt;}
.y1a0{bottom:315.028133pt;}
.y1de{bottom:315.248400pt;}
.y12d{bottom:317.009067pt;}
.y187{bottom:317.830667pt;}
.y13d{bottom:320.783467pt;}
.ya5{bottom:322.307733pt;}
.y15{bottom:322.983467pt;}
.y162{bottom:323.931067pt;}
.y1b9{bottom:326.552667pt;}
.y1dd{bottom:329.476400pt;}
.y19f{bottom:329.694800pt;}
.ye4{bottom:330.845733pt;}
.y14{bottom:335.089200pt;}
.ya4{bottom:337.126000pt;}
.y56{bottom:338.269200pt;}
.y10a{bottom:338.481467pt;}
.y161{bottom:339.289333pt;}
.y1b8{bottom:341.219333pt;}
.y12c{bottom:346.344133pt;}
.ye3{bottom:346.766267pt;}
.y13{bottom:347.195067pt;}
.y1dc{bottom:351.263467pt;}
.y7e{bottom:351.628533pt;}
.ya3{bottom:351.944267pt;}
.y55{bottom:353.311200pt;}
.y109{bottom:353.389733pt;}
.y186{bottom:353.472000pt;}
.y160{bottom:354.647467pt;}
.y1b7{bottom:355.886000pt;}
.y12{bottom:359.300800pt;}
.ye2{bottom:362.686800pt;}
.y19e{bottom:362.809333pt;}
.y1db{bottom:365.491600pt;}
.y7d{bottom:366.592933pt;}
.ya2{bottom:366.762533pt;}
.y54{bottom:368.353333pt;}
.y1b6{bottom:370.552667pt;}
.y185{bottom:370.665333pt;}
.y11{bottom:371.406667pt;}
.y19d{bottom:377.476000pt;}
.ye1{bottom:378.607467pt;}
.y1da{bottom:379.719600pt;}
.y7c{bottom:381.557333pt;}
.ya1{bottom:381.580800pt;}
.y53{bottom:383.395333pt;}
.y10{bottom:383.512400pt;}
.yc4{bottom:385.002267pt;}
.y1b5{bottom:385.219333pt;}
.y184{bottom:387.858800pt;}
.y15f{bottom:388.453600pt;}
.y12b{bottom:391.246933pt;}
.y19c{bottom:392.142667pt;}
.ye0{bottom:394.528000pt;}
.yf{bottom:395.618267pt;}
.y7b{bottom:396.521733pt;}
.y52{bottom:398.437467pt;}
.y1b4{bottom:399.886000pt;}
.y108{bottom:401.410667pt;}
.y1d9{bottom:401.506667pt;}
.y201{bottom:403.001733pt;}
.y15e{bottom:403.811733pt;}
.y183{bottom:405.052133pt;}
.y12a{bottom:405.913600pt;}
.y19b{bottom:406.809333pt;}
.ye{bottom:407.724133pt;}
.y7a{bottom:411.486133pt;}
.y51{bottom:413.479467pt;}
.ya0{bottom:414.846933pt;}
.y1d8{bottom:415.734667pt;}
.y107{bottom:416.318933pt;}
.y15d{bottom:419.170000pt;}
.yd{bottom:419.829867pt;}
.y129{bottom:420.580267pt;}
.y19a{bottom:421.476000pt;}
.yc3{bottom:422.115067pt;}
.y182{bottom:422.245467pt;}
.y200{bottom:423.894133pt;}
.y79{bottom:426.450533pt;}
.y50{bottom:428.521467pt;}
.ydf{bottom:428.896400pt;}
.y9f{bottom:429.665200pt;}
.y106{bottom:431.227067pt;}
.y1b3{bottom:433.000533pt;}
.y15c{bottom:434.528133pt;}
.y128{bottom:435.246933pt;}
.yc2{bottom:436.781733pt;}
.y1ff{bottom:437.227467pt;}
.y1d7{bottom:437.521733pt;}
.y181{bottom:439.438933pt;}
.y78{bottom:441.414933pt;}
.y4f{bottom:443.563600pt;}
.y119{bottom:443.668933pt;}
.y9e{bottom:444.483467pt;}
.yde{bottom:444.816933pt;}
.y105{bottom:446.135200pt;}
.y1b2{bottom:447.667200pt;}
.y15b{bottom:449.886400pt;}
.y127{bottom:449.913600pt;}
.y199{bottom:450.811067pt;}
.yc1{bottom:451.448400pt;}
.y1d6{bottom:451.749733pt;}
.y77{bottom:456.379333pt;}
.y1fe{bottom:458.119867pt;}
.y4e{bottom:458.605600pt;}
.ydd{bottom:460.737467pt;}
.y104{bottom:461.043467pt;}
.y1b1{bottom:462.333867pt;}
.y126{bottom:464.580267pt;}
.y15a{bottom:465.244533pt;}
.y1d5{bottom:465.977867pt;}
.yc0{bottom:466.115067pt;}
.y1fd{bottom:471.453200pt;}
.y4d{bottom:473.647733pt;}
.y180{bottom:475.080267pt;}
.y103{bottom:475.951600pt;}
.ydc{bottom:476.658000pt;}
.y1b0{bottom:477.000533pt;}
.y9d{bottom:477.749600pt;}
.y1d4{bottom:480.205867pt;}
.y159{bottom:480.602800pt;}
.ybf{bottom:480.781733pt;}
.y1fc{bottom:484.786533pt;}
.y4c{bottom:488.689733pt;}
.y76{bottom:489.791600pt;}
.y102{bottom:490.859733pt;}
.y1af{bottom:491.667200pt;}
.y17f{bottom:492.273600pt;}
.y9c{bottom:492.567867pt;}
.ydb{bottom:492.578667pt;}
.y125{bottom:493.915333pt;}
.ybe{bottom:495.448400pt;}
.y198{bottom:498.590533pt;}
.y1d3{bottom:501.992933pt;}
.y75{bottom:504.756000pt;}
.y1fb{bottom:505.678933pt;}
.y1ae{bottom:506.333867pt;}
.y9b{bottom:507.386133pt;}
.yc{bottom:508.368133pt;}
.yda{bottom:508.499200pt;}
.y124{bottom:508.582000pt;}
.y17e{bottom:509.467067pt;}
.ybd{bottom:510.115067pt;}
.y3a{bottom:511.441333pt;}
.y197{bottom:513.257200pt;}
.y158{bottom:514.408800pt;}
.y1d2{bottom:516.220933pt;}
.y1fa{bottom:519.012267pt;}
.y74{bottom:519.720400pt;}
.y123{bottom:520.582000pt;}
.y4b{bottom:522.179733pt;}
.y9a{bottom:522.204533pt;}
.yb{bottom:523.034800pt;}
.y101{bottom:524.215867pt;}
.yd9{bottom:524.419733pt;}
.ybc{bottom:524.781733pt;}
.y17d{bottom:526.660400pt;}
.y196{bottom:527.923867pt;}
.y157{bottom:529.767067pt;}
.y1d1{bottom:530.449067pt;}
.y39{bottom:531.000400pt;}
.y1f9{bottom:532.345600pt;}
.y73{bottom:534.684800pt;}
.y99{bottom:537.022800pt;}
.y4a{bottom:537.221733pt;}
.y100{bottom:539.124000pt;}
.ybb{bottom:539.448400pt;}
.yd8{bottom:540.340267pt;}
.y195{bottom:542.590533pt;}
.y38{bottom:543.000400pt;}
.y17c{bottom:543.853733pt;}
.y1d0{bottom:544.677067pt;}
.y156{bottom:545.125200pt;}
.y1f8{bottom:545.678933pt;}
.y72{bottom:549.649200pt;}
.ya{bottom:549.701467pt;}
.y98{bottom:551.840933pt;}
.y49{bottom:552.263733pt;}
.yff{bottom:554.032133pt;}
.y118{bottom:554.115067pt;}
.y37{bottom:555.000400pt;}
.y194{bottom:557.257200pt;}
.y155{bottom:560.483333pt;}
.y17b{bottom:561.047200pt;}
.y9{bottom:564.368133pt;}
.y71{bottom:564.613600pt;}
.y1cf{bottom:566.464133pt;}
.y1f7{bottom:566.571333pt;}
.y97{bottom:566.659200pt;}
.y36{bottom:567.000400pt;}
.y48{bottom:567.305867pt;}
.y117{bottom:568.781733pt;}
.yfe{bottom:568.940400pt;}
.yba{bottom:572.562933pt;}
.yd7{bottom:574.708667pt;}
.y154{bottom:575.841600pt;}
.y17a{bottom:578.240533pt;}
.y35{bottom:579.000400pt;}
.y8{bottom:579.034800pt;}
.y70{bottom:579.578000pt;}
.y1f6{bottom:579.904667pt;}
.y47{bottom:582.347867pt;}
.y116{bottom:583.448400pt;}
.yfd{bottom:583.848533pt;}
.y193{bottom:586.592267pt;}
.yb9{bottom:587.229600pt;}
.y1ce{bottom:588.251200pt;}
.yd6{bottom:590.629200pt;}
.y34{bottom:591.000400pt;}
.y153{bottom:591.199867pt;}
.y7{bottom:593.701467pt;}
.y13c{bottom:594.116800pt;}
.y179{bottom:595.434000pt;}
.y46{bottom:597.390000pt;}
.y115{bottom:598.115067pt;}
.y192{bottom:598.592267pt;}
.yfc{bottom:598.756667pt;}
.y96{bottom:599.925467pt;}
.y1f5{bottom:600.796933pt;}
.yb8{bottom:601.896267pt;}
.y1cd{bottom:602.479200pt;}
.y33{bottom:603.000400pt;}
.yd5{bottom:606.549867pt;}
.y45{bottom:612.432000pt;}
.y1ad{bottom:612.781733pt;}
.y6f{bottom:612.990267pt;}
.yfb{bottom:613.664933pt;}
.y1f4{bottom:614.130267pt;}
.y95{bottom:614.743733pt;}
.y32{bottom:615.000400pt;}
.yb7{bottom:616.562933pt;}
.y1cc{bottom:616.707333pt;}
.yd4{bottom:622.470400pt;}
.y152{bottom:625.005867pt;}
.y31{bottom:627.000400pt;}
.y178{bottom:627.295733pt;}
.y44{bottom:627.474133pt;}
.y6e{bottom:627.954667pt;}
.y6{bottom:628.368133pt;}
.yfa{bottom:628.573067pt;}
.y94{bottom:629.562000pt;}
.yb6{bottom:631.229600pt;}
.y1f3{bottom:635.022667pt;}
.yd3{bottom:638.390933pt;}
.y1cb{bottom:638.494400pt;}
.y30{bottom:639.000400pt;}
.y151{bottom:640.364133pt;}
.y43{bottom:642.516133pt;}
.y6d{bottom:642.919067pt;}
.y177{bottom:643.155733pt;}
.yf9{bottom:643.481200pt;}
.y93{bottom:644.380267pt;}
.y5{bottom:645.701467pt;}
.yb5{bottom:645.896267pt;}
.y1f2{bottom:648.356000pt;}
.y1ca{bottom:652.722400pt;}
.yd2{bottom:654.311467pt;}
.y150{bottom:655.722267pt;}
.y6c{bottom:657.883467pt;}
.y176{bottom:659.015867pt;}
.y92{bottom:659.198533pt;}
.yb4{bottom:660.562933pt;}
.y1f1{bottom:661.689333pt;}
.y1c9{bottom:666.950400pt;}
.yd1{bottom:670.232000pt;}
.y14f{bottom:671.080533pt;}
.y6b{bottom:672.847867pt;}
.y91{bottom:674.016800pt;}
.y4{bottom:674.373333pt;}
.y175{bottom:674.875867pt;}
.y1f0{bottom:675.022667pt;}
.yb3{bottom:675.229600pt;}
.y42{bottom:676.006000pt;}
.yf8{bottom:676.837333pt;}
.y2f{bottom:680.785200pt;}
.y1c8{bottom:681.178400pt;}
.yd0{bottom:686.152533pt;}
.y14e{bottom:686.438667pt;}
.y6a{bottom:687.812133pt;}
.y90{bottom:688.835067pt;}
.yb2{bottom:689.896267pt;}
.y174{bottom:690.735867pt;}
.y41{bottom:691.048133pt;}
.yf7{bottom:691.745467pt;}
.y1ef{bottom:695.915067pt;}
.y3{bottom:698.373333pt;}
.y2e{bottom:700.344267pt;}
.ycf{bottom:702.073067pt;}
.y69{bottom:702.776667pt;}
.y1c7{bottom:702.965467pt;}
.y8f{bottom:703.653333pt;}
.yb1{bottom:704.562933pt;}
.y40{bottom:706.090133pt;}
.yf6{bottom:706.653600pt;}
.y2d{bottom:712.344267pt;}
.y14d{bottom:716.465200pt;}
.y1ee{bottom:716.807467pt;}
.y68{bottom:717.741067pt;}
.y8e{bottom:718.471600pt;}
.y13b{bottom:719.229600pt;}
.y114{bottom:719.231333pt;}
.y3f{bottom:721.132267pt;}
.yf5{bottom:721.561867pt;}
.y2{bottom:722.373333pt;}
.y2c{bottom:724.344267pt;}
.y1c6{bottom:724.752667pt;}
.y173{bottom:725.043867pt;}
.y1ed{bottom:730.140800pt;}
.y67{bottom:732.705467pt;}
.y13a{bottom:733.896267pt;}
.y3e{bottom:736.174267pt;}
.y2b{bottom:736.344267pt;}
.yf4{bottom:736.470000pt;}
.yb0{bottom:737.677600pt;}
.y1c5{bottom:738.980667pt;}
.y172{bottom:742.237333pt;}
.yce{bottom:747.328667pt;}
.y66{bottom:747.669733pt;}
.y2a{bottom:748.344267pt;}
.y139{bottom:748.562933pt;}
.y1ec{bottom:751.033200pt;}
.y3d{bottom:751.216267pt;}
.yf3{bottom:751.378133pt;}
.y8d{bottom:751.737733pt;}
.yaf{bottom:752.344267pt;}
.y171{bottom:759.430667pt;}
.y29{bottom:760.344267pt;}
.y1c4{bottom:760.767733pt;}
.y65{bottom:762.634133pt;}
.y138{bottom:763.229600pt;}
.ycd{bottom:763.249200pt;}
.y1eb{bottom:764.366533pt;}
.y14c{bottom:764.936267pt;}
.y3c{bottom:766.258400pt;}
.yf2{bottom:766.286267pt;}
.y8c{bottom:766.556133pt;}
.yae{bottom:767.010933pt;}
.y28{bottom:772.344267pt;}
.y1c3{bottom:774.995733pt;}
.y170{bottom:776.624133pt;}
.ycc{bottom:779.169733pt;}
.y14b{bottom:780.294400pt;}
.yf1{bottom:781.194533pt;}
.y8b{bottom:781.374400pt;}
.yad{bottom:781.677600pt;}
.y27{bottom:784.344267pt;}
.y1ea{bottom:785.258933pt;}
.y1c2{bottom:789.223733pt;}
.y16f{bottom:793.817467pt;}
.ycb{bottom:795.090267pt;}
.y14a{bottom:795.652667pt;}
.y3b{bottom:795.968800pt;}
.y64{bottom:796.046533pt;}
.yf0{bottom:796.102667pt;}
.y8a{bottom:796.192667pt;}
.y26{bottom:796.344267pt;}
.y1e9{bottom:798.592267pt;}
.y25{bottom:811.010933pt;}
.y122{bottom:811.925600pt;}
.y24{bottom:853.957733pt;}
.h7{height:33.376000pt;}
.h9{height:37.290667pt;}
.hd{height:38.144000pt;}
.h3{height:40.528000pt;}
.h10{height:41.856000pt;}
.h12{height:41.952000pt;}
.h6{height:42.912000pt;}
.h2{height:45.296000pt;}
.h11{height:45.878400pt;}
.he{height:46.506667pt;}
.h8{height:46.613333pt;}
.hb{height:47.680000pt;}
.ha{height:48.160000pt;}
.hf{height:50.975467pt;}
.hc{height:50.976000pt;}
.h5{height:52.448000pt;}
.h4{height:77.056000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x2{left:90.708667pt;}
.x6{left:98.267733pt;}
.xc{left:100.553600pt;}
.xe{left:102.903333pt;}
.x5{left:113.385867pt;}
.x8{left:120.944933pt;}
.x11{left:135.283600pt;}
.xa{left:137.386000pt;}
.x9{left:140.241467pt;}
.x14{left:162.109867pt;}
.x13{left:173.350400pt;}
.x3{left:196.535467pt;}
.x12{left:281.632933pt;}
.xd{left:294.507467pt;}
.xf{left:296.041467pt;}
.xb{left:299.513867pt;}
.x10{left:302.066533pt;}
.x7{left:419.114667pt;}
.x4{left:460.066800pt;}
.x1{left:530.820400pt;}
}




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