
    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_7ca2f6c4f53c8d48346091e3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.167000;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_0bb9d63724f24abe8024b1e1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.165000;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_6de6f7ecf5532a46833e1464.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.166000;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_07fe47cdf7248d34c9ec34a8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.184000;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_7af4e97f147d3cc084142c93.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.698000;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_ab62a81b3936f49962b834f7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.160000;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_7af4e97f147d3cc084142c93.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.698000;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_0b1e08165dd9370cf845c068.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.200900;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_4f0ac2b96197eb2d27b53d33.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.196000;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_1ea0eb1403c82be42ccf36d6.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.135000;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_591ce6a763869c2ef8bc2925.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.034000;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_1542eadee6651a2ee266c6f9.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.022000;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_f71e82320ec15e4599f50f1c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.801000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.v3{vertical-align:32.419800px;}
.ls51{letter-spacing:-1.836000px;}
.ls64{letter-spacing:-1.620000px;}
.ls52{letter-spacing:-1.562400px;}
.lsb{letter-spacing:-1.479000px;}
.ls6b{letter-spacing:-1.350000px;}
.ls1a{letter-spacing:-1.020000px;}
.ls1b{letter-spacing:-0.918000px;}
.ls19{letter-spacing:-0.867000px;}
.ls3d{letter-spacing:-0.780000px;}
.ls1c{letter-spacing:-0.714000px;}
.ls40{letter-spacing:-0.660000px;}
.ls3f{letter-spacing:-0.600000px;}
.ls1d{letter-spacing:-0.561000px;}
.ls3e{letter-spacing:-0.540000px;}
.ls18{letter-spacing:-0.510000px;}
.ls41{letter-spacing:-0.480000px;}
.ls67{letter-spacing:-0.414000px;}
.ls3c{letter-spacing:-0.360000px;}
.ls65{letter-spacing:-0.324000px;}
.ls2e{letter-spacing:-0.300000px;}
.ls60{letter-spacing:-0.279000px;}
.ls2c{letter-spacing:-0.240000px;}
.lsc{letter-spacing:-0.204000px;}
.ls2d{letter-spacing:-0.180000px;}
.ls20{letter-spacing:-0.167400px;}
.lsa{letter-spacing:-0.153000px;}
.ls2b{letter-spacing:-0.120000px;}
.ls21{letter-spacing:-0.111600px;}
.ls50{letter-spacing:-0.104940px;}
.ls1e{letter-spacing:-0.102000px;}
.ls38{letter-spacing:-0.060000px;}
.ls36{letter-spacing:-0.055800px;}
.ls69{letter-spacing:-0.054000px;}
.ls6a{letter-spacing:-0.051000px;}
.ls8{letter-spacing:0.000000px;}
.ls61{letter-spacing:0.030000px;}
.ls5c{letter-spacing:0.034980px;}
.ls4d{letter-spacing:0.041280px;}
.ls10{letter-spacing:0.051000px;}
.ls4c{letter-spacing:0.055800px;}
.ls23{letter-spacing:0.060000px;}
.ls2{letter-spacing:0.102000px;}
.ls16{letter-spacing:0.111600px;}
.ls35{letter-spacing:0.120000px;}
.ls13{letter-spacing:0.149100px;}
.ls3a{letter-spacing:0.150000px;}
.ls4{letter-spacing:0.153000px;}
.ls55{letter-spacing:0.162000px;}
.ls57{letter-spacing:0.167400px;}
.ls14{letter-spacing:0.180000px;}
.ls33{letter-spacing:0.189360px;}
.ls32{letter-spacing:0.189480px;}
.ls3{letter-spacing:0.204000px;}
.ls5d{letter-spacing:0.209880px;}
.ls53{letter-spacing:0.210000px;}
.ls4a{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.222000px;}
.ls15{letter-spacing:0.223200px;}
.ls12{letter-spacing:0.240000px;}
.ls1{letter-spacing:0.255000px;}
.ls31{letter-spacing:0.270000px;}
.ls4b{letter-spacing:0.279000px;}
.ls56{letter-spacing:0.279840px;}
.ls27{letter-spacing:0.297360px;}
.ls22{letter-spacing:0.300000px;}
.ls0{letter-spacing:0.306000px;}
.ls59{letter-spacing:0.330000px;}
.lse{letter-spacing:0.333000px;}
.ls28{letter-spacing:0.334800px;}
.ls68{letter-spacing:0.357000px;}
.ls11{letter-spacing:0.360000px;}
.ls54{letter-spacing:0.390600px;}
.ls26{letter-spacing:0.420000px;}
.ls30{letter-spacing:0.450000px;}
.ls34{letter-spacing:0.480000px;}
.ls6c{letter-spacing:0.502200px;}
.ls7{letter-spacing:0.510000px;}
.ls24{letter-spacing:0.540000px;}
.ls5a{letter-spacing:0.558000px;}
.ls39{letter-spacing:0.570000px;}
.ls25{letter-spacing:0.600000px;}
.ls17{letter-spacing:0.648000px;}
.ls42{letter-spacing:0.660000px;}
.ls43{letter-spacing:0.720000px;}
.ls44{letter-spacing:0.750000px;}
.ls6{letter-spacing:0.765000px;}
.ls58{letter-spacing:0.780000px;}
.ls5{letter-spacing:0.816000px;}
.ls3b{letter-spacing:0.864000px;}
.ls9{letter-spacing:0.867000px;}
.ls46{letter-spacing:0.900000px;}
.ls45{letter-spacing:0.960000px;}
.ls47{letter-spacing:1.020000px;}
.ls2a{letter-spacing:1.080000px;}
.ls1f{letter-spacing:1.200000px;}
.ls4f{letter-spacing:1.260000px;}
.ls2f{letter-spacing:1.458000px;}
.ls37{letter-spacing:1.512000px;}
.ls48{letter-spacing:1.566000px;}
.lsf{letter-spacing:1.620000px;}
.ls62{letter-spacing:1.722000px;}
.ls4e{letter-spacing:1.728000px;}
.ls6d{letter-spacing:1.785000px;}
.ls63{letter-spacing:1.836000px;}
.ls66{letter-spacing:1.944000px;}
.ls29{letter-spacing:1.998000px;}
.ls5f{letter-spacing:2.052000px;}
.ls5b{letter-spacing:2.214000px;}
.ls49{letter-spacing:2.280000px;}
.ls5e{letter-spacing:2.376000px;}
.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;}
}
.wsc8{word-spacing:-15.174000px;}
.ws39{word-spacing:-14.796000px;}
.wsf6{word-spacing:-14.742000px;}
.wsdb{word-spacing:-14.634000px;}
.ws91{word-spacing:-14.526000px;}
.ws7f{word-spacing:-14.364000px;}
.ws68{word-spacing:-14.310000px;}
.wsf7{word-spacing:-13.020000px;}
.wsac{word-spacing:-12.960000px;}
.ws1d{word-spacing:-12.840000px;}
.wsc9{word-spacing:-12.600000px;}
.ws11f{word-spacing:-12.258000px;}
.ws0{word-spacing:-12.138000px;}
.ws51{word-spacing:-11.760000px;}
.ws52{word-spacing:-11.640000px;}
.wscb{word-spacing:-11.550600px;}
.wsdc{word-spacing:-11.280000px;}
.ws53{word-spacing:-11.100000px;}
.wsf1{word-spacing:-10.965000px;}
.ws124{word-spacing:-10.710000px;}
.wsfd{word-spacing:-10.200000px;}
.wsa3{word-spacing:-9.988200px;}
.ws1{word-spacing:-9.792000px;}
.ws120{word-spacing:-9.129000px;}
.ws1e{word-spacing:-8.901000px;}
.wsf8{word-spacing:-8.487000px;}
.wsad{word-spacing:-7.625640px;}
.wsbc{word-spacing:-7.555680px;}
.wsbb{word-spacing:-7.380780px;}
.ws1c{word-spacing:-7.345800px;}
.ws92{word-spacing:-7.240860px;}
.ws27{word-spacing:-3.621000px;}
.ws28{word-spacing:-2.958000px;}
.wsf3{word-spacing:-2.678400px;}
.ws26{word-spacing:-2.601000px;}
.ws81{word-spacing:-2.280000px;}
.ws122{word-spacing:-2.220000px;}
.wsd6{word-spacing:-2.160000px;}
.ws6f{word-spacing:-2.100000px;}
.ws95{word-spacing:-2.040000px;}
.ws11b{word-spacing:-2.008800px;}
.ws4a{word-spacing:-1.980000px;}
.wsda{word-spacing:-1.953000px;}
.ws3e{word-spacing:-1.920000px;}
.ws3d{word-spacing:-1.860000px;}
.ws34{word-spacing:-1.841400px;}
.ws7c{word-spacing:-1.800000px;}
.ws35{word-spacing:-1.785600px;}
.ws18{word-spacing:-1.785000px;}
.wsd4{word-spacing:-1.740000px;}
.ws12{word-spacing:-1.734000px;}
.ws72{word-spacing:-1.680000px;}
.ws7{word-spacing:-1.632000px;}
.ws71{word-spacing:-1.620000px;}
.ws67{word-spacing:-1.618200px;}
.wsf{word-spacing:-1.581000px;}
.wsa0{word-spacing:-1.562400px;}
.ws82{word-spacing:-1.560000px;}
.ws9d{word-spacing:-1.506600px;}
.ws119{word-spacing:-1.500000px;}
.ws61{word-spacing:-1.440000px;}
.ws11{word-spacing:-1.428000px;}
.ws6e{word-spacing:-1.380000px;}
.ws11c{word-spacing:-1.339200px;}
.wscf{word-spacing:-1.320000px;}
.wsd8{word-spacing:-1.283400px;}
.ws94{word-spacing:-1.260000px;}
.ws8{word-spacing:-1.224000px;}
.ws2a{word-spacing:-1.200000px;}
.wsa1{word-spacing:-1.171800px;}
.ws70{word-spacing:-1.140000px;}
.ws113{word-spacing:-1.122000px;}
.wsb3{word-spacing:-1.080000px;}
.wsc5{word-spacing:-1.060200px;}
.ws1a{word-spacing:-1.020000px;}
.ws64{word-spacing:-1.004400px;}
.wsb1{word-spacing:-0.960000px;}
.ws9c{word-spacing:-0.948600px;}
.ws22{word-spacing:-0.918000px;}
.wsaf{word-spacing:-0.900000px;}
.wse0{word-spacing:-0.840000px;}
.ws115{word-spacing:-0.816000px;}
.ws88{word-spacing:-0.780000px;}
.ws23{word-spacing:-0.765000px;}
.ws47{word-spacing:-0.720000px;}
.ws123{word-spacing:-0.714000px;}
.ws44{word-spacing:-0.660000px;}
.ws1f{word-spacing:-0.648000px;}
.ws14{word-spacing:-0.612000px;}
.ws45{word-spacing:-0.600000px;}
.ws63{word-spacing:-0.558000px;}
.wse1{word-spacing:-0.540000px;}
.ws29{word-spacing:-0.510000px;}
.ws5f{word-spacing:-0.480000px;}
.wsb4{word-spacing:-0.420000px;}
.ws62{word-spacing:-0.390600px;}
.ws4d{word-spacing:-0.360000px;}
.ws2{word-spacing:-0.355200px;}
.ws21{word-spacing:-0.306000px;}
.wsd3{word-spacing:-0.300000px;}
.ws3f{word-spacing:-0.240000px;}
.ws33{word-spacing:-0.223200px;}
.ws1b{word-spacing:-0.222000px;}
.wsb{word-spacing:-0.204000px;}
.ws2b{word-spacing:-0.180000px;}
.ws65{word-spacing:-0.167400px;}
.wsf4{word-spacing:-0.153000px;}
.ws7a{word-spacing:-0.120000px;}
.ws90{word-spacing:-0.111600px;}
.wsab{word-spacing:-0.060000px;}
.ws25{word-spacing:-0.051000px;}
.ws3{word-spacing:0.000000px;}
.ws10{word-spacing:0.051000px;}
.wsd9{word-spacing:0.055800px;}
.ws40{word-spacing:0.060000px;}
.ws11e{word-spacing:0.111600px;}
.ws85{word-spacing:0.120000px;}
.ws31{word-spacing:0.180000px;}
.ws7d{word-spacing:0.240000px;}
.ws118{word-spacing:0.300000px;}
.wsa{word-spacing:0.306000px;}
.ws8e{word-spacing:0.360000px;}
.ws74{word-spacing:0.420000px;}
.ws49{word-spacing:0.480000px;}
.wsc7{word-spacing:0.502200px;}
.wsf5{word-spacing:0.510000px;}
.wsc1{word-spacing:0.540000px;}
.ws24{word-spacing:0.561000px;}
.ws75{word-spacing:0.660000px;}
.ws5c{word-spacing:0.720000px;}
.ws9f{word-spacing:0.725400px;}
.ws114{word-spacing:0.765000px;}
.ws66{word-spacing:0.837000px;}
.ws5b{word-spacing:0.840000px;}
.ws4e{word-spacing:0.900000px;}
.wsc6{word-spacing:0.948600px;}
.wsaa{word-spacing:0.960000px;}
.ws84{word-spacing:1.020000px;}
.ws7b{word-spacing:1.080000px;}
.ws9a{word-spacing:1.116000px;}
.ws17{word-spacing:1.122000px;}
.ws59{word-spacing:1.140000px;}
.ws36{word-spacing:1.171800px;}
.wse{word-spacing:1.224000px;}
.ws9b{word-spacing:1.227600px;}
.wsde{word-spacing:1.260000px;}
.ws38{word-spacing:1.283400px;}
.ws96{word-spacing:1.320000px;}
.wsd1{word-spacing:1.380000px;}
.wsc3{word-spacing:1.395000px;}
.ws19{word-spacing:1.428000px;}
.ws8a{word-spacing:1.500000px;}
.ws13{word-spacing:1.530000px;}
.ws8b{word-spacing:1.560000px;}
.wsc{word-spacing:1.581000px;}
.ws9{word-spacing:1.632000px;}
.ws42{word-spacing:1.680000px;}
.ws43{word-spacing:1.740000px;}
.ws37{word-spacing:1.785600px;}
.wsb0{word-spacing:1.800000px;}
.ws99{word-spacing:1.841400px;}
.ws2f{word-spacing:1.860000px;}
.wsd{word-spacing:1.887000px;}
.ws32{word-spacing:1.897200px;}
.ws2e{word-spacing:1.920000px;}
.ws2d{word-spacing:1.980000px;}
.ws6{word-spacing:1.989000px;}
.ws30{word-spacing:2.040000px;}
.ws16{word-spacing:2.091000px;}
.wsbf{word-spacing:2.100000px;}
.ws87{word-spacing:2.160000px;}
.ws9e{word-spacing:2.176200px;}
.ws4{word-spacing:2.193000px;}
.wsb7{word-spacing:2.220000px;}
.ws6d{word-spacing:2.280000px;}
.ws8f{word-spacing:2.287800px;}
.ws5{word-spacing:2.295000px;}
.wsbe{word-spacing:2.340000px;}
.wsb9{word-spacing:2.343600px;}
.ws15{word-spacing:2.397000px;}
.ws3b{word-spacing:2.400000px;}
.ws3c{word-spacing:2.460000px;}
.ws5a{word-spacing:2.520000px;}
.ws111{word-spacing:2.550000px;}
.ws50{word-spacing:2.566800px;}
.ws55{word-spacing:2.580000px;}
.ws89{word-spacing:2.640000px;}
.ws112{word-spacing:2.652000px;}
.ws5d{word-spacing:2.700000px;}
.ws97{word-spacing:2.760000px;}
.ws4b{word-spacing:2.820000px;}
.ws2c{word-spacing:2.880000px;}
.wsb8{word-spacing:2.901600px;}
.ws57{word-spacing:2.940000px;}
.ws7e{word-spacing:3.000000px;}
.wsfc{word-spacing:3.013200px;}
.ws98{word-spacing:3.060000px;}
.wsb6{word-spacing:3.120000px;}
.ws60{word-spacing:3.180000px;}
.wsba{word-spacing:3.236400px;}
.ws48{word-spacing:3.240000px;}
.wsc4{word-spacing:3.292200px;}
.wsd5{word-spacing:3.300000px;}
.wsd0{word-spacing:3.360000px;}
.wsb2{word-spacing:3.480000px;}
.ws56{word-spacing:3.540000px;}
.ws8d{word-spacing:3.600000px;}
.ws78{word-spacing:3.660000px;}
.ws6a{word-spacing:3.720000px;}
.ws86{word-spacing:3.780000px;}
.ws11d{word-spacing:3.794400px;}
.wsb5{word-spacing:3.840000px;}
.ws79{word-spacing:3.900000px;}
.wsfa{word-spacing:3.960000px;}
.ws73{word-spacing:4.020000px;}
.ws4f{word-spacing:4.080000px;}
.ws5e{word-spacing:4.140000px;}
.ws41{word-spacing:4.380000px;}
.ws6b{word-spacing:4.440000px;}
.wsc2{word-spacing:4.464000px;}
.ws4c{word-spacing:4.500000px;}
.ws77{word-spacing:4.560000px;}
.wsd7{word-spacing:4.575600px;}
.ws58{word-spacing:4.680000px;}
.ws6c{word-spacing:4.740000px;}
.wsfb{word-spacing:4.860000px;}
.ws46{word-spacing:4.920000px;}
.ws83{word-spacing:5.280000px;}
.ws117{word-spacing:5.460000px;}
.wse2{word-spacing:5.640000px;}
.wsdf{word-spacing:6.240000px;}
.wsc0{word-spacing:6.360000px;}
.wsfe{word-spacing:9.203031px;}
.ws100{word-spacing:10.709577px;}
.ws10e{word-spacing:14.223732px;}
.ws103{word-spacing:17.390781px;}
.ws101{word-spacing:18.111303px;}
.ws10c{word-spacing:22.630941px;}
.ws10d{word-spacing:35.633088px;}
.wseb{word-spacing:42.910200px;}
.wse7{word-spacing:43.524000px;}
.wsf0{word-spacing:44.137800px;}
.wsef{word-spacing:44.751600px;}
.ws10b{word-spacing:44.868870px;}
.ws10f{word-spacing:45.229131px;}
.ws105{word-spacing:47.816460px;}
.ws108{word-spacing:57.609009px;}
.ws106{word-spacing:63.111177px;}
.wse3{word-spacing:64.337400px;}
.ws102{word-spacing:68.940855px;}
.ws104{word-spacing:76.146075px;}
.wsff{word-spacing:77.259609px;}
.wse5{word-spacing:78.343200px;}
.wse9{word-spacing:78.957000px;}
.wse6{word-spacing:79.570800px;}
.wsee{word-spacing:80.184600px;}
.ws10a{word-spacing:81.779247px;}
.ws109{word-spacing:84.071817px;}
.ws107{word-spacing:84.694086px;}
.wse4{word-spacing:145.303200px;}
.wsea{word-spacing:145.917000px;}
.wsed{word-spacing:147.144600px;}
.wsa6{word-spacing:177.220800px;}
.wsa8{word-spacing:215.667000px;}
.wse8{word-spacing:234.583200px;}
.wsec{word-spacing:235.197000px;}
.wsa5{word-spacing:245.129400px;}
.wsa7{word-spacing:248.756400px;}
.wsa4{word-spacing:262.539000px;}
.wscc{word-spacing:347.634000px;}
.wscd{word-spacing:347.968800px;}
.wsca{word-spacing:538.972200px;}
.wsce{word-spacing:995.220000px;}
.ws3a{word-spacing:995.598000px;}
.wsf9{word-spacing:995.652000px;}
.wsdd{word-spacing:995.760000px;}
.ws93{word-spacing:995.868000px;}
.ws80{word-spacing:995.976000px;}
.ws116{word-spacing:996.030000px;}
.ws69{word-spacing:996.084000px;}
.wsae{word-spacing:997.434000px;}
.ws121{word-spacing:998.136000px;}
.wsa2{word-spacing:1382.110200px;}
.wsbd{word-spacing:1446.660000px;}
.wsd2{word-spacing:1446.984000px;}
.ws20{word-spacing:1447.902000px;}
.ws125{word-spacing:1448.064000px;}
.ws54{word-spacing:1448.226000px;}
.ws76{word-spacing:1449.360000px;}
.ws8c{word-spacing:1450.710000px;}
.ws110{word-spacing:1451.250000px;}
.wsf2{word-spacing:1451.736000px;}
.ws11a{word-spacing:1453.842000px;}
.wsa9{word-spacing:1454.814000px;}
._4c{margin-left:-998.290800px;}
._24{margin-left:-996.855000px;}
._a{margin-left:-995.409600px;}
._e{margin-left:-16.320000px;}
._f{margin-left:-12.540000px;}
._23{margin-left:-10.320000px;}
._2{margin-left:-8.150400px;}
._6{margin-left:-6.043200px;}
._4{margin-left:-4.761600px;}
._1{margin-left:-3.369600px;}
._0{margin-left:-1.440000px;}
._3{width:1.387200px;}
._5{width:2.434500px;}
._7{width:4.146300px;}
._28{width:6.231600px;}
._3b{width:8.400000px;}
._25{width:10.320000px;}
._26{width:11.460000px;}
._4a{width:13.320000px;}
._46{width:14.861214px;}
._49{width:18.471564px;}
._44{width:20.627517px;}
._41{width:21.677883px;}
._40{width:23.023953px;}
._11{width:24.720000px;}
._3f{width:25.876569px;}
._43{width:27.088356px;}
._13{width:29.851800px;}
._4b{width:31.470000px;}
._27{width:32.865000px;}
._10{width:36.600000px;}
._14{width:43.522800px;}
._45{width:44.773896px;}
._3d{width:46.146159px;}
._12{width:47.932200px;}
._b{width:49.103400px;}
._c{width:51.949800px;}
._9{width:53.790000px;}
._8{width:55.297200px;}
._d{width:56.859600px;}
._47{width:59.541318px;}
._42{width:61.571880px;}
._37{width:63.444600px;}
._38{width:64.672200px;}
._48{width:69.366618px;}
._3e{width:70.971417px;}
._30{width:79.905600px;}
._36{width:82.584000px;}
._3a{width:83.811600px;}
._2f{width:85.932000px;}
._35{width:87.550200px;}
._31{width:90.507600px;}
._3c{width:93.143844px;}
._34{width:97.705800px;}
._32{width:101.109600px;}
._39{width:116.398800px;}
._2e{width:135.378600px;}
._33{width:144.243000px;}
._1e{width:191.561400px;}
._2d{width:198.961200px;}
._2b{width:232.574400px;}
._22{width:237.072600px;}
._29{width:246.904200px;}
._21{width:268.286400px;}
._1f{width:281.455200px;}
._20{width:317.892600px;}
._2a{width:366.773400px;}
._2c{width:404.773200px;}
._15{width:614.905200px;}
._1a{width:812.115000px;}
._16{width:814.608600px;}
._17{width:819.342600px;}
._1c{width:1053.158400px;}
._1d{width:1082.766600px;}
._19{width:1167.801000px;}
._18{width:1170.434400px;}
._1b{width:1256.695200px;}
.fc1{color:rgb(123,121,121);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:22.200000px;}
.fsa{font-size:32.751000px;}
.fs9{font-size:34.934400px;}
.fs6{font-size:34.980000px;}
.fs7{font-size:41.400000px;}
.fs2{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs8{font-size:55.800000px;}
.fs5{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y135{bottom:90.219150px;}
.y140{bottom:90.283636px;}
.y14b{bottom:90.302461px;}
.y136{bottom:90.309215px;}
.y141{bottom:90.373701px;}
.y14c{bottom:90.392526px;}
.y137{bottom:90.399281px;}
.y142{bottom:90.463766px;}
.y14d{bottom:90.482591px;}
.y138{bottom:90.489346px;}
.y82{bottom:90.548700px;}
.y143{bottom:90.553831px;}
.yc3{bottom:90.554850px;}
.y127{bottom:90.560850px;}
.y54{bottom:90.567150px;}
.y139{bottom:90.579411px;}
.y144{bottom:90.643897px;}
.y13a{bottom:90.669476px;}
.y145{bottom:90.733962px;}
.y13b{bottom:90.759541px;}
.y146{bottom:90.824027px;}
.y13c{bottom:90.849607px;}
.y147{bottom:90.914092px;}
.y13d{bottom:90.939672px;}
.y148{bottom:91.004158px;}
.y13e{bottom:91.029737px;}
.y149{bottom:91.094223px;}
.y13f{bottom:91.119802px;}
.y14a{bottom:91.184288px;}
.y87{bottom:91.318050px;}
.y125{bottom:91.430850px;}
.y128{bottom:91.586250px;}
.y1a0{bottom:102.364800px;}
.y17c{bottom:102.390300px;}
.y81{bottom:107.804850px;}
.yb1{bottom:107.811000px;}
.y126{bottom:107.817000px;}
.y53{bottom:107.817150px;}
.y124{bottom:108.681600px;}
.y86{bottom:109.768050px;}
.y19f{bottom:119.615550px;}
.y17b{bottom:119.641050px;}
.y80{bottom:125.061000px;}
.y73{bottom:125.061150px;}
.y52{bottom:125.067150px;}
.y123{bottom:125.932350px;}
.y85{bottom:128.218050px;}
.y19e{bottom:136.866300px;}
.y17a{bottom:136.891800px;}
.ye3{bottom:142.292700px;}
.y51{bottom:142.304850px;}
.y157{bottom:142.311000px;}
.y7f{bottom:142.317150px;}
.y72{bottom:142.317300px;}
.y122{bottom:143.183100px;}
.y84{bottom:146.668050px;}
.y129{bottom:151.972800px;}
.y19d{bottom:154.117050px;}
.y27{bottom:154.141050px;}
.y179{bottom:154.142550px;}
.ye2{bottom:159.548850px;}
.yec{bottom:159.554850px;}
.y50{bottom:159.561000px;}
.y7e{bottom:159.567150px;}
.y121{bottom:160.433850px;}
.y83{bottom:165.118050px;}
.y12a{bottom:169.518602px;}
.y19c{bottom:171.367800px;}
.y26{bottom:171.391800px;}
.y178{bottom:171.393300px;}
.ye1{bottom:176.805000px;}
.yeb{bottom:176.811000px;}
.y7d{bottom:176.811150px;}
.y4f{bottom:176.817150px;}
.y120{bottom:182.209950px;}
.y71{bottom:183.568050px;}
.y19b{bottom:188.618550px;}
.y25{bottom:188.642550px;}
.y177{bottom:188.644050px;}
.yc2{bottom:194.048700px;}
.yf6{bottom:194.061000px;}
.ye0{bottom:194.061150px;}
.y4e{bottom:194.067150px;}
.y7c{bottom:194.067300px;}
.y11f{bottom:198.405900px;}
.y70{bottom:202.018050px;}
.y19a{bottom:205.869300px;}
.y24{bottom:205.893300px;}
.y176{bottom:205.894800px;}
.yc1{bottom:211.304850px;}
.yea{bottom:211.305000px;}
.y7b{bottom:211.305150px;}
.y4d{bottom:211.311150px;}
.yf5{bottom:211.317150px;}
.ydf{bottom:211.317300px;}
.y11e{bottom:216.945450px;}
.y6f{bottom:220.468050px;}
.y199{bottom:223.120050px;}
.y23{bottom:223.144050px;}
.y175{bottom:223.145550px;}
.yc0{bottom:228.561000px;}
.ye9{bottom:228.561150px;}
.y7a{bottom:228.561300px;}
.y4c{bottom:228.567300px;}
.y11d{bottom:233.141400px;}
.y6e{bottom:238.918050px;}
.y198{bottom:240.370800px;}
.y22{bottom:240.394800px;}
.y174{bottom:240.396300px;}
.ybf{bottom:245.817150px;}
.ye8{bottom:245.817300px;}
.y79{bottom:245.817450px;}
.yb0{bottom:250.761600px;}
.y11c{bottom:251.680950px;}
.y6d{bottom:257.368050px;}
.y197{bottom:257.621550px;}
.y21{bottom:257.645550px;}
.y173{bottom:257.647050px;}
.ybe{bottom:263.054850px;}
.y156{bottom:263.055000px;}
.y78{bottom:263.061450px;}
.y11b{bottom:267.876900px;}
.ya5{bottom:272.672250px;}
.yab{bottom:272.686200px;}
.y196{bottom:274.872300px;}
.y20{bottom:274.896300px;}
.y172{bottom:274.897800px;}
.y4b{bottom:275.818050px;}
.ybd{bottom:280.311000px;}
.y155{bottom:280.311150px;}
.y77{bottom:280.317600px;}
.y11a{bottom:286.416450px;}
.ya4{bottom:288.868200px;}
.yaa{bottom:288.882150px;}
.y12b{bottom:289.282459px;}
.y195{bottom:292.123050px;}
.y1f{bottom:292.147050px;}
.y171{bottom:292.148550px;}
.y4a{bottom:294.268050px;}
.ye7{bottom:294.268200px;}
.ybc{bottom:297.567150px;}
.y154{bottom:297.567300px;}
.y12c{bottom:299.483304px;}
.y119{bottom:302.612400px;}
.ya3{bottom:305.064150px;}
.ya9{bottom:305.078100px;}
.yaf{bottom:305.092050px;}
.y194{bottom:309.373800px;}
.y1e{bottom:309.397800px;}
.y170{bottom:309.399300px;}
.y49{bottom:312.718050px;}
.ye6{bottom:312.718200px;}
.y153{bottom:314.811150px;}
.ybb{bottom:314.817300px;}
.y118{bottom:321.151950px;}
.ya2{bottom:321.260100px;}
.ya8{bottom:321.274050px;}
.yae{bottom:321.288000px;}
.y193{bottom:326.624550px;}
.y1d{bottom:326.648550px;}
.y16f{bottom:326.650050px;}
.y48{bottom:331.168050px;}
.ye5{bottom:331.168200px;}
.yba{bottom:332.067300px;}
.y117{bottom:337.347900px;}
.ya1{bottom:337.456050px;}
.ya7{bottom:337.470000px;}
.yad{bottom:337.483950px;}
.y192{bottom:343.875300px;}
.y1c{bottom:343.899300px;}
.y16e{bottom:343.900800px;}
.yb9{bottom:349.311150px;}
.y47{bottom:349.618050px;}
.ye4{bottom:349.618200px;}
.ya0{bottom:353.652000px;}
.ya6{bottom:353.665950px;}
.yac{bottom:353.679900px;}
.y116{bottom:355.887450px;}
.y191{bottom:361.126050px;}
.y1b{bottom:361.150050px;}
.y16d{bottom:361.151550px;}
.yde{bottom:361.893750px;}
.yb8{bottom:366.567300px;}
.y46{bottom:368.068050px;}
.y152{bottom:368.068200px;}
.y115{bottom:372.083400px;}
.y9f{bottom:372.624000px;}
.y190{bottom:378.376800px;}
.y1a{bottom:378.400800px;}
.y16c{bottom:378.402300px;}
.ydd{bottom:379.144500px;}
.yb7{bottom:383.817300px;}
.yf4{bottom:385.025400px;}
.y45{bottom:386.518050px;}
.y151{bottom:386.518200px;}
.y9d{bottom:388.819950px;}
.y114{bottom:390.622950px;}
.y18f{bottom:395.627550px;}
.y19{bottom:395.651550px;}
.y16b{bottom:395.653050px;}
.ydc{bottom:401.066850px;}
.yb6{bottom:401.067300px;}
.yf3{bottom:402.276150px;}
.y6c{bottom:404.968050px;}
.y150{bottom:404.968200px;}
.y9e{bottom:405.015900px;}
.y113{bottom:409.162500px;}
.y12d{bottom:411.910937px;}
.y18e{bottom:412.878300px;}
.y18{bottom:412.902300px;}
.y16a{bottom:412.903800px;}
.ydb{bottom:417.262800px;}
.yb5{bottom:418.298850px;}
.y44{bottom:423.418050px;}
.y14f{bottom:423.418200px;}
.y9c{bottom:423.987900px;}
.yf2{bottom:424.134750px;}
.y112{bottom:427.702050px;}
.y12e{bottom:428.347572px;}
.y18d{bottom:430.129050px;}
.y17{bottom:430.153050px;}
.y169{bottom:430.154550px;}
.yb4{bottom:435.555000px;}
.yda{bottom:436.220850px;}
.y6b{bottom:441.868050px;}
.y14e{bottom:441.868200px;}
.y97{bottom:442.945950px;}
.y91{bottom:442.955100px;}
.yf1{bottom:443.106750px;}
.y111{bottom:443.898000px;}
.y18c{bottom:447.379800px;}
.y16{bottom:447.403800px;}
.y168{bottom:447.405300px;}
.yd9{bottom:452.416800px;}
.yb3{bottom:452.811150px;}
.y96{bottom:459.141900px;}
.y90{bottom:459.151050px;}
.y6a{bottom:460.318050px;}
.yf0{bottom:462.078750px;}
.y110{bottom:462.437550px;}
.y18b{bottom:464.630550px;}
.y15{bottom:464.654550px;}
.y167{bottom:464.656050px;}
.yb2{bottom:470.067300px;}
.yd8{bottom:471.374850px;}
.y43{bottom:473.809800px;}
.y95{bottom:475.337850px;}
.y8f{bottom:475.347000px;}
.y9b{bottom:475.351800px;}
.y10f{bottom:478.633500px;}
.y76{bottom:478.768050px;}
.yef{bottom:481.050750px;}
.y18a{bottom:481.881300px;}
.y14{bottom:481.905300px;}
.y166{bottom:481.906800px;}
.yd7{bottom:487.570800px;}
.y42{bottom:491.060550px;}
.y8e{bottom:491.542950px;}
.y9a{bottom:491.547750px;}
.y94{bottom:491.556900px;}
.y10e{bottom:497.173050px;}
.y69{bottom:497.218050px;}
.yee{bottom:497.246700px;}
.y189{bottom:499.132050px;}
.y165{bottom:499.157550px;}
.yd4{bottom:506.528850px;}
.y8d{bottom:507.738900px;}
.y99{bottom:507.743700px;}
.y93{bottom:507.752850px;}
.y41{bottom:508.311300px;}
.y10d{bottom:513.369000px;}
.yd6{bottom:514.633800px;}
.y75{bottom:515.668050px;}
.yed{bottom:516.218700px;}
.y188{bottom:516.382800px;}
.y13{bottom:516.406800px;}
.y164{bottom:516.408300px;}
.yd3{bottom:522.724800px;}
.y8c{bottom:523.934850px;}
.y98{bottom:523.939650px;}
.y92{bottom:523.948800px;}
.y40{bottom:525.562050px;}
.yd5{bottom:530.829750px;}
.y10c{bottom:531.908550px;}
.y187{bottom:533.633550px;}
.y12{bottom:533.657550px;}
.y163{bottom:533.659050px;}
.y74{bottom:534.118050px;}
.yd2{bottom:538.920750px;}
.y3f{bottom:542.812800px;}
.y8b{bottom:542.906850px;}
.y10b{bottom:548.104500px;}
.y12f{bottom:549.220596px;}
.y186{bottom:550.884300px;}
.y11{bottom:550.908300px;}
.y162{bottom:550.909800px;}
.y68{bottom:552.568050px;}
.y130{bottom:558.321007px;}
.y89{bottom:559.102800px;}
.y3e{bottom:560.063550px;}
.y10a{bottom:566.644050px;}
.y185{bottom:568.135050px;}
.y10{bottom:568.159050px;}
.y161{bottom:568.160550px;}
.y67{bottom:571.018050px;}
.y8a{bottom:575.298750px;}
.y3d{bottom:577.314300px;}
.y109{bottom:582.840000px;}
.y184{bottom:585.385800px;}
.yf{bottom:585.409800px;}
.y160{bottom:585.411300px;}
.y66{bottom:589.468050px;}
.y88{bottom:594.270750px;}
.y108{bottom:601.379550px;}
.y183{bottom:602.636550px;}
.ye{bottom:602.660550px;}
.y15f{bottom:602.662050px;}
.y65{bottom:607.918050px;}
.y3c{bottom:611.815800px;}
.y107{bottom:617.575500px;}
.y182{bottom:619.887300px;}
.yd{bottom:619.911300px;}
.y15e{bottom:619.912800px;}
.y64{bottom:626.368050px;}
.y3b{bottom:629.066550px;}
.y1bc{bottom:629.436300px;}
.y106{bottom:636.115050px;}
.y181{bottom:637.138050px;}
.yc{bottom:637.162050px;}
.y15d{bottom:637.163550px;}
.y63{bottom:644.818050px;}
.y3a{bottom:646.317300px;}
.y1bb{bottom:646.687050px;}
.yd1{bottom:653.891250px;}
.y180{bottom:654.388800px;}
.yb{bottom:654.412800px;}
.y15c{bottom:654.414300px;}
.y105{bottom:654.654600px;}
.y62{bottom:663.268050px;}
.y39{bottom:663.568050px;}
.yd0{bottom:671.142000px;}
.y17f{bottom:671.639550px;}
.ya{bottom:671.663550px;}
.y15b{bottom:671.665050px;}
.y131{bottom:671.849074px;}
.y104{bottom:673.194150px;}
.y38{bottom:680.818800px;}
.y61{bottom:681.718050px;}
.y132{bottom:685.263883px;}
.ycf{bottom:688.392750px;}
.y17e{bottom:688.890300px;}
.y9{bottom:688.914300px;}
.y15a{bottom:688.915800px;}
.y103{bottom:689.390100px;}
.y37{bottom:698.069550px;}
.y1ba{bottom:698.439300px;}
.y1ad{bottom:698.452050px;}
.y60{bottom:700.168050px;}
.y17d{bottom:706.141050px;}
.y8{bottom:706.165050px;}
.y159{bottom:706.166550px;}
.y102{bottom:707.929650px;}
.yce{bottom:710.214150px;}
.y36{bottom:715.320300px;}
.y1b9{bottom:715.690050px;}
.y1ac{bottom:715.702800px;}
.y5f{bottom:718.618050px;}
.y7{bottom:723.415800px;}
.y101{bottom:724.125600px;}
.ycd{bottom:729.186150px;}
.y35{bottom:732.571050px;}
.y1b8{bottom:732.940800px;}
.y1ab{bottom:732.953550px;}
.y5e{bottom:737.068050px;}
.y6{bottom:740.666550px;}
.y158{bottom:740.668050px;}
.y100{bottom:742.665150px;}
.ycc{bottom:748.158150px;}
.y34{bottom:749.821800px;}
.y1b7{bottom:750.191550px;}
.y1aa{bottom:750.204300px;}
.y5d{bottom:755.518050px;}
.y5{bottom:757.917300px;}
.yff{bottom:758.861100px;}
.y33{bottom:767.072550px;}
.ycb{bottom:767.130150px;}
.y1b6{bottom:767.442300px;}
.y1a9{bottom:767.455050px;}
.y5c{bottom:773.968050px;}
.y4{bottom:775.168050px;}
.yfe{bottom:777.400650px;}
.y32{bottom:784.323300px;}
.y1b5{bottom:784.693050px;}
.y1a8{bottom:784.705800px;}
.yca{bottom:786.102150px;}
.y5b{bottom:792.418050px;}
.yfd{bottom:793.596600px;}
.y31{bottom:801.574050px;}
.y1b4{bottom:801.943800px;}
.y1a7{bottom:801.956550px;}
.yc9{bottom:805.074150px;}
.y133{bottom:809.158733px;}
.y5a{bottom:810.868050px;}
.yfc{bottom:812.136150px;}
.y134{bottom:815.228585px;}
.y30{bottom:818.824800px;}
.y1b3{bottom:819.194550px;}
.y1a6{bottom:819.207300px;}
.yc8{bottom:824.046150px;}
.y3{bottom:826.768050px;}
.yfb{bottom:828.332100px;}
.y59{bottom:829.318050px;}
.y2f{bottom:836.075550px;}
.y1b2{bottom:836.445300px;}
.y1a5{bottom:836.458050px;}
.yc7{bottom:843.018150px;}
.yfa{bottom:846.871650px;}
.y58{bottom:847.768050px;}
.y2e{bottom:853.326300px;}
.y1b1{bottom:853.696050px;}
.y1a4{bottom:853.708800px;}
.y29{bottom:857.391000px;}
.yc6{bottom:861.990150px;}
.yf9{bottom:863.067600px;}
.y28{bottom:864.889050px;}
.y57{bottom:866.218050px;}
.y2d{bottom:870.577050px;}
.y2{bottom:870.815700px;}
.y1b0{bottom:870.946800px;}
.y1a3{bottom:870.959550px;}
.yc5{bottom:880.962150px;}
.yf8{bottom:881.607150px;}
.y56{bottom:884.668050px;}
.y2c{bottom:887.827800px;}
.y1af{bottom:888.197550px;}
.y1a2{bottom:888.210300px;}
.y1{bottom:896.303700px;}
.yc4{bottom:899.934150px;}
.yf7{bottom:900.146700px;}
.y55{bottom:903.118050px;}
.y2b{bottom:905.078550px;}
.y1ae{bottom:905.448300px;}
.y1a1{bottom:905.461050px;}
.y2a{bottom:955.942350px;}
.h7{height:15.295800px;}
.h15{height:25.087266px;}
.h16{height:25.132506px;}
.h17{height:25.136190px;}
.h14{height:26.759750px;}
.h18{height:45.543000px;}
.h10{height:45.696000px;}
.h5{height:45.900000px;}
.h6{height:46.614000px;}
.h4{height:48.195000px;}
.hf{height:48.378600px;}
.hb{height:49.996800px;}
.h11{height:50.021400px;}
.hc{height:50.046000px;}
.h12{height:50.070600px;}
.h8{height:50.868000px;}
.ha{height:54.000000px;}
.hd{height:54.000600px;}
.he{height:56.520000px;}
.h9{height:56.700000px;}
.h3{height:67.824000px;}
.h13{height:82.416600px;}
.h2{height:90.720000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.x4{left:25.966350px;}
.x3{left:28.835700px;}
.x1{left:72.283500px;}
.x5{left:80.787450px;}
.x3f{left:85.033500px;}
.x28{left:91.920000px;}
.x2{left:93.537750px;}
.x6{left:102.041700px;}
.x29{left:118.261650px;}
.x2a{left:133.687371px;}
.x2b{left:149.113092px;}
.xe{left:150.370050px;}
.x2c{left:164.538813px;}
.xc{left:166.496250px;}
.xd{left:173.792100px;}
.x2d{left:179.964534px;}
.x1a{left:196.296600px;}
.x1b{left:198.458850px;}
.x2e{left:210.815976px;}
.xa{left:221.110350px;}
.x2f{left:226.241697px;}
.xf{left:242.607450px;}
.x19{left:244.089300px;}
.x30{left:257.093139px;}
.x10{left:263.811450px;}
.x31{left:272.518860px;}
.x32{left:287.933271px;}
.x33{left:303.358992px;}
.x1c{left:305.134500px;}
.x1d{left:307.938450px;}
.x34{left:318.784713px;}
.x12{left:326.795700px;}
.x11{left:327.911700px;}
.x35{left:334.210434px;}
.x36{left:349.636155px;}
.x41{left:353.421000px;}
.xb{left:357.170700px;}
.x43{left:361.912200px;}
.x37{left:365.061876px;}
.x40{left:366.171000px;}
.x42{left:374.662200px;}
.x38{left:380.487597px;}
.x13{left:390.714600px;}
.x14{left:396.489900px;}
.x39{left:411.339039px;}
.x1e{left:413.972400px;}
.x1f{left:416.134650px;}
.x3a{left:426.764760px;}
.x3b{left:442.190481px;}
.x16{left:446.765700px;}
.x3c{left:457.603971px;}
.x3d{left:473.029692px;}
.x15{left:476.423400px;}
.x3e{left:488.455413px;}
.x9{left:493.233000px;}
.x22{left:515.995650px;}
.x20{left:524.944650px;}
.x21{left:527.748600px;}
.x23{left:533.246400px;}
.x24{left:550.497150px;}
.x18{left:553.315800px;}
.x25{left:567.747900px;}
.x17{left:571.255500px;}
.x26{left:584.998650px;}
.x27{left:602.249400px;}
.x8{left:651.643500px;}
.x7{left:654.512850px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.v3{vertical-align:28.817600pt;}
.ls51{letter-spacing:-1.632000pt;}
.ls64{letter-spacing:-1.440000pt;}
.ls52{letter-spacing:-1.388800pt;}
.lsb{letter-spacing:-1.314667pt;}
.ls6b{letter-spacing:-1.200000pt;}
.ls1a{letter-spacing:-0.906667pt;}
.ls1b{letter-spacing:-0.816000pt;}
.ls19{letter-spacing:-0.770667pt;}
.ls3d{letter-spacing:-0.693333pt;}
.ls1c{letter-spacing:-0.634667pt;}
.ls40{letter-spacing:-0.586667pt;}
.ls3f{letter-spacing:-0.533333pt;}
.ls1d{letter-spacing:-0.498667pt;}
.ls3e{letter-spacing:-0.480000pt;}
.ls18{letter-spacing:-0.453333pt;}
.ls41{letter-spacing:-0.426667pt;}
.ls67{letter-spacing:-0.368000pt;}
.ls3c{letter-spacing:-0.320000pt;}
.ls65{letter-spacing:-0.288000pt;}
.ls2e{letter-spacing:-0.266667pt;}
.ls60{letter-spacing:-0.248000pt;}
.ls2c{letter-spacing:-0.213333pt;}
.lsc{letter-spacing:-0.181333pt;}
.ls2d{letter-spacing:-0.160000pt;}
.ls20{letter-spacing:-0.148800pt;}
.lsa{letter-spacing:-0.136000pt;}
.ls2b{letter-spacing:-0.106667pt;}
.ls21{letter-spacing:-0.099200pt;}
.ls50{letter-spacing:-0.093280pt;}
.ls1e{letter-spacing:-0.090667pt;}
.ls38{letter-spacing:-0.053333pt;}
.ls36{letter-spacing:-0.049600pt;}
.ls69{letter-spacing:-0.048000pt;}
.ls6a{letter-spacing:-0.045333pt;}
.ls8{letter-spacing:0.000000pt;}
.ls61{letter-spacing:0.026667pt;}
.ls5c{letter-spacing:0.031093pt;}
.ls4d{letter-spacing:0.036693pt;}
.ls10{letter-spacing:0.045333pt;}
.ls4c{letter-spacing:0.049600pt;}
.ls23{letter-spacing:0.053333pt;}
.ls2{letter-spacing:0.090667pt;}
.ls16{letter-spacing:0.099200pt;}
.ls35{letter-spacing:0.106667pt;}
.ls13{letter-spacing:0.132533pt;}
.ls3a{letter-spacing:0.133333pt;}
.ls4{letter-spacing:0.136000pt;}
.ls55{letter-spacing:0.144000pt;}
.ls57{letter-spacing:0.148800pt;}
.ls14{letter-spacing:0.160000pt;}
.ls33{letter-spacing:0.168320pt;}
.ls32{letter-spacing:0.168427pt;}
.ls3{letter-spacing:0.181333pt;}
.ls5d{letter-spacing:0.186560pt;}
.ls53{letter-spacing:0.186667pt;}
.ls4a{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.197333pt;}
.ls15{letter-spacing:0.198400pt;}
.ls12{letter-spacing:0.213333pt;}
.ls1{letter-spacing:0.226667pt;}
.ls31{letter-spacing:0.240000pt;}
.ls4b{letter-spacing:0.248000pt;}
.ls56{letter-spacing:0.248747pt;}
.ls27{letter-spacing:0.264320pt;}
.ls22{letter-spacing:0.266667pt;}
.ls0{letter-spacing:0.272000pt;}
.ls59{letter-spacing:0.293333pt;}
.lse{letter-spacing:0.296000pt;}
.ls28{letter-spacing:0.297600pt;}
.ls68{letter-spacing:0.317333pt;}
.ls11{letter-spacing:0.320000pt;}
.ls54{letter-spacing:0.347200pt;}
.ls26{letter-spacing:0.373333pt;}
.ls30{letter-spacing:0.400000pt;}
.ls34{letter-spacing:0.426667pt;}
.ls6c{letter-spacing:0.446400pt;}
.ls7{letter-spacing:0.453333pt;}
.ls24{letter-spacing:0.480000pt;}
.ls5a{letter-spacing:0.496000pt;}
.ls39{letter-spacing:0.506667pt;}
.ls25{letter-spacing:0.533333pt;}
.ls17{letter-spacing:0.576000pt;}
.ls42{letter-spacing:0.586667pt;}
.ls43{letter-spacing:0.640000pt;}
.ls44{letter-spacing:0.666667pt;}
.ls6{letter-spacing:0.680000pt;}
.ls58{letter-spacing:0.693333pt;}
.ls5{letter-spacing:0.725333pt;}
.ls3b{letter-spacing:0.768000pt;}
.ls9{letter-spacing:0.770667pt;}
.ls46{letter-spacing:0.800000pt;}
.ls45{letter-spacing:0.853333pt;}
.ls47{letter-spacing:0.906667pt;}
.ls2a{letter-spacing:0.960000pt;}
.ls1f{letter-spacing:1.066667pt;}
.ls4f{letter-spacing:1.120000pt;}
.ls2f{letter-spacing:1.296000pt;}
.ls37{letter-spacing:1.344000pt;}
.ls48{letter-spacing:1.392000pt;}
.lsf{letter-spacing:1.440000pt;}
.ls62{letter-spacing:1.530667pt;}
.ls4e{letter-spacing:1.536000pt;}
.ls6d{letter-spacing:1.586667pt;}
.ls63{letter-spacing:1.632000pt;}
.ls66{letter-spacing:1.728000pt;}
.ls29{letter-spacing:1.776000pt;}
.ls5f{letter-spacing:1.824000pt;}
.ls5b{letter-spacing:1.968000pt;}
.ls49{letter-spacing:2.026667pt;}
.ls5e{letter-spacing:2.112000pt;}
.wsc8{word-spacing:-13.488000pt;}
.ws39{word-spacing:-13.152000pt;}
.wsf6{word-spacing:-13.104000pt;}
.wsdb{word-spacing:-13.008000pt;}
.ws91{word-spacing:-12.912000pt;}
.ws7f{word-spacing:-12.768000pt;}
.ws68{word-spacing:-12.720000pt;}
.wsf7{word-spacing:-11.573333pt;}
.wsac{word-spacing:-11.520000pt;}
.ws1d{word-spacing:-11.413333pt;}
.wsc9{word-spacing:-11.200000pt;}
.ws11f{word-spacing:-10.896000pt;}
.ws0{word-spacing:-10.789333pt;}
.ws51{word-spacing:-10.453333pt;}
.ws52{word-spacing:-10.346667pt;}
.wscb{word-spacing:-10.267200pt;}
.wsdc{word-spacing:-10.026667pt;}
.ws53{word-spacing:-9.866667pt;}
.wsf1{word-spacing:-9.746667pt;}
.ws124{word-spacing:-9.520000pt;}
.wsfd{word-spacing:-9.066667pt;}
.wsa3{word-spacing:-8.878400pt;}
.ws1{word-spacing:-8.704000pt;}
.ws120{word-spacing:-8.114667pt;}
.ws1e{word-spacing:-7.912000pt;}
.wsf8{word-spacing:-7.544000pt;}
.wsad{word-spacing:-6.778347pt;}
.wsbc{word-spacing:-6.716160pt;}
.wsbb{word-spacing:-6.560693pt;}
.ws1c{word-spacing:-6.529600pt;}
.ws92{word-spacing:-6.436320pt;}
.ws27{word-spacing:-3.218667pt;}
.ws28{word-spacing:-2.629333pt;}
.wsf3{word-spacing:-2.380800pt;}
.ws26{word-spacing:-2.312000pt;}
.ws81{word-spacing:-2.026667pt;}
.ws122{word-spacing:-1.973333pt;}
.wsd6{word-spacing:-1.920000pt;}
.ws6f{word-spacing:-1.866667pt;}
.ws95{word-spacing:-1.813333pt;}
.ws11b{word-spacing:-1.785600pt;}
.ws4a{word-spacing:-1.760000pt;}
.wsda{word-spacing:-1.736000pt;}
.ws3e{word-spacing:-1.706667pt;}
.ws3d{word-spacing:-1.653333pt;}
.ws34{word-spacing:-1.636800pt;}
.ws7c{word-spacing:-1.600000pt;}
.ws35{word-spacing:-1.587200pt;}
.ws18{word-spacing:-1.586667pt;}
.wsd4{word-spacing:-1.546667pt;}
.ws12{word-spacing:-1.541333pt;}
.ws72{word-spacing:-1.493333pt;}
.ws7{word-spacing:-1.450667pt;}
.ws71{word-spacing:-1.440000pt;}
.ws67{word-spacing:-1.438400pt;}
.wsf{word-spacing:-1.405333pt;}
.wsa0{word-spacing:-1.388800pt;}
.ws82{word-spacing:-1.386667pt;}
.ws9d{word-spacing:-1.339200pt;}
.ws119{word-spacing:-1.333333pt;}
.ws61{word-spacing:-1.280000pt;}
.ws11{word-spacing:-1.269333pt;}
.ws6e{word-spacing:-1.226667pt;}
.ws11c{word-spacing:-1.190400pt;}
.wscf{word-spacing:-1.173333pt;}
.wsd8{word-spacing:-1.140800pt;}
.ws94{word-spacing:-1.120000pt;}
.ws8{word-spacing:-1.088000pt;}
.ws2a{word-spacing:-1.066667pt;}
.wsa1{word-spacing:-1.041600pt;}
.ws70{word-spacing:-1.013333pt;}
.ws113{word-spacing:-0.997333pt;}
.wsb3{word-spacing:-0.960000pt;}
.wsc5{word-spacing:-0.942400pt;}
.ws1a{word-spacing:-0.906667pt;}
.ws64{word-spacing:-0.892800pt;}
.wsb1{word-spacing:-0.853333pt;}
.ws9c{word-spacing:-0.843200pt;}
.ws22{word-spacing:-0.816000pt;}
.wsaf{word-spacing:-0.800000pt;}
.wse0{word-spacing:-0.746667pt;}
.ws115{word-spacing:-0.725333pt;}
.ws88{word-spacing:-0.693333pt;}
.ws23{word-spacing:-0.680000pt;}
.ws47{word-spacing:-0.640000pt;}
.ws123{word-spacing:-0.634667pt;}
.ws44{word-spacing:-0.586667pt;}
.ws1f{word-spacing:-0.576000pt;}
.ws14{word-spacing:-0.544000pt;}
.ws45{word-spacing:-0.533333pt;}
.ws63{word-spacing:-0.496000pt;}
.wse1{word-spacing:-0.480000pt;}
.ws29{word-spacing:-0.453333pt;}
.ws5f{word-spacing:-0.426667pt;}
.wsb4{word-spacing:-0.373333pt;}
.ws62{word-spacing:-0.347200pt;}
.ws4d{word-spacing:-0.320000pt;}
.ws2{word-spacing:-0.315733pt;}
.ws21{word-spacing:-0.272000pt;}
.wsd3{word-spacing:-0.266667pt;}
.ws3f{word-spacing:-0.213333pt;}
.ws33{word-spacing:-0.198400pt;}
.ws1b{word-spacing:-0.197333pt;}
.wsb{word-spacing:-0.181333pt;}
.ws2b{word-spacing:-0.160000pt;}
.ws65{word-spacing:-0.148800pt;}
.wsf4{word-spacing:-0.136000pt;}
.ws7a{word-spacing:-0.106667pt;}
.ws90{word-spacing:-0.099200pt;}
.wsab{word-spacing:-0.053333pt;}
.ws25{word-spacing:-0.045333pt;}
.ws3{word-spacing:0.000000pt;}
.ws10{word-spacing:0.045333pt;}
.wsd9{word-spacing:0.049600pt;}
.ws40{word-spacing:0.053333pt;}
.ws11e{word-spacing:0.099200pt;}
.ws85{word-spacing:0.106667pt;}
.ws31{word-spacing:0.160000pt;}
.ws7d{word-spacing:0.213333pt;}
.ws118{word-spacing:0.266667pt;}
.wsa{word-spacing:0.272000pt;}
.ws8e{word-spacing:0.320000pt;}
.ws74{word-spacing:0.373333pt;}
.ws49{word-spacing:0.426667pt;}
.wsc7{word-spacing:0.446400pt;}
.wsf5{word-spacing:0.453333pt;}
.wsc1{word-spacing:0.480000pt;}
.ws24{word-spacing:0.498667pt;}
.ws75{word-spacing:0.586667pt;}
.ws5c{word-spacing:0.640000pt;}
.ws9f{word-spacing:0.644800pt;}
.ws114{word-spacing:0.680000pt;}
.ws66{word-spacing:0.744000pt;}
.ws5b{word-spacing:0.746667pt;}
.ws4e{word-spacing:0.800000pt;}
.wsc6{word-spacing:0.843200pt;}
.wsaa{word-spacing:0.853333pt;}
.ws84{word-spacing:0.906667pt;}
.ws7b{word-spacing:0.960000pt;}
.ws9a{word-spacing:0.992000pt;}
.ws17{word-spacing:0.997333pt;}
.ws59{word-spacing:1.013333pt;}
.ws36{word-spacing:1.041600pt;}
.wse{word-spacing:1.088000pt;}
.ws9b{word-spacing:1.091200pt;}
.wsde{word-spacing:1.120000pt;}
.ws38{word-spacing:1.140800pt;}
.ws96{word-spacing:1.173333pt;}
.wsd1{word-spacing:1.226667pt;}
.wsc3{word-spacing:1.240000pt;}
.ws19{word-spacing:1.269333pt;}
.ws8a{word-spacing:1.333333pt;}
.ws13{word-spacing:1.360000pt;}
.ws8b{word-spacing:1.386667pt;}
.wsc{word-spacing:1.405333pt;}
.ws9{word-spacing:1.450667pt;}
.ws42{word-spacing:1.493333pt;}
.ws43{word-spacing:1.546667pt;}
.ws37{word-spacing:1.587200pt;}
.wsb0{word-spacing:1.600000pt;}
.ws99{word-spacing:1.636800pt;}
.ws2f{word-spacing:1.653333pt;}
.wsd{word-spacing:1.677333pt;}
.ws32{word-spacing:1.686400pt;}
.ws2e{word-spacing:1.706667pt;}
.ws2d{word-spacing:1.760000pt;}
.ws6{word-spacing:1.768000pt;}
.ws30{word-spacing:1.813333pt;}
.ws16{word-spacing:1.858667pt;}
.wsbf{word-spacing:1.866667pt;}
.ws87{word-spacing:1.920000pt;}
.ws9e{word-spacing:1.934400pt;}
.ws4{word-spacing:1.949333pt;}
.wsb7{word-spacing:1.973333pt;}
.ws6d{word-spacing:2.026667pt;}
.ws8f{word-spacing:2.033600pt;}
.ws5{word-spacing:2.040000pt;}
.wsbe{word-spacing:2.080000pt;}
.wsb9{word-spacing:2.083200pt;}
.ws15{word-spacing:2.130667pt;}
.ws3b{word-spacing:2.133333pt;}
.ws3c{word-spacing:2.186667pt;}
.ws5a{word-spacing:2.240000pt;}
.ws111{word-spacing:2.266667pt;}
.ws50{word-spacing:2.281600pt;}
.ws55{word-spacing:2.293333pt;}
.ws89{word-spacing:2.346667pt;}
.ws112{word-spacing:2.357333pt;}
.ws5d{word-spacing:2.400000pt;}
.ws97{word-spacing:2.453333pt;}
.ws4b{word-spacing:2.506667pt;}
.ws2c{word-spacing:2.560000pt;}
.wsb8{word-spacing:2.579200pt;}
.ws57{word-spacing:2.613333pt;}
.ws7e{word-spacing:2.666667pt;}
.wsfc{word-spacing:2.678400pt;}
.ws98{word-spacing:2.720000pt;}
.wsb6{word-spacing:2.773333pt;}
.ws60{word-spacing:2.826667pt;}
.wsba{word-spacing:2.876800pt;}
.ws48{word-spacing:2.880000pt;}
.wsc4{word-spacing:2.926400pt;}
.wsd5{word-spacing:2.933333pt;}
.wsd0{word-spacing:2.986667pt;}
.wsb2{word-spacing:3.093333pt;}
.ws56{word-spacing:3.146667pt;}
.ws8d{word-spacing:3.200000pt;}
.ws78{word-spacing:3.253333pt;}
.ws6a{word-spacing:3.306667pt;}
.ws86{word-spacing:3.360000pt;}
.ws11d{word-spacing:3.372800pt;}
.wsb5{word-spacing:3.413333pt;}
.ws79{word-spacing:3.466667pt;}
.wsfa{word-spacing:3.520000pt;}
.ws73{word-spacing:3.573333pt;}
.ws4f{word-spacing:3.626667pt;}
.ws5e{word-spacing:3.680000pt;}
.ws41{word-spacing:3.893333pt;}
.ws6b{word-spacing:3.946667pt;}
.wsc2{word-spacing:3.968000pt;}
.ws4c{word-spacing:4.000000pt;}
.ws77{word-spacing:4.053333pt;}
.wsd7{word-spacing:4.067200pt;}
.ws58{word-spacing:4.160000pt;}
.ws6c{word-spacing:4.213333pt;}
.wsfb{word-spacing:4.320000pt;}
.ws46{word-spacing:4.373333pt;}
.ws83{word-spacing:4.693333pt;}
.ws117{word-spacing:4.853333pt;}
.wse2{word-spacing:5.013333pt;}
.wsdf{word-spacing:5.546667pt;}
.wsc0{word-spacing:5.653333pt;}
.wsfe{word-spacing:8.180472pt;}
.ws100{word-spacing:9.519624pt;}
.ws10e{word-spacing:12.643317pt;}
.ws103{word-spacing:15.458472pt;}
.ws101{word-spacing:16.098936pt;}
.ws10c{word-spacing:20.116392pt;}
.ws10d{word-spacing:31.673856pt;}
.wseb{word-spacing:38.142400pt;}
.wse7{word-spacing:38.688000pt;}
.wsf0{word-spacing:39.233600pt;}
.wsef{word-spacing:39.779200pt;}
.ws10b{word-spacing:39.883440pt;}
.ws10f{word-spacing:40.203672pt;}
.ws105{word-spacing:42.503520pt;}
.ws108{word-spacing:51.208008pt;}
.ws106{word-spacing:56.098824pt;}
.wse3{word-spacing:57.188800pt;}
.ws102{word-spacing:61.280760pt;}
.ws104{word-spacing:67.685400pt;}
.wsff{word-spacing:68.675208pt;}
.wse5{word-spacing:69.638400pt;}
.wse9{word-spacing:70.184000pt;}
.wse6{word-spacing:70.729600pt;}
.wsee{word-spacing:71.275200pt;}
.ws10a{word-spacing:72.692664pt;}
.ws109{word-spacing:74.730504pt;}
.ws107{word-spacing:75.283632pt;}
.wse4{word-spacing:129.158400pt;}
.wsea{word-spacing:129.704000pt;}
.wsed{word-spacing:130.795200pt;}
.wsa6{word-spacing:157.529600pt;}
.wsa8{word-spacing:191.704000pt;}
.wse8{word-spacing:208.518400pt;}
.wsec{word-spacing:209.064000pt;}
.wsa5{word-spacing:217.892800pt;}
.wsa7{word-spacing:221.116800pt;}
.wsa4{word-spacing:233.368000pt;}
.wscc{word-spacing:309.008000pt;}
.wscd{word-spacing:309.305600pt;}
.wsca{word-spacing:479.086400pt;}
.wsce{word-spacing:884.640000pt;}
.ws3a{word-spacing:884.976000pt;}
.wsf9{word-spacing:885.024000pt;}
.wsdd{word-spacing:885.120000pt;}
.ws93{word-spacing:885.216000pt;}
.ws80{word-spacing:885.312000pt;}
.ws116{word-spacing:885.360000pt;}
.ws69{word-spacing:885.408000pt;}
.wsae{word-spacing:886.608000pt;}
.ws121{word-spacing:887.232000pt;}
.wsa2{word-spacing:1228.542400pt;}
.wsbd{word-spacing:1285.920000pt;}
.wsd2{word-spacing:1286.208000pt;}
.ws20{word-spacing:1287.024000pt;}
.ws125{word-spacing:1287.168000pt;}
.ws54{word-spacing:1287.312000pt;}
.ws76{word-spacing:1288.320000pt;}
.ws8c{word-spacing:1289.520000pt;}
.ws110{word-spacing:1290.000000pt;}
.wsf2{word-spacing:1290.432000pt;}
.ws11a{word-spacing:1292.304000pt;}
.wsa9{word-spacing:1293.168000pt;}
._4c{margin-left:-887.369600pt;}
._24{margin-left:-886.093333pt;}
._a{margin-left:-884.808533pt;}
._e{margin-left:-14.506667pt;}
._f{margin-left:-11.146667pt;}
._23{margin-left:-9.173333pt;}
._2{margin-left:-7.244800pt;}
._6{margin-left:-5.371733pt;}
._4{margin-left:-4.232533pt;}
._1{margin-left:-2.995200pt;}
._0{margin-left:-1.280000pt;}
._3{width:1.233067pt;}
._5{width:2.164000pt;}
._7{width:3.685600pt;}
._28{width:5.539200pt;}
._3b{width:7.466667pt;}
._25{width:9.173333pt;}
._26{width:10.186667pt;}
._4a{width:11.840000pt;}
._46{width:13.209968pt;}
._49{width:16.419168pt;}
._44{width:18.335571pt;}
._41{width:19.269229pt;}
._40{width:20.465736pt;}
._11{width:21.973333pt;}
._3f{width:23.001395pt;}
._43{width:24.078539pt;}
._13{width:26.534933pt;}
._4b{width:27.973333pt;}
._27{width:29.213333pt;}
._10{width:32.533333pt;}
._14{width:38.686933pt;}
._45{width:39.799019pt;}
._3d{width:41.018808pt;}
._12{width:42.606400pt;}
._b{width:43.647467pt;}
._c{width:46.177600pt;}
._9{width:47.813333pt;}
._8{width:49.153067pt;}
._d{width:50.541867pt;}
._47{width:52.925616pt;}
._42{width:54.730560pt;}
._37{width:56.395200pt;}
._38{width:57.486400pt;}
._48{width:61.659216pt;}
._3e{width:63.085704pt;}
._30{width:71.027200pt;}
._36{width:73.408000pt;}
._3a{width:74.499200pt;}
._2f{width:76.384000pt;}
._35{width:77.822400pt;}
._31{width:80.451200pt;}
._3c{width:82.794528pt;}
._34{width:86.849600pt;}
._32{width:89.875200pt;}
._39{width:103.465600pt;}
._2e{width:120.336533pt;}
._33{width:128.216000pt;}
._1e{width:170.276800pt;}
._2d{width:176.854400pt;}
._2b{width:206.732800pt;}
._22{width:210.731200pt;}
._29{width:219.470400pt;}
._21{width:238.476800pt;}
._1f{width:250.182400pt;}
._20{width:282.571200pt;}
._2a{width:326.020800pt;}
._2c{width:359.798400pt;}
._15{width:546.582400pt;}
._1a{width:721.880000pt;}
._16{width:724.096533pt;}
._17{width:728.304533pt;}
._1c{width:936.140800pt;}
._1d{width:962.459200pt;}
._19{width:1038.045333pt;}
._18{width:1040.386133pt;}
._1b{width:1117.062400pt;}
.fs3{font-size:19.733333pt;}
.fsa{font-size:29.112000pt;}
.fs9{font-size:31.052800pt;}
.fs6{font-size:31.093333pt;}
.fs7{font-size:36.800000pt;}
.fs2{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs8{font-size:49.600000pt;}
.fs5{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y135{bottom:80.194800pt;}
.y140{bottom:80.252121pt;}
.y14b{bottom:80.268854pt;}
.y136{bottom:80.274858pt;}
.y141{bottom:80.332179pt;}
.y14c{bottom:80.348912pt;}
.y137{bottom:80.354916pt;}
.y142{bottom:80.412237pt;}
.y14d{bottom:80.428970pt;}
.y138{bottom:80.434974pt;}
.y82{bottom:80.487733pt;}
.y143{bottom:80.492295pt;}
.yc3{bottom:80.493200pt;}
.y127{bottom:80.498533pt;}
.y54{bottom:80.504133pt;}
.y139{bottom:80.515032pt;}
.y144{bottom:80.572353pt;}
.y13a{bottom:80.595090pt;}
.y145{bottom:80.652411pt;}
.y13b{bottom:80.675148pt;}
.y146{bottom:80.732469pt;}
.y13c{bottom:80.755206pt;}
.y147{bottom:80.812527pt;}
.y13d{bottom:80.835264pt;}
.y148{bottom:80.892585pt;}
.y13e{bottom:80.915322pt;}
.y149{bottom:80.972643pt;}
.y13f{bottom:80.995380pt;}
.y14a{bottom:81.052701pt;}
.y87{bottom:81.171600pt;}
.y125{bottom:81.271867pt;}
.y128{bottom:81.410000pt;}
.y1a0{bottom:90.990933pt;}
.y17c{bottom:91.013600pt;}
.y81{bottom:95.826533pt;}
.yb1{bottom:95.832000pt;}
.y126{bottom:95.837333pt;}
.y53{bottom:95.837467pt;}
.y124{bottom:96.605867pt;}
.y86{bottom:97.571600pt;}
.y19f{bottom:106.324933pt;}
.y17b{bottom:106.347600pt;}
.y80{bottom:111.165333pt;}
.y73{bottom:111.165467pt;}
.y52{bottom:111.170800pt;}
.y123{bottom:111.939867pt;}
.y85{bottom:113.971600pt;}
.y19e{bottom:121.658933pt;}
.y17a{bottom:121.681600pt;}
.ye3{bottom:126.482400pt;}
.y51{bottom:126.493200pt;}
.y157{bottom:126.498667pt;}
.y7f{bottom:126.504133pt;}
.y72{bottom:126.504267pt;}
.y122{bottom:127.273867pt;}
.y84{bottom:130.371600pt;}
.y129{bottom:135.086933pt;}
.y19d{bottom:136.992933pt;}
.y27{bottom:137.014267pt;}
.y179{bottom:137.015600pt;}
.ye2{bottom:141.821200pt;}
.yec{bottom:141.826533pt;}
.y50{bottom:141.832000pt;}
.y7e{bottom:141.837467pt;}
.y121{bottom:142.607867pt;}
.y83{bottom:146.771600pt;}
.y12a{bottom:150.683202pt;}
.y19c{bottom:152.326933pt;}
.y26{bottom:152.348267pt;}
.y178{bottom:152.349600pt;}
.ye1{bottom:157.160000pt;}
.yeb{bottom:157.165333pt;}
.y7d{bottom:157.165467pt;}
.y4f{bottom:157.170800pt;}
.y120{bottom:161.964400pt;}
.y71{bottom:163.171600pt;}
.y19b{bottom:167.660933pt;}
.y25{bottom:167.682267pt;}
.y177{bottom:167.683600pt;}
.yc2{bottom:172.487733pt;}
.yf6{bottom:172.498667pt;}
.ye0{bottom:172.498800pt;}
.y4e{bottom:172.504133pt;}
.y7c{bottom:172.504267pt;}
.y11f{bottom:176.360800pt;}
.y70{bottom:179.571600pt;}
.y19a{bottom:182.994933pt;}
.y24{bottom:183.016267pt;}
.y176{bottom:183.017600pt;}
.yc1{bottom:187.826533pt;}
.yea{bottom:187.826667pt;}
.y7b{bottom:187.826800pt;}
.y4d{bottom:187.832133pt;}
.yf5{bottom:187.837467pt;}
.ydf{bottom:187.837600pt;}
.y11e{bottom:192.840400pt;}
.y6f{bottom:195.971600pt;}
.y199{bottom:198.328933pt;}
.y23{bottom:198.350267pt;}
.y175{bottom:198.351600pt;}
.yc0{bottom:203.165333pt;}
.ye9{bottom:203.165467pt;}
.y7a{bottom:203.165600pt;}
.y4c{bottom:203.170933pt;}
.y11d{bottom:207.236800pt;}
.y6e{bottom:212.371600pt;}
.y198{bottom:213.662933pt;}
.y22{bottom:213.684267pt;}
.y174{bottom:213.685600pt;}
.ybf{bottom:218.504133pt;}
.ye8{bottom:218.504267pt;}
.y79{bottom:218.504400pt;}
.yb0{bottom:222.899200pt;}
.y11c{bottom:223.716400pt;}
.y6d{bottom:228.771600pt;}
.y197{bottom:228.996933pt;}
.y21{bottom:229.018267pt;}
.y173{bottom:229.019600pt;}
.ybe{bottom:233.826533pt;}
.y156{bottom:233.826667pt;}
.y78{bottom:233.832400pt;}
.y11b{bottom:238.112800pt;}
.ya5{bottom:242.375333pt;}
.yab{bottom:242.387733pt;}
.y196{bottom:244.330933pt;}
.y20{bottom:244.352267pt;}
.y172{bottom:244.353600pt;}
.y4b{bottom:245.171600pt;}
.ybd{bottom:249.165333pt;}
.y155{bottom:249.165467pt;}
.y77{bottom:249.171200pt;}
.y11a{bottom:254.592400pt;}
.ya4{bottom:256.771733pt;}
.yaa{bottom:256.784133pt;}
.y12b{bottom:257.139964pt;}
.y195{bottom:259.664933pt;}
.y1f{bottom:259.686267pt;}
.y171{bottom:259.687600pt;}
.y4a{bottom:261.571600pt;}
.ye7{bottom:261.571733pt;}
.ybc{bottom:264.504133pt;}
.y154{bottom:264.504267pt;}
.y12c{bottom:266.207381pt;}
.y119{bottom:268.988800pt;}
.ya3{bottom:271.168133pt;}
.ya9{bottom:271.180533pt;}
.yaf{bottom:271.192933pt;}
.y194{bottom:274.998933pt;}
.y1e{bottom:275.020267pt;}
.y170{bottom:275.021600pt;}
.y49{bottom:277.971600pt;}
.ye6{bottom:277.971733pt;}
.y153{bottom:279.832133pt;}
.ybb{bottom:279.837600pt;}
.y118{bottom:285.468400pt;}
.ya2{bottom:285.564533pt;}
.ya8{bottom:285.576933pt;}
.yae{bottom:285.589333pt;}
.y193{bottom:290.332933pt;}
.y1d{bottom:290.354267pt;}
.y16f{bottom:290.355600pt;}
.y48{bottom:294.371600pt;}
.ye5{bottom:294.371733pt;}
.yba{bottom:295.170933pt;}
.y117{bottom:299.864800pt;}
.ya1{bottom:299.960933pt;}
.ya7{bottom:299.973333pt;}
.yad{bottom:299.985733pt;}
.y192{bottom:305.666933pt;}
.y1c{bottom:305.688267pt;}
.y16e{bottom:305.689600pt;}
.yb9{bottom:310.498800pt;}
.y47{bottom:310.771600pt;}
.ye4{bottom:310.771733pt;}
.ya0{bottom:314.357333pt;}
.ya6{bottom:314.369733pt;}
.yac{bottom:314.382133pt;}
.y116{bottom:316.344400pt;}
.y191{bottom:321.000933pt;}
.y1b{bottom:321.022267pt;}
.y16d{bottom:321.023600pt;}
.yde{bottom:321.683333pt;}
.yb8{bottom:325.837600pt;}
.y46{bottom:327.171600pt;}
.y152{bottom:327.171733pt;}
.y115{bottom:330.740800pt;}
.y9f{bottom:331.221333pt;}
.y190{bottom:336.334933pt;}
.y1a{bottom:336.356267pt;}
.y16c{bottom:336.357600pt;}
.ydd{bottom:337.017333pt;}
.yb7{bottom:341.170933pt;}
.yf4{bottom:342.244800pt;}
.y45{bottom:343.571600pt;}
.y151{bottom:343.571733pt;}
.y9d{bottom:345.617733pt;}
.y114{bottom:347.220400pt;}
.y18f{bottom:351.668933pt;}
.y19{bottom:351.690267pt;}
.y16b{bottom:351.691600pt;}
.ydc{bottom:356.503867pt;}
.yb6{bottom:356.504267pt;}
.yf3{bottom:357.578800pt;}
.y6c{bottom:359.971600pt;}
.y150{bottom:359.971733pt;}
.y9e{bottom:360.014133pt;}
.y113{bottom:363.700000pt;}
.y12d{bottom:366.143055pt;}
.y18e{bottom:367.002933pt;}
.y18{bottom:367.024267pt;}
.y16a{bottom:367.025600pt;}
.ydb{bottom:370.900267pt;}
.yb5{bottom:371.821200pt;}
.y44{bottom:376.371600pt;}
.y14f{bottom:376.371733pt;}
.y9c{bottom:376.878133pt;}
.yf2{bottom:377.008667pt;}
.y112{bottom:380.179600pt;}
.y12e{bottom:380.753397pt;}
.y18d{bottom:382.336933pt;}
.y17{bottom:382.358267pt;}
.y169{bottom:382.359600pt;}
.yb4{bottom:387.160000pt;}
.yda{bottom:387.751867pt;}
.y6b{bottom:392.771600pt;}
.y14e{bottom:392.771733pt;}
.y97{bottom:393.729733pt;}
.y91{bottom:393.737867pt;}
.yf1{bottom:393.872667pt;}
.y111{bottom:394.576000pt;}
.y18c{bottom:397.670933pt;}
.y16{bottom:397.692267pt;}
.y168{bottom:397.693600pt;}
.yd9{bottom:402.148267pt;}
.yb3{bottom:402.498800pt;}
.y96{bottom:408.126133pt;}
.y90{bottom:408.134267pt;}
.y6a{bottom:409.171600pt;}
.yf0{bottom:410.736667pt;}
.y110{bottom:411.055600pt;}
.y18b{bottom:413.004933pt;}
.y15{bottom:413.026267pt;}
.y167{bottom:413.027600pt;}
.yb2{bottom:417.837600pt;}
.yd8{bottom:418.999867pt;}
.y43{bottom:421.164267pt;}
.y95{bottom:422.522533pt;}
.y8f{bottom:422.530667pt;}
.y9b{bottom:422.534933pt;}
.y10f{bottom:425.452000pt;}
.y76{bottom:425.571600pt;}
.yef{bottom:427.600667pt;}
.y18a{bottom:428.338933pt;}
.y14{bottom:428.360267pt;}
.y166{bottom:428.361600pt;}
.yd7{bottom:433.396267pt;}
.y42{bottom:436.498267pt;}
.y8e{bottom:436.927067pt;}
.y9a{bottom:436.931333pt;}
.y94{bottom:436.939467pt;}
.y10e{bottom:441.931600pt;}
.y69{bottom:441.971600pt;}
.yee{bottom:441.997067pt;}
.y189{bottom:443.672933pt;}
.y165{bottom:443.695600pt;}
.yd4{bottom:450.247867pt;}
.y8d{bottom:451.323467pt;}
.y99{bottom:451.327733pt;}
.y93{bottom:451.335867pt;}
.y41{bottom:451.832267pt;}
.y10d{bottom:456.328000pt;}
.yd6{bottom:457.452267pt;}
.y75{bottom:458.371600pt;}
.yed{bottom:458.861067pt;}
.y188{bottom:459.006933pt;}
.y13{bottom:459.028267pt;}
.y164{bottom:459.029600pt;}
.yd3{bottom:464.644267pt;}
.y8c{bottom:465.719867pt;}
.y98{bottom:465.724133pt;}
.y92{bottom:465.732267pt;}
.y40{bottom:467.166267pt;}
.yd5{bottom:471.848667pt;}
.y10c{bottom:472.807600pt;}
.y187{bottom:474.340933pt;}
.y12{bottom:474.362267pt;}
.y163{bottom:474.363600pt;}
.y74{bottom:474.771600pt;}
.yd2{bottom:479.040667pt;}
.y3f{bottom:482.500267pt;}
.y8b{bottom:482.583867pt;}
.y10b{bottom:487.204000pt;}
.y12f{bottom:488.196085pt;}
.y186{bottom:489.674933pt;}
.y11{bottom:489.696267pt;}
.y162{bottom:489.697600pt;}
.y68{bottom:491.171600pt;}
.y130{bottom:496.285340pt;}
.y89{bottom:496.980267pt;}
.y3e{bottom:497.834267pt;}
.y10a{bottom:503.683600pt;}
.y185{bottom:505.008933pt;}
.y10{bottom:505.030267pt;}
.y161{bottom:505.031600pt;}
.y67{bottom:507.571600pt;}
.y8a{bottom:511.376667pt;}
.y3d{bottom:513.168267pt;}
.y109{bottom:518.080000pt;}
.y184{bottom:520.342933pt;}
.yf{bottom:520.364267pt;}
.y160{bottom:520.365600pt;}
.y66{bottom:523.971600pt;}
.y88{bottom:528.240667pt;}
.y108{bottom:534.559600pt;}
.y183{bottom:535.676933pt;}
.ye{bottom:535.698267pt;}
.y15f{bottom:535.699600pt;}
.y65{bottom:540.371600pt;}
.y3c{bottom:543.836267pt;}
.y107{bottom:548.956000pt;}
.y182{bottom:551.010933pt;}
.yd{bottom:551.032267pt;}
.y15e{bottom:551.033600pt;}
.y64{bottom:556.771600pt;}
.y3b{bottom:559.170267pt;}
.y1bc{bottom:559.498933pt;}
.y106{bottom:565.435600pt;}
.y181{bottom:566.344933pt;}
.yc{bottom:566.366267pt;}
.y15d{bottom:566.367600pt;}
.y63{bottom:573.171600pt;}
.y3a{bottom:574.504267pt;}
.y1bb{bottom:574.832933pt;}
.yd1{bottom:581.236667pt;}
.y180{bottom:581.678933pt;}
.yb{bottom:581.700267pt;}
.y15c{bottom:581.701600pt;}
.y105{bottom:581.915200pt;}
.y62{bottom:589.571600pt;}
.y39{bottom:589.838267pt;}
.yd0{bottom:596.570667pt;}
.y17f{bottom:597.012933pt;}
.ya{bottom:597.034267pt;}
.y15b{bottom:597.035600pt;}
.y131{bottom:597.199177pt;}
.y104{bottom:598.394800pt;}
.y38{bottom:605.172267pt;}
.y61{bottom:605.971600pt;}
.y132{bottom:609.123452pt;}
.ycf{bottom:611.904667pt;}
.y17e{bottom:612.346933pt;}
.y9{bottom:612.368267pt;}
.y15a{bottom:612.369600pt;}
.y103{bottom:612.791200pt;}
.y37{bottom:620.506267pt;}
.y1ba{bottom:620.834933pt;}
.y1ad{bottom:620.846267pt;}
.y60{bottom:622.371600pt;}
.y17d{bottom:627.680933pt;}
.y8{bottom:627.702267pt;}
.y159{bottom:627.703600pt;}
.y102{bottom:629.270800pt;}
.yce{bottom:631.301467pt;}
.y36{bottom:635.840267pt;}
.y1b9{bottom:636.168933pt;}
.y1ac{bottom:636.180267pt;}
.y5f{bottom:638.771600pt;}
.y7{bottom:643.036267pt;}
.y101{bottom:643.667200pt;}
.ycd{bottom:648.165467pt;}
.y35{bottom:651.174267pt;}
.y1b8{bottom:651.502933pt;}
.y1ab{bottom:651.514267pt;}
.y5e{bottom:655.171600pt;}
.y6{bottom:658.370267pt;}
.y158{bottom:658.371600pt;}
.y100{bottom:660.146800pt;}
.ycc{bottom:665.029467pt;}
.y34{bottom:666.508267pt;}
.y1b7{bottom:666.836933pt;}
.y1aa{bottom:666.848267pt;}
.y5d{bottom:671.571600pt;}
.y5{bottom:673.704267pt;}
.yff{bottom:674.543200pt;}
.y33{bottom:681.842267pt;}
.ycb{bottom:681.893467pt;}
.y1b6{bottom:682.170933pt;}
.y1a9{bottom:682.182267pt;}
.y5c{bottom:687.971600pt;}
.y4{bottom:689.038267pt;}
.yfe{bottom:691.022800pt;}
.y32{bottom:697.176267pt;}
.y1b5{bottom:697.504933pt;}
.y1a8{bottom:697.516267pt;}
.yca{bottom:698.757467pt;}
.y5b{bottom:704.371600pt;}
.yfd{bottom:705.419200pt;}
.y31{bottom:712.510267pt;}
.y1b4{bottom:712.838933pt;}
.y1a7{bottom:712.850267pt;}
.yc9{bottom:715.621467pt;}
.y133{bottom:719.252207pt;}
.y5a{bottom:720.771600pt;}
.yfc{bottom:721.898800pt;}
.y134{bottom:724.647631pt;}
.y30{bottom:727.844267pt;}
.y1b3{bottom:728.172933pt;}
.y1a6{bottom:728.184267pt;}
.yc8{bottom:732.485467pt;}
.y3{bottom:734.904933pt;}
.yfb{bottom:736.295200pt;}
.y59{bottom:737.171600pt;}
.y2f{bottom:743.178267pt;}
.y1b2{bottom:743.506933pt;}
.y1a5{bottom:743.518267pt;}
.yc7{bottom:749.349467pt;}
.yfa{bottom:752.774800pt;}
.y58{bottom:753.571600pt;}
.y2e{bottom:758.512267pt;}
.y1b1{bottom:758.840933pt;}
.y1a4{bottom:758.852267pt;}
.y29{bottom:762.125333pt;}
.yc6{bottom:766.213467pt;}
.yf9{bottom:767.171200pt;}
.y28{bottom:768.790267pt;}
.y57{bottom:769.971600pt;}
.y2d{bottom:773.846267pt;}
.y2{bottom:774.058400pt;}
.y1b0{bottom:774.174933pt;}
.y1a3{bottom:774.186267pt;}
.yc5{bottom:783.077467pt;}
.yf8{bottom:783.650800pt;}
.y56{bottom:786.371600pt;}
.y2c{bottom:789.180267pt;}
.y1af{bottom:789.508933pt;}
.y1a2{bottom:789.520267pt;}
.y1{bottom:796.714400pt;}
.yc4{bottom:799.941467pt;}
.yf7{bottom:800.130400pt;}
.y55{bottom:802.771600pt;}
.y2b{bottom:804.514267pt;}
.y1ae{bottom:804.842933pt;}
.y1a1{bottom:804.854267pt;}
.y2a{bottom:849.726533pt;}
.h7{height:13.596267pt;}
.h15{height:22.299792pt;}
.h16{height:22.340005pt;}
.h17{height:22.343280pt;}
.h14{height:23.786445pt;}
.h18{height:40.482667pt;}
.h10{height:40.618667pt;}
.h5{height:40.800000pt;}
.h6{height:41.434667pt;}
.h4{height:42.840000pt;}
.hf{height:43.003200pt;}
.hb{height:44.441600pt;}
.h11{height:44.463467pt;}
.hc{height:44.485333pt;}
.h12{height:44.507200pt;}
.h8{height:45.216000pt;}
.ha{height:48.000000pt;}
.hd{height:48.000533pt;}
.he{height:50.240000pt;}
.h9{height:50.400000pt;}
.h3{height:60.288000pt;}
.h13{height:73.259200pt;}
.h2{height:80.640000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.x4{left:23.081200pt;}
.x3{left:25.631733pt;}
.x1{left:64.252000pt;}
.x5{left:71.811067pt;}
.x3f{left:75.585333pt;}
.x28{left:81.706667pt;}
.x2{left:83.144667pt;}
.x6{left:90.703733pt;}
.x29{left:105.121467pt;}
.x2a{left:118.833219pt;}
.x2b{left:132.544971pt;}
.xe{left:133.662267pt;}
.x2c{left:146.256723pt;}
.xc{left:147.996667pt;}
.xd{left:154.481867pt;}
.x2d{left:159.968475pt;}
.x1a{left:174.485867pt;}
.x1b{left:176.407867pt;}
.x2e{left:187.391979pt;}
.xa{left:196.542533pt;}
.x2f{left:201.103731pt;}
.xf{left:215.651067pt;}
.x19{left:216.968267pt;}
.x30{left:228.527235pt;}
.x10{left:234.499067pt;}
.x31{left:242.238987pt;}
.x32{left:255.940685pt;}
.x33{left:269.652437pt;}
.x1c{left:271.230667pt;}
.x1d{left:273.723067pt;}
.x34{left:283.364189pt;}
.x12{left:290.485067pt;}
.x11{left:291.477067pt;}
.x35{left:297.075941pt;}
.x36{left:310.787693pt;}
.x41{left:314.152000pt;}
.xb{left:317.485067pt;}
.x43{left:321.699733pt;}
.x37{left:324.499445pt;}
.x40{left:325.485333pt;}
.x42{left:333.033067pt;}
.x38{left:338.211197pt;}
.x13{left:347.301867pt;}
.x14{left:352.435467pt;}
.x39{left:365.634701pt;}
.x1e{left:367.975467pt;}
.x1f{left:369.897467pt;}
.x3a{left:379.346453pt;}
.x3b{left:393.058205pt;}
.x16{left:397.125067pt;}
.x3c{left:406.759085pt;}
.x3d{left:420.470837pt;}
.x15{left:423.487467pt;}
.x3e{left:434.182589pt;}
.x9{left:438.429333pt;}
.x22{left:458.662800pt;}
.x20{left:466.617467pt;}
.x21{left:469.109867pt;}
.x23{left:473.996800pt;}
.x24{left:489.330800pt;}
.x18{left:491.836267pt;}
.x25{left:504.664800pt;}
.x17{left:507.782667pt;}
.x26{left:519.998800pt;}
.x27{left:535.332800pt;}
.x8{left:579.238667pt;}
.x7{left:581.789200pt;}
}




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