
    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_0c7928b717aec7ad2b80164b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_e1bc232a9891142bfee22410.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.212000;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_1a00dc3cd94a017b45f7888d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.830000;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_d1dc59f261ce72b1c4c64600.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.212000;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_9d5507caf174f818226d6d07.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.052000;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_04cf7658dec7fc1c8a2197a3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.197000;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_e6e214b3b64178541982212e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.044000;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_e5bf735840363baaf967307d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.105000;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_dacbd053af14c7cc2fadf179.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.212000;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_c7086a6ddac82310cd894fe2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.052000;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_b32af8a2443847e52fb432b5.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.197000;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_b32b8fc5356501e4527fa157.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.104980;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_ba049c10f2af3fb54a0b3210.woff2')format("woff");}.fff{font-family:fff;line-height:1.202000;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_36c23ad401c64a44080d5503.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.680176;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_fe15316d97a019c7edfa0598.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.052000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.980600px;}
.ls1{letter-spacing:-0.600000px;}
.lsb{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.162000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000300px;}
.ls3{letter-spacing:0.000480px;}
.ls5{letter-spacing:0.009600px;}
.ls1c{letter-spacing:0.054000px;}
.ls18{letter-spacing:0.270000px;}
.ls1d{letter-spacing:0.324000px;}
.ls1b{letter-spacing:0.351000px;}
.ls8{letter-spacing:0.378000px;}
.ls9{letter-spacing:0.432000px;}
.ls1f{letter-spacing:0.486000px;}
.ls1a{letter-spacing:0.594000px;}
.ls2{letter-spacing:0.600000px;}
.lsf{letter-spacing:0.756000px;}
.ls7{letter-spacing:0.864000px;}
.lse{letter-spacing:0.972000px;}
.ls11{letter-spacing:1.188000px;}
.ls10{letter-spacing:1.242000px;}
.lsa{letter-spacing:1.296000px;}
.ls12{letter-spacing:1.323000px;}
.ls19{letter-spacing:1.350000px;}
.ls22{letter-spacing:1.566000px;}
.ls1e{letter-spacing:1.728000px;}
.ls20{letter-spacing:1.836000px;}
.ls6{letter-spacing:1.890000px;}
.ls13{letter-spacing:1.998000px;}
.ls16{letter-spacing:2.160000px;}
.ls17{letter-spacing:2.214000px;}
.ls14{letter-spacing:2.376000px;}
.ls21{letter-spacing:2.484000px;}
.ls15{letter-spacing:2.646000px;}
.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;}
}
.ws68{word-spacing:-60.000000px;}
.wse5{word-spacing:-16.578000px;}
.wse4{word-spacing:-16.416000px;}
.wsd0{word-spacing:-16.092000px;}
.ws4c{word-spacing:-16.020000px;}
.wse3{word-spacing:-14.769000px;}
.ws1{word-spacing:-14.418000px;}
.wscf{word-spacing:-13.878000px;}
.ws4d{word-spacing:-9.339660px;}
.wsde{word-spacing:-7.668000px;}
.ws21{word-spacing:-4.860000px;}
.ws17{word-spacing:-4.680000px;}
.ws3f{word-spacing:-4.440000px;}
.ws1f{word-spacing:-3.780000px;}
.wsc0{word-spacing:-3.240000px;}
.wsad{word-spacing:-3.060000px;}
.ws2a{word-spacing:-3.000000px;}
.wsd3{word-spacing:-2.940000px;}
.ws67{word-spacing:-2.820000px;}
.ws37{word-spacing:-2.760000px;}
.ws32{word-spacing:-2.700000px;}
.wsd{word-spacing:-2.580000px;}
.ws14{word-spacing:-2.460000px;}
.wsc1{word-spacing:-2.340000px;}
.ws4a{word-spacing:-2.280000px;}
.ws66{word-spacing:-2.040000px;}
.wse{word-spacing:-1.860000px;}
.wsac{word-spacing:-1.800000px;}
.ws81{word-spacing:-1.680000px;}
.ws33{word-spacing:-1.620000px;}
.ws4b{word-spacing:-1.560000px;}
.ws46{word-spacing:-1.440000px;}
.ws28{word-spacing:-1.380000px;}
.wsd7{word-spacing:-1.320000px;}
.ws54{word-spacing:-1.260000px;}
.ws3a{word-spacing:-1.200000px;}
.ws36{word-spacing:-1.140000px;}
.ws38{word-spacing:-1.080000px;}
.ws80{word-spacing:-1.020000px;}
.ws5c{word-spacing:-0.960000px;}
.ws45{word-spacing:-0.900000px;}
.ws4f{word-spacing:-0.840000px;}
.ws72{word-spacing:-0.780000px;}
.ws65{word-spacing:-0.660000px;}
.ws44{word-spacing:-0.540000px;}
.wsd6{word-spacing:-0.480000px;}
.wsf8{word-spacing:-0.324000px;}
.ws6a{word-spacing:-0.300000px;}
.ws52{word-spacing:-0.240000px;}
.ws63{word-spacing:-0.180000px;}
.wsa6{word-spacing:-0.108000px;}
.ws49{word-spacing:-0.060000px;}
.wsdb{word-spacing:-0.054000px;}
.ws0{word-spacing:0.000000px;}
.wsae{word-spacing:0.060000px;}
.ws3d{word-spacing:0.120000px;}
.wsf3{word-spacing:0.216000px;}
.ws29{word-spacing:0.240000px;}
.wsf0{word-spacing:0.270000px;}
.ws55{word-spacing:0.300000px;}
.wsf2{word-spacing:0.324000px;}
.ws30{word-spacing:0.360000px;}
.wsdd{word-spacing:0.378000px;}
.wsf5{word-spacing:0.432000px;}
.ws73{word-spacing:0.480000px;}
.wsf6{word-spacing:0.486000px;}
.wsdc{word-spacing:0.540000px;}
.ws62{word-spacing:0.600000px;}
.ws15{word-spacing:0.660000px;}
.ws31{word-spacing:0.720000px;}
.wse7{word-spacing:0.756000px;}
.wsab{word-spacing:0.780000px;}
.wse0{word-spacing:0.810000px;}
.wsfb{word-spacing:0.864000px;}
.ws13{word-spacing:0.900000px;}
.wse1{word-spacing:0.918000px;}
.ws24{word-spacing:0.960000px;}
.ws47{word-spacing:1.020000px;}
.ws39{word-spacing:1.080000px;}
.wse9{word-spacing:1.188000px;}
.wsd2{word-spacing:1.200000px;}
.wse8{word-spacing:1.242000px;}
.wsea{word-spacing:1.296000px;}
.ws22{word-spacing:1.320000px;}
.wse2{word-spacing:1.350000px;}
.ws20{word-spacing:1.380000px;}
.wsf1{word-spacing:1.404000px;}
.ws34{word-spacing:1.440000px;}
.ws6e{word-spacing:1.500000px;}
.ws2c{word-spacing:1.560000px;}
.wsfa{word-spacing:1.620000px;}
.ws43{word-spacing:1.680000px;}
.wsf4{word-spacing:1.728000px;}
.ws53{word-spacing:1.740000px;}
.wsc{word-spacing:1.860000px;}
.wsdf{word-spacing:1.890000px;}
.ws2d{word-spacing:1.920000px;}
.wsee{word-spacing:1.944000px;}
.ws64{word-spacing:1.980000px;}
.wseb{word-spacing:1.998000px;}
.ws57{word-spacing:2.040000px;}
.ws2f{word-spacing:2.100000px;}
.ws71{word-spacing:2.160000px;}
.wsef{word-spacing:2.214000px;}
.ws8{word-spacing:2.220000px;}
.ws2b{word-spacing:2.280000px;}
.wsec{word-spacing:2.322000px;}
.ws5a{word-spacing:2.340000px;}
.wsf7{word-spacing:2.484000px;}
.ws3{word-spacing:2.520000px;}
.wsed{word-spacing:2.592000px;}
.ws5b{word-spacing:2.700000px;}
.ws6b{word-spacing:2.880000px;}
.ws5d{word-spacing:2.940000px;}
.ws56{word-spacing:3.120000px;}
.ws1b{word-spacing:3.180000px;}
.wsf{word-spacing:3.540000px;}
.ws42{word-spacing:3.780000px;}
.ws6d{word-spacing:3.840000px;}
.ws3b{word-spacing:3.960000px;}
.ws70{word-spacing:4.020000px;}
.ws5f{word-spacing:4.140000px;}
.ws35{word-spacing:4.200000px;}
.ws75{word-spacing:4.260000px;}
.ws58{word-spacing:4.320000px;}
.ws59{word-spacing:4.380000px;}
.ws60{word-spacing:4.500000px;}
.ws16{word-spacing:4.560000px;}
.ws23{word-spacing:4.620000px;}
.ws76{word-spacing:4.680000px;}
.wsaa{word-spacing:4.800000px;}
.wsd8{word-spacing:4.920000px;}
.ws48{word-spacing:5.040000px;}
.ws3e{word-spacing:5.400000px;}
.ws5e{word-spacing:5.520000px;}
.wsd5{word-spacing:5.580000px;}
.ws61{word-spacing:5.640000px;}
.wsaf{word-spacing:5.700000px;}
.wsda{word-spacing:5.760000px;}
.wsb{word-spacing:5.880000px;}
.ws10{word-spacing:6.000000px;}
.ws74{word-spacing:6.060000px;}
.ws4{word-spacing:6.120000px;}
.ws6{word-spacing:6.180000px;}
.ws1a{word-spacing:6.360000px;}
.ws5{word-spacing:6.420000px;}
.ws18{word-spacing:6.540000px;}
.ws1c{word-spacing:6.600000px;}
.ws3c{word-spacing:6.720000px;}
.wsd4{word-spacing:6.780000px;}
.ws51{word-spacing:6.960000px;}
.wsd9{word-spacing:7.020000px;}
.ws6c{word-spacing:7.200000px;}
.ws26{word-spacing:7.320000px;}
.ws50{word-spacing:7.440000px;}
.ws6f{word-spacing:7.620000px;}
.ws27{word-spacing:7.860000px;}
.ws41{word-spacing:8.040000px;}
.ws19{word-spacing:8.400000px;}
.wsa{word-spacing:8.460000px;}
.ws12{word-spacing:9.786000px;}
.ws1e{word-spacing:10.260000px;}
.ws25{word-spacing:11.580000px;}
.ws40{word-spacing:12.060000px;}
.ws9{word-spacing:16.500000px;}
.ws7{word-spacing:19.020000px;}
.ws1d{word-spacing:29.580000px;}
.wsbb{word-spacing:116.962200px;}
.wsca{word-spacing:125.520600px;}
.wsbd{word-spacing:126.925200px;}
.wscc{word-spacing:129.328200px;}
.ws7d{word-spacing:131.946000px;}
.ws88{word-spacing:133.465200px;}
.wsa3{word-spacing:138.040200px;}
.ws89{word-spacing:139.837200px;}
.wsb2{word-spacing:140.733000px;}
.wsb0{word-spacing:149.184600px;}
.ws7b{word-spacing:152.314200px;}
.ws99{word-spacing:153.643800px;}
.ws7e{word-spacing:153.681000px;}
.wsc4{word-spacing:156.128400px;}
.ws9b{word-spacing:158.611800px;}
.ws8e{word-spacing:158.962200px;}
.wsa4{word-spacing:165.202200px;}
.ws77{word-spacing:166.003200px;}
.wsc6{word-spacing:170.465400px;}
.ws8a{word-spacing:182.992200px;}
.ws90{word-spacing:189.652200px;}
.ws91{word-spacing:198.426600px;}
.ws97{word-spacing:212.014800px;}
.ws86{word-spacing:216.462600px;}
.wsc2{word-spacing:221.869200px;}
.ws93{word-spacing:224.786400px;}
.wsc9{word-spacing:226.638600px;}
.wsba{word-spacing:227.041200px;}
.wsa8{word-spacing:242.013000px;}
.wsc8{word-spacing:244.781400px;}
.ws82{word-spacing:251.130600px;}
.wsb9{word-spacing:252.040800px;}
.wsc3{word-spacing:254.268600px;}
.ws9d{word-spacing:254.302200px;}
.wsb5{word-spacing:265.343400px;}
.wsb7{word-spacing:265.828800px;}
.wsa7{word-spacing:268.175400px;}
.wsa1{word-spacing:268.638600px;}
.wsb4{word-spacing:277.341600px;}
.ws9f{word-spacing:294.368400px;}
.ws84{word-spacing:319.153800px;}
.wsb8{word-spacing:323.757600px;}
.wsa2{word-spacing:331.064400px;}
.ws8d{word-spacing:333.804000px;}
.ws87{word-spacing:334.993800px;}
.ws7a{word-spacing:353.888400px;}
.wsb3{word-spacing:354.824400px;}
.ws79{word-spacing:356.840400px;}
.wsa0{word-spacing:360.171600px;}
.wsbe{word-spacing:366.703800px;}
.ws95{word-spacing:368.975400px;}
.ws8c{word-spacing:372.269400px;}
.ws85{word-spacing:373.922400px;}
.ws98{word-spacing:380.684400px;}
.ws96{word-spacing:391.410000px;}
.wsc7{word-spacing:396.116400px;}
.ws9c{word-spacing:409.128600px;}
.wscd{word-spacing:411.432000px;}
.ws7c{word-spacing:414.261600px;}
.ws8f{word-spacing:433.699200px;}
.wsb6{word-spacing:563.823600px;}
.ws9e{word-spacing:565.262400px;}
.ws83{word-spacing:580.721400px;}
.ws94{word-spacing:642.854400px;}
.ws78{word-spacing:679.212600px;}
.ws8b{word-spacing:685.420800px;}
.wsb1{word-spacing:727.537800px;}
.wsbc{word-spacing:739.241400px;}
.wscb{word-spacing:754.400400px;}
.wsc5{word-spacing:765.773400px;}
.ws9a{word-spacing:766.676400px;}
.wsf9{word-spacing:2494.638000px;}
.wsbf{word-spacing:2494.692000px;}
.wse6{word-spacing:2496.798000px;}
.wsd1{word-spacing:2497.554000px;}
.wsce{word-spacing:2511.324000px;}
.ws7f{word-spacing:2511.594000px;}
.wsa5{word-spacing:2511.810000px;}
.wsa9{word-spacing:2511.864000px;}
.ws4e{word-spacing:2511.918000px;}
.ws69{word-spacing:2511.972000px;}
.ws2e{word-spacing:2514.078000px;}
.ws11{word-spacing:2514.834000px;}
.ws92{word-spacing:2516.400000px;}
.ws2{word-spacing:2528.604000px;}
._66{margin-left:-14.520000px;}
._65{margin-left:-13.260000px;}
._0{margin-left:-9.786000px;}
._67{margin-left:-8.699400px;}
._1{margin-left:-6.000000px;}
._9c{margin-left:-2.911800px;}
._3{margin-left:-1.011000px;}
._68{width:1.047600px;}
._9b{width:8.440800px;}
._2{width:44.299200px;}
._6{width:120.748800px;}
._30{width:127.126800px;}
._41{width:136.378200px;}
._80{width:146.419200px;}
._3e{width:149.303400px;}
._87{width:152.638800px;}
._9a{width:153.736800px;}
._5d{width:154.862400px;}
._20{width:156.145200px;}
._96{width:157.417200px;}
._26{width:160.222200px;}
._2c{width:161.437800px;}
._38{width:163.018800px;}
._28{width:164.623200px;}
._5c{width:166.821600px;}
._59{width:168.036600px;}
._23{width:169.186200px;}
._11{width:170.556000px;}
._62{width:172.573800px;}
._76{width:177.372000px;}
._58{width:179.136000px;}
._e{width:180.789000px;}
._8c{width:182.642400px;}
._17{width:184.750200px;}
._b{width:186.351600px;}
._22{width:188.788800px;}
._4b{width:191.254800px;}
._8f{width:192.375600px;}
._48{width:193.955400px;}
._7f{width:195.786000px;}
._14{width:196.908000px;}
._71{width:202.495200px;}
._1c{width:203.661600px;}
._53{width:207.914400px;}
._35{width:211.359600px;}
._3a{width:213.681600px;}
._12{width:217.011000px;}
._18{width:220.277400px;}
._98{width:225.703200px;}
._4c{width:229.390200px;}
._51{width:231.468000px;}
._2f{width:237.280800px;}
._47{width:239.068800px;}
._1f{width:241.519800px;}
._36{width:253.901400px;}
._6a{width:258.540000px;}
._70{width:260.383200px;}
._57{width:261.997800px;}
._1b{width:263.371800px;}
._5{width:265.329600px;}
._52{width:274.001400px;}
._86{width:275.548200px;}
._91{width:279.821400px;}
._d{width:281.178600px;}
._21{width:282.294600px;}
._5a{width:285.757800px;}
._3c{width:287.785800px;}
._69{width:290.262000px;}
._24{width:292.366800px;}
._84{width:296.340600px;}
._45{width:297.793800px;}
._78{width:302.535600px;}
._61{width:310.410000px;}
._7d{width:311.621400px;}
._2b{width:313.663200px;}
._95{width:315.450600px;}
._c{width:317.586000px;}
._2a{width:318.880200px;}
._77{width:320.080200px;}
._4{width:324.277800px;}
._85{width:326.403600px;}
._60{width:327.553800px;}
._46{width:331.710000px;}
._49{width:333.609600px;}
._90{width:335.528400px;}
._2e{width:337.033200px;}
._34{width:339.253800px;}
._89{width:342.226800px;}
._f{width:343.829400px;}
._6c{width:347.631000px;}
._a{width:352.512000px;}
._6e{width:354.387600px;}
._40{width:356.825400px;}
._16{width:359.408400px;}
._93{width:362.619600px;}
._4f{width:367.764600px;}
._50{width:371.315400px;}
._64{width:379.231800px;}
._75{width:383.152800px;}
._7b{width:386.829000px;}
._79{width:388.530000px;}
._7e{width:390.122400px;}
._1e{width:394.078800px;}
._33{width:397.200600px;}
._6f{width:400.531200px;}
._9{width:402.839400px;}
._55{width:407.281200px;}
._3d{width:409.264800px;}
._3b{width:411.742800px;}
._5f{width:413.520600px;}
._29{width:416.431200px;}
._8{width:417.833400px;}
._1a{width:421.671000px;}
._74{width:423.275400px;}
._83{width:427.084800px;}
._56{width:438.283800px;}
._43{width:447.518400px;}
._44{width:450.972000px;}
._8e{width:452.142000px;}
._32{width:455.699400px;}
._15{width:468.191400px;}
._4e{width:475.321200px;}
._7c{width:491.004000px;}
._5b{width:499.491000px;}
._25{width:501.394800px;}
._81{width:521.216400px;}
._72{width:530.275200px;}
._97{width:533.783400px;}
._8b{width:536.570400px;}
._4a{width:557.939400px;}
._7a{width:584.532000px;}
._10{width:592.515600px;}
._37{width:595.240800px;}
._8a{width:617.058000px;}
._6d{width:618.160800px;}
._94{width:629.796000px;}
._82{width:640.988400px;}
._73{width:644.161800px;}
._27{width:665.959800px;}
._92{width:667.164000px;}
._99{width:670.861800px;}
._5e{width:672.749400px;}
._8d{width:674.540400px;}
._6b{width:677.101800px;}
._1d{width:693.769200px;}
._54{width:706.823400px;}
._88{width:710.181000px;}
._4d{width:712.865400px;}
._2d{width:736.807800px;}
._63{width:753.668400px;}
._42{width:755.200800px;}
._39{width:757.537800px;}
._13{width:779.031600px;}
._7{width:785.754600px;}
._31{width:800.629200px;}
._19{width:831.438600px;}
._3f{width:837.916800px;}
.fc3{color:rgb(112,111,111);}
.fc1{color:rgb(225,120,45);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:34.980000px;}
.fs6{font-size:36.000000px;}
.fs4{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:96.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y25{bottom:29.184000px;}
.y24{bottom:44.184000px;}
.y23{bottom:68.472750px;}
.y5{bottom:97.125005px;}
.y133{bottom:129.494550px;}
.y81{bottom:130.475400px;}
.y135{bottom:133.746450px;}
.y1ac{bottom:134.029350px;}
.y46{bottom:138.954600px;}
.y22{bottom:139.264499px;}
.yac{bottom:142.366650px;}
.y100{bottom:142.423500px;}
.y172{bottom:143.392350px;}
.y154{bottom:146.104950px;}
.y1db{bottom:147.102300px;}
.y80{bottom:148.475400px;}
.y1ab{bottom:150.229350px;}
.y134{bottom:151.746450px;}
.yd9{bottom:151.862850px;}
.y132{bottom:155.998500px;}
.y45{bottom:156.954600px;}
.yab{bottom:160.366650px;}
.y1da{bottom:163.302300px;}
.y17f{bottom:164.502300px;}
.y7f{bottom:166.475400px;}
.yff{bottom:168.927300px;}
.yd8{bottom:169.862850px;}
.y171{bottom:169.896300px;}
.y1aa{bottom:174.933300px;}
.y44{bottom:174.954600px;}
.y153{bottom:177.287550px;}
.yaa{bottom:178.366650px;}
.y1d9{bottom:179.502300px;}
.y7e{bottom:184.475400px;}
.yd7{bottom:187.862850px;}
.y131{bottom:191.006250px;}
.y43{bottom:192.954600px;}
.yfe{bottom:195.431250px;}
.ya9{bottom:196.366650px;}
.y170{bottom:196.400250px;}
.y19{bottom:196.933500px;}
.y1a9{bottom:199.637250px;}
.y7d{bottom:202.475400px;}
.y1d8{bottom:204.206250px;}
.yd6{bottom:205.862850px;}
.y152{bottom:208.470300px;}
.y17e{bottom:209.041050px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y42{bottom:210.954600px;}
.y16f{bottom:214.400250px;}
.y1a8{bottom:215.837250px;}
.y1d7{bottom:220.406250px;}
.y7c{bottom:220.475400px;}
.yfd{bottom:221.935200px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.ya8{bottom:222.870600px;}
.yd5{bottom:223.862850px;}
.y41{bottom:228.954600px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y130{bottom:235.545000px;}
.y17d{bottom:240.223800px;}
.y1a7{bottom:240.541200px;}
.ya7{bottom:240.870600px;}
.yd4{bottom:241.862850px;}
.y1d6{bottom:245.110200px;}
.y40{bottom:246.954600px;}
.y7b{bottom:246.979350px;}
.yfc{bottom:248.439150px;}
.y16e{bottom:253.660050px;}
.y1a6{bottom:256.741200px;}
.ya6{bottom:258.870600px;}
.yd3{bottom:259.862850px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y1d5{bottom:261.310200px;}
.y3f{bottom:264.954600px;}
.y7a{bottom:264.979350px;}
.y12f{bottom:266.727750px;}
.y151{bottom:270.835800px;}
.y17c{bottom:271.406550px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.yfb{bottom:274.943100px;}
.yd2{bottom:277.862850px;}
.y1a5{bottom:281.445150px;}
.y3e{bottom:282.954600px;}
.y79{bottom:282.979350px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.ya5{bottom:285.374700px;}
.y1d4{bottom:286.014150px;}
.yfa{bottom:292.943100px;}
.y1a4{bottom:297.645150px;}
.y12e{bottom:297.910500px;}
.y16d{bottom:298.198950px;}
.y3d{bottom:300.954600px;}
.y150{bottom:302.018400px;}
.y1d3{bottom:302.214150px;}
.y17b{bottom:302.589300px;}
.ya4{bottom:303.374700px;}
.yd1{bottom:304.366650px;}
.y78{bottom:309.483300px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.yf9{bottom:310.943100px;}
.y3c{bottom:318.954600px;}
.ya3{bottom:321.374700px;}
.y1a3{bottom:322.349100px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y1d2{bottom:326.918100px;}
.y77{bottom:327.483300px;}
.yf8{bottom:328.943100px;}
.y12d{bottom:329.093100px;}
.y16c{bottom:329.381550px;}
.yd0{bottom:330.870600px;}
.y14f{bottom:333.201150px;}
.y17a{bottom:333.771900px;}
.y3b{bottom:336.954600px;}
.y1a2{bottom:338.548950px;}
.ya2{bottom:339.374700px;}
.y1d1{bottom:343.118100px;}
.y76{bottom:345.483300px;}
.yf7{bottom:346.943100px;}
.y117{bottom:347.975400px;}
.y10{bottom:348.133500px;}
.ycf{bottom:348.870600px;}
.y1a1{bottom:354.749100px;}
.y3a{bottom:354.954600px;}
.ya1{bottom:357.374550px;}
.y1d0{bottom:359.318100px;}
.y12c{bottom:360.275850px;}
.y16b{bottom:360.564300px;}
.yf6{bottom:364.943100px;}
.y179{bottom:364.954650px;}
.yce{bottom:366.870600px;}
.y75{bottom:371.987250px;}
.y39{bottom:372.954600px;}
.y116{bottom:374.479350px;}
.y14e{bottom:377.514750px;}
.yf5{bottom:382.943100px;}
.ya0{bottom:383.878500px;}
.y1cf{bottom:384.022050px;}
.yf{bottom:386.785499px;}
.y1a0{bottom:387.956850px;}
.y12b{bottom:391.458600px;}
.y16a{bottom:391.747050px;}
.ycd{bottom:393.374550px;}
.y178{bottom:396.137400px;}
.y38{bottom:399.458550px;}
.y1ce{bottom:400.222050px;}
.y9f{bottom:401.878500px;}
.ye{bottom:408.044999px;}
.yf4{bottom:409.447050px;}
.y115{bottom:413.739150px;}
.y14d{bottom:414.974550px;}
.y9e{bottom:419.878500px;}
.y12a{bottom:422.641350px;}
.y169{bottom:422.929800px;}
.y1cd{bottom:424.926000px;}
.yf3{bottom:427.447050px;}
.y74{bottom:427.602900px;}
.y9d{bottom:437.878500px;}
.y1cc{bottom:441.126000px;}
.y14c{bottom:441.478500px;}
.y19f{bottom:444.224550px;}
.yf2{bottom:445.447050px;}
.ycc{bottom:448.990350px;}
.y73{bottom:454.106850px;}
.y168{bottom:454.112400px;}
.y9c{bottom:455.878500px;}
.y114{bottom:458.278050px;}
.y177{bottom:458.502750px;}
.y19e{bottom:462.224550px;}
.yf1{bottom:463.447050px;}
.y1cb{bottom:465.829950px;}
.ycb{bottom:466.990350px;}
.y37{bottom:467.674200px;}
.y14b{bottom:467.982450px;}
.y9b{bottom:473.878500px;}
.y19d{bottom:480.224550px;}
.y1ca{bottom:482.029950px;}
.yd{bottom:484.864502px;}
.yca{bottom:484.990350px;}
.y129{bottom:485.006700px;}
.y167{bottom:485.295150px;}
.y36{bottom:488.126250px;}
.y113{bottom:489.460650px;}
.y176{bottom:489.685500px;}
.yf0{bottom:489.951000px;}
.y14a{bottom:494.486400px;}
.y9a{bottom:500.382450px;}
.yc{bottom:502.864502px;}
.yc9{bottom:502.990350px;}
.y19c{bottom:506.728650px;}
.y1c9{bottom:506.733900px;}
.yef{bottom:507.951000px;}
.y35{bottom:508.578150px;}
.y72{bottom:510.374550px;}
.y149{bottom:512.486400px;}
.y128{bottom:516.189450px;}
.y112{bottom:520.643400px;}
.yb{bottom:520.864502px;}
.y175{bottom:520.868250px;}
.yc8{bottom:520.990350px;}
.y1c8{bottom:522.933900px;}
.yee{bottom:525.951000px;}
.y148{bottom:530.486400px;}
.y34{bottom:530.830050px;}
.y19b{bottom:533.232450px;}
.y71{bottom:536.878500px;}
.ya{bottom:538.864499px;}
.yc7{bottom:538.990350px;}
.yed{bottom:543.951000px;}
.y127{bottom:547.372200px;}
.y1c7{bottom:547.637850px;}
.y166{bottom:547.660650px;}
.y147{bottom:548.486400px;}
.y111{bottom:551.826150px;}
.y99{bottom:555.998250px;}
.y9{bottom:556.864499px;}
.yc6{bottom:556.990350px;}
.yec{bottom:561.951000px;}
.y1c6{bottom:563.837700px;}
.y174{bottom:565.181850px;}
.y70{bottom:565.834500px;}
.y146{bottom:566.486400px;}
.y98{bottom:573.998250px;}
.y165{bottom:578.843250px;}
.yeb{bottom:579.951000px;}
.y33{bottom:582.193950px;}
.y110{bottom:583.008750px;}
.yc5{bottom:583.494300px;}
.y6f{bottom:583.834500px;}
.y145{bottom:584.486400px;}
.y1c5{bottom:588.541650px;}
.y19a{bottom:588.848250px;}
.y126{bottom:591.685800px;}
.y97{bottom:591.998250px;}
.yea{bottom:597.951000px;}
.yc4{bottom:601.494300px;}
.y6e{bottom:601.834500px;}
.y173{bottom:602.641650px;}
.y32{bottom:602.645850px;}
.y1c4{bottom:604.741650px;}
.y199{bottom:606.848250px;}
.y96{bottom:609.998250px;}
.y164{bottom:610.026000px;}
.y144{bottom:610.990350px;}
.y10f{bottom:614.191500px;}
.ye9{bottom:615.951000px;}
.yc3{bottom:619.494300px;}
.y6d{bottom:619.834500px;}
.y31{bottom:623.097900px;}
.y198{bottom:624.848250px;}
.y95{bottom:627.998250px;}
.y143{bottom:628.990350px;}
.y125{bottom:629.145600px;}
.y1c3{bottom:629.445600px;}
.yc2{bottom:637.494300px;}
.y6c{bottom:637.834500px;}
.y163{bottom:641.208750px;}
.ye8{bottom:642.454950px;}
.y197{bottom:642.848250px;}
.y30{bottom:645.349800px;}
.y10e{bottom:645.374250px;}
.y8{bottom:645.510000px;}
.y1c2{bottom:645.645600px;}
.y94{bottom:645.998250px;}
.y142{bottom:646.990350px;}
.yc1{bottom:655.494300px;}
.y124{bottom:655.649550px;}
.y6b{bottom:655.834500px;}
.ye7{bottom:660.454950px;}
.y196{bottom:660.848250px;}
.y141{bottom:664.990350px;}
.y7{bottom:666.771000px;}
.y1c1{bottom:670.349550px;}
.y162{bottom:672.391500px;}
.y93{bottom:672.502200px;}
.yc0{bottom:673.494300px;}
.y6a{bottom:673.834500px;}
.y195{bottom:678.848250px;}
.y1c0{bottom:686.549550px;}
.ye6{bottom:686.958900px;}
.y92{bottom:690.502200px;}
.ybf{bottom:691.494300px;}
.y69{bottom:691.834500px;}
.y123{bottom:694.909350px;}
.y2f{bottom:696.713550px;}
.y194{bottom:696.848250px;}
.y10d{bottom:707.739600px;}
.y91{bottom:708.502200px;}
.ybe{bottom:709.494300px;}
.y68{bottom:709.834500px;}
.y1bf{bottom:711.253500px;}
.ye5{bottom:713.462850px;}
.y193{bottom:714.848250px;}
.y161{bottom:716.704950px;}
.y2e{bottom:717.165600px;}
.y6{bottom:726.298500px;}
.y90{bottom:726.502200px;}
.y1be{bottom:727.453500px;}
.ybd{bottom:727.494300px;}
.y67{bottom:727.834500px;}
.y192{bottom:732.848250px;}
.y140{bottom:735.998250px;}
.y2d{bottom:737.617500px;}
.y10c{bottom:738.922350px;}
.y122{bottom:739.448250px;}
.ye4{bottom:739.966800px;}
.ybc{bottom:745.494300px;}
.y66{bottom:745.834500px;}
.y1bd{bottom:752.157450px;}
.y4{bottom:752.599495px;}
.y8f{bottom:753.006150px;}
.y13f{bottom:753.998250px;}
.y160{bottom:754.164900px;}
.y191{bottom:759.352200px;}
.y2c{bottom:759.869550px;}
.y65{bottom:763.834500px;}
.ye3{bottom:766.470750px;}
.y1bc{bottom:768.357450px;}
.y10b{bottom:770.105100px;}
.y121{bottom:770.630850px;}
.y8e{bottom:771.006150px;}
.ybb{bottom:771.998250px;}
.y190{bottom:777.352200px;}
.y13e{bottom:780.502200px;}
.y15f{bottom:780.668700px;}
.y64{bottom:781.834500px;}
.y8d{bottom:789.006150px;}
.yba{bottom:789.998250px;}
.ye2{bottom:792.974550px;}
.y1bb{bottom:793.061400px;}
.y18f{bottom:795.352200px;}
.y13d{bottom:798.502200px;}
.y63{bottom:799.834500px;}
.y120{bottom:801.813600px;}
.y8c{bottom:807.006150px;}
.y15e{bottom:807.172650px;}
.yb9{bottom:807.998250px;}
.y2b{bottom:811.233300px;}
.y18e{bottom:813.352200px;}
.y10a{bottom:814.418700px;}
.y13c{bottom:816.502200px;}
.y1ba{bottom:817.765350px;}
.y62{bottom:817.834500px;}
.ye1{bottom:819.478500px;}
.y8b{bottom:825.006150px;}
.yb8{bottom:825.998250px;}
.y18d{bottom:831.352200px;}
.y2a{bottom:831.685200px;}
.y11f{bottom:832.996350px;}
.y15d{bottom:833.676600px;}
.y1b9{bottom:833.965350px;}
.y13b{bottom:834.502200px;}
.y61{bottom:835.834500px;}
.y8a{bottom:843.006150px;}
.ye0{bottom:845.982450px;}
.y18c{bottom:849.352200px;}
.y15c{bottom:851.676600px;}
.y109{bottom:851.878650px;}
.y29{bottom:852.137250px;}
.yb7{bottom:852.502200px;}
.y60{bottom:853.834500px;}
.y1b8{bottom:858.669300px;}
.y11e{bottom:864.178950px;}
.y89{bottom:869.509950px;}
.yb6{bottom:870.502200px;}
.y5f{bottom:871.834500px;}
.ydf{bottom:872.486400px;}
.y28{bottom:874.389150px;}
.y1b7{bottom:874.869300px;}
.y18b{bottom:875.856150px;}
.y15b{bottom:878.180550px;}
.y108{bottom:878.382450px;}
.y13a{bottom:879.006150px;}
.y3{bottom:879.369000px;}
.y88{bottom:887.509950px;}
.yb5{bottom:888.502200px;}
.y5e{bottom:889.834500px;}
.y18a{bottom:893.856150px;}
.y11d{bottom:895.361700px;}
.y139{bottom:897.006150px;}
.yde{bottom:898.990350px;}
.y1b6{bottom:899.573250px;}
.y107{bottom:904.886400px;}
.y87{bottom:905.509950px;}
.yb4{bottom:906.502200px;}
.y189{bottom:911.856150px;}
.y138{bottom:915.006150px;}
.y1b5{bottom:915.773250px;}
.y5d{bottom:916.338450px;}
.y27{bottom:917.249100px;}
.y15a{bottom:917.440500px;}
.y106{bottom:922.886400px;}
.y86{bottom:923.509950px;}
.ydd{bottom:925.494300px;}
.y11c{bottom:926.544450px;}
.y188{bottom:929.856150px;}
.y1b4{bottom:931.973250px;}
.yb3{bottom:933.006150px;}
.y105{bottom:940.886400px;}
.y85{bottom:941.509950px;}
.y2{bottom:945.126001px;}
.y187{bottom:947.856150px;}
.yb2{bottom:951.006150px;}
.ydc{bottom:951.998250px;}
.y1b3{bottom:956.677200px;}
.y26{bottom:957.005100px;}
.y104{bottom:958.886400px;}
.y84{bottom:959.509950px;}
.y159{bottom:961.979250px;}
.y186{bottom:965.856150px;}
.y1{bottom:966.726000px;}
.y5c{bottom:968.354100px;}
.yb1{bottom:969.006150px;}
.y1b2{bottom:972.877200px;}
.y137{bottom:977.509950px;}
.ydb{bottom:978.502200px;}
.y103{bottom:985.390350px;}
.y83{bottom:986.014050px;}
.yb0{bottom:987.006150px;}
.y11b{bottom:988.909950px;}
.y185{bottom:992.360100px;}
.y5b{bottom:993.058050px;}
.y158{bottom:993.161850px;}
.y136{bottom:995.509950px;}
.y1b1{bottom:997.581150px;}
.y82{bottom:1004.014050px;}
.yda{bottom:1005.006150px;}
.y184{bottom:1010.360100px;}
.yaf{bottom:1013.509950px;}
.y1b0{bottom:1013.781150px;}
.y11a{bottom:1020.092550px;}
.y5a{bottom:1022.014050px;}
.y157{bottom:1024.344600px;}
.y183{bottom:1028.360100px;}
.yae{bottom:1031.509950px;}
.y51{bottom:1035.715800px;}
.y1af{bottom:1038.485100px;}
.y59{bottom:1040.014050px;}
.y102{bottom:1041.006150px;}
.y182{bottom:1046.360100px;}
.yad{bottom:1049.509950px;}
.y50{bottom:1050.115950px;}
.y119{bottom:1051.275300px;}
.y1ae{bottom:1054.685100px;}
.y156{bottom:1055.527350px;}
.y58{bottom:1058.014050px;}
.y181{bottom:1064.360100px;}
.y4f{bottom:1064.515800px;}
.y101{bottom:1067.509950px;}
.y57{bottom:1076.014050px;}
.y4e{bottom:1078.915800px;}
.y1ad{bottom:1079.389050px;}
.y155{bottom:1086.709950px;}
.y180{bottom:1090.864050px;}
.y4d{bottom:1093.315950px;}
.y56{bottom:1094.014050px;}
.y118{bottom:1095.588900px;}
.y4c{bottom:1107.715800px;}
.y4b{bottom:1122.115950px;}
.y52{bottom:1134.707850px;}
.y4a{bottom:1136.515800px;}
.y49{bottom:1150.915800px;}
.y53{bottom:1151.716650px;}
.y48{bottom:1165.315800px;}
.y47{bottom:1179.715800px;}
.y54{bottom:1180.812300px;}
.y55{bottom:1197.820200px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.hc{height:33.912000px;}
.h13{height:37.536000px;}
.h15{height:38.808000px;}
.h14{height:39.564000px;}
.h12{height:45.216000px;}
.h7{height:45.960000px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h18{height:49.896000px;}
.hb{height:50.868000px;}
.h16{height:52.704000px;}
.h2{height:55.152000px;}
.h10{height:56.520000px;}
.h11{height:58.560000px;}
.hf{height:67.824000px;}
.h17{height:70.272000px;}
.he{height:74.112000px;}
.h5{height:78.132000px;}
.hd{height:88.704000px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.ha{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:89.291250px;}
.x5{left:91.417350px;}
.x6{left:93.499950px;}
.x19{left:97.795200px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x29{left:110.551200px;}
.x16{left:119.055150px;}
.x13{left:131.811000px;}
.x20{left:140.314950px;}
.x27{left:153.639300px;}
.x25{left:163.325400px;}
.x4{left:203.484001px;}
.x14{left:214.500900px;}
.x21{left:219.423600px;}
.x1c{left:221.017350px;}
.x17{left:222.839100px;}
.x23{left:281.023500px;}
.x1a{left:288.436650px;}
.x1b{left:296.752950px;}
.x1f{left:297.815850px;}
.x22{left:301.536300px;}
.x24{left:302.599500px;}
.x28{left:305.788500px;}
.x26{left:307.382850px;}
.x1e{left:310.571850px;}
.x18{left:318.972900px;}
.x1d{left:321.734100px;}
.x9{left:437.116650px;}
.x3{left:454.959000px;}
.xf{left:518.040600px;}
.xa{left:533.261100px;}
.x11{left:536.635950px;}
.xd{left:538.201650px;}
.xc{left:551.787000px;}
.xe{left:594.374400px;}
.x15{left:597.681300px;}
.xb{left:609.049200px;}
.x8{left:615.308100px;}
.x12{left:653.814750px;}
.x10{left:679.423500px;}
@media print{
.v1{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.760533pt;}
.ls1{letter-spacing:-0.533333pt;}
.lsb{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.144000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000267pt;}
.ls3{letter-spacing:0.000427pt;}
.ls5{letter-spacing:0.008533pt;}
.ls1c{letter-spacing:0.048000pt;}
.ls18{letter-spacing:0.240000pt;}
.ls1d{letter-spacing:0.288000pt;}
.ls1b{letter-spacing:0.312000pt;}
.ls8{letter-spacing:0.336000pt;}
.ls9{letter-spacing:0.384000pt;}
.ls1f{letter-spacing:0.432000pt;}
.ls1a{letter-spacing:0.528000pt;}
.ls2{letter-spacing:0.533333pt;}
.lsf{letter-spacing:0.672000pt;}
.ls7{letter-spacing:0.768000pt;}
.lse{letter-spacing:0.864000pt;}
.ls11{letter-spacing:1.056000pt;}
.ls10{letter-spacing:1.104000pt;}
.lsa{letter-spacing:1.152000pt;}
.ls12{letter-spacing:1.176000pt;}
.ls19{letter-spacing:1.200000pt;}
.ls22{letter-spacing:1.392000pt;}
.ls1e{letter-spacing:1.536000pt;}
.ls20{letter-spacing:1.632000pt;}
.ls6{letter-spacing:1.680000pt;}
.ls13{letter-spacing:1.776000pt;}
.ls16{letter-spacing:1.920000pt;}
.ls17{letter-spacing:1.968000pt;}
.ls14{letter-spacing:2.112000pt;}
.ls21{letter-spacing:2.208000pt;}
.ls15{letter-spacing:2.352000pt;}
.ws68{word-spacing:-53.333333pt;}
.wse5{word-spacing:-14.736000pt;}
.wse4{word-spacing:-14.592000pt;}
.wsd0{word-spacing:-14.304000pt;}
.ws4c{word-spacing:-14.240000pt;}
.wse3{word-spacing:-13.128000pt;}
.ws1{word-spacing:-12.816000pt;}
.wscf{word-spacing:-12.336000pt;}
.ws4d{word-spacing:-8.301920pt;}
.wsde{word-spacing:-6.816000pt;}
.ws21{word-spacing:-4.320000pt;}
.ws17{word-spacing:-4.160000pt;}
.ws3f{word-spacing:-3.946667pt;}
.ws1f{word-spacing:-3.360000pt;}
.wsc0{word-spacing:-2.880000pt;}
.wsad{word-spacing:-2.720000pt;}
.ws2a{word-spacing:-2.666667pt;}
.wsd3{word-spacing:-2.613333pt;}
.ws67{word-spacing:-2.506667pt;}
.ws37{word-spacing:-2.453333pt;}
.ws32{word-spacing:-2.400000pt;}
.wsd{word-spacing:-2.293333pt;}
.ws14{word-spacing:-2.186667pt;}
.wsc1{word-spacing:-2.080000pt;}
.ws4a{word-spacing:-2.026667pt;}
.ws66{word-spacing:-1.813333pt;}
.wse{word-spacing:-1.653333pt;}
.wsac{word-spacing:-1.600000pt;}
.ws81{word-spacing:-1.493333pt;}
.ws33{word-spacing:-1.440000pt;}
.ws4b{word-spacing:-1.386667pt;}
.ws46{word-spacing:-1.280000pt;}
.ws28{word-spacing:-1.226667pt;}
.wsd7{word-spacing:-1.173333pt;}
.ws54{word-spacing:-1.120000pt;}
.ws3a{word-spacing:-1.066667pt;}
.ws36{word-spacing:-1.013333pt;}
.ws38{word-spacing:-0.960000pt;}
.ws80{word-spacing:-0.906667pt;}
.ws5c{word-spacing:-0.853333pt;}
.ws45{word-spacing:-0.800000pt;}
.ws4f{word-spacing:-0.746667pt;}
.ws72{word-spacing:-0.693333pt;}
.ws65{word-spacing:-0.586667pt;}
.ws44{word-spacing:-0.480000pt;}
.wsd6{word-spacing:-0.426667pt;}
.wsf8{word-spacing:-0.288000pt;}
.ws6a{word-spacing:-0.266667pt;}
.ws52{word-spacing:-0.213333pt;}
.ws63{word-spacing:-0.160000pt;}
.wsa6{word-spacing:-0.096000pt;}
.ws49{word-spacing:-0.053333pt;}
.wsdb{word-spacing:-0.048000pt;}
.ws0{word-spacing:0.000000pt;}
.wsae{word-spacing:0.053333pt;}
.ws3d{word-spacing:0.106667pt;}
.wsf3{word-spacing:0.192000pt;}
.ws29{word-spacing:0.213333pt;}
.wsf0{word-spacing:0.240000pt;}
.ws55{word-spacing:0.266667pt;}
.wsf2{word-spacing:0.288000pt;}
.ws30{word-spacing:0.320000pt;}
.wsdd{word-spacing:0.336000pt;}
.wsf5{word-spacing:0.384000pt;}
.ws73{word-spacing:0.426667pt;}
.wsf6{word-spacing:0.432000pt;}
.wsdc{word-spacing:0.480000pt;}
.ws62{word-spacing:0.533333pt;}
.ws15{word-spacing:0.586667pt;}
.ws31{word-spacing:0.640000pt;}
.wse7{word-spacing:0.672000pt;}
.wsab{word-spacing:0.693333pt;}
.wse0{word-spacing:0.720000pt;}
.wsfb{word-spacing:0.768000pt;}
.ws13{word-spacing:0.800000pt;}
.wse1{word-spacing:0.816000pt;}
.ws24{word-spacing:0.853333pt;}
.ws47{word-spacing:0.906667pt;}
.ws39{word-spacing:0.960000pt;}
.wse9{word-spacing:1.056000pt;}
.wsd2{word-spacing:1.066667pt;}
.wse8{word-spacing:1.104000pt;}
.wsea{word-spacing:1.152000pt;}
.ws22{word-spacing:1.173333pt;}
.wse2{word-spacing:1.200000pt;}
.ws20{word-spacing:1.226667pt;}
.wsf1{word-spacing:1.248000pt;}
.ws34{word-spacing:1.280000pt;}
.ws6e{word-spacing:1.333333pt;}
.ws2c{word-spacing:1.386667pt;}
.wsfa{word-spacing:1.440000pt;}
.ws43{word-spacing:1.493333pt;}
.wsf4{word-spacing:1.536000pt;}
.ws53{word-spacing:1.546667pt;}
.wsc{word-spacing:1.653333pt;}
.wsdf{word-spacing:1.680000pt;}
.ws2d{word-spacing:1.706667pt;}
.wsee{word-spacing:1.728000pt;}
.ws64{word-spacing:1.760000pt;}
.wseb{word-spacing:1.776000pt;}
.ws57{word-spacing:1.813333pt;}
.ws2f{word-spacing:1.866667pt;}
.ws71{word-spacing:1.920000pt;}
.wsef{word-spacing:1.968000pt;}
.ws8{word-spacing:1.973333pt;}
.ws2b{word-spacing:2.026667pt;}
.wsec{word-spacing:2.064000pt;}
.ws5a{word-spacing:2.080000pt;}
.wsf7{word-spacing:2.208000pt;}
.ws3{word-spacing:2.240000pt;}
.wsed{word-spacing:2.304000pt;}
.ws5b{word-spacing:2.400000pt;}
.ws6b{word-spacing:2.560000pt;}
.ws5d{word-spacing:2.613333pt;}
.ws56{word-spacing:2.773333pt;}
.ws1b{word-spacing:2.826667pt;}
.wsf{word-spacing:3.146667pt;}
.ws42{word-spacing:3.360000pt;}
.ws6d{word-spacing:3.413333pt;}
.ws3b{word-spacing:3.520000pt;}
.ws70{word-spacing:3.573333pt;}
.ws5f{word-spacing:3.680000pt;}
.ws35{word-spacing:3.733333pt;}
.ws75{word-spacing:3.786667pt;}
.ws58{word-spacing:3.840000pt;}
.ws59{word-spacing:3.893333pt;}
.ws60{word-spacing:4.000000pt;}
.ws16{word-spacing:4.053333pt;}
.ws23{word-spacing:4.106667pt;}
.ws76{word-spacing:4.160000pt;}
.wsaa{word-spacing:4.266667pt;}
.wsd8{word-spacing:4.373333pt;}
.ws48{word-spacing:4.480000pt;}
.ws3e{word-spacing:4.800000pt;}
.ws5e{word-spacing:4.906667pt;}
.wsd5{word-spacing:4.960000pt;}
.ws61{word-spacing:5.013333pt;}
.wsaf{word-spacing:5.066667pt;}
.wsda{word-spacing:5.120000pt;}
.wsb{word-spacing:5.226667pt;}
.ws10{word-spacing:5.333333pt;}
.ws74{word-spacing:5.386667pt;}
.ws4{word-spacing:5.440000pt;}
.ws6{word-spacing:5.493333pt;}
.ws1a{word-spacing:5.653333pt;}
.ws5{word-spacing:5.706667pt;}
.ws18{word-spacing:5.813333pt;}
.ws1c{word-spacing:5.866667pt;}
.ws3c{word-spacing:5.973333pt;}
.wsd4{word-spacing:6.026667pt;}
.ws51{word-spacing:6.186667pt;}
.wsd9{word-spacing:6.240000pt;}
.ws6c{word-spacing:6.400000pt;}
.ws26{word-spacing:6.506667pt;}
.ws50{word-spacing:6.613333pt;}
.ws6f{word-spacing:6.773333pt;}
.ws27{word-spacing:6.986667pt;}
.ws41{word-spacing:7.146667pt;}
.ws19{word-spacing:7.466667pt;}
.wsa{word-spacing:7.520000pt;}
.ws12{word-spacing:8.698667pt;}
.ws1e{word-spacing:9.120000pt;}
.ws25{word-spacing:10.293333pt;}
.ws40{word-spacing:10.720000pt;}
.ws9{word-spacing:14.666667pt;}
.ws7{word-spacing:16.906667pt;}
.ws1d{word-spacing:26.293333pt;}
.wsbb{word-spacing:103.966400pt;}
.wsca{word-spacing:111.573867pt;}
.wsbd{word-spacing:112.822400pt;}
.wscc{word-spacing:114.958400pt;}
.ws7d{word-spacing:117.285333pt;}
.ws88{word-spacing:118.635733pt;}
.wsa3{word-spacing:122.702400pt;}
.ws89{word-spacing:124.299733pt;}
.wsb2{word-spacing:125.096000pt;}
.wsb0{word-spacing:132.608533pt;}
.ws7b{word-spacing:135.390400pt;}
.ws99{word-spacing:136.572267pt;}
.ws7e{word-spacing:136.605333pt;}
.wsc4{word-spacing:138.780800pt;}
.ws9b{word-spacing:140.988267pt;}
.ws8e{word-spacing:141.299733pt;}
.wsa4{word-spacing:146.846400pt;}
.ws77{word-spacing:147.558400pt;}
.wsc6{word-spacing:151.524800pt;}
.ws8a{word-spacing:162.659733pt;}
.ws90{word-spacing:168.579733pt;}
.ws91{word-spacing:176.379200pt;}
.ws97{word-spacing:188.457600pt;}
.ws86{word-spacing:192.411200pt;}
.wsc2{word-spacing:197.217067pt;}
.ws93{word-spacing:199.810133pt;}
.wsc9{word-spacing:201.456533pt;}
.wsba{word-spacing:201.814400pt;}
.wsa8{word-spacing:215.122667pt;}
.wsc8{word-spacing:217.583467pt;}
.ws82{word-spacing:223.227200pt;}
.wsb9{word-spacing:224.036267pt;}
.wsc3{word-spacing:226.016533pt;}
.ws9d{word-spacing:226.046400pt;}
.wsb5{word-spacing:235.860800pt;}
.wsb7{word-spacing:236.292267pt;}
.wsa7{word-spacing:238.378133pt;}
.wsa1{word-spacing:238.789867pt;}
.wsb4{word-spacing:246.525867pt;}
.ws9f{word-spacing:261.660800pt;}
.ws84{word-spacing:283.692267pt;}
.wsb8{word-spacing:287.784533pt;}
.wsa2{word-spacing:294.279467pt;}
.ws8d{word-spacing:296.714667pt;}
.ws87{word-spacing:297.772267pt;}
.ws7a{word-spacing:314.567467pt;}
.wsb3{word-spacing:315.399467pt;}
.ws79{word-spacing:317.191467pt;}
.wsa0{word-spacing:320.152533pt;}
.wsbe{word-spacing:325.958933pt;}
.ws95{word-spacing:327.978133pt;}
.ws8c{word-spacing:330.906133pt;}
.ws85{word-spacing:332.375467pt;}
.ws98{word-spacing:338.386133pt;}
.ws96{word-spacing:347.920000pt;}
.wsc7{word-spacing:352.103467pt;}
.ws9c{word-spacing:363.669867pt;}
.wscd{word-spacing:365.717333pt;}
.ws7c{word-spacing:368.232533pt;}
.ws8f{word-spacing:385.510400pt;}
.wsb6{word-spacing:501.176533pt;}
.ws9e{word-spacing:502.455467pt;}
.ws83{word-spacing:516.196800pt;}
.ws94{word-spacing:571.426133pt;}
.ws78{word-spacing:603.744533pt;}
.ws8b{word-spacing:609.262933pt;}
.wsb1{word-spacing:646.700267pt;}
.wsbc{word-spacing:657.103467pt;}
.wscb{word-spacing:670.578133pt;}
.wsc5{word-spacing:680.687467pt;}
.ws9a{word-spacing:681.490133pt;}
.wsf9{word-spacing:2217.456000pt;}
.wsbf{word-spacing:2217.504000pt;}
.wse6{word-spacing:2219.376000pt;}
.wsd1{word-spacing:2220.048000pt;}
.wsce{word-spacing:2232.288000pt;}
.ws7f{word-spacing:2232.528000pt;}
.wsa5{word-spacing:2232.720000pt;}
.wsa9{word-spacing:2232.768000pt;}
.ws4e{word-spacing:2232.816000pt;}
.ws69{word-spacing:2232.864000pt;}
.ws2e{word-spacing:2234.736000pt;}
.ws11{word-spacing:2235.408000pt;}
.ws92{word-spacing:2236.800000pt;}
.ws2{word-spacing:2247.648000pt;}
._66{margin-left:-12.906667pt;}
._65{margin-left:-11.786667pt;}
._0{margin-left:-8.698667pt;}
._67{margin-left:-7.732800pt;}
._1{margin-left:-5.333333pt;}
._9c{margin-left:-2.588267pt;}
._3{margin-left:-0.898667pt;}
._68{width:0.931200pt;}
._9b{width:7.502933pt;}
._2{width:39.377067pt;}
._6{width:107.332267pt;}
._30{width:113.001600pt;}
._41{width:121.225067pt;}
._80{width:130.150400pt;}
._3e{width:132.714133pt;}
._87{width:135.678933pt;}
._9a{width:136.654933pt;}
._5d{width:137.655467pt;}
._20{width:138.795733pt;}
._96{width:139.926400pt;}
._26{width:142.419733pt;}
._2c{width:143.500267pt;}
._38{width:144.905600pt;}
._28{width:146.331733pt;}
._5c{width:148.285867pt;}
._59{width:149.365867pt;}
._23{width:150.387733pt;}
._11{width:151.605333pt;}
._62{width:153.398933pt;}
._76{width:157.664000pt;}
._58{width:159.232000pt;}
._e{width:160.701333pt;}
._8c{width:162.348800pt;}
._17{width:164.222400pt;}
._b{width:165.645867pt;}
._22{width:167.812267pt;}
._4b{width:170.004267pt;}
._8f{width:171.000533pt;}
._48{width:172.404800pt;}
._7f{width:174.032000pt;}
._14{width:175.029333pt;}
._71{width:179.995733pt;}
._1c{width:181.032533pt;}
._53{width:184.812800pt;}
._35{width:187.875200pt;}
._3a{width:189.939200pt;}
._12{width:192.898667pt;}
._18{width:195.802133pt;}
._98{width:200.625067pt;}
._4c{width:203.902400pt;}
._51{width:205.749333pt;}
._2f{width:210.916267pt;}
._47{width:212.505600pt;}
._1f{width:214.684267pt;}
._36{width:225.690133pt;}
._6a{width:229.813333pt;}
._70{width:231.451733pt;}
._57{width:232.886933pt;}
._1b{width:234.108267pt;}
._5{width:235.848533pt;}
._52{width:243.556800pt;}
._86{width:244.931733pt;}
._91{width:248.730133pt;}
._d{width:249.936533pt;}
._21{width:250.928533pt;}
._5a{width:254.006933pt;}
._3c{width:255.809600pt;}
._69{width:258.010667pt;}
._24{width:259.881600pt;}
._84{width:263.413867pt;}
._45{width:264.705600pt;}
._78{width:268.920533pt;}
._61{width:275.920000pt;}
._7d{width:276.996800pt;}
._2b{width:278.811733pt;}
._95{width:280.400533pt;}
._c{width:282.298667pt;}
._2a{width:283.449067pt;}
._77{width:284.515733pt;}
._4{width:288.246933pt;}
._85{width:290.136533pt;}
._60{width:291.158933pt;}
._46{width:294.853333pt;}
._49{width:296.541867pt;}
._90{width:298.247467pt;}
._2e{width:299.585067pt;}
._34{width:301.558933pt;}
._89{width:304.201600pt;}
._f{width:305.626133pt;}
._6c{width:309.005333pt;}
._a{width:313.344000pt;}
._6e{width:315.011200pt;}
._40{width:317.178133pt;}
._16{width:319.474133pt;}
._93{width:322.328533pt;}
._4f{width:326.901867pt;}
._50{width:330.058133pt;}
._64{width:337.094933pt;}
._75{width:340.580267pt;}
._7b{width:343.848000pt;}
._79{width:345.360000pt;}
._7e{width:346.775467pt;}
._1e{width:350.292267pt;}
._33{width:353.067200pt;}
._6f{width:356.027733pt;}
._9{width:358.079467pt;}
._55{width:362.027733pt;}
._3d{width:363.790933pt;}
._3b{width:365.993600pt;}
._5f{width:367.573867pt;}
._29{width:370.161067pt;}
._8{width:371.407467pt;}
._1a{width:374.818667pt;}
._74{width:376.244800pt;}
._83{width:379.630933pt;}
._56{width:389.585600pt;}
._43{width:397.794133pt;}
._44{width:400.864000pt;}
._8e{width:401.904000pt;}
._32{width:405.066133pt;}
._15{width:416.170133pt;}
._4e{width:422.507733pt;}
._7c{width:436.448000pt;}
._5b{width:443.992000pt;}
._25{width:445.684267pt;}
._81{width:463.303467pt;}
._72{width:471.355733pt;}
._97{width:474.474133pt;}
._8b{width:476.951467pt;}
._4a{width:495.946133pt;}
._7a{width:519.584000pt;}
._10{width:526.680533pt;}
._37{width:529.102933pt;}
._8a{width:548.496000pt;}
._6d{width:549.476267pt;}
._94{width:559.818667pt;}
._82{width:569.767467pt;}
._73{width:572.588267pt;}
._27{width:591.964267pt;}
._92{width:593.034667pt;}
._99{width:596.321600pt;}
._5e{width:597.999467pt;}
._8d{width:599.591467pt;}
._6b{width:601.868267pt;}
._1d{width:616.683733pt;}
._54{width:628.287467pt;}
._88{width:631.272000pt;}
._4d{width:633.658133pt;}
._2d{width:654.940267pt;}
._63{width:669.927467pt;}
._42{width:671.289600pt;}
._39{width:673.366933pt;}
._13{width:692.472533pt;}
._7{width:698.448533pt;}
._31{width:711.670400pt;}
._19{width:739.056533pt;}
._3f{width:744.814933pt;}
.fs9{font-size:31.093333pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:85.333333pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:25.941333pt;}
.y24{bottom:39.274667pt;}
.y23{bottom:60.864667pt;}
.y5{bottom:86.333337pt;}
.y133{bottom:115.106267pt;}
.y81{bottom:115.978133pt;}
.y135{bottom:118.885733pt;}
.y1ac{bottom:119.137200pt;}
.y46{bottom:123.515200pt;}
.y22{bottom:123.790666pt;}
.yac{bottom:126.548133pt;}
.y100{bottom:126.598667pt;}
.y172{bottom:127.459867pt;}
.y154{bottom:129.871067pt;}
.y1db{bottom:130.757600pt;}
.y80{bottom:131.978133pt;}
.y1ab{bottom:133.537200pt;}
.y134{bottom:134.885733pt;}
.yd9{bottom:134.989200pt;}
.y132{bottom:138.665333pt;}
.y45{bottom:139.515200pt;}
.yab{bottom:142.548133pt;}
.y1da{bottom:145.157600pt;}
.y17f{bottom:146.224267pt;}
.y7f{bottom:147.978133pt;}
.yff{bottom:150.157600pt;}
.yd8{bottom:150.989200pt;}
.y171{bottom:151.018933pt;}
.y1aa{bottom:155.496267pt;}
.y44{bottom:155.515200pt;}
.y153{bottom:157.588933pt;}
.yaa{bottom:158.548133pt;}
.y1d9{bottom:159.557600pt;}
.y7e{bottom:163.978133pt;}
.yd7{bottom:166.989200pt;}
.y131{bottom:169.783333pt;}
.y43{bottom:171.515200pt;}
.yfe{bottom:173.716667pt;}
.ya9{bottom:174.548133pt;}
.y170{bottom:174.578000pt;}
.y19{bottom:175.052000pt;}
.y1a9{bottom:177.455333pt;}
.y7d{bottom:179.978133pt;}
.y1d8{bottom:181.516667pt;}
.yd6{bottom:182.989200pt;}
.y152{bottom:185.306933pt;}
.y17e{bottom:185.814267pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y42{bottom:187.515200pt;}
.y16f{bottom:190.578000pt;}
.y1a8{bottom:191.855333pt;}
.y1d7{bottom:195.916667pt;}
.y7c{bottom:195.978133pt;}
.yfd{bottom:197.275733pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.ya8{bottom:198.107200pt;}
.yd5{bottom:198.989200pt;}
.y41{bottom:203.515200pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y130{bottom:209.373333pt;}
.y17d{bottom:213.532267pt;}
.y1a7{bottom:213.814400pt;}
.ya7{bottom:214.107200pt;}
.yd4{bottom:214.989200pt;}
.y1d6{bottom:217.875733pt;}
.y40{bottom:219.515200pt;}
.y7b{bottom:219.537200pt;}
.yfc{bottom:220.834800pt;}
.y16e{bottom:225.475600pt;}
.y1a6{bottom:228.214400pt;}
.ya6{bottom:230.107200pt;}
.yd3{bottom:230.989200pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y1d5{bottom:232.275733pt;}
.y3f{bottom:235.515200pt;}
.y7a{bottom:235.537200pt;}
.y12f{bottom:237.091333pt;}
.y151{bottom:240.742933pt;}
.y17c{bottom:241.250267pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.yfb{bottom:244.393867pt;}
.yd2{bottom:246.989200pt;}
.y1a5{bottom:250.173467pt;}
.y3e{bottom:251.515200pt;}
.y79{bottom:251.537200pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.ya5{bottom:253.666400pt;}
.y1d4{bottom:254.234800pt;}
.yfa{bottom:260.393867pt;}
.y1a4{bottom:264.573467pt;}
.y12e{bottom:264.809333pt;}
.y16d{bottom:265.065733pt;}
.y3d{bottom:267.515200pt;}
.y150{bottom:268.460800pt;}
.y1d3{bottom:268.634800pt;}
.y17b{bottom:268.968267pt;}
.ya4{bottom:269.666400pt;}
.yd1{bottom:270.548133pt;}
.y78{bottom:275.096267pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.yf9{bottom:276.393867pt;}
.y3c{bottom:283.515200pt;}
.ya3{bottom:285.666400pt;}
.y1a3{bottom:286.532533pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y1d2{bottom:290.593867pt;}
.y77{bottom:291.096267pt;}
.yf8{bottom:292.393867pt;}
.y12d{bottom:292.527200pt;}
.y16c{bottom:292.783600pt;}
.yd0{bottom:294.107200pt;}
.y14f{bottom:296.178800pt;}
.y17a{bottom:296.686133pt;}
.y3b{bottom:299.515200pt;}
.y1a2{bottom:300.932400pt;}
.ya2{bottom:301.666400pt;}
.y1d1{bottom:304.993867pt;}
.y76{bottom:307.096267pt;}
.yf7{bottom:308.393867pt;}
.y117{bottom:309.311467pt;}
.y10{bottom:309.452000pt;}
.ycf{bottom:310.107200pt;}
.y1a1{bottom:315.332533pt;}
.y3a{bottom:315.515200pt;}
.ya1{bottom:317.666267pt;}
.y1d0{bottom:319.393867pt;}
.y12c{bottom:320.245200pt;}
.y16b{bottom:320.501600pt;}
.yf6{bottom:324.393867pt;}
.y179{bottom:324.404133pt;}
.yce{bottom:326.107200pt;}
.y75{bottom:330.655333pt;}
.y39{bottom:331.515200pt;}
.y116{bottom:332.870533pt;}
.y14e{bottom:335.568667pt;}
.yf5{bottom:340.393867pt;}
.ya0{bottom:341.225333pt;}
.y1cf{bottom:341.352933pt;}
.yf{bottom:343.809333pt;}
.y1a0{bottom:344.850533pt;}
.y12b{bottom:347.963200pt;}
.y16a{bottom:348.219600pt;}
.ycd{bottom:349.666267pt;}
.y178{bottom:352.122133pt;}
.y38{bottom:355.074267pt;}
.y1ce{bottom:355.752933pt;}
.y9f{bottom:357.225333pt;}
.ye{bottom:362.706666pt;}
.yf4{bottom:363.952933pt;}
.y115{bottom:367.768133pt;}
.y14d{bottom:368.866267pt;}
.y9e{bottom:373.225333pt;}
.y12a{bottom:375.681200pt;}
.y169{bottom:375.937600pt;}
.y1cd{bottom:377.712000pt;}
.yf3{bottom:379.952933pt;}
.y74{bottom:380.091467pt;}
.y9d{bottom:389.225333pt;}
.y1cc{bottom:392.112000pt;}
.y14c{bottom:392.425333pt;}
.y19f{bottom:394.866267pt;}
.yf2{bottom:395.952933pt;}
.ycc{bottom:399.102533pt;}
.y73{bottom:403.650533pt;}
.y168{bottom:403.655467pt;}
.y9c{bottom:405.225333pt;}
.y114{bottom:407.358267pt;}
.y177{bottom:407.558000pt;}
.y19e{bottom:410.866267pt;}
.yf1{bottom:411.952933pt;}
.y1cb{bottom:414.071067pt;}
.ycb{bottom:415.102533pt;}
.y37{bottom:415.710400pt;}
.y14b{bottom:415.984400pt;}
.y9b{bottom:421.225333pt;}
.y19d{bottom:426.866267pt;}
.y1ca{bottom:428.471067pt;}
.yd{bottom:430.990669pt;}
.yca{bottom:431.102533pt;}
.y129{bottom:431.117067pt;}
.y167{bottom:431.373467pt;}
.y36{bottom:433.890000pt;}
.y113{bottom:435.076133pt;}
.y176{bottom:435.276000pt;}
.yf0{bottom:435.512000pt;}
.y14a{bottom:439.543467pt;}
.y9a{bottom:444.784400pt;}
.yc{bottom:446.990669pt;}
.yc9{bottom:447.102533pt;}
.y19c{bottom:450.425467pt;}
.y1c9{bottom:450.430133pt;}
.yef{bottom:451.512000pt;}
.y35{bottom:452.069467pt;}
.y72{bottom:453.666267pt;}
.y149{bottom:455.543467pt;}
.y128{bottom:458.835067pt;}
.y112{bottom:462.794133pt;}
.yb{bottom:462.990669pt;}
.y175{bottom:462.994000pt;}
.yc8{bottom:463.102533pt;}
.y1c8{bottom:464.830133pt;}
.yee{bottom:467.512000pt;}
.y148{bottom:471.543467pt;}
.y34{bottom:471.848933pt;}
.y19b{bottom:473.984400pt;}
.y71{bottom:477.225333pt;}
.ya{bottom:478.990666pt;}
.yc7{bottom:479.102533pt;}
.yed{bottom:483.512000pt;}
.y127{bottom:486.553067pt;}
.y1c7{bottom:486.789200pt;}
.y166{bottom:486.809467pt;}
.y147{bottom:487.543467pt;}
.y111{bottom:490.512133pt;}
.y99{bottom:494.220667pt;}
.y9{bottom:494.990666pt;}
.yc6{bottom:495.102533pt;}
.yec{bottom:499.512000pt;}
.y1c6{bottom:501.189067pt;}
.y174{bottom:502.383867pt;}
.y70{bottom:502.964000pt;}
.y146{bottom:503.543467pt;}
.y98{bottom:510.220667pt;}
.y165{bottom:514.527333pt;}
.yeb{bottom:515.512000pt;}
.y33{bottom:517.505733pt;}
.y110{bottom:518.230000pt;}
.yc5{bottom:518.661600pt;}
.y6f{bottom:518.964000pt;}
.y145{bottom:519.543467pt;}
.y1c5{bottom:523.148133pt;}
.y19a{bottom:523.420667pt;}
.y126{bottom:525.942933pt;}
.y97{bottom:526.220667pt;}
.yea{bottom:531.512000pt;}
.yc4{bottom:534.661600pt;}
.y6e{bottom:534.964000pt;}
.y173{bottom:535.681467pt;}
.y32{bottom:535.685200pt;}
.y1c4{bottom:537.548133pt;}
.y199{bottom:539.420667pt;}
.y96{bottom:542.220667pt;}
.y164{bottom:542.245333pt;}
.y144{bottom:543.102533pt;}
.y10f{bottom:545.948000pt;}
.ye9{bottom:547.512000pt;}
.yc3{bottom:550.661600pt;}
.y6d{bottom:550.964000pt;}
.y31{bottom:553.864800pt;}
.y198{bottom:555.420667pt;}
.y95{bottom:558.220667pt;}
.y143{bottom:559.102533pt;}
.y125{bottom:559.240533pt;}
.y1c3{bottom:559.507200pt;}
.yc2{bottom:566.661600pt;}
.y6c{bottom:566.964000pt;}
.y163{bottom:569.963333pt;}
.ye8{bottom:571.071067pt;}
.y197{bottom:571.420667pt;}
.y30{bottom:573.644267pt;}
.y10e{bottom:573.666000pt;}
.y8{bottom:573.786667pt;}
.y1c2{bottom:573.907200pt;}
.y94{bottom:574.220667pt;}
.y142{bottom:575.102533pt;}
.yc1{bottom:582.661600pt;}
.y124{bottom:582.799600pt;}
.y6b{bottom:582.964000pt;}
.ye7{bottom:587.071067pt;}
.y196{bottom:587.420667pt;}
.y141{bottom:591.102533pt;}
.y7{bottom:592.685334pt;}
.y1c1{bottom:595.866267pt;}
.y162{bottom:597.681333pt;}
.y93{bottom:597.779733pt;}
.yc0{bottom:598.661600pt;}
.y6a{bottom:598.964000pt;}
.y195{bottom:603.420667pt;}
.y1c0{bottom:610.266267pt;}
.ye6{bottom:610.630133pt;}
.y92{bottom:613.779733pt;}
.ybf{bottom:614.661600pt;}
.y69{bottom:614.964000pt;}
.y123{bottom:617.697200pt;}
.y2f{bottom:619.300933pt;}
.y194{bottom:619.420667pt;}
.y10d{bottom:629.101867pt;}
.y91{bottom:629.779733pt;}
.ybe{bottom:630.661600pt;}
.y68{bottom:630.964000pt;}
.y1bf{bottom:632.225333pt;}
.ye5{bottom:634.189200pt;}
.y193{bottom:635.420667pt;}
.y161{bottom:637.071067pt;}
.y2e{bottom:637.480533pt;}
.y6{bottom:645.598667pt;}
.y90{bottom:645.779733pt;}
.y1be{bottom:646.625333pt;}
.ybd{bottom:646.661600pt;}
.y67{bottom:646.964000pt;}
.y192{bottom:651.420667pt;}
.y140{bottom:654.220667pt;}
.y2d{bottom:655.660000pt;}
.y10c{bottom:656.819867pt;}
.y122{bottom:657.287333pt;}
.ye4{bottom:657.748267pt;}
.ybc{bottom:662.661600pt;}
.y66{bottom:662.964000pt;}
.y1bd{bottom:668.584400pt;}
.y4{bottom:668.977329pt;}
.y8f{bottom:669.338800pt;}
.y13f{bottom:670.220667pt;}
.y160{bottom:670.368800pt;}
.y191{bottom:674.979733pt;}
.y2c{bottom:675.439600pt;}
.y65{bottom:678.964000pt;}
.ye3{bottom:681.307333pt;}
.y1bc{bottom:682.984400pt;}
.y10b{bottom:684.537867pt;}
.y121{bottom:685.005200pt;}
.y8e{bottom:685.338800pt;}
.ybb{bottom:686.220667pt;}
.y190{bottom:690.979733pt;}
.y13e{bottom:693.779733pt;}
.y15f{bottom:693.927733pt;}
.y64{bottom:694.964000pt;}
.y8d{bottom:701.338800pt;}
.yba{bottom:702.220667pt;}
.ye2{bottom:704.866267pt;}
.y1bb{bottom:704.943467pt;}
.y18f{bottom:706.979733pt;}
.y13d{bottom:709.779733pt;}
.y63{bottom:710.964000pt;}
.y120{bottom:712.723200pt;}
.y8c{bottom:717.338800pt;}
.y15e{bottom:717.486800pt;}
.yb9{bottom:718.220667pt;}
.y2b{bottom:721.096267pt;}
.y18e{bottom:722.979733pt;}
.y10a{bottom:723.927733pt;}
.y13c{bottom:725.779733pt;}
.y1ba{bottom:726.902533pt;}
.y62{bottom:726.964000pt;}
.ye1{bottom:728.425333pt;}
.y8b{bottom:733.338800pt;}
.yb8{bottom:734.220667pt;}
.y18d{bottom:738.979733pt;}
.y2a{bottom:739.275733pt;}
.y11f{bottom:740.441200pt;}
.y15d{bottom:741.045867pt;}
.y1b9{bottom:741.302533pt;}
.y13b{bottom:741.779733pt;}
.y61{bottom:742.964000pt;}
.y8a{bottom:749.338800pt;}
.ye0{bottom:751.984400pt;}
.y18c{bottom:754.979733pt;}
.y15c{bottom:757.045867pt;}
.y109{bottom:757.225467pt;}
.y29{bottom:757.455333pt;}
.yb7{bottom:757.779733pt;}
.y60{bottom:758.964000pt;}
.y1b8{bottom:763.261600pt;}
.y11e{bottom:768.159067pt;}
.y89{bottom:772.897733pt;}
.yb6{bottom:773.779733pt;}
.y5f{bottom:774.964000pt;}
.ydf{bottom:775.543467pt;}
.y28{bottom:777.234800pt;}
.y1b7{bottom:777.661600pt;}
.y18b{bottom:778.538800pt;}
.y15b{bottom:780.604933pt;}
.y108{bottom:780.784400pt;}
.y13a{bottom:781.338800pt;}
.y3{bottom:781.661334pt;}
.y88{bottom:788.897733pt;}
.yb5{bottom:789.779733pt;}
.y5e{bottom:790.964000pt;}
.y18a{bottom:794.538800pt;}
.y11d{bottom:795.877067pt;}
.y139{bottom:797.338800pt;}
.yde{bottom:799.102533pt;}
.y1b6{bottom:799.620667pt;}
.y107{bottom:804.343467pt;}
.y87{bottom:804.897733pt;}
.yb4{bottom:805.779733pt;}
.y189{bottom:810.538800pt;}
.y138{bottom:813.338800pt;}
.y1b5{bottom:814.020667pt;}
.y5d{bottom:814.523067pt;}
.y27{bottom:815.332533pt;}
.y15a{bottom:815.502667pt;}
.y106{bottom:820.343467pt;}
.y86{bottom:820.897733pt;}
.ydd{bottom:822.661600pt;}
.y11c{bottom:823.595067pt;}
.y188{bottom:826.538800pt;}
.y1b4{bottom:828.420667pt;}
.yb3{bottom:829.338800pt;}
.y105{bottom:836.343467pt;}
.y85{bottom:836.897733pt;}
.y2{bottom:840.112001pt;}
.y187{bottom:842.538800pt;}
.yb2{bottom:845.338800pt;}
.ydc{bottom:846.220667pt;}
.y1b3{bottom:850.379733pt;}
.y26{bottom:850.671200pt;}
.y104{bottom:852.343467pt;}
.y84{bottom:852.897733pt;}
.y159{bottom:855.092667pt;}
.y186{bottom:858.538800pt;}
.y1{bottom:859.312000pt;}
.y5c{bottom:860.759200pt;}
.yb1{bottom:861.338800pt;}
.y1b2{bottom:864.779733pt;}
.y137{bottom:868.897733pt;}
.ydb{bottom:869.779733pt;}
.y103{bottom:875.902533pt;}
.y83{bottom:876.456933pt;}
.yb0{bottom:877.338800pt;}
.y11b{bottom:879.031067pt;}
.y185{bottom:882.097867pt;}
.y5b{bottom:882.718267pt;}
.y158{bottom:882.810533pt;}
.y136{bottom:884.897733pt;}
.y1b1{bottom:886.738800pt;}
.y82{bottom:892.456933pt;}
.yda{bottom:893.338800pt;}
.y184{bottom:898.097867pt;}
.yaf{bottom:900.897733pt;}
.y1b0{bottom:901.138800pt;}
.y11a{bottom:906.748933pt;}
.y5a{bottom:908.456933pt;}
.y157{bottom:910.528533pt;}
.y183{bottom:914.097867pt;}
.yae{bottom:916.897733pt;}
.y51{bottom:920.636267pt;}
.y1af{bottom:923.097867pt;}
.y59{bottom:924.456933pt;}
.y102{bottom:925.338800pt;}
.y182{bottom:930.097867pt;}
.yad{bottom:932.897733pt;}
.y50{bottom:933.436400pt;}
.y119{bottom:934.466933pt;}
.y1ae{bottom:937.497867pt;}
.y156{bottom:938.246533pt;}
.y58{bottom:940.456933pt;}
.y181{bottom:946.097867pt;}
.y4f{bottom:946.236267pt;}
.y101{bottom:948.897733pt;}
.y57{bottom:956.456933pt;}
.y4e{bottom:959.036267pt;}
.y1ad{bottom:959.456933pt;}
.y155{bottom:965.964400pt;}
.y180{bottom:969.656933pt;}
.y4d{bottom:971.836400pt;}
.y56{bottom:972.456933pt;}
.y118{bottom:973.856800pt;}
.y4c{bottom:984.636267pt;}
.y4b{bottom:997.436400pt;}
.y52{bottom:1008.629200pt;}
.y4a{bottom:1010.236267pt;}
.y49{bottom:1023.036267pt;}
.y53{bottom:1023.748133pt;}
.y48{bottom:1035.836267pt;}
.y47{bottom:1048.636267pt;}
.y54{bottom:1049.610933pt;}
.y55{bottom:1064.729067pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.hc{height:30.144000pt;}
.h13{height:33.365333pt;}
.h15{height:34.496000pt;}
.h14{height:35.168000pt;}
.h12{height:40.192000pt;}
.h7{height:40.853333pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h18{height:44.352000pt;}
.hb{height:45.216000pt;}
.h16{height:46.848000pt;}
.h2{height:49.024000pt;}
.h10{height:50.240000pt;}
.h11{height:52.053333pt;}
.hf{height:60.288000pt;}
.h17{height:62.464000pt;}
.he{height:65.877333pt;}
.h5{height:69.450667pt;}
.hd{height:78.848000pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.ha{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:79.370000pt;}
.x5{left:81.259867pt;}
.x6{left:83.111067pt;}
.x19{left:86.929067pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x29{left:98.267733pt;}
.x16{left:105.826800pt;}
.x13{left:117.165333pt;}
.x20{left:124.724400pt;}
.x27{left:136.568267pt;}
.x25{left:145.178133pt;}
.x4{left:180.874667pt;}
.x14{left:190.667467pt;}
.x21{left:195.043200pt;}
.x1c{left:196.459867pt;}
.x17{left:198.079200pt;}
.x23{left:249.798667pt;}
.x1a{left:256.388133pt;}
.x1b{left:263.780400pt;}
.x1f{left:264.725200pt;}
.x22{left:268.032267pt;}
.x24{left:268.977333pt;}
.x28{left:271.812000pt;}
.x26{left:273.229200pt;}
.x1e{left:276.063867pt;}
.x18{left:283.531467pt;}
.x1d{left:285.985867pt;}
.x9{left:388.548133pt;}
.x3{left:404.408000pt;}
.xf{left:460.480533pt;}
.xa{left:474.009867pt;}
.x11{left:477.009733pt;}
.xd{left:478.401467pt;}
.xc{left:490.477333pt;}
.xe{left:528.332800pt;}
.x15{left:531.272267pt;}
.xb{left:541.377067pt;}
.x8{left:546.940533pt;}
.x12{left:581.168667pt;}
.x10{left:603.932000pt;}
}




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