
    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_e80381886389ec8dc792c5c1.woff')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_ebe6f22c6a994cd1d60d0ef2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.022461;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_71598e425f25412e0471164b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.976603;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_0217abb40eb9cf9627c308a0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.041992;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_8725cfa6d1fe7c3a1db07914.woff')format("woff");}.ff5{font-family:ff5;line-height:1.032715;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_7da5f4506a37f4fdab12cbc7.woff')format("woff");}.ff6{font-family:ff6;line-height:1.026855;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_bb3c6c1d592b0af6184cfcbc.woff')format("woff");}.ff7{font-family:ff7;line-height:0.973633;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_1ab26aa08b429f7e4c9ba94a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.976118;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_bf8b4fed7109177d229a2e03.woff')format("woff");}.ff9{font-family:ff9;line-height:1.041992;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_be40b547901d42180057b7ef.woff')format("woff");}.ffa{font-family:ffa;line-height:0.710938;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_ddb91eef8531c980e86da0ad.woff')format("woff");}.ffb{font-family:ffb;line-height:0.731522;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_208a5f25fddeedfd876c3bc7.woff')format("woff");}.ffc{font-family:ffc;line-height:0.772059;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_37db5780b0ecff63d366b2f6.woff')format("woff");}.ffd{font-family:ffd;line-height:0.973633;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_038aad8947b6b1b48623a9e9.woff')format("woff");}.ffe{font-family:ffe;line-height:0.958556;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.056000px;}
