
    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_10d09f343e14a2fdba8bfe28.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_468c2dd2a2ea5ae0006338ee.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_c23c78f56c37a4507b372494.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939453;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_2913f6ceaf4f966363559bea.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_a2b7c6df45caa64689bbc6ae.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4f2cae82a9f930c0152269a4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_2e5163e51f63e4c23860a5d0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2e119116f1b49e1c830860b2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.926270;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_a49f6dcb0267bf65ec43c76c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_144de5074aafd5e5743fc9b3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.701400px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.620000px;}
.v1{vertical-align:30.381600px;}
.ls55{letter-spacing:-2.940000px;}
.ls14{letter-spacing:-0.780000px;}
.ls78{letter-spacing:-0.336000px;}
.ls4c{letter-spacing:-0.300000px;}
.ls79{letter-spacing:-0.288000px;}
.ls47{letter-spacing:-0.240000px;}
.ls15{letter-spacing:-0.225000px;}
.ls77{letter-spacing:-0.192000px;}
.ls46{letter-spacing:-0.180000px;}
.ls75{letter-spacing:-0.144000px;}
.ls33{letter-spacing:-0.120000px;}
.ls82{letter-spacing:-0.096000px;}
.ls32{letter-spacing:-0.060000px;}
.ls76{letter-spacing:-0.048000px;}
.ls13{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004140px;}
.lsf{letter-spacing:0.060000px;}
.ls67{letter-spacing:0.096000px;}
.ls16{letter-spacing:0.120000px;}
.ls6b{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.180000px;}
.ls4f{letter-spacing:0.192000px;}
.ls19{letter-spacing:0.240000px;}
.ls7a{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.300000px;}
.ls23{letter-spacing:0.360000px;}
.ls6d{letter-spacing:0.384000px;}
.lse{letter-spacing:0.420000px;}
.ls49{letter-spacing:0.432000px;}
.ls11{letter-spacing:0.480000px;}
.ls5{letter-spacing:0.540000px;}
.ls4b{letter-spacing:0.576000px;}
.ls1a{letter-spacing:0.600000px;}
.lsb{letter-spacing:0.660000px;}
.ls21{letter-spacing:0.720000px;}
.ls57{letter-spacing:0.768000px;}
.ls1b{letter-spacing:0.780000px;}
.ls65{letter-spacing:0.816000px;}
.ls20{letter-spacing:0.840000px;}
.ls6a{letter-spacing:0.864000px;}
.ls1d{letter-spacing:0.900000px;}
.ls71{letter-spacing:0.912000px;}
.ls34{letter-spacing:0.960000px;}
.ls5e{letter-spacing:1.008000px;}
.ls29{letter-spacing:1.020000px;}
.ls1f{letter-spacing:1.080000px;}
.ls6e{letter-spacing:1.104000px;}
.ls28{letter-spacing:1.140000px;}
.ls10{letter-spacing:1.200000px;}
.ls7{letter-spacing:1.260000px;}
.ls6f{letter-spacing:1.296000px;}
.ls12{letter-spacing:1.320000px;}
.ls3f{letter-spacing:1.380000px;}
.ls2e{letter-spacing:1.440000px;}
.ls69{letter-spacing:1.488000px;}
.ls17{letter-spacing:1.500000px;}
.ls7e{letter-spacing:1.536000px;}
.ls2a{letter-spacing:1.560000px;}
.ls64{letter-spacing:1.584000px;}
.ls43{letter-spacing:1.620000px;}
.ls5c{letter-spacing:1.632000px;}
.lsc{letter-spacing:1.680000px;}
.ls61{letter-spacing:1.728000px;}
.ls30{letter-spacing:1.740000px;}
.lsd{letter-spacing:1.800000px;}
.ls63{letter-spacing:1.824000px;}
.ls8{letter-spacing:1.860000px;}
.ls5d{letter-spacing:1.872000px;}
.ls1e{letter-spacing:1.920000px;}
.ls5a{letter-spacing:1.968000px;}
.ls42{letter-spacing:1.980000px;}
.ls5b{letter-spacing:2.016000px;}
.ls18{letter-spacing:2.040000px;}
.ls4{letter-spacing:2.100000px;}
.ls7d{letter-spacing:2.112000px;}
.ls41{letter-spacing:2.160000px;}
.ls58{letter-spacing:2.220000px;}
.ls2d{letter-spacing:2.280000px;}
.ls22{letter-spacing:2.340000px;}
.ls68{letter-spacing:2.352000px;}
.ls25{letter-spacing:2.400000px;}
.ls81{letter-spacing:2.448000px;}
.ls56{letter-spacing:2.460000px;}
.ls1c{letter-spacing:2.520000px;}
.ls66{letter-spacing:2.544000px;}
.lsa{letter-spacing:2.580000px;}
.ls3b{letter-spacing:2.640000px;}
.ls51{letter-spacing:2.700000px;}
.ls72{letter-spacing:2.736000px;}
.ls40{letter-spacing:2.760000px;}
.ls3e{letter-spacing:2.820000px;}
.ls6c{letter-spacing:2.880000px;}
.ls6{letter-spacing:2.940000px;}
.ls7b{letter-spacing:2.976000px;}
.ls44{letter-spacing:3.000000px;}
.ls53{letter-spacing:3.120000px;}
.ls2c{letter-spacing:3.180000px;}
.ls7c{letter-spacing:3.216000px;}
.ls31{letter-spacing:3.240000px;}
.ls62{letter-spacing:3.264000px;}
.ls24{letter-spacing:3.300000px;}
.ls37{letter-spacing:3.360000px;}
.ls60{letter-spacing:3.408000px;}
.ls4a{letter-spacing:3.420000px;}
.ls74{letter-spacing:3.456000px;}
.ls4e{letter-spacing:3.480000px;}
.ls70{letter-spacing:3.504000px;}
.ls36{letter-spacing:3.600000px;}
.ls45{letter-spacing:3.660000px;}
.ls4d{letter-spacing:3.720000px;}
.ls80{letter-spacing:3.792000px;}
.ls2f{letter-spacing:3.900000px;}
.ls5f{letter-spacing:4.032000px;}
.ls2b{letter-spacing:4.080000px;}
.ls73{letter-spacing:4.128000px;}
.ls35{letter-spacing:4.320000px;}
.ls7f{letter-spacing:4.704000px;}
.ls2{letter-spacing:4.740000px;}
.ls27{letter-spacing:4.800000px;}
.ls48{letter-spacing:4.860000px;}
.ls3d{letter-spacing:5.160000px;}
.ls50{letter-spacing:5.580000px;}
.ls54{letter-spacing:5.640000px;}
.ls3c{letter-spacing:6.240000px;}
.ls52{letter-spacing:6.300000px;}
.ls26{letter-spacing:7.320000px;}
.ls59{letter-spacing:7.680000px;}
.ls0{letter-spacing:59.532876px;}
.ls38{letter-spacing:174.150000px;}
.ls3a{letter-spacing:185.400000px;}
.ls39{letter-spacing:266.625000px;}
.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;}
}
.ws40{word-spacing:-277.875000px;}
.ws80{word-spacing:-20.580000px;}
.ws51{word-spacing:-20.160000px;}
.ws77{word-spacing:-18.720000px;}
.ws85{word-spacing:-18.120000px;}
.ws66{word-spacing:-17.820000px;}
.ws86{word-spacing:-17.640000px;}
.ws81{word-spacing:-17.520000px;}
.ws10{word-spacing:-17.400000px;}
.ws9a{word-spacing:-17.340000px;}
.ws56{word-spacing:-17.040000px;}
.ws82{word-spacing:-16.860000px;}
.ws3c{word-spacing:-16.800000px;}
.ws1{word-spacing:-16.680000px;}
.ws79{word-spacing:-16.620000px;}
.ws4e{word-spacing:-16.320000px;}
.ws4f{word-spacing:-16.200000px;}
.ws78{word-spacing:-16.140000px;}
.ws9e{word-spacing:-16.032000px;}
.ws7a{word-spacing:-15.900000px;}
.ws84{word-spacing:-15.840000px;}
.ws7b{word-spacing:-15.780000px;}
.ws83{word-spacing:-15.600000px;}
.ws65{word-spacing:-15.540000px;}
.ws9b{word-spacing:-15.420000px;}
.ws54{word-spacing:-15.360000px;}
.ws53{word-spacing:-15.300000px;}
.ws12{word-spacing:-15.000000px;}
.ws52{word-spacing:-14.940000px;}
.ws50{word-spacing:-14.820000px;}
.ws55{word-spacing:-14.760000px;}
.ws6d{word-spacing:-14.700000px;}
.wsa1{word-spacing:-14.544000px;}
.wsc9{word-spacing:-14.112000px;}
.wsca{word-spacing:-13.824000px;}
.wsa0{word-spacing:-13.728000px;}
.ws9f{word-spacing:-13.632000px;}
.ws11{word-spacing:-13.500000px;}
.wsc7{word-spacing:-13.488000px;}
.ws3{word-spacing:-13.344000px;}
.wsa3{word-spacing:-13.200000px;}
.wsc8{word-spacing:-12.576000px;}
.ws2{word-spacing:-12.510000px;}
.wsa2{word-spacing:-12.432000px;}
.wsa5{word-spacing:-12.096000px;}
.ws58{word-spacing:-12.000000px;}
.wsa4{word-spacing:-11.952000px;}
.wscb{word-spacing:-11.760000px;}
.ws48{word-spacing:-11.250000px;}
.ws0{word-spacing:-10.210662px;}
.ws91{word-spacing:-6.300000px;}
.ws87{word-spacing:-5.640000px;}
.ws88{word-spacing:-4.860000px;}
.ws8d{word-spacing:-4.800000px;}
.wsc6{word-spacing:-4.128000px;}
.ws2e{word-spacing:-4.080000px;}
.wsae{word-spacing:-4.032000px;}
.ws34{word-spacing:-3.900000px;}
.wsd4{word-spacing:-3.840000px;}
.ws7c{word-spacing:-3.720000px;}
.ws64{word-spacing:-3.660000px;}
.wsc2{word-spacing:-3.504000px;}
.ws7d{word-spacing:-3.480000px;}
.wsac{word-spacing:-3.456000px;}
.wsa6{word-spacing:-3.420000px;}
.wsb0{word-spacing:-3.408000px;}
.ws92{word-spacing:-3.360000px;}
.ws26{word-spacing:-3.300000px;}
.wsb3{word-spacing:-3.264000px;}
.ws39{word-spacing:-3.240000px;}
.ws2f{word-spacing:-3.180000px;}
.wsd6{word-spacing:-3.120000px;}
.ws63{word-spacing:-3.000000px;}
.wsce{word-spacing:-2.976000px;}
.ws37{word-spacing:-2.940000px;}
.ws5{word-spacing:-2.886000px;}
.wsbf{word-spacing:-2.880000px;}
.ws71{word-spacing:-2.820000px;}
.ws5d{word-spacing:-2.760000px;}
.wsc5{word-spacing:-2.736000px;}
.ws8a{word-spacing:-2.700000px;}
.ws90{word-spacing:-2.640000px;}
.wsb9{word-spacing:-2.544000px;}
.ws1b{word-spacing:-2.520000px;}
.ws94{word-spacing:-2.460000px;}
.ws27{word-spacing:-2.400000px;}
.ws30{word-spacing:-2.340000px;}
.ws31{word-spacing:-2.280000px;}
.ws1f{word-spacing:-2.220000px;}
.ws5f{word-spacing:-2.160000px;}
.wsd1{word-spacing:-2.112000px;}
.ws35{word-spacing:-2.100000px;}
.ws23{word-spacing:-2.040000px;}
.wsaa{word-spacing:-2.016000px;}
.ws89{word-spacing:-1.980000px;}
.wsa9{word-spacing:-1.968000px;}
.ws8b{word-spacing:-1.920000px;}
.wsab{word-spacing:-1.872000px;}
.wsa{word-spacing:-1.860000px;}
.wsd3{word-spacing:-1.824000px;}
.ws36{word-spacing:-1.800000px;}
.wsb{word-spacing:-1.740000px;}
.wsb1{word-spacing:-1.728000px;}
.ws3a{word-spacing:-1.680000px;}
.wsaf{word-spacing:-1.632000px;}
.ws4d{word-spacing:-1.620000px;}
.wsb5{word-spacing:-1.584000px;}
.ws2d{word-spacing:-1.560000px;}
.ws14{word-spacing:-1.500000px;}
.wsbb{word-spacing:-1.488000px;}
.ws6f{word-spacing:-1.380000px;}
.ws2b{word-spacing:-1.320000px;}
.ws2a{word-spacing:-1.260000px;}
.wse{word-spacing:-1.200000px;}
.ws29{word-spacing:-1.140000px;}
.ws20{word-spacing:-1.080000px;}
.ws2c{word-spacing:-1.020000px;}
.wsad{word-spacing:-1.008000px;}
.ws4b{word-spacing:-0.960000px;}
.wsc3{word-spacing:-0.912000px;}
.ws1e{word-spacing:-0.900000px;}
.wsc1{word-spacing:-0.864000px;}
.ws21{word-spacing:-0.840000px;}
.wsb7{word-spacing:-0.816000px;}
.ws22{word-spacing:-0.780000px;}
.ws99{word-spacing:-0.768000px;}
.ws4c{word-spacing:-0.720000px;}
.ws28{word-spacing:-0.660000px;}
.wsb2{word-spacing:-0.624000px;}
.ws17{word-spacing:-0.600000px;}
.ws75{word-spacing:-0.576000px;}
.ws32{word-spacing:-0.540000px;}
.wsf{word-spacing:-0.480000px;}
.ws6b{word-spacing:-0.432000px;}
.ws24{word-spacing:-0.420000px;}
.wsc0{word-spacing:-0.384000px;}
.ws33{word-spacing:-0.360000px;}
.ws38{word-spacing:-0.300000px;}
.wscc{word-spacing:-0.288000px;}
.ws16{word-spacing:-0.240000px;}
.ws7f{word-spacing:-0.192000px;}
.ws69{word-spacing:-0.180000px;}
.wsbc{word-spacing:-0.144000px;}
.ws25{word-spacing:-0.120000px;}
.wsba{word-spacing:-0.096000px;}
.wsd{word-spacing:-0.060000px;}
.ws4{word-spacing:0.000000px;}
.wsb4{word-spacing:0.048000px;}
.ws15{word-spacing:0.060000px;}
.wscd{word-spacing:0.096000px;}
.wsc{word-spacing:0.120000px;}
.wscf{word-spacing:0.144000px;}
.ws5c{word-spacing:0.180000px;}
.wsb8{word-spacing:0.192000px;}
.ws60{word-spacing:0.240000px;}
.wsc4{word-spacing:0.288000px;}
.ws72{word-spacing:0.300000px;}
.wsbe{word-spacing:0.336000px;}
.ws5e{word-spacing:0.360000px;}
.wsd2{word-spacing:0.816000px;}
.ws8{word-spacing:0.840000px;}
.ws8c{word-spacing:0.960000px;}
.ws95{word-spacing:1.080000px;}
.wsd0{word-spacing:1.248000px;}
.ws97{word-spacing:1.344000px;}
.ws9{word-spacing:1.380000px;}
.ws62{word-spacing:1.560000px;}
.ws6c{word-spacing:1.872000px;}
.ws76{word-spacing:2.016000px;}
.ws1c{word-spacing:2.040000px;}
.ws1d{word-spacing:2.100000px;}
.ws68{word-spacing:2.160000px;}
.ws18{word-spacing:2.520000px;}
.ws61{word-spacing:2.760000px;}
.ws3b{word-spacing:2.880000px;}
.wsd5{word-spacing:2.928000px;}
.ws8e{word-spacing:2.940000px;}
.ws96{word-spacing:3.120000px;}
.ws9c{word-spacing:3.180000px;}
.wsb6{word-spacing:3.216000px;}
.ws1a{word-spacing:3.420000px;}
.wsbd{word-spacing:3.456000px;}
.ws70{word-spacing:3.660000px;}
.ws6e{word-spacing:3.720000px;}
.ws9d{word-spacing:3.744000px;}
.ws8f{word-spacing:3.780000px;}
.ws73{word-spacing:3.936000px;}
.ws6a{word-spacing:3.984000px;}
.ws7e{word-spacing:4.176000px;}
.ws19{word-spacing:4.200000px;}
.ws67{word-spacing:4.260000px;}
.ws13{word-spacing:4.320000px;}
.ws74{word-spacing:4.512000px;}
.ws98{word-spacing:4.752000px;}
.ws6{word-spacing:4.920000px;}
.ws7{word-spacing:4.980000px;}
.wsa7{word-spacing:5.460000px;}
.wsa8{word-spacing:5.520000px;}
.ws93{word-spacing:7.620000px;}
.ws45{word-spacing:60.390000px;}
.ws3f{word-spacing:82.485000px;}
.ws4a{word-spacing:85.995000px;}
.ws42{word-spacing:92.880000px;}
.ws46{word-spacing:93.510000px;}
.ws57{word-spacing:139.920000px;}
.ws5b{word-spacing:161.232000px;}
.ws47{word-spacing:174.150000px;}
.ws3d{word-spacing:207.855000px;}
.ws5a{word-spacing:227.856000px;}
.ws59{word-spacing:241.152000px;}
.ws3e{word-spacing:249.750000px;}
.ws49{word-spacing:255.375000px;}
.ws43{word-spacing:783.675000px;}
.ws41{word-spacing:837.450000px;}
.ws44{word-spacing:886.140000px;}
._f{margin-left:-2898.096000px;}
._51{margin-left:-2874.288000px;}
._28{margin-left:-91.515000px;}
._22{margin-left:-88.740000px;}
._26{margin-left:-81.270000px;}
._2{margin-left:-9.368400px;}
._6{margin-left:-7.611600px;}
._7{margin-left:-6.570000px;}
._1{margin-left:-5.376000px;}
._5{margin-left:-4.170000px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.200000px;}
._c{width:1.140000px;}
._8{width:2.460000px;}
._9{width:4.140000px;}
._b{width:5.700000px;}
._a{width:6.780000px;}
._d{width:8.100000px;}
._e{width:9.180000px;}
._5c{width:10.920000px;}
._53{width:40.950000px;}
._3{width:59.524428px;}
._24{width:71.640000px;}
._3f{width:81.630000px;}
._27{width:87.255000px;}
._1c{width:89.145000px;}
._19{width:91.620000px;}
._31{width:93.315000px;}
._13{width:98.760000px;}
._36{width:99.810000px;}
._14{width:104.130000px;}
._2e{width:114.750000px;}
._52{width:125.916000px;}
._25{width:137.205000px;}
._1b{width:138.600000px;}
._29{width:141.840000px;}
._1d{width:145.980000px;}
._17{width:151.215000px;}
._49{width:169.155000px;}
._16{width:174.150000px;}
._44{width:179.145000px;}
._34{width:185.400000px;}
._54{width:194.262000px;}
._1a{width:200.250000px;}
._11{width:215.370000px;}
._58{width:225.360000px;}
._47{width:231.165000px;}
._4a{width:234.720000px;}
._59{width:265.248000px;}
._43{width:266.625000px;}
._55{width:283.968000px;}
._3a{width:322.305000px;}
._3c{width:328.305000px;}
._37{width:329.985000px;}
._18{width:332.325000px;}
._56{width:357.312000px;}
._39{width:367.305000px;}
._5a{width:387.216000px;}
._23{width:394.920000px;}
._46{width:422.160000px;}
._4e{width:432.405000px;}
._5b{width:445.296000px;}
._1f{width:451.215000px;}
._40{width:457.305000px;}
._57{width:475.968000px;}
._2d{width:478.545000px;}
._2b{width:518.505000px;}
._12{width:527.040000px;}
._30{width:535.770000px;}
._20{width:557.025000px;}
._35{width:566.145000px;}
._3e{width:570.396000px;}
._2f{width:573.705000px;}
._3b{width:581.175000px;}
._2a{width:592.380000px;}
._41{width:598.680000px;}
._45{width:611.145000px;}
._32{width:613.665000px;}
._4c{width:638.685000px;}
._33{width:644.895000px;}
._3d{width:653.715000px;}
._2c{width:658.665000px;}
._15{width:673.470000px;}
._1e{width:691.245000px;}
._21{width:749.925000px;}
._50{width:896.130000px;}
._38{width:897.390000px;}
._4b{width:934.875000px;}
._4f{width:969.885000px;}
._4d{width:978.660000px;}
._42{width:989.775000px;}
._48{width:1032.390000px;}
._10{width:1171.125000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fsa{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2f{bottom:47.777250px;}
.yfe{bottom:83.023350px;}
.y159{bottom:83.129700px;}
.y62{bottom:83.635350px;}
.y105{bottom:83.779200px;}
.y156{bottom:84.393600px;}
.y103{bottom:84.617850px;}
.y1c{bottom:88.023000px;}
.y190{bottom:89.121900px;}
.y136{bottom:91.112100px;}
.y78{bottom:91.253850px;}
.yef{bottom:92.808300px;}
.y1d0{bottom:95.263500px;}
.yfd{bottom:98.767350px;}
.y158{bottom:98.873700px;}
.y104{bottom:99.523200px;}
.y155{bottom:100.137600px;}
.y102{bottom:100.361850px;}
.y100{bottom:100.893450px;}
.yaa{bottom:101.568300px;}
.y61{bottom:101.635350px;}
.y1b{bottom:103.023000px;}
.y18f{bottom:104.121900px;}
.yee{bottom:109.056300px;}
.y135{bottom:109.112100px;}
.y77{bottom:109.253850px;}
.y1cf{bottom:110.263500px;}
.yfc{bottom:114.511350px;}
.y157{bottom:114.617700px;}
.y154{bottom:115.881600px;}
.y101{bottom:116.105850px;}
.yff{bottom:116.637450px;}
.ya9{bottom:117.070800px;}
.y18e{bottom:119.121900px;}
.y60{bottom:119.635350px;}
.y1ce{bottom:125.263500px;}
.yed{bottom:125.556300px;}
.y134{bottom:127.112100px;}
.y153{bottom:131.625600px;}
.y160{bottom:131.826450px;}
.ya8{bottom:132.573300px;}
.y18d{bottom:134.121900px;}
.y5f{bottom:137.635350px;}
.y152{bottom:137.912100px;}
.y1cd{bottom:140.263500px;}
.yec{bottom:142.056300px;}
.y76{bottom:144.094500px;}
.y133{bottom:145.112100px;}
.y15f{bottom:147.570450px;}
.ya7{bottom:148.075800px;}
.y18c{bottom:149.121900px;}
.y1cc{bottom:155.263500px;}
.y5e{bottom:155.635350px;}
.y151{bottom:155.912100px;}
.yeb{bottom:158.304300px;}
.y75{bottom:159.700500px;}
.y132{bottom:163.112100px;}
.ya6{bottom:163.578300px;}
.y18b{bottom:164.121900px;}
.y2a{bottom:170.087550px;}
.y1cb{bottom:170.263500px;}
.y5d{bottom:173.635350px;}
.y150{bottom:173.912100px;}
.y74{bottom:174.055350px;}
.yea{bottom:174.804300px;}
.ya5{bottom:179.080800px;}
.y18a{bottom:179.121900px;}
.y131{bottom:181.112100px;}
.y15d{bottom:181.350150px;}
.y1ca{bottom:185.263500px;}
.y29{bottom:188.087550px;}
.ye9{bottom:191.052300px;}
.y5c{bottom:191.635350px;}
.y73{bottom:191.650350px;}
.y14f{bottom:191.912100px;}
.y189{bottom:194.121900px;}
.ya4{bottom:194.583300px;}
.y15c{bottom:197.094150px;}
.y130{bottom:199.112100px;}
.y1c9{bottom:200.263500px;}
.y28{bottom:206.087550px;}
.ye8{bottom:207.300300px;}
.y188{bottom:209.121900px;}
.y5b{bottom:209.635350px;}
.y14e{bottom:209.912100px;}
.ya3{bottom:210.085800px;}
.y15b{bottom:212.838150px;}
.y1c8{bottom:215.263500px;}
.y12f{bottom:217.112100px;}
.ye7{bottom:223.548300px;}
.y27{bottom:224.087550px;}
.y187{bottom:224.121900px;}
.ya2{bottom:225.588300px;}
.y72{bottom:227.500350px;}
.y5a{bottom:227.635350px;}
.y14d{bottom:227.912100px;}
.y1c7{bottom:230.263500px;}
.y12e{bottom:235.112100px;}
.y186{bottom:239.121900px;}
.ya1{bottom:241.090800px;}
.y26{bottom:242.087550px;}
.y1c6{bottom:245.263500px;}
.y59{bottom:245.635350px;}
.y14c{bottom:245.912100px;}
.y12d{bottom:253.112100px;}
.y185{bottom:254.121900px;}
.ye6{bottom:255.060300px;}
.ya0{bottom:256.583700px;}
.y25{bottom:260.087550px;}
.y1c5{bottom:260.263500px;}
.y71{bottom:263.365350px;}
.y58{bottom:263.635350px;}
.y14b{bottom:263.912100px;}
.y184{bottom:269.121900px;}
.y12c{bottom:271.112100px;}
.y9f{bottom:272.086200px;}
.y1c4{bottom:275.263500px;}
.y24{bottom:278.087550px;}
.y57{bottom:281.635350px;}
.y14a{bottom:281.912100px;}
.y183{bottom:284.121900px;}
.y9e{bottom:287.588700px;}
.y12b{bottom:289.112100px;}
.ye5{bottom:289.967100px;}
.y1c3{bottom:290.263500px;}
.y23{bottom:296.087550px;}
.y70{bottom:299.230350px;}
.y56{bottom:299.635350px;}
.y149{bottom:299.912100px;}
.y9d{bottom:303.091200px;}
.y1c2{bottom:305.263500px;}
.y12a{bottom:307.112100px;}
.y22{bottom:314.087550px;}
.y182{bottom:317.232600px;}
.y55{bottom:317.635350px;}
.y148{bottom:317.912100px;}
.y9c{bottom:318.593700px;}
.y1c1{bottom:320.263500px;}
.y129{bottom:325.112100px;}
.y21{bottom:332.087550px;}
.y9b{bottom:334.096200px;}
.y1c0{bottom:335.263500px;}
.y54{bottom:335.635350px;}
.ye4{bottom:335.777100px;}
.y147{bottom:335.912100px;}
.y128{bottom:343.112100px;}
.ybc{bottom:345.512100px;}
.y9a{bottom:349.598700px;}
.y20{bottom:350.087550px;}
.y1bf{bottom:350.263500px;}
.y53{bottom:353.635350px;}
.y6f{bottom:353.770350px;}
.ye3{bottom:353.777100px;}
.y146{bottom:353.912100px;}
.y127{bottom:361.112100px;}
.ybb{bottom:363.512100px;}
.y99{bottom:365.101200px;}
.y1be{bottom:365.263500px;}
.y1f{bottom:368.087550px;}
.y52{bottom:371.635350px;}
.y6e{bottom:371.770350px;}
.y181{bottom:371.772600px;}
.ye2{bottom:371.777100px;}
.y145{bottom:371.912100px;}
.y126{bottom:379.112100px;}
.y1bd{bottom:380.263500px;}
.y98{bottom:380.603700px;}
.yba{bottom:381.512100px;}
.y1e{bottom:386.087550px;}
.y180{bottom:389.367600px;}
.y51{bottom:389.635350px;}
.y6d{bottom:389.770350px;}
.ye1{bottom:389.777100px;}
.y144{bottom:389.912100px;}
.y1bc{bottom:395.263500px;}
.y97{bottom:396.106200px;}
.y125{bottom:397.112100px;}
.yb9{bottom:399.512100px;}
.y2c{bottom:404.087550px;}
.y50{bottom:407.635350px;}
.y6c{bottom:407.770350px;}
.ye0{bottom:407.777100px;}
.y143{bottom:407.912100px;}
.y1bb{bottom:410.263500px;}
.y96{bottom:411.608700px;}
.y124{bottom:415.112100px;}
.yb8{bottom:417.512100px;}
.y1d{bottom:421.682550px;}
.y2b{bottom:422.087550px;}
.y1ba{bottom:425.263500px;}
.y4f{bottom:425.635350px;}
.y6b{bottom:425.770350px;}
.y17f{bottom:425.772600px;}
.ydf{bottom:425.777100px;}
.y142{bottom:425.927100px;}
.y95{bottom:427.111200px;}
.y123{bottom:433.112100px;}
.yb7{bottom:435.512100px;}
.y1b9{bottom:440.265900px;}
.y94{bottom:442.613700px;}
.y17e{bottom:443.367600px;}
.y4e{bottom:443.635350px;}
.y6a{bottom:443.770350px;}
.yde{bottom:443.777100px;}
.y141{bottom:443.927100px;}
.y122{bottom:451.112100px;}
.yb6{bottom:453.512100px;}
.y1b8{bottom:455.265900px;}
.y93{bottom:458.116200px;}
.y4d{bottom:461.635350px;}
.y69{bottom:461.770350px;}
.ydd{bottom:461.777100px;}
.y140{bottom:461.927100px;}
.y121{bottom:469.112100px;}
.y1b7{bottom:470.265900px;}
.yb5{bottom:471.512100px;}
.y92{bottom:473.618700px;}
.y4c{bottom:479.635350px;}
.y68{bottom:479.770350px;}
.y17d{bottom:479.772600px;}
.ydc{bottom:479.777100px;}
.y13f{bottom:479.927100px;}
.y1b6{bottom:485.265900px;}
.y120{bottom:487.112100px;}
.y91{bottom:489.121200px;}
.yb4{bottom:489.512100px;}
.y1a{bottom:495.814200px;}
.y4b{bottom:497.635350px;}
.y67{bottom:497.770350px;}
.y17c{bottom:497.772600px;}
.ydb{bottom:497.777100px;}
.y13e{bottom:497.927100px;}
.y1b5{bottom:500.265900px;}
.y90{bottom:504.623700px;}
.y11f{bottom:505.112100px;}
.yb3{bottom:507.512100px;}
.y1b4{bottom:515.265900px;}
.y66{bottom:515.770350px;}
.y17b{bottom:515.772600px;}
.yda{bottom:515.777100px;}
.y13d{bottom:515.927100px;}
.y8f{bottom:520.126200px;}
.y11e{bottom:523.112100px;}
.y19{bottom:523.159200px;}
.yb2{bottom:525.512100px;}
.y1b3{bottom:530.265900px;}
.y4a{bottom:533.230350px;}
.y65{bottom:533.770350px;}
.y17a{bottom:533.772600px;}
.yd9{bottom:533.777100px;}
.y13c{bottom:533.927100px;}
.y8e{bottom:535.628700px;}
.y11d{bottom:541.112100px;}
.y18{bottom:541.159200px;}
.yb1{bottom:543.512100px;}
.y1b2{bottom:545.265900px;}
.y8d{bottom:551.118300px;}
.y179{bottom:551.367600px;}
.y64{bottom:551.770350px;}
.yd8{bottom:551.777100px;}
.y13b{bottom:551.927100px;}
.y11c{bottom:559.112100px;}
.y17{bottom:559.159200px;}
.y1b1{bottom:560.265900px;}
.yb0{bottom:561.512100px;}
.y8c{bottom:566.620800px;}
.y63{bottom:569.770350px;}
.yd7{bottom:569.777100px;}
.y13a{bottom:569.927100px;}
.y1b0{bottom:575.265900px;}
.y11b{bottom:577.112100px;}
.y16{bottom:577.159200px;}
.y8b{bottom:582.123300px;}
.y49{bottom:587.770350px;}
.y178{bottom:587.772600px;}
.yd6{bottom:587.777100px;}
.y139{bottom:587.927100px;}
.y1af{bottom:590.265900px;}
.y11a{bottom:595.112100px;}
.y15{bottom:595.159200px;}
.yaf{bottom:596.352750px;}
.y8a{bottom:597.625800px;}
.y1ae{bottom:605.265900px;}
.y177{bottom:605.367600px;}
.y48{bottom:605.770350px;}
.yd5{bottom:605.777100px;}
.y138{bottom:605.927100px;}
.yae{bottom:611.958750px;}
.y119{bottom:613.112100px;}
.y89{bottom:613.128300px;}
.y14{bottom:613.159200px;}
.y1ad{bottom:620.265900px;}
.y47{bottom:623.770350px;}
.yd4{bottom:623.777100px;}
.yad{bottom:626.320350px;}
.y88{bottom:628.630800px;}
.y118{bottom:631.112100px;}
.y13{bottom:631.159200px;}
.y1ed{bottom:635.263500px;}
.y1ac{bottom:635.265900px;}
.y137{bottom:641.522100px;}
.y46{bottom:641.770350px;}
.y176{bottom:641.772600px;}
.yd3{bottom:641.777100px;}
.yac{bottom:641.920350px;}
.y87{bottom:644.133300px;}
.y117{bottom:649.112100px;}
.y12{bottom:649.159200px;}
.y1ec{bottom:650.263500px;}
.y1ab{bottom:650.265900px;}
.yab{bottom:659.515350px;}
.y86{bottom:659.635800px;}
.y45{bottom:659.770350px;}
.y175{bottom:659.772600px;}
.yd2{bottom:659.777100px;}
.y1eb{bottom:665.263500px;}
.y1aa{bottom:665.265900px;}
.y116{bottom:667.112100px;}
.y11{bottom:667.159200px;}
.y85{bottom:675.138300px;}
.y44{bottom:677.770350px;}
.y174{bottom:677.772600px;}
.yd1{bottom:677.777100px;}
.y1ea{bottom:680.263500px;}
.y1a9{bottom:680.265900px;}
.y115{bottom:685.112100px;}
.y10{bottom:685.159200px;}
.y84{bottom:690.640800px;}
.y1e9{bottom:695.263500px;}
.y1a8{bottom:695.265900px;}
.y43{bottom:695.770350px;}
.y173{bottom:695.772600px;}
.yd0{bottom:695.777100px;}
.y114{bottom:703.112100px;}
.y83{bottom:706.143300px;}
.y1e8{bottom:710.263500px;}
.y1a7{bottom:710.265900px;}
.y42{bottom:713.770350px;}
.y172{bottom:713.772600px;}
.ycf{bottom:713.777100px;}
.y113{bottom:721.112100px;}
.y82{bottom:721.645800px;}
.yfb{bottom:723.512100px;}
.y1e7{bottom:725.263500px;}
.y1a6{bottom:725.265900px;}
.yf{bottom:730.317300px;}
.y41{bottom:731.770350px;}
.y171{bottom:731.772600px;}
.yce{bottom:731.777100px;}
.y81{bottom:737.148300px;}
.y112{bottom:739.112100px;}
.y1e6{bottom:740.263500px;}
.y1a5{bottom:740.265900px;}
.yfa{bottom:741.512100px;}
.ye{bottom:742.768050px;}
.y170{bottom:749.367600px;}
.y40{bottom:749.770350px;}
.ycd{bottom:749.777100px;}
.y80{bottom:752.650800px;}
.yd{bottom:754.468050px;}
.y1e5{bottom:755.263500px;}
.y1a4{bottom:755.265900px;}
.y111{bottom:757.112100px;}
.yf9{bottom:759.512100px;}
.y3f{bottom:767.770350px;}
.ycc{bottom:767.777100px;}
.y7f{bottom:768.153300px;}
.y1e4{bottom:770.263500px;}
.y1a3{bottom:770.265900px;}
.y110{bottom:775.112100px;}
.yf8{bottom:777.512100px;}
.y7e{bottom:783.655800px;}
.y1e3{bottom:785.263500px;}
.y1a2{bottom:785.265900px;}
.y3e{bottom:785.770350px;}
.y16f{bottom:785.772600px;}
.ycb{bottom:785.777100px;}
.yc{bottom:786.183600px;}
.y10f{bottom:793.112100px;}
.yf7{bottom:795.512100px;}
.y7d{bottom:799.158300px;}
.y1e2{bottom:800.263500px;}
.y1a1{bottom:800.265900px;}
.y3d{bottom:803.770350px;}
.y16e{bottom:803.772600px;}
.yca{bottom:803.777100px;}
.yb{bottom:805.108950px;}
.y10e{bottom:811.112100px;}
.yf6{bottom:813.512100px;}
.y7c{bottom:814.660800px;}
.y1e1{bottom:815.263500px;}
.y1a0{bottom:815.265900px;}
.ya{bottom:818.608950px;}
.y3c{bottom:821.770350px;}
.y16d{bottom:821.772600px;}
.yc9{bottom:821.777100px;}
.y10d{bottom:829.112100px;}
.y1e0{bottom:830.263500px;}
.y19f{bottom:830.265900px;}
.y9{bottom:832.108950px;}
.y3b{bottom:839.770350px;}
.y16c{bottom:839.772600px;}
.yc8{bottom:839.777100px;}
.y8{bottom:840.183600px;}
.y1df{bottom:845.263500px;}
.y19e{bottom:845.265900px;}
.y7b{bottom:845.800800px;}
.y10c{bottom:847.112100px;}
.yf5{bottom:848.352750px;}
.y3a{bottom:857.770350px;}
.y16b{bottom:857.772600px;}
.yc7{bottom:857.777100px;}
.y7{bottom:859.108950px;}
.y1de{bottom:860.263500px;}
.y19d{bottom:860.265900px;}
.yf4{bottom:863.958750px;}
.y10b{bottom:865.112100px;}
.y1dd{bottom:875.263500px;}
.y19c{bottom:875.265900px;}
.y39{bottom:875.770350px;}
.y16a{bottom:875.772600px;}
.yc6{bottom:875.777100px;}
.yf3{bottom:878.320350px;}
.y7a{bottom:880.450350px;}
.y10a{bottom:883.112100px;}
.y6{bottom:887.830950px;}
.y1dc{bottom:890.263500px;}
.y19b{bottom:890.265900px;}
.y38{bottom:893.770350px;}
.y169{bottom:893.772600px;}
.yc5{bottom:893.777100px;}
.yf2{bottom:893.920350px;}
.y1db{bottom:905.263500px;}
.y19a{bottom:905.265900px;}
.yf1{bottom:911.515350px;}
.y37{bottom:911.770350px;}
.y168{bottom:911.772600px;}
.yc4{bottom:911.777100px;}
.y109{bottom:917.952600px;}
.y1da{bottom:920.263500px;}
.y199{bottom:920.265900px;}
.y36{bottom:929.770350px;}
.y167{bottom:929.772600px;}
.yc3{bottom:929.777100px;}
.y108{bottom:933.558600px;}
.y5{bottom:934.004400px;}
.y1d9{bottom:935.263500px;}
.y198{bottom:935.265900px;}
.y35{bottom:947.770350px;}
.y166{bottom:947.772600px;}
.yc2{bottom:947.777100px;}
.y107{bottom:947.920350px;}
.y1d8{bottom:950.263500px;}
.y197{bottom:950.265900px;}
.y1d7{bottom:965.263500px;}
.y196{bottom:965.265900px;}
.y106{bottom:965.515350px;}
.y34{bottom:965.770350px;}
.y165{bottom:965.772600px;}
.yc1{bottom:965.777100px;}
.y4{bottom:970.465200px;}
.y1d6{bottom:980.263500px;}
.y195{bottom:980.265900px;}
.y33{bottom:983.770350px;}
.y164{bottom:983.772600px;}
.yc0{bottom:983.777100px;}
.y1d5{bottom:995.263500px;}
.y194{bottom:995.265900px;}
.y32{bottom:1001.770350px;}
.y163{bottom:1001.772600px;}
.ybf{bottom:1001.777100px;}
.y3{bottom:1006.926000px;}
.y1d4{bottom:1010.263500px;}
.y193{bottom:1010.265900px;}
.y31{bottom:1019.770350px;}
.y162{bottom:1019.772600px;}
.ybe{bottom:1019.777100px;}
.y1d3{bottom:1025.263500px;}
.y192{bottom:1025.265900px;}
.y15e{bottom:1037.367600px;}
.y30{bottom:1037.770350px;}
.ybd{bottom:1037.777100px;}
.y1d2{bottom:1040.263500px;}
.y191{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.y79{bottom:1132.418700px;}
.y15a{bottom:1132.421700px;}
.y161{bottom:1132.422450px;}
.y1d1{bottom:1132.423500px;}
.yf0{bottom:1132.440300px;}
.y2e{bottom:1136.092500px;}
.y2d{bottom:1150.492500px;}
.h6{height:19.125417px;}
.h8{height:28.412109px;}
.h15{height:30.498047px;}
.h2{height:30.597656px;}
.h14{height:31.245117px;}
.hc{height:32.761230px;}
.hd{height:32.783203px;}
.h7{height:32.805176px;}
.h18{height:33.328125px;}
.h19{height:34.945312px;}
.h11{height:34.968750px;}
.h10{height:34.992188px;}
.h13{height:39.484863px;}
.h16{height:39.523263px;}
.he{height:41.660156px;}
.h17{height:42.117188px;}
.ha{height:43.681641px;}
.h9{height:43.710938px;}
.hb{height:43.740234px;}
.h12{height:47.381836px;}
.hf{height:52.646484px;}
.h1a{height:54.266484px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:76.535400px;}
.x1f{left:78.661350px;}
.x1d{left:80.795400px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x1a{left:99.921300px;}
.x1c{left:101.060400px;}
.x4{left:106.299150px;}
.x2c{left:109.405350px;}
.xc{left:110.551200px;}
.x2d{left:117.879300px;}
.x33{left:123.307350px;}
.x3{left:125.439150px;}
.x6{left:131.816400px;}
.xd{left:144.721200px;}
.x20{left:184.909350px;}
.x32{left:194.285400px;}
.x1e{left:201.671550px;}
.x5{left:212.876400px;}
.x31{left:220.137450px;}
.x2e{left:223.300800px;}
.x21{left:325.225350px;}
.x22{left:342.229350px;}
.xa{left:455.041500px;}
.xe{left:457.051200px;}
.x14{left:466.756200px;}
.x15{left:473.802150px;}
.x19{left:478.341000px;}
.x7{left:480.476400px;}
.x23{left:482.545350px;}
.x29{left:489.053550px;}
.xf{left:491.071200px;}
.x24{left:499.549350px;}
.x34{left:503.851350px;}
.x2b{left:512.362200px;}
.x8{left:514.496400px;}
.x12{left:534.796200px;}
.x13{left:547.036200px;}
.x27{left:552.895350px;}
.x11{left:573.286200px;}
.x16{left:581.842650px;}
.x10{left:591.616200px;}
.x2a{left:602.737050px;}
.x28{left:630.265350px;}
.x25{left:639.865350px;}
.x26{left:656.869350px;}
.x18{left:663.492300px;}
.x2{left:693.365400px;}
.x2f{left:721.717650px;}
.x17{left:728.391600px;}
.x30{left:743.868150px;}
.x1b{left:749.651400px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.440000pt;}
.v1{vertical-align:27.005867pt;}
.ls55{letter-spacing:-2.613333pt;}
.ls14{letter-spacing:-0.693333pt;}
.ls78{letter-spacing:-0.298667pt;}
.ls4c{letter-spacing:-0.266667pt;}
.ls79{letter-spacing:-0.256000pt;}
.ls47{letter-spacing:-0.213333pt;}
.ls15{letter-spacing:-0.200000pt;}
.ls77{letter-spacing:-0.170667pt;}
.ls46{letter-spacing:-0.160000pt;}
.ls75{letter-spacing:-0.128000pt;}
.ls33{letter-spacing:-0.106667pt;}
.ls82{letter-spacing:-0.085333pt;}
.ls32{letter-spacing:-0.053333pt;}
.ls76{letter-spacing:-0.042667pt;}
.ls13{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003680pt;}
.lsf{letter-spacing:0.053333pt;}
.ls67{letter-spacing:0.085333pt;}
.ls16{letter-spacing:0.106667pt;}
.ls6b{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.160000pt;}
.ls4f{letter-spacing:0.170667pt;}
.ls19{letter-spacing:0.213333pt;}
.ls7a{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.266667pt;}
.ls23{letter-spacing:0.320000pt;}
.ls6d{letter-spacing:0.341333pt;}
.lse{letter-spacing:0.373333pt;}
.ls49{letter-spacing:0.384000pt;}
.ls11{letter-spacing:0.426667pt;}
.ls5{letter-spacing:0.480000pt;}
.ls4b{letter-spacing:0.512000pt;}
.ls1a{letter-spacing:0.533333pt;}
.lsb{letter-spacing:0.586667pt;}
.ls21{letter-spacing:0.640000pt;}
.ls57{letter-spacing:0.682667pt;}
.ls1b{letter-spacing:0.693333pt;}
.ls65{letter-spacing:0.725333pt;}
.ls20{letter-spacing:0.746667pt;}
.ls6a{letter-spacing:0.768000pt;}
.ls1d{letter-spacing:0.800000pt;}
.ls71{letter-spacing:0.810667pt;}
.ls34{letter-spacing:0.853333pt;}
.ls5e{letter-spacing:0.896000pt;}
.ls29{letter-spacing:0.906667pt;}
.ls1f{letter-spacing:0.960000pt;}
.ls6e{letter-spacing:0.981333pt;}
.ls28{letter-spacing:1.013333pt;}
.ls10{letter-spacing:1.066667pt;}
.ls7{letter-spacing:1.120000pt;}
.ls6f{letter-spacing:1.152000pt;}
.ls12{letter-spacing:1.173333pt;}
.ls3f{letter-spacing:1.226667pt;}
.ls2e{letter-spacing:1.280000pt;}
.ls69{letter-spacing:1.322667pt;}
.ls17{letter-spacing:1.333333pt;}
.ls7e{letter-spacing:1.365333pt;}
.ls2a{letter-spacing:1.386667pt;}
.ls64{letter-spacing:1.408000pt;}
.ls43{letter-spacing:1.440000pt;}
.ls5c{letter-spacing:1.450667pt;}
.lsc{letter-spacing:1.493333pt;}
.ls61{letter-spacing:1.536000pt;}
.ls30{letter-spacing:1.546667pt;}
.lsd{letter-spacing:1.600000pt;}
.ls63{letter-spacing:1.621333pt;}
.ls8{letter-spacing:1.653333pt;}
.ls5d{letter-spacing:1.664000pt;}
.ls1e{letter-spacing:1.706667pt;}
.ls5a{letter-spacing:1.749333pt;}
.ls42{letter-spacing:1.760000pt;}
.ls5b{letter-spacing:1.792000pt;}
.ls18{letter-spacing:1.813333pt;}
.ls4{letter-spacing:1.866667pt;}
.ls7d{letter-spacing:1.877333pt;}
.ls41{letter-spacing:1.920000pt;}
.ls58{letter-spacing:1.973333pt;}
.ls2d{letter-spacing:2.026667pt;}
.ls22{letter-spacing:2.080000pt;}
.ls68{letter-spacing:2.090667pt;}
.ls25{letter-spacing:2.133333pt;}
.ls81{letter-spacing:2.176000pt;}
.ls56{letter-spacing:2.186667pt;}
.ls1c{letter-spacing:2.240000pt;}
.ls66{letter-spacing:2.261333pt;}
.lsa{letter-spacing:2.293333pt;}
.ls3b{letter-spacing:2.346667pt;}
.ls51{letter-spacing:2.400000pt;}
.ls72{letter-spacing:2.432000pt;}
.ls40{letter-spacing:2.453333pt;}
.ls3e{letter-spacing:2.506667pt;}
.ls6c{letter-spacing:2.560000pt;}
.ls6{letter-spacing:2.613333pt;}
.ls7b{letter-spacing:2.645333pt;}
.ls44{letter-spacing:2.666667pt;}
.ls53{letter-spacing:2.773333pt;}
.ls2c{letter-spacing:2.826667pt;}
.ls7c{letter-spacing:2.858667pt;}
.ls31{letter-spacing:2.880000pt;}
.ls62{letter-spacing:2.901333pt;}
.ls24{letter-spacing:2.933333pt;}
.ls37{letter-spacing:2.986667pt;}
.ls60{letter-spacing:3.029333pt;}
.ls4a{letter-spacing:3.040000pt;}
.ls74{letter-spacing:3.072000pt;}
.ls4e{letter-spacing:3.093333pt;}
.ls70{letter-spacing:3.114667pt;}
.ls36{letter-spacing:3.200000pt;}
.ls45{letter-spacing:3.253333pt;}
.ls4d{letter-spacing:3.306667pt;}
.ls80{letter-spacing:3.370667pt;}
.ls2f{letter-spacing:3.466667pt;}
.ls5f{letter-spacing:3.584000pt;}
.ls2b{letter-spacing:3.626667pt;}
.ls73{letter-spacing:3.669333pt;}
.ls35{letter-spacing:3.840000pt;}
.ls7f{letter-spacing:4.181333pt;}
.ls2{letter-spacing:4.213333pt;}
.ls27{letter-spacing:4.266667pt;}
.ls48{letter-spacing:4.320000pt;}
.ls3d{letter-spacing:4.586667pt;}
.ls50{letter-spacing:4.960000pt;}
.ls54{letter-spacing:5.013333pt;}
.ls3c{letter-spacing:5.546667pt;}
.ls52{letter-spacing:5.600000pt;}
.ls26{letter-spacing:6.506667pt;}
.ls59{letter-spacing:6.826667pt;}
.ls0{letter-spacing:52.918112pt;}
.ls38{letter-spacing:154.800000pt;}
.ls3a{letter-spacing:164.800000pt;}
.ls39{letter-spacing:237.000000pt;}
.ws40{word-spacing:-247.000000pt;}
.ws80{word-spacing:-18.293333pt;}
.ws51{word-spacing:-17.920000pt;}
.ws77{word-spacing:-16.640000pt;}
.ws85{word-spacing:-16.106667pt;}
.ws66{word-spacing:-15.840000pt;}
.ws86{word-spacing:-15.680000pt;}
.ws81{word-spacing:-15.573333pt;}
.ws10{word-spacing:-15.466667pt;}
.ws9a{word-spacing:-15.413333pt;}
.ws56{word-spacing:-15.146667pt;}
.ws82{word-spacing:-14.986667pt;}
.ws3c{word-spacing:-14.933333pt;}
.ws1{word-spacing:-14.826667pt;}
.ws79{word-spacing:-14.773333pt;}
.ws4e{word-spacing:-14.506667pt;}
.ws4f{word-spacing:-14.400000pt;}
.ws78{word-spacing:-14.346667pt;}
.ws9e{word-spacing:-14.250667pt;}
.ws7a{word-spacing:-14.133333pt;}
.ws84{word-spacing:-14.080000pt;}
.ws7b{word-spacing:-14.026667pt;}
.ws83{word-spacing:-13.866667pt;}
.ws65{word-spacing:-13.813333pt;}
.ws9b{word-spacing:-13.706667pt;}
.ws54{word-spacing:-13.653333pt;}
.ws53{word-spacing:-13.600000pt;}
.ws12{word-spacing:-13.333333pt;}
.ws52{word-spacing:-13.280000pt;}
.ws50{word-spacing:-13.173333pt;}
.ws55{word-spacing:-13.120000pt;}
.ws6d{word-spacing:-13.066667pt;}
.wsa1{word-spacing:-12.928000pt;}
.wsc9{word-spacing:-12.544000pt;}
.wsca{word-spacing:-12.288000pt;}
.wsa0{word-spacing:-12.202667pt;}
.ws9f{word-spacing:-12.117333pt;}
.ws11{word-spacing:-12.000000pt;}
.wsc7{word-spacing:-11.989333pt;}
.ws3{word-spacing:-11.861333pt;}
.wsa3{word-spacing:-11.733333pt;}
.wsc8{word-spacing:-11.178667pt;}
.ws2{word-spacing:-11.120000pt;}
.wsa2{word-spacing:-11.050667pt;}
.wsa5{word-spacing:-10.752000pt;}
.ws58{word-spacing:-10.666667pt;}
.wsa4{word-spacing:-10.624000pt;}
.wscb{word-spacing:-10.453333pt;}
.ws48{word-spacing:-10.000000pt;}
.ws0{word-spacing:-9.076144pt;}
.ws91{word-spacing:-5.600000pt;}
.ws87{word-spacing:-5.013333pt;}
.ws88{word-spacing:-4.320000pt;}
.ws8d{word-spacing:-4.266667pt;}
.wsc6{word-spacing:-3.669333pt;}
.ws2e{word-spacing:-3.626667pt;}
.wsae{word-spacing:-3.584000pt;}
.ws34{word-spacing:-3.466667pt;}
.wsd4{word-spacing:-3.413333pt;}
.ws7c{word-spacing:-3.306667pt;}
.ws64{word-spacing:-3.253333pt;}
.wsc2{word-spacing:-3.114667pt;}
.ws7d{word-spacing:-3.093333pt;}
.wsac{word-spacing:-3.072000pt;}
.wsa6{word-spacing:-3.040000pt;}
.wsb0{word-spacing:-3.029333pt;}
.ws92{word-spacing:-2.986667pt;}
.ws26{word-spacing:-2.933333pt;}
.wsb3{word-spacing:-2.901333pt;}
.ws39{word-spacing:-2.880000pt;}
.ws2f{word-spacing:-2.826667pt;}
.wsd6{word-spacing:-2.773333pt;}
.ws63{word-spacing:-2.666667pt;}
.wsce{word-spacing:-2.645333pt;}
.ws37{word-spacing:-2.613333pt;}
.ws5{word-spacing:-2.565333pt;}
.wsbf{word-spacing:-2.560000pt;}
.ws71{word-spacing:-2.506667pt;}
.ws5d{word-spacing:-2.453333pt;}
.wsc5{word-spacing:-2.432000pt;}
.ws8a{word-spacing:-2.400000pt;}
.ws90{word-spacing:-2.346667pt;}
.wsb9{word-spacing:-2.261333pt;}
.ws1b{word-spacing:-2.240000pt;}
.ws94{word-spacing:-2.186667pt;}
.ws27{word-spacing:-2.133333pt;}
.ws30{word-spacing:-2.080000pt;}
.ws31{word-spacing:-2.026667pt;}
.ws1f{word-spacing:-1.973333pt;}
.ws5f{word-spacing:-1.920000pt;}
.wsd1{word-spacing:-1.877333pt;}
.ws35{word-spacing:-1.866667pt;}
.ws23{word-spacing:-1.813333pt;}
.wsaa{word-spacing:-1.792000pt;}
.ws89{word-spacing:-1.760000pt;}
.wsa9{word-spacing:-1.749333pt;}
.ws8b{word-spacing:-1.706667pt;}
.wsab{word-spacing:-1.664000pt;}
.wsa{word-spacing:-1.653333pt;}
.wsd3{word-spacing:-1.621333pt;}
.ws36{word-spacing:-1.600000pt;}
.wsb{word-spacing:-1.546667pt;}
.wsb1{word-spacing:-1.536000pt;}
.ws3a{word-spacing:-1.493333pt;}
.wsaf{word-spacing:-1.450667pt;}
.ws4d{word-spacing:-1.440000pt;}
.wsb5{word-spacing:-1.408000pt;}
.ws2d{word-spacing:-1.386667pt;}
.ws14{word-spacing:-1.333333pt;}
.wsbb{word-spacing:-1.322667pt;}
.ws6f{word-spacing:-1.226667pt;}
.ws2b{word-spacing:-1.173333pt;}
.ws2a{word-spacing:-1.120000pt;}
.wse{word-spacing:-1.066667pt;}
.ws29{word-spacing:-1.013333pt;}
.ws20{word-spacing:-0.960000pt;}
.ws2c{word-spacing:-0.906667pt;}
.wsad{word-spacing:-0.896000pt;}
.ws4b{word-spacing:-0.853333pt;}
.wsc3{word-spacing:-0.810667pt;}
.ws1e{word-spacing:-0.800000pt;}
.wsc1{word-spacing:-0.768000pt;}
.ws21{word-spacing:-0.746667pt;}
.wsb7{word-spacing:-0.725333pt;}
.ws22{word-spacing:-0.693333pt;}
.ws99{word-spacing:-0.682667pt;}
.ws4c{word-spacing:-0.640000pt;}
.ws28{word-spacing:-0.586667pt;}
.wsb2{word-spacing:-0.554667pt;}
.ws17{word-spacing:-0.533333pt;}
.ws75{word-spacing:-0.512000pt;}
.ws32{word-spacing:-0.480000pt;}
.wsf{word-spacing:-0.426667pt;}
.ws6b{word-spacing:-0.384000pt;}
.ws24{word-spacing:-0.373333pt;}
.wsc0{word-spacing:-0.341333pt;}
.ws33{word-spacing:-0.320000pt;}
.ws38{word-spacing:-0.266667pt;}
.wscc{word-spacing:-0.256000pt;}
.ws16{word-spacing:-0.213333pt;}
.ws7f{word-spacing:-0.170667pt;}
.ws69{word-spacing:-0.160000pt;}
.wsbc{word-spacing:-0.128000pt;}
.ws25{word-spacing:-0.106667pt;}
.wsba{word-spacing:-0.085333pt;}
.wsd{word-spacing:-0.053333pt;}
.ws4{word-spacing:0.000000pt;}
.wsb4{word-spacing:0.042667pt;}
.ws15{word-spacing:0.053333pt;}
.wscd{word-spacing:0.085333pt;}
.wsc{word-spacing:0.106667pt;}
.wscf{word-spacing:0.128000pt;}
.ws5c{word-spacing:0.160000pt;}
.wsb8{word-spacing:0.170667pt;}
.ws60{word-spacing:0.213333pt;}
.wsc4{word-spacing:0.256000pt;}
.ws72{word-spacing:0.266667pt;}
.wsbe{word-spacing:0.298667pt;}
.ws5e{word-spacing:0.320000pt;}
.wsd2{word-spacing:0.725333pt;}
.ws8{word-spacing:0.746667pt;}
.ws8c{word-spacing:0.853333pt;}
.ws95{word-spacing:0.960000pt;}
.wsd0{word-spacing:1.109333pt;}
.ws97{word-spacing:1.194667pt;}
.ws9{word-spacing:1.226667pt;}
.ws62{word-spacing:1.386667pt;}
.ws6c{word-spacing:1.664000pt;}
.ws76{word-spacing:1.792000pt;}
.ws1c{word-spacing:1.813333pt;}
.ws1d{word-spacing:1.866667pt;}
.ws68{word-spacing:1.920000pt;}
.ws18{word-spacing:2.240000pt;}
.ws61{word-spacing:2.453333pt;}
.ws3b{word-spacing:2.560000pt;}
.wsd5{word-spacing:2.602667pt;}
.ws8e{word-spacing:2.613333pt;}
.ws96{word-spacing:2.773333pt;}
.ws9c{word-spacing:2.826667pt;}
.wsb6{word-spacing:2.858667pt;}
.ws1a{word-spacing:3.040000pt;}
.wsbd{word-spacing:3.072000pt;}
.ws70{word-spacing:3.253333pt;}
.ws6e{word-spacing:3.306667pt;}
.ws9d{word-spacing:3.328000pt;}
.ws8f{word-spacing:3.360000pt;}
.ws73{word-spacing:3.498667pt;}
.ws6a{word-spacing:3.541333pt;}
.ws7e{word-spacing:3.712000pt;}
.ws19{word-spacing:3.733333pt;}
.ws67{word-spacing:3.786667pt;}
.ws13{word-spacing:3.840000pt;}
.ws74{word-spacing:4.010667pt;}
.ws98{word-spacing:4.224000pt;}
.ws6{word-spacing:4.373333pt;}
.ws7{word-spacing:4.426667pt;}
.wsa7{word-spacing:4.853333pt;}
.wsa8{word-spacing:4.906667pt;}
.ws93{word-spacing:6.773333pt;}
.ws45{word-spacing:53.680000pt;}
.ws3f{word-spacing:73.320000pt;}
.ws4a{word-spacing:76.440000pt;}
.ws42{word-spacing:82.560000pt;}
.ws46{word-spacing:83.120000pt;}
.ws57{word-spacing:124.373333pt;}
.ws5b{word-spacing:143.317333pt;}
.ws47{word-spacing:154.800000pt;}
.ws3d{word-spacing:184.760000pt;}
.ws5a{word-spacing:202.538667pt;}
.ws59{word-spacing:214.357333pt;}
.ws3e{word-spacing:222.000000pt;}
.ws49{word-spacing:227.000000pt;}
.ws43{word-spacing:696.600000pt;}
.ws41{word-spacing:744.400000pt;}
.ws44{word-spacing:787.680000pt;}
._f{margin-left:-2576.085333pt;}
._51{margin-left:-2554.922667pt;}
._28{margin-left:-81.346667pt;}
._22{margin-left:-78.880000pt;}
._26{margin-left:-72.240000pt;}
._2{margin-left:-8.327467pt;}
._6{margin-left:-6.765867pt;}
._7{margin-left:-5.840000pt;}
._1{margin-left:-4.778667pt;}
._5{margin-left:-3.706667pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-1.066667pt;}
._c{width:1.013333pt;}
._8{width:2.186667pt;}
._9{width:3.680000pt;}
._b{width:5.066667pt;}
._a{width:6.026667pt;}
._d{width:7.200000pt;}
._e{width:8.160000pt;}
._5c{width:9.706667pt;}
._53{width:36.400000pt;}
._3{width:52.910603pt;}
._24{width:63.680000pt;}
._3f{width:72.560000pt;}
._27{width:77.560000pt;}
._1c{width:79.240000pt;}
._19{width:81.440000pt;}
._31{width:82.946667pt;}
._13{width:87.786667pt;}
._36{width:88.720000pt;}
._14{width:92.560000pt;}
._2e{width:102.000000pt;}
._52{width:111.925333pt;}
._25{width:121.960000pt;}
._1b{width:123.200000pt;}
._29{width:126.080000pt;}
._1d{width:129.760000pt;}
._17{width:134.413333pt;}
._49{width:150.360000pt;}
._16{width:154.800000pt;}
._44{width:159.240000pt;}
._34{width:164.800000pt;}
._54{width:172.677333pt;}
._1a{width:178.000000pt;}
._11{width:191.440000pt;}
._58{width:200.320000pt;}
._47{width:205.480000pt;}
._4a{width:208.640000pt;}
._59{width:235.776000pt;}
._43{width:237.000000pt;}
._55{width:252.416000pt;}
._3a{width:286.493333pt;}
._3c{width:291.826667pt;}
._37{width:293.320000pt;}
._18{width:295.400000pt;}
._56{width:317.610667pt;}
._39{width:326.493333pt;}
._5a{width:344.192000pt;}
._23{width:351.040000pt;}
._46{width:375.253333pt;}
._4e{width:384.360000pt;}
._5b{width:395.818667pt;}
._1f{width:401.080000pt;}
._40{width:406.493333pt;}
._57{width:423.082667pt;}
._2d{width:425.373333pt;}
._2b{width:460.893333pt;}
._12{width:468.480000pt;}
._30{width:476.240000pt;}
._20{width:495.133333pt;}
._35{width:503.240000pt;}
._3e{width:507.018667pt;}
._2f{width:509.960000pt;}
._3b{width:516.600000pt;}
._2a{width:526.560000pt;}
._41{width:532.160000pt;}
._45{width:543.240000pt;}
._32{width:545.480000pt;}
._4c{width:567.720000pt;}
._33{width:573.240000pt;}
._3d{width:581.080000pt;}
._2c{width:585.480000pt;}
._15{width:598.640000pt;}
._1e{width:614.440000pt;}
._21{width:666.600000pt;}
._50{width:796.560000pt;}
._38{width:797.680000pt;}
._4b{width:831.000000pt;}
._4f{width:862.120000pt;}
._4d{width:869.920000pt;}
._42{width:879.800000pt;}
._48{width:917.680000pt;}
._10{width:1041.000000pt;}
.fs5{font-size:23.320000pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2f{bottom:42.468667pt;}
.yfe{bottom:73.798533pt;}
.y159{bottom:73.893067pt;}
.y62{bottom:74.342533pt;}
.y105{bottom:74.470400pt;}
.y156{bottom:75.016533pt;}
.y103{bottom:75.215867pt;}
.y1c{bottom:78.242667pt;}
.y190{bottom:79.219467pt;}
.y136{bottom:80.988533pt;}
.y78{bottom:81.114533pt;}
.yef{bottom:82.496267pt;}
.y1d0{bottom:84.678667pt;}
.yfd{bottom:87.793200pt;}
.y158{bottom:87.887733pt;}
.y104{bottom:88.465067pt;}
.y155{bottom:89.011200pt;}
.y102{bottom:89.210533pt;}
.y100{bottom:89.683067pt;}
.yaa{bottom:90.282933pt;}
.y61{bottom:90.342533pt;}
.y1b{bottom:91.576000pt;}
.y18f{bottom:92.552800pt;}
.yee{bottom:96.938933pt;}
.y135{bottom:96.988533pt;}
.y77{bottom:97.114533pt;}
.y1cf{bottom:98.012000pt;}
.yfc{bottom:101.787867pt;}
.y157{bottom:101.882400pt;}
.y154{bottom:103.005867pt;}
.y101{bottom:103.205200pt;}
.yff{bottom:103.677733pt;}
.ya9{bottom:104.062933pt;}
.y18e{bottom:105.886133pt;}
.y60{bottom:106.342533pt;}
.y1ce{bottom:111.345333pt;}
.yed{bottom:111.605600pt;}
.y134{bottom:112.988533pt;}
.y153{bottom:117.000533pt;}
.y160{bottom:117.179067pt;}
.ya8{bottom:117.842933pt;}
.y18d{bottom:119.219467pt;}
.y5f{bottom:122.342533pt;}
.y152{bottom:122.588533pt;}
.y1cd{bottom:124.678667pt;}
.yec{bottom:126.272267pt;}
.y76{bottom:128.084000pt;}
.y133{bottom:128.988533pt;}
.y15f{bottom:131.173733pt;}
.ya7{bottom:131.622933pt;}
.y18c{bottom:132.552800pt;}
.y1cc{bottom:138.012000pt;}
.y5e{bottom:138.342533pt;}
.y151{bottom:138.588533pt;}
.yeb{bottom:140.714933pt;}
.y75{bottom:141.956000pt;}
.y132{bottom:144.988533pt;}
.ya6{bottom:145.402933pt;}
.y18b{bottom:145.886133pt;}
.y2a{bottom:151.188933pt;}
.y1cb{bottom:151.345333pt;}
.y5d{bottom:154.342533pt;}
.y150{bottom:154.588533pt;}
.y74{bottom:154.715867pt;}
.yea{bottom:155.381600pt;}
.ya5{bottom:159.182933pt;}
.y18a{bottom:159.219467pt;}
.y131{bottom:160.988533pt;}
.y15d{bottom:161.200133pt;}
.y1ca{bottom:164.678667pt;}
.y29{bottom:167.188933pt;}
.ye9{bottom:169.824267pt;}
.y5c{bottom:170.342533pt;}
.y73{bottom:170.355867pt;}
.y14f{bottom:170.588533pt;}
.y189{bottom:172.552800pt;}
.ya4{bottom:172.962933pt;}
.y15c{bottom:175.194800pt;}
.y130{bottom:176.988533pt;}
.y1c9{bottom:178.012000pt;}
.y28{bottom:183.188933pt;}
.ye8{bottom:184.266933pt;}
.y188{bottom:185.886133pt;}
.y5b{bottom:186.342533pt;}
.y14e{bottom:186.588533pt;}
.ya3{bottom:186.742933pt;}
.y15b{bottom:189.189467pt;}
.y1c8{bottom:191.345333pt;}
.y12f{bottom:192.988533pt;}
.ye7{bottom:198.709600pt;}
.y27{bottom:199.188933pt;}
.y187{bottom:199.219467pt;}
.ya2{bottom:200.522933pt;}
.y72{bottom:202.222533pt;}
.y5a{bottom:202.342533pt;}
.y14d{bottom:202.588533pt;}
.y1c7{bottom:204.678667pt;}
.y12e{bottom:208.988533pt;}
.y186{bottom:212.552800pt;}
.ya1{bottom:214.302933pt;}
.y26{bottom:215.188933pt;}
.y1c6{bottom:218.012000pt;}
.y59{bottom:218.342533pt;}
.y14c{bottom:218.588533pt;}
.y12d{bottom:224.988533pt;}
.y185{bottom:225.886133pt;}
.ye6{bottom:226.720267pt;}
.ya0{bottom:228.074400pt;}
.y25{bottom:231.188933pt;}
.y1c5{bottom:231.345333pt;}
.y71{bottom:234.102533pt;}
.y58{bottom:234.342533pt;}
.y14b{bottom:234.588533pt;}
.y184{bottom:239.219467pt;}
.y12c{bottom:240.988533pt;}
.y9f{bottom:241.854400pt;}
.y1c4{bottom:244.678667pt;}
.y24{bottom:247.188933pt;}
.y57{bottom:250.342533pt;}
.y14a{bottom:250.588533pt;}
.y183{bottom:252.552800pt;}
.y9e{bottom:255.634400pt;}
.y12b{bottom:256.988533pt;}
.ye5{bottom:257.748533pt;}
.y1c3{bottom:258.012000pt;}
.y23{bottom:263.188933pt;}
.y70{bottom:265.982533pt;}
.y56{bottom:266.342533pt;}
.y149{bottom:266.588533pt;}
.y9d{bottom:269.414400pt;}
.y1c2{bottom:271.345333pt;}
.y12a{bottom:272.988533pt;}
.y22{bottom:279.188933pt;}
.y182{bottom:281.984533pt;}
.y55{bottom:282.342533pt;}
.y148{bottom:282.588533pt;}
.y9c{bottom:283.194400pt;}
.y1c1{bottom:284.678667pt;}
.y129{bottom:288.988533pt;}
.y21{bottom:295.188933pt;}
.y9b{bottom:296.974400pt;}
.y1c0{bottom:298.012000pt;}
.y54{bottom:298.342533pt;}
.ye4{bottom:298.468533pt;}
.y147{bottom:298.588533pt;}
.y128{bottom:304.988533pt;}
.ybc{bottom:307.121867pt;}
.y9a{bottom:310.754400pt;}
.y20{bottom:311.188933pt;}
.y1bf{bottom:311.345333pt;}
.y53{bottom:314.342533pt;}
.y6f{bottom:314.462533pt;}
.ye3{bottom:314.468533pt;}
.y146{bottom:314.588533pt;}
.y127{bottom:320.988533pt;}
.ybb{bottom:323.121867pt;}
.y99{bottom:324.534400pt;}
.y1be{bottom:324.678667pt;}
.y1f{bottom:327.188933pt;}
.y52{bottom:330.342533pt;}
.y6e{bottom:330.462533pt;}
.y181{bottom:330.464533pt;}
.ye2{bottom:330.468533pt;}
.y145{bottom:330.588533pt;}
.y126{bottom:336.988533pt;}
.y1bd{bottom:338.012000pt;}
.y98{bottom:338.314400pt;}
.yba{bottom:339.121867pt;}
.y1e{bottom:343.188933pt;}
.y180{bottom:346.104533pt;}
.y51{bottom:346.342533pt;}
.y6d{bottom:346.462533pt;}
.ye1{bottom:346.468533pt;}
.y144{bottom:346.588533pt;}
.y1bc{bottom:351.345333pt;}
.y97{bottom:352.094400pt;}
.y125{bottom:352.988533pt;}
.yb9{bottom:355.121867pt;}
.y2c{bottom:359.188933pt;}
.y50{bottom:362.342533pt;}
.y6c{bottom:362.462533pt;}
.ye0{bottom:362.468533pt;}
.y143{bottom:362.588533pt;}
.y1bb{bottom:364.678667pt;}
.y96{bottom:365.874400pt;}
.y124{bottom:368.988533pt;}
.yb8{bottom:371.121867pt;}
.y1d{bottom:374.828933pt;}
.y2b{bottom:375.188933pt;}
.y1ba{bottom:378.012000pt;}
.y4f{bottom:378.342533pt;}
.y6b{bottom:378.462533pt;}
.y17f{bottom:378.464533pt;}
.ydf{bottom:378.468533pt;}
.y142{bottom:378.601867pt;}
.y95{bottom:379.654400pt;}
.y123{bottom:384.988533pt;}
.yb7{bottom:387.121867pt;}
.y1b9{bottom:391.347467pt;}
.y94{bottom:393.434400pt;}
.y17e{bottom:394.104533pt;}
.y4e{bottom:394.342533pt;}
.y6a{bottom:394.462533pt;}
.yde{bottom:394.468533pt;}
.y141{bottom:394.601867pt;}
.y122{bottom:400.988533pt;}
.yb6{bottom:403.121867pt;}
.y1b8{bottom:404.680800pt;}
.y93{bottom:407.214400pt;}
.y4d{bottom:410.342533pt;}
.y69{bottom:410.462533pt;}
.ydd{bottom:410.468533pt;}
.y140{bottom:410.601867pt;}
.y121{bottom:416.988533pt;}
.y1b7{bottom:418.014133pt;}
.yb5{bottom:419.121867pt;}
.y92{bottom:420.994400pt;}
.y4c{bottom:426.342533pt;}
.y68{bottom:426.462533pt;}
.y17d{bottom:426.464533pt;}
.ydc{bottom:426.468533pt;}
.y13f{bottom:426.601867pt;}
.y1b6{bottom:431.347467pt;}
.y120{bottom:432.988533pt;}
.y91{bottom:434.774400pt;}
.yb4{bottom:435.121867pt;}
.y1a{bottom:440.723733pt;}
.y4b{bottom:442.342533pt;}
.y67{bottom:442.462533pt;}
.y17c{bottom:442.464533pt;}
.ydb{bottom:442.468533pt;}
.y13e{bottom:442.601867pt;}
.y1b5{bottom:444.680800pt;}
.y90{bottom:448.554400pt;}
.y11f{bottom:448.988533pt;}
.yb3{bottom:451.121867pt;}
.y1b4{bottom:458.014133pt;}
.y66{bottom:458.462533pt;}
.y17b{bottom:458.464533pt;}
.yda{bottom:458.468533pt;}
.y13d{bottom:458.601867pt;}
.y8f{bottom:462.334400pt;}
.y11e{bottom:464.988533pt;}
.y19{bottom:465.030400pt;}
.yb2{bottom:467.121867pt;}
.y1b3{bottom:471.347467pt;}
.y4a{bottom:473.982533pt;}
.y65{bottom:474.462533pt;}
.y17a{bottom:474.464533pt;}
.yd9{bottom:474.468533pt;}
.y13c{bottom:474.601867pt;}
.y8e{bottom:476.114400pt;}
.y11d{bottom:480.988533pt;}
.y18{bottom:481.030400pt;}
.yb1{bottom:483.121867pt;}
.y1b2{bottom:484.680800pt;}
.y8d{bottom:489.882933pt;}
.y179{bottom:490.104533pt;}
.y64{bottom:490.462533pt;}
.yd8{bottom:490.468533pt;}
.y13b{bottom:490.601867pt;}
.y11c{bottom:496.988533pt;}
.y17{bottom:497.030400pt;}
.y1b1{bottom:498.014133pt;}
.yb0{bottom:499.121867pt;}
.y8c{bottom:503.662933pt;}
.y63{bottom:506.462533pt;}
.yd7{bottom:506.468533pt;}
.y13a{bottom:506.601867pt;}
.y1b0{bottom:511.347467pt;}
.y11b{bottom:512.988533pt;}
.y16{bottom:513.030400pt;}
.y8b{bottom:517.442933pt;}
.y49{bottom:522.462533pt;}
.y178{bottom:522.464533pt;}
.yd6{bottom:522.468533pt;}
.y139{bottom:522.601867pt;}
.y1af{bottom:524.680800pt;}
.y11a{bottom:528.988533pt;}
.y15{bottom:529.030400pt;}
.yaf{bottom:530.091333pt;}
.y8a{bottom:531.222933pt;}
.y1ae{bottom:538.014133pt;}
.y177{bottom:538.104533pt;}
.y48{bottom:538.462533pt;}
.yd5{bottom:538.468533pt;}
.y138{bottom:538.601867pt;}
.yae{bottom:543.963333pt;}
.y119{bottom:544.988533pt;}
.y89{bottom:545.002933pt;}
.y14{bottom:545.030400pt;}
.y1ad{bottom:551.347467pt;}
.y47{bottom:554.462533pt;}
.yd4{bottom:554.468533pt;}
.yad{bottom:556.729200pt;}
.y88{bottom:558.782933pt;}
.y118{bottom:560.988533pt;}
.y13{bottom:561.030400pt;}
.y1ed{bottom:564.678667pt;}
.y1ac{bottom:564.680800pt;}
.y137{bottom:570.241867pt;}
.y46{bottom:570.462533pt;}
.y176{bottom:570.464533pt;}
.yd3{bottom:570.468533pt;}
.yac{bottom:570.595867pt;}
.y87{bottom:572.562933pt;}
.y117{bottom:576.988533pt;}
.y12{bottom:577.030400pt;}
.y1ec{bottom:578.012000pt;}
.y1ab{bottom:578.014133pt;}
.yab{bottom:586.235867pt;}
.y86{bottom:586.342933pt;}
.y45{bottom:586.462533pt;}
.y175{bottom:586.464533pt;}
.yd2{bottom:586.468533pt;}
.y1eb{bottom:591.345333pt;}
.y1aa{bottom:591.347467pt;}
.y116{bottom:592.988533pt;}
.y11{bottom:593.030400pt;}
.y85{bottom:600.122933pt;}
.y44{bottom:602.462533pt;}
.y174{bottom:602.464533pt;}
.yd1{bottom:602.468533pt;}
.y1ea{bottom:604.678667pt;}
.y1a9{bottom:604.680800pt;}
.y115{bottom:608.988533pt;}
.y10{bottom:609.030400pt;}
.y84{bottom:613.902933pt;}
.y1e9{bottom:618.012000pt;}
.y1a8{bottom:618.014133pt;}
.y43{bottom:618.462533pt;}
.y173{bottom:618.464533pt;}
.yd0{bottom:618.468533pt;}
.y114{bottom:624.988533pt;}
.y83{bottom:627.682933pt;}
.y1e8{bottom:631.345333pt;}
.y1a7{bottom:631.347467pt;}
.y42{bottom:634.462533pt;}
.y172{bottom:634.464533pt;}
.ycf{bottom:634.468533pt;}
.y113{bottom:640.988533pt;}
.y82{bottom:641.462933pt;}
.yfb{bottom:643.121867pt;}
.y1e7{bottom:644.678667pt;}
.y1a6{bottom:644.680800pt;}
.yf{bottom:649.170933pt;}
.y41{bottom:650.462533pt;}
.y171{bottom:650.464533pt;}
.yce{bottom:650.468533pt;}
.y81{bottom:655.242933pt;}
.y112{bottom:656.988533pt;}
.y1e6{bottom:658.012000pt;}
.y1a5{bottom:658.014133pt;}
.yfa{bottom:659.121867pt;}
.ye{bottom:660.238267pt;}
.y170{bottom:666.104533pt;}
.y40{bottom:666.462533pt;}
.ycd{bottom:666.468533pt;}
.y80{bottom:669.022933pt;}
.yd{bottom:670.638267pt;}
.y1e5{bottom:671.345333pt;}
.y1a4{bottom:671.347467pt;}
.y111{bottom:672.988533pt;}
.yf9{bottom:675.121867pt;}
.y3f{bottom:682.462533pt;}
.ycc{bottom:682.468533pt;}
.y7f{bottom:682.802933pt;}
.y1e4{bottom:684.678667pt;}
.y1a3{bottom:684.680800pt;}
.y110{bottom:688.988533pt;}
.yf8{bottom:691.121867pt;}
.y7e{bottom:696.582933pt;}
.y1e3{bottom:698.012000pt;}
.y1a2{bottom:698.014133pt;}
.y3e{bottom:698.462533pt;}
.y16f{bottom:698.464533pt;}
.ycb{bottom:698.468533pt;}
.yc{bottom:698.829867pt;}
.y10f{bottom:704.988533pt;}
.yf7{bottom:707.121867pt;}
.y7d{bottom:710.362933pt;}
.y1e2{bottom:711.345333pt;}
.y1a1{bottom:711.347467pt;}
.y3d{bottom:714.462533pt;}
.y16e{bottom:714.464533pt;}
.yca{bottom:714.468533pt;}
.yb{bottom:715.652400pt;}
.y10e{bottom:720.988533pt;}
.yf6{bottom:723.121867pt;}
.y7c{bottom:724.142933pt;}
.y1e1{bottom:724.678667pt;}
.y1a0{bottom:724.680800pt;}
.ya{bottom:727.652400pt;}
.y3c{bottom:730.462533pt;}
.y16d{bottom:730.464533pt;}
.yc9{bottom:730.468533pt;}
.y10d{bottom:736.988533pt;}
.y1e0{bottom:738.012000pt;}
.y19f{bottom:738.014133pt;}
.y9{bottom:739.652400pt;}
.y3b{bottom:746.462533pt;}
.y16c{bottom:746.464533pt;}
.yc8{bottom:746.468533pt;}
.y8{bottom:746.829867pt;}
.y1df{bottom:751.345333pt;}
.y19e{bottom:751.347467pt;}
.y7b{bottom:751.822933pt;}
.y10c{bottom:752.988533pt;}
.yf5{bottom:754.091333pt;}
.y3a{bottom:762.462533pt;}
.y16b{bottom:762.464533pt;}
.yc7{bottom:762.468533pt;}
.y7{bottom:763.652400pt;}
.y1de{bottom:764.678667pt;}
.y19d{bottom:764.680800pt;}
.yf4{bottom:767.963333pt;}
.y10b{bottom:768.988533pt;}
.y1dd{bottom:778.012000pt;}
.y19c{bottom:778.014133pt;}
.y39{bottom:778.462533pt;}
.y16a{bottom:778.464533pt;}
.yc6{bottom:778.468533pt;}
.yf3{bottom:780.729200pt;}
.y7a{bottom:782.622533pt;}
.y10a{bottom:784.988533pt;}
.y6{bottom:789.183067pt;}
.y1dc{bottom:791.345333pt;}
.y19b{bottom:791.347467pt;}
.y38{bottom:794.462533pt;}
.y169{bottom:794.464533pt;}
.yc5{bottom:794.468533pt;}
.yf2{bottom:794.595867pt;}
.y1db{bottom:804.678667pt;}
.y19a{bottom:804.680800pt;}
.yf1{bottom:810.235867pt;}
.y37{bottom:810.462533pt;}
.y168{bottom:810.464533pt;}
.yc4{bottom:810.468533pt;}
.y109{bottom:815.957867pt;}
.y1da{bottom:818.012000pt;}
.y199{bottom:818.014133pt;}
.y36{bottom:826.462533pt;}
.y167{bottom:826.464533pt;}
.yc3{bottom:826.468533pt;}
.y108{bottom:829.829867pt;}
.y5{bottom:830.226133pt;}
.y1d9{bottom:831.345333pt;}
.y198{bottom:831.347467pt;}
.y35{bottom:842.462533pt;}
.y166{bottom:842.464533pt;}
.yc2{bottom:842.468533pt;}
.y107{bottom:842.595867pt;}
.y1d8{bottom:844.678667pt;}
.y197{bottom:844.680800pt;}
.y1d7{bottom:858.012000pt;}
.y196{bottom:858.014133pt;}
.y106{bottom:858.235867pt;}
.y34{bottom:858.462533pt;}
.y165{bottom:858.464533pt;}
.yc1{bottom:858.468533pt;}
.y4{bottom:862.635733pt;}
.y1d6{bottom:871.345333pt;}
.y195{bottom:871.347467pt;}
.y33{bottom:874.462533pt;}
.y164{bottom:874.464533pt;}
.yc0{bottom:874.468533pt;}
.y1d5{bottom:884.678667pt;}
.y194{bottom:884.680800pt;}
.y32{bottom:890.462533pt;}
.y163{bottom:890.464533pt;}
.ybf{bottom:890.468533pt;}
.y3{bottom:895.045333pt;}
.y1d4{bottom:898.012000pt;}
.y193{bottom:898.014133pt;}
.y31{bottom:906.462533pt;}
.y162{bottom:906.464533pt;}
.ybe{bottom:906.468533pt;}
.y1d3{bottom:911.345333pt;}
.y192{bottom:911.347467pt;}
.y15e{bottom:922.104533pt;}
.y30{bottom:922.462533pt;}
.ybd{bottom:922.468533pt;}
.y1d2{bottom:924.678667pt;}
.y191{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.y79{bottom:1006.594400pt;}
.y15a{bottom:1006.597067pt;}
.y161{bottom:1006.597733pt;}
.y1d1{bottom:1006.598667pt;}
.yf0{bottom:1006.613600pt;}
.y2e{bottom:1009.860000pt;}
.y2d{bottom:1022.660000pt;}
.h6{height:17.000371pt;}
.h8{height:25.255208pt;}
.h15{height:27.109375pt;}
.h2{height:27.197917pt;}
.h14{height:27.773438pt;}
.hc{height:29.121094pt;}
.hd{height:29.140625pt;}
.h7{height:29.160156pt;}
.h18{height:29.625000pt;}
.h19{height:31.062500pt;}
.h11{height:31.083333pt;}
.h10{height:31.104167pt;}
.h13{height:35.097656pt;}
.h16{height:35.131790pt;}
.he{height:37.031250pt;}
.h17{height:37.437500pt;}
.ha{height:38.828125pt;}
.h9{height:38.854167pt;}
.hb{height:38.880208pt;}
.h12{height:42.117188pt;}
.hf{height:46.796875pt;}
.h1a{height:48.236875pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:68.031467pt;}
.x1f{left:69.921200pt;}
.x1d{left:71.818133pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x1a{left:88.818933pt;}
.x1c{left:89.831467pt;}
.x4{left:94.488133pt;}
.x2c{left:97.249200pt;}
.xc{left:98.267733pt;}
.x2d{left:104.781600pt;}
.x33{left:109.606533pt;}
.x3{left:111.501467pt;}
.x6{left:117.170133pt;}
.xd{left:128.641067pt;}
.x20{left:164.363867pt;}
.x32{left:172.698133pt;}
.x1e{left:179.263600pt;}
.x5{left:189.223467pt;}
.x31{left:195.677733pt;}
.x2e{left:198.489600pt;}
.x21{left:289.089200pt;}
.x22{left:304.203867pt;}
.xa{left:404.481333pt;}
.xe{left:406.267733pt;}
.x14{left:414.894400pt;}
.x15{left:421.157467pt;}
.x19{left:425.192000pt;}
.x7{left:427.090133pt;}
.x23{left:428.929200pt;}
.x29{left:434.714267pt;}
.xf{left:436.507733pt;}
.x24{left:444.043867pt;}
.x34{left:447.867867pt;}
.x2b{left:455.433067pt;}
.x8{left:457.330133pt;}
.x12{left:475.374400pt;}
.x13{left:486.254400pt;}
.x27{left:491.462533pt;}
.x11{left:509.587733pt;}
.x16{left:517.193467pt;}
.x10{left:525.881067pt;}
.x2a{left:535.766267pt;}
.x28{left:560.235867pt;}
.x25{left:568.769200pt;}
.x26{left:583.883867pt;}
.x18{left:589.770933pt;}
.x2{left:616.324800pt;}
.x2f{left:641.526800pt;}
.x17{left:647.459200pt;}
.x30{left:661.216133pt;}
.x1b{left:666.356800pt;}
}




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