
    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_8520f4ec0169202e84e21af0.woff')format("woff");}.ff1{font-family:ff1;line-height:0.998000;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_e200191727a98bd5137576f6.woff')format("woff");}.ff2{font-family:ff2;line-height:0.944000;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_c64b143e34e7e42ecdfb46f3.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_6268b818e646ea45a47b8a3a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.100000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e0febd9ee910e1cc225da1aa.woff')format("woff");}.ff5{font-family:ff5;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c9d445071650aa2aa630bd8f.woff')format("woff");}.ff6{font-family:ff6;line-height:0.934000;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_cffb4b6c6dbbf354c748fc39.woff')format("woff");}.ff7{font-family:ff7;line-height:1.023000;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_62e5c0807f45b045c5d7d754.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_edcf8d3ba116031f97868b94.woff')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_49a1432a9f588e8d80cad8bc.woff')format("woff");}.ffa{font-family:ffa;line-height:0.702148;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_edcf8d3ba116031f97868b94.woff')format("woff");}.ffb{font-family:ffb;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_2c4244d08f6de81ff3a0aac6.woff')format("woff");}.ffc{font-family:ffc;line-height:0.765625;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-6.192000px;}
.v0{vertical-align:0.000000px;}
.ls29{letter-spacing:-4.824000px;}
.ls31{letter-spacing:-3.600000px;}
.ls2e{letter-spacing:-2.448000px;}
.ls36{letter-spacing:-1.800000px;}
.ls48{letter-spacing:-1.512000px;}
.ls6d{letter-spacing:-1.500000px;}
.ls4a{letter-spacing:-1.368000px;}
.ls49{letter-spacing:-1.296000px;}
.ls3e{letter-spacing:-1.224000px;}
.ls6e{letter-spacing:-1.140000px;}
.ls47{letter-spacing:-0.864000px;}
.ls7b{letter-spacing:-0.726000px;}
.ls44{letter-spacing:-0.594000px;}
.ls1a{letter-spacing:-0.576000px;}
.ls6f{letter-spacing:-0.540000px;}
.ls7c{letter-spacing:-0.528000px;}
.ls27{letter-spacing:-0.504000px;}
.lse{letter-spacing:-0.480000px;}
.ls1b{letter-spacing:-0.432000px;}
.ls12{letter-spacing:-0.420000px;}
.ls19{letter-spacing:-0.360000px;}
.ls4e{letter-spacing:-0.330000px;}
.ls18{letter-spacing:-0.300000px;}
.ls1c{letter-spacing:-0.288000px;}
.ls26{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.180000px;}
.ls3c{letter-spacing:-0.144000px;}
.ls42{letter-spacing:-0.132000px;}
.lsd{letter-spacing:-0.120000px;}
.ls14{letter-spacing:-0.072000px;}
.ls7d{letter-spacing:-0.066000px;}
.ls6b{letter-spacing:-0.060000px;}
.lsf{letter-spacing:0.000000px;}
.ls6a{letter-spacing:0.060000px;}
.ls43{letter-spacing:0.066000px;}
.ls4c{letter-spacing:0.072000px;}
.ls16{letter-spacing:0.120000px;}
.ls1d{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.216000px;}
.ls52{letter-spacing:0.230400px;}
.ls17{letter-spacing:0.240000px;}
.ls38{letter-spacing:0.273600px;}
.ls15{letter-spacing:0.288000px;}
.ls6c{letter-spacing:0.300000px;}
.ls9{letter-spacing:0.309600px;}
.ls7a{letter-spacing:0.330000px;}
.ls3a{letter-spacing:0.338400px;}
.ls5{letter-spacing:0.360000px;}
.ls40{letter-spacing:0.396000px;}
.ls4b{letter-spacing:0.403200px;}
.ls25{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.439200px;}
.ls8{letter-spacing:0.460800px;}
.ls4d{letter-spacing:0.462000px;}
.ls37{letter-spacing:0.480000px;}
.ls7{letter-spacing:0.482400px;}
.ls6{letter-spacing:0.504000px;}
.ls65{letter-spacing:0.540000px;}
.ls2c{letter-spacing:0.576000px;}
.ls13{letter-spacing:0.588000px;}
.ls5e{letter-spacing:0.780000px;}
.ls5d{letter-spacing:0.900000px;}
.lsb{letter-spacing:1.152000px;}
.ls60{letter-spacing:1.194000px;}
.ls61{letter-spacing:1.200000px;}
.ls39{letter-spacing:1.216800px;}
.ls45{letter-spacing:1.425600px;}
.ls50{letter-spacing:1.656000px;}
.ls74{letter-spacing:1.740000px;}
.ls5f{letter-spacing:1.980000px;}
.ls21{letter-spacing:2.160000px;}
.ls51{letter-spacing:2.354400px;}
.ls30{letter-spacing:2.376000px;}
.ls55{letter-spacing:2.808000px;}
.ls64{letter-spacing:3.180000px;}
.ls22{letter-spacing:3.600000px;}
.ls79{letter-spacing:4.092000px;}
.ls67{letter-spacing:4.380000px;}
.ls2b{letter-spacing:4.752000px;}
.ls56{letter-spacing:5.184000px;}
.ls62{letter-spacing:5.580000px;}
.ls3b{letter-spacing:5.976000px;}
.ls20{letter-spacing:6.408000px;}
.lsa{letter-spacing:7.200000px;}
.ls3f{letter-spacing:7.560000px;}
.ls28{letter-spacing:8.352000px;}
.ls3d{letter-spacing:8.784000px;}
.ls76{letter-spacing:9.180000px;}
.ls32{letter-spacing:9.576000px;}
.ls2d{letter-spacing:10.800000px;}
.ls66{letter-spacing:11.580000px;}
.ls23{letter-spacing:11.952000px;}
.ls1e{letter-spacing:13.176000px;}
.ls41{letter-spacing:14.058000px;}
.ls4f{letter-spacing:14.234400px;}
.ls35{letter-spacing:14.400000px;}
.ls78{letter-spacing:14.784000px;}
.ls46{letter-spacing:15.552000px;}
.ls58{letter-spacing:16.776000px;}
.ls2f{letter-spacing:18.000000px;}
.ls68{letter-spacing:19.974000px;}
.ls72{letter-spacing:22.380000px;}
.ls5a{letter-spacing:22.920000px;}
.ls57{letter-spacing:25.200000px;}
.ls53{letter-spacing:27.576000px;}
.ls59{letter-spacing:28.008000px;}
.ls73{letter-spacing:29.580000px;}
.ls34{letter-spacing:31.608000px;}
.ls24{letter-spacing:32.760000px;}
.ls75{letter-spacing:33.180000px;}
.lsc{letter-spacing:36.000000px;}
.ls70{letter-spacing:41.580000px;}
.ls54{letter-spacing:43.200000px;}
.ls5b{letter-spacing:46.380000px;}
.ls5c{letter-spacing:47.580000px;}
.ls63{letter-spacing:49.980000px;}
.ls77{letter-spacing:52.380000px;}
.ls69{letter-spacing:63.180000px;}
.ls71{letter-spacing:193.980000px;}
.ls3{letter-spacing:498.780000px;}
.ls2{letter-spacing:592.380000px;}
.ls2a{letter-spacing:677.580000px;}
.ls1{letter-spacing:833.580000px;}
.ls33{letter-spacing:948.600000px;}
.ls1f{letter-spacing:979.800000px;}
.ls0{letter-spacing:1249.980000px;}
.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;}
}
.ws7e{word-spacing:-72.000000px;}
.wsd5{word-spacing:-43.200000px;}
.wsd2{word-spacing:-27.576000px;}
.wsda{word-spacing:-25.200000px;}
.wsc8{word-spacing:-19.656000px;}
.ws1{word-spacing:-19.584000px;}
.ws4f{word-spacing:-19.512000px;}
.ws7{word-spacing:-19.440000px;}
.ws2{word-spacing:-19.224000px;}
.ws8{word-spacing:-19.152000px;}
.ws30{word-spacing:-19.008000px;}
.ws2d{word-spacing:-18.936000px;}
.ws2c{word-spacing:-18.864000px;}
.ws2e{word-spacing:-18.792000px;}
.ws71{word-spacing:-18.720000px;}
.ws4e{word-spacing:-18.648000px;}
.ws2b{word-spacing:-18.576000px;}
.ws72{word-spacing:-18.432000px;}
.wsaa{word-spacing:-18.360000px;}
.ws2a{word-spacing:-18.216000px;}
.wsb1{word-spacing:-18.144000px;}
.ws110{word-spacing:-18.018000px;}
.ws2f{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.928000px;}
.ws5{word-spacing:-17.856000px;}
.wsb2{word-spacing:-17.688000px;}
.ws9{word-spacing:-17.640000px;}
.ws95{word-spacing:-17.622000px;}
.wsb3{word-spacing:-17.490000px;}
.ws10f{word-spacing:-17.094000px;}
.wse8{word-spacing:-16.920000px;}
.wsdc{word-spacing:-16.776000px;}
.wsee{word-spacing:-16.500000px;}
.wsea{word-spacing:-16.380000px;}
.ws10e{word-spacing:-16.368000px;}
.wse7{word-spacing:-16.320000px;}
.wse5{word-spacing:-16.260000px;}
.ws4d{word-spacing:-16.140000px;}
.wse9{word-spacing:-16.080000px;}
.wseb{word-spacing:-16.020000px;}
.wse6{word-spacing:-15.960000px;}
.ws4{word-spacing:-15.720000px;}
.ws3{word-spacing:-15.600000px;}
.ws98{word-spacing:-15.552000px;}
.ws0{word-spacing:-15.540000px;}
.wsed{word-spacing:-15.480000px;}
.wsec{word-spacing:-14.880000px;}
.wse4{word-spacing:-14.700000px;}
.ws10d{word-spacing:-14.640000px;}
.wsef{word-spacing:-14.520000px;}
.ws75{word-spacing:-14.400000px;}
.ws28{word-spacing:-13.176000px;}
.ws60{word-spacing:-11.952000px;}
.wsce{word-spacing:-11.214000px;}
.ws55{word-spacing:-10.800000px;}
.ws6f{word-spacing:-9.576000px;}
.ws39{word-spacing:-8.352000px;}
.ws70{word-spacing:-7.200000px;}
.wsa9{word-spacing:-5.976000px;}
.ws40{word-spacing:-5.112000px;}
.ws42{word-spacing:-5.040000px;}
.ws66{word-spacing:-4.752000px;}
.wscf{word-spacing:-4.392000px;}
.ws3f{word-spacing:-4.248000px;}
.wsf6{word-spacing:-3.960000px;}
.wsdb{word-spacing:-3.888000px;}
.ws56{word-spacing:-3.816000px;}
.ws119{word-spacing:-3.600000px;}
.wsf5{word-spacing:-3.540000px;}
.ws79{word-spacing:-3.528000px;}
.ws89{word-spacing:-3.456000px;}
.ws6c{word-spacing:-3.384000px;}
.ws7f{word-spacing:-3.312000px;}
.ws53{word-spacing:-3.168000px;}
.ws52{word-spacing:-3.096000px;}
.ws101{word-spacing:-3.060000px;}
.ws57{word-spacing:-3.024000px;}
.wsdd{word-spacing:-2.736000px;}
.ws73{word-spacing:-2.664000px;}
.ws65{word-spacing:-2.376000px;}
.ws102{word-spacing:-2.340000px;}
.wsc3{word-spacing:-2.304000px;}
.ws29{word-spacing:-2.016000px;}
.wsc4{word-spacing:-1.944000px;}
.ws21{word-spacing:-1.872000px;}
.ws120{word-spacing:-1.860000px;}
.ws121{word-spacing:-1.740000px;}
.wsc9{word-spacing:-1.728000px;}
.ws4b{word-spacing:-1.440000px;}
.wsfe{word-spacing:-1.200000px;}
.ws33{word-spacing:-1.152000px;}
.wsff{word-spacing:-1.140000px;}
.ws88{word-spacing:-1.008000px;}
.wsd7{word-spacing:-0.936000px;}
.wsa2{word-spacing:-0.792000px;}
.wsae{word-spacing:-0.720000px;}
.ws17{word-spacing:-0.660000px;}
.ws4a{word-spacing:-0.648000px;}
.wsb6{word-spacing:-0.576000px;}
.ws16{word-spacing:-0.540000px;}
.ws87{word-spacing:-0.504000px;}
.ws105{word-spacing:-0.480000px;}
.wsd{word-spacing:-0.420000px;}
.ws14{word-spacing:-0.360000px;}
.wsa{word-spacing:-0.300000px;}
.ws15{word-spacing:-0.288000px;}
.ws11{word-spacing:-0.252000px;}
.wse{word-spacing:-0.240000px;}
.wsf{word-spacing:-0.216000px;}
.ws50{word-spacing:-0.120000px;}
.wsbe{word-spacing:-0.066000px;}
.wsf4{word-spacing:-0.060000px;}
.wsb{word-spacing:0.000000px;}
.wsc{word-spacing:0.060000px;}
.ws124{word-spacing:0.066000px;}
.ws13{word-spacing:0.072000px;}
.ws7b{word-spacing:0.144000px;}
.ws48{word-spacing:0.216000px;}
.ws49{word-spacing:0.288000px;}
.ws19{word-spacing:0.300000px;}
.ws12{word-spacing:0.336000px;}
.ws3c{word-spacing:0.360000px;}
.ws128{word-spacing:0.396000px;}
.ws10{word-spacing:0.420000px;}
.ws1e{word-spacing:0.432000px;}
.ws127{word-spacing:0.462000px;}
.ws18{word-spacing:0.480000px;}
.ws36{word-spacing:0.504000px;}
.ws126{word-spacing:0.528000px;}
.wsf7{word-spacing:0.540000px;}
.ws26{word-spacing:0.576000px;}
.ws43{word-spacing:0.648000px;}
.wsbf{word-spacing:0.726000px;}
.ws9c{word-spacing:0.864000px;}
.ws23{word-spacing:0.936000px;}
.ws94{word-spacing:0.990000px;}
.ws1d{word-spacing:1.224000px;}
.wsa7{word-spacing:1.296000px;}
.wsf9{word-spacing:1.500000px;}
.ws38{word-spacing:1.584000px;}
.ws99{word-spacing:1.656000px;}
.ws22{word-spacing:1.728000px;}
.ws76{word-spacing:1.800000px;}
.wsab{word-spacing:1.872000px;}
.ws9a{word-spacing:2.088000px;}
.ws46{word-spacing:2.160000px;}
.ws44{word-spacing:2.448000px;}
.wsf8{word-spacing:2.460000px;}
.wsac{word-spacing:2.592000px;}
.wscb{word-spacing:2.664000px;}
.ws93{word-spacing:2.706000px;}
.ws3d{word-spacing:2.808000px;}
.ws92{word-spacing:2.904000px;}
.wsa0{word-spacing:2.952000px;}
.wsc0{word-spacing:3.312000px;}
.ws83{word-spacing:3.384000px;}
.ws125{word-spacing:3.498000px;}
.ws6d{word-spacing:3.600000px;}
.ws3e{word-spacing:3.672000px;}
.wse2{word-spacing:3.816000px;}
.wsa3{word-spacing:3.888000px;}
.ws63{word-spacing:4.032000px;}
.wsf0{word-spacing:4.104000px;}
.ws107{word-spacing:4.140000px;}
.ws62{word-spacing:4.176000px;}
.wsa1{word-spacing:4.392000px;}
.ws58{word-spacing:4.536000px;}
.ws41{word-spacing:4.824000px;}
.ws108{word-spacing:4.860000px;}
.wsa8{word-spacing:4.968000px;}
.wsb5{word-spacing:5.040000px;}
.ws59{word-spacing:5.184000px;}
.ws5a{word-spacing:5.328000px;}
.ws113{word-spacing:5.340000px;}
.wsfd{word-spacing:5.460000px;}
.ws103{word-spacing:5.520000px;}
.ws7d{word-spacing:5.688000px;}
.ws7c{word-spacing:5.760000px;}
.ws112{word-spacing:5.880000px;}
.wsfc{word-spacing:6.000000px;}
.ws8d{word-spacing:6.048000px;}
.ws104{word-spacing:6.060000px;}
.wsc7{word-spacing:6.192000px;}
.ws8c{word-spacing:6.264000px;}
.ws8b{word-spacing:6.408000px;}
.ws97{word-spacing:6.480000px;}
.ws34{word-spacing:6.552000px;}
.ws96{word-spacing:6.624000px;}
.ws64{word-spacing:6.984000px;}
.ws1a{word-spacing:7.272000px;}
.ws35{word-spacing:7.632000px;}
.ws61{word-spacing:7.776000px;}
.ws3a{word-spacing:8.064000px;}
.ws45{word-spacing:8.136000px;}
.ws51{word-spacing:8.424000px;}
.ws5c{word-spacing:8.568000px;}
.ws8a{word-spacing:8.640000px;}
.ws9b{word-spacing:8.784000px;}
.ws91{word-spacing:8.856000px;}
.ws37{word-spacing:8.928000px;}
.ws114{word-spacing:9.120000px;}
.ws78{word-spacing:9.360000px;}
.ws115{word-spacing:9.600000px;}
.ws1f{word-spacing:9.648000px;}
.ws116{word-spacing:9.660000px;}
.ws5b{word-spacing:10.008000px;}
.ws20{word-spacing:10.152000px;}
.ws6a{word-spacing:10.584000px;}
.ws11b{word-spacing:11.220000px;}
.ws6b{word-spacing:11.232000px;}
.ws54{word-spacing:11.304000px;}
.ws80{word-spacing:11.376000px;}
.ws11c{word-spacing:11.460000px;}
.ws11e{word-spacing:11.580000px;}
.wsb0{word-spacing:11.736000px;}
.ws11d{word-spacing:12.000000px;}
.wsaf{word-spacing:12.024000px;}
.ws109{word-spacing:12.060000px;}
.wsf1{word-spacing:12.384000px;}
.ws47{word-spacing:12.456000px;}
.wsa4{word-spacing:12.672000px;}
.ws1c{word-spacing:12.960000px;}
.ws106{word-spacing:13.200000px;}
.ws84{word-spacing:13.248000px;}
.ws8f{word-spacing:13.608000px;}
.ws1b{word-spacing:13.752000px;}
.wsa5{word-spacing:14.112000px;}
.ws4c{word-spacing:14.184000px;}
.ws123{word-spacing:14.322000px;}
.ws74{word-spacing:14.472000px;}
.ws8e{word-spacing:14.616000px;}
.ws122{word-spacing:14.850000px;}
.ws90{word-spacing:14.976000px;}
.ws31{word-spacing:15.192000px;}
.wsd0{word-spacing:15.336000px;}
.wsd1{word-spacing:15.768000px;}
.wsb4{word-spacing:15.840000px;}
.wsc5{word-spacing:15.984000px;}
.ws77{word-spacing:16.128000px;}
.ws3b{word-spacing:16.560000px;}
.wsad{word-spacing:16.848000px;}
.ws7a{word-spacing:17.208000px;}
.ws32{word-spacing:17.352000px;}
.wsde{word-spacing:17.784000px;}
.ws5e{word-spacing:18.072000px;}
.ws5f{word-spacing:18.432000px;}
.ws67{word-spacing:18.576000px;}
.wsbd{word-spacing:18.936000px;}
.wsca{word-spacing:19.224000px;}
.ws111{word-spacing:19.260000px;}
.ws69{word-spacing:19.440000px;}
.ws68{word-spacing:19.584000px;}
.wsd8{word-spacing:19.728000px;}
.ws85{word-spacing:20.160000px;}
.ws82{word-spacing:20.448000px;}
.ws10a{word-spacing:20.460000px;}
.ws86{word-spacing:20.592000px;}
.wsbc{word-spacing:20.808000px;}
.ws117{word-spacing:21.120000px;}
.ws118{word-spacing:21.660000px;}
.ws25{word-spacing:22.032000px;}
.ws81{word-spacing:22.176000px;}
.ws5d{word-spacing:22.536000px;}
.wsa6{word-spacing:23.184000px;}
.wsbb{word-spacing:23.760000px;}
.wsba{word-spacing:24.264000px;}
.wse1{word-spacing:24.552000px;}
.wsc1{word-spacing:25.632000px;}
.wsd9{word-spacing:25.704000px;}
.wsc2{word-spacing:25.776000px;}
.wscd{word-spacing:26.136000px;}
.wsd3{word-spacing:28.008000px;}
.ws11a{word-spacing:28.860000px;}
.ws9d{word-spacing:31.176000px;}
.ws9e{word-spacing:31.248000px;}
.ws9f{word-spacing:31.752000px;}
.wse3{word-spacing:32.184000px;}
.wse0{word-spacing:32.832000px;}
.wsdf{word-spacing:32.976000px;}
.ws24{word-spacing:33.624000px;}
.ws11f{word-spacing:33.660000px;}
.ws27{word-spacing:35.856000px;}
.wsd6{word-spacing:36.072000px;}
.wscc{word-spacing:42.552000px;}
.wsd4{word-spacing:42.912000px;}
.wsf2{word-spacing:46.320000px;}
.wsf3{word-spacing:46.860000px;}
.wsb7{word-spacing:46.872000px;}
.wsb9{word-spacing:48.024000px;}
.wsb8{word-spacing:48.528000px;}
.ws100{word-spacing:51.660000px;}
.ws10b{word-spacing:63.120000px;}
.ws10c{word-spacing:63.660000px;}
.ws6e{word-spacing:74.808000px;}
.wsfa{word-spacing:102.000000px;}
.wsfb{word-spacing:102.060000px;}
.wsc6{word-spacing:112.032000px;}
._33{margin-left:-43.752000px;}
._36{margin-left:-42.530400px;}
._35{margin-left:-40.730400px;}
._2f{margin-left:-27.648000px;}
._31{margin-left:-26.409600px;}
._38{margin-left:-25.365600px;}
._39{margin-left:-24.163200px;}
._21{margin-left:-19.022400px;}
._20{margin-left:-17.834400px;}
._23{margin-left:-16.452000px;}
._25{margin-left:-14.594400px;}
._7{margin-left:-13.485600px;}
._9{margin-left:-12.456000px;}
._1f{margin-left:-11.431200px;}
._1d{margin-left:-10.358400px;}
._15{margin-left:-9.309600px;}
._14{margin-left:-7.992000px;}
._16{margin-left:-6.681600px;}
._19{margin-left:-4.789200px;}
._12{margin-left:-3.756000px;}
._6{margin-left:-2.328000px;}
._5{margin-left:-1.080000px;}
._0{width:1.140000px;}
._2{width:2.346000px;}
._a{width:4.030800px;}
._1a{width:5.544000px;}
._1b{width:6.886800px;}
._b{width:8.236800px;}
._e{width:9.760800px;}
._1e{width:11.200800px;}
._f{width:12.379200px;}
._8{width:13.384800px;}
._26{width:14.390400px;}
._24{width:15.669600px;}
._18{width:16.948800px;}
._22{width:18.000000px;}
._42{width:19.156800px;}
._43{width:20.300400px;}
._c{width:21.412800px;}
._d{width:22.912800px;}
._3b{width:24.360000px;}
._11{width:25.701600px;}
._10{width:26.748000px;}
._32{width:28.152000px;}
._30{width:29.606400px;}
._29{width:31.572000px;}
._3c{width:32.784000px;}
._3d{width:33.801600px;}
._3a{width:41.256000px;}
._34{width:43.200000px;}
._37{width:45.093600px;}
._3e{width:46.428000px;}
._41{width:50.580000px;}
._45{width:53.334000px;}
._44{width:63.900000px;}
._40{width:101.220000px;}
._3f{width:102.360000px;}
._3{width:643.860000px;}
._27{width:732.954000px;}
._1c{width:764.154000px;}
._4{width:775.980000px;}
._13{width:788.100000px;}
._1{width:824.220000px;}
._17{width:936.000000px;}
._2c{width:1062.000000px;}
._2e{width:1188.000000px;}
._2b{width:1394.352000px;}
._28{width:1404.000000px;}
._2a{width:1412.352000px;}
._2d{width:1520.352000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:24.000000px;}
.fs6{font-size:30.000000px;}
.fs8{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y127{bottom:1.500000px;}
.y9{bottom:3.300000px;}
.y12b{bottom:4.500000px;}
.y12f{bottom:4.800000px;}
.y7{bottom:5.100000px;}
.ya{bottom:5.700000px;}
.y9d{bottom:6.900000px;}
.y12a{bottom:26.100000px;}
.yd4{bottom:28.200000px;}
.ya2{bottom:28.500000px;}
.y4{bottom:67.800000px;}
.y104{bottom:100.800000px;}
.y139{bottom:102.906000px;}
.y36{bottom:104.700000px;}
.y17a{bottom:105.048000px;}
.y80{bottom:105.096000px;}
.y14b{bottom:105.606000px;}
.y112{bottom:110.400000px;}
.ycf{bottom:110.700000px;}
.y135{bottom:111.000000px;}
.yeb{bottom:112.500000px;}
.y192{bottom:112.884000px;}
.y1c0{bottom:115.800000px;}
.y163{bottom:116.124000px;}
.y5f{bottom:116.448000px;}
.ybd{bottom:118.842000px;}
.y9b{bottom:122.136000px;}
.y138{bottom:126.000000px;}
.y35{bottom:128.100000px;}
.y179{bottom:128.142000px;}
.y7f{bottom:128.190000px;}
.y14a{bottom:128.700000px;}
.y105{bottom:129.000000px;}
.y111{bottom:130.800000px;}
.y134{bottom:134.400000px;}
.y1bf{bottom:135.000000px;}
.yea{bottom:135.942000px;}
.y191{bottom:135.978000px;}
.y110{bottom:138.300000px;}
.y162{bottom:139.524000px;}
.y5e{bottom:139.542000px;}
.ybc{bottom:142.242000px;}
.y9a{bottom:145.230000px;}
.y137{bottom:146.400000px;}
.y149{bottom:147.000000px;}
.y103{bottom:147.300000px;}
.y34{bottom:149.700000px;}
.y178{bottom:151.542000px;}
.y7e{bottom:151.590000px;}
.yce{bottom:151.800000px;}
.y136{bottom:154.200000px;}
.y1be{bottom:154.500000px;}
.y133{bottom:157.800000px;}
.ycc{bottom:159.330000px;}
.ye9{bottom:159.342000px;}
.y190{bottom:159.378000px;}
.y161{bottom:162.618000px;}
.y5d{bottom:162.942000px;}
.ybb{bottom:165.336000px;}
.y33{bottom:166.824000px;}
.y99{bottom:168.630000px;}
.y148{bottom:170.400000px;}
.y102{bottom:170.700000px;}
.y1bd{bottom:174.000000px;}
.y177{bottom:174.942000px;}
.y7d{bottom:174.990000px;}
.ycd{bottom:176.100000px;}
.y132{bottom:179.100000px;}
.ye8{bottom:182.436000px;}
.ycb{bottom:182.730000px;}
.y18f{bottom:182.778000px;}
.y160{bottom:186.018000px;}
.y5c{bottom:186.342000px;}
.yba{bottom:188.736000px;}
.y32{bottom:190.224000px;}
.y98{bottom:192.030000px;}
.y1bc{bottom:193.200000px;}
.y131{bottom:196.500000px;}
.y176{bottom:198.036000px;}
.y7c{bottom:198.084000px;}
.y13a{bottom:205.800000px;}
.yca{bottom:205.824000px;}
.ye7{bottom:205.836000px;}
.y18e{bottom:205.872000px;}
.y15f{bottom:209.418000px;}
.y5b{bottom:209.436000px;}
.yb9{bottom:212.136000px;}
.y1bb{bottom:212.700000px;}
.y31{bottom:213.624000px;}
.y97{bottom:215.124000px;}
.y130{bottom:216.900000px;}
.y175{bottom:221.436000px;}
.y7b{bottom:221.484000px;}
.y12e{bottom:225.000000px;}
.yc9{bottom:229.224000px;}
.ye6{bottom:229.236000px;}
.y18d{bottom:229.272000px;}
.y1ba{bottom:232.200000px;}
.y15e{bottom:232.512000px;}
.y5a{bottom:232.836000px;}
.yb8{bottom:235.230000px;}
.y30{bottom:236.718000px;}
.y96{bottom:238.524000px;}
.y174{bottom:244.836000px;}
.y7a{bottom:244.884000px;}
.y1b9{bottom:251.700000px;}
.ye5{bottom:252.330000px;}
.yc8{bottom:252.624000px;}
.y18c{bottom:252.672000px;}
.y15d{bottom:255.912000px;}
.y59{bottom:256.236000px;}
.yb7{bottom:258.630000px;}
.y2f{bottom:260.118000px;}
.y95{bottom:261.618000px;}
.y12c{bottom:267.900000px;}
.y173{bottom:267.930000px;}
.y79{bottom:267.978000px;}
.y1b8{bottom:270.900000px;}
.y12d{bottom:275.400000px;}
.yc7{bottom:275.718000px;}
.ye4{bottom:275.730000px;}
.y18b{bottom:275.766000px;}
.y15c{bottom:279.312000px;}
.y58{bottom:279.330000px;}
.yb6{bottom:282.030000px;}
.y2e{bottom:283.518000px;}
.y94{bottom:285.018000px;}
.y1b7{bottom:290.400000px;}
.y172{bottom:291.330000px;}
.y78{bottom:291.378000px;}
.yc6{bottom:299.118000px;}
.ye3{bottom:299.130000px;}
.y18a{bottom:299.166000px;}
.y15b{bottom:302.406000px;}
.y57{bottom:302.730000px;}
.yb5{bottom:305.124000px;}
.y2d{bottom:306.612000px;}
.y93{bottom:308.418000px;}
.y1b6{bottom:309.900000px;}
.y171{bottom:314.730000px;}
.y77{bottom:314.778000px;}
.yc5{bottom:322.212000px;}
.ye2{bottom:322.224000px;}
.y189{bottom:322.260000px;}
.y15a{bottom:325.806000px;}
.y56{bottom:325.824000px;}
.yb4{bottom:328.524000px;}
.y1b5{bottom:329.100000px;}
.y2c{bottom:330.012000px;}
.y92{bottom:331.512000px;}
.y170{bottom:337.824000px;}
.y76{bottom:337.872000px;}
.yc4{bottom:345.612000px;}
.ye1{bottom:345.624000px;}
.y188{bottom:345.660000px;}
.y1b4{bottom:348.600000px;}
.y159{bottom:348.900000px;}
.y55{bottom:349.224000px;}
.yb3{bottom:351.924000px;}
.y2b{bottom:353.106000px;}
.y91{bottom:354.912000px;}
.y16f{bottom:361.224000px;}
.y75{bottom:361.272000px;}
.y1b3{bottom:368.100000px;}
.yc3{bottom:369.012000px;}
.ye0{bottom:369.024000px;}
.y187{bottom:369.060000px;}
.y158{bottom:372.300000px;}
.y54{bottom:372.624000px;}
.yb2{bottom:375.018000px;}
.y2a{bottom:376.506000px;}
.y90{bottom:378.312000px;}
.y16e{bottom:384.318000px;}
.y74{bottom:384.366000px;}
.y1b2{bottom:387.300000px;}
.y1e5{bottom:387.900000px;}
.y147{bottom:389.700000px;}
.yc2{bottom:392.106000px;}
.ydf{bottom:392.118000px;}
.y186{bottom:392.154000px;}
.y157{bottom:395.700000px;}
.y53{bottom:395.718000px;}
.yb1{bottom:398.418000px;}
.y29{bottom:399.906000px;}
.y8f{bottom:401.406000px;}
.y10f{bottom:405.000000px;}
.y1b1{bottom:406.800000px;}
.y146{bottom:406.806000px;}
.y1e4{bottom:407.700000px;}
.y16d{bottom:407.718000px;}
.y73{bottom:407.766000px;}
.yc1{bottom:415.506000px;}
.yde{bottom:415.518000px;}
.y185{bottom:415.554000px;}
.y129{bottom:417.000000px;}
.y101{bottom:419.100000px;}
.y52{bottom:419.118000px;}
.yb0{bottom:421.512000px;}
.y10e{bottom:422.412000px;}
.y28{bottom:423.000000px;}
.y8e{bottom:424.806000px;}
.y1b0{bottom:426.300000px;}
.y1e3{bottom:427.800000px;}
.y145{bottom:430.206000px;}
.y16c{bottom:431.118000px;}
.y72{bottom:431.166000px;}
.y156{bottom:434.412000px;}
.y100{bottom:436.530000px;}
.ydd{bottom:438.612000px;}
.yc0{bottom:438.906000px;}
.y184{bottom:438.954000px;}
.y51{bottom:442.518000px;}
.y1e2{bottom:444.592500px;}
.y27{bottom:444.600000px;}
.yaf{bottom:444.912000px;}
.y10d{bottom:445.506000px;}
.y1af{bottom:445.800000px;}
.y8d{bottom:448.206000px;}
.y144{bottom:453.606000px;}
.y16b{bottom:454.212000px;}
.y71{bottom:454.260000px;}
.y155{bottom:457.812000px;}
.y126{bottom:459.900000px;}
.yff{bottom:459.930000px;}
.ybf{bottom:462.000000px;}
.y26{bottom:462.006000px;}
.ydc{bottom:462.012000px;}
.y183{bottom:462.048000px;}
.y128{bottom:465.000000px;}
.y50{bottom:465.612000px;}
.y1e1{bottom:465.894000px;}
.yae{bottom:468.312000px;}
.y10c{bottom:468.906000px;}
.y8c{bottom:471.300000px;}
.y143{bottom:476.700000px;}
.y16a{bottom:477.612000px;}
.y70{bottom:477.660000px;}
.y154{bottom:480.906000px;}
.yfe{bottom:483.024000px;}
.ybe{bottom:483.600000px;}
.y1ae{bottom:484.500000px;}
.y25{bottom:485.100000px;}
.ydb{bottom:485.412000px;}
.y182{bottom:485.448000px;}
.y1e0{bottom:487.195500px;}
.y4f{bottom:489.012000px;}
.yad{bottom:491.406000px;}
.y10b{bottom:492.000000px;}
.y8b{bottom:494.700000px;}
.y142{bottom:498.300000px;}
.y169{bottom:501.012000px;}
.y6f{bottom:501.060000px;}
.y1ad{bottom:504.000000px;}
.y153{bottom:504.306000px;}
.yfd{bottom:506.424000px;}
.y24{bottom:506.700000px;}
.yda{bottom:508.506000px;}
.y181{bottom:508.848000px;}
.y4e{bottom:512.412000px;}
.y1df{bottom:513.298500px;}
.yac{bottom:514.806000px;}
.y10a{bottom:515.400000px;}
.y141{bottom:515.706000px;}
.y8a{bottom:516.000000px;}
.y1ac{bottom:523.200000px;}
.y168{bottom:524.106000px;}
.y23{bottom:524.124000px;}
.y6e{bottom:524.154000px;}
.y152{bottom:527.706000px;}
.yfc{bottom:529.518000px;}
.yd9{bottom:531.906000px;}
.y180{bottom:531.942000px;}
.y89{bottom:533.400000px;}
.y4d{bottom:535.506000px;}
.yab{bottom:538.206000px;}
.y109{bottom:538.800000px;}
.y1ab{bottom:542.700000px;}
.y22{bottom:547.218000px;}
.y167{bottom:547.506000px;}
.y6d{bottom:547.554000px;}
.y151{bottom:550.800000px;}
.yfb{bottom:552.918000px;}
.yd8{bottom:555.306000px;}
.y17f{bottom:555.342000px;}
.y1de{bottom:556.198500px;}
.y88{bottom:556.800000px;}
.y4c{bottom:558.906000px;}
.y108{bottom:560.100000px;}
.yaa{bottom:561.300000px;}
.y140{bottom:562.200000px;}
.y21{bottom:570.618000px;}
.y166{bottom:570.906000px;}
.y6c{bottom:570.954000px;}
.y150{bottom:574.200000px;}
.yfa{bottom:576.318000px;}
.y87{bottom:577.200000px;}
.y107{bottom:577.500000px;}
.yd7{bottom:578.400000px;}
.y17e{bottom:578.436000px;}
.y1aa{bottom:581.400000px;}
.y4b{bottom:582.000000px;}
.y13f{bottom:582.600000px;}
.y86{bottom:584.700000px;}
.y13e{bottom:590.100000px;}
.y165{bottom:594.000000px;}
.y20{bottom:594.018000px;}
.y6b{bottom:594.048000px;}
.y14f{bottom:595.800000px;}
.y1dd{bottom:597.600000px;}
.y106{bottom:597.900000px;}
.yf9{bottom:599.412000px;}
.yd6{bottom:600.000000px;}
.y1a9{bottom:600.900000px;}
.y17d{bottom:601.836000px;}
.y4a{bottom:605.400000px;}
.ya9{bottom:606.300000px;}
.yd3{bottom:612.300000px;}
.y14e{bottom:612.900000px;}
.y13d{bottom:613.500000px;}
.y1dc{bottom:614.100000px;}
.y1f{bottom:617.112000px;}
.y164{bottom:617.400000px;}
.y6a{bottom:617.448000px;}
.y13c{bottom:618.300000px;}
.y1a8{bottom:620.400000px;}
.yf8{bottom:622.812000px;}
.ya8{bottom:623.406000px;}
.y17c{bottom:625.236000px;}
.y49{bottom:627.000000px;}
.y125{bottom:631.200000px;}
.y14d{bottom:633.300000px;}
.y1a7{bottom:639.900000px;}
.yd5{bottom:640.500000px;}
.y1e{bottom:640.512000px;}
.y14c{bottom:640.800000px;}
.y69{bottom:640.848000px;}
.y48{bottom:644.406000px;}
.yf7{bottom:646.212000px;}
.ya7{bottom:646.806000px;}
.y124{bottom:648.330000px;}
.y1db{bottom:651.900000px;}
.yd2{bottom:658.800000px;}
.y1a6{bottom:659.100000px;}
.y1d{bottom:663.912000px;}
.y68{bottom:663.942000px;}
.y47{bottom:667.500000px;}
.yf6{bottom:669.306000px;}
.ya6{bottom:670.206000px;}
.y1da{bottom:670.800000px;}
.y123{bottom:671.730000px;}
.y9e{bottom:673.800000px;}
.y9c{bottom:674.400000px;}
.y1a5{bottom:678.600000px;}
.yd1{bottom:682.200000px;}
.y1c{bottom:687.006000px;}
.y67{bottom:687.342000px;}
.y46{bottom:687.900000px;}
.y1d9{bottom:690.300000px;}
.yf5{bottom:692.706000px;}
.ya5{bottom:693.300000px;}
.y122{bottom:695.130000px;}
.y45{bottom:695.400000px;}
.y1a4{bottom:698.100000px;}
.y1d8{bottom:709.500000px;}
.y1b{bottom:710.406000px;}
.y66{bottom:710.436000px;}
.yf4{bottom:716.106000px;}
.ya4{bottom:716.700000px;}
.y1a3{bottom:717.300000px;}
.y121{bottom:718.224000px;}
.y1d7{bottom:729.000000px;}
.y1a{bottom:733.806000px;}
.y65{bottom:733.836000px;}
.y1a2{bottom:736.800000px;}
.ya3{bottom:738.300000px;}
.yf3{bottom:739.200000px;}
.y13b{bottom:739.800000px;}
.y120{bottom:741.624000px;}
.y1d6{bottom:748.500000px;}
.ya1{bottom:750.300000px;}
.y1a1{bottom:755.400000px;}
.y19{bottom:756.900000px;}
.y64{bottom:757.236000px;}
.yf2{bottom:762.600000px;}
.y11f{bottom:765.024000px;}
.y1d5{bottom:768.000000px;}
.y1a0{bottom:772.500000px;}
.y18{bottom:780.300000px;}
.y63{bottom:780.330000px;}
.yf1{bottom:784.200000px;}
.y1d4{bottom:787.200000px;}
.y11e{bottom:788.118000px;}
.y19f{bottom:794.100000px;}
.yef{bottom:796.200000px;}
.ya0{bottom:797.100000px;}
.yf0{bottom:801.300000px;}
.y17{bottom:801.600000px;}
.y62{bottom:803.730000px;}
.y1d3{bottom:806.700000px;}
.y11d{bottom:811.518000px;}
.y19e{bottom:811.524000px;}
.y16{bottom:818.100000px;}
.y9f{bottom:820.200000px;}
.y1d2{bottom:826.200000px;}
.y61{bottom:827.130000px;}
.y11c{bottom:834.918000px;}
.y19d{bottom:834.924000px;}
.y15{bottom:837.600000px;}
.yee{bottom:843.000000px;}
.y1d1{bottom:845.400000px;}
.y60{bottom:850.224000px;}
.y14{bottom:856.200000px;}
.y11b{bottom:858.012000px;}
.y19c{bottom:858.018000px;}
.y1d0{bottom:864.900000px;}
.yed{bottom:866.100000px;}
.y44{bottom:873.624000px;}
.y13{bottom:877.200000px;}
.y11a{bottom:881.412000px;}
.y19b{bottom:881.418000px;}
.y1cf{bottom:884.400000px;}
.y43{bottom:897.024000px;}
.y12{bottom:899.400000px;}
.y1ce{bottom:903.600000px;}
.y119{bottom:904.506000px;}
.y19a{bottom:904.512000px;}
.y11{bottom:918.300000px;}
.y42{bottom:920.118000px;}
.y1cd{bottom:923.100000px;}
.yd0{bottom:926.100000px;}
.y118{bottom:927.906000px;}
.y199{bottom:927.912000px;}
.y10{bottom:937.206000px;}
.y1cc{bottom:942.600000px;}
.y41{bottom:943.518000px;}
.y117{bottom:951.306000px;}
.y198{bottom:951.312000px;}
.yf{bottom:960.300000px;}
.y1cb{bottom:962.100000px;}
.y40{bottom:966.612000px;}
.y85{bottom:972.600000px;}
.y116{bottom:974.400000px;}
.y197{bottom:974.406000px;}
.y1ca{bottom:981.300000px;}
.ye{bottom:983.700000px;}
.y84{bottom:990.000000px;}
.y3f{bottom:990.012000px;}
.y115{bottom:997.800000px;}
.y196{bottom:997.806000px;}
.y1c9{bottom:1000.800000px;}
.yd{bottom:1007.694000px;}
.y83{bottom:1013.400000px;}
.y3e{bottom:1013.412000px;}
.y17b{bottom:1019.400000px;}
.y1c8{bottom:1020.300000px;}
.y114{bottom:1021.200000px;}
.y195{bottom:1021.206000px;}
.yc{bottom:1034.700000px;}
.y82{bottom:1036.500000px;}
.y3d{bottom:1036.506000px;}
.y1c7{bottom:1039.500000px;}
.y113{bottom:1042.500000px;}
.y194{bottom:1044.300000px;}
.y1c6{bottom:1059.000000px;}
.y81{bottom:1059.900000px;}
.y3c{bottom:1059.906000px;}
.yb{bottom:1062.000000px;}
.y193{bottom:1065.900000px;}
.y1c5{bottom:1078.500000px;}
.y8{bottom:1083.300000px;}
.y3b{bottom:1083.306000px;}
.y1c4{bottom:1097.700000px;}
.y3a{bottom:1106.400000px;}
.y6{bottom:1107.300000px;}
.yec{bottom:1112.400000px;}
.y1c3{bottom:1117.200000px;}
.y39{bottom:1129.800000px;}
.y5{bottom:1132.500000px;}
.y1c2{bottom:1136.700000px;}
.y3{bottom:1144.800000px;}
.y38{bottom:1153.200000px;}
.y1c1{bottom:1156.200000px;}
.y2{bottom:1164.300000px;}
.y37{bottom:1183.500000px;}
.y1{bottom:1183.800000px;}
.h4{height:20.880000px;}
.h12{height:21.420000px;}
.h15{height:23.101500px;}
.h19{height:23.400000px;}
.h5{height:23.401500px;}
.h14{height:23.998500px;}
.h8{height:24.000000px;}
.h13{height:26.100000px;}
.hd{height:41.760000px;}
.h20{height:42.840000px;}
.h1e{height:42.898500px;}
.h1c{height:42.900000px;}
.h1a{height:46.500000px;}
.h2{height:46.680000px;}
.h16{height:46.798500px;}
.hc{height:46.980000px;}
.h7{height:47.401500px;}
.h6{height:51.408000px;}
.he{height:52.200000px;}
.hf{height:56.016000px;}
.h18{height:57.420000px;}
.h10{height:58.857422px;}
.ha{height:59.976000px;}
.h21{height:62.578125px;}
.hb{height:62.640000px;}
.h17{height:68.835938px;}
.h3{height:70.664062px;}
.h9{height:73.080000px;}
.h11{height:75.093750px;}
.h1f{height:123.001500px;}
.h1d{height:149.100000px;}
.h1b{height:167.098500px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w5{width:45.300000px;}
.w4{width:127.500000px;}
.w3{width:127.800000px;}
.we{width:172.800000px;}
.wb{width:233.400000px;}
.wc{width:233.700000px;}
.wd{width:261.900000px;}
.wf{width:270.000000px;}
.w10{width:327.900000px;}
.wa{width:350.101500px;}
.w7{width:354.900000px;}
.w6{width:355.200000px;}
.w9{width:359.998500px;}
.w11{width:382.200000px;}
.w2{width:478.200000px;}
.w8{width:710.100000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x1b{left:10.800000px;}
.x2d{left:43.800000px;}
.x2e{left:60.300000px;}
.x3{left:79.800000px;}
.x1{left:91.500000px;}
.x3e{left:93.600000px;}
.x3b{left:95.700000px;}
.x29{left:100.200000px;}
.x47{left:112.800000px;}
.x48{left:118.500000px;}
.x8{left:123.000000px;}
.x6{left:125.100000px;}
.x3c{left:127.800000px;}
.x34{left:134.100000px;}
.x12{left:144.600000px;}
.x9{left:151.791000px;}
.x41{left:156.900000px;}
.x1f{left:160.800000px;}
.x1a{left:167.100000px;}
.x1e{left:170.400000px;}
.xd{left:172.500000px;}
.x10{left:176.406000px;}
.x22{left:184.500000px;}
.x3d{left:186.300000px;}
.x3f{left:190.206000px;}
.x20{left:194.700000px;}
.x32{left:198.900000px;}
.x30{left:204.300000px;}
.x2a{left:209.700000px;}
.x11{left:212.694000px;}
.x15{left:215.400000px;}
.x37{left:221.400000px;}
.x43{left:225.300000px;}
.x46{left:234.900000px;}
.x18{left:236.400000px;}
.xb{left:241.182000px;}
.xe{left:242.400000px;}
.x19{left:243.888000px;}
.x25{left:245.400000px;}
.x27{left:254.400000px;}
.x3a{left:258.600000px;}
.xa{left:260.100000px;}
.x39{left:261.900000px;}
.xc{left:267.570000px;}
.x44{left:302.106000px;}
.x33{left:304.200000px;}
.x16{left:306.300000px;}
.x2f{left:333.600000px;}
.x36{left:353.388000px;}
.x21{left:358.500000px;}
.xf{left:374.100000px;}
.x26{left:409.200000px;}
.x40{left:416.100000px;}
.x42{left:419.400000px;}
.x23{left:441.900000px;}
.x1d{left:444.000000px;}
.x2{left:446.400000px;}
.x24{left:451.500000px;}
.x28{left:467.700000px;}
.x13{left:473.100000px;}
.x45{left:498.000000px;}
.x1c{left:524.100000px;}
.x2b{left:538.200000px;}
.x38{left:545.700000px;}
.x31{left:549.300000px;}
.x5{left:558.000000px;}
.x14{left:561.000000px;}
.x2c{left:567.300000px;}
.x7{left:685.800000px;}
.x35{left:799.500000px;}
.x17{left:802.500000px;}
@media print{
.v1{vertical-align:-5.504000pt;}
.v0{vertical-align:0.000000pt;}
.ls29{letter-spacing:-4.288000pt;}
.ls31{letter-spacing:-3.200000pt;}
.ls2e{letter-spacing:-2.176000pt;}
.ls36{letter-spacing:-1.600000pt;}
.ls48{letter-spacing:-1.344000pt;}
.ls6d{letter-spacing:-1.333333pt;}
.ls4a{letter-spacing:-1.216000pt;}
.ls49{letter-spacing:-1.152000pt;}
.ls3e{letter-spacing:-1.088000pt;}
.ls6e{letter-spacing:-1.013333pt;}
.ls47{letter-spacing:-0.768000pt;}
.ls7b{letter-spacing:-0.645333pt;}
.ls44{letter-spacing:-0.528000pt;}
.ls1a{letter-spacing:-0.512000pt;}
.ls6f{letter-spacing:-0.480000pt;}
.ls7c{letter-spacing:-0.469333pt;}
.ls27{letter-spacing:-0.448000pt;}
.lse{letter-spacing:-0.426667pt;}
.ls1b{letter-spacing:-0.384000pt;}
.ls12{letter-spacing:-0.373333pt;}
.ls19{letter-spacing:-0.320000pt;}
.ls4e{letter-spacing:-0.293333pt;}
.ls18{letter-spacing:-0.266667pt;}
.ls1c{letter-spacing:-0.256000pt;}
.ls26{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.160000pt;}
.ls3c{letter-spacing:-0.128000pt;}
.ls42{letter-spacing:-0.117333pt;}
.lsd{letter-spacing:-0.106667pt;}
.ls14{letter-spacing:-0.064000pt;}
.ls7d{letter-spacing:-0.058667pt;}
.ls6b{letter-spacing:-0.053333pt;}
.lsf{letter-spacing:0.000000pt;}
.ls6a{letter-spacing:0.053333pt;}
.ls43{letter-spacing:0.058667pt;}
.ls4c{letter-spacing:0.064000pt;}
.ls16{letter-spacing:0.106667pt;}
.ls1d{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.192000pt;}
.ls52{letter-spacing:0.204800pt;}
.ls17{letter-spacing:0.213333pt;}
.ls38{letter-spacing:0.243200pt;}
.ls15{letter-spacing:0.256000pt;}
.ls6c{letter-spacing:0.266667pt;}
.ls9{letter-spacing:0.275200pt;}
.ls7a{letter-spacing:0.293333pt;}
.ls3a{letter-spacing:0.300800pt;}
.ls5{letter-spacing:0.320000pt;}
.ls40{letter-spacing:0.352000pt;}
.ls4b{letter-spacing:0.358400pt;}
.ls25{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.390400pt;}
.ls8{letter-spacing:0.409600pt;}
.ls4d{letter-spacing:0.410667pt;}
.ls37{letter-spacing:0.426667pt;}
.ls7{letter-spacing:0.428800pt;}
.ls6{letter-spacing:0.448000pt;}
.ls65{letter-spacing:0.480000pt;}
.ls2c{letter-spacing:0.512000pt;}
.ls13{letter-spacing:0.522667pt;}
.ls5e{letter-spacing:0.693333pt;}
.ls5d{letter-spacing:0.800000pt;}
.lsb{letter-spacing:1.024000pt;}
.ls60{letter-spacing:1.061333pt;}
.ls61{letter-spacing:1.066667pt;}
.ls39{letter-spacing:1.081600pt;}
.ls45{letter-spacing:1.267200pt;}
.ls50{letter-spacing:1.472000pt;}
.ls74{letter-spacing:1.546667pt;}
.ls5f{letter-spacing:1.760000pt;}
.ls21{letter-spacing:1.920000pt;}
.ls51{letter-spacing:2.092800pt;}
.ls30{letter-spacing:2.112000pt;}
.ls55{letter-spacing:2.496000pt;}
.ls64{letter-spacing:2.826667pt;}
.ls22{letter-spacing:3.200000pt;}
.ls79{letter-spacing:3.637333pt;}
.ls67{letter-spacing:3.893333pt;}
.ls2b{letter-spacing:4.224000pt;}
.ls56{letter-spacing:4.608000pt;}
.ls62{letter-spacing:4.960000pt;}
.ls3b{letter-spacing:5.312000pt;}
.ls20{letter-spacing:5.696000pt;}
.lsa{letter-spacing:6.400000pt;}
.ls3f{letter-spacing:6.720000pt;}
.ls28{letter-spacing:7.424000pt;}
.ls3d{letter-spacing:7.808000pt;}
.ls76{letter-spacing:8.160000pt;}
.ls32{letter-spacing:8.512000pt;}
.ls2d{letter-spacing:9.600000pt;}
.ls66{letter-spacing:10.293333pt;}
.ls23{letter-spacing:10.624000pt;}
.ls1e{letter-spacing:11.712000pt;}
.ls41{letter-spacing:12.496000pt;}
.ls4f{letter-spacing:12.652800pt;}
.ls35{letter-spacing:12.800000pt;}
.ls78{letter-spacing:13.141333pt;}
.ls46{letter-spacing:13.824000pt;}
.ls58{letter-spacing:14.912000pt;}
.ls2f{letter-spacing:16.000000pt;}
.ls68{letter-spacing:17.754667pt;}
.ls72{letter-spacing:19.893333pt;}
.ls5a{letter-spacing:20.373333pt;}
.ls57{letter-spacing:22.400000pt;}
.ls53{letter-spacing:24.512000pt;}
.ls59{letter-spacing:24.896000pt;}
.ls73{letter-spacing:26.293333pt;}
.ls34{letter-spacing:28.096000pt;}
.ls24{letter-spacing:29.120000pt;}
.ls75{letter-spacing:29.493333pt;}
.lsc{letter-spacing:32.000000pt;}
.ls70{letter-spacing:36.960000pt;}
.ls54{letter-spacing:38.400000pt;}
.ls5b{letter-spacing:41.226667pt;}
.ls5c{letter-spacing:42.293333pt;}
.ls63{letter-spacing:44.426667pt;}
.ls77{letter-spacing:46.560000pt;}
.ls69{letter-spacing:56.160000pt;}
.ls71{letter-spacing:172.426667pt;}
.ls3{letter-spacing:443.360000pt;}
.ls2{letter-spacing:526.560000pt;}
.ls2a{letter-spacing:602.293333pt;}
.ls1{letter-spacing:740.960000pt;}
.ls33{letter-spacing:843.200000pt;}
.ls1f{letter-spacing:870.933333pt;}
.ls0{letter-spacing:1111.093333pt;}
.ws7e{word-spacing:-64.000000pt;}
.wsd5{word-spacing:-38.400000pt;}
.wsd2{word-spacing:-24.512000pt;}
.wsda{word-spacing:-22.400000pt;}
.wsc8{word-spacing:-17.472000pt;}
.ws1{word-spacing:-17.408000pt;}
.ws4f{word-spacing:-17.344000pt;}
.ws7{word-spacing:-17.280000pt;}
.ws2{word-spacing:-17.088000pt;}
.ws8{word-spacing:-17.024000pt;}
.ws30{word-spacing:-16.896000pt;}
.ws2d{word-spacing:-16.832000pt;}
.ws2c{word-spacing:-16.768000pt;}
.ws2e{word-spacing:-16.704000pt;}
.ws71{word-spacing:-16.640000pt;}
.ws4e{word-spacing:-16.576000pt;}
.ws2b{word-spacing:-16.512000pt;}
.ws72{word-spacing:-16.384000pt;}
.wsaa{word-spacing:-16.320000pt;}
.ws2a{word-spacing:-16.192000pt;}
.wsb1{word-spacing:-16.128000pt;}
.ws110{word-spacing:-16.016000pt;}
.ws2f{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.936000pt;}
.ws5{word-spacing:-15.872000pt;}
.wsb2{word-spacing:-15.722667pt;}
.ws9{word-spacing:-15.680000pt;}
.ws95{word-spacing:-15.664000pt;}
.wsb3{word-spacing:-15.546667pt;}
.ws10f{word-spacing:-15.194667pt;}
.wse8{word-spacing:-15.040000pt;}
.wsdc{word-spacing:-14.912000pt;}
.wsee{word-spacing:-14.666667pt;}
.wsea{word-spacing:-14.560000pt;}
.ws10e{word-spacing:-14.549333pt;}
.wse7{word-spacing:-14.506667pt;}
.wse5{word-spacing:-14.453333pt;}
.ws4d{word-spacing:-14.346667pt;}
.wse9{word-spacing:-14.293333pt;}
.wseb{word-spacing:-14.240000pt;}
.wse6{word-spacing:-14.186667pt;}
.ws4{word-spacing:-13.973333pt;}
.ws3{word-spacing:-13.866667pt;}
.ws98{word-spacing:-13.824000pt;}
.ws0{word-spacing:-13.813333pt;}
.wsed{word-spacing:-13.760000pt;}
.wsec{word-spacing:-13.226667pt;}
.wse4{word-spacing:-13.066667pt;}
.ws10d{word-spacing:-13.013333pt;}
.wsef{word-spacing:-12.906667pt;}
.ws75{word-spacing:-12.800000pt;}
.ws28{word-spacing:-11.712000pt;}
.ws60{word-spacing:-10.624000pt;}
.wsce{word-spacing:-9.968000pt;}
.ws55{word-spacing:-9.600000pt;}
.ws6f{word-spacing:-8.512000pt;}
.ws39{word-spacing:-7.424000pt;}
.ws70{word-spacing:-6.400000pt;}
.wsa9{word-spacing:-5.312000pt;}
.ws40{word-spacing:-4.544000pt;}
.ws42{word-spacing:-4.480000pt;}
.ws66{word-spacing:-4.224000pt;}
.wscf{word-spacing:-3.904000pt;}
.ws3f{word-spacing:-3.776000pt;}
.wsf6{word-spacing:-3.520000pt;}
.wsdb{word-spacing:-3.456000pt;}
.ws56{word-spacing:-3.392000pt;}
.ws119{word-spacing:-3.200000pt;}
.wsf5{word-spacing:-3.146667pt;}
.ws79{word-spacing:-3.136000pt;}
.ws89{word-spacing:-3.072000pt;}
.ws6c{word-spacing:-3.008000pt;}
.ws7f{word-spacing:-2.944000pt;}
.ws53{word-spacing:-2.816000pt;}
.ws52{word-spacing:-2.752000pt;}
.ws101{word-spacing:-2.720000pt;}
.ws57{word-spacing:-2.688000pt;}
.wsdd{word-spacing:-2.432000pt;}
.ws73{word-spacing:-2.368000pt;}
.ws65{word-spacing:-2.112000pt;}
.ws102{word-spacing:-2.080000pt;}
.wsc3{word-spacing:-2.048000pt;}
.ws29{word-spacing:-1.792000pt;}
.wsc4{word-spacing:-1.728000pt;}
.ws21{word-spacing:-1.664000pt;}
.ws120{word-spacing:-1.653333pt;}
.ws121{word-spacing:-1.546667pt;}
.wsc9{word-spacing:-1.536000pt;}
.ws4b{word-spacing:-1.280000pt;}
.wsfe{word-spacing:-1.066667pt;}
.ws33{word-spacing:-1.024000pt;}
.wsff{word-spacing:-1.013333pt;}
.ws88{word-spacing:-0.896000pt;}
.wsd7{word-spacing:-0.832000pt;}
.wsa2{word-spacing:-0.704000pt;}
.wsae{word-spacing:-0.640000pt;}
.ws17{word-spacing:-0.586667pt;}
.ws4a{word-spacing:-0.576000pt;}
.wsb6{word-spacing:-0.512000pt;}
.ws16{word-spacing:-0.480000pt;}
.ws87{word-spacing:-0.448000pt;}
.ws105{word-spacing:-0.426667pt;}
.wsd{word-spacing:-0.373333pt;}
.ws14{word-spacing:-0.320000pt;}
.wsa{word-spacing:-0.266667pt;}
.ws15{word-spacing:-0.256000pt;}
.ws11{word-spacing:-0.224000pt;}
.wse{word-spacing:-0.213333pt;}
.wsf{word-spacing:-0.192000pt;}
.ws50{word-spacing:-0.106667pt;}
.wsbe{word-spacing:-0.058667pt;}
.wsf4{word-spacing:-0.053333pt;}
.wsb{word-spacing:0.000000pt;}
.wsc{word-spacing:0.053333pt;}
.ws124{word-spacing:0.058667pt;}
.ws13{word-spacing:0.064000pt;}
.ws7b{word-spacing:0.128000pt;}
.ws48{word-spacing:0.192000pt;}
.ws49{word-spacing:0.256000pt;}
.ws19{word-spacing:0.266667pt;}
.ws12{word-spacing:0.298667pt;}
.ws3c{word-spacing:0.320000pt;}
.ws128{word-spacing:0.352000pt;}
.ws10{word-spacing:0.373333pt;}
.ws1e{word-spacing:0.384000pt;}
.ws127{word-spacing:0.410667pt;}
.ws18{word-spacing:0.426667pt;}
.ws36{word-spacing:0.448000pt;}
.ws126{word-spacing:0.469333pt;}
.wsf7{word-spacing:0.480000pt;}
.ws26{word-spacing:0.512000pt;}
.ws43{word-spacing:0.576000pt;}
.wsbf{word-spacing:0.645333pt;}
.ws9c{word-spacing:0.768000pt;}
.ws23{word-spacing:0.832000pt;}
.ws94{word-spacing:0.880000pt;}
.ws1d{word-spacing:1.088000pt;}
.wsa7{word-spacing:1.152000pt;}
.wsf9{word-spacing:1.333333pt;}
.ws38{word-spacing:1.408000pt;}
.ws99{word-spacing:1.472000pt;}
.ws22{word-spacing:1.536000pt;}
.ws76{word-spacing:1.600000pt;}
.wsab{word-spacing:1.664000pt;}
.ws9a{word-spacing:1.856000pt;}
.ws46{word-spacing:1.920000pt;}
.ws44{word-spacing:2.176000pt;}
.wsf8{word-spacing:2.186667pt;}
.wsac{word-spacing:2.304000pt;}
.wscb{word-spacing:2.368000pt;}
.ws93{word-spacing:2.405333pt;}
.ws3d{word-spacing:2.496000pt;}
.ws92{word-spacing:2.581333pt;}
.wsa0{word-spacing:2.624000pt;}
.wsc0{word-spacing:2.944000pt;}
.ws83{word-spacing:3.008000pt;}
.ws125{word-spacing:3.109333pt;}
.ws6d{word-spacing:3.200000pt;}
.ws3e{word-spacing:3.264000pt;}
.wse2{word-spacing:3.392000pt;}
.wsa3{word-spacing:3.456000pt;}
.ws63{word-spacing:3.584000pt;}
.wsf0{word-spacing:3.648000pt;}
.ws107{word-spacing:3.680000pt;}
.ws62{word-spacing:3.712000pt;}
.wsa1{word-spacing:3.904000pt;}
.ws58{word-spacing:4.032000pt;}
.ws41{word-spacing:4.288000pt;}
.ws108{word-spacing:4.320000pt;}
.wsa8{word-spacing:4.416000pt;}
.wsb5{word-spacing:4.480000pt;}
.ws59{word-spacing:4.608000pt;}
.ws5a{word-spacing:4.736000pt;}
.ws113{word-spacing:4.746667pt;}
.wsfd{word-spacing:4.853333pt;}
.ws103{word-spacing:4.906667pt;}
.ws7d{word-spacing:5.056000pt;}
.ws7c{word-spacing:5.120000pt;}
.ws112{word-spacing:5.226667pt;}
.wsfc{word-spacing:5.333333pt;}
.ws8d{word-spacing:5.376000pt;}
.ws104{word-spacing:5.386667pt;}
.wsc7{word-spacing:5.504000pt;}
.ws8c{word-spacing:5.568000pt;}
.ws8b{word-spacing:5.696000pt;}
.ws97{word-spacing:5.760000pt;}
.ws34{word-spacing:5.824000pt;}
.ws96{word-spacing:5.888000pt;}
.ws64{word-spacing:6.208000pt;}
.ws1a{word-spacing:6.464000pt;}
.ws35{word-spacing:6.784000pt;}
.ws61{word-spacing:6.912000pt;}
.ws3a{word-spacing:7.168000pt;}
.ws45{word-spacing:7.232000pt;}
.ws51{word-spacing:7.488000pt;}
.ws5c{word-spacing:7.616000pt;}
.ws8a{word-spacing:7.680000pt;}
.ws9b{word-spacing:7.808000pt;}
.ws91{word-spacing:7.872000pt;}
.ws37{word-spacing:7.936000pt;}
.ws114{word-spacing:8.106667pt;}
.ws78{word-spacing:8.320000pt;}
.ws115{word-spacing:8.533333pt;}
.ws1f{word-spacing:8.576000pt;}
.ws116{word-spacing:8.586667pt;}
.ws5b{word-spacing:8.896000pt;}
.ws20{word-spacing:9.024000pt;}
.ws6a{word-spacing:9.408000pt;}
.ws11b{word-spacing:9.973333pt;}
.ws6b{word-spacing:9.984000pt;}
.ws54{word-spacing:10.048000pt;}
.ws80{word-spacing:10.112000pt;}
.ws11c{word-spacing:10.186667pt;}
.ws11e{word-spacing:10.293333pt;}
.wsb0{word-spacing:10.432000pt;}
.ws11d{word-spacing:10.666667pt;}
.wsaf{word-spacing:10.688000pt;}
.ws109{word-spacing:10.720000pt;}
.wsf1{word-spacing:11.008000pt;}
.ws47{word-spacing:11.072000pt;}
.wsa4{word-spacing:11.264000pt;}
.ws1c{word-spacing:11.520000pt;}
.ws106{word-spacing:11.733333pt;}
.ws84{word-spacing:11.776000pt;}
.ws8f{word-spacing:12.096000pt;}
.ws1b{word-spacing:12.224000pt;}
.wsa5{word-spacing:12.544000pt;}
.ws4c{word-spacing:12.608000pt;}
.ws123{word-spacing:12.730667pt;}
.ws74{word-spacing:12.864000pt;}
.ws8e{word-spacing:12.992000pt;}
.ws122{word-spacing:13.200000pt;}
.ws90{word-spacing:13.312000pt;}
.ws31{word-spacing:13.504000pt;}
.wsd0{word-spacing:13.632000pt;}
.wsd1{word-spacing:14.016000pt;}
.wsb4{word-spacing:14.080000pt;}
.wsc5{word-spacing:14.208000pt;}
.ws77{word-spacing:14.336000pt;}
.ws3b{word-spacing:14.720000pt;}
.wsad{word-spacing:14.976000pt;}
.ws7a{word-spacing:15.296000pt;}
.ws32{word-spacing:15.424000pt;}
.wsde{word-spacing:15.808000pt;}
.ws5e{word-spacing:16.064000pt;}
.ws5f{word-spacing:16.384000pt;}
.ws67{word-spacing:16.512000pt;}
.wsbd{word-spacing:16.832000pt;}
.wsca{word-spacing:17.088000pt;}
.ws111{word-spacing:17.120000pt;}
.ws69{word-spacing:17.280000pt;}
.ws68{word-spacing:17.408000pt;}
.wsd8{word-spacing:17.536000pt;}
.ws85{word-spacing:17.920000pt;}
.ws82{word-spacing:18.176000pt;}
.ws10a{word-spacing:18.186667pt;}
.ws86{word-spacing:18.304000pt;}
.wsbc{word-spacing:18.496000pt;}
.ws117{word-spacing:18.773333pt;}
.ws118{word-spacing:19.253333pt;}
.ws25{word-spacing:19.584000pt;}
.ws81{word-spacing:19.712000pt;}
.ws5d{word-spacing:20.032000pt;}
.wsa6{word-spacing:20.608000pt;}
.wsbb{word-spacing:21.120000pt;}
.wsba{word-spacing:21.568000pt;}
.wse1{word-spacing:21.824000pt;}
.wsc1{word-spacing:22.784000pt;}
.wsd9{word-spacing:22.848000pt;}
.wsc2{word-spacing:22.912000pt;}
.wscd{word-spacing:23.232000pt;}
.wsd3{word-spacing:24.896000pt;}
.ws11a{word-spacing:25.653333pt;}
.ws9d{word-spacing:27.712000pt;}
.ws9e{word-spacing:27.776000pt;}
.ws9f{word-spacing:28.224000pt;}
.wse3{word-spacing:28.608000pt;}
.wse0{word-spacing:29.184000pt;}
.wsdf{word-spacing:29.312000pt;}
.ws24{word-spacing:29.888000pt;}
.ws11f{word-spacing:29.920000pt;}
.ws27{word-spacing:31.872000pt;}
.wsd6{word-spacing:32.064000pt;}
.wscc{word-spacing:37.824000pt;}
.wsd4{word-spacing:38.144000pt;}
.wsf2{word-spacing:41.173333pt;}
.wsf3{word-spacing:41.653333pt;}
.wsb7{word-spacing:41.664000pt;}
.wsb9{word-spacing:42.688000pt;}
.wsb8{word-spacing:43.136000pt;}
.ws100{word-spacing:45.920000pt;}
.ws10b{word-spacing:56.106667pt;}
.ws10c{word-spacing:56.586667pt;}
.ws6e{word-spacing:66.496000pt;}
.wsfa{word-spacing:90.666667pt;}
.wsfb{word-spacing:90.720000pt;}
.wsc6{word-spacing:99.584000pt;}
._33{margin-left:-38.890667pt;}
._36{margin-left:-37.804800pt;}
._35{margin-left:-36.204800pt;}
._2f{margin-left:-24.576000pt;}
._31{margin-left:-23.475200pt;}
._38{margin-left:-22.547200pt;}
._39{margin-left:-21.478400pt;}
._21{margin-left:-16.908800pt;}
._20{margin-left:-15.852800pt;}
._23{margin-left:-14.624000pt;}
._25{margin-left:-12.972800pt;}
._7{margin-left:-11.987200pt;}
._9{margin-left:-11.072000pt;}
._1f{margin-left:-10.161067pt;}
._1d{margin-left:-9.207467pt;}
._15{margin-left:-8.275200pt;}
._14{margin-left:-7.104000pt;}
._16{margin-left:-5.939200pt;}
._19{margin-left:-4.257067pt;}
._12{margin-left:-3.338667pt;}
._6{margin-left:-2.069333pt;}
._5{margin-left:-0.960000pt;}
._0{width:1.013333pt;}
._2{width:2.085333pt;}
._a{width:3.582933pt;}
._1a{width:4.928000pt;}
._1b{width:6.121600pt;}
._b{width:7.321600pt;}
._e{width:8.676267pt;}
._1e{width:9.956267pt;}
._f{width:11.003733pt;}
._8{width:11.897600pt;}
._26{width:12.791467pt;}
._24{width:13.928533pt;}
._18{width:15.065600pt;}
._22{width:16.000000pt;}
._42{width:17.028267pt;}
._43{width:18.044800pt;}
._c{width:19.033600pt;}
._d{width:20.366933pt;}
._3b{width:21.653333pt;}
._11{width:22.845867pt;}
._10{width:23.776000pt;}
._32{width:25.024000pt;}
._30{width:26.316800pt;}
._29{width:28.064000pt;}
._3c{width:29.141333pt;}
._3d{width:30.045867pt;}
._3a{width:36.672000pt;}
._34{width:38.400000pt;}
._37{width:40.083200pt;}
._3e{width:41.269333pt;}
._41{width:44.960000pt;}
._45{width:47.408000pt;}
._44{width:56.800000pt;}
._40{width:89.973333pt;}
._3f{width:90.986667pt;}
._3{width:572.320000pt;}
._27{width:651.514667pt;}
._1c{width:679.248000pt;}
._4{width:689.760000pt;}
._13{width:700.533333pt;}
._1{width:732.640000pt;}
._17{width:832.000000pt;}
._2c{width:944.000000pt;}
._2e{width:1056.000000pt;}
._2b{width:1239.424000pt;}
._28{width:1248.000000pt;}
._2a{width:1255.424000pt;}
._2d{width:1351.424000pt;}
.fs2{font-size:21.333333pt;}
.fs6{font-size:26.666667pt;}
.fs8{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y127{bottom:1.333333pt;}
.y9{bottom:2.933333pt;}
.y12b{bottom:4.000000pt;}
.y12f{bottom:4.266667pt;}
.y7{bottom:4.533333pt;}
.ya{bottom:5.066667pt;}
.y9d{bottom:6.133333pt;}
.y12a{bottom:23.200000pt;}
.yd4{bottom:25.066667pt;}
.ya2{bottom:25.333333pt;}
.y4{bottom:60.266667pt;}
.y104{bottom:89.600000pt;}
.y139{bottom:91.472000pt;}
.y36{bottom:93.066667pt;}
.y17a{bottom:93.376000pt;}
.y80{bottom:93.418667pt;}
.y14b{bottom:93.872000pt;}
.y112{bottom:98.133333pt;}
.ycf{bottom:98.400000pt;}
.y135{bottom:98.666667pt;}
.yeb{bottom:100.000000pt;}
.y192{bottom:100.341333pt;}
.y1c0{bottom:102.933333pt;}
.y163{bottom:103.221333pt;}
.y5f{bottom:103.509333pt;}
.ybd{bottom:105.637333pt;}
.y9b{bottom:108.565333pt;}
.y138{bottom:112.000000pt;}
.y35{bottom:113.866667pt;}
.y179{bottom:113.904000pt;}
.y7f{bottom:113.946667pt;}
.y14a{bottom:114.400000pt;}
.y105{bottom:114.666667pt;}
.y111{bottom:116.266667pt;}
.y134{bottom:119.466667pt;}
.y1bf{bottom:120.000000pt;}
.yea{bottom:120.837333pt;}
.y191{bottom:120.869333pt;}
.y110{bottom:122.933333pt;}
.y162{bottom:124.021333pt;}
.y5e{bottom:124.037333pt;}
.ybc{bottom:126.437333pt;}
.y9a{bottom:129.093333pt;}
.y137{bottom:130.133333pt;}
.y149{bottom:130.666667pt;}
.y103{bottom:130.933333pt;}
.y34{bottom:133.066667pt;}
.y178{bottom:134.704000pt;}
.y7e{bottom:134.746667pt;}
.yce{bottom:134.933333pt;}
.y136{bottom:137.066667pt;}
.y1be{bottom:137.333333pt;}
.y133{bottom:140.266667pt;}
.ycc{bottom:141.626667pt;}
.ye9{bottom:141.637333pt;}
.y190{bottom:141.669333pt;}
.y161{bottom:144.549333pt;}
.y5d{bottom:144.837333pt;}
.ybb{bottom:146.965333pt;}
.y33{bottom:148.288000pt;}
.y99{bottom:149.893333pt;}
.y148{bottom:151.466667pt;}
.y102{bottom:151.733333pt;}
.y1bd{bottom:154.666667pt;}
.y177{bottom:155.504000pt;}
.y7d{bottom:155.546667pt;}
.ycd{bottom:156.533333pt;}
.y132{bottom:159.200000pt;}
.ye8{bottom:162.165333pt;}
.ycb{bottom:162.426667pt;}
.y18f{bottom:162.469333pt;}
.y160{bottom:165.349333pt;}
.y5c{bottom:165.637333pt;}
.yba{bottom:167.765333pt;}
.y32{bottom:169.088000pt;}
.y98{bottom:170.693333pt;}
.y1bc{bottom:171.733333pt;}
.y131{bottom:174.666667pt;}
.y176{bottom:176.032000pt;}
.y7c{bottom:176.074667pt;}
.y13a{bottom:182.933333pt;}
.yca{bottom:182.954667pt;}
.ye7{bottom:182.965333pt;}
.y18e{bottom:182.997333pt;}
.y15f{bottom:186.149333pt;}
.y5b{bottom:186.165333pt;}
.yb9{bottom:188.565333pt;}
.y1bb{bottom:189.066667pt;}
.y31{bottom:189.888000pt;}
.y97{bottom:191.221333pt;}
.y130{bottom:192.800000pt;}
.y175{bottom:196.832000pt;}
.y7b{bottom:196.874667pt;}
.y12e{bottom:200.000000pt;}
.yc9{bottom:203.754667pt;}
.ye6{bottom:203.765333pt;}
.y18d{bottom:203.797333pt;}
.y1ba{bottom:206.400000pt;}
.y15e{bottom:206.677333pt;}
.y5a{bottom:206.965333pt;}
.yb8{bottom:209.093333pt;}
.y30{bottom:210.416000pt;}
.y96{bottom:212.021333pt;}
.y174{bottom:217.632000pt;}
.y7a{bottom:217.674667pt;}
.y1b9{bottom:223.733333pt;}
.ye5{bottom:224.293333pt;}
.yc8{bottom:224.554667pt;}
.y18c{bottom:224.597333pt;}
.y15d{bottom:227.477333pt;}
.y59{bottom:227.765333pt;}
.yb7{bottom:229.893333pt;}
.y2f{bottom:231.216000pt;}
.y95{bottom:232.549333pt;}
.y12c{bottom:238.133333pt;}
.y173{bottom:238.160000pt;}
.y79{bottom:238.202667pt;}
.y1b8{bottom:240.800000pt;}
.y12d{bottom:244.800000pt;}
.yc7{bottom:245.082667pt;}
.ye4{bottom:245.093333pt;}
.y18b{bottom:245.125333pt;}
.y15c{bottom:248.277333pt;}
.y58{bottom:248.293333pt;}
.yb6{bottom:250.693333pt;}
.y2e{bottom:252.016000pt;}
.y94{bottom:253.349333pt;}
.y1b7{bottom:258.133333pt;}
.y172{bottom:258.960000pt;}
.y78{bottom:259.002667pt;}
.yc6{bottom:265.882667pt;}
.ye3{bottom:265.893333pt;}
.y18a{bottom:265.925333pt;}
.y15b{bottom:268.805333pt;}
.y57{bottom:269.093333pt;}
.yb5{bottom:271.221333pt;}
.y2d{bottom:272.544000pt;}
.y93{bottom:274.149333pt;}
.y1b6{bottom:275.466667pt;}
.y171{bottom:279.760000pt;}
.y77{bottom:279.802667pt;}
.yc5{bottom:286.410667pt;}
.ye2{bottom:286.421333pt;}
.y189{bottom:286.453333pt;}
.y15a{bottom:289.605333pt;}
.y56{bottom:289.621333pt;}
.yb4{bottom:292.021333pt;}
.y1b5{bottom:292.533333pt;}
.y2c{bottom:293.344000pt;}
.y92{bottom:294.677333pt;}
.y170{bottom:300.288000pt;}
.y76{bottom:300.330667pt;}
.yc4{bottom:307.210667pt;}
.ye1{bottom:307.221333pt;}
.y188{bottom:307.253333pt;}
.y1b4{bottom:309.866667pt;}
.y159{bottom:310.133333pt;}
.y55{bottom:310.421333pt;}
.yb3{bottom:312.821333pt;}
.y2b{bottom:313.872000pt;}
.y91{bottom:315.477333pt;}
.y16f{bottom:321.088000pt;}
.y75{bottom:321.130667pt;}
.y1b3{bottom:327.200000pt;}
.yc3{bottom:328.010667pt;}
.ye0{bottom:328.021333pt;}
.y187{bottom:328.053333pt;}
.y158{bottom:330.933333pt;}
.y54{bottom:331.221333pt;}
.yb2{bottom:333.349333pt;}
.y2a{bottom:334.672000pt;}
.y90{bottom:336.277333pt;}
.y16e{bottom:341.616000pt;}
.y74{bottom:341.658667pt;}
.y1b2{bottom:344.266667pt;}
.y1e5{bottom:344.800000pt;}
.y147{bottom:346.400000pt;}
.yc2{bottom:348.538667pt;}
.ydf{bottom:348.549333pt;}
.y186{bottom:348.581333pt;}
.y157{bottom:351.733333pt;}
.y53{bottom:351.749333pt;}
.yb1{bottom:354.149333pt;}
.y29{bottom:355.472000pt;}
.y8f{bottom:356.805333pt;}
.y10f{bottom:360.000000pt;}
.y1b1{bottom:361.600000pt;}
.y146{bottom:361.605333pt;}
.y1e4{bottom:362.400000pt;}
.y16d{bottom:362.416000pt;}
.y73{bottom:362.458667pt;}
.yc1{bottom:369.338667pt;}
.yde{bottom:369.349333pt;}
.y185{bottom:369.381333pt;}
.y129{bottom:370.666667pt;}
.y101{bottom:372.533333pt;}
.y52{bottom:372.549333pt;}
.yb0{bottom:374.677333pt;}
.y10e{bottom:375.477333pt;}
.y28{bottom:376.000000pt;}
.y8e{bottom:377.605333pt;}
.y1b0{bottom:378.933333pt;}
.y1e3{bottom:380.266667pt;}
.y145{bottom:382.405333pt;}
.y16c{bottom:383.216000pt;}
.y72{bottom:383.258667pt;}
.y156{bottom:386.144000pt;}
.y100{bottom:388.026667pt;}
.ydd{bottom:389.877333pt;}
.yc0{bottom:390.138667pt;}
.y184{bottom:390.181333pt;}
.y51{bottom:393.349333pt;}
.y1e2{bottom:395.193333pt;}
.y27{bottom:395.200000pt;}
.yaf{bottom:395.477333pt;}
.y10d{bottom:396.005333pt;}
.y1af{bottom:396.266667pt;}
.y8d{bottom:398.405333pt;}
.y144{bottom:403.205333pt;}
.y16b{bottom:403.744000pt;}
.y71{bottom:403.786667pt;}
.y155{bottom:406.944000pt;}
.y126{bottom:408.800000pt;}
.yff{bottom:408.826667pt;}
.ybf{bottom:410.666667pt;}
.y26{bottom:410.672000pt;}
.ydc{bottom:410.677333pt;}
.y183{bottom:410.709333pt;}
.y128{bottom:413.333333pt;}
.y50{bottom:413.877333pt;}
.y1e1{bottom:414.128000pt;}
.yae{bottom:416.277333pt;}
.y10c{bottom:416.805333pt;}
.y8c{bottom:418.933333pt;}
.y143{bottom:423.733333pt;}
.y16a{bottom:424.544000pt;}
.y70{bottom:424.586667pt;}
.y154{bottom:427.472000pt;}
.yfe{bottom:429.354667pt;}
.ybe{bottom:429.866667pt;}
.y1ae{bottom:430.666667pt;}
.y25{bottom:431.200000pt;}
.ydb{bottom:431.477333pt;}
.y182{bottom:431.509333pt;}
.y1e0{bottom:433.062667pt;}
.y4f{bottom:434.677333pt;}
.yad{bottom:436.805333pt;}
.y10b{bottom:437.333333pt;}
.y8b{bottom:439.733333pt;}
.y142{bottom:442.933333pt;}
.y169{bottom:445.344000pt;}
.y6f{bottom:445.386667pt;}
.y1ad{bottom:448.000000pt;}
.y153{bottom:448.272000pt;}
.yfd{bottom:450.154667pt;}
.y24{bottom:450.400000pt;}
.yda{bottom:452.005333pt;}
.y181{bottom:452.309333pt;}
.y4e{bottom:455.477333pt;}
.y1df{bottom:456.265333pt;}
.yac{bottom:457.605333pt;}
.y10a{bottom:458.133333pt;}
.y141{bottom:458.405333pt;}
.y8a{bottom:458.666667pt;}
.y1ac{bottom:465.066667pt;}
.y168{bottom:465.872000pt;}
.y23{bottom:465.888000pt;}
.y6e{bottom:465.914667pt;}
.y152{bottom:469.072000pt;}
.yfc{bottom:470.682667pt;}
.yd9{bottom:472.805333pt;}
.y180{bottom:472.837333pt;}
.y89{bottom:474.133333pt;}
.y4d{bottom:476.005333pt;}
.yab{bottom:478.405333pt;}
.y109{bottom:478.933333pt;}
.y1ab{bottom:482.400000pt;}
.y22{bottom:486.416000pt;}
.y167{bottom:486.672000pt;}
.y6d{bottom:486.714667pt;}
.y151{bottom:489.600000pt;}
.yfb{bottom:491.482667pt;}
.yd8{bottom:493.605333pt;}
.y17f{bottom:493.637333pt;}
.y1de{bottom:494.398667pt;}
.y88{bottom:494.933333pt;}
.y4c{bottom:496.805333pt;}
.y108{bottom:497.866667pt;}
.yaa{bottom:498.933333pt;}
.y140{bottom:499.733333pt;}
.y21{bottom:507.216000pt;}
.y166{bottom:507.472000pt;}
.y6c{bottom:507.514667pt;}
.y150{bottom:510.400000pt;}
.yfa{bottom:512.282667pt;}
.y87{bottom:513.066667pt;}
.y107{bottom:513.333333pt;}
.yd7{bottom:514.133333pt;}
.y17e{bottom:514.165333pt;}
.y1aa{bottom:516.800000pt;}
.y4b{bottom:517.333333pt;}
.y13f{bottom:517.866667pt;}
.y86{bottom:519.733333pt;}
.y13e{bottom:524.533333pt;}
.y165{bottom:528.000000pt;}
.y20{bottom:528.016000pt;}
.y6b{bottom:528.042667pt;}
.y14f{bottom:529.600000pt;}
.y1dd{bottom:531.200000pt;}
.y106{bottom:531.466667pt;}
.yf9{bottom:532.810667pt;}
.yd6{bottom:533.333333pt;}
.y1a9{bottom:534.133333pt;}
.y17d{bottom:534.965333pt;}
.y4a{bottom:538.133333pt;}
.ya9{bottom:538.933333pt;}
.yd3{bottom:544.266667pt;}
.y14e{bottom:544.800000pt;}
.y13d{bottom:545.333333pt;}
.y1dc{bottom:545.866667pt;}
.y1f{bottom:548.544000pt;}
.y164{bottom:548.800000pt;}
.y6a{bottom:548.842667pt;}
.y13c{bottom:549.600000pt;}
.y1a8{bottom:551.466667pt;}
.yf8{bottom:553.610667pt;}
.ya8{bottom:554.138667pt;}
.y17c{bottom:555.765333pt;}
.y49{bottom:557.333333pt;}
.y125{bottom:561.066667pt;}
.y14d{bottom:562.933333pt;}
.y1a7{bottom:568.800000pt;}
.yd5{bottom:569.333333pt;}
.y1e{bottom:569.344000pt;}
.y14c{bottom:569.600000pt;}
.y69{bottom:569.642667pt;}
.y48{bottom:572.805333pt;}
.yf7{bottom:574.410667pt;}
.ya7{bottom:574.938667pt;}
.y124{bottom:576.293333pt;}
.y1db{bottom:579.466667pt;}
.yd2{bottom:585.600000pt;}
.y1a6{bottom:585.866667pt;}
.y1d{bottom:590.144000pt;}
.y68{bottom:590.170667pt;}
.y47{bottom:593.333333pt;}
.yf6{bottom:594.938667pt;}
.ya6{bottom:595.738667pt;}
.y1da{bottom:596.266667pt;}
.y123{bottom:597.093333pt;}
.y9e{bottom:598.933333pt;}
.y9c{bottom:599.466667pt;}
.y1a5{bottom:603.200000pt;}
.yd1{bottom:606.400000pt;}
.y1c{bottom:610.672000pt;}
.y67{bottom:610.970667pt;}
.y46{bottom:611.466667pt;}
.y1d9{bottom:613.600000pt;}
.yf5{bottom:615.738667pt;}
.ya5{bottom:616.266667pt;}
.y122{bottom:617.893333pt;}
.y45{bottom:618.133333pt;}
.y1a4{bottom:620.533333pt;}
.y1d8{bottom:630.666667pt;}
.y1b{bottom:631.472000pt;}
.y66{bottom:631.498667pt;}
.yf4{bottom:636.538667pt;}
.ya4{bottom:637.066667pt;}
.y1a3{bottom:637.600000pt;}
.y121{bottom:638.421333pt;}
.y1d7{bottom:648.000000pt;}
.y1a{bottom:652.272000pt;}
.y65{bottom:652.298667pt;}
.y1a2{bottom:654.933333pt;}
.ya3{bottom:656.266667pt;}
.yf3{bottom:657.066667pt;}
.y13b{bottom:657.600000pt;}
.y120{bottom:659.221333pt;}
.y1d6{bottom:665.333333pt;}
.ya1{bottom:666.933333pt;}
.y1a1{bottom:671.466667pt;}
.y19{bottom:672.800000pt;}
.y64{bottom:673.098667pt;}
.yf2{bottom:677.866667pt;}
.y11f{bottom:680.021333pt;}
.y1d5{bottom:682.666667pt;}
.y1a0{bottom:686.666667pt;}
.y18{bottom:693.600000pt;}
.y63{bottom:693.626667pt;}
.yf1{bottom:697.066667pt;}
.y1d4{bottom:699.733333pt;}
.y11e{bottom:700.549333pt;}
.y19f{bottom:705.866667pt;}
.yef{bottom:707.733333pt;}
.ya0{bottom:708.533333pt;}
.yf0{bottom:712.266667pt;}
.y17{bottom:712.533333pt;}
.y62{bottom:714.426667pt;}
.y1d3{bottom:717.066667pt;}
.y11d{bottom:721.349333pt;}
.y19e{bottom:721.354667pt;}
.y16{bottom:727.200000pt;}
.y9f{bottom:729.066667pt;}
.y1d2{bottom:734.400000pt;}
.y61{bottom:735.226667pt;}
.y11c{bottom:742.149333pt;}
.y19d{bottom:742.154667pt;}
.y15{bottom:744.533333pt;}
.yee{bottom:749.333333pt;}
.y1d1{bottom:751.466667pt;}
.y60{bottom:755.754667pt;}
.y14{bottom:761.066667pt;}
.y11b{bottom:762.677333pt;}
.y19c{bottom:762.682667pt;}
.y1d0{bottom:768.800000pt;}
.yed{bottom:769.866667pt;}
.y44{bottom:776.554667pt;}
.y13{bottom:779.733333pt;}
.y11a{bottom:783.477333pt;}
.y19b{bottom:783.482667pt;}
.y1cf{bottom:786.133333pt;}
.y43{bottom:797.354667pt;}
.y12{bottom:799.466667pt;}
.y1ce{bottom:803.200000pt;}
.y119{bottom:804.005333pt;}
.y19a{bottom:804.010667pt;}
.y11{bottom:816.266667pt;}
.y42{bottom:817.882667pt;}
.y1cd{bottom:820.533333pt;}
.yd0{bottom:823.200000pt;}
.y118{bottom:824.805333pt;}
.y199{bottom:824.810667pt;}
.y10{bottom:833.072000pt;}
.y1cc{bottom:837.866667pt;}
.y41{bottom:838.682667pt;}
.y117{bottom:845.605333pt;}
.y198{bottom:845.610667pt;}
.yf{bottom:853.600000pt;}
.y1cb{bottom:855.200000pt;}
.y40{bottom:859.210667pt;}
.y85{bottom:864.533333pt;}
.y116{bottom:866.133333pt;}
.y197{bottom:866.138667pt;}
.y1ca{bottom:872.266667pt;}
.ye{bottom:874.400000pt;}
.y84{bottom:880.000000pt;}
.y3f{bottom:880.010667pt;}
.y115{bottom:886.933333pt;}
.y196{bottom:886.938667pt;}
.y1c9{bottom:889.600000pt;}
.yd{bottom:895.728000pt;}
.y83{bottom:900.800000pt;}
.y3e{bottom:900.810667pt;}
.y17b{bottom:906.133333pt;}
.y1c8{bottom:906.933333pt;}
.y114{bottom:907.733333pt;}
.y195{bottom:907.738667pt;}
.yc{bottom:919.733333pt;}
.y82{bottom:921.333333pt;}
.y3d{bottom:921.338667pt;}
.y1c7{bottom:924.000000pt;}
.y113{bottom:926.666667pt;}
.y194{bottom:928.266667pt;}
.y1c6{bottom:941.333333pt;}
.y81{bottom:942.133333pt;}
.y3c{bottom:942.138667pt;}
.yb{bottom:944.000000pt;}
.y193{bottom:947.466667pt;}
.y1c5{bottom:958.666667pt;}
.y8{bottom:962.933333pt;}
.y3b{bottom:962.938667pt;}
.y1c4{bottom:975.733333pt;}
.y3a{bottom:983.466667pt;}
.y6{bottom:984.266667pt;}
.yec{bottom:988.800000pt;}
.y1c3{bottom:993.066667pt;}
.y39{bottom:1004.266667pt;}
.y5{bottom:1006.666667pt;}
.y1c2{bottom:1010.400000pt;}
.y3{bottom:1017.600000pt;}
.y38{bottom:1025.066667pt;}
.y1c1{bottom:1027.733333pt;}
.y2{bottom:1034.933333pt;}
.y37{bottom:1052.000000pt;}
.y1{bottom:1052.266667pt;}
.h4{height:18.560000pt;}
.h12{height:19.040000pt;}
.h15{height:20.534667pt;}
.h19{height:20.800000pt;}
.h5{height:20.801333pt;}
.h14{height:21.332000pt;}
.h8{height:21.333333pt;}
.h13{height:23.200000pt;}
.hd{height:37.120000pt;}
.h20{height:38.080000pt;}
.h1e{height:38.132000pt;}
.h1c{height:38.133333pt;}
.h1a{height:41.333333pt;}
.h2{height:41.493333pt;}
.h16{height:41.598667pt;}
.hc{height:41.760000pt;}
.h7{height:42.134667pt;}
.h6{height:45.696000pt;}
.he{height:46.400000pt;}
.hf{height:49.792000pt;}
.h18{height:51.040000pt;}
.h10{height:52.317708pt;}
.ha{height:53.312000pt;}
.h21{height:55.625000pt;}
.hb{height:55.680000pt;}
.h17{height:61.187500pt;}
.h3{height:62.812500pt;}
.h9{height:64.960000pt;}
.h11{height:66.750000pt;}
.h1f{height:109.334667pt;}
.h1d{height:132.533333pt;}
.h1b{height:148.532000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w5{width:40.266667pt;}
.w4{width:113.333333pt;}
.w3{width:113.600000pt;}
.we{width:153.600000pt;}
.wb{width:207.466667pt;}
.wc{width:207.733333pt;}
.wd{width:232.800000pt;}
.wf{width:240.000000pt;}
.w10{width:291.466667pt;}
.wa{width:311.201333pt;}
.w7{width:315.466667pt;}
.w6{width:315.733333pt;}
.w9{width:319.998667pt;}
.w11{width:339.733333pt;}
.w2{width:425.066667pt;}
.w8{width:631.200000pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x1b{left:9.600000pt;}
.x2d{left:38.933333pt;}
.x2e{left:53.600000pt;}
.x3{left:70.933333pt;}
.x1{left:81.333333pt;}
.x3e{left:83.200000pt;}
.x3b{left:85.066667pt;}
.x29{left:89.066667pt;}
.x47{left:100.266667pt;}
.x48{left:105.333333pt;}
.x8{left:109.333333pt;}
.x6{left:111.200000pt;}
.x3c{left:113.600000pt;}
.x34{left:119.200000pt;}
.x12{left:128.533333pt;}
.x9{left:134.925333pt;}
.x41{left:139.466667pt;}
.x1f{left:142.933333pt;}
.x1a{left:148.533333pt;}
.x1e{left:151.466667pt;}
.xd{left:153.333333pt;}
.x10{left:156.805333pt;}
.x22{left:164.000000pt;}
.x3d{left:165.600000pt;}
.x3f{left:169.072000pt;}
.x20{left:173.066667pt;}
.x32{left:176.800000pt;}
.x30{left:181.600000pt;}
.x2a{left:186.400000pt;}
.x11{left:189.061333pt;}
.x15{left:191.466667pt;}
.x37{left:196.800000pt;}
.x43{left:200.266667pt;}
.x46{left:208.800000pt;}
.x18{left:210.133333pt;}
.xb{left:214.384000pt;}
.xe{left:215.466667pt;}
.x19{left:216.789333pt;}
.x25{left:218.133333pt;}
.x27{left:226.133333pt;}
.x3a{left:229.866667pt;}
.xa{left:231.200000pt;}
.x39{left:232.800000pt;}
.xc{left:237.840000pt;}
.x44{left:268.538667pt;}
.x33{left:270.400000pt;}
.x16{left:272.266667pt;}
.x2f{left:296.533333pt;}
.x36{left:314.122667pt;}
.x21{left:318.666667pt;}
.xf{left:332.533333pt;}
.x26{left:363.733333pt;}
.x40{left:369.866667pt;}
.x42{left:372.800000pt;}
.x23{left:392.800000pt;}
.x1d{left:394.666667pt;}
.x2{left:396.800000pt;}
.x24{left:401.333333pt;}
.x28{left:415.733333pt;}
.x13{left:420.533333pt;}
.x45{left:442.666667pt;}
.x1c{left:465.866667pt;}
.x2b{left:478.400000pt;}
.x38{left:485.066667pt;}
.x31{left:488.266667pt;}
.x5{left:496.000000pt;}
.x14{left:498.666667pt;}
.x2c{left:504.266667pt;}
.x7{left:609.600000pt;}
.x35{left:710.666667pt;}
.x17{left:713.333333pt;}
}




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