
    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_6f6da21b2c1b82d6b1ad65a6.woff')format("woff");}.ff1{font-family:ff1;line-height:0.940000;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_e7f388d0fa3c8e84f11edb6b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.952000;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_0e25fa8a4de7caf964405e9c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.100000;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_98fba6f7f29a1b5bae739519.woff')format("woff");}.ff4{font-family:ff4;line-height:1.115000;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_dd3e67f444051386d75128d5.woff')format("woff");}.ff5{font-family:ff5;line-height:1.115000;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_edcf8d3ba116031f97868b94.woff')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.v3{vertical-align:41.976000px;}
.v4{vertical-align:43.230000px;}
.ls37{letter-spacing:-1.188000px;}
.ls3e{letter-spacing:-1.008000px;}
.ls48{letter-spacing:-0.936000px;}
.ls12{letter-spacing:-0.864000px;}
.lse{letter-spacing:-0.672000px;}
.ls27{letter-spacing:-0.594000px;}
.ls11{letter-spacing:-0.576000px;}
.ls58{letter-spacing:-0.540000px;}
.ls32{letter-spacing:-0.528000px;}
.ls1a{letter-spacing:-0.504000px;}
.lsd{letter-spacing:-0.480000px;}
.ls35{letter-spacing:-0.462000px;}
.ls10{letter-spacing:-0.432000px;}
.lsf{letter-spacing:-0.420000px;}
.ls16{letter-spacing:-0.360000px;}
.ls25{letter-spacing:-0.330000px;}
.ls15{letter-spacing:-0.300000px;}
.ls18{letter-spacing:-0.288000px;}
.ls33{letter-spacing:-0.264000px;}
.ls1b{letter-spacing:-0.216000px;}
.ls23{letter-spacing:-0.198000px;}
.ls53{letter-spacing:-0.180000px;}
.ls47{letter-spacing:-0.144000px;}
.ls2a{letter-spacing:-0.132000px;}
.ls54{letter-spacing:-0.120000px;}
.ls19{letter-spacing:-0.072000px;}
.ls5b{letter-spacing:-0.066000px;}
.ls51{letter-spacing:-0.060000px;}
.lsc{letter-spacing:0.000000px;}
.ls52{letter-spacing:0.060000px;}
.ls29{letter-spacing:0.066000px;}
.ls40{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.120000px;}
.ls3c{letter-spacing:0.132000px;}
.ls3d{letter-spacing:0.168000px;}
.ls26{letter-spacing:0.198000px;}
.ls17{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.240000px;}
.ls24{letter-spacing:0.264000px;}
.ls13{letter-spacing:0.288000px;}
.ls30{letter-spacing:0.330000px;}
.ls3{letter-spacing:0.336000px;}
.ls42{letter-spacing:0.338400px;}
.ls3b{letter-spacing:0.346800px;}
.ls5{letter-spacing:0.360000px;}
.ls28{letter-spacing:0.396000px;}
.ls7{letter-spacing:0.403200px;}
.ls45{letter-spacing:0.410400px;}
.ls4{letter-spacing:0.453600px;}
.ls5a{letter-spacing:0.462000px;}
.ls8{letter-spacing:0.482400px;}
.ls6{letter-spacing:0.504000px;}
.ls1e{letter-spacing:0.540000px;}
.ls4c{letter-spacing:0.547200px;}
.ls2c{letter-spacing:0.554400px;}
.ls9{letter-spacing:0.576000px;}
.ls36{letter-spacing:0.594000px;}
.ls20{letter-spacing:0.648000px;}
.ls4f{letter-spacing:0.780000px;}
.ls41{letter-spacing:0.864000px;}
.ls59{letter-spacing:0.900000px;}
.ls4d{letter-spacing:0.943200px;}
.ls2d{letter-spacing:1.152000px;}
.ls50{letter-spacing:1.194000px;}
.ls4e{letter-spacing:1.200000px;}
.ls46{letter-spacing:1.202400px;}
.ls56{letter-spacing:1.980000px;}
.ls2b{letter-spacing:2.376000px;}
.ls31{letter-spacing:2.404800px;}
.ls2e{letter-spacing:3.600000px;}
.ls39{letter-spacing:5.976000px;}
.ls1d{letter-spacing:6.408000px;}
.ls55{letter-spacing:6.780000px;}
.ls1f{letter-spacing:7.200000px;}
.lsa{letter-spacing:11.952000px;}
.ls4a{letter-spacing:12.870000px;}
.ls38{letter-spacing:13.176000px;}
.ls3f{letter-spacing:21.600000px;}
.ls57{letter-spacing:61.980000px;}
.ls34{letter-spacing:123.684000px;}
.ls4b{letter-spacing:124.872000px;}
.ls2f{letter-spacing:134.508000px;}
.ls43{letter-spacing:150.084000px;}
.ls3a{letter-spacing:174.108000px;}
.ls22{letter-spacing:205.326000px;}
.ls21{letter-spacing:214.896000px;}
.ls49{letter-spacing:236.478000px;}
.ls44{letter-spacing:254.496000px;}
.ls1{letter-spacing:846.780000px;}
.ls2{letter-spacing:874.380000px;}
.ls1c{letter-spacing:1031.580000px;}
.ls0{letter-spacing:1335.180000px;}
.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;}
}
.ws3{word-spacing:-19.584000px;}
.ws4{word-spacing:-19.224000px;}
.ws43{word-spacing:-19.152000px;}
.wsa6{word-spacing:-19.008000px;}
.ws5b{word-spacing:-18.864000px;}
.ws74{word-spacing:-18.792000px;}
.ws9{word-spacing:-18.720000px;}
.wsc{word-spacing:-18.648000px;}
.wsb0{word-spacing:-18.576000px;}
.ws5{word-spacing:-18.360000px;}
.ws34{word-spacing:-18.216000px;}
.wsd1{word-spacing:-18.144000px;}
.ws61{word-spacing:-18.018000px;}
.wsa{word-spacing:-17.928000px;}
.wsc7{word-spacing:-17.856000px;}
.ws60{word-spacing:-17.688000px;}
.wsb{word-spacing:-17.640000px;}
.wsea{word-spacing:-17.358000px;}
.ws5e{word-spacing:-17.292000px;}
.wse9{word-spacing:-17.094000px;}
.ws5f{word-spacing:-17.028000px;}
.ws5c{word-spacing:-16.962000px;}
.ws84{word-spacing:-16.566000px;}
.wsbd{word-spacing:-16.500000px;}
.wse6{word-spacing:-16.380000px;}
.ws5d{word-spacing:-16.368000px;}
.wse7{word-spacing:-16.260000px;}
.ws1{word-spacing:-16.140000px;}
.wsdc{word-spacing:-16.080000px;}
.wsdd{word-spacing:-16.020000px;}
.wsdb{word-spacing:-15.960000px;}
.ws8{word-spacing:-15.720000px;}
.ws7{word-spacing:-15.600000px;}
.ws0{word-spacing:-15.540000px;}
.wsda{word-spacing:-14.700000px;}
.wse8{word-spacing:-14.640000px;}
.ws9d{word-spacing:-11.382000px;}
.ws2{word-spacing:-11.214000px;}
.ws6{word-spacing:-9.612000px;}
.wsd0{word-spacing:-5.040000px;}
.wsbb{word-spacing:-4.752000px;}
.wsb6{word-spacing:-4.392000px;}
.wsb7{word-spacing:-4.320000px;}
.ws8f{word-spacing:-4.248000px;}
.wsb1{word-spacing:-3.816000px;}
.ws52{word-spacing:-3.528000px;}
.wsb4{word-spacing:-3.456000px;}
.ws96{word-spacing:-3.168000px;}
.wsb5{word-spacing:-3.096000px;}
.wsa2{word-spacing:-3.024000px;}
.ws2c{word-spacing:-2.664000px;}
.ws31{word-spacing:-2.376000px;}
.ws32{word-spacing:-2.016000px;}
.wsa3{word-spacing:-1.872000px;}
.ws3e{word-spacing:-1.512000px;}
.ws1d{word-spacing:-1.440000px;}
.ws6f{word-spacing:-1.188000px;}
.ws3d{word-spacing:-1.152000px;}
.ws80{word-spacing:-1.008000px;}
.ws35{word-spacing:-0.960000px;}
.ws1f{word-spacing:-0.936000px;}
.wsf3{word-spacing:-0.900000px;}
.wsaa{word-spacing:-0.864000px;}
.ws42{word-spacing:-0.792000px;}
.ws2d{word-spacing:-0.720000px;}
.ws19{word-spacing:-0.660000px;}
.ws1e{word-spacing:-0.648000px;}
.ws98{word-spacing:-0.594000px;}
.ws54{word-spacing:-0.576000px;}
.wsd{word-spacing:-0.540000px;}
.wse1{word-spacing:-0.480000px;}
.ws70{word-spacing:-0.462000px;}
.wsf{word-spacing:-0.420000px;}
.ws15{word-spacing:-0.360000px;}
.ws8c{word-spacing:-0.330000px;}
.wse5{word-spacing:-0.300000px;}
.ws17{word-spacing:-0.288000px;}
.ws9a{word-spacing:-0.264000px;}
.wse3{word-spacing:-0.240000px;}
.ws10{word-spacing:-0.216000px;}
.ws6e{word-spacing:-0.198000px;}
.ws89{word-spacing:-0.132000px;}
.wse2{word-spacing:-0.120000px;}
.ws88{word-spacing:-0.066000px;}
.wse{word-spacing:0.000000px;}
.ws18{word-spacing:0.060000px;}
.ws9b{word-spacing:0.066000px;}
.ws30{word-spacing:0.072000px;}
.ws71{word-spacing:0.132000px;}
.ws79{word-spacing:0.144000px;}
.ws86{word-spacing:0.198000px;}
.wsc3{word-spacing:0.264000px;}
.ws2f{word-spacing:0.288000px;}
.ws1a{word-spacing:0.300000px;}
.ws6c{word-spacing:0.330000px;}
.ws11{word-spacing:0.336000px;}
.ws1b{word-spacing:0.360000px;}
.ws8b{word-spacing:0.396000px;}
.ws14{word-spacing:0.432000px;}
.ws6d{word-spacing:0.462000px;}
.ws73{word-spacing:0.504000px;}
.ws8a{word-spacing:0.528000px;}
.ws16{word-spacing:0.576000px;}
.ws99{word-spacing:0.594000px;}
.ws87{word-spacing:0.660000px;}
.ws12{word-spacing:0.672000px;}
.ws13{word-spacing:0.756000px;}
.ws23{word-spacing:0.864000px;}
.wsa7{word-spacing:0.936000px;}
.wsa8{word-spacing:1.080000px;}
.ws9c{word-spacing:1.188000px;}
.wse4{word-spacing:1.200000px;}
.ws4e{word-spacing:1.224000px;}
.ws22{word-spacing:1.440000px;}
.wsaf{word-spacing:1.584000px;}
.wscf{word-spacing:1.656000px;}
.ws4c{word-spacing:1.728000px;}
.wsef{word-spacing:1.920000px;}
.wsad{word-spacing:2.088000px;}
.ws7a{word-spacing:2.160000px;}
.ws76{word-spacing:2.448000px;}
.wsf0{word-spacing:2.460000px;}
.wse0{word-spacing:2.592000px;}
.wsc4{word-spacing:2.808000px;}
.ws3c{word-spacing:2.952000px;}
.ws85{word-spacing:3.312000px;}
.wsc6{word-spacing:3.384000px;}
.wsf8{word-spacing:3.564000px;}
.ws58{word-spacing:3.672000px;}
.wsa1{word-spacing:3.816000px;}
.wsf7{word-spacing:3.960000px;}
.ws2e{word-spacing:4.032000px;}
.ws4f{word-spacing:4.176000px;}
.wsd2{word-spacing:4.464000px;}
.wsb3{word-spacing:4.536000px;}
.ws4b{word-spacing:4.824000px;}
.wsb2{word-spacing:4.968000px;}
.wsd4{word-spacing:5.184000px;}
.ws4a{word-spacing:5.328000px;}
.ws3a{word-spacing:5.400000px;}
.wsa5{word-spacing:5.616000px;}
.ws39{word-spacing:5.688000px;}
.ws75{word-spacing:5.760000px;}
.ws2a{word-spacing:6.048000px;}
.ws33{word-spacing:6.192000px;}
.wsc8{word-spacing:6.264000px;}
.ws36{word-spacing:6.408000px;}
.ws45{word-spacing:6.480000px;}
.wseb{word-spacing:6.540000px;}
.ws29{word-spacing:6.552000px;}
.wsec{word-spacing:6.720000px;}
.wsba{word-spacing:6.840000px;}
.wsbc{word-spacing:6.912000px;}
.ws28{word-spacing:6.984000px;}
.ws27{word-spacing:7.272000px;}
.wscb{word-spacing:7.416000px;}
.ws40{word-spacing:7.632000px;}
.ws41{word-spacing:7.704000px;}
.ws3b{word-spacing:7.776000px;}
.ws7d{word-spacing:8.064000px;}
.ws69{word-spacing:8.136000px;}
.ws38{word-spacing:8.424000px;}
.ws37{word-spacing:8.640000px;}
.ws5a{word-spacing:8.784000px;}
.ws59{word-spacing:8.928000px;}
.wscc{word-spacing:9.288000px;}
.ws20{word-spacing:9.360000px;}
.ws50{word-spacing:9.648000px;}
.ws51{word-spacing:9.864000px;}
.ws46{word-spacing:10.152000px;}
.ws4d{word-spacing:10.512000px;}
.wsd5{word-spacing:10.584000px;}
.ws48{word-spacing:10.872000px;}
.ws49{word-spacing:11.232000px;}
.ws47{word-spacing:11.376000px;}
.ws3f{word-spacing:11.664000px;}
.wsa9{word-spacing:11.736000px;}
.ws64{word-spacing:12.024000px;}
.ws78{word-spacing:12.240000px;}
.ws77{word-spacing:12.384000px;}
.wsa0{word-spacing:12.528000px;}
.ws97{word-spacing:12.960000px;}
.ws24{word-spacing:13.248000px;}
.wsc2{word-spacing:13.464000px;}
.ws25{word-spacing:13.608000px;}
.ws26{word-spacing:13.752000px;}
.wsbe{word-spacing:14.112000px;}
.ws53{word-spacing:14.184000px;}
.wsf6{word-spacing:14.322000px;}
.ws21{word-spacing:14.472000px;}
.wscd{word-spacing:14.688000px;}
.wsf5{word-spacing:14.850000px;}
.ws62{word-spacing:14.976000px;}
.ws63{word-spacing:15.264000px;}
.ws68{word-spacing:15.624000px;}
.wsd3{word-spacing:15.840000px;}
.wsbf{word-spacing:15.912000px;}
.ws91{word-spacing:15.984000px;}
.ws55{word-spacing:16.128000px;}
.ws7e{word-spacing:16.488000px;}
.wsc5{word-spacing:16.848000px;}
.ws7f{word-spacing:17.064000px;}
.wsa4{word-spacing:17.208000px;}
.ws1c{word-spacing:17.352000px;}
.ws83{word-spacing:17.712000px;}
.wsd8{word-spacing:18.072000px;}
.ws82{word-spacing:18.432000px;}
.wsb8{word-spacing:18.576000px;}
.wsb9{word-spacing:18.936000px;}
.ws8e{word-spacing:19.224000px;}
.ws44{word-spacing:19.728000px;}
.ws6b{word-spacing:20.088000px;}
.ws67{word-spacing:20.448000px;}
.ws6a{word-spacing:20.808000px;}
.wsce{word-spacing:20.952000px;}
.wsc0{word-spacing:21.384000px;}
.wsab{word-spacing:21.672000px;}
.wsc1{word-spacing:21.816000px;}
.ws9f{word-spacing:23.184000px;}
.ws9e{word-spacing:23.328000px;}
.wsdf{word-spacing:23.688000px;}
.wsac{word-spacing:24.048000px;}
.ws8d{word-spacing:24.552000px;}
.wsae{word-spacing:25.488000px;}
.wsca{word-spacing:26.424000px;}
.ws65{word-spacing:27.360000px;}
.ws66{word-spacing:27.648000px;}
.ws95{word-spacing:27.864000px;}
.ws94{word-spacing:28.152000px;}
.ws81{word-spacing:28.584000px;}
.wsde{word-spacing:28.872000px;}
.ws2b{word-spacing:29.376000px;}
.ws90{word-spacing:30.024000px;}
.wsc9{word-spacing:30.384000px;}
.ws72{word-spacing:30.528000px;}
.ws56{word-spacing:32.472000px;}
.ws57{word-spacing:32.832000px;}
.wsd9{word-spacing:33.624000px;}
.ws93{word-spacing:34.128000px;}
.ws7c{word-spacing:35.784000px;}
.wsed{word-spacing:36.540000px;}
.ws7b{word-spacing:36.576000px;}
.wsd7{word-spacing:37.224000px;}
.wsee{word-spacing:37.260000px;}
.wsd6{word-spacing:37.728000px;}
.ws92{word-spacing:39.672000px;}
.wsf2{word-spacing:61.860000px;}
.wsf1{word-spacing:61.920000px;}
.wsf4{word-spacing:62.040000px;}
._c{margin-left:-3.358800px;}
._6{margin-left:-2.034000px;}
._0{margin-left:-1.020000px;}
._1{width:1.260000px;}
._7{width:2.514000px;}
._f{width:3.638400px;}
._d{width:4.658400px;}
._e{width:6.588000px;}
._15{width:7.754400px;}
._13{width:9.108000px;}
._b{width:10.414800px;}
._9{width:11.761200px;}
._a{width:13.327200px;}
._44{width:15.096000px;}
._8{width:17.064000px;}
._16{width:22.071600px;}
._12{width:23.151600px;}
._10{width:24.534000px;}
._11{width:25.999200px;}
._29{width:33.408000px;}
._1f{width:51.624000px;}
._3d{width:55.914000px;}
._27{width:57.090000px;}
._43{width:61.956000px;}
._2a{width:70.290000px;}
._38{width:73.920000px;}
._20{width:75.108000px;}
._32{width:88.308000px;}
._40{width:95.502000px;}
._3e{width:113.520000px;}
._1d{width:120.714000px;}
._39{width:125.112000px;}
._18{width:138.732000px;}
._17{width:142.380000px;}
._31{width:161.568000px;}
._3f{width:166.188000px;}
._2f{width:179.520000px;}
._24{width:203.544000px;}
._26{width:221.562000px;}
._2e{width:226.314000px;}
._25{width:238.902000px;}
._42{width:246.060000px;}
._1c{width:247.962000px;}
._2c{width:252.714000px;}
._2d{width:253.968000px;}
._23{width:263.538000px;}
._36{width:268.356000px;}
._33{width:274.608000px;}
._30{width:281.478000px;}
._28{width:285.768000px;}
._41{width:286.956000px;}
._3b{width:298.308000px;}
._2b{width:302.070000px;}
._22{width:307.956000px;}
._37{width:338.298000px;}
._1b{width:348.744000px;}
._21{width:366.762000px;}
._1e{width:409.386000px;}
._1a{width:413.556000px;}
._3a{width:415.728000px;}
._3c{width:417.120000px;}
._19{width:428.652000px;}
._35{width:435.138000px;}
._34{width:497.574000px;}
._4{width:765.780000px;}
._5{width:918.780000px;}
._14{width:937.054800px;}
._2{width:1005.420000px;}
._3{width:1137.480000px;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:24.000000px;}
.fs9{font-size:30.000000px;}
.fs1{font-size:36.000000px;}
.fs8{font-size:39.600000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.300000px;}
.y91{bottom:4.500000px;}
.y1ac{bottom:4.501500px;}
.y97{bottom:4.800000px;}
.y7{bottom:5.100000px;}
.y14a{bottom:5.400000px;}
.ya{bottom:6.000000px;}
.y117{bottom:7.500000px;}
.y11c{bottom:8.100000px;}
.y1f3{bottom:8.700000px;}
.ya0{bottom:25.800000px;}
.y11e{bottom:26.100000px;}
.y1c3{bottom:28.200000px;}
.y4{bottom:67.800000px;}
.y8e{bottom:68.400000px;}
.y1a8{bottom:89.701500px;}
.y13d{bottom:90.000000px;}
.yff{bottom:98.700000px;}
.y36{bottom:98.724000px;}
.y1a4{bottom:99.624000px;}
.y1dd{bottom:102.348000px;}
.y156{bottom:106.198500px;}
.ya6{bottom:106.506000px;}
.y12b{bottom:109.506000px;}
.yfe{bottom:109.836000px;}
.yd0{bottom:111.300000px;}
.y51{bottom:112.206000px;}
.yc8{bottom:112.836000px;}
.y17f{bottom:112.860000px;}
.y35{bottom:121.818000px;}
.y1a3{bottom:123.024000px;}
.y20e{bottom:125.436000px;}
.y1dc{bottom:125.748000px;}
.y155{bottom:127.500000px;}
.ya5{bottom:129.906000px;}
.y25d{bottom:131.100000px;}
.y10c{bottom:132.600000px;}
.yfd{bottom:133.236000px;}
.y50{bottom:135.300000px;}
.yc7{bottom:135.930000px;}
.y79{bottom:135.948000px;}
.y17e{bottom:135.954000px;}
.y22e{bottom:135.960000px;}
.y154{bottom:144.300000px;}
.y34{bottom:145.218000px;}
.y1a2{bottom:146.424000px;}
.y20d{bottom:148.530000px;}
.y1db{bottom:149.148000px;}
.y25c{bottom:150.600000px;}
.ya4{bottom:153.306000px;}
.y12a{bottom:156.000000px;}
.yfc{bottom:156.330000px;}
.y4f{bottom:158.700000px;}
.yc6{bottom:159.330000px;}
.y78{bottom:159.348000px;}
.y17d{bottom:159.354000px;}
.y22d{bottom:159.360000px;}
.y153{bottom:165.600000px;}
.y33{bottom:168.312000px;}
.y1a1{bottom:169.518000px;}
.y25b{bottom:170.100000px;}
.y20c{bottom:171.930000px;}
.y1da{bottom:172.242000px;}
.y103{bottom:175.500000px;}
.y129{bottom:176.100000px;}
.ya3{bottom:176.400000px;}
.yfb{bottom:179.730000px;}
.y4e{bottom:180.300000px;}
.yc5{bottom:182.730000px;}
.y77{bottom:182.748000px;}
.y17c{bottom:182.754000px;}
.y22c{bottom:182.760000px;}
.y128{bottom:187.198500px;}
.y152{bottom:187.200000px;}
.y25a{bottom:189.300000px;}
.y32{bottom:191.712000px;}
.y4d{bottom:192.300000px;}
.y1a0{bottom:192.918000px;}
.y20b{bottom:195.024000px;}
.y1d9{bottom:195.642000px;}
.ya2{bottom:199.800000px;}
.yfa{bottom:203.130000px;}
.yc4{bottom:205.824000px;}
.y76{bottom:205.842000px;}
.y17b{bottom:205.848000px;}
.y22b{bottom:205.854000px;}
.y127{bottom:208.500000px;}
.y259{bottom:208.800000px;}
.y151{bottom:213.000000px;}
.y31{bottom:215.112000px;}
.y19f{bottom:216.318000px;}
.y20a{bottom:218.424000px;}
.y1d8{bottom:219.042000px;}
.ya1{bottom:219.600000px;}
.y4c{bottom:220.794000px;}
.y126{bottom:225.300000px;}
.yf9{bottom:226.224000px;}
.y9f{bottom:226.500000px;}
.y258{bottom:228.300000px;}
.yc3{bottom:229.224000px;}
.y75{bottom:229.242000px;}
.y17a{bottom:229.248000px;}
.y22a{bottom:229.254000px;}
.y150{bottom:229.800000px;}
.y30{bottom:238.206000px;}
.y4b{bottom:239.100000px;}
.y19e{bottom:239.412000px;}
.y209{bottom:241.824000px;}
.y1d7{bottom:242.136000px;}
.y125{bottom:246.900000px;}
.y257{bottom:247.800000px;}
.yf8{bottom:249.624000px;}
.y14f{bottom:251.100000px;}
.yc2{bottom:252.624000px;}
.y74{bottom:252.642000px;}
.y179{bottom:252.648000px;}
.y229{bottom:252.654000px;}
.y2f{bottom:261.606000px;}
.y19d{bottom:262.812000px;}
.y208{bottom:264.918000px;}
.y1d6{bottom:265.536000px;}
.y256{bottom:267.000000px;}
.y124{bottom:268.200000px;}
.y9e{bottom:269.100000px;}
.yf7{bottom:272.718000px;}
.yc1{bottom:275.718000px;}
.y73{bottom:275.736000px;}
.y178{bottom:275.742000px;}
.y228{bottom:275.748000px;}
.y14e{bottom:278.700000px;}
.y2e{bottom:285.006000px;}
.y19c{bottom:286.212000px;}
.y255{bottom:286.500000px;}
.y207{bottom:288.318000px;}
.y1d5{bottom:288.630000px;}
.y9d{bottom:290.400000px;}
.y123{bottom:294.007500px;}
.y14d{bottom:295.500000px;}
.yf6{bottom:296.118000px;}
.yc0{bottom:299.118000px;}
.y72{bottom:299.136000px;}
.y177{bottom:299.142000px;}
.y227{bottom:299.148000px;}
.y254{bottom:306.000000px;}
.y2d{bottom:308.100000px;}
.y19b{bottom:309.306000px;}
.y206{bottom:311.718000px;}
.y1d4{bottom:312.030000px;}
.y122{bottom:316.200000px;}
.y9c{bottom:316.500000px;}
.y14c{bottom:316.800000px;}
.yf5{bottom:319.518000px;}
.ybf{bottom:322.212000px;}
.y71{bottom:322.230000px;}
.y176{bottom:322.236000px;}
.y226{bottom:322.242000px;}
.y253{bottom:325.200000px;}
.y2c{bottom:329.700000px;}
.y19a{bottom:332.706000px;}
.y121{bottom:333.000000px;}
.y9b{bottom:333.300000px;}
.y205{bottom:334.812000px;}
.y1d3{bottom:335.430000px;}
.y14b{bottom:338.100000px;}
.yf4{bottom:342.612000px;}
.y252{bottom:344.700000px;}
.ybe{bottom:345.612000px;}
.y70{bottom:345.630000px;}
.y175{bottom:345.636000px;}
.y225{bottom:345.642000px;}
.y2b{bottom:347.100000px;}
.y120{bottom:354.300000px;}
.y9a{bottom:354.600000px;}
.y199{bottom:356.106000px;}
.y204{bottom:358.212000px;}
.y1d2{bottom:358.524000px;}
.y149{bottom:359.400000px;}
.y251{bottom:364.200000px;}
.yf3{bottom:366.012000px;}
.y2a{bottom:368.400000px;}
.ybd{bottom:369.012000px;}
.y6f{bottom:369.030000px;}
.y174{bottom:369.036000px;}
.y224{bottom:369.042000px;}
.y99{bottom:375.900000px;}
.y11d{bottom:379.200000px;}
.y148{bottom:381.600000px;}
.y203{bottom:381.612000px;}
.y1d1{bottom:381.924000px;}
.y250{bottom:383.400000px;}
.y11f{bottom:383.700000px;}
.y29{bottom:385.830000px;}
.yf2{bottom:389.412000px;}
.ybc{bottom:392.106000px;}
.y6e{bottom:392.124000px;}
.y173{bottom:392.130000px;}
.y223{bottom:392.136000px;}
.y98{bottom:397.200000px;}
.y198{bottom:400.800000px;}
.y24f{bottom:402.900000px;}
.y13c{bottom:403.800000px;}
.y202{bottom:404.706000px;}
.y1d0{bottom:405.324000px;}
.y28{bottom:409.230000px;}
.yf1{bottom:412.506000px;}
.ybb{bottom:415.506000px;}
.y6d{bottom:415.524000px;}
.y172{bottom:415.530000px;}
.y222{bottom:415.536000px;}
.y197{bottom:418.206000px;}
.y96{bottom:418.500000px;}
.y144{bottom:419.095500px;}
.y11b{bottom:422.100000px;}
.y24e{bottom:422.400000px;}
.y201{bottom:428.106000px;}
.y1cf{bottom:428.418000px;}
.y147{bottom:429.589500px;}
.y140{bottom:429.600000px;}
.y27{bottom:432.324000px;}
.yf0{bottom:435.906000px;}
.yba{bottom:438.906000px;}
.y6c{bottom:438.924000px;}
.y171{bottom:438.930000px;}
.y221{bottom:438.936000px;}
.y95{bottom:440.100000px;}
.y143{bottom:440.397000px;}
.y13b{bottom:440.398500px;}
.y196{bottom:441.300000px;}
.y24d{bottom:441.900000px;}
.y119{bottom:447.000000px;}
.y146{bottom:451.188000px;}
.y13f{bottom:451.198500px;}
.y200{bottom:451.200000px;}
.y11a{bottom:451.500000px;}
.y1ce{bottom:451.818000px;}
.y26{bottom:455.724000px;}
.yef{bottom:459.306000px;}
.y24c{bottom:461.100000px;}
.y94{bottom:461.400000px;}
.y142{bottom:461.698500px;}
.y13a{bottom:461.700000px;}
.yb9{bottom:462.000000px;}
.y6b{bottom:462.018000px;}
.y170{bottom:462.024000px;}
.y220{bottom:462.030000px;}
.y195{bottom:464.700000px;}
.y145{bottom:472.489500px;}
.y13e{bottom:472.500000px;}
.y1ff{bottom:474.600000px;}
.y1cd{bottom:475.218000px;}
.y25{bottom:479.124000px;}
.y24b{bottom:480.600000px;}
.yee{bottom:482.400000px;}
.y93{bottom:482.700000px;}
.y141{bottom:483.000000px;}
.y194{bottom:484.500000px;}
.yb8{bottom:485.400000px;}
.y6a{bottom:485.418000px;}
.y16f{bottom:485.424000px;}
.y21f{bottom:485.430000px;}
.y118{bottom:489.600000px;}
.y193{bottom:491.400000px;}
.y1fe{bottom:496.200000px;}
.y1cc{bottom:498.312000px;}
.y24a{bottom:500.100000px;}
.y24{bottom:502.218000px;}
.yed{bottom:505.800000px;}
.y92{bottom:508.500000px;}
.yb7{bottom:508.800000px;}
.y69{bottom:508.818000px;}
.y16e{bottom:508.824000px;}
.y21e{bottom:508.830000px;}
.y1fd{bottom:509.100000px;}
.y116{bottom:510.900000px;}
.y139{bottom:516.306000px;}
.y192{bottom:517.200000px;}
.y249{bottom:519.300000px;}
.y1cb{bottom:521.712000px;}
.yec{bottom:525.600000px;}
.y23{bottom:525.618000px;}
.y8d{bottom:526.200000px;}
.yb6{bottom:528.600000px;}
.y68{bottom:531.912000px;}
.y16d{bottom:531.918000px;}
.y21d{bottom:531.924000px;}
.yea{bottom:532.500000px;}
.y191{bottom:534.000000px;}
.y102{bottom:535.800000px;}
.yeb{bottom:537.000000px;}
.y248{bottom:538.800000px;}
.y138{bottom:539.706000px;}
.yb5{bottom:539.730000px;}
.y8c{bottom:541.185000px;}
.y1ca{bottom:545.112000px;}
.y22{bottom:549.018000px;}
.y1fc{bottom:551.700000px;}
.y89{bottom:551.992500px;}
.y90{bottom:551.998500px;}
.y190{bottom:555.300000px;}
.y67{bottom:555.312000px;}
.y16c{bottom:555.318000px;}
.y21c{bottom:555.324000px;}
.y247{bottom:558.300000px;}
.y10b{bottom:561.594000px;}
.y10a{bottom:561.600000px;}
.y8b{bottom:562.783500px;}
.y88{bottom:562.800000px;}
.y137{bottom:563.106000px;}
.yb4{bottom:563.130000px;}
.y1c9{bottom:568.206000px;}
.y21{bottom:572.112000px;}
.y114{bottom:572.395500px;}
.y8f{bottom:573.300000px;}
.ye9{bottom:575.100000px;}
.y18f{bottom:576.900000px;}
.y1fb{bottom:577.200000px;}
.y246{bottom:577.500000px;}
.y66{bottom:578.406000px;}
.y16b{bottom:578.412000px;}
.y21b{bottom:578.418000px;}
.y109{bottom:583.192500px;}
.y110{bottom:583.195500px;}
.y8a{bottom:584.085000px;}
.y136{bottom:586.200000px;}
.yb3{bottom:586.224000px;}
.y1c8{bottom:591.606000px;}
.y113{bottom:593.697000px;}
.y20{bottom:595.512000px;}
.y245{bottom:597.000000px;}
.ye8{bottom:601.192500px;}
.y65{bottom:601.806000px;}
.y16a{bottom:601.812000px;}
.y21a{bottom:601.818000px;}
.y18e{bottom:602.700000px;}
.y108{bottom:604.494000px;}
.y10f{bottom:604.497000px;}
.y135{bottom:609.600000px;}
.yb2{bottom:609.624000px;}
.y1c7{bottom:614.700000px;}
.y101{bottom:614.998500px;}
.y244{bottom:616.500000px;}
.y87{bottom:617.400000px;}
.y1f{bottom:618.912000px;}
.y18d{bottom:619.500000px;}
.ye7{bottom:625.200000px;}
.y64{bottom:625.206000px;}
.y169{bottom:625.212000px;}
.y219{bottom:625.218000px;}
.y115{bottom:625.789500px;}
.y107{bottom:625.795500px;}
.y10e{bottom:625.798500px;}
.y1fa{bottom:628.200000px;}
.y134{bottom:633.018000px;}
.yb1{bottom:633.024000px;}
.y243{bottom:636.000000px;}
.y100{bottom:636.300000px;}
.y1c6{bottom:638.100000px;}
.y86{bottom:640.800000px;}
.ye6{bottom:642.000000px;}
.y1e{bottom:642.006000px;}
.y106{bottom:647.097000px;}
.y10d{bottom:647.100000px;}
.y63{bottom:648.300000px;}
.y168{bottom:648.306000px;}
.y218{bottom:648.312000px;}
.y1f9{bottom:653.700000px;}
.y242{bottom:655.200000px;}
.y133{bottom:656.112000px;}
.yb0{bottom:656.118000px;}
.y112{bottom:657.898500px;}
.y1c5{bottom:659.700000px;}
.y85{bottom:660.600000px;}
.y18c{bottom:662.100000px;}
.ye5{bottom:663.300000px;}
.y1d{bottom:665.406000px;}
.y105{bottom:668.398500px;}
.y62{bottom:671.700000px;}
.y167{bottom:671.706000px;}
.y217{bottom:671.712000px;}
.y84{bottom:671.718000px;}
.y1c2{bottom:672.600000px;}
.y241{bottom:674.700000px;}
.y111{bottom:679.200000px;}
.y1c4{bottom:679.500000px;}
.y132{bottom:679.512000px;}
.yaf{bottom:679.518000px;}
.ye4{bottom:684.900000px;}
.y1c{bottom:688.500000px;}
.y104{bottom:689.700000px;}
.y61{bottom:693.300000px;}
.y240{bottom:694.200000px;}
.y166{bottom:695.106000px;}
.y216{bottom:695.112000px;}
.y83{bottom:695.118000px;}
.y131{bottom:702.912000px;}
.yae{bottom:702.918000px;}
.y1f8{bottom:704.700000px;}
.y18b{bottom:706.200000px;}
.y60{bottom:710.436000px;}
.y1b{bottom:711.900000px;}
.ye3{bottom:712.500000px;}
.y23f{bottom:713.400000px;}
.y1c1{bottom:717.600000px;}
.y165{bottom:718.200000px;}
.y215{bottom:718.206000px;}
.y82{bottom:718.212000px;}
.y130{bottom:726.006000px;}
.yad{bottom:726.012000px;}
.ye2{bottom:729.300000px;}
.y1f6{bottom:730.200000px;}
.y23e{bottom:732.900000px;}
.y1a{bottom:733.500000px;}
.y5f{bottom:733.836000px;}
.y1f7{bottom:735.000000px;}
.y1c0{bottom:738.900000px;}
.y164{bottom:739.800000px;}
.y231{bottom:741.600000px;}
.y214{bottom:741.606000px;}
.y81{bottom:741.612000px;}
.y12f{bottom:749.406000px;}
.yac{bottom:749.412000px;}
.y19{bottom:749.700000px;}
.y18a{bottom:750.300000px;}
.y23d{bottom:752.400000px;}
.y4a{bottom:755.400000px;}
.y163{bottom:757.230000px;}
.y5e{bottom:757.236000px;}
.y1bf{bottom:764.700000px;}
.y230{bottom:765.000000px;}
.y213{bottom:765.006000px;}
.y80{bottom:765.012000px;}
.y18{bottom:769.200000px;}
.y189{bottom:771.600000px;}
.ye1{bottom:771.900000px;}
.y12e{bottom:772.500000px;}
.yab{bottom:772.506000px;}
.y49{bottom:772.518000px;}
.y1f5{bottom:773.100000px;}
.y162{bottom:780.324000px;}
.y5d{bottom:780.330000px;}
.y1be{bottom:781.500000px;}
.y22f{bottom:786.300000px;}
.y17{bottom:787.800000px;}
.y212{bottom:788.100000px;}
.y7f{bottom:788.106000px;}
.y23c{bottom:791.100000px;}
.y187{bottom:794.100000px;}
.y12d{bottom:795.900000px;}
.yaa{bottom:795.906000px;}
.y48{bottom:795.918000px;}
.ye0{bottom:797.698500px;}
.y1f4{bottom:798.600000px;}
.y270{bottom:800.100000px;}
.y1bd{bottom:802.800000px;}
.y161{bottom:803.724000px;}
.y5c{bottom:803.730000px;}
.y184{bottom:809.098500px;}
.y16{bottom:809.700000px;}
.y23b{bottom:810.600000px;}
.y211{bottom:811.500000px;}
.y7e{bottom:811.506000px;}
.y26f{bottom:811.800000px;}
.y12c{bottom:816.000000px;}
.ydf{bottom:819.000000px;}
.ya9{bottom:819.306000px;}
.y47{bottom:819.318000px;}
.y186{bottom:819.898500px;}
.y188{bottom:819.900000px;}
.y26e{bottom:823.500000px;}
.y1bc{bottom:824.400000px;}
.y160{bottom:827.124000px;}
.y5b{bottom:827.130000px;}
.y15{bottom:828.900000px;}
.y23a{bottom:830.100000px;}
.y183{bottom:830.400000px;}
.y210{bottom:834.900000px;}
.y7d{bottom:834.906000px;}
.yde{bottom:835.800000px;}
.y26d{bottom:837.300000px;}
.y185{bottom:841.200000px;}
.ya8{bottom:842.400000px;}
.y46{bottom:842.412000px;}
.y1bb{bottom:845.700000px;}
.y14{bottom:848.400000px;}
.y239{bottom:849.300000px;}
.y15f{bottom:850.218000px;}
.y5a{bottom:850.224000px;}
.y20f{bottom:856.200000px;}
.ydd{bottom:857.400000px;}
.y7c{bottom:858.000000px;}
.y26c{bottom:858.300000px;}
.ya7{bottom:862.500000px;}
.y182{bottom:864.006000px;}
.y45{bottom:865.812000px;}
.y1f2{bottom:866.700000px;}
.y1b9{bottom:867.000000px;}
.y13{bottom:867.900000px;}
.y238{bottom:868.800000px;}
.y1ba{bottom:871.500000px;}
.y15e{bottom:873.618000px;}
.y59{bottom:873.624000px;}
.y26b{bottom:878.097000px;}
.ycf{bottom:879.300000px;}
.y7b{bottom:881.400000px;}
.y12{bottom:882.600000px;}
.y181{bottom:887.100000px;}
.y237{bottom:887.400000px;}
.y44{bottom:889.212000px;}
.y1e8{bottom:893.098500px;}
.y15d{bottom:897.018000px;}
.y58{bottom:897.024000px;}
.y26a{bottom:899.398500px;}
.y7a{bottom:902.700000px;}
.y236{bottom:904.506000px;}
.yce{bottom:905.380500px;}
.ydb{bottom:905.389500px;}
.yd4{bottom:905.395500px;}
.y11{bottom:906.000000px;}
.y180{bottom:907.500000px;}
.y1ef{bottom:908.098500px;}
.y1b8{bottom:909.600000px;}
.y43{bottom:912.306000px;}
.yd7{bottom:915.900000px;}
.y1eb{bottom:918.897000px;}
.y1f0{bottom:918.900000px;}
.y15c{bottom:920.112000px;}
.y57{bottom:920.118000px;}
.y269{bottom:920.700000px;}
.ycd{bottom:926.682000px;}
.yda{bottom:926.691000px;}
.yd3{bottom:926.697000px;}
.yca{bottom:926.698500px;}
.y235{bottom:927.906000px;}
.y1ee{bottom:929.400000px;}
.y1e7{bottom:929.401500px;}
.y10{bottom:929.406000px;}
.y1b7{bottom:935.698500px;}
.y42{bottom:935.706000px;}
.ydc{bottom:937.185000px;}
.yd6{bottom:937.201500px;}
.y1ea{bottom:940.198500px;}
.y1f1{bottom:940.200000px;}
.y15b{bottom:943.512000px;}
.y56{bottom:943.518000px;}
.y268{bottom:946.500000px;}
.ycc{bottom:947.983500px;}
.yd9{bottom:947.992500px;}
.yd2{bottom:947.998500px;}
.yc9{bottom:948.000000px;}
.y1ed{bottom:950.998500px;}
.y1e6{bottom:951.000000px;}
.y234{bottom:951.306000px;}
.yf{bottom:952.500000px;}
.y1b6{bottom:957.000000px;}
.yd5{bottom:958.800000px;}
.y41{bottom:959.106000px;}
.y1e9{bottom:961.500000px;}
.y15a{bottom:966.606000px;}
.y55{bottom:966.612000px;}
.ycb{bottom:969.285000px;}
.yd8{bottom:969.294000px;}
.yd1{bottom:969.300000px;}
.y1ec{bottom:972.300000px;}
.y1b5{bottom:973.800000px;}
.y233{bottom:974.400000px;}
.ye{bottom:976.494000px;}
.y40{bottom:982.200000px;}
.y267{bottom:989.398500px;}
.y159{bottom:990.006000px;}
.y54{bottom:990.012000px;}
.y1b4{bottom:995.100000px;}
.y232{bottom:996.000000px;}
.yd{bottom:1003.794000px;}
.y3f{bottom:1003.800000px;}
.y1e5{bottom:1005.600000px;}
.y266{bottom:1010.700000px;}
.y158{bottom:1013.406000px;}
.y53{bottom:1013.412000px;}
.y1a7{bottom:1017.298500px;}
.y3e{bottom:1021.200000px;}
.y1e4{bottom:1029.000000px;}
.y265{bottom:1029.900000px;}
.yc{bottom:1030.800000px;}
.y1b0{bottom:1032.298500px;}
.y157{bottom:1036.500000px;}
.y52{bottom:1036.506000px;}
.y3d{bottom:1042.500000px;}
.y1b3{bottom:1043.089500px;}
.y1ab{bottom:1043.097000px;}
.y264{bottom:1043.400000px;}
.y1e3{bottom:1049.400000px;}
.y1af{bottom:1053.897000px;}
.y1a6{bottom:1053.898500px;}
.yb{bottom:1058.100000px;}
.y3c{bottom:1059.906000px;}
.y1e2{bottom:1062.012000px;}
.y263{bottom:1062.900000px;}
.y1b2{bottom:1064.391000px;}
.y1aa{bottom:1064.398500px;}
.y1ae{bottom:1075.198500px;}
.y1a5{bottom:1075.200000px;}
.y8{bottom:1079.400000px;}
.y262{bottom:1082.400000px;}
.y3b{bottom:1083.306000px;}
.y1e1{bottom:1085.106000px;}
.y1b1{bottom:1085.692500px;}
.y1a9{bottom:1085.700000px;}
.y1ad{bottom:1096.500000px;}
.y261{bottom:1100.700000px;}
.y6{bottom:1103.400000px;}
.y3a{bottom:1106.400000px;}
.y1e0{bottom:1108.506000px;}
.y260{bottom:1117.200000px;}
.y5{bottom:1129.200000px;}
.y39{bottom:1129.800000px;}
.y1df{bottom:1131.600000px;}
.y25f{bottom:1136.700000px;}
.y3{bottom:1144.800000px;}
.y38{bottom:1153.200000px;}
.y1de{bottom:1154.400000px;}
.y25e{bottom:1156.200000px;}
.y2{bottom:1164.300000px;}
.y37{bottom:1183.500000px;}
.y1{bottom:1183.800000px;}
.hf{height:20.880000px;}
.h15{height:21.298500px;}
.h16{height:21.300000px;}
.h17{height:21.600000px;}
.h22{height:22.201500px;}
.h1a{height:22.800000px;}
.h5{height:23.401500px;}
.h8{height:23.998500px;}
.h1d{height:24.300000px;}
.h1e{height:24.900000px;}
.h2b{height:25.498500px;}
.h29{height:25.500000px;}
.h23{height:26.100000px;}
.h4{height:31.320000px;}
.hc{height:41.760000px;}
.h2a{height:42.598500px;}
.h18{height:42.600000px;}
.h1f{height:42.900000px;}
.h3{height:43.200000px;}
.h2{height:43.920000px;}
.h27{height:45.001500px;}
.h7{height:47.400000px;}
.h12{height:48.312000px;}
.h10{height:51.840000px;}
.hd{height:52.200000px;}
.h6{height:52.704000px;}
.h21{height:52.987200px;}
.h14{height:57.420000px;}
.ha{height:61.488000px;}
.hb{height:62.640000px;}
.h25{height:63.901500px;}
.h28{height:68.835938px;}
.h9{height:73.080000px;}
.he{height:75.093750px;}
.h13{height:85.200000px;}
.h11{height:90.288000px;}
.h1b{height:91.542000px;}
.h26{height:106.500000px;}
.h20{height:106.800000px;}
.h19{height:128.100000px;}
.h24{height:133.518000px;}
.h1c{height:192.300000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w16{width:39.900000px;}
.w28{width:40.200000px;}
.w1f{width:41.700000px;}
.wc{width:42.300000px;}
.w1b{width:49.200000px;}
.w2c{width:51.600000px;}
.w19{width:51.601500px;}
.w22{width:61.798500px;}
.w26{width:62.700000px;}
.w11{width:63.901500px;}
.w7{width:74.100000px;}
.wa{width:74.400000px;}
.w2a{width:84.900000px;}
.w25{width:85.200000px;}
.w29{width:85.798500px;}
.w18{width:86.098500px;}
.w27{width:88.500000px;}
.w10{width:95.398500px;}
.w24{width:95.700000px;}
.w2b{width:96.000000px;}
.w15{width:97.801500px;}
.w14{width:98.098500px;}
.w12{width:98.100000px;}
.w13{width:98.400000px;}
.w17{width:105.000000px;}
.wf{width:106.200000px;}
.w6{width:106.500000px;}
.w21{width:107.400000px;}
.w23{width:108.000000px;}
.wd{width:108.300000px;}
.w20{width:116.400000px;}
.w1e{width:117.000000px;}
.wb{width:117.300000px;}
.w1c{width:120.601500px;}
.w4{width:127.500000px;}
.w3{width:127.800000px;}
.we{width:136.200000px;}
.w9{width:138.001500px;}
.w8{width:138.300000px;}
.w1a{width:148.800000px;}
.w1d{width:170.100000px;}
.w2{width:478.200000px;}
.w5{width:702.601500px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x4b{left:10.200000px;}
.xae{left:11.700000px;}
.x6a{left:13.500000px;}
.x40{left:14.700000px;}
.x70{left:16.800000px;}
.x1f{left:19.200000px;}
.x6e{left:21.300000px;}
.x47{left:22.800000px;}
.x22{left:25.500000px;}
.xb2{left:27.000000px;}
.x2d{left:28.200000px;}
.x25{left:30.600000px;}
.x2c{left:32.700000px;}
.x5f{left:35.100000px;}
.x2a{left:37.800000px;}
.xac{left:39.900000px;}
.x43{left:43.200000px;}
.x9d{left:44.400000px;}
.x88{left:49.200000px;}
.x28{left:53.700000px;}
.x7e{left:59.100000px;}
.x80{left:69.600000px;}
.x3{left:79.800000px;}
.x17{left:88.500000px;}
.x1{left:91.500000px;}
.x13{left:95.700000px;}
.x4e{left:99.597000px;}
.x4d{left:102.600000px;}
.x71{left:105.000000px;}
.x7c{left:106.500000px;}
.x19{left:110.706000px;}
.xb5{left:112.800000px;}
.x85{left:115.497000px;}
.x75{left:119.097000px;}
.x30{left:120.897000px;}
.x8{left:123.000000px;}
.x6{left:125.100000px;}
.x48{left:126.300000px;}
.x6b{left:131.400000px;}
.x14{left:134.100000px;}
.x9a{left:136.200000px;}
.x2e{left:137.700000px;}
.x6f{left:139.500000px;}
.x24{left:142.200000px;}
.x9{left:143.391000px;}
.x4c{left:145.530000px;}
.x8a{left:148.200000px;}
.x41{left:153.900000px;}
.x7d{left:155.700000px;}
.x8d{left:159.000000px;}
.xe{left:160.800000px;}
.x49{left:162.006000px;}
.x83{left:163.794000px;}
.x97{left:173.400000px;}
.x9b{left:181.509000px;}
.x26{left:185.700000px;}
.x10{left:194.100000px;}
.xf{left:195.900000px;}
.x2f{left:199.500000px;}
.x84{left:202.200000px;}
.x74{left:204.894000px;}
.x9e{left:220.794000px;}
.xd{left:224.994000px;}
.xa{left:228.882000px;}
.x11{left:231.000000px;}
.x4f{left:236.400000px;}
.x52{left:244.497000px;}
.xb{left:252.000000px;}
.xc{left:259.200000px;}
.x42{left:262.200000px;}
.x50{left:264.000000px;}
.x51{left:267.003000px;}
.x53{left:268.504500px;}
.x72{left:270.004500px;}
.x76{left:276.300000px;}
.x54{left:280.500000px;}
.x33{left:282.300000px;}
.x77{left:288.906000px;}
.x31{left:290.088000px;}
.x32{left:294.295500px;}
.x34{left:299.707500px;}
.x8e{left:305.083500px;}
.xa0{left:306.904500px;}
.x9f{left:309.000000px;}
.x4a{left:315.010500px;}
.xa1{left:319.510500px;}
.x27{left:324.000000px;}
.x9c{left:325.801500px;}
.x55{left:334.500000px;}
.xa2{left:336.918000px;}
.x58{left:342.601500px;}
.x56{left:360.900000px;}
.x57{left:365.107500px;}
.x59{left:366.609000px;}
.x8b{left:372.000000px;}
.x12{left:374.100000px;}
.x5a{left:378.604500px;}
.x1a{left:382.819500px;}
.x86{left:384.579000px;}
.x8f{left:387.900000px;}
.xa3{left:393.018000px;}
.x35{left:398.400000px;}
.x91{left:402.294000px;}
.xa4{left:404.122500px;}
.x37{left:408.304500px;}
.x90{left:411.600000px;}
.x38{left:420.910500px;}
.xa5{left:422.734500px;}
.x7f{left:425.100000px;}
.x5b{left:432.900000px;}
.x78{left:434.400000px;}
.x5d{left:440.992500px;}
.x36{left:443.400000px;}
.x2{left:446.400000px;}
.x79{left:453.589500px;}
.x5c{left:458.400000px;}
.x29{left:462.300000px;}
.x5e{left:465.000000px;}
.x15{left:467.700000px;}
.xb3{left:469.800000px;}
.x73{left:473.400000px;}
.x1b{left:477.628500px;}
.x1c{left:481.225500px;}
.xa6{left:482.745000px;}
.x98{left:494.100000px;}
.xa7{left:495.648000px;}
.x92{left:507.000000px;}
.x94{left:508.815000px;}
.xa8{left:512.445000px;}
.x44{left:515.700000px;}
.x93{left:517.807500px;}
.x1d{left:521.122500px;}
.x3b{left:524.986500px;}
.x39{left:528.600000px;}
.x60{left:531.000000px;}
.x62{left:539.097000px;}
.x87{left:550.195500px;}
.x61{left:552.000000px;}
.x3a{left:554.092500px;}
.x5{left:558.000000px;}
.x63{left:566.091000px;}
.xaa{left:573.900000px;}
.xab{left:587.694000px;}
.x81{left:595.200000px;}
.xa9{left:597.000000px;}
.x1e{left:600.300000px;}
.x7b{left:608.392500px;}
.x95{left:612.022500px;}
.x20{left:617.400000px;}
.x7a{left:619.497000px;}
.x45{left:621.900000px;}
.x6c{left:628.500000px;}
.x3d{left:631.494000px;}
.x21{left:633.900000px;}
.x3c{left:636.889500px;}
.x64{left:638.700000px;}
.x68{left:641.703000px;}
.x67{left:646.207500px;}
.x66{left:648.006000px;}
.x3e{left:649.495500px;}
.x65{left:651.603000px;}
.xad{left:654.300000px;}
.x8c{left:659.100000px;}
.xb0{left:665.400000px;}
.xaf{left:669.900000px;}
.x7{left:685.800000px;}
.x99{left:696.000000px;}
.x89{left:705.300000px;}
.x2b{left:706.800000px;}
.x82{left:712.200000px;}
.x6d{left:714.600000px;}
.x46{left:717.300000px;}
.x96{left:720.922500px;}
.x69{left:722.701500px;}
.x23{left:726.300000px;}
.xb4{left:728.700000px;}
.x3f{left:731.698500px;}
.xb1{left:736.800000px;}
.x18{left:746.700000px;}
.x16{left:789.300000px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.v3{vertical-align:37.312000pt;}
.v4{vertical-align:38.426667pt;}
.ls37{letter-spacing:-1.056000pt;}
.ls3e{letter-spacing:-0.896000pt;}
.ls48{letter-spacing:-0.832000pt;}
.ls12{letter-spacing:-0.768000pt;}
.lse{letter-spacing:-0.597333pt;}
.ls27{letter-spacing:-0.528000pt;}
.ls11{letter-spacing:-0.512000pt;}
.ls58{letter-spacing:-0.480000pt;}
.ls32{letter-spacing:-0.469333pt;}
.ls1a{letter-spacing:-0.448000pt;}
.lsd{letter-spacing:-0.426667pt;}
.ls35{letter-spacing:-0.410667pt;}
.ls10{letter-spacing:-0.384000pt;}
.lsf{letter-spacing:-0.373333pt;}
.ls16{letter-spacing:-0.320000pt;}
.ls25{letter-spacing:-0.293333pt;}
.ls15{letter-spacing:-0.266667pt;}
.ls18{letter-spacing:-0.256000pt;}
.ls33{letter-spacing:-0.234667pt;}
.ls1b{letter-spacing:-0.192000pt;}
.ls23{letter-spacing:-0.176000pt;}
.ls53{letter-spacing:-0.160000pt;}
.ls47{letter-spacing:-0.128000pt;}
.ls2a{letter-spacing:-0.117333pt;}
.ls54{letter-spacing:-0.106667pt;}
.ls19{letter-spacing:-0.064000pt;}
.ls5b{letter-spacing:-0.058667pt;}
.ls51{letter-spacing:-0.053333pt;}
.lsc{letter-spacing:0.000000pt;}
.ls52{letter-spacing:0.053333pt;}
.ls29{letter-spacing:0.058667pt;}
.ls40{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.106667pt;}
.ls3c{letter-spacing:0.117333pt;}
.ls3d{letter-spacing:0.149333pt;}
.ls26{letter-spacing:0.176000pt;}
.ls17{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.213333pt;}
.ls24{letter-spacing:0.234667pt;}
.ls13{letter-spacing:0.256000pt;}
.ls30{letter-spacing:0.293333pt;}
.ls3{letter-spacing:0.298667pt;}
.ls42{letter-spacing:0.300800pt;}
.ls3b{letter-spacing:0.308267pt;}
.ls5{letter-spacing:0.320000pt;}
.ls28{letter-spacing:0.352000pt;}
.ls7{letter-spacing:0.358400pt;}
.ls45{letter-spacing:0.364800pt;}
.ls4{letter-spacing:0.403200pt;}
.ls5a{letter-spacing:0.410667pt;}
.ls8{letter-spacing:0.428800pt;}
.ls6{letter-spacing:0.448000pt;}
.ls1e{letter-spacing:0.480000pt;}
.ls4c{letter-spacing:0.486400pt;}
.ls2c{letter-spacing:0.492800pt;}
.ls9{letter-spacing:0.512000pt;}
.ls36{letter-spacing:0.528000pt;}
.ls20{letter-spacing:0.576000pt;}
.ls4f{letter-spacing:0.693333pt;}
.ls41{letter-spacing:0.768000pt;}
.ls59{letter-spacing:0.800000pt;}
.ls4d{letter-spacing:0.838400pt;}
.ls2d{letter-spacing:1.024000pt;}
.ls50{letter-spacing:1.061333pt;}
.ls4e{letter-spacing:1.066667pt;}
.ls46{letter-spacing:1.068800pt;}
.ls56{letter-spacing:1.760000pt;}
.ls2b{letter-spacing:2.112000pt;}
.ls31{letter-spacing:2.137600pt;}
.ls2e{letter-spacing:3.200000pt;}
.ls39{letter-spacing:5.312000pt;}
.ls1d{letter-spacing:5.696000pt;}
.ls55{letter-spacing:6.026667pt;}
.ls1f{letter-spacing:6.400000pt;}
.lsa{letter-spacing:10.624000pt;}
.ls4a{letter-spacing:11.440000pt;}
.ls38{letter-spacing:11.712000pt;}
.ls3f{letter-spacing:19.200000pt;}
.ls57{letter-spacing:55.093333pt;}
.ls34{letter-spacing:109.941333pt;}
.ls4b{letter-spacing:110.997333pt;}
.ls2f{letter-spacing:119.562667pt;}
.ls43{letter-spacing:133.408000pt;}
.ls3a{letter-spacing:154.762667pt;}
.ls22{letter-spacing:182.512000pt;}
.ls21{letter-spacing:191.018667pt;}
.ls49{letter-spacing:210.202667pt;}
.ls44{letter-spacing:226.218667pt;}
.ls1{letter-spacing:752.693333pt;}
.ls2{letter-spacing:777.226667pt;}
.ls1c{letter-spacing:916.960000pt;}
.ls0{letter-spacing:1186.826667pt;}
.ws3{word-spacing:-17.408000pt;}
.ws4{word-spacing:-17.088000pt;}
.ws43{word-spacing:-17.024000pt;}
.wsa6{word-spacing:-16.896000pt;}
.ws5b{word-spacing:-16.768000pt;}
.ws74{word-spacing:-16.704000pt;}
.ws9{word-spacing:-16.640000pt;}
.wsc{word-spacing:-16.576000pt;}
.wsb0{word-spacing:-16.512000pt;}
.ws5{word-spacing:-16.320000pt;}
.ws34{word-spacing:-16.192000pt;}
.wsd1{word-spacing:-16.128000pt;}
.ws61{word-spacing:-16.016000pt;}
.wsa{word-spacing:-15.936000pt;}
.wsc7{word-spacing:-15.872000pt;}
.ws60{word-spacing:-15.722667pt;}
.wsb{word-spacing:-15.680000pt;}
.wsea{word-spacing:-15.429333pt;}
.ws5e{word-spacing:-15.370667pt;}
.wse9{word-spacing:-15.194667pt;}
.ws5f{word-spacing:-15.136000pt;}
.ws5c{word-spacing:-15.077333pt;}
.ws84{word-spacing:-14.725333pt;}
.wsbd{word-spacing:-14.666667pt;}
.wse6{word-spacing:-14.560000pt;}
.ws5d{word-spacing:-14.549333pt;}
.wse7{word-spacing:-14.453333pt;}
.ws1{word-spacing:-14.346667pt;}
.wsdc{word-spacing:-14.293333pt;}
.wsdd{word-spacing:-14.240000pt;}
.wsdb{word-spacing:-14.186667pt;}
.ws8{word-spacing:-13.973333pt;}
.ws7{word-spacing:-13.866667pt;}
.ws0{word-spacing:-13.813333pt;}
.wsda{word-spacing:-13.066667pt;}
.wse8{word-spacing:-13.013333pt;}
.ws9d{word-spacing:-10.117333pt;}
.ws2{word-spacing:-9.968000pt;}
.ws6{word-spacing:-8.544000pt;}
.wsd0{word-spacing:-4.480000pt;}
.wsbb{word-spacing:-4.224000pt;}
.wsb6{word-spacing:-3.904000pt;}
.wsb7{word-spacing:-3.840000pt;}
.ws8f{word-spacing:-3.776000pt;}
.wsb1{word-spacing:-3.392000pt;}
.ws52{word-spacing:-3.136000pt;}
.wsb4{word-spacing:-3.072000pt;}
.ws96{word-spacing:-2.816000pt;}
.wsb5{word-spacing:-2.752000pt;}
.wsa2{word-spacing:-2.688000pt;}
.ws2c{word-spacing:-2.368000pt;}
.ws31{word-spacing:-2.112000pt;}
.ws32{word-spacing:-1.792000pt;}
.wsa3{word-spacing:-1.664000pt;}
.ws3e{word-spacing:-1.344000pt;}
.ws1d{word-spacing:-1.280000pt;}
.ws6f{word-spacing:-1.056000pt;}
.ws3d{word-spacing:-1.024000pt;}
.ws80{word-spacing:-0.896000pt;}
.ws35{word-spacing:-0.853333pt;}
.ws1f{word-spacing:-0.832000pt;}
.wsf3{word-spacing:-0.800000pt;}
.wsaa{word-spacing:-0.768000pt;}
.ws42{word-spacing:-0.704000pt;}
.ws2d{word-spacing:-0.640000pt;}
.ws19{word-spacing:-0.586667pt;}
.ws1e{word-spacing:-0.576000pt;}
.ws98{word-spacing:-0.528000pt;}
.ws54{word-spacing:-0.512000pt;}
.wsd{word-spacing:-0.480000pt;}
.wse1{word-spacing:-0.426667pt;}
.ws70{word-spacing:-0.410667pt;}
.wsf{word-spacing:-0.373333pt;}
.ws15{word-spacing:-0.320000pt;}
.ws8c{word-spacing:-0.293333pt;}
.wse5{word-spacing:-0.266667pt;}
.ws17{word-spacing:-0.256000pt;}
.ws9a{word-spacing:-0.234667pt;}
.wse3{word-spacing:-0.213333pt;}
.ws10{word-spacing:-0.192000pt;}
.ws6e{word-spacing:-0.176000pt;}
.ws89{word-spacing:-0.117333pt;}
.wse2{word-spacing:-0.106667pt;}
.ws88{word-spacing:-0.058667pt;}
.wse{word-spacing:0.000000pt;}
.ws18{word-spacing:0.053333pt;}
.ws9b{word-spacing:0.058667pt;}
.ws30{word-spacing:0.064000pt;}
.ws71{word-spacing:0.117333pt;}
.ws79{word-spacing:0.128000pt;}
.ws86{word-spacing:0.176000pt;}
.wsc3{word-spacing:0.234667pt;}
.ws2f{word-spacing:0.256000pt;}
.ws1a{word-spacing:0.266667pt;}
.ws6c{word-spacing:0.293333pt;}
.ws11{word-spacing:0.298667pt;}
.ws1b{word-spacing:0.320000pt;}
.ws8b{word-spacing:0.352000pt;}
.ws14{word-spacing:0.384000pt;}
.ws6d{word-spacing:0.410667pt;}
.ws73{word-spacing:0.448000pt;}
.ws8a{word-spacing:0.469333pt;}
.ws16{word-spacing:0.512000pt;}
.ws99{word-spacing:0.528000pt;}
.ws87{word-spacing:0.586667pt;}
.ws12{word-spacing:0.597333pt;}
.ws13{word-spacing:0.672000pt;}
.ws23{word-spacing:0.768000pt;}
.wsa7{word-spacing:0.832000pt;}
.wsa8{word-spacing:0.960000pt;}
.ws9c{word-spacing:1.056000pt;}
.wse4{word-spacing:1.066667pt;}
.ws4e{word-spacing:1.088000pt;}
.ws22{word-spacing:1.280000pt;}
.wsaf{word-spacing:1.408000pt;}
.wscf{word-spacing:1.472000pt;}
.ws4c{word-spacing:1.536000pt;}
.wsef{word-spacing:1.706667pt;}
.wsad{word-spacing:1.856000pt;}
.ws7a{word-spacing:1.920000pt;}
.ws76{word-spacing:2.176000pt;}
.wsf0{word-spacing:2.186667pt;}
.wse0{word-spacing:2.304000pt;}
.wsc4{word-spacing:2.496000pt;}
.ws3c{word-spacing:2.624000pt;}
.ws85{word-spacing:2.944000pt;}
.wsc6{word-spacing:3.008000pt;}
.wsf8{word-spacing:3.168000pt;}
.ws58{word-spacing:3.264000pt;}
.wsa1{word-spacing:3.392000pt;}
.wsf7{word-spacing:3.520000pt;}
.ws2e{word-spacing:3.584000pt;}
.ws4f{word-spacing:3.712000pt;}
.wsd2{word-spacing:3.968000pt;}
.wsb3{word-spacing:4.032000pt;}
.ws4b{word-spacing:4.288000pt;}
.wsb2{word-spacing:4.416000pt;}
.wsd4{word-spacing:4.608000pt;}
.ws4a{word-spacing:4.736000pt;}
.ws3a{word-spacing:4.800000pt;}
.wsa5{word-spacing:4.992000pt;}
.ws39{word-spacing:5.056000pt;}
.ws75{word-spacing:5.120000pt;}
.ws2a{word-spacing:5.376000pt;}
.ws33{word-spacing:5.504000pt;}
.wsc8{word-spacing:5.568000pt;}
.ws36{word-spacing:5.696000pt;}
.ws45{word-spacing:5.760000pt;}
.wseb{word-spacing:5.813333pt;}
.ws29{word-spacing:5.824000pt;}
.wsec{word-spacing:5.973333pt;}
.wsba{word-spacing:6.080000pt;}
.wsbc{word-spacing:6.144000pt;}
.ws28{word-spacing:6.208000pt;}
.ws27{word-spacing:6.464000pt;}
.wscb{word-spacing:6.592000pt;}
.ws40{word-spacing:6.784000pt;}
.ws41{word-spacing:6.848000pt;}
.ws3b{word-spacing:6.912000pt;}
.ws7d{word-spacing:7.168000pt;}
.ws69{word-spacing:7.232000pt;}
.ws38{word-spacing:7.488000pt;}
.ws37{word-spacing:7.680000pt;}
.ws5a{word-spacing:7.808000pt;}
.ws59{word-spacing:7.936000pt;}
.wscc{word-spacing:8.256000pt;}
.ws20{word-spacing:8.320000pt;}
.ws50{word-spacing:8.576000pt;}
.ws51{word-spacing:8.768000pt;}
.ws46{word-spacing:9.024000pt;}
.ws4d{word-spacing:9.344000pt;}
.wsd5{word-spacing:9.408000pt;}
.ws48{word-spacing:9.664000pt;}
.ws49{word-spacing:9.984000pt;}
.ws47{word-spacing:10.112000pt;}
.ws3f{word-spacing:10.368000pt;}
.wsa9{word-spacing:10.432000pt;}
.ws64{word-spacing:10.688000pt;}
.ws78{word-spacing:10.880000pt;}
.ws77{word-spacing:11.008000pt;}
.wsa0{word-spacing:11.136000pt;}
.ws97{word-spacing:11.520000pt;}
.ws24{word-spacing:11.776000pt;}
.wsc2{word-spacing:11.968000pt;}
.ws25{word-spacing:12.096000pt;}
.ws26{word-spacing:12.224000pt;}
.wsbe{word-spacing:12.544000pt;}
.ws53{word-spacing:12.608000pt;}
.wsf6{word-spacing:12.730667pt;}
.ws21{word-spacing:12.864000pt;}
.wscd{word-spacing:13.056000pt;}
.wsf5{word-spacing:13.200000pt;}
.ws62{word-spacing:13.312000pt;}
.ws63{word-spacing:13.568000pt;}
.ws68{word-spacing:13.888000pt;}
.wsd3{word-spacing:14.080000pt;}
.wsbf{word-spacing:14.144000pt;}
.ws91{word-spacing:14.208000pt;}
.ws55{word-spacing:14.336000pt;}
.ws7e{word-spacing:14.656000pt;}
.wsc5{word-spacing:14.976000pt;}
.ws7f{word-spacing:15.168000pt;}
.wsa4{word-spacing:15.296000pt;}
.ws1c{word-spacing:15.424000pt;}
.ws83{word-spacing:15.744000pt;}
.wsd8{word-spacing:16.064000pt;}
.ws82{word-spacing:16.384000pt;}
.wsb8{word-spacing:16.512000pt;}
.wsb9{word-spacing:16.832000pt;}
.ws8e{word-spacing:17.088000pt;}
.ws44{word-spacing:17.536000pt;}
.ws6b{word-spacing:17.856000pt;}
.ws67{word-spacing:18.176000pt;}
.ws6a{word-spacing:18.496000pt;}
.wsce{word-spacing:18.624000pt;}
.wsc0{word-spacing:19.008000pt;}
.wsab{word-spacing:19.264000pt;}
.wsc1{word-spacing:19.392000pt;}
.ws9f{word-spacing:20.608000pt;}
.ws9e{word-spacing:20.736000pt;}
.wsdf{word-spacing:21.056000pt;}
.wsac{word-spacing:21.376000pt;}
.ws8d{word-spacing:21.824000pt;}
.wsae{word-spacing:22.656000pt;}
.wsca{word-spacing:23.488000pt;}
.ws65{word-spacing:24.320000pt;}
.ws66{word-spacing:24.576000pt;}
.ws95{word-spacing:24.768000pt;}
.ws94{word-spacing:25.024000pt;}
.ws81{word-spacing:25.408000pt;}
.wsde{word-spacing:25.664000pt;}
.ws2b{word-spacing:26.112000pt;}
.ws90{word-spacing:26.688000pt;}
.wsc9{word-spacing:27.008000pt;}
.ws72{word-spacing:27.136000pt;}
.ws56{word-spacing:28.864000pt;}
.ws57{word-spacing:29.184000pt;}
.wsd9{word-spacing:29.888000pt;}
.ws93{word-spacing:30.336000pt;}
.ws7c{word-spacing:31.808000pt;}
.wsed{word-spacing:32.480000pt;}
.ws7b{word-spacing:32.512000pt;}
.wsd7{word-spacing:33.088000pt;}
.wsee{word-spacing:33.120000pt;}
.wsd6{word-spacing:33.536000pt;}
.ws92{word-spacing:35.264000pt;}
.wsf2{word-spacing:54.986667pt;}
.wsf1{word-spacing:55.040000pt;}
.wsf4{word-spacing:55.146667pt;}
._c{margin-left:-2.985600pt;}
._6{margin-left:-1.808000pt;}
._0{margin-left:-0.906667pt;}
._1{width:1.120000pt;}
._7{width:2.234667pt;}
._f{width:3.234133pt;}
._d{width:4.140800pt;}
._e{width:5.856000pt;}
._15{width:6.892800pt;}
._13{width:8.096000pt;}
._b{width:9.257600pt;}
._9{width:10.454400pt;}
._a{width:11.846400pt;}
._44{width:13.418667pt;}
._8{width:15.168000pt;}
._16{width:19.619200pt;}
._12{width:20.579200pt;}
._10{width:21.808000pt;}
._11{width:23.110400pt;}
._29{width:29.696000pt;}
._1f{width:45.888000pt;}
._3d{width:49.701333pt;}
._27{width:50.746667pt;}
._43{width:55.072000pt;}
._2a{width:62.480000pt;}
._38{width:65.706667pt;}
._20{width:66.762667pt;}
._32{width:78.496000pt;}
._40{width:84.890667pt;}
._3e{width:100.906667pt;}
._1d{width:107.301333pt;}
._39{width:111.210667pt;}
._18{width:123.317333pt;}
._17{width:126.560000pt;}
._31{width:143.616000pt;}
._3f{width:147.722667pt;}
._2f{width:159.573333pt;}
._24{width:180.928000pt;}
._26{width:196.944000pt;}
._2e{width:201.168000pt;}
._25{width:212.357333pt;}
._42{width:218.720000pt;}
._1c{width:220.410667pt;}
._2c{width:224.634667pt;}
._2d{width:225.749333pt;}
._23{width:234.256000pt;}
._36{width:238.538667pt;}
._33{width:244.096000pt;}
._30{width:250.202667pt;}
._28{width:254.016000pt;}
._41{width:255.072000pt;}
._3b{width:265.162667pt;}
._2b{width:268.506667pt;}
._22{width:273.738667pt;}
._37{width:300.709333pt;}
._1b{width:309.994667pt;}
._21{width:326.010667pt;}
._1e{width:363.898667pt;}
._1a{width:367.605333pt;}
._3a{width:369.536000pt;}
._3c{width:370.773333pt;}
._19{width:381.024000pt;}
._35{width:386.789333pt;}
._34{width:442.288000pt;}
._4{width:680.693333pt;}
._5{width:816.693333pt;}
._14{width:832.937600pt;}
._2{width:893.706667pt;}
._3{width:1011.093333pt;}
.fs6{font-size:21.333333pt;}
.fs9{font-size:26.666667pt;}
.fs1{font-size:32.000000pt;}
.fs8{font-size:35.200000pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.933333pt;}
.y91{bottom:4.000000pt;}
.y1ac{bottom:4.001333pt;}
.y97{bottom:4.266667pt;}
.y7{bottom:4.533333pt;}
.y14a{bottom:4.800000pt;}
.ya{bottom:5.333333pt;}
.y117{bottom:6.666667pt;}
.y11c{bottom:7.200000pt;}
.y1f3{bottom:7.733333pt;}
.ya0{bottom:22.933333pt;}
.y11e{bottom:23.200000pt;}
.y1c3{bottom:25.066667pt;}
.y4{bottom:60.266667pt;}
.y8e{bottom:60.800000pt;}
.y1a8{bottom:79.734667pt;}
.y13d{bottom:80.000000pt;}
.yff{bottom:87.733333pt;}
.y36{bottom:87.754667pt;}
.y1a4{bottom:88.554667pt;}
.y1dd{bottom:90.976000pt;}
.y156{bottom:94.398667pt;}
.ya6{bottom:94.672000pt;}
.y12b{bottom:97.338667pt;}
.yfe{bottom:97.632000pt;}
.yd0{bottom:98.933333pt;}
.y51{bottom:99.738667pt;}
.yc8{bottom:100.298667pt;}
.y17f{bottom:100.320000pt;}
.y35{bottom:108.282667pt;}
.y1a3{bottom:109.354667pt;}
.y20e{bottom:111.498667pt;}
.y1dc{bottom:111.776000pt;}
.y155{bottom:113.333333pt;}
.ya5{bottom:115.472000pt;}
.y25d{bottom:116.533333pt;}
.y10c{bottom:117.866667pt;}
.yfd{bottom:118.432000pt;}
.y50{bottom:120.266667pt;}
.yc7{bottom:120.826667pt;}
.y79{bottom:120.842667pt;}
.y17e{bottom:120.848000pt;}
.y22e{bottom:120.853333pt;}
.y154{bottom:128.266667pt;}
.y34{bottom:129.082667pt;}
.y1a2{bottom:130.154667pt;}
.y20d{bottom:132.026667pt;}
.y1db{bottom:132.576000pt;}
.y25c{bottom:133.866667pt;}
.ya4{bottom:136.272000pt;}
.y12a{bottom:138.666667pt;}
.yfc{bottom:138.960000pt;}
.y4f{bottom:141.066667pt;}
.yc6{bottom:141.626667pt;}
.y78{bottom:141.642667pt;}
.y17d{bottom:141.648000pt;}
.y22d{bottom:141.653333pt;}
.y153{bottom:147.200000pt;}
.y33{bottom:149.610667pt;}
.y1a1{bottom:150.682667pt;}
.y25b{bottom:151.200000pt;}
.y20c{bottom:152.826667pt;}
.y1da{bottom:153.104000pt;}
.y103{bottom:156.000000pt;}
.y129{bottom:156.533333pt;}
.ya3{bottom:156.800000pt;}
.yfb{bottom:159.760000pt;}
.y4e{bottom:160.266667pt;}
.yc5{bottom:162.426667pt;}
.y77{bottom:162.442667pt;}
.y17c{bottom:162.448000pt;}
.y22c{bottom:162.453333pt;}
.y128{bottom:166.398667pt;}
.y152{bottom:166.400000pt;}
.y25a{bottom:168.266667pt;}
.y32{bottom:170.410667pt;}
.y4d{bottom:170.933333pt;}
.y1a0{bottom:171.482667pt;}
.y20b{bottom:173.354667pt;}
.y1d9{bottom:173.904000pt;}
.ya2{bottom:177.600000pt;}
.yfa{bottom:180.560000pt;}
.yc4{bottom:182.954667pt;}
.y76{bottom:182.970667pt;}
.y17b{bottom:182.976000pt;}
.y22b{bottom:182.981333pt;}
.y127{bottom:185.333333pt;}
.y259{bottom:185.600000pt;}
.y151{bottom:189.333333pt;}
.y31{bottom:191.210667pt;}
.y19f{bottom:192.282667pt;}
.y20a{bottom:194.154667pt;}
.y1d8{bottom:194.704000pt;}
.ya1{bottom:195.200000pt;}
.y4c{bottom:196.261333pt;}
.y126{bottom:200.266667pt;}
.yf9{bottom:201.088000pt;}
.y9f{bottom:201.333333pt;}
.y258{bottom:202.933333pt;}
.yc3{bottom:203.754667pt;}
.y75{bottom:203.770667pt;}
.y17a{bottom:203.776000pt;}
.y22a{bottom:203.781333pt;}
.y150{bottom:204.266667pt;}
.y30{bottom:211.738667pt;}
.y4b{bottom:212.533333pt;}
.y19e{bottom:212.810667pt;}
.y209{bottom:214.954667pt;}
.y1d7{bottom:215.232000pt;}
.y125{bottom:219.466667pt;}
.y257{bottom:220.266667pt;}
.yf8{bottom:221.888000pt;}
.y14f{bottom:223.200000pt;}
.yc2{bottom:224.554667pt;}
.y74{bottom:224.570667pt;}
.y179{bottom:224.576000pt;}
.y229{bottom:224.581333pt;}
.y2f{bottom:232.538667pt;}
.y19d{bottom:233.610667pt;}
.y208{bottom:235.482667pt;}
.y1d6{bottom:236.032000pt;}
.y256{bottom:237.333333pt;}
.y124{bottom:238.400000pt;}
.y9e{bottom:239.200000pt;}
.yf7{bottom:242.416000pt;}
.yc1{bottom:245.082667pt;}
.y73{bottom:245.098667pt;}
.y178{bottom:245.104000pt;}
.y228{bottom:245.109333pt;}
.y14e{bottom:247.733333pt;}
.y2e{bottom:253.338667pt;}
.y19c{bottom:254.410667pt;}
.y255{bottom:254.666667pt;}
.y207{bottom:256.282667pt;}
.y1d5{bottom:256.560000pt;}
.y9d{bottom:258.133333pt;}
.y123{bottom:261.340000pt;}
.y14d{bottom:262.666667pt;}
.yf6{bottom:263.216000pt;}
.yc0{bottom:265.882667pt;}
.y72{bottom:265.898667pt;}
.y177{bottom:265.904000pt;}
.y227{bottom:265.909333pt;}
.y254{bottom:272.000000pt;}
.y2d{bottom:273.866667pt;}
.y19b{bottom:274.938667pt;}
.y206{bottom:277.082667pt;}
.y1d4{bottom:277.360000pt;}
.y122{bottom:281.066667pt;}
.y9c{bottom:281.333333pt;}
.y14c{bottom:281.600000pt;}
.yf5{bottom:284.016000pt;}
.ybf{bottom:286.410667pt;}
.y71{bottom:286.426667pt;}
.y176{bottom:286.432000pt;}
.y226{bottom:286.437333pt;}
.y253{bottom:289.066667pt;}
.y2c{bottom:293.066667pt;}
.y19a{bottom:295.738667pt;}
.y121{bottom:296.000000pt;}
.y9b{bottom:296.266667pt;}
.y205{bottom:297.610667pt;}
.y1d3{bottom:298.160000pt;}
.y14b{bottom:300.533333pt;}
.yf4{bottom:304.544000pt;}
.y252{bottom:306.400000pt;}
.ybe{bottom:307.210667pt;}
.y70{bottom:307.226667pt;}
.y175{bottom:307.232000pt;}
.y225{bottom:307.237333pt;}
.y2b{bottom:308.533333pt;}
.y120{bottom:314.933333pt;}
.y9a{bottom:315.200000pt;}
.y199{bottom:316.538667pt;}
.y204{bottom:318.410667pt;}
.y1d2{bottom:318.688000pt;}
.y149{bottom:319.466667pt;}
.y251{bottom:323.733333pt;}
.yf3{bottom:325.344000pt;}
.y2a{bottom:327.466667pt;}
.ybd{bottom:328.010667pt;}
.y6f{bottom:328.026667pt;}
.y174{bottom:328.032000pt;}
.y224{bottom:328.037333pt;}
.y99{bottom:334.133333pt;}
.y11d{bottom:337.066667pt;}
.y148{bottom:339.200000pt;}
.y203{bottom:339.210667pt;}
.y1d1{bottom:339.488000pt;}
.y250{bottom:340.800000pt;}
.y11f{bottom:341.066667pt;}
.y29{bottom:342.960000pt;}
.yf2{bottom:346.144000pt;}
.ybc{bottom:348.538667pt;}
.y6e{bottom:348.554667pt;}
.y173{bottom:348.560000pt;}
.y223{bottom:348.565333pt;}
.y98{bottom:353.066667pt;}
.y198{bottom:356.266667pt;}
.y24f{bottom:358.133333pt;}
.y13c{bottom:358.933333pt;}
.y202{bottom:359.738667pt;}
.y1d0{bottom:360.288000pt;}
.y28{bottom:363.760000pt;}
.yf1{bottom:366.672000pt;}
.ybb{bottom:369.338667pt;}
.y6d{bottom:369.354667pt;}
.y172{bottom:369.360000pt;}
.y222{bottom:369.365333pt;}
.y197{bottom:371.738667pt;}
.y96{bottom:372.000000pt;}
.y144{bottom:372.529333pt;}
.y11b{bottom:375.200000pt;}
.y24e{bottom:375.466667pt;}
.y201{bottom:380.538667pt;}
.y1cf{bottom:380.816000pt;}
.y147{bottom:381.857333pt;}
.y140{bottom:381.866667pt;}
.y27{bottom:384.288000pt;}
.yf0{bottom:387.472000pt;}
.yba{bottom:390.138667pt;}
.y6c{bottom:390.154667pt;}
.y171{bottom:390.160000pt;}
.y221{bottom:390.165333pt;}
.y95{bottom:391.200000pt;}
.y143{bottom:391.464000pt;}
.y13b{bottom:391.465333pt;}
.y196{bottom:392.266667pt;}
.y24d{bottom:392.800000pt;}
.y119{bottom:397.333333pt;}
.y146{bottom:401.056000pt;}
.y13f{bottom:401.065333pt;}
.y200{bottom:401.066667pt;}
.y11a{bottom:401.333333pt;}
.y1ce{bottom:401.616000pt;}
.y26{bottom:405.088000pt;}
.yef{bottom:408.272000pt;}
.y24c{bottom:409.866667pt;}
.y94{bottom:410.133333pt;}
.y142{bottom:410.398667pt;}
.y13a{bottom:410.400000pt;}
.yb9{bottom:410.666667pt;}
.y6b{bottom:410.682667pt;}
.y170{bottom:410.688000pt;}
.y220{bottom:410.693333pt;}
.y195{bottom:413.066667pt;}
.y145{bottom:419.990667pt;}
.y13e{bottom:420.000000pt;}
.y1ff{bottom:421.866667pt;}
.y1cd{bottom:422.416000pt;}
.y25{bottom:425.888000pt;}
.y24b{bottom:427.200000pt;}
.yee{bottom:428.800000pt;}
.y93{bottom:429.066667pt;}
.y141{bottom:429.333333pt;}
.y194{bottom:430.666667pt;}
.yb8{bottom:431.466667pt;}
.y6a{bottom:431.482667pt;}
.y16f{bottom:431.488000pt;}
.y21f{bottom:431.493333pt;}
.y118{bottom:435.200000pt;}
.y193{bottom:436.800000pt;}
.y1fe{bottom:441.066667pt;}
.y1cc{bottom:442.944000pt;}
.y24a{bottom:444.533333pt;}
.y24{bottom:446.416000pt;}
.yed{bottom:449.600000pt;}
.y92{bottom:452.000000pt;}
.yb7{bottom:452.266667pt;}
.y69{bottom:452.282667pt;}
.y16e{bottom:452.288000pt;}
.y21e{bottom:452.293333pt;}
.y1fd{bottom:452.533333pt;}
.y116{bottom:454.133333pt;}
.y139{bottom:458.938667pt;}
.y192{bottom:459.733333pt;}
.y249{bottom:461.600000pt;}
.y1cb{bottom:463.744000pt;}
.yec{bottom:467.200000pt;}
.y23{bottom:467.216000pt;}
.y8d{bottom:467.733333pt;}
.yb6{bottom:469.866667pt;}
.y68{bottom:472.810667pt;}
.y16d{bottom:472.816000pt;}
.y21d{bottom:472.821333pt;}
.yea{bottom:473.333333pt;}
.y191{bottom:474.666667pt;}
.y102{bottom:476.266667pt;}
.yeb{bottom:477.333333pt;}
.y248{bottom:478.933333pt;}
.y138{bottom:479.738667pt;}
.yb5{bottom:479.760000pt;}
.y8c{bottom:481.053333pt;}
.y1ca{bottom:484.544000pt;}
.y22{bottom:488.016000pt;}
.y1fc{bottom:490.400000pt;}
.y89{bottom:490.660000pt;}
.y90{bottom:490.665333pt;}
.y190{bottom:493.600000pt;}
.y67{bottom:493.610667pt;}
.y16c{bottom:493.616000pt;}
.y21c{bottom:493.621333pt;}
.y247{bottom:496.266667pt;}
.y10b{bottom:499.194667pt;}
.y10a{bottom:499.200000pt;}
.y8b{bottom:500.252000pt;}
.y88{bottom:500.266667pt;}
.y137{bottom:500.538667pt;}
.yb4{bottom:500.560000pt;}
.y1c9{bottom:505.072000pt;}
.y21{bottom:508.544000pt;}
.y114{bottom:508.796000pt;}
.y8f{bottom:509.600000pt;}
.ye9{bottom:511.200000pt;}
.y18f{bottom:512.800000pt;}
.y1fb{bottom:513.066667pt;}
.y246{bottom:513.333333pt;}
.y66{bottom:514.138667pt;}
.y16b{bottom:514.144000pt;}
.y21b{bottom:514.149333pt;}
.y109{bottom:518.393333pt;}
.y110{bottom:518.396000pt;}
.y8a{bottom:519.186667pt;}
.y136{bottom:521.066667pt;}
.yb3{bottom:521.088000pt;}
.y1c8{bottom:525.872000pt;}
.y113{bottom:527.730667pt;}
.y20{bottom:529.344000pt;}
.y245{bottom:530.666667pt;}
.ye8{bottom:534.393333pt;}
.y65{bottom:534.938667pt;}
.y16a{bottom:534.944000pt;}
.y21a{bottom:534.949333pt;}
.y18e{bottom:535.733333pt;}
.y108{bottom:537.328000pt;}
.y10f{bottom:537.330667pt;}
.y135{bottom:541.866667pt;}
.yb2{bottom:541.888000pt;}
.y1c7{bottom:546.400000pt;}
.y101{bottom:546.665333pt;}
.y244{bottom:548.000000pt;}
.y87{bottom:548.800000pt;}
.y1f{bottom:550.144000pt;}
.y18d{bottom:550.666667pt;}
.ye7{bottom:555.733333pt;}
.y64{bottom:555.738667pt;}
.y169{bottom:555.744000pt;}
.y219{bottom:555.749333pt;}
.y115{bottom:556.257333pt;}
.y107{bottom:556.262667pt;}
.y10e{bottom:556.265333pt;}
.y1fa{bottom:558.400000pt;}
.y134{bottom:562.682667pt;}
.yb1{bottom:562.688000pt;}
.y243{bottom:565.333333pt;}
.y100{bottom:565.600000pt;}
.y1c6{bottom:567.200000pt;}
.y86{bottom:569.600000pt;}
.ye6{bottom:570.666667pt;}
.y1e{bottom:570.672000pt;}
.y106{bottom:575.197333pt;}
.y10d{bottom:575.200000pt;}
.y63{bottom:576.266667pt;}
.y168{bottom:576.272000pt;}
.y218{bottom:576.277333pt;}
.y1f9{bottom:581.066667pt;}
.y242{bottom:582.400000pt;}
.y133{bottom:583.210667pt;}
.yb0{bottom:583.216000pt;}
.y112{bottom:584.798667pt;}
.y1c5{bottom:586.400000pt;}
.y85{bottom:587.200000pt;}
.y18c{bottom:588.533333pt;}
.ye5{bottom:589.600000pt;}
.y1d{bottom:591.472000pt;}
.y105{bottom:594.132000pt;}
.y62{bottom:597.066667pt;}
.y167{bottom:597.072000pt;}
.y217{bottom:597.077333pt;}
.y84{bottom:597.082667pt;}
.y1c2{bottom:597.866667pt;}
.y241{bottom:599.733333pt;}
.y111{bottom:603.733333pt;}
.y1c4{bottom:604.000000pt;}
.y132{bottom:604.010667pt;}
.yaf{bottom:604.016000pt;}
.ye4{bottom:608.800000pt;}
.y1c{bottom:612.000000pt;}
.y104{bottom:613.066667pt;}
.y61{bottom:616.266667pt;}
.y240{bottom:617.066667pt;}
.y166{bottom:617.872000pt;}
.y216{bottom:617.877333pt;}
.y83{bottom:617.882667pt;}
.y131{bottom:624.810667pt;}
.yae{bottom:624.816000pt;}
.y1f8{bottom:626.400000pt;}
.y18b{bottom:627.733333pt;}
.y60{bottom:631.498667pt;}
.y1b{bottom:632.800000pt;}
.ye3{bottom:633.333333pt;}
.y23f{bottom:634.133333pt;}
.y1c1{bottom:637.866667pt;}
.y165{bottom:638.400000pt;}
.y215{bottom:638.405333pt;}
.y82{bottom:638.410667pt;}
.y130{bottom:645.338667pt;}
.yad{bottom:645.344000pt;}
.ye2{bottom:648.266667pt;}
.y1f6{bottom:649.066667pt;}
.y23e{bottom:651.466667pt;}
.y1a{bottom:652.000000pt;}
.y5f{bottom:652.298667pt;}
.y1f7{bottom:653.333333pt;}
.y1c0{bottom:656.800000pt;}
.y164{bottom:657.600000pt;}
.y231{bottom:659.200000pt;}
.y214{bottom:659.205333pt;}
.y81{bottom:659.210667pt;}
.y12f{bottom:666.138667pt;}
.yac{bottom:666.144000pt;}
.y19{bottom:666.400000pt;}
.y18a{bottom:666.933333pt;}
.y23d{bottom:668.800000pt;}
.y4a{bottom:671.466667pt;}
.y163{bottom:673.093333pt;}
.y5e{bottom:673.098667pt;}
.y1bf{bottom:679.733333pt;}
.y230{bottom:680.000000pt;}
.y213{bottom:680.005333pt;}
.y80{bottom:680.010667pt;}
.y18{bottom:683.733333pt;}
.y189{bottom:685.866667pt;}
.ye1{bottom:686.133333pt;}
.y12e{bottom:686.666667pt;}
.yab{bottom:686.672000pt;}
.y49{bottom:686.682667pt;}
.y1f5{bottom:687.200000pt;}
.y162{bottom:693.621333pt;}
.y5d{bottom:693.626667pt;}
.y1be{bottom:694.666667pt;}
.y22f{bottom:698.933333pt;}
.y17{bottom:700.266667pt;}
.y212{bottom:700.533333pt;}
.y7f{bottom:700.538667pt;}
.y23c{bottom:703.200000pt;}
.y187{bottom:705.866667pt;}
.y12d{bottom:707.466667pt;}
.yaa{bottom:707.472000pt;}
.y48{bottom:707.482667pt;}
.ye0{bottom:709.065333pt;}
.y1f4{bottom:709.866667pt;}
.y270{bottom:711.200000pt;}
.y1bd{bottom:713.600000pt;}
.y161{bottom:714.421333pt;}
.y5c{bottom:714.426667pt;}
.y184{bottom:719.198667pt;}
.y16{bottom:719.733333pt;}
.y23b{bottom:720.533333pt;}
.y211{bottom:721.333333pt;}
.y7e{bottom:721.338667pt;}
.y26f{bottom:721.600000pt;}
.y12c{bottom:725.333333pt;}
.ydf{bottom:728.000000pt;}
.ya9{bottom:728.272000pt;}
.y47{bottom:728.282667pt;}
.y186{bottom:728.798667pt;}
.y188{bottom:728.800000pt;}
.y26e{bottom:732.000000pt;}
.y1bc{bottom:732.800000pt;}
.y160{bottom:735.221333pt;}
.y5b{bottom:735.226667pt;}
.y15{bottom:736.800000pt;}
.y23a{bottom:737.866667pt;}
.y183{bottom:738.133333pt;}
.y210{bottom:742.133333pt;}
.y7d{bottom:742.138667pt;}
.yde{bottom:742.933333pt;}
.y26d{bottom:744.266667pt;}
.y185{bottom:747.733333pt;}
.ya8{bottom:748.800000pt;}
.y46{bottom:748.810667pt;}
.y1bb{bottom:751.733333pt;}
.y14{bottom:754.133333pt;}
.y239{bottom:754.933333pt;}
.y15f{bottom:755.749333pt;}
.y5a{bottom:755.754667pt;}
.y20f{bottom:761.066667pt;}
.ydd{bottom:762.133333pt;}
.y7c{bottom:762.666667pt;}
.y26c{bottom:762.933333pt;}
.ya7{bottom:766.666667pt;}
.y182{bottom:768.005333pt;}
.y45{bottom:769.610667pt;}
.y1f2{bottom:770.400000pt;}
.y1b9{bottom:770.666667pt;}
.y13{bottom:771.466667pt;}
.y238{bottom:772.266667pt;}
.y1ba{bottom:774.666667pt;}
.y15e{bottom:776.549333pt;}
.y59{bottom:776.554667pt;}
.y26b{bottom:780.530667pt;}
.ycf{bottom:781.600000pt;}
.y7b{bottom:783.466667pt;}
.y12{bottom:784.533333pt;}
.y181{bottom:788.533333pt;}
.y237{bottom:788.800000pt;}
.y44{bottom:790.410667pt;}
.y1e8{bottom:793.865333pt;}
.y15d{bottom:797.349333pt;}
.y58{bottom:797.354667pt;}
.y26a{bottom:799.465333pt;}
.y7a{bottom:802.400000pt;}
.y236{bottom:804.005333pt;}
.yce{bottom:804.782667pt;}
.ydb{bottom:804.790667pt;}
.yd4{bottom:804.796000pt;}
.y11{bottom:805.333333pt;}
.y180{bottom:806.666667pt;}
.y1ef{bottom:807.198667pt;}
.y1b8{bottom:808.533333pt;}
.y43{bottom:810.938667pt;}
.yd7{bottom:814.133333pt;}
.y1eb{bottom:816.797333pt;}
.y1f0{bottom:816.800000pt;}
.y15c{bottom:817.877333pt;}
.y57{bottom:817.882667pt;}
.y269{bottom:818.400000pt;}
.ycd{bottom:823.717333pt;}
.yda{bottom:823.725333pt;}
.yd3{bottom:823.730667pt;}
.yca{bottom:823.732000pt;}
.y235{bottom:824.805333pt;}
.y1ee{bottom:826.133333pt;}
.y1e7{bottom:826.134667pt;}
.y10{bottom:826.138667pt;}
.y1b7{bottom:831.732000pt;}
.y42{bottom:831.738667pt;}
.ydc{bottom:833.053333pt;}
.yd6{bottom:833.068000pt;}
.y1ea{bottom:835.732000pt;}
.y1f1{bottom:835.733333pt;}
.y15b{bottom:838.677333pt;}
.y56{bottom:838.682667pt;}
.y268{bottom:841.333333pt;}
.ycc{bottom:842.652000pt;}
.yd9{bottom:842.660000pt;}
.yd2{bottom:842.665333pt;}
.yc9{bottom:842.666667pt;}
.y1ed{bottom:845.332000pt;}
.y1e6{bottom:845.333333pt;}
.y234{bottom:845.605333pt;}
.yf{bottom:846.666667pt;}
.y1b6{bottom:850.666667pt;}
.yd5{bottom:852.266667pt;}
.y41{bottom:852.538667pt;}
.y1e9{bottom:854.666667pt;}
.y15a{bottom:859.205333pt;}
.y55{bottom:859.210667pt;}
.ycb{bottom:861.586667pt;}
.yd8{bottom:861.594667pt;}
.yd1{bottom:861.600000pt;}
.y1ec{bottom:864.266667pt;}
.y1b5{bottom:865.600000pt;}
.y233{bottom:866.133333pt;}
.ye{bottom:867.994667pt;}
.y40{bottom:873.066667pt;}
.y267{bottom:879.465333pt;}
.y159{bottom:880.005333pt;}
.y54{bottom:880.010667pt;}
.y1b4{bottom:884.533333pt;}
.y232{bottom:885.333333pt;}
.yd{bottom:892.261333pt;}
.y3f{bottom:892.266667pt;}
.y1e5{bottom:893.866667pt;}
.y266{bottom:898.400000pt;}
.y158{bottom:900.805333pt;}
.y53{bottom:900.810667pt;}
.y1a7{bottom:904.265333pt;}
.y3e{bottom:907.733333pt;}
.y1e4{bottom:914.666667pt;}
.y265{bottom:915.466667pt;}
.yc{bottom:916.266667pt;}
.y1b0{bottom:917.598667pt;}
.y157{bottom:921.333333pt;}
.y52{bottom:921.338667pt;}
.y3d{bottom:926.666667pt;}
.y1b3{bottom:927.190667pt;}
.y1ab{bottom:927.197333pt;}
.y264{bottom:927.466667pt;}
.y1e3{bottom:932.800000pt;}
.y1af{bottom:936.797333pt;}
.y1a6{bottom:936.798667pt;}
.yb{bottom:940.533333pt;}
.y3c{bottom:942.138667pt;}
.y1e2{bottom:944.010667pt;}
.y263{bottom:944.800000pt;}
.y1b2{bottom:946.125333pt;}
.y1aa{bottom:946.132000pt;}
.y1ae{bottom:955.732000pt;}
.y1a5{bottom:955.733333pt;}
.y8{bottom:959.466667pt;}
.y262{bottom:962.133333pt;}
.y3b{bottom:962.938667pt;}
.y1e1{bottom:964.538667pt;}
.y1b1{bottom:965.060000pt;}
.y1a9{bottom:965.066667pt;}
.y1ad{bottom:974.666667pt;}
.y261{bottom:978.400000pt;}
.y6{bottom:980.800000pt;}
.y3a{bottom:983.466667pt;}
.y1e0{bottom:985.338667pt;}
.y260{bottom:993.066667pt;}
.y5{bottom:1003.733333pt;}
.y39{bottom:1004.266667pt;}
.y1df{bottom:1005.866667pt;}
.y25f{bottom:1010.400000pt;}
.y3{bottom:1017.600000pt;}
.y38{bottom:1025.066667pt;}
.y1de{bottom:1026.133333pt;}
.y25e{bottom:1027.733333pt;}
.y2{bottom:1034.933333pt;}
.y37{bottom:1052.000000pt;}
.y1{bottom:1052.266667pt;}
.hf{height:18.560000pt;}
.h15{height:18.932000pt;}
.h16{height:18.933333pt;}
.h17{height:19.200000pt;}
.h22{height:19.734667pt;}
.h1a{height:20.266667pt;}
.h5{height:20.801333pt;}
.h8{height:21.332000pt;}
.h1d{height:21.600000pt;}
.h1e{height:22.133333pt;}
.h2b{height:22.665333pt;}
.h29{height:22.666667pt;}
.h23{height:23.200000pt;}
.h4{height:27.840000pt;}
.hc{height:37.120000pt;}
.h2a{height:37.865333pt;}
.h18{height:37.866667pt;}
.h1f{height:38.133333pt;}
.h3{height:38.400000pt;}
.h2{height:39.040000pt;}
.h27{height:40.001333pt;}
.h7{height:42.133333pt;}
.h12{height:42.944000pt;}
.h10{height:46.080000pt;}
.hd{height:46.400000pt;}
.h6{height:46.848000pt;}
.h21{height:47.099733pt;}
.h14{height:51.040000pt;}
.ha{height:54.656000pt;}
.hb{height:55.680000pt;}
.h25{height:56.801333pt;}
.h28{height:61.187500pt;}
.h9{height:64.960000pt;}
.he{height:66.750000pt;}
.h13{height:75.733333pt;}
.h11{height:80.256000pt;}
.h1b{height:81.370667pt;}
.h26{height:94.666667pt;}
.h20{height:94.933333pt;}
.h19{height:113.866667pt;}
.h24{height:118.682667pt;}
.h1c{height:170.933333pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w16{width:35.466667pt;}
.w28{width:35.733333pt;}
.w1f{width:37.066667pt;}
.wc{width:37.600000pt;}
.w1b{width:43.733333pt;}
.w2c{width:45.866667pt;}
.w19{width:45.868000pt;}
.w22{width:54.932000pt;}
.w26{width:55.733333pt;}
.w11{width:56.801333pt;}
.w7{width:65.866667pt;}
.wa{width:66.133333pt;}
.w2a{width:75.466667pt;}
.w25{width:75.733333pt;}
.w29{width:76.265333pt;}
.w18{width:76.532000pt;}
.w27{width:78.666667pt;}
.w10{width:84.798667pt;}
.w24{width:85.066667pt;}
.w2b{width:85.333333pt;}
.w15{width:86.934667pt;}
.w14{width:87.198667pt;}
.w12{width:87.200000pt;}
.w13{width:87.466667pt;}
.w17{width:93.333333pt;}
.wf{width:94.400000pt;}
.w6{width:94.666667pt;}
.w21{width:95.466667pt;}
.w23{width:96.000000pt;}
.wd{width:96.266667pt;}
.w20{width:103.466667pt;}
.w1e{width:104.000000pt;}
.wb{width:104.266667pt;}
.w1c{width:107.201333pt;}
.w4{width:113.333333pt;}
.w3{width:113.600000pt;}
.we{width:121.066667pt;}
.w9{width:122.668000pt;}
.w8{width:122.933333pt;}
.w1a{width:132.266667pt;}
.w1d{width:151.200000pt;}
.w2{width:425.066667pt;}
.w5{width:624.534667pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x4b{left:9.066667pt;}
.xae{left:10.400000pt;}
.x6a{left:12.000000pt;}
.x40{left:13.066667pt;}
.x70{left:14.933333pt;}
.x1f{left:17.066667pt;}
.x6e{left:18.933333pt;}
.x47{left:20.266667pt;}
.x22{left:22.666667pt;}
.xb2{left:24.000000pt;}
.x2d{left:25.066667pt;}
.x25{left:27.200000pt;}
.x2c{left:29.066667pt;}
.x5f{left:31.200000pt;}
.x2a{left:33.600000pt;}
.xac{left:35.466667pt;}
.x43{left:38.400000pt;}
.x9d{left:39.466667pt;}
.x88{left:43.733333pt;}
.x28{left:47.733333pt;}
.x7e{left:52.533333pt;}
.x80{left:61.866667pt;}
.x3{left:70.933333pt;}
.x17{left:78.666667pt;}
.x1{left:81.333333pt;}
.x13{left:85.066667pt;}
.x4e{left:88.530667pt;}
.x4d{left:91.200000pt;}
.x71{left:93.333333pt;}
.x7c{left:94.666667pt;}
.x19{left:98.405333pt;}
.xb5{left:100.266667pt;}
.x85{left:102.664000pt;}
.x75{left:105.864000pt;}
.x30{left:107.464000pt;}
.x8{left:109.333333pt;}
.x6{left:111.200000pt;}
.x48{left:112.266667pt;}
.x6b{left:116.800000pt;}
.x14{left:119.200000pt;}
.x9a{left:121.066667pt;}
.x2e{left:122.400000pt;}
.x6f{left:124.000000pt;}
.x24{left:126.400000pt;}
.x9{left:127.458667pt;}
.x4c{left:129.360000pt;}
.x8a{left:131.733333pt;}
.x41{left:136.800000pt;}
.x7d{left:138.400000pt;}
.x8d{left:141.333333pt;}
.xe{left:142.933333pt;}
.x49{left:144.005333pt;}
.x83{left:145.594667pt;}
.x97{left:154.133333pt;}
.x9b{left:161.341333pt;}
.x26{left:165.066667pt;}
.x10{left:172.533333pt;}
.xf{left:174.133333pt;}
.x2f{left:177.333333pt;}
.x84{left:179.733333pt;}
.x74{left:182.128000pt;}
.x9e{left:196.261333pt;}
.xd{left:199.994667pt;}
.xa{left:203.450667pt;}
.x11{left:205.333333pt;}
.x4f{left:210.133333pt;}
.x52{left:217.330667pt;}
.xb{left:224.000000pt;}
.xc{left:230.400000pt;}
.x42{left:233.066667pt;}
.x50{left:234.666667pt;}
.x51{left:237.336000pt;}
.x53{left:238.670667pt;}
.x72{left:240.004000pt;}
.x76{left:245.600000pt;}
.x54{left:249.333333pt;}
.x33{left:250.933333pt;}
.x77{left:256.805333pt;}
.x31{left:257.856000pt;}
.x32{left:261.596000pt;}
.x34{left:266.406667pt;}
.x8e{left:271.185333pt;}
.xa0{left:272.804000pt;}
.x9f{left:274.666667pt;}
.x4a{left:280.009333pt;}
.xa1{left:284.009333pt;}
.x27{left:288.000000pt;}
.x9c{left:289.601333pt;}
.x55{left:297.333333pt;}
.xa2{left:299.482667pt;}
.x58{left:304.534667pt;}
.x56{left:320.800000pt;}
.x57{left:324.540000pt;}
.x59{left:325.874667pt;}
.x8b{left:330.666667pt;}
.x12{left:332.533333pt;}
.x5a{left:336.537333pt;}
.x1a{left:340.284000pt;}
.x86{left:341.848000pt;}
.x8f{left:344.800000pt;}
.xa3{left:349.349333pt;}
.x35{left:354.133333pt;}
.x91{left:357.594667pt;}
.xa4{left:359.220000pt;}
.x37{left:362.937333pt;}
.x90{left:365.866667pt;}
.x38{left:374.142667pt;}
.xa5{left:375.764000pt;}
.x7f{left:377.866667pt;}
.x5b{left:384.800000pt;}
.x78{left:386.133333pt;}
.x5d{left:391.993333pt;}
.x36{left:394.133333pt;}
.x2{left:396.800000pt;}
.x79{left:403.190667pt;}
.x5c{left:407.466667pt;}
.x29{left:410.933333pt;}
.x5e{left:413.333333pt;}
.x15{left:415.733333pt;}
.xb3{left:417.600000pt;}
.x73{left:420.800000pt;}
.x1b{left:424.558667pt;}
.x1c{left:427.756000pt;}
.xa6{left:429.106667pt;}
.x98{left:439.200000pt;}
.xa7{left:440.576000pt;}
.x92{left:450.666667pt;}
.x94{left:452.280000pt;}
.xa8{left:455.506667pt;}
.x44{left:458.400000pt;}
.x93{left:460.273333pt;}
.x1d{left:463.220000pt;}
.x3b{left:466.654667pt;}
.x39{left:469.866667pt;}
.x60{left:472.000000pt;}
.x62{left:479.197333pt;}
.x87{left:489.062667pt;}
.x61{left:490.666667pt;}
.x3a{left:492.526667pt;}
.x5{left:496.000000pt;}
.x63{left:503.192000pt;}
.xaa{left:510.133333pt;}
.xab{left:522.394667pt;}
.x81{left:529.066667pt;}
.xa9{left:530.666667pt;}
.x1e{left:533.600000pt;}
.x7b{left:540.793333pt;}
.x95{left:544.020000pt;}
.x20{left:548.800000pt;}
.x7a{left:550.664000pt;}
.x45{left:552.800000pt;}
.x6c{left:558.666667pt;}
.x3d{left:561.328000pt;}
.x21{left:563.466667pt;}
.x3c{left:566.124000pt;}
.x64{left:567.733333pt;}
.x68{left:570.402667pt;}
.x67{left:574.406667pt;}
.x66{left:576.005333pt;}
.x3e{left:577.329333pt;}
.x65{left:579.202667pt;}
.xad{left:581.600000pt;}
.x8c{left:585.866667pt;}
.xb0{left:591.466667pt;}
.xaf{left:595.466667pt;}
.x7{left:609.600000pt;}
.x99{left:618.666667pt;}
.x89{left:626.933333pt;}
.x2b{left:628.266667pt;}
.x82{left:633.066667pt;}
.x6d{left:635.200000pt;}
.x46{left:637.600000pt;}
.x96{left:640.820000pt;}
.x69{left:642.401333pt;}
.x23{left:645.600000pt;}
.xb4{left:647.733333pt;}
.x3f{left:650.398667pt;}
.xb1{left:654.933333pt;}
.x18{left:663.733333pt;}
.x16{left:701.600000pt;}
}




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