
    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_a546d38d3d5b5bcd1f96ffb5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.731445;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_e44f5b99f57e1c04a403ff4a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.019531;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_9e51e52d2833511b6ef45534.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.049805;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_4083f4a4c6574ffcc618c200.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_21264c39f83cc804d5db867a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893066;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_626fbd1780475ed976cc8281.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_6acc4bdc0976e934a41d5bd0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.694336;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_9d5a9df720470256d398229d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.969000;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_86b53a32d1498cfa8c5d749c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.852051;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_5ad7f57a82e149ca04338bd9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.947000;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_3a05dd5f92e0808120528f95.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.930000;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_1faafedfa1fe7335deb27b3b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.849121;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_26b54544af5cae999fd121fe.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_8e0029a392efc68340a4c31e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.850586;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);}
.v1{vertical-align:-29.098200px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.985200px;}
.ls18{letter-spacing:-0.924000px;}
.ls3b{letter-spacing:-0.738000px;}
.ls2e{letter-spacing:-0.690000px;}
.ls17{letter-spacing:-0.600000px;}
.ls7d{letter-spacing:-0.594000px;}
.ls2a{letter-spacing:-0.528000px;}
.ls7f{letter-spacing:-0.516000px;}
.ls37{letter-spacing:-0.510000px;}
.ls33{letter-spacing:-0.492000px;}
.ls79{letter-spacing:-0.468000px;}
.ls4e{letter-spacing:-0.396000px;}
.ls3c{letter-spacing:-0.372000px;}
.ls80{letter-spacing:-0.336000px;}
.ls4d{letter-spacing:-0.318000px;}
.ls8d{letter-spacing:-0.312000px;}
.ls5f{letter-spacing:-0.294000px;}
.ls27{letter-spacing:-0.282000px;}
.ls28{letter-spacing:-0.258000px;}
.ls5d{letter-spacing:-0.240000px;}
.ls7a{letter-spacing:-0.228000px;}
.ls7b{letter-spacing:-0.222000px;}
.ls52{letter-spacing:-0.210000px;}
.ls4f{letter-spacing:-0.192000px;}
.ls7e{letter-spacing:-0.180000px;}
.ls31{letter-spacing:-0.174000px;}
.ls8f{letter-spacing:-0.172800px;}
.ls29{letter-spacing:-0.168000px;}
.ls19{letter-spacing:-0.158400px;}
.ls12{letter-spacing:-0.156000px;}
.ls13{letter-spacing:-0.155400px;}
.ls14{letter-spacing:-0.144000px;}
.ls8b{letter-spacing:-0.139200px;}
.ls30{letter-spacing:-0.138000px;}
.ls1a{letter-spacing:-0.129600px;}
.ls53{letter-spacing:-0.126000px;}
.ls3e{letter-spacing:-0.120000px;}
.ls36{letter-spacing:-0.108000px;}
.ls5a{letter-spacing:-0.102000px;}
.lsf{letter-spacing:-0.096000px;}
.ls55{letter-spacing:-0.090000px;}
.ls2d{letter-spacing:-0.078000px;}
.ls58{letter-spacing:-0.072000px;}
.ls7c{letter-spacing:-0.066000px;}
.ls10{letter-spacing:-0.060000px;}
.ls8e{letter-spacing:-0.057600px;}
.ls56{letter-spacing:-0.048000px;}
.ls81{letter-spacing:-0.042000px;}
.ls8c{letter-spacing:-0.038400px;}
.ls5b{letter-spacing:-0.036000px;}
.ls11{letter-spacing:-0.024000px;}
.ls51{letter-spacing:-0.018000px;}
.ls57{letter-spacing:-0.012000px;}
.ls35{letter-spacing:-0.006000px;}
.lse{letter-spacing:0.000000px;}
.ls38{letter-spacing:0.006000px;}
.ls74{letter-spacing:0.008400px;}
.ls88{letter-spacing:0.009600px;}
.ls44{letter-spacing:0.012000px;}
.ls8a{letter-spacing:0.014400px;}
.ls47{letter-spacing:0.018000px;}
.ls46{letter-spacing:0.024000px;}
.ls86{letter-spacing:0.028800px;}
.ls48{letter-spacing:0.030000px;}
.ls34{letter-spacing:0.036000px;}
.ls1d{letter-spacing:0.042000px;}
.ls77{letter-spacing:0.048000px;}
.ls3a{letter-spacing:0.054000px;}
.ls89{letter-spacing:0.086400px;}
.ls45{letter-spacing:0.090000px;}
.ls84{letter-spacing:0.096000px;}
.ls59{letter-spacing:0.102000px;}
.ls5e{letter-spacing:0.132000px;}
.ls78{letter-spacing:0.156000px;}
.ls68{letter-spacing:0.162000px;}
.ls26{letter-spacing:0.168000px;}
.ls39{letter-spacing:0.174000px;}
.ls24{letter-spacing:0.177600px;}
.ls25{letter-spacing:0.178080px;}
.ls75{letter-spacing:0.182400px;}
.ls60{letter-spacing:0.186000px;}
.ls2c{letter-spacing:0.198000px;}
.ls41{letter-spacing:0.204000px;}
.ls40{letter-spacing:0.210000px;}
.ls71{letter-spacing:0.216000px;}
.ls50{letter-spacing:0.228000px;}
.ls54{letter-spacing:0.240000px;}
.ls32{letter-spacing:0.252000px;}
.ls87{letter-spacing:0.254400px;}
.ls2f{letter-spacing:0.258000px;}
.ls6f{letter-spacing:0.294000px;}
.ls2b{letter-spacing:0.306000px;}
.ls73{letter-spacing:0.309120px;}
.ls72{letter-spacing:0.312000px;}
.ls23{letter-spacing:0.330000px;}
.ls66{letter-spacing:0.342000px;}
.ls6a{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.366000px;}
.ls65{letter-spacing:0.378000px;}
.ls63{letter-spacing:0.414000px;}
.ls16{letter-spacing:0.432000px;}
.ls1b{letter-spacing:0.450000px;}
.ls1f{letter-spacing:0.510000px;}
.ls6c{letter-spacing:0.552000px;}
.lsb{letter-spacing:0.575400px;}
.lsa{letter-spacing:0.576000px;}
.ls1e{letter-spacing:0.582000px;}
.ls49{letter-spacing:0.588000px;}
.ls3f{letter-spacing:0.594000px;}
.ls4{letter-spacing:0.599400px;}
.ls6{letter-spacing:0.600000px;}
.ls5{letter-spacing:0.600600px;}
.ls9{letter-spacing:0.606000px;}
.ls15{letter-spacing:0.609000px;}
.ls2{letter-spacing:0.658800px;}
.ls20{letter-spacing:0.666000px;}
.ls76{letter-spacing:0.690000px;}
.ls82{letter-spacing:0.702000px;}
.ls43{letter-spacing:0.714000px;}
.ls1{letter-spacing:0.751954px;}
.ls5c{letter-spacing:0.780000px;}
.ls64{letter-spacing:0.822000px;}
.ls22{letter-spacing:0.858000px;}
.ls69{letter-spacing:0.936000px;}
.ls67{letter-spacing:0.960000px;}
.ls42{letter-spacing:0.966000px;}
.ls7{letter-spacing:0.972000px;}
.ls6d{letter-spacing:0.984000px;}
.ls83{letter-spacing:1.020000px;}
.ls4c{letter-spacing:1.254000px;}
.ls1c{letter-spacing:1.284000px;}
.ls6e{letter-spacing:1.296000px;}
.ls62{letter-spacing:1.308000px;}
.ls8{letter-spacing:1.314000px;}
.ls4b{letter-spacing:1.344000px;}
.ls0{letter-spacing:1.355983px;}
.ls61{letter-spacing:1.422000px;}
.lsc{letter-spacing:1.440000px;}
.ls6b{letter-spacing:1.548000px;}
.ls4a{letter-spacing:3.360000px;}
.ls85{letter-spacing:4.497600px;}
.ls3d{letter-spacing:6.177600px;}
.ls70{letter-spacing:9.048000px;}
.lsd{letter-spacing:14.907324px;}
.ls3{letter-spacing:24.000000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3c{word-spacing:-60.000000px;}
.ws1{word-spacing:-25.500000px;}
.wsd9{word-spacing:-16.548000px;}
.ws6{word-spacing:-16.500000px;}
.ws8{word-spacing:-15.972000px;}
.wsa{word-spacing:-15.600000px;}
.ws39{word-spacing:-15.366000px;}
.wsda{word-spacing:-15.216000px;}
.wsd8{word-spacing:-15.162000px;}
.ws2{word-spacing:-15.000000px;}
.ws3{word-spacing:-14.976000px;}
.ws3e{word-spacing:-14.844000px;}
.wsdc{word-spacing:-14.820000px;}
.ws3a{word-spacing:-14.490000px;}
.ws38{word-spacing:-14.310000px;}
.ws0{word-spacing:-13.780800px;}
.ws3d{word-spacing:-12.177600px;}
.ws11f{word-spacing:-12.086400px;}
.ws4{word-spacing:-12.000000px;}
.wsb{word-spacing:-11.109000px;}
.ws7{word-spacing:-11.100600px;}
.wsc{word-spacing:-11.075400px;}
.ws11e{word-spacing:-10.500000px;}
.ws9{word-spacing:-10.344600px;}
.wsdb{word-spacing:-8.709120px;}
.ws3b{word-spacing:-8.578080px;}
.ws37{word-spacing:-8.400000px;}
.ws5{word-spacing:-6.996000px;}
.ws12{word-spacing:-4.494000px;}
.ws24{word-spacing:-3.792000px;}
.ws23{word-spacing:-3.780000px;}
.ws44{word-spacing:-3.756000px;}
.ws16{word-spacing:-3.750000px;}
.wsd5{word-spacing:-3.744000px;}
.wsde{word-spacing:-3.696000px;}
.ws7a{word-spacing:-3.690000px;}
.ws94{word-spacing:-3.660000px;}
.ws101{word-spacing:-3.648000px;}
.ws13{word-spacing:-3.408000px;}
.ws9d{word-spacing:-3.390000px;}
.ws95{word-spacing:-3.372000px;}
.ws112{word-spacing:-3.186000px;}
.ws117{word-spacing:-3.162000px;}
.ws9f{word-spacing:-3.156000px;}
.ws7e{word-spacing:-3.114000px;}
.ws69{word-spacing:-3.090000px;}
.wse8{word-spacing:-3.042000px;}
.ws114{word-spacing:-3.036000px;}
.ws34{word-spacing:-3.019200px;}
.ws36{word-spacing:-3.014400px;}
.ws128{word-spacing:-3.000000px;}
.ws10d{word-spacing:-2.994000px;}
.wsa3{word-spacing:-2.988000px;}
.wse3{word-spacing:-2.928000px;}
.wsab{word-spacing:-2.910000px;}
.wsb2{word-spacing:-2.904000px;}
.ws48{word-spacing:-2.856000px;}
.ws2d{word-spacing:-2.850000px;}
.wsf3{word-spacing:-2.832000px;}
.wsdf{word-spacing:-2.796000px;}
.ws123{word-spacing:-2.784000px;}
.wsec{word-spacing:-2.694000px;}
.ws1c{word-spacing:-2.649600px;}
.wsd2{word-spacing:-2.556000px;}
.ws67{word-spacing:-2.538000px;}
.ws66{word-spacing:-2.532000px;}
.ws10b{word-spacing:-2.424000px;}
.ws97{word-spacing:-2.412000px;}
.ws102{word-spacing:-2.316000px;}
.ws9e{word-spacing:-2.304000px;}
.ws19{word-spacing:-2.256000px;}
.ws1a{word-spacing:-2.250000px;}
.ws68{word-spacing:-2.202000px;}
.ws90{word-spacing:-2.136000px;}
.ws32{word-spacing:-2.068800px;}
.ws58{word-spacing:-1.932000px;}
.ws113{word-spacing:-1.914000px;}
.ws12b{word-spacing:-1.886400px;}
.wseb{word-spacing:-1.848000px;}
.wsa0{word-spacing:-1.728000px;}
.ws78{word-spacing:-1.722000px;}
.wsa8{word-spacing:-1.692000px;}
.wsf9{word-spacing:-1.656000px;}
.ws55{word-spacing:-1.578000px;}
.ws85{word-spacing:-1.500000px;}
.ws6f{word-spacing:-1.494000px;}
.ws77{word-spacing:-1.482000px;}
.ws116{word-spacing:-1.272000px;}
.wse6{word-spacing:-1.260000px;}
.wsb7{word-spacing:-1.140000px;}
.ws2f{word-spacing:-1.062000px;}
.ws10a{word-spacing:-0.984000px;}
.wsca{word-spacing:-0.918000px;}
.wsef{word-spacing:-0.906000px;}
.ws7d{word-spacing:-0.876000px;}
.ws7c{word-spacing:-0.870000px;}
.ws6b{word-spacing:-0.810000px;}
.ws8d{word-spacing:-0.798000px;}
.wsc2{word-spacing:-0.780000px;}
.ws98{word-spacing:-0.768000px;}
.wsa4{word-spacing:-0.720000px;}
.ws53{word-spacing:-0.714000px;}
.ws27{word-spacing:-0.666000px;}
.ws118{word-spacing:-0.654000px;}
.ws7f{word-spacing:-0.648000px;}
.ws12a{word-spacing:-0.609600px;}
.wsea{word-spacing:-0.606000px;}
.ws4c{word-spacing:-0.594000px;}
.wscf{word-spacing:-0.504000px;}
.wse9{word-spacing:-0.414000px;}
.ws11c{word-spacing:-0.372000px;}
.wsd6{word-spacing:-0.348000px;}
.ws8b{word-spacing:-0.342000px;}
.ws11b{word-spacing:-0.336000px;}
.ws7b{word-spacing:-0.306000px;}
.ws5a{word-spacing:-0.276000px;}
.ws4b{word-spacing:-0.264000px;}
.ws2a{word-spacing:-0.252000px;}
.ws17{word-spacing:-0.228000px;}
.ws52{word-spacing:-0.222000px;}
.ws51{word-spacing:-0.216000px;}
.ws71{word-spacing:-0.204000px;}
.ws18{word-spacing:-0.174000px;}
.ws20{word-spacing:-0.126000px;}
.wsb3{word-spacing:-0.102000px;}
.ws49{word-spacing:-0.096000px;}
.wsa9{word-spacing:-0.090000px;}
.wse4{word-spacing:-0.084000px;}
.wsd{word-spacing:-0.060000px;}
.ws120{word-spacing:-0.048000px;}
.ws91{word-spacing:-0.030000px;}
.wsad{word-spacing:-0.024000px;}
.wsaa{word-spacing:-0.012000px;}
.wsa7{word-spacing:-0.006000px;}
.ws3f{word-spacing:-0.004800px;}
.ws10{word-spacing:0.000000px;}
.wsc1{word-spacing:0.006000px;}
.wsba{word-spacing:0.018000px;}
.wsac{word-spacing:0.048000px;}
.wsb1{word-spacing:0.072000px;}
.wsd4{word-spacing:0.078000px;}
.wsb4{word-spacing:0.102000px;}
.ws15{word-spacing:0.168000px;}
.ws14{word-spacing:0.174000px;}
.ws127{word-spacing:0.196800px;}
.ws126{word-spacing:0.211200px;}
.ws57{word-spacing:0.282000px;}
.ws99{word-spacing:0.366000px;}
.ws89{word-spacing:0.378000px;}
.ws81{word-spacing:0.420000px;}
.ws1d{word-spacing:0.432000px;}
.ws1e{word-spacing:0.498000px;}
.ws107{word-spacing:0.510000px;}
.ws25{word-spacing:0.594000px;}
.ws54{word-spacing:0.624000px;}
.wsf7{word-spacing:0.654000px;}
.wse1{word-spacing:0.660000px;}
.wsce{word-spacing:0.756000px;}
.ws124{word-spacing:0.774000px;}
.wsf4{word-spacing:0.780000px;}
.wse0{word-spacing:0.834000px;}
.wsdd{word-spacing:0.870000px;}
.wscd{word-spacing:0.876000px;}
.ws26{word-spacing:0.882000px;}
.ws2b{word-spacing:0.966000px;}
.ws6a{word-spacing:0.972000px;}
.ws87{word-spacing:0.990000px;}
.ws86{word-spacing:1.026000px;}
.ws1f{word-spacing:1.092000px;}
.ws65{word-spacing:1.122000px;}
.ws46{word-spacing:1.182000px;}
.ws111{word-spacing:1.194000px;}
.ws47{word-spacing:1.254000px;}
.wsc4{word-spacing:1.308000px;}
.ws75{word-spacing:1.320000px;}
.wsc6{word-spacing:1.326000px;}
.ws45{word-spacing:1.356000px;}
.wsc7{word-spacing:1.362000px;}
.ws62{word-spacing:1.380000px;}
.wsd1{word-spacing:1.386000px;}
.ws5d{word-spacing:1.410000px;}
.wsf5{word-spacing:1.440000px;}
.wsd0{word-spacing:1.516800px;}
.ws31{word-spacing:1.531200px;}
.wsfd{word-spacing:1.550400px;}
.ws105{word-spacing:1.590000px;}
.ws92{word-spacing:1.602000px;}
.ws104{word-spacing:1.608000px;}
.ws125{word-spacing:1.614000px;}
.ws43{word-spacing:1.620000px;}
.wse2{word-spacing:1.626000px;}
.wsfb{word-spacing:1.680000px;}
.wsfc{word-spacing:1.684800px;}
.ws61{word-spacing:1.686000px;}
.ws5b{word-spacing:1.758000px;}
.wsa2{word-spacing:1.782000px;}
.ws73{word-spacing:1.830000px;}
.wsd7{word-spacing:1.860000px;}
.ws70{word-spacing:1.878000px;}
.wsae{word-spacing:1.890000px;}
.ws119{word-spacing:1.992000px;}
.wsee{word-spacing:2.058000px;}
.wsf0{word-spacing:2.184000px;}
.ws6d{word-spacing:2.202000px;}
.ws6c{word-spacing:2.208000px;}
.ws4a{word-spacing:2.214000px;}
.ws9a{word-spacing:2.226000px;}
.ws9b{word-spacing:2.244000px;}
.ws56{word-spacing:2.352000px;}
.ws35{word-spacing:2.380800px;}
.ws93{word-spacing:2.550000px;}
.wsaf{word-spacing:2.562000px;}
.wsc9{word-spacing:2.592000px;}
.ws8f{word-spacing:2.724000px;}
.wsa1{word-spacing:2.730000px;}
.wscc{word-spacing:2.760000px;}
.wsbb{word-spacing:2.772000px;}
.ws11a{word-spacing:2.844000px;}
.wsf1{word-spacing:2.850000px;}
.ws10e{word-spacing:2.862000px;}
.wsd3{word-spacing:2.894400px;}
.wsed{word-spacing:2.940000px;}
.wsf6{word-spacing:2.988000px;}
.ws64{word-spacing:3.096000px;}
.ws60{word-spacing:3.132000px;}
.ws1b{word-spacing:3.198000px;}
.wsfa{word-spacing:3.254400px;}
.ws76{word-spacing:3.276000px;}
.ws8c{word-spacing:3.300000px;}
.ws11d{word-spacing:3.336000px;}
.ws30{word-spacing:3.340800px;}
.wsf2{word-spacing:3.402000px;}
.wsbf{word-spacing:3.462000px;}
.ws100{word-spacing:3.470400px;}
.wscb{word-spacing:3.480000px;}
.ws115{word-spacing:3.504000px;}
.ws40{word-spacing:3.516000px;}
.ws42{word-spacing:3.528000px;}
.wsc0{word-spacing:3.546000px;}
.ws103{word-spacing:3.624000px;}
.ws10c{word-spacing:3.690000px;}
.wsa6{word-spacing:3.750000px;}
.ws5e{word-spacing:3.780000px;}
.ws109{word-spacing:3.804000px;}
.ws50{word-spacing:3.834000px;}
.ws12c{word-spacing:4.032000px;}
.wsfe{word-spacing:4.228800px;}
.ws41{word-spacing:4.296000px;}
.ws122{word-spacing:4.302000px;}
.ws10f{word-spacing:4.368000px;}
.ws29{word-spacing:4.392000px;}
.ws108{word-spacing:4.398000px;}
.wsb9{word-spacing:4.410000px;}
.ws110{word-spacing:4.482000px;}
.ws129{word-spacing:4.502400px;}
.ws9c{word-spacing:4.530000px;}
.ws2c{word-spacing:4.848000px;}
.wse7{word-spacing:4.878000px;}
.wse5{word-spacing:4.884000px;}
.ws8a{word-spacing:4.950000px;}
.ws6e{word-spacing:5.148000px;}
.ws59{word-spacing:5.334000px;}
.ws84{word-spacing:5.347200px;}
.ws74{word-spacing:5.352000px;}
.ws4e{word-spacing:5.568000px;}
.ws88{word-spacing:5.580000px;}
.wsb5{word-spacing:5.604000px;}
.ws121{word-spacing:5.616000px;}
.wsbe{word-spacing:5.682000px;}
.wsc8{word-spacing:5.772000px;}
.wsb8{word-spacing:5.784000px;}
.ws5f{word-spacing:5.958000px;}
.ws5c{word-spacing:5.964000px;}
.ws82{word-spacing:6.000000px;}
.wsff{word-spacing:6.004800px;}
.ws83{word-spacing:6.009600px;}
.ws106{word-spacing:6.132000px;}
.ws63{word-spacing:6.186000px;}
.ws80{word-spacing:6.270000px;}
.ws72{word-spacing:6.282000px;}
.ws28{word-spacing:6.498000px;}
.ws96{word-spacing:6.588000px;}
.ws8e{word-spacing:6.606000px;}
.wsa5{word-spacing:6.624000px;}
.wsbd{word-spacing:6.702000px;}
.ws21{word-spacing:6.858000px;}
.wsb6{word-spacing:6.864000px;}
.ws79{word-spacing:6.918000px;}
.wsc5{word-spacing:7.146000px;}
.wsc3{word-spacing:7.302000px;}
.ws4f{word-spacing:7.494000px;}
.ws22{word-spacing:7.500000px;}
.ws4d{word-spacing:7.506000px;}
.wsf8{word-spacing:7.512000px;}
.ws2e{word-spacing:8.250000px;}
.wsb0{word-spacing:10.506000px;}
.wsbc{word-spacing:12.288000px;}
.ws11{word-spacing:13.127400px;}
.wsf{word-spacing:14.983614px;}
.wse{word-spacing:27.082683px;}
.ws33{word-spacing:35.649600px;}
._4{margin-left:-2843.995884px;}
._10{margin-left:-37.803084px;}
._f{margin-left:-36.518400px;}
._18{margin-left:-17.988000px;}
._16{margin-left:-16.740000px;}
._a{margin-left:-15.638849px;}
._1b{margin-left:-13.883216px;}
._1f{margin-left:-11.358000px;}
._1d{margin-left:-9.505583px;}
._17{margin-left:-7.734000px;}
._6{margin-left:-6.710849px;}
._1{margin-left:-4.758268px;}
._5{margin-left:-3.606000px;}
._0{margin-left:-2.416116px;}
._2{margin-left:-1.023151px;}
._7{width:1.098000px;}
._8{width:2.642448px;}
._1a{width:4.708116px;}
._d{width:6.068400px;}
._9{width:7.482000px;}
._20{width:9.672000px;}
._21{width:34.650000px;}
._22{width:35.718000px;}
._1e{width:38.340000px;}
._1c{width:41.898000px;}
._13{width:43.041600px;}
._b{width:45.422400px;}
._11{width:48.072000px;}
._c{width:52.777468px;}
._e{width:54.499200px;}
._14{width:56.539200px;}
._12{width:59.319600px;}
._19{width:637.572000px;}
._3{width:2409.117531px;}
._15{width:2866.030800px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,108,183);}
.fs7{font-size:27.984000px;}
.fsb{font-size:33.600000px;}
.fsa{font-size:36.000000px;}
.fs9{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:58.391400px;}
.fs4{font-size:60.000000px;}
.fs1{font-size:61.635600px;}
.fs8{font-size:66.000000px;}
.fs5{font-size:102.000000px;}
.fs0{font-size:123.271200px;}
.y46{bottom:-22.417500px;}
.y0{bottom:0.000000px;}
.y133{bottom:93.679500px;}
.y135{bottom:94.743000px;}
.y1ac{bottom:96.205500px;}
.ybc{bottom:100.480500px;}
.yf8{bottom:102.217650px;}
.y170{bottom:102.217800px;}
.y131{bottom:103.480650px;}
.y82{bottom:104.190000px;}
.y132{bottom:108.679500px;}
.y134{bottom:109.743000px;}
.y1ab{bottom:114.205500px;}
.ybb{bottom:118.480500px;}
.yf7{bottom:120.217650px;}
.y16f{bottom:120.217800px;}
.y130{bottom:121.480650px;}
.y81{bottom:122.190000px;}
.y1aa{bottom:132.205500px;}
.yba{bottom:136.480500px;}
.yf6{bottom:138.217650px;}
.y16e{bottom:138.217800px;}
.y12f{bottom:139.480650px;}
.y80{bottom:140.190000px;}
.y1a9{bottom:150.205500px;}
.y2d{bottom:152.892000px;}
.yb9{bottom:154.480500px;}
.yf5{bottom:156.217650px;}
.y16d{bottom:156.217800px;}
.y12e{bottom:157.480650px;}
.y42{bottom:157.585500px;}
.y7f{bottom:158.190000px;}
.y1a8{bottom:168.205500px;}
.y2c{bottom:170.892000px;}
.yb8{bottom:172.480500px;}
.y41{bottom:172.585500px;}
.yf4{bottom:174.217650px;}
.y16c{bottom:174.217800px;}
.y12d{bottom:175.480650px;}
.y7e{bottom:176.190000px;}
.y1a7{bottom:186.205500px;}
.y40{bottom:187.585500px;}
.y2b{bottom:188.892000px;}
.yf3{bottom:192.217650px;}
.y16b{bottom:192.217800px;}
.y12c{bottom:193.480650px;}
.y7d{bottom:194.190000px;}
.yb7{bottom:198.955650px;}
.y3f{bottom:202.585500px;}
.y1a6{bottom:204.205500px;}
.y2a{bottom:206.892000px;}
.yf2{bottom:210.217650px;}
.y16a{bottom:210.217800px;}
.y12b{bottom:211.480650px;}
.y7c{bottom:212.190000px;}
.yb6{bottom:213.955500px;}
.y3e{bottom:217.585500px;}
.y1a5{bottom:222.205500px;}
.y29{bottom:224.892000px;}
.yf1{bottom:228.217650px;}
.y169{bottom:228.217800px;}
.yb5{bottom:228.955950px;}
.y12a{bottom:229.480650px;}
.y7b{bottom:230.190000px;}
.y3d{bottom:232.585500px;}
.y1a4{bottom:240.205500px;}
.y28{bottom:242.892000px;}
.yb4{bottom:243.955950px;}
.yf0{bottom:246.217650px;}
.y168{bottom:246.217800px;}
.y129{bottom:247.480650px;}
.y3c{bottom:247.585500px;}
.y7a{bottom:248.190000px;}
.y1a3{bottom:258.205500px;}
.y27{bottom:260.892000px;}
.y3b{bottom:262.585500px;}
.yef{bottom:264.217650px;}
.y167{bottom:264.217800px;}
.y128{bottom:265.480650px;}
.y79{bottom:266.190000px;}
.yb3{bottom:267.459150px;}
.y1a2{bottom:276.205500px;}
.y3a{bottom:277.585500px;}
.y26{bottom:278.892000px;}
.yee{bottom:282.217650px;}
.y166{bottom:282.217800px;}
.yb2{bottom:282.459000px;}
.y127{bottom:283.480650px;}
.y78{bottom:284.190000px;}
.y39{bottom:292.585500px;}
.y1a1{bottom:294.205500px;}
.y25{bottom:296.892000px;}
.yed{bottom:300.217650px;}
.y165{bottom:300.217800px;}
.y126{bottom:301.480650px;}
.y77{bottom:302.190000px;}
.y38{bottom:307.585500px;}
.y1a0{bottom:312.205500px;}
.y24{bottom:314.892000px;}
.yec{bottom:318.217650px;}
.y164{bottom:318.217800px;}
.yb1{bottom:318.459000px;}
.y125{bottom:319.480650px;}
.y76{bottom:320.190000px;}
.y37{bottom:322.585500px;}
.y19f{bottom:330.205500px;}
.y23{bottom:332.892000px;}
.yeb{bottom:336.217650px;}
.y163{bottom:336.217800px;}
.yb0{bottom:336.459000px;}
.y124{bottom:337.480650px;}
.y36{bottom:337.585500px;}
.y75{bottom:338.190000px;}
.y19e{bottom:348.205500px;}
.y22{bottom:350.892000px;}
.y35{bottom:352.585500px;}
.yea{bottom:354.217650px;}
.y162{bottom:354.217800px;}
.yaf{bottom:354.459000px;}
.y123{bottom:355.480650px;}
.y74{bottom:356.190000px;}
.y19d{bottom:366.205500px;}
.y34{bottom:367.585500px;}
.y21{bottom:368.892000px;}
.ye9{bottom:372.217650px;}
.y161{bottom:372.217800px;}
.yae{bottom:372.459000px;}
.y122{bottom:373.480650px;}
.y73{bottom:374.190000px;}
.y19c{bottom:384.205500px;}
.y20{bottom:386.892000px;}
.ye8{bottom:390.217650px;}
.y160{bottom:390.217800px;}
.yad{bottom:390.459000px;}
.y33{bottom:391.089000px;}
.y121{bottom:391.480650px;}
.y72{bottom:392.190000px;}
.y19b{bottom:402.205500px;}
.y1f{bottom:404.892000px;}
.ye7{bottom:408.217650px;}
.y15f{bottom:408.217800px;}
.yac{bottom:408.459000px;}
.y32{bottom:409.089000px;}
.y120{bottom:409.480650px;}
.y71{bottom:410.190000px;}
.y19a{bottom:420.205500px;}
.y1e{bottom:422.892000px;}
.ye6{bottom:426.217650px;}
.y15e{bottom:426.217800px;}
.yab{bottom:426.459000px;}
.y11f{bottom:427.480650px;}
.y70{bottom:428.190000px;}
.y31{bottom:435.592500px;}
.y199{bottom:438.205500px;}
.y1d{bottom:440.892000px;}
.ye5{bottom:444.217650px;}
.y15d{bottom:444.217800px;}
.yaa{bottom:444.459000px;}
.y11e{bottom:445.480650px;}
.y6f{bottom:446.190000px;}
.y198{bottom:456.205500px;}
.y1c{bottom:458.892000px;}
.ye4{bottom:462.217650px;}
.y15c{bottom:462.217800px;}
.ya9{bottom:462.459000px;}
.y11d{bottom:463.480650px;}
.y6e{bottom:464.190000px;}
.y30{bottom:467.848500px;}
.y197{bottom:474.205500px;}
.y1b{bottom:476.892000px;}
.ye3{bottom:480.217650px;}
.y15b{bottom:480.217800px;}
.ya8{bottom:480.459000px;}
.y11c{bottom:481.480650px;}
.y6d{bottom:482.190000px;}
.y2f{bottom:485.848500px;}
.y196{bottom:492.205500px;}
.ye2{bottom:498.217650px;}
.y15a{bottom:498.217800px;}
.ya7{bottom:498.459000px;}
.y11b{bottom:499.480650px;}
.y6c{bottom:500.190000px;}
.y1a{bottom:503.397000px;}
.y2e{bottom:503.848500px;}
.y195{bottom:510.205500px;}
.ye1{bottom:516.217650px;}
.y159{bottom:516.217800px;}
.ya6{bottom:516.459000px;}
.y11a{bottom:517.480650px;}
.y6b{bottom:518.190000px;}
.y194{bottom:528.205500px;}
.ye0{bottom:534.217650px;}
.y158{bottom:534.217800px;}
.ya5{bottom:534.459000px;}
.y119{bottom:535.480650px;}
.y6a{bottom:536.190000px;}
.y193{bottom:546.205500px;}
.ydf{bottom:552.217650px;}
.y157{bottom:552.217800px;}
.ya4{bottom:552.459000px;}
.y118{bottom:553.480650px;}
.y69{bottom:554.190000px;}
.y192{bottom:564.205500px;}
.yde{bottom:570.217650px;}
.y156{bottom:570.217800px;}
.ya3{bottom:570.459000px;}
.y117{bottom:571.480650px;}
.y68{bottom:572.190000px;}
.y191{bottom:582.205500px;}
.ydd{bottom:588.217650px;}
.y155{bottom:588.217800px;}
.ya2{bottom:588.459000px;}
.y116{bottom:589.480650px;}
.y67{bottom:590.190000px;}
.y15{bottom:598.356000px;}
.y190{bottom:600.205500px;}
.ydc{bottom:606.217650px;}
.y154{bottom:606.217800px;}
.ya1{bottom:606.459000px;}
.y115{bottom:607.480650px;}
.y66{bottom:608.190000px;}
.y14{bottom:613.356000px;}
.y18f{bottom:618.205500px;}
.ydb{bottom:624.217650px;}
.y153{bottom:624.217800px;}
.ya0{bottom:624.459000px;}
.y114{bottom:625.480650px;}
.y65{bottom:626.190000px;}
.y18e{bottom:636.205500px;}
.yda{bottom:642.217650px;}
.y152{bottom:642.217800px;}
.y9f{bottom:642.459000px;}
.y64{bottom:644.190000px;}
.y13{bottom:647.931000px;}
.y113{bottom:651.955650px;}
.y18d{bottom:654.205500px;}
.yd9{bottom:660.217650px;}
.y151{bottom:660.217800px;}
.y9e{bottom:660.459000px;}
.y63{bottom:662.190000px;}
.y12{bottom:665.931000px;}
.y18c{bottom:672.205500px;}
.yd8{bottom:678.217650px;}
.y150{bottom:678.217800px;}
.y9d{bottom:678.459000px;}
.y62{bottom:680.190000px;}
.y112{bottom:687.955650px;}
.y18b{bottom:690.205500px;}
.yd7{bottom:696.217650px;}
.y14f{bottom:696.217800px;}
.y9c{bottom:696.459000px;}
.y61{bottom:698.190000px;}
.y11{bottom:700.939500px;}
.y111{bottom:705.955650px;}
.y18a{bottom:708.205500px;}
.yd6{bottom:714.217650px;}
.y14e{bottom:714.217800px;}
.y9b{bottom:714.459000px;}
.y60{bottom:716.190000px;}
.y10{bottom:718.939500px;}
.y110{bottom:723.955650px;}
.y189{bottom:726.205500px;}
.yd5{bottom:732.217650px;}
.y14d{bottom:732.217800px;}
.y9a{bottom:732.459000px;}
.y5f{bottom:734.190000px;}
.yf{bottom:736.939500px;}
.y10f{bottom:741.955650px;}
.y188{bottom:744.205500px;}
.yd4{bottom:750.217650px;}
.y14c{bottom:750.217800px;}
.y99{bottom:750.459000px;}
.y5e{bottom:752.190000px;}
.ye{bottom:754.939500px;}
.y10e{bottom:759.955650px;}
.y187{bottom:762.205500px;}
.yd3{bottom:768.217650px;}
.y14b{bottom:768.217800px;}
.y98{bottom:768.459000px;}
.y5d{bottom:770.190000px;}
.yd{bottom:772.939500px;}
.y19{bottom:776.270700px;}
.y10d{bottom:777.955650px;}
.y186{bottom:780.205500px;}
.yd2{bottom:786.217650px;}
.y14a{bottom:786.217800px;}
.y97{bottom:786.459000px;}
.y5c{bottom:788.190000px;}
.y18{bottom:790.896300px;}
.yc{bottom:790.939500px;}
.y1bb{bottom:795.223500px;}
.y10c{bottom:795.955650px;}
.y185{bottom:798.205500px;}
.yd1{bottom:804.217650px;}
.y149{bottom:804.217800px;}
.y96{bottom:804.459000px;}
.y5b{bottom:806.190000px;}
.yb{bottom:808.939500px;}
.y1ba{bottom:810.223500px;}
.y10b{bottom:813.955650px;}
.y17{bottom:814.399200px;}
.y184{bottom:816.205500px;}
.yd0{bottom:822.217650px;}
.y148{bottom:822.217800px;}
.y95{bottom:822.459000px;}
.y5a{bottom:824.190000px;}
.y1b9{bottom:825.223500px;}
.ya{bottom:826.939500px;}
.y16{bottom:829.399200px;}
.y10a{bottom:831.955650px;}
.y183{bottom:834.205500px;}
.ycf{bottom:840.217650px;}
.y147{bottom:840.217800px;}
.y94{bottom:840.459000px;}
.y59{bottom:842.190000px;}
.y1b8{bottom:848.698500px;}
.y109{bottom:849.955650px;}
.y182{bottom:852.205500px;}
.yce{bottom:858.217650px;}
.y146{bottom:858.217800px;}
.y93{bottom:858.459000px;}
.y58{bottom:860.190000px;}
.y108{bottom:867.955650px;}
.y181{bottom:870.205500px;}
.ycd{bottom:876.217650px;}
.y145{bottom:876.217800px;}
.y92{bottom:876.459000px;}
.y57{bottom:878.190000px;}
.y9{bottom:881.080500px;}
.y1b7{bottom:885.205500px;}
.y107{bottom:885.955650px;}
.y180{bottom:888.205500px;}
.ycc{bottom:894.217650px;}
.y144{bottom:894.217800px;}
.y91{bottom:894.459000px;}
.y56{bottom:896.190000px;}
.y1b6{bottom:903.205500px;}
.y106{bottom:903.955650px;}
.y17f{bottom:906.205500px;}
.ycb{bottom:912.217650px;}
.y143{bottom:912.217800px;}
.y90{bottom:912.459000px;}
.y8{bottom:913.105500px;}
.y55{bottom:914.190000px;}
.y1b5{bottom:921.205500px;}
.y105{bottom:921.955650px;}
.y1cb{bottom:923.298300px;}
.y17e{bottom:924.205500px;}
.yca{bottom:930.217650px;}
.y142{bottom:930.217800px;}
.y8f{bottom:930.459000px;}
.y54{bottom:932.190000px;}
.y1ca{bottom:938.298300px;}
.y1b4{bottom:939.205500px;}
.y104{bottom:939.955650px;}
.y17d{bottom:942.205500px;}
.yc9{bottom:948.217650px;}
.y141{bottom:948.217800px;}
.y8e{bottom:948.459000px;}
.y53{bottom:950.190000px;}
.y1c9{bottom:953.298300px;}
.y1b3{bottom:957.205500px;}
.y103{bottom:957.955650px;}
.y7{bottom:959.605350px;}
.yc8{bottom:966.217650px;}
.y140{bottom:966.217800px;}
.y8d{bottom:966.459000px;}
.y52{bottom:968.190000px;}
.y1c8{bottom:968.298300px;}
.y17c{bottom:968.680500px;}
.y1b2{bottom:975.205500px;}
.y102{bottom:975.955650px;}
.y1c7{bottom:983.298300px;}
.y17b{bottom:983.680500px;}
.yc7{bottom:984.217650px;}
.y13f{bottom:984.217800px;}
.y8c{bottom:984.459000px;}
.y51{bottom:986.190000px;}
.y6{bottom:991.105500px;}
.y1b1{bottom:993.205500px;}
.y101{bottom:993.955650px;}
.y1c6{bottom:998.298300px;}
.y17a{bottom:998.680500px;}
.yc6{bottom:1002.217650px;}
.y13e{bottom:1002.217800px;}
.y8b{bottom:1002.459000px;}
.y50{bottom:1004.190000px;}
.y1b0{bottom:1011.205500px;}
.y100{bottom:1011.955650px;}
.y1c5{bottom:1013.298300px;}
.y179{bottom:1013.680500px;}
.yc5{bottom:1020.217650px;}
.y13d{bottom:1020.217800px;}
.y8a{bottom:1020.459000px;}
.y4f{bottom:1022.190000px;}
.y5{bottom:1022.605650px;}
.y1c4{bottom:1028.298300px;}
.y178{bottom:1028.680500px;}
.y1af{bottom:1029.205500px;}
.yff{bottom:1029.955650px;}
.yc4{bottom:1038.217650px;}
.y13c{bottom:1038.217800px;}
.y89{bottom:1038.459000px;}
.y4e{bottom:1040.190000px;}
.y1c3{bottom:1043.298300px;}
.y177{bottom:1043.680500px;}
.y1ae{bottom:1047.205500px;}
.yfe{bottom:1047.955650px;}
.yc3{bottom:1056.217650px;}
.y13b{bottom:1056.217800px;}
.y88{bottom:1056.459000px;}
.y4d{bottom:1058.190000px;}
.y1c2{bottom:1058.298300px;}
.y176{bottom:1058.680950px;}
.yfd{bottom:1065.955650px;}
.y4{bottom:1066.861500px;}
.y1c1{bottom:1073.298300px;}
.y1ad{bottom:1073.710500px;}
.yc2{bottom:1074.217650px;}
.y13a{bottom:1074.217800px;}
.y87{bottom:1074.459000px;}
.y175{bottom:1082.184150px;}
.yfc{bottom:1083.955650px;}
.y4c{bottom:1084.665000px;}
.y1c0{bottom:1088.298300px;}
.yc1{bottom:1092.217650px;}
.y139{bottom:1092.217800px;}
.y86{bottom:1092.459000px;}
.y174{bottom:1097.183850px;}
.y4b{bottom:1099.665000px;}
.yfb{bottom:1101.955650px;}
.y1bf{bottom:1103.298300px;}
.yc0{bottom:1110.217650px;}
.y138{bottom:1110.217800px;}
.y85{bottom:1110.459000px;}
.y173{bottom:1112.183850px;}
.y1be{bottom:1118.298300px;}
.y4a{bottom:1118.939550px;}
.yfa{bottom:1119.955650px;}
.ybf{bottom:1128.217650px;}
.y137{bottom:1128.217800px;}
.y84{bottom:1128.459000px;}
.y3{bottom:1129.318800px;}
.y172{bottom:1131.459450px;}
.y1bd{bottom:1133.298300px;}
.y49{bottom:1145.443500px;}
.ybe{bottom:1146.217650px;}
.y136{bottom:1146.217800px;}
.y83{bottom:1146.459000px;}
.yf9{bottom:1146.459150px;}
.y171{bottom:1146.459300px;}
.y1bc{bottom:1148.298300px;}
.y45{bottom:1151.748600px;}
.y2{bottom:1152.026700px;}
.y44{bottom:1168.998900px;}
.y1{bottom:1173.026700px;}
.y43{bottom:1186.249200px;}
.y48{bottom:1195.824150px;}
.y47{bottom:1196.088150px;}
.y1cc{bottom:1196.099850px;}
.ybd{bottom:1196.132400px;}
.ha{height:25.632000px;}
.hf{height:33.328125px;}
.h6{height:40.031250px;}
.hc{height:40.031850px;}
.h7{height:40.032450px;}
.h10{height:40.101562px;}
.hb{height:40.664062px;}
.he{height:42.720000px;}
.h9{height:42.846680px;}
.h8{height:44.730469px;}
.h3{height:46.331067px;}
.h2{height:48.905200px;}
.h4{height:50.039062px;}
.hd{height:50.222662px;}
.h5{height:69.128906px;}
.h1{height:88.902130px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.xe{left:14.958300px;}
.x2{left:84.997650px;}
.x10{left:90.312600px;}
.x1{left:93.855900px;}
.x6{left:102.022650px;}
.x4{left:119.014050px;}
.x12{left:158.551500px;}
.x1b{left:191.512500px;}
.xf{left:192.823500px;}
.x5{left:211.365000px;}
.x1c{left:217.813500px;}
.x11{left:219.309000px;}
.x3{left:255.076500px;}
.x15{left:270.118500px;}
.x7{left:465.549000px;}
.x19{left:477.109650px;}
.x9{left:482.574000px;}
.x17{left:486.810150px;}
.x16{left:495.436650px;}
.xa{left:516.573000px;}
.x13{left:521.029650px;}
.x8{left:556.716000px;}
.x18{left:557.938650px;}
.xd{left:610.016550px;}
.x1a{left:611.856000px;}
.x14{left:618.690000px;}
.xc{left:711.099150px;}
.xb{left:777.412500px;}
@media print{
.v1{vertical-align:-25.865067pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.209067pt;}
.ls18{letter-spacing:-0.821333pt;}
.ls3b{letter-spacing:-0.656000pt;}
.ls2e{letter-spacing:-0.613333pt;}
.ls17{letter-spacing:-0.533333pt;}
.ls7d{letter-spacing:-0.528000pt;}
.ls2a{letter-spacing:-0.469333pt;}
.ls7f{letter-spacing:-0.458667pt;}
.ls37{letter-spacing:-0.453333pt;}
.ls33{letter-spacing:-0.437333pt;}
.ls79{letter-spacing:-0.416000pt;}
.ls4e{letter-spacing:-0.352000pt;}
.ls3c{letter-spacing:-0.330667pt;}
.ls80{letter-spacing:-0.298667pt;}
.ls4d{letter-spacing:-0.282667pt;}
.ls8d{letter-spacing:-0.277333pt;}
.ls5f{letter-spacing:-0.261333pt;}
.ls27{letter-spacing:-0.250667pt;}
.ls28{letter-spacing:-0.229333pt;}
.ls5d{letter-spacing:-0.213333pt;}
.ls7a{letter-spacing:-0.202667pt;}
.ls7b{letter-spacing:-0.197333pt;}
.ls52{letter-spacing:-0.186667pt;}
.ls4f{letter-spacing:-0.170667pt;}
.ls7e{letter-spacing:-0.160000pt;}
.ls31{letter-spacing:-0.154667pt;}
.ls8f{letter-spacing:-0.153600pt;}
.ls29{letter-spacing:-0.149333pt;}
.ls19{letter-spacing:-0.140800pt;}
.ls12{letter-spacing:-0.138667pt;}
.ls13{letter-spacing:-0.138133pt;}
.ls14{letter-spacing:-0.128000pt;}
.ls8b{letter-spacing:-0.123733pt;}
.ls30{letter-spacing:-0.122667pt;}
.ls1a{letter-spacing:-0.115200pt;}
.ls53{letter-spacing:-0.112000pt;}
.ls3e{letter-spacing:-0.106667pt;}
.ls36{letter-spacing:-0.096000pt;}
.ls5a{letter-spacing:-0.090667pt;}
.lsf{letter-spacing:-0.085333pt;}
.ls55{letter-spacing:-0.080000pt;}
.ls2d{letter-spacing:-0.069333pt;}
.ls58{letter-spacing:-0.064000pt;}
.ls7c{letter-spacing:-0.058667pt;}
.ls10{letter-spacing:-0.053333pt;}
.ls8e{letter-spacing:-0.051200pt;}
.ls56{letter-spacing:-0.042667pt;}
.ls81{letter-spacing:-0.037333pt;}
.ls8c{letter-spacing:-0.034133pt;}
.ls5b{letter-spacing:-0.032000pt;}
.ls11{letter-spacing:-0.021333pt;}
.ls51{letter-spacing:-0.016000pt;}
.ls57{letter-spacing:-0.010667pt;}
.ls35{letter-spacing:-0.005333pt;}
.lse{letter-spacing:0.000000pt;}
.ls38{letter-spacing:0.005333pt;}
.ls74{letter-spacing:0.007467pt;}
.ls88{letter-spacing:0.008533pt;}
.ls44{letter-spacing:0.010667pt;}
.ls8a{letter-spacing:0.012800pt;}
.ls47{letter-spacing:0.016000pt;}
.ls46{letter-spacing:0.021333pt;}
.ls86{letter-spacing:0.025600pt;}
.ls48{letter-spacing:0.026667pt;}
.ls34{letter-spacing:0.032000pt;}
.ls1d{letter-spacing:0.037333pt;}
.ls77{letter-spacing:0.042667pt;}
.ls3a{letter-spacing:0.048000pt;}
.ls89{letter-spacing:0.076800pt;}
.ls45{letter-spacing:0.080000pt;}
.ls84{letter-spacing:0.085333pt;}
.ls59{letter-spacing:0.090667pt;}
.ls5e{letter-spacing:0.117333pt;}
.ls78{letter-spacing:0.138667pt;}
.ls68{letter-spacing:0.144000pt;}
.ls26{letter-spacing:0.149333pt;}
.ls39{letter-spacing:0.154667pt;}
.ls24{letter-spacing:0.157867pt;}
.ls25{letter-spacing:0.158293pt;}
.ls75{letter-spacing:0.162133pt;}
.ls60{letter-spacing:0.165333pt;}
.ls2c{letter-spacing:0.176000pt;}
.ls41{letter-spacing:0.181333pt;}
.ls40{letter-spacing:0.186667pt;}
.ls71{letter-spacing:0.192000pt;}
.ls50{letter-spacing:0.202667pt;}
.ls54{letter-spacing:0.213333pt;}
.ls32{letter-spacing:0.224000pt;}
.ls87{letter-spacing:0.226133pt;}
.ls2f{letter-spacing:0.229333pt;}
.ls6f{letter-spacing:0.261333pt;}
.ls2b{letter-spacing:0.272000pt;}
.ls73{letter-spacing:0.274773pt;}
.ls72{letter-spacing:0.277333pt;}
.ls23{letter-spacing:0.293333pt;}
.ls66{letter-spacing:0.304000pt;}
.ls6a{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.325333pt;}
.ls65{letter-spacing:0.336000pt;}
.ls63{letter-spacing:0.368000pt;}
.ls16{letter-spacing:0.384000pt;}
.ls1b{letter-spacing:0.400000pt;}
.ls1f{letter-spacing:0.453333pt;}
.ls6c{letter-spacing:0.490667pt;}
.lsb{letter-spacing:0.511467pt;}
.lsa{letter-spacing:0.512000pt;}
.ls1e{letter-spacing:0.517333pt;}
.ls49{letter-spacing:0.522667pt;}
.ls3f{letter-spacing:0.528000pt;}
.ls4{letter-spacing:0.532800pt;}
.ls6{letter-spacing:0.533333pt;}
.ls5{letter-spacing:0.533867pt;}
.ls9{letter-spacing:0.538667pt;}
.ls15{letter-spacing:0.541333pt;}
.ls2{letter-spacing:0.585600pt;}
.ls20{letter-spacing:0.592000pt;}
.ls76{letter-spacing:0.613333pt;}
.ls82{letter-spacing:0.624000pt;}
.ls43{letter-spacing:0.634667pt;}
.ls1{letter-spacing:0.668404pt;}
.ls5c{letter-spacing:0.693333pt;}
.ls64{letter-spacing:0.730667pt;}
.ls22{letter-spacing:0.762667pt;}
.ls69{letter-spacing:0.832000pt;}
.ls67{letter-spacing:0.853333pt;}
.ls42{letter-spacing:0.858667pt;}
.ls7{letter-spacing:0.864000pt;}
.ls6d{letter-spacing:0.874667pt;}
.ls83{letter-spacing:0.906667pt;}
.ls4c{letter-spacing:1.114667pt;}
.ls1c{letter-spacing:1.141333pt;}
.ls6e{letter-spacing:1.152000pt;}
.ls62{letter-spacing:1.162667pt;}
.ls8{letter-spacing:1.168000pt;}
.ls4b{letter-spacing:1.194667pt;}
.ls0{letter-spacing:1.205318pt;}
.ls61{letter-spacing:1.264000pt;}
.lsc{letter-spacing:1.280000pt;}
.ls6b{letter-spacing:1.376000pt;}
.ls4a{letter-spacing:2.986667pt;}
.ls85{letter-spacing:3.997867pt;}
.ls3d{letter-spacing:5.491200pt;}
.ls70{letter-spacing:8.042667pt;}
.lsd{letter-spacing:13.250955pt;}
.ls3{letter-spacing:21.333333pt;}
.ws3c{word-spacing:-53.333333pt;}
.ws1{word-spacing:-22.666667pt;}
.wsd9{word-spacing:-14.709333pt;}
.ws6{word-spacing:-14.666667pt;}
.ws8{word-spacing:-14.197333pt;}
.wsa{word-spacing:-13.866667pt;}
.ws39{word-spacing:-13.658667pt;}
.wsda{word-spacing:-13.525333pt;}
.wsd8{word-spacing:-13.477333pt;}
.ws2{word-spacing:-13.333333pt;}
.ws3{word-spacing:-13.312000pt;}
.ws3e{word-spacing:-13.194667pt;}
.wsdc{word-spacing:-13.173333pt;}
.ws3a{word-spacing:-12.880000pt;}
.ws38{word-spacing:-12.720000pt;}
.ws0{word-spacing:-12.249600pt;}
.ws3d{word-spacing:-10.824533pt;}
.ws11f{word-spacing:-10.743467pt;}
.ws4{word-spacing:-10.666667pt;}
.wsb{word-spacing:-9.874667pt;}
.ws7{word-spacing:-9.867200pt;}
.wsc{word-spacing:-9.844800pt;}
.ws11e{word-spacing:-9.333333pt;}
.ws9{word-spacing:-9.195200pt;}
.wsdb{word-spacing:-7.741440pt;}
.ws3b{word-spacing:-7.624960pt;}
.ws37{word-spacing:-7.466667pt;}
.ws5{word-spacing:-6.218667pt;}
.ws12{word-spacing:-3.994667pt;}
.ws24{word-spacing:-3.370667pt;}
.ws23{word-spacing:-3.360000pt;}
.ws44{word-spacing:-3.338667pt;}
.ws16{word-spacing:-3.333333pt;}
.wsd5{word-spacing:-3.328000pt;}
.wsde{word-spacing:-3.285333pt;}
.ws7a{word-spacing:-3.280000pt;}
.ws94{word-spacing:-3.253333pt;}
.ws101{word-spacing:-3.242667pt;}
.ws13{word-spacing:-3.029333pt;}
.ws9d{word-spacing:-3.013333pt;}
.ws95{word-spacing:-2.997333pt;}
.ws112{word-spacing:-2.832000pt;}
.ws117{word-spacing:-2.810667pt;}
.ws9f{word-spacing:-2.805333pt;}
.ws7e{word-spacing:-2.768000pt;}
.ws69{word-spacing:-2.746667pt;}
.wse8{word-spacing:-2.704000pt;}
.ws114{word-spacing:-2.698667pt;}
.ws34{word-spacing:-2.683733pt;}
.ws36{word-spacing:-2.679467pt;}
.ws128{word-spacing:-2.666667pt;}
.ws10d{word-spacing:-2.661333pt;}
.wsa3{word-spacing:-2.656000pt;}
.wse3{word-spacing:-2.602667pt;}
.wsab{word-spacing:-2.586667pt;}
.wsb2{word-spacing:-2.581333pt;}
.ws48{word-spacing:-2.538667pt;}
.ws2d{word-spacing:-2.533333pt;}
.wsf3{word-spacing:-2.517333pt;}
.wsdf{word-spacing:-2.485333pt;}
.ws123{word-spacing:-2.474667pt;}
.wsec{word-spacing:-2.394667pt;}
.ws1c{word-spacing:-2.355200pt;}
.wsd2{word-spacing:-2.272000pt;}
.ws67{word-spacing:-2.256000pt;}
.ws66{word-spacing:-2.250667pt;}
.ws10b{word-spacing:-2.154667pt;}
.ws97{word-spacing:-2.144000pt;}
.ws102{word-spacing:-2.058667pt;}
.ws9e{word-spacing:-2.048000pt;}
.ws19{word-spacing:-2.005333pt;}
.ws1a{word-spacing:-2.000000pt;}
.ws68{word-spacing:-1.957333pt;}
.ws90{word-spacing:-1.898667pt;}
.ws32{word-spacing:-1.838933pt;}
.ws58{word-spacing:-1.717333pt;}
.ws113{word-spacing:-1.701333pt;}
.ws12b{word-spacing:-1.676800pt;}
.wseb{word-spacing:-1.642667pt;}
.wsa0{word-spacing:-1.536000pt;}
.ws78{word-spacing:-1.530667pt;}
.wsa8{word-spacing:-1.504000pt;}
.wsf9{word-spacing:-1.472000pt;}
.ws55{word-spacing:-1.402667pt;}
.ws85{word-spacing:-1.333333pt;}
.ws6f{word-spacing:-1.328000pt;}
.ws77{word-spacing:-1.317333pt;}
.ws116{word-spacing:-1.130667pt;}
.wse6{word-spacing:-1.120000pt;}
.wsb7{word-spacing:-1.013333pt;}
.ws2f{word-spacing:-0.944000pt;}
.ws10a{word-spacing:-0.874667pt;}
.wsca{word-spacing:-0.816000pt;}
.wsef{word-spacing:-0.805333pt;}
.ws7d{word-spacing:-0.778667pt;}
.ws7c{word-spacing:-0.773333pt;}
.ws6b{word-spacing:-0.720000pt;}
.ws8d{word-spacing:-0.709333pt;}
.wsc2{word-spacing:-0.693333pt;}
.ws98{word-spacing:-0.682667pt;}
.wsa4{word-spacing:-0.640000pt;}
.ws53{word-spacing:-0.634667pt;}
.ws27{word-spacing:-0.592000pt;}
.ws118{word-spacing:-0.581333pt;}
.ws7f{word-spacing:-0.576000pt;}
.ws12a{word-spacing:-0.541867pt;}
.wsea{word-spacing:-0.538667pt;}
.ws4c{word-spacing:-0.528000pt;}
.wscf{word-spacing:-0.448000pt;}
.wse9{word-spacing:-0.368000pt;}
.ws11c{word-spacing:-0.330667pt;}
.wsd6{word-spacing:-0.309333pt;}
.ws8b{word-spacing:-0.304000pt;}
.ws11b{word-spacing:-0.298667pt;}
.ws7b{word-spacing:-0.272000pt;}
.ws5a{word-spacing:-0.245333pt;}
.ws4b{word-spacing:-0.234667pt;}
.ws2a{word-spacing:-0.224000pt;}
.ws17{word-spacing:-0.202667pt;}
.ws52{word-spacing:-0.197333pt;}
.ws51{word-spacing:-0.192000pt;}
.ws71{word-spacing:-0.181333pt;}
.ws18{word-spacing:-0.154667pt;}
.ws20{word-spacing:-0.112000pt;}
.wsb3{word-spacing:-0.090667pt;}
.ws49{word-spacing:-0.085333pt;}
.wsa9{word-spacing:-0.080000pt;}
.wse4{word-spacing:-0.074667pt;}
.wsd{word-spacing:-0.053333pt;}
.ws120{word-spacing:-0.042667pt;}
.ws91{word-spacing:-0.026667pt;}
.wsad{word-spacing:-0.021333pt;}
.wsaa{word-spacing:-0.010667pt;}
.wsa7{word-spacing:-0.005333pt;}
.ws3f{word-spacing:-0.004267pt;}
.ws10{word-spacing:0.000000pt;}
.wsc1{word-spacing:0.005333pt;}
.wsba{word-spacing:0.016000pt;}
.wsac{word-spacing:0.042667pt;}
.wsb1{word-spacing:0.064000pt;}
.wsd4{word-spacing:0.069333pt;}
.wsb4{word-spacing:0.090667pt;}
.ws15{word-spacing:0.149333pt;}
.ws14{word-spacing:0.154667pt;}
.ws127{word-spacing:0.174933pt;}
.ws126{word-spacing:0.187733pt;}
.ws57{word-spacing:0.250667pt;}
.ws99{word-spacing:0.325333pt;}
.ws89{word-spacing:0.336000pt;}
.ws81{word-spacing:0.373333pt;}
.ws1d{word-spacing:0.384000pt;}
.ws1e{word-spacing:0.442667pt;}
.ws107{word-spacing:0.453333pt;}
.ws25{word-spacing:0.528000pt;}
.ws54{word-spacing:0.554667pt;}
.wsf7{word-spacing:0.581333pt;}
.wse1{word-spacing:0.586667pt;}
.wsce{word-spacing:0.672000pt;}
.ws124{word-spacing:0.688000pt;}
.wsf4{word-spacing:0.693333pt;}
.wse0{word-spacing:0.741333pt;}
.wsdd{word-spacing:0.773333pt;}
.wscd{word-spacing:0.778667pt;}
.ws26{word-spacing:0.784000pt;}
.ws2b{word-spacing:0.858667pt;}
.ws6a{word-spacing:0.864000pt;}
.ws87{word-spacing:0.880000pt;}
.ws86{word-spacing:0.912000pt;}
.ws1f{word-spacing:0.970667pt;}
.ws65{word-spacing:0.997333pt;}
.ws46{word-spacing:1.050667pt;}
.ws111{word-spacing:1.061333pt;}
.ws47{word-spacing:1.114667pt;}
.wsc4{word-spacing:1.162667pt;}
.ws75{word-spacing:1.173333pt;}
.wsc6{word-spacing:1.178667pt;}
.ws45{word-spacing:1.205333pt;}
.wsc7{word-spacing:1.210667pt;}
.ws62{word-spacing:1.226667pt;}
.wsd1{word-spacing:1.232000pt;}
.ws5d{word-spacing:1.253333pt;}
.wsf5{word-spacing:1.280000pt;}
.wsd0{word-spacing:1.348267pt;}
.ws31{word-spacing:1.361067pt;}
.wsfd{word-spacing:1.378133pt;}
.ws105{word-spacing:1.413333pt;}
.ws92{word-spacing:1.424000pt;}
.ws104{word-spacing:1.429333pt;}
.ws125{word-spacing:1.434667pt;}
.ws43{word-spacing:1.440000pt;}
.wse2{word-spacing:1.445333pt;}
.wsfb{word-spacing:1.493333pt;}
.wsfc{word-spacing:1.497600pt;}
.ws61{word-spacing:1.498667pt;}
.ws5b{word-spacing:1.562667pt;}
.wsa2{word-spacing:1.584000pt;}
.ws73{word-spacing:1.626667pt;}
.wsd7{word-spacing:1.653333pt;}
.ws70{word-spacing:1.669333pt;}
.wsae{word-spacing:1.680000pt;}
.ws119{word-spacing:1.770667pt;}
.wsee{word-spacing:1.829333pt;}
.wsf0{word-spacing:1.941333pt;}
.ws6d{word-spacing:1.957333pt;}
.ws6c{word-spacing:1.962667pt;}
.ws4a{word-spacing:1.968000pt;}
.ws9a{word-spacing:1.978667pt;}
.ws9b{word-spacing:1.994667pt;}
.ws56{word-spacing:2.090667pt;}
.ws35{word-spacing:2.116267pt;}
.ws93{word-spacing:2.266667pt;}
.wsaf{word-spacing:2.277333pt;}
.wsc9{word-spacing:2.304000pt;}
.ws8f{word-spacing:2.421333pt;}
.wsa1{word-spacing:2.426667pt;}
.wscc{word-spacing:2.453333pt;}
.wsbb{word-spacing:2.464000pt;}
.ws11a{word-spacing:2.528000pt;}
.wsf1{word-spacing:2.533333pt;}
.ws10e{word-spacing:2.544000pt;}
.wsd3{word-spacing:2.572800pt;}
.wsed{word-spacing:2.613333pt;}
.wsf6{word-spacing:2.656000pt;}
.ws64{word-spacing:2.752000pt;}
.ws60{word-spacing:2.784000pt;}
.ws1b{word-spacing:2.842667pt;}
.wsfa{word-spacing:2.892800pt;}
.ws76{word-spacing:2.912000pt;}
.ws8c{word-spacing:2.933333pt;}
.ws11d{word-spacing:2.965333pt;}
.ws30{word-spacing:2.969600pt;}
.wsf2{word-spacing:3.024000pt;}
.wsbf{word-spacing:3.077333pt;}
.ws100{word-spacing:3.084800pt;}
.wscb{word-spacing:3.093333pt;}
.ws115{word-spacing:3.114667pt;}
.ws40{word-spacing:3.125333pt;}
.ws42{word-spacing:3.136000pt;}
.wsc0{word-spacing:3.152000pt;}
.ws103{word-spacing:3.221333pt;}
.ws10c{word-spacing:3.280000pt;}
.wsa6{word-spacing:3.333333pt;}
.ws5e{word-spacing:3.360000pt;}
.ws109{word-spacing:3.381333pt;}
.ws50{word-spacing:3.408000pt;}
.ws12c{word-spacing:3.584000pt;}
.wsfe{word-spacing:3.758933pt;}
.ws41{word-spacing:3.818667pt;}
.ws122{word-spacing:3.824000pt;}
.ws10f{word-spacing:3.882667pt;}
.ws29{word-spacing:3.904000pt;}
.ws108{word-spacing:3.909333pt;}
.wsb9{word-spacing:3.920000pt;}
.ws110{word-spacing:3.984000pt;}
.ws129{word-spacing:4.002133pt;}
.ws9c{word-spacing:4.026667pt;}
.ws2c{word-spacing:4.309333pt;}
.wse7{word-spacing:4.336000pt;}
.wse5{word-spacing:4.341333pt;}
.ws8a{word-spacing:4.400000pt;}
.ws6e{word-spacing:4.576000pt;}
.ws59{word-spacing:4.741333pt;}
.ws84{word-spacing:4.753067pt;}
.ws74{word-spacing:4.757333pt;}
.ws4e{word-spacing:4.949333pt;}
.ws88{word-spacing:4.960000pt;}
.wsb5{word-spacing:4.981333pt;}
.ws121{word-spacing:4.992000pt;}
.wsbe{word-spacing:5.050667pt;}
.wsc8{word-spacing:5.130667pt;}
.wsb8{word-spacing:5.141333pt;}
.ws5f{word-spacing:5.296000pt;}
.ws5c{word-spacing:5.301333pt;}
.ws82{word-spacing:5.333333pt;}
.wsff{word-spacing:5.337600pt;}
.ws83{word-spacing:5.341867pt;}
.ws106{word-spacing:5.450667pt;}
.ws63{word-spacing:5.498667pt;}
.ws80{word-spacing:5.573333pt;}
.ws72{word-spacing:5.584000pt;}
.ws28{word-spacing:5.776000pt;}
.ws96{word-spacing:5.856000pt;}
.ws8e{word-spacing:5.872000pt;}
.wsa5{word-spacing:5.888000pt;}
.wsbd{word-spacing:5.957333pt;}
.ws21{word-spacing:6.096000pt;}
.wsb6{word-spacing:6.101333pt;}
.ws79{word-spacing:6.149333pt;}
.wsc5{word-spacing:6.352000pt;}
.wsc3{word-spacing:6.490667pt;}
.ws4f{word-spacing:6.661333pt;}
.ws22{word-spacing:6.666667pt;}
.ws4d{word-spacing:6.672000pt;}
.wsf8{word-spacing:6.677333pt;}
.ws2e{word-spacing:7.333333pt;}
.wsb0{word-spacing:9.338667pt;}
.wsbc{word-spacing:10.922667pt;}
.ws11{word-spacing:11.668800pt;}
.wsf{word-spacing:13.318768pt;}
.wse{word-spacing:24.073496pt;}
.ws33{word-spacing:31.688533pt;}
._4{margin-left:-2527.996342pt;}
._10{margin-left:-33.602742pt;}
._f{margin-left:-32.460800pt;}
._18{margin-left:-15.989333pt;}
._16{margin-left:-14.880000pt;}
._a{margin-left:-13.901199pt;}
._1b{margin-left:-12.340637pt;}
._1f{margin-left:-10.096000pt;}
._1d{margin-left:-8.449407pt;}
._17{margin-left:-6.874667pt;}
._6{margin-left:-5.965199pt;}
._1{margin-left:-4.229572pt;}
._5{margin-left:-3.205333pt;}
._0{margin-left:-2.147658pt;}
._2{margin-left:-0.909468pt;}
._7{width:0.976000pt;}
._8{width:2.348843pt;}
._1a{width:4.184992pt;}
._d{width:5.394133pt;}
._9{width:6.650667pt;}
._20{width:8.597333pt;}
._21{width:30.800000pt;}
._22{width:31.749333pt;}
._1e{width:34.080000pt;}
._1c{width:37.242667pt;}
._13{width:38.259200pt;}
._b{width:40.375467pt;}
._11{width:42.730667pt;}
._c{width:46.913305pt;}
._e{width:48.443733pt;}
._14{width:50.257067pt;}
._12{width:52.728533pt;}
._19{width:566.730667pt;}
._3{width:2141.437805pt;}
._15{width:2547.582933pt;}
.fs7{font-size:24.874667pt;}
.fsb{font-size:29.866667pt;}
.fsa{font-size:32.000000pt;}
.fs9{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:51.903467pt;}
.fs4{font-size:53.333333pt;}
.fs1{font-size:54.787200pt;}
.fs8{font-size:58.666667pt;}
.fs5{font-size:90.666667pt;}
.fs0{font-size:109.574400pt;}
.y46{bottom:-19.926667pt;}
.y0{bottom:0.000000pt;}
.y133{bottom:83.270667pt;}
.y135{bottom:84.216000pt;}
.y1ac{bottom:85.516000pt;}
.ybc{bottom:89.316000pt;}
.yf8{bottom:90.860133pt;}
.y170{bottom:90.860267pt;}
.y131{bottom:91.982800pt;}
.y82{bottom:92.613333pt;}
.y132{bottom:96.604000pt;}
.y134{bottom:97.549333pt;}
.y1ab{bottom:101.516000pt;}
.ybb{bottom:105.316000pt;}
.yf7{bottom:106.860133pt;}
.y16f{bottom:106.860267pt;}
.y130{bottom:107.982800pt;}
.y81{bottom:108.613333pt;}
.y1aa{bottom:117.516000pt;}
.yba{bottom:121.316000pt;}
.yf6{bottom:122.860133pt;}
.y16e{bottom:122.860267pt;}
.y12f{bottom:123.982800pt;}
.y80{bottom:124.613333pt;}
.y1a9{bottom:133.516000pt;}
.y2d{bottom:135.904000pt;}
.yb9{bottom:137.316000pt;}
.yf5{bottom:138.860133pt;}
.y16d{bottom:138.860267pt;}
.y12e{bottom:139.982800pt;}
.y42{bottom:140.076000pt;}
.y7f{bottom:140.613333pt;}
.y1a8{bottom:149.516000pt;}
.y2c{bottom:151.904000pt;}
.yb8{bottom:153.316000pt;}
.y41{bottom:153.409333pt;}
.yf4{bottom:154.860133pt;}
.y16c{bottom:154.860267pt;}
.y12d{bottom:155.982800pt;}
.y7e{bottom:156.613333pt;}
.y1a7{bottom:165.516000pt;}
.y40{bottom:166.742667pt;}
.y2b{bottom:167.904000pt;}
.yf3{bottom:170.860133pt;}
.y16b{bottom:170.860267pt;}
.y12c{bottom:171.982800pt;}
.y7d{bottom:172.613333pt;}
.yb7{bottom:176.849467pt;}
.y3f{bottom:180.076000pt;}
.y1a6{bottom:181.516000pt;}
.y2a{bottom:183.904000pt;}
.yf2{bottom:186.860133pt;}
.y16a{bottom:186.860267pt;}
.y12b{bottom:187.982800pt;}
.y7c{bottom:188.613333pt;}
.yb6{bottom:190.182667pt;}
.y3e{bottom:193.409333pt;}
.y1a5{bottom:197.516000pt;}
.y29{bottom:199.904000pt;}
.yf1{bottom:202.860133pt;}
.y169{bottom:202.860267pt;}
.yb5{bottom:203.516400pt;}
.y12a{bottom:203.982800pt;}
.y7b{bottom:204.613333pt;}
.y3d{bottom:206.742667pt;}
.y1a4{bottom:213.516000pt;}
.y28{bottom:215.904000pt;}
.yb4{bottom:216.849733pt;}
.yf0{bottom:218.860133pt;}
.y168{bottom:218.860267pt;}
.y129{bottom:219.982800pt;}
.y3c{bottom:220.076000pt;}
.y7a{bottom:220.613333pt;}
.y1a3{bottom:229.516000pt;}
.y27{bottom:231.904000pt;}
.y3b{bottom:233.409333pt;}
.yef{bottom:234.860133pt;}
.y167{bottom:234.860267pt;}
.y128{bottom:235.982800pt;}
.y79{bottom:236.613333pt;}
.yb3{bottom:237.741467pt;}
.y1a2{bottom:245.516000pt;}
.y3a{bottom:246.742667pt;}
.y26{bottom:247.904000pt;}
.yee{bottom:250.860133pt;}
.y166{bottom:250.860267pt;}
.yb2{bottom:251.074667pt;}
.y127{bottom:251.982800pt;}
.y78{bottom:252.613333pt;}
.y39{bottom:260.076000pt;}
.y1a1{bottom:261.516000pt;}
.y25{bottom:263.904000pt;}
.yed{bottom:266.860133pt;}
.y165{bottom:266.860267pt;}
.y126{bottom:267.982800pt;}
.y77{bottom:268.613333pt;}
.y38{bottom:273.409333pt;}
.y1a0{bottom:277.516000pt;}
.y24{bottom:279.904000pt;}
.yec{bottom:282.860133pt;}
.y164{bottom:282.860267pt;}
.yb1{bottom:283.074667pt;}
.y125{bottom:283.982800pt;}
.y76{bottom:284.613333pt;}
.y37{bottom:286.742667pt;}
.y19f{bottom:293.516000pt;}
.y23{bottom:295.904000pt;}
.yeb{bottom:298.860133pt;}
.y163{bottom:298.860267pt;}
.yb0{bottom:299.074667pt;}
.y124{bottom:299.982800pt;}
.y36{bottom:300.076000pt;}
.y75{bottom:300.613333pt;}
.y19e{bottom:309.516000pt;}
.y22{bottom:311.904000pt;}
.y35{bottom:313.409333pt;}
.yea{bottom:314.860133pt;}
.y162{bottom:314.860267pt;}
.yaf{bottom:315.074667pt;}
.y123{bottom:315.982800pt;}
.y74{bottom:316.613333pt;}
.y19d{bottom:325.516000pt;}
.y34{bottom:326.742667pt;}
.y21{bottom:327.904000pt;}
.ye9{bottom:330.860133pt;}
.y161{bottom:330.860267pt;}
.yae{bottom:331.074667pt;}
.y122{bottom:331.982800pt;}
.y73{bottom:332.613333pt;}
.y19c{bottom:341.516000pt;}
.y20{bottom:343.904000pt;}
.ye8{bottom:346.860133pt;}
.y160{bottom:346.860267pt;}
.yad{bottom:347.074667pt;}
.y33{bottom:347.634667pt;}
.y121{bottom:347.982800pt;}
.y72{bottom:348.613333pt;}
.y19b{bottom:357.516000pt;}
.y1f{bottom:359.904000pt;}
.ye7{bottom:362.860133pt;}
.y15f{bottom:362.860267pt;}
.yac{bottom:363.074667pt;}
.y32{bottom:363.634667pt;}
.y120{bottom:363.982800pt;}
.y71{bottom:364.613333pt;}
.y19a{bottom:373.516000pt;}
.y1e{bottom:375.904000pt;}
.ye6{bottom:378.860133pt;}
.y15e{bottom:378.860267pt;}
.yab{bottom:379.074667pt;}
.y11f{bottom:379.982800pt;}
.y70{bottom:380.613333pt;}
.y31{bottom:387.193333pt;}
.y199{bottom:389.516000pt;}
.y1d{bottom:391.904000pt;}
.ye5{bottom:394.860133pt;}
.y15d{bottom:394.860267pt;}
.yaa{bottom:395.074667pt;}
.y11e{bottom:395.982800pt;}
.y6f{bottom:396.613333pt;}
.y198{bottom:405.516000pt;}
.y1c{bottom:407.904000pt;}
.ye4{bottom:410.860133pt;}
.y15c{bottom:410.860267pt;}
.ya9{bottom:411.074667pt;}
.y11d{bottom:411.982800pt;}
.y6e{bottom:412.613333pt;}
.y30{bottom:415.865333pt;}
.y197{bottom:421.516000pt;}
.y1b{bottom:423.904000pt;}
.ye3{bottom:426.860133pt;}
.y15b{bottom:426.860267pt;}
.ya8{bottom:427.074667pt;}
.y11c{bottom:427.982800pt;}
.y6d{bottom:428.613333pt;}
.y2f{bottom:431.865333pt;}
.y196{bottom:437.516000pt;}
.ye2{bottom:442.860133pt;}
.y15a{bottom:442.860267pt;}
.ya7{bottom:443.074667pt;}
.y11b{bottom:443.982800pt;}
.y6c{bottom:444.613333pt;}
.y1a{bottom:447.464000pt;}
.y2e{bottom:447.865333pt;}
.y195{bottom:453.516000pt;}
.ye1{bottom:458.860133pt;}
.y159{bottom:458.860267pt;}
.ya6{bottom:459.074667pt;}
.y11a{bottom:459.982800pt;}
.y6b{bottom:460.613333pt;}
.y194{bottom:469.516000pt;}
.ye0{bottom:474.860133pt;}
.y158{bottom:474.860267pt;}
.ya5{bottom:475.074667pt;}
.y119{bottom:475.982800pt;}
.y6a{bottom:476.613333pt;}
.y193{bottom:485.516000pt;}
.ydf{bottom:490.860133pt;}
.y157{bottom:490.860267pt;}
.ya4{bottom:491.074667pt;}
.y118{bottom:491.982800pt;}
.y69{bottom:492.613333pt;}
.y192{bottom:501.516000pt;}
.yde{bottom:506.860133pt;}
.y156{bottom:506.860267pt;}
.ya3{bottom:507.074667pt;}
.y117{bottom:507.982800pt;}
.y68{bottom:508.613333pt;}
.y191{bottom:517.516000pt;}
.ydd{bottom:522.860133pt;}
.y155{bottom:522.860267pt;}
.ya2{bottom:523.074667pt;}
.y116{bottom:523.982800pt;}
.y67{bottom:524.613333pt;}
.y15{bottom:531.872000pt;}
.y190{bottom:533.516000pt;}
.ydc{bottom:538.860133pt;}
.y154{bottom:538.860267pt;}
.ya1{bottom:539.074667pt;}
.y115{bottom:539.982800pt;}
.y66{bottom:540.613333pt;}
.y14{bottom:545.205333pt;}
.y18f{bottom:549.516000pt;}
.ydb{bottom:554.860133pt;}
.y153{bottom:554.860267pt;}
.ya0{bottom:555.074667pt;}
.y114{bottom:555.982800pt;}
.y65{bottom:556.613333pt;}
.y18e{bottom:565.516000pt;}
.yda{bottom:570.860133pt;}
.y152{bottom:570.860267pt;}
.y9f{bottom:571.074667pt;}
.y64{bottom:572.613333pt;}
.y13{bottom:575.938667pt;}
.y113{bottom:579.516133pt;}
.y18d{bottom:581.516000pt;}
.yd9{bottom:586.860133pt;}
.y151{bottom:586.860267pt;}
.y9e{bottom:587.074667pt;}
.y63{bottom:588.613333pt;}
.y12{bottom:591.938667pt;}
.y18c{bottom:597.516000pt;}
.yd8{bottom:602.860133pt;}
.y150{bottom:602.860267pt;}
.y9d{bottom:603.074667pt;}
.y62{bottom:604.613333pt;}
.y112{bottom:611.516133pt;}
.y18b{bottom:613.516000pt;}
.yd7{bottom:618.860133pt;}
.y14f{bottom:618.860267pt;}
.y9c{bottom:619.074667pt;}
.y61{bottom:620.613333pt;}
.y11{bottom:623.057333pt;}
.y111{bottom:627.516133pt;}
.y18a{bottom:629.516000pt;}
.yd6{bottom:634.860133pt;}
.y14e{bottom:634.860267pt;}
.y9b{bottom:635.074667pt;}
.y60{bottom:636.613333pt;}
.y10{bottom:639.057333pt;}
.y110{bottom:643.516133pt;}
.y189{bottom:645.516000pt;}
.yd5{bottom:650.860133pt;}
.y14d{bottom:650.860267pt;}
.y9a{bottom:651.074667pt;}
.y5f{bottom:652.613333pt;}
.yf{bottom:655.057333pt;}
.y10f{bottom:659.516133pt;}
.y188{bottom:661.516000pt;}
.yd4{bottom:666.860133pt;}
.y14c{bottom:666.860267pt;}
.y99{bottom:667.074667pt;}
.y5e{bottom:668.613333pt;}
.ye{bottom:671.057333pt;}
.y10e{bottom:675.516133pt;}
.y187{bottom:677.516000pt;}
.yd3{bottom:682.860133pt;}
.y14b{bottom:682.860267pt;}
.y98{bottom:683.074667pt;}
.y5d{bottom:684.613333pt;}
.yd{bottom:687.057333pt;}
.y19{bottom:690.018400pt;}
.y10d{bottom:691.516133pt;}
.y186{bottom:693.516000pt;}
.yd2{bottom:698.860133pt;}
.y14a{bottom:698.860267pt;}
.y97{bottom:699.074667pt;}
.y5c{bottom:700.613333pt;}
.y18{bottom:703.018933pt;}
.yc{bottom:703.057333pt;}
.y1bb{bottom:706.865333pt;}
.y10c{bottom:707.516133pt;}
.y185{bottom:709.516000pt;}
.yd1{bottom:714.860133pt;}
.y149{bottom:714.860267pt;}
.y96{bottom:715.074667pt;}
.y5b{bottom:716.613333pt;}
.yb{bottom:719.057333pt;}
.y1ba{bottom:720.198667pt;}
.y10b{bottom:723.516133pt;}
.y17{bottom:723.910400pt;}
.y184{bottom:725.516000pt;}
.yd0{bottom:730.860133pt;}
.y148{bottom:730.860267pt;}
.y95{bottom:731.074667pt;}
.y5a{bottom:732.613333pt;}
.y1b9{bottom:733.532000pt;}
.ya{bottom:735.057333pt;}
.y16{bottom:737.243733pt;}
.y10a{bottom:739.516133pt;}
.y183{bottom:741.516000pt;}
.ycf{bottom:746.860133pt;}
.y147{bottom:746.860267pt;}
.y94{bottom:747.074667pt;}
.y59{bottom:748.613333pt;}
.y1b8{bottom:754.398667pt;}
.y109{bottom:755.516133pt;}
.y182{bottom:757.516000pt;}
.yce{bottom:762.860133pt;}
.y146{bottom:762.860267pt;}
.y93{bottom:763.074667pt;}
.y58{bottom:764.613333pt;}
.y108{bottom:771.516133pt;}
.y181{bottom:773.516000pt;}
.ycd{bottom:778.860133pt;}
.y145{bottom:778.860267pt;}
.y92{bottom:779.074667pt;}
.y57{bottom:780.613333pt;}
.y9{bottom:783.182667pt;}
.y1b7{bottom:786.849333pt;}
.y107{bottom:787.516133pt;}
.y180{bottom:789.516000pt;}
.ycc{bottom:794.860133pt;}
.y144{bottom:794.860267pt;}
.y91{bottom:795.074667pt;}
.y56{bottom:796.613333pt;}
.y1b6{bottom:802.849333pt;}
.y106{bottom:803.516133pt;}
.y17f{bottom:805.516000pt;}
.ycb{bottom:810.860133pt;}
.y143{bottom:810.860267pt;}
.y90{bottom:811.074667pt;}
.y8{bottom:811.649333pt;}
.y55{bottom:812.613333pt;}
.y1b5{bottom:818.849333pt;}
.y105{bottom:819.516133pt;}
.y1cb{bottom:820.709600pt;}
.y17e{bottom:821.516000pt;}
.yca{bottom:826.860133pt;}
.y142{bottom:826.860267pt;}
.y8f{bottom:827.074667pt;}
.y54{bottom:828.613333pt;}
.y1ca{bottom:834.042933pt;}
.y1b4{bottom:834.849333pt;}
.y104{bottom:835.516133pt;}
.y17d{bottom:837.516000pt;}
.yc9{bottom:842.860133pt;}
.y141{bottom:842.860267pt;}
.y8e{bottom:843.074667pt;}
.y53{bottom:844.613333pt;}
.y1c9{bottom:847.376267pt;}
.y1b3{bottom:850.849333pt;}
.y103{bottom:851.516133pt;}
.y7{bottom:852.982533pt;}
.yc8{bottom:858.860133pt;}
.y140{bottom:858.860267pt;}
.y8d{bottom:859.074667pt;}
.y52{bottom:860.613333pt;}
.y1c8{bottom:860.709600pt;}
.y17c{bottom:861.049333pt;}
.y1b2{bottom:866.849333pt;}
.y102{bottom:867.516133pt;}
.y1c7{bottom:874.042933pt;}
.y17b{bottom:874.382667pt;}
.yc7{bottom:874.860133pt;}
.y13f{bottom:874.860267pt;}
.y8c{bottom:875.074667pt;}
.y51{bottom:876.613333pt;}
.y6{bottom:880.982667pt;}
.y1b1{bottom:882.849333pt;}
.y101{bottom:883.516133pt;}
.y1c6{bottom:887.376267pt;}
.y17a{bottom:887.716000pt;}
.yc6{bottom:890.860133pt;}
.y13e{bottom:890.860267pt;}
.y8b{bottom:891.074667pt;}
.y50{bottom:892.613333pt;}
.y1b0{bottom:898.849333pt;}
.y100{bottom:899.516133pt;}
.y1c5{bottom:900.709600pt;}
.y179{bottom:901.049333pt;}
.yc5{bottom:906.860133pt;}
.y13d{bottom:906.860267pt;}
.y8a{bottom:907.074667pt;}
.y4f{bottom:908.613333pt;}
.y5{bottom:908.982800pt;}
.y1c4{bottom:914.042933pt;}
.y178{bottom:914.382667pt;}
.y1af{bottom:914.849333pt;}
.yff{bottom:915.516133pt;}
.yc4{bottom:922.860133pt;}
.y13c{bottom:922.860267pt;}
.y89{bottom:923.074667pt;}
.y4e{bottom:924.613333pt;}
.y1c3{bottom:927.376267pt;}
.y177{bottom:927.716000pt;}
.y1ae{bottom:930.849333pt;}
.yfe{bottom:931.516133pt;}
.yc3{bottom:938.860133pt;}
.y13b{bottom:938.860267pt;}
.y88{bottom:939.074667pt;}
.y4d{bottom:940.613333pt;}
.y1c2{bottom:940.709600pt;}
.y176{bottom:941.049733pt;}
.yfd{bottom:947.516133pt;}
.y4{bottom:948.321333pt;}
.y1c1{bottom:954.042933pt;}
.y1ad{bottom:954.409333pt;}
.yc2{bottom:954.860133pt;}
.y13a{bottom:954.860267pt;}
.y87{bottom:955.074667pt;}
.y175{bottom:961.941467pt;}
.yfc{bottom:963.516133pt;}
.y4c{bottom:964.146667pt;}
.y1c0{bottom:967.376267pt;}
.yc1{bottom:970.860133pt;}
.y139{bottom:970.860267pt;}
.y86{bottom:971.074667pt;}
.y174{bottom:975.274533pt;}
.y4b{bottom:977.480000pt;}
.yfb{bottom:979.516133pt;}
.y1bf{bottom:980.709600pt;}
.yc0{bottom:986.860133pt;}
.y138{bottom:986.860267pt;}
.y85{bottom:987.074667pt;}
.y173{bottom:988.607867pt;}
.y1be{bottom:994.042933pt;}
.y4a{bottom:994.612933pt;}
.yfa{bottom:995.516133pt;}
.ybf{bottom:1002.860133pt;}
.y137{bottom:1002.860267pt;}
.y84{bottom:1003.074667pt;}
.y3{bottom:1003.838933pt;}
.y172{bottom:1005.741733pt;}
.y1bd{bottom:1007.376267pt;}
.y49{bottom:1018.172000pt;}
.ybe{bottom:1018.860133pt;}
.y136{bottom:1018.860267pt;}
.y83{bottom:1019.074667pt;}
.yf9{bottom:1019.074800pt;}
.y171{bottom:1019.074933pt;}
.y1bc{bottom:1020.709600pt;}
.y45{bottom:1023.776533pt;}
.y2{bottom:1024.023733pt;}
.y44{bottom:1039.110133pt;}
.y1{bottom:1042.690400pt;}
.y43{bottom:1054.443733pt;}
.y48{bottom:1062.954800pt;}
.y47{bottom:1063.189467pt;}
.y1cc{bottom:1063.199867pt;}
.ybd{bottom:1063.228800pt;}
.ha{height:22.784000pt;}
.hf{height:29.625000pt;}
.h6{height:35.583333pt;}
.hc{height:35.583867pt;}
.h7{height:35.584400pt;}
.h10{height:35.645833pt;}
.hb{height:36.145833pt;}
.he{height:37.973333pt;}
.h9{height:38.085938pt;}
.h8{height:39.760417pt;}
.h3{height:41.183171pt;}
.h2{height:43.471289pt;}
.h4{height:44.479167pt;}
.hd{height:44.642367pt;}
.h5{height:61.447917pt;}
.h1{height:79.024116pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.xe{left:13.296267pt;}
.x2{left:75.553467pt;}
.x10{left:80.277867pt;}
.x1{left:83.427467pt;}
.x6{left:90.686800pt;}
.x4{left:105.790267pt;}
.x12{left:140.934667pt;}
.x1b{left:170.233333pt;}
.xf{left:171.398667pt;}
.x5{left:187.880000pt;}
.x1c{left:193.612000pt;}
.x11{left:194.941333pt;}
.x3{left:226.734667pt;}
.x15{left:240.105333pt;}
.x7{left:413.821333pt;}
.x19{left:424.097467pt;}
.x9{left:428.954667pt;}
.x17{left:432.720133pt;}
.x16{left:440.388133pt;}
.xa{left:459.176000pt;}
.x13{left:463.137467pt;}
.x8{left:494.858667pt;}
.x18{left:495.945467pt;}
.xd{left:542.236933pt;}
.x1a{left:543.872000pt;}
.x14{left:549.946667pt;}
.xc{left:632.088133pt;}
.xb{left:691.033333pt;}
}




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