
    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_a11fa5980590fa0208a688ca.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_5df0b2db53fc9f825fb1b33a.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_5f10a0a3b41bf049d5480e8d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.740234;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_84c2d509a8cbfec149dd603b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_503afed97c017b3f48365cad.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_bfce29813be58e18482ac19f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2e5ec2a5742857c3de146074.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_cc551eb07ae22d1d40e684e2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;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_d428c1adf0e5c80bcc00bbb9.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_07cb16b45c50aa7d42cd0170.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.741211;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_5c9c316bf22f82eeb5fc1101.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_ef3a6d5c1a7256a5c9b4c136.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.925293;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_290c7c19ed03cf433f6ab88d.woff2')format("woff");}.ffd{font-family:ffd;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;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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;}
.v4{vertical-align:1.620000px;}
.v3{vertical-align:22.610400px;}
.v1{vertical-align:30.381600px;}
.ls45{letter-spacing:-5.328000px;}
.ls43{letter-spacing:-3.840000px;}
.ls7b{letter-spacing:-2.640000px;}
.ls44{letter-spacing:-1.776000px;}
.lsf{letter-spacing:-0.780000px;}
.ls36{letter-spacing:-0.420000px;}
.ls6e{letter-spacing:-0.384000px;}
.ls6c{letter-spacing:-0.240000px;}
.ls4a{letter-spacing:-0.220630px;}
.ls6d{letter-spacing:-0.192000px;}
.ls3c{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.120000px;}
.ls7a{letter-spacing:-0.096000px;}
.ls7c{letter-spacing:-0.060000px;}
.ls6b{letter-spacing:-0.048000px;}
.lse{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004140px;}
.ls77{letter-spacing:0.048000px;}
.ls47{letter-spacing:0.055157px;}
.ls2d{letter-spacing:0.060000px;}
.ls48{letter-spacing:0.069223px;}
.ls59{letter-spacing:0.096000px;}
.ls49{letter-spacing:0.110315px;}
.ls13{letter-spacing:0.120000px;}
.ls1b{letter-spacing:0.180000px;}
.ls53{letter-spacing:0.192000px;}
.ls4{letter-spacing:0.240000px;}
.ls5a{letter-spacing:0.288000px;}
.ls25{letter-spacing:0.300000px;}
.ls61{letter-spacing:0.336000px;}
.ls16{letter-spacing:0.360000px;}
.ls71{letter-spacing:0.384000px;}
.ls20{letter-spacing:0.420000px;}
.ls57{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.480000px;}
.ls66{letter-spacing:0.528000px;}
.ls1e{letter-spacing:0.540000px;}
.ls60{letter-spacing:0.576000px;}
.ls2{letter-spacing:0.600000px;}
.ls6a{letter-spacing:0.624000px;}
.ls34{letter-spacing:0.660000px;}
.ls79{letter-spacing:0.672000px;}
.ls6{letter-spacing:0.720000px;}
.ls58{letter-spacing:0.768000px;}
.ls1d{letter-spacing:0.780000px;}
.ls51{letter-spacing:0.816000px;}
.ls24{letter-spacing:0.840000px;}
.ls5c{letter-spacing:0.864000px;}
.ls15{letter-spacing:0.900000px;}
.ls52{letter-spacing:0.912000px;}
.ls31{letter-spacing:0.960000px;}
.lsc{letter-spacing:1.020000px;}
.ls4d{letter-spacing:1.080000px;}
.ls68{letter-spacing:1.104000px;}
.ls23{letter-spacing:1.140000px;}
.ls73{letter-spacing:1.152000px;}
.ls27{letter-spacing:1.200000px;}
.lsb{letter-spacing:1.260000px;}
.ls67{letter-spacing:1.296000px;}
.ls21{letter-spacing:1.320000px;}
.ls65{letter-spacing:1.344000px;}
.ls22{letter-spacing:1.380000px;}
.ls5b{letter-spacing:1.392000px;}
.ls33{letter-spacing:1.440000px;}
.ls63{letter-spacing:1.488000px;}
.ls17{letter-spacing:1.500000px;}
.ls62{letter-spacing:1.536000px;}
.ls32{letter-spacing:1.560000px;}
.ls56{letter-spacing:1.584000px;}
.ls30{letter-spacing:1.620000px;}
.ls2c{letter-spacing:1.680000px;}
.ls75{letter-spacing:1.728000px;}
.lsa{letter-spacing:1.740000px;}
.ls50{letter-spacing:1.776000px;}
.ls7{letter-spacing:1.800000px;}
.ls5d{letter-spacing:1.824000px;}
.ls19{letter-spacing:1.920000px;}
.ls6f{letter-spacing:1.968000px;}
.ls3f{letter-spacing:1.980000px;}
.ls3{letter-spacing:2.040000px;}
.ls5f{letter-spacing:2.064000px;}
.ls29{letter-spacing:2.100000px;}
.ls74{letter-spacing:2.112000px;}
.ls1c{letter-spacing:2.220000px;}
.ls70{letter-spacing:2.256000px;}
.ls2b{letter-spacing:2.280000px;}
.ls9{letter-spacing:2.340000px;}
.ls55{letter-spacing:2.352000px;}
.lsd{letter-spacing:2.400000px;}
.ls14{letter-spacing:2.460000px;}
.ls28{letter-spacing:2.520000px;}
.ls2f{letter-spacing:2.580000px;}
.ls5e{letter-spacing:2.592000px;}
.ls12{letter-spacing:2.640000px;}
.ls54{letter-spacing:2.688000px;}
.ls18{letter-spacing:2.700000px;}
.ls69{letter-spacing:2.736000px;}
.ls26{letter-spacing:2.820000px;}
.ls64{letter-spacing:2.880000px;}
.ls40{letter-spacing:2.940000px;}
.ls72{letter-spacing:2.976000px;}
.ls4e{letter-spacing:3.000000px;}
.ls78{letter-spacing:3.024000px;}
.ls4c{letter-spacing:3.060000px;}
.ls8{letter-spacing:3.120000px;}
.ls2a{letter-spacing:3.240000px;}
.ls1a{letter-spacing:3.300000px;}
.ls1f{letter-spacing:3.360000px;}
.ls11{letter-spacing:3.540000px;}
.ls3b{letter-spacing:3.600000px;}
.ls4f{letter-spacing:3.720000px;}
.ls38{letter-spacing:3.840000px;}
.ls3d{letter-spacing:4.140000px;}
.ls2e{letter-spacing:4.260000px;}
.ls3e{letter-spacing:4.500000px;}
.ls37{letter-spacing:4.560000px;}
.ls39{letter-spacing:4.680000px;}
.ls76{letter-spacing:4.800000px;}
.ls35{letter-spacing:5.100000px;}
.ls3a{letter-spacing:5.460000px;}
.ls46{letter-spacing:12.686202px;}
.ls4b{letter-spacing:15.298327px;}
.ls0{letter-spacing:59.532876px;}
.ls41{letter-spacing:163.863600px;}
.ls42{letter-spacing:255.269400px;}
.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;}
}
.ws0{word-spacing:-35.194800px;}
.ws46{word-spacing:-19.680000px;}
.ws44{word-spacing:-18.840000px;}
.ws47{word-spacing:-18.600000px;}
.ws71{word-spacing:-18.480000px;}
.ws27{word-spacing:-18.120000px;}
.ws43{word-spacing:-17.700000px;}
.ws4{word-spacing:-17.340000px;}
.ws4c{word-spacing:-16.800000px;}
.ws2{word-spacing:-16.680000px;}
.ws45{word-spacing:-16.560000px;}
.ws25{word-spacing:-16.020000px;}
.ws28{word-spacing:-15.960000px;}
.ws26{word-spacing:-15.840000px;}
.ws29{word-spacing:-15.780000px;}
.ws2a{word-spacing:-15.600000px;}
.ws3{word-spacing:-15.480000px;}
.ws70{word-spacing:-15.298327px;}
.ws4b{word-spacing:-15.240000px;}
.ws10{word-spacing:-15.120000px;}
.ws24{word-spacing:-15.060000px;}
.ws99{word-spacing:-14.256000px;}
.ws9c{word-spacing:-13.824000px;}
.ws78{word-spacing:-13.776000px;}
.ws6{word-spacing:-13.344000px;}
.ws79{word-spacing:-13.104000px;}
.ws72{word-spacing:-12.816000px;}
.ws74{word-spacing:-12.768000px;}
.ws7a{word-spacing:-12.624000px;}
.ws5{word-spacing:-12.510000px;}
.ws77{word-spacing:-12.336000px;}
.ws9b{word-spacing:-12.240000px;}
.ws73{word-spacing:-12.192000px;}
.ws75{word-spacing:-12.096000px;}
.ws9a{word-spacing:-12.048000px;}
.ws11{word-spacing:-12.000000px;}
.ws76{word-spacing:-11.808000px;}
.ws1{word-spacing:-10.210662px;}
.ws4f{word-spacing:-8.160000px;}
.ws5c{word-spacing:-6.996000px;}
.ws5b{word-spacing:-6.672000px;}
.ws4a{word-spacing:-3.600000px;}
.ws3d{word-spacing:-3.120000px;}
.ws8{word-spacing:-2.886000px;}
.ws82{word-spacing:-2.688000px;}
.ws94{word-spacing:-2.640000px;}
.wsf{word-spacing:-2.340000px;}
.ws9e{word-spacing:-2.256000px;}
.ws17{word-spacing:-2.220000px;}
.ws8a{word-spacing:-1.824000px;}
.ws5d{word-spacing:-1.800000px;}
.wsa8{word-spacing:-1.728000px;}
.ws48{word-spacing:-1.560000px;}
.ws97{word-spacing:-1.104000px;}
.ws1c{word-spacing:-1.080000px;}
.ws3e{word-spacing:-0.960000px;}
.ws81{word-spacing:-0.912000px;}
.ws93{word-spacing:-0.864000px;}
.ws3c{word-spacing:-0.840000px;}
.ws86{word-spacing:-0.768000px;}
.ws21{word-spacing:-0.540000px;}
.ws84{word-spacing:-0.432000px;}
.ws2b{word-spacing:-0.420000px;}
.wsa1{word-spacing:-0.384000px;}
.ws8d{word-spacing:-0.336000px;}
.ws83{word-spacing:-0.240000px;}
.ws6e{word-spacing:-0.110315px;}
.ws88{word-spacing:-0.096000px;}
.ws6c{word-spacing:-0.062208px;}
.ws60{word-spacing:-0.055157px;}
.wsa9{word-spacing:-0.048000px;}
.ws7{word-spacing:0.000000px;}
.ws85{word-spacing:0.048000px;}
.ws30{word-spacing:0.180000px;}
.ws8c{word-spacing:0.192000px;}
.ws6f{word-spacing:0.220630px;}
.ws8f{word-spacing:0.240000px;}
.ws9d{word-spacing:0.288000px;}
.ws18{word-spacing:0.360000px;}
.ws91{word-spacing:0.384000px;}
.ws35{word-spacing:0.420000px;}
.ws3a{word-spacing:0.480000px;}
.ws5e{word-spacing:0.672000px;}
.ws2c{word-spacing:0.720000px;}
.wsa4{word-spacing:0.816000px;}
.wsd{word-spacing:0.840000px;}
.ws9f{word-spacing:0.864000px;}
.ws19{word-spacing:0.900000px;}
.wsa5{word-spacing:0.912000px;}
.ws34{word-spacing:0.960000px;}
.ws31{word-spacing:1.080000px;}
.ws14{word-spacing:1.140000px;}
.wsa2{word-spacing:1.296000px;}
.ws1d{word-spacing:1.380000px;}
.ws96{word-spacing:1.392000px;}
.ws87{word-spacing:1.488000px;}
.wsa{word-spacing:1.500000px;}
.ws92{word-spacing:1.536000px;}
.wsab{word-spacing:1.560000px;}
.ws49{word-spacing:1.620000px;}
.ws32{word-spacing:1.740000px;}
.ws2d{word-spacing:1.800000px;}
.ws36{word-spacing:1.860000px;}
.ws23{word-spacing:1.920000px;}
.wsc{word-spacing:2.040000px;}
.ws1b{word-spacing:2.100000px;}
.ws7c{word-spacing:2.280000px;}
.wse{word-spacing:2.340000px;}
.ws16{word-spacing:2.400000px;}
.ws37{word-spacing:2.460000px;}
.ws15{word-spacing:2.640000px;}
.ws40{word-spacing:2.760000px;}
.ws12{word-spacing:2.820000px;}
.ws90{word-spacing:2.832000px;}
.ws3b{word-spacing:2.880000px;}
.wsa0{word-spacing:2.928000px;}
.ws8e{word-spacing:3.168000px;}
.ws8b{word-spacing:3.216000px;}
.ws1f{word-spacing:3.240000px;}
.ws95{word-spacing:3.264000px;}
.wsaa{word-spacing:3.408000px;}
.ws38{word-spacing:3.420000px;}
.ws3f{word-spacing:3.480000px;}
.ws7e{word-spacing:3.504000px;}
.wsa3{word-spacing:3.552000px;}
.ws33{word-spacing:3.600000px;}
.ws89{word-spacing:3.648000px;}
.ws1a{word-spacing:3.660000px;}
.wsa6{word-spacing:3.696000px;}
.wsa7{word-spacing:3.792000px;}
.ws7d{word-spacing:3.840000px;}
.ws7f{word-spacing:3.888000px;}
.ws80{word-spacing:3.936000px;}
.ws22{word-spacing:3.960000px;}
.ws6d{word-spacing:3.984000px;}
.ws20{word-spacing:4.140000px;}
.ws42{word-spacing:4.260000px;}
.ws39{word-spacing:4.320000px;}
.ws41{word-spacing:4.380000px;}
.ws1e{word-spacing:4.440000px;}
.ws2e{word-spacing:4.500000px;}
.ws2f{word-spacing:4.680000px;}
.ws13{word-spacing:4.860000px;}
.ws9{word-spacing:4.920000px;}
.wsb{word-spacing:4.980000px;}
.ws98{word-spacing:5.040000px;}
.ws7b{word-spacing:5.520000px;}
.ws68{word-spacing:12.189785px;}
.ws61{word-spacing:12.244943px;}
.ws67{word-spacing:12.300100px;}
.ws65{word-spacing:12.355258px;}
.ws69{word-spacing:12.465572px;}
.ws66{word-spacing:12.520730px;}
.ws62{word-spacing:12.575887px;}
.ws63{word-spacing:12.631045px;}
.ws64{word-spacing:12.686202px;}
.ws6a{word-spacing:15.852113px;}
.ws5a{word-spacing:67.200000px;}
.ws59{word-spacing:68.064000px;}
.ws54{word-spacing:68.976000px;}
.ws57{word-spacing:73.392000px;}
.ws53{word-spacing:79.200000px;}
.ws50{word-spacing:91.200000px;}
.ws4d{word-spacing:97.824000px;}
.ws4e{word-spacing:127.200000px;}
.ws58{word-spacing:171.984000px;}
.ws55{word-spacing:176.448000px;}
.ws56{word-spacing:245.520000px;}
.ws5f{word-spacing:312.192000px;}
.ws52{word-spacing:362.544000px;}
.ws6b{word-spacing:581.519064px;}
.ws51{word-spacing:975.984000px;}
._19{margin-left:-2898.144000px;}
._1d{margin-left:-2874.336000px;}
._2{margin-left:-9.368400px;}
._4{margin-left:-7.560000px;}
._1b{margin-left:-6.516000px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-3.528000px;}
._0{margin-left:-2.310000px;}
._5{margin-left:-1.080000px;}
._7{width:1.020000px;}
._63{width:2.088000px;}
._8{width:3.096000px;}
._1a{width:4.620000px;}
._9{width:5.760000px;}
._6{width:7.380000px;}
._1c{width:8.700000px;}
._4a{width:79.200000px;}
._28{width:103.200000px;}
._1f{width:137.424000px;}
._52{width:163.440000px;}
._48{width:178.368000px;}
._51{width:182.592000px;}
._4d{width:183.815400px;}
._23{width:189.552000px;}
._3a{width:195.120000px;}
._49{width:206.064000px;}
._56{width:211.440000px;}
._54{width:214.080000px;}
._27{width:215.424000px;}
._37{width:218.064000px;}
._50{width:222.096000px;}
._57{width:224.736000px;}
._20{width:226.092000px;}
._42{width:227.424000px;}
._4b{width:228.768000px;}
._2f{width:234.096000px;}
._1e{width:235.488000px;}
._21{width:237.534600px;}
._24{width:239.952000px;}
._3d{width:242.064000px;}
._44{width:244.374000px;}
._4e{width:245.520000px;}
._3e{width:246.759600px;}
._33{width:251.424000px;}
._2c{width:252.768000px;}
._43{width:257.520000px;}
._29{width:263.952000px;}
._3b{width:269.520000px;}
._22{width:276.768000px;}
._5a{width:315.360000px;}
._5f{width:324.192000px;}
._16{width:335.472000px;}
._5d{width:336.912000px;}
._58{width:342.240000px;}
._59{width:345.783600px;}
._15{width:348.336000px;}
._4f{width:374.544000px;}
._40{width:378.152400px;}
._55{width:380.070000px;}
._25{width:386.544000px;}
._2d{width:390.576000px;}
._13{width:392.184000px;}
._60{width:396.192000px;}
._45{width:398.544000px;}
._35{width:399.545400px;}
._30{width:402.576000px;}
._2a{width:410.544000px;}
._5e{width:414.432000px;}
._5b{width:426.432000px;}
._62{width:434.832000px;}
._5c{width:437.088000px;}
._3f{width:438.336000px;}
._41{width:439.680000px;}
._2e{width:442.368000px;}
._47{width:443.664000px;}
._34{width:444.816000px;}
._61{width:450.432000px;}
._26{width:455.136000px;}
._18{width:464.454000px;}
._14{width:472.752000px;}
._d{width:476.310000px;}
._17{width:479.376000px;}
._e{width:528.672000px;}
._c{width:543.360000px;}
._b{width:547.392000px;}
._10{width:549.096000px;}
._f{width:572.736000px;}
._12{width:585.480000px;}
._11{width:586.872000px;}
._a{width:716.304000px;}
._4c{width:976.302000px;}
._46{width:982.224000px;}
._53{width:985.440000px;}
._36{width:986.753400px;}
._39{width:989.712000px;}
._31{width:992.016000px;}
._3c{width:994.224000px;}
._32{width:995.568000px;}
._2b{width:997.488000px;}
._38{width:998.688000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:26.235000px;}
.fsa{font-size:27.984000px;}
.fs5{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs2{font-size:45.000000px;}
.fs8{font-size:48.000000px;}
.fsb{font-size:55.157400px;}
.fs9{font-size:60.000000px;}
.fsd{font-size:62.208000px;}
.fs4{font-size:63.000000px;}
.fsc{font-size:69.223200px;}
.fs1{font-size:78.000000px;}
.fs3{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2d{bottom:47.777250px;}
.yc9{bottom:82.822500px;}
.yf9{bottom:83.120850px;}
.yc6{bottom:83.628600px;}
.yb6{bottom:83.635350px;}
.y5d{bottom:83.920350px;}
.y165{bottom:86.121900px;}
.y2a{bottom:88.026750px;}
.y90{bottom:92.096400px;}
.y10d{bottom:92.378250px;}
.y1a5{bottom:95.265900px;}
.yc8{bottom:98.566500px;}
.y164{bottom:101.121900px;}
.yc5{bottom:101.628600px;}
.yb5{bottom:101.635350px;}
.y5c{bottom:101.920350px;}
.y29{bottom:103.023000px;}
.yf8{bottom:105.273450px;}
.y8f{bottom:109.196400px;}
.y10c{bottom:109.478250px;}
.y1a4{bottom:110.265900px;}
.y163{bottom:116.121900px;}
.yc4{bottom:119.628600px;}
.yb4{bottom:119.635350px;}
.yf7{bottom:125.127300px;}
.y1a3{bottom:125.265900px;}
.y8e{bottom:126.296400px;}
.y10b{bottom:126.578250px;}
.y162{bottom:131.121900px;}
.y5b{bottom:137.515350px;}
.yc3{bottom:137.628600px;}
.yb3{bottom:137.635350px;}
.y1a2{bottom:140.265900px;}
.yf6{bottom:141.426900px;}
.y8d{bottom:143.396400px;}
.y10a{bottom:143.678250px;}
.y161{bottom:146.121900px;}
.y1a1{bottom:155.265900px;}
.y5a{bottom:155.515350px;}
.yc2{bottom:155.628600px;}
.yb2{bottom:155.635350px;}
.yf5{bottom:157.674900px;}
.y8c{bottom:160.496400px;}
.y109{bottom:160.778250px;}
.y160{bottom:161.121900px;}
.y1a0{bottom:170.265900px;}
.y26{bottom:171.927900px;}
.yc1{bottom:173.628600px;}
.yb1{bottom:173.635350px;}
.yf4{bottom:173.922900px;}
.y15f{bottom:176.121900px;}
.y8b{bottom:177.596400px;}
.y108{bottom:177.878250px;}
.y19f{bottom:185.265900px;}
.y25{bottom:189.927900px;}
.yf3{bottom:190.170900px;}
.y15e{bottom:191.121900px;}
.yc0{bottom:191.628600px;}
.yb0{bottom:191.635350px;}
.y59{bottom:191.770350px;}
.y8a{bottom:194.696400px;}
.y107{bottom:194.978250px;}
.y19e{bottom:200.265900px;}
.y15d{bottom:206.121900px;}
.yf2{bottom:206.418900px;}
.y24{bottom:207.927900px;}
.ybf{bottom:209.628600px;}
.yaf{bottom:209.635350px;}
.y58{bottom:209.770350px;}
.y89{bottom:211.796400px;}
.y106{bottom:212.078250px;}
.y19d{bottom:215.265900px;}
.y15c{bottom:221.121900px;}
.yf1{bottom:222.666900px;}
.y23{bottom:225.927900px;}
.ybe{bottom:227.628600px;}
.yae{bottom:227.635350px;}
.y57{bottom:227.770350px;}
.y88{bottom:228.896400px;}
.y105{bottom:229.178250px;}
.y19c{bottom:230.265900px;}
.y15b{bottom:236.121900px;}
.yf0{bottom:238.914900px;}
.y22{bottom:243.927900px;}
.y19b{bottom:245.265900px;}
.ybd{bottom:245.628600px;}
.yad{bottom:245.635350px;}
.y56{bottom:245.770350px;}
.y87{bottom:245.996400px;}
.y104{bottom:246.278250px;}
.y15a{bottom:251.121900px;}
.yef{bottom:255.162900px;}
.y19a{bottom:260.265900px;}
.y21{bottom:261.927900px;}
.y86{bottom:263.096400px;}
.y103{bottom:263.378250px;}
.ybc{bottom:263.628600px;}
.yac{bottom:263.635350px;}
.y55{bottom:263.770350px;}
.y159{bottom:266.121900px;}
.yee{bottom:271.410900px;}
.y199{bottom:275.265900px;}
.y20{bottom:279.927900px;}
.y85{bottom:280.196400px;}
.y102{bottom:280.478250px;}
.y158{bottom:281.121900px;}
.ybb{bottom:281.628600px;}
.yab{bottom:281.635350px;}
.y54{bottom:281.770350px;}
.yed{bottom:287.658900px;}
.y198{bottom:290.265900px;}
.y157{bottom:296.121900px;}
.y84{bottom:297.296400px;}
.y101{bottom:297.578250px;}
.y1f{bottom:297.927900px;}
.yba{bottom:299.628600px;}
.yaa{bottom:299.635350px;}
.y53{bottom:299.770350px;}
.yec{bottom:303.906900px;}
.y197{bottom:305.265900px;}
.y156{bottom:311.121900px;}
.y83{bottom:314.396400px;}
.y100{bottom:314.678250px;}
.y1e{bottom:315.927900px;}
.yb9{bottom:317.628600px;}
.ya9{bottom:317.635350px;}
.y52{bottom:317.770350px;}
.yeb{bottom:320.154900px;}
.y196{bottom:320.265900px;}
.y155{bottom:326.121900px;}
.y82{bottom:331.496400px;}
.y28{bottom:333.927900px;}
.y195{bottom:335.265900px;}
.yb8{bottom:335.628600px;}
.ya8{bottom:335.635350px;}
.y51{bottom:335.770350px;}
.yea{bottom:336.402900px;}
.y154{bottom:341.121900px;}
.yff{bottom:343.682250px;}
.y81{bottom:348.596400px;}
.y194{bottom:350.265900px;}
.y1d{bottom:351.525000px;}
.y27{bottom:351.927900px;}
.ye9{bottom:352.678650px;}
.ya7{bottom:353.635350px;}
.y50{bottom:353.770350px;}
.y153{bottom:356.121900px;}
.y193{bottom:365.265900px;}
.y80{bottom:365.696400px;}
.ye8{bottom:368.926650px;}
.y152{bottom:371.121900px;}
.ya6{bottom:371.635350px;}
.y4f{bottom:371.770350px;}
.yfe{bottom:372.686250px;}
.y192{bottom:380.265900px;}
.y7f{bottom:382.796400px;}
.ye7{bottom:385.174650px;}
.y151{bottom:386.121900px;}
.ya5{bottom:389.635350px;}
.y4e{bottom:389.770350px;}
.y1da{bottom:392.912100px;}
.y1d2{bottom:395.263500px;}
.y191{bottom:395.265900px;}
.y150{bottom:401.121900px;}
.ye6{bottom:401.422650px;}
.yfd{bottom:405.077400px;}
.ya4{bottom:407.635350px;}
.y4d{bottom:407.770350px;}
.y1d1{bottom:410.263500px;}
.y190{bottom:410.265900px;}
.y1d9{bottom:410.912100px;}
.y7e{bottom:414.308400px;}
.y14f{bottom:416.121900px;}
.ye5{bottom:417.670650px;}
.y1c{bottom:424.750950px;}
.y1d0{bottom:425.263500px;}
.y18f{bottom:425.265900px;}
.ya3{bottom:425.635350px;}
.y4c{bottom:425.770350px;}
.y1d8{bottom:428.912100px;}
.y14e{bottom:431.121900px;}
.ye4{bottom:433.918650px;}
.y1cf{bottom:440.263500px;}
.y18e{bottom:440.265900px;}
.y1b{bottom:442.764000px;}
.ya2{bottom:443.635350px;}
.y4b{bottom:443.770350px;}
.y14d{bottom:446.121900px;}
.y1d7{bottom:446.912100px;}
.y7d{bottom:449.215350px;}
.ye3{bottom:450.230100px;}
.yfc{bottom:451.707450px;}
.y1ce{bottom:455.263500px;}
.y18d{bottom:455.265900px;}
.ya1{bottom:461.635350px;}
.y4a{bottom:461.770350px;}
.ye2{bottom:466.478100px;}
.yfb{bottom:467.451450px;}
.y7c{bottom:468.715350px;}
.y1a{bottom:470.109000px;}
.y1cd{bottom:470.263500px;}
.y18c{bottom:470.265900px;}
.y14c{bottom:479.232600px;}
.ya0{bottom:479.635350px;}
.y49{bottom:479.770350px;}
.ye1{bottom:482.726100px;}
.y1d6{bottom:482.912100px;}
.y1cc{bottom:485.263500px;}
.y18b{bottom:485.265900px;}
.y19{bottom:488.109000px;}
.y7b{bottom:488.215350px;}
.y9f{bottom:497.635350px;}
.y48{bottom:497.770350px;}
.ye0{bottom:498.974100px;}
.y1cb{bottom:500.263500px;}
.y18a{bottom:500.265900px;}
.y1d5{bottom:500.912100px;}
.y115{bottom:502.179375px;}
.y18{bottom:506.109000px;}
.ydf{bottom:515.222100px;}
.y1ca{bottom:515.263500px;}
.y189{bottom:515.265900px;}
.y9e{bottom:515.635350px;}
.y47{bottom:515.770350px;}
.y1d4{bottom:518.914350px;}
.y17{bottom:524.109000px;}
.y1c9{bottom:530.263500px;}
.y188{bottom:530.265900px;}
.y11c{bottom:531.440376px;}
.yde{bottom:531.470100px;}
.y9d{bottom:533.635350px;}
.y46{bottom:533.770350px;}
.y14b{bottom:533.772600px;}
.y7a{bottom:533.785350px;}
.y127{bottom:540.362085px;}
.y16{bottom:542.109000px;}
.y1c8{bottom:545.263500px;}
.y187{bottom:545.265900px;}
.ydd{bottom:547.718100px;}
.y14a{bottom:551.367600px;}
.y9c{bottom:551.635350px;}
.y45{bottom:551.770350px;}
.y79{bottom:551.785350px;}
.y1d3{bottom:554.509350px;}
.y15{bottom:560.109000px;}
.y1c7{bottom:560.263500px;}
.y186{bottom:560.265900px;}
.y10f{bottom:560.660009px;}
.ydc{bottom:563.966100px;}
.y126{bottom:565.968908px;}
.y9b{bottom:569.635350px;}
.y44{bottom:569.770350px;}
.y78{bottom:569.785350px;}
.y132{bottom:572.587050px;}
.y1c6{bottom:575.263500px;}
.y185{bottom:575.265900px;}
.y14{bottom:578.109000px;}
.ydb{bottom:580.214100px;}
.y149{bottom:587.367600px;}
.y9a{bottom:587.635350px;}
.y121{bottom:587.742292px;}
.y43{bottom:587.770350px;}
.y77{bottom:587.785350px;}
.y11e{bottom:589.810694px;}
.y1c5{bottom:590.263500px;}
.y184{bottom:590.265900px;}
.y13{bottom:596.109000px;}
.yda{bottom:596.462100px;}
.y1c4{bottom:605.263500px;}
.y183{bottom:605.265900px;}
.y99{bottom:605.635350px;}
.y76{bottom:605.785350px;}
.yd9{bottom:612.710100px;}
.y12{bottom:614.109000px;}
.y11a{bottom:618.933802px;}
.y1c3{bottom:620.263500px;}
.y182{bottom:620.265900px;}
.y42{bottom:623.365350px;}
.y98{bottom:623.635350px;}
.y148{bottom:623.772600px;}
.y75{bottom:623.785350px;}
.yd8{bottom:628.958100px;}
.y11{bottom:632.109000px;}
.y1c2{bottom:635.263500px;}
.y181{bottom:635.265900px;}
.y41{bottom:641.365350px;}
.y97{bottom:641.635350px;}
.y147{bottom:641.772600px;}
.y74{bottom:641.785350px;}
.yd7{bottom:645.206100px;}
.y111{bottom:648.056909px;}
.y10{bottom:650.109000px;}
.y1c1{bottom:650.263500px;}
.y180{bottom:650.265900px;}
.y96{bottom:659.635350px;}
.y146{bottom:659.772600px;}
.y73{bottom:659.785350px;}
.yd6{bottom:661.454100px;}
.y131{bottom:661.853517px;}
.y1c0{bottom:665.263500px;}
.y17f{bottom:665.265900px;}
.y12c{bottom:676.076868px;}
.y40{bottom:677.230350px;}
.y114{bottom:677.400646px;}
.y95{bottom:677.635350px;}
.yd5{bottom:677.702100px;}
.y145{bottom:677.772600px;}
.y72{bottom:677.785350px;}
.y1bf{bottom:680.263500px;}
.y17e{bottom:680.265900px;}
.y120{bottom:681.468504px;}
.yf{bottom:683.240250px;}
.yd4{bottom:693.950100px;}
.yb7{bottom:695.230350px;}
.y1be{bottom:695.263500px;}
.y17d{bottom:695.265900px;}
.y94{bottom:695.635350px;}
.y144{bottom:695.772600px;}
.y71{bottom:695.785350px;}
.y113{bottom:706.427227px;}
.yd3{bottom:710.198100px;}
.y1bd{bottom:710.263500px;}
.y17c{bottom:710.265900px;}
.ye{bottom:710.368050px;}
.y123{bottom:712.053282px;}
.y93{bottom:713.635350px;}
.y143{bottom:713.772600px;}
.y70{bottom:713.785350px;}
.yd{bottom:722.068050px;}
.y1bc{bottom:725.263500px;}
.y17b{bottom:725.265900px;}
.yd2{bottom:726.449850px;}
.y3f{bottom:731.770350px;}
.y142{bottom:731.772600px;}
.y6f{bottom:731.785350px;}
.y125{bottom:732.364995px;}
.y112{bottom:735.660649px;}
.y1bb{bottom:740.263500px;}
.y17a{bottom:740.265900px;}
.y130{bottom:747.071700px;}
.y92{bottom:749.230350px;}
.y141{bottom:749.367600px;}
.y3e{bottom:749.770350px;}
.y6e{bottom:749.785350px;}
.yc{bottom:753.783600px;}
.y1ba{bottom:755.263500px;}
.y179{bottom:755.265900px;}
.yd1{bottom:757.961850px;}
.y11f{bottom:762.329252px;}
.y11b{bottom:764.811335px;}
.y3d{bottom:767.770350px;}
.y6d{bottom:767.785350px;}
.y1b9{bottom:770.263500px;}
.y178{bottom:770.265900px;}
.yb{bottom:772.708950px;}
.y1b8{bottom:785.263500px;}
.y177{bottom:785.265900px;}
.y3c{bottom:785.770350px;}
.y140{bottom:785.772600px;}
.y6c{bottom:785.785350px;}
.ya{bottom:786.208950px;}
.y12b{bottom:788.473860px;}
.yd0{bottom:792.865350px;}
.y11d{bottom:793.962021px;}
.y1b7{bottom:800.263500px;}
.y176{bottom:800.265900px;}
.y13f{bottom:803.367600px;}
.y3b{bottom:803.770350px;}
.y6b{bottom:803.785350px;}
.y9{bottom:814.930800px;}
.y1b6{bottom:815.263500px;}
.y175{bottom:815.265900px;}
.y3a{bottom:821.770350px;}
.y6a{bottom:821.785350px;}
.y110{bottom:823.057550px;}
.y1b5{bottom:830.263500px;}
.y174{bottom:830.265900px;}
.y133{bottom:830.646600px;}
.y122{bottom:834.709550px;}
.ycf{bottom:839.635350px;}
.y39{bottom:839.770350px;}
.y13e{bottom:839.772600px;}
.y69{bottom:839.785350px;}
.y1b4{bottom:845.263500px;}
.y173{bottom:845.265900px;}
.y117{bottom:852.304761px;}
.yce{bottom:857.635350px;}
.y38{bottom:857.770350px;}
.y13d{bottom:857.772600px;}
.y68{bottom:857.785350px;}
.y1b3{bottom:860.263500px;}
.y172{bottom:860.265900px;}
.y8{bottom:861.082800px;}
.y124{bottom:863.625817px;}
.y10e{bottom:865.266750px;}
.y1b2{bottom:875.263500px;}
.y171{bottom:875.265900px;}
.ycd{bottom:875.635350px;}
.y37{bottom:875.770350px;}
.y13c{bottom:875.772600px;}
.y67{bottom:875.785350px;}
.y118{bottom:881.441658px;}
.y1b1{bottom:890.263500px;}
.y170{bottom:890.265900px;}
.y128{bottom:890.377156px;}
.y13b{bottom:893.367600px;}
.ycc{bottom:893.635350px;}
.y36{bottom:893.770350px;}
.y66{bottom:893.785350px;}
.y7{bottom:897.543600px;}
.y12e{bottom:898.456402px;}
.y1b0{bottom:905.263500px;}
.y16f{bottom:905.265900px;}
.y12f{bottom:905.598450px;}
.y119{bottom:910.688869px;}
.y35{bottom:911.770350px;}
.y65{bottom:911.785350px;}
.y12a{bottom:916.618289px;}
.y12d{bottom:919.188750px;}
.y1af{bottom:920.263500px;}
.y16e{bottom:920.265900px;}
.ycb{bottom:929.230350px;}
.y34{bottom:929.770350px;}
.y13a{bottom:929.772600px;}
.y64{bottom:929.785350px;}
.y6{bottom:934.004400px;}
.y1ae{bottom:935.263500px;}
.y16d{bottom:935.265900px;}
.y129{bottom:936.723162px;}
.y116{bottom:939.811976px;}
.y33{bottom:947.770350px;}
.y139{bottom:947.772600px;}
.y63{bottom:947.785350px;}
.y1ad{bottom:950.263500px;}
.y16c{bottom:950.265900px;}
.y1ac{bottom:965.263500px;}
.y16b{bottom:965.265900px;}
.y32{bottom:965.770350px;}
.y138{bottom:965.772600px;}
.y62{bottom:965.785350px;}
.y5{bottom:970.465200px;}
.y1ab{bottom:980.263500px;}
.y16a{bottom:980.265900px;}
.y31{bottom:983.770350px;}
.y137{bottom:983.772600px;}
.y61{bottom:983.785350px;}
.y1aa{bottom:995.263500px;}
.y169{bottom:995.265900px;}
.y30{bottom:1001.770350px;}
.y136{bottom:1001.772600px;}
.y60{bottom:1001.785350px;}
.y4{bottom:1006.926000px;}
.y1a9{bottom:1010.263500px;}
.y168{bottom:1010.265900px;}
.y2f{bottom:1019.770350px;}
.y135{bottom:1019.772600px;}
.y5f{bottom:1019.785350px;}
.y1a8{bottom:1025.263500px;}
.y167{bottom:1025.265900px;}
.y134{bottom:1037.367600px;}
.y2e{bottom:1037.770350px;}
.y5e{bottom:1037.785350px;}
.y1a7{bottom:1040.263500px;}
.y166{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.y3{bottom:1071.721650px;}
.yfa{bottom:1132.412850px;}
.yc7{bottom:1132.418700px;}
.y1a6{bottom:1132.425900px;}
.yca{bottom:1132.426500px;}
.y91{bottom:1132.460400px;}
.y2c{bottom:1136.092500px;}
.y2b{bottom:1150.492500px;}
.h7{height:19.125417px;}
.h16{height:19.443961px;}
.h9{height:28.412109px;}
.h2{height:30.597656px;}
.h4{height:32.761230px;}
.hf{height:32.783203px;}
.h8{height:32.805176px;}
.h12{height:33.351562px;}
.ha{height:34.945312px;}
.h11{height:34.968750px;}
.h10{height:34.992188px;}
.h19{height:40.156095px;}
.h17{height:40.183028px;}
.h1b{height:41.680453px;}
.he{height:41.689453px;}
.h15{height:41.958961px;}
.h13{height:42.054361px;}
.h14{height:42.055561px;}
.hd{height:43.681641px;}
.hc{height:43.710938px;}
.hb{height:43.740234px;}
.h1a{height:45.290925px;}
.h18{height:50.396382px;}
.h3{height:56.786133px;}
.h6{height:57.121316px;}
.h5{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:76.535400px;}
.x1d{left:78.661950px;}
.xa{left:96.094500px;}
.x1{left:97.795200px;}
.x1b{left:99.921300px;}
.x3f{left:102.047400px;}
.x3{left:106.299150px;}
.xd{left:110.555400px;}
.x3d{left:123.307200px;}
.x4{left:125.427900px;}
.x7{left:131.811000px;}
.xe{left:144.725400px;}
.x37{left:151.548015px;}
.x36{left:178.804650px;}
.x5{left:191.338500px;}
.x1e{left:195.712950px;}
.x29{left:208.716307px;}
.x6{left:212.876400px;}
.x3c{left:215.545350px;}
.x15{left:232.360350px;}
.x2e{left:242.927684px;}
.x34{left:256.372301px;}
.x30{left:260.123004px;}
.x2c{left:289.053060px;}
.x2b{left:290.721572px;}
.x2f{left:316.424920px;}
.x2d{left:324.615794px;}
.x31{left:329.483434px;}
.x33{left:333.096244px;}
.x1c{left:375.649950px;}
.x25{left:394.776007px;}
.x32{left:404.125186px;}
.x28{left:405.504121px;}
.x35{left:427.346451px;}
.x21{left:430.738631px;}
.x23{left:432.393353px;}
.x26{left:437.564360px;}
.x2a{left:439.508658px;}
.x20{left:444.624507px;}
.xb{left:455.041500px;}
.xf{left:457.100400px;}
.x11{left:459.212550px;}
.x27{left:460.468470px;}
.x24{left:465.060324px;}
.x22{left:466.715046px;}
.x1f{left:469.817649px;}
.x16{left:478.345350px;}
.x8{left:480.471000px;}
.x12{left:482.600550px;}
.x10{left:491.120400px;}
.x3e{left:503.863050px;}
.x17{left:512.365350px;}
.x9{left:514.491000px;}
.x1a{left:591.940350px;}
.x18{left:600.715350px;}
.x39{left:614.673486px;}
.x38{left:655.006050px;}
.x14{left:663.492300px;}
.x3a{left:689.322450px;}
.x2{left:693.365400px;}
.x3b{left:719.191500px;}
.x13{left:735.080550px;}
.x19{left:756.325200px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.440000pt;}
.v3{vertical-align:20.098133pt;}
.v1{vertical-align:27.005867pt;}
.ls45{letter-spacing:-4.736000pt;}
.ls43{letter-spacing:-3.413333pt;}
.ls7b{letter-spacing:-2.346667pt;}
.ls44{letter-spacing:-1.578667pt;}
.lsf{letter-spacing:-0.693333pt;}
.ls36{letter-spacing:-0.373333pt;}
.ls6e{letter-spacing:-0.341333pt;}
.ls6c{letter-spacing:-0.213333pt;}
.ls4a{letter-spacing:-0.196115pt;}
.ls6d{letter-spacing:-0.170667pt;}
.ls3c{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.106667pt;}
.ls7a{letter-spacing:-0.085333pt;}
.ls7c{letter-spacing:-0.053333pt;}
.ls6b{letter-spacing:-0.042667pt;}
.lse{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003680pt;}
.ls77{letter-spacing:0.042667pt;}
.ls47{letter-spacing:0.049029pt;}
.ls2d{letter-spacing:0.053333pt;}
.ls48{letter-spacing:0.061532pt;}
.ls59{letter-spacing:0.085333pt;}
.ls49{letter-spacing:0.098058pt;}
.ls13{letter-spacing:0.106667pt;}
.ls1b{letter-spacing:0.160000pt;}
.ls53{letter-spacing:0.170667pt;}
.ls4{letter-spacing:0.213333pt;}
.ls5a{letter-spacing:0.256000pt;}
.ls25{letter-spacing:0.266667pt;}
.ls61{letter-spacing:0.298667pt;}
.ls16{letter-spacing:0.320000pt;}
.ls71{letter-spacing:0.341333pt;}
.ls20{letter-spacing:0.373333pt;}
.ls57{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.426667pt;}
.ls66{letter-spacing:0.469333pt;}
.ls1e{letter-spacing:0.480000pt;}
.ls60{letter-spacing:0.512000pt;}
.ls2{letter-spacing:0.533333pt;}
.ls6a{letter-spacing:0.554667pt;}
.ls34{letter-spacing:0.586667pt;}
.ls79{letter-spacing:0.597333pt;}
.ls6{letter-spacing:0.640000pt;}
.ls58{letter-spacing:0.682667pt;}
.ls1d{letter-spacing:0.693333pt;}
.ls51{letter-spacing:0.725333pt;}
.ls24{letter-spacing:0.746667pt;}
.ls5c{letter-spacing:0.768000pt;}
.ls15{letter-spacing:0.800000pt;}
.ls52{letter-spacing:0.810667pt;}
.ls31{letter-spacing:0.853333pt;}
.lsc{letter-spacing:0.906667pt;}
.ls4d{letter-spacing:0.960000pt;}
.ls68{letter-spacing:0.981333pt;}
.ls23{letter-spacing:1.013333pt;}
.ls73{letter-spacing:1.024000pt;}
.ls27{letter-spacing:1.066667pt;}
.lsb{letter-spacing:1.120000pt;}
.ls67{letter-spacing:1.152000pt;}
.ls21{letter-spacing:1.173333pt;}
.ls65{letter-spacing:1.194667pt;}
.ls22{letter-spacing:1.226667pt;}
.ls5b{letter-spacing:1.237333pt;}
.ls33{letter-spacing:1.280000pt;}
.ls63{letter-spacing:1.322667pt;}
.ls17{letter-spacing:1.333333pt;}
.ls62{letter-spacing:1.365333pt;}
.ls32{letter-spacing:1.386667pt;}
.ls56{letter-spacing:1.408000pt;}
.ls30{letter-spacing:1.440000pt;}
.ls2c{letter-spacing:1.493333pt;}
.ls75{letter-spacing:1.536000pt;}
.lsa{letter-spacing:1.546667pt;}
.ls50{letter-spacing:1.578667pt;}
.ls7{letter-spacing:1.600000pt;}
.ls5d{letter-spacing:1.621333pt;}
.ls19{letter-spacing:1.706667pt;}
.ls6f{letter-spacing:1.749333pt;}
.ls3f{letter-spacing:1.760000pt;}
.ls3{letter-spacing:1.813333pt;}
.ls5f{letter-spacing:1.834667pt;}
.ls29{letter-spacing:1.866667pt;}
.ls74{letter-spacing:1.877333pt;}
.ls1c{letter-spacing:1.973333pt;}
.ls70{letter-spacing:2.005333pt;}
.ls2b{letter-spacing:2.026667pt;}
.ls9{letter-spacing:2.080000pt;}
.ls55{letter-spacing:2.090667pt;}
.lsd{letter-spacing:2.133333pt;}
.ls14{letter-spacing:2.186667pt;}
.ls28{letter-spacing:2.240000pt;}
.ls2f{letter-spacing:2.293333pt;}
.ls5e{letter-spacing:2.304000pt;}
.ls12{letter-spacing:2.346667pt;}
.ls54{letter-spacing:2.389333pt;}
.ls18{letter-spacing:2.400000pt;}
.ls69{letter-spacing:2.432000pt;}
.ls26{letter-spacing:2.506667pt;}
.ls64{letter-spacing:2.560000pt;}
.ls40{letter-spacing:2.613333pt;}
.ls72{letter-spacing:2.645333pt;}
.ls4e{letter-spacing:2.666667pt;}
.ls78{letter-spacing:2.688000pt;}
.ls4c{letter-spacing:2.720000pt;}
.ls8{letter-spacing:2.773333pt;}
.ls2a{letter-spacing:2.880000pt;}
.ls1a{letter-spacing:2.933333pt;}
.ls1f{letter-spacing:2.986667pt;}
.ls11{letter-spacing:3.146667pt;}
.ls3b{letter-spacing:3.200000pt;}
.ls4f{letter-spacing:3.306667pt;}
.ls38{letter-spacing:3.413333pt;}
.ls3d{letter-spacing:3.680000pt;}
.ls2e{letter-spacing:3.786667pt;}
.ls3e{letter-spacing:4.000000pt;}
.ls37{letter-spacing:4.053333pt;}
.ls39{letter-spacing:4.160000pt;}
.ls76{letter-spacing:4.266667pt;}
.ls35{letter-spacing:4.533333pt;}
.ls3a{letter-spacing:4.853333pt;}
.ls46{letter-spacing:11.276624pt;}
.ls4b{letter-spacing:13.598513pt;}
.ls0{letter-spacing:52.918112pt;}
.ls41{letter-spacing:145.656533pt;}
.ls42{letter-spacing:226.906133pt;}
.ws0{word-spacing:-31.284267pt;}
.ws46{word-spacing:-17.493333pt;}
.ws44{word-spacing:-16.746667pt;}
.ws47{word-spacing:-16.533333pt;}
.ws71{word-spacing:-16.426667pt;}
.ws27{word-spacing:-16.106667pt;}
.ws43{word-spacing:-15.733333pt;}
.ws4{word-spacing:-15.413333pt;}
.ws4c{word-spacing:-14.933333pt;}
.ws2{word-spacing:-14.826667pt;}
.ws45{word-spacing:-14.720000pt;}
.ws25{word-spacing:-14.240000pt;}
.ws28{word-spacing:-14.186667pt;}
.ws26{word-spacing:-14.080000pt;}
.ws29{word-spacing:-14.026667pt;}
.ws2a{word-spacing:-13.866667pt;}
.ws3{word-spacing:-13.760000pt;}
.ws70{word-spacing:-13.598513pt;}
.ws4b{word-spacing:-13.546667pt;}
.ws10{word-spacing:-13.440000pt;}
.ws24{word-spacing:-13.386667pt;}
.ws99{word-spacing:-12.672000pt;}
.ws9c{word-spacing:-12.288000pt;}
.ws78{word-spacing:-12.245333pt;}
.ws6{word-spacing:-11.861333pt;}
.ws79{word-spacing:-11.648000pt;}
.ws72{word-spacing:-11.392000pt;}
.ws74{word-spacing:-11.349333pt;}
.ws7a{word-spacing:-11.221333pt;}
.ws5{word-spacing:-11.120000pt;}
.ws77{word-spacing:-10.965333pt;}
.ws9b{word-spacing:-10.880000pt;}
.ws73{word-spacing:-10.837333pt;}
.ws75{word-spacing:-10.752000pt;}
.ws9a{word-spacing:-10.709333pt;}
.ws11{word-spacing:-10.666667pt;}
.ws76{word-spacing:-10.496000pt;}
.ws1{word-spacing:-9.076144pt;}
.ws4f{word-spacing:-7.253333pt;}
.ws5c{word-spacing:-6.218667pt;}
.ws5b{word-spacing:-5.930667pt;}
.ws4a{word-spacing:-3.200000pt;}
.ws3d{word-spacing:-2.773333pt;}
.ws8{word-spacing:-2.565333pt;}
.ws82{word-spacing:-2.389333pt;}
.ws94{word-spacing:-2.346667pt;}
.wsf{word-spacing:-2.080000pt;}
.ws9e{word-spacing:-2.005333pt;}
.ws17{word-spacing:-1.973333pt;}
.ws8a{word-spacing:-1.621333pt;}
.ws5d{word-spacing:-1.600000pt;}
.wsa8{word-spacing:-1.536000pt;}
.ws48{word-spacing:-1.386667pt;}
.ws97{word-spacing:-0.981333pt;}
.ws1c{word-spacing:-0.960000pt;}
.ws3e{word-spacing:-0.853333pt;}
.ws81{word-spacing:-0.810667pt;}
.ws93{word-spacing:-0.768000pt;}
.ws3c{word-spacing:-0.746667pt;}
.ws86{word-spacing:-0.682667pt;}
.ws21{word-spacing:-0.480000pt;}
.ws84{word-spacing:-0.384000pt;}
.ws2b{word-spacing:-0.373333pt;}
.wsa1{word-spacing:-0.341333pt;}
.ws8d{word-spacing:-0.298667pt;}
.ws83{word-spacing:-0.213333pt;}
.ws6e{word-spacing:-0.098058pt;}
.ws88{word-spacing:-0.085333pt;}
.ws6c{word-spacing:-0.055296pt;}
.ws60{word-spacing:-0.049029pt;}
.wsa9{word-spacing:-0.042667pt;}
.ws7{word-spacing:0.000000pt;}
.ws85{word-spacing:0.042667pt;}
.ws30{word-spacing:0.160000pt;}
.ws8c{word-spacing:0.170667pt;}
.ws6f{word-spacing:0.196115pt;}
.ws8f{word-spacing:0.213333pt;}
.ws9d{word-spacing:0.256000pt;}
.ws18{word-spacing:0.320000pt;}
.ws91{word-spacing:0.341333pt;}
.ws35{word-spacing:0.373333pt;}
.ws3a{word-spacing:0.426667pt;}
.ws5e{word-spacing:0.597333pt;}
.ws2c{word-spacing:0.640000pt;}
.wsa4{word-spacing:0.725333pt;}
.wsd{word-spacing:0.746667pt;}
.ws9f{word-spacing:0.768000pt;}
.ws19{word-spacing:0.800000pt;}
.wsa5{word-spacing:0.810667pt;}
.ws34{word-spacing:0.853333pt;}
.ws31{word-spacing:0.960000pt;}
.ws14{word-spacing:1.013333pt;}
.wsa2{word-spacing:1.152000pt;}
.ws1d{word-spacing:1.226667pt;}
.ws96{word-spacing:1.237333pt;}
.ws87{word-spacing:1.322667pt;}
.wsa{word-spacing:1.333333pt;}
.ws92{word-spacing:1.365333pt;}
.wsab{word-spacing:1.386667pt;}
.ws49{word-spacing:1.440000pt;}
.ws32{word-spacing:1.546667pt;}
.ws2d{word-spacing:1.600000pt;}
.ws36{word-spacing:1.653333pt;}
.ws23{word-spacing:1.706667pt;}
.wsc{word-spacing:1.813333pt;}
.ws1b{word-spacing:1.866667pt;}
.ws7c{word-spacing:2.026667pt;}
.wse{word-spacing:2.080000pt;}
.ws16{word-spacing:2.133333pt;}
.ws37{word-spacing:2.186667pt;}
.ws15{word-spacing:2.346667pt;}
.ws40{word-spacing:2.453333pt;}
.ws12{word-spacing:2.506667pt;}
.ws90{word-spacing:2.517333pt;}
.ws3b{word-spacing:2.560000pt;}
.wsa0{word-spacing:2.602667pt;}
.ws8e{word-spacing:2.816000pt;}
.ws8b{word-spacing:2.858667pt;}
.ws1f{word-spacing:2.880000pt;}
.ws95{word-spacing:2.901333pt;}
.wsaa{word-spacing:3.029333pt;}
.ws38{word-spacing:3.040000pt;}
.ws3f{word-spacing:3.093333pt;}
.ws7e{word-spacing:3.114667pt;}
.wsa3{word-spacing:3.157333pt;}
.ws33{word-spacing:3.200000pt;}
.ws89{word-spacing:3.242667pt;}
.ws1a{word-spacing:3.253333pt;}
.wsa6{word-spacing:3.285333pt;}
.wsa7{word-spacing:3.370667pt;}
.ws7d{word-spacing:3.413333pt;}
.ws7f{word-spacing:3.456000pt;}
.ws80{word-spacing:3.498667pt;}
.ws22{word-spacing:3.520000pt;}
.ws6d{word-spacing:3.541333pt;}
.ws20{word-spacing:3.680000pt;}
.ws42{word-spacing:3.786667pt;}
.ws39{word-spacing:3.840000pt;}
.ws41{word-spacing:3.893333pt;}
.ws1e{word-spacing:3.946667pt;}
.ws2e{word-spacing:4.000000pt;}
.ws2f{word-spacing:4.160000pt;}
.ws13{word-spacing:4.320000pt;}
.ws9{word-spacing:4.373333pt;}
.wsb{word-spacing:4.426667pt;}
.ws98{word-spacing:4.480000pt;}
.ws7b{word-spacing:4.906667pt;}
.ws68{word-spacing:10.835365pt;}
.ws61{word-spacing:10.884394pt;}
.ws67{word-spacing:10.933422pt;}
.ws65{word-spacing:10.982451pt;}
.ws69{word-spacing:11.080509pt;}
.ws66{word-spacing:11.129538pt;}
.ws62{word-spacing:11.178566pt;}
.ws63{word-spacing:11.227595pt;}
.ws64{word-spacing:11.276624pt;}
.ws6a{word-spacing:14.090767pt;}
.ws5a{word-spacing:59.733333pt;}
.ws59{word-spacing:60.501333pt;}
.ws54{word-spacing:61.312000pt;}
.ws57{word-spacing:65.237333pt;}
.ws53{word-spacing:70.400000pt;}
.ws50{word-spacing:81.066667pt;}
.ws4d{word-spacing:86.954667pt;}
.ws4e{word-spacing:113.066667pt;}
.ws58{word-spacing:152.874667pt;}
.ws55{word-spacing:156.842667pt;}
.ws56{word-spacing:218.240000pt;}
.ws5f{word-spacing:277.504000pt;}
.ws52{word-spacing:322.261333pt;}
.ws6b{word-spacing:516.905835pt;}
.ws51{word-spacing:867.541333pt;}
._19{margin-left:-2576.128000pt;}
._1d{margin-left:-2554.965333pt;}
._2{margin-left:-8.327467pt;}
._4{margin-left:-6.720000pt;}
._1b{margin-left:-5.792000pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.136000pt;}
._0{margin-left:-2.053333pt;}
._5{margin-left:-0.960000pt;}
._7{width:0.906667pt;}
._63{width:1.856000pt;}
._8{width:2.752000pt;}
._1a{width:4.106667pt;}
._9{width:5.120000pt;}
._6{width:6.560000pt;}
._1c{width:7.733333pt;}
._4a{width:70.400000pt;}
._28{width:91.733333pt;}
._1f{width:122.154667pt;}
._52{width:145.280000pt;}
._48{width:158.549333pt;}
._51{width:162.304000pt;}
._4d{width:163.391467pt;}
._23{width:168.490667pt;}
._3a{width:173.440000pt;}
._49{width:183.168000pt;}
._56{width:187.946667pt;}
._54{width:190.293333pt;}
._27{width:191.488000pt;}
._37{width:193.834667pt;}
._50{width:197.418667pt;}
._57{width:199.765333pt;}
._20{width:200.970667pt;}
._42{width:202.154667pt;}
._4b{width:203.349333pt;}
._2f{width:208.085333pt;}
._1e{width:209.322667pt;}
._21{width:211.141867pt;}
._24{width:213.290667pt;}
._3d{width:215.168000pt;}
._44{width:217.221333pt;}
._4e{width:218.240000pt;}
._3e{width:219.341867pt;}
._33{width:223.488000pt;}
._2c{width:224.682667pt;}
._43{width:228.906667pt;}
._29{width:234.624000pt;}
._3b{width:239.573333pt;}
._22{width:246.016000pt;}
._5a{width:280.320000pt;}
._5f{width:288.170667pt;}
._16{width:298.197333pt;}
._5d{width:299.477333pt;}
._58{width:304.213333pt;}
._59{width:307.363200pt;}
._15{width:309.632000pt;}
._4f{width:332.928000pt;}
._40{width:336.135467pt;}
._55{width:337.840000pt;}
._25{width:343.594667pt;}
._2d{width:347.178667pt;}
._13{width:348.608000pt;}
._60{width:352.170667pt;}
._45{width:354.261333pt;}
._35{width:355.151467pt;}
._30{width:357.845333pt;}
._2a{width:364.928000pt;}
._5e{width:368.384000pt;}
._5b{width:379.050667pt;}
._62{width:386.517333pt;}
._5c{width:388.522667pt;}
._3f{width:389.632000pt;}
._41{width:390.826667pt;}
._2e{width:393.216000pt;}
._47{width:394.368000pt;}
._34{width:395.392000pt;}
._61{width:400.384000pt;}
._26{width:404.565333pt;}
._18{width:412.848000pt;}
._14{width:420.224000pt;}
._d{width:423.386667pt;}
._17{width:426.112000pt;}
._e{width:469.930667pt;}
._c{width:482.986667pt;}
._b{width:486.570667pt;}
._10{width:488.085333pt;}
._f{width:509.098667pt;}
._12{width:520.426667pt;}
._11{width:521.664000pt;}
._a{width:636.714667pt;}
._4c{width:867.824000pt;}
._46{width:873.088000pt;}
._53{width:875.946667pt;}
._36{width:877.114133pt;}
._39{width:879.744000pt;}
._31{width:881.792000pt;}
._3c{width:883.754667pt;}
._32{width:884.949333pt;}
._2b{width:886.656000pt;}
._38{width:887.722667pt;}
.fs6{font-size:23.320000pt;}
.fsa{font-size:24.874667pt;}
.fs5{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs2{font-size:40.000000pt;}
.fs8{font-size:42.666667pt;}
.fsb{font-size:49.028800pt;}
.fs9{font-size:53.333333pt;}
.fsd{font-size:55.296000pt;}
.fs4{font-size:56.000000pt;}
.fsc{font-size:61.531733pt;}
.fs1{font-size:69.333333pt;}
.fs3{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2d{bottom:42.468667pt;}
.yc9{bottom:73.620000pt;}
.yf9{bottom:73.885200pt;}
.yc6{bottom:74.336533pt;}
.yb6{bottom:74.342533pt;}
.y5d{bottom:74.595867pt;}
.y165{bottom:76.552800pt;}
.y2a{bottom:78.246000pt;}
.y90{bottom:81.863467pt;}
.y10d{bottom:82.114000pt;}
.y1a5{bottom:84.680800pt;}
.yc8{bottom:87.614667pt;}
.y164{bottom:89.886133pt;}
.yc5{bottom:90.336533pt;}
.yb5{bottom:90.342533pt;}
.y5c{bottom:90.595867pt;}
.y29{bottom:91.576000pt;}
.yf8{bottom:93.576400pt;}
.y8f{bottom:97.063467pt;}
.y10c{bottom:97.314000pt;}
.y1a4{bottom:98.014133pt;}
.y163{bottom:103.219467pt;}
.yc4{bottom:106.336533pt;}
.yb4{bottom:106.342533pt;}
.yf7{bottom:111.224267pt;}
.y1a3{bottom:111.347467pt;}
.y8e{bottom:112.263467pt;}
.y10b{bottom:112.514000pt;}
.y162{bottom:116.552800pt;}
.y5b{bottom:122.235867pt;}
.yc3{bottom:122.336533pt;}
.yb3{bottom:122.342533pt;}
.y1a2{bottom:124.680800pt;}
.yf6{bottom:125.712800pt;}
.y8d{bottom:127.463467pt;}
.y10a{bottom:127.714000pt;}
.y161{bottom:129.886133pt;}
.y1a1{bottom:138.014133pt;}
.y5a{bottom:138.235867pt;}
.yc2{bottom:138.336533pt;}
.yb2{bottom:138.342533pt;}
.yf5{bottom:140.155467pt;}
.y8c{bottom:142.663467pt;}
.y109{bottom:142.914000pt;}
.y160{bottom:143.219467pt;}
.y1a0{bottom:151.347467pt;}
.y26{bottom:152.824800pt;}
.yc1{bottom:154.336533pt;}
.yb1{bottom:154.342533pt;}
.yf4{bottom:154.598133pt;}
.y15f{bottom:156.552800pt;}
.y8b{bottom:157.863467pt;}
.y108{bottom:158.114000pt;}
.y19f{bottom:164.680800pt;}
.y25{bottom:168.824800pt;}
.yf3{bottom:169.040800pt;}
.y15e{bottom:169.886133pt;}
.yc0{bottom:170.336533pt;}
.yb0{bottom:170.342533pt;}
.y59{bottom:170.462533pt;}
.y8a{bottom:173.063467pt;}
.y107{bottom:173.314000pt;}
.y19e{bottom:178.014133pt;}
.y15d{bottom:183.219467pt;}
.yf2{bottom:183.483467pt;}
.y24{bottom:184.824800pt;}
.ybf{bottom:186.336533pt;}
.yaf{bottom:186.342533pt;}
.y58{bottom:186.462533pt;}
.y89{bottom:188.263467pt;}
.y106{bottom:188.514000pt;}
.y19d{bottom:191.347467pt;}
.y15c{bottom:196.552800pt;}
.yf1{bottom:197.926133pt;}
.y23{bottom:200.824800pt;}
.ybe{bottom:202.336533pt;}
.yae{bottom:202.342533pt;}
.y57{bottom:202.462533pt;}
.y88{bottom:203.463467pt;}
.y105{bottom:203.714000pt;}
.y19c{bottom:204.680800pt;}
.y15b{bottom:209.886133pt;}
.yf0{bottom:212.368800pt;}
.y22{bottom:216.824800pt;}
.y19b{bottom:218.014133pt;}
.ybd{bottom:218.336533pt;}
.yad{bottom:218.342533pt;}
.y56{bottom:218.462533pt;}
.y87{bottom:218.663467pt;}
.y104{bottom:218.914000pt;}
.y15a{bottom:223.219467pt;}
.yef{bottom:226.811467pt;}
.y19a{bottom:231.347467pt;}
.y21{bottom:232.824800pt;}
.y86{bottom:233.863467pt;}
.y103{bottom:234.114000pt;}
.ybc{bottom:234.336533pt;}
.yac{bottom:234.342533pt;}
.y55{bottom:234.462533pt;}
.y159{bottom:236.552800pt;}
.yee{bottom:241.254133pt;}
.y199{bottom:244.680800pt;}
.y20{bottom:248.824800pt;}
.y85{bottom:249.063467pt;}
.y102{bottom:249.314000pt;}
.y158{bottom:249.886133pt;}
.ybb{bottom:250.336533pt;}
.yab{bottom:250.342533pt;}
.y54{bottom:250.462533pt;}
.yed{bottom:255.696800pt;}
.y198{bottom:258.014133pt;}
.y157{bottom:263.219467pt;}
.y84{bottom:264.263467pt;}
.y101{bottom:264.514000pt;}
.y1f{bottom:264.824800pt;}
.yba{bottom:266.336533pt;}
.yaa{bottom:266.342533pt;}
.y53{bottom:266.462533pt;}
.yec{bottom:270.139467pt;}
.y197{bottom:271.347467pt;}
.y156{bottom:276.552800pt;}
.y83{bottom:279.463467pt;}
.y100{bottom:279.714000pt;}
.y1e{bottom:280.824800pt;}
.yb9{bottom:282.336533pt;}
.ya9{bottom:282.342533pt;}
.y52{bottom:282.462533pt;}
.yeb{bottom:284.582133pt;}
.y196{bottom:284.680800pt;}
.y155{bottom:289.886133pt;}
.y82{bottom:294.663467pt;}
.y28{bottom:296.824800pt;}
.y195{bottom:298.014133pt;}
.yb8{bottom:298.336533pt;}
.ya8{bottom:298.342533pt;}
.y51{bottom:298.462533pt;}
.yea{bottom:299.024800pt;}
.y154{bottom:303.219467pt;}
.yff{bottom:305.495333pt;}
.y81{bottom:309.863467pt;}
.y194{bottom:311.347467pt;}
.y1d{bottom:312.466667pt;}
.y27{bottom:312.824800pt;}
.ye9{bottom:313.492133pt;}
.ya7{bottom:314.342533pt;}
.y50{bottom:314.462533pt;}
.y153{bottom:316.552800pt;}
.y193{bottom:324.680800pt;}
.y80{bottom:325.063467pt;}
.ye8{bottom:327.934800pt;}
.y152{bottom:329.886133pt;}
.ya6{bottom:330.342533pt;}
.y4f{bottom:330.462533pt;}
.yfe{bottom:331.276667pt;}
.y192{bottom:338.014133pt;}
.y7f{bottom:340.263467pt;}
.ye7{bottom:342.377467pt;}
.y151{bottom:343.219467pt;}
.ya5{bottom:346.342533pt;}
.y4e{bottom:346.462533pt;}
.y1da{bottom:349.255200pt;}
.y1d2{bottom:351.345333pt;}
.y191{bottom:351.347467pt;}
.y150{bottom:356.552800pt;}
.ye6{bottom:356.820133pt;}
.yfd{bottom:360.068800pt;}
.ya4{bottom:362.342533pt;}
.y4d{bottom:362.462533pt;}
.y1d1{bottom:364.678667pt;}
.y190{bottom:364.680800pt;}
.y1d9{bottom:365.255200pt;}
.y7e{bottom:368.274133pt;}
.y14f{bottom:369.886133pt;}
.ye5{bottom:371.262800pt;}
.y1c{bottom:377.556400pt;}
.y1d0{bottom:378.012000pt;}
.y18f{bottom:378.014133pt;}
.ya3{bottom:378.342533pt;}
.y4c{bottom:378.462533pt;}
.y1d8{bottom:381.255200pt;}
.y14e{bottom:383.219467pt;}
.ye4{bottom:385.705467pt;}
.y1cf{bottom:391.345333pt;}
.y18e{bottom:391.347467pt;}
.y1b{bottom:393.568000pt;}
.ya2{bottom:394.342533pt;}
.y4b{bottom:394.462533pt;}
.y14d{bottom:396.552800pt;}
.y1d7{bottom:397.255200pt;}
.y7d{bottom:399.302533pt;}
.ye3{bottom:400.204533pt;}
.yfc{bottom:401.517733pt;}
.y1ce{bottom:404.678667pt;}
.y18d{bottom:404.680800pt;}
.ya1{bottom:410.342533pt;}
.y4a{bottom:410.462533pt;}
.ye2{bottom:414.647200pt;}
.yfb{bottom:415.512400pt;}
.y7c{bottom:416.635867pt;}
.y1a{bottom:417.874667pt;}
.y1cd{bottom:418.012000pt;}
.y18c{bottom:418.014133pt;}
.y14c{bottom:425.984533pt;}
.ya0{bottom:426.342533pt;}
.y49{bottom:426.462533pt;}
.ye1{bottom:429.089867pt;}
.y1d6{bottom:429.255200pt;}
.y1cc{bottom:431.345333pt;}
.y18b{bottom:431.347467pt;}
.y19{bottom:433.874667pt;}
.y7b{bottom:433.969200pt;}
.y9f{bottom:442.342533pt;}
.y48{bottom:442.462533pt;}
.ye0{bottom:443.532533pt;}
.y1cb{bottom:444.678667pt;}
.y18a{bottom:444.680800pt;}
.y1d5{bottom:445.255200pt;}
.y115{bottom:446.381667pt;}
.y18{bottom:449.874667pt;}
.ydf{bottom:457.975200pt;}
.y1ca{bottom:458.012000pt;}
.y189{bottom:458.014133pt;}
.y9e{bottom:458.342533pt;}
.y47{bottom:458.462533pt;}
.y1d4{bottom:461.257200pt;}
.y17{bottom:465.874667pt;}
.y1c9{bottom:471.345333pt;}
.y188{bottom:471.347467pt;}
.y11c{bottom:472.391445pt;}
.yde{bottom:472.417867pt;}
.y9d{bottom:474.342533pt;}
.y46{bottom:474.462533pt;}
.y14b{bottom:474.464533pt;}
.y7a{bottom:474.475867pt;}
.y127{bottom:480.321854pt;}
.y16{bottom:481.874667pt;}
.y1c8{bottom:484.678667pt;}
.y187{bottom:484.680800pt;}
.ydd{bottom:486.860533pt;}
.y14a{bottom:490.104533pt;}
.y9c{bottom:490.342533pt;}
.y45{bottom:490.462533pt;}
.y79{bottom:490.475867pt;}
.y1d3{bottom:492.897200pt;}
.y15{bottom:497.874667pt;}
.y1c7{bottom:498.012000pt;}
.y186{bottom:498.014133pt;}
.y10f{bottom:498.364452pt;}
.ydc{bottom:501.303200pt;}
.y126{bottom:503.083474pt;}
.y9b{bottom:506.342533pt;}
.y44{bottom:506.462533pt;}
.y78{bottom:506.475867pt;}
.y132{bottom:508.966267pt;}
.y1c6{bottom:511.345333pt;}
.y185{bottom:511.347467pt;}
.y14{bottom:513.874667pt;}
.ydb{bottom:515.745867pt;}
.y149{bottom:522.104533pt;}
.y9a{bottom:522.342533pt;}
.y121{bottom:522.437593pt;}
.y43{bottom:522.462533pt;}
.y77{bottom:522.475867pt;}
.y11e{bottom:524.276173pt;}
.y1c5{bottom:524.678667pt;}
.y184{bottom:524.680800pt;}
.y13{bottom:529.874667pt;}
.yda{bottom:530.188533pt;}
.y1c4{bottom:538.012000pt;}
.y183{bottom:538.014133pt;}
.y99{bottom:538.342533pt;}
.y76{bottom:538.475867pt;}
.yd9{bottom:544.631200pt;}
.y12{bottom:545.874667pt;}
.y11a{bottom:550.163379pt;}
.y1c3{bottom:551.345333pt;}
.y182{bottom:551.347467pt;}
.y42{bottom:554.102533pt;}
.y98{bottom:554.342533pt;}
.y148{bottom:554.464533pt;}
.y75{bottom:554.475867pt;}
.yd8{bottom:559.073867pt;}
.y11{bottom:561.874667pt;}
.y1c2{bottom:564.678667pt;}
.y181{bottom:564.680800pt;}
.y41{bottom:570.102533pt;}
.y97{bottom:570.342533pt;}
.y147{bottom:570.464533pt;}
.y74{bottom:570.475867pt;}
.yd7{bottom:573.516533pt;}
.y111{bottom:576.050586pt;}
.y10{bottom:577.874667pt;}
.y1c1{bottom:578.012000pt;}
.y180{bottom:578.014133pt;}
.y96{bottom:586.342533pt;}
.y146{bottom:586.464533pt;}
.y73{bottom:586.475867pt;}
.yd6{bottom:587.959200pt;}
.y131{bottom:588.314237pt;}
.y1c0{bottom:591.345333pt;}
.y17f{bottom:591.347467pt;}
.y12c{bottom:600.957216pt;}
.y40{bottom:601.982533pt;}
.y114{bottom:602.133907pt;}
.y95{bottom:602.342533pt;}
.yd5{bottom:602.401867pt;}
.y145{bottom:602.464533pt;}
.y72{bottom:602.475867pt;}
.y1bf{bottom:604.678667pt;}
.y17e{bottom:604.680800pt;}
.y120{bottom:605.749781pt;}
.yf{bottom:607.324667pt;}
.yd4{bottom:616.844533pt;}
.yb7{bottom:617.982533pt;}
.y1be{bottom:618.012000pt;}
.y17d{bottom:618.014133pt;}
.y94{bottom:618.342533pt;}
.y144{bottom:618.464533pt;}
.y71{bottom:618.475867pt;}
.y113{bottom:627.935313pt;}
.yd3{bottom:631.287200pt;}
.y1bd{bottom:631.345333pt;}
.y17c{bottom:631.347467pt;}
.ye{bottom:631.438267pt;}
.y123{bottom:632.936251pt;}
.y93{bottom:634.342533pt;}
.y143{bottom:634.464533pt;}
.y70{bottom:634.475867pt;}
.yd{bottom:641.838267pt;}
.y1bc{bottom:644.678667pt;}
.y17b{bottom:644.680800pt;}
.yd2{bottom:645.733200pt;}
.y3f{bottom:650.462533pt;}
.y142{bottom:650.464533pt;}
.y6f{bottom:650.475867pt;}
.y125{bottom:650.991106pt;}
.y112{bottom:653.920577pt;}
.y1bb{bottom:658.012000pt;}
.y17a{bottom:658.014133pt;}
.y130{bottom:664.063733pt;}
.y92{bottom:665.982533pt;}
.y141{bottom:666.104533pt;}
.y3e{bottom:666.462533pt;}
.y6e{bottom:666.475867pt;}
.yc{bottom:670.029867pt;}
.y1ba{bottom:671.345333pt;}
.y179{bottom:671.347467pt;}
.yd1{bottom:673.743867pt;}
.y11f{bottom:677.626002pt;}
.y11b{bottom:679.832298pt;}
.y3d{bottom:682.462533pt;}
.y6d{bottom:682.475867pt;}
.y1b9{bottom:684.678667pt;}
.y178{bottom:684.680800pt;}
.yb{bottom:686.852400pt;}
.y1b8{bottom:698.012000pt;}
.y177{bottom:698.014133pt;}
.y3c{bottom:698.462533pt;}
.y140{bottom:698.464533pt;}
.y6c{bottom:698.475867pt;}
.ya{bottom:698.852400pt;}
.y12b{bottom:700.865653pt;}
.yd0{bottom:704.769200pt;}
.y11d{bottom:705.744019pt;}
.y1b7{bottom:711.345333pt;}
.y176{bottom:711.347467pt;}
.y13f{bottom:714.104533pt;}
.y3b{bottom:714.462533pt;}
.y6b{bottom:714.475867pt;}
.y9{bottom:724.382933pt;}
.y1b6{bottom:724.678667pt;}
.y175{bottom:724.680800pt;}
.y3a{bottom:730.462533pt;}
.y6a{bottom:730.475867pt;}
.y110{bottom:731.606711pt;}
.y1b5{bottom:738.012000pt;}
.y174{bottom:738.014133pt;}
.y133{bottom:738.352533pt;}
.y122{bottom:741.964045pt;}
.ycf{bottom:746.342533pt;}
.y39{bottom:746.462533pt;}
.y13e{bottom:746.464533pt;}
.y69{bottom:746.475867pt;}
.y1b4{bottom:751.345333pt;}
.y173{bottom:751.347467pt;}
.y117{bottom:757.604232pt;}
.yce{bottom:762.342533pt;}
.y38{bottom:762.462533pt;}
.y13d{bottom:762.464533pt;}
.y68{bottom:762.475867pt;}
.y1b3{bottom:764.678667pt;}
.y172{bottom:764.680800pt;}
.y8{bottom:765.406933pt;}
.y124{bottom:767.667393pt;}
.y10e{bottom:769.126000pt;}
.y1b2{bottom:778.012000pt;}
.y171{bottom:778.014133pt;}
.ycd{bottom:778.342533pt;}
.y37{bottom:778.462533pt;}
.y13c{bottom:778.464533pt;}
.y67{bottom:778.475867pt;}
.y118{bottom:783.503696pt;}
.y1b1{bottom:791.345333pt;}
.y170{bottom:791.347467pt;}
.y128{bottom:791.446361pt;}
.y13b{bottom:794.104533pt;}
.ycc{bottom:794.342533pt;}
.y36{bottom:794.462533pt;}
.y66{bottom:794.475867pt;}
.y7{bottom:797.816533pt;}
.y12e{bottom:798.627913pt;}
.y1b0{bottom:804.678667pt;}
.y16f{bottom:804.680800pt;}
.y12f{bottom:804.976400pt;}
.y119{bottom:809.501217pt;}
.y35{bottom:810.462533pt;}
.y65{bottom:810.475867pt;}
.y12a{bottom:814.771813pt;}
.y12d{bottom:817.056667pt;}
.y1af{bottom:818.012000pt;}
.y16e{bottom:818.014133pt;}
.ycb{bottom:825.982533pt;}
.y34{bottom:826.462533pt;}
.y13a{bottom:826.464533pt;}
.y64{bottom:826.475867pt;}
.y6{bottom:830.226133pt;}
.y1ae{bottom:831.345333pt;}
.y16d{bottom:831.347467pt;}
.y129{bottom:832.642810pt;}
.y116{bottom:835.388423pt;}
.y33{bottom:842.462533pt;}
.y139{bottom:842.464533pt;}
.y63{bottom:842.475867pt;}
.y1ad{bottom:844.678667pt;}
.y16c{bottom:844.680800pt;}
.y1ac{bottom:858.012000pt;}
.y16b{bottom:858.014133pt;}
.y32{bottom:858.462533pt;}
.y138{bottom:858.464533pt;}
.y62{bottom:858.475867pt;}
.y5{bottom:862.635733pt;}
.y1ab{bottom:871.345333pt;}
.y16a{bottom:871.347467pt;}
.y31{bottom:874.462533pt;}
.y137{bottom:874.464533pt;}
.y61{bottom:874.475867pt;}
.y1aa{bottom:884.678667pt;}
.y169{bottom:884.680800pt;}
.y30{bottom:890.462533pt;}
.y136{bottom:890.464533pt;}
.y60{bottom:890.475867pt;}
.y4{bottom:895.045333pt;}
.y1a9{bottom:898.012000pt;}
.y168{bottom:898.014133pt;}
.y2f{bottom:906.462533pt;}
.y135{bottom:906.464533pt;}
.y5f{bottom:906.475867pt;}
.y1a8{bottom:911.345333pt;}
.y167{bottom:911.347467pt;}
.y134{bottom:922.104533pt;}
.y2e{bottom:922.462533pt;}
.y5e{bottom:922.475867pt;}
.y1a7{bottom:924.678667pt;}
.y166{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.y3{bottom:952.641467pt;}
.yfa{bottom:1006.589200pt;}
.yc7{bottom:1006.594400pt;}
.y1a6{bottom:1006.600800pt;}
.yca{bottom:1006.601333pt;}
.y91{bottom:1006.631467pt;}
.y2c{bottom:1009.860000pt;}
.y2b{bottom:1022.660000pt;}
.h7{height:17.000371pt;}
.h16{height:17.283521pt;}
.h9{height:25.255208pt;}
.h2{height:27.197917pt;}
.h4{height:29.121094pt;}
.hf{height:29.140625pt;}
.h8{height:29.160156pt;}
.h12{height:29.645833pt;}
.ha{height:31.062500pt;}
.h11{height:31.083333pt;}
.h10{height:31.104167pt;}
.h19{height:35.694307pt;}
.h17{height:35.718247pt;}
.h1b{height:37.049292pt;}
.he{height:37.057292pt;}
.h15{height:37.296854pt;}
.h13{height:37.381654pt;}
.h14{height:37.382721pt;}
.hd{height:38.828125pt;}
.hc{height:38.854167pt;}
.hb{height:38.880208pt;}
.h1a{height:40.258600pt;}
.h18{height:44.796784pt;}
.h3{height:50.476562pt;}
.h6{height:50.774503pt;}
.h5{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:68.031467pt;}
.x1d{left:69.921733pt;}
.xa{left:85.417333pt;}
.x1{left:86.929067pt;}
.x1b{left:88.818933pt;}
.x3f{left:90.708800pt;}
.x3{left:94.488133pt;}
.xd{left:98.271467pt;}
.x3d{left:109.606400pt;}
.x4{left:111.491467pt;}
.x7{left:117.165333pt;}
.xe{left:128.644800pt;}
.x37{left:134.709347pt;}
.x36{left:158.937467pt;}
.x5{left:170.078667pt;}
.x1e{left:173.967067pt;}
.x29{left:185.525606pt;}
.x6{left:189.223467pt;}
.x3c{left:191.595867pt;}
.x15{left:206.542533pt;}
.x2e{left:215.935719pt;}
.x34{left:227.886489pt;}
.x30{left:231.220448pt;}
.x2c{left:256.936053pt;}
.x2b{left:258.419175pt;}
.x2f{left:281.266595pt;}
.x2d{left:288.547372pt;}
.x31{left:292.874164pt;}
.x33{left:296.085550pt;}
.x1c{left:333.911067pt;}
.x25{left:350.912006pt;}
.x32{left:359.222387pt;}
.x28{left:360.448107pt;}
.x35{left:379.863512pt;}
.x21{left:382.878783pt;}
.x23{left:384.349647pt;}
.x26{left:388.946097pt;}
.x2a{left:390.674363pt;}
.x20{left:395.221784pt;}
.xb{left:404.481333pt;}
.xf{left:406.311467pt;}
.x11{left:408.188933pt;}
.x27{left:409.305307pt;}
.x24{left:413.386954pt;}
.x22{left:414.857818pt;}
.x1f{left:417.615688pt;}
.x16{left:425.195867pt;}
.x8{left:427.085333pt;}
.x12{left:428.978267pt;}
.x10{left:436.551467pt;}
.x3e{left:447.878267pt;}
.x17{left:455.435867pt;}
.x9{left:457.325333pt;}
.x1a{left:526.169200pt;}
.x18{left:533.969200pt;}
.x39{left:546.376432pt;}
.x38{left:582.227600pt;}
.x14{left:589.770933pt;}
.x3a{left:612.731067pt;}
.x2{left:616.324800pt;}
.x3b{left:639.281333pt;}
.x13{left:653.404933pt;}
.x19{left:672.289067pt;}
}




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