.v3{vertical-align:19.038000px;}
.v1{vertical-align:21.978000px;}
.ls9{letter-spacing:-3.300000px;}
.ls7{letter-spacing:-2.520000px;}
.lsa{letter-spacing:-1.200000px;}
.ls1b{letter-spacing:-1.080000px;}
.ls10{letter-spacing:-0.960000px;}
.ls4{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.691200px;}
.ls5{letter-spacing:-0.600000px;}
.ls6{letter-spacing:-0.588000px;}
.ls1c{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.480000px;}
.ls20{letter-spacing:-0.432000px;}
.ls17{letter-spacing:-0.360000px;}
.ls1f{letter-spacing:-0.324000px;}
.ls1d{letter-spacing:-0.283338px;}
.ls2{letter-spacing:-0.204000px;}
.ls1{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.024000px;}
.ls14{letter-spacing:0.078000px;}
.ls15{letter-spacing:0.168000px;}
.lsf{letter-spacing:0.192000px;}
.ls13{letter-spacing:0.204000px;}
.ls12{letter-spacing:0.240000px;}
.lsd{letter-spacing:0.300000px;}
.ls21{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.972000px;}
.ls16{letter-spacing:3.240000px;}
.ls19{letter-spacing:4.440000px;}
.lse{letter-spacing:4.920000px;}
.lsb{letter-spacing:5.640000px;}
.lsc{letter-spacing:7.746000px;}
.ls1a{letter-spacing:10.600200px;}
.ls18{letter-spacing:12.420000px;}
.ls0{letter-spacing:43.181364px;}
.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:-24.990000px;}
.ws5{word-spacing:-17.928000px;}
.wse2{word-spacing:-16.434000px;}
.wse3{word-spacing:-15.240000px;}
.wse4{word-spacing:-15.000000px;}
.ws3{word-spacing:-14.940000px;}
.wsc0{word-spacing:-14.880000px;}
.ws6{word-spacing:-14.700000px;}
.ws102{word-spacing:-14.580000px;}
.ws182{word-spacing:-14.364000px;}
.ws2c{word-spacing:-14.100000px;}
.ws7{word-spacing:-13.980000px;}
.wsc1{word-spacing:-13.680000px;}
.ws125{word-spacing:-13.620000px;}
.wsc2{word-spacing:-13.500000px;}
.wsf9{word-spacing:-13.446000px;}
.ws100{word-spacing:-13.392000px;}
.ws4{word-spacing:-13.230000px;}
.ws169{word-spacing:-13.068000px;}
.ws183{word-spacing:-12.960000px;}
.ws8{word-spacing:-12.366000px;}
.wsa{word-spacing:-12.150000px;}
.wsa4{word-spacing:-11.400000px;}
.wsb{word-spacing:-10.992000px;}
.ws2a{word-spacing:-10.800000px;}
.ws4b{word-spacing:-10.458000px;}
.ws9e{word-spacing:-10.416000px;}
.ws4c{word-spacing:-10.290000px;}
.ws2{word-spacing:-9.892800px;}
.ws1{word-spacing:-9.618000px;}
.wsa3{word-spacing:-8.675040px;}
.ws77{word-spacing:-7.896000px;}
.ws14e{word-spacing:-7.524198px;}
.ws16b{word-spacing:-5.940000px;}
.ws28{word-spacing:-4.860000px;}
.ws27{word-spacing:-4.800000px;}
.ws129{word-spacing:-4.140000px;}
.ws12a{word-spacing:-4.080000px;}
.wsfb{word-spacing:-3.480000px;}
.ws30{word-spacing:-3.420000px;}
.ws192{word-spacing:-3.348000px;}
.ws10f{word-spacing:-3.240000px;}
.wsc7{word-spacing:-3.120000px;}
.wse9{word-spacing:-3.060000px;}
.wsb1{word-spacing:-3.000000px;}
.ws143{word-spacing:-2.820000px;}
.ws144{word-spacing:-2.760000px;}
.wsa5{word-spacing:-2.700000px;}
.ws18a{word-spacing:-2.646000px;}
.wscd{word-spacing:-2.640000px;}
.ws23{word-spacing:-2.580000px;}
.ws187{word-spacing:-2.538000px;}
.wsa6{word-spacing:-2.520000px;}
.ws13a{word-spacing:-2.460000px;}
.ws17e{word-spacing:-2.430000px;}
.ws138{word-spacing:-2.400000px;}
.ws157{word-spacing:-2.376000px;}
.ws139{word-spacing:-2.340000px;}
.wsd3{word-spacing:-2.280000px;}
.ws18c{word-spacing:-2.214000px;}
.wse8{word-spacing:-2.160000px;}
.wsd0{word-spacing:-2.040000px;}
.ws14b{word-spacing:-1.998000px;}
.ws101{word-spacing:-1.944000px;}
.wsc4{word-spacing:-1.920000px;}
.ws34{word-spacing:-1.860000px;}
.ws11{word-spacing:-1.836000px;}
.ws3a{word-spacing:-1.740000px;}
.ws1d{word-spacing:-1.680000px;}
.ws10{word-spacing:-1.674000px;}
.ws12e{word-spacing:-1.620000px;}
.ws17f{word-spacing:-1.566000px;}
.wsd1{word-spacing:-1.560000px;}
.wsea{word-spacing:-1.500000px;}
.wsb6{word-spacing:-1.440000px;}
.ws16f{word-spacing:-1.350000px;}
.wsb7{word-spacing:-1.320000px;}
.ws10e{word-spacing:-1.260000px;}
.wsfa{word-spacing:-1.200000px;}
.ws12{word-spacing:-1.134000px;}
.ws12c{word-spacing:-1.080000px;}
.ws29{word-spacing:-1.026000px;}
.ws15b{word-spacing:-0.972000px;}
.wsd4{word-spacing:-0.960000px;}
.ws17{word-spacing:-0.900000px;}
.ws18e{word-spacing:-0.864000px;}
.ws103{word-spacing:-0.840000px;}
.ws196{word-spacing:-0.810000px;}
.ws90{word-spacing:-0.798000px;}
.wsf6{word-spacing:-0.780000px;}
.ws16e{word-spacing:-0.756000px;}
.ws3d{word-spacing:-0.720000px;}
.ws18f{word-spacing:-0.702000px;}
.ws137{word-spacing:-0.660000px;}
.wsb5{word-spacing:-0.600000px;}
.ws16a{word-spacing:-0.594000px;}
.ws104{word-spacing:-0.540000px;}
.ws195{word-spacing:-0.486000px;}
.wsc9{word-spacing:-0.420000px;}
.wsbe{word-spacing:-0.360000px;}
.ws193{word-spacing:-0.324000px;}
.wsd9{word-spacing:-0.300000px;}
.ws167{word-spacing:-0.270000px;}
.wsa1{word-spacing:-0.240000px;}
.wsd{word-spacing:-0.216000px;}
.ws141{word-spacing:-0.180000px;}
.ws163{word-spacing:-0.162000px;}
.wsd5{word-spacing:-0.120000px;}
.ws15{word-spacing:-0.108000px;}
.ws121{word-spacing:-0.060000px;}
.ws9{word-spacing:-0.054000px;}
.ws2b{word-spacing:-0.048000px;}
.wsc{word-spacing:0.000000px;}
.ws159{word-spacing:0.108000px;}
.ws20{word-spacing:0.120000px;}
.ws24{word-spacing:0.180000px;}
.ws134{word-spacing:0.240000px;}
.ws179{word-spacing:0.270000px;}
.ws16c{word-spacing:0.324000px;}
.ws35{word-spacing:0.360000px;}
.ws16d{word-spacing:0.378000px;}
.wsdf{word-spacing:0.420000px;}
.ws191{word-spacing:0.432000px;}
.wsb0{word-spacing:0.480000px;}
.ws15d{word-spacing:0.486000px;}
.ws46{word-spacing:0.540000px;}
.ws194{word-spacing:0.594000px;}
.ws2f{word-spacing:0.600000px;}
.wsfc{word-spacing:0.648000px;}
.wsb8{word-spacing:0.660000px;}
.wse{word-spacing:0.691200px;}
.ws18{word-spacing:0.720000px;}
.ws33{word-spacing:0.780000px;}
.ws15c{word-spacing:0.810000px;}
.ws39{word-spacing:0.840000px;}
.wsc8{word-spacing:0.900000px;}
.wse7{word-spacing:0.960000px;}
.wsb4{word-spacing:1.020000px;}
.wsf{word-spacing:1.026000px;}
.ws26{word-spacing:1.080000px;}
.ws18b{word-spacing:1.188000px;}
.ws3c{word-spacing:1.200000px;}
.ws140{word-spacing:1.260000px;}
.ws189{word-spacing:1.296000px;}
.ws41{word-spacing:1.320000px;}
.ws17a{word-spacing:1.404000px;}
.ws17d{word-spacing:1.458000px;}
.wsef{word-spacing:1.500000px;}
.wsaa{word-spacing:1.560000px;}
.ws158{word-spacing:1.566000px;}
.ws152{word-spacing:1.620000px;}
.wsd7{word-spacing:1.680000px;}
.ws165{word-spacing:1.728000px;}
.wsd8{word-spacing:1.740000px;}
.ws1f{word-spacing:1.800000px;}
.ws150{word-spacing:1.836000px;}
.ws40{word-spacing:1.860000px;}
.ws151{word-spacing:1.890000px;}
.ws22{word-spacing:1.920000px;}
.ws11c{word-spacing:1.944000px;}
.ws142{word-spacing:1.980000px;}
.ws19{word-spacing:2.100000px;}
.ws16{word-spacing:2.106000px;}
.ws128{word-spacing:2.160000px;}
.ws14d{word-spacing:2.214000px;}
.ws43{word-spacing:2.220000px;}
.wsd6{word-spacing:2.340000px;}
.ws18d{word-spacing:2.430000px;}
.ws105{word-spacing:2.460000px;}
.ws133{word-spacing:2.520000px;}
.wsb9{word-spacing:2.580000px;}
.ws17b{word-spacing:2.592000px;}
.ws168{word-spacing:2.646000px;}
.ws130{word-spacing:2.700000px;}
.ws14c{word-spacing:2.754000px;}
.ws21{word-spacing:2.760000px;}
.ws174{word-spacing:2.808000px;}
.wsd2{word-spacing:2.880000px;}
.ws31{word-spacing:2.940000px;}
.ws164{word-spacing:2.970000px;}
.wsed{word-spacing:3.000000px;}
.ws186{word-spacing:3.024000px;}
.wsf7{word-spacing:3.060000px;}
.ws184{word-spacing:3.078000px;}
.wsc3{word-spacing:3.180000px;}
.wsaf{word-spacing:3.240000px;}
.ws170{word-spacing:3.294000px;}
.ws109{word-spacing:3.300000px;}
.ws176{word-spacing:3.348000px;}
.ws32{word-spacing:3.360000px;}
.ws162{word-spacing:3.402000px;}
.ws155{word-spacing:3.564000px;}
.wsee{word-spacing:3.600000px;}
.ws160{word-spacing:3.618000px;}
.wscf{word-spacing:3.660000px;}
.ws15f{word-spacing:3.672000px;}
.ws36{word-spacing:3.720000px;}
.wsbd{word-spacing:3.780000px;}
.ws12f{word-spacing:3.840000px;}
.ws15e{word-spacing:3.888000px;}
.ws12b{word-spacing:3.900000px;}
.ws116{word-spacing:3.960000px;}
.wsbc{word-spacing:4.020000px;}
.ws156{word-spacing:4.050000px;}
.wse0{word-spacing:4.080000px;}
.ws171{word-spacing:4.104000px;}
.wsf4{word-spacing:4.140000px;}
.ws12d{word-spacing:4.200000px;}
.ws180{word-spacing:4.212000px;}
.wsbf{word-spacing:4.320000px;}
.wsfd{word-spacing:4.374000px;}
.ws11e{word-spacing:4.380000px;}
.wsfe{word-spacing:4.428000px;}
.ws3e{word-spacing:4.440000px;}
.ws6a{word-spacing:4.482000px;}
.ws118{word-spacing:4.500000px;}
.wsf5{word-spacing:4.560000px;}
.ws2e{word-spacing:4.620000px;}
.ws190{word-spacing:4.644000px;}
.ws2d{word-spacing:4.680000px;}
.wsa2{word-spacing:4.740000px;}
.ws14{word-spacing:4.752000px;}
.ws25{word-spacing:4.800000px;}
.wsa8{word-spacing:4.860000px;}
.ws148{word-spacing:4.920000px;}
.ws136{word-spacing:4.980000px;}
.wsba{word-spacing:5.100000px;}
.wsce{word-spacing:5.220000px;}
.ws11b{word-spacing:5.280000px;}
.ws11a{word-spacing:5.340000px;}
.ws44{word-spacing:5.400000px;}
.ws3f{word-spacing:5.460000px;}
.ws15a{word-spacing:5.508000px;}
.ws38{word-spacing:5.520000px;}
.wse5{word-spacing:5.580000px;}
.wse6{word-spacing:5.640000px;}
.wsc5{word-spacing:5.700000px;}
.ws177{word-spacing:5.778000px;}
.ws10b{word-spacing:5.820000px;}
.ws178{word-spacing:5.832000px;}
.wsa7{word-spacing:5.940000px;}
.ws127{word-spacing:6.000000px;}
.wseb{word-spacing:6.060000px;}
.wsf8{word-spacing:6.120000px;}
.wse1{word-spacing:6.156000px;}
.ws11f{word-spacing:6.180000px;}
.ws120{word-spacing:6.240000px;}
.wsc6{word-spacing:6.300000px;}
.ws173{word-spacing:6.318000px;}
.ws108{word-spacing:6.360000px;}
.ws161{word-spacing:6.372000px;}
.ws13e{word-spacing:6.420000px;}
.ws172{word-spacing:6.426000px;}
.ws147{word-spacing:6.480000px;}
.wscc{word-spacing:6.540000px;}
.ws11d{word-spacing:6.720000px;}
.ws149{word-spacing:6.780000px;}
.wsff{word-spacing:6.804000px;}
.wsbb{word-spacing:6.840000px;}
.ws3b{word-spacing:6.900000px;}
.wsac{word-spacing:6.960000px;}
.ws197{word-spacing:7.020000px;}
.ws1e{word-spacing:7.080000px;}
.ws45{word-spacing:7.200000px;}
.ws166{word-spacing:7.236000px;}
.wsde{word-spacing:7.260000px;}
.wsdd{word-spacing:7.320000px;}
.ws13d{word-spacing:7.380000px;}
.ws13{word-spacing:7.398000px;}
.ws115{word-spacing:7.440000px;}
.ws188{word-spacing:7.506000px;}
.ws14f{word-spacing:7.560000px;}
.ws113{word-spacing:7.680000px;}
.ws1b{word-spacing:7.740000px;}
.ws1c{word-spacing:7.800000px;}
.wscb{word-spacing:7.860000px;}
.wsf0{word-spacing:7.920000px;}
.wsdc{word-spacing:7.980000px;}
.wsdb{word-spacing:8.040000px;}
.ws107{word-spacing:8.100000px;}
.ws106{word-spacing:8.160000px;}
.wsf2{word-spacing:8.220000px;}
.ws10a{word-spacing:8.280000px;}
.ws37{word-spacing:8.340000px;}
.ws117{word-spacing:8.400000px;}
.wsa9{word-spacing:8.460000px;}
.ws42{word-spacing:8.520000px;}
.ws13f{word-spacing:8.640000px;}
.ws145{word-spacing:8.700000px;}
.ws119{word-spacing:8.880000px;}
.ws146{word-spacing:9.060000px;}
.wsca{word-spacing:9.240000px;}
.wsda{word-spacing:9.360000px;}
.ws135{word-spacing:9.420000px;}
.ws14a{word-spacing:9.504000px;}
.ws1a{word-spacing:9.600000px;}
.ws181{word-spacing:9.612000px;}
.ws132{word-spacing:10.260000px;}
.ws131{word-spacing:10.380000px;}
.ws124{word-spacing:10.530000px;}
.ws123{word-spacing:10.638000px;}
.ws122{word-spacing:10.692000px;}
.wsab{word-spacing:10.860000px;}
.ws185{word-spacing:11.070000px;}
.ws10d{word-spacing:11.580000px;}
.wsec{word-spacing:11.940000px;}
.ws153{word-spacing:12.366000px;}
.ws111{word-spacing:12.420000px;}
.ws110{word-spacing:12.540000px;}
.ws114{word-spacing:12.600000px;}
.ws13b{word-spacing:12.720000px;}
.ws175{word-spacing:12.744000px;}
.ws13c{word-spacing:12.840000px;}
.wsf1{word-spacing:13.020000px;}
.ws112{word-spacing:13.140000px;}
.wsf3{word-spacing:13.680000px;}
.wsad{word-spacing:14.700000px;}
.ws154{word-spacing:14.850000px;}
.wsb3{word-spacing:14.880000px;}
.wsb2{word-spacing:14.940000px;}
.ws10c{word-spacing:15.180000px;}
.ws198{word-spacing:15.822000px;}
.ws126{word-spacing:16.800000px;}
.ws17c{word-spacing:22.248000px;}
.ws199{word-spacing:24.786000px;}
.ws70{word-spacing:53.466000px;}
.wsae{word-spacing:54.480000px;}
.ws52{word-spacing:54.810000px;}
.ws6d{word-spacing:55.776000px;}
.ws8d{word-spacing:58.930200px;}
.ws93{word-spacing:60.186000px;}
.ws89{word-spacing:61.236000px;}
.ws60{word-spacing:61.782000px;}
.ws9d{word-spacing:63.630000px;}
.ws4e{word-spacing:64.512000px;}
.ws5d{word-spacing:64.680000px;}
.ws69{word-spacing:65.310000px;}
.ws4d{word-spacing:66.528000px;}
.ws5a{word-spacing:66.864000px;}
.ws63{word-spacing:66.948000px;}
.ws91{word-spacing:67.074000px;}
.ws8a{word-spacing:68.544000px;}
.ws56{word-spacing:70.014000px;}
.ws50{word-spacing:70.560000px;}
.ws71{word-spacing:99.561000px;}
.ws86{word-spacing:101.178000px;}
.ws8c{word-spacing:102.648000px;}
.ws9c{word-spacing:104.412000px;}
.ws75{word-spacing:105.520800px;}
.ws97{word-spacing:105.840000px;}
.ws88{word-spacing:106.428000px;}
.ws67{word-spacing:107.083200px;}
.ws66{word-spacing:109.099200px;}
.ws96{word-spacing:109.326000px;}
.ws74{word-spacing:112.240800px;}
.ws94{word-spacing:112.665000px;}
.ws51{word-spacing:114.786000px;}
.ws92{word-spacing:118.608000px;}
.ws7a{word-spacing:121.804200px;}
.ws76{word-spacing:122.220000px;}
.ws83{word-spacing:124.576200px;}
.ws57{word-spacing:126.966000px;}
.ws59{word-spacing:128.478000px;}
.ws55{word-spacing:128.566200px;}
.ws5e{word-spacing:129.477600px;}
.ws5f{word-spacing:131.586000px;}
.ws62{word-spacing:132.090000px;}
.ws9f{word-spacing:132.686400px;}
.ws6b{word-spacing:133.543200px;}
.ws81{word-spacing:135.702000px;}
.ws4f{word-spacing:138.348000px;}
.ws61{word-spacing:143.094000px;}
.ws65{word-spacing:145.236000px;}
.ws78{word-spacing:148.512000px;}
.ws58{word-spacing:149.940000px;}
.ws54{word-spacing:151.998000px;}
.ws9b{word-spacing:152.636400px;}
.ws4a{word-spacing:177.198000px;}
.ws99{word-spacing:177.349200px;}
.ws7c{word-spacing:177.828000px;}
.ws7d{word-spacing:182.448000px;}
.ws98{word-spacing:183.876000px;}
.ws53{word-spacing:184.800000px;}
.ws6e{word-spacing:185.892000px;}
.ws49{word-spacing:188.202000px;}
.ws47{word-spacing:188.748000px;}
.ws48{word-spacing:195.379800px;}
.ws68{word-spacing:222.990600px;}
.ws85{word-spacing:243.692400px;}
.ws7f{word-spacing:277.452000px;}
.ws7e{word-spacing:331.674000px;}
.ws7b{word-spacing:335.916000px;}
.ws64{word-spacing:369.054000px;}
.ws79{word-spacing:867.678000px;}
.ws84{word-spacing:897.666000px;}
.ws73{word-spacing:899.640000px;}
.ws9a{word-spacing:906.696000px;}
.ws8e{word-spacing:919.002000px;}
.ws82{word-spacing:921.018000px;}
.ws6c{word-spacing:921.354000px;}
.ws72{word-spacing:922.362000px;}
.ws8f{word-spacing:926.104200px;}
.ws95{word-spacing:934.290000px;}
.ws5b{word-spacing:934.626000px;}
.wsa0{word-spacing:935.348400px;}
.ws80{word-spacing:939.162000px;}
.ws87{word-spacing:941.682000px;}
.ws8b{word-spacing:948.276000px;}
.ws5c{word-spacing:1001.154000px;}
.ws6f{word-spacing:1009.722000px;}
._8{margin-left:-11.228400px;}
._dc{margin-left:-9.618000px;}
._7{margin-left:-7.512000px;}
._d9{margin-left:-6.484800px;}
._2{margin-left:-5.191800px;}
._4{margin-left:-3.494400px;}
._6{margin-left:-2.456400px;}
._0{margin-left:-1.203600px;}
._1{width:1.591200px;}
._da{width:2.670000px;}
._5{width:4.050000px;}
._db{width:5.220000px;}
._9{width:6.240000px;}
._dd{width:7.440000px;}
._a{width:8.610000px;}
._df{width:10.564800px;}
._de{width:16.563600px;}
._3{width:36.369000px;}
._e0{width:43.325400px;}
._4e{width:48.342000px;}
._3f{width:52.878000px;}
._bd{width:54.432000px;}
._5f{width:57.078000px;}
._29{width:58.254000px;}
._6e{width:59.598000px;}
._8b{width:63.168000px;}
._16{width:64.176000px;}
._40{width:65.688000px;}
._3a{width:67.326000px;}
._1e{width:68.628000px;}
._93{width:69.762000px;}
._b4{width:70.832400px;}
._7b{width:72.053400px;}
._76{width:73.500000px;}
._26{width:74.508000px;}
._28{width:76.482000px;}
._2d{width:77.658000px;}
._12{width:78.960000px;}
._11{width:80.976000px;}
._15{width:83.202000px;}
._4c{width:85.764000px;}
._39{width:87.612000px;}
._1a{width:89.964000px;}
._10{width:91.980000px;}
._3d{width:98.616000px;}
._6c{width:99.666000px;}
._9a{width:101.304000px;}
._3e{width:102.816000px;}
._85{width:104.244000px;}
._a8{width:106.470000px;}
._67{width:108.024000px;}
._bb{width:109.074000px;}
._92{width:110.264400px;}
._13{width:113.064000px;}
._a1{width:114.926400px;}
._8f{width:116.718000px;}
._b7{width:118.902000px;}
._ba{width:120.172200px;}
._c3{width:122.556000px;}
._57{width:124.572000px;}
._2c{width:128.016000px;}
._2e{width:129.864000px;}
._24{width:133.182000px;}
._19{width:135.492000px;}
._65{width:137.802000px;}
._23{width:138.978000px;}
._1d{width:140.349600px;}
._74{width:143.052000px;}
._73{width:144.354000px;}
._60{width:146.160000px;}
._e{width:148.302000px;}
._d7{width:149.520000px;}
._7a{width:156.735600px;}
._a2{width:159.049800px;}
._5b{width:160.383600px;}
._f{width:162.945600px;}
._6b{width:164.136000px;}
._99{width:165.690000px;}
._b3{width:168.588000px;}
._69{width:173.670000px;}
._d8{width:175.551600px;}
._c6{width:176.736000px;}
._53{width:178.080000px;}
._72{width:179.214000px;}
._c9{width:180.872400px;}
._78{width:184.086000px;}
._88{width:185.766000px;}
._d4{width:187.320000px;}
._b9{width:191.562000px;}
._55{width:193.326000px;}
._17{width:195.258000px;}
._32{width:197.484000px;}
._9d{width:198.828000px;}
._d1{width:200.382000px;}
._8d{width:202.047000px;}
._63{width:205.296000px;}
._34{width:207.102000px;}
._bc{width:208.278000px;}
._20{width:211.218000px;}
._46{width:213.570000px;}
._c{width:215.754000px;}
._68{width:217.182000px;}
._80{width:220.710000px;}
._cc{width:221.774400px;}
._5c{width:224.952000px;}
._6f{width:227.346000px;}
._a9{width:232.008000px;}
._2f{width:233.211600px;}
._bf{width:235.200000px;}
._d{width:237.724200px;}
._49{width:240.114000px;}
._84{width:242.424000px;}
._41{width:243.516000px;}
._91{width:246.330000px;}
._61{width:247.632000px;}
._90{width:249.438000px;}
._d3{width:251.580000px;}
._b1{width:254.268000px;}
._a7{width:256.326000px;}
._af{width:257.544000px;}
._37{width:259.728000px;}
._d5{width:264.474000px;}
._14{width:268.128000px;}
._b6{width:269.346000px;}
._50{width:272.622000px;}
._71{width:274.134000px;}
._66{width:278.586000px;}
._c5{width:281.358000px;}
._35{width:282.576000px;}
._7f{width:285.180000px;}
._d0{width:287.952000px;}
._5a{width:289.422000px;}
._6d{width:291.816000px;}
._95{width:296.646000px;}
._18{width:298.242000px;}
._5e{width:300.342000px;}
._aa{width:303.114000px;}
._ce{width:305.634000px;}
._82{width:307.272000px;}
._b{width:311.514000px;}
._8e{width:313.908000px;}
._a0{width:320.082000px;}
._d6{width:321.132000px;}
._d2{width:322.308000px;}
._33{width:326.256000px;}
._36{width:328.440000px;}
._2b{width:331.380000px;}
._4d{width:337.134000px;}
._70{width:338.604000px;}
._31{width:340.410000px;}
._51{width:341.796000px;}
._87{width:343.014000px;}
._52{width:344.274000px;}
._8a{width:345.618000px;}
._2a{width:347.088000px;}
._1b{width:349.062000px;}
._30{width:351.078000px;}
._cd{width:353.388000px;}
._c2{width:356.748000px;}
._98{width:357.840000px;}
._c1{width:359.394000px;}
._75{width:362.124000px;}
._77{width:365.106000px;}
._3c{width:370.188000px;}
._c4{width:374.598000px;}
._38{width:375.648000px;}
._9f{width:378.798000px;}
._cb{width:380.520000px;}
._4f{width:382.998000px;}
._a3{width:384.715800px;}
._86{width:386.148000px;}
._9c{width:389.815200px;}
._9b{width:391.047600px;}
._8c{width:392.826000px;}
._4b{width:394.380000px;}
._a6{width:396.102000px;}
._6a{width:397.320000px;}
._22{width:407.148000px;}
._58{width:409.878000px;}
._97{width:412.902000px;}
._7e{width:414.624000px;}
._3b{width:415.926000px;}
._62{width:418.641600px;}
._9e{width:420.756000px;}
._be{width:423.864000px;}
._44{width:425.292000px;}
._7c{width:428.190000px;}
._81{width:430.878000px;}
._59{width:432.321000px;}
._56{width:434.658000px;}
._7d{width:436.716000px;}
._42{width:440.958000px;}
._25{width:443.310000px;}
._45{width:444.402000px;}
._94{width:449.400000px;}
._a4{width:451.038000px;}
._43{width:452.928000px;}
._ca{width:454.104000px;}
._79{width:457.632000px;}
._83{width:460.404000px;}
._b8{width:463.512000px;}
._96{width:467.703600px;}
._ac{width:475.608000px;}
._48{width:477.708000px;}
._ad{width:479.598000px;}
._ab{width:488.124000px;}
._b2{width:489.300000px;}
._1f{width:492.114000px;}
._1c{width:500.640000px;}
._ae{width:502.236000px;}
._b5{width:514.038000px;}
._27{width:619.248000px;}
._a5{width:640.220400px;}
._c0{width:651.756000px;}
._47{width:657.300000px;}
._21{width:659.316000px;}
._89{width:660.912000px;}
._b0{width:664.295400px;}
._4a{width:668.388000px;}
._c7{width:673.749600px;}
._c8{width:674.856000px;}
._cf{width:677.580000px;}
._5d{width:703.023600px;}
._54{width:738.528000px;}
._64{width:748.020000px;}
.fc2{color:rgb(109,111,79);}
.fc1{color:rgb(70,71,49);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:31.482000px;}
.fs9{font-size:34.980000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y3a{bottom:71.212050px;}
.y3b{bottom:75.040050px;}
.y1b8{bottom:112.790850px;}
.y1b4{bottom:113.054850px;}
.y184{bottom:113.072850px;}
.y13f{bottom:113.078700px;}
.y68{bottom:113.078850px;}
.y108{bottom:116.385900px;}
.ya1{bottom:116.694600px;}
.yb{bottom:117.205050px;}
.y2a{bottom:117.212550px;}
.ydb{bottom:117.918300px;}
.y15c{bottom:120.487350px;}
.y16d{bottom:120.496200px;}
.y169{bottom:120.496350px;}
.ya{bottom:131.601450px;}
.y1b7{bottom:133.796850px;}
.y1b3{bottom:134.060850px;}
.y13e{bottom:134.078700px;}
.y67{bottom:134.078850px;}
.ya0{bottom:134.345100px;}
.y107{bottom:135.684300px;}
.yda{bottom:135.999300px;}
.y29{bottom:138.212550px;}
.y15b{bottom:140.291850px;}
.y16c{bottom:140.300700px;}
.y168{bottom:140.300850px;}
.y9{bottom:145.997850px;}
.y9f{bottom:151.995600px;}
.y106{bottom:152.526300px;}
.yd9{bottom:154.080300px;}
.y1b6{bottom:154.802850px;}
.y1b2{bottom:155.066850px;}
.y13d{bottom:155.078700px;}
.y66{bottom:155.078850px;}
.y28{bottom:159.212550px;}
.y15a{bottom:160.096350px;}
.y8{bottom:160.397850px;}
.y105{bottom:169.368300px;}
.y183{bottom:169.441050px;}
.y9e{bottom:169.646100px;}
.yd8{bottom:172.161300px;}
.y1b5{bottom:175.808850px;}
.y1b1{bottom:176.072850px;}
.y163{bottom:176.078700px;}
.y65{bottom:176.078850px;}
.y159{bottom:179.900850px;}
.y27{bottom:180.212550px;}
.y104{bottom:186.210300px;}
.y9d{bottom:187.296600px;}
.yd7{bottom:190.242300px;}
.y1b0{bottom:196.814850px;}
.y1c9{bottom:197.036850px;}
.y162{bottom:197.078700px;}
.y64{bottom:197.078850px;}
.y26{bottom:201.212550px;}
.y103{bottom:203.052300px;}
.y37{bottom:203.451900px;}
.y9c{bottom:204.947100px;}
.yd6{bottom:208.323300px;}
.y13c{bottom:212.148000px;}
.y1af{bottom:217.820850px;}
.y1c8{bottom:218.042850px;}
.y161{bottom:218.078700px;}
.y63{bottom:218.078850px;}
.y102{bottom:219.894300px;}
.y36{bottom:221.447400px;}
.y25{bottom:222.212550px;}
.y9b{bottom:222.597600px;}
.yd5{bottom:226.404300px;}
.y13b{bottom:233.851500px;}
.y101{bottom:237.166800px;}
.y1ae{bottom:238.826850px;}
.y1c7{bottom:239.048850px;}
.y160{bottom:239.078700px;}
.y62{bottom:239.078850px;}
.y35{bottom:239.442900px;}
.y16b{bottom:240.040650px;}
.y9a{bottom:240.248100px;}
.y24{bottom:243.212550px;}
.yd4{bottom:244.485300px;}
.y182{bottom:244.529400px;}
.y13a{bottom:251.502000px;}
.y100{bottom:254.817300px;}
.y34{bottom:257.438400px;}
.y99{bottom:257.898600px;}
.y1ad{bottom:259.832850px;}
.y16a{bottom:259.845150px;}
.y1c6{bottom:260.054850px;}
.y15f{bottom:260.078700px;}
.y61{bottom:260.078850px;}
.yd3{bottom:262.566300px;}
.y23{bottom:264.212550px;}
.y139{bottom:269.152500px;}
.y16f{bottom:269.919300px;}
.yff{bottom:272.467800px;}
.y33{bottom:275.433900px;}
.y98{bottom:275.549100px;}
.yd2{bottom:280.647300px;}
.y1ac{bottom:280.838850px;}
.y1c5{bottom:281.060850px;}
.y181{bottom:281.072850px;}
.y15e{bottom:281.078700px;}
.y60{bottom:281.078850px;}
.y22{bottom:285.212550px;}
.y138{bottom:286.803000px;}
.y16e{bottom:289.723800px;}
.yfe{bottom:290.118300px;}
.y97{bottom:293.199600px;}
.y32{bottom:293.429400px;}
.yd1{bottom:298.728300px;}
.y1ab{bottom:301.844850px;}
.y1c4{bottom:302.066850px;}
.y180{bottom:302.072850px;}
.y5f{bottom:302.078850px;}
.y137{bottom:304.453500px;}
.y21{bottom:306.212550px;}
.yfd{bottom:307.768800px;}
.y96{bottom:310.850100px;}
.y31{bottom:311.424900px;}
.y149{bottom:316.441050px;}
.yd0{bottom:316.809300px;}
.y136{bottom:322.104000px;}
.y1aa{bottom:322.850850px;}
.y17f{bottom:323.072850px;}
.y5e{bottom:323.078850px;}
.yfc{bottom:325.419300px;}
.y167{bottom:326.064600px;}
.y20{bottom:327.212550px;}
.y95{bottom:328.500600px;}
.y30{bottom:329.420400px;}
.ycf{bottom:334.890300px;}
.y135{bottom:339.754500px;}
.yfb{bottom:343.069800px;}
.y1a9{bottom:343.856850px;}
.y5d{bottom:344.078850px;}
.y166{bottom:345.869100px;}
.y94{bottom:346.151100px;}
.y2f{bottom:347.415900px;}
.y1f{bottom:348.212550px;}
.yce{bottom:352.971300px;}
.y134{bottom:357.405000px;}
.yfa{bottom:360.720300px;}
.y93{bottom:363.801600px;}
.y1a8{bottom:364.862850px;}
.y148{bottom:365.078850px;}
.y165{bottom:365.673600px;}
.y1e{bottom:369.212550px;}
.y17e{bottom:370.529400px;}
.ycd{bottom:371.052300px;}
.y133{bottom:375.055500px;}
.yf9{bottom:378.370800px;}
.y1c3{bottom:378.513600px;}
.y5c{bottom:379.441050px;}
.y92{bottom:381.452100px;}
.y2e{bottom:382.421400px;}
.y164{bottom:385.478100px;}
.y1a7{bottom:385.868850px;}
.y147{bottom:386.078850px;}
.ycc{bottom:389.133300px;}
.y1d{bottom:390.212550px;}
.y132{bottom:392.706000px;}
.yf8{bottom:396.021300px;}
.y91{bottom:399.102600px;}
.y2d{bottom:400.421400px;}
.y1a6{bottom:406.874850px;}
.y17d{bottom:407.054850px;}
.y146{bottom:407.078850px;}
.ycb{bottom:407.214300px;}
.y131{bottom:410.356500px;}
.y1c2{bottom:410.811150px;}
.y1c{bottom:411.212550px;}
.yf7{bottom:413.671800px;}
.y90{bottom:416.753100px;}
.y2c{bottom:418.421400px;}
.yca{bottom:425.295300px;}
.y1a5{bottom:427.880850px;}
.y130{bottom:428.007000px;}
.y17c{bottom:428.060850px;}
.y5b{bottom:428.078850px;}
.yf6{bottom:431.322300px;}
.y1b{bottom:432.212550px;}
.y8f{bottom:434.403600px;}
.y2b{bottom:436.421400px;}
.yc9{bottom:443.376300px;}
.y12f{bottom:445.657500px;}
.y1a4{bottom:448.886850px;}
.yf5{bottom:448.972800px;}
.y17b{bottom:449.066850px;}
.y5a{bottom:449.078850px;}
.y8e{bottom:452.054100px;}
.y1a{bottom:453.212550px;}
.yc8{bottom:461.457300px;}
.y12e{bottom:463.308000px;}
.yf4{bottom:466.623300px;}
.y8d{bottom:469.704600px;}
.y1a3{bottom:469.892850px;}
.y1c1{bottom:470.036850px;}
.y17a{bottom:470.072850px;}
.y59{bottom:470.078850px;}
.yc7{bottom:479.538300px;}
.y12d{bottom:480.958500px;}
.yf3{bottom:484.273800px;}
.y8c{bottom:487.355100px;}
.y19{bottom:487.552350px;}
.y1a2{bottom:490.898850px;}
.y1c0{bottom:491.042850px;}
.y58{bottom:491.078850px;}
.yc6{bottom:497.619300px;}
.y12c{bottom:498.609000px;}
.yf2{bottom:501.924300px;}
.y8b{bottom:505.005600px;}
.y1a1{bottom:511.904850px;}
.y1bf{bottom:512.048850px;}
.y57{bottom:512.078850px;}
.yc5{bottom:515.700300px;}
.y12b{bottom:516.259500px;}
.y179{bottom:517.529400px;}
.yf1{bottom:519.574800px;}
.y8a{bottom:522.656100px;}
.y1a0{bottom:532.910850px;}
.y1be{bottom:533.054850px;}
.y56{bottom:533.078850px;}
.yc4{bottom:533.781300px;}
.y12a{bottom:533.910000px;}
.yf0{bottom:537.225300px;}
.y89{bottom:540.306600px;}
.y129{bottom:551.560500px;}
.yc3{bottom:551.862300px;}
.y19f{bottom:553.916850px;}
.y1bd{bottom:554.060850px;}
.y178{bottom:554.066850px;}
.y55{bottom:554.078850px;}
.yef{bottom:554.875800px;}
.y88{bottom:557.957100px;}
.y18{bottom:563.823450px;}
.y128{bottom:569.211000px;}
.yc2{bottom:569.943300px;}
.yee{bottom:572.526300px;}
.y19e{bottom:574.922850px;}
.y1bc{bottom:575.066850px;}
.y177{bottom:575.072850px;}
.y145{bottom:575.078850px;}
.y87{bottom:575.607600px;}
.y17{bottom:583.627950px;}
.y127{bottom:586.861500px;}
.yc1{bottom:588.024300px;}
.y54{bottom:588.513600px;}
.yed{bottom:590.176800px;}
.y86{bottom:593.258100px;}
.y19d{bottom:595.928850px;}
.y1bb{bottom:596.072850px;}
.y144{bottom:596.078850px;}
.y126{bottom:604.512000px;}
.yc0{bottom:606.105300px;}
.yec{bottom:607.827300px;}
.y85{bottom:610.908600px;}
.y19c{bottom:616.934850px;}
.y143{bottom:617.078850px;}
.y53{bottom:620.811150px;}
.y125{bottom:622.162500px;}
.y176{bottom:622.529400px;}
.ybf{bottom:624.186300px;}
.y16{bottom:624.651750px;}
.yeb{bottom:625.477800px;}
.y84{bottom:628.559100px;}
.y19b{bottom:637.940850px;}
.y142{bottom:638.078850px;}
.y124{bottom:639.813000px;}
.ybe{bottom:642.267300px;}
.yea{bottom:643.128300px;}
.y15{bottom:644.456250px;}
.y83{bottom:646.209600px;}
.y1ba{bottom:651.513600px;}
.y123{bottom:657.463500px;}
.y19a{bottom:658.946850px;}
.y141{bottom:659.078850px;}
.ybd{bottom:660.348300px;}
.ye9{bottom:660.778800px;}
.y82{bottom:663.860100px;}
.y14{bottom:664.260750px;}
.y122{bottom:675.114000px;}
.ybc{bottom:678.429300px;}
.y199{bottom:679.952850px;}
.y52{bottom:680.078850px;}
.y81{bottom:681.510600px;}
.y1b9{bottom:683.811150px;}
.y13{bottom:684.065250px;}
.y175{bottom:685.529400px;}
.y121{bottom:692.764500px;}
.ybb{bottom:696.079800px;}
.y80{bottom:699.161100px;}
.y198{bottom:700.958850px;}
.y51{bottom:701.078850px;}
.y12{bottom:703.869750px;}
.y120{bottom:710.415000px;}
.yba{bottom:713.730300px;}
.y7f{bottom:716.811600px;}
.y197{bottom:721.964850px;}
.y50{bottom:722.078850px;}
.y11{bottom:723.674250px;}
.y11f{bottom:728.065500px;}
.yb9{bottom:731.380800px;}
.y7e{bottom:734.462100px;}
.y196{bottom:742.970850px;}
.y4f{bottom:743.078850px;}
.y10{bottom:743.478750px;}
.y11e{bottom:745.716000px;}
.y174{bottom:748.529400px;}
.yb8{bottom:749.031300px;}
.y7d{bottom:752.112600px;}
.yf{bottom:763.283250px;}
.y11d{bottom:763.366500px;}
.y195{bottom:763.976850px;}
.y4e{bottom:764.078850px;}
.yb7{bottom:766.681800px;}
.y7c{bottom:769.763100px;}
.y158{bottom:777.513600px;}
.y11c{bottom:781.017000px;}
.ye{bottom:783.087750px;}
.yb6{bottom:784.332300px;}
.y194{bottom:784.982850px;}
.y4d{bottom:785.078850px;}
.y7b{bottom:787.413600px;}
.y11b{bottom:798.667500px;}
.yb5{bottom:801.982800px;}
.y7a{bottom:805.064100px;}
.y193{bottom:805.988850px;}
.y4c{bottom:806.078850px;}
.y157{bottom:809.811000px;}
.y173{bottom:811.937100px;}
.yd{bottom:814.185300px;}
.ye8{bottom:815.485800px;}
.y11a{bottom:816.318000px;}
.yb4{bottom:819.633300px;}
.y170{bottom:820.441050px;}
.y79{bottom:822.714600px;}
.y192{bottom:826.994850px;}
.y4b{bottom:827.078850px;}
.ye7{bottom:833.136300px;}
.y119{bottom:833.968500px;}
.yb3{bottom:837.283800px;}
.y78{bottom:840.365100px;}
.y172{bottom:841.441050px;}
.ye6{bottom:846.639300px;}
.y191{bottom:848.000850px;}
.y4a{bottom:848.078850px;}
.y118{bottom:851.619000px;}
.yb2{bottom:854.934300px;}
.y77{bottom:858.015600px;}
.ye5{bottom:864.289800px;}
.y190{bottom:869.006850px;}
.y156{bottom:869.078700px;}
.y49{bottom:869.078850px;}
.y117{bottom:869.269500px;}
.yb1{bottom:872.584800px;}
.y76{bottom:875.666100px;}
.ye4{bottom:881.940300px;}
.y116{bottom:886.920000px;}
.y18f{bottom:890.012850px;}
.y155{bottom:890.078700px;}
.y48{bottom:890.078850px;}
.yb0{bottom:890.235300px;}
.y75{bottom:893.316600px;}
.y7{bottom:893.466750px;}
.ye3{bottom:899.590800px;}
.y115{bottom:904.570500px;}
.yaf{bottom:907.885800px;}
.y74{bottom:910.967100px;}
.y18e{bottom:911.018850px;}
.y154{bottom:911.078700px;}
.y47{bottom:911.078850px;}
.y6{bottom:911.466750px;}
.ye2{bottom:917.241300px;}
.y114{bottom:922.221000px;}
.y140{bottom:925.441050px;}
.yae{bottom:925.536300px;}
.y73{bottom:928.617600px;}
.y18d{bottom:932.024850px;}
.y153{bottom:932.078700px;}
.y46{bottom:932.078850px;}
.ye1{bottom:934.891800px;}
.y113{bottom:939.871500px;}
.yad{bottom:943.186800px;}
.y72{bottom:946.268100px;}
.y171{bottom:946.441050px;}
.y5{bottom:946.474800px;}
.ye0{bottom:952.542300px;}
.y18c{bottom:953.030850px;}
.y152{bottom:953.078700px;}
.y45{bottom:953.078850px;}
.y112{bottom:957.522000px;}
.yac{bottom:960.837300px;}
.y71{bottom:963.918600px;}
.ydf{bottom:970.192800px;}
.y18b{bottom:974.036850px;}
.y151{bottom:974.078700px;}
.y44{bottom:974.078850px;}
.y111{bottom:975.172500px;}
.yab{bottom:978.487800px;}
.y70{bottom:981.569100px;}
.y4{bottom:983.288550px;}
.yde{bottom:987.843300px;}
.y110{bottom:992.823000px;}
.y18a{bottom:995.042850px;}
.y150{bottom:995.078700px;}
.y43{bottom:995.078850px;}
.yaa{bottom:996.138300px;}
.y6f{bottom:999.219600px;}
.ydd{bottom:1005.493800px;}
.ya9{bottom:1009.641300px;}
.y10f{bottom:1010.473500px;}
.y189{bottom:1016.048850px;}
.y14f{bottom:1016.078700px;}
.y42{bottom:1016.078850px;}
.y3{bottom:1016.285550px;}
.y6e{bottom:1016.870100px;}
.ydc{bottom:1023.144300px;}
.ya8{bottom:1027.291800px;}
.y10e{bottom:1028.124000px;}
.y6d{bottom:1034.520600px;}
.y188{bottom:1037.054850px;}
.y14e{bottom:1037.078700px;}
.y41{bottom:1037.078850px;}
.ya7{bottom:1040.794800px;}
.y10d{bottom:1045.774500px;}
.y2{bottom:1049.282550px;}
.y6c{bottom:1052.171100px;}
.y187{bottom:1058.060850px;}
.y14d{bottom:1058.078700px;}
.y40{bottom:1058.078850px;}
.ya6{bottom:1058.445300px;}
.y10c{bottom:1063.425000px;}
.y6b{bottom:1070.126100px;}
.ya5{bottom:1076.095800px;}
.y186{bottom:1079.066850px;}
.y14c{bottom:1079.078700px;}
.y3f{bottom:1079.078850px;}
.y10b{bottom:1081.075500px;}
.ya4{bottom:1093.746300px;}
.y10a{bottom:1098.726000px;}
.y6a{bottom:1099.478400px;}
.y185{bottom:1100.072850px;}
.y14b{bottom:1100.078700px;}
.y3e{bottom:1100.078850px;}
.yc{bottom:1109.815500px;}
.ya3{bottom:1111.396800px;}
.y15d{bottom:1114.821900px;}
.y109{bottom:1116.681000px;}
.y69{bottom:1119.282900px;}
.y14a{bottom:1121.078700px;}
.y3d{bottom:1121.078850px;}
.ya2{bottom:1129.351800px;}
.y39{bottom:1159.189500px;}
.y38{bottom:1178.689500px;}
.y3c{bottom:1178.692050px;}
.h11{height:33.448242px;}
.h12{height:34.125000px;}
.h7{height:34.446094px;}
.h6{height:34.657031px;}
.hf{height:38.273438px;}
.h2{height:38.507812px;}
.h5{height:38.531250px;}
.h8{height:43.004883px;}
.he{height:43.057617px;}
.hd{height:43.321289px;}
.ha{height:43.875000px;}
.h13{height:43.899000px;}
.h14{height:44.931000px;}
.h9{height:45.615234px;}
.hc{height:48.750000px;}
.h10{height:50.176758px;}
.h4{height:53.625000px;}
.hb{height:54.738281px;}
.h3{height:81.231445px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.xa{left:107.063850px;}
.xc{left:108.289650px;}
.xe{left:112.235550px;}
.x5{left:119.878950px;}
.x6{left:122.032500px;}
.x7{left:124.102950px;}
.xd{left:155.348550px;}
.x4{left:300.189000px;}
.xb{left:317.199000px;}
.xf{left:365.506050px;}
.x3{left:396.050700px;}
.x10{left:427.235550px;}
.x9{left:646.548300px;}
.x8{left:668.280300px;}
.x1{left:801.157500px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:0.938667pt;}
.v3{vertical-align:16.922667pt;}
.v1{vertical-align:19.536000pt;}
.ls9{letter-spacing:-2.933333pt;}
.ls7{letter-spacing:-2.240000pt;}
.lsa{letter-spacing:-1.066667pt;}
.ls1b{letter-spacing:-0.960000pt;}
.ls10{letter-spacing:-0.853333pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.614400pt;}
.ls5{letter-spacing:-0.533333pt;}
.ls6{letter-spacing:-0.522667pt;}
.ls1c{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.426667pt;}
.ls20{letter-spacing:-0.384000pt;}
.ls17{letter-spacing:-0.320000pt;}
.ls1f{letter-spacing:-0.288000pt;}
.ls1d{letter-spacing:-0.251856pt;}
.ls2{letter-spacing:-0.181333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.021333pt;}
.ls14{letter-spacing:0.069333pt;}
.ls15{letter-spacing:0.149333pt;}
.lsf{letter-spacing:0.170667pt;}
.ls13{letter-spacing:0.181333pt;}
.ls12{letter-spacing:0.213333pt;}
.lsd{letter-spacing:0.266667pt;}
.ls21{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.864000pt;}
.ls16{letter-spacing:2.880000pt;}
.ls19{letter-spacing:3.946667pt;}
.lse{letter-spacing:4.373333pt;}
.lsb{letter-spacing:5.013333pt;}
.lsc{letter-spacing:6.885333pt;}
.ls1a{letter-spacing:9.422400pt;}
.ls18{letter-spacing:11.040000pt;}
.ls0{letter-spacing:38.383435pt;}
.ws0{word-spacing:-22.213333pt;}
.ws5{word-spacing:-15.936000pt;}
.wse2{word-spacing:-14.608000pt;}
.wse3{word-spacing:-13.546667pt;}
.wse4{word-spacing:-13.333333pt;}
.ws3{word-spacing:-13.280000pt;}
.wsc0{word-spacing:-13.226667pt;}
.ws6{word-spacing:-13.066667pt;}
.ws102{word-spacing:-12.960000pt;}
.ws182{word-spacing:-12.768000pt;}
.ws2c{word-spacing:-12.533333pt;}
.ws7{word-spacing:-12.426667pt;}
.wsc1{word-spacing:-12.160000pt;}
.ws125{word-spacing:-12.106667pt;}
.wsc2{word-spacing:-12.000000pt;}
.wsf9{word-spacing:-11.952000pt;}
.ws100{word-spacing:-11.904000pt;}
.ws4{word-spacing:-11.760000pt;}
.ws169{word-spacing:-11.616000pt;}
.ws183{word-spacing:-11.520000pt;}
.ws8{word-spacing:-10.992000pt;}
.wsa{word-spacing:-10.800000pt;}
.wsa4{word-spacing:-10.133333pt;}
.wsb{word-spacing:-9.770667pt;}
.ws2a{word-spacing:-9.600000pt;}
.ws4b{word-spacing:-9.296000pt;}
.ws9e{word-spacing:-9.258667pt;}
.ws4c{word-spacing:-9.146667pt;}
.ws2{word-spacing:-8.793600pt;}
.ws1{word-spacing:-8.549333pt;}
.wsa3{word-spacing:-7.711147pt;}
.ws77{word-spacing:-7.018667pt;}
.ws14e{word-spacing:-6.688176pt;}
.ws16b{word-spacing:-5.280000pt;}
.ws28{word-spacing:-4.320000pt;}
.ws27{word-spacing:-4.266667pt;}
.ws129{word-spacing:-3.680000pt;}
.ws12a{word-spacing:-3.626667pt;}
.wsfb{word-spacing:-3.093333pt;}
.ws30{word-spacing:-3.040000pt;}
.ws192{word-spacing:-2.976000pt;}
.ws10f{word-spacing:-2.880000pt;}
.wsc7{word-spacing:-2.773333pt;}
.wse9{word-spacing:-2.720000pt;}
.wsb1{word-spacing:-2.666667pt;}
.ws143{word-spacing:-2.506667pt;}
.ws144{word-spacing:-2.453333pt;}
.wsa5{word-spacing:-2.400000pt;}
.ws18a{word-spacing:-2.352000pt;}
.wscd{word-spacing:-2.346667pt;}
.ws23{word-spacing:-2.293333pt;}
.ws187{word-spacing:-2.256000pt;}
.wsa6{word-spacing:-2.240000pt;}
.ws13a{word-spacing:-2.186667pt;}
.ws17e{word-spacing:-2.160000pt;}
.ws138{word-spacing:-2.133333pt;}
.ws157{word-spacing:-2.112000pt;}
.ws139{word-spacing:-2.080000pt;}
.wsd3{word-spacing:-2.026667pt;}
.ws18c{word-spacing:-1.968000pt;}
.wse8{word-spacing:-1.920000pt;}
.wsd0{word-spacing:-1.813333pt;}
.ws14b{word-spacing:-1.776000pt;}
.ws101{word-spacing:-1.728000pt;}
.wsc4{word-spacing:-1.706667pt;}
.ws34{word-spacing:-1.653333pt;}
.ws11{word-spacing:-1.632000pt;}
.ws3a{word-spacing:-1.546667pt;}
.ws1d{word-spacing:-1.493333pt;}
.ws10{word-spacing:-1.488000pt;}
.ws12e{word-spacing:-1.440000pt;}
.ws17f{word-spacing:-1.392000pt;}
.wsd1{word-spacing:-1.386667pt;}
.wsea{word-spacing:-1.333333pt;}
.wsb6{word-spacing:-1.280000pt;}
.ws16f{word-spacing:-1.200000pt;}
.wsb7{word-spacing:-1.173333pt;}
.ws10e{word-spacing:-1.120000pt;}
.wsfa{word-spacing:-1.066667pt;}
.ws12{word-spacing:-1.008000pt;}
.ws12c{word-spacing:-0.960000pt;}
.ws29{word-spacing:-0.912000pt;}
.ws15b{word-spacing:-0.864000pt;}
.wsd4{word-spacing:-0.853333pt;}
.ws17{word-spacing:-0.800000pt;}
.ws18e{word-spacing:-0.768000pt;}
.ws103{word-spacing:-0.746667pt;}
.ws196{word-spacing:-0.720000pt;}
.ws90{word-spacing:-0.709333pt;}
.wsf6{word-spacing:-0.693333pt;}
.ws16e{word-spacing:-0.672000pt;}
.ws3d{word-spacing:-0.640000pt;}
.ws18f{word-spacing:-0.624000pt;}
.ws137{word-spacing:-0.586667pt;}
.wsb5{word-spacing:-0.533333pt;}
.ws16a{word-spacing:-0.528000pt;}
.ws104{word-spacing:-0.480000pt;}
.ws195{word-spacing:-0.432000pt;}
.wsc9{word-spacing:-0.373333pt;}
.wsbe{word-spacing:-0.320000pt;}
.ws193{word-spacing:-0.288000pt;}
.wsd9{word-spacing:-0.266667pt;}
.ws167{word-spacing:-0.240000pt;}
.wsa1{word-spacing:-0.213333pt;}
.wsd{word-spacing:-0.192000pt;}
.ws141{word-spacing:-0.160000pt;}
.ws163{word-spacing:-0.144000pt;}
.wsd5{word-spacing:-0.106667pt;}
.ws15{word-spacing:-0.096000pt;}
.ws121{word-spacing:-0.053333pt;}
.ws9{word-spacing:-0.048000pt;}
.ws2b{word-spacing:-0.042667pt;}
.wsc{word-spacing:0.000000pt;}
.ws159{word-spacing:0.096000pt;}
.ws20{word-spacing:0.106667pt;}
.ws24{word-spacing:0.160000pt;}
.ws134{word-spacing:0.213333pt;}
.ws179{word-spacing:0.240000pt;}
.ws16c{word-spacing:0.288000pt;}
.ws35{word-spacing:0.320000pt;}
.ws16d{word-spacing:0.336000pt;}
.wsdf{word-spacing:0.373333pt;}
.ws191{word-spacing:0.384000pt;}
.wsb0{word-spacing:0.426667pt;}
.ws15d{word-spacing:0.432000pt;}
.ws46{word-spacing:0.480000pt;}
.ws194{word-spacing:0.528000pt;}
.ws2f{word-spacing:0.533333pt;}
.wsfc{word-spacing:0.576000pt;}
.wsb8{word-spacing:0.586667pt;}
.wse{word-spacing:0.614400pt;}
.ws18{word-spacing:0.640000pt;}
.ws33{word-spacing:0.693333pt;}
.ws15c{word-spacing:0.720000pt;}
.ws39{word-spacing:0.746667pt;}
.wsc8{word-spacing:0.800000pt;}
.wse7{word-spacing:0.853333pt;}
.wsb4{word-spacing:0.906667pt;}
.wsf{word-spacing:0.912000pt;}
.ws26{word-spacing:0.960000pt;}
.ws18b{word-spacing:1.056000pt;}
.ws3c{word-spacing:1.066667pt;}
.ws140{word-spacing:1.120000pt;}
.ws189{word-spacing:1.152000pt;}
.ws41{word-spacing:1.173333pt;}
.ws17a{word-spacing:1.248000pt;}
.ws17d{word-spacing:1.296000pt;}
.wsef{word-spacing:1.333333pt;}
.wsaa{word-spacing:1.386667pt;}
.ws158{word-spacing:1.392000pt;}
.ws152{word-spacing:1.440000pt;}
.wsd7{word-spacing:1.493333pt;}
.ws165{word-spacing:1.536000pt;}
.wsd8{word-spacing:1.546667pt;}
.ws1f{word-spacing:1.600000pt;}
.ws150{word-spacing:1.632000pt;}
.ws40{word-spacing:1.653333pt;}
.ws151{word-spacing:1.680000pt;}
.ws22{word-spacing:1.706667pt;}
.ws11c{word-spacing:1.728000pt;}
.ws142{word-spacing:1.760000pt;}
.ws19{word-spacing:1.866667pt;}
.ws16{word-spacing:1.872000pt;}
.ws128{word-spacing:1.920000pt;}
.ws14d{word-spacing:1.968000pt;}
.ws43{word-spacing:1.973333pt;}
.wsd6{word-spacing:2.080000pt;}
.ws18d{word-spacing:2.160000pt;}
.ws105{word-spacing:2.186667pt;}
.ws133{word-spacing:2.240000pt;}
.wsb9{word-spacing:2.293333pt;}
.ws17b{word-spacing:2.304000pt;}
.ws168{word-spacing:2.352000pt;}
.ws130{word-spacing:2.400000pt;}
.ws14c{word-spacing:2.448000pt;}
.ws21{word-spacing:2.453333pt;}
.ws174{word-spacing:2.496000pt;}
.wsd2{word-spacing:2.560000pt;}
.ws31{word-spacing:2.613333pt;}
.ws164{word-spacing:2.640000pt;}
.wsed{word-spacing:2.666667pt;}
.ws186{word-spacing:2.688000pt;}
.wsf7{word-spacing:2.720000pt;}
.ws184{word-spacing:2.736000pt;}
.wsc3{word-spacing:2.826667pt;}
.wsaf{word-spacing:2.880000pt;}
.ws170{word-spacing:2.928000pt;}
.ws109{word-spacing:2.933333pt;}
.ws176{word-spacing:2.976000pt;}
.ws32{word-spacing:2.986667pt;}
.ws162{word-spacing:3.024000pt;}
.ws155{word-spacing:3.168000pt;}
.wsee{word-spacing:3.200000pt;}
.ws160{word-spacing:3.216000pt;}
.wscf{word-spacing:3.253333pt;}
.ws15f{word-spacing:3.264000pt;}
.ws36{word-spacing:3.306667pt;}
.wsbd{word-spacing:3.360000pt;}
.ws12f{word-spacing:3.413333pt;}
.ws15e{word-spacing:3.456000pt;}
.ws12b{word-spacing:3.466667pt;}
.ws116{word-spacing:3.520000pt;}
.wsbc{word-spacing:3.573333pt;}
.ws156{word-spacing:3.600000pt;}
.wse0{word-spacing:3.626667pt;}
.ws171{word-spacing:3.648000pt;}
.wsf4{word-spacing:3.680000pt;}
.ws12d{word-spacing:3.733333pt;}
.ws180{word-spacing:3.744000pt;}
.wsbf{word-spacing:3.840000pt;}
.wsfd{word-spacing:3.888000pt;}
.ws11e{word-spacing:3.893333pt;}
.wsfe{word-spacing:3.936000pt;}
.ws3e{word-spacing:3.946667pt;}
.ws6a{word-spacing:3.984000pt;}
.ws118{word-spacing:4.000000pt;}
.wsf5{word-spacing:4.053333pt;}
.ws2e{word-spacing:4.106667pt;}
.ws190{word-spacing:4.128000pt;}
.ws2d{word-spacing:4.160000pt;}
.wsa2{word-spacing:4.213333pt;}
.ws14{word-spacing:4.224000pt;}
.ws25{word-spacing:4.266667pt;}
.wsa8{word-spacing:4.320000pt;}
.ws148{word-spacing:4.373333pt;}
.ws136{word-spacing:4.426667pt;}
.wsba{word-spacing:4.533333pt;}
.wsce{word-spacing:4.640000pt;}
.ws11b{word-spacing:4.693333pt;}
.ws11a{word-spacing:4.746667pt;}
.ws44{word-spacing:4.800000pt;}
.ws3f{word-spacing:4.853333pt;}
.ws15a{word-spacing:4.896000pt;}
.ws38{word-spacing:4.906667pt;}
.wse5{word-spacing:4.960000pt;}
.wse6{word-spacing:5.013333pt;}
.wsc5{word-spacing:5.066667pt;}
.ws177{word-spacing:5.136000pt;}
.ws10b{word-spacing:5.173333pt;}
.ws178{word-spacing:5.184000pt;}
.wsa7{word-spacing:5.280000pt;}
.ws127{word-spacing:5.333333pt;}
.wseb{word-spacing:5.386667pt;}
.wsf8{word-spacing:5.440000pt;}
.wse1{word-spacing:5.472000pt;}
.ws11f{word-spacing:5.493333pt;}
.ws120{word-spacing:5.546667pt;}
.wsc6{word-spacing:5.600000pt;}
.ws173{word-spacing:5.616000pt;}
.ws108{word-spacing:5.653333pt;}
.ws161{word-spacing:5.664000pt;}
.ws13e{word-spacing:5.706667pt;}
.ws172{word-spacing:5.712000pt;}
.ws147{word-spacing:5.760000pt;}
.wscc{word-spacing:5.813333pt;}
.ws11d{word-spacing:5.973333pt;}
.ws149{word-spacing:6.026667pt;}
.wsff{word-spacing:6.048000pt;}
.wsbb{word-spacing:6.080000pt;}
.ws3b{word-spacing:6.133333pt;}
.wsac{word-spacing:6.186667pt;}
.ws197{word-spacing:6.240000pt;}
.ws1e{word-spacing:6.293333pt;}
.ws45{word-spacing:6.400000pt;}
.ws166{word-spacing:6.432000pt;}
.wsde{word-spacing:6.453333pt;}
.wsdd{word-spacing:6.506667pt;}
.ws13d{word-spacing:6.560000pt;}
.ws13{word-spacing:6.576000pt;}
.ws115{word-spacing:6.613333pt;}
.ws188{word-spacing:6.672000pt;}
.ws14f{word-spacing:6.720000pt;}
.ws113{word-spacing:6.826667pt;}
.ws1b{word-spacing:6.880000pt;}
.ws1c{word-spacing:6.933333pt;}
.wscb{word-spacing:6.986667pt;}
.wsf0{word-spacing:7.040000pt;}
.wsdc{word-spacing:7.093333pt;}
.wsdb{word-spacing:7.146667pt;}
.ws107{word-spacing:7.200000pt;}
.ws106{word-spacing:7.253333pt;}
.wsf2{word-spacing:7.306667pt;}
.ws10a{word-spacing:7.360000pt;}
.ws37{word-spacing:7.413333pt;}
.ws117{word-spacing:7.466667pt;}
.wsa9{word-spacing:7.520000pt;}
.ws42{word-spacing:7.573333pt;}
.ws13f{word-spacing:7.680000pt;}
.ws145{word-spacing:7.733333pt;}
.ws119{word-spacing:7.893333pt;}
.ws146{word-spacing:8.053333pt;}
.wsca{word-spacing:8.213333pt;}
.wsda{word-spacing:8.320000pt;}
.ws135{word-spacing:8.373333pt;}
.ws14a{word-spacing:8.448000pt;}
.ws1a{word-spacing:8.533333pt;}
.ws181{word-spacing:8.544000pt;}
.ws132{word-spacing:9.120000pt;}
.ws131{word-spacing:9.226667pt;}
.ws124{word-spacing:9.360000pt;}
.ws123{word-spacing:9.456000pt;}
.ws122{word-spacing:9.504000pt;}
.wsab{word-spacing:9.653333pt;}
.ws185{word-spacing:9.840000pt;}
.ws10d{word-spacing:10.293333pt;}
.wsec{word-spacing:10.613333pt;}
.ws153{word-spacing:10.992000pt;}
.ws111{word-spacing:11.040000pt;}
.ws110{word-spacing:11.146667pt;}
.ws114{word-spacing:11.200000pt;}
.ws13b{word-spacing:11.306667pt;}
.ws175{word-spacing:11.328000pt;}
.ws13c{word-spacing:11.413333pt;}
.wsf1{word-spacing:11.573333pt;}
.ws112{word-spacing:11.680000pt;}
.wsf3{word-spacing:12.160000pt;}
.wsad{word-spacing:13.066667pt;}
.ws154{word-spacing:13.200000pt;}
.wsb3{word-spacing:13.226667pt;}
.wsb2{word-spacing:13.280000pt;}
.ws10c{word-spacing:13.493333pt;}
.ws198{word-spacing:14.064000pt;}
.ws126{word-spacing:14.933333pt;}
.ws17c{word-spacing:19.776000pt;}
.ws199{word-spacing:22.032000pt;}
.ws70{word-spacing:47.525333pt;}
.wsae{word-spacing:48.426667pt;}
.ws52{word-spacing:48.720000pt;}
.ws6d{word-spacing:49.578667pt;}
.ws8d{word-spacing:52.382400pt;}
.ws93{word-spacing:53.498667pt;}
.ws89{word-spacing:54.432000pt;}
.ws60{word-spacing:54.917333pt;}
.ws9d{word-spacing:56.560000pt;}
.ws4e{word-spacing:57.344000pt;}
.ws5d{word-spacing:57.493333pt;}
.ws69{word-spacing:58.053333pt;}
.ws4d{word-spacing:59.136000pt;}
.ws5a{word-spacing:59.434667pt;}
.ws63{word-spacing:59.509333pt;}
.ws91{word-spacing:59.621333pt;}
.ws8a{word-spacing:60.928000pt;}
.ws56{word-spacing:62.234667pt;}
.ws50{word-spacing:62.720000pt;}
.ws71{word-spacing:88.498667pt;}
.ws86{word-spacing:89.936000pt;}
.ws8c{word-spacing:91.242667pt;}
.ws9c{word-spacing:92.810667pt;}
.ws75{word-spacing:93.796267pt;}
.ws97{word-spacing:94.080000pt;}
.ws88{word-spacing:94.602667pt;}
.ws67{word-spacing:95.185067pt;}
.ws66{word-spacing:96.977067pt;}
.ws96{word-spacing:97.178667pt;}
.ws74{word-spacing:99.769600pt;}
.ws94{word-spacing:100.146667pt;}
.ws51{word-spacing:102.032000pt;}
.ws92{word-spacing:105.429333pt;}
.ws7a{word-spacing:108.270400pt;}
.ws76{word-spacing:108.640000pt;}
.ws83{word-spacing:110.734400pt;}
.ws57{word-spacing:112.858667pt;}
.ws59{word-spacing:114.202667pt;}
.ws55{word-spacing:114.281067pt;}
.ws5e{word-spacing:115.091200pt;}
.ws5f{word-spacing:116.965333pt;}
.ws62{word-spacing:117.413333pt;}
.ws9f{word-spacing:117.943467pt;}
.ws6b{word-spacing:118.705067pt;}
.ws81{word-spacing:120.624000pt;}
.ws4f{word-spacing:122.976000pt;}
.ws61{word-spacing:127.194667pt;}
.ws65{word-spacing:129.098667pt;}
.ws78{word-spacing:132.010667pt;}
.ws58{word-spacing:133.280000pt;}
.ws54{word-spacing:135.109333pt;}
.ws9b{word-spacing:135.676800pt;}
.ws4a{word-spacing:157.509333pt;}
.ws99{word-spacing:157.643733pt;}
.ws7c{word-spacing:158.069333pt;}
.ws7d{word-spacing:162.176000pt;}
.ws98{word-spacing:163.445333pt;}
.ws53{word-spacing:164.266667pt;}
.ws6e{word-spacing:165.237333pt;}
.ws49{word-spacing:167.290667pt;}
.ws47{word-spacing:167.776000pt;}
.ws48{word-spacing:173.670933pt;}
.ws68{word-spacing:198.213867pt;}
.ws85{word-spacing:216.615467pt;}
.ws7f{word-spacing:246.624000pt;}
.ws7e{word-spacing:294.821333pt;}
.ws7b{word-spacing:298.592000pt;}
.ws64{word-spacing:328.048000pt;}
.ws79{word-spacing:771.269333pt;}
.ws84{word-spacing:797.925333pt;}
.ws73{word-spacing:799.680000pt;}
.ws9a{word-spacing:805.952000pt;}
.ws8e{word-spacing:816.890667pt;}
.ws82{word-spacing:818.682667pt;}
.ws6c{word-spacing:818.981333pt;}
.ws72{word-spacing:819.877333pt;}
.ws8f{word-spacing:823.203733pt;}
.ws95{word-spacing:830.480000pt;}
.ws5b{word-spacing:830.778667pt;}
.wsa0{word-spacing:831.420800pt;}
.ws80{word-spacing:834.810667pt;}
.ws87{word-spacing:837.050667pt;}
.ws8b{word-spacing:842.912000pt;}
.ws5c{word-spacing:889.914667pt;}
.ws6f{word-spacing:897.530667pt;}
._8{margin-left:-9.980800pt;}
._dc{margin-left:-8.549333pt;}
._7{margin-left:-6.677333pt;}
._d9{margin-left:-5.764267pt;}
._2{margin-left:-4.614933pt;}
._4{margin-left:-3.106133pt;}
._6{margin-left:-2.183467pt;}
._0{margin-left:-1.069867pt;}
._1{width:1.414400pt;}
._da{width:2.373333pt;}
._5{width:3.600000pt;}
._db{width:4.640000pt;}
._9{width:5.546667pt;}
._dd{width:6.613333pt;}
._a{width:7.653333pt;}
._df{width:9.390933pt;}
._de{width:14.723200pt;}
._3{width:32.328000pt;}
._e0{width:38.511467pt;}
._4e{width:42.970667pt;}
._3f{width:47.002667pt;}
._bd{width:48.384000pt;}
._5f{width:50.736000pt;}
._29{width:51.781333pt;}
._6e{width:52.976000pt;}
._8b{width:56.149333pt;}
._16{width:57.045333pt;}
._40{width:58.389333pt;}
._3a{width:59.845333pt;}
._1e{width:61.002667pt;}
._93{width:62.010667pt;}
._b4{width:62.962133pt;}
._7b{width:64.047467pt;}
._76{width:65.333333pt;}
._26{width:66.229333pt;}
._28{width:67.984000pt;}
._2d{width:69.029333pt;}
._12{width:70.186667pt;}
._11{width:71.978667pt;}
._15{width:73.957333pt;}
._4c{width:76.234667pt;}
._39{width:77.877333pt;}
._1a{width:79.968000pt;}
._10{width:81.760000pt;}
._3d{width:87.658667pt;}
._6c{width:88.592000pt;}
._9a{width:90.048000pt;}
._3e{width:91.392000pt;}
._85{width:92.661333pt;}
._a8{width:94.640000pt;}
._67{width:96.021333pt;}
._bb{width:96.954667pt;}
._92{width:98.012800pt;}
._13{width:100.501333pt;}
._a1{width:102.156800pt;}
._8f{width:103.749333pt;}
._b7{width:105.690667pt;}
._ba{width:106.819733pt;}
._c3{width:108.938667pt;}
._57{width:110.730667pt;}
._2c{width:113.792000pt;}
._2e{width:115.434667pt;}
._24{width:118.384000pt;}
._19{width:120.437333pt;}
._65{width:122.490667pt;}
._23{width:123.536000pt;}
._1d{width:124.755200pt;}
._74{width:127.157333pt;}
._73{width:128.314667pt;}
._60{width:129.920000pt;}
._e{width:131.824000pt;}
._d7{width:132.906667pt;}
._7a{width:139.320533pt;}
._a2{width:141.377600pt;}
._5b{width:142.563200pt;}
._f{width:144.840533pt;}
._6b{width:145.898667pt;}
._99{width:147.280000pt;}
._b3{width:149.856000pt;}
._69{width:154.373333pt;}
._d8{width:156.045867pt;}
._c6{width:157.098667pt;}
._53{width:158.293333pt;}
._72{width:159.301333pt;}
._c9{width:160.775467pt;}
._78{width:163.632000pt;}
._88{width:165.125333pt;}
._d4{width:166.506667pt;}
._b9{width:170.277333pt;}
._55{width:171.845333pt;}
._17{width:173.562667pt;}
._32{width:175.541333pt;}
._9d{width:176.736000pt;}
._d1{width:178.117333pt;}
._8d{width:179.597333pt;}
._63{width:182.485333pt;}
._34{width:184.090667pt;}
._bc{width:185.136000pt;}
._20{width:187.749333pt;}
._46{width:189.840000pt;}
._c{width:191.781333pt;}
._68{width:193.050667pt;}
._80{width:196.186667pt;}
._cc{width:197.132800pt;}
._5c{width:199.957333pt;}
._6f{width:202.085333pt;}
._a9{width:206.229333pt;}
._2f{width:207.299200pt;}
._bf{width:209.066667pt;}
._d{width:211.310400pt;}
._49{width:213.434667pt;}
._84{width:215.488000pt;}
._41{width:216.458667pt;}
._91{width:218.960000pt;}
._61{width:220.117333pt;}
._90{width:221.722667pt;}
._d3{width:223.626667pt;}
._b1{width:226.016000pt;}
._a7{width:227.845333pt;}
._af{width:228.928000pt;}
._37{width:230.869333pt;}
._d5{width:235.088000pt;}
._14{width:238.336000pt;}
._b6{width:239.418667pt;}
._50{width:242.330667pt;}
._71{width:243.674667pt;}
._66{width:247.632000pt;}
._c5{width:250.096000pt;}
._35{width:251.178667pt;}
._7f{width:253.493333pt;}
._d0{width:255.957333pt;}
._5a{width:257.264000pt;}
._6d{width:259.392000pt;}
._95{width:263.685333pt;}
._18{width:265.104000pt;}
._5e{width:266.970667pt;}
._aa{width:269.434667pt;}
._ce{width:271.674667pt;}
._82{width:273.130667pt;}
._b{width:276.901333pt;}
._8e{width:279.029333pt;}
._a0{width:284.517333pt;}
._d6{width:285.450667pt;}
._d2{width:286.496000pt;}
._33{width:290.005333pt;}
._36{width:291.946667pt;}
._2b{width:294.560000pt;}
._4d{width:299.674667pt;}
._70{width:300.981333pt;}
._31{width:302.586667pt;}
._51{width:303.818667pt;}
._87{width:304.901333pt;}
._52{width:306.021333pt;}
._8a{width:307.216000pt;}
._2a{width:308.522667pt;}
._1b{width:310.277333pt;}
._30{width:312.069333pt;}
._cd{width:314.122667pt;}
._c2{width:317.109333pt;}
._98{width:318.080000pt;}
._c1{width:319.461333pt;}
._75{width:321.888000pt;}
._77{width:324.538667pt;}
._3c{width:329.056000pt;}
._c4{width:332.976000pt;}
._38{width:333.909333pt;}
._9f{width:336.709333pt;}
._cb{width:338.240000pt;}
._4f{width:340.442667pt;}
._a3{width:341.969600pt;}
._86{width:343.242667pt;}
._9c{width:346.502400pt;}
._9b{width:347.597867pt;}
._8c{width:349.178667pt;}
._4b{width:350.560000pt;}
._a6{width:352.090667pt;}
._6a{width:353.173333pt;}
._22{width:361.909333pt;}
._58{width:364.336000pt;}
._97{width:367.024000pt;}
._7e{width:368.554667pt;}
._3b{width:369.712000pt;}
._62{width:372.125867pt;}
._9e{width:374.005333pt;}
._be{width:376.768000pt;}
._44{width:378.037333pt;}
._7c{width:380.613333pt;}
._81{width:383.002667pt;}
._59{width:384.285333pt;}
._56{width:386.362667pt;}
._7d{width:388.192000pt;}
._42{width:391.962667pt;}
._25{width:394.053333pt;}
._45{width:395.024000pt;}
._94{width:399.466667pt;}
._a4{width:400.922667pt;}
._43{width:402.602667pt;}
._ca{width:403.648000pt;}
._79{width:406.784000pt;}
._83{width:409.248000pt;}
._b8{width:412.010667pt;}
._96{width:415.736533pt;}
._ac{width:422.762667pt;}
._48{width:424.629333pt;}
._ad{width:426.309333pt;}
._ab{width:433.888000pt;}
._b2{width:434.933333pt;}
._1f{width:437.434667pt;}
._1c{width:445.013333pt;}
._ae{width:446.432000pt;}
._b5{width:456.922667pt;}
._27{width:550.442667pt;}
._a5{width:569.084800pt;}
._c0{width:579.338667pt;}
._47{width:584.266667pt;}
._21{width:586.058667pt;}
._89{width:587.477333pt;}
._b0{width:590.484800pt;}
._4a{width:594.122667pt;}
._c7{width:598.888533pt;}
._c8{width:599.872000pt;}
._cf{width:602.293333pt;}
._5d{width:624.909867pt;}
._54{width:656.469333pt;}
._64{width:664.906667pt;}
.fsa{font-size:27.984000pt;}
.fs9{font-size:31.093333pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y3a{bottom:63.299600pt;}
.y3b{bottom:66.702267pt;}
.y1b8{bottom:100.258533pt;}
.y1b4{bottom:100.493200pt;}
.y184{bottom:100.509200pt;}
.y13f{bottom:100.514400pt;}
.y68{bottom:100.514533pt;}
.y108{bottom:103.454133pt;}
.ya1{bottom:103.728533pt;}
.yb{bottom:104.182267pt;}
.y2a{bottom:104.188933pt;}
.ydb{bottom:104.816267pt;}
.y15c{bottom:107.099867pt;}
.y16d{bottom:107.107733pt;}
.y169{bottom:107.107867pt;}
.ya{bottom:116.979067pt;}
.y1b7{bottom:118.930533pt;}
.y1b3{bottom:119.165200pt;}
.y13e{bottom:119.181067pt;}
.y67{bottom:119.181200pt;}
.ya0{bottom:119.417867pt;}
.y107{bottom:120.608267pt;}
.yda{bottom:120.888267pt;}
.y29{bottom:122.855600pt;}
.y15b{bottom:124.703867pt;}
.y16c{bottom:124.711733pt;}
.y168{bottom:124.711867pt;}
.y9{bottom:129.775867pt;}
.y9f{bottom:135.107200pt;}
.y106{bottom:135.578933pt;}
.yd9{bottom:136.960267pt;}
.y1b6{bottom:137.602533pt;}
.y1b2{bottom:137.837200pt;}
.y13d{bottom:137.847733pt;}
.y66{bottom:137.847867pt;}
.y28{bottom:141.522267pt;}
.y15a{bottom:142.307867pt;}
.y8{bottom:142.575867pt;}
.y105{bottom:150.549600pt;}
.y183{bottom:150.614267pt;}
.y9e{bottom:150.796533pt;}
.yd8{bottom:153.032267pt;}
.y1b5{bottom:156.274533pt;}
.y1b1{bottom:156.509200pt;}
.y163{bottom:156.514400pt;}
.y65{bottom:156.514533pt;}
.y159{bottom:159.911867pt;}
.y27{bottom:160.188933pt;}
.y104{bottom:165.520267pt;}
.y9d{bottom:166.485867pt;}
.yd7{bottom:169.104267pt;}
.y1b0{bottom:174.946533pt;}
.y1c9{bottom:175.143867pt;}
.y162{bottom:175.181067pt;}
.y64{bottom:175.181200pt;}
.y26{bottom:178.855600pt;}
.y103{bottom:180.490933pt;}
.y37{bottom:180.846133pt;}
.y9c{bottom:182.175200pt;}
.yd6{bottom:185.176267pt;}
.y13c{bottom:188.576000pt;}
.y1af{bottom:193.618533pt;}
.y1c8{bottom:193.815867pt;}
.y161{bottom:193.847733pt;}
.y63{bottom:193.847867pt;}
.y102{bottom:195.461600pt;}
.y36{bottom:196.842133pt;}
.y25{bottom:197.522267pt;}
.y9b{bottom:197.864533pt;}
.yd5{bottom:201.248267pt;}
.y13b{bottom:207.868000pt;}
.y101{bottom:210.814933pt;}
.y1ae{bottom:212.290533pt;}
.y1c7{bottom:212.487867pt;}
.y160{bottom:212.514400pt;}
.y62{bottom:212.514533pt;}
.y35{bottom:212.838133pt;}
.y16b{bottom:213.369467pt;}
.y9a{bottom:213.553867pt;}
.y24{bottom:216.188933pt;}
.yd4{bottom:217.320267pt;}
.y182{bottom:217.359467pt;}
.y13a{bottom:223.557333pt;}
.y100{bottom:226.504267pt;}
.y34{bottom:228.834133pt;}
.y99{bottom:229.243200pt;}
.y1ad{bottom:230.962533pt;}
.y16a{bottom:230.973467pt;}
.y1c6{bottom:231.159867pt;}
.y15f{bottom:231.181067pt;}
.y61{bottom:231.181200pt;}
.yd3{bottom:233.392267pt;}
.y23{bottom:234.855600pt;}
.y139{bottom:239.246667pt;}
.y16f{bottom:239.928267pt;}
.yff{bottom:242.193600pt;}
.y33{bottom:244.830133pt;}
.y98{bottom:244.932533pt;}
.yd2{bottom:249.464267pt;}
.y1ac{bottom:249.634533pt;}
.y1c5{bottom:249.831867pt;}
.y181{bottom:249.842533pt;}
.y15e{bottom:249.847733pt;}
.y60{bottom:249.847867pt;}
.y22{bottom:253.522267pt;}
.y138{bottom:254.936000pt;}
.y16e{bottom:257.532267pt;}
.yfe{bottom:257.882933pt;}
.y97{bottom:260.621867pt;}
.y32{bottom:260.826133pt;}
.yd1{bottom:265.536267pt;}
.y1ab{bottom:268.306533pt;}
.y1c4{bottom:268.503867pt;}
.y180{bottom:268.509200pt;}
.y5f{bottom:268.514533pt;}
.y137{bottom:270.625333pt;}
.y21{bottom:272.188933pt;}
.yfd{bottom:273.572267pt;}
.y96{bottom:276.311200pt;}
.y31{bottom:276.822133pt;}
.y149{bottom:281.280933pt;}
.yd0{bottom:281.608267pt;}
.y136{bottom:286.314667pt;}
.y1aa{bottom:286.978533pt;}
.y17f{bottom:287.175867pt;}
.y5e{bottom:287.181200pt;}
.yfc{bottom:289.261600pt;}
.y167{bottom:289.835200pt;}
.y20{bottom:290.855600pt;}
.y95{bottom:292.000533pt;}
.y30{bottom:292.818133pt;}
.ycf{bottom:297.680267pt;}
.y135{bottom:302.004000pt;}
.yfb{bottom:304.950933pt;}
.y1a9{bottom:305.650533pt;}
.y5d{bottom:305.847867pt;}
.y166{bottom:307.439200pt;}
.y94{bottom:307.689867pt;}
.y2f{bottom:308.814133pt;}
.y1f{bottom:309.522267pt;}
.yce{bottom:313.752267pt;}
.y134{bottom:317.693333pt;}
.yfa{bottom:320.640267pt;}
.y93{bottom:323.379200pt;}
.y1a8{bottom:324.322533pt;}
.y148{bottom:324.514533pt;}
.y165{bottom:325.043200pt;}
.y1e{bottom:328.188933pt;}
.y17e{bottom:329.359467pt;}
.ycd{bottom:329.824267pt;}
.y133{bottom:333.382667pt;}
.yf9{bottom:336.329600pt;}
.y1c3{bottom:336.456533pt;}
.y5c{bottom:337.280933pt;}
.y92{bottom:339.068533pt;}
.y2e{bottom:339.930133pt;}
.y164{bottom:342.647200pt;}
.y1a7{bottom:342.994533pt;}
.y147{bottom:343.181200pt;}
.ycc{bottom:345.896267pt;}
.y1d{bottom:346.855600pt;}
.y132{bottom:349.072000pt;}
.yf8{bottom:352.018933pt;}
.y91{bottom:354.757867pt;}
.y2d{bottom:355.930133pt;}
.y1a6{bottom:361.666533pt;}
.y17d{bottom:361.826533pt;}
.y146{bottom:361.847867pt;}
.ycb{bottom:361.968267pt;}
.y131{bottom:364.761333pt;}
.y1c2{bottom:365.165467pt;}
.y1c{bottom:365.522267pt;}
.yf7{bottom:367.708267pt;}
.y90{bottom:370.447200pt;}
.y2c{bottom:371.930133pt;}
.yca{bottom:378.040267pt;}
.y1a5{bottom:380.338533pt;}
.y130{bottom:380.450667pt;}
.y17c{bottom:380.498533pt;}
.y5b{bottom:380.514533pt;}
.yf6{bottom:383.397600pt;}
.y1b{bottom:384.188933pt;}
.y8f{bottom:386.136533pt;}
.y2b{bottom:387.930133pt;}
.yc9{bottom:394.112267pt;}
.y12f{bottom:396.140000pt;}
.y1a4{bottom:399.010533pt;}
.yf5{bottom:399.086933pt;}
.y17b{bottom:399.170533pt;}
.y5a{bottom:399.181200pt;}
.y8e{bottom:401.825867pt;}
.y1a{bottom:402.855600pt;}
.yc8{bottom:410.184267pt;}
.y12e{bottom:411.829333pt;}
.yf4{bottom:414.776267pt;}
.y8d{bottom:417.515200pt;}
.y1a3{bottom:417.682533pt;}
.y1c1{bottom:417.810533pt;}
.y17a{bottom:417.842533pt;}
.y59{bottom:417.847867pt;}
.yc7{bottom:426.256267pt;}
.y12d{bottom:427.518667pt;}
.yf3{bottom:430.465600pt;}
.y8c{bottom:433.204533pt;}
.y19{bottom:433.379867pt;}
.y1a2{bottom:436.354533pt;}
.y1c0{bottom:436.482533pt;}
.y58{bottom:436.514533pt;}
.yc6{bottom:442.328267pt;}
.y12c{bottom:443.208000pt;}
.yf2{bottom:446.154933pt;}
.y8b{bottom:448.893867pt;}
.y1a1{bottom:455.026533pt;}
.y1bf{bottom:455.154533pt;}
.y57{bottom:455.181200pt;}
.yc5{bottom:458.400267pt;}
.y12b{bottom:458.897333pt;}
.y179{bottom:460.026133pt;}
.yf1{bottom:461.844267pt;}
.y8a{bottom:464.583200pt;}
.y1a0{bottom:473.698533pt;}
.y1be{bottom:473.826533pt;}
.y56{bottom:473.847867pt;}
.yc4{bottom:474.472267pt;}
.y12a{bottom:474.586667pt;}
.yf0{bottom:477.533600pt;}
.y89{bottom:480.272533pt;}
.y129{bottom:490.276000pt;}
.yc3{bottom:490.544267pt;}
.y19f{bottom:492.370533pt;}
.y1bd{bottom:492.498533pt;}
.y178{bottom:492.503867pt;}
.y55{bottom:492.514533pt;}
.yef{bottom:493.222933pt;}
.y88{bottom:495.961867pt;}
.y18{bottom:501.176400pt;}
.y128{bottom:505.965333pt;}
.yc2{bottom:506.616267pt;}
.yee{bottom:508.912267pt;}
.y19e{bottom:511.042533pt;}
.y1bc{bottom:511.170533pt;}
.y177{bottom:511.175867pt;}
.y145{bottom:511.181200pt;}
.y87{bottom:511.651200pt;}
.y17{bottom:518.780400pt;}
.y127{bottom:521.654667pt;}
.yc1{bottom:522.688267pt;}
.y54{bottom:523.123200pt;}
.yed{bottom:524.601600pt;}
.y86{bottom:527.340533pt;}
.y19d{bottom:529.714533pt;}
.y1bb{bottom:529.842533pt;}
.y144{bottom:529.847867pt;}
.y126{bottom:537.344000pt;}
.yc0{bottom:538.760267pt;}
.yec{bottom:540.290933pt;}
.y85{bottom:543.029867pt;}
.y19c{bottom:548.386533pt;}
.y143{bottom:548.514533pt;}
.y53{bottom:551.832133pt;}
.y125{bottom:553.033333pt;}
.y176{bottom:553.359467pt;}
.ybf{bottom:554.832267pt;}
.y16{bottom:555.246000pt;}
.yeb{bottom:555.980267pt;}
.y84{bottom:558.719200pt;}
.y19b{bottom:567.058533pt;}
.y142{bottom:567.181200pt;}
.y124{bottom:568.722667pt;}
.ybe{bottom:570.904267pt;}
.yea{bottom:571.669600pt;}
.y15{bottom:572.850000pt;}
.y83{bottom:574.408533pt;}
.y1ba{bottom:579.123200pt;}
.y123{bottom:584.412000pt;}
.y19a{bottom:585.730533pt;}
.y141{bottom:585.847867pt;}
.ybd{bottom:586.976267pt;}
.ye9{bottom:587.358933pt;}
.y82{bottom:590.097867pt;}
.y14{bottom:590.454000pt;}
.y122{bottom:600.101333pt;}
.ybc{bottom:603.048267pt;}
.y199{bottom:604.402533pt;}
.y52{bottom:604.514533pt;}
.y81{bottom:605.787200pt;}
.y1b9{bottom:607.832133pt;}
.y13{bottom:608.058000pt;}
.y175{bottom:609.359467pt;}
.y121{bottom:615.790667pt;}
.ybb{bottom:618.737600pt;}
.y80{bottom:621.476533pt;}
.y198{bottom:623.074533pt;}
.y51{bottom:623.181200pt;}
.y12{bottom:625.662000pt;}
.y120{bottom:631.480000pt;}
.yba{bottom:634.426933pt;}
.y7f{bottom:637.165867pt;}
.y197{bottom:641.746533pt;}
.y50{bottom:641.847867pt;}
.y11{bottom:643.266000pt;}
.y11f{bottom:647.169333pt;}
.yb9{bottom:650.116267pt;}
.y7e{bottom:652.855200pt;}
.y196{bottom:660.418533pt;}
.y4f{bottom:660.514533pt;}
.y10{bottom:660.870000pt;}
.y11e{bottom:662.858667pt;}
.y174{bottom:665.359467pt;}
.yb8{bottom:665.805600pt;}
.y7d{bottom:668.544533pt;}
.yf{bottom:678.474000pt;}
.y11d{bottom:678.548000pt;}
.y195{bottom:679.090533pt;}
.y4e{bottom:679.181200pt;}
.yb7{bottom:681.494933pt;}
.y7c{bottom:684.233867pt;}
.y158{bottom:691.123200pt;}
.y11c{bottom:694.237333pt;}
.ye{bottom:696.078000pt;}
.yb6{bottom:697.184267pt;}
.y194{bottom:697.762533pt;}
.y4d{bottom:697.847867pt;}
.y7b{bottom:699.923200pt;}
.y11b{bottom:709.926667pt;}
.yb5{bottom:712.873600pt;}
.y7a{bottom:715.612533pt;}
.y193{bottom:716.434533pt;}
.y4c{bottom:716.514533pt;}
.y157{bottom:719.832000pt;}
.y173{bottom:721.721867pt;}
.yd{bottom:723.720267pt;}
.ye8{bottom:724.876267pt;}
.y11a{bottom:725.616000pt;}
.yb4{bottom:728.562933pt;}
.y170{bottom:729.280933pt;}
.y79{bottom:731.301867pt;}
.y192{bottom:735.106533pt;}
.y4b{bottom:735.181200pt;}
.ye7{bottom:740.565600pt;}
.y119{bottom:741.305333pt;}
.yb3{bottom:744.252267pt;}
.y78{bottom:746.991200pt;}
.y172{bottom:747.947600pt;}
.ye6{bottom:752.568267pt;}
.y191{bottom:753.778533pt;}
.y4a{bottom:753.847867pt;}
.y118{bottom:756.994667pt;}
.yb2{bottom:759.941600pt;}
.y77{bottom:762.680533pt;}
.ye5{bottom:768.257600pt;}
.y190{bottom:772.450533pt;}
.y156{bottom:772.514400pt;}
.y49{bottom:772.514533pt;}
.y117{bottom:772.684000pt;}
.yb1{bottom:775.630933pt;}
.y76{bottom:778.369867pt;}
.ye4{bottom:783.946933pt;}
.y116{bottom:788.373333pt;}
.y18f{bottom:791.122533pt;}
.y155{bottom:791.181067pt;}
.y48{bottom:791.181200pt;}
.yb0{bottom:791.320267pt;}
.y75{bottom:794.059200pt;}
.y7{bottom:794.192667pt;}
.ye3{bottom:799.636267pt;}
.y115{bottom:804.062667pt;}
.yaf{bottom:807.009600pt;}
.y74{bottom:809.748533pt;}
.y18e{bottom:809.794533pt;}
.y154{bottom:809.847733pt;}
.y47{bottom:809.847867pt;}
.y6{bottom:810.192667pt;}
.ye2{bottom:815.325600pt;}
.y114{bottom:819.752000pt;}
.y140{bottom:822.614267pt;}
.yae{bottom:822.698933pt;}
.y73{bottom:825.437867pt;}
.y18d{bottom:828.466533pt;}
.y153{bottom:828.514400pt;}
.y46{bottom:828.514533pt;}
.ye1{bottom:831.014933pt;}
.y113{bottom:835.441333pt;}
.yad{bottom:838.388267pt;}
.y72{bottom:841.127200pt;}
.y171{bottom:841.280933pt;}
.y5{bottom:841.310933pt;}
.ye0{bottom:846.704267pt;}
.y18c{bottom:847.138533pt;}
.y152{bottom:847.181067pt;}
.y45{bottom:847.181200pt;}
.y112{bottom:851.130667pt;}
.yac{bottom:854.077600pt;}
.y71{bottom:856.816533pt;}
.ydf{bottom:862.393600pt;}
.y18b{bottom:865.810533pt;}
.y151{bottom:865.847733pt;}
.y44{bottom:865.847867pt;}
.y111{bottom:866.820000pt;}
.yab{bottom:869.766933pt;}
.y70{bottom:872.505867pt;}
.y4{bottom:874.034267pt;}
.yde{bottom:878.082933pt;}
.y110{bottom:882.509333pt;}
.y18a{bottom:884.482533pt;}
.y150{bottom:884.514400pt;}
.y43{bottom:884.514533pt;}
.yaa{bottom:885.456267pt;}
.y6f{bottom:888.195200pt;}
.ydd{bottom:893.772267pt;}
.ya9{bottom:897.458933pt;}
.y10f{bottom:898.198667pt;}
.y189{bottom:903.154533pt;}
.y14f{bottom:903.181067pt;}
.y42{bottom:903.181200pt;}
.y3{bottom:903.364933pt;}
.y6e{bottom:903.884533pt;}
.ydc{bottom:909.461600pt;}
.ya8{bottom:913.148267pt;}
.y10e{bottom:913.888000pt;}
.y6d{bottom:919.573867pt;}
.y188{bottom:921.826533pt;}
.y14e{bottom:921.847733pt;}
.y41{bottom:921.847867pt;}
.ya7{bottom:925.150933pt;}
.y10d{bottom:929.577333pt;}
.y2{bottom:932.695600pt;}
.y6c{bottom:935.263200pt;}
.y187{bottom:940.498533pt;}
.y14d{bottom:940.514400pt;}
.y40{bottom:940.514533pt;}
.ya6{bottom:940.840267pt;}
.y10c{bottom:945.266667pt;}
.y6b{bottom:951.223200pt;}
.ya5{bottom:956.529600pt;}
.y186{bottom:959.170533pt;}
.y14c{bottom:959.181067pt;}
.y3f{bottom:959.181200pt;}
.y10b{bottom:960.956000pt;}
.ya4{bottom:972.218933pt;}
.y10a{bottom:976.645333pt;}
.y6a{bottom:977.314133pt;}
.y185{bottom:977.842533pt;}
.y14b{bottom:977.847733pt;}
.y3e{bottom:977.847867pt;}
.yc{bottom:986.502667pt;}
.ya3{bottom:987.908267pt;}
.y15d{bottom:990.952800pt;}
.y109{bottom:992.605333pt;}
.y69{bottom:994.918133pt;}
.y14a{bottom:996.514400pt;}
.y3d{bottom:996.514533pt;}
.ya2{bottom:1003.868267pt;}
.y39{bottom:1030.390667pt;}
.y38{bottom:1047.724000pt;}
.y3c{bottom:1047.726267pt;}
.h11{height:29.731771pt;}
.h12{height:30.333333pt;}
.h7{height:30.618750pt;}
.h6{height:30.806250pt;}
.hf{height:34.020833pt;}
.h2{height:34.229167pt;}
.h5{height:34.250000pt;}
.h8{height:38.226562pt;}
.he{height:38.273438pt;}
.hd{height:38.507812pt;}
.ha{height:39.000000pt;}
.h13{height:39.021333pt;}
.h14{height:39.938667pt;}
.h9{height:40.546875pt;}
.hc{height:43.333333pt;}
.h10{height:44.601562pt;}
.h4{height:47.666667pt;}
.hb{height:48.656250pt;}
.h3{height:72.205729pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.xa{left:95.167867pt;}
.xc{left:96.257467pt;}
.xe{left:99.764933pt;}
.x5{left:106.559067pt;}
.x6{left:108.473333pt;}
.x7{left:110.313733pt;}
.xd{left:138.087600pt;}
.x4{left:266.834667pt;}
.xb{left:281.954667pt;}
.xf{left:324.894267pt;}
.x3{left:352.045067pt;}
.x10{left:379.764933pt;}
.x9{left:574.709600pt;}
.x8{left:594.026933pt;}
.x1{left:712.140000pt;}
}




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