
    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_166f931528d8bd53ecd6e63a.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_87888e6f9b426388843c67cd.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_bb44c45eb854053023ab68bc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.925781;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_63f8986e5b045f0e8226d68b.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_9e725da0f1a48dcbab64562a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_eae8622950d901d5a49ba472.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_cfc807ebb76fdc53ed2f24eb.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_13e60847833612589c32701a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.908203;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_1efbb0ef68afa9279a5cc4a3.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;}
.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;}
.v1{vertical-align:30.381600px;}
.v3{vertical-align:32.976000px;}
.ls3c{letter-spacing:-1.776000px;}
.ls14{letter-spacing:-0.780000px;}
.ls66{letter-spacing:-0.384000px;}
.ls46{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.300000px;}
.ls34{letter-spacing:-0.240000px;}
.ls52{letter-spacing:-0.180000px;}
.ls7b{letter-spacing:-0.144000px;}
.ls32{letter-spacing:-0.120000px;}
.ls33{letter-spacing:-0.060000px;}
.ls67{letter-spacing:-0.048000px;}
.ls13{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.003540px;}
.ls6f{letter-spacing:0.048000px;}
.ls2f{letter-spacing:0.060000px;}
.lsa{letter-spacing:0.120000px;}
.ls69{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.180000px;}
.ls4a{letter-spacing:0.192000px;}
.ls4{letter-spacing:0.240000px;}
.ls45{letter-spacing:0.288000px;}
.ls36{letter-spacing:0.300000px;}
.ls30{letter-spacing:0.360000px;}
.ls6b{letter-spacing:0.384000px;}
.lse{letter-spacing:0.420000px;}
.ls5d{letter-spacing:0.432000px;}
.ls18{letter-spacing:0.480000px;}
.ls5f{letter-spacing:0.528000px;}
.ls9{letter-spacing:0.540000px;}
.ls4b{letter-spacing:0.576000px;}
.ls11{letter-spacing:0.600000px;}
.ls57{letter-spacing:0.624000px;}
.ls2e{letter-spacing:0.660000px;}
.ls6d{letter-spacing:0.672000px;}
.ls1{letter-spacing:0.720000px;}
.ls5a{letter-spacing:0.768000px;}
.ls6{letter-spacing:0.780000px;}
.ls43{letter-spacing:0.816000px;}
.ls28{letter-spacing:0.840000px;}
.ls5b{letter-spacing:0.864000px;}
.ls2b{letter-spacing:0.900000px;}
.ls5e{letter-spacing:0.912000px;}
.ls1a{letter-spacing:0.960000px;}
.ls5c{letter-spacing:1.008000px;}
.lsd{letter-spacing:1.020000px;}
.ls76{letter-spacing:1.056000px;}
.ls1b{letter-spacing:1.080000px;}
.ls3{letter-spacing:1.140000px;}
.ls75{letter-spacing:1.152000px;}
.ls44{letter-spacing:1.200000px;}
.ls6a{letter-spacing:1.248000px;}
.ls5{letter-spacing:1.260000px;}
.ls65{letter-spacing:1.296000px;}
.ls1f{letter-spacing:1.320000px;}
.ls2{letter-spacing:1.380000px;}
.ls24{letter-spacing:1.440000px;}
.ls8{letter-spacing:1.500000px;}
.ls72{letter-spacing:1.536000px;}
.ls1d{letter-spacing:1.560000px;}
.ls6e{letter-spacing:1.584000px;}
.ls20{letter-spacing:1.620000px;}
.ls58{letter-spacing:1.632000px;}
.ls12{letter-spacing:1.680000px;}
.ls7a{letter-spacing:1.728000px;}
.ls22{letter-spacing:1.740000px;}
.ls6c{letter-spacing:1.776000px;}
.ls27{letter-spacing:1.800000px;}
.ls68{letter-spacing:1.824000px;}
.ls21{letter-spacing:1.860000px;}
.ls16{letter-spacing:1.920000px;}
.ls78{letter-spacing:1.968000px;}
.lsb{letter-spacing:1.980000px;}
.ls61{letter-spacing:2.016000px;}
.ls17{letter-spacing:2.040000px;}
.ls74{letter-spacing:2.064000px;}
.ls42{letter-spacing:2.100000px;}
.ls19{letter-spacing:2.160000px;}
.lsc{letter-spacing:2.220000px;}
.ls73{letter-spacing:2.256000px;}
.ls23{letter-spacing:2.280000px;}
.ls39{letter-spacing:2.340000px;}
.ls7c{letter-spacing:2.352000px;}
.ls3e{letter-spacing:2.400000px;}
.ls38{letter-spacing:2.460000px;}
.ls59{letter-spacing:2.496000px;}
.ls1e{letter-spacing:2.520000px;}
.ls31{letter-spacing:2.580000px;}
.ls70{letter-spacing:2.592000px;}
.ls35{letter-spacing:2.640000px;}
.ls2c{letter-spacing:2.700000px;}
.ls26{letter-spacing:2.760000px;}
.ls29{letter-spacing:2.820000px;}
.ls79{letter-spacing:2.832000px;}
.ls48{letter-spacing:2.880000px;}
.ls77{letter-spacing:2.928000px;}
.ls3f{letter-spacing:2.940000px;}
.ls2a{letter-spacing:3.000000px;}
.ls55{letter-spacing:3.060000px;}
.ls64{letter-spacing:3.072000px;}
.ls51{letter-spacing:3.120000px;}
.ls71{letter-spacing:3.168000px;}
.ls4d{letter-spacing:3.180000px;}
.ls2d{letter-spacing:3.240000px;}
.ls1c{letter-spacing:3.420000px;}
.ls25{letter-spacing:3.480000px;}
.ls63{letter-spacing:3.600000px;}
.ls41{letter-spacing:3.660000px;}
.ls40{letter-spacing:3.780000px;}
.ls54{letter-spacing:3.900000px;}
.ls3a{letter-spacing:4.080000px;}
.ls49{letter-spacing:4.140000px;}
.ls50{letter-spacing:4.200000px;}
.ls62{letter-spacing:4.320000px;}
.ls3d{letter-spacing:4.380000px;}
.lsf{letter-spacing:4.440000px;}
.ls4e{letter-spacing:4.800000px;}
.ls7{letter-spacing:5.040000px;}
.ls60{letter-spacing:5.088000px;}
.ls37{letter-spacing:5.220000px;}
.ls47{letter-spacing:5.280000px;}
.ls53{letter-spacing:5.340000px;}
.ls56{letter-spacing:7.620000px;}
.ls3b{letter-spacing:360.192000px;}
.ls4c{letter-spacing:389.184000px;}
.ls4f{letter-spacing:1099.056000px;}
.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;}
.ws9c{word-spacing:-22.020000px;}
.ws45{word-spacing:-19.080000px;}
.ws24{word-spacing:-18.480000px;}
.ws23{word-spacing:-17.520000px;}
.ws7d{word-spacing:-17.460000px;}
.ws43{word-spacing:-17.340000px;}
.ws96{word-spacing:-17.280000px;}
.ws4{word-spacing:-17.220000px;}
.ws22{word-spacing:-17.160000px;}
.wsbf{word-spacing:-16.800000px;}
.ws20{word-spacing:-16.680000px;}
.ws89{word-spacing:-16.080000px;}
.ws88{word-spacing:-16.020000px;}
.ws8a{word-spacing:-15.960000px;}
.ws2{word-spacing:-15.780000px;}
.ws73{word-spacing:-15.660000px;}
.ws9d{word-spacing:-15.240000px;}
.ws72{word-spacing:-15.180000px;}
.ws87{word-spacing:-15.120000px;}
.ws3{word-spacing:-15.000000px;}
.ws95{word-spacing:-14.940000px;}
.ws44{word-spacing:-14.880000px;}
.wsa1{word-spacing:-14.496000px;}
.wsbd{word-spacing:-14.256000px;}
.wsbe{word-spacing:-13.920000px;}
.ws21{word-spacing:-13.500000px;}
.wsbc{word-spacing:-13.440000px;}
.ws6{word-spacing:-13.344000px;}
.wsa3{word-spacing:-13.200000px;}
.wsa2{word-spacing:-13.008000px;}
.ws9f{word-spacing:-12.960000px;}
.wsa5{word-spacing:-12.864000px;}
.ws5{word-spacing:-12.510000px;}
.wsa0{word-spacing:-12.480000px;}
.wsa4{word-spacing:-12.432000px;}
.wsc0{word-spacing:-12.384000px;}
.wsbb{word-spacing:-12.240000px;}
.ws9e{word-spacing:-12.000000px;}
.ws1{word-spacing:-10.210662px;}
.wsa6{word-spacing:-5.340000px;}
.ws79{word-spacing:-5.280000px;}
.ws5d{word-spacing:-5.220000px;}
.wsb5{word-spacing:-5.088000px;}
.ws14{word-spacing:-5.040000px;}
.ws93{word-spacing:-4.800000px;}
.ws9{word-spacing:-4.684200px;}
.ws1d{word-spacing:-4.440000px;}
.ws64{word-spacing:-4.380000px;}
.wsb7{word-spacing:-4.320000px;}
.ws9a{word-spacing:-4.200000px;}
.ws81{word-spacing:-4.140000px;}
.ws60{word-spacing:-4.080000px;}
.wsa7{word-spacing:-3.900000px;}
.ws66{word-spacing:-3.780000px;}
.ws67{word-spacing:-3.660000px;}
.wsb8{word-spacing:-3.600000px;}
.ws36{word-spacing:-3.480000px;}
.ws2a{word-spacing:-3.420000px;}
.ws3e{word-spacing:-3.240000px;}
.ws90{word-spacing:-3.180000px;}
.wsca{word-spacing:-3.168000px;}
.ws9b{word-spacing:-3.120000px;}
.wsb9{word-spacing:-3.072000px;}
.ws3b{word-spacing:-3.000000px;}
.ws6c{word-spacing:-2.940000px;}
.wsd1{word-spacing:-2.928000px;}
.ws8{word-spacing:-2.886000px;}
.ws7a{word-spacing:-2.880000px;}
.wsd3{word-spacing:-2.832000px;}
.ws3a{word-spacing:-2.820000px;}
.ws37{word-spacing:-2.760000px;}
.ws3c{word-spacing:-2.700000px;}
.wscf{word-spacing:-2.688000px;}
.ws3f{word-spacing:-2.640000px;}
.wsc9{word-spacing:-2.592000px;}
.ws2c{word-spacing:-2.580000px;}
.wsac{word-spacing:-2.496000px;}
.ws5e{word-spacing:-2.460000px;}
.ws65{word-spacing:-2.400000px;}
.wsd0{word-spacing:-2.352000px;}
.ws5f{word-spacing:-2.340000px;}
.ws32{word-spacing:-2.280000px;}
.wscc{word-spacing:-2.256000px;}
.ws1b{word-spacing:-2.220000px;}
.ws28{word-spacing:-2.160000px;}
.ws68{word-spacing:-2.100000px;}
.wscd{word-spacing:-2.064000px;}
.ws26{word-spacing:-2.040000px;}
.wsb6{word-spacing:-2.016000px;}
.ws19{word-spacing:-1.980000px;}
.wsd2{word-spacing:-1.968000px;}
.ws25{word-spacing:-1.920000px;}
.ws2f{word-spacing:-1.860000px;}
.wsc1{word-spacing:-1.824000px;}
.ws38{word-spacing:-1.800000px;}
.ws30{word-spacing:-1.740000px;}
.wsd5{word-spacing:-1.728000px;}
.ws1a{word-spacing:-1.680000px;}
.wsab{word-spacing:-1.632000px;}
.ws2e{word-spacing:-1.620000px;}
.wsc7{word-spacing:-1.584000px;}
.ws2b{word-spacing:-1.560000px;}
.wscb{word-spacing:-1.536000px;}
.ws16{word-spacing:-1.500000px;}
.ws33{word-spacing:-1.440000px;}
.wse{word-spacing:-1.380000px;}
.ws2d{word-spacing:-1.320000px;}
.wsba{word-spacing:-1.296000px;}
.ws12{word-spacing:-1.260000px;}
.wsc3{word-spacing:-1.248000px;}
.ws91{word-spacing:-1.200000px;}
.wsce{word-spacing:-1.152000px;}
.ws10{word-spacing:-1.140000px;}
.wsc{word-spacing:-1.080000px;}
.wsaf{word-spacing:-1.056000px;}
.wsf{word-spacing:-1.020000px;}
.ws29{word-spacing:-0.960000px;}
.wsb3{word-spacing:-0.912000px;}
.ws39{word-spacing:-0.900000px;}
.wsad{word-spacing:-0.864000px;}
.ws3d{word-spacing:-0.840000px;}
.ws69{word-spacing:-0.816000px;}
.wsd{word-spacing:-0.780000px;}
.wsd4{word-spacing:-0.768000px;}
.ws78{word-spacing:-0.720000px;}
.wsc6{word-spacing:-0.672000px;}
.ws40{word-spacing:-0.660000px;}
.wsa9{word-spacing:-0.624000px;}
.ws1f{word-spacing:-0.600000px;}
.ws84{word-spacing:-0.576000px;}
.ws17{word-spacing:-0.540000px;}
.wsb4{word-spacing:-0.528000px;}
.ws27{word-spacing:-0.480000px;}
.wsb1{word-spacing:-0.432000px;}
.ws1c{word-spacing:-0.420000px;}
.wsc4{word-spacing:-0.384000px;}
.ws42{word-spacing:-0.360000px;}
.ws70{word-spacing:-0.336000px;}
.ws5c{word-spacing:-0.300000px;}
.wsc5{word-spacing:-0.288000px;}
.ws11{word-spacing:-0.240000px;}
.ws83{word-spacing:-0.192000px;}
.ws1e{word-spacing:-0.180000px;}
.wsc2{word-spacing:-0.144000px;}
.ws18{word-spacing:-0.120000px;}
.ws41{word-spacing:-0.060000px;}
.wsc8{word-spacing:-0.048000px;}
.ws7{word-spacing:0.000000px;}
.wsb2{word-spacing:0.048000px;}
.ws34{word-spacing:0.060000px;}
.ws31{word-spacing:0.120000px;}
.ws94{word-spacing:0.144000px;}
.ws99{word-spacing:0.180000px;}
.ws35{word-spacing:0.240000px;}
.wsb{word-spacing:0.300000px;}
.wsa{word-spacing:0.360000px;}
.wsaa{word-spacing:0.384000px;}
.ws76{word-spacing:0.780000px;}
.ws71{word-spacing:0.816000px;}
.ws6e{word-spacing:0.840000px;}
.ws85{word-spacing:0.960000px;}
.ws7b{word-spacing:1.104000px;}
.ws6d{word-spacing:1.380000px;}
.wsae{word-spacing:1.488000px;}
.wsb0{word-spacing:2.064000px;}
.ws6a{word-spacing:2.100000px;}
.ws8f{word-spacing:2.340000px;}
.ws86{word-spacing:2.352000px;}
.ws8e{word-spacing:3.420000px;}
.ws7c{word-spacing:3.900000px;}
.ws6f{word-spacing:3.936000px;}
.ws82{word-spacing:3.984000px;}
.ws92{word-spacing:4.560000px;}
.ws6b{word-spacing:4.620000px;}
.ws77{word-spacing:4.680000px;}
.ws15{word-spacing:4.920000px;}
.ws13{word-spacing:4.980000px;}
.wsa8{word-spacing:5.520000px;}
.ws98{word-spacing:185.136000px;}
.ws97{word-spacing:194.448000px;}
.ws4a{word-spacing:197.136000px;}
.ws55{word-spacing:199.200000px;}
.ws54{word-spacing:201.600000px;}
.ws5a{word-spacing:209.136000px;}
.ws56{word-spacing:210.048000px;}
.ws57{word-spacing:212.064000px;}
.ws46{word-spacing:213.552000px;}
.ws62{word-spacing:220.176000px;}
.ws51{word-spacing:221.136000px;}
.ws4b{word-spacing:223.200000px;}
.ws4d{word-spacing:225.600000px;}
.ws59{word-spacing:227.136000px;}
.ws49{word-spacing:228.048000px;}
.ws53{word-spacing:228.912000px;}
.ws61{word-spacing:230.544000px;}
.ws58{word-spacing:233.136000px;}
.ws5b{word-spacing:235.200000px;}
.ws4e{word-spacing:247.200000px;}
.ws74{word-spacing:280.176000px;}
.ws47{word-spacing:287.136000px;}
.ws63{word-spacing:288.528000px;}
.ws75{word-spacing:292.176000px;}
.ws50{word-spacing:312.192000px;}
.ws52{word-spacing:313.056000px;}
.ws4c{word-spacing:316.608000px;}
.ws48{word-spacing:317.520000px;}
.ws4f{word-spacing:355.200000px;}
.ws7f{word-spacing:365.184000px;}
.ws7e{word-spacing:369.648000px;}
.ws80{word-spacing:377.184000px;}
.ws8b{word-spacing:560.304000px;}
.ws8c{word-spacing:561.216000px;}
.ws8d{word-spacing:572.304000px;}
._f{margin-left:-2897.382000px;}
._97{margin-left:-2874.816000px;}
._41{margin-left:-2873.574000px;}
._3{margin-left:-9.933600px;}
._2{margin-left:-8.803200px;}
._77{margin-left:-7.710000px;}
._7{margin-left:-6.585000px;}
._1{margin-left:-5.376000px;}
._6{margin-left:-4.314000px;}
._0{margin-left:-2.310000px;}
._5{margin-left:-1.095000px;}
._8{width:1.620000px;}
._a{width:3.480000px;}
._9{width:4.620000px;}
._b{width:5.760000px;}
._c{width:7.020000px;}
._e{width:8.364000px;}
._d{width:10.356000px;}
._4{width:59.605614px;}
._11{width:158.016000px;}
._15{width:161.808000px;}
._42{width:175.008000px;}
._8a{width:177.168000px;}
._46{width:180.192000px;}
._85{width:185.136000px;}
._84{width:189.168000px;}
._8f{width:192.960000px;}
._82{width:197.136000px;}
._49{width:202.176000px;}
._81{width:205.152000px;}
._31{width:209.136000px;}
._2f{width:211.200000px;}
._5a{width:219.216000px;}
._2c{width:221.136000px;}
._3b{width:223.200000px;}
._69{width:231.216000px;}
._1d{width:233.136000px;}
._25{width:235.200000px;}
._1c{width:239.136000px;}
._2e{width:240.582000px;}
._57{width:243.216000px;}
._34{width:245.136000px;}
._37{width:247.200000px;}
._29{width:251.136000px;}
._4a{width:256.224000px;}
._63{width:258.144000px;}
._1e{width:259.200000px;}
._36{width:263.136000px;}
._4e{width:268.224000px;}
._14{width:270.192000px;}
._2b{width:275.136000px;}
._50{width:280.224000px;}
._60{width:282.144000px;}
._40{width:283.440000px;}
._45{width:287.184000px;}
._58{width:293.184000px;}
._23{width:299.904000px;}
._76{width:304.176000px;}
._92{width:312.432000px;}
._74{width:316.176000px;}
._56{width:323.184000px;}
._1b{width:324.192000px;}
._28{width:336.192000px;}
._35{width:348.192000px;}
._73{width:351.648000px;}
._70{width:353.334000px;}
._33{width:360.192000px;}
._39{width:363.456000px;}
._18{width:367.968000px;}
._66{width:371.328000px;}
._75{width:372.384000px;}
._83{width:380.352000px;}
._16{width:383.424000px;}
._21{width:384.624000px;}
._65{width:387.312000px;}
._7a{width:389.184000px;}
._78{width:394.176000px;}
._87{width:396.336000px;}
._86{width:404.304000px;}
._6a{width:408.672000px;}
._47{width:418.800000px;}
._68{width:424.656000px;}
._7b{width:428.976000px;}
._4d{width:431.184000px;}
._72{width:439.104000px;}
._64{width:456.576000px;}
._4f{width:468.480000px;}
._26{width:516.720000px;}
._96{width:524.400000px;}
._2d{width:525.600000px;}
._24{width:532.704000px;}
._2a{width:536.736000px;}
._32{width:539.376000px;}
._27{width:540.672000px;}
._30{width:548.688000px;}
._38{width:551.328000px;}
._12{width:557.424000px;}
._51{width:559.152000px;}
._3c{width:564.624000px;}
._95{width:569.712000px;}
._44{width:577.872000px;}
._7c{width:584.304000px;}
._43{width:591.456000px;}
._7e{width:596.304000px;}
._94{width:601.632000px;}
._67{width:603.264000px;}
._54{width:611.280000px;}
._1f{width:616.752000px;}
._55{width:636.624000px;}
._6b{width:640.608000px;}
._80{width:643.056000px;}
._52{width:644.592000px;}
._17{width:646.080000px;}
._20{width:653.616000px;}
._4c{width:676.560000px;}
._53{width:681.558000px;}
._19{width:682.944000px;}
._10{width:700.560000px;}
._22{width:702.048000px;}
._61{width:712.560000px;}
._1a{width:719.046000px;}
._48{width:727.296000px;}
._6f{width:728.496000px;}
._6e{width:731.232000px;}
._13{width:761.280000px;}
._90{width:768.336000px;}
._62{width:787.200000px;}
._89{width:792.336000px;}
._88{width:795.024000px;}
._59{width:799.248000px;}
._8e{width:808.935000px;}
._6c{width:813.936000px;}
._79{width:819.360000px;}
._6d{width:824.496000px;}
._5b{width:825.936000px;}
._5c{width:836.496000px;}
._8d{width:837.648000px;}
._4b{width:845.856000px;}
._3e{width:865.686000px;}
._3d{width:880.656000px;}
._93{width:883.008000px;}
._3a{width:889.968000px;}
._5f{width:943.152000px;}
._5d{width:959.184000px;}
._5e{width:975.216000px;}
._91{width:989.568000px;}
._8b{width:992.304000px;}
._8c{width:1010.928000px;}
._71{width:1031.952000px;}
._7f{width:1047.648000px;}
._7d{width:1099.056000px;}
._3f{width:1378.137000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fsa{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y35{bottom:47.777250px;}
.y92{bottom:83.770350px;}
.ye5{bottom:84.005550px;}
.ye9{bottom:85.333650px;}
.yb6{bottom:86.784750px;}
.y32{bottom:88.026750px;}
.y1a9{bottom:89.263500px;}
.y103{bottom:92.391000px;}
.y13b{bottom:92.911050px;}
.y67{bottom:93.370350px;}
.yf5{bottom:93.879150px;}
.y116{bottom:96.021000px;}
.ye4{bottom:100.505550px;}
.ye8{bottom:101.077650px;}
.y91{bottom:101.770350px;}
.y31{bottom:103.023000px;}
.y1a8{bottom:104.263500px;}
.y102{bottom:108.639000px;}
.y13a{bottom:109.159050px;}
.yf4{bottom:110.127150px;}
.y66{bottom:111.370350px;}
.y115{bottom:112.269000px;}
.yb5{bottom:112.296750px;}
.ye7{bottom:116.821650px;}
.ye3{bottom:117.005550px;}
.y1a7{bottom:119.263500px;}
.y90{bottom:119.770350px;}
.y16b{bottom:119.772600px;}
.y101{bottom:124.887000px;}
.y139{bottom:125.407050px;}
.yf3{bottom:126.375150px;}
.y114{bottom:128.517000px;}
.yb4{bottom:128.544750px;}
.y65{bottom:129.370350px;}
.y1a6{bottom:134.263500px;}
.y16a{bottom:137.367600px;}
.y8f{bottom:137.770350px;}
.y138{bottom:141.655050px;}
.ye2{bottom:142.517550px;}
.y113{bottom:144.765000px;}
.yb3{bottom:144.792750px;}
.y64{bottom:147.370350px;}
.y1a5{bottom:149.263500px;}
.y100{bottom:153.891000px;}
.yf2{bottom:155.379150px;}
.y8e{bottom:155.770350px;}
.y137{bottom:157.903050px;}
.ye1{bottom:158.765550px;}
.y112{bottom:161.013000px;}
.yb2{bottom:161.040750px;}
.y1a4{bottom:164.263500px;}
.y63{bottom:165.370350px;}
.y30{bottom:165.981900px;}
.y27{bottom:166.116900px;}
.y8d{bottom:173.770350px;}
.y169{bottom:173.772600px;}
.y136{bottom:174.151050px;}
.ye0{bottom:175.013550px;}
.y111{bottom:177.261000px;}
.yb1{bottom:177.288750px;}
.y1a3{bottom:179.263500px;}
.yff{bottom:182.895000px;}
.y62{bottom:183.370350px;}
.y2f{bottom:183.981900px;}
.y26{bottom:184.116900px;}
.yf1{bottom:184.383150px;}
.y135{bottom:190.399050px;}
.ydf{bottom:191.261550px;}
.y168{bottom:191.367600px;}
.y8c{bottom:191.770350px;}
.yb0{bottom:193.536750px;}
.y1a2{bottom:194.263500px;}
.y61{bottom:201.370350px;}
.y2e{bottom:201.981900px;}
.y25{bottom:202.116900px;}
.y134{bottom:206.647050px;}
.yde{bottom:207.509550px;}
.y110{bottom:208.773000px;}
.y1a1{bottom:209.263500px;}
.y8b{bottom:209.770350px;}
.yaf{bottom:209.784750px;}
.yfe{bottom:215.286150px;}
.yf0{bottom:216.774300px;}
.y60{bottom:219.370350px;}
.y2d{bottom:219.981900px;}
.y24{bottom:220.116900px;}
.y133{bottom:222.895050px;}
.ydd{bottom:223.757550px;}
.y1a0{bottom:224.263500px;}
.yae{bottom:226.032750px;}
.y8a{bottom:227.770350px;}
.y167{bottom:227.772600px;}
.yfd{bottom:234.786150px;}
.yef{bottom:236.274300px;}
.y5f{bottom:237.370350px;}
.y2c{bottom:237.981900px;}
.y23{bottom:238.116900px;}
.y132{bottom:239.143050px;}
.y19f{bottom:239.263500px;}
.ydc{bottom:240.005550px;}
.yad{bottom:242.355750px;}
.y10f{bottom:243.670350px;}
.y89{bottom:245.770350px;}
.y166{bottom:245.772600px;}
.y19e{bottom:254.263500px;}
.y5e{bottom:255.370350px;}
.y131{bottom:255.462300px;}
.y2b{bottom:255.981900px;}
.y22{bottom:256.116900px;}
.ydb{bottom:256.253550px;}
.yac{bottom:258.603750px;}
.y10e{bottom:263.170350px;}
.y88{bottom:263.770350px;}
.y165{bottom:263.772600px;}
.y19d{bottom:269.263500px;}
.y130{bottom:271.710300px;}
.yda{bottom:272.501550px;}
.y5d{bottom:273.370350px;}
.y21{bottom:274.116900px;}
.yab{bottom:274.851750px;}
.y87{bottom:281.770350px;}
.y164{bottom:281.772600px;}
.yfa{bottom:282.960600px;}
.y19c{bottom:284.263500px;}
.yee{bottom:284.897400px;}
.y12f{bottom:287.958300px;}
.yd9{bottom:288.749550px;}
.yaa{bottom:291.099750px;}
.y5c{bottom:291.370350px;}
.y2a{bottom:291.576900px;}
.y20{bottom:292.116900px;}
.yf9{bottom:298.704600px;}
.y19b{bottom:299.263500px;}
.y86{bottom:299.770350px;}
.y163{bottom:299.772600px;}
.yed{bottom:300.641400px;}
.y12e{bottom:304.206300px;}
.yd8{bottom:304.997550px;}
.ya9{bottom:307.347750px;}
.y5b{bottom:309.370350px;}
.y1f{bottom:310.116900px;}
.y19a{bottom:314.263500px;}
.yf8{bottom:314.448600px;}
.yfc{bottom:314.661150px;}
.y11a{bottom:315.062850px;}
.y85{bottom:317.770350px;}
.y162{bottom:317.772600px;}
.y12d{bottom:320.454300px;}
.yd7{bottom:321.245550px;}
.ya8{bottom:323.595750px;}
.y5a{bottom:327.370350px;}
.y1e{bottom:328.116900px;}
.y199{bottom:329.263500px;}
.yf7{bottom:330.192600px;}
.yfb{bottom:330.405150px;}
.y119{bottom:330.806850px;}
.y161{bottom:335.367600px;}
.y84{bottom:335.770350px;}
.y12c{bottom:336.702300px;}
.yd6{bottom:337.493550px;}
.ya7{bottom:339.843750px;}
.y198{bottom:344.263500px;}
.y59{bottom:345.370350px;}
.y1d{bottom:346.116900px;}
.y118{bottom:346.550850px;}
.y12b{bottom:352.950300px;}
.yd5{bottom:353.741550px;}
.y83{bottom:353.770350px;}
.ya6{bottom:356.091750px;}
.y197{bottom:359.263500px;}
.y117{bottom:362.294850px;}
.y58{bottom:363.370350px;}
.y1c{bottom:364.116900px;}
.y12a{bottom:369.198300px;}
.yd4{bottom:369.989550px;}
.y82{bottom:371.770350px;}
.y160{bottom:371.772600px;}
.ya5{bottom:372.339750px;}
.y196{bottom:374.263500px;}
.y57{bottom:381.370350px;}
.y1b{bottom:382.116900px;}
.y129{bottom:385.446300px;}
.yd3{bottom:386.237550px;}
.ya4{bottom:388.587750px;}
.y195{bottom:389.263500px;}
.y15f{bottom:389.367600px;}
.y81{bottom:389.770350px;}
.y56{bottom:399.370350px;}
.y1a{bottom:400.116900px;}
.y128{bottom:401.694300px;}
.yd2{bottom:402.564450px;}
.y194{bottom:404.263500px;}
.ya3{bottom:404.835750px;}
.y80{bottom:407.770350px;}
.y1d5{bottom:410.263500px;}
.y55{bottom:417.370350px;}
.y127{bottom:417.942300px;}
.y19{bottom:418.116900px;}
.yd1{bottom:418.812450px;}
.y193{bottom:419.263500px;}
.ya2{bottom:421.083750px;}
.y1d4{bottom:425.263500px;}
.y7f{bottom:425.770350px;}
.y15e{bottom:425.772600px;}
.y126{bottom:434.190300px;}
.y192{bottom:434.263500px;}
.yd0{bottom:435.060450px;}
.y54{bottom:435.370350px;}
.y18{bottom:436.116900px;}
.ya1{bottom:437.331750px;}
.y1d3{bottom:440.263500px;}
.y7e{bottom:443.770350px;}
.y15d{bottom:443.772600px;}
.y191{bottom:449.263500px;}
.y125{bottom:450.438300px;}
.ycf{bottom:451.308450px;}
.y53{bottom:453.370350px;}
.ya0{bottom:453.579750px;}
.y17{bottom:454.116900px;}
.y1d2{bottom:455.263500px;}
.yeb{bottom:459.877650px;}
.y15c{bottom:461.367600px;}
.y7d{bottom:461.770350px;}
.y190{bottom:464.263500px;}
.y124{bottom:466.686300px;}
.yce{bottom:467.556450px;}
.y9f{bottom:469.827750px;}
.y1d1{bottom:470.263500px;}
.y52{bottom:471.370350px;}
.y29{bottom:472.116900px;}
.yea{bottom:475.621650px;}
.y18f{bottom:479.263500px;}
.y7c{bottom:479.770350px;}
.y123{bottom:482.934300px;}
.ycd{bottom:483.804450px;}
.y1d0{bottom:485.263500px;}
.y9e{bottom:486.075750px;}
.y51{bottom:489.370350px;}
.y16{bottom:489.714000px;}
.y28{bottom:490.116900px;}
.y18e{bottom:494.263500px;}
.y7b{bottom:497.770350px;}
.y15b{bottom:497.772600px;}
.y122{bottom:499.182300px;}
.ycc{bottom:500.052450px;}
.y1cf{bottom:500.263500px;}
.y9d{bottom:502.323750px;}
.y50{bottom:507.370350px;}
.y18d{bottom:509.263500px;}
.y1ce{bottom:515.263500px;}
.y121{bottom:515.430300px;}
.y7a{bottom:515.770350px;}
.y15a{bottom:515.772600px;}
.ycb{bottom:516.300450px;}
.y9c{bottom:518.571750px;}
.y18c{bottom:524.263500px;}
.y4f{bottom:525.370350px;}
.y1cd{bottom:530.263500px;}
.y120{bottom:531.678300px;}
.yca{bottom:532.548450px;}
.y79{bottom:533.770350px;}
.y159{bottom:533.772600px;}
.y9b{bottom:534.819750px;}
.y18b{bottom:539.263500px;}
.y4e{bottom:543.370350px;}
.y1cc{bottom:545.263500px;}
.y11f{bottom:547.926300px;}
.yc9{bottom:548.796450px;}
.y9a{bottom:551.067750px;}
.y78{bottom:551.770350px;}
.y158{bottom:551.772600px;}
.y18a{bottom:554.263500px;}
.y1cb{bottom:560.263500px;}
.y4d{bottom:561.370350px;}
.yc8{bottom:565.044450px;}
.y15{bottom:566.014200px;}
.y189{bottom:569.263500px;}
.y77{bottom:569.770350px;}
.y157{bottom:569.772600px;}
.y1ca{bottom:575.263500px;}
.y4c{bottom:579.370350px;}
.y11e{bottom:579.438300px;}
.y99{bottom:580.071750px;}
.yc7{bottom:581.292450px;}
.y188{bottom:584.263500px;}
.y76{bottom:587.770350px;}
.y156{bottom:587.772600px;}
.y1c9{bottom:590.263500px;}
.y14{bottom:593.359200px;}
.y4b{bottom:597.370350px;}
.yc6{bottom:597.540450px;}
.y187{bottom:599.263500px;}
.y1c8{bottom:605.263500px;}
.y75{bottom:605.770350px;}
.y155{bottom:605.772600px;}
.y97{bottom:609.075750px;}
.y13{bottom:611.359200px;}
.yc5{bottom:613.788450px;}
.y186{bottom:614.263500px;}
.y11d{bottom:614.335350px;}
.y4a{bottom:615.370350px;}
.y96{bottom:617.331750px;}
.y1c7{bottom:620.263500px;}
.y74{bottom:623.770350px;}
.y154{bottom:623.772600px;}
.y98{bottom:625.575750px;}
.y185{bottom:629.263500px;}
.y12{bottom:629.359200px;}
.yc4{bottom:630.036450px;}
.y49{bottom:633.370350px;}
.y11c{bottom:633.835350px;}
.y1c6{bottom:635.263500px;}
.y73{bottom:641.770350px;}
.y153{bottom:641.772600px;}
.y184{bottom:644.263500px;}
.yc3{bottom:646.284450px;}
.y11{bottom:647.359200px;}
.y1c5{bottom:650.263500px;}
.y48{bottom:651.370350px;}
.y95{bottom:654.591750px;}
.y183{bottom:659.263500px;}
.y72{bottom:659.770350px;}
.y152{bottom:659.772600px;}
.yc2{bottom:662.532450px;}
.y1c4{bottom:665.263500px;}
.y10{bottom:665.359200px;}
.y47{bottom:669.370350px;}
.y182{bottom:674.263500px;}
.y71{bottom:677.770350px;}
.y151{bottom:677.772600px;}
.yc1{bottom:678.780450px;}
.y1c3{bottom:680.263500px;}
.yf{bottom:683.359200px;}
.y94{bottom:686.980350px;}
.y181{bottom:689.263500px;}
.yc0{bottom:695.028450px;}
.y1c2{bottom:695.263500px;}
.y10d{bottom:695.635350px;}
.y70{bottom:695.770350px;}
.y150{bottom:695.772600px;}
.ye{bottom:701.359200px;}
.y46{bottom:704.211000px;}
.y180{bottom:704.263500px;}
.y1c1{bottom:710.263500px;}
.ybf{bottom:711.276450px;}
.y10c{bottom:713.635350px;}
.y6f{bottom:713.770350px;}
.y14f{bottom:713.772600px;}
.y17f{bottom:719.263500px;}
.yd{bottom:719.359200px;}
.y45{bottom:719.817000px;}
.y1c0{bottom:725.263500px;}
.ybe{bottom:727.524450px;}
.y10b{bottom:731.635350px;}
.y6e{bottom:731.770350px;}
.y14e{bottom:731.772600px;}
.y44{bottom:734.185350px;}
.y17e{bottom:734.263500px;}
.yc{bottom:737.359200px;}
.y1bf{bottom:740.263500px;}
.y17d{bottom:749.263500px;}
.y10a{bottom:749.635350px;}
.y6d{bottom:749.770350px;}
.y14d{bottom:749.772600px;}
.y43{bottom:749.785350px;}
.y1be{bottom:755.263500px;}
.ybd{bottom:756.528450px;}
.y17c{bottom:764.263500px;}
.y42{bottom:767.380350px;}
.y109{bottom:767.635350px;}
.y6c{bottom:767.770350px;}
.y14c{bottom:767.772600px;}
.y1bd{bottom:770.263500px;}
.y17b{bottom:779.263500px;}
.yb{bottom:782.517450px;}
.y1bc{bottom:785.263500px;}
.ybb{bottom:785.532450px;}
.y108{bottom:785.635350px;}
.y6b{bottom:785.770350px;}
.y14b{bottom:785.772600px;}
.yba{bottom:793.788450px;}
.y17a{bottom:794.263500px;}
.ya{bottom:794.968200px;}
.y1bb{bottom:800.263500px;}
.ybc{bottom:802.032450px;}
.y41{bottom:803.230350px;}
.y107{bottom:803.635350px;}
.y6a{bottom:803.770350px;}
.y14a{bottom:803.772600px;}
.y179{bottom:809.263500px;}
.y1ba{bottom:815.263500px;}
.y106{bottom:821.635350px;}
.y69{bottom:821.770350px;}
.y149{bottom:821.772600px;}
.y178{bottom:824.263500px;}
.y1b9{bottom:830.263500px;}
.yb9{bottom:831.048450px;}
.y9{bottom:832.108950px;}
.y177{bottom:839.263500px;}
.y68{bottom:839.770350px;}
.y148{bottom:839.772600px;}
.y8{bottom:840.183600px;}
.y1b8{bottom:845.263500px;}
.y176{bottom:854.263500px;}
.y105{bottom:857.230350px;}
.y40{bottom:857.770350px;}
.y147{bottom:857.772600px;}
.y7{bottom:859.108950px;}
.y1b7{bottom:860.263500px;}
.yb8{bottom:863.440350px;}
.y175{bottom:869.263500px;}
.y1b6{bottom:875.263500px;}
.y3f{bottom:875.770350px;}
.y146{bottom:875.772600px;}
.y174{bottom:884.263500px;}
.y6{bottom:887.830950px;}
.y1b5{bottom:890.263500px;}
.y3e{bottom:893.770350px;}
.y145{bottom:893.772600px;}
.y173{bottom:899.263500px;}
.y1b4{bottom:905.263500px;}
.y3d{bottom:911.770350px;}
.y144{bottom:911.772600px;}
.y172{bottom:914.263500px;}
.y1b3{bottom:920.263500px;}
.y171{bottom:929.263500px;}
.y3c{bottom:929.770350px;}
.y143{bottom:929.772600px;}
.y5{bottom:934.012050px;}
.y1b2{bottom:935.263500px;}
.y170{bottom:944.263500px;}
.y3b{bottom:947.770350px;}
.y142{bottom:947.772600px;}
.y1b1{bottom:950.263500px;}
.y16f{bottom:959.263500px;}
.y1b0{bottom:965.263500px;}
.y3a{bottom:965.770350px;}
.y141{bottom:965.772600px;}
.y4{bottom:970.472850px;}
.y16e{bottom:974.263500px;}
.y1af{bottom:980.263500px;}
.y39{bottom:983.770350px;}
.y140{bottom:983.772600px;}
.y16d{bottom:989.263500px;}
.y1ae{bottom:995.263500px;}
.y38{bottom:1001.770350px;}
.y13f{bottom:1001.772600px;}
.y16c{bottom:1004.263500px;}
.y3{bottom:1006.933650px;}
.y1ad{bottom:1010.263500px;}
.y37{bottom:1019.770350px;}
.y13e{bottom:1019.772600px;}
.y1ac{bottom:1025.263500px;}
.y13d{bottom:1037.367600px;}
.y36{bottom:1037.770350px;}
.y1ab{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y93{bottom:1132.418700px;}
.yec{bottom:1132.421700px;}
.y1aa{bottom:1132.423500px;}
.y11b{bottom:1132.430850px;}
.y104{bottom:1132.431000px;}
.yf6{bottom:1132.431150px;}
.yb7{bottom:1132.440750px;}
.y13c{bottom:1132.459050px;}
.ye6{bottom:1132.481550px;}
.y34{bottom:1136.092500px;}
.y33{bottom:1150.492500px;}
.h6{height:19.125417px;}
.h8{height:28.412109px;}
.h2{height:30.597656px;}
.he{height:32.783203px;}
.h7{height:32.805176px;}
.h14{height:33.328125px;}
.h12{height:33.351562px;}
.h10{height:34.945312px;}
.h15{height:34.968750px;}
.hf{height:34.992188px;}
.h11{height:37.520508px;}
.h16{height:41.660156px;}
.hd{height:41.689453px;}
.hb{height:43.681641px;}
.ha{height:43.710938px;}
.hc{height:43.718034px;}
.h9{height:43.740234px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h13{height:66.327563px;}
.h4{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;}
.x26{left:78.661200px;}
.x11{left:93.999150px;}
.xa{left:96.094500px;}
.x1{left:97.795200px;}
.x1f{left:99.920850px;}
.x4{left:106.299150px;}
.x13{left:110.551200px;}
.x2f{left:123.307050px;}
.x3{left:125.427900px;}
.x6{left:131.811000px;}
.xf{left:133.475400px;}
.xe{left:151.925400px;}
.x10{left:176.210400px;}
.x2b{left:198.875400px;}
.x12{left:201.297150px;}
.xd{left:211.100400px;}
.x5{left:212.876400px;}
.x22{left:312.121200px;}
.x21{left:336.961200px;}
.x1b{left:358.892850px;}
.x1a{left:383.732850px;}
.x28{left:406.445250px;}
.x2a{left:438.548100px;}
.xb{left:455.041500px;}
.x14{left:457.096200px;}
.x18{left:478.345350px;}
.x7{left:480.516000px;}
.x2d{left:482.610600px;}
.x15{left:491.116200px;}
.x30{left:503.875050px;}
.x27{left:509.705250px;}
.x19{left:512.365350px;}
.x8{left:514.536000px;}
.x29{left:544.796100px;}
.x9{left:549.771000px;}
.x2c{left:574.835400px;}
.x23{left:608.677200px;}
.x1c{left:642.692850px;}
.x17{left:663.492300px;}
.x2{left:693.365400px;}
.x25{left:706.633200px;}
.x2e{left:722.594850px;}
.x16{left:729.282150px;}
.x1e{left:732.140850px;}
.x24{left:735.133200px;}
.x31{left:744.764550px;}
.x20{left:750.549450px;}
.x1d{left:760.640850px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.440000pt;}
.v1{vertical-align:27.005867pt;}
.v3{vertical-align:29.312000pt;}
.ls3c{letter-spacing:-1.578667pt;}
.ls14{letter-spacing:-0.693333pt;}
.ls66{letter-spacing:-0.341333pt;}
.ls46{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.266667pt;}
.ls34{letter-spacing:-0.213333pt;}
.ls52{letter-spacing:-0.160000pt;}
.ls7b{letter-spacing:-0.128000pt;}
.ls32{letter-spacing:-0.106667pt;}
.ls33{letter-spacing:-0.053333pt;}
.ls67{letter-spacing:-0.042667pt;}
.ls13{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.003147pt;}
.ls6f{letter-spacing:0.042667pt;}
.ls2f{letter-spacing:0.053333pt;}
.lsa{letter-spacing:0.106667pt;}
.ls69{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.160000pt;}
.ls4a{letter-spacing:0.170667pt;}
.ls4{letter-spacing:0.213333pt;}
.ls45{letter-spacing:0.256000pt;}
.ls36{letter-spacing:0.266667pt;}
.ls30{letter-spacing:0.320000pt;}
.ls6b{letter-spacing:0.341333pt;}
.lse{letter-spacing:0.373333pt;}
.ls5d{letter-spacing:0.384000pt;}
.ls18{letter-spacing:0.426667pt;}
.ls5f{letter-spacing:0.469333pt;}
.ls9{letter-spacing:0.480000pt;}
.ls4b{letter-spacing:0.512000pt;}
.ls11{letter-spacing:0.533333pt;}
.ls57{letter-spacing:0.554667pt;}
.ls2e{letter-spacing:0.586667pt;}
.ls6d{letter-spacing:0.597333pt;}
.ls1{letter-spacing:0.640000pt;}
.ls5a{letter-spacing:0.682667pt;}
.ls6{letter-spacing:0.693333pt;}
.ls43{letter-spacing:0.725333pt;}
.ls28{letter-spacing:0.746667pt;}
.ls5b{letter-spacing:0.768000pt;}
.ls2b{letter-spacing:0.800000pt;}
.ls5e{letter-spacing:0.810667pt;}
.ls1a{letter-spacing:0.853333pt;}
.ls5c{letter-spacing:0.896000pt;}
.lsd{letter-spacing:0.906667pt;}
.ls76{letter-spacing:0.938667pt;}
.ls1b{letter-spacing:0.960000pt;}
.ls3{letter-spacing:1.013333pt;}
.ls75{letter-spacing:1.024000pt;}
.ls44{letter-spacing:1.066667pt;}
.ls6a{letter-spacing:1.109333pt;}
.ls5{letter-spacing:1.120000pt;}
.ls65{letter-spacing:1.152000pt;}
.ls1f{letter-spacing:1.173333pt;}
.ls2{letter-spacing:1.226667pt;}
.ls24{letter-spacing:1.280000pt;}
.ls8{letter-spacing:1.333333pt;}
.ls72{letter-spacing:1.365333pt;}
.ls1d{letter-spacing:1.386667pt;}
.ls6e{letter-spacing:1.408000pt;}
.ls20{letter-spacing:1.440000pt;}
.ls58{letter-spacing:1.450667pt;}
.ls12{letter-spacing:1.493333pt;}
.ls7a{letter-spacing:1.536000pt;}
.ls22{letter-spacing:1.546667pt;}
.ls6c{letter-spacing:1.578667pt;}
.ls27{letter-spacing:1.600000pt;}
.ls68{letter-spacing:1.621333pt;}
.ls21{letter-spacing:1.653333pt;}
.ls16{letter-spacing:1.706667pt;}
.ls78{letter-spacing:1.749333pt;}
.lsb{letter-spacing:1.760000pt;}
.ls61{letter-spacing:1.792000pt;}
.ls17{letter-spacing:1.813333pt;}
.ls74{letter-spacing:1.834667pt;}
.ls42{letter-spacing:1.866667pt;}
.ls19{letter-spacing:1.920000pt;}
.lsc{letter-spacing:1.973333pt;}
.ls73{letter-spacing:2.005333pt;}
.ls23{letter-spacing:2.026667pt;}
.ls39{letter-spacing:2.080000pt;}
.ls7c{letter-spacing:2.090667pt;}
.ls3e{letter-spacing:2.133333pt;}
.ls38{letter-spacing:2.186667pt;}
.ls59{letter-spacing:2.218667pt;}
.ls1e{letter-spacing:2.240000pt;}
.ls31{letter-spacing:2.293333pt;}
.ls70{letter-spacing:2.304000pt;}
.ls35{letter-spacing:2.346667pt;}
.ls2c{letter-spacing:2.400000pt;}
.ls26{letter-spacing:2.453333pt;}
.ls29{letter-spacing:2.506667pt;}
.ls79{letter-spacing:2.517333pt;}
.ls48{letter-spacing:2.560000pt;}
.ls77{letter-spacing:2.602667pt;}
.ls3f{letter-spacing:2.613333pt;}
.ls2a{letter-spacing:2.666667pt;}
.ls55{letter-spacing:2.720000pt;}
.ls64{letter-spacing:2.730667pt;}
.ls51{letter-spacing:2.773333pt;}
.ls71{letter-spacing:2.816000pt;}
.ls4d{letter-spacing:2.826667pt;}
.ls2d{letter-spacing:2.880000pt;}
.ls1c{letter-spacing:3.040000pt;}
.ls25{letter-spacing:3.093333pt;}
.ls63{letter-spacing:3.200000pt;}
.ls41{letter-spacing:3.253333pt;}
.ls40{letter-spacing:3.360000pt;}
.ls54{letter-spacing:3.466667pt;}
.ls3a{letter-spacing:3.626667pt;}
.ls49{letter-spacing:3.680000pt;}
.ls50{letter-spacing:3.733333pt;}
.ls62{letter-spacing:3.840000pt;}
.ls3d{letter-spacing:3.893333pt;}
.lsf{letter-spacing:3.946667pt;}
.ls4e{letter-spacing:4.266667pt;}
.ls7{letter-spacing:4.480000pt;}
.ls60{letter-spacing:4.522667pt;}
.ls37{letter-spacing:4.640000pt;}
.ls47{letter-spacing:4.693333pt;}
.ls53{letter-spacing:4.746667pt;}
.ls56{letter-spacing:6.773333pt;}
.ls3b{letter-spacing:320.170667pt;}
.ls4c{letter-spacing:345.941333pt;}
.ls4f{letter-spacing:976.938667pt;}
.ws0{word-spacing:-31.284267pt;}
.ws9c{word-spacing:-19.573333pt;}
.ws45{word-spacing:-16.960000pt;}
.ws24{word-spacing:-16.426667pt;}
.ws23{word-spacing:-15.573333pt;}
.ws7d{word-spacing:-15.520000pt;}
.ws43{word-spacing:-15.413333pt;}
.ws96{word-spacing:-15.360000pt;}
.ws4{word-spacing:-15.306667pt;}
.ws22{word-spacing:-15.253333pt;}
.wsbf{word-spacing:-14.933333pt;}
.ws20{word-spacing:-14.826667pt;}
.ws89{word-spacing:-14.293333pt;}
.ws88{word-spacing:-14.240000pt;}
.ws8a{word-spacing:-14.186667pt;}
.ws2{word-spacing:-14.026667pt;}
.ws73{word-spacing:-13.920000pt;}
.ws9d{word-spacing:-13.546667pt;}
.ws72{word-spacing:-13.493333pt;}
.ws87{word-spacing:-13.440000pt;}
.ws3{word-spacing:-13.333333pt;}
.ws95{word-spacing:-13.280000pt;}
.ws44{word-spacing:-13.226667pt;}
.wsa1{word-spacing:-12.885333pt;}
.wsbd{word-spacing:-12.672000pt;}
.wsbe{word-spacing:-12.373333pt;}
.ws21{word-spacing:-12.000000pt;}
.wsbc{word-spacing:-11.946667pt;}
.ws6{word-spacing:-11.861333pt;}
.wsa3{word-spacing:-11.733333pt;}
.wsa2{word-spacing:-11.562667pt;}
.ws9f{word-spacing:-11.520000pt;}
.wsa5{word-spacing:-11.434667pt;}
.ws5{word-spacing:-11.120000pt;}
.wsa0{word-spacing:-11.093333pt;}
.wsa4{word-spacing:-11.050667pt;}
.wsc0{word-spacing:-11.008000pt;}
.wsbb{word-spacing:-10.880000pt;}
.ws9e{word-spacing:-10.666667pt;}
.ws1{word-spacing:-9.076144pt;}
.wsa6{word-spacing:-4.746667pt;}
.ws79{word-spacing:-4.693333pt;}
.ws5d{word-spacing:-4.640000pt;}
.wsb5{word-spacing:-4.522667pt;}
.ws14{word-spacing:-4.480000pt;}
.ws93{word-spacing:-4.266667pt;}
.ws9{word-spacing:-4.163733pt;}
.ws1d{word-spacing:-3.946667pt;}
.ws64{word-spacing:-3.893333pt;}
.wsb7{word-spacing:-3.840000pt;}
.ws9a{word-spacing:-3.733333pt;}
.ws81{word-spacing:-3.680000pt;}
.ws60{word-spacing:-3.626667pt;}
.wsa7{word-spacing:-3.466667pt;}
.ws66{word-spacing:-3.360000pt;}
.ws67{word-spacing:-3.253333pt;}
.wsb8{word-spacing:-3.200000pt;}
.ws36{word-spacing:-3.093333pt;}
.ws2a{word-spacing:-3.040000pt;}
.ws3e{word-spacing:-2.880000pt;}
.ws90{word-spacing:-2.826667pt;}
.wsca{word-spacing:-2.816000pt;}
.ws9b{word-spacing:-2.773333pt;}
.wsb9{word-spacing:-2.730667pt;}
.ws3b{word-spacing:-2.666667pt;}
.ws6c{word-spacing:-2.613333pt;}
.wsd1{word-spacing:-2.602667pt;}
.ws8{word-spacing:-2.565333pt;}
.ws7a{word-spacing:-2.560000pt;}
.wsd3{word-spacing:-2.517333pt;}
.ws3a{word-spacing:-2.506667pt;}
.ws37{word-spacing:-2.453333pt;}
.ws3c{word-spacing:-2.400000pt;}
.wscf{word-spacing:-2.389333pt;}
.ws3f{word-spacing:-2.346667pt;}
.wsc9{word-spacing:-2.304000pt;}
.ws2c{word-spacing:-2.293333pt;}
.wsac{word-spacing:-2.218667pt;}
.ws5e{word-spacing:-2.186667pt;}
.ws65{word-spacing:-2.133333pt;}
.wsd0{word-spacing:-2.090667pt;}
.ws5f{word-spacing:-2.080000pt;}
.ws32{word-spacing:-2.026667pt;}
.wscc{word-spacing:-2.005333pt;}
.ws1b{word-spacing:-1.973333pt;}
.ws28{word-spacing:-1.920000pt;}
.ws68{word-spacing:-1.866667pt;}
.wscd{word-spacing:-1.834667pt;}
.ws26{word-spacing:-1.813333pt;}
.wsb6{word-spacing:-1.792000pt;}
.ws19{word-spacing:-1.760000pt;}
.wsd2{word-spacing:-1.749333pt;}
.ws25{word-spacing:-1.706667pt;}
.ws2f{word-spacing:-1.653333pt;}
.wsc1{word-spacing:-1.621333pt;}
.ws38{word-spacing:-1.600000pt;}
.ws30{word-spacing:-1.546667pt;}
.wsd5{word-spacing:-1.536000pt;}
.ws1a{word-spacing:-1.493333pt;}
.wsab{word-spacing:-1.450667pt;}
.ws2e{word-spacing:-1.440000pt;}
.wsc7{word-spacing:-1.408000pt;}
.ws2b{word-spacing:-1.386667pt;}
.wscb{word-spacing:-1.365333pt;}
.ws16{word-spacing:-1.333333pt;}
.ws33{word-spacing:-1.280000pt;}
.wse{word-spacing:-1.226667pt;}
.ws2d{word-spacing:-1.173333pt;}
.wsba{word-spacing:-1.152000pt;}
.ws12{word-spacing:-1.120000pt;}
.wsc3{word-spacing:-1.109333pt;}
.ws91{word-spacing:-1.066667pt;}
.wsce{word-spacing:-1.024000pt;}
.ws10{word-spacing:-1.013333pt;}
.wsc{word-spacing:-0.960000pt;}
.wsaf{word-spacing:-0.938667pt;}
.wsf{word-spacing:-0.906667pt;}
.ws29{word-spacing:-0.853333pt;}
.wsb3{word-spacing:-0.810667pt;}
.ws39{word-spacing:-0.800000pt;}
.wsad{word-spacing:-0.768000pt;}
.ws3d{word-spacing:-0.746667pt;}
.ws69{word-spacing:-0.725333pt;}
.wsd{word-spacing:-0.693333pt;}
.wsd4{word-spacing:-0.682667pt;}
.ws78{word-spacing:-0.640000pt;}
.wsc6{word-spacing:-0.597333pt;}
.ws40{word-spacing:-0.586667pt;}
.wsa9{word-spacing:-0.554667pt;}
.ws1f{word-spacing:-0.533333pt;}
.ws84{word-spacing:-0.512000pt;}
.ws17{word-spacing:-0.480000pt;}
.wsb4{word-spacing:-0.469333pt;}
.ws27{word-spacing:-0.426667pt;}
.wsb1{word-spacing:-0.384000pt;}
.ws1c{word-spacing:-0.373333pt;}
.wsc4{word-spacing:-0.341333pt;}
.ws42{word-spacing:-0.320000pt;}
.ws70{word-spacing:-0.298667pt;}
.ws5c{word-spacing:-0.266667pt;}
.wsc5{word-spacing:-0.256000pt;}
.ws11{word-spacing:-0.213333pt;}
.ws83{word-spacing:-0.170667pt;}
.ws1e{word-spacing:-0.160000pt;}
.wsc2{word-spacing:-0.128000pt;}
.ws18{word-spacing:-0.106667pt;}
.ws41{word-spacing:-0.053333pt;}
.wsc8{word-spacing:-0.042667pt;}
.ws7{word-spacing:0.000000pt;}
.wsb2{word-spacing:0.042667pt;}
.ws34{word-spacing:0.053333pt;}
.ws31{word-spacing:0.106667pt;}
.ws94{word-spacing:0.128000pt;}
.ws99{word-spacing:0.160000pt;}
.ws35{word-spacing:0.213333pt;}
.wsb{word-spacing:0.266667pt;}
.wsa{word-spacing:0.320000pt;}
.wsaa{word-spacing:0.341333pt;}
.ws76{word-spacing:0.693333pt;}
.ws71{word-spacing:0.725333pt;}
.ws6e{word-spacing:0.746667pt;}
.ws85{word-spacing:0.853333pt;}
.ws7b{word-spacing:0.981333pt;}
.ws6d{word-spacing:1.226667pt;}
.wsae{word-spacing:1.322667pt;}
.wsb0{word-spacing:1.834667pt;}
.ws6a{word-spacing:1.866667pt;}
.ws8f{word-spacing:2.080000pt;}
.ws86{word-spacing:2.090667pt;}
.ws8e{word-spacing:3.040000pt;}
.ws7c{word-spacing:3.466667pt;}
.ws6f{word-spacing:3.498667pt;}
.ws82{word-spacing:3.541333pt;}
.ws92{word-spacing:4.053333pt;}
.ws6b{word-spacing:4.106667pt;}
.ws77{word-spacing:4.160000pt;}
.ws15{word-spacing:4.373333pt;}
.ws13{word-spacing:4.426667pt;}
.wsa8{word-spacing:4.906667pt;}
.ws98{word-spacing:164.565333pt;}
.ws97{word-spacing:172.842667pt;}
.ws4a{word-spacing:175.232000pt;}
.ws55{word-spacing:177.066667pt;}
.ws54{word-spacing:179.200000pt;}
.ws5a{word-spacing:185.898667pt;}
.ws56{word-spacing:186.709333pt;}
.ws57{word-spacing:188.501333pt;}
.ws46{word-spacing:189.824000pt;}
.ws62{word-spacing:195.712000pt;}
.ws51{word-spacing:196.565333pt;}
.ws4b{word-spacing:198.400000pt;}
.ws4d{word-spacing:200.533333pt;}
.ws59{word-spacing:201.898667pt;}
.ws49{word-spacing:202.709333pt;}
.ws53{word-spacing:203.477333pt;}
.ws61{word-spacing:204.928000pt;}
.ws58{word-spacing:207.232000pt;}
.ws5b{word-spacing:209.066667pt;}
.ws4e{word-spacing:219.733333pt;}
.ws74{word-spacing:249.045333pt;}
.ws47{word-spacing:255.232000pt;}
.ws63{word-spacing:256.469333pt;}
.ws75{word-spacing:259.712000pt;}
.ws50{word-spacing:277.504000pt;}
.ws52{word-spacing:278.272000pt;}
.ws4c{word-spacing:281.429333pt;}
.ws48{word-spacing:282.240000pt;}
.ws4f{word-spacing:315.733333pt;}
.ws7f{word-spacing:324.608000pt;}
.ws7e{word-spacing:328.576000pt;}
.ws80{word-spacing:335.274667pt;}
.ws8b{word-spacing:498.048000pt;}
.ws8c{word-spacing:498.858667pt;}
.ws8d{word-spacing:508.714667pt;}
._f{margin-left:-2575.450667pt;}
._97{margin-left:-2555.392000pt;}
._41{margin-left:-2554.288000pt;}
._3{margin-left:-8.829867pt;}
._2{margin-left:-7.825067pt;}
._77{margin-left:-6.853333pt;}
._7{margin-left:-5.853333pt;}
._1{margin-left:-4.778667pt;}
._6{margin-left:-3.834667pt;}
._0{margin-left:-2.053333pt;}
._5{margin-left:-0.973333pt;}
._8{width:1.440000pt;}
._a{width:3.093333pt;}
._9{width:4.106667pt;}
._b{width:5.120000pt;}
._c{width:6.240000pt;}
._e{width:7.434667pt;}
._d{width:9.205333pt;}
._4{width:52.982768pt;}
._11{width:140.458667pt;}
._15{width:143.829333pt;}
._42{width:155.562667pt;}
._8a{width:157.482667pt;}
._46{width:160.170667pt;}
._85{width:164.565333pt;}
._84{width:168.149333pt;}
._8f{width:171.520000pt;}
._82{width:175.232000pt;}
._49{width:179.712000pt;}
._81{width:182.357333pt;}
._31{width:185.898667pt;}
._2f{width:187.733333pt;}
._5a{width:194.858667pt;}
._2c{width:196.565333pt;}
._3b{width:198.400000pt;}
._69{width:205.525333pt;}
._1d{width:207.232000pt;}
._25{width:209.066667pt;}
._1c{width:212.565333pt;}
._2e{width:213.850667pt;}
._57{width:216.192000pt;}
._34{width:217.898667pt;}
._37{width:219.733333pt;}
._29{width:223.232000pt;}
._4a{width:227.754667pt;}
._63{width:229.461333pt;}
._1e{width:230.400000pt;}
._36{width:233.898667pt;}
._4e{width:238.421333pt;}
._14{width:240.170667pt;}
._2b{width:244.565333pt;}
._50{width:249.088000pt;}
._60{width:250.794667pt;}
._40{width:251.946667pt;}
._45{width:255.274667pt;}
._58{width:260.608000pt;}
._23{width:266.581333pt;}
._76{width:270.378667pt;}
._92{width:277.717333pt;}
._74{width:281.045333pt;}
._56{width:287.274667pt;}
._1b{width:288.170667pt;}
._28{width:298.837333pt;}
._35{width:309.504000pt;}
._73{width:312.576000pt;}
._70{width:314.074667pt;}
._33{width:320.170667pt;}
._39{width:323.072000pt;}
._18{width:327.082667pt;}
._66{width:330.069333pt;}
._75{width:331.008000pt;}
._83{width:338.090667pt;}
._16{width:340.821333pt;}
._21{width:341.888000pt;}
._65{width:344.277333pt;}
._7a{width:345.941333pt;}
._78{width:350.378667pt;}
._87{width:352.298667pt;}
._86{width:359.381333pt;}
._6a{width:363.264000pt;}
._47{width:372.266667pt;}
._68{width:377.472000pt;}
._7b{width:381.312000pt;}
._4d{width:383.274667pt;}
._72{width:390.314667pt;}
._64{width:405.845333pt;}
._4f{width:416.426667pt;}
._26{width:459.306667pt;}
._96{width:466.133333pt;}
._2d{width:467.200000pt;}
._24{width:473.514667pt;}
._2a{width:477.098667pt;}
._32{width:479.445333pt;}
._27{width:480.597333pt;}
._30{width:487.722667pt;}
._38{width:490.069333pt;}
._12{width:495.488000pt;}
._51{width:497.024000pt;}
._3c{width:501.888000pt;}
._95{width:506.410667pt;}
._44{width:513.664000pt;}
._7c{width:519.381333pt;}
._43{width:525.738667pt;}
._7e{width:530.048000pt;}
._94{width:534.784000pt;}
._67{width:536.234667pt;}
._54{width:543.360000pt;}
._1f{width:548.224000pt;}
._55{width:565.888000pt;}
._6b{width:569.429333pt;}
._80{width:571.605333pt;}
._52{width:572.970667pt;}
._17{width:574.293333pt;}
._20{width:580.992000pt;}
._4c{width:601.386667pt;}
._53{width:605.829333pt;}
._19{width:607.061333pt;}
._10{width:622.720000pt;}
._22{width:624.042667pt;}
._61{width:633.386667pt;}
._1a{width:639.152000pt;}
._48{width:646.485333pt;}
._6f{width:647.552000pt;}
._6e{width:649.984000pt;}
._13{width:676.693333pt;}
._90{width:682.965333pt;}
._62{width:699.733333pt;}
._89{width:704.298667pt;}
._88{width:706.688000pt;}
._59{width:710.442667pt;}
._8e{width:719.053333pt;}
._6c{width:723.498667pt;}
._79{width:728.320000pt;}
._6d{width:732.885333pt;}
._5b{width:734.165333pt;}
._5c{width:743.552000pt;}
._8d{width:744.576000pt;}
._4b{width:751.872000pt;}
._3e{width:769.498667pt;}
._3d{width:782.805333pt;}
._93{width:784.896000pt;}
._3a{width:791.082667pt;}
._5f{width:838.357333pt;}
._5d{width:852.608000pt;}
._5e{width:866.858667pt;}
._91{width:879.616000pt;}
._8b{width:882.048000pt;}
._8c{width:898.602667pt;}
._71{width:917.290667pt;}
._7f{width:931.242667pt;}
._7d{width:976.938667pt;}
._3f{width:1225.010667pt;}
.fs5{font-size:23.320000pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y35{bottom:42.468667pt;}
.y92{bottom:74.462533pt;}
.ye5{bottom:74.671600pt;}
.ye9{bottom:75.852133pt;}
.yb6{bottom:77.142000pt;}
.y32{bottom:78.246000pt;}
.y1a9{bottom:79.345333pt;}
.y103{bottom:82.125333pt;}
.y13b{bottom:82.587600pt;}
.y67{bottom:82.995867pt;}
.yf5{bottom:83.448133pt;}
.y116{bottom:85.352000pt;}
.ye4{bottom:89.338267pt;}
.ye8{bottom:89.846800pt;}
.y91{bottom:90.462533pt;}
.y31{bottom:91.576000pt;}
.y1a8{bottom:92.678667pt;}
.y102{bottom:96.568000pt;}
.y13a{bottom:97.030267pt;}
.yf4{bottom:97.890800pt;}
.y66{bottom:98.995867pt;}
.y115{bottom:99.794667pt;}
.yb5{bottom:99.819333pt;}
.ye7{bottom:103.841467pt;}
.ye3{bottom:104.004933pt;}
.y1a7{bottom:106.012000pt;}
.y90{bottom:106.462533pt;}
.y16b{bottom:106.464533pt;}
.y101{bottom:111.010667pt;}
.y139{bottom:111.472933pt;}
.yf3{bottom:112.333467pt;}
.y114{bottom:114.237333pt;}
.yb4{bottom:114.262000pt;}
.y65{bottom:114.995867pt;}
.y1a6{bottom:119.345333pt;}
.y16a{bottom:122.104533pt;}
.y8f{bottom:122.462533pt;}
.y138{bottom:125.915600pt;}
.ye2{bottom:126.682267pt;}
.y113{bottom:128.680000pt;}
.yb3{bottom:128.704667pt;}
.y64{bottom:130.995867pt;}
.y1a5{bottom:132.678667pt;}
.y100{bottom:136.792000pt;}
.yf2{bottom:138.114800pt;}
.y8e{bottom:138.462533pt;}
.y137{bottom:140.358267pt;}
.ye1{bottom:141.124933pt;}
.y112{bottom:143.122667pt;}
.yb2{bottom:143.147333pt;}
.y1a4{bottom:146.012000pt;}
.y63{bottom:146.995867pt;}
.y30{bottom:147.539467pt;}
.y27{bottom:147.659467pt;}
.y8d{bottom:154.462533pt;}
.y169{bottom:154.464533pt;}
.y136{bottom:154.800933pt;}
.ye0{bottom:155.567600pt;}
.y111{bottom:157.565333pt;}
.yb1{bottom:157.590000pt;}
.y1a3{bottom:159.345333pt;}
.yff{bottom:162.573333pt;}
.y62{bottom:162.995867pt;}
.y2f{bottom:163.539467pt;}
.y26{bottom:163.659467pt;}
.yf1{bottom:163.896133pt;}
.y135{bottom:169.243600pt;}
.ydf{bottom:170.010267pt;}
.y168{bottom:170.104533pt;}
.y8c{bottom:170.462533pt;}
.yb0{bottom:172.032667pt;}
.y1a2{bottom:172.678667pt;}
.y61{bottom:178.995867pt;}
.y2e{bottom:179.539467pt;}
.y25{bottom:179.659467pt;}
.y134{bottom:183.686267pt;}
.yde{bottom:184.452933pt;}
.y110{bottom:185.576000pt;}
.y1a1{bottom:186.012000pt;}
.y8b{bottom:186.462533pt;}
.yaf{bottom:186.475333pt;}
.yfe{bottom:191.365467pt;}
.yf0{bottom:192.688267pt;}
.y60{bottom:194.995867pt;}
.y2d{bottom:195.539467pt;}
.y24{bottom:195.659467pt;}
.y133{bottom:198.128933pt;}
.ydd{bottom:198.895600pt;}
.y1a0{bottom:199.345333pt;}
.yae{bottom:200.918000pt;}
.y8a{bottom:202.462533pt;}
.y167{bottom:202.464533pt;}
.yfd{bottom:208.698800pt;}
.yef{bottom:210.021600pt;}
.y5f{bottom:210.995867pt;}
.y2c{bottom:211.539467pt;}
.y23{bottom:211.659467pt;}
.y132{bottom:212.571600pt;}
.y19f{bottom:212.678667pt;}
.ydc{bottom:213.338267pt;}
.yad{bottom:215.427333pt;}
.y10f{bottom:216.595867pt;}
.y89{bottom:218.462533pt;}
.y166{bottom:218.464533pt;}
.y19e{bottom:226.012000pt;}
.y5e{bottom:226.995867pt;}
.y131{bottom:227.077600pt;}
.y2b{bottom:227.539467pt;}
.y22{bottom:227.659467pt;}
.ydb{bottom:227.780933pt;}
.yac{bottom:229.870000pt;}
.y10e{bottom:233.929200pt;}
.y88{bottom:234.462533pt;}
.y165{bottom:234.464533pt;}
.y19d{bottom:239.345333pt;}
.y130{bottom:241.520267pt;}
.yda{bottom:242.223600pt;}
.y5d{bottom:242.995867pt;}
.y21{bottom:243.659467pt;}
.yab{bottom:244.312667pt;}
.y87{bottom:250.462533pt;}
.y164{bottom:250.464533pt;}
.yfa{bottom:251.520533pt;}
.y19c{bottom:252.678667pt;}
.yee{bottom:253.242133pt;}
.y12f{bottom:255.962933pt;}
.yd9{bottom:256.666267pt;}
.yaa{bottom:258.755333pt;}
.y5c{bottom:258.995867pt;}
.y2a{bottom:259.179467pt;}
.y20{bottom:259.659467pt;}
.yf9{bottom:265.515200pt;}
.y19b{bottom:266.012000pt;}
.y86{bottom:266.462533pt;}
.y163{bottom:266.464533pt;}
.yed{bottom:267.236800pt;}
.y12e{bottom:270.405600pt;}
.yd8{bottom:271.108933pt;}
.ya9{bottom:273.198000pt;}
.y5b{bottom:274.995867pt;}
.y1f{bottom:275.659467pt;}
.y19a{bottom:279.345333pt;}
.yf8{bottom:279.509867pt;}
.yfc{bottom:279.698800pt;}
.y11a{bottom:280.055867pt;}
.y85{bottom:282.462533pt;}
.y162{bottom:282.464533pt;}
.y12d{bottom:284.848267pt;}
.yd7{bottom:285.551600pt;}
.ya8{bottom:287.640667pt;}
.y5a{bottom:290.995867pt;}
.y1e{bottom:291.659467pt;}
.y199{bottom:292.678667pt;}
.yf7{bottom:293.504533pt;}
.yfb{bottom:293.693467pt;}
.y119{bottom:294.050533pt;}
.y161{bottom:298.104533pt;}
.y84{bottom:298.462533pt;}
.y12c{bottom:299.290933pt;}
.yd6{bottom:299.994267pt;}
.ya7{bottom:302.083333pt;}
.y198{bottom:306.012000pt;}
.y59{bottom:306.995867pt;}
.y1d{bottom:307.659467pt;}
.y118{bottom:308.045200pt;}
.y12b{bottom:313.733600pt;}
.yd5{bottom:314.436933pt;}
.y83{bottom:314.462533pt;}
.ya6{bottom:316.526000pt;}
.y197{bottom:319.345333pt;}
.y117{bottom:322.039867pt;}
.y58{bottom:322.995867pt;}
.y1c{bottom:323.659467pt;}
.y12a{bottom:328.176267pt;}
.yd4{bottom:328.879600pt;}
.y82{bottom:330.462533pt;}
.y160{bottom:330.464533pt;}
.ya5{bottom:330.968667pt;}
.y196{bottom:332.678667pt;}
.y57{bottom:338.995867pt;}
.y1b{bottom:339.659467pt;}
.y129{bottom:342.618933pt;}
.yd3{bottom:343.322267pt;}
.ya4{bottom:345.411333pt;}
.y195{bottom:346.012000pt;}
.y15f{bottom:346.104533pt;}
.y81{bottom:346.462533pt;}
.y56{bottom:354.995867pt;}
.y1a{bottom:355.659467pt;}
.y128{bottom:357.061600pt;}
.yd2{bottom:357.835067pt;}
.y194{bottom:359.345333pt;}
.ya3{bottom:359.854000pt;}
.y80{bottom:362.462533pt;}
.y1d5{bottom:364.678667pt;}
.y55{bottom:370.995867pt;}
.y127{bottom:371.504267pt;}
.y19{bottom:371.659467pt;}
.yd1{bottom:372.277733pt;}
.y193{bottom:372.678667pt;}
.ya2{bottom:374.296667pt;}
.y1d4{bottom:378.012000pt;}
.y7f{bottom:378.462533pt;}
.y15e{bottom:378.464533pt;}
.y126{bottom:385.946933pt;}
.y192{bottom:386.012000pt;}
.yd0{bottom:386.720400pt;}
.y54{bottom:386.995867pt;}
.y18{bottom:387.659467pt;}
.ya1{bottom:388.739333pt;}
.y1d3{bottom:391.345333pt;}
.y7e{bottom:394.462533pt;}
.y15d{bottom:394.464533pt;}
.y191{bottom:399.345333pt;}
.y125{bottom:400.389600pt;}
.ycf{bottom:401.163067pt;}
.y53{bottom:402.995867pt;}
.ya0{bottom:403.182000pt;}
.y17{bottom:403.659467pt;}
.y1d2{bottom:404.678667pt;}
.yeb{bottom:408.780133pt;}
.y15c{bottom:410.104533pt;}
.y7d{bottom:410.462533pt;}
.y190{bottom:412.678667pt;}
.y124{bottom:414.832267pt;}
.yce{bottom:415.605733pt;}
.y9f{bottom:417.624667pt;}
.y1d1{bottom:418.012000pt;}
.y52{bottom:418.995867pt;}
.y29{bottom:419.659467pt;}
.yea{bottom:422.774800pt;}
.y18f{bottom:426.012000pt;}
.y7c{bottom:426.462533pt;}
.y123{bottom:429.274933pt;}
.ycd{bottom:430.048400pt;}
.y1d0{bottom:431.345333pt;}
.y9e{bottom:432.067333pt;}
.y51{bottom:434.995867pt;}
.y16{bottom:435.301333pt;}
.y28{bottom:435.659467pt;}
.y18e{bottom:439.345333pt;}
.y7b{bottom:442.462533pt;}
.y15b{bottom:442.464533pt;}
.y122{bottom:443.717600pt;}
.ycc{bottom:444.491067pt;}
.y1cf{bottom:444.678667pt;}
.y9d{bottom:446.510000pt;}
.y50{bottom:450.995867pt;}
.y18d{bottom:452.678667pt;}
.y1ce{bottom:458.012000pt;}
.y121{bottom:458.160267pt;}
.y7a{bottom:458.462533pt;}
.y15a{bottom:458.464533pt;}
.ycb{bottom:458.933733pt;}
.y9c{bottom:460.952667pt;}
.y18c{bottom:466.012000pt;}
.y4f{bottom:466.995867pt;}
.y1cd{bottom:471.345333pt;}
.y120{bottom:472.602933pt;}
.yca{bottom:473.376400pt;}
.y79{bottom:474.462533pt;}
.y159{bottom:474.464533pt;}
.y9b{bottom:475.395333pt;}
.y18b{bottom:479.345333pt;}
.y4e{bottom:482.995867pt;}
.y1cc{bottom:484.678667pt;}
.y11f{bottom:487.045600pt;}
.yc9{bottom:487.819067pt;}
.y9a{bottom:489.838000pt;}
.y78{bottom:490.462533pt;}
.y158{bottom:490.464533pt;}
.y18a{bottom:492.678667pt;}
.y1cb{bottom:498.012000pt;}
.y4d{bottom:498.995867pt;}
.yc8{bottom:502.261733pt;}
.y15{bottom:503.123733pt;}
.y189{bottom:506.012000pt;}
.y77{bottom:506.462533pt;}
.y157{bottom:506.464533pt;}
.y1ca{bottom:511.345333pt;}
.y4c{bottom:514.995867pt;}
.y11e{bottom:515.056267pt;}
.y99{bottom:515.619333pt;}
.yc7{bottom:516.704400pt;}
.y188{bottom:519.345333pt;}
.y76{bottom:522.462533pt;}
.y156{bottom:522.464533pt;}
.y1c9{bottom:524.678667pt;}
.y14{bottom:527.430400pt;}
.y4b{bottom:530.995867pt;}
.yc6{bottom:531.147067pt;}
.y187{bottom:532.678667pt;}
.y1c8{bottom:538.012000pt;}
.y75{bottom:538.462533pt;}
.y155{bottom:538.464533pt;}
.y97{bottom:541.400667pt;}
.y13{bottom:543.430400pt;}
.yc5{bottom:545.589733pt;}
.y186{bottom:546.012000pt;}
.y11d{bottom:546.075867pt;}
.y4a{bottom:546.995867pt;}
.y96{bottom:548.739333pt;}
.y1c7{bottom:551.345333pt;}
.y74{bottom:554.462533pt;}
.y154{bottom:554.464533pt;}
.y98{bottom:556.067333pt;}
.y185{bottom:559.345333pt;}
.y12{bottom:559.430400pt;}
.yc4{bottom:560.032400pt;}
.y49{bottom:562.995867pt;}
.y11c{bottom:563.409200pt;}
.y1c6{bottom:564.678667pt;}
.y73{bottom:570.462533pt;}
.y153{bottom:570.464533pt;}
.y184{bottom:572.678667pt;}
.yc3{bottom:574.475067pt;}
.y11{bottom:575.430400pt;}
.y1c5{bottom:578.012000pt;}
.y48{bottom:578.995867pt;}
.y95{bottom:581.859333pt;}
.y183{bottom:586.012000pt;}
.y72{bottom:586.462533pt;}
.y152{bottom:586.464533pt;}
.yc2{bottom:588.917733pt;}
.y1c4{bottom:591.345333pt;}
.y10{bottom:591.430400pt;}
.y47{bottom:594.995867pt;}
.y182{bottom:599.345333pt;}
.y71{bottom:602.462533pt;}
.y151{bottom:602.464533pt;}
.yc1{bottom:603.360400pt;}
.y1c3{bottom:604.678667pt;}
.yf{bottom:607.430400pt;}
.y94{bottom:610.649200pt;}
.y181{bottom:612.678667pt;}
.yc0{bottom:617.803067pt;}
.y1c2{bottom:618.012000pt;}
.y10d{bottom:618.342533pt;}
.y70{bottom:618.462533pt;}
.y150{bottom:618.464533pt;}
.ye{bottom:623.430400pt;}
.y46{bottom:625.965333pt;}
.y180{bottom:626.012000pt;}
.y1c1{bottom:631.345333pt;}
.ybf{bottom:632.245733pt;}
.y10c{bottom:634.342533pt;}
.y6f{bottom:634.462533pt;}
.y14f{bottom:634.464533pt;}
.y17f{bottom:639.345333pt;}
.yd{bottom:639.430400pt;}
.y45{bottom:639.837333pt;}
.y1c0{bottom:644.678667pt;}
.ybe{bottom:646.688400pt;}
.y10b{bottom:650.342533pt;}
.y6e{bottom:650.462533pt;}
.y14e{bottom:650.464533pt;}
.y44{bottom:652.609200pt;}
.y17e{bottom:652.678667pt;}
.yc{bottom:655.430400pt;}
.y1bf{bottom:658.012000pt;}
.y17d{bottom:666.012000pt;}
.y10a{bottom:666.342533pt;}
.y6d{bottom:666.462533pt;}
.y14d{bottom:666.464533pt;}
.y43{bottom:666.475867pt;}
.y1be{bottom:671.345333pt;}
.ybd{bottom:672.469733pt;}
.y17c{bottom:679.345333pt;}
.y42{bottom:682.115867pt;}
.y109{bottom:682.342533pt;}
.y6c{bottom:682.462533pt;}
.y14c{bottom:682.464533pt;}
.y1bd{bottom:684.678667pt;}
.y17b{bottom:692.678667pt;}
.yb{bottom:695.571067pt;}
.y1bc{bottom:698.012000pt;}
.ybb{bottom:698.251067pt;}
.y108{bottom:698.342533pt;}
.y6b{bottom:698.462533pt;}
.y14b{bottom:698.464533pt;}
.yba{bottom:705.589733pt;}
.y17a{bottom:706.012000pt;}
.ya{bottom:706.638400pt;}
.y1bb{bottom:711.345333pt;}
.ybc{bottom:712.917733pt;}
.y41{bottom:713.982533pt;}
.y107{bottom:714.342533pt;}
.y6a{bottom:714.462533pt;}
.y14a{bottom:714.464533pt;}
.y179{bottom:719.345333pt;}
.y1ba{bottom:724.678667pt;}
.y106{bottom:730.342533pt;}
.y69{bottom:730.462533pt;}
.y149{bottom:730.464533pt;}
.y178{bottom:732.678667pt;}
.y1b9{bottom:738.012000pt;}
.yb9{bottom:738.709733pt;}
.y9{bottom:739.652400pt;}
.y177{bottom:746.012000pt;}
.y68{bottom:746.462533pt;}
.y148{bottom:746.464533pt;}
.y8{bottom:746.829867pt;}
.y1b8{bottom:751.345333pt;}
.y176{bottom:759.345333pt;}
.y105{bottom:761.982533pt;}
.y40{bottom:762.462533pt;}
.y147{bottom:762.464533pt;}
.y7{bottom:763.652400pt;}
.y1b7{bottom:764.678667pt;}
.yb8{bottom:767.502533pt;}
.y175{bottom:772.678667pt;}
.y1b6{bottom:778.012000pt;}
.y3f{bottom:778.462533pt;}
.y146{bottom:778.464533pt;}
.y174{bottom:786.012000pt;}
.y6{bottom:789.183067pt;}
.y1b5{bottom:791.345333pt;}
.y3e{bottom:794.462533pt;}
.y145{bottom:794.464533pt;}
.y173{bottom:799.345333pt;}
.y1b4{bottom:804.678667pt;}
.y3d{bottom:810.462533pt;}
.y144{bottom:810.464533pt;}
.y172{bottom:812.678667pt;}
.y1b3{bottom:818.012000pt;}
.y171{bottom:826.012000pt;}
.y3c{bottom:826.462533pt;}
.y143{bottom:826.464533pt;}
.y5{bottom:830.232933pt;}
.y1b2{bottom:831.345333pt;}
.y170{bottom:839.345333pt;}
.y3b{bottom:842.462533pt;}
.y142{bottom:842.464533pt;}
.y1b1{bottom:844.678667pt;}
.y16f{bottom:852.678667pt;}
.y1b0{bottom:858.012000pt;}
.y3a{bottom:858.462533pt;}
.y141{bottom:858.464533pt;}
.y4{bottom:862.642533pt;}
.y16e{bottom:866.012000pt;}
.y1af{bottom:871.345333pt;}
.y39{bottom:874.462533pt;}
.y140{bottom:874.464533pt;}
.y16d{bottom:879.345333pt;}
.y1ae{bottom:884.678667pt;}
.y38{bottom:890.462533pt;}
.y13f{bottom:890.464533pt;}
.y16c{bottom:892.678667pt;}
.y3{bottom:895.052133pt;}
.y1ad{bottom:898.012000pt;}
.y37{bottom:906.462533pt;}
.y13e{bottom:906.464533pt;}
.y1ac{bottom:911.345333pt;}
.y13d{bottom:922.104533pt;}
.y36{bottom:922.462533pt;}
.y1ab{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y93{bottom:1006.594400pt;}
.yec{bottom:1006.597067pt;}
.y1aa{bottom:1006.598667pt;}
.y11b{bottom:1006.605200pt;}
.y104{bottom:1006.605333pt;}
.yf6{bottom:1006.605467pt;}
.yb7{bottom:1006.614000pt;}
.y13c{bottom:1006.630267pt;}
.ye6{bottom:1006.650267pt;}
.y34{bottom:1009.860000pt;}
.y33{bottom:1022.660000pt;}
.h6{height:17.000371pt;}
.h8{height:25.255208pt;}
.h2{height:27.197917pt;}
.he{height:29.140625pt;}
.h7{height:29.160156pt;}
.h14{height:29.625000pt;}
.h12{height:29.645833pt;}
.h10{height:31.062500pt;}
.h15{height:31.083333pt;}
.hf{height:31.104167pt;}
.h11{height:33.351562pt;}
.h16{height:37.031250pt;}
.hd{height:37.057292pt;}
.hb{height:38.828125pt;}
.ha{height:38.854167pt;}
.hc{height:38.860475pt;}
.h9{height:38.880208pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h13{height:58.957833pt;}
.h4{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;}
.x26{left:69.921067pt;}
.x11{left:83.554800pt;}
.xa{left:85.417333pt;}
.x1{left:86.929067pt;}
.x1f{left:88.818533pt;}
.x4{left:94.488133pt;}
.x13{left:98.267733pt;}
.x2f{left:109.606267pt;}
.x3{left:111.491467pt;}
.x6{left:117.165333pt;}
.xf{left:118.644800pt;}
.xe{left:135.044800pt;}
.x10{left:156.631467pt;}
.x2b{left:176.778133pt;}
.x12{left:178.930800pt;}
.xd{left:187.644800pt;}
.x5{left:189.223467pt;}
.x22{left:277.441067pt;}
.x21{left:299.521067pt;}
.x1b{left:319.015867pt;}
.x1a{left:341.095867pt;}
.x28{left:361.284667pt;}
.x2a{left:389.820533pt;}
.xb{left:404.481333pt;}
.x14{left:406.307733pt;}
.x18{left:425.195867pt;}
.x7{left:427.125333pt;}
.x2d{left:428.987200pt;}
.x15{left:436.547733pt;}
.x30{left:447.888933pt;}
.x27{left:453.071333pt;}
.x19{left:455.435867pt;}
.x8{left:457.365333pt;}
.x29{left:484.263200pt;}
.x9{left:488.685333pt;}
.x2c{left:510.964800pt;}
.x23{left:541.046400pt;}
.x1c{left:571.282533pt;}
.x17{left:589.770933pt;}
.x2{left:616.324800pt;}
.x25{left:628.118400pt;}
.x2e{left:642.306533pt;}
.x16{left:648.250800pt;}
.x1e{left:650.791867pt;}
.x24{left:653.451733pt;}
.x31{left:662.012933pt;}
.x20{left:667.155067pt;}
.x1d{left:676.125200pt;}
}




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