
    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_aacdcd1f869d2a26b1854666.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.197000;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_06c5e63a056816ad92e47b7b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8414df9034093822dab43ef4.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e94feb1ddae40ff7873f70f5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_6c0559f4e7558bcb2b424148.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.239000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ff3521633e59b7d8151b27f2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.213000;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_8d707cdf90be51f0db33032c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.222000;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_451fce770689b048b07c34b2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.256000;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_aacdcd1f869d2a26b1854666.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.197000;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_1497fe05f71cb20c854d4a7d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.230000;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_451fce770689b048b07c34b2.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.256000;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_20ea7a793f265b754930cf85.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_b65bcdeb55b4a2496f5db4d0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.558000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_fa593e6c210944f770d04346.woff2')format("woff");}.ffe{font-family:ffe;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.399963px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.399963px;}
.v2{vertical-align:24.000000px;}
.ls6{letter-spacing:-15.000000px;}
.ls2b{letter-spacing:-12.750000px;}
.ls32{letter-spacing:-12.648000px;}
.ls3f{letter-spacing:-12.546000px;}
.ls14{letter-spacing:-0.051000px;}
.ls4{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.000032px;}
.ls23{letter-spacing:0.000033px;}
.ls8{letter-spacing:0.000035px;}
.ls7{letter-spacing:0.000037px;}
.ls16{letter-spacing:0.000039px;}
.ls1d{letter-spacing:0.000040px;}
.ls27{letter-spacing:0.000041px;}
.lsf{letter-spacing:0.000054px;}
.lse{letter-spacing:0.000059px;}
.ls18{letter-spacing:0.000220px;}
.lsc{letter-spacing:0.000582px;}
.lsb{letter-spacing:0.000583px;}
.ls1e{letter-spacing:0.000606px;}
.ls22{letter-spacing:0.000610px;}
.ls5{letter-spacing:0.000652px;}
.ls1a{letter-spacing:0.000791px;}
.ls1b{letter-spacing:0.002208px;}
.ls9{letter-spacing:0.002263px;}
.lsd{letter-spacing:0.002391px;}
.ls1f{letter-spacing:0.002401px;}
.ls25{letter-spacing:0.002445px;}
.ls20{letter-spacing:0.002446px;}
.ls17{letter-spacing:0.002813px;}
.ls26{letter-spacing:0.002991px;}
.ls15{letter-spacing:0.002994px;}
.lsa{letter-spacing:0.002996px;}
.ls21{letter-spacing:0.002997px;}
.ls28{letter-spacing:0.002999px;}
.ls24{letter-spacing:0.003018px;}
.ls10{letter-spacing:0.007802px;}
.ls13{letter-spacing:0.008168px;}
.ls11{letter-spacing:0.008351px;}
.ls12{letter-spacing:0.008534px;}
.ls19{letter-spacing:0.009609px;}
.ls39{letter-spacing:0.034882px;}
.ls31{letter-spacing:0.331793px;}
.ls3c{letter-spacing:0.841187px;}
.ls38{letter-spacing:0.913147px;}
.ls2f{letter-spacing:1.183228px;}
.ls3e{letter-spacing:1.188629px;}
.ls37{letter-spacing:1.381256px;}
.ls2d{letter-spacing:1.822083px;}
.ls34{letter-spacing:2.578308px;}
.ls30{letter-spacing:2.895629px;}
.ls3a{letter-spacing:4.017609px;}
.ls36{letter-spacing:4.360199px;}
.ls2e{letter-spacing:4.695007px;}
.ls3d{letter-spacing:6.435059px;}
.ls33{letter-spacing:6.543091px;}
.ls2a{letter-spacing:7.132785px;}
.ls3b{letter-spacing:7.237244px;}
.ls35{letter-spacing:7.381210px;}
.ls29{letter-spacing:15.708000px;}
.ls0{letter-spacing:27.307191px;}
.ls2c{letter-spacing:35.464783px;}
.ls2{letter-spacing:53.015344px;}
.ls1{letter-spacing:53.015390px;}
.ls3{letter-spacing:53.016076px;}
.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;}
}
.ws1{word-spacing:-15.000000px;}
.ws41{word-spacing:-14.544000px;}
.ws6d{word-spacing:-12.750000px;}
.wsb4{word-spacing:-12.474000px;}
.ws5{word-spacing:-12.420000px;}
.ws3{word-spacing:-12.120000px;}
.ws4{word-spacing:-11.520000px;}
.ws7e{word-spacing:-10.500000px;}
.ws0{word-spacing:-9.996000px;}
.ws5b{word-spacing:-9.792000px;}
.ws2{word-spacing:-8.925000px;}
.ws64{word-spacing:-7.500000px;}
.ws6f{word-spacing:-6.375000px;}
.wsdd{word-spacing:-6.222000px;}
.ws12{word-spacing:-4.740000px;}
.wsed{word-spacing:-4.539000px;}
.wsaa{word-spacing:-4.260000px;}
.wsc5{word-spacing:-3.360000px;}
.ws5f{word-spacing:-2.940000px;}
.wsc8{word-spacing:-2.820000px;}
.ws33{word-spacing:-2.580000px;}
.wse6{word-spacing:-2.397000px;}
.wse8{word-spacing:-2.346000px;}
.wsee{word-spacing:-2.295000px;}
.ws15{word-spacing:-2.160000px;}
.wsf4{word-spacing:-2.142000px;}
.ws86{word-spacing:-2.100000px;}
.ws13e{word-spacing:-2.091000px;}
.ws2d{word-spacing:-2.040000px;}
.wsab{word-spacing:-1.920000px;}
.ws70{word-spacing:-1.887000px;}
.ws5a{word-spacing:-1.800000px;}
.ws131{word-spacing:-1.785000px;}
.ws67{word-spacing:-1.740000px;}
.ws10b{word-spacing:-1.683000px;}
.ws66{word-spacing:-1.620000px;}
.wsa5{word-spacing:-1.560000px;}
.ws19{word-spacing:-1.440000px;}
.ws29{word-spacing:-1.380000px;}
.ws13f{word-spacing:-1.377000px;}
.wsda{word-spacing:-1.326000px;}
.wsb1{word-spacing:-1.320000px;}
.wsdf{word-spacing:-1.275000px;}
.ws1c{word-spacing:-1.200000px;}
.ws37{word-spacing:-1.140000px;}
.wsea{word-spacing:-1.122000px;}
.ws2b{word-spacing:-1.080000px;}
.wsb8{word-spacing:-1.020000px;}
.ws7a{word-spacing:-0.918000px;}
.wsa2{word-spacing:-0.900000px;}
.wsfb{word-spacing:-0.816000px;}
.ws109{word-spacing:-0.765000px;}
.ws57{word-spacing:-0.720000px;}
.ws119{word-spacing:-0.663000px;}
.ws45{word-spacing:-0.660000px;}
.ws79{word-spacing:-0.561000px;}
.ws51{word-spacing:-0.540000px;}
.ws75{word-spacing:-0.459000px;}
.ws74{word-spacing:-0.408000px;}
.wsad{word-spacing:-0.360000px;}
.wsec{word-spacing:-0.357000px;}
.ws13c{word-spacing:-0.306000px;}
.ws126{word-spacing:-0.255000px;}
.ws5e{word-spacing:-0.240000px;}
.wsf3{word-spacing:-0.204000px;}
.wse{word-spacing:-0.180000px;}
.ws101{word-spacing:-0.153000px;}
.ws1e{word-spacing:-0.120000px;}
.wsce{word-spacing:-0.102000px;}
.ws46{word-spacing:-0.060000px;}
.ws6e{word-spacing:-0.051000px;}
.ws6{word-spacing:0.000000px;}
.ws76{word-spacing:0.051000px;}
.ws49{word-spacing:0.060000px;}
.ws23{word-spacing:0.120000px;}
.wsf9{word-spacing:0.153000px;}
.ws138{word-spacing:0.255000px;}
.wsfd{word-spacing:0.357000px;}
.wsc3{word-spacing:0.360000px;}
.ws11f{word-spacing:0.408000px;}
.ws7b{word-spacing:0.420000px;}
.ws39{word-spacing:0.480000px;}
.wse2{word-spacing:0.510000px;}
.wsc2{word-spacing:0.540000px;}
.ws2c{word-spacing:0.600000px;}
.ws9b{word-spacing:0.660000px;}
.wsf2{word-spacing:0.663000px;}
.ws13{word-spacing:0.720000px;}
.wsb0{word-spacing:0.780000px;}
.ws5c{word-spacing:0.840000px;}
.ws12e{word-spacing:0.867000px;}
.ws12f{word-spacing:0.918000px;}
.wscf{word-spacing:0.969000px;}
.wsc9{word-spacing:1.020000px;}
.ws107{word-spacing:1.071000px;}
.ws2e{word-spacing:1.080000px;}
.ws42{word-spacing:1.140000px;}
.wsff{word-spacing:1.173000px;}
.ws106{word-spacing:1.224000px;}
.wsc4{word-spacing:1.320000px;}
.ws121{word-spacing:1.377000px;}
.ws82{word-spacing:1.380000px;}
.ws4d{word-spacing:1.560000px;}
.wse7{word-spacing:1.581000px;}
.ws84{word-spacing:1.680000px;}
.wsd1{word-spacing:1.683000px;}
.ws9{word-spacing:1.740000px;}
.wsbc{word-spacing:1.800000px;}
.ws143{word-spacing:1.836000px;}
.wsaf{word-spacing:1.860000px;}
.ws108{word-spacing:1.887000px;}
.ws3e{word-spacing:1.920000px;}
.ws142{word-spacing:1.938000px;}
.ws3c{word-spacing:1.980000px;}
.wsfc{word-spacing:1.989000px;}
.ws24{word-spacing:2.040000px;}
.wsef{word-spacing:2.091000px;}
.ws12c{word-spacing:2.142000px;}
.wse5{word-spacing:2.193000px;}
.ws124{word-spacing:2.244000px;}
.wsa1{word-spacing:2.280000px;}
.ws104{word-spacing:2.295000px;}
.wsb7{word-spacing:2.340000px;}
.ws102{word-spacing:2.346000px;}
.ws3b{word-spacing:2.400000px;}
.ws8{word-spacing:2.460000px;}
.ws48{word-spacing:2.520000px;}
.ws3a{word-spacing:2.580000px;}
.ws111{word-spacing:2.601000px;}
.ws4b{word-spacing:2.640000px;}
.ws32{word-spacing:2.700000px;}
.ws59{word-spacing:2.760000px;}
.ws125{word-spacing:2.805000px;}
.wsd9{word-spacing:2.856000px;}
.ws100{word-spacing:2.907000px;}
.wsa3{word-spacing:2.940000px;}
.ws16{word-spacing:3.009000px;}
.ws8b{word-spacing:3.060000px;}
.ws11d{word-spacing:3.111000px;}
.ws22{word-spacing:3.120000px;}
.ws26{word-spacing:3.180000px;}
.ws43{word-spacing:3.240000px;}
.ws31{word-spacing:3.300000px;}
.ws11b{word-spacing:3.315000px;}
.ws81{word-spacing:3.360000px;}
.wsd5{word-spacing:3.417000px;}
.ws4c{word-spacing:3.420000px;}
.ws13d{word-spacing:3.519000px;}
.ws89{word-spacing:3.540000px;}
.ws105{word-spacing:3.570000px;}
.wsc6{word-spacing:3.600000px;}
.ws12a{word-spacing:3.621000px;}
.ws44{word-spacing:3.660000px;}
.wsa{word-spacing:3.720000px;}
.wsd0{word-spacing:3.723000px;}
.ws11a{word-spacing:3.825000px;}
.ws35{word-spacing:3.900000px;}
.wsa6{word-spacing:3.960000px;}
.ws130{word-spacing:4.029000px;}
.ws87{word-spacing:4.080000px;}
.ws40{word-spacing:4.140000px;}
.ws10f{word-spacing:4.182000px;}
.ws34{word-spacing:4.380000px;}
.ws11e{word-spacing:4.386000px;}
.wse3{word-spacing:4.488000px;}
.ws14{word-spacing:4.500000px;}
.ws114{word-spacing:4.539000px;}
.wsf7{word-spacing:4.692000px;}
.ws69{word-spacing:4.740000px;}
.wscc{word-spacing:4.794000px;}
.wsdc{word-spacing:4.845000px;}
.ws7{word-spacing:4.860000px;}
.wsfe{word-spacing:4.896000px;}
.ws2f{word-spacing:5.040000px;}
.ws6b{word-spacing:5.160000px;}
.wsac{word-spacing:5.220000px;}
.ws10d{word-spacing:5.304000px;}
.ws4e{word-spacing:5.340000px;}
.wsf1{word-spacing:5.355000px;}
.wsae{word-spacing:5.400000px;}
.wscd{word-spacing:5.457000px;}
.wsde{word-spacing:5.559000px;}
.ws27{word-spacing:5.640000px;}
.wse9{word-spacing:5.661000px;}
.ws88{word-spacing:5.700000px;}
.ws141{word-spacing:5.814000px;}
.wsb9{word-spacing:5.820000px;}
.wsc7{word-spacing:5.940000px;}
.ws1f{word-spacing:6.000000px;}
.ws9e{word-spacing:6.120000px;}
.ws58{word-spacing:6.240000px;}
.wsca{word-spacing:6.300000px;}
.ws10a{word-spacing:6.324000px;}
.wsb3{word-spacing:6.360000px;}
.ws13b{word-spacing:6.426000px;}
.wse4{word-spacing:6.477000px;}
.ws10e{word-spacing:6.528000px;}
.ws2a{word-spacing:6.540000px;}
.ws1a{word-spacing:6.660000px;}
.ws116{word-spacing:6.681000px;}
.ws28{word-spacing:6.780000px;}
.ws133{word-spacing:6.834000px;}
.wsd4{word-spacing:6.885000px;}
.ws8e{word-spacing:6.900000px;}
.wsfa{word-spacing:6.987000px;}
.ws1d{word-spacing:7.020000px;}
.ws10c{word-spacing:7.038000px;}
.ws4f{word-spacing:7.080000px;}
.ws60{word-spacing:7.140000px;}
.wse0{word-spacing:7.191000px;}
.ws94{word-spacing:7.200000px;}
.ws136{word-spacing:7.242000px;}
.ws50{word-spacing:7.260000px;}
.ws135{word-spacing:7.293000px;}
.ws5d{word-spacing:7.320000px;}
.ws80{word-spacing:7.380000px;}
.wsd7{word-spacing:7.395000px;}
.ws3f{word-spacing:7.500000px;}
.wse1{word-spacing:7.548000px;}
.ws9c{word-spacing:7.560000px;}
.wsc0{word-spacing:7.620000px;}
.ws3d{word-spacing:7.680000px;}
.wsd6{word-spacing:7.701000px;}
.ws10{word-spacing:7.740000px;}
.wsf0{word-spacing:7.752000px;}
.ws1b{word-spacing:7.860000px;}
.wsd2{word-spacing:7.905000px;}
.ws7f{word-spacing:7.920000px;}
.ws139{word-spacing:8.058000px;}
.ws96{word-spacing:8.160000px;}
.ws56{word-spacing:8.220000px;}
.ws53{word-spacing:8.340000px;}
.ws18{word-spacing:8.400000px;}
.ws9a{word-spacing:8.460000px;}
.wsbb{word-spacing:8.520000px;}
.ws38{word-spacing:8.580000px;}
.ws17{word-spacing:8.640000px;}
.wsc{word-spacing:8.760000px;}
.ws9d{word-spacing:8.820000px;}
.ws8a{word-spacing:8.940000px;}
.wsf6{word-spacing:8.976000px;}
.wsb6{word-spacing:9.000000px;}
.ws132{word-spacing:9.078000px;}
.ws98{word-spacing:9.120000px;}
.ws115{word-spacing:9.129000px;}
.ws61{word-spacing:9.240000px;}
.ws7c{word-spacing:9.300000px;}
.wsf8{word-spacing:9.384000px;}
.ws21{word-spacing:9.420000px;}
.wsb2{word-spacing:9.480000px;}
.ws7d{word-spacing:9.540000px;}
.ws8d{word-spacing:9.600000px;}
.ws113{word-spacing:9.639000px;}
.ws30{word-spacing:9.720000px;}
.ws11{word-spacing:9.840000px;}
.ws25{word-spacing:9.900000px;}
.wsb5{word-spacing:9.960000px;}
.wsbd{word-spacing:10.020000px;}
.wsa7{word-spacing:10.140000px;}
.wsc1{word-spacing:10.440000px;}
.ws12b{word-spacing:10.455000px;}
.ws90{word-spacing:10.500000px;}
.ws13a{word-spacing:10.506000px;}
.ws128{word-spacing:10.608000px;}
.wsd3{word-spacing:10.659000px;}
.ws112{word-spacing:10.761000px;}
.wsa0{word-spacing:10.860000px;}
.ws85{word-spacing:10.980000px;}
.ws95{word-spacing:11.220000px;}
.ws122{word-spacing:11.271000px;}
.ws6a{word-spacing:11.280000px;}
.ws52{word-spacing:11.340000px;}
.ws20{word-spacing:11.520000px;}
.ws11c{word-spacing:11.679000px;}
.ws4a{word-spacing:11.700000px;}
.ws103{word-spacing:11.730000px;}
.ws12d{word-spacing:11.781000px;}
.wsa9{word-spacing:12.000000px;}
.wsbf{word-spacing:12.060000px;}
.ws134{word-spacing:12.087000px;}
.ws127{word-spacing:12.291000px;}
.wsb{word-spacing:12.300000px;}
.ws110{word-spacing:12.546000px;}
.wsf5{word-spacing:12.648000px;}
.wsdb{word-spacing:12.699000px;}
.wscb{word-spacing:12.750000px;}
.ws83{word-spacing:12.780000px;}
.ws120{word-spacing:12.852000px;}
.wsd{word-spacing:12.900000px;}
.ws68{word-spacing:12.960000px;}
.wsa4{word-spacing:13.200000px;}
.ws97{word-spacing:13.620000px;}
.ws54{word-spacing:13.680000px;}
.ws47{word-spacing:13.920000px;}
.wsf{word-spacing:14.460000px;}
.ws36{word-spacing:14.880000px;}
.ws63{word-spacing:15.000000px;}
.ws55{word-spacing:15.120000px;}
.ws62{word-spacing:15.180000px;}
.wsbe{word-spacing:15.240000px;}
.ws8c{word-spacing:15.600000px;}
.ws99{word-spacing:15.960000px;}
.ws123{word-spacing:15.963000px;}
.wsa8{word-spacing:16.260000px;}
.wsba{word-spacing:16.500000px;}
.ws65{word-spacing:17.160000px;}
.ws137{word-spacing:17.493000px;}
.ws8f{word-spacing:17.640000px;}
.ws117{word-spacing:18.411000px;}
.ws9f{word-spacing:19.800000px;}
.ws118{word-spacing:21.420000px;}
.ws93{word-spacing:23.280000px;}
.ws92{word-spacing:23.580000px;}
.wsd8{word-spacing:23.715000px;}
.ws91{word-spacing:25.560000px;}
.ws140{word-spacing:25.857000px;}
.ws129{word-spacing:26.775000px;}
.wseb{word-spacing:35.445000px;}
.ws6c{word-spacing:91.602029px;}
.ws72{word-spacing:113.292329px;}
.ws77{word-spacing:142.602029px;}
.ws73{word-spacing:142.653029px;}
.ws71{word-spacing:156.780029px;}
.ws78{word-spacing:165.297029px;}
._b{margin-left:-70.498787px;}
._2c{margin-left:-32.432379px;}
._2e{margin-left:-30.665992px;}
._28{margin-left:-23.126950px;}
._29{margin-left:-16.141685px;}
._13{margin-left:-15.128444px;}
._14{margin-left:-14.100893px;}
._27{margin-left:-13.070433px;}
._1a{margin-left:-11.142593px;}
._f{margin-left:-7.914008px;}
._12{margin-left:-6.576001px;}
._1{margin-left:-4.956000px;}
._9{margin-left:-3.894000px;}
._6{margin-left:-2.616718px;}
._0{margin-left:-1.224000px;}
._2{width:1.728000px;}
._3{width:3.708000px;}
._7{width:4.728000px;}
._4{width:6.036000px;}
._a{width:7.182000px;}
._e{width:8.670001px;}
._8{width:9.960000px;}
._d{width:11.094001px;}
._5{width:12.252693px;}
._10{width:13.560000px;}
._2f{width:14.611500px;}
._17{width:15.886721px;}
._11{width:16.896000px;}
._19{width:18.246000px;}
._1c{width:19.367999px;}
._25{width:20.676015px;}
._15{width:22.614000px;}
._16{width:23.946000px;}
._18{width:25.457999px;}
._1b{width:26.904000px;}
._26{width:28.324202px;}
._2d{width:31.111859px;}
._2a{width:32.892001px;}
._30{width:35.427578px;}
._2b{width:40.804840px;}
._c{width:54.416991px;}
._21{width:84.564029px;}
._20{width:93.081029px;}
._1f{width:98.691029px;}
._23{width:118.581029px;}
._24{width:121.437579px;}
._22{width:155.352029px;}
._1d{width:169.530029px;}
._1e{width:329.689765px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:35.699999px;}
.fs4{font-size:42.000000px;}
.fs0{font-size:51.000000px;}
.fs1{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:90.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y37{bottom:60.997650px;}
.y22{bottom:110.551048px;}
.y16c{bottom:115.446453px;}
.y1e1{bottom:115.458904px;}
.y19f{bottom:124.298103px;}
.y54{bottom:124.299145px;}
.y21{bottom:125.551048px;}
.y16b{bottom:130.446453px;}
.y1e0{bottom:130.458904px;}
.y19e{bottom:139.298103px;}
.y16{bottom:143.049145px;}
.y16a{bottom:145.446453px;}
.y1df{bottom:145.458904px;}
.y20{bottom:145.651050px;}
.y19d{bottom:154.298103px;}
.y169{bottom:160.446453px;}
.y1de{bottom:160.458904px;}
.y15{bottom:161.799145px;}
.y1f{bottom:163.051048px;}
.yd5{bottom:165.758250px;}
.y19c{bottom:169.298103px;}
.y10d{bottom:170.447845px;}
.y168{bottom:175.446453px;}
.y1dd{bottom:175.458904px;}
.y1e{bottom:178.051048px;}
.y14{bottom:180.549145px;}
.yd4{bottom:180.758250px;}
.y19b{bottom:184.298103px;}
.y10c{bottom:185.447845px;}
.y167{bottom:190.446453px;}
.y1dc{bottom:190.458904px;}
.yd3{bottom:195.758240px;}
.y1d{bottom:198.151039px;}
.y19a{bottom:199.298103px;}
.y13{bottom:199.299156px;}
.y10b{bottom:200.447845px;}
.y166{bottom:205.446442px;}
.y1db{bottom:205.458893px;}
.yd2{bottom:210.758240px;}
.y114{bottom:213.103043px;}
.y199{bottom:214.298103px;}
.y10a{bottom:215.447845px;}
.y1c{bottom:215.551048px;}
.y12{bottom:218.049156px;}
.y165{bottom:220.446442px;}
.y1da{bottom:220.458893px;}
.yd1{bottom:225.758240px;}
.y113{bottom:228.103043px;}
.y198{bottom:229.298103px;}
.y109{bottom:230.447845px;}
.y1b{bottom:230.551048px;}
.y164{bottom:235.446442px;}
.y1d9{bottom:235.458893px;}
.y11{bottom:236.799156px;}
.yd0{bottom:240.758240px;}
.y112{bottom:243.103043px;}
.y197{bottom:244.298103px;}
.y108{bottom:245.447845px;}
.y1a{bottom:245.551048px;}
.y163{bottom:250.446442px;}
.y1d8{bottom:250.458893px;}
.y10{bottom:255.549156px;}
.ycf{bottom:255.758240px;}
.y111{bottom:258.103043px;}
.y196{bottom:259.298103px;}
.y95{bottom:259.585052px;}
.y107{bottom:260.447845px;}
.y162{bottom:265.446442px;}
.y1d7{bottom:265.458893px;}
.y19{bottom:265.651039px;}
.yce{bottom:270.758240px;}
.y110{bottom:273.103043px;}
.y195{bottom:274.298103px;}
.yf{bottom:274.299156px;}
.y94{bottom:274.585052px;}
.y106{bottom:275.447845px;}
.y161{bottom:280.446442px;}
.y1d6{bottom:280.458893px;}
.ycd{bottom:285.758240px;}
.y10f{bottom:288.103043px;}
.y194{bottom:289.298103px;}
.y93{bottom:289.585052px;}
.yf0{bottom:290.447845px;}
.y18{bottom:290.551048px;}
.ye{bottom:293.049156px;}
.y160{bottom:295.446442px;}
.y1d5{bottom:295.458893px;}
.ycc{bottom:300.758240px;}
.y116{bottom:303.103043px;}
.y193{bottom:304.298103px;}
.y92{bottom:304.585052px;}
.yef{bottom:305.447845px;}
.y17{bottom:305.551048px;}
.y105{bottom:307.792648px;}
.y15f{bottom:310.446442px;}
.y1d4{bottom:310.458893px;}
.yd{bottom:311.799156px;}
.ycb{bottom:315.758240px;}
.y115{bottom:318.103043px;}
.y192{bottom:319.298103px;}
.y91{bottom:319.585052px;}
.yee{bottom:320.447845px;}
.y104{bottom:322.792648px;}
.y15e{bottom:325.446442px;}
.y1d3{bottom:325.458893px;}
.yc{bottom:330.549156px;}
.yca{bottom:333.103043px;}
.y191{bottom:334.298103px;}
.y90{bottom:334.585052px;}
.yed{bottom:335.447845px;}
.y103{bottom:337.792648px;}
.y15d{bottom:340.446442px;}
.y1d2{bottom:340.458893px;}
.yc9{bottom:348.103043px;}
.y190{bottom:349.298103px;}
.yb{bottom:349.299156px;}
.y8f{bottom:349.585052px;}
.yec{bottom:350.447845px;}
.y102{bottom:352.792648px;}
.y15c{bottom:355.446442px;}
.y1d1{bottom:355.458893px;}
.yc8{bottom:363.103043px;}
.y18f{bottom:364.298103px;}
.y8e{bottom:364.585052px;}
.yeb{bottom:365.447845px;}
.y101{bottom:367.792648px;}
.ya{bottom:368.049156px;}
.y15b{bottom:370.446442px;}
.y1d0{bottom:370.458893px;}
.y12a{bottom:372.893257px;}
.yc7{bottom:378.103043px;}
.y18e{bottom:379.298103px;}
.y8d{bottom:379.585052px;}
.yea{bottom:380.447845px;}
.y100{bottom:382.792648px;}
.y129{bottom:385.137450px;}
.y15a{bottom:385.446442px;}
.y1cf{bottom:385.458893px;}
.y9{bottom:386.799133px;}
.y18d{bottom:394.298080px;}
.yc6{bottom:395.447845px;}
.y8c{bottom:396.929855px;}
.yff{bottom:397.792648px;}
.y128{bottom:400.137450px;}
.y159{bottom:400.446442px;}
.y1ce{bottom:400.458893px;}
.y8{bottom:405.549133px;}
.y18c{bottom:409.298080px;}
.yc5{bottom:410.447845px;}
.y8b{bottom:411.929855px;}
.yfe{bottom:412.792648px;}
.y127{bottom:415.137450px;}
.y158{bottom:415.446442px;}
.y1cd{bottom:415.458893px;}
.y18b{bottom:424.298080px;}
.y7{bottom:424.299133px;}
.yc4{bottom:425.447845px;}
.y8a{bottom:426.929855px;}
.yfd{bottom:427.792648px;}
.y126{bottom:430.137450px;}
.y157{bottom:430.446442px;}
.y1cc{bottom:430.458893px;}
.y18a{bottom:439.298080px;}
.yc3{bottom:440.447845px;}
.y89{bottom:441.929855px;}
.yfc{bottom:442.792648px;}
.y6{bottom:443.049133px;}
.y125{bottom:445.137450px;}
.y156{bottom:445.446442px;}
.y1cb{bottom:445.458893px;}
.y189{bottom:454.298080px;}
.yc2{bottom:455.447845px;}
.y88{bottom:456.929855px;}
.yfb{bottom:457.792648px;}
.y124{bottom:460.137450px;}
.y155{bottom:460.446442px;}
.y1ca{bottom:460.458893px;}
.y5{bottom:461.799133px;}
.y188{bottom:469.298080px;}
.yc1{bottom:470.447845px;}
.y87{bottom:471.929855px;}
.yfa{bottom:472.792648px;}
.y123{bottom:475.137450px;}
.y154{bottom:475.446442px;}
.y1c9{bottom:475.458893px;}
.y4{bottom:480.549133px;}
.yc0{bottom:485.447845px;}
.y10e{bottom:487.792648px;}
.y86{bottom:489.274658px;}
.yf9{bottom:490.137450px;}
.y153{bottom:490.446442px;}
.y1c8{bottom:490.458893px;}
.y3{bottom:499.299133px;}
.ye9{bottom:500.447845px;}
.ybf{bottom:502.792648px;}
.y187{bottom:503.048080px;}
.y85{bottom:504.274658px;}
.yf8{bottom:505.137450px;}
.y152{bottom:505.446442px;}
.y1c7{bottom:505.458893px;}
.ybe{bottom:517.792648px;}
.y53{bottom:518.049133px;}
.y84{bottom:519.274658px;}
.yf7{bottom:520.137450px;}
.y151{bottom:520.446442px;}
.y1c6{bottom:520.458893px;}
.ybd{bottom:532.792648px;}
.y83{bottom:534.274658px;}
.yf6{bottom:535.137450px;}
.y150{bottom:535.446442px;}
.y1c5{bottom:535.458893px;}
.y52{bottom:536.799133px;}
.ybc{bottom:547.792648px;}
.y82{bottom:549.274658px;}
.yf5{bottom:550.137450px;}
.y14f{bottom:550.446442px;}
.y1c4{bottom:550.458893px;}
.y122{bottom:552.482254px;}
.y58{bottom:555.549133px;}
.y186{bottom:559.298080px;}
.y32{bottom:560.112579px;}
.y1e3{bottom:562.458893px;}
.ybb{bottom:562.792648px;}
.y81{bottom:564.274658px;}
.yf4{bottom:565.137450px;}
.y14e{bottom:565.446442px;}
.y1c3{bottom:565.458893px;}
.y121{bottom:567.482254px;}
.y185{bottom:574.298080px;}
.y51{bottom:574.299133px;}
.y1e2{bottom:577.458893px;}
.yba{bottom:577.792648px;}
.y80{bottom:579.274658px;}
.yf3{bottom:580.137450px;}
.y14d{bottom:580.446442px;}
.y1c2{bottom:580.458893px;}
.y120{bottom:582.482254px;}
.y184{bottom:589.298080px;}
.yb9{bottom:592.792648px;}
.y57{bottom:593.049133px;}
.y7f{bottom:594.274658px;}
.yf2{bottom:595.137450px;}
.y14c{bottom:595.446442px;}
.y1c1{bottom:595.458893px;}
.y31{bottom:596.862579px;}
.y11f{bottom:597.482254px;}
.y183{bottom:604.298080px;}
.ye8{bottom:607.792648px;}
.yb8{bottom:610.137450px;}
.y14b{bottom:610.446442px;}
.y1c0{bottom:610.458893px;}
.y7e{bottom:611.619461px;}
.y50{bottom:611.799133px;}
.y11e{bottom:612.482254px;}
.y30{bottom:615.612579px;}
.y182{bottom:619.298080px;}
.ye7{bottom:622.792648px;}
.yb7{bottom:625.137450px;}
.y14a{bottom:625.446442px;}
.y1bf{bottom:625.458893px;}
.y7d{bottom:626.619461px;}
.y11d{bottom:627.482254px;}
.y56{bottom:630.549133px;}
.y181{bottom:634.298080px;}
.y2f{bottom:634.362579px;}
.ye6{bottom:637.792648px;}
.yb6{bottom:640.137450px;}
.y149{bottom:640.446442px;}
.y1be{bottom:640.458893px;}
.y7c{bottom:641.619461px;}
.y11c{bottom:642.482254px;}
.y180{bottom:649.298080px;}
.y55{bottom:649.299133px;}
.ye5{bottom:652.792648px;}
.y2e{bottom:653.112579px;}
.yb5{bottom:655.137450px;}
.y148{bottom:655.446442px;}
.y1bd{bottom:655.458893px;}
.y7b{bottom:656.619461px;}
.y11b{bottom:657.482254px;}
.y17f{bottom:664.298080px;}
.y4f{bottom:668.049133px;}
.yb4{bottom:670.137450px;}
.y147{bottom:670.446442px;}
.y1bc{bottom:670.458893px;}
.y7a{bottom:671.619461px;}
.y2d{bottom:671.862579px;}
.yf1{bottom:672.482254px;}
.y5b{bottom:673.989899px;}
.y17e{bottom:679.298080px;}
.ye4{bottom:685.137450px;}
.y146{bottom:685.446442px;}
.y1bb{bottom:685.458893px;}
.y79{bottom:686.619461px;}
.y4e{bottom:686.799133px;}
.yb3{bottom:687.482254px;}
.y5a{bottom:688.989899px;}
.y2c{bottom:690.612762px;}
.y17d{bottom:694.298080px;}
.ye3{bottom:700.137450px;}
.y145{bottom:700.446442px;}
.y1ba{bottom:700.458893px;}
.y5c{bottom:701.071930px;}
.y78{bottom:701.619461px;}
.yb2{bottom:702.482254px;}
.y59{bottom:703.989899px;}
.y4d{bottom:705.549133px;}
.y17c{bottom:709.298080px;}
.y2b{bottom:709.362762px;}
.ye2{bottom:715.137450px;}
.y144{bottom:715.446442px;}
.y1b9{bottom:715.458893px;}
.y77{bottom:716.619461px;}
.yb1{bottom:717.482254px;}
.y11a{bottom:719.827057px;}
.y17b{bottom:724.298080px;}
.y4c{bottom:724.299133px;}
.y2a{bottom:728.112762px;}
.ye1{bottom:730.137450px;}
.y143{bottom:730.446442px;}
.y1b8{bottom:730.458893px;}
.yb0{bottom:732.482254px;}
.y76{bottom:733.964264px;}
.y119{bottom:734.827057px;}
.y17a{bottom:739.298080px;}
.y4b{bottom:743.049133px;}
.ye0{bottom:745.137450px;}
.y142{bottom:745.446442px;}
.y1b7{bottom:745.458893px;}
.y29{bottom:746.862762px;}
.yaf{bottom:747.482254px;}
.y75{bottom:748.964264px;}
.y118{bottom:749.827057px;}
.ydf{bottom:760.137450px;}
.y141{bottom:760.446442px;}
.y1b6{bottom:760.458893px;}
.y4a{bottom:761.799133px;}
.yae{bottom:762.482254px;}
.y74{bottom:763.964264px;}
.y117{bottom:764.827057px;}
.y28{bottom:765.612762px;}
.y179{bottom:772.298126px;}
.y140{bottom:775.446442px;}
.y1b5{bottom:775.458893px;}
.yde{bottom:777.482208px;}
.y73{bottom:778.964264px;}
.yad{bottom:779.827057px;}
.y49{bottom:780.549133px;}
.y27{bottom:784.362579px;}
.y13f{bottom:790.446442px;}
.y1b4{bottom:790.458893px;}
.ydd{bottom:792.482208px;}
.y72{bottom:793.964264px;}
.yac{bottom:794.827057px;}
.y48{bottom:799.299133px;}
.y26{bottom:803.112579px;}
.y178{bottom:805.298126px;}
.y13e{bottom:805.446442px;}
.y1b3{bottom:805.458893px;}
.ydc{bottom:807.482208px;}
.y71{bottom:808.964264px;}
.yab{bottom:809.827057px;}
.y47{bottom:818.049133px;}
.y13d{bottom:820.446442px;}
.y1b2{bottom:820.458893px;}
.y25{bottom:821.862579px;}
.ydb{bottom:822.482208px;}
.yaa{bottom:824.827057px;}
.y70{bottom:826.309021px;}
.y13c{bottom:835.446442px;}
.y1b1{bottom:835.458893px;}
.y46{bottom:836.799133px;}
.yda{bottom:837.482208px;}
.ya9{bottom:839.827057px;}
.y24{bottom:840.612579px;}
.y6f{bottom:841.309021px;}
.y177{bottom:842.799133px;}
.y13b{bottom:850.446442px;}
.y1b0{bottom:850.458893px;}
.yd9{bottom:852.482208px;}
.ya8{bottom:854.827057px;}
.y45{bottom:855.549133px;}
.y6e{bottom:856.309021px;}
.y176{bottom:857.799133px;}
.y23{bottom:859.362579px;}
.y13a{bottom:865.446442px;}
.y1af{bottom:865.458893px;}
.yd8{bottom:867.482208px;}
.ya7{bottom:869.827057px;}
.y6d{bottom:871.309021px;}
.y175{bottom:872.799133px;}
.y44{bottom:874.299133px;}
.y139{bottom:880.446442px;}
.y1ae{bottom:880.458893px;}
.yd7{bottom:882.482208px;}
.ya6{bottom:884.827057px;}
.y6c{bottom:886.309021px;}
.y43{bottom:893.049133px;}
.y138{bottom:895.446442px;}
.y1ad{bottom:895.458893px;}
.ya5{bottom:899.827057px;}
.y6b{bottom:903.653870px;}
.y34{bottom:904.628357px;}
.y174{bottom:905.799133px;}
.y137{bottom:910.446442px;}
.y1ac{bottom:910.458893px;}
.y42{bottom:911.799133px;}
.ya4{bottom:914.827057px;}
.y6a{bottom:918.653870px;}
.y33{bottom:919.628357px;}
.y173{bottom:920.799133px;}
.y136{bottom:925.446442px;}
.y1ab{bottom:925.458893px;}
.ya3{bottom:929.827057px;}
.y41{bottom:930.549133px;}
.y69{bottom:933.653870px;}
.y135{bottom:940.446442px;}
.y1aa{bottom:940.458893px;}
.ya2{bottom:944.827057px;}
.y68{bottom:948.653870px;}
.y40{bottom:949.299133px;}
.y172{bottom:953.799133px;}
.y134{bottom:955.446442px;}
.y1a9{bottom:955.458893px;}
.ya1{bottom:959.827057px;}
.y36{bottom:963.206726px;}
.y67{bottom:963.653870px;}
.y3f{bottom:968.049133px;}
.y171{bottom:968.799133px;}
.y133{bottom:970.446442px;}
.y1a8{bottom:970.458893px;}
.ya0{bottom:974.827057px;}
.y66{bottom:978.653870px;}
.y170{bottom:983.799133px;}
.y132{bottom:985.446442px;}
.y1a7{bottom:985.458893px;}
.y3e{bottom:986.799133px;}
.y9f{bottom:989.827057px;}
.y65{bottom:993.653870px;}
.y16f{bottom:998.799133px;}
.y131{bottom:1000.446442px;}
.y1a6{bottom:1000.458893px;}
.y9e{bottom:1004.827057px;}
.y3d{bottom:1005.549133px;}
.y35{bottom:1007.043274px;}
.y64{bottom:1008.653870px;}
.y16e{bottom:1013.799133px;}
.y130{bottom:1015.446442px;}
.y1a5{bottom:1015.458893px;}
.y9b{bottom:1022.490326px;}
.y9d{bottom:1022.502777px;}
.y3c{bottom:1024.299133px;}
.y61{bottom:1026.742218px;}
.y63{bottom:1026.754669px;}
.y16d{bottom:1028.799133px;}
.y12f{bottom:1030.446442px;}
.y1a4{bottom:1030.458893px;}
.y9a{bottom:1037.490326px;}
.y9c{bottom:1037.502777px;}
.y60{bottom:1041.742218px;}
.y62{bottom:1041.754669px;}
.y3b{bottom:1043.049133px;}
.y12e{bottom:1045.446442px;}
.y1a3{bottom:1045.458893px;}
.y99{bottom:1052.490326px;}
.y98{bottom:1052.502777px;}
.y5f{bottom:1056.742218px;}
.y5e{bottom:1056.754669px;}
.y12d{bottom:1060.446442px;}
.y1a2{bottom:1060.458893px;}
.y3a{bottom:1061.799133px;}
.y97{bottom:1067.502777px;}
.y5d{bottom:1071.754669px;}
.y12c{bottom:1075.446442px;}
.y1a1{bottom:1075.458893px;}
.y39{bottom:1080.549133px;}
.yd6{bottom:1086.818665px;}
.y96{bottom:1089.736633px;}
.y12b{bottom:1090.446442px;}
.y1a0{bottom:1090.458893px;}
.y2{bottom:1109.543884px;}
.y38{bottom:1125.713104px;}
.y1{bottom:1126.031982px;}
.h7{height:24.787792px;}
.h6{height:35.411133px;}
.h5{height:36.855469px;}
.h3{height:41.660156px;}
.h8{height:44.749512px;}
.h12{height:45.187756px;}
.h2{height:48.297000px;}
.h10{height:49.113000px;}
.h11{height:49.992188px;}
.h14{height:50.439000px;}
.h4{height:52.646484px;}
.h13{height:53.162109px;}
.ha{height:57.780000px;}
.h9{height:59.340000px;}
.hf{height:64.680000px;}
.hc{height:64.824000px;}
.he{height:71.208000px;}
.hd{height:72.000000px;}
.hb{height:92.448000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:76.535402px;}
.x5{left:78.639153px;}
.x3{left:90.972599px;}
.x6{left:93.543303px;}
.x4{left:97.795200px;}
.x11{left:102.047253px;}
.xb{left:139.459053px;}
.xc{left:207.341560px;}
.xd{left:279.813446px;}
.xe{left:395.156387px;}
.x2{left:459.850342px;}
.x7{left:476.220428px;}
.x10{left:484.724396px;}
.xf{left:504.479095px;}
.xa{left:613.842453px;}
.x8{left:755.658737px;}
.x9{left:792.153625px;}
@media print{
.v1{vertical-align:-18.133301pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.133301pt;}
.v2{vertical-align:21.333333pt;}
.ls6{letter-spacing:-13.333333pt;}
.ls2b{letter-spacing:-11.333333pt;}
.ls32{letter-spacing:-11.242667pt;}
.ls3f{letter-spacing:-11.152000pt;}
.ls14{letter-spacing:-0.045333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.000028pt;}
.ls23{letter-spacing:0.000030pt;}
.ls8{letter-spacing:0.000031pt;}
.ls7{letter-spacing:0.000033pt;}
.ls16{letter-spacing:0.000034pt;}
.ls1d{letter-spacing:0.000036pt;}
.ls27{letter-spacing:0.000037pt;}
.lsf{letter-spacing:0.000048pt;}
.lse{letter-spacing:0.000052pt;}
.ls18{letter-spacing:0.000195pt;}
.lsc{letter-spacing:0.000517pt;}
.lsb{letter-spacing:0.000518pt;}
.ls1e{letter-spacing:0.000539pt;}
.ls22{letter-spacing:0.000543pt;}
.ls5{letter-spacing:0.000579pt;}
.ls1a{letter-spacing:0.000703pt;}
.ls1b{letter-spacing:0.001962pt;}
.ls9{letter-spacing:0.002012pt;}
.lsd{letter-spacing:0.002125pt;}
.ls1f{letter-spacing:0.002134pt;}
.ls25{letter-spacing:0.002173pt;}
.ls20{letter-spacing:0.002174pt;}
.ls17{letter-spacing:0.002500pt;}
.ls26{letter-spacing:0.002659pt;}
.ls15{letter-spacing:0.002661pt;}
.lsa{letter-spacing:0.002663pt;}
.ls21{letter-spacing:0.002664pt;}
.ls28{letter-spacing:0.002666pt;}
.ls24{letter-spacing:0.002683pt;}
.ls10{letter-spacing:0.006935pt;}
.ls13{letter-spacing:0.007260pt;}
.ls11{letter-spacing:0.007423pt;}
.ls12{letter-spacing:0.007586pt;}
.ls19{letter-spacing:0.008542pt;}
.ls39{letter-spacing:0.031006pt;}
.ls31{letter-spacing:0.294927pt;}
.ls3c{letter-spacing:0.747721pt;}
.ls38{letter-spacing:0.811686pt;}
.ls2f{letter-spacing:1.051758pt;}
.ls3e{letter-spacing:1.056559pt;}
.ls37{letter-spacing:1.227783pt;}
.ls2d{letter-spacing:1.619629pt;}
.ls34{letter-spacing:2.291829pt;}
.ls30{letter-spacing:2.573893pt;}
.ls3a{letter-spacing:3.571208pt;}
.ls36{letter-spacing:3.875732pt;}
.ls2e{letter-spacing:4.173340pt;}
.ls3d{letter-spacing:5.720052pt;}
.ls33{letter-spacing:5.816081pt;}
.ls2a{letter-spacing:6.340254pt;}
.ls3b{letter-spacing:6.433105pt;}
.ls35{letter-spacing:6.561076pt;}
.ls29{letter-spacing:13.962667pt;}
.ls0{letter-spacing:24.273059pt;}
.ls2c{letter-spacing:31.524251pt;}
.ls2{letter-spacing:47.124750pt;}
.ls1{letter-spacing:47.124791pt;}
.ls3{letter-spacing:47.125401pt;}
.ws1{word-spacing:-13.333333pt;}
.ws41{word-spacing:-12.928000pt;}
.ws6d{word-spacing:-11.333333pt;}
.wsb4{word-spacing:-11.088000pt;}
.ws5{word-spacing:-11.040000pt;}
.ws3{word-spacing:-10.773333pt;}
.ws4{word-spacing:-10.240000pt;}
.ws7e{word-spacing:-9.333333pt;}
.ws0{word-spacing:-8.885333pt;}
.ws5b{word-spacing:-8.704000pt;}
.ws2{word-spacing:-7.933333pt;}
.ws64{word-spacing:-6.666667pt;}
.ws6f{word-spacing:-5.666667pt;}
.wsdd{word-spacing:-5.530667pt;}
.ws12{word-spacing:-4.213333pt;}
.wsed{word-spacing:-4.034667pt;}
.wsaa{word-spacing:-3.786667pt;}
.wsc5{word-spacing:-2.986667pt;}
.ws5f{word-spacing:-2.613333pt;}
.wsc8{word-spacing:-2.506667pt;}
.ws33{word-spacing:-2.293333pt;}
.wse6{word-spacing:-2.130667pt;}
.wse8{word-spacing:-2.085333pt;}
.wsee{word-spacing:-2.040000pt;}
.ws15{word-spacing:-1.920000pt;}
.wsf4{word-spacing:-1.904000pt;}
.ws86{word-spacing:-1.866667pt;}
.ws13e{word-spacing:-1.858667pt;}
.ws2d{word-spacing:-1.813333pt;}
.wsab{word-spacing:-1.706667pt;}
.ws70{word-spacing:-1.677333pt;}
.ws5a{word-spacing:-1.600000pt;}
.ws131{word-spacing:-1.586667pt;}
.ws67{word-spacing:-1.546667pt;}
.ws10b{word-spacing:-1.496000pt;}
.ws66{word-spacing:-1.440000pt;}
.wsa5{word-spacing:-1.386667pt;}
.ws19{word-spacing:-1.280000pt;}
.ws29{word-spacing:-1.226667pt;}
.ws13f{word-spacing:-1.224000pt;}
.wsda{word-spacing:-1.178667pt;}
.wsb1{word-spacing:-1.173333pt;}
.wsdf{word-spacing:-1.133333pt;}
.ws1c{word-spacing:-1.066667pt;}
.ws37{word-spacing:-1.013333pt;}
.wsea{word-spacing:-0.997333pt;}
.ws2b{word-spacing:-0.960000pt;}
.wsb8{word-spacing:-0.906667pt;}
.ws7a{word-spacing:-0.816000pt;}
.wsa2{word-spacing:-0.800000pt;}
.wsfb{word-spacing:-0.725333pt;}
.ws109{word-spacing:-0.680000pt;}
.ws57{word-spacing:-0.640000pt;}
.ws119{word-spacing:-0.589333pt;}
.ws45{word-spacing:-0.586667pt;}
.ws79{word-spacing:-0.498667pt;}
.ws51{word-spacing:-0.480000pt;}
.ws75{word-spacing:-0.408000pt;}
.ws74{word-spacing:-0.362667pt;}
.wsad{word-spacing:-0.320000pt;}
.wsec{word-spacing:-0.317333pt;}
.ws13c{word-spacing:-0.272000pt;}
.ws126{word-spacing:-0.226667pt;}
.ws5e{word-spacing:-0.213333pt;}
.wsf3{word-spacing:-0.181333pt;}
.wse{word-spacing:-0.160000pt;}
.ws101{word-spacing:-0.136000pt;}
.ws1e{word-spacing:-0.106667pt;}
.wsce{word-spacing:-0.090667pt;}
.ws46{word-spacing:-0.053333pt;}
.ws6e{word-spacing:-0.045333pt;}
.ws6{word-spacing:0.000000pt;}
.ws76{word-spacing:0.045333pt;}
.ws49{word-spacing:0.053333pt;}
.ws23{word-spacing:0.106667pt;}
.wsf9{word-spacing:0.136000pt;}
.ws138{word-spacing:0.226667pt;}
.wsfd{word-spacing:0.317333pt;}
.wsc3{word-spacing:0.320000pt;}
.ws11f{word-spacing:0.362667pt;}
.ws7b{word-spacing:0.373333pt;}
.ws39{word-spacing:0.426667pt;}
.wse2{word-spacing:0.453333pt;}
.wsc2{word-spacing:0.480000pt;}
.ws2c{word-spacing:0.533333pt;}
.ws9b{word-spacing:0.586667pt;}
.wsf2{word-spacing:0.589333pt;}
.ws13{word-spacing:0.640000pt;}
.wsb0{word-spacing:0.693333pt;}
.ws5c{word-spacing:0.746667pt;}
.ws12e{word-spacing:0.770667pt;}
.ws12f{word-spacing:0.816000pt;}
.wscf{word-spacing:0.861333pt;}
.wsc9{word-spacing:0.906667pt;}
.ws107{word-spacing:0.952000pt;}
.ws2e{word-spacing:0.960000pt;}
.ws42{word-spacing:1.013333pt;}
.wsff{word-spacing:1.042667pt;}
.ws106{word-spacing:1.088000pt;}
.wsc4{word-spacing:1.173333pt;}
.ws121{word-spacing:1.224000pt;}
.ws82{word-spacing:1.226667pt;}
.ws4d{word-spacing:1.386667pt;}
.wse7{word-spacing:1.405333pt;}
.ws84{word-spacing:1.493333pt;}
.wsd1{word-spacing:1.496000pt;}
.ws9{word-spacing:1.546667pt;}
.wsbc{word-spacing:1.600000pt;}
.ws143{word-spacing:1.632000pt;}
.wsaf{word-spacing:1.653333pt;}
.ws108{word-spacing:1.677333pt;}
.ws3e{word-spacing:1.706667pt;}
.ws142{word-spacing:1.722667pt;}
.ws3c{word-spacing:1.760000pt;}
.wsfc{word-spacing:1.768000pt;}
.ws24{word-spacing:1.813333pt;}
.wsef{word-spacing:1.858667pt;}
.ws12c{word-spacing:1.904000pt;}
.wse5{word-spacing:1.949333pt;}
.ws124{word-spacing:1.994667pt;}
.wsa1{word-spacing:2.026667pt;}
.ws104{word-spacing:2.040000pt;}
.wsb7{word-spacing:2.080000pt;}
.ws102{word-spacing:2.085333pt;}
.ws3b{word-spacing:2.133333pt;}
.ws8{word-spacing:2.186667pt;}
.ws48{word-spacing:2.240000pt;}
.ws3a{word-spacing:2.293333pt;}
.ws111{word-spacing:2.312000pt;}
.ws4b{word-spacing:2.346667pt;}
.ws32{word-spacing:2.400000pt;}
.ws59{word-spacing:2.453333pt;}
.ws125{word-spacing:2.493333pt;}
.wsd9{word-spacing:2.538667pt;}
.ws100{word-spacing:2.584000pt;}
.wsa3{word-spacing:2.613333pt;}
.ws16{word-spacing:2.674667pt;}
.ws8b{word-spacing:2.720000pt;}
.ws11d{word-spacing:2.765333pt;}
.ws22{word-spacing:2.773333pt;}
.ws26{word-spacing:2.826667pt;}
.ws43{word-spacing:2.880000pt;}
.ws31{word-spacing:2.933333pt;}
.ws11b{word-spacing:2.946667pt;}
.ws81{word-spacing:2.986667pt;}
.wsd5{word-spacing:3.037333pt;}
.ws4c{word-spacing:3.040000pt;}
.ws13d{word-spacing:3.128000pt;}
.ws89{word-spacing:3.146667pt;}
.ws105{word-spacing:3.173333pt;}
.wsc6{word-spacing:3.200000pt;}
.ws12a{word-spacing:3.218667pt;}
.ws44{word-spacing:3.253333pt;}
.wsa{word-spacing:3.306667pt;}
.wsd0{word-spacing:3.309333pt;}
.ws11a{word-spacing:3.400000pt;}
.ws35{word-spacing:3.466667pt;}
.wsa6{word-spacing:3.520000pt;}
.ws130{word-spacing:3.581333pt;}
.ws87{word-spacing:3.626667pt;}
.ws40{word-spacing:3.680000pt;}
.ws10f{word-spacing:3.717333pt;}
.ws34{word-spacing:3.893333pt;}
.ws11e{word-spacing:3.898667pt;}
.wse3{word-spacing:3.989333pt;}
.ws14{word-spacing:4.000000pt;}
.ws114{word-spacing:4.034667pt;}
.wsf7{word-spacing:4.170667pt;}
.ws69{word-spacing:4.213333pt;}
.wscc{word-spacing:4.261333pt;}
.wsdc{word-spacing:4.306667pt;}
.ws7{word-spacing:4.320000pt;}
.wsfe{word-spacing:4.352000pt;}
.ws2f{word-spacing:4.480000pt;}
.ws6b{word-spacing:4.586667pt;}
.wsac{word-spacing:4.640000pt;}
.ws10d{word-spacing:4.714667pt;}
.ws4e{word-spacing:4.746667pt;}
.wsf1{word-spacing:4.760000pt;}
.wsae{word-spacing:4.800000pt;}
.wscd{word-spacing:4.850667pt;}
.wsde{word-spacing:4.941333pt;}
.ws27{word-spacing:5.013333pt;}
.wse9{word-spacing:5.032000pt;}
.ws88{word-spacing:5.066667pt;}
.ws141{word-spacing:5.168000pt;}
.wsb9{word-spacing:5.173333pt;}
.wsc7{word-spacing:5.280000pt;}
.ws1f{word-spacing:5.333333pt;}
.ws9e{word-spacing:5.440000pt;}
.ws58{word-spacing:5.546667pt;}
.wsca{word-spacing:5.600000pt;}
.ws10a{word-spacing:5.621333pt;}
.wsb3{word-spacing:5.653333pt;}
.ws13b{word-spacing:5.712000pt;}
.wse4{word-spacing:5.757333pt;}
.ws10e{word-spacing:5.802667pt;}
.ws2a{word-spacing:5.813333pt;}
.ws1a{word-spacing:5.920000pt;}
.ws116{word-spacing:5.938667pt;}
.ws28{word-spacing:6.026667pt;}
.ws133{word-spacing:6.074667pt;}
.wsd4{word-spacing:6.120000pt;}
.ws8e{word-spacing:6.133333pt;}
.wsfa{word-spacing:6.210667pt;}
.ws1d{word-spacing:6.240000pt;}
.ws10c{word-spacing:6.256000pt;}
.ws4f{word-spacing:6.293333pt;}
.ws60{word-spacing:6.346667pt;}
.wse0{word-spacing:6.392000pt;}
.ws94{word-spacing:6.400000pt;}
.ws136{word-spacing:6.437333pt;}
.ws50{word-spacing:6.453333pt;}
.ws135{word-spacing:6.482667pt;}
.ws5d{word-spacing:6.506667pt;}
.ws80{word-spacing:6.560000pt;}
.wsd7{word-spacing:6.573333pt;}
.ws3f{word-spacing:6.666667pt;}
.wse1{word-spacing:6.709333pt;}
.ws9c{word-spacing:6.720000pt;}
.wsc0{word-spacing:6.773333pt;}
.ws3d{word-spacing:6.826667pt;}
.wsd6{word-spacing:6.845333pt;}
.ws10{word-spacing:6.880000pt;}
.wsf0{word-spacing:6.890667pt;}
.ws1b{word-spacing:6.986667pt;}
.wsd2{word-spacing:7.026667pt;}
.ws7f{word-spacing:7.040000pt;}
.ws139{word-spacing:7.162667pt;}
.ws96{word-spacing:7.253333pt;}
.ws56{word-spacing:7.306667pt;}
.ws53{word-spacing:7.413333pt;}
.ws18{word-spacing:7.466667pt;}
.ws9a{word-spacing:7.520000pt;}
.wsbb{word-spacing:7.573333pt;}
.ws38{word-spacing:7.626667pt;}
.ws17{word-spacing:7.680000pt;}
.wsc{word-spacing:7.786667pt;}
.ws9d{word-spacing:7.840000pt;}
.ws8a{word-spacing:7.946667pt;}
.wsf6{word-spacing:7.978667pt;}
.wsb6{word-spacing:8.000000pt;}
.ws132{word-spacing:8.069333pt;}
.ws98{word-spacing:8.106667pt;}
.ws115{word-spacing:8.114667pt;}
.ws61{word-spacing:8.213333pt;}
.ws7c{word-spacing:8.266667pt;}
.wsf8{word-spacing:8.341333pt;}
.ws21{word-spacing:8.373333pt;}
.wsb2{word-spacing:8.426667pt;}
.ws7d{word-spacing:8.480000pt;}
.ws8d{word-spacing:8.533333pt;}
.ws113{word-spacing:8.568000pt;}
.ws30{word-spacing:8.640000pt;}
.ws11{word-spacing:8.746667pt;}
.ws25{word-spacing:8.800000pt;}
.wsb5{word-spacing:8.853333pt;}
.wsbd{word-spacing:8.906667pt;}
.wsa7{word-spacing:9.013333pt;}
.wsc1{word-spacing:9.280000pt;}
.ws12b{word-spacing:9.293333pt;}
.ws90{word-spacing:9.333333pt;}
.ws13a{word-spacing:9.338667pt;}
.ws128{word-spacing:9.429333pt;}
.wsd3{word-spacing:9.474667pt;}
.ws112{word-spacing:9.565333pt;}
.wsa0{word-spacing:9.653333pt;}
.ws85{word-spacing:9.760000pt;}
.ws95{word-spacing:9.973333pt;}
.ws122{word-spacing:10.018667pt;}
.ws6a{word-spacing:10.026667pt;}
.ws52{word-spacing:10.080000pt;}
.ws20{word-spacing:10.240000pt;}
.ws11c{word-spacing:10.381333pt;}
.ws4a{word-spacing:10.400000pt;}
.ws103{word-spacing:10.426667pt;}
.ws12d{word-spacing:10.472000pt;}
.wsa9{word-spacing:10.666667pt;}
.wsbf{word-spacing:10.720000pt;}
.ws134{word-spacing:10.744000pt;}
.ws127{word-spacing:10.925333pt;}
.wsb{word-spacing:10.933333pt;}
.ws110{word-spacing:11.152000pt;}
.wsf5{word-spacing:11.242667pt;}
.wsdb{word-spacing:11.288000pt;}
.wscb{word-spacing:11.333333pt;}
.ws83{word-spacing:11.360000pt;}
.ws120{word-spacing:11.424000pt;}
.wsd{word-spacing:11.466667pt;}
.ws68{word-spacing:11.520000pt;}
.wsa4{word-spacing:11.733333pt;}
.ws97{word-spacing:12.106667pt;}
.ws54{word-spacing:12.160000pt;}
.ws47{word-spacing:12.373333pt;}
.wsf{word-spacing:12.853333pt;}
.ws36{word-spacing:13.226667pt;}
.ws63{word-spacing:13.333333pt;}
.ws55{word-spacing:13.440000pt;}
.ws62{word-spacing:13.493333pt;}
.wsbe{word-spacing:13.546667pt;}
.ws8c{word-spacing:13.866667pt;}
.ws99{word-spacing:14.186667pt;}
.ws123{word-spacing:14.189333pt;}
.wsa8{word-spacing:14.453333pt;}
.wsba{word-spacing:14.666667pt;}
.ws65{word-spacing:15.253333pt;}
.ws137{word-spacing:15.549333pt;}
.ws8f{word-spacing:15.680000pt;}
.ws117{word-spacing:16.365333pt;}
.ws9f{word-spacing:17.600000pt;}
.ws118{word-spacing:19.040000pt;}
.ws93{word-spacing:20.693333pt;}
.ws92{word-spacing:20.960000pt;}
.wsd8{word-spacing:21.080000pt;}
.ws91{word-spacing:22.720000pt;}
.ws140{word-spacing:22.984000pt;}
.ws129{word-spacing:23.800000pt;}
.wseb{word-spacing:31.506667pt;}
.ws6c{word-spacing:81.424026pt;}
.ws72{word-spacing:100.704293pt;}
.ws77{word-spacing:126.757359pt;}
.ws73{word-spacing:126.802693pt;}
.ws71{word-spacing:139.360026pt;}
.ws78{word-spacing:146.930693pt;}
._b{margin-left:-62.665588pt;}
._2c{margin-left:-28.828782pt;}
._2e{margin-left:-27.258660pt;}
._28{margin-left:-20.557289pt;}
._29{margin-left:-14.348165pt;}
._13{margin-left:-13.447506pt;}
._14{margin-left:-12.534127pt;}
._27{margin-left:-11.618163pt;}
._1a{margin-left:-9.904527pt;}
._f{margin-left:-7.034673pt;}
._12{margin-left:-5.845334pt;}
._1{margin-left:-4.405333pt;}
._9{margin-left:-3.461333pt;}
._6{margin-left:-2.325971pt;}
._0{margin-left:-1.088000pt;}
._2{width:1.536000pt;}
._3{width:3.296000pt;}
._7{width:4.202667pt;}
._4{width:5.365333pt;}
._a{width:6.384000pt;}
._e{width:7.706667pt;}
._8{width:8.853333pt;}
._d{width:9.861334pt;}
._5{width:10.891283pt;}
._10{width:12.053333pt;}
._2f{width:12.988000pt;}
._17{width:14.121530pt;}
._11{width:15.018667pt;}
._19{width:16.218667pt;}
._1c{width:17.215999pt;}
._25{width:18.378680pt;}
._15{width:20.101333pt;}
._16{width:21.285333pt;}
._18{width:22.629333pt;}
._1b{width:23.914666pt;}
._26{width:25.177068pt;}
._2d{width:27.654986pt;}
._2a{width:29.237334pt;}
._30{width:31.491180pt;}
._2b{width:36.270969pt;}
._c{width:48.370659pt;}
._21{width:75.168026pt;}
._20{width:82.738693pt;}
._1f{width:87.725359pt;}
._23{width:105.405359pt;}
._24{width:107.944514pt;}
._22{width:138.090693pt;}
._1d{width:150.693359pt;}
._1e{width:293.057569pt;}
.fs2{font-size:31.733332pt;}
.fs4{font-size:37.333333pt;}
.fs0{font-size:45.333333pt;}
.fs1{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:80.000000pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:54.220133pt;}
.y22{bottom:98.267598pt;}
.y16c{bottom:102.619069pt;}
.y1e1{bottom:102.630137pt;}
.y19f{bottom:110.487203pt;}
.y54{bottom:110.488129pt;}
.y21{bottom:111.600932pt;}
.y16b{bottom:115.952403pt;}
.y1e0{bottom:115.963470pt;}
.y19e{bottom:123.820536pt;}
.y16{bottom:127.154795pt;}
.y16a{bottom:129.285736pt;}
.y1df{bottom:129.296804pt;}
.y20{bottom:129.467600pt;}
.y19d{bottom:137.153870pt;}
.y169{bottom:142.619069pt;}
.y1de{bottom:142.630137pt;}
.y15{bottom:143.821462pt;}
.y1f{bottom:144.934265pt;}
.yd5{bottom:147.340667pt;}
.y19c{bottom:150.487203pt;}
.y10d{bottom:151.509196pt;}
.y168{bottom:155.952403pt;}
.y1dd{bottom:155.963470pt;}
.y1e{bottom:158.267598pt;}
.y14{bottom:160.488129pt;}
.yd4{bottom:160.674000pt;}
.y19b{bottom:163.820536pt;}
.y10c{bottom:164.842529pt;}
.y167{bottom:169.285736pt;}
.y1dc{bottom:169.296804pt;}
.yd3{bottom:174.007324pt;}
.y1d{bottom:176.134257pt;}
.y19a{bottom:177.153870pt;}
.y13{bottom:177.154805pt;}
.y10b{bottom:178.175863pt;}
.y166{bottom:182.619059pt;}
.y1db{bottom:182.630127pt;}
.yd2{bottom:187.340658pt;}
.y114{bottom:189.424927pt;}
.y199{bottom:190.487203pt;}
.y10a{bottom:191.509196pt;}
.y1c{bottom:191.600932pt;}
.y12{bottom:193.821472pt;}
.y165{bottom:195.952393pt;}
.y1da{bottom:195.963460pt;}
.yd1{bottom:200.673991pt;}
.y113{bottom:202.758260pt;}
.y198{bottom:203.820536pt;}
.y109{bottom:204.842529pt;}
.y1b{bottom:204.934265pt;}
.y164{bottom:209.285726pt;}
.y1d9{bottom:209.296794pt;}
.y11{bottom:210.488139pt;}
.yd0{bottom:214.007324pt;}
.y112{bottom:216.091593pt;}
.y197{bottom:217.153870pt;}
.y108{bottom:218.175863pt;}
.y1a{bottom:218.267598pt;}
.y163{bottom:222.619059pt;}
.y1d8{bottom:222.630127pt;}
.y10{bottom:227.154805pt;}
.ycf{bottom:227.340658pt;}
.y111{bottom:229.424927pt;}
.y196{bottom:230.487203pt;}
.y95{bottom:230.742269pt;}
.y107{bottom:231.509196pt;}
.y162{bottom:235.952393pt;}
.y1d7{bottom:235.963460pt;}
.y19{bottom:236.134257pt;}
.yce{bottom:240.673991pt;}
.y110{bottom:242.758260pt;}
.y195{bottom:243.820536pt;}
.yf{bottom:243.821472pt;}
.y94{bottom:244.075602pt;}
.y106{bottom:244.842529pt;}
.y161{bottom:249.285726pt;}
.y1d6{bottom:249.296794pt;}
.ycd{bottom:254.007324pt;}
.y10f{bottom:256.091593pt;}
.y194{bottom:257.153870pt;}
.y93{bottom:257.408936pt;}
.yf0{bottom:258.175863pt;}
.y18{bottom:258.267598pt;}
.ye{bottom:260.488139pt;}
.y160{bottom:262.619059pt;}
.y1d5{bottom:262.630127pt;}
.ycc{bottom:267.340658pt;}
.y116{bottom:269.424927pt;}
.y193{bottom:270.487203pt;}
.y92{bottom:270.742269pt;}
.yef{bottom:271.509196pt;}
.y17{bottom:271.600932pt;}
.y105{bottom:273.593465pt;}
.y15f{bottom:275.952393pt;}
.y1d4{bottom:275.963460pt;}
.yd{bottom:277.154805pt;}
.ycb{bottom:280.673991pt;}
.y115{bottom:282.758260pt;}
.y192{bottom:283.820536pt;}
.y91{bottom:284.075602pt;}
.yee{bottom:284.842529pt;}
.y104{bottom:286.926799pt;}
.y15e{bottom:289.285726pt;}
.y1d3{bottom:289.296794pt;}
.yc{bottom:293.821472pt;}
.yca{bottom:296.091593pt;}
.y191{bottom:297.153870pt;}
.y90{bottom:297.408936pt;}
.yed{bottom:298.175863pt;}
.y103{bottom:300.260132pt;}
.y15d{bottom:302.619059pt;}
.y1d2{bottom:302.630127pt;}
.yc9{bottom:309.424927pt;}
.y190{bottom:310.487203pt;}
.yb{bottom:310.488139pt;}
.y8f{bottom:310.742269pt;}
.yec{bottom:311.509196pt;}
.y102{bottom:313.593465pt;}
.y15c{bottom:315.952393pt;}
.y1d1{bottom:315.963460pt;}
.yc8{bottom:322.758260pt;}
.y18f{bottom:323.820536pt;}
.y8e{bottom:324.075602pt;}
.yeb{bottom:324.842529pt;}
.y101{bottom:326.926799pt;}
.ya{bottom:327.154805pt;}
.y15b{bottom:329.285726pt;}
.y1d0{bottom:329.296794pt;}
.y12a{bottom:331.460673pt;}
.yc7{bottom:336.091593pt;}
.y18e{bottom:337.153870pt;}
.y8d{bottom:337.408936pt;}
.yea{bottom:338.175863pt;}
.y100{bottom:340.260132pt;}
.y129{bottom:342.344400pt;}
.y15a{bottom:342.619059pt;}
.y1cf{bottom:342.630127pt;}
.y9{bottom:343.821452pt;}
.y18d{bottom:350.487183pt;}
.yc6{bottom:351.509196pt;}
.y8c{bottom:352.826538pt;}
.yff{bottom:353.593465pt;}
.y128{bottom:355.677733pt;}
.y159{bottom:355.952393pt;}
.y1ce{bottom:355.963460pt;}
.y8{bottom:360.488118pt;}
.y18c{bottom:363.820516pt;}
.yc5{bottom:364.842529pt;}
.y8b{bottom:366.159871pt;}
.yfe{bottom:366.926799pt;}
.y127{bottom:369.011067pt;}
.y158{bottom:369.285726pt;}
.y1cd{bottom:369.296794pt;}
.y18b{bottom:377.153849pt;}
.y7{bottom:377.154785pt;}
.yc4{bottom:378.175863pt;}
.y8a{bottom:379.493205pt;}
.yfd{bottom:380.260132pt;}
.y126{bottom:382.344400pt;}
.y157{bottom:382.619059pt;}
.y1cc{bottom:382.630127pt;}
.y18a{bottom:390.487183pt;}
.yc3{bottom:391.509196pt;}
.y89{bottom:392.826538pt;}
.yfc{bottom:393.593465pt;}
.y6{bottom:393.821452pt;}
.y125{bottom:395.677733pt;}
.y156{bottom:395.952393pt;}
.y1cb{bottom:395.963460pt;}
.y189{bottom:403.820516pt;}
.yc2{bottom:404.842529pt;}
.y88{bottom:406.159871pt;}
.yfb{bottom:406.926799pt;}
.y124{bottom:409.011067pt;}
.y155{bottom:409.285726pt;}
.y1ca{bottom:409.296794pt;}
.y5{bottom:410.488118pt;}
.y188{bottom:417.153849pt;}
.yc1{bottom:418.175863pt;}
.y87{bottom:419.493205pt;}
.yfa{bottom:420.260132pt;}
.y123{bottom:422.344400pt;}
.y154{bottom:422.619059pt;}
.y1c9{bottom:422.630127pt;}
.y4{bottom:427.154785pt;}
.yc0{bottom:431.509196pt;}
.y10e{bottom:433.593465pt;}
.y86{bottom:434.910807pt;}
.yf9{bottom:435.677733pt;}
.y153{bottom:435.952393pt;}
.y1c8{bottom:435.963460pt;}
.y3{bottom:443.821452pt;}
.ye9{bottom:444.842529pt;}
.ybf{bottom:446.926799pt;}
.y187{bottom:447.153849pt;}
.y85{bottom:448.244141pt;}
.yf8{bottom:449.011067pt;}
.y152{bottom:449.285726pt;}
.y1c7{bottom:449.296794pt;}
.ybe{bottom:460.260132pt;}
.y53{bottom:460.488118pt;}
.y84{bottom:461.577474pt;}
.yf7{bottom:462.344400pt;}
.y151{bottom:462.619059pt;}
.y1c6{bottom:462.630127pt;}
.ybd{bottom:473.593465pt;}
.y83{bottom:474.910807pt;}
.yf6{bottom:475.677733pt;}
.y150{bottom:475.952393pt;}
.y1c5{bottom:475.963460pt;}
.y52{bottom:477.154785pt;}
.ybc{bottom:486.926799pt;}
.y82{bottom:488.244141pt;}
.yf5{bottom:489.011067pt;}
.y14f{bottom:489.285726pt;}
.y1c4{bottom:489.296794pt;}
.y122{bottom:491.095337pt;}
.y58{bottom:493.821452pt;}
.y186{bottom:497.153849pt;}
.y32{bottom:497.877848pt;}
.y1e3{bottom:499.963460pt;}
.ybb{bottom:500.260132pt;}
.y81{bottom:501.577474pt;}
.yf4{bottom:502.344400pt;}
.y14e{bottom:502.619059pt;}
.y1c3{bottom:502.630127pt;}
.y121{bottom:504.428670pt;}
.y185{bottom:510.487183pt;}
.y51{bottom:510.488118pt;}
.y1e2{bottom:513.296794pt;}
.yba{bottom:513.593465pt;}
.y80{bottom:514.910807pt;}
.yf3{bottom:515.677733pt;}
.y14d{bottom:515.952393pt;}
.y1c2{bottom:515.963460pt;}
.y120{bottom:517.762004pt;}
.y184{bottom:523.820516pt;}
.yb9{bottom:526.926799pt;}
.y57{bottom:527.154785pt;}
.y7f{bottom:528.244141pt;}
.yf2{bottom:529.011067pt;}
.y14c{bottom:529.285726pt;}
.y1c1{bottom:529.296794pt;}
.y31{bottom:530.544515pt;}
.y11f{bottom:531.095337pt;}
.y183{bottom:537.153849pt;}
.ye8{bottom:540.260132pt;}
.yb8{bottom:542.344400pt;}
.y14b{bottom:542.619059pt;}
.y1c0{bottom:542.630127pt;}
.y7e{bottom:543.661743pt;}
.y50{bottom:543.821452pt;}
.y11e{bottom:544.428670pt;}
.y30{bottom:547.211182pt;}
.y182{bottom:550.487183pt;}
.ye7{bottom:553.593465pt;}
.yb7{bottom:555.677733pt;}
.y14a{bottom:555.952393pt;}
.y1bf{bottom:555.963460pt;}
.y7d{bottom:556.995076pt;}
.y11d{bottom:557.762004pt;}
.y56{bottom:560.488118pt;}
.y181{bottom:563.820516pt;}
.y2f{bottom:563.877848pt;}
.ye6{bottom:566.926799pt;}
.yb6{bottom:569.011067pt;}
.y149{bottom:569.285726pt;}
.y1be{bottom:569.296794pt;}
.y7c{bottom:570.328410pt;}
.y11c{bottom:571.095337pt;}
.y180{bottom:577.153849pt;}
.y55{bottom:577.154785pt;}
.ye5{bottom:580.260132pt;}
.y2e{bottom:580.544515pt;}
.yb5{bottom:582.344400pt;}
.y148{bottom:582.619059pt;}
.y1bd{bottom:582.630127pt;}
.y7b{bottom:583.661743pt;}
.y11b{bottom:584.428670pt;}
.y17f{bottom:590.487183pt;}
.y4f{bottom:593.821452pt;}
.yb4{bottom:595.677733pt;}
.y147{bottom:595.952393pt;}
.y1bc{bottom:595.963460pt;}
.y7a{bottom:596.995076pt;}
.y2d{bottom:597.211182pt;}
.yf1{bottom:597.762004pt;}
.y5b{bottom:599.102132pt;}
.y17e{bottom:603.820516pt;}
.ye4{bottom:609.011067pt;}
.y146{bottom:609.285726pt;}
.y1bb{bottom:609.296794pt;}
.y79{bottom:610.328410pt;}
.y4e{bottom:610.488118pt;}
.yb3{bottom:611.095337pt;}
.y5a{bottom:612.435465pt;}
.y2c{bottom:613.878011pt;}
.y17d{bottom:617.153849pt;}
.ye3{bottom:622.344400pt;}
.y145{bottom:622.619059pt;}
.y1ba{bottom:622.630127pt;}
.y5c{bottom:623.175049pt;}
.y78{bottom:623.661743pt;}
.yb2{bottom:624.428670pt;}
.y59{bottom:625.768799pt;}
.y4d{bottom:627.154785pt;}
.y17c{bottom:630.487183pt;}
.y2b{bottom:630.544678pt;}
.ye2{bottom:635.677733pt;}
.y144{bottom:635.952393pt;}
.y1b9{bottom:635.963460pt;}
.y77{bottom:636.995076pt;}
.yb1{bottom:637.762004pt;}
.y11a{bottom:639.846273pt;}
.y17b{bottom:643.820516pt;}
.y4c{bottom:643.821452pt;}
.y2a{bottom:647.211344pt;}
.ye1{bottom:649.011067pt;}
.y143{bottom:649.285726pt;}
.y1b8{bottom:649.296794pt;}
.yb0{bottom:651.095337pt;}
.y76{bottom:652.412679pt;}
.y119{bottom:653.179606pt;}
.y17a{bottom:657.153849pt;}
.y4b{bottom:660.488118pt;}
.ye0{bottom:662.344400pt;}
.y142{bottom:662.619059pt;}
.y1b7{bottom:662.630127pt;}
.y29{bottom:663.878011pt;}
.yaf{bottom:664.428670pt;}
.y75{bottom:665.746012pt;}
.y118{bottom:666.512939pt;}
.ydf{bottom:675.677733pt;}
.y141{bottom:675.952393pt;}
.y1b6{bottom:675.963460pt;}
.y4a{bottom:677.154785pt;}
.yae{bottom:677.762004pt;}
.y74{bottom:679.079346pt;}
.y117{bottom:679.846273pt;}
.y28{bottom:680.544678pt;}
.y179{bottom:686.487223pt;}
.y140{bottom:689.285726pt;}
.y1b5{bottom:689.296794pt;}
.yde{bottom:691.095296pt;}
.y73{bottom:692.412679pt;}
.yad{bottom:693.179606pt;}
.y49{bottom:693.821452pt;}
.y27{bottom:697.211182pt;}
.y13f{bottom:702.619059pt;}
.y1b4{bottom:702.630127pt;}
.ydd{bottom:704.428630pt;}
.y72{bottom:705.746012pt;}
.yac{bottom:706.512939pt;}
.y48{bottom:710.488118pt;}
.y26{bottom:713.877848pt;}
.y178{bottom:715.820557pt;}
.y13e{bottom:715.952393pt;}
.y1b3{bottom:715.963460pt;}
.ydc{bottom:717.761963pt;}
.y71{bottom:719.079346pt;}
.yab{bottom:719.846273pt;}
.y47{bottom:727.154785pt;}
.y13d{bottom:729.285726pt;}
.y1b2{bottom:729.296794pt;}
.y25{bottom:730.544515pt;}
.ydb{bottom:731.095296pt;}
.yaa{bottom:733.179606pt;}
.y70{bottom:734.496908pt;}
.y13c{bottom:742.619059pt;}
.y1b1{bottom:742.630127pt;}
.y46{bottom:743.821452pt;}
.yda{bottom:744.428630pt;}
.ya9{bottom:746.512939pt;}
.y24{bottom:747.211182pt;}
.y6f{bottom:747.830241pt;}
.y177{bottom:749.154785pt;}
.y13b{bottom:755.952393pt;}
.y1b0{bottom:755.963460pt;}
.yd9{bottom:757.761963pt;}
.ya8{bottom:759.846273pt;}
.y45{bottom:760.488118pt;}
.y6e{bottom:761.163574pt;}
.y176{bottom:762.488118pt;}
.y23{bottom:763.877848pt;}
.y13a{bottom:769.285726pt;}
.y1af{bottom:769.296794pt;}
.yd8{bottom:771.095296pt;}
.ya7{bottom:773.179606pt;}
.y6d{bottom:774.496908pt;}
.y175{bottom:775.821452pt;}
.y44{bottom:777.154785pt;}
.y139{bottom:782.619059pt;}
.y1ae{bottom:782.630127pt;}
.yd7{bottom:784.428630pt;}
.ya6{bottom:786.512939pt;}
.y6c{bottom:787.830241pt;}
.y43{bottom:793.821452pt;}
.y138{bottom:795.952393pt;}
.y1ad{bottom:795.963460pt;}
.ya5{bottom:799.846273pt;}
.y6b{bottom:803.247884pt;}
.y34{bottom:804.114095pt;}
.y174{bottom:805.154785pt;}
.y137{bottom:809.285726pt;}
.y1ac{bottom:809.296794pt;}
.y42{bottom:810.488118pt;}
.ya4{bottom:813.179606pt;}
.y6a{bottom:816.581217pt;}
.y33{bottom:817.447428pt;}
.y173{bottom:818.488118pt;}
.y136{bottom:822.619059pt;}
.y1ab{bottom:822.630127pt;}
.ya3{bottom:826.512939pt;}
.y41{bottom:827.154785pt;}
.y69{bottom:829.914551pt;}
.y135{bottom:835.952393pt;}
.y1aa{bottom:835.963460pt;}
.ya2{bottom:839.846273pt;}
.y68{bottom:843.247884pt;}
.y40{bottom:843.821452pt;}
.y172{bottom:847.821452pt;}
.y134{bottom:849.285726pt;}
.y1a9{bottom:849.296794pt;}
.ya1{bottom:853.179606pt;}
.y36{bottom:856.183757pt;}
.y67{bottom:856.581217pt;}
.y3f{bottom:860.488118pt;}
.y171{bottom:861.154785pt;}
.y133{bottom:862.619059pt;}
.y1a8{bottom:862.630127pt;}
.ya0{bottom:866.512939pt;}
.y66{bottom:869.914551pt;}
.y170{bottom:874.488118pt;}
.y132{bottom:875.952393pt;}
.y1a7{bottom:875.963460pt;}
.y3e{bottom:877.154785pt;}
.y9f{bottom:879.846273pt;}
.y65{bottom:883.247884pt;}
.y16f{bottom:887.821452pt;}
.y131{bottom:889.285726pt;}
.y1a6{bottom:889.296794pt;}
.y9e{bottom:893.179606pt;}
.y3d{bottom:893.821452pt;}
.y35{bottom:895.149577pt;}
.y64{bottom:896.581217pt;}
.y16e{bottom:901.154785pt;}
.y130{bottom:902.619059pt;}
.y1a5{bottom:902.630127pt;}
.y9b{bottom:908.880290pt;}
.y9d{bottom:908.891357pt;}
.y3c{bottom:910.488118pt;}
.y61{bottom:912.659749pt;}
.y63{bottom:912.670817pt;}
.y16d{bottom:914.488118pt;}
.y12f{bottom:915.952393pt;}
.y1a4{bottom:915.963460pt;}
.y9a{bottom:922.213623pt;}
.y9c{bottom:922.224691pt;}
.y60{bottom:925.993083pt;}
.y62{bottom:926.004150pt;}
.y3b{bottom:927.154785pt;}
.y12e{bottom:929.285726pt;}
.y1a3{bottom:929.296794pt;}
.y99{bottom:935.546956pt;}
.y98{bottom:935.558024pt;}
.y5f{bottom:939.326416pt;}
.y5e{bottom:939.337484pt;}
.y12d{bottom:942.619059pt;}
.y1a2{bottom:942.630127pt;}
.y3a{bottom:943.821452pt;}
.y97{bottom:948.891357pt;}
.y5d{bottom:952.670817pt;}
.y12c{bottom:955.952393pt;}
.y1a1{bottom:955.963460pt;}
.y39{bottom:960.488118pt;}
.yd6{bottom:966.061035pt;}
.y96{bottom:968.654785pt;}
.y12b{bottom:969.285726pt;}
.y1a0{bottom:969.296794pt;}
.y2{bottom:986.261230pt;}
.y38{bottom:1000.633870pt;}
.y1{bottom:1000.917318pt;}
.h7{height:22.033593pt;}
.h6{height:31.476562pt;}
.h5{height:32.760417pt;}
.h3{height:37.031250pt;}
.h8{height:39.777344pt;}
.h12{height:40.166894pt;}
.h2{height:42.930667pt;}
.h10{height:43.656000pt;}
.h11{height:44.437500pt;}
.h14{height:44.834667pt;}
.h4{height:46.796875pt;}
.h13{height:47.255208pt;}
.ha{height:51.360000pt;}
.h9{height:52.746667pt;}
.hf{height:57.493333pt;}
.hc{height:57.621333pt;}
.he{height:63.296000pt;}
.hd{height:64.000000pt;}
.hb{height:82.176000pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:68.031469pt;}
.x5{left:69.901469pt;}
.x3{left:80.864532pt;}
.x6{left:83.149602pt;}
.x4{left:86.929067pt;}
.x11{left:90.708669pt;}
.xb{left:123.963603pt;}
.xc{left:184.303609pt;}
.xd{left:248.723063pt;}
.xe{left:351.250122pt;}
.x2{left:408.755859pt;}
.x7{left:423.307048pt;}
.x10{left:430.866130pt;}
.xf{left:448.425863pt;}
.xa{left:545.637736pt;}
.x8{left:671.696655pt;}
.x9{left:704.136556pt;}
}




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