
    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_43de820ab73724d6f6003bc1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.126000;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_fb8dc3f8a74a911298c7ba70.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.223000;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_8c62b72ad283487b25df7839.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.136000;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_386c29bb25405dc6b7fc167a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.239000;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_d4d386d06bf61d69bc4f8b02.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.924000;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_6b32167b7459be3e083be7fa.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.722656;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_afde05284c4640e8b09b2d14.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.144000;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_244e6064f3bd82fcf600a12b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.858000;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_e3e49b7d3832cdb2acf88cf3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.890000;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_1687d3bbede3a466da5b5e95.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.853000;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_22a6aa6be1f05dc5fb349d58.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.450000;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_3336f8267bbf04e59fd2dd70.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.676000;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_24941b94762d616ed60a7f0e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.959473;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.400055px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls3a{letter-spacing:-1.071000px;}
.ls39{letter-spacing:-0.765000px;}
.ls3b{letter-spacing:-0.663000px;}
.ls26{letter-spacing:-0.420000px;}
.ls6f{letter-spacing:-0.408000px;}
.ls16{letter-spacing:-0.360000px;}
.ls5c{letter-spacing:-0.357000px;}
.ls15{letter-spacing:-0.300000px;}
.ls60{letter-spacing:-0.255000px;}
.ls25{letter-spacing:-0.240000px;}
.ls5d{letter-spacing:-0.204000px;}
.ls13{letter-spacing:-0.180000px;}
.ls5f{letter-spacing:-0.153000px;}
.ls33{letter-spacing:-0.120000px;}
.ls5e{letter-spacing:-0.102000px;}
.ls14{letter-spacing:-0.060000px;}
.ls6d{letter-spacing:-0.051000px;}
.ls11{letter-spacing:0.000000px;}
.ls47{letter-spacing:0.030000px;}
.lsa{letter-spacing:0.035991px;}
.ls2d{letter-spacing:0.048000px;}
.ls50{letter-spacing:0.051000px;}
.ls8{letter-spacing:0.060000px;}
.ls34{letter-spacing:0.090000px;}
.ls52{letter-spacing:0.102000px;}
.ls21{letter-spacing:0.120000px;}
.ls2a{letter-spacing:0.150000px;}
.ls4b{letter-spacing:0.153000px;}
.ls10{letter-spacing:0.178791px;}
.ls1f{letter-spacing:0.180000px;}
.ls31{letter-spacing:0.180045px;}
.ls4c{letter-spacing:0.204000px;}
.ls6c{letter-spacing:0.229500px;}
.ls0{letter-spacing:0.240000px;}
.lsf{letter-spacing:0.254991px;}
.lse{letter-spacing:0.255000px;}
.ls4f{letter-spacing:0.264000px;}
.ls44{letter-spacing:0.276000px;}
.ls53{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.300000px;}
.ls59{letter-spacing:0.306000px;}
.ls37{letter-spacing:0.306519px;}
.lsc{letter-spacing:0.330000px;}
.ls51{letter-spacing:0.357000px;}
.ls17{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.390000px;}
.lsb{letter-spacing:0.402000px;}
.ls54{letter-spacing:0.408000px;}
.ls48{letter-spacing:0.419982px;}
.ls22{letter-spacing:0.420000px;}
.ls46{letter-spacing:0.450000px;}
.ls4d{letter-spacing:0.459000px;}
.ls1b{letter-spacing:0.479974px;}
.ls4{letter-spacing:0.480000px;}
.ls6a{letter-spacing:0.510000px;}
.ls1{letter-spacing:0.540000px;}
.ls62{letter-spacing:0.561000px;}
.ls23{letter-spacing:0.570000px;}
.ls9{letter-spacing:0.600000px;}
.ls4e{letter-spacing:0.612000px;}
.ls3d{letter-spacing:0.630000px;}
.ls28{letter-spacing:0.660000px;}
.ls67{letter-spacing:0.663000px;}
.ls2c{letter-spacing:0.671973px;}
.ls38{letter-spacing:0.690000px;}
.ls65{letter-spacing:0.714000px;}
.ls19{letter-spacing:0.720000px;}
.ls5a{letter-spacing:0.765000px;}
.ls7{letter-spacing:0.780000px;}
.ls58{letter-spacing:0.790500px;}
.ls42{letter-spacing:0.810000px;}
.ls5b{letter-spacing:0.816000px;}
.ls1e{letter-spacing:0.840000px;}
.ls61{letter-spacing:0.867000px;}
.ls43{letter-spacing:0.870000px;}
.ls5{letter-spacing:0.900000px;}
.ls6{letter-spacing:0.911989px;}
.ls55{letter-spacing:0.918000px;}
.ls18{letter-spacing:0.960000px;}
.ls27{letter-spacing:1.020000px;}
.ls64{letter-spacing:1.045500px;}
.ls20{letter-spacing:1.050000px;}
.ls1a{letter-spacing:1.080000px;}
.ls1c{letter-spacing:1.140000px;}
.ls49{letter-spacing:1.173000px;}
.ls66{letter-spacing:1.224000px;}
.ls36{letter-spacing:1.230000px;}
.ls40{letter-spacing:1.241984px;}
.ls1d{letter-spacing:1.260000px;}
.ls6b{letter-spacing:1.275000px;}
.lsd{letter-spacing:1.290000px;}
.ls2b{letter-spacing:1.320000px;}
.ls63{letter-spacing:1.377000px;}
.ls2f{letter-spacing:1.380000px;}
.ls29{letter-spacing:1.440000px;}
.ls45{letter-spacing:1.470000px;}
.ls35{letter-spacing:1.500000px;}
.ls4a{letter-spacing:1.530000px;}
.ls3e{letter-spacing:1.560000px;}
.ls6e{letter-spacing:1.581000px;}
.ls3f{letter-spacing:1.620000px;}
.ls2e{letter-spacing:1.680000px;}
.ls56{letter-spacing:1.683000px;}
.ls68{letter-spacing:1.734000px;}
.ls57{letter-spacing:1.785000px;}
.ls41{letter-spacing:1.860000px;}
.ls24{letter-spacing:1.920000px;}
.ls3c{letter-spacing:1.980000px;}
.ls30{letter-spacing:2.142520px;}
.ls69{letter-spacing:2.193000px;}
.ls12{letter-spacing:3.990000px;}
.ls32{letter-spacing:13.323329px;}
.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;}
}
.ws54{word-spacing:-16.500000px;}
.ws75{word-spacing:-15.840000px;}
.ws55{word-spacing:-15.780000px;}
.ws3d{word-spacing:-15.720000px;}
.ws1c{word-spacing:-15.600000px;}
.ws1d{word-spacing:-15.300000px;}
.ws7f{word-spacing:-15.060000px;}
.ws7{word-spacing:-15.000000px;}
.ws83{word-spacing:-14.832000px;}
.ws6{word-spacing:-14.544000px;}
.ws80{word-spacing:-13.005000px;}
.ws82{word-spacing:-12.852000px;}
.ws56{word-spacing:-12.750000px;}
.ws1b{word-spacing:-12.474000px;}
.ws2{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.360000px;}
.ws58{word-spacing:-11.679000px;}
.ws5{word-spacing:-11.520000px;}
.ws1{word-spacing:-9.996000px;}
.ws81{word-spacing:-9.945000px;}
.ws0{word-spacing:-9.408000px;}
.ws8{word-spacing:-8.925000px;}
.ws3{word-spacing:-8.694000px;}
.ws47{word-spacing:-7.500000px;}
.ws68{word-spacing:-6.375000px;}
.wsa{word-spacing:-3.990000px;}
.ws74{word-spacing:-1.560000px;}
.wsc{word-spacing:-1.500000px;}
.ws38{word-spacing:-1.440000px;}
.ws66{word-spacing:-1.380000px;}
.ws41{word-spacing:-1.320000px;}
.ws87{word-spacing:-1.275000px;}
.ws7d{word-spacing:-1.260000px;}
.ws65{word-spacing:-1.140000px;}
.wsa5{word-spacing:-1.122000px;}
.ws2d{word-spacing:-1.080000px;}
.ws8f{word-spacing:-1.071000px;}
.ws4b{word-spacing:-1.020000px;}
.ws8d{word-spacing:-0.969000px;}
.ws77{word-spacing:-0.960000px;}
.ws13{word-spacing:-0.900000px;}
.ws78{word-spacing:-0.840000px;}
.ws62{word-spacing:-0.780000px;}
.ws90{word-spacing:-0.765000px;}
.ws10{word-spacing:-0.720000px;}
.ws91{word-spacing:-0.714000px;}
.ws71{word-spacing:-0.660000px;}
.ws18{word-spacing:-0.612000px;}
.wsd{word-spacing:-0.600000px;}
.wsb7{word-spacing:-0.561000px;}
.ws73{word-spacing:-0.540000px;}
.wsb2{word-spacing:-0.510000px;}
.ws43{word-spacing:-0.480000px;}
.wsb0{word-spacing:-0.459000px;}
.ws32{word-spacing:-0.420000px;}
.wsb3{word-spacing:-0.408000px;}
.ws1f{word-spacing:-0.360000px;}
.ws8c{word-spacing:-0.357000px;}
.ws8b{word-spacing:-0.306000px;}
.ws30{word-spacing:-0.300000px;}
.ws8a{word-spacing:-0.264000px;}
.ws19{word-spacing:-0.255000px;}
.ws2e{word-spacing:-0.240000px;}
.ws15{word-spacing:-0.180000px;}
.ws33{word-spacing:-0.120000px;}
.ws3e{word-spacing:-0.060015px;}
.ws3c{word-spacing:-0.060000px;}
.wsa6{word-spacing:-0.051000px;}
.ws9{word-spacing:0.000000px;}
.ws20{word-spacing:0.060000px;}
.ws95{word-spacing:0.102000px;}
.wsaf{word-spacing:0.153000px;}
.ws5e{word-spacing:0.180000px;}
.ws16{word-spacing:0.240000px;}
.ws27{word-spacing:0.300000px;}
.ws97{word-spacing:0.306000px;}
.ws96{word-spacing:0.357000px;}
.ws2f{word-spacing:0.360000px;}
.ws9e{word-spacing:0.408000px;}
.ws4a{word-spacing:0.420000px;}
.ws31{word-spacing:0.480000px;}
.wsb5{word-spacing:0.510000px;}
.ws4e{word-spacing:0.600000px;}
.wsb6{word-spacing:0.612000px;}
.ws49{word-spacing:0.660000px;}
.wsac{word-spacing:0.663000px;}
.ws36{word-spacing:0.720000px;}
.ws23{word-spacing:0.780000px;}
.ws5d{word-spacing:0.900000px;}
.wsf{word-spacing:0.960000px;}
.ws88{word-spacing:0.969000px;}
.ws3b{word-spacing:1.020000px;}
.ws9b{word-spacing:1.071000px;}
.ws2c{word-spacing:1.080000px;}
.ws8e{word-spacing:1.173000px;}
.ws11{word-spacing:1.200000px;}
.ws72{word-spacing:1.260000px;}
.ws89{word-spacing:1.275000px;}
.wse{word-spacing:1.320000px;}
.wsad{word-spacing:1.377000px;}
.wsa1{word-spacing:1.428000px;}
.ws4f{word-spacing:1.440000px;}
.wsae{word-spacing:1.479000px;}
.wsb{word-spacing:1.500000px;}
.ws1e{word-spacing:1.560000px;}
.ws9d{word-spacing:1.581000px;}
.ws28{word-spacing:1.620000px;}
.ws40{word-spacing:1.680000px;}
.ws14{word-spacing:1.800000px;}
.wsa8{word-spacing:1.836000px;}
.ws52{word-spacing:1.860000px;}
.ws98{word-spacing:1.887000px;}
.ws60{word-spacing:1.920000px;}
.ws2b{word-spacing:1.980000px;}
.wsb8{word-spacing:1.989000px;}
.ws4d{word-spacing:2.040000px;}
.ws5c{word-spacing:2.100000px;}
.ws25{word-spacing:2.160000px;}
.ws12{word-spacing:2.220000px;}
.ws45{word-spacing:2.280000px;}
.wsaa{word-spacing:2.295000px;}
.ws5f{word-spacing:2.340000px;}
.ws21{word-spacing:2.400000px;}
.wsa7{word-spacing:2.448000px;}
.ws4c{word-spacing:2.460000px;}
.wsb9{word-spacing:2.499000px;}
.ws99{word-spacing:2.550000px;}
.ws76{word-spacing:2.580000px;}
.ws92{word-spacing:2.601000px;}
.ws26{word-spacing:2.640000px;}
.wsb1{word-spacing:2.652000px;}
.ws34{word-spacing:2.700000px;}
.ws84{word-spacing:2.760000px;}
.ws24{word-spacing:2.940000px;}
.ws35{word-spacing:3.000000px;}
.ws3a{word-spacing:3.120000px;}
.ws53{word-spacing:3.180000px;}
.ws22{word-spacing:3.240000px;}
.ws29{word-spacing:3.300000px;}
.ws9c{word-spacing:3.315000px;}
.ws7b{word-spacing:3.420000px;}
.ws70{word-spacing:3.480000px;}
.ws63{word-spacing:3.540000px;}
.ws48{word-spacing:3.600000px;}
.ws64{word-spacing:3.840000px;}
.ws2a{word-spacing:3.900000px;}
.ws37{word-spacing:3.960000px;}
.ws7c{word-spacing:4.020000px;}
.ws7a{word-spacing:4.080000px;}
.ws9f{word-spacing:4.182000px;}
.ws17{word-spacing:4.200000px;}
.ws5b{word-spacing:4.320000px;}
.wsa0{word-spacing:4.335000px;}
.ws44{word-spacing:4.380000px;}
.wsb4{word-spacing:4.386000px;}
.ws42{word-spacing:4.440000px;}
.ws85{word-spacing:4.488000px;}
.ws79{word-spacing:4.500000px;}
.wsa9{word-spacing:4.590000px;}
.ws51{word-spacing:4.740000px;}
.ws9a{word-spacing:4.845000px;}
.ws3f{word-spacing:4.980000px;}
.ws7e{word-spacing:5.100000px;}
.ws61{word-spacing:5.400000px;}
.ws86{word-spacing:5.814000px;}
.wsa2{word-spacing:5.865000px;}
.ws50{word-spacing:6.240000px;}
.ws46{word-spacing:6.300000px;}
.ws93{word-spacing:6.375000px;}
.wsa3{word-spacing:6.630000px;}
.wsab{word-spacing:6.783000px;}
.ws94{word-spacing:6.987000px;}
.ws39{word-spacing:7.260000px;}
.wsa4{word-spacing:8.976000px;}
.wsba{word-spacing:13.515000px;}
.ws67{word-spacing:17.085000px;}
.wsbb{word-spacing:17.595000px;}
.ws6a{word-spacing:26.316000px;}
.ws6c{word-spacing:61.251000px;}
.ws1a{word-spacing:72.267000px;}
.ws59{word-spacing:396.729000px;}
.ws5a{word-spacing:401.981979px;}
.ws57{word-spacing:411.009000px;}
.ws69{word-spacing:735.878975px;}
.ws6f{word-spacing:1594.973914px;}
.ws6e{word-spacing:1642.052014px;}
.ws6d{word-spacing:1654.439914px;}
.ws6b{word-spacing:1717.730914px;}
._b{margin-left:-2762.823000px;}
._48{margin-left:-20.196000px;}
._46{margin-left:-18.972000px;}
._7{margin-left:-16.575000px;}
._4b{margin-left:-15.504000px;}
._43{margin-left:-14.433000px;}
._4a{margin-left:-13.311000px;}
._45{margin-left:-11.679000px;}
._11{margin-left:-10.200007px;}
._6{margin-left:-8.820000px;}
._12{margin-left:-7.683628px;}
._5{margin-left:-5.940000px;}
._e{margin-left:-4.920000px;}
._3{margin-left:-2.930403px;}
._0{margin-left:-1.632000px;}
._4{width:1.134000px;}
._1{width:2.284800px;}
._d{width:3.530403px;}
._13{width:5.100000px;}
._38{width:7.650000px;}
._3e{width:8.874000px;}
._40{width:10.557000px;}
._3a{width:12.341990px;}
._39{width:14.280000px;}
._f{width:15.606000px;}
._49{width:16.626000px;}
._8{width:18.360000px;}
._47{width:20.782500px;}
._44{width:22.644000px;}
._3c{width:24.327000px;}
._41{width:25.449000px;}
._3d{width:26.673000px;}
._3f{width:27.693000px;}
._42{width:28.866000px;}
._3b{width:29.886000px;}
._31{width:39.066000px;}
._2{width:40.562380px;}
._16{width:52.122000px;}
._9{width:54.621000px;}
._27{width:64.566000px;}
._2d{width:74.001000px;}
._15{width:77.622000px;}
._2a{width:90.066000px;}
._c{width:98.226000px;}
._1a{width:103.122000px;}
._19{width:128.622000px;}
._25{width:153.663000px;}
._28{width:179.469000px;}
._33{width:212.975975px;}
._2c{width:243.219000px;}
._1e{width:310.691979px;}
._14{width:316.529381px;}
._17{width:381.581979px;}
._1f{width:398.690381px;}
._1d{width:421.259979px;}
._1c{width:424.115979px;}
._1b{width:441.098979px;}
._18{width:458.081979px;}
._30{width:484.499975px;}
._32{width:532.694975px;}
._29{width:566.304000px;}
._2e{width:571.965000px;}
._24{width:666.110975px;}
._23{width:670.139975px;}
._2f{width:675.749975px;}
._34{width:708.492000px;}
._2b{width:723.995975px;}
._26{width:732.587378px;}
._20{width:887.807973px;}
._21{width:969.917973px;}
._22{width:989.807973px;}
._36{width:991.008000px;}
._35{width:1238.484000px;}
._37{width:1260.873000px;}
._10{width:1661.578859px;}
._a{width:1875.576000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:35.699999px;}
.fs5{font-size:42.000000px;}
.fsa{font-size:42.010200px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:51.000000px;}
.fs2{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs9{font-size:60.014997px;}
.fs8{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.yda{bottom:-0.055206px;}
.y0{bottom:0.000000px;}
.yd6{bottom:16.455139px;}
.yd8{bottom:35.624680px;}
.y1{bottom:68.829002px;}
.y3d{bottom:112.950300px;}
.y6e{bottom:113.415298px;}
.yee{bottom:113.683823px;}
.yd4{bottom:114.132156px;}
.y187{bottom:114.144305px;}
.y7a{bottom:114.289799px;}
.y1bf{bottom:114.330294px;}
.ya9{bottom:114.735306px;}
.y16d{bottom:114.874786px;}
.y128{bottom:114.874809px;}
.y3c{bottom:127.944300px;}
.y186{bottom:129.138305px;}
.y1be{bottom:129.324294px;}
.y2c{bottom:130.711349px;}
.y6d{bottom:132.165298px;}
.yed{bottom:132.433823px;}
.yd3{bottom:132.882156px;}
.ya8{bottom:133.485306px;}
.y16c{bottom:133.624786px;}
.y127{bottom:133.624809px;}
.y3b{bottom:142.938300px;}
.y185{bottom:144.132305px;}
.y1bd{bottom:144.318294px;}
.y2b{bottom:149.461349px;}
.y6c{bottom:150.915298px;}
.yec{bottom:151.183823px;}
.yd2{bottom:151.632156px;}
.ya7{bottom:152.235306px;}
.y16b{bottom:152.374786px;}
.y126{bottom:152.374809px;}
.y1bc{bottom:159.312294px;}
.y3a{bottom:163.032303px;}
.y2a{bottom:168.211349px;}
.y6b{bottom:169.665298px;}
.yeb{bottom:169.933823px;}
.yd1{bottom:170.382156px;}
.ya6{bottom:170.985306px;}
.y16a{bottom:171.124786px;}
.y125{bottom:171.124809px;}
.y1bb{bottom:174.306294px;}
.y39{bottom:180.491553px;}
.y29{bottom:186.961349px;}
.y6a{bottom:188.415298px;}
.yea{bottom:188.683823px;}
.yd0{bottom:189.132156px;}
.y1ba{bottom:189.300294px;}
.ya5{bottom:189.735306px;}
.y169{bottom:189.874786px;}
.y124{bottom:189.874809px;}
.y184{bottom:192.882294px;}
.y38{bottom:195.485553px;}
.y1b9{bottom:204.294294px;}
.y28{bottom:205.711349px;}
.y69{bottom:207.165298px;}
.ye9{bottom:207.433823px;}
.ycf{bottom:207.882156px;}
.ya4{bottom:208.485306px;}
.y168{bottom:208.624786px;}
.y123{bottom:208.624809px;}
.y183{bottom:211.632294px;}
.y37{bottom:215.579544px;}
.y1b8{bottom:219.288294px;}
.y27{bottom:224.461349px;}
.y68{bottom:225.915298px;}
.ye8{bottom:226.183823px;}
.yce{bottom:226.632156px;}
.ya3{bottom:227.235306px;}
.y167{bottom:227.374786px;}
.y122{bottom:227.374809px;}
.y182{bottom:230.382294px;}
.y36{bottom:233.038794px;}
.y1b7{bottom:234.282294px;}
.y26{bottom:243.211349px;}
.y67{bottom:244.665298px;}
.ye7{bottom:244.933823px;}
.ycd{bottom:245.382156px;}
.ya2{bottom:245.985306px;}
.y166{bottom:246.124786px;}
.y121{bottom:246.124809px;}
.y35{bottom:248.032794px;}
.y181{bottom:249.132294px;}
.y1b6{bottom:249.276294px;}
.y25{bottom:261.961349px;}
.y66{bottom:263.415298px;}
.ye6{bottom:263.683823px;}
.ycc{bottom:264.132156px;}
.y1b5{bottom:264.270294px;}
.ya1{bottom:264.735306px;}
.y165{bottom:264.874786px;}
.y120{bottom:264.874809px;}
.y180{bottom:267.882294px;}
.y34{bottom:268.126808px;}
.y1b4{bottom:279.264294px;}
.y24{bottom:280.711349px;}
.y1f6{bottom:281.548823px;}
.y65{bottom:282.165298px;}
.ye5{bottom:282.433823px;}
.ycb{bottom:282.882156px;}
.ya0{bottom:283.485306px;}
.y164{bottom:283.624786px;}
.y11f{bottom:283.624809px;}
.y17f{bottom:286.632294px;}
.y33{bottom:293.151772px;}
.y1b3{bottom:294.258294px;}
.y1f5{bottom:296.542823px;}
.y23{bottom:299.461349px;}
.y64{bottom:300.915298px;}
.ye4{bottom:301.183823px;}
.yca{bottom:301.632156px;}
.y9f{bottom:302.235306px;}
.y163{bottom:302.374786px;}
.y11e{bottom:302.374809px;}
.y17e{bottom:305.382294px;}
.y32{bottom:308.145772px;}
.y1b2{bottom:309.252294px;}
.y1f4{bottom:311.536823px;}
.y22{bottom:318.211349px;}
.y63{bottom:319.665298px;}
.ye3{bottom:319.933823px;}
.yc9{bottom:320.382156px;}
.y9e{bottom:320.985306px;}
.y162{bottom:321.124786px;}
.y11d{bottom:321.124809px;}
.y17d{bottom:324.132294px;}
.y1b1{bottom:324.246294px;}
.y1f3{bottom:326.530823px;}
.y21{bottom:336.961349px;}
.y62{bottom:338.415298px;}
.ye2{bottom:338.683823px;}
.y31{bottom:338.962522px;}
.yc8{bottom:339.132156px;}
.y1b0{bottom:339.240294px;}
.y9d{bottom:339.735306px;}
.y161{bottom:339.874786px;}
.y11c{bottom:339.874809px;}
.y1f2{bottom:341.524823px;}
.y17c{bottom:342.882294px;}
.y30{bottom:353.956522px;}
.y1af{bottom:354.234294px;}
.y20{bottom:355.711349px;}
.y1f1{bottom:356.518823px;}
.y61{bottom:357.165298px;}
.ye1{bottom:357.433823px;}
.y9c{bottom:358.485306px;}
.y160{bottom:358.624786px;}
.y11b{bottom:358.624809px;}
.y17b{bottom:361.632294px;}
.y2f{bottom:368.950522px;}
.y1ae{bottom:369.228294px;}
.y1f0{bottom:371.512823px;}
.y226{bottom:371.729566px;}
.y1f{bottom:374.461349px;}
.y60{bottom:375.915298px;}
.ye0{bottom:376.183823px;}
.yc7{bottom:376.632156px;}
.y9b{bottom:377.235306px;}
.y15f{bottom:377.374786px;}
.y2e{bottom:383.944522px;}
.y1ad{bottom:384.222294px;}
.y1ef{bottom:386.506823px;}
.y225{bottom:386.723566px;}
.y1e{bottom:393.211349px;}
.y5f{bottom:394.665298px;}
.ydf{bottom:394.933823px;}
.y9a{bottom:395.985306px;}
.y15e{bottom:396.124786px;}
.y2d{bottom:398.938522px;}
.y17a{bottom:399.132294px;}
.y1ac{bottom:399.216294px;}
.y1ee{bottom:401.500823px;}
.y1d{bottom:411.961349px;}
.y14f{bottom:412.186777px;}
.y5e{bottom:413.415298px;}
.yde{bottom:413.683823px;}
.yc6{bottom:414.132156px;}
.y1ab{bottom:414.210294px;}
.y99{bottom:414.735306px;}
.y15d{bottom:414.874786px;}
.y1ed{bottom:416.494823px;}
.y224{bottom:416.813564px;}
.y1aa{bottom:429.204294px;}
.y1c{bottom:430.711349px;}
.y14e{bottom:430.980277px;}
.y1ec{bottom:431.488823px;}
.y223{bottom:431.807564px;}
.ydd{bottom:432.433823px;}
.y98{bottom:433.485306px;}
.y15c{bottom:433.624786px;}
.y1a9{bottom:444.198294px;}
.y1eb{bottom:446.482823px;}
.y222{bottom:446.801564px;}
.y1b{bottom:449.461349px;}
.y14d{bottom:449.697277px;}
.y5d{bottom:450.915298px;}
.ydc{bottom:451.183823px;}
.y97{bottom:452.235306px;}
.y16f{bottom:452.374786px;}
.y1a8{bottom:459.192294px;}
.y1ea{bottom:461.476823px;}
.y221{bottom:461.795564px;}
.y14c{bottom:468.414277px;}
.y179{bottom:470.985260px;}
.y96{bottom:470.985306px;}
.y15b{bottom:471.124786px;}
.yc5{bottom:472.896130px;}
.y1a7{bottom:474.186294px;}
.y1e9{bottom:476.470823px;}
.y220{bottom:476.789564px;}
.y1a{bottom:486.961349px;}
.y14b{bottom:487.131277px;}
.y5c{bottom:488.415298px;}
.y79{bottom:488.415344px;}
.ydb{bottom:488.683823px;}
.y1a6{bottom:489.180294px;}
.y178{bottom:489.735260px;}
.y95{bottom:489.735306px;}
.y16e{bottom:489.874786px;}
.y1e8{bottom:491.464823px;}
.yc4{bottom:491.646130px;}
.y21f{bottom:491.783564px;}
.y1a5{bottom:504.174294px;}
.y14a{bottom:505.848277px;}
.y1e7{bottom:506.458823px;}
.y21e{bottom:506.777564px;}
.y5b{bottom:507.165298px;}
.y78{bottom:507.165344px;}
.y177{bottom:508.485260px;}
.y94{bottom:508.485306px;}
.y15a{bottom:508.624786px;}
.yc3{bottom:510.396130px;}
.y1a4{bottom:519.168294px;}
.y1e6{bottom:521.452823px;}
.y21d{bottom:521.771564px;}
.y149{bottom:524.565277px;}
.y5a{bottom:525.915298px;}
.y77{bottom:525.915344px;}
.y176{bottom:527.235260px;}
.y93{bottom:527.235306px;}
.y159{bottom:527.374786px;}
.y1a3{bottom:534.162294px;}
.y1e5{bottom:536.446823px;}
.y21c{bottom:536.765564px;}
.yd5{bottom:538.521011px;}
.y19{bottom:543.211395px;}
.y148{bottom:543.282277px;}
.y59{bottom:544.665298px;}
.y76{bottom:544.665344px;}
.y175{bottom:545.985260px;}
.y92{bottom:545.985306px;}
.y158{bottom:546.124786px;}
.y1a2{bottom:549.156294px;}
.y1e4{bottom:551.440823px;}
.y21b{bottom:551.759564px;}
.y11a{bottom:553.414524px;}
.yd7{bottom:554.976150px;}
.y147{bottom:561.999277px;}
.y75{bottom:563.415344px;}
.y1a1{bottom:564.150294px;}
.y174{bottom:564.735260px;}
.yfc{bottom:564.735306px;}
.y157{bottom:564.874786px;}
.y1e3{bottom:566.434823px;}
.y21a{bottom:566.753564px;}
.yd9{bottom:568.651520px;}
.y119{bottom:572.208024px;}
.y1a0{bottom:579.144294px;}
.y18{bottom:580.711395px;}
.y146{bottom:580.716277px;}
.y1e2{bottom:581.428823px;}
.y219{bottom:581.747564px;}
.y58{bottom:582.165298px;}
.y74{bottom:582.165344px;}
.y173{bottom:583.485260px;}
.y91{bottom:583.485306px;}
.y156{bottom:583.624786px;}
.y118{bottom:590.925024px;}
.y19f{bottom:594.138294px;}
.y1e1{bottom:596.422823px;}
.y218{bottom:596.741564px;}
.y145{bottom:599.433277px;}
.y17{bottom:599.461395px;}
.yc2{bottom:599.721130px;}
.y73{bottom:600.915344px;}
.y172{bottom:602.235260px;}
.y155{bottom:602.374786px;}
.y19e{bottom:609.132294px;}
.y117{bottom:609.642024px;}
.y1e0{bottom:611.416823px;}
.y217{bottom:611.735564px;}
.y144{bottom:618.150277px;}
.y16{bottom:618.211395px;}
.yc1{bottom:618.471130px;}
.y72{bottom:619.665344px;}
.y171{bottom:620.985260px;}
.yfb{bottom:620.985306px;}
.y154{bottom:621.124786px;}
.y1df{bottom:626.410823px;}
.y216{bottom:626.729564px;}
.y116{bottom:628.359024px;}
.y143{bottom:636.867277px;}
.y15{bottom:636.961395px;}
.yc0{bottom:637.221130px;}
.y57{bottom:638.415344px;}
.y90{bottom:639.735260px;}
.y153{bottom:639.874786px;}
.y1de{bottom:641.404823px;}
.y215{bottom:641.723564px;}
.y19d{bottom:642.882294px;}
.y115{bottom:647.076024px;}
.y142{bottom:655.584277px;}
.y14{bottom:655.711395px;}
.ybf{bottom:655.971130px;}
.y1dd{bottom:656.398823px;}
.y214{bottom:656.717564px;}
.y56{bottom:657.165344px;}
.y8f{bottom:658.485260px;}
.y152{bottom:658.624786px;}
.y114{bottom:665.793024px;}
.y1dc{bottom:671.392823px;}
.y213{bottom:671.711564px;}
.y141{bottom:674.301277px;}
.y13{bottom:674.461395px;}
.ybe{bottom:674.721130px;}
.y55{bottom:675.915344px;}
.y8e{bottom:677.235260px;}
.y151{bottom:677.374786px;}
.y113{bottom:684.510024px;}
.y1db{bottom:686.386823px;}
.y212{bottom:686.705564px;}
.y140{bottom:693.018277px;}
.y12{bottom:693.211395px;}
.ybd{bottom:693.471130px;}
.y54{bottom:694.665344px;}
.y8d{bottom:695.985260px;}
.y150{bottom:696.124786px;}
.y1da{bottom:701.380823px;}
.y211{bottom:701.699564px;}
.y112{bottom:703.227024px;}
.y19c{bottom:704.908088px;}
.y13f{bottom:711.735277px;}
.y11{bottom:711.961395px;}
.ybc{bottom:712.221130px;}
.y53{bottom:713.415344px;}
.y8c{bottom:714.735260px;}
.y1d9{bottom:716.374823px;}
.y210{bottom:716.693564px;}
.y19b{bottom:719.902088px;}
.y111{bottom:721.944024px;}
.y13e{bottom:730.452277px;}
.y10{bottom:730.711395px;}
.ybb{bottom:730.971130px;}
.y1d8{bottom:731.368823px;}
.y20f{bottom:731.687564px;}
.y52{bottom:732.165344px;}
.y8b{bottom:733.485260px;}
.y19a{bottom:734.896088px;}
.y110{bottom:740.661024px;}
.y13d{bottom:745.446277px;}
.y1d7{bottom:746.362823px;}
.y20e{bottom:746.681564px;}
.yf{bottom:749.461395px;}
.yba{bottom:749.721130px;}
.y199{bottom:749.890088px;}
.y51{bottom:750.915344px;}
.y8a{bottom:752.235260px;}
.y10f{bottom:759.378024px;}
.y1d6{bottom:761.356823px;}
.y20d{bottom:761.675564px;}
.y13c{bottom:764.163277px;}
.y198{bottom:764.884088px;}
.ye{bottom:768.211395px;}
.yb9{bottom:768.471130px;}
.y50{bottom:769.665344px;}
.y89{bottom:770.985260px;}
.y1d5{bottom:776.350823px;}
.y20c{bottom:776.669564px;}
.y10e{bottom:778.095024px;}
.y197{bottom:779.878088px;}
.y13b{bottom:782.880277px;}
.yd{bottom:786.961395px;}
.yb8{bottom:787.221130px;}
.y4f{bottom:788.415344px;}
.y88{bottom:789.735260px;}
.y1d4{bottom:791.344823px;}
.y20b{bottom:791.663564px;}
.y196{bottom:794.872088px;}
.y10d{bottom:796.812024px;}
.y13a{bottom:801.597277px;}
.yc{bottom:805.711395px;}
.yb7{bottom:805.971130px;}
.y1d3{bottom:806.338823px;}
.y20a{bottom:806.657564px;}
.y4e{bottom:807.165344px;}
.y87{bottom:808.485260px;}
.y195{bottom:809.866088px;}
.y10c{bottom:815.529024px;}
.y139{bottom:820.314277px;}
.y1d2{bottom:821.332823px;}
.y209{bottom:821.651564px;}
.yb{bottom:824.461395px;}
.yb6{bottom:824.721130px;}
.y194{bottom:824.860088px;}
.y4d{bottom:825.915344px;}
.y86{bottom:827.235260px;}
.y10b{bottom:834.246024px;}
.y1d1{bottom:836.326823px;}
.y208{bottom:836.645564px;}
.y138{bottom:839.031277px;}
.y193{bottom:839.854088px;}
.ya{bottom:843.211395px;}
.yb5{bottom:843.471130px;}
.y4c{bottom:844.665344px;}
.yfa{bottom:845.985260px;}
.y1d0{bottom:851.320823px;}
.y207{bottom:851.639564px;}
.y10a{bottom:852.963024px;}
.y192{bottom:854.848088px;}
.y137{bottom:857.748277px;}
.yb4{bottom:862.221130px;}
.y4b{bottom:863.415344px;}
.y85{bottom:864.735260px;}
.y1cf{bottom:866.314823px;}
.y206{bottom:866.633564px;}
.y109{bottom:867.957024px;}
.y191{bottom:869.842088px;}
.y136{bottom:876.465277px;}
.yb3{bottom:880.971130px;}
.y1ce{bottom:881.308823px;}
.y205{bottom:881.627564px;}
.y4a{bottom:882.165344px;}
.yf9{bottom:883.485260px;}
.y108{bottom:886.674024px;}
.y9{bottom:887.394153px;}
.y135{bottom:895.182277px;}
.y1cd{bottom:896.302823px;}
.y204{bottom:896.621564px;}
.yb2{bottom:899.721130px;}
.y49{bottom:900.915344px;}
.y107{bottom:901.668024px;}
.y170{bottom:902.235260px;}
.y8{bottom:902.388153px;}
.y190{bottom:907.327088px;}
.y134{bottom:910.176277px;}
.y1cc{bottom:911.296823px;}
.y203{bottom:911.615564px;}
.yb1{bottom:918.471130px;}
.y48{bottom:919.665344px;}
.y106{bottom:920.385024px;}
.yf8{bottom:920.983818px;}
.y84{bottom:920.985260px;}
.y18f{bottom:922.321088px;}
.y1cb{bottom:926.290823px;}
.y202{bottom:926.609564px;}
.y133{bottom:928.893277px;}
.yb0{bottom:937.221130px;}
.y47{bottom:938.415344px;}
.y105{bottom:939.102024px;}
.yf7{bottom:939.733818px;}
.y83{bottom:939.735260px;}
.y1ca{bottom:941.284823px;}
.y201{bottom:941.603564px;}
.y7{bottom:944.988190px;}
.y132{bottom:947.610277px;}
.y18e{bottom:952.321838px;}
.yaf{bottom:955.971130px;}
.y1c9{bottom:956.278823px;}
.y200{bottom:956.597564px;}
.y46{bottom:957.165344px;}
.y104{bottom:957.819024px;}
.yf6{bottom:958.483818px;}
.y82{bottom:958.485260px;}
.y6{bottom:963.738190px;}
.y131{bottom:966.327277px;}
.y1c8{bottom:971.272823px;}
.y1ff{bottom:971.591564px;}
.yae{bottom:974.721130px;}
.y45{bottom:975.915344px;}
.y103{bottom:976.536024px;}
.yf5{bottom:977.233818px;}
.y81{bottom:977.235260px;}
.y18d{bottom:982.321838px;}
.y130{bottom:985.044277px;}
.y1c7{bottom:986.266823px;}
.y1fe{bottom:986.585564px;}
.y102{bottom:991.530024px;}
.y44{bottom:994.665344px;}
.yf4{bottom:995.983818px;}
.y80{bottom:995.985260px;}
.y1c6{bottom:1001.260823px;}
.y1fd{bottom:1001.579564px;}
.y12f{bottom:1003.761277px;}
.y5{bottom:1008.424622px;}
.yad{bottom:1012.221130px;}
.y43{bottom:1013.415344px;}
.yf3{bottom:1014.733818px;}
.y7f{bottom:1014.735260px;}
.y18c{bottom:1016.104819px;}
.y1c5{bottom:1016.254823px;}
.y1fc{bottom:1016.573564px;}
.y101{bottom:1019.618274px;}
.y12e{bottom:1022.478277px;}
.y12a{bottom:1030.126844px;}
.y18b{bottom:1031.098819px;}
.y1c4{bottom:1031.248823px;}
.y1fb{bottom:1031.567564px;}
.y42{bottom:1032.165344px;}
.yf2{bottom:1033.483818px;}
.y7e{bottom:1033.485260px;}
.y100{bottom:1034.612274px;}
.y12d{bottom:1041.195277px;}
.y129{bottom:1045.120844px;}
.y1c3{bottom:1046.242823px;}
.y1fa{bottom:1046.561564px;}
.y71{bottom:1050.915298px;}
.y41{bottom:1050.915344px;}
.yf1{bottom:1052.233818px;}
.y7d{bottom:1052.235260px;}
.yac{bottom:1052.235306px;}
.yff{bottom:1060.114844px;}
.y18a{bottom:1061.099569px;}
.y1c2{bottom:1061.236823px;}
.y1f9{bottom:1061.555564px;}
.y12c{bottom:1069.283527px;}
.y70{bottom:1069.665298px;}
.y40{bottom:1069.665344px;}
.yf0{bottom:1070.983818px;}
.y7c{bottom:1070.985260px;}
.yab{bottom:1070.985306px;}
.yfe{bottom:1075.108844px;}
.y189{bottom:1076.093569px;}
.y4{bottom:1076.132080px;}
.y1c1{bottom:1076.230823px;}
.y1f8{bottom:1076.549564px;}
.y12b{bottom:1084.277527px;}
.y6f{bottom:1088.415298px;}
.y3f{bottom:1088.415344px;}
.yef{bottom:1089.733818px;}
.y7b{bottom:1089.735260px;}
.yaa{bottom:1089.735306px;}
.yfd{bottom:1090.102844px;}
.y188{bottom:1091.087569px;}
.y1c0{bottom:1091.224823px;}
.y1f7{bottom:1091.543564px;}
.y3{bottom:1109.586556px;}
.y2{bottom:1126.582306px;}
.y3e{bottom:1127.482361px;}
.h15{height:3.960990px;}
.hd{height:25.204199px;}
.h14{height:28.692967px;}
.h17{height:33.303000px;}
.hb{height:36.006000px;}
.hc{height:36.855469px;}
.h13{height:40.570138px;}
.h12{height:40.990243px;}
.h2{height:42.048000px;}
.h8{height:42.360000px;}
.h11{height:42.449999px;}
.h3{height:44.676000px;}
.h10{height:44.676732px;}
.hf{height:45.186000px;}
.h9{height:53.160000px;}
.h16{height:53.652000px;}
.h4{height:55.461000px;}
.he{height:59.004000px;}
.h7{height:59.340000px;}
.h6{height:64.866000px;}
.ha{height:71.208000px;}
.h5{height:85.056000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w2{width:291.616493px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:71.346909px;}
.x2{left:76.535402px;}
.x10{left:81.041390px;}
.x3{left:85.181849px;}
.x6{left:93.545402px;}
.x5{left:97.796100px;}
.x18{left:102.047253px;}
.xc{left:194.169891px;}
.xd{left:202.995140px;}
.x14{left:267.864455px;}
.x15{left:272.365205px;}
.xe{left:285.041390px;}
.xf{left:360.712640px;}
.x4{left:459.212723px;}
.x7{left:476.225402px;}
.x11{left:477.805939px;}
.x17{left:484.725290px;}
.x8{left:514.655411px;}
.x9{left:529.100555px;}
.xb{left:550.984222px;}
.x12{left:644.971189px;}
.x1{left:728.220612px;}
.x16{left:739.678184px;}
.x13{left:786.929686px;}
@media print{
.v2{vertical-align:-18.133382pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls3a{letter-spacing:-0.952000pt;}
.ls39{letter-spacing:-0.680000pt;}
.ls3b{letter-spacing:-0.589333pt;}
.ls26{letter-spacing:-0.373333pt;}
.ls6f{letter-spacing:-0.362667pt;}
.ls16{letter-spacing:-0.320000pt;}
.ls5c{letter-spacing:-0.317333pt;}
.ls15{letter-spacing:-0.266667pt;}
.ls60{letter-spacing:-0.226667pt;}
.ls25{letter-spacing:-0.213333pt;}
.ls5d{letter-spacing:-0.181333pt;}
.ls13{letter-spacing:-0.160000pt;}
.ls5f{letter-spacing:-0.136000pt;}
.ls33{letter-spacing:-0.106667pt;}
.ls5e{letter-spacing:-0.090667pt;}
.ls14{letter-spacing:-0.053333pt;}
.ls6d{letter-spacing:-0.045333pt;}
.ls11{letter-spacing:0.000000pt;}
.ls47{letter-spacing:0.026667pt;}
.lsa{letter-spacing:0.031992pt;}
.ls2d{letter-spacing:0.042667pt;}
.ls50{letter-spacing:0.045333pt;}
.ls8{letter-spacing:0.053333pt;}
.ls34{letter-spacing:0.080000pt;}
.ls52{letter-spacing:0.090667pt;}
.ls21{letter-spacing:0.106667pt;}
.ls2a{letter-spacing:0.133333pt;}
.ls4b{letter-spacing:0.136000pt;}
.ls10{letter-spacing:0.158926pt;}
.ls1f{letter-spacing:0.160000pt;}
.ls31{letter-spacing:0.160040pt;}
.ls4c{letter-spacing:0.181333pt;}
.ls6c{letter-spacing:0.204000pt;}
.ls0{letter-spacing:0.213333pt;}
.lsf{letter-spacing:0.226659pt;}
.lse{letter-spacing:0.226667pt;}
.ls4f{letter-spacing:0.234667pt;}
.ls44{letter-spacing:0.245333pt;}
.ls53{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.266667pt;}
.ls59{letter-spacing:0.272000pt;}
.ls37{letter-spacing:0.272461pt;}
.lsc{letter-spacing:0.293333pt;}
.ls51{letter-spacing:0.317333pt;}
.ls17{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.346667pt;}
.lsb{letter-spacing:0.357333pt;}
.ls54{letter-spacing:0.362667pt;}
.ls48{letter-spacing:0.373317pt;}
.ls22{letter-spacing:0.373333pt;}
.ls46{letter-spacing:0.400000pt;}
.ls4d{letter-spacing:0.408000pt;}
.ls1b{letter-spacing:0.426644pt;}
.ls4{letter-spacing:0.426667pt;}
.ls6a{letter-spacing:0.453333pt;}
.ls1{letter-spacing:0.480000pt;}
.ls62{letter-spacing:0.498667pt;}
.ls23{letter-spacing:0.506667pt;}
.ls9{letter-spacing:0.533333pt;}
.ls4e{letter-spacing:0.544000pt;}
.ls3d{letter-spacing:0.560000pt;}
.ls28{letter-spacing:0.586667pt;}
.ls67{letter-spacing:0.589333pt;}
.ls2c{letter-spacing:0.597309pt;}
.ls38{letter-spacing:0.613333pt;}
.ls65{letter-spacing:0.634667pt;}
.ls19{letter-spacing:0.640000pt;}
.ls5a{letter-spacing:0.680000pt;}
.ls7{letter-spacing:0.693333pt;}
.ls58{letter-spacing:0.702667pt;}
.ls42{letter-spacing:0.720000pt;}
.ls5b{letter-spacing:0.725333pt;}
.ls1e{letter-spacing:0.746667pt;}
.ls61{letter-spacing:0.770667pt;}
.ls43{letter-spacing:0.773333pt;}
.ls5{letter-spacing:0.800000pt;}
.ls6{letter-spacing:0.810657pt;}
.ls55{letter-spacing:0.816000pt;}
.ls18{letter-spacing:0.853333pt;}
.ls27{letter-spacing:0.906667pt;}
.ls64{letter-spacing:0.929333pt;}
.ls20{letter-spacing:0.933333pt;}
.ls1a{letter-spacing:0.960000pt;}
.ls1c{letter-spacing:1.013333pt;}
.ls49{letter-spacing:1.042667pt;}
.ls66{letter-spacing:1.088000pt;}
.ls36{letter-spacing:1.093333pt;}
.ls40{letter-spacing:1.103986pt;}
.ls1d{letter-spacing:1.120000pt;}
.ls6b{letter-spacing:1.133333pt;}
.lsd{letter-spacing:1.146667pt;}
.ls2b{letter-spacing:1.173333pt;}
.ls63{letter-spacing:1.224000pt;}
.ls2f{letter-spacing:1.226667pt;}
.ls29{letter-spacing:1.280000pt;}
.ls45{letter-spacing:1.306667pt;}
.ls35{letter-spacing:1.333333pt;}
.ls4a{letter-spacing:1.360000pt;}
.ls3e{letter-spacing:1.386667pt;}
.ls6e{letter-spacing:1.405333pt;}
.ls3f{letter-spacing:1.440000pt;}
.ls2e{letter-spacing:1.493333pt;}
.ls56{letter-spacing:1.496000pt;}
.ls68{letter-spacing:1.541333pt;}
.ls57{letter-spacing:1.586667pt;}
.ls41{letter-spacing:1.653333pt;}
.ls24{letter-spacing:1.706667pt;}
.ls3c{letter-spacing:1.760000pt;}
.ls30{letter-spacing:1.904462pt;}
.ls69{letter-spacing:1.949333pt;}
.ls12{letter-spacing:3.546667pt;}
.ls32{letter-spacing:11.842960pt;}
.ws54{word-spacing:-14.666667pt;}
.ws75{word-spacing:-14.080000pt;}
.ws55{word-spacing:-14.026667pt;}
.ws3d{word-spacing:-13.973333pt;}
.ws1c{word-spacing:-13.866667pt;}
.ws1d{word-spacing:-13.600000pt;}
.ws7f{word-spacing:-13.386667pt;}
.ws7{word-spacing:-13.333333pt;}
.ws83{word-spacing:-13.184000pt;}
.ws6{word-spacing:-12.928000pt;}
.ws80{word-spacing:-11.560000pt;}
.ws82{word-spacing:-11.424000pt;}
.ws56{word-spacing:-11.333333pt;}
.ws1b{word-spacing:-11.088000pt;}
.ws2{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.986667pt;}
.ws58{word-spacing:-10.381333pt;}
.ws5{word-spacing:-10.240000pt;}
.ws1{word-spacing:-8.885333pt;}
.ws81{word-spacing:-8.840000pt;}
.ws0{word-spacing:-8.362667pt;}
.ws8{word-spacing:-7.933333pt;}
.ws3{word-spacing:-7.728000pt;}
.ws47{word-spacing:-6.666667pt;}
.ws68{word-spacing:-5.666667pt;}
.wsa{word-spacing:-3.546667pt;}
.ws74{word-spacing:-1.386667pt;}
.wsc{word-spacing:-1.333333pt;}
.ws38{word-spacing:-1.280000pt;}
.ws66{word-spacing:-1.226667pt;}
.ws41{word-spacing:-1.173333pt;}
.ws87{word-spacing:-1.133333pt;}
.ws7d{word-spacing:-1.120000pt;}
.ws65{word-spacing:-1.013333pt;}
.wsa5{word-spacing:-0.997333pt;}
.ws2d{word-spacing:-0.960000pt;}
.ws8f{word-spacing:-0.952000pt;}
.ws4b{word-spacing:-0.906667pt;}
.ws8d{word-spacing:-0.861333pt;}
.ws77{word-spacing:-0.853333pt;}
.ws13{word-spacing:-0.800000pt;}
.ws78{word-spacing:-0.746667pt;}
.ws62{word-spacing:-0.693333pt;}
.ws90{word-spacing:-0.680000pt;}
.ws10{word-spacing:-0.640000pt;}
.ws91{word-spacing:-0.634667pt;}
.ws71{word-spacing:-0.586667pt;}
.ws18{word-spacing:-0.544000pt;}
.wsd{word-spacing:-0.533333pt;}
.wsb7{word-spacing:-0.498667pt;}
.ws73{word-spacing:-0.480000pt;}
.wsb2{word-spacing:-0.453333pt;}
.ws43{word-spacing:-0.426667pt;}
.wsb0{word-spacing:-0.408000pt;}
.ws32{word-spacing:-0.373333pt;}
.wsb3{word-spacing:-0.362667pt;}
.ws1f{word-spacing:-0.320000pt;}
.ws8c{word-spacing:-0.317333pt;}
.ws8b{word-spacing:-0.272000pt;}
.ws30{word-spacing:-0.266667pt;}
.ws8a{word-spacing:-0.234667pt;}
.ws19{word-spacing:-0.226667pt;}
.ws2e{word-spacing:-0.213333pt;}
.ws15{word-spacing:-0.160000pt;}
.ws33{word-spacing:-0.106667pt;}
.ws3e{word-spacing:-0.053347pt;}
.ws3c{word-spacing:-0.053333pt;}
.wsa6{word-spacing:-0.045333pt;}
.ws9{word-spacing:0.000000pt;}
.ws20{word-spacing:0.053333pt;}
.ws95{word-spacing:0.090667pt;}
.wsaf{word-spacing:0.136000pt;}
.ws5e{word-spacing:0.160000pt;}
.ws16{word-spacing:0.213333pt;}
.ws27{word-spacing:0.266667pt;}
.ws97{word-spacing:0.272000pt;}
.ws96{word-spacing:0.317333pt;}
.ws2f{word-spacing:0.320000pt;}
.ws9e{word-spacing:0.362667pt;}
.ws4a{word-spacing:0.373333pt;}
.ws31{word-spacing:0.426667pt;}
.wsb5{word-spacing:0.453333pt;}
.ws4e{word-spacing:0.533333pt;}
.wsb6{word-spacing:0.544000pt;}
.ws49{word-spacing:0.586667pt;}
.wsac{word-spacing:0.589333pt;}
.ws36{word-spacing:0.640000pt;}
.ws23{word-spacing:0.693333pt;}
.ws5d{word-spacing:0.800000pt;}
.wsf{word-spacing:0.853333pt;}
.ws88{word-spacing:0.861333pt;}
.ws3b{word-spacing:0.906667pt;}
.ws9b{word-spacing:0.952000pt;}
.ws2c{word-spacing:0.960000pt;}
.ws8e{word-spacing:1.042667pt;}
.ws11{word-spacing:1.066667pt;}
.ws72{word-spacing:1.120000pt;}
.ws89{word-spacing:1.133333pt;}
.wse{word-spacing:1.173333pt;}
.wsad{word-spacing:1.224000pt;}
.wsa1{word-spacing:1.269333pt;}
.ws4f{word-spacing:1.280000pt;}
.wsae{word-spacing:1.314667pt;}
.wsb{word-spacing:1.333333pt;}
.ws1e{word-spacing:1.386667pt;}
.ws9d{word-spacing:1.405333pt;}
.ws28{word-spacing:1.440000pt;}
.ws40{word-spacing:1.493333pt;}
.ws14{word-spacing:1.600000pt;}
.wsa8{word-spacing:1.632000pt;}
.ws52{word-spacing:1.653333pt;}
.ws98{word-spacing:1.677333pt;}
.ws60{word-spacing:1.706667pt;}
.ws2b{word-spacing:1.760000pt;}
.wsb8{word-spacing:1.768000pt;}
.ws4d{word-spacing:1.813333pt;}
.ws5c{word-spacing:1.866667pt;}
.ws25{word-spacing:1.920000pt;}
.ws12{word-spacing:1.973333pt;}
.ws45{word-spacing:2.026667pt;}
.wsaa{word-spacing:2.040000pt;}
.ws5f{word-spacing:2.080000pt;}
.ws21{word-spacing:2.133333pt;}
.wsa7{word-spacing:2.176000pt;}
.ws4c{word-spacing:2.186667pt;}
.wsb9{word-spacing:2.221333pt;}
.ws99{word-spacing:2.266667pt;}
.ws76{word-spacing:2.293333pt;}
.ws92{word-spacing:2.312000pt;}
.ws26{word-spacing:2.346667pt;}
.wsb1{word-spacing:2.357333pt;}
.ws34{word-spacing:2.400000pt;}
.ws84{word-spacing:2.453333pt;}
.ws24{word-spacing:2.613333pt;}
.ws35{word-spacing:2.666667pt;}
.ws3a{word-spacing:2.773333pt;}
.ws53{word-spacing:2.826667pt;}
.ws22{word-spacing:2.880000pt;}
.ws29{word-spacing:2.933333pt;}
.ws9c{word-spacing:2.946667pt;}
.ws7b{word-spacing:3.040000pt;}
.ws70{word-spacing:3.093333pt;}
.ws63{word-spacing:3.146667pt;}
.ws48{word-spacing:3.200000pt;}
.ws64{word-spacing:3.413333pt;}
.ws2a{word-spacing:3.466667pt;}
.ws37{word-spacing:3.520000pt;}
.ws7c{word-spacing:3.573333pt;}
.ws7a{word-spacing:3.626667pt;}
.ws9f{word-spacing:3.717333pt;}
.ws17{word-spacing:3.733333pt;}
.ws5b{word-spacing:3.840000pt;}
.wsa0{word-spacing:3.853333pt;}
.ws44{word-spacing:3.893333pt;}
.wsb4{word-spacing:3.898667pt;}
.ws42{word-spacing:3.946667pt;}
.ws85{word-spacing:3.989333pt;}
.ws79{word-spacing:4.000000pt;}
.wsa9{word-spacing:4.080000pt;}
.ws51{word-spacing:4.213333pt;}
.ws9a{word-spacing:4.306667pt;}
.ws3f{word-spacing:4.426667pt;}
.ws7e{word-spacing:4.533333pt;}
.ws61{word-spacing:4.800000pt;}
.ws86{word-spacing:5.168000pt;}
.wsa2{word-spacing:5.213333pt;}
.ws50{word-spacing:5.546667pt;}
.ws46{word-spacing:5.600000pt;}
.ws93{word-spacing:5.666667pt;}
.wsa3{word-spacing:5.893333pt;}
.wsab{word-spacing:6.029333pt;}
.ws94{word-spacing:6.210667pt;}
.ws39{word-spacing:6.453333pt;}
.wsa4{word-spacing:7.978667pt;}
.wsba{word-spacing:12.013333pt;}
.ws67{word-spacing:15.186667pt;}
.wsbb{word-spacing:15.640000pt;}
.ws6a{word-spacing:23.392000pt;}
.ws6c{word-spacing:54.445333pt;}
.ws1a{word-spacing:64.237333pt;}
.ws59{word-spacing:352.648000pt;}
.ws5a{word-spacing:357.317314pt;}
.ws57{word-spacing:365.341333pt;}
.ws69{word-spacing:654.114644pt;}
.ws6f{word-spacing:1417.754591pt;}
.ws6e{word-spacing:1459.601791pt;}
.ws6d{word-spacing:1470.613257pt;}
.ws6b{word-spacing:1526.871924pt;}
._b{margin-left:-2455.842667pt;}
._48{margin-left:-17.952000pt;}
._46{margin-left:-16.864000pt;}
._7{margin-left:-14.733333pt;}
._4b{margin-left:-13.781333pt;}
._43{margin-left:-12.829333pt;}
._4a{margin-left:-11.832000pt;}
._45{margin-left:-10.381333pt;}
._11{margin-left:-9.066673pt;}
._6{margin-left:-7.840000pt;}
._12{margin-left:-6.829892pt;}
._5{margin-left:-5.280000pt;}
._e{margin-left:-4.373333pt;}
._3{margin-left:-2.604802pt;}
._0{margin-left:-1.450667pt;}
._4{width:1.008000pt;}
._1{width:2.030933pt;}
._d{width:3.138136pt;}
._13{width:4.533333pt;}
._38{width:6.800000pt;}
._3e{width:7.888000pt;}
._40{width:9.384000pt;}
._3a{width:10.970657pt;}
._39{width:12.693333pt;}
._f{width:13.872000pt;}
._49{width:14.778667pt;}
._8{width:16.320000pt;}
._47{width:18.473333pt;}
._44{width:20.128000pt;}
._3c{width:21.624000pt;}
._41{width:22.621333pt;}
._3d{width:23.709333pt;}
._3f{width:24.616000pt;}
._42{width:25.658667pt;}
._3b{width:26.565333pt;}
._31{width:34.725333pt;}
._2{width:36.055449pt;}
._16{width:46.330667pt;}
._9{width:48.552000pt;}
._27{width:57.392000pt;}
._2d{width:65.778667pt;}
._15{width:68.997333pt;}
._2a{width:80.058667pt;}
._c{width:87.312000pt;}
._1a{width:91.664000pt;}
._19{width:114.330667pt;}
._25{width:136.589333pt;}
._28{width:159.528000pt;}
._33{width:189.311978pt;}
._2c{width:216.194667pt;}
._1e{width:276.170648pt;}
._14{width:281.359450pt;}
._17{width:339.183981pt;}
._1f{width:354.391450pt;}
._1d{width:374.453314pt;}
._1c{width:376.991981pt;}
._1b{width:392.087981pt;}
._18{width:407.183981pt;}
._30{width:430.666644pt;}
._32{width:473.506644pt;}
._29{width:503.381333pt;}
._2e{width:508.413333pt;}
._24{width:592.098644pt;}
._23{width:595.679978pt;}
._2f{width:600.666644pt;}
._34{width:629.770667pt;}
._2b{width:643.551978pt;}
._26{width:651.188780pt;}
._20{width:789.162642pt;}
._21{width:862.149309pt;}
._22{width:879.829309pt;}
._36{width:880.896000pt;}
._35{width:1100.874667pt;}
._37{width:1120.776000pt;}
._10{width:1476.958986pt;}
._a{width:1667.178667pt;}
.fs7{font-size:31.733332pt;}
.fs5{font-size:37.333333pt;}
.fsa{font-size:37.342400pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:45.333333pt;}
.fs2{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs9{font-size:53.346664pt;}
.fs8{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.yda{bottom:-0.049072pt;}
.y0{bottom:0.000000pt;}
.yd6{bottom:14.626790pt;}
.yd8{bottom:31.666382pt;}
.y1{bottom:61.181335pt;}
.y3d{bottom:100.400267pt;}
.y6e{bottom:100.813599pt;}
.yee{bottom:101.052287pt;}
.yd4{bottom:101.450806pt;}
.y187{bottom:101.461605pt;}
.y7a{bottom:101.590932pt;}
.y1bf{bottom:101.626928pt;}
.ya9{bottom:101.986938pt;}
.y16d{bottom:102.110921pt;}
.y128{bottom:102.110942pt;}
.y3c{bottom:113.728267pt;}
.y186{bottom:114.789605pt;}
.y1be{bottom:114.954928pt;}
.y2c{bottom:116.187866pt;}
.y6d{bottom:117.480265pt;}
.yed{bottom:117.718953pt;}
.yd3{bottom:118.117472pt;}
.ya8{bottom:118.653605pt;}
.y16c{bottom:118.777588pt;}
.y127{bottom:118.777608pt;}
.y3b{bottom:127.056267pt;}
.y185{bottom:128.117605pt;}
.y1bd{bottom:128.282928pt;}
.y2b{bottom:132.854533pt;}
.y6c{bottom:134.146932pt;}
.yec{bottom:134.385620pt;}
.yd2{bottom:134.784139pt;}
.ya7{bottom:135.320272pt;}
.y16b{bottom:135.444255pt;}
.y126{bottom:135.444275pt;}
.y1bc{bottom:141.610928pt;}
.y3a{bottom:144.917603pt;}
.y2a{bottom:149.521200pt;}
.y6b{bottom:150.813599pt;}
.yeb{bottom:151.052287pt;}
.yd1{bottom:151.450806pt;}
.ya6{bottom:151.986938pt;}
.y16a{bottom:152.110921pt;}
.y125{bottom:152.110942pt;}
.y1bb{bottom:154.938928pt;}
.y39{bottom:160.436936pt;}
.y29{bottom:166.187866pt;}
.y6a{bottom:167.480265pt;}
.yea{bottom:167.718953pt;}
.yd0{bottom:168.117472pt;}
.y1ba{bottom:168.266928pt;}
.ya5{bottom:168.653605pt;}
.y169{bottom:168.777588pt;}
.y124{bottom:168.777608pt;}
.y184{bottom:171.450928pt;}
.y38{bottom:173.764936pt;}
.y1b9{bottom:181.594928pt;}
.y28{bottom:182.854533pt;}
.y69{bottom:184.146932pt;}
.ye9{bottom:184.385620pt;}
.ycf{bottom:184.784139pt;}
.ya4{bottom:185.320272pt;}
.y168{bottom:185.444255pt;}
.y123{bottom:185.444275pt;}
.y183{bottom:188.117594pt;}
.y37{bottom:191.626261pt;}
.y1b8{bottom:194.922928pt;}
.y27{bottom:199.521200pt;}
.y68{bottom:200.813599pt;}
.ye8{bottom:201.052287pt;}
.yce{bottom:201.450806pt;}
.ya3{bottom:201.986938pt;}
.y167{bottom:202.110921pt;}
.y122{bottom:202.110942pt;}
.y182{bottom:204.784261pt;}
.y36{bottom:207.145595pt;}
.y1b7{bottom:208.250928pt;}
.y26{bottom:216.187866pt;}
.y67{bottom:217.480265pt;}
.ye7{bottom:217.718953pt;}
.ycd{bottom:218.117472pt;}
.ya2{bottom:218.653605pt;}
.y166{bottom:218.777588pt;}
.y121{bottom:218.777608pt;}
.y35{bottom:220.473595pt;}
.y181{bottom:221.450928pt;}
.y1b6{bottom:221.578928pt;}
.y25{bottom:232.854533pt;}
.y66{bottom:234.146932pt;}
.ye6{bottom:234.385620pt;}
.ycc{bottom:234.784139pt;}
.y1b5{bottom:234.906928pt;}
.ya1{bottom:235.320272pt;}
.y165{bottom:235.444255pt;}
.y120{bottom:235.444275pt;}
.y180{bottom:238.117594pt;}
.y34{bottom:238.334941pt;}
.y1b4{bottom:248.234928pt;}
.y24{bottom:249.521200pt;}
.y1f6{bottom:250.265620pt;}
.y65{bottom:250.813599pt;}
.ye5{bottom:251.052287pt;}
.ycb{bottom:251.450806pt;}
.ya0{bottom:251.986938pt;}
.y164{bottom:252.110921pt;}
.y11f{bottom:252.110942pt;}
.y17f{bottom:254.784261pt;}
.y33{bottom:260.579353pt;}
.y1b3{bottom:261.562928pt;}
.y1f5{bottom:263.593620pt;}
.y23{bottom:266.187866pt;}
.y64{bottom:267.480265pt;}
.ye4{bottom:267.718953pt;}
.yca{bottom:268.117472pt;}
.y9f{bottom:268.653605pt;}
.y163{bottom:268.777588pt;}
.y11e{bottom:268.777608pt;}
.y17e{bottom:271.450928pt;}
.y32{bottom:273.907353pt;}
.y1b2{bottom:274.890928pt;}
.y1f4{bottom:276.921620pt;}
.y22{bottom:282.854533pt;}
.y63{bottom:284.146932pt;}
.ye3{bottom:284.385620pt;}
.yc9{bottom:284.784139pt;}
.y9e{bottom:285.320272pt;}
.y162{bottom:285.444255pt;}
.y11d{bottom:285.444275pt;}
.y17d{bottom:288.117594pt;}
.y1b1{bottom:288.218928pt;}
.y1f3{bottom:290.249620pt;}
.y21{bottom:299.521200pt;}
.y62{bottom:300.813599pt;}
.ye2{bottom:301.052287pt;}
.y31{bottom:301.300020pt;}
.yc8{bottom:301.450806pt;}
.y1b0{bottom:301.546928pt;}
.y9d{bottom:301.986938pt;}
.y161{bottom:302.110921pt;}
.y11c{bottom:302.110942pt;}
.y1f2{bottom:303.577620pt;}
.y17c{bottom:304.784261pt;}
.y30{bottom:314.628020pt;}
.y1af{bottom:314.874928pt;}
.y20{bottom:316.187866pt;}
.y1f1{bottom:316.905620pt;}
.y61{bottom:317.480265pt;}
.ye1{bottom:317.718953pt;}
.y9c{bottom:318.653605pt;}
.y160{bottom:318.777588pt;}
.y11b{bottom:318.777608pt;}
.y17b{bottom:321.450928pt;}
.y2f{bottom:327.956020pt;}
.y1ae{bottom:328.202928pt;}
.y1f0{bottom:330.233620pt;}
.y226{bottom:330.426281pt;}
.y1f{bottom:332.854533pt;}
.y60{bottom:334.146932pt;}
.ye0{bottom:334.385620pt;}
.yc7{bottom:334.784139pt;}
.y9b{bottom:335.320272pt;}
.y15f{bottom:335.444255pt;}
.y2e{bottom:341.284020pt;}
.y1ad{bottom:341.530928pt;}
.y1ef{bottom:343.561620pt;}
.y225{bottom:343.754281pt;}
.y1e{bottom:349.521200pt;}
.y5f{bottom:350.813599pt;}
.ydf{bottom:351.052287pt;}
.y9a{bottom:351.986938pt;}
.y15e{bottom:352.110921pt;}
.y2d{bottom:354.612020pt;}
.y17a{bottom:354.784261pt;}
.y1ac{bottom:354.858928pt;}
.y1ee{bottom:356.889620pt;}
.y1d{bottom:366.187866pt;}
.y14f{bottom:366.388246pt;}
.y5e{bottom:367.480265pt;}
.yde{bottom:367.718953pt;}
.yc6{bottom:368.117472pt;}
.y1ab{bottom:368.186928pt;}
.y99{bottom:368.653605pt;}
.y15d{bottom:368.777588pt;}
.y1ed{bottom:370.217620pt;}
.y224{bottom:370.500946pt;}
.y1aa{bottom:381.514928pt;}
.y1c{bottom:382.854533pt;}
.y14e{bottom:383.093579pt;}
.y1ec{bottom:383.545620pt;}
.y223{bottom:383.828946pt;}
.ydd{bottom:384.385620pt;}
.y98{bottom:385.320272pt;}
.y15c{bottom:385.444255pt;}
.y1a9{bottom:394.842928pt;}
.y1eb{bottom:396.873620pt;}
.y222{bottom:397.156946pt;}
.y1b{bottom:399.521200pt;}
.y14d{bottom:399.730913pt;}
.y5d{bottom:400.813599pt;}
.ydc{bottom:401.052287pt;}
.y97{bottom:401.986938pt;}
.y16f{bottom:402.110921pt;}
.y1a8{bottom:408.170928pt;}
.y1ea{bottom:410.201620pt;}
.y221{bottom:410.484946pt;}
.y14c{bottom:416.368246pt;}
.y179{bottom:418.653564pt;}
.y96{bottom:418.653605pt;}
.y15b{bottom:418.777588pt;}
.yc5{bottom:420.352116pt;}
.y1a7{bottom:421.498928pt;}
.y1e9{bottom:423.529620pt;}
.y220{bottom:423.812946pt;}
.y1a{bottom:432.854533pt;}
.y14b{bottom:433.005579pt;}
.y5c{bottom:434.146932pt;}
.y79{bottom:434.146973pt;}
.ydb{bottom:434.385620pt;}
.y1a6{bottom:434.826928pt;}
.y178{bottom:435.320231pt;}
.y95{bottom:435.320272pt;}
.y16e{bottom:435.444255pt;}
.y1e8{bottom:436.857620pt;}
.yc4{bottom:437.018783pt;}
.y21f{bottom:437.140946pt;}
.y1a5{bottom:448.154928pt;}
.y14a{bottom:449.642913pt;}
.y1e7{bottom:450.185620pt;}
.y21e{bottom:450.468946pt;}
.y5b{bottom:450.813599pt;}
.y78{bottom:450.813639pt;}
.y177{bottom:451.986898pt;}
.y94{bottom:451.986938pt;}
.y15a{bottom:452.110921pt;}
.yc3{bottom:453.685449pt;}
.y1a4{bottom:461.482928pt;}
.y1e6{bottom:463.513620pt;}
.y21d{bottom:463.796946pt;}
.y149{bottom:466.280246pt;}
.y5a{bottom:467.480265pt;}
.y77{bottom:467.480306pt;}
.y176{bottom:468.653564pt;}
.y93{bottom:468.653605pt;}
.y159{bottom:468.777588pt;}
.y1a3{bottom:474.810928pt;}
.y1e5{bottom:476.841620pt;}
.y21c{bottom:477.124946pt;}
.yd5{bottom:478.685343pt;}
.y19{bottom:482.854574pt;}
.y148{bottom:482.917579pt;}
.y59{bottom:484.146932pt;}
.y76{bottom:484.146973pt;}
.y175{bottom:485.320231pt;}
.y92{bottom:485.320272pt;}
.y158{bottom:485.444255pt;}
.y1a2{bottom:488.138928pt;}
.y1e4{bottom:490.169620pt;}
.y21b{bottom:490.452946pt;}
.y11a{bottom:491.924021pt;}
.yd7{bottom:493.312133pt;}
.y147{bottom:499.554913pt;}
.y75{bottom:500.813639pt;}
.y1a1{bottom:501.466928pt;}
.y174{bottom:501.986898pt;}
.yfc{bottom:501.986938pt;}
.y157{bottom:502.110921pt;}
.y1e3{bottom:503.497620pt;}
.y21a{bottom:503.780946pt;}
.yd9{bottom:505.468018pt;}
.y119{bottom:508.629355pt;}
.y1a0{bottom:514.794928pt;}
.y18{bottom:516.187907pt;}
.y146{bottom:516.192246pt;}
.y1e2{bottom:516.825620pt;}
.y219{bottom:517.108946pt;}
.y58{bottom:517.480265pt;}
.y74{bottom:517.480306pt;}
.y173{bottom:518.653564pt;}
.y91{bottom:518.653605pt;}
.y156{bottom:518.777588pt;}
.y118{bottom:525.266688pt;}
.y19f{bottom:528.122928pt;}
.y1e1{bottom:530.153620pt;}
.y218{bottom:530.436946pt;}
.y145{bottom:532.829579pt;}
.y17{bottom:532.854574pt;}
.yc2{bottom:533.085449pt;}
.y73{bottom:534.146973pt;}
.y172{bottom:535.320231pt;}
.y155{bottom:535.444255pt;}
.y19e{bottom:541.450928pt;}
.y117{bottom:541.904021pt;}
.y1e0{bottom:543.481620pt;}
.y217{bottom:543.764946pt;}
.y144{bottom:549.466913pt;}
.y16{bottom:549.521240pt;}
.yc1{bottom:549.752116pt;}
.y72{bottom:550.813639pt;}
.y171{bottom:551.986898pt;}
.yfb{bottom:551.986938pt;}
.y154{bottom:552.110921pt;}
.y1df{bottom:556.809620pt;}
.y216{bottom:557.092946pt;}
.y116{bottom:558.541355pt;}
.y143{bottom:566.104246pt;}
.y15{bottom:566.187907pt;}
.yc0{bottom:566.418783pt;}
.y57{bottom:567.480306pt;}
.y90{bottom:568.653564pt;}
.y153{bottom:568.777588pt;}
.y1de{bottom:570.137620pt;}
.y215{bottom:570.420946pt;}
.y19d{bottom:571.450928pt;}
.y115{bottom:575.178688pt;}
.y142{bottom:582.741579pt;}
.y14{bottom:582.854574pt;}
.ybf{bottom:583.085449pt;}
.y1dd{bottom:583.465620pt;}
.y214{bottom:583.748946pt;}
.y56{bottom:584.146973pt;}
.y8f{bottom:585.320231pt;}
.y152{bottom:585.444255pt;}
.y114{bottom:591.816021pt;}
.y1dc{bottom:596.793620pt;}
.y213{bottom:597.076946pt;}
.y141{bottom:599.378913pt;}
.y13{bottom:599.521240pt;}
.ybe{bottom:599.752116pt;}
.y55{bottom:600.813639pt;}
.y8e{bottom:601.986898pt;}
.y151{bottom:602.110921pt;}
.y113{bottom:608.453355pt;}
.y1db{bottom:610.121620pt;}
.y212{bottom:610.404946pt;}
.y140{bottom:616.016246pt;}
.y12{bottom:616.187907pt;}
.ybd{bottom:616.418783pt;}
.y54{bottom:617.480306pt;}
.y8d{bottom:618.653564pt;}
.y150{bottom:618.777588pt;}
.y1da{bottom:623.449620pt;}
.y211{bottom:623.732946pt;}
.y112{bottom:625.090688pt;}
.y19c{bottom:626.584967pt;}
.y13f{bottom:632.653579pt;}
.y11{bottom:632.854574pt;}
.ybc{bottom:633.085449pt;}
.y53{bottom:634.146973pt;}
.y8c{bottom:635.320231pt;}
.y1d9{bottom:636.777620pt;}
.y210{bottom:637.060946pt;}
.y19b{bottom:639.912967pt;}
.y111{bottom:641.728021pt;}
.y13e{bottom:649.290913pt;}
.y10{bottom:649.521240pt;}
.ybb{bottom:649.752116pt;}
.y1d8{bottom:650.105620pt;}
.y20f{bottom:650.388946pt;}
.y52{bottom:650.813639pt;}
.y8b{bottom:651.986898pt;}
.y19a{bottom:653.240967pt;}
.y110{bottom:658.365355pt;}
.y13d{bottom:662.618913pt;}
.y1d7{bottom:663.433620pt;}
.y20e{bottom:663.716946pt;}
.yf{bottom:666.187907pt;}
.yba{bottom:666.418783pt;}
.y199{bottom:666.568967pt;}
.y51{bottom:667.480306pt;}
.y8a{bottom:668.653564pt;}
.y10f{bottom:675.002688pt;}
.y1d6{bottom:676.761620pt;}
.y20d{bottom:677.044946pt;}
.y13c{bottom:679.256246pt;}
.y198{bottom:679.896967pt;}
.ye{bottom:682.854574pt;}
.yb9{bottom:683.085449pt;}
.y50{bottom:684.146973pt;}
.y89{bottom:685.320231pt;}
.y1d5{bottom:690.089620pt;}
.y20c{bottom:690.372946pt;}
.y10e{bottom:691.640021pt;}
.y197{bottom:693.224967pt;}
.y13b{bottom:695.893579pt;}
.yd{bottom:699.521240pt;}
.yb8{bottom:699.752116pt;}
.y4f{bottom:700.813639pt;}
.y88{bottom:701.986898pt;}
.y1d4{bottom:703.417620pt;}
.y20b{bottom:703.700946pt;}
.y196{bottom:706.552967pt;}
.y10d{bottom:708.277355pt;}
.y13a{bottom:712.530913pt;}
.yc{bottom:716.187907pt;}
.yb7{bottom:716.418783pt;}
.y1d3{bottom:716.745620pt;}
.y20a{bottom:717.028946pt;}
.y4e{bottom:717.480306pt;}
.y87{bottom:718.653564pt;}
.y195{bottom:719.880967pt;}
.y10c{bottom:724.914688pt;}
.y139{bottom:729.168246pt;}
.y1d2{bottom:730.073620pt;}
.y209{bottom:730.356946pt;}
.yb{bottom:732.854574pt;}
.yb6{bottom:733.085449pt;}
.y194{bottom:733.208967pt;}
.y4d{bottom:734.146973pt;}
.y86{bottom:735.320231pt;}
.y10b{bottom:741.552021pt;}
.y1d1{bottom:743.401620pt;}
.y208{bottom:743.684946pt;}
.y138{bottom:745.805579pt;}
.y193{bottom:746.536967pt;}
.ya{bottom:749.521240pt;}
.yb5{bottom:749.752116pt;}
.y4c{bottom:750.813639pt;}
.yfa{bottom:751.986898pt;}
.y1d0{bottom:756.729620pt;}
.y207{bottom:757.012946pt;}
.y10a{bottom:758.189355pt;}
.y192{bottom:759.864967pt;}
.y137{bottom:762.442913pt;}
.yb4{bottom:766.418783pt;}
.y4b{bottom:767.480306pt;}
.y85{bottom:768.653564pt;}
.y1cf{bottom:770.057620pt;}
.y206{bottom:770.340946pt;}
.y109{bottom:771.517355pt;}
.y191{bottom:773.192967pt;}
.y136{bottom:779.080246pt;}
.yb3{bottom:783.085449pt;}
.y1ce{bottom:783.385620pt;}
.y205{bottom:783.668946pt;}
.y4a{bottom:784.146973pt;}
.yf9{bottom:785.320231pt;}
.y108{bottom:788.154688pt;}
.y9{bottom:788.794803pt;}
.y135{bottom:795.717579pt;}
.y1cd{bottom:796.713620pt;}
.y204{bottom:796.996946pt;}
.yb2{bottom:799.752116pt;}
.y49{bottom:800.813639pt;}
.y107{bottom:801.482688pt;}
.y170{bottom:801.986898pt;}
.y8{bottom:802.122803pt;}
.y190{bottom:806.512967pt;}
.y134{bottom:809.045579pt;}
.y1cc{bottom:810.041620pt;}
.y203{bottom:810.324946pt;}
.yb1{bottom:816.418783pt;}
.y48{bottom:817.480306pt;}
.y106{bottom:818.120021pt;}
.yf8{bottom:818.652283pt;}
.y84{bottom:818.653564pt;}
.y18f{bottom:819.840967pt;}
.y1cb{bottom:823.369620pt;}
.y202{bottom:823.652946pt;}
.y133{bottom:825.682913pt;}
.yb0{bottom:833.085449pt;}
.y47{bottom:834.146973pt;}
.y105{bottom:834.757355pt;}
.yf7{bottom:835.318949pt;}
.y83{bottom:835.320231pt;}
.y1ca{bottom:836.697620pt;}
.y201{bottom:836.980946pt;}
.y7{bottom:839.989502pt;}
.y132{bottom:842.320246pt;}
.y18e{bottom:846.508301pt;}
.yaf{bottom:849.752116pt;}
.y1c9{bottom:850.025620pt;}
.y200{bottom:850.308946pt;}
.y46{bottom:850.813639pt;}
.y104{bottom:851.394688pt;}
.yf6{bottom:851.985616pt;}
.y82{bottom:851.986898pt;}
.y6{bottom:856.656169pt;}
.y131{bottom:858.957579pt;}
.y1c8{bottom:863.353620pt;}
.y1ff{bottom:863.636946pt;}
.yae{bottom:866.418783pt;}
.y45{bottom:867.480306pt;}
.y103{bottom:868.032021pt;}
.yf5{bottom:868.652283pt;}
.y81{bottom:868.653564pt;}
.y18d{bottom:873.174967pt;}
.y130{bottom:875.594913pt;}
.y1c7{bottom:876.681620pt;}
.y1fe{bottom:876.964946pt;}
.y102{bottom:881.360021pt;}
.y44{bottom:884.146973pt;}
.yf4{bottom:885.318949pt;}
.y80{bottom:885.320231pt;}
.y1c6{bottom:890.009620pt;}
.y1fd{bottom:890.292946pt;}
.y12f{bottom:892.232246pt;}
.y5{bottom:896.377441pt;}
.yad{bottom:899.752116pt;}
.y43{bottom:900.813639pt;}
.yf3{bottom:901.985616pt;}
.y7f{bottom:901.986898pt;}
.y18c{bottom:903.204284pt;}
.y1c5{bottom:903.337620pt;}
.y1fc{bottom:903.620946pt;}
.y101{bottom:906.327355pt;}
.y12e{bottom:908.869579pt;}
.y12a{bottom:915.668306pt;}
.y18b{bottom:916.532284pt;}
.y1c4{bottom:916.665620pt;}
.y1fb{bottom:916.948946pt;}
.y42{bottom:917.480306pt;}
.yf2{bottom:918.652283pt;}
.y7e{bottom:918.653564pt;}
.y100{bottom:919.655355pt;}
.y12d{bottom:925.506913pt;}
.y129{bottom:928.996306pt;}
.y1c3{bottom:929.993620pt;}
.y1fa{bottom:930.276946pt;}
.y71{bottom:934.146932pt;}
.y41{bottom:934.146973pt;}
.yf1{bottom:935.318949pt;}
.y7d{bottom:935.320231pt;}
.yac{bottom:935.320272pt;}
.yff{bottom:942.324306pt;}
.y18a{bottom:943.199617pt;}
.y1c2{bottom:943.321620pt;}
.y1f9{bottom:943.604946pt;}
.y12c{bottom:950.474246pt;}
.y70{bottom:950.813599pt;}
.y40{bottom:950.813639pt;}
.yf0{bottom:951.985616pt;}
.y7c{bottom:951.986898pt;}
.yab{bottom:951.986938pt;}
.yfe{bottom:955.652306pt;}
.y189{bottom:956.527617pt;}
.y4{bottom:956.561849pt;}
.y1c1{bottom:956.649620pt;}
.y1f8{bottom:956.932946pt;}
.y12b{bottom:963.802246pt;}
.y6f{bottom:967.480265pt;}
.y3f{bottom:967.480306pt;}
.yef{bottom:968.652283pt;}
.y7b{bottom:968.653564pt;}
.yaa{bottom:968.653605pt;}
.yfd{bottom:968.980306pt;}
.y188{bottom:969.855617pt;}
.y1c0{bottom:969.977620pt;}
.y1f7{bottom:970.260946pt;}
.y3{bottom:986.299161pt;}
.y2{bottom:1001.406494pt;}
.y3e{bottom:1002.206543pt;}
.h15{height:3.520880pt;}
.hd{height:22.403733pt;}
.h14{height:25.504859pt;}
.h17{height:29.602667pt;}
.hb{height:32.005333pt;}
.hc{height:32.760417pt;}
.h13{height:36.062345pt;}
.h12{height:36.435772pt;}
.h2{height:37.376000pt;}
.h8{height:37.653333pt;}
.h11{height:37.733332pt;}
.h3{height:39.712000pt;}
.h10{height:39.712651pt;}
.hf{height:40.165333pt;}
.h9{height:47.253333pt;}
.h16{height:47.690667pt;}
.h4{height:49.298667pt;}
.he{height:52.448000pt;}
.h7{height:52.746667pt;}
.h6{height:57.658667pt;}
.ha{height:63.296000pt;}
.h5{height:75.605333pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w2{width:259.214661pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:63.419474pt;}
.x2{left:68.031469pt;}
.x10{left:72.036791pt;}
.x3{left:75.717199pt;}
.x6{left:83.151469pt;}
.x5{left:86.929867pt;}
.x18{left:90.708669pt;}
.xc{left:172.595459pt;}
.xd{left:180.440125pt;}
.x14{left:238.101738pt;}
.x15{left:242.102405pt;}
.xe{left:253.370125pt;}
.xf{left:320.633458pt;}
.x4{left:408.189087pt;}
.x7{left:423.311469pt;}
.x11{left:424.716390pt;}
.x17{left:430.866924pt;}
.x8{left:457.471476pt;}
.x9{left:470.311605pt;}
.xb{left:489.763753pt;}
.x12{left:573.307723pt;}
.x1{left:647.307210pt;}
.x16{left:657.491720pt;}
.x13{left:699.493055pt;}
}




